
    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_d33514a8d837320041633c5b.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_91f2017639fdc2b9f21f1863.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_9b018b4f440b034accca9a35.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f6650b0f92861b21e85600a9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2753823a4ed55a44271b58f7.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);}
.m9{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);}
.m27{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);}
.m1c{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);}
.mc{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);}
.mf{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);}
.me{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);}
.m22{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);}
.m17{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);}
.m10{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);}
.m21{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);}
.m24{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);}
.m19{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);}
.m1b{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);}
.mb{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);}
.m13{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);}
.m12{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);}
.m18{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);}
.m11{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);}
.m26{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);}
.md{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);}
.m25{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);}
.m14{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);}
.m20{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);}
.m1a{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);}
.m16{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);}
.m1e{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);}
.ma{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);}
.m1f{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);}
.m28{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);}
.m1d{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);}
.m23{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);}
.m15{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.696000px;}
.ls1{letter-spacing:0.000000px;}
.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;}
.ws2{word-spacing:-29.887800px;}
.ws67{word-spacing:-26.899200px;}
.ws98{word-spacing:-23.910240px;}
.ws0{word-spacing:-19.109138px;}
.wsd{word-spacing:-18.410885px;}
.ws23{word-spacing:-18.171782px;}
.ws9c{word-spacing:-18.112007px;}
.ws9{word-spacing:-17.934701px;}
.ws95{word-spacing:-17.932800px;}
.wsb5{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;}
.ws43{word-spacing:-16.856719px;}
.ws1d{word-spacing:-16.737168px;}
.ws33{word-spacing:-16.677392px;}
.ws7a{word-spacing:-16.378514px;}
.ws94{word-spacing:-16.247117px;}
.ws55{word-spacing:-16.199188px;}
.ws71{word-spacing:-16.019861px;}
.ws50{word-spacing:-15.960085px;}
.ws1{word-spacing:-15.924326px;}
.ws35{word-spacing:-15.900310px;}
.ws5a{word-spacing:-15.840534px;}
.ws75{word-spacing:-15.780758px;}
.wsc{word-spacing:-15.661207px;}
.wsa8{word-spacing:-15.601432px;}
.ws31{word-spacing:-15.541656px;}
.ws12{word-spacing:-15.481880px;}
.ws83{word-spacing:-15.386342px;}
.ws2f{word-spacing:-15.362329px;}
.ws30{word-spacing:-15.302554px;}
.wsb8{word-spacing:-15.242778px;}
.wsb2{word-spacing:-15.162211px;}
.wsb3{word-spacing:-15.123227px;}
.wsa4{word-spacing:-14.884124px;}
.ws9f{word-spacing:-14.704798px;}
.wsae{word-spacing:-14.525471px;}
.ws8c{word-spacing:-14.465695px;}
.ws9a{word-spacing:-14.346144px;}
.ws21{word-spacing:-14.286368px;}
.ws92{word-spacing:-14.226593px;}
.ws9d{word-spacing:-14.166817px;}
.ws20{word-spacing:-13.808164px;}
.ws27{word-spacing:-13.748388px;}
.ws68{word-spacing:-13.664794px;}
.ws78{word-spacing:-13.628837px;}
.wsf{word-spacing:-13.569061px;}
.ws1f{word-spacing:-13.509286px;}
.ws1e{word-spacing:-13.449510px;}
.wsb{word-spacing:-13.389734px;}
.ws14{word-spacing:-13.329959px;}
.ws51{word-spacing:-13.288205px;}
.ws1c{word-spacing:-13.270183px;}
.ws58{word-spacing:-13.220092px;}
.wse{word-spacing:-13.210408px;}
.ws16{word-spacing:-13.150632px;}
.ws13{word-spacing:-13.090856px;}
.wsbe{word-spacing:-13.058040px;}
.ws24{word-spacing:-13.031081px;}
.ws6e{word-spacing:-13.019213px;}
.ws10{word-spacing:-12.971305px;}
.ws57{word-spacing:-12.911530px;}
.ws3d{word-spacing:-12.791978px;}
.ws2e{word-spacing:-12.732203px;}
.ws52{word-spacing:-12.642624px;}
.wsa2{word-spacing:-12.612652px;}
.ws6{word-spacing:-12.588826px;}
.ws38{word-spacing:-12.535027px;}
.ws91{word-spacing:-12.493100px;}
.ws37{word-spacing:-12.481229px;}
.ws19{word-spacing:-12.373549px;}
.ws7{word-spacing:-12.319834px;}
.ws82{word-spacing:-12.212237px;}
.ws3a{word-spacing:-12.104640px;}
.ws2d{word-spacing:-12.074671px;}
.ws6a{word-spacing:-12.050842px;}
.ws8{word-spacing:-11.943245px;}
.ws46{word-spacing:-11.895344px;}
.ws64{word-spacing:-11.835648px;}
.ws53{word-spacing:-11.781850px;}
.ws4f{word-spacing:-11.775793px;}
.ws25{word-spacing:-11.716018px;}
.ws3{word-spacing:-11.674253px;}
.ws29{word-spacing:-11.536691px;}
.wsaf{word-spacing:-11.476915px;}
.ws4c{word-spacing:-11.417140px;}
.ws2a{word-spacing:-11.357364px;}
.ws73{word-spacing:-11.297588px;}
.ws34{word-spacing:-11.178037px;}
.ws5c{word-spacing:-11.118262px;}
.ws7b{word-spacing:-11.058486px;}
.ws2b{word-spacing:-10.998710px;}
.ws47{word-spacing:-10.938935px;}
.ws11{word-spacing:-10.879159px;}
.ws76{word-spacing:-10.819384px;}
.ws42{word-spacing:-10.759608px;}
.ws99{word-spacing:-10.699832px;}
.ws97{word-spacing:-10.616147px;}
.ws84{word-spacing:-10.544486px;}
.ws49{word-spacing:-10.520506px;}
.ws96{word-spacing:-10.472685px;}
.ws4e{word-spacing:-10.400954px;}
.ws5{word-spacing:-10.383091px;}
.ws6d{word-spacing:-10.275494px;}
.ws79{word-spacing:-10.161852px;}
.ws5f{word-spacing:-10.102076px;}
.wsad{word-spacing:-9.982525px;}
.wsa5{word-spacing:-9.922750px;}
.ws70{word-spacing:-9.862974px;}
.ws69{word-spacing:-9.749167px;}
.ws4{word-spacing:-9.683712px;}
.ws5d{word-spacing:-9.664640px;}
.ws26{word-spacing:-9.623872px;}
.wsbf{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;}
.ws18{word-spacing:-9.145667px;}
.ws5b{word-spacing:-9.026116px;}
.ws77{word-spacing:-8.966340px;}
.ws48{word-spacing:-8.846789px;}
.ws2c{word-spacing:-8.787013px;}
.ws8b{word-spacing:-8.727238px;}
.ws8f{word-spacing:-8.607686px;}
.wsb4{word-spacing:-8.547911px;}
.wsb7{word-spacing:-8.308808px;}
.ws40{word-spacing:-8.189257px;}
.ws8d{word-spacing:-8.129482px;}
.ws6f{word-spacing:-8.069706px;}
.ws15{word-spacing:-7.950155px;}
.ws56{word-spacing:-7.890379px;}
.wsb9{word-spacing:-7.830604px;}
.ws74{word-spacing:-7.770828px;}
.wsa6{word-spacing:-7.709735px;}
.ws17{word-spacing:-7.591501px;}
.ws90{word-spacing:-7.412174px;}
.ws7c{word-spacing:-7.232848px;}
.ws8e{word-spacing:-7.173072px;}
.ws4d{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;}
.ws1b{word-spacing:-6.455765px;}
.wsa7{word-spacing:-6.276438px;}
.wsa9{word-spacing:-6.216662px;}
.ws61{word-spacing:-6.156887px;}
.ws28{word-spacing:-6.097111px;}
.ws36{word-spacing:-6.037336px;}
.ws63{word-spacing:-5.977560px;}
.ws66{word-spacing:-5.860235px;}
.ws72{word-spacing:-5.858009px;}
.ws6c{word-spacing:-5.756429px;}
.ws3e{word-spacing:-5.738458px;}
.ws6b{word-spacing:-5.702630px;}
.ws1a{word-spacing:-5.678682px;}
.ws45{word-spacing:-5.559131px;}
.ws9b{word-spacing:-5.140702px;}
.ws7e{word-spacing:-3.586536px;}
.ws60{word-spacing:-3.526760px;}
.ws81{word-spacing:-3.048556px;}
.ws7d{word-spacing:-2.450800px;}
.wsa0{word-spacing:-1.452557px;}
.ws86{word-spacing:-0.896634px;}
.ws5e{word-spacing:-0.059776px;}
.ws39{word-spacing:-0.053798px;}
.ws3b{word-spacing:0.000000px;}
.wsbc{word-spacing:0.705791px;}
.wsbd{word-spacing:0.717307px;}
.ws22{word-spacing:0.896634px;}
.wsc0{word-spacing:1.434614px;}
.ws85{word-spacing:1.613941px;}
.wsbb{word-spacing:1.853044px;}
.wsb1{word-spacing:2.098138px;}
.wsb0{word-spacing:2.151936px;}
.ws88{word-spacing:2.570351px;}
.ws80{word-spacing:3.168107px;}
.wsba{word-spacing:5.200477px;}
.ws87{word-spacing:5.559131px;}
.ws89{word-spacing:12.612652px;}
.wsa1{word-spacing:14.645022px;}
.ws7f{word-spacing:35.805584px;}
.wsa{word-spacing:35.865600px;}
.ws93{word-spacing:40.295002px;}
._17{margin-left:-7.352399px;}
._d{margin-left:-5.463485px;}
._18{margin-left:-4.244068px;}
._4{margin-left:-3.174106px;}
._0{margin-left:-1.291158px;}
._1{width:1.129756px;}
._11{width:2.958912px;}
._1d{width:13.389734px;}
._10{width:14.585246px;}
._e{width:15.780758px;}
._13{width:18.123972px;}
._5{width:19.690207px;}
._b{width:21.148622px;}
._6{width:22.272394px;}
._12{width:24.041756px;}
._3{width:25.769426px;}
._2{width:26.791603px;}
._15{width:28.244160px;}
._a{width:29.768249px;}
._14{width:30.844210px;}
._c{width:33.659662px;}
._8{width:34.897010px;}
._f{width:36.230012px;}
._1a{width:38.148798px;}
._16{width:40.073557px;}
._1c{width:42.213539px;}
._1f{width:50.217485px;}
._1b{width:51.526567px;}
._19{width:70.236330px;}
._9{width:71.731200px;}
._1e{width:87.212600px;}
._7{width:381.893366px;}
.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;}
.y61{bottom:73.554000px;}
.y9b{bottom:114.664500px;}
.y32{bottom:118.386000px;}
.y123{bottom:124.099500px;}
.y9a{bottom:131.103000px;}
.y60{bottom:134.824500px;}
.y122{bottom:135.666000px;}
.y31{bottom:136.318500px;}
.y5f{bottom:140.538000px;}
.y99{bottom:147.540000px;}
.yc5{bottom:151.263000px;}
.y121{bottom:152.104500px;}
.y30{bottom:154.252500px;}
.y5e{bottom:157.818000px;}
.y98{bottom:163.978500px;}
.yc4{bottom:167.701500px;}
.y5d{bottom:169.384500px;}
.y2f{bottom:172.185000px;}
.yc3{bottom:173.415000px;}
.y178{bottom:174.256500px;}
.y155{bottom:175.522500px;}
.y97{bottom:180.417000px;}
.yf8{bottom:184.140000px;}
.yc2{bottom:184.981500px;}
.y5c{bottom:185.823000px;}
.y96{bottom:186.130500px;}
.y2e{bottom:190.117500px;}
.y5b{bottom:191.536500px;}
.y154{bottom:194.074500px;}
.yf7{bottom:200.578500px;}
.yc1{bottom:201.420000px;}
.y19d{bottom:202.060500px;}
.y177{bottom:204.736500px;}
.yc0{bottom:207.133500px;}
.y2d{bottom:208.050000px;}
.y153{bottom:212.007000px;}
.y95{bottom:215.031000px;}
.yf6{bottom:217.017000px;}
.ybf{bottom:218.700000px;}
.y19c{bottom:219.993000px;}
.y120{bottom:222.013500px;}
.y176{bottom:222.669000px;}
.y5a{bottom:226.329000px;}
.y2c{bottom:227.356500px;}
.y152{bottom:229.939500px;}
.y94{bottom:232.965000px;}
.yf5{bottom:233.455500px;}
.ybe{bottom:235.138500px;}
.y19b{bottom:237.925500px;}
.y11f{bottom:239.947500px;}
.y175{bottom:240.601500px;}
.y59{bottom:244.263000px;}
.y2b{bottom:245.289000px;}
.y151{bottom:247.873500px;}
.yf4{bottom:249.892500px;}
.y93{bottom:250.897500px;}
.ybd{bottom:251.577000px;}
.y19a{bottom:255.858000px;}
.y11e{bottom:257.880000px;}
.y58{bottom:262.195500px;}
.y2a{bottom:263.221500px;}
.y150{bottom:265.806000px;}
.yf3{bottom:266.331000px;}
.ybc{bottom:268.015500px;}
.y92{bottom:268.830000px;}
.y174{bottom:273.333000px;}
.y199{bottom:273.790500px;}
.y11d{bottom:275.812500px;}
.y57{bottom:280.708500px;}
.y29{bottom:281.154000px;}
.y14f{bottom:283.738500px;}
.ybb{bottom:284.454000px;}
.y91{bottom:286.762500px;}
.y11c{bottom:293.745000px;}
.y173{bottom:294.255000px;}
.y56{bottom:298.641000px;}
.y28{bottom:299.086500px;}
.yba{bottom:300.892500px;}
.y14e{bottom:301.671000px;}
.y198{bottom:303.666000px;}
.y90{bottom:304.695000px;}
.yf2{bottom:306.252000px;}
.y11b{bottom:311.677500px;}
.y55{bottom:316.573500px;}
.y27{bottom:317.020500px;}
.yb9{bottom:317.329500px;}
.y14d{bottom:319.603500px;}
.y197{bottom:321.598500px;}
.y8f{bottom:322.627500px;}
.yf1{bottom:324.184500px;}
.y11a{bottom:329.610000px;}
.yb8{bottom:333.768000px;}
.y54{bottom:334.507500px;}
.y26{bottom:334.953000px;}
.y172{bottom:337.089000px;}
.y14c{bottom:337.536000px;}
.yb7{bottom:339.481500px;}
.y196{bottom:339.531000px;}
.y8e{bottom:340.561500px;}
.y119{bottom:347.544000px;}
.y53{bottom:352.440000px;}
.y25{bottom:352.885500px;}
.yf0{bottom:353.229000px;}
.y171{bottom:355.021500px;}
.y14b{bottom:355.470000px;}
.y195{bottom:357.465000px;}
.y8d{bottom:358.494000px;}
.y118{bottom:365.476500px;}
.y52{bottom:370.372500px;}
.yb6{bottom:370.782000px;}
.y24{bottom:370.818000px;}
.yef{bottom:371.163000px;}
.y170{bottom:372.955500px;}
.y14a{bottom:373.402500px;}
.y194{bottom:375.397500px;}
.y8c{bottom:376.426500px;}
.y117{bottom:383.409000px;}
.y50{bottom:388.305000px;}
.yb5{bottom:388.714500px;}
.yee{bottom:389.095500px;}
.y16f{bottom:390.888000px;}
.y149{bottom:391.335000px;}
.y51{bottom:393.727500px;}
.y8b{bottom:394.359000px;}
.y116{bottom:401.341500px;}
.y193{bottom:405.273000px;}
.y23{bottom:406.105500px;}
.y4f{bottom:406.237500px;}
.yb4{bottom:406.647000px;}
.yed{bottom:407.028000px;}
.y16e{bottom:408.820500px;}
.y148{bottom:409.267500px;}
.y8a{bottom:412.291500px;}
.y115{bottom:419.274000px;}
.y192{bottom:423.205500px;}
.y4e{bottom:424.170000px;}
.yb3{bottom:424.579500px;}
.yec{bottom:424.960500px;}
.y22{bottom:427.027500px;}
.y147{bottom:427.200000px;}
.y89{bottom:430.224000px;}
.y16d{bottom:437.031000px;}
.y114{bottom:437.206500px;}
.y191{bottom:441.138000px;}
.y4d{bottom:442.104000px;}
.yb2{bottom:442.513500px;}
.yeb{bottom:442.893000px;}
.y146{bottom:445.132500px;}
.y88{bottom:448.158000px;}
.y16c{bottom:454.963500px;}
.y113{bottom:455.140500px;}
.y190{bottom:459.070500px;}
.y4c{bottom:460.036500px;}
.yb1{bottom:460.446000px;}
.yea{bottom:460.825500px;}
.y145{bottom:463.066500px;}
.y87{bottom:466.090500px;}
.y16b{bottom:472.896000px;}
.y112{bottom:473.073000px;}
.y21{bottom:477.754500px;}
.y4b{bottom:477.969000px;}
.yb0{bottom:478.378500px;}
.ye9{bottom:478.759500px;}
.y144{bottom:480.999000px;}
.y86{bottom:484.023000px;}
.y16a{bottom:490.828500px;}
.y110{bottom:491.005500px;}
.y20{bottom:495.687000px;}
.y4a{bottom:495.901500px;}
.yaf{bottom:496.311000px;}
.y111{bottom:496.428000px;}
.ye8{bottom:496.692000px;}
.y143{bottom:498.931500px;}
.y85{bottom:501.955500px;}
.y169{bottom:508.761000px;}
.y10f{bottom:508.938000px;}
.y1f{bottom:513.619500px;}
.y48{bottom:513.834000px;}
.yae{bottom:514.243500px;}
.ye7{bottom:514.624500px;}
.y142{bottom:516.864000px;}
.y49{bottom:519.258000px;}
.y84{bottom:519.888000px;}
.y10e{bottom:526.870500px;}
.y18f{bottom:527.523000px;}
.y1e{bottom:531.552000px;}
.y47{bottom:531.766500px;}
.yad{bottom:532.176000px;}
.y141{bottom:535.416000px;}
.y168{bottom:537.240000px;}
.y83{bottom:537.822000px;}
.ye6{bottom:544.110000px;}
.y10d{bottom:544.803000px;}
.y1d{bottom:549.486000px;}
.y46{bottom:549.700500px;}
.yac{bottom:550.110000px;}
.y140{bottom:553.348500px;}
.y167{bottom:555.172500px;}
.y82{bottom:555.754500px;}
.ye5{bottom:562.042500px;}
.y10c{bottom:562.737000px;}
.y1c{bottom:567.418500px;}
.y45{bottom:567.633000px;}
.yab{bottom:568.576500px;}
.y18e{bottom:570.958500px;}
.y13f{bottom:571.281000px;}
.y166{bottom:573.105000px;}
.y81{bottom:573.687000px;}
.ye4{bottom:579.975000px;}
.y10b{bottom:580.669500px;}
.y1b{bottom:585.351000px;}
.y44{bottom:585.565500px;}
.yaa{bottom:586.509000px;}
.y18d{bottom:588.891000px;}
.y13d{bottom:589.213500px;}
.y165{bottom:591.037500px;}
.y7f{bottom:591.619500px;}
.y13e{bottom:594.637500px;}
.y80{bottom:597.042000px;}
.ye3{bottom:597.909000px;}
.y10a{bottom:598.602000px;}
.y1a{bottom:603.283500px;}
.y43{bottom:603.498000px;}
.ya9{bottom:604.441500px;}
.y18c{bottom:606.823500px;}
.y13c{bottom:607.147500px;}
.y164{bottom:608.971500px;}
.y7e{bottom:609.552000px;}
.ye2{bottom:615.841500px;}
.y109{bottom:616.534500px;}
.y42{bottom:621.430500px;}
.ya8{bottom:622.374000px;}
.y19{bottom:622.590000px;}
.y18b{bottom:624.756000px;}
.y13b{bottom:625.080000px;}
.y163{bottom:626.904000px;}
.y7d{bottom:627.484500px;}
.ye1{bottom:633.774000px;}
.y108{bottom:634.467000px;}
.y41{bottom:639.363000px;}
.ya7{bottom:640.306500px;}
.y18{bottom:640.522500px;}
.y18a{bottom:642.688500px;}
.y13a{bottom:643.012500px;}
.y162{bottom:644.836500px;}
.y7c{bottom:645.418500px;}
.ye0{bottom:651.706500px;}
.y107{bottom:652.399500px;}
.y40{bottom:657.297000px;}
.ya6{bottom:658.239000px;}
.y17{bottom:658.455000px;}
.y189{bottom:660.622500px;}
.y139{bottom:661.564500px;}
.y161{bottom:662.769000px;}
.y7b{bottom:663.351000px;}
.ydf{bottom:669.639000px;}
.y106{bottom:670.333500px;}
.y3f{bottom:675.229500px;}
.ya5{bottom:676.173000px;}
.y16{bottom:676.387500px;}
.y138{bottom:679.497000px;}
.y160{bottom:680.701500px;}
.y7a{bottom:681.283500px;}
.yde{bottom:687.571500px;}
.y105{bottom:688.266000px;}
.y3e{bottom:693.162000px;}
.y188{bottom:693.352500px;}
.ya4{bottom:694.105500px;}
.y15{bottom:694.321500px;}
.y137{bottom:697.429500px;}
.y15f{bottom:698.634000px;}
.y79{bottom:699.216000px;}
.ydd{bottom:705.505500px;}
.y3d{bottom:711.094500px;}
.ya3{bottom:712.038000px;}
.y14{bottom:712.254000px;}
.y78{bottom:717.148500px;}
.y104{bottom:720.997500px;}
.ydc{bottom:723.438000px;}
.y15e{bottom:727.113000px;}
.y3c{bottom:729.607500px;}
.ya2{bottom:729.970500px;}
.y13{bottom:730.186500px;}
.y77{bottom:735.081000px;}
.y187{bottom:736.789500px;}
.ydb{bottom:741.370500px;}
.y103{bottom:741.918000px;}
.y15d{bottom:745.045500px;}
.y136{bottom:746.757000px;}
.y3b{bottom:747.541500px;}
.ya1{bottom:747.903000px;}
.y12{bottom:748.119000px;}
.y186{bottom:754.722000px;}
.yda{bottom:759.303000px;}
.y15b{bottom:762.978000px;}
.y3a{bottom:765.474000px;}
.y9f{bottom:765.835500px;}
.y11{bottom:766.051500px;}
.y76{bottom:767.812500px;}
.y15c{bottom:768.402000px;}
.ya0{bottom:771.259500px;}
.y185{bottom:772.654500px;}
.yd9{bottom:777.235500px;}
.y15a{bottom:780.910500px;}
.y39{bottom:783.406500px;}
.y9e{bottom:783.769500px;}
.y135{bottom:783.918000px;}
.y10{bottom:783.984000px;}
.y102{bottom:784.752000px;}
.y75{bottom:788.734500px;}
.y184{bottom:790.587000px;}
.yd8{bottom:795.168000px;}
.y134{bottom:798.264000px;}
.y38{bottom:801.339000px;}
.yf{bottom:801.918000px;}
.y101{bottom:802.684500px;}
.y183{bottom:808.519500px;}
.y159{bottom:809.121000px;}
.yd7{bottom:813.102000px;}
.y9d{bottom:817.494000px;}
.y36{bottom:819.271500px;}
.ye{bottom:819.850500px;}
.y100{bottom:820.617000px;}
.y37{bottom:824.695500px;}
.y182{bottom:826.452000px;}
.y158{bottom:827.055000px;}
.y74{bottom:830.889000px;}
.yd6{bottom:831.034500px;}
.y35{bottom:837.204000px;}
.yd{bottom:837.783000px;}
.y9c{bottom:838.414500px;}
.yff{bottom:838.549500px;}
.y181{bottom:844.386000px;}
.y133{bottom:844.680000px;}
.y157{bottom:844.987500px;}
.y73{bottom:848.821500px;}
.yd5{bottom:848.967000px;}
.y34{bottom:855.138000px;}
.yc{bottom:855.715500px;}
.yfe{bottom:856.482000px;}
.y180{bottom:862.318500px;}
.y72{bottom:866.754000px;}
.yd4{bottom:866.899500px;}
.y33{bottom:873.070500px;}
.yfd{bottom:874.416000px;}
.y156{bottom:877.719000px;}
.y132{bottom:880.089000px;}
.y17f{bottom:880.251000px;}
.y71{bottom:884.686500px;}
.yd3{bottom:884.832000px;}
.yb{bottom:891.003000px;}
.yfc{bottom:892.348500px;}
.y131{bottom:894.435000px;}
.y17e{bottom:898.183500px;}
.y70{bottom:902.620500px;}
.yd2{bottom:902.764500px;}
.y130{bottom:908.781000px;}
.yfb{bottom:910.281000px;}
.y17d{bottom:916.116000px;}
.y6f{bottom:920.553000px;}
.yd1{bottom:920.698500px;}
.ya{bottom:924.868500px;}
.yfa{bottom:928.213500px;}
.y17c{bottom:934.048500px;}
.y6e{bottom:938.485500px;}
.yd0{bottom:938.631000px;}
.y12f{bottom:944.202000px;}
.y17b{bottom:951.982500px;}
.y6d{bottom:956.418000px;}
.ycf{bottom:956.563500px;}
.y9{bottom:957.744000px;}
.y17a{bottom:969.915000px;}
.y8{bottom:974.182500px;}
.y6c{bottom:974.350500px;}
.yce{bottom:974.496000px;}
.y12e{bottom:989.364000px;}
.y7{bottom:990.621000px;}
.y6b{bottom:992.283000px;}
.ycd{bottom:992.428500px;}
.y179{bottom:1002.646500px;}
.y12d{bottom:1003.710000px;}
.y6{bottom:1007.059500px;}
.y6a{bottom:1010.217000px;}
.ycc{bottom:1010.361000px;}
.y5{bottom:1023.498000px;}
.y69{bottom:1028.149500px;}
.ycb{bottom:1028.295000px;}
.y12b{bottom:1033.189500px;}
.y128{bottom:1039.095300px;}
.y4{bottom:1039.936500px;}
.y68{bottom:1046.082000px;}
.yca{bottom:1046.227500px;}
.y12a{bottom:1047.535500px;}
.y12c{bottom:1047.997500px;}
.y127{bottom:1053.442500px;}
.y1a0{bottom:1058.037000px;}
.y3{bottom:1058.392500px;}
.y129{bottom:1061.881500px;}
.y67{bottom:1064.014500px;}
.yc9{bottom:1064.160000px;}
.y19f{bottom:1075.969500px;}
.y66{bottom:1081.947000px;}
.yc8{bottom:1082.092500px;}
.y2{bottom:1082.116500px;}
.y126{bottom:1098.598500px;}
.y65{bottom:1099.879500px;}
.yc7{bottom:1100.025000px;}
.yf9{bottom:1105.303500px;}
.y19e{bottom:1105.857000px;}
.y64{bottom:1117.813500px;}
.y1{bottom:1122.465000px;}
.yc6{bottom:1132.756500px;}
.y63{bottom:1135.746000px;}
.y125{bottom:1141.146000px;}
.y62{bottom:1153.678500px;}
.y124{bottom:1155.492000px;}
.h8{height:26.791603px;}
.h7{height:31.256572px;}
.hd{height:35.721899px;}
.h9{height:35.937331px;}
.hb{height:39.930101px;}
.h5{height:40.187405px;}
.h4{height:44.532822px;}
.h6{height:44.652373px;}
.hc{height:52.946572px;}
.ha{height:52.952572px;}
.h3{height:53.439744px;}
.h2{height:64.127514px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:106.341000px;}
.x4{left:107.368500px;}
.x7{left:113.614500px;}
.x23{left:118.896000px;}
.x15{left:120.751500px;}
.x6{left:122.944500px;}
.x28{left:125.185500px;}
.x19{left:126.477000px;}
.x1{left:127.918500px;}
.x1a{left:132.208500px;}
.x26{left:136.846500px;}
.x29{left:137.887500px;}
.x36{left:145.305900px;}
.x37{left:147.147900px;}
.x53{left:166.158000px;}
.x27{left:167.914500px;}
.x24{left:202.104000px;}
.x5{left:210.039000px;}
.x8{left:231.217500px;}
.x33{left:237.685500px;}
.x3d{left:243.840300px;}
.x34{left:245.453100px;}
.x3b{left:248.807100px;}
.x16{left:250.827000px;}
.x3a{left:254.850300px;}
.x3c{left:260.015100px;}
.x35{left:261.072300px;}
.x2a{left:336.771000px;}
.x2{left:344.211000px;}
.x39{left:345.892800px;}
.x38{left:353.155200px;}
.x3e{left:368.197500px;}
.x17{left:371.016000px;}
.x18{left:384.556500px;}
.x25{left:410.295000px;}
.x3{left:417.544500px;}
.x14{left:444.003000px;}
.x21{left:459.120000px;}
.x9{left:460.914000px;}
.x51{left:468.231000px;}
.x32{left:474.405000px;}
.xc{left:475.857000px;}
.x4f{left:478.099500px;}
.x11{left:479.391000px;}
.x12{left:485.122500px;}
.x1b{left:486.729000px;}
.x2b{left:490.801500px;}
.x45{left:499.062000px;}
.x42{left:509.466000px;}
.x46{left:512.427000px;}
.x2e{left:515.421000px;}
.xa{left:518.343000px;}
.xb{left:529.059000px;}
.x1c{left:546.517500px;}
.x50{left:563.106000px;}
.x52{left:579.774000px;}
.x4b{left:580.930500px;}
.x41{left:594.961500px;}
.x1d{left:596.895000px;}
.x4d{left:598.102500px;}
.x1e{left:607.617000px;}
.x43{left:621.327000px;}
.x40{left:628.713000px;}
.x4e{left:648.022500px;}
.x44{left:661.360500px;}
.x49{left:668.083500px;}
.xd{left:671.085000px;}
.x31{left:672.918000px;}
.x22{left:680.241000px;}
.xe{left:682.996500px;}
.x2f{left:688.422000px;}
.x4a{left:694.983000px;}
.x30{left:704.976000px;}
.x47{left:725.673000px;}
.x13{left:743.931000px;}
.xf{left:748.077000px;}
.x10{left:762.051000px;}
.x20{left:763.209000px;}
.x1f{left:773.875500px;}
.x48{left:775.752000px;}
.x2c{left:778.755000px;}
.x2d{left:785.317500px;}
.x4c{left:787.158000px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.170423pt;}
.ls2{letter-spacing:2.653692pt;}
.ws44{word-spacing:-31.880533pt;}
.ws2{word-spacing:-26.566933pt;}
.ws67{word-spacing:-23.910400pt;}
.ws98{word-spacing:-21.253547pt;}
.ws0{word-spacing:-16.985901pt;}
.wsd{word-spacing:-16.365231pt;}
.ws23{word-spacing:-16.152695pt;}
.ws9c{word-spacing:-16.099562pt;}
.ws9{word-spacing:-15.941956pt;}
.ws95{word-spacing:-15.940267pt;}
.wsb5{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;}
.ws43{word-spacing:-14.983750pt;}
.ws1d{word-spacing:-14.877483pt;}
.ws33{word-spacing:-14.824349pt;}
.ws7a{word-spacing:-14.558679pt;}
.ws94{word-spacing:-14.441882pt;}
.ws55{word-spacing:-14.399278pt;}
.ws71{word-spacing:-14.239876pt;}
.ws50{word-spacing:-14.186742pt;}
.ws1{word-spacing:-14.154957pt;}
.ws35{word-spacing:-14.133609pt;}
.ws5a{word-spacing:-14.080475pt;}
.ws75{word-spacing:-14.027341pt;}
.wsc{word-spacing:-13.921073pt;}
.wsa8{word-spacing:-13.867939pt;}
.ws31{word-spacing:-13.814805pt;}
.ws12{word-spacing:-13.761671pt;}
.ws83{word-spacing:-13.676749pt;}
.ws2f{word-spacing:-13.655404pt;}
.ws30{word-spacing:-13.602270pt;}
.wsb8{word-spacing:-13.549136pt;}
.wsb2{word-spacing:-13.477520pt;}
.wsb3{word-spacing:-13.442868pt;}
.wsa4{word-spacing:-13.230333pt;}
.ws9f{word-spacing:-13.070931pt;}
.wsae{word-spacing:-12.911530pt;}
.ws8c{word-spacing:-12.858396pt;}
.ws9a{word-spacing:-12.752128pt;}
.ws21{word-spacing:-12.698994pt;}
.ws92{word-spacing:-12.645860pt;}
.ws9d{word-spacing:-12.592726pt;}
.ws20{word-spacing:-12.273923pt;}
.ws27{word-spacing:-12.220789pt;}
.ws68{word-spacing:-12.146483pt;}
.ws78{word-spacing:-12.114522pt;}
.wsf{word-spacing:-12.061388pt;}
.ws1f{word-spacing:-12.008254pt;}
.ws1e{word-spacing:-11.955120pt;}
.wsb{word-spacing:-11.901986pt;}
.ws14{word-spacing:-11.848852pt;}
.ws51{word-spacing:-11.811738pt;}
.ws1c{word-spacing:-11.795718pt;}
.ws58{word-spacing:-11.751193pt;}
.wse{word-spacing:-11.742585pt;}
.ws16{word-spacing:-11.689451pt;}
.ws13{word-spacing:-11.636317pt;}
.wsbe{word-spacing:-11.607147pt;}
.ws24{word-spacing:-11.583183pt;}
.ws6e{word-spacing:-11.572634pt;}
.ws10{word-spacing:-11.530049pt;}
.ws57{word-spacing:-11.476915pt;}
.ws3d{word-spacing:-11.370647pt;}
.ws2e{word-spacing:-11.317514pt;}
.ws52{word-spacing:-11.237888pt;}
.wsa2{word-spacing:-11.211246pt;}
.ws6{word-spacing:-11.190067pt;}
.ws38{word-spacing:-11.142246pt;}
.ws91{word-spacing:-11.104978pt;}
.ws37{word-spacing:-11.094426pt;}
.ws19{word-spacing:-10.998710pt;}
.ws7{word-spacing:-10.950963pt;}
.ws82{word-spacing:-10.855322pt;}
.ws3a{word-spacing:-10.759680pt;}
.ws2d{word-spacing:-10.733041pt;}
.ws6a{word-spacing:-10.711859pt;}
.ws8{word-spacing:-10.616218pt;}
.ws46{word-spacing:-10.573639pt;}
.ws64{word-spacing:-10.520576pt;}
.ws53{word-spacing:-10.472755pt;}
.ws4f{word-spacing:-10.467372pt;}
.ws25{word-spacing:-10.414238pt;}
.ws3{word-spacing:-10.377114pt;}
.ws29{word-spacing:-10.254836pt;}
.wsaf{word-spacing:-10.201702pt;}
.ws4c{word-spacing:-10.148569pt;}
.ws2a{word-spacing:-10.095435pt;}
.ws73{word-spacing:-10.042301pt;}
.ws34{word-spacing:-9.936033pt;}
.ws5c{word-spacing:-9.882899pt;}
.ws7b{word-spacing:-9.829765pt;}
.ws2b{word-spacing:-9.776631pt;}
.ws47{word-spacing:-9.723498pt;}
.ws11{word-spacing:-9.670364pt;}
.ws76{word-spacing:-9.617230pt;}
.ws42{word-spacing:-9.564096pt;}
.ws99{word-spacing:-9.510962pt;}
.ws97{word-spacing:-9.436575pt;}
.ws84{word-spacing:-9.372877pt;}
.ws49{word-spacing:-9.351561pt;}
.ws96{word-spacing:-9.309053pt;}
.ws4e{word-spacing:-9.245293pt;}
.ws5{word-spacing:-9.229414pt;}
.ws6d{word-spacing:-9.133773pt;}
.ws79{word-spacing:-9.032757pt;}
.ws5f{word-spacing:-8.979623pt;}
.wsad{word-spacing:-8.873356pt;}
.wsa5{word-spacing:-8.820222pt;}
.ws70{word-spacing:-8.767088pt;}
.ws69{word-spacing:-8.665926pt;}
.ws4{word-spacing:-8.607744pt;}
.ws5d{word-spacing:-8.590791pt;}
.ws26{word-spacing:-8.554553pt;}
.wsbf{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;}
.ws18{word-spacing:-8.129482pt;}
.ws5b{word-spacing:-8.023214pt;}
.ws77{word-spacing:-7.970080pt;}
.ws48{word-spacing:-7.863812pt;}
.ws2c{word-spacing:-7.810678pt;}
.ws8b{word-spacing:-7.757545pt;}
.ws8f{word-spacing:-7.651277pt;}
.wsb4{word-spacing:-7.598143pt;}
.wsb7{word-spacing:-7.385607pt;}
.ws40{word-spacing:-7.279340pt;}
.ws8d{word-spacing:-7.226206pt;}
.ws6f{word-spacing:-7.173072pt;}
.ws15{word-spacing:-7.066804pt;}
.ws56{word-spacing:-7.013670pt;}
.wsb9{word-spacing:-6.960537pt;}
.ws74{word-spacing:-6.907403pt;}
.wsa6{word-spacing:-6.853098pt;}
.ws17{word-spacing:-6.748001pt;}
.ws90{word-spacing:-6.588599pt;}
.ws7c{word-spacing:-6.429198pt;}
.ws8e{word-spacing:-6.376064pt;}
.ws4d{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;}
.ws1b{word-spacing:-5.738458pt;}
.wsa7{word-spacing:-5.579056pt;}
.wsa9{word-spacing:-5.525922pt;}
.ws61{word-spacing:-5.472788pt;}
.ws28{word-spacing:-5.419654pt;}
.ws36{word-spacing:-5.366521pt;}
.ws63{word-spacing:-5.313387pt;}
.ws66{word-spacing:-5.209098pt;}
.ws72{word-spacing:-5.207119pt;}
.ws6c{word-spacing:-5.116826pt;}
.ws3e{word-spacing:-5.100851pt;}
.ws6b{word-spacing:-5.069005pt;}
.ws1a{word-spacing:-5.047717pt;}
.ws45{word-spacing:-4.941450pt;}
.ws9b{word-spacing:-4.569513pt;}
.ws7e{word-spacing:-3.188032pt;}
.ws60{word-spacing:-3.134898pt;}
.ws81{word-spacing:-2.709827pt;}
.ws7d{word-spacing:-2.178489pt;}
.wsa0{word-spacing:-1.291162pt;}
.ws86{word-spacing:-0.797008pt;}
.ws5e{word-spacing:-0.053134pt;}
.ws39{word-spacing:-0.047821pt;}
.ws3b{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.627370pt;}
.wsbd{word-spacing:0.637606pt;}
.ws22{word-spacing:0.797008pt;}
.wsc0{word-spacing:1.275213pt;}
.ws85{word-spacing:1.434614pt;}
.wsbb{word-spacing:1.647150pt;}
.wsb1{word-spacing:1.865011pt;}
.wsb0{word-spacing:1.912832pt;}
.ws88{word-spacing:2.284756pt;}
.ws80{word-spacing:2.816095pt;}
.wsba{word-spacing:4.622646pt;}
.ws87{word-spacing:4.941450pt;}
.ws89{word-spacing:11.211246pt;}
.wsa1{word-spacing:13.017797pt;}
.ws7f{word-spacing:31.827186pt;}
.wsa{word-spacing:31.880533pt;}
.ws93{word-spacing:35.817779pt;}
._17{margin-left:-6.535466pt;}
._d{margin-left:-4.856431pt;}
._18{margin-left:-3.772505pt;}
._4{margin-left:-2.821427pt;}
._0{margin-left:-1.147696pt;}
._1{width:1.004227pt;}
._11{width:2.630144pt;}
._1d{width:11.901986pt;}
._10{width:12.964663pt;}
._e{width:14.027341pt;}
._13{width:16.110197pt;}
._5{width:17.502406pt;}
._b{width:18.798775pt;}
._6{width:19.797683pt;}
._12{width:21.370450pt;}
._3{width:22.906157pt;}
._2{width:23.814758pt;}
._15{width:25.105920pt;}
._a{width:26.460666pt;}
._14{width:27.417075pt;}
._c{width:29.919699pt;}
._8{width:31.019565pt;}
._f{width:32.204455pt;}
._1a{width:33.910043pt;}
._16{width:35.620940pt;}
._1c{width:37.523146pt;}
._1f{width:44.637764pt;}
._1b{width:45.801393pt;}
._19{width:62.432293pt;}
._9{width:63.761067pt;}
._1e{width:77.522311pt;}
._7{width:339.460770pt;}
.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;}
.y61{bottom:65.381333pt;}
.y9b{bottom:101.924000pt;}
.y32{bottom:105.232000pt;}
.y123{bottom:110.310667pt;}
.y9a{bottom:116.536000pt;}
.y60{bottom:119.844000pt;}
.y122{bottom:120.592000pt;}
.y31{bottom:121.172000pt;}
.y5f{bottom:124.922667pt;}
.y99{bottom:131.146667pt;}
.yc5{bottom:134.456000pt;}
.y121{bottom:135.204000pt;}
.y30{bottom:137.113333pt;}
.y5e{bottom:140.282667pt;}
.y98{bottom:145.758667pt;}
.yc4{bottom:149.068000pt;}
.y5d{bottom:150.564000pt;}
.y2f{bottom:153.053333pt;}
.yc3{bottom:154.146667pt;}
.y178{bottom:154.894667pt;}
.y155{bottom:156.020000pt;}
.y97{bottom:160.370667pt;}
.yf8{bottom:163.680000pt;}
.yc2{bottom:164.428000pt;}
.y5c{bottom:165.176000pt;}
.y96{bottom:165.449333pt;}
.y2e{bottom:168.993333pt;}
.y5b{bottom:170.254667pt;}
.y154{bottom:172.510667pt;}
.yf7{bottom:178.292000pt;}
.yc1{bottom:179.040000pt;}
.y19d{bottom:179.609333pt;}
.y177{bottom:181.988000pt;}
.yc0{bottom:184.118667pt;}
.y2d{bottom:184.933333pt;}
.y153{bottom:188.450667pt;}
.y95{bottom:191.138667pt;}
.yf6{bottom:192.904000pt;}
.ybf{bottom:194.400000pt;}
.y19c{bottom:195.549333pt;}
.y120{bottom:197.345333pt;}
.y176{bottom:197.928000pt;}
.y5a{bottom:201.181333pt;}
.y2c{bottom:202.094667pt;}
.y152{bottom:204.390667pt;}
.y94{bottom:207.080000pt;}
.yf5{bottom:207.516000pt;}
.ybe{bottom:209.012000pt;}
.y19b{bottom:211.489333pt;}
.y11f{bottom:213.286667pt;}
.y175{bottom:213.868000pt;}
.y59{bottom:217.122667pt;}
.y2b{bottom:218.034667pt;}
.y151{bottom:220.332000pt;}
.yf4{bottom:222.126667pt;}
.y93{bottom:223.020000pt;}
.ybd{bottom:223.624000pt;}
.y19a{bottom:227.429333pt;}
.y11e{bottom:229.226667pt;}
.y58{bottom:233.062667pt;}
.y2a{bottom:233.974667pt;}
.y150{bottom:236.272000pt;}
.yf3{bottom:236.738667pt;}
.ybc{bottom:238.236000pt;}
.y92{bottom:238.960000pt;}
.y174{bottom:242.962667pt;}
.y199{bottom:243.369333pt;}
.y11d{bottom:245.166667pt;}
.y57{bottom:249.518667pt;}
.y29{bottom:249.914667pt;}
.y14f{bottom:252.212000pt;}
.ybb{bottom:252.848000pt;}
.y91{bottom:254.900000pt;}
.y11c{bottom:261.106667pt;}
.y173{bottom:261.560000pt;}
.y56{bottom:265.458667pt;}
.y28{bottom:265.854667pt;}
.yba{bottom:267.460000pt;}
.y14e{bottom:268.152000pt;}
.y198{bottom:269.925333pt;}
.y90{bottom:270.840000pt;}
.yf2{bottom:272.224000pt;}
.y11b{bottom:277.046667pt;}
.y55{bottom:281.398667pt;}
.y27{bottom:281.796000pt;}
.yb9{bottom:282.070667pt;}
.y14d{bottom:284.092000pt;}
.y197{bottom:285.865333pt;}
.y8f{bottom:286.780000pt;}
.yf1{bottom:288.164000pt;}
.y11a{bottom:292.986667pt;}
.yb8{bottom:296.682667pt;}
.y54{bottom:297.340000pt;}
.y26{bottom:297.736000pt;}
.y172{bottom:299.634667pt;}
.y14c{bottom:300.032000pt;}
.yb7{bottom:301.761333pt;}
.y196{bottom:301.805333pt;}
.y8e{bottom:302.721333pt;}
.y119{bottom:308.928000pt;}
.y53{bottom:313.280000pt;}
.y25{bottom:313.676000pt;}
.yf0{bottom:313.981333pt;}
.y171{bottom:315.574667pt;}
.y14b{bottom:315.973333pt;}
.y195{bottom:317.746667pt;}
.y8d{bottom:318.661333pt;}
.y118{bottom:324.868000pt;}
.y52{bottom:329.220000pt;}
.yb6{bottom:329.584000pt;}
.y24{bottom:329.616000pt;}
.yef{bottom:329.922667pt;}
.y170{bottom:331.516000pt;}
.y14a{bottom:331.913333pt;}
.y194{bottom:333.686667pt;}
.y8c{bottom:334.601333pt;}
.y117{bottom:340.808000pt;}
.y50{bottom:345.160000pt;}
.yb5{bottom:345.524000pt;}
.yee{bottom:345.862667pt;}
.y16f{bottom:347.456000pt;}
.y149{bottom:347.853333pt;}
.y51{bottom:349.980000pt;}
.y8b{bottom:350.541333pt;}
.y116{bottom:356.748000pt;}
.y193{bottom:360.242667pt;}
.y23{bottom:360.982667pt;}
.y4f{bottom:361.100000pt;}
.yb4{bottom:361.464000pt;}
.yed{bottom:361.802667pt;}
.y16e{bottom:363.396000pt;}
.y148{bottom:363.793333pt;}
.y8a{bottom:366.481333pt;}
.y115{bottom:372.688000pt;}
.y192{bottom:376.182667pt;}
.y4e{bottom:377.040000pt;}
.yb3{bottom:377.404000pt;}
.yec{bottom:377.742667pt;}
.y22{bottom:379.580000pt;}
.y147{bottom:379.733333pt;}
.y89{bottom:382.421333pt;}
.y16d{bottom:388.472000pt;}
.y114{bottom:388.628000pt;}
.y191{bottom:392.122667pt;}
.y4d{bottom:392.981333pt;}
.yb2{bottom:393.345333pt;}
.yeb{bottom:393.682667pt;}
.y146{bottom:395.673333pt;}
.y88{bottom:398.362667pt;}
.y16c{bottom:404.412000pt;}
.y113{bottom:404.569333pt;}
.y190{bottom:408.062667pt;}
.y4c{bottom:408.921333pt;}
.yb1{bottom:409.285333pt;}
.yea{bottom:409.622667pt;}
.y145{bottom:411.614667pt;}
.y87{bottom:414.302667pt;}
.y16b{bottom:420.352000pt;}
.y112{bottom:420.509333pt;}
.y21{bottom:424.670667pt;}
.y4b{bottom:424.861333pt;}
.yb0{bottom:425.225333pt;}
.ye9{bottom:425.564000pt;}
.y144{bottom:427.554667pt;}
.y86{bottom:430.242667pt;}
.y16a{bottom:436.292000pt;}
.y110{bottom:436.449333pt;}
.y20{bottom:440.610667pt;}
.y4a{bottom:440.801333pt;}
.yaf{bottom:441.165333pt;}
.y111{bottom:441.269333pt;}
.ye8{bottom:441.504000pt;}
.y143{bottom:443.494667pt;}
.y85{bottom:446.182667pt;}
.y169{bottom:452.232000pt;}
.y10f{bottom:452.389333pt;}
.y1f{bottom:456.550667pt;}
.y48{bottom:456.741333pt;}
.yae{bottom:457.105333pt;}
.ye7{bottom:457.444000pt;}
.y142{bottom:459.434667pt;}
.y49{bottom:461.562667pt;}
.y84{bottom:462.122667pt;}
.y10e{bottom:468.329333pt;}
.y18f{bottom:468.909333pt;}
.y1e{bottom:472.490667pt;}
.y47{bottom:472.681333pt;}
.yad{bottom:473.045333pt;}
.y141{bottom:475.925333pt;}
.y168{bottom:477.546667pt;}
.y83{bottom:478.064000pt;}
.ye6{bottom:483.653333pt;}
.y10d{bottom:484.269333pt;}
.y1d{bottom:488.432000pt;}
.y46{bottom:488.622667pt;}
.yac{bottom:488.986667pt;}
.y140{bottom:491.865333pt;}
.y167{bottom:493.486667pt;}
.y82{bottom:494.004000pt;}
.ye5{bottom:499.593333pt;}
.y10c{bottom:500.210667pt;}
.y1c{bottom:504.372000pt;}
.y45{bottom:504.562667pt;}
.yab{bottom:505.401333pt;}
.y18e{bottom:507.518667pt;}
.y13f{bottom:507.805333pt;}
.y166{bottom:509.426667pt;}
.y81{bottom:509.944000pt;}
.ye4{bottom:515.533333pt;}
.y10b{bottom:516.150667pt;}
.y1b{bottom:520.312000pt;}
.y44{bottom:520.502667pt;}
.yaa{bottom:521.341333pt;}
.y18d{bottom:523.458667pt;}
.y13d{bottom:523.745333pt;}
.y165{bottom:525.366667pt;}
.y7f{bottom:525.884000pt;}
.y13e{bottom:528.566667pt;}
.y80{bottom:530.704000pt;}
.ye3{bottom:531.474667pt;}
.y10a{bottom:532.090667pt;}
.y1a{bottom:536.252000pt;}
.y43{bottom:536.442667pt;}
.ya9{bottom:537.281333pt;}
.y18c{bottom:539.398667pt;}
.y13c{bottom:539.686667pt;}
.y164{bottom:541.308000pt;}
.y7e{bottom:541.824000pt;}
.ye2{bottom:547.414667pt;}
.y109{bottom:548.030667pt;}
.y42{bottom:552.382667pt;}
.ya8{bottom:553.221333pt;}
.y19{bottom:553.413333pt;}
.y18b{bottom:555.338667pt;}
.y13b{bottom:555.626667pt;}
.y163{bottom:557.248000pt;}
.y7d{bottom:557.764000pt;}
.ye1{bottom:563.354667pt;}
.y108{bottom:563.970667pt;}
.y41{bottom:568.322667pt;}
.ya7{bottom:569.161333pt;}
.y18{bottom:569.353333pt;}
.y18a{bottom:571.278667pt;}
.y13a{bottom:571.566667pt;}
.y162{bottom:573.188000pt;}
.y7c{bottom:573.705333pt;}
.ye0{bottom:579.294667pt;}
.y107{bottom:579.910667pt;}
.y40{bottom:584.264000pt;}
.ya6{bottom:585.101333pt;}
.y17{bottom:585.293333pt;}
.y189{bottom:587.220000pt;}
.y139{bottom:588.057333pt;}
.y161{bottom:589.128000pt;}
.y7b{bottom:589.645333pt;}
.ydf{bottom:595.234667pt;}
.y106{bottom:595.852000pt;}
.y3f{bottom:600.204000pt;}
.ya5{bottom:601.042667pt;}
.y16{bottom:601.233333pt;}
.y138{bottom:603.997333pt;}
.y160{bottom:605.068000pt;}
.y7a{bottom:605.585333pt;}
.yde{bottom:611.174667pt;}
.y105{bottom:611.792000pt;}
.y3e{bottom:616.144000pt;}
.y188{bottom:616.313333pt;}
.ya4{bottom:616.982667pt;}
.y15{bottom:617.174667pt;}
.y137{bottom:619.937333pt;}
.y15f{bottom:621.008000pt;}
.y79{bottom:621.525333pt;}
.ydd{bottom:627.116000pt;}
.y3d{bottom:632.084000pt;}
.ya3{bottom:632.922667pt;}
.y14{bottom:633.114667pt;}
.y78{bottom:637.465333pt;}
.y104{bottom:640.886667pt;}
.ydc{bottom:643.056000pt;}
.y15e{bottom:646.322667pt;}
.y3c{bottom:648.540000pt;}
.ya2{bottom:648.862667pt;}
.y13{bottom:649.054667pt;}
.y77{bottom:653.405333pt;}
.y187{bottom:654.924000pt;}
.ydb{bottom:658.996000pt;}
.y103{bottom:659.482667pt;}
.y15d{bottom:662.262667pt;}
.y136{bottom:663.784000pt;}
.y3b{bottom:664.481333pt;}
.ya1{bottom:664.802667pt;}
.y12{bottom:664.994667pt;}
.y186{bottom:670.864000pt;}
.yda{bottom:674.936000pt;}
.y15b{bottom:678.202667pt;}
.y3a{bottom:680.421333pt;}
.y9f{bottom:680.742667pt;}
.y11{bottom:680.934667pt;}
.y76{bottom:682.500000pt;}
.y15c{bottom:683.024000pt;}
.ya0{bottom:685.564000pt;}
.y185{bottom:686.804000pt;}
.yd9{bottom:690.876000pt;}
.y15a{bottom:694.142667pt;}
.y39{bottom:696.361333pt;}
.y9e{bottom:696.684000pt;}
.y135{bottom:696.816000pt;}
.y10{bottom:696.874667pt;}
.y102{bottom:697.557333pt;}
.y75{bottom:701.097333pt;}
.y184{bottom:702.744000pt;}
.yd8{bottom:706.816000pt;}
.y134{bottom:709.568000pt;}
.y38{bottom:712.301333pt;}
.yf{bottom:712.816000pt;}
.y101{bottom:713.497333pt;}
.y183{bottom:718.684000pt;}
.y159{bottom:719.218667pt;}
.yd7{bottom:722.757333pt;}
.y9d{bottom:726.661333pt;}
.y36{bottom:728.241333pt;}
.ye{bottom:728.756000pt;}
.y100{bottom:729.437333pt;}
.y37{bottom:733.062667pt;}
.y182{bottom:734.624000pt;}
.y158{bottom:735.160000pt;}
.y74{bottom:738.568000pt;}
.yd6{bottom:738.697333pt;}
.y35{bottom:744.181333pt;}
.yd{bottom:744.696000pt;}
.y9c{bottom:745.257333pt;}
.yff{bottom:745.377333pt;}
.y181{bottom:750.565333pt;}
.y133{bottom:750.826667pt;}
.y157{bottom:751.100000pt;}
.y73{bottom:754.508000pt;}
.yd5{bottom:754.637333pt;}
.y34{bottom:760.122667pt;}
.yc{bottom:760.636000pt;}
.yfe{bottom:761.317333pt;}
.y180{bottom:766.505333pt;}
.y72{bottom:770.448000pt;}
.yd4{bottom:770.577333pt;}
.y33{bottom:776.062667pt;}
.yfd{bottom:777.258667pt;}
.y156{bottom:780.194667pt;}
.y132{bottom:782.301333pt;}
.y17f{bottom:782.445333pt;}
.y71{bottom:786.388000pt;}
.yd3{bottom:786.517333pt;}
.yb{bottom:792.002667pt;}
.yfc{bottom:793.198667pt;}
.y131{bottom:795.053333pt;}
.y17e{bottom:798.385333pt;}
.y70{bottom:802.329333pt;}
.yd2{bottom:802.457333pt;}
.y130{bottom:807.805333pt;}
.yfb{bottom:809.138667pt;}
.y17d{bottom:814.325333pt;}
.y6f{bottom:818.269333pt;}
.yd1{bottom:818.398667pt;}
.ya{bottom:822.105333pt;}
.yfa{bottom:825.078667pt;}
.y17c{bottom:830.265333pt;}
.y6e{bottom:834.209333pt;}
.yd0{bottom:834.338667pt;}
.y12f{bottom:839.290667pt;}
.y17b{bottom:846.206667pt;}
.y6d{bottom:850.149333pt;}
.ycf{bottom:850.278667pt;}
.y9{bottom:851.328000pt;}
.y17a{bottom:862.146667pt;}
.y8{bottom:865.940000pt;}
.y6c{bottom:866.089333pt;}
.yce{bottom:866.218667pt;}
.y12e{bottom:879.434667pt;}
.y7{bottom:880.552000pt;}
.y6b{bottom:882.029333pt;}
.ycd{bottom:882.158667pt;}
.y179{bottom:891.241333pt;}
.y12d{bottom:892.186667pt;}
.y6{bottom:895.164000pt;}
.y6a{bottom:897.970667pt;}
.ycc{bottom:898.098667pt;}
.y5{bottom:909.776000pt;}
.y69{bottom:913.910667pt;}
.ycb{bottom:914.040000pt;}
.y12b{bottom:918.390667pt;}
.y128{bottom:923.640267pt;}
.y4{bottom:924.388000pt;}
.y68{bottom:929.850667pt;}
.yca{bottom:929.980000pt;}
.y12a{bottom:931.142667pt;}
.y12c{bottom:931.553333pt;}
.y127{bottom:936.393333pt;}
.y1a0{bottom:940.477333pt;}
.y3{bottom:940.793333pt;}
.y129{bottom:943.894667pt;}
.y67{bottom:945.790667pt;}
.yc9{bottom:945.920000pt;}
.y19f{bottom:956.417333pt;}
.y66{bottom:961.730667pt;}
.yc8{bottom:961.860000pt;}
.y2{bottom:961.881333pt;}
.y126{bottom:976.532000pt;}
.y65{bottom:977.670667pt;}
.yc7{bottom:977.800000pt;}
.yf9{bottom:982.492000pt;}
.y19e{bottom:982.984000pt;}
.y64{bottom:993.612000pt;}
.y1{bottom:997.746667pt;}
.yc6{bottom:1006.894667pt;}
.y63{bottom:1009.552000pt;}
.y125{bottom:1014.352000pt;}
.y62{bottom:1025.492000pt;}
.y124{bottom:1027.104000pt;}
.h8{height:23.814758pt;}
.h7{height:27.783619pt;}
.hd{height:31.752799pt;}
.h9{height:31.944294pt;}
.hb{height:35.493423pt;}
.h5{height:35.722138pt;}
.h4{height:39.584731pt;}
.h6{height:39.690998pt;}
.hc{height:47.063619pt;}
.ha{height:47.068953pt;}
.h3{height:47.501995pt;}
.h2{height:57.002235pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:94.525333pt;}
.x4{left:95.438667pt;}
.x7{left:100.990667pt;}
.x23{left:105.685333pt;}
.x15{left:107.334667pt;}
.x6{left:109.284000pt;}
.x28{left:111.276000pt;}
.x19{left:112.424000pt;}
.x1{left:113.705333pt;}
.x1a{left:117.518667pt;}
.x26{left:121.641333pt;}
.x29{left:122.566667pt;}
.x36{left:129.160800pt;}
.x37{left:130.798133pt;}
.x53{left:147.696000pt;}
.x27{left:149.257333pt;}
.x24{left:179.648000pt;}
.x5{left:186.701333pt;}
.x8{left:205.526667pt;}
.x33{left:211.276000pt;}
.x3d{left:216.746933pt;}
.x34{left:218.180533pt;}
.x3b{left:221.161867pt;}
.x16{left:222.957333pt;}
.x3a{left:226.533600pt;}
.x3c{left:231.124533pt;}
.x35{left:232.064267pt;}
.x2a{left:299.352000pt;}
.x2{left:305.965333pt;}
.x39{left:307.460267pt;}
.x38{left:313.915733pt;}
.x3e{left:327.286667pt;}
.x17{left:329.792000pt;}
.x18{left:341.828000pt;}
.x25{left:364.706667pt;}
.x3{left:371.150667pt;}
.x14{left:394.669333pt;}
.x21{left:408.106667pt;}
.x9{left:409.701333pt;}
.x51{left:416.205333pt;}
.x32{left:421.693333pt;}
.xc{left:422.984000pt;}
.x4f{left:424.977333pt;}
.x11{left:426.125333pt;}
.x12{left:431.220000pt;}
.x1b{left:432.648000pt;}
.x2b{left:436.268000pt;}
.x45{left:443.610667pt;}
.x42{left:452.858667pt;}
.x46{left:455.490667pt;}
.x2e{left:458.152000pt;}
.xa{left:460.749333pt;}
.xb{left:470.274667pt;}
.x1c{left:485.793333pt;}
.x50{left:500.538667pt;}
.x52{left:515.354667pt;}
.x4b{left:516.382667pt;}
.x41{left:528.854667pt;}
.x1d{left:530.573333pt;}
.x4d{left:531.646667pt;}
.x1e{left:540.104000pt;}
.x43{left:552.290667pt;}
.x40{left:558.856000pt;}
.x4e{left:576.020000pt;}
.x44{left:587.876000pt;}
.x49{left:593.852000pt;}
.xd{left:596.520000pt;}
.x31{left:598.149333pt;}
.x22{left:604.658667pt;}
.xe{left:607.108000pt;}
.x2f{left:611.930667pt;}
.x4a{left:617.762667pt;}
.x30{left:626.645333pt;}
.x47{left:645.042667pt;}
.x13{left:661.272000pt;}
.xf{left:664.957333pt;}
.x10{left:677.378667pt;}
.x20{left:678.408000pt;}
.x1f{left:687.889333pt;}
.x48{left:689.557333pt;}
.x2c{left:692.226667pt;}
.x2d{left:698.060000pt;}
.x4c{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; }
  