
    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_adf203f93af3cfb9868e0b54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_a6b8f47d1d3b7703735be6f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.752000;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_6a4f4a106526ace21313daeb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_b30c54a47b8f120ac976a4d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_c0be0e3dd94da71dcb386aa4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ea619e483c7ee6fab4651144.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_abfb88fa23be66a9d42d22b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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:ff8;src:url('chunks/assets/font_8704551514aa57b223825a81.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.777000;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:ff9;src:url('chunks/assets/font_acd26a0343c94b8ac3bffb54.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708000;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;}
.m1b{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{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);}
.m21{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);}
.m5{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);}
.m6{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);}
.m1d{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);}
.m11{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);}
.md{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);}
.m27{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);}
.m3{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);}
.m24{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);}
.m23{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);}
.mf{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);}
.m16{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);}
.mb{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);}
.m1e{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);}
.m15{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);}
.m28{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);}
.m1c{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);}
.ma{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);}
.m17{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);}
.m10{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);}
.m8{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);}
.m9{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);}
.me{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);}
.m20{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);}
.m7{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);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m13{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);}
.m29{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m1{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);}
.m22{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);}
.m18{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);}
.m19{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);}
.mc{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);}
.m25{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);}
.m4{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);}
.m1a{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v5{vertical-align:-3.890880px;}
.v3{vertical-align:-1.783320px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.472330px;}
.v4{vertical-align:10.416210px;}
.v1{vertical-align:21.690000px;}
.ls4{letter-spacing:-0.711302px;}
.ls5{letter-spacing:-0.662666px;}
.ls3{letter-spacing:-0.097272px;}
.ls6{letter-spacing:-0.084708px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.069712px;}
.ls2{letter-spacing:0.072954px;}
.ls8{letter-spacing:2.371909px;}
.ls9{letter-spacing:13.291873px;}
.lsa{letter-spacing:13.297873px;}
.lsb{letter-spacing:18.239880px;}
.ls1{letter-spacing:32.950890px;}
.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;}
}
.ws4{word-spacing:-16.617617px;}
.wsa0{word-spacing:-13.294127px;}
.wsac{word-spacing:-13.007244px;}
.ws1{word-spacing:-11.632298px;}
.ws32{word-spacing:-10.154127px;}
.ws31{word-spacing:-10.140606px;}
.ws3d{word-spacing:-5.611135px;}
.ws38{word-spacing:-4.542991px;}
.ws33{word-spacing:-4.529471px;}
.ws41{word-spacing:-3.526760px;}
.ws45{word-spacing:-3.168107px;}
.ws95{word-spacing:-3.108331px;}
.ws93{word-spacing:-2.809453px;}
.wsb3{word-spacing:-2.773595px;}
.ws9e{word-spacing:-2.677954px;}
.wsa6{word-spacing:-2.247568px;}
.ws30{word-spacing:-2.211697px;}
.wsa7{word-spacing:-2.199748px;}
.ws19{word-spacing:-2.032370px;}
.ws94{word-spacing:-1.912819px;}
.ws55{word-spacing:-1.853044px;}
.wsf{word-spacing:-1.793268px;}
.wsb2{word-spacing:-1.673721px;}
.ws92{word-spacing:-1.673717px;}
.ws46{word-spacing:-1.613941px;}
.wsc4{word-spacing:-1.578080px;}
.ws7{word-spacing:-1.494390px;}
.ws98{word-spacing:-1.434614px;}
.ws96{word-spacing:-1.255288px;}
.ws53{word-spacing:-1.195512px;}
.wsd5{word-spacing:-1.147694px;}
.ws7c{word-spacing:-0.956410px;}
.wsab{word-spacing:-0.908591px;}
.wse7{word-spacing:-0.860771px;}
.ws27{word-spacing:-0.836858px;}
.wsdc{word-spacing:-0.812950px;}
.wsd4{word-spacing:-0.717309px;}
.ws18{word-spacing:-0.717307px;}
.ws7b{word-spacing:-0.597756px;}
.ws14{word-spacing:-0.418429px;}
.ws9f{word-spacing:-0.382565px;}
.ws2a{word-spacing:-0.358654px;}
.wscc{word-spacing:-0.334744px;}
.ws22{word-spacing:-0.298878px;}
.wsb0{word-spacing:-0.286924px;}
.ws6{word-spacing:-0.239102px;}
.wsaf{word-spacing:-0.191282px;}
.ws26{word-spacing:-0.179327px;}
.wsbb{word-spacing:-0.143462px;}
.wse1{word-spacing:-0.129315px;}
.ws20{word-spacing:-0.119551px;}
.wsc3{word-spacing:-0.095641px;}
.ws9{word-spacing:-0.059776px;}
.wsad{word-spacing:-0.047821px;}
.wse8{word-spacing:-0.002554px;}
.wsd9{word-spacing:-0.000391px;}
.ws0{word-spacing:0.000000px;}
.ws6f{word-spacing:0.034559px;}
.ws7e{word-spacing:0.047821px;}
.ws13{word-spacing:0.059776px;}
.wscd{word-spacing:0.095641px;}
.ws17{word-spacing:0.119551px;}
.wsce{word-spacing:0.131645px;}
.wscf{word-spacing:0.143462px;}
.ws15{word-spacing:0.179327px;}
.ws9d{word-spacing:0.191282px;}
.wsa8{word-spacing:0.216125px;}
.ws16{word-spacing:0.239102px;}
.wsba{word-spacing:0.286924px;}
.ws8{word-spacing:0.298878px;}
.wsb9{word-spacing:0.334744px;}
.ws4f{word-spacing:0.358654px;}
.wse{word-spacing:0.418429px;}
.ws5d{word-spacing:0.478205px;}
.wse2{word-spacing:0.526027px;}
.ws86{word-spacing:0.537980px;}
.ws2f{word-spacing:0.597756px;}
.wsea{word-spacing:0.812950px;}
.wsa{word-spacing:0.836858px;}
.ws4c{word-spacing:0.896634px;}
.ws82{word-spacing:0.956410px;}
.wsd7{word-spacing:1.004233px;}
.wsdd{word-spacing:1.147694px;}
.wsd2{word-spacing:1.194732px;}
.ws43{word-spacing:1.195512px;}
.ws23{word-spacing:1.315063px;}
.ws72{word-spacing:1.374839px;}
.ws9c{word-spacing:1.386797px;}
.ws6d{word-spacing:1.554166px;}
.wse4{word-spacing:1.573834px;}
.wse5{word-spacing:1.578080px;}
.ws40{word-spacing:1.613941px;}
.ws1f{word-spacing:1.673717px;}
.wse0{word-spacing:1.721542px;}
.ws87{word-spacing:1.733492px;}
.wsa3{word-spacing:1.865003px;}
.ws54{word-spacing:2.032370px;}
.wsb1{word-spacing:2.151927px;}
.wsaa{word-spacing:2.199748px;}
.ws85{word-spacing:2.271473px;}
.wsc5{word-spacing:2.343209px;}
.ws4e{word-spacing:2.391024px;}
.wsb6{word-spacing:2.391030px;}
.ws4d{word-spacing:2.570351px;}
.ws65{word-spacing:2.630126px;}
.wsa2{word-spacing:2.630133px;}
.ws6e{word-spacing:2.689902px;}
.ws7a{word-spacing:2.749678px;}
.ws9a{word-spacing:2.869229px;}
.wsa5{word-spacing:2.869236px;}
.wsc2{word-spacing:2.917057px;}
.wse6{word-spacing:2.964877px;}
.ws11{word-spacing:2.988780px;}
.ws1e{word-spacing:3.048556px;}
.ws90{word-spacing:3.108331px;}
.ws62{word-spacing:3.287658px;}
.wsda{word-spacing:3.395263px;}
.wseb{word-spacing:3.443083px;}
.wsc6{word-spacing:3.538724px;}
.wsd3{word-spacing:3.586545px;}
.ws52{word-spacing:3.825638px;}
.wsd8{word-spacing:3.921289px;}
.ws8e{word-spacing:3.945190px;}
.ws83{word-spacing:4.184292px;}
.ws1a{word-spacing:4.244068px;}
.ws1b{word-spacing:4.303843px;}
.wsd0{word-spacing:4.351675px;}
.ws1c{word-spacing:4.363619px;}
.wsd1{word-spacing:4.399495px;}
.ws28{word-spacing:4.423394px;}
.ws80{word-spacing:4.483170px;}
.wse9{word-spacing:4.542957px;}
.wsa9{word-spacing:4.590778px;}
.ws84{word-spacing:4.602721px;}
.ws6a{word-spacing:4.662497px;}
.ws2b{word-spacing:4.722272px;}
.ws2e{word-spacing:4.841824px;}
.ws12{word-spacing:4.901599px;}
.wsbf{word-spacing:4.925522px;}
.wsc0{word-spacing:4.971712px;}
.wsc1{word-spacing:4.973342px;}
.ws64{word-spacing:5.021150px;}
.ws50{word-spacing:5.080926px;}
.wse3{word-spacing:5.116804px;}
.ws99{word-spacing:5.140702px;}
.ws70{word-spacing:5.143090px;}
.wsc9{word-spacing:5.308087px;}
.wsc8{word-spacing:5.318163px;}
.wsa4{word-spacing:5.355907px;}
.ws25{word-spacing:5.439580px;}
.ws97{word-spacing:5.738458px;}
.wsd{word-spacing:5.798233px;}
.wsca{word-spacing:5.881934px;}
.ws24{word-spacing:5.917784px;}
.wsb8{word-spacing:5.929754px;}
.wsb7{word-spacing:5.929973px;}
.ws89{word-spacing:5.977560px;}
.ws8c{word-spacing:6.037336px;}
.ws67{word-spacing:6.216662px;}
.wsdf{word-spacing:6.216678px;}
.ws4b{word-spacing:6.515540px;}
.wscb{word-spacing:6.599243px;}
.ws4a{word-spacing:6.694867px;}
.ws8b{word-spacing:6.754643px;}
.ws48{word-spacing:6.814418px;}
.wsdb{word-spacing:6.838346px;}
.ws21{word-spacing:6.874194px;}
.wsb{word-spacing:6.993745px;}
.ws58{word-spacing:7.113296px;}
.wsde{word-spacing:7.125269px;}
.ws29{word-spacing:7.292623px;}
.ws8d{word-spacing:7.352399px;}
.ws69{word-spacing:7.412174px;}
.ws5e{word-spacing:7.531726px;}
.ws5c{word-spacing:7.591501px;}
.ws9b{word-spacing:7.651277px;}
.wsd6{word-spacing:7.699117px;}
.ws49{word-spacing:7.770828px;}
.wsae{word-spacing:7.794758px;}
.wsbe{word-spacing:7.938220px;}
.ws75{word-spacing:7.950155px;}
.ws3{word-spacing:7.969800px;}
.ws2{word-spacing:7.975800px;}
.ws66{word-spacing:8.189257px;}
.ws47{word-spacing:8.308808px;}
.ws2c{word-spacing:8.368584px;}
.ws2d{word-spacing:8.488135px;}
.ws44{word-spacing:8.727238px;}
.ws42{word-spacing:8.906564px;}
.wsa1{word-spacing:8.942452px;}
.ws8a{word-spacing:9.145667px;}
.wsbd{word-spacing:9.325017px;}
.wsbc{word-spacing:9.372838px;}
.ws81{word-spacing:9.444545px;}
.ws68{word-spacing:9.803198px;}
.ws88{word-spacing:9.862974px;}
.ws51{word-spacing:10.042301px;}
.ws5f{word-spacing:10.460730px;}
.ws6b{word-spacing:10.759608px;}
.ws91{word-spacing:10.879159px;}
.ws76{word-spacing:11.297588px;}
.ws7f{word-spacing:11.955120px;}
.ws74{word-spacing:12.433325px;}
.ws3f{word-spacing:12.971305px;}
.ws59{word-spacing:13.150632px;}
.ws3e{word-spacing:13.246306px;}
.ws7d{word-spacing:13.341947px;}
.ws10{word-spacing:13.688612px;}
.wsc7{word-spacing:13.772333px;}
.ws78{word-spacing:14.346144px;}
.ws6c{word-spacing:15.766103px;}
.ws1d{word-spacing:16.557841px;}
.wsc{word-spacing:17.095822px;}
.ws8f{word-spacing:17.454475px;}
.ws5a{word-spacing:17.514251px;}
.ws77{word-spacing:17.992456px;}
.ws73{word-spacing:18.231558px;}
.ws79{word-spacing:19.546621px;}
.ws71{word-spacing:21.041011px;}
.ws63{word-spacing:24.926425px;}
.ws61{word-spacing:26.779469px;}
.wsb5{word-spacing:28.596719px;}
.wsb4{word-spacing:28.644539px;}
.ws5b{word-spacing:29.887800px;}
.ws60{word-spacing:30.724658px;}
.ws57{word-spacing:41.484266px;}
.ws5{word-spacing:49.129444px;}
.ws56{word-spacing:66.350916px;}
.ws3a{word-spacing:79.033743px;}
.ws3b{word-spacing:79.317453px;}
.ws35{word-spacing:85.569449px;}
.ws3c{word-spacing:88.679883px;}
.ws36{word-spacing:89.399534px;}
.ws37{word-spacing:97.424474px;}
.ws39{word-spacing:128.849896px;}
.ws34{word-spacing:197.750020px;}
._10{margin-left:-10.042301px;}
._a{margin-left:-8.428364px;}
._5{margin-left:-7.173072px;}
._6{margin-left:-5.977560px;}
._2{margin-left:-4.782060px;}
._4{margin-left:-3.295579px;}
._1{margin-left:-1.912824px;}
._8{width:1.613951px;}
._3{width:2.986764px;}
._22{width:4.016930px;}
._21{width:12.090993px;}
._20{width:14.483591px;}
._9{width:16.199178px;}
._e{width:17.693587px;}
._c{width:19.375206px;}
._7{width:20.552081px;}
._d{width:22.423771px;}
._b{width:24.089572px;}
._f{width:25.583962px;}
._13{width:27.803580px;}
._17{width:29.648702px;}
._1e{width:31.202868px;}
._0{width:33.378779px;}
._14{width:35.925140px;}
._1d{width:37.180414px;}
._11{width:39.332354px;}
._1b{width:41.712293px;}
._1f{width:42.867026px;}
._16{width:44.413271px;}
._12{width:46.146768px;}
._1a{width:48.238914px;}
._19{width:55.232664px;}
._15{width:60.791795px;}
._18{width:69.459257px;}
._1c{width:84.164050px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:10.699920px;}
.fs6{font-size:16.293060px;}
.fs7{font-size:16.341696px;}
.fs8{font-size:20.183940px;}
.fs5{font-size:32.391576px;}
.fs3{font-size:36.477000px;}
.fs4{font-size:36.525636px;}
.fsb{font-size:38.256600px;}
.fs2{font-size:41.842800px;}
.fsa{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y6c{bottom:13.046607px;}
.y69{bottom:28.816830px;}
.y6e{bottom:46.179882px;}
.y6b{bottom:50.180193px;}
.y6d{bottom:57.121969px;}
.y6a{bottom:61.134439px;}
.y72{bottom:83.253686px;}
.y180{bottom:96.234000px;}
.y7f{bottom:100.727183px;}
.y65{bottom:104.663659px;}
.y34{bottom:104.805000px;}
.yb1{bottom:106.299000px;}
.yfc{bottom:106.920000px;}
.y81{bottom:108.640665px;}
.y17f{bottom:110.430000px;}
.yd3{bottom:111.721500px;}
.y7e{bottom:111.802005px;}
.y7c{bottom:112.105980px;}
.y79{bottom:114.851887px;}
.y7b{bottom:115.135598px;}
.y64{bottom:115.606759px;}
.y5e{bottom:116.305500px;}
.y84{bottom:119.122736px;}
.y7a{bottom:119.391248px;}
.y13c{bottom:120.496500px;}
.y33{bottom:122.737500px;}
.yb0{bottom:124.231500px;}
.y17e{bottom:124.627500px;}
.yfb{bottom:124.852500px;}
.y82{bottom:125.870981px;}
.y83{bottom:125.992571px;}
.y7d{bottom:126.306679px;}
.y63{bottom:126.549859px;}
.y78{bottom:126.610654px;}
.y80{bottom:126.625853px;}
.y5d{bottom:134.238000px;}
.y13b{bottom:134.692500px;}
.y17d{bottom:138.823500px;}
.yae{bottom:142.164000px;}
.yfa{bottom:142.785000px;}
.y32{bottom:143.758500px;}
.y68{bottom:145.213924px;}
.y62{bottom:146.602076px;}
.yaf{bottom:147.588000px;}
.y5c{bottom:152.170500px;}
.y17c{bottom:153.021000px;}
.y13a{bottom:153.963000px;}
.y77{bottom:157.408388px;}
.yad{bottom:160.098000px;}
.yf9{bottom:160.717500px;}
.y139{bottom:168.159000px;}
.y76{bottom:168.351487px;}
.y5b{bottom:170.103000px;}
.y17b{bottom:172.930500px;}
.yac{bottom:178.030500px;}
.yf8{bottom:178.650000px;}
.y75{bottom:179.309786px;}
.y138{bottom:182.356500px;}
.yd2{bottom:183.453000px;}
.y31{bottom:184.948500px;}
.y17a{bottom:187.126500px;}
.y5a{bottom:188.035500px;}
.yab{bottom:195.963000px;}
.y137{bottom:196.552500px;}
.yf7{bottom:197.365500px;}
.y74{bottom:198.521006px;}
.y67{bottom:200.405651px;}
.y179{bottom:201.324000px;}
.y30{bottom:202.881000px;}
.y59{bottom:205.969500px;}
.y71{bottom:208.466055px;}
.y73{bottom:209.464106px;}
.y136{bottom:210.750000px;}
.y66{bottom:211.348751px;}
.yaa{bottom:213.895500px;}
.y70{bottom:219.409155px;}
.y2f{bottom:220.813500px;}
.y178{bottom:221.233500px;}
.y58{bottom:223.902000px;}
.yf6{bottom:227.020500px;}
.y135{bottom:230.019000px;}
.y6f{bottom:230.352255px;}
.y61{bottom:230.899410px;}
.ya9{bottom:231.828000px;}
.y177{bottom:235.429500px;}
.yd1{bottom:237.252000px;}
.y2e{bottom:238.746000px;}
.y57{bottom:241.834500px;}
.y60{bottom:241.842510px;}
.y134{bottom:244.216500px;}
.yf4{bottom:244.954500px;}
.y176{bottom:249.627000px;}
.ya8{bottom:249.760500px;}
.yf5{bottom:250.377000px;}
.yd0{bottom:255.184500px;}
.y2d{bottom:256.678500px;}
.y133{bottom:258.412500px;}
.y56{bottom:259.767000px;}
.yf3{bottom:262.887000px;}
.ya7{bottom:267.694500px;}
.y175{bottom:269.536500px;}
.y132{bottom:272.610000px;}
.y2c{bottom:274.611000px;}
.y55{bottom:277.699500px;}
.yf2{bottom:280.819500px;}
.y174{bottom:283.732500px;}
.ya6{bottom:285.627000px;}
.y131{bottom:291.879000px;}
.y2b{bottom:292.545000px;}
.y54{bottom:295.632000px;}
.y173{bottom:297.930000px;}
.yf1{bottom:298.752000px;}
.ya5{bottom:303.559500px;}
.y130{bottom:306.076500px;}
.y2a{bottom:310.477500px;}
.y172{bottom:312.126000px;}
.y53{bottom:313.566000px;}
.yf0{bottom:316.684500px;}
.y12f{bottom:320.272500px;}
.ya4{bottom:321.492000px;}
.y29{bottom:328.410000px;}
.y52{bottom:331.498500px;}
.y171{bottom:332.035500px;}
.y12e{bottom:334.470000px;}
.yef{bottom:334.617000px;}
.ya3{bottom:339.424500px;}
.y170{bottom:346.233000px;}
.y28{bottom:346.342500px;}
.y51{bottom:349.431000px;}
.yee{bottom:352.551000px;}
.y12d{bottom:353.739000px;}
.ya2{bottom:357.357000px;}
.y16f{bottom:360.429000px;}
.y27{bottom:364.275000px;}
.y50{bottom:367.363500px;}
.y12c{bottom:367.936500px;}
.yed{bottom:370.483500px;}
.y16e{bottom:374.626500px;}
.ya1{bottom:375.291000px;}
.y12b{bottom:382.132500px;}
.y26{bottom:382.207500px;}
.y4f{bottom:385.296000px;}
.yec{bottom:388.416000px;}
.y16d{bottom:388.822500px;}
.y9f{bottom:393.223500px;}
.y12a{bottom:396.330000px;}
.ya0{bottom:398.646000px;}
.y25{bottom:400.141500px;}
.y16c{bottom:403.020000px;}
.y4e{bottom:403.228500px;}
.yeb{bottom:406.348500px;}
.y9e{bottom:411.156000px;}
.y129{bottom:415.599000px;}
.y24{bottom:418.074000px;}
.y4d{bottom:421.162500px;}
.y16b{bottom:422.929500px;}
.yea{bottom:424.281000px;}
.y9d{bottom:429.088500px;}
.y128{bottom:429.796500px;}
.y23{bottom:436.006500px;}
.y16a{bottom:437.125500px;}
.y4c{bottom:439.095000px;}
.ye9{bottom:442.213500px;}
.y127{bottom:443.992500px;}
.y9c{bottom:447.021000px;}
.y169{bottom:451.323000px;}
.y22{bottom:453.939000px;}
.y4b{bottom:457.027500px;}
.y126{bottom:458.190000px;}
.ye8{bottom:460.147500px;}
.y9b{bottom:464.953500px;}
.y168{bottom:465.519000px;}
.ycf{bottom:466.821000px;}
.y21{bottom:471.871500px;}
.y125{bottom:472.386000px;}
.y4a{bottom:474.960000px;}
.ye7{bottom:478.080000px;}
.y167{bottom:479.716500px;}
.y9a{bottom:482.887500px;}
.y124{bottom:486.583500px;}
.y20{bottom:489.804000px;}
.y49{bottom:492.892500px;}
.y166{bottom:493.912500px;}
.ye6{bottom:496.012500px;}
.y99{bottom:500.820000px;}
.yce{bottom:502.527000px;}
.y123{bottom:505.852500px;}
.y1f{bottom:507.738000px;}
.y48{bottom:510.825000px;}
.y165{bottom:513.822000px;}
.ye5{bottom:513.945000px;}
.y98{bottom:518.752500px;}
.y122{bottom:520.050000px;}
.y1e{bottom:525.670500px;}
.y164{bottom:528.019500px;}
.y47{bottom:528.759000px;}
.ye4{bottom:531.877500px;}
.y121{bottom:534.246000px;}
.y97{bottom:536.685000px;}
.y163{bottom:542.215500px;}
.y1d{bottom:543.603000px;}
.y46{bottom:546.691500px;}
.y120{bottom:548.443500px;}
.ye3{bottom:549.810000px;}
.y96{bottom:554.617500px;}
.y1b{bottom:561.535500px;}
.y162{bottom:562.125000px;}
.y11f{bottom:562.639500px;}
.y45{bottom:564.624000px;}
.y1c{bottom:566.958000px;}
.ye1{bottom:567.744000px;}
.y95{bottom:572.551500px;}
.ye2{bottom:573.166500px;}
.y161{bottom:576.322500px;}
.y1a{bottom:579.468000px;}
.y11e{bottom:581.910000px;}
.y44{bottom:582.556500px;}
.ye0{bottom:585.676500px;}
.y94{bottom:590.484000px;}
.y160{bottom:590.518500px;}
.y11d{bottom:596.106000px;}
.y19{bottom:597.400500px;}
.y43{bottom:600.489000px;}
.ydf{bottom:603.609000px;}
.y15f{bottom:604.716000px;}
.y93{bottom:608.416500px;}
.y11c{bottom:610.303500px;}
.y18{bottom:615.334500px;}
.y42{bottom:618.421500px;}
.y15e{bottom:618.912000px;}
.yde{bottom:621.541500px;}
.y11b{bottom:624.499500px;}
.y92{bottom:626.349000px;}
.y15d{bottom:633.109500px;}
.y17{bottom:633.267000px;}
.y41{bottom:636.355500px;}
.y11a{bottom:638.697000px;}
.ydd{bottom:639.474000px;}
.y91{bottom:644.281500px;}
.y16{bottom:651.199500px;}
.y15c{bottom:653.019000px;}
.y40{bottom:654.288000px;}
.ydc{bottom:657.406500px;}
.y119{bottom:657.966000px;}
.y90{bottom:662.214000px;}
.y15b{bottom:667.215000px;}
.y15{bottom:669.132000px;}
.y118{bottom:672.163500px;}
.y3f{bottom:672.220500px;}
.ydb{bottom:675.340500px;}
.y8f{bottom:680.148000px;}
.y15a{bottom:681.412500px;}
.y117{bottom:686.359500px;}
.y14{bottom:687.064500px;}
.y3e{bottom:690.153000px;}
.yda{bottom:693.273000px;}
.y159{bottom:695.608500px;}
.y8e{bottom:698.080500px;}
.y116{bottom:700.557000px;}
.y13{bottom:704.997000px;}
.y3d{bottom:708.085500px;}
.ycd{bottom:711.205500px;}
.y115{bottom:714.753000px;}
.y158{bottom:715.518000px;}
.y8d{bottom:716.013000px;}
.y12{bottom:722.931000px;}
.y3c{bottom:726.018000px;}
.ycc{bottom:729.138000px;}
.y157{bottom:729.715500px;}
.y8c{bottom:733.945500px;}
.y114{bottom:734.023500px;}
.y11{bottom:740.863500px;}
.y156{bottom:743.911500px;}
.y3b{bottom:743.952000px;}
.ycb{bottom:747.070500px;}
.y113{bottom:748.219500px;}
.y8b{bottom:751.878000px;}
.yd9{bottom:752.494500px;}
.yc7{bottom:752.763000px;}
.y155{bottom:758.109000px;}
.y10{bottom:758.796000px;}
.y3a{bottom:761.884500px;}
.y112{bottom:762.417000px;}
.yca{bottom:765.003000px;}
.y8a{bottom:769.810500px;}
.y154{bottom:772.305000px;}
.y111{bottom:776.613000px;}
.yf{bottom:776.728500px;}
.y38{bottom:779.817000px;}
.yc6{bottom:782.937000px;}
.y39{bottom:785.239500px;}
.y89{bottom:787.744500px;}
.yd8{bottom:788.359500px;}
.y153{bottom:792.214500px;}
.ye{bottom:794.661000px;}
.y110{bottom:795.883500px;}
.y37{bottom:797.749500px;}
.yc5{bottom:800.869500px;}
.y88{bottom:805.677000px;}
.y152{bottom:806.412000px;}
.y10f{bottom:810.079500px;}
.yd{bottom:812.593500px;}
.y36{bottom:815.682000px;}
.yc4{bottom:818.802000px;}
.y151{bottom:820.608000px;}
.y87{bottom:823.609500px;}
.yc9{bottom:824.224500px;}
.y10e{bottom:824.277000px;}
.yc{bottom:830.527500px;}
.y35{bottom:833.614500px;}
.y150{bottom:834.805500px;}
.yc3{bottom:836.734500px;}
.y10d{bottom:838.473000px;}
.y14f{bottom:849.001500px;}
.yb{bottom:851.548500px;}
.yc2{bottom:854.667000px;}
.y10c{bottom:857.743500px;}
.y14e{bottom:868.911000px;}
.y86{bottom:870.193500px;}
.y10b{bottom:871.939500px;}
.yc1{bottom:872.599500px;}
.y14d{bottom:883.108500px;}
.y85{bottom:884.391000px;}
.y10a{bottom:886.137000px;}
.yc0{bottom:890.533500px;}
.ya{bottom:893.548500px;}
.yd7{bottom:895.956000px;}
.y14c{bottom:897.304500px;}
.y5f{bottom:897.316500px;}
.y109{bottom:905.406000px;}
.ybf{bottom:908.466000px;}
.y9{bottom:911.481000px;}
.y14b{bottom:911.502000px;}
.y108{bottom:919.603500px;}
.y14a{bottom:925.698000px;}
.ybe{bottom:926.398500px;}
.y8{bottom:929.413500px;}
.y107{bottom:933.799500px;}
.ybd{bottom:944.331000px;}
.y149{bottom:945.607500px;}
.y7{bottom:947.346000px;}
.y106{bottom:947.997000px;}
.y148{bottom:959.805000px;}
.ybc{bottom:962.263500px;}
.yd6{bottom:967.687500px;}
.y105{bottom:968.638500px;}
.y147{bottom:974.001000px;}
.ybb{bottom:980.196000px;}
.y146{bottom:988.198500px;}
.y6{bottom:990.178500px;}
.y104{bottom:997.348500px;}
.yba{bottom:998.130000px;}
.y145{bottom:1002.394500px;}
.yd5{bottom:1003.552500px;}
.y5{bottom:1008.111000px;}
.y103{bottom:1015.281000px;}
.yb9{bottom:1016.062500px;}
.y144{bottom:1022.304000px;}
.y102{bottom:1033.213500px;}
.yb8{bottom:1033.995000px;}
.y143{bottom:1036.501500px;}
.yc8{bottom:1039.417500px;}
.y4{bottom:1040.161500px;}
.y142{bottom:1050.697500px;}
.y101{bottom:1051.146000px;}
.yb7{bottom:1051.927500px;}
.y3{bottom:1058.658000px;}
.y141{bottom:1064.895000px;}
.y100{bottom:1069.078500px;}
.yb6{bottom:1069.860000px;}
.y140{bottom:1079.091000px;}
.yff{bottom:1087.011000px;}
.yb5{bottom:1087.792500px;}
.yd4{bottom:1093.216500px;}
.y13f{bottom:1099.000500px;}
.yfe{bottom:1104.945000px;}
.y2{bottom:1105.201500px;}
.yb4{bottom:1105.726500px;}
.y13e{bottom:1113.198000px;}
.yfd{bottom:1122.877500px;}
.yb3{bottom:1123.659000px;}
.y13d{bottom:1127.394000px;}
.y1{bottom:1135.089000px;}
.yb2{bottom:1141.591500px;}
.hc{height:16.993152px;}
.hd{height:17.043878px;}
.h10{height:19.465482px;}
.he{height:21.051219px;}
.hf{height:27.409362px;}
.h4{height:31.005515px;}
.h13{height:33.235317px;}
.hb{height:33.783402px;}
.h11{height:35.435065px;}
.h12{height:35.482885px;}
.h9{height:38.044371px;}
.ha{height:38.095097px;}
.h6{height:44.293720px;}
.h5{height:44.353495px;}
.h3{height:52.695515px;}
.h7{height:52.701515px;}
.h2{height:70.870129px;}
.h8{height:259.215695px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:321.207343px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:4.872213px;}
.x10{left:22.188655px;}
.x11{left:25.724898px;}
.x12{left:28.035108px;}
.x13{left:31.074858px;}
.x21{left:61.862459px;}
.x22{left:65.049130px;}
.x20{left:77.304389px;}
.x28{left:83.991839px;}
.x2a{left:94.190200px;}
.x1a{left:102.787626px;}
.x1b{left:104.550681px;}
.x5{left:105.954000px;}
.xd{left:107.920500px;}
.x2b{left:110.068500px;}
.x4f{left:112.945500px;}
.x1f{left:116.927530px;}
.x6{left:121.243500px;}
.xe{left:130.363225px;}
.x23{left:131.751378px;}
.xf{left:135.652390px;}
.x1c{left:136.787230px;}
.x51{left:139.989000px;}
.x50{left:141.184500px;}
.x3c{left:147.820500px;}
.x24{left:161.419338px;}
.x36{left:165.745500px;}
.x3d{left:171.087000px;}
.x4{left:179.781000px;}
.x37{left:183.940500px;}
.x3{left:186.370500px;}
.x15{left:202.942323px;}
.x38{left:205.275000px;}
.x1{left:210.297000px;}
.x14{left:212.487138px;}
.x26{left:213.956350px;}
.x27{left:217.117690px;}
.x2c{left:219.003000px;}
.x29{left:224.230705px;}
.x25{left:241.450889px;}
.x39{left:243.826500px;}
.x3a{left:249.558000px;}
.x1d{left:252.100146px;}
.x19{left:256.999210px;}
.x16{left:260.322670px;}
.x17{left:262.632880px;}
.x18{left:265.672630px;}
.x2f{left:268.585500px;}
.x34{left:280.606500px;}
.x2{left:317.784000px;}
.x35{left:322.066500px;}
.x32{left:327.406500px;}
.x2d{left:335.640000px;}
.x33{left:345.601500px;}
.x2e{left:352.155000px;}
.x52{left:359.014500px;}
.x3b{left:412.570500px;}
.x7{left:417.063000px;}
.x8{left:429.442500px;}
.x9{left:462.148500px;}
.xc{left:477.091500px;}
.x56{left:495.837000px;}
.x53{left:497.032500px;}
.x40{left:527.356500px;}
.x4b{left:545.160000px;}
.x4c{left:563.355000px;}
.x41{left:565.908000px;}
.x43{left:575.041500px;}
.x44{left:593.238000px;}
.x47{left:641.779500px;}
.x3e{left:642.840000px;}
.xa{left:644.500500px;}
.xb{left:656.880000px;}
.x48{left:659.974500px;}
.x3f{left:661.036500px;}
.x30{left:671.481000px;}
.x42{left:679.126500px;}
.x4d{left:683.815500px;}
.x45{left:688.354500px;}
.x4e{left:702.010500px;}
.x31{left:704.215500px;}
.x46{left:706.551000px;}
.x54{left:732.096000px;}
.x55{left:735.937500px;}
.x49{left:738.064500px;}
.x4a{left:762.043500px;}
.x57{left:771.007500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v5{vertical-align:-3.458560pt;}
.v3{vertical-align:-1.585173pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.197627pt;}
.v4{vertical-align:9.258853pt;}
.v1{vertical-align:19.280000pt;}
.ls4{letter-spacing:-0.632268pt;}
.ls5{letter-spacing:-0.589036pt;}
.ls3{letter-spacing:-0.086464pt;}
.ls6{letter-spacing:-0.075296pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.061966pt;}
.ls2{letter-spacing:0.064848pt;}
.ls8{letter-spacing:2.108364pt;}
.ls9{letter-spacing:11.814998pt;}
.lsa{letter-spacing:11.820332pt;}
.lsb{letter-spacing:16.213226pt;}
.ls1{letter-spacing:29.289680pt;}
.ws4{word-spacing:-14.771215pt;}
.wsa0{word-spacing:-11.817002pt;}
.wsac{word-spacing:-11.561995pt;}
.ws1{word-spacing:-10.339821pt;}
.ws32{word-spacing:-9.025890pt;}
.ws31{word-spacing:-9.013872pt;}
.ws3d{word-spacing:-4.987676pt;}
.ws38{word-spacing:-4.038215pt;}
.ws33{word-spacing:-4.026196pt;}
.ws41{word-spacing:-3.134898pt;}
.ws45{word-spacing:-2.816095pt;}
.ws95{word-spacing:-2.762961pt;}
.ws93{word-spacing:-2.497292pt;}
.wsb3{word-spacing:-2.465418pt;}
.ws9e{word-spacing:-2.380403pt;}
.wsa6{word-spacing:-1.997838pt;}
.ws30{word-spacing:-1.965953pt;}
.wsa7{word-spacing:-1.955331pt;}
.ws19{word-spacing:-1.806551pt;}
.ws94{word-spacing:-1.700284pt;}
.ws55{word-spacing:-1.647150pt;}
.wsf{word-spacing:-1.594016pt;}
.wsb2{word-spacing:-1.487752pt;}
.ws92{word-spacing:-1.487748pt;}
.ws46{word-spacing:-1.434614pt;}
.wsc4{word-spacing:-1.402738pt;}
.ws7{word-spacing:-1.328347pt;}
.ws98{word-spacing:-1.275213pt;}
.ws96{word-spacing:-1.115811pt;}
.ws53{word-spacing:-1.062677pt;}
.wsd5{word-spacing:-1.020173pt;}
.ws7c{word-spacing:-0.850142pt;}
.wsab{word-spacing:-0.807637pt;}
.wse7{word-spacing:-0.765130pt;}
.ws27{word-spacing:-0.743874pt;}
.wsdc{word-spacing:-0.722622pt;}
.wsd4{word-spacing:-0.637608pt;}
.ws18{word-spacing:-0.637606pt;}
.ws7b{word-spacing:-0.531339pt;}
.ws14{word-spacing:-0.371937pt;}
.ws9f{word-spacing:-0.340058pt;}
.ws2a{word-spacing:-0.318803pt;}
.wscc{word-spacing:-0.297550pt;}
.ws22{word-spacing:-0.265669pt;}
.wsb0{word-spacing:-0.255043pt;}
.ws6{word-spacing:-0.212535pt;}
.wsaf{word-spacing:-0.170029pt;}
.ws26{word-spacing:-0.159402pt;}
.wsbb{word-spacing:-0.127522pt;}
.wse1{word-spacing:-0.114946pt;}
.ws20{word-spacing:-0.106268pt;}
.wsc3{word-spacing:-0.085014pt;}
.ws9{word-spacing:-0.053134pt;}
.wsad{word-spacing:-0.042507pt;}
.wse8{word-spacing:-0.002270pt;}
.wsd9{word-spacing:-0.000347pt;}
.ws0{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.030719pt;}
.ws7e{word-spacing:0.042507pt;}
.ws13{word-spacing:0.053134pt;}
.wscd{word-spacing:0.085014pt;}
.ws17{word-spacing:0.106268pt;}
.wsce{word-spacing:0.117018pt;}
.wscf{word-spacing:0.127522pt;}
.ws15{word-spacing:0.159402pt;}
.ws9d{word-spacing:0.170029pt;}
.wsa8{word-spacing:0.192111pt;}
.ws16{word-spacing:0.212535pt;}
.wsba{word-spacing:0.255043pt;}
.ws8{word-spacing:0.265669pt;}
.wsb9{word-spacing:0.297550pt;}
.ws4f{word-spacing:0.318803pt;}
.wse{word-spacing:0.371937pt;}
.ws5d{word-spacing:0.425071pt;}
.wse2{word-spacing:0.467579pt;}
.ws86{word-spacing:0.478205pt;}
.ws2f{word-spacing:0.531339pt;}
.wsea{word-spacing:0.722622pt;}
.wsa{word-spacing:0.743874pt;}
.ws4c{word-spacing:0.797008pt;}
.ws82{word-spacing:0.850142pt;}
.wsd7{word-spacing:0.892651pt;}
.wsdd{word-spacing:1.020173pt;}
.wsd2{word-spacing:1.061984pt;}
.ws43{word-spacing:1.062677pt;}
.ws23{word-spacing:1.168945pt;}
.ws72{word-spacing:1.222079pt;}
.ws9c{word-spacing:1.232709pt;}
.ws6d{word-spacing:1.381481pt;}
.wse4{word-spacing:1.398964pt;}
.wse5{word-spacing:1.402738pt;}
.ws40{word-spacing:1.434614pt;}
.ws1f{word-spacing:1.487748pt;}
.wse0{word-spacing:1.530259pt;}
.ws87{word-spacing:1.540882pt;}
.wsa3{word-spacing:1.657781pt;}
.ws54{word-spacing:1.806551pt;}
.wsb1{word-spacing:1.912824pt;}
.wsaa{word-spacing:1.955331pt;}
.ws85{word-spacing:2.019087pt;}
.wsc5{word-spacing:2.082853pt;}
.ws4e{word-spacing:2.125355pt;}
.wsb6{word-spacing:2.125360pt;}
.ws4d{word-spacing:2.284756pt;}
.ws65{word-spacing:2.337890pt;}
.wsa2{word-spacing:2.337896pt;}
.ws6e{word-spacing:2.391024pt;}
.ws7a{word-spacing:2.444158pt;}
.ws9a{word-spacing:2.550426pt;}
.wsa5{word-spacing:2.550432pt;}
.wsc2{word-spacing:2.592939pt;}
.wse6{word-spacing:2.635446pt;}
.ws11{word-spacing:2.656693pt;}
.ws1e{word-spacing:2.709827pt;}
.ws90{word-spacing:2.762961pt;}
.ws62{word-spacing:2.922363pt;}
.wsda{word-spacing:3.018011pt;}
.wseb{word-spacing:3.060518pt;}
.wsc6{word-spacing:3.145533pt;}
.wsd3{word-spacing:3.188040pt;}
.ws52{word-spacing:3.400567pt;}
.wsd8{word-spacing:3.485590pt;}
.ws8e{word-spacing:3.506835pt;}
.ws83{word-spacing:3.719371pt;}
.ws1a{word-spacing:3.772505pt;}
.ws1b{word-spacing:3.825638pt;}
.wsd0{word-spacing:3.868155pt;}
.ws1c{word-spacing:3.878772pt;}
.wsd1{word-spacing:3.910662pt;}
.ws28{word-spacing:3.931906pt;}
.ws80{word-spacing:3.985040pt;}
.wse9{word-spacing:4.038184pt;}
.wsa9{word-spacing:4.080691pt;}
.ws84{word-spacing:4.091308pt;}
.ws6a{word-spacing:4.144442pt;}
.ws2b{word-spacing:4.197575pt;}
.ws2e{word-spacing:4.303843pt;}
.ws12{word-spacing:4.356977pt;}
.wsbf{word-spacing:4.378242pt;}
.wsc0{word-spacing:4.419300pt;}
.wsc1{word-spacing:4.420749pt;}
.ws64{word-spacing:4.463245pt;}
.ws50{word-spacing:4.516379pt;}
.wse3{word-spacing:4.548270pt;}
.ws99{word-spacing:4.569513pt;}
.ws70{word-spacing:4.571636pt;}
.wsc9{word-spacing:4.718299pt;}
.wsc8{word-spacing:4.727256pt;}
.wsa4{word-spacing:4.760806pt;}
.ws25{word-spacing:4.835182pt;}
.ws97{word-spacing:5.100851pt;}
.wsd{word-spacing:5.153985pt;}
.wsca{word-spacing:5.228386pt;}
.ws24{word-spacing:5.260253pt;}
.wsb8{word-spacing:5.270893pt;}
.wsb7{word-spacing:5.271088pt;}
.ws89{word-spacing:5.313387pt;}
.ws8c{word-spacing:5.366521pt;}
.ws67{word-spacing:5.525922pt;}
.wsdf{word-spacing:5.525936pt;}
.ws4b{word-spacing:5.791591pt;}
.wscb{word-spacing:5.865994pt;}
.ws4a{word-spacing:5.950993pt;}
.ws8b{word-spacing:6.004127pt;}
.ws48{word-spacing:6.057261pt;}
.wsdb{word-spacing:6.078530pt;}
.ws21{word-spacing:6.110395pt;}
.wsb{word-spacing:6.216662pt;}
.ws58{word-spacing:6.322930pt;}
.wsde{word-spacing:6.333573pt;}
.ws29{word-spacing:6.482332pt;}
.ws8d{word-spacing:6.535466pt;}
.ws69{word-spacing:6.588599pt;}
.ws5e{word-spacing:6.694867pt;}
.ws5c{word-spacing:6.748001pt;}
.ws9b{word-spacing:6.801135pt;}
.wsd6{word-spacing:6.843659pt;}
.ws49{word-spacing:6.907403pt;}
.wsae{word-spacing:6.928674pt;}
.wsbe{word-spacing:7.056195pt;}
.ws75{word-spacing:7.066804pt;}
.ws3{word-spacing:7.084267pt;}
.ws2{word-spacing:7.089600pt;}
.ws66{word-spacing:7.279340pt;}
.ws47{word-spacing:7.385607pt;}
.ws2c{word-spacing:7.438741pt;}
.ws2d{word-spacing:7.545009pt;}
.ws44{word-spacing:7.757545pt;}
.ws42{word-spacing:7.916946pt;}
.wsa1{word-spacing:7.948846pt;}
.ws8a{word-spacing:8.129482pt;}
.wsbd{word-spacing:8.288904pt;}
.wsbc{word-spacing:8.331411pt;}
.ws81{word-spacing:8.395151pt;}
.ws68{word-spacing:8.713954pt;}
.ws88{word-spacing:8.767088pt;}
.ws51{word-spacing:8.926490pt;}
.ws5f{word-spacing:9.298427pt;}
.ws6b{word-spacing:9.564096pt;}
.ws91{word-spacing:9.670364pt;}
.ws76{word-spacing:10.042301pt;}
.ws7f{word-spacing:10.626773pt;}
.ws74{word-spacing:11.051844pt;}
.ws3f{word-spacing:11.530049pt;}
.ws59{word-spacing:11.689451pt;}
.ws3e{word-spacing:11.774494pt;}
.ws7d{word-spacing:11.859509pt;}
.ws10{word-spacing:12.167655pt;}
.wsc7{word-spacing:12.242074pt;}
.ws78{word-spacing:12.752128pt;}
.ws6c{word-spacing:14.014313pt;}
.ws1d{word-spacing:14.718081pt;}
.wsc{word-spacing:15.196286pt;}
.ws8f{word-spacing:15.515089pt;}
.ws5a{word-spacing:15.568223pt;}
.ws77{word-spacing:15.993294pt;}
.ws73{word-spacing:16.205829pt;}
.ws79{word-spacing:17.374774pt;}
.ws71{word-spacing:18.703121pt;}
.ws63{word-spacing:22.156822pt;}
.ws61{word-spacing:23.803972pt;}
.wsb5{word-spacing:25.419306pt;}
.wsb4{word-spacing:25.461813pt;}
.ws5b{word-spacing:26.566933pt;}
.ws60{word-spacing:27.310807pt;}
.ws57{word-spacing:36.874903pt;}
.ws5{word-spacing:43.670617pt;}
.ws56{word-spacing:58.978592pt;}
.ws3a{word-spacing:70.252216pt;}
.ws3b{word-spacing:70.504403pt;}
.ws35{word-spacing:76.061732pt;}
.ws3c{word-spacing:78.826563pt;}
.ws36{word-spacing:79.466252pt;}
.ws37{word-spacing:86.599532pt;}
.ws39{word-spacing:114.533241pt;}
.ws34{word-spacing:175.777796pt;}
._10{margin-left:-8.926490pt;}
._a{margin-left:-7.491879pt;}
._5{margin-left:-6.376064pt;}
._6{margin-left:-5.313387pt;}
._2{margin-left:-4.250720pt;}
._4{margin-left:-2.929404pt;}
._1{margin-left:-1.700288pt;}
._8{width:1.434623pt;}
._3{width:2.654901pt;}
._22{width:3.570605pt;}
._21{width:10.747549pt;}
._20{width:12.874303pt;}
._9{width:14.399269pt;}
._e{width:15.727633pt;}
._c{width:17.222405pt;}
._7{width:18.268516pt;}
._d{width:19.932241pt;}
._b{width:21.412953pt;}
._f{width:22.741299pt;}
._13{width:24.714293pt;}
._17{width:26.354402pt;}
._1e{width:27.735883pt;}
._0{width:29.670026pt;}
._14{width:31.933458pt;}
._1d{width:33.049257pt;}
._11{width:34.962093pt;}
._1b{width:37.077594pt;}
._1f{width:38.104023pt;}
._16{width:39.478463pt;}
._12{width:41.019349pt;}
._1a{width:42.879035pt;}
._19{width:49.095701pt;}
._15{width:54.037151pt;}
._18{width:61.741562pt;}
._1c{width:74.812489pt;}
.fs9{font-size:9.511040pt;}
.fs6{font-size:14.482720pt;}
.fs7{font-size:14.525952pt;}
.fs8{font-size:17.941280pt;}
.fs5{font-size:28.792512pt;}
.fs3{font-size:32.424000pt;}
.fs4{font-size:32.467232pt;}
.fsb{font-size:34.005867pt;}
.fs2{font-size:37.193600pt;}
.fsa{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:11.596984pt;}
.y69{bottom:25.614960pt;}
.y6e{bottom:41.048784pt;}
.y6b{bottom:44.604616pt;}
.y6d{bottom:50.775083pt;}
.y6a{bottom:54.341723pt;}
.y72{bottom:74.003277pt;}
.y180{bottom:85.541333pt;}
.y7f{bottom:89.535273pt;}
.y65{bottom:93.034363pt;}
.y34{bottom:93.160000pt;}
.yb1{bottom:94.488000pt;}
.yfc{bottom:95.040000pt;}
.y81{bottom:96.569480pt;}
.y17f{bottom:98.160000pt;}
.yd3{bottom:99.308000pt;}
.y7e{bottom:99.379560pt;}
.y7c{bottom:99.649760pt;}
.y79{bottom:102.090567pt;}
.y7b{bottom:102.342753pt;}
.y64{bottom:102.761563pt;}
.y5e{bottom:103.382667pt;}
.y84{bottom:105.886877pt;}
.y7a{bottom:106.125553pt;}
.y13c{bottom:107.108000pt;}
.y33{bottom:109.100000pt;}
.yb0{bottom:110.428000pt;}
.y17e{bottom:110.780000pt;}
.yfb{bottom:110.980000pt;}
.y82{bottom:111.885317pt;}
.y83{bottom:111.993397pt;}
.y7d{bottom:112.272603pt;}
.y63{bottom:112.488763pt;}
.y78{bottom:112.542803pt;}
.y80{bottom:112.556313pt;}
.y5d{bottom:119.322667pt;}
.y13b{bottom:119.726667pt;}
.y17d{bottom:123.398667pt;}
.yae{bottom:126.368000pt;}
.yfa{bottom:126.920000pt;}
.y32{bottom:127.785333pt;}
.y68{bottom:129.079043pt;}
.y62{bottom:130.312957pt;}
.yaf{bottom:131.189333pt;}
.y5c{bottom:135.262667pt;}
.y17c{bottom:136.018667pt;}
.y13a{bottom:136.856000pt;}
.y77{bottom:139.918567pt;}
.yad{bottom:142.309333pt;}
.yf9{bottom:142.860000pt;}
.y139{bottom:149.474667pt;}
.y76{bottom:149.645767pt;}
.y5b{bottom:151.202667pt;}
.y17b{bottom:153.716000pt;}
.yac{bottom:158.249333pt;}
.yf8{bottom:158.800000pt;}
.y75{bottom:159.386477pt;}
.y138{bottom:162.094667pt;}
.yd2{bottom:163.069333pt;}
.y31{bottom:164.398667pt;}
.y17a{bottom:166.334667pt;}
.y5a{bottom:167.142667pt;}
.yab{bottom:174.189333pt;}
.y137{bottom:174.713333pt;}
.yf7{bottom:175.436000pt;}
.y74{bottom:176.463117pt;}
.y67{bottom:178.138357pt;}
.y179{bottom:178.954667pt;}
.y30{bottom:180.338667pt;}
.y59{bottom:183.084000pt;}
.y71{bottom:185.303160pt;}
.y73{bottom:186.190317pt;}
.y136{bottom:187.333333pt;}
.y66{bottom:187.865557pt;}
.yaa{bottom:190.129333pt;}
.y70{bottom:195.030360pt;}
.y2f{bottom:196.278667pt;}
.y178{bottom:196.652000pt;}
.y58{bottom:199.024000pt;}
.yf6{bottom:201.796000pt;}
.y135{bottom:204.461333pt;}
.y6f{bottom:204.757560pt;}
.y61{bottom:205.243920pt;}
.ya9{bottom:206.069333pt;}
.y177{bottom:209.270667pt;}
.yd1{bottom:210.890667pt;}
.y2e{bottom:212.218667pt;}
.y57{bottom:214.964000pt;}
.y60{bottom:214.971120pt;}
.y134{bottom:217.081333pt;}
.yf4{bottom:217.737333pt;}
.y176{bottom:221.890667pt;}
.ya8{bottom:222.009333pt;}
.yf5{bottom:222.557333pt;}
.yd0{bottom:226.830667pt;}
.y2d{bottom:228.158667pt;}
.y133{bottom:229.700000pt;}
.y56{bottom:230.904000pt;}
.yf3{bottom:233.677333pt;}
.ya7{bottom:237.950667pt;}
.y175{bottom:239.588000pt;}
.y132{bottom:242.320000pt;}
.y2c{bottom:244.098667pt;}
.y55{bottom:246.844000pt;}
.yf2{bottom:249.617333pt;}
.y174{bottom:252.206667pt;}
.ya6{bottom:253.890667pt;}
.y131{bottom:259.448000pt;}
.y2b{bottom:260.040000pt;}
.y54{bottom:262.784000pt;}
.y173{bottom:264.826667pt;}
.yf1{bottom:265.557333pt;}
.ya5{bottom:269.830667pt;}
.y130{bottom:272.068000pt;}
.y2a{bottom:275.980000pt;}
.y172{bottom:277.445333pt;}
.y53{bottom:278.725333pt;}
.yf0{bottom:281.497333pt;}
.y12f{bottom:284.686667pt;}
.ya4{bottom:285.770667pt;}
.y29{bottom:291.920000pt;}
.y52{bottom:294.665333pt;}
.y171{bottom:295.142667pt;}
.y12e{bottom:297.306667pt;}
.yef{bottom:297.437333pt;}
.ya3{bottom:301.710667pt;}
.y170{bottom:307.762667pt;}
.y28{bottom:307.860000pt;}
.y51{bottom:310.605333pt;}
.yee{bottom:313.378667pt;}
.y12d{bottom:314.434667pt;}
.ya2{bottom:317.650667pt;}
.y16f{bottom:320.381333pt;}
.y27{bottom:323.800000pt;}
.y50{bottom:326.545333pt;}
.y12c{bottom:327.054667pt;}
.yed{bottom:329.318667pt;}
.y16e{bottom:333.001333pt;}
.ya1{bottom:333.592000pt;}
.y12b{bottom:339.673333pt;}
.y26{bottom:339.740000pt;}
.y4f{bottom:342.485333pt;}
.yec{bottom:345.258667pt;}
.y16d{bottom:345.620000pt;}
.y9f{bottom:349.532000pt;}
.y12a{bottom:352.293333pt;}
.ya0{bottom:354.352000pt;}
.y25{bottom:355.681333pt;}
.y16c{bottom:358.240000pt;}
.y4e{bottom:358.425333pt;}
.yeb{bottom:361.198667pt;}
.y9e{bottom:365.472000pt;}
.y129{bottom:369.421333pt;}
.y24{bottom:371.621333pt;}
.y4d{bottom:374.366667pt;}
.y16b{bottom:375.937333pt;}
.yea{bottom:377.138667pt;}
.y9d{bottom:381.412000pt;}
.y128{bottom:382.041333pt;}
.y23{bottom:387.561333pt;}
.y16a{bottom:388.556000pt;}
.y4c{bottom:390.306667pt;}
.ye9{bottom:393.078667pt;}
.y127{bottom:394.660000pt;}
.y9c{bottom:397.352000pt;}
.y169{bottom:401.176000pt;}
.y22{bottom:403.501333pt;}
.y4b{bottom:406.246667pt;}
.y126{bottom:407.280000pt;}
.ye8{bottom:409.020000pt;}
.y9b{bottom:413.292000pt;}
.y168{bottom:413.794667pt;}
.ycf{bottom:414.952000pt;}
.y21{bottom:419.441333pt;}
.y125{bottom:419.898667pt;}
.y4a{bottom:422.186667pt;}
.ye7{bottom:424.960000pt;}
.y167{bottom:426.414667pt;}
.y9a{bottom:429.233333pt;}
.y124{bottom:432.518667pt;}
.y20{bottom:435.381333pt;}
.y49{bottom:438.126667pt;}
.y166{bottom:439.033333pt;}
.ye6{bottom:440.900000pt;}
.y99{bottom:445.173333pt;}
.yce{bottom:446.690667pt;}
.y123{bottom:449.646667pt;}
.y1f{bottom:451.322667pt;}
.y48{bottom:454.066667pt;}
.y165{bottom:456.730667pt;}
.ye5{bottom:456.840000pt;}
.y98{bottom:461.113333pt;}
.y122{bottom:462.266667pt;}
.y1e{bottom:467.262667pt;}
.y164{bottom:469.350667pt;}
.y47{bottom:470.008000pt;}
.ye4{bottom:472.780000pt;}
.y121{bottom:474.885333pt;}
.y97{bottom:477.053333pt;}
.y163{bottom:481.969333pt;}
.y1d{bottom:483.202667pt;}
.y46{bottom:485.948000pt;}
.y120{bottom:487.505333pt;}
.ye3{bottom:488.720000pt;}
.y96{bottom:492.993333pt;}
.y1b{bottom:499.142667pt;}
.y162{bottom:499.666667pt;}
.y11f{bottom:500.124000pt;}
.y45{bottom:501.888000pt;}
.y1c{bottom:503.962667pt;}
.ye1{bottom:504.661333pt;}
.y95{bottom:508.934667pt;}
.ye2{bottom:509.481333pt;}
.y161{bottom:512.286667pt;}
.y1a{bottom:515.082667pt;}
.y11e{bottom:517.253333pt;}
.y44{bottom:517.828000pt;}
.ye0{bottom:520.601333pt;}
.y94{bottom:524.874667pt;}
.y160{bottom:524.905333pt;}
.y11d{bottom:529.872000pt;}
.y19{bottom:531.022667pt;}
.y43{bottom:533.768000pt;}
.ydf{bottom:536.541333pt;}
.y15f{bottom:537.525333pt;}
.y93{bottom:540.814667pt;}
.y11c{bottom:542.492000pt;}
.y18{bottom:546.964000pt;}
.y42{bottom:549.708000pt;}
.y15e{bottom:550.144000pt;}
.yde{bottom:552.481333pt;}
.y11b{bottom:555.110667pt;}
.y92{bottom:556.754667pt;}
.y15d{bottom:562.764000pt;}
.y17{bottom:562.904000pt;}
.y41{bottom:565.649333pt;}
.y11a{bottom:567.730667pt;}
.ydd{bottom:568.421333pt;}
.y91{bottom:572.694667pt;}
.y16{bottom:578.844000pt;}
.y15c{bottom:580.461333pt;}
.y40{bottom:581.589333pt;}
.ydc{bottom:584.361333pt;}
.y119{bottom:584.858667pt;}
.y90{bottom:588.634667pt;}
.y15b{bottom:593.080000pt;}
.y15{bottom:594.784000pt;}
.y118{bottom:597.478667pt;}
.y3f{bottom:597.529333pt;}
.ydb{bottom:600.302667pt;}
.y8f{bottom:604.576000pt;}
.y15a{bottom:605.700000pt;}
.y117{bottom:610.097333pt;}
.y14{bottom:610.724000pt;}
.y3e{bottom:613.469333pt;}
.yda{bottom:616.242667pt;}
.y159{bottom:618.318667pt;}
.y8e{bottom:620.516000pt;}
.y116{bottom:622.717333pt;}
.y13{bottom:626.664000pt;}
.y3d{bottom:629.409333pt;}
.ycd{bottom:632.182667pt;}
.y115{bottom:635.336000pt;}
.y158{bottom:636.016000pt;}
.y8d{bottom:636.456000pt;}
.y12{bottom:642.605333pt;}
.y3c{bottom:645.349333pt;}
.ycc{bottom:648.122667pt;}
.y157{bottom:648.636000pt;}
.y8c{bottom:652.396000pt;}
.y114{bottom:652.465333pt;}
.y11{bottom:658.545333pt;}
.y156{bottom:661.254667pt;}
.y3b{bottom:661.290667pt;}
.ycb{bottom:664.062667pt;}
.y113{bottom:665.084000pt;}
.y8b{bottom:668.336000pt;}
.yd9{bottom:668.884000pt;}
.yc7{bottom:669.122667pt;}
.y155{bottom:673.874667pt;}
.y10{bottom:674.485333pt;}
.y3a{bottom:677.230667pt;}
.y112{bottom:677.704000pt;}
.yca{bottom:680.002667pt;}
.y8a{bottom:684.276000pt;}
.y154{bottom:686.493333pt;}
.y111{bottom:690.322667pt;}
.yf{bottom:690.425333pt;}
.y38{bottom:693.170667pt;}
.yc6{bottom:695.944000pt;}
.y39{bottom:697.990667pt;}
.y89{bottom:700.217333pt;}
.yd8{bottom:700.764000pt;}
.y153{bottom:704.190667pt;}
.ye{bottom:706.365333pt;}
.y110{bottom:707.452000pt;}
.y37{bottom:709.110667pt;}
.yc5{bottom:711.884000pt;}
.y88{bottom:716.157333pt;}
.y152{bottom:716.810667pt;}
.y10f{bottom:720.070667pt;}
.yd{bottom:722.305333pt;}
.y36{bottom:725.050667pt;}
.yc4{bottom:727.824000pt;}
.y151{bottom:729.429333pt;}
.y87{bottom:732.097333pt;}
.yc9{bottom:732.644000pt;}
.y10e{bottom:732.690667pt;}
.yc{bottom:738.246667pt;}
.y35{bottom:740.990667pt;}
.y150{bottom:742.049333pt;}
.yc3{bottom:743.764000pt;}
.y10d{bottom:745.309333pt;}
.y14f{bottom:754.668000pt;}
.yb{bottom:756.932000pt;}
.yc2{bottom:759.704000pt;}
.y10c{bottom:762.438667pt;}
.y14e{bottom:772.365333pt;}
.y86{bottom:773.505333pt;}
.y10b{bottom:775.057333pt;}
.yc1{bottom:775.644000pt;}
.y14d{bottom:784.985333pt;}
.y85{bottom:786.125333pt;}
.y10a{bottom:787.677333pt;}
.yc0{bottom:791.585333pt;}
.ya{bottom:794.265333pt;}
.yd7{bottom:796.405333pt;}
.y14c{bottom:797.604000pt;}
.y5f{bottom:797.614667pt;}
.y109{bottom:804.805333pt;}
.ybf{bottom:807.525333pt;}
.y9{bottom:810.205333pt;}
.y14b{bottom:810.224000pt;}
.y108{bottom:817.425333pt;}
.y14a{bottom:822.842667pt;}
.ybe{bottom:823.465333pt;}
.y8{bottom:826.145333pt;}
.y107{bottom:830.044000pt;}
.ybd{bottom:839.405333pt;}
.y149{bottom:840.540000pt;}
.y7{bottom:842.085333pt;}
.y106{bottom:842.664000pt;}
.y148{bottom:853.160000pt;}
.ybc{bottom:855.345333pt;}
.yd6{bottom:860.166667pt;}
.y105{bottom:861.012000pt;}
.y147{bottom:865.778667pt;}
.ybb{bottom:871.285333pt;}
.y146{bottom:878.398667pt;}
.y6{bottom:880.158667pt;}
.y104{bottom:886.532000pt;}
.yba{bottom:887.226667pt;}
.y145{bottom:891.017333pt;}
.yd5{bottom:892.046667pt;}
.y5{bottom:896.098667pt;}
.y103{bottom:902.472000pt;}
.yb9{bottom:903.166667pt;}
.y144{bottom:908.714667pt;}
.y102{bottom:918.412000pt;}
.yb8{bottom:919.106667pt;}
.y143{bottom:921.334667pt;}
.yc8{bottom:923.926667pt;}
.y4{bottom:924.588000pt;}
.y142{bottom:933.953333pt;}
.y101{bottom:934.352000pt;}
.yb7{bottom:935.046667pt;}
.y3{bottom:941.029333pt;}
.y141{bottom:946.573333pt;}
.y100{bottom:950.292000pt;}
.yb6{bottom:950.986667pt;}
.y140{bottom:959.192000pt;}
.yff{bottom:966.232000pt;}
.yb5{bottom:966.926667pt;}
.yd4{bottom:971.748000pt;}
.y13f{bottom:976.889333pt;}
.yfe{bottom:982.173333pt;}
.y2{bottom:982.401333pt;}
.yb4{bottom:982.868000pt;}
.y13e{bottom:989.509333pt;}
.yfd{bottom:998.113333pt;}
.yb3{bottom:998.808000pt;}
.y13d{bottom:1002.128000pt;}
.y1{bottom:1008.968000pt;}
.yb2{bottom:1014.748000pt;}
.hc{height:15.105024pt;}
.hd{height:15.150114pt;}
.h10{height:17.302651pt;}
.he{height:18.712194pt;}
.hf{height:24.363878pt;}
.h4{height:27.560458pt;}
.h13{height:29.542504pt;}
.hb{height:30.029690pt;}
.h11{height:31.497835pt;}
.h12{height:31.540342pt;}
.h9{height:33.817219pt;}
.ha{height:33.862308pt;}
.h6{height:39.372195pt;}
.h5{height:39.425329pt;}
.h3{height:46.840458pt;}
.h7{height:46.845791pt;}
.h2{height:62.995670pt;}
.h8{height:230.413951pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:285.517638pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:4.330856pt;}
.x10{left:19.723249pt;}
.x11{left:22.866576pt;}
.x12{left:24.920096pt;}
.x13{left:27.622096pt;}
.x21{left:54.988852pt;}
.x22{left:57.821449pt;}
.x20{left:68.715012pt;}
.x28{left:74.659412pt;}
.x2a{left:83.724622pt;}
.x1a{left:91.366779pt;}
.x1b{left:92.933939pt;}
.x5{left:94.181333pt;}
.xd{left:95.929333pt;}
.x2b{left:97.838667pt;}
.x4f{left:100.396000pt;}
.x1f{left:103.935582pt;}
.x6{left:107.772000pt;}
.xe{left:115.878422pt;}
.x23{left:117.112336pt;}
.xf{left:120.579902pt;}
.x1c{left:121.588649pt;}
.x51{left:124.434667pt;}
.x50{left:125.497333pt;}
.x3c{left:131.396000pt;}
.x24{left:143.483856pt;}
.x36{left:147.329333pt;}
.x3d{left:152.077333pt;}
.x4{left:159.805333pt;}
.x37{left:163.502667pt;}
.x3{left:165.662667pt;}
.x15{left:180.393176pt;}
.x38{left:182.466667pt;}
.x1{left:186.930667pt;}
.x14{left:188.877456pt;}
.x26{left:190.183422pt;}
.x27{left:192.993502pt;}
.x2c{left:194.669333pt;}
.x29{left:199.316182pt;}
.x25{left:214.623012pt;}
.x39{left:216.734667pt;}
.x3a{left:221.829333pt;}
.x1d{left:224.089019pt;}
.x19{left:228.443742pt;}
.x16{left:231.397929pt;}
.x17{left:233.451449pt;}
.x18{left:236.153449pt;}
.x2f{left:238.742667pt;}
.x34{left:249.428000pt;}
.x2{left:282.474667pt;}
.x35{left:286.281333pt;}
.x32{left:291.028000pt;}
.x2d{left:298.346667pt;}
.x33{left:307.201333pt;}
.x2e{left:313.026667pt;}
.x52{left:319.124000pt;}
.x3b{left:366.729333pt;}
.x7{left:370.722667pt;}
.x8{left:381.726667pt;}
.x9{left:410.798667pt;}
.xc{left:424.081333pt;}
.x56{left:440.744000pt;}
.x53{left:441.806667pt;}
.x40{left:468.761333pt;}
.x4b{left:484.586667pt;}
.x4c{left:500.760000pt;}
.x41{left:503.029333pt;}
.x43{left:511.148000pt;}
.x44{left:527.322667pt;}
.x47{left:570.470667pt;}
.x3e{left:571.413333pt;}
.xa{left:572.889333pt;}
.xb{left:583.893333pt;}
.x48{left:586.644000pt;}
.x3f{left:587.588000pt;}
.x30{left:596.872000pt;}
.x42{left:603.668000pt;}
.x4d{left:607.836000pt;}
.x45{left:611.870667pt;}
.x4e{left:624.009333pt;}
.x31{left:625.969333pt;}
.x46{left:628.045333pt;}
.x54{left:650.752000pt;}
.x55{left:654.166667pt;}
.x49{left:656.057333pt;}
.x4a{left:677.372000pt;}
.x57{left:685.340000pt;}
}




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