
    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_bc75edc086eefd96d84ef2f3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_6e649c8597c3e17711634285.woff')format("woff");}.ff2{font-family:ff2;line-height:0.965000;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_c5a933c052fe535aa337e907.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_fb4a0050ff1f3dee2e02ed30.woff')format("woff");}.ff4{font-family:ff4;line-height:0.965000;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_e2a73d6266dc3803e03d65b6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.965000;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;}
.m3{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);}
.m26{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);}
.m1b{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);}
.mb{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);}
.m8{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.me{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);}
.md{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);}
.m1{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);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m16{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);}
.mf{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);}
.m20{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);}
.m23{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1a{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);}
.ma{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);}
.m14{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m11{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);}
.m17{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);}
.m10{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);}
.m25{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m1f{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);}
.m19{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);}
.m15{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);}
.m1d{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);}
.m6{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);}
.m9{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);}
.m1e{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);}
.m27{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);}
.m1c{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);}
.m22{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);}
.m2{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);}
.m13{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.690000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002383px;}
.ls0{letter-spacing:1.316726px;}
.ls2{letter-spacing:2.985403px;}
.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;}
}
.ws44{word-spacing:-35.865600px;}
.ws3{word-spacing:-29.887800px;}
.ws67{word-spacing:-26.899200px;}
.ws95{word-spacing:-23.910240px;}
.ws0{word-spacing:-19.109138px;}
.wse{word-spacing:-18.410885px;}
.ws24{word-spacing:-18.171782px;}
.ws9c{word-spacing:-18.112007px;}
.wsa{word-spacing:-17.934701px;}
.ws92{word-spacing:-17.932800px;}
.wsb4{word-spacing:-17.932680px;}
.wsaa{word-spacing:-17.813129px;}
.ws54{word-spacing:-17.753353px;}
.wsac{word-spacing:-17.574026px;}
.ws32{word-spacing:-17.514251px;}
.wsab{word-spacing:-17.394700px;}
.wsb2{word-spacing:-17.155597px;}
.ws43{word-spacing:-16.856719px;}
.ws1e{word-spacing:-16.737168px;}
.ws33{word-spacing:-16.677392px;}
.ws78{word-spacing:-16.378514px;}
.ws91{word-spacing:-16.247117px;}
.ws55{word-spacing:-16.199188px;}
.ws6f{word-spacing:-16.019861px;}
.ws53{word-spacing:-15.960085px;}
.ws1{word-spacing:-15.924326px;}
.ws35{word-spacing:-15.900310px;}
.ws5a{word-spacing:-15.840534px;}
.ws73{word-spacing:-15.780758px;}
.wsd{word-spacing:-15.661207px;}
.wsa8{word-spacing:-15.601432px;}
.ws31{word-spacing:-15.541656px;}
.ws13{word-spacing:-15.481880px;}
.ws7e{word-spacing:-15.386342px;}
.ws2f{word-spacing:-15.362329px;}
.ws30{word-spacing:-15.302554px;}
.wsb8{word-spacing:-15.242778px;}
.wsb0{word-spacing:-15.162211px;}
.wsb1{word-spacing:-15.123227px;}
.wsa4{word-spacing:-14.884124px;}
.wsa0{word-spacing:-14.704798px;}
.wsae{word-spacing:-14.525471px;}
.ws8c{word-spacing:-14.465695px;}
.ws9a{word-spacing:-14.346144px;}
.ws22{word-spacing:-14.286368px;}
.ws98{word-spacing:-14.226593px;}
.ws9d{word-spacing:-14.166817px;}
.ws21{word-spacing:-13.808164px;}
.ws28{word-spacing:-13.748388px;}
.ws68{word-spacing:-13.664794px;}
.ws76{word-spacing:-13.628837px;}
.ws10{word-spacing:-13.569061px;}
.ws20{word-spacing:-13.509286px;}
.ws1f{word-spacing:-13.449510px;}
.wsc{word-spacing:-13.389734px;}
.ws16{word-spacing:-13.329959px;}
.ws4d{word-spacing:-13.288205px;}
.ws2{word-spacing:-13.270183px;}
.ws58{word-spacing:-13.220092px;}
.wsf{word-spacing:-13.210408px;}
.ws18{word-spacing:-13.150632px;}
.ws14{word-spacing:-13.090856px;}
.wsc0{word-spacing:-13.051967px;}
.ws25{word-spacing:-13.031081px;}
.ws7c{word-spacing:-13.019213px;}
.ws11{word-spacing:-12.971305px;}
.ws57{word-spacing:-12.911530px;}
.ws3d{word-spacing:-12.791978px;}
.ws15{word-spacing:-12.732203px;}
.ws4e{word-spacing:-12.642624px;}
.wsa2{word-spacing:-12.612652px;}
.ws7{word-spacing:-12.588826px;}
.ws97{word-spacing:-12.552876px;}
.ws37{word-spacing:-12.535027px;}
.ws36{word-spacing:-12.481229px;}
.ws1b{word-spacing:-12.373549px;}
.ws8{word-spacing:-12.319834px;}
.ws7d{word-spacing:-12.212237px;}
.ws39{word-spacing:-12.104640px;}
.ws2e{word-spacing:-12.074671px;}
.ws6a{word-spacing:-12.050842px;}
.ws9{word-spacing:-11.943245px;}
.ws46{word-spacing:-11.895344px;}
.ws64{word-spacing:-11.835648px;}
.ws4f{word-spacing:-11.781850px;}
.ws52{word-spacing:-11.775793px;}
.ws26{word-spacing:-11.716018px;}
.ws4{word-spacing:-11.674253px;}
.ws2a{word-spacing:-11.536691px;}
.wsaf{word-spacing:-11.476915px;}
.ws4c{word-spacing:-11.417140px;}
.ws2b{word-spacing:-11.357364px;}
.ws71{word-spacing:-11.297588px;}
.ws34{word-spacing:-11.178037px;}
.ws5c{word-spacing:-11.118262px;}
.ws79{word-spacing:-11.058486px;}
.ws2c{word-spacing:-10.998710px;}
.ws47{word-spacing:-10.938935px;}
.ws12{word-spacing:-10.879159px;}
.ws74{word-spacing:-10.819384px;}
.ws42{word-spacing:-10.759608px;}
.ws99{word-spacing:-10.699832px;}
.ws94{word-spacing:-10.616147px;}
.ws7f{word-spacing:-10.544486px;}
.ws49{word-spacing:-10.520506px;}
.ws93{word-spacing:-10.472685px;}
.ws51{word-spacing:-10.400954px;}
.ws6{word-spacing:-10.383091px;}
.ws7b{word-spacing:-10.275494px;}
.ws77{word-spacing:-10.161852px;}
.ws5f{word-spacing:-10.102076px;}
.wsad{word-spacing:-9.982525px;}
.wsa5{word-spacing:-9.922750px;}
.ws6e{word-spacing:-9.862974px;}
.ws69{word-spacing:-9.749167px;}
.ws5{word-spacing:-9.683712px;}
.ws5d{word-spacing:-9.664640px;}
.ws27{word-spacing:-9.623872px;}
.wsc1{word-spacing:-9.564096px;}
.ws62{word-spacing:-9.384769px;}
.ws59{word-spacing:-9.324994px;}
.ws65{word-spacing:-9.307123px;}
.ws3f{word-spacing:-9.265218px;}
.ws41{word-spacing:-9.205442px;}
.ws1a{word-spacing:-9.145667px;}
.ws5b{word-spacing:-9.026116px;}
.ws75{word-spacing:-8.966340px;}
.ws48{word-spacing:-8.846789px;}
.ws2d{word-spacing:-8.787013px;}
.ws8b{word-spacing:-8.727238px;}
.ws8f{word-spacing:-8.607686px;}
.wsb3{word-spacing:-8.547911px;}
.wsb7{word-spacing:-8.308808px;}
.ws40{word-spacing:-8.189257px;}
.ws8d{word-spacing:-8.129482px;}
.ws6d{word-spacing:-8.069706px;}
.ws17{word-spacing:-7.950155px;}
.ws56{word-spacing:-7.890379px;}
.wsbb{word-spacing:-7.830604px;}
.ws72{word-spacing:-7.770828px;}
.wsa6{word-spacing:-7.709735px;}
.ws19{word-spacing:-7.591501px;}
.ws96{word-spacing:-7.412174px;}
.ws7a{word-spacing:-7.232848px;}
.ws8e{word-spacing:-7.173072px;}
.ws50{word-spacing:-7.053521px;}
.ws4a{word-spacing:-6.874194px;}
.ws4b{word-spacing:-6.870032px;}
.ws3c{word-spacing:-6.814418px;}
.ws9e{word-spacing:-6.754643px;}
.ws8a{word-spacing:-6.694867px;}
.wsb6{word-spacing:-6.575316px;}
.wsa3{word-spacing:-6.515540px;}
.ws1d{word-spacing:-6.455765px;}
.wsa7{word-spacing:-6.276438px;}
.wsa9{word-spacing:-6.216662px;}
.ws61{word-spacing:-6.156887px;}
.ws29{word-spacing:-6.097111px;}
.ws3b{word-spacing:-6.037336px;}
.ws63{word-spacing:-5.977560px;}
.ws66{word-spacing:-5.860235px;}
.ws70{word-spacing:-5.858009px;}
.ws6c{word-spacing:-5.756429px;}
.ws3e{word-spacing:-5.738458px;}
.ws6b{word-spacing:-5.702630px;}
.ws1c{word-spacing:-5.678682px;}
.ws45{word-spacing:-5.559131px;}
.ws9b{word-spacing:-5.140702px;}
.ws81{word-spacing:-3.586536px;}
.ws60{word-spacing:-3.526760px;}
.ws84{word-spacing:-3.048556px;}
.ws80{word-spacing:-2.450800px;}
.ws9f{word-spacing:-1.452557px;}
.ws86{word-spacing:-0.896634px;}
.wsb5{word-spacing:-0.657532px;}
.ws5e{word-spacing:-0.059776px;}
.ws38{word-spacing:-0.053798px;}
.ws3a{word-spacing:0.000000px;}
.wsbe{word-spacing:0.711674px;}
.wsbf{word-spacing:0.717307px;}
.ws23{word-spacing:0.896634px;}
.wsc2{word-spacing:1.434614px;}
.ws85{word-spacing:1.613941px;}
.wsbd{word-spacing:1.853044px;}
.wsba{word-spacing:2.098138px;}
.wsb9{word-spacing:2.151936px;}
.ws88{word-spacing:2.570351px;}
.ws83{word-spacing:3.168107px;}
.wsbc{word-spacing:5.200477px;}
.ws87{word-spacing:5.559131px;}
.ws89{word-spacing:12.612652px;}
.wsa1{word-spacing:14.645022px;}
.ws82{word-spacing:35.805584px;}
.wsb{word-spacing:35.865600px;}
.ws90{word-spacing:40.295002px;}
._14{margin-left:-7.352399px;}
._16{margin-left:-5.881914px;}
._1{margin-left:-3.873492px;}
._3{margin-left:-2.391024px;}
._0{margin-left:-1.291158px;}
._2{width:1.793268px;}
._10{width:2.958912px;}
._19{width:13.389734px;}
._a{width:15.541656px;}
._6{width:17.538257px;}
._7{width:19.498915px;}
._b{width:20.921460px;}
._8{width:22.272394px;}
._9{width:24.029791px;}
._5{width:25.769426px;}
._4{width:27.419249px;}
._e{width:29.768249px;}
._12{width:30.844210px;}
._f{width:32.876580px;}
._11{width:34.191643px;}
._c{width:35.996876px;}
._13{width:38.483564px;}
._18{width:42.022247px;}
._1b{width:49.553972px;}
._17{width:51.526567px;}
._15{width:70.236330px;}
._d{width:71.731200px;}
._1a{width:85.622608px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820480px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y96{bottom:114.664500px;}
.y5c{bottom:117.589500px;}
.y31{bottom:118.386000px;}
.y11c{bottom:124.099500px;}
.y95{bottom:131.103000px;}
.y5b{bottom:134.028000px;}
.yb8{bottom:134.824500px;}
.y11b{bottom:135.666000px;}
.y30{bottom:136.318500px;}
.y5a{bottom:139.741500px;}
.yb7{bottom:140.538000px;}
.y94{bottom:147.540000px;}
.yea{bottom:151.263000px;}
.yb6{bottom:152.104500px;}
.y2f{bottom:154.912500px;}
.y59{bottom:157.021500px;}
.y11a{bottom:157.818000px;}
.y93{bottom:163.978500px;}
.ye9{bottom:167.701500px;}
.yb5{bottom:168.543000px;}
.y58{bottom:168.588000px;}
.y119{bottom:169.384500px;}
.y2e{bottom:172.846500px;}
.y1a8{bottom:174.256500px;}
.y179{bottom:174.456000px;}
.y14e{bottom:175.867500px;}
.y92{bottom:180.417000px;}
.ye8{bottom:184.140000px;}
.yb4{bottom:184.981500px;}
.y57{bottom:185.026500px;}
.y118{bottom:185.823000px;}
.y91{bottom:186.130500px;}
.y56{bottom:190.740000px;}
.y2d{bottom:190.779000px;}
.y117{bottom:191.536500px;}
.y178{bottom:192.390000px;}
.y14d{bottom:193.800000px;}
.ye7{bottom:200.578500px;}
.yb3{bottom:201.420000px;}
.y1a7{bottom:202.261500px;}
.y1a6{bottom:207.975000px;}
.y2c{bottom:208.711500px;}
.y177{bottom:210.322500px;}
.y14c{bottom:211.732500px;}
.y90{bottom:215.031000px;}
.ye6{bottom:217.017000px;}
.yb2{bottom:217.858500px;}
.y55{bottom:219.640500px;}
.y116{bottom:223.606500px;}
.y2b{bottom:226.644000px;}
.y14b{bottom:229.665000px;}
.y8f{bottom:232.965000px;}
.ye5{bottom:233.455500px;}
.yb1{bottom:234.297000px;}
.y53{bottom:237.573000px;}
.y1a5{bottom:240.006000px;}
.y115{bottom:241.539000px;}
.y54{bottom:242.997000px;}
.y176{bottom:243.124500px;}
.y2a{bottom:244.576500px;}
.y14a{bottom:247.597500px;}
.ye4{bottom:249.892500px;}
.yb0{bottom:250.735500px;}
.y8e{bottom:250.897500px;}
.y52{bottom:255.505500px;}
.y1a4{bottom:257.938500px;}
.y114{bottom:259.471500px;}
.y175{bottom:261.057000px;}
.y29{bottom:262.510500px;}
.y149{bottom:265.530000px;}
.ye3{bottom:266.331000px;}
.yaf{bottom:267.174000px;}
.y8d{bottom:268.830000px;}
.yae{bottom:272.887500px;}
.y51{bottom:273.439500px;}
.y1a3{bottom:275.871000px;}
.y113{bottom:277.404000px;}
.y174{bottom:278.989500px;}
.y28{bottom:280.443000px;}
.ye2{bottom:282.769500px;}
.y148{bottom:283.464000px;}
.y8c{bottom:286.762500px;}
.y50{bottom:291.372000px;}
.y1a2{bottom:293.805000px;}
.y112{bottom:295.338000px;}
.y173{bottom:296.923500px;}
.y27{bottom:298.375500px;}
.ye1{bottom:299.208000px;}
.y147{bottom:301.396500px;}
.yad{bottom:303.820500px;}
.y8b{bottom:304.695000px;}
.y4f{bottom:309.304500px;}
.y1a1{bottom:311.737500px;}
.y110{bottom:313.270500px;}
.y172{bottom:314.856000px;}
.ye0{bottom:315.646500px;}
.y111{bottom:318.693000px;}
.y146{bottom:319.329000px;}
.yac{bottom:321.753000px;}
.y8a{bottom:322.627500px;}
.y4e{bottom:327.237000px;}
.y1a0{bottom:329.698500px;}
.y10f{bottom:331.203000px;}
.ydf{bottom:332.085000px;}
.y26{bottom:332.337000px;}
.y145{bottom:337.261500px;}
.yde{bottom:337.798500px;}
.yab{bottom:339.685500px;}
.y89{bottom:340.561500px;}
.y4d{bottom:345.169500px;}
.y171{bottom:346.366500px;}
.y19f{bottom:347.631000px;}
.y10e{bottom:349.135500px;}
.y25{bottom:353.259000px;}
.y144{bottom:355.882500px;}
.yaa{bottom:357.618000px;}
.y88{bottom:358.494000px;}
.y4b{bottom:363.102000px;}
.y170{bottom:364.299000px;}
.y19e{bottom:365.563500px;}
.y10d{bottom:367.104000px;}
.y4c{bottom:368.526000px;}
.y143{bottom:373.815000px;}
.ya9{bottom:375.552000px;}
.y87{bottom:376.426500px;}
.ydd{bottom:377.010000px;}
.y4a{bottom:381.036000px;}
.y16f{bottom:382.231500px;}
.y19d{bottom:383.496000px;}
.y10c{bottom:385.036500px;}
.y142{bottom:391.747500px;}
.ya8{bottom:393.484500px;}
.y86{bottom:394.359000px;}
.ydc{bottom:394.942500px;}
.y49{bottom:398.968500px;}
.y16e{bottom:400.165500px;}
.y24{bottom:400.210500px;}
.y19c{bottom:401.457000px;}
.y10b{bottom:402.970500px;}
.y140{bottom:409.680000px;}
.ya7{bottom:411.417000px;}
.y85{bottom:412.291500px;}
.ydb{bottom:412.875000px;}
.y141{bottom:415.104000px;}
.y48{bottom:416.901000px;}
.y16d{bottom:418.098000px;}
.y23{bottom:418.143000px;}
.y19b{bottom:419.391000px;}
.y10a{bottom:420.903000px;}
.y13f{bottom:427.612500px;}
.ya6{bottom:429.349500px;}
.y84{bottom:430.224000px;}
.y47{bottom:434.833500px;}
.y16c{bottom:436.030500px;}
.y22{bottom:436.075500px;}
.y19a{bottom:437.323500px;}
.y109{bottom:438.835500px;}
.yda{bottom:445.041000px;}
.y13e{bottom:445.546500px;}
.ya5{bottom:447.282000px;}
.y82{bottom:448.158000px;}
.y46{bottom:452.766000px;}
.y83{bottom:453.580500px;}
.y16b{bottom:453.963000px;}
.y21{bottom:454.008000px;}
.y199{bottom:455.256000px;}
.y108{bottom:456.768000px;}
.yd9{bottom:462.973500px;}
.y13d{bottom:463.479000px;}
.ya4{bottom:465.214500px;}
.y81{bottom:466.090500px;}
.y45{bottom:470.698500px;}
.y16a{bottom:471.895500px;}
.y20{bottom:471.940500px;}
.y198{bottom:473.188500px;}
.y107{bottom:474.700500px;}
.yd8{bottom:480.907500px;}
.y13c{bottom:482.098500px;}
.ya3{bottom:483.148500px;}
.y80{bottom:484.023000px;}
.y44{bottom:488.632500px;}
.y169{bottom:489.828000px;}
.y1f{bottom:489.873000px;}
.y197{bottom:491.121000px;}
.y106{bottom:492.633000px;}
.yd7{bottom:498.840000px;}
.y13b{bottom:500.032500px;}
.ya2{bottom:501.081000px;}
.y7f{bottom:501.955500px;}
.y43{bottom:506.565000px;}
.y168{bottom:507.762000px;}
.y1e{bottom:507.807000px;}
.y105{bottom:510.567000px;}
.yd6{bottom:516.772500px;}
.y13a{bottom:517.965000px;}
.ya1{bottom:519.013500px;}
.y7e{bottom:519.888000px;}
.y196{bottom:523.905000px;}
.y42{bottom:524.497500px;}
.y1d{bottom:525.739500px;}
.yd5{bottom:534.705000px;}
.y139{bottom:535.897500px;}
.ya0{bottom:536.946000px;}
.y7d{bottom:537.822000px;}
.y167{bottom:539.272500px;}
.y41{bottom:542.430000px;}
.y104{bottom:543.364500px;}
.y1c{bottom:544.333500px;}
.yd4{bottom:552.637500px;}
.y138{bottom:553.830000px;}
.y9f{bottom:554.878500px;}
.y7c{bottom:555.754500px;}
.y166{bottom:557.205000px;}
.y40{bottom:560.362500px;}
.y1b{bottom:562.266000px;}
.y103{bottom:564.286500px;}
.y195{bottom:567.496500px;}
.yd3{bottom:570.570000px;}
.y137{bottom:571.762500px;}
.y9e{bottom:572.811000px;}
.y7b{bottom:573.687000px;}
.y164{bottom:575.137500px;}
.y3f{bottom:578.295000px;}
.y1a{bottom:580.198500px;}
.y165{bottom:580.561500px;}
.y194{bottom:585.429000px;}
.yd2{bottom:588.504000px;}
.y136{bottom:589.695000px;}
.y9d{bottom:590.745000px;}
.y7a{bottom:591.619500px;}
.y163{bottom:593.070000px;}
.y162{bottom:593.071500px;}
.y3e{bottom:596.229000px;}
.y19{bottom:598.131000px;}
.y193{bottom:603.361500px;}
.yd1{bottom:606.660000px;}
.y135{bottom:607.629000px;}
.y102{bottom:607.918500px;}
.y9c{bottom:608.677500px;}
.y3d{bottom:614.161500px;}
.y18{bottom:616.065000px;}
.y192{bottom:621.295500px;}
.y79{bottom:624.351000px;}
.yd0{bottom:624.592500px;}
.y134{bottom:625.561500px;}
.y101{bottom:625.851000px;}
.y161{bottom:625.873500px;}
.y9a{bottom:626.610000px;}
.y1bf{bottom:630.930000px;}
.y9b{bottom:632.032500px;}
.y3c{bottom:632.094000px;}
.y17{bottom:633.997500px;}
.y191{bottom:639.228000px;}
.ycf{bottom:642.525000px;}
.y133{bottom:643.494000px;}
.y100{bottom:643.783500px;}
.y160{bottom:643.806000px;}
.y99{bottom:644.542500px;}
.y78{bottom:645.273000px;}
.y1be{bottom:648.862500px;}
.y3b{bottom:650.026500px;}
.y16{bottom:651.930000px;}
.y190{bottom:657.160500px;}
.yce{bottom:660.459000px;}
.y132{bottom:661.426500px;}
.yff{bottom:661.716000px;}
.y15f{bottom:661.738500px;}
.y39{bottom:667.959000px;}
.y15{bottom:669.862500px;}
.y3a{bottom:673.383000px;}
.y18f{bottom:675.121500px;}
.y98{bottom:677.274000px;}
.ycd{bottom:678.391500px;}
.y1bd{bottom:678.751500px;}
.y131{bottom:679.359000px;}
.yfe{bottom:679.684500px;}
.y38{bottom:685.891500px;}
.y77{bottom:687.427500px;}
.y14{bottom:687.795000px;}
.y18e{bottom:693.054000px;}
.y15e{bottom:695.226000px;}
.ycc{bottom:696.324000px;}
.y130{bottom:697.291500px;}
.yfd{bottom:697.618500px;}
.y97{bottom:698.196000px;}
.y37{bottom:703.825500px;}
.y76{bottom:705.360000px;}
.y13{bottom:705.727500px;}
.y1bc{bottom:708.639000px;}
.y18d{bottom:710.986500px;}
.ycb{bottom:714.256500px;}
.yfc{bottom:715.551000px;}
.y36{bottom:721.758000px;}
.y75{bottom:723.292500px;}
.y12{bottom:723.661500px;}
.y1bb{bottom:726.571500px;}
.y18c{bottom:728.919000px;}
.yca{bottom:732.189000px;}
.yfb{bottom:733.483500px;}
.y35{bottom:739.690500px;}
.y15d{bottom:740.820000px;}
.y74{bottom:741.225000px;}
.y11{bottom:741.594000px;}
.y1ba{bottom:744.504000px;}
.y12f{bottom:746.757000px;}
.y18b{bottom:746.880000px;}
.yc9{bottom:750.121500px;}
.yfa{bottom:751.416000px;}
.y34{bottom:757.623000px;}
.y15c{bottom:758.752500px;}
.y73{bottom:759.157500px;}
.y10{bottom:759.526500px;}
.y1b9{bottom:762.438000px;}
.y189{bottom:764.814000px;}
.yc8{bottom:768.055500px;}
.y18a{bottom:770.236500px;}
.y33{bottom:775.555500px;}
.y15b{bottom:776.685000px;}
.y72{bottom:777.090000px;}
.yf{bottom:777.459000px;}
.y1b8{bottom:780.370500px;}
.y188{bottom:782.746500px;}
.yf9{bottom:782.925000px;}
.y12e{bottom:783.918000px;}
.yc7{bottom:785.988000px;}
.y32{bottom:793.488000px;}
.y15a{bottom:794.617500px;}
.y71{bottom:795.024000px;}
.y12d{bottom:798.264000px;}
.y1b7{bottom:798.303000px;}
.y187{bottom:800.679000px;}
.yf8{bottom:800.857500px;}
.yc6{bottom:803.920500px;}
.ye{bottom:811.422000px;}
.y159{bottom:812.550000px;}
.y70{bottom:812.956500px;}
.yf7{bottom:818.790000px;}
.yc5{bottom:821.853000px;}
.y1b6{bottom:828.190500px;}
.y158{bottom:830.482500px;}
.y6f{bottom:830.889000px;}
.y186{bottom:833.463000px;}
.yf6{bottom:836.722500px;}
.yc4{bottom:839.785500px;}
.y12c{bottom:844.680000px;}
.yd{bottom:845.286000px;}
.y1b5{bottom:846.123000px;}
.y157{bottom:848.416500px;}
.y6e{bottom:848.821500px;}
.yf5{bottom:854.655000px;}
.yc3{bottom:857.718000px;}
.y1b4{bottom:864.055500px;}
.y156{bottom:866.349000px;}
.y6d{bottom:866.754000px;}
.yf4{bottom:872.587500px;}
.yc2{bottom:875.652000px;}
.y185{bottom:877.054500px;}
.yc{bottom:878.163000px;}
.y12b{bottom:880.089000px;}
.y1b3{bottom:881.989500px;}
.y155{bottom:884.281500px;}
.y6c{bottom:884.686500px;}
.yf3{bottom:890.521500px;}
.yc1{bottom:893.584500px;}
.y12a{bottom:894.435000px;}
.yb{bottom:894.601500px;}
.y184{bottom:894.987000px;}
.y1b2{bottom:899.922000px;}
.y154{bottom:902.214000px;}
.y6b{bottom:902.620500px;}
.yf2{bottom:908.454000px;}
.y129{bottom:908.781000px;}
.ya{bottom:911.040000px;}
.yc0{bottom:911.517000px;}
.y183{bottom:912.919500px;}
.y153{bottom:920.146500px;}
.y6a{bottom:920.553000px;}
.yf0{bottom:926.386500px;}
.y9{bottom:927.478500px;}
.ybf{bottom:929.449500px;}
.y1b1{bottom:929.809500px;}
.y182{bottom:930.852000px;}
.yf1{bottom:931.809000px;}
.y152{bottom:938.079000px;}
.y69{bottom:938.485500px;}
.y8{bottom:943.917000px;}
.y128{bottom:944.202000px;}
.yef{bottom:944.319000px;}
.ybe{bottom:947.382000px;}
.y1b0{bottom:947.742000px;}
.y181{bottom:948.784500px;}
.y151{bottom:956.013000px;}
.y68{bottom:956.418000px;}
.y7{bottom:960.355500px;}
.yee{bottom:962.251500px;}
.ybd{bottom:965.314500px;}
.y1af{bottom:965.674500px;}
.y180{bottom:966.718500px;}
.y150{bottom:973.945500px;}
.y67{bottom:974.350500px;}
.y6{bottom:978.811500px;}
.yed{bottom:980.184000px;}
.ybc{bottom:983.248500px;}
.y1ae{bottom:983.608500px;}
.y17f{bottom:984.651000px;}
.y127{bottom:989.364000px;}
.y14f{bottom:991.878000px;}
.y66{bottom:992.283000px;}
.yec{bottom:998.118000px;}
.ybb{bottom:1001.181000px;}
.y1ad{bottom:1001.541000px;}
.y17e{bottom:1002.583500px;}
.y126{bottom:1003.710000px;}
.y65{bottom:1010.217000px;}
.yeb{bottom:1016.050500px;}
.y5{bottom:1020.468000px;}
.y17d{bottom:1020.516000px;}
.y64{bottom:1028.149500px;}
.y1ac{bottom:1031.428500px;}
.y124{bottom:1033.189500px;}
.yba{bottom:1034.329500px;}
.y4{bottom:1038.400500px;}
.y17c{bottom:1038.448500px;}
.y121{bottom:1039.095300px;}
.y63{bottom:1046.082000px;}
.y123{bottom:1047.535500px;}
.y125{bottom:1047.997500px;}
.y1ab{bottom:1049.361000px;}
.y120{bottom:1053.442500px;}
.yb9{bottom:1055.250000px;}
.y3{bottom:1056.333000px;}
.y122{bottom:1061.881500px;}
.y62{bottom:1064.014500px;}
.y1aa{bottom:1067.293500px;}
.y17b{bottom:1071.232500px;}
.y2{bottom:1074.265500px;}
.y61{bottom:1081.947000px;}
.y1a9{bottom:1085.227500px;}
.y17a{bottom:1092.154500px;}
.y11f{bottom:1098.598500px;}
.y60{bottom:1099.879500px;}
.y5f{bottom:1117.813500px;}
.y1{bottom:1122.465000px;}
.y5e{bottom:1135.746000px;}
.y11e{bottom:1141.146000px;}
.y5d{bottom:1153.678500px;}
.y11d{bottom:1155.492000px;}
.ha{height:26.791603px;}
.h9{height:31.256572px;}
.he{height:35.721899px;}
.hb{height:35.937331px;}
.h5{height:39.930101px;}
.h7{height:40.187405px;}
.h8{height:40.456397px;}
.h4{height:44.652373px;}
.h6{height:44.951251px;}
.hc{height:52.946572px;}
.hd{height:52.952572px;}
.h3{height:53.941862px;}
.h2{height:64.730054px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:107.368500px;}
.xa{left:113.614500px;}
.x51{left:115.318500px;}
.x25{left:118.896000px;}
.x17{left:120.751500px;}
.x9{left:122.944500px;}
.x2a{left:125.185500px;}
.x1b{left:126.477000px;}
.x1{left:127.918500px;}
.x1c{left:132.208500px;}
.x28{left:136.846500px;}
.x2b{left:137.887500px;}
.x39{left:145.305900px;}
.x3a{left:147.147900px;}
.x53{left:153.576000px;}
.x55{left:166.158000px;}
.x29{left:167.914500px;}
.x54{left:169.080000px;}
.x26{left:202.104000px;}
.x8{left:210.039000px;}
.x52{left:226.860000px;}
.xb{left:231.217500px;}
.x36{left:237.685500px;}
.x40{left:243.840300px;}
.x37{left:245.453100px;}
.x3{left:247.183500px;}
.x3e{left:248.807100px;}
.x18{left:250.827000px;}
.x3d{left:254.850300px;}
.x3f{left:260.015100px;}
.x38{left:261.072300px;}
.x56{left:275.620500px;}
.x5{left:331.594500px;}
.x3c{left:345.892800px;}
.x3b{left:353.155200px;}
.x4{left:367.707000px;}
.x19{left:371.016000px;}
.x2{left:379.645500px;}
.x1a{left:384.556500px;}
.x27{left:410.295000px;}
.x6{left:417.544500px;}
.x23{left:459.120000px;}
.xc{left:460.375500px;}
.x35{left:474.405000px;}
.xf{left:475.857000px;}
.x2e{left:478.099500px;}
.x14{left:479.391000px;}
.x15{left:485.122500px;}
.x1d{left:486.729000px;}
.x2c{left:490.801500px;}
.x46{left:499.062000px;}
.x43{left:509.466000px;}
.x47{left:512.427000px;}
.x31{left:515.421000px;}
.xd{left:518.343000px;}
.xe{left:529.059000px;}
.x1e{left:546.517500px;}
.x57{left:554.847000px;}
.x50{left:563.106000px;}
.x4c{left:580.930500px;}
.x42{left:594.961500px;}
.x1f{left:596.895000px;}
.x4e{left:598.102500px;}
.x20{left:607.617000px;}
.x44{left:621.327000px;}
.x41{left:628.713000px;}
.x4f{left:648.022500px;}
.x45{left:661.360500px;}
.x4a{left:668.083500px;}
.x10{left:671.085000px;}
.x34{left:672.918000px;}
.x24{left:680.241000px;}
.x11{left:682.996500px;}
.x32{left:688.422000px;}
.x2d{left:689.685000px;}
.x4b{left:694.983000px;}
.x33{left:704.976000px;}
.x48{left:725.673000px;}
.x16{left:743.931000px;}
.x12{left:748.077000px;}
.x13{left:762.051000px;}
.x22{left:763.209000px;}
.x21{left:773.875500px;}
.x49{left:775.752000px;}
.x2f{left:778.755000px;}
.x30{left:785.317500px;}
.x4d{left:787.158000px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.002118pt;}
.ls0{letter-spacing:1.170423pt;}
.ls2{letter-spacing:2.653692pt;}
.ws44{word-spacing:-31.880533pt;}
.ws3{word-spacing:-26.566933pt;}
.ws67{word-spacing:-23.910400pt;}
.ws95{word-spacing:-21.253547pt;}
.ws0{word-spacing:-16.985901pt;}
.wse{word-spacing:-16.365231pt;}
.ws24{word-spacing:-16.152695pt;}
.ws9c{word-spacing:-16.099562pt;}
.wsa{word-spacing:-15.941956pt;}
.ws92{word-spacing:-15.940267pt;}
.wsb4{word-spacing:-15.940160pt;}
.wsaa{word-spacing:-15.833892pt;}
.ws54{word-spacing:-15.780758pt;}
.wsac{word-spacing:-15.621357pt;}
.ws32{word-spacing:-15.568223pt;}
.wsab{word-spacing:-15.461955pt;}
.wsb2{word-spacing:-15.249420pt;}
.ws43{word-spacing:-14.983750pt;}
.ws1e{word-spacing:-14.877483pt;}
.ws33{word-spacing:-14.824349pt;}
.ws78{word-spacing:-14.558679pt;}
.ws91{word-spacing:-14.441882pt;}
.ws55{word-spacing:-14.399278pt;}
.ws6f{word-spacing:-14.239876pt;}
.ws53{word-spacing:-14.186742pt;}
.ws1{word-spacing:-14.154957pt;}
.ws35{word-spacing:-14.133609pt;}
.ws5a{word-spacing:-14.080475pt;}
.ws73{word-spacing:-14.027341pt;}
.wsd{word-spacing:-13.921073pt;}
.wsa8{word-spacing:-13.867939pt;}
.ws31{word-spacing:-13.814805pt;}
.ws13{word-spacing:-13.761671pt;}
.ws7e{word-spacing:-13.676749pt;}
.ws2f{word-spacing:-13.655404pt;}
.ws30{word-spacing:-13.602270pt;}
.wsb8{word-spacing:-13.549136pt;}
.wsb0{word-spacing:-13.477520pt;}
.wsb1{word-spacing:-13.442868pt;}
.wsa4{word-spacing:-13.230333pt;}
.wsa0{word-spacing:-13.070931pt;}
.wsae{word-spacing:-12.911530pt;}
.ws8c{word-spacing:-12.858396pt;}
.ws9a{word-spacing:-12.752128pt;}
.ws22{word-spacing:-12.698994pt;}
.ws98{word-spacing:-12.645860pt;}
.ws9d{word-spacing:-12.592726pt;}
.ws21{word-spacing:-12.273923pt;}
.ws28{word-spacing:-12.220789pt;}
.ws68{word-spacing:-12.146483pt;}
.ws76{word-spacing:-12.114522pt;}
.ws10{word-spacing:-12.061388pt;}
.ws20{word-spacing:-12.008254pt;}
.ws1f{word-spacing:-11.955120pt;}
.wsc{word-spacing:-11.901986pt;}
.ws16{word-spacing:-11.848852pt;}
.ws4d{word-spacing:-11.811738pt;}
.ws2{word-spacing:-11.795718pt;}
.ws58{word-spacing:-11.751193pt;}
.wsf{word-spacing:-11.742585pt;}
.ws18{word-spacing:-11.689451pt;}
.ws14{word-spacing:-11.636317pt;}
.wsc0{word-spacing:-11.601749pt;}
.ws25{word-spacing:-11.583183pt;}
.ws7c{word-spacing:-11.572634pt;}
.ws11{word-spacing:-11.530049pt;}
.ws57{word-spacing:-11.476915pt;}
.ws3d{word-spacing:-11.370647pt;}
.ws15{word-spacing:-11.317514pt;}
.ws4e{word-spacing:-11.237888pt;}
.wsa2{word-spacing:-11.211246pt;}
.ws7{word-spacing:-11.190067pt;}
.ws97{word-spacing:-11.158112pt;}
.ws37{word-spacing:-11.142246pt;}
.ws36{word-spacing:-11.094426pt;}
.ws1b{word-spacing:-10.998710pt;}
.ws8{word-spacing:-10.950963pt;}
.ws7d{word-spacing:-10.855322pt;}
.ws39{word-spacing:-10.759680pt;}
.ws2e{word-spacing:-10.733041pt;}
.ws6a{word-spacing:-10.711859pt;}
.ws9{word-spacing:-10.616218pt;}
.ws46{word-spacing:-10.573639pt;}
.ws64{word-spacing:-10.520576pt;}
.ws4f{word-spacing:-10.472755pt;}
.ws52{word-spacing:-10.467372pt;}
.ws26{word-spacing:-10.414238pt;}
.ws4{word-spacing:-10.377114pt;}
.ws2a{word-spacing:-10.254836pt;}
.wsaf{word-spacing:-10.201702pt;}
.ws4c{word-spacing:-10.148569pt;}
.ws2b{word-spacing:-10.095435pt;}
.ws71{word-spacing:-10.042301pt;}
.ws34{word-spacing:-9.936033pt;}
.ws5c{word-spacing:-9.882899pt;}
.ws79{word-spacing:-9.829765pt;}
.ws2c{word-spacing:-9.776631pt;}
.ws47{word-spacing:-9.723498pt;}
.ws12{word-spacing:-9.670364pt;}
.ws74{word-spacing:-9.617230pt;}
.ws42{word-spacing:-9.564096pt;}
.ws99{word-spacing:-9.510962pt;}
.ws94{word-spacing:-9.436575pt;}
.ws7f{word-spacing:-9.372877pt;}
.ws49{word-spacing:-9.351561pt;}
.ws93{word-spacing:-9.309053pt;}
.ws51{word-spacing:-9.245293pt;}
.ws6{word-spacing:-9.229414pt;}
.ws7b{word-spacing:-9.133773pt;}
.ws77{word-spacing:-9.032757pt;}
.ws5f{word-spacing:-8.979623pt;}
.wsad{word-spacing:-8.873356pt;}
.wsa5{word-spacing:-8.820222pt;}
.ws6e{word-spacing:-8.767088pt;}
.ws69{word-spacing:-8.665926pt;}
.ws5{word-spacing:-8.607744pt;}
.ws5d{word-spacing:-8.590791pt;}
.ws27{word-spacing:-8.554553pt;}
.wsc1{word-spacing:-8.501419pt;}
.ws62{word-spacing:-8.342017pt;}
.ws59{word-spacing:-8.288883pt;}
.ws65{word-spacing:-8.272998pt;}
.ws3f{word-spacing:-8.235749pt;}
.ws41{word-spacing:-8.182615pt;}
.ws1a{word-spacing:-8.129482pt;}
.ws5b{word-spacing:-8.023214pt;}
.ws75{word-spacing:-7.970080pt;}
.ws48{word-spacing:-7.863812pt;}
.ws2d{word-spacing:-7.810678pt;}
.ws8b{word-spacing:-7.757545pt;}
.ws8f{word-spacing:-7.651277pt;}
.wsb3{word-spacing:-7.598143pt;}
.wsb7{word-spacing:-7.385607pt;}
.ws40{word-spacing:-7.279340pt;}
.ws8d{word-spacing:-7.226206pt;}
.ws6d{word-spacing:-7.173072pt;}
.ws17{word-spacing:-7.066804pt;}
.ws56{word-spacing:-7.013670pt;}
.wsbb{word-spacing:-6.960537pt;}
.ws72{word-spacing:-6.907403pt;}
.wsa6{word-spacing:-6.853098pt;}
.ws19{word-spacing:-6.748001pt;}
.ws96{word-spacing:-6.588599pt;}
.ws7a{word-spacing:-6.429198pt;}
.ws8e{word-spacing:-6.376064pt;}
.ws50{word-spacing:-6.269796pt;}
.ws4a{word-spacing:-6.110395pt;}
.ws4b{word-spacing:-6.106695pt;}
.ws3c{word-spacing:-6.057261pt;}
.ws9e{word-spacing:-6.004127pt;}
.ws8a{word-spacing:-5.950993pt;}
.wsb6{word-spacing:-5.844725pt;}
.wsa3{word-spacing:-5.791591pt;}
.ws1d{word-spacing:-5.738458pt;}
.wsa7{word-spacing:-5.579056pt;}
.wsa9{word-spacing:-5.525922pt;}
.ws61{word-spacing:-5.472788pt;}
.ws29{word-spacing:-5.419654pt;}
.ws3b{word-spacing:-5.366521pt;}
.ws63{word-spacing:-5.313387pt;}
.ws66{word-spacing:-5.209098pt;}
.ws70{word-spacing:-5.207119pt;}
.ws6c{word-spacing:-5.116826pt;}
.ws3e{word-spacing:-5.100851pt;}
.ws6b{word-spacing:-5.069005pt;}
.ws1c{word-spacing:-5.047717pt;}
.ws45{word-spacing:-4.941450pt;}
.ws9b{word-spacing:-4.569513pt;}
.ws81{word-spacing:-3.188032pt;}
.ws60{word-spacing:-3.134898pt;}
.ws84{word-spacing:-2.709827pt;}
.ws80{word-spacing:-2.178489pt;}
.ws9f{word-spacing:-1.291162pt;}
.ws86{word-spacing:-0.797008pt;}
.wsb5{word-spacing:-0.584473pt;}
.ws5e{word-spacing:-0.053134pt;}
.ws38{word-spacing:-0.047821pt;}
.ws3a{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.632599pt;}
.wsbf{word-spacing:0.637606pt;}
.ws23{word-spacing:0.797008pt;}
.wsc2{word-spacing:1.275213pt;}
.ws85{word-spacing:1.434614pt;}
.wsbd{word-spacing:1.647150pt;}
.wsba{word-spacing:1.865011pt;}
.wsb9{word-spacing:1.912832pt;}
.ws88{word-spacing:2.284756pt;}
.ws83{word-spacing:2.816095pt;}
.wsbc{word-spacing:4.622646pt;}
.ws87{word-spacing:4.941450pt;}
.ws89{word-spacing:11.211246pt;}
.wsa1{word-spacing:13.017797pt;}
.ws82{word-spacing:31.827186pt;}
.wsb{word-spacing:31.880533pt;}
.ws90{word-spacing:35.817779pt;}
._14{margin-left:-6.535466pt;}
._16{margin-left:-5.228368pt;}
._1{margin-left:-3.443104pt;}
._3{margin-left:-2.125355pt;}
._0{margin-left:-1.147696pt;}
._2{width:1.594016pt;}
._10{width:2.630144pt;}
._19{width:11.901986pt;}
._a{width:13.814805pt;}
._6{width:15.589562pt;}
._7{width:17.332369pt;}
._b{width:18.596853pt;}
._8{width:19.797683pt;}
._9{width:21.359814pt;}
._5{width:22.906157pt;}
._4{width:24.372666pt;}
._e{width:26.460666pt;}
._12{width:27.417075pt;}
._f{width:29.223627pt;}
._11{width:30.392572pt;}
._c{width:31.997223pt;}
._13{width:34.207613pt;}
._18{width:37.353108pt;}
._1b{width:44.047975pt;}
._17{width:45.801393pt;}
._15{width:62.432293pt;}
._d{width:63.761067pt;}
._1a{width:76.108985pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507093pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:101.924000pt;}
.y5c{bottom:104.524000pt;}
.y31{bottom:105.232000pt;}
.y11c{bottom:110.310667pt;}
.y95{bottom:116.536000pt;}
.y5b{bottom:119.136000pt;}
.yb8{bottom:119.844000pt;}
.y11b{bottom:120.592000pt;}
.y30{bottom:121.172000pt;}
.y5a{bottom:124.214667pt;}
.yb7{bottom:124.922667pt;}
.y94{bottom:131.146667pt;}
.yea{bottom:134.456000pt;}
.yb6{bottom:135.204000pt;}
.y2f{bottom:137.700000pt;}
.y59{bottom:139.574667pt;}
.y11a{bottom:140.282667pt;}
.y93{bottom:145.758667pt;}
.ye9{bottom:149.068000pt;}
.yb5{bottom:149.816000pt;}
.y58{bottom:149.856000pt;}
.y119{bottom:150.564000pt;}
.y2e{bottom:153.641333pt;}
.y1a8{bottom:154.894667pt;}
.y179{bottom:155.072000pt;}
.y14e{bottom:156.326667pt;}
.y92{bottom:160.370667pt;}
.ye8{bottom:163.680000pt;}
.yb4{bottom:164.428000pt;}
.y57{bottom:164.468000pt;}
.y118{bottom:165.176000pt;}
.y91{bottom:165.449333pt;}
.y56{bottom:169.546667pt;}
.y2d{bottom:169.581333pt;}
.y117{bottom:170.254667pt;}
.y178{bottom:171.013333pt;}
.y14d{bottom:172.266667pt;}
.ye7{bottom:178.292000pt;}
.yb3{bottom:179.040000pt;}
.y1a7{bottom:179.788000pt;}
.y1a6{bottom:184.866667pt;}
.y2c{bottom:185.521333pt;}
.y177{bottom:186.953333pt;}
.y14c{bottom:188.206667pt;}
.y90{bottom:191.138667pt;}
.ye6{bottom:192.904000pt;}
.yb2{bottom:193.652000pt;}
.y55{bottom:195.236000pt;}
.y116{bottom:198.761333pt;}
.y2b{bottom:201.461333pt;}
.y14b{bottom:204.146667pt;}
.y8f{bottom:207.080000pt;}
.ye5{bottom:207.516000pt;}
.yb1{bottom:208.264000pt;}
.y53{bottom:211.176000pt;}
.y1a5{bottom:213.338667pt;}
.y115{bottom:214.701333pt;}
.y54{bottom:215.997333pt;}
.y176{bottom:216.110667pt;}
.y2a{bottom:217.401333pt;}
.y14a{bottom:220.086667pt;}
.ye4{bottom:222.126667pt;}
.yb0{bottom:222.876000pt;}
.y8e{bottom:223.020000pt;}
.y52{bottom:227.116000pt;}
.y1a4{bottom:229.278667pt;}
.y114{bottom:230.641333pt;}
.y175{bottom:232.050667pt;}
.y29{bottom:233.342667pt;}
.y149{bottom:236.026667pt;}
.ye3{bottom:236.738667pt;}
.yaf{bottom:237.488000pt;}
.y8d{bottom:238.960000pt;}
.yae{bottom:242.566667pt;}
.y51{bottom:243.057333pt;}
.y1a3{bottom:245.218667pt;}
.y113{bottom:246.581333pt;}
.y174{bottom:247.990667pt;}
.y28{bottom:249.282667pt;}
.ye2{bottom:251.350667pt;}
.y148{bottom:251.968000pt;}
.y8c{bottom:254.900000pt;}
.y50{bottom:258.997333pt;}
.y1a2{bottom:261.160000pt;}
.y112{bottom:262.522667pt;}
.y173{bottom:263.932000pt;}
.y27{bottom:265.222667pt;}
.ye1{bottom:265.962667pt;}
.y147{bottom:267.908000pt;}
.yad{bottom:270.062667pt;}
.y8b{bottom:270.840000pt;}
.y4f{bottom:274.937333pt;}
.y1a1{bottom:277.100000pt;}
.y110{bottom:278.462667pt;}
.y172{bottom:279.872000pt;}
.ye0{bottom:280.574667pt;}
.y111{bottom:283.282667pt;}
.y146{bottom:283.848000pt;}
.yac{bottom:286.002667pt;}
.y8a{bottom:286.780000pt;}
.y4e{bottom:290.877333pt;}
.y1a0{bottom:293.065333pt;}
.y10f{bottom:294.402667pt;}
.ydf{bottom:295.186667pt;}
.y26{bottom:295.410667pt;}
.y145{bottom:299.788000pt;}
.yde{bottom:300.265333pt;}
.yab{bottom:301.942667pt;}
.y89{bottom:302.721333pt;}
.y4d{bottom:306.817333pt;}
.y171{bottom:307.881333pt;}
.y19f{bottom:309.005333pt;}
.y10e{bottom:310.342667pt;}
.y25{bottom:314.008000pt;}
.y144{bottom:316.340000pt;}
.yaa{bottom:317.882667pt;}
.y88{bottom:318.661333pt;}
.y4b{bottom:322.757333pt;}
.y170{bottom:323.821333pt;}
.y19e{bottom:324.945333pt;}
.y10d{bottom:326.314667pt;}
.y4c{bottom:327.578667pt;}
.y143{bottom:332.280000pt;}
.ya9{bottom:333.824000pt;}
.y87{bottom:334.601333pt;}
.ydd{bottom:335.120000pt;}
.y4a{bottom:338.698667pt;}
.y16f{bottom:339.761333pt;}
.y19d{bottom:340.885333pt;}
.y10c{bottom:342.254667pt;}
.y142{bottom:348.220000pt;}
.ya8{bottom:349.764000pt;}
.y86{bottom:350.541333pt;}
.ydc{bottom:351.060000pt;}
.y49{bottom:354.638667pt;}
.y16e{bottom:355.702667pt;}
.y24{bottom:355.742667pt;}
.y19c{bottom:356.850667pt;}
.y10b{bottom:358.196000pt;}
.y140{bottom:364.160000pt;}
.ya7{bottom:365.704000pt;}
.y85{bottom:366.481333pt;}
.ydb{bottom:367.000000pt;}
.y141{bottom:368.981333pt;}
.y48{bottom:370.578667pt;}
.y16d{bottom:371.642667pt;}
.y23{bottom:371.682667pt;}
.y19b{bottom:372.792000pt;}
.y10a{bottom:374.136000pt;}
.y13f{bottom:380.100000pt;}
.ya6{bottom:381.644000pt;}
.y84{bottom:382.421333pt;}
.y47{bottom:386.518667pt;}
.y16c{bottom:387.582667pt;}
.y22{bottom:387.622667pt;}
.y19a{bottom:388.732000pt;}
.y109{bottom:390.076000pt;}
.yda{bottom:395.592000pt;}
.y13e{bottom:396.041333pt;}
.ya5{bottom:397.584000pt;}
.y82{bottom:398.362667pt;}
.y46{bottom:402.458667pt;}
.y83{bottom:403.182667pt;}
.y16b{bottom:403.522667pt;}
.y21{bottom:403.562667pt;}
.y199{bottom:404.672000pt;}
.y108{bottom:406.016000pt;}
.yd9{bottom:411.532000pt;}
.y13d{bottom:411.981333pt;}
.ya4{bottom:413.524000pt;}
.y81{bottom:414.302667pt;}
.y45{bottom:418.398667pt;}
.y16a{bottom:419.462667pt;}
.y20{bottom:419.502667pt;}
.y198{bottom:420.612000pt;}
.y107{bottom:421.956000pt;}
.yd8{bottom:427.473333pt;}
.y13c{bottom:428.532000pt;}
.ya3{bottom:429.465333pt;}
.y80{bottom:430.242667pt;}
.y44{bottom:434.340000pt;}
.y169{bottom:435.402667pt;}
.y1f{bottom:435.442667pt;}
.y197{bottom:436.552000pt;}
.y106{bottom:437.896000pt;}
.yd7{bottom:443.413333pt;}
.y13b{bottom:444.473333pt;}
.ya2{bottom:445.405333pt;}
.y7f{bottom:446.182667pt;}
.y43{bottom:450.280000pt;}
.y168{bottom:451.344000pt;}
.y1e{bottom:451.384000pt;}
.y105{bottom:453.837333pt;}
.yd6{bottom:459.353333pt;}
.y13a{bottom:460.413333pt;}
.ya1{bottom:461.345333pt;}
.y7e{bottom:462.122667pt;}
.y196{bottom:465.693333pt;}
.y42{bottom:466.220000pt;}
.y1d{bottom:467.324000pt;}
.yd5{bottom:475.293333pt;}
.y139{bottom:476.353333pt;}
.ya0{bottom:477.285333pt;}
.y7d{bottom:478.064000pt;}
.y167{bottom:479.353333pt;}
.y41{bottom:482.160000pt;}
.y104{bottom:482.990667pt;}
.y1c{bottom:483.852000pt;}
.yd4{bottom:491.233333pt;}
.y138{bottom:492.293333pt;}
.y9f{bottom:493.225333pt;}
.y7c{bottom:494.004000pt;}
.y166{bottom:495.293333pt;}
.y40{bottom:498.100000pt;}
.y1b{bottom:499.792000pt;}
.y103{bottom:501.588000pt;}
.y195{bottom:504.441333pt;}
.yd3{bottom:507.173333pt;}
.y137{bottom:508.233333pt;}
.y9e{bottom:509.165333pt;}
.y7b{bottom:509.944000pt;}
.y164{bottom:511.233333pt;}
.y3f{bottom:514.040000pt;}
.y1a{bottom:515.732000pt;}
.y165{bottom:516.054667pt;}
.y194{bottom:520.381333pt;}
.yd2{bottom:523.114667pt;}
.y136{bottom:524.173333pt;}
.y9d{bottom:525.106667pt;}
.y7a{bottom:525.884000pt;}
.y163{bottom:527.173333pt;}
.y162{bottom:527.174667pt;}
.y3e{bottom:529.981333pt;}
.y19{bottom:531.672000pt;}
.y193{bottom:536.321333pt;}
.yd1{bottom:539.253333pt;}
.y135{bottom:540.114667pt;}
.y102{bottom:540.372000pt;}
.y9c{bottom:541.046667pt;}
.y3d{bottom:545.921333pt;}
.y18{bottom:547.613333pt;}
.y192{bottom:552.262667pt;}
.y79{bottom:554.978667pt;}
.yd0{bottom:555.193333pt;}
.y134{bottom:556.054667pt;}
.y101{bottom:556.312000pt;}
.y161{bottom:556.332000pt;}
.y9a{bottom:556.986667pt;}
.y1bf{bottom:560.826667pt;}
.y9b{bottom:561.806667pt;}
.y3c{bottom:561.861333pt;}
.y17{bottom:563.553333pt;}
.y191{bottom:568.202667pt;}
.ycf{bottom:571.133333pt;}
.y133{bottom:571.994667pt;}
.y100{bottom:572.252000pt;}
.y160{bottom:572.272000pt;}
.y99{bottom:572.926667pt;}
.y78{bottom:573.576000pt;}
.y1be{bottom:576.766667pt;}
.y3b{bottom:577.801333pt;}
.y16{bottom:579.493333pt;}
.y190{bottom:584.142667pt;}
.yce{bottom:587.074667pt;}
.y132{bottom:587.934667pt;}
.yff{bottom:588.192000pt;}
.y15f{bottom:588.212000pt;}
.y39{bottom:593.741333pt;}
.y15{bottom:595.433333pt;}
.y3a{bottom:598.562667pt;}
.y18f{bottom:600.108000pt;}
.y98{bottom:602.021333pt;}
.ycd{bottom:603.014667pt;}
.y1bd{bottom:603.334667pt;}
.y131{bottom:603.874667pt;}
.yfe{bottom:604.164000pt;}
.y38{bottom:609.681333pt;}
.y77{bottom:611.046667pt;}
.y14{bottom:611.373333pt;}
.y18e{bottom:616.048000pt;}
.y15e{bottom:617.978667pt;}
.ycc{bottom:618.954667pt;}
.y130{bottom:619.814667pt;}
.yfd{bottom:620.105333pt;}
.y97{bottom:620.618667pt;}
.y37{bottom:625.622667pt;}
.y76{bottom:626.986667pt;}
.y13{bottom:627.313333pt;}
.y1bc{bottom:629.901333pt;}
.y18d{bottom:631.988000pt;}
.ycb{bottom:634.894667pt;}
.yfc{bottom:636.045333pt;}
.y36{bottom:641.562667pt;}
.y75{bottom:642.926667pt;}
.y12{bottom:643.254667pt;}
.y1bb{bottom:645.841333pt;}
.y18c{bottom:647.928000pt;}
.yca{bottom:650.834667pt;}
.yfb{bottom:651.985333pt;}
.y35{bottom:657.502667pt;}
.y15d{bottom:658.506667pt;}
.y74{bottom:658.866667pt;}
.y11{bottom:659.194667pt;}
.y1ba{bottom:661.781333pt;}
.y12f{bottom:663.784000pt;}
.y18b{bottom:663.893333pt;}
.yc9{bottom:666.774667pt;}
.yfa{bottom:667.925333pt;}
.y34{bottom:673.442667pt;}
.y15c{bottom:674.446667pt;}
.y73{bottom:674.806667pt;}
.y10{bottom:675.134667pt;}
.y1b9{bottom:677.722667pt;}
.y189{bottom:679.834667pt;}
.yc8{bottom:682.716000pt;}
.y18a{bottom:684.654667pt;}
.y33{bottom:689.382667pt;}
.y15b{bottom:690.386667pt;}
.y72{bottom:690.746667pt;}
.yf{bottom:691.074667pt;}
.y1b8{bottom:693.662667pt;}
.y188{bottom:695.774667pt;}
.yf9{bottom:695.933333pt;}
.y12e{bottom:696.816000pt;}
.yc7{bottom:698.656000pt;}
.y32{bottom:705.322667pt;}
.y15a{bottom:706.326667pt;}
.y71{bottom:706.688000pt;}
.y12d{bottom:709.568000pt;}
.y1b7{bottom:709.602667pt;}
.y187{bottom:711.714667pt;}
.yf8{bottom:711.873333pt;}
.yc6{bottom:714.596000pt;}
.ye{bottom:721.264000pt;}
.y159{bottom:722.266667pt;}
.y70{bottom:722.628000pt;}
.yf7{bottom:727.813333pt;}
.yc5{bottom:730.536000pt;}
.y1b6{bottom:736.169333pt;}
.y158{bottom:738.206667pt;}
.y6f{bottom:738.568000pt;}
.y186{bottom:740.856000pt;}
.yf6{bottom:743.753333pt;}
.yc4{bottom:746.476000pt;}
.y12c{bottom:750.826667pt;}
.yd{bottom:751.365333pt;}
.y1b5{bottom:752.109333pt;}
.y157{bottom:754.148000pt;}
.y6e{bottom:754.508000pt;}
.yf5{bottom:759.693333pt;}
.yc3{bottom:762.416000pt;}
.y1b4{bottom:768.049333pt;}
.y156{bottom:770.088000pt;}
.y6d{bottom:770.448000pt;}
.yf4{bottom:775.633333pt;}
.yc2{bottom:778.357333pt;}
.y185{bottom:779.604000pt;}
.yc{bottom:780.589333pt;}
.y12b{bottom:782.301333pt;}
.y1b3{bottom:783.990667pt;}
.y155{bottom:786.028000pt;}
.y6c{bottom:786.388000pt;}
.yf3{bottom:791.574667pt;}
.yc1{bottom:794.297333pt;}
.y12a{bottom:795.053333pt;}
.yb{bottom:795.201333pt;}
.y184{bottom:795.544000pt;}
.y1b2{bottom:799.930667pt;}
.y154{bottom:801.968000pt;}
.y6b{bottom:802.329333pt;}
.yf2{bottom:807.514667pt;}
.y129{bottom:807.805333pt;}
.ya{bottom:809.813333pt;}
.yc0{bottom:810.237333pt;}
.y183{bottom:811.484000pt;}
.y153{bottom:817.908000pt;}
.y6a{bottom:818.269333pt;}
.yf0{bottom:823.454667pt;}
.y9{bottom:824.425333pt;}
.ybf{bottom:826.177333pt;}
.y1b1{bottom:826.497333pt;}
.y182{bottom:827.424000pt;}
.yf1{bottom:828.274667pt;}
.y152{bottom:833.848000pt;}
.y69{bottom:834.209333pt;}
.y8{bottom:839.037333pt;}
.y128{bottom:839.290667pt;}
.yef{bottom:839.394667pt;}
.ybe{bottom:842.117333pt;}
.y1b0{bottom:842.437333pt;}
.y181{bottom:843.364000pt;}
.y151{bottom:849.789333pt;}
.y68{bottom:850.149333pt;}
.y7{bottom:853.649333pt;}
.yee{bottom:855.334667pt;}
.ybd{bottom:858.057333pt;}
.y1af{bottom:858.377333pt;}
.y180{bottom:859.305333pt;}
.y150{bottom:865.729333pt;}
.y67{bottom:866.089333pt;}
.y6{bottom:870.054667pt;}
.yed{bottom:871.274667pt;}
.ybc{bottom:873.998667pt;}
.y1ae{bottom:874.318667pt;}
.y17f{bottom:875.245333pt;}
.y127{bottom:879.434667pt;}
.y14f{bottom:881.669333pt;}
.y66{bottom:882.029333pt;}
.yec{bottom:887.216000pt;}
.ybb{bottom:889.938667pt;}
.y1ad{bottom:890.258667pt;}
.y17e{bottom:891.185333pt;}
.y126{bottom:892.186667pt;}
.y65{bottom:897.970667pt;}
.yeb{bottom:903.156000pt;}
.y5{bottom:907.082667pt;}
.y17d{bottom:907.125333pt;}
.y64{bottom:913.910667pt;}
.y1ac{bottom:916.825333pt;}
.y124{bottom:918.390667pt;}
.yba{bottom:919.404000pt;}
.y4{bottom:923.022667pt;}
.y17c{bottom:923.065333pt;}
.y121{bottom:923.640267pt;}
.y63{bottom:929.850667pt;}
.y123{bottom:931.142667pt;}
.y125{bottom:931.553333pt;}
.y1ab{bottom:932.765333pt;}
.y120{bottom:936.393333pt;}
.yb9{bottom:938.000000pt;}
.y3{bottom:938.962667pt;}
.y122{bottom:943.894667pt;}
.y62{bottom:945.790667pt;}
.y1aa{bottom:948.705333pt;}
.y17b{bottom:952.206667pt;}
.y2{bottom:954.902667pt;}
.y61{bottom:961.730667pt;}
.y1a9{bottom:964.646667pt;}
.y17a{bottom:970.804000pt;}
.y11f{bottom:976.532000pt;}
.y60{bottom:977.670667pt;}
.y5f{bottom:993.612000pt;}
.y1{bottom:997.746667pt;}
.y5e{bottom:1009.552000pt;}
.y11e{bottom:1014.352000pt;}
.y5d{bottom:1025.492000pt;}
.y11d{bottom:1027.104000pt;}
.ha{height:23.814758pt;}
.h9{height:27.783619pt;}
.he{height:31.752799pt;}
.hb{height:31.944294pt;}
.h5{height:35.493423pt;}
.h7{height:35.722138pt;}
.h8{height:35.961242pt;}
.h4{height:39.690998pt;}
.h6{height:39.956668pt;}
.hc{height:47.063619pt;}
.hd{height:47.068953pt;}
.h3{height:47.948322pt;}
.h2{height:57.537826pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:95.438667pt;}
.xa{left:100.990667pt;}
.x51{left:102.505333pt;}
.x25{left:105.685333pt;}
.x17{left:107.334667pt;}
.x9{left:109.284000pt;}
.x2a{left:111.276000pt;}
.x1b{left:112.424000pt;}
.x1{left:113.705333pt;}
.x1c{left:117.518667pt;}
.x28{left:121.641333pt;}
.x2b{left:122.566667pt;}
.x39{left:129.160800pt;}
.x3a{left:130.798133pt;}
.x53{left:136.512000pt;}
.x55{left:147.696000pt;}
.x29{left:149.257333pt;}
.x54{left:150.293333pt;}
.x26{left:179.648000pt;}
.x8{left:186.701333pt;}
.x52{left:201.653333pt;}
.xb{left:205.526667pt;}
.x36{left:211.276000pt;}
.x40{left:216.746933pt;}
.x37{left:218.180533pt;}
.x3{left:219.718667pt;}
.x3e{left:221.161867pt;}
.x18{left:222.957333pt;}
.x3d{left:226.533600pt;}
.x3f{left:231.124533pt;}
.x38{left:232.064267pt;}
.x56{left:244.996000pt;}
.x5{left:294.750667pt;}
.x3c{left:307.460267pt;}
.x3b{left:313.915733pt;}
.x4{left:326.850667pt;}
.x19{left:329.792000pt;}
.x2{left:337.462667pt;}
.x1a{left:341.828000pt;}
.x27{left:364.706667pt;}
.x6{left:371.150667pt;}
.x23{left:408.106667pt;}
.xc{left:409.222667pt;}
.x35{left:421.693333pt;}
.xf{left:422.984000pt;}
.x2e{left:424.977333pt;}
.x14{left:426.125333pt;}
.x15{left:431.220000pt;}
.x1d{left:432.648000pt;}
.x2c{left:436.268000pt;}
.x46{left:443.610667pt;}
.x43{left:452.858667pt;}
.x47{left:455.490667pt;}
.x31{left:458.152000pt;}
.xd{left:460.749333pt;}
.xe{left:470.274667pt;}
.x1e{left:485.793333pt;}
.x57{left:493.197333pt;}
.x50{left:500.538667pt;}
.x4c{left:516.382667pt;}
.x42{left:528.854667pt;}
.x1f{left:530.573333pt;}
.x4e{left:531.646667pt;}
.x20{left:540.104000pt;}
.x44{left:552.290667pt;}
.x41{left:558.856000pt;}
.x4f{left:576.020000pt;}
.x45{left:587.876000pt;}
.x4a{left:593.852000pt;}
.x10{left:596.520000pt;}
.x34{left:598.149333pt;}
.x24{left:604.658667pt;}
.x11{left:607.108000pt;}
.x32{left:611.930667pt;}
.x2d{left:613.053333pt;}
.x4b{left:617.762667pt;}
.x33{left:626.645333pt;}
.x48{left:645.042667pt;}
.x16{left:661.272000pt;}
.x12{left:664.957333pt;}
.x13{left:677.378667pt;}
.x22{left:678.408000pt;}
.x21{left:687.889333pt;}
.x49{left:689.557333pt;}
.x2f{left:692.226667pt;}
.x30{left:698.060000pt;}
.x4d{left:699.696000pt;}
}




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