
    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_968b6870fbf2509f7a7927af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_aaff879bb3ade4cd4eaf664b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_9445d48ba3fc992269a1c44b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_3d0bf2f0691b5abf5dfacbab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_644e74e41f82ae47703c0777.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.795000;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_650467fc44d05ec25b3046c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.716000;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_b04b80fd22928ba52493410e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_667f90f62d8200286eda0be8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;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_df66d6020a48aa030eb0fd2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf{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);}
.m10{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);}
.m8{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.mb{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);}
.m20{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);}
.m15{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);}
.m2a{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);}
.m1e{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);}
.m7{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);}
.ma{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);}
.m1{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);}
.m21{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);}
.me{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);}
.m19{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);}
.m13{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);}
.m1f{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);}
.m25{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);}
.mc{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);}
.m5{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);}
.m1a{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);}
.md{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);}
.m1c{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);}
.m9{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);}
.m14{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);}
.m11{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);}
.m18{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);}
.m1d{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);}
.m28{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);}
.m23{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);}
.m6{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);}
.m22{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);}
.m29{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);}
.m27{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);}
.m24{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);}
.m4{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);}
.m17{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);}
.m3{transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.v3{vertical-align:-11.958000px;}
.v1{vertical-align:-9.648400px;}
.v2{vertical-align:-2.313518px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000091px;}
.ls3a{letter-spacing:0.000335px;}
.ls28{letter-spacing:0.000422px;}
.ls1a{letter-spacing:0.000435px;}
.ls25{letter-spacing:0.000566px;}
.ls2b{letter-spacing:0.000568px;}
.ls0{letter-spacing:0.000600px;}
.ls29{letter-spacing:0.000676px;}
.ls23{letter-spacing:0.000800px;}
.ls33{letter-spacing:0.000823px;}
.ls3c{letter-spacing:0.000860px;}
.ls2c{letter-spacing:0.001036px;}
.ls3b{letter-spacing:0.001074px;}
.ls21{letter-spacing:0.001502px;}
.ls32{letter-spacing:0.001555px;}
.ls1{letter-spacing:0.001831px;}
.ls1c{letter-spacing:0.001996px;}
.ls34{letter-spacing:0.002074px;}
.ls39{letter-spacing:0.002090px;}
.ls2e{letter-spacing:0.002204px;}
.ls26{letter-spacing:0.002283px;}
.ls31{letter-spacing:0.002422px;}
.ls2d{letter-spacing:0.002544px;}
.ls36{letter-spacing:0.003075px;}
.ls3d{letter-spacing:0.003179px;}
.ls35{letter-spacing:0.003431px;}
.ls3e{letter-spacing:0.003634px;}
.ls27{letter-spacing:0.003830px;}
.ls4{letter-spacing:0.004200px;}
.ls38{letter-spacing:0.004560px;}
.ls1e{letter-spacing:0.004630px;}
.ls2f{letter-spacing:0.004754px;}
.ls37{letter-spacing:0.005182px;}
.ls24{letter-spacing:0.005510px;}
.ls1d{letter-spacing:0.010000px;}
.ls1f{letter-spacing:0.026878px;}
.ls2{letter-spacing:11.571746px;}
.ls8{letter-spacing:11.895344px;}
.lsa{letter-spacing:11.954850px;}
.ls30{letter-spacing:13.444090px;}
.ls2a{letter-spacing:13.450090px;}
.ls6{letter-spacing:13.808164px;}
.ls9{letter-spacing:13.867939px;}
.ls22{letter-spacing:14.054096px;}
.ls14{letter-spacing:14.645022px;}
.ls1b{letter-spacing:14.704798px;}
.ls11{letter-spacing:14.764573px;}
.ls7{letter-spacing:14.824349px;}
.ls15{letter-spacing:14.884124px;}
.lsc{letter-spacing:14.943900px;}
.ls20{letter-spacing:15.003676px;}
.ls13{letter-spacing:15.063451px;}
.ls10{letter-spacing:15.183002px;}
.ls16{letter-spacing:15.541656px;}
.ls3{letter-spacing:17.739501px;}
.ls12{letter-spacing:18.829314px;}
.lsf{letter-spacing:19.965050px;}
.ls17{letter-spacing:21.698543px;}
.lsd{letter-spacing:24.388445px;}
.ls19{letter-spacing:24.866650px;}
.ls18{letter-spacing:24.926425px;}
.ls5{letter-spacing:28.453654px;}
.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;}
}
.wsd{word-spacing:-14.943900px;}
.ws94{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws1{word-spacing:-10.460700px;}
.ws29{word-spacing:-4.124516px;}
.ws5c{word-spacing:-3.287658px;}
.ws76{word-spacing:-3.168107px;}
.ws7e{word-spacing:-2.510575px;}
.ws5a{word-spacing:-2.391024px;}
.ws59{word-spacing:-2.331248px;}
.wsc3{word-spacing:-2.205734px;}
.wsba{word-spacing:-2.151936px;}
.ws85{word-spacing:-1.972595px;}
.ws67{word-spacing:-1.912819px;}
.ws47{word-spacing:-1.853044px;}
.ws6d{word-spacing:-1.733492px;}
.ws46{word-spacing:-1.554166px;}
.ws2e{word-spacing:-1.434614px;}
.ws73{word-spacing:-1.374839px;}
.wsb3{word-spacing:-1.344960px;}
.ws45{word-spacing:-1.315063px;}
.ws28{word-spacing:-1.255288px;}
.ws1f{word-spacing:-1.135736px;}
.ws20{word-spacing:-1.075961px;}
.ws7f{word-spacing:-0.956410px;}
.ws1e{word-spacing:-0.896634px;}
.ws74{word-spacing:-0.836858px;}
.wsb8{word-spacing:-0.806976px;}
.ws6c{word-spacing:-0.777083px;}
.ws8f{word-spacing:-0.753178px;}
.ws64{word-spacing:-0.717307px;}
.ws98{word-spacing:-0.645581px;}
.wsad{word-spacing:-0.591782px;}
.ws69{word-spacing:-0.537980px;}
.ws75{word-spacing:-0.478205px;}
.ws6a{word-spacing:-0.418429px;}
.wsdd{word-spacing:-0.376589px;}
.ws6b{word-spacing:-0.358654px;}
.wsce{word-spacing:-0.322790px;}
.ws41{word-spacing:-0.298878px;}
.ws12{word-spacing:-0.268992px;}
.ws56{word-spacing:-0.239102px;}
.wsb1{word-spacing:-0.215194px;}
.ws23{word-spacing:-0.179327px;}
.ws13{word-spacing:-0.161395px;}
.ws27{word-spacing:-0.119551px;}
.ws17{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws97{word-spacing:-0.053798px;}
.wsb0{word-spacing:-0.044712px;}
.ws6{word-spacing:-0.041843px;}
.wsc0{word-spacing:-0.014275px;}
.wsbb{word-spacing:-0.012086px;}
.ws9f{word-spacing:-0.010666px;}
.wsb7{word-spacing:-0.010003px;}
.wsd9{word-spacing:-0.009216px;}
.ws92{word-spacing:-0.008275px;}
.wsb9{word-spacing:-0.008016px;}
.wsa3{word-spacing:-0.007853px;}
.ws99{word-spacing:-0.007488px;}
.ws96{word-spacing:-0.007459px;}
.wsea{word-spacing:-0.006931px;}
.ws9a{word-spacing:-0.006845px;}
.wse2{word-spacing:-0.006787px;}
.wsaf{word-spacing:-0.006086px;}
.wsdb{word-spacing:-0.005837px;}
.wsc5{word-spacing:-0.005002px;}
.wsc7{word-spacing:-0.004800px;}
.wsdf{word-spacing:-0.004570px;}
.wse0{word-spacing:-0.004022px;}
.wsac{word-spacing:-0.003859px;}
.wsd4{word-spacing:-0.003533px;}
.wsde{word-spacing:-0.002822px;}
.wsaa{word-spacing:-0.002198px;}
.ws30{word-spacing:-0.000785px;}
.ws4{word-spacing:-0.000779px;}
.ws2{word-spacing:0.000000px;}
.wsda{word-spacing:0.001402px;}
.wsb4{word-spacing:0.049217px;}
.ws18{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws14{word-spacing:0.107597px;}
.ws42{word-spacing:0.119551px;}
.ws15{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.ws19{word-spacing:0.215194px;}
.ws2c{word-spacing:0.239102px;}
.ws16{word-spacing:0.268992px;}
.ws2f{word-spacing:0.298878px;}
.wsdc{word-spacing:0.308233px;}
.wsd6{word-spacing:0.322790px;}
.ws63{word-spacing:0.358654px;}
.ws49{word-spacing:0.478205px;}
.ws9e{word-spacing:0.591782px;}
.ws4e{word-spacing:0.597756px;}
.wse7{word-spacing:0.645581px;}
.wsa4{word-spacing:0.699379px;}
.wsa5{word-spacing:0.753178px;}
.ws9d{word-spacing:0.806976px;}
.ws21{word-spacing:0.836858px;}
.wsbf{word-spacing:0.860774px;}
.ws4a{word-spacing:0.896634px;}
.wse6{word-spacing:0.914573px;}
.ws71{word-spacing:0.956410px;}
.wscd{word-spacing:0.960609px;}
.ws8c{word-spacing:1.016185px;}
.wscc{word-spacing:1.022170px;}
.ws68{word-spacing:1.135736px;}
.wsc1{word-spacing:1.183565px;}
.ws32{word-spacing:1.195512px;}
.wse8{word-spacing:1.291162px;}
.wsbc{word-spacing:1.344960px;}
.ws4b{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws7b{word-spacing:1.554166px;}
.wsc6{word-spacing:1.560154px;}
.ws60{word-spacing:1.613941px;}
.wse1{word-spacing:1.613952px;}
.ws61{word-spacing:1.673717px;}
.wsa7{word-spacing:1.721549px;}
.ws38{word-spacing:1.733492px;}
.wsd8{word-spacing:1.775347px;}
.ws55{word-spacing:1.793268px;}
.ws95{word-spacing:1.829146px;}
.ws58{word-spacing:1.853044px;}
.ws1a{word-spacing:1.882944px;}
.ws48{word-spacing:1.912819px;}
.ws11{word-spacing:1.936742px;}
.ws6f{word-spacing:1.972595px;}
.wscf{word-spacing:1.990541px;}
.ws6e{word-spacing:2.032370px;}
.ws88{word-spacing:2.092146px;}
.ws7a{word-spacing:2.151922px;}
.wsa6{word-spacing:2.205734px;}
.ws84{word-spacing:2.211697px;}
.ws82{word-spacing:2.271473px;}
.ws81{word-spacing:2.331248px;}
.ws57{word-spacing:2.450800px;}
.wsec{word-spacing:2.474726px;}
.ws3{word-spacing:2.510568px;}
.ws53{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws4d{word-spacing:2.570351px;}
.ws70{word-spacing:2.689902px;}
.ws5e{word-spacing:2.809453px;}
.ws5f{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.wsed{word-spacing:2.905114px;}
.ws1d{word-spacing:2.929004px;}
.ws3e{word-spacing:2.988780px;}
.wsb2{word-spacing:3.012710px;}
.ws44{word-spacing:3.168107px;}
.wsca{word-spacing:3.219110px;}
.ws1b{word-spacing:3.219667px;}
.wsc8{word-spacing:3.221021px;}
.wsa2{word-spacing:3.221117px;}
.wscb{word-spacing:3.221798px;}
.wseb{word-spacing:3.222000px;}
.wsd0{word-spacing:3.222874px;}
.wsae{word-spacing:3.223507px;}
.wse9{word-spacing:3.224198px;}
.wsd5{word-spacing:3.224362px;}
.wsa0{word-spacing:3.226157px;}
.ws50{word-spacing:3.227882px;}
.ws93{word-spacing:3.227904px;}
.wsd7{word-spacing:3.281702px;}
.ws51{word-spacing:3.287658px;}
.wsa8{word-spacing:3.335501px;}
.wsa9{word-spacing:3.367267px;}
.ws9b{word-spacing:3.389299px;}
.ws90{word-spacing:3.406572px;}
.ws7d{word-spacing:3.407209px;}
.wsc4{word-spacing:3.443098px;}
.wsab{word-spacing:3.496896px;}
.ws78{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.ws8b{word-spacing:3.646312px;}
.wsd2{word-spacing:3.658291px;}
.ws62{word-spacing:3.706087px;}
.ws77{word-spacing:3.825638px;}
.wse3{word-spacing:3.927283px;}
.ws2b{word-spacing:3.945190px;}
.wsa1{word-spacing:3.981082px;}
.ws5d{word-spacing:4.004965px;}
.wsef{word-spacing:4.034880px;}
.ws54{word-spacing:4.064741px;}
.ws35{word-spacing:4.184292px;}
.ws34{word-spacing:4.303843px;}
.ws8e{word-spacing:4.303872px;}
.wsc9{word-spacing:4.357670px;}
.ws8a{word-spacing:4.363619px;}
.wsee{word-spacing:4.411469px;}
.ws65{word-spacing:4.423394px;}
.ws8d{word-spacing:4.465267px;}
.ws7c{word-spacing:4.542946px;}
.ws43{word-spacing:4.602721px;}
.ws22{word-spacing:4.662497px;}
.wsd1{word-spacing:4.680461px;}
.ws3f{word-spacing:4.841824px;}
.ws39{word-spacing:4.901599px;}
.wsc2{word-spacing:5.057050px;}
.ws25{word-spacing:5.080926px;}
.ws24{word-spacing:5.140702px;}
.ws72{word-spacing:5.200477px;}
.wsbd{word-spacing:5.272243px;}
.ws4c{word-spacing:5.379804px;}
.ws80{word-spacing:5.439580px;}
.wsa{word-spacing:5.481407px;}
.ws9c{word-spacing:5.595034px;}
.ws2a{word-spacing:5.738458px;}
.ws86{word-spacing:5.917784px;}
.ws36{word-spacing:5.977560px;}
.ws3a{word-spacing:6.097111px;}
.ws3b{word-spacing:6.156887px;}
.ws40{word-spacing:6.216662px;}
.ws79{word-spacing:6.395989px;}
.ws4f{word-spacing:6.455765px;}
.ws66{word-spacing:6.515540px;}
.ws3d{word-spacing:6.694867px;}
.ws52{word-spacing:6.814418px;}
.wsb6{word-spacing:7.101389px;}
.ws3c{word-spacing:7.173072px;}
.ws26{word-spacing:7.232848px;}
.ws10{word-spacing:7.292390px;}
.ws87{word-spacing:7.471950px;}
.ws5b{word-spacing:7.591501px;}
.ws89{word-spacing:8.129482px;}
.ws33{word-spacing:8.189257px;}
.wse5{word-spacing:8.607744px;}
.wsb5{word-spacing:8.930534px;}
.ws91{word-spacing:9.522317px;}
.ws8{word-spacing:9.833058px;}
.ws83{word-spacing:10.998710px;}
.wse4{word-spacing:11.297664px;}
.wsf0{word-spacing:11.566656px;}
.ws9{word-spacing:11.841512px;}
.wsbe{word-spacing:13.987584px;}
.wsd3{word-spacing:14.740762px;}
.ws5{word-spacing:15.481836px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
._1b{margin-left:-24.693466px;}
._16{margin-left:-23.252708px;}
._1e{margin-left:-21.256324px;}
._19{margin-left:-7.765024px;}
._12{margin-left:-6.384038px;}
._5{margin-left:-5.308087px;}
._8{margin-left:-3.927269px;}
._9{margin-left:-2.743704px;}
._0{margin-left:-1.506341px;}
._15{width:3.287658px;}
._1a{width:7.496122px;}
._1{width:12.971268px;}
._6{width:14.364173px;}
._1d{width:15.693110px;}
._7{width:16.731288px;}
._b{width:18.590212px;}
._e{width:20.443255px;}
._a{width:21.842150px;}
._f{width:23.426062px;}
._2{width:25.314894px;}
._13{width:26.361040px;}
._11{width:27.927156px;}
._1c{width:29.075156px;}
._14{width:30.168757px;}
._18{width:31.202863px;}
._1f{width:32.244348px;}
._3{width:33.355008px;}
._17{width:35.686033px;}
._10{width:38.375944px;}
._21{width:42.907366px;}
._4{width:54.426359px;}
._c{width:965.651411px;}
._20{width:2541.241213px;}
._d{width:2565.151213px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(4,6,6);}
.fc2{color:rgb(24,71,104);}
.fc1{color:rgb(109,164,194);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.779955px;}
.fs2{font-size:41.124751px;}
.fs0{font-size:41.842800px;}
.fs1{font-size:45.033277px;}
.fs4{font-size:47.095448px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:136.067040px;}
.y0{bottom:0.000000px;}
.y1a{bottom:4.281255px;}
.y19{bottom:7.959393px;}
.y18{bottom:12.228458px;}
.y1b{bottom:16.129519px;}
.y49{bottom:31.890000px;}
.y48{bottom:103.621500px;}
.y16{bottom:104.646000px;}
.ye1{bottom:115.741500px;}
.y117{bottom:116.458500px;}
.y7e{bottom:117.355500px;}
.y97{bottom:119.148000px;}
.y47{bottom:122.449500px;}
.y15{bottom:122.535000px;}
.ye0{bottom:133.002000px;}
.y116{bottom:133.719000px;}
.y7d{bottom:136.185000px;}
.y8c{bottom:137.977500px;}
.y14{bottom:140.422500px;}
.y46{bottom:141.279000px;}
.ydf{bottom:150.261000px;}
.y115{bottom:150.978000px;}
.y7c{bottom:155.013000px;}
.y8b{bottom:156.807000px;}
.y13{bottom:158.310000px;}
.y45{bottom:160.108500px;}
.yde{bottom:167.521500px;}
.y114{bottom:168.238500px;}
.y7b{bottom:173.842500px;}
.y8a{bottom:175.636500px;}
.y12{bottom:176.199000px;}
.y44{bottom:178.938000px;}
.ydd{bottom:184.782000px;}
.y113{bottom:185.499000px;}
.y7a{bottom:192.672000px;}
.y11{bottom:194.086500px;}
.y89{bottom:194.466000px;}
.y43{bottom:197.767500px;}
.ydc{bottom:202.042500px;}
.y112{bottom:202.759500px;}
.y79{bottom:211.501500px;}
.y10{bottom:211.974000px;}
.y88{bottom:213.295500px;}
.yab{bottom:213.744000px;}
.y42{bottom:216.597000px;}
.ydb{bottom:219.303000px;}
.y111{bottom:220.020000px;}
.yf{bottom:229.863000px;}
.y78{bottom:230.331000px;}
.y87{bottom:232.125000px;}
.yaa{bottom:232.573500px;}
.y41{bottom:235.426500px;}
.yda{bottom:236.563500px;}
.y110{bottom:237.280500px;}
.y86{bottom:250.954500px;}
.ya9{bottom:251.403000px;}
.y77{bottom:253.644000px;}
.yd9{bottom:253.824000px;}
.y40{bottom:254.256000px;}
.y10f{bottom:254.541000px;}
.y85{bottom:269.784000px;}
.ya8{bottom:270.232500px;}
.yd8{bottom:271.084500px;}
.y10e{bottom:271.801500px;}
.y3f{bottom:273.085500px;}
.y76{bottom:273.819000px;}
.ya6{bottom:274.267500px;}
.yd7{bottom:288.345000px;}
.y84{bottom:288.613500px;}
.ya7{bottom:289.062000px;}
.y3e{bottom:291.915000px;}
.ye{bottom:299.892000px;}
.yd6{bottom:305.604000px;}
.y10d{bottom:306.321000px;}
.y75{bottom:307.443000px;}
.ya5{bottom:307.891500px;}
.y3d{bottom:310.744500px;}
.yd{bottom:317.779500px;}
.yd5{bottom:322.864500px;}
.y10c{bottom:323.581500px;}
.y74{bottom:326.272500px;}
.ya4{bottom:326.719500px;}
.y3c{bottom:329.574000px;}
.yc{bottom:335.667000px;}
.yd4{bottom:340.125000px;}
.y10b{bottom:340.842000px;}
.y73{bottom:345.102000px;}
.ya3{bottom:345.549000px;}
.y3b{bottom:348.403500px;}
.yb{bottom:353.556000px;}
.yd3{bottom:357.385500px;}
.y10a{bottom:358.102500px;}
.y72{bottom:363.931500px;}
.ya2{bottom:364.378500px;}
.y3a{bottom:367.233000px;}
.yd2{bottom:374.646000px;}
.y109{bottom:375.363000px;}
.ya{bottom:381.904500px;}
.y71{bottom:382.761000px;}
.ya1{bottom:383.208000px;}
.y39{bottom:386.062500px;}
.yd1{bottom:391.906500px;}
.y108{bottom:392.623500px;}
.y9{bottom:399.792000px;}
.y70{bottom:401.589000px;}
.ya0{bottom:402.037500px;}
.y38{bottom:404.892000px;}
.yd0{bottom:409.167000px;}
.y107{bottom:409.884000px;}
.y6f{bottom:420.418500px;}
.y9f{bottom:420.867000px;}
.y37{bottom:423.721500px;}
.ycf{bottom:426.427500px;}
.y8{bottom:426.646500px;}
.y106{bottom:427.144500px;}
.y6e{bottom:439.248000px;}
.y9e{bottom:439.696500px;}
.y36{bottom:442.551000px;}
.yce{bottom:443.688000px;}
.y105{bottom:444.403500px;}
.y7{bottom:444.534000px;}
.y6d{bottom:458.077500px;}
.y9d{bottom:458.526000px;}
.ycd{bottom:460.947000px;}
.y35{bottom:461.380500px;}
.y104{bottom:461.664000px;}
.y6{bottom:462.423000px;}
.y6c{bottom:476.907000px;}
.y9c{bottom:477.355500px;}
.ycc{bottom:478.207500px;}
.y103{bottom:478.924500px;}
.y34{bottom:480.210000px;}
.y5{bottom:480.310500px;}
.ycb{bottom:495.468000px;}
.y6b{bottom:495.736500px;}
.y9b{bottom:496.185000px;}
.y4{bottom:498.198000px;}
.y33{bottom:499.039500px;}
.yca{bottom:512.728500px;}
.y102{bottom:513.445500px;}
.y6a{bottom:514.566000px;}
.y9a{bottom:515.014500px;}
.y3{bottom:516.087000px;}
.y32{bottom:522.351000px;}
.yc9{bottom:529.989000px;}
.y101{bottom:530.706000px;}
.y69{bottom:533.395500px;}
.y99{bottom:533.844000px;}
.y2{bottom:533.974500px;}
.y96{bottom:537.879000px;}
.yc8{bottom:547.249500px;}
.y100{bottom:547.966500px;}
.y1{bottom:551.862000px;}
.y68{bottom:552.225000px;}
.y98{bottom:552.673500px;}
.yc7{bottom:564.510000px;}
.yff{bottom:565.227000px;}
.y67{bottom:571.054500px;}
.y95{bottom:571.503000px;}
.yc6{bottom:581.770500px;}
.yfe{bottom:582.487500px;}
.y66{bottom:589.884000px;}
.y94{bottom:590.332500px;}
.y31{bottom:597.502500px;}
.yc5{bottom:599.029500px;}
.yfd{bottom:599.746500px;}
.y65{bottom:608.713500px;}
.y93{bottom:609.162000px;}
.yc4{bottom:616.290000px;}
.yfc{bottom:617.007000px;}
.y64{bottom:627.543000px;}
.y92{bottom:627.991500px;}
.yc3{bottom:633.550500px;}
.yfb{bottom:634.267500px;}
.y30{bottom:634.891500px;}
.y63{bottom:646.372500px;}
.y91{bottom:646.821000px;}
.yc2{bottom:650.811000px;}
.yfa{bottom:651.528000px;}
.y2f{bottom:654.348000px;}
.y62{bottom:665.202000px;}
.y90{bottom:665.650500px;}
.yc1{bottom:668.071500px;}
.yf9{bottom:668.788500px;}
.y2e{bottom:673.806000px;}
.y61{bottom:684.031500px;}
.y8f{bottom:684.480000px;}
.yc0{bottom:685.332000px;}
.yf8{bottom:686.049000px;}
.y2d{bottom:693.262500px;}
.ybf{bottom:702.592500px;}
.y83{bottom:702.861000px;}
.y8e{bottom:703.309500px;}
.y60{bottom:707.344500px;}
.y2c{bottom:712.720500px;}
.ybe{bottom:719.853000px;}
.yf7{bottom:720.570000px;}
.y82{bottom:721.690500px;}
.y8d{bottom:722.139000px;}
.y2b{bottom:732.177000px;}
.ybd{bottom:737.113500px;}
.yf6{bottom:737.829000px;}
.y81{bottom:740.520000px;}
.y5f{bottom:740.968500px;}
.y2a{bottom:751.633500px;}
.ybc{bottom:754.372500px;}
.yf5{bottom:755.089500px;}
.y80{bottom:759.349500px;}
.y5e{bottom:759.798000px;}
.y29{bottom:771.091500px;}
.ybb{bottom:771.633000px;}
.yf4{bottom:772.350000px;}
.y5d{bottom:778.627500px;}
.y7f{bottom:782.662500px;}
.yba{bottom:788.893500px;}
.yf3{bottom:789.610500px;}
.y28{bottom:790.548000px;}
.y5c{bottom:797.457000px;}
.y11a{bottom:802.312500px;}
.yf2{bottom:806.871000px;}
.y27{bottom:810.004500px;}
.yb9{bottom:810.637500px;}
.y5b{bottom:816.286500px;}
.y119{bottom:819.573000px;}
.yf1{bottom:824.131500px;}
.y26{bottom:829.462500px;}
.y5a{bottom:835.114500px;}
.y118{bottom:836.833500px;}
.yf0{bottom:841.392000px;}
.yb8{bottom:844.261500px;}
.y25{bottom:848.919000px;}
.y59{bottom:853.944000px;}
.yef{bottom:858.652500px;}
.y24{bottom:868.377000px;}
.yb7{bottom:870.801000px;}
.y58{bottom:872.773500px;}
.yee{bottom:875.913000px;}
.y23{bottom:887.833500px;}
.yb6{bottom:888.376500px;}
.y57{bottom:891.603000px;}
.yed{bottom:893.172000px;}
.y56{bottom:910.432500px;}
.yb5{bottom:914.916000px;}
.y22{bottom:922.786500px;}
.yec{bottom:927.693000px;}
.y55{bottom:929.262000px;}
.y21{bottom:938.925000px;}
.yb4{bottom:941.457000px;}
.yeb{bottom:944.953500px;}
.y54{bottom:948.091500px;}
.y20{bottom:955.065000px;}
.yea{bottom:962.214000px;}
.y53{bottom:966.921000px;}
.yb3{bottom:967.998000px;}
.ye9{bottom:979.474500px;}
.yb2{bottom:985.572000px;}
.y52{bottom:985.750500px;}
.ye8{bottom:996.735000px;}
.y1f{bottom:1000.449000px;}
.y51{bottom:1004.580000px;}
.yb1{bottom:1012.111500px;}
.ye7{bottom:1013.995500px;}
.y50{bottom:1023.409500px;}
.yb0{bottom:1029.685500px;}
.ye6{bottom:1031.254500px;}
.y1e{bottom:1037.211000px;}
.y4f{bottom:1042.239000px;}
.yaf{bottom:1047.261000px;}
.ye5{bottom:1048.515000px;}
.y4e{bottom:1061.068500px;}
.yae{bottom:1064.835000px;}
.y1d{bottom:1065.454500px;}
.ye4{bottom:1065.775500px;}
.y4d{bottom:1079.898000px;}
.yad{bottom:1082.409000px;}
.ye3{bottom:1083.036000px;}
.y1c{bottom:1093.699500px;}
.y4c{bottom:1098.727500px;}
.yac{bottom:1099.983000px;}
.ye2{bottom:1100.296500px;}
.y4b{bottom:1117.557000px;}
.y17{bottom:1137.186000px;}
.y4a{bottom:1177.662000px;}
.h5{height:29.527571px;}
.h4{height:32.333893px;}
.h2{height:36.319550px;}
.ha{height:41.508281px;}
.hc{height:43.038432px;}
.h7{height:43.815515px;}
.h9{height:44.473046px;}
.hb{height:46.697011px;}
.he{height:49.064141px;}
.h3{height:50.887467px;}
.hd{height:51.885221px;}
.h8{height:77.469696px;}
.h6{height:89.939935px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:283.414416px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:28.390860px;}
.x2{left:32.479391px;}
.x3{left:43.285382px;}
.x5{left:51.307857px;}
.x1{left:53.574000px;}
.xb{left:85.848000px;}
.x7{left:248.526000px;}
.x6{left:249.591000px;}
.x8{left:281.368500px;}
.x9{left:743.079000px;}
.xa{left:837.849000px;}
@media print{
.v3{vertical-align:-10.629333pt;}
.v1{vertical-align:-8.576356pt;}
.v2{vertical-align:-2.056460pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000081pt;}
.ls3a{letter-spacing:0.000298pt;}
.ls28{letter-spacing:0.000375pt;}
.ls1a{letter-spacing:0.000387pt;}
.ls25{letter-spacing:0.000503pt;}
.ls2b{letter-spacing:0.000504pt;}
.ls0{letter-spacing:0.000533pt;}
.ls29{letter-spacing:0.000600pt;}
.ls23{letter-spacing:0.000711pt;}
.ls33{letter-spacing:0.000732pt;}
.ls3c{letter-spacing:0.000765pt;}
.ls2c{letter-spacing:0.000921pt;}
.ls3b{letter-spacing:0.000954pt;}
.ls21{letter-spacing:0.001335pt;}
.ls32{letter-spacing:0.001382pt;}
.ls1{letter-spacing:0.001628pt;}
.ls1c{letter-spacing:0.001774pt;}
.ls34{letter-spacing:0.001843pt;}
.ls39{letter-spacing:0.001858pt;}
.ls2e{letter-spacing:0.001959pt;}
.ls26{letter-spacing:0.002030pt;}
.ls31{letter-spacing:0.002153pt;}
.ls2d{letter-spacing:0.002262pt;}
.ls36{letter-spacing:0.002734pt;}
.ls3d{letter-spacing:0.002826pt;}
.ls35{letter-spacing:0.003050pt;}
.ls3e{letter-spacing:0.003230pt;}
.ls27{letter-spacing:0.003405pt;}
.ls4{letter-spacing:0.003733pt;}
.ls38{letter-spacing:0.004053pt;}
.ls1e{letter-spacing:0.004116pt;}
.ls2f{letter-spacing:0.004226pt;}
.ls37{letter-spacing:0.004607pt;}
.ls24{letter-spacing:0.004898pt;}
.ls1d{letter-spacing:0.008889pt;}
.ls1f{letter-spacing:0.023891pt;}
.ls2{letter-spacing:10.285996pt;}
.ls8{letter-spacing:10.573639pt;}
.lsa{letter-spacing:10.626533pt;}
.ls30{letter-spacing:11.950302pt;}
.ls2a{letter-spacing:11.955635pt;}
.ls6{letter-spacing:12.273923pt;}
.ls9{letter-spacing:12.327057pt;}
.ls22{letter-spacing:12.492530pt;}
.ls14{letter-spacing:13.017797pt;}
.ls1b{letter-spacing:13.070931pt;}
.ls11{letter-spacing:13.124065pt;}
.ls7{letter-spacing:13.177199pt;}
.ls15{letter-spacing:13.230333pt;}
.lsc{letter-spacing:13.283467pt;}
.ls20{letter-spacing:13.336601pt;}
.ls13{letter-spacing:13.389734pt;}
.ls10{letter-spacing:13.496002pt;}
.ls16{letter-spacing:13.814805pt;}
.ls3{letter-spacing:15.768445pt;}
.ls12{letter-spacing:16.737168pt;}
.lsf{letter-spacing:17.746711pt;}
.ls17{letter-spacing:19.287594pt;}
.lsd{letter-spacing:21.678618pt;}
.ls19{letter-spacing:22.103689pt;}
.ls18{letter-spacing:22.156822pt;}
.ls5{letter-spacing:25.292137pt;}
.wsd{word-spacing:-13.283467pt;}
.ws94{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws1{word-spacing:-9.298400pt;}
.ws29{word-spacing:-3.666237pt;}
.ws5c{word-spacing:-2.922363pt;}
.ws76{word-spacing:-2.816095pt;}
.ws7e{word-spacing:-2.231622pt;}
.ws5a{word-spacing:-2.125355pt;}
.ws59{word-spacing:-2.072221pt;}
.wsc3{word-spacing:-1.960653pt;}
.wsba{word-spacing:-1.912832pt;}
.ws85{word-spacing:-1.753418pt;}
.ws67{word-spacing:-1.700284pt;}
.ws47{word-spacing:-1.647150pt;}
.ws6d{word-spacing:-1.540882pt;}
.ws46{word-spacing:-1.381481pt;}
.ws2e{word-spacing:-1.275213pt;}
.ws73{word-spacing:-1.222079pt;}
.wsb3{word-spacing:-1.195520pt;}
.ws45{word-spacing:-1.168945pt;}
.ws28{word-spacing:-1.115811pt;}
.ws1f{word-spacing:-1.009543pt;}
.ws20{word-spacing:-0.956410pt;}
.ws7f{word-spacing:-0.850142pt;}
.ws1e{word-spacing:-0.797008pt;}
.ws74{word-spacing:-0.743874pt;}
.wsb8{word-spacing:-0.717312pt;}
.ws6c{word-spacing:-0.690740pt;}
.ws8f{word-spacing:-0.669491pt;}
.ws64{word-spacing:-0.637606pt;}
.ws98{word-spacing:-0.573850pt;}
.wsad{word-spacing:-0.526029pt;}
.ws69{word-spacing:-0.478205pt;}
.ws75{word-spacing:-0.425071pt;}
.ws6a{word-spacing:-0.371937pt;}
.wsdd{word-spacing:-0.334746pt;}
.ws6b{word-spacing:-0.318803pt;}
.wsce{word-spacing:-0.286925pt;}
.ws41{word-spacing:-0.265669pt;}
.ws12{word-spacing:-0.239104pt;}
.ws56{word-spacing:-0.212535pt;}
.wsb1{word-spacing:-0.191283pt;}
.ws23{word-spacing:-0.159402pt;}
.ws13{word-spacing:-0.143462pt;}
.ws27{word-spacing:-0.106268pt;}
.ws17{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws97{word-spacing:-0.047821pt;}
.wsb0{word-spacing:-0.039744pt;}
.ws6{word-spacing:-0.037194pt;}
.wsc0{word-spacing:-0.012689pt;}
.wsbb{word-spacing:-0.010743pt;}
.ws9f{word-spacing:-0.009481pt;}
.wsb7{word-spacing:-0.008892pt;}
.wsd9{word-spacing:-0.008192pt;}
.ws92{word-spacing:-0.007356pt;}
.wsb9{word-spacing:-0.007125pt;}
.wsa3{word-spacing:-0.006980pt;}
.ws99{word-spacing:-0.006656pt;}
.ws96{word-spacing:-0.006630pt;}
.wsea{word-spacing:-0.006161pt;}
.ws9a{word-spacing:-0.006084pt;}
.wse2{word-spacing:-0.006033pt;}
.wsaf{word-spacing:-0.005410pt;}
.wsdb{word-spacing:-0.005188pt;}
.wsc5{word-spacing:-0.004446pt;}
.wsc7{word-spacing:-0.004267pt;}
.wsdf{word-spacing:-0.004062pt;}
.wse0{word-spacing:-0.003575pt;}
.wsac{word-spacing:-0.003430pt;}
.wsd4{word-spacing:-0.003140pt;}
.wsde{word-spacing:-0.002509pt;}
.wsaa{word-spacing:-0.001954pt;}
.ws30{word-spacing:-0.000698pt;}
.ws4{word-spacing:-0.000692pt;}
.ws2{word-spacing:0.000000pt;}
.wsda{word-spacing:0.001246pt;}
.wsb4{word-spacing:0.043748pt;}
.ws18{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws14{word-spacing:0.095642pt;}
.ws42{word-spacing:0.106268pt;}
.ws15{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.ws19{word-spacing:0.191283pt;}
.ws2c{word-spacing:0.212535pt;}
.ws16{word-spacing:0.239104pt;}
.ws2f{word-spacing:0.265669pt;}
.wsdc{word-spacing:0.273984pt;}
.wsd6{word-spacing:0.286925pt;}
.ws63{word-spacing:0.318803pt;}
.ws49{word-spacing:0.425071pt;}
.ws9e{word-spacing:0.526029pt;}
.ws4e{word-spacing:0.531339pt;}
.wse7{word-spacing:0.573850pt;}
.wsa4{word-spacing:0.621670pt;}
.wsa5{word-spacing:0.669491pt;}
.ws9d{word-spacing:0.717312pt;}
.ws21{word-spacing:0.743874pt;}
.wsbf{word-spacing:0.765133pt;}
.ws4a{word-spacing:0.797008pt;}
.wse6{word-spacing:0.812954pt;}
.ws71{word-spacing:0.850142pt;}
.wscd{word-spacing:0.853875pt;}
.ws8c{word-spacing:0.903276pt;}
.wscc{word-spacing:0.908595pt;}
.ws68{word-spacing:1.009543pt;}
.wsc1{word-spacing:1.052058pt;}
.ws32{word-spacing:1.062677pt;}
.wse8{word-spacing:1.147699pt;}
.wsbc{word-spacing:1.195520pt;}
.ws4b{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws7b{word-spacing:1.381481pt;}
.wsc6{word-spacing:1.386803pt;}
.ws60{word-spacing:1.434614pt;}
.wse1{word-spacing:1.434624pt;}
.ws61{word-spacing:1.487748pt;}
.wsa7{word-spacing:1.530266pt;}
.ws38{word-spacing:1.540882pt;}
.wsd8{word-spacing:1.578086pt;}
.ws55{word-spacing:1.594016pt;}
.ws95{word-spacing:1.625907pt;}
.ws58{word-spacing:1.647150pt;}
.ws1a{word-spacing:1.673728pt;}
.ws48{word-spacing:1.700284pt;}
.ws11{word-spacing:1.721549pt;}
.ws6f{word-spacing:1.753418pt;}
.wscf{word-spacing:1.769370pt;}
.ws6e{word-spacing:1.806551pt;}
.ws88{word-spacing:1.859685pt;}
.ws7a{word-spacing:1.912819pt;}
.wsa6{word-spacing:1.960653pt;}
.ws84{word-spacing:1.965953pt;}
.ws82{word-spacing:2.019087pt;}
.ws81{word-spacing:2.072221pt;}
.ws57{word-spacing:2.178489pt;}
.wsec{word-spacing:2.199757pt;}
.ws3{word-spacing:2.231616pt;}
.ws53{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws4d{word-spacing:2.284756pt;}
.ws70{word-spacing:2.391024pt;}
.ws5e{word-spacing:2.497292pt;}
.ws5f{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.wsed{word-spacing:2.582323pt;}
.ws1d{word-spacing:2.603559pt;}
.ws3e{word-spacing:2.656693pt;}
.wsb2{word-spacing:2.677965pt;}
.ws44{word-spacing:2.816095pt;}
.wsca{word-spacing:2.861431pt;}
.ws1b{word-spacing:2.861926pt;}
.wsc8{word-spacing:2.863130pt;}
.wsa2{word-spacing:2.863215pt;}
.wscb{word-spacing:2.863821pt;}
.wseb{word-spacing:2.864000pt;}
.wsd0{word-spacing:2.864777pt;}
.wsae{word-spacing:2.865340pt;}
.wse9{word-spacing:2.865954pt;}
.wsd5{word-spacing:2.866099pt;}
.wsa0{word-spacing:2.867695pt;}
.ws50{word-spacing:2.869229pt;}
.ws93{word-spacing:2.869248pt;}
.wsd7{word-spacing:2.917069pt;}
.ws51{word-spacing:2.922363pt;}
.wsa8{word-spacing:2.964890pt;}
.wsa9{word-spacing:2.993126pt;}
.ws9b{word-spacing:3.012710pt;}
.ws90{word-spacing:3.028064pt;}
.ws7d{word-spacing:3.028630pt;}
.wsc4{word-spacing:3.060531pt;}
.wsab{word-spacing:3.108352pt;}
.ws78{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.ws8b{word-spacing:3.241166pt;}
.wsd2{word-spacing:3.251814pt;}
.ws62{word-spacing:3.294300pt;}
.ws77{word-spacing:3.400567pt;}
.wse3{word-spacing:3.490918pt;}
.ws2b{word-spacing:3.506835pt;}
.wsa1{word-spacing:3.538739pt;}
.ws5d{word-spacing:3.559969pt;}
.wsef{word-spacing:3.586560pt;}
.ws54{word-spacing:3.613103pt;}
.ws35{word-spacing:3.719371pt;}
.ws34{word-spacing:3.825638pt;}
.ws8e{word-spacing:3.825664pt;}
.wsc9{word-spacing:3.873485pt;}
.ws8a{word-spacing:3.878772pt;}
.wsee{word-spacing:3.921306pt;}
.ws65{word-spacing:3.931906pt;}
.ws8d{word-spacing:3.969126pt;}
.ws7c{word-spacing:4.038174pt;}
.ws43{word-spacing:4.091308pt;}
.ws22{word-spacing:4.144442pt;}
.wsd1{word-spacing:4.160410pt;}
.ws3f{word-spacing:4.303843pt;}
.ws39{word-spacing:4.356977pt;}
.wsc2{word-spacing:4.495155pt;}
.ws25{word-spacing:4.516379pt;}
.ws24{word-spacing:4.569513pt;}
.ws72{word-spacing:4.622646pt;}
.wsbd{word-spacing:4.686438pt;}
.ws4c{word-spacing:4.782048pt;}
.ws80{word-spacing:4.835182pt;}
.wsa{word-spacing:4.872362pt;}
.ws9c{word-spacing:4.973363pt;}
.ws2a{word-spacing:5.100851pt;}
.ws86{word-spacing:5.260253pt;}
.ws36{word-spacing:5.313387pt;}
.ws3a{word-spacing:5.419654pt;}
.ws3b{word-spacing:5.472788pt;}
.ws40{word-spacing:5.525922pt;}
.ws79{word-spacing:5.685324pt;}
.ws4f{word-spacing:5.738458pt;}
.ws66{word-spacing:5.791591pt;}
.ws3d{word-spacing:5.950993pt;}
.ws52{word-spacing:6.057261pt;}
.wsb6{word-spacing:6.312346pt;}
.ws3c{word-spacing:6.376064pt;}
.ws26{word-spacing:6.429198pt;}
.ws10{word-spacing:6.482124pt;}
.ws87{word-spacing:6.641733pt;}
.ws5b{word-spacing:6.748001pt;}
.ws89{word-spacing:7.226206pt;}
.ws33{word-spacing:7.279340pt;}
.wse5{word-spacing:7.651328pt;}
.wsb5{word-spacing:7.938253pt;}
.ws91{word-spacing:8.464282pt;}
.ws8{word-spacing:8.740496pt;}
.ws83{word-spacing:9.776631pt;}
.wse4{word-spacing:10.042368pt;}
.wsf0{word-spacing:10.281472pt;}
.ws9{word-spacing:10.525789pt;}
.wsbe{word-spacing:12.433408pt;}
.wsd3{word-spacing:13.102899pt;}
.ws5{word-spacing:13.761632pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
._1b{margin-left:-21.949747pt;}
._16{margin-left:-20.669074pt;}
._1e{margin-left:-18.894510pt;}
._19{margin-left:-6.902243pt;}
._12{margin-left:-5.674701pt;}
._5{margin-left:-4.718299pt;}
._8{margin-left:-3.490906pt;}
._9{margin-left:-2.438848pt;}
._0{margin-left:-1.338970pt;}
._15{width:2.922363pt;}
._1a{width:6.663220pt;}
._1{width:11.530016pt;}
._6{width:12.768154pt;}
._1d{width:13.949431pt;}
._7{width:14.872256pt;}
._b{width:16.524633pt;}
._e{width:18.171782pt;}
._a{width:19.415245pt;}
._f{width:20.823166pt;}
._2{width:22.502128pt;}
._13{width:23.432035pt;}
._11{width:24.824139pt;}
._1c{width:25.844583pt;}
._14{width:26.816673pt;}
._18{width:27.735878pt;}
._1f{width:28.661643pt;}
._3{width:29.648896pt;}
._17{width:31.720918pt;}
._10{width:34.111950pt;}
._21{width:38.139881pt;}
._4{width:48.378986pt;}
._c{width:858.356810pt;}
._20{width:2258.881078pt;}
._d{width:2280.134412pt;}
.fs3{font-size:35.359960pt;}
.fs2{font-size:36.555334pt;}
.fs0{font-size:37.193600pt;}
.fs1{font-size:40.029579pt;}
.fs4{font-size:41.862621pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:120.948480pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:3.805560pt;}
.y19{bottom:7.075016pt;}
.y18{bottom:10.869741pt;}
.y1b{bottom:14.337350pt;}
.y49{bottom:28.346667pt;}
.y48{bottom:92.108000pt;}
.y16{bottom:93.018667pt;}
.ye1{bottom:102.881333pt;}
.y117{bottom:103.518667pt;}
.y7e{bottom:104.316000pt;}
.y97{bottom:105.909333pt;}
.y47{bottom:108.844000pt;}
.y15{bottom:108.920000pt;}
.ye0{bottom:118.224000pt;}
.y116{bottom:118.861333pt;}
.y7d{bottom:121.053333pt;}
.y8c{bottom:122.646667pt;}
.y14{bottom:124.820000pt;}
.y46{bottom:125.581333pt;}
.ydf{bottom:133.565333pt;}
.y115{bottom:134.202667pt;}
.y7c{bottom:137.789333pt;}
.y8b{bottom:139.384000pt;}
.y13{bottom:140.720000pt;}
.y45{bottom:142.318667pt;}
.yde{bottom:148.908000pt;}
.y114{bottom:149.545333pt;}
.y7b{bottom:154.526667pt;}
.y8a{bottom:156.121333pt;}
.y12{bottom:156.621333pt;}
.y44{bottom:159.056000pt;}
.ydd{bottom:164.250667pt;}
.y113{bottom:164.888000pt;}
.y7a{bottom:171.264000pt;}
.y11{bottom:172.521333pt;}
.y89{bottom:172.858667pt;}
.y43{bottom:175.793333pt;}
.ydc{bottom:179.593333pt;}
.y112{bottom:180.230667pt;}
.y79{bottom:188.001333pt;}
.y10{bottom:188.421333pt;}
.y88{bottom:189.596000pt;}
.yab{bottom:189.994667pt;}
.y42{bottom:192.530667pt;}
.ydb{bottom:194.936000pt;}
.y111{bottom:195.573333pt;}
.yf{bottom:204.322667pt;}
.y78{bottom:204.738667pt;}
.y87{bottom:206.333333pt;}
.yaa{bottom:206.732000pt;}
.y41{bottom:209.268000pt;}
.yda{bottom:210.278667pt;}
.y110{bottom:210.916000pt;}
.y86{bottom:223.070667pt;}
.ya9{bottom:223.469333pt;}
.y77{bottom:225.461333pt;}
.yd9{bottom:225.621333pt;}
.y40{bottom:226.005333pt;}
.y10f{bottom:226.258667pt;}
.y85{bottom:239.808000pt;}
.ya8{bottom:240.206667pt;}
.yd8{bottom:240.964000pt;}
.y10e{bottom:241.601333pt;}
.y3f{bottom:242.742667pt;}
.y76{bottom:243.394667pt;}
.ya6{bottom:243.793333pt;}
.yd7{bottom:256.306667pt;}
.y84{bottom:256.545333pt;}
.ya7{bottom:256.944000pt;}
.y3e{bottom:259.480000pt;}
.ye{bottom:266.570667pt;}
.yd6{bottom:271.648000pt;}
.y10d{bottom:272.285333pt;}
.y75{bottom:273.282667pt;}
.ya5{bottom:273.681333pt;}
.y3d{bottom:276.217333pt;}
.yd{bottom:282.470667pt;}
.yd5{bottom:286.990667pt;}
.y10c{bottom:287.628000pt;}
.y74{bottom:290.020000pt;}
.ya4{bottom:290.417333pt;}
.y3c{bottom:292.954667pt;}
.yc{bottom:298.370667pt;}
.yd4{bottom:302.333333pt;}
.y10b{bottom:302.970667pt;}
.y73{bottom:306.757333pt;}
.ya3{bottom:307.154667pt;}
.y3b{bottom:309.692000pt;}
.yb{bottom:314.272000pt;}
.yd3{bottom:317.676000pt;}
.y10a{bottom:318.313333pt;}
.y72{bottom:323.494667pt;}
.ya2{bottom:323.892000pt;}
.y3a{bottom:326.429333pt;}
.yd2{bottom:333.018667pt;}
.y109{bottom:333.656000pt;}
.ya{bottom:339.470667pt;}
.y71{bottom:340.232000pt;}
.ya1{bottom:340.629333pt;}
.y39{bottom:343.166667pt;}
.yd1{bottom:348.361333pt;}
.y108{bottom:348.998667pt;}
.y9{bottom:355.370667pt;}
.y70{bottom:356.968000pt;}
.ya0{bottom:357.366667pt;}
.y38{bottom:359.904000pt;}
.yd0{bottom:363.704000pt;}
.y107{bottom:364.341333pt;}
.y6f{bottom:373.705333pt;}
.y9f{bottom:374.104000pt;}
.y37{bottom:376.641333pt;}
.ycf{bottom:379.046667pt;}
.y8{bottom:379.241333pt;}
.y106{bottom:379.684000pt;}
.y6e{bottom:390.442667pt;}
.y9e{bottom:390.841333pt;}
.y36{bottom:393.378667pt;}
.yce{bottom:394.389333pt;}
.y105{bottom:395.025333pt;}
.y7{bottom:395.141333pt;}
.y6d{bottom:407.180000pt;}
.y9d{bottom:407.578667pt;}
.ycd{bottom:409.730667pt;}
.y35{bottom:410.116000pt;}
.y104{bottom:410.368000pt;}
.y6{bottom:411.042667pt;}
.y6c{bottom:423.917333pt;}
.y9c{bottom:424.316000pt;}
.ycc{bottom:425.073333pt;}
.y103{bottom:425.710667pt;}
.y34{bottom:426.853333pt;}
.y5{bottom:426.942667pt;}
.ycb{bottom:440.416000pt;}
.y6b{bottom:440.654667pt;}
.y9b{bottom:441.053333pt;}
.y4{bottom:442.842667pt;}
.y33{bottom:443.590667pt;}
.yca{bottom:455.758667pt;}
.y102{bottom:456.396000pt;}
.y6a{bottom:457.392000pt;}
.y9a{bottom:457.790667pt;}
.y3{bottom:458.744000pt;}
.y32{bottom:464.312000pt;}
.yc9{bottom:471.101333pt;}
.y101{bottom:471.738667pt;}
.y69{bottom:474.129333pt;}
.y99{bottom:474.528000pt;}
.y2{bottom:474.644000pt;}
.y96{bottom:478.114667pt;}
.yc8{bottom:486.444000pt;}
.y100{bottom:487.081333pt;}
.y1{bottom:490.544000pt;}
.y68{bottom:490.866667pt;}
.y98{bottom:491.265333pt;}
.yc7{bottom:501.786667pt;}
.yff{bottom:502.424000pt;}
.y67{bottom:507.604000pt;}
.y95{bottom:508.002667pt;}
.yc6{bottom:517.129333pt;}
.yfe{bottom:517.766667pt;}
.y66{bottom:524.341333pt;}
.y94{bottom:524.740000pt;}
.y31{bottom:531.113333pt;}
.yc5{bottom:532.470667pt;}
.yfd{bottom:533.108000pt;}
.y65{bottom:541.078667pt;}
.y93{bottom:541.477333pt;}
.yc4{bottom:547.813333pt;}
.yfc{bottom:548.450667pt;}
.y64{bottom:557.816000pt;}
.y92{bottom:558.214667pt;}
.yc3{bottom:563.156000pt;}
.yfb{bottom:563.793333pt;}
.y30{bottom:564.348000pt;}
.y63{bottom:574.553333pt;}
.y91{bottom:574.952000pt;}
.yc2{bottom:578.498667pt;}
.yfa{bottom:579.136000pt;}
.y2f{bottom:581.642667pt;}
.y62{bottom:591.290667pt;}
.y90{bottom:591.689333pt;}
.yc1{bottom:593.841333pt;}
.yf9{bottom:594.478667pt;}
.y2e{bottom:598.938667pt;}
.y61{bottom:608.028000pt;}
.y8f{bottom:608.426667pt;}
.yc0{bottom:609.184000pt;}
.yf8{bottom:609.821333pt;}
.y2d{bottom:616.233333pt;}
.ybf{bottom:624.526667pt;}
.y83{bottom:624.765333pt;}
.y8e{bottom:625.164000pt;}
.y60{bottom:628.750667pt;}
.y2c{bottom:633.529333pt;}
.ybe{bottom:639.869333pt;}
.yf7{bottom:640.506667pt;}
.y82{bottom:641.502667pt;}
.y8d{bottom:641.901333pt;}
.y2b{bottom:650.824000pt;}
.ybd{bottom:655.212000pt;}
.yf6{bottom:655.848000pt;}
.y81{bottom:658.240000pt;}
.y5f{bottom:658.638667pt;}
.y2a{bottom:668.118667pt;}
.ybc{bottom:670.553333pt;}
.yf5{bottom:671.190667pt;}
.y80{bottom:674.977333pt;}
.y5e{bottom:675.376000pt;}
.y29{bottom:685.414667pt;}
.ybb{bottom:685.896000pt;}
.yf4{bottom:686.533333pt;}
.y5d{bottom:692.113333pt;}
.y7f{bottom:695.700000pt;}
.yba{bottom:701.238667pt;}
.yf3{bottom:701.876000pt;}
.y28{bottom:702.709333pt;}
.y5c{bottom:708.850667pt;}
.y11a{bottom:713.166667pt;}
.yf2{bottom:717.218667pt;}
.y27{bottom:720.004000pt;}
.yb9{bottom:720.566667pt;}
.y5b{bottom:725.588000pt;}
.y119{bottom:728.509333pt;}
.yf1{bottom:732.561333pt;}
.y26{bottom:737.300000pt;}
.y5a{bottom:742.324000pt;}
.y118{bottom:743.852000pt;}
.yf0{bottom:747.904000pt;}
.yb8{bottom:750.454667pt;}
.y25{bottom:754.594667pt;}
.y59{bottom:759.061333pt;}
.yef{bottom:763.246667pt;}
.y24{bottom:771.890667pt;}
.yb7{bottom:774.045333pt;}
.y58{bottom:775.798667pt;}
.yee{bottom:778.589333pt;}
.y23{bottom:789.185333pt;}
.yb6{bottom:789.668000pt;}
.y57{bottom:792.536000pt;}
.yed{bottom:793.930667pt;}
.y56{bottom:809.273333pt;}
.yb5{bottom:813.258667pt;}
.y22{bottom:820.254667pt;}
.yec{bottom:824.616000pt;}
.y55{bottom:826.010667pt;}
.y21{bottom:834.600000pt;}
.yb4{bottom:836.850667pt;}
.yeb{bottom:839.958667pt;}
.y54{bottom:842.748000pt;}
.y20{bottom:848.946667pt;}
.yea{bottom:855.301333pt;}
.y53{bottom:859.485333pt;}
.yb3{bottom:860.442667pt;}
.ye9{bottom:870.644000pt;}
.yb2{bottom:876.064000pt;}
.y52{bottom:876.222667pt;}
.ye8{bottom:885.986667pt;}
.y1f{bottom:889.288000pt;}
.y51{bottom:892.960000pt;}
.yb1{bottom:899.654667pt;}
.ye7{bottom:901.329333pt;}
.y50{bottom:909.697333pt;}
.yb0{bottom:915.276000pt;}
.ye6{bottom:916.670667pt;}
.y1e{bottom:921.965333pt;}
.y4f{bottom:926.434667pt;}
.yaf{bottom:930.898667pt;}
.ye5{bottom:932.013333pt;}
.y4e{bottom:943.172000pt;}
.yae{bottom:946.520000pt;}
.y1d{bottom:947.070667pt;}
.ye4{bottom:947.356000pt;}
.y4d{bottom:959.909333pt;}
.yad{bottom:962.141333pt;}
.ye3{bottom:962.698667pt;}
.y1c{bottom:972.177333pt;}
.y4c{bottom:976.646667pt;}
.yac{bottom:977.762667pt;}
.ye2{bottom:978.041333pt;}
.y4b{bottom:993.384000pt;}
.y17{bottom:1010.832000pt;}
.y4a{bottom:1046.810667pt;}
.h5{height:26.246730pt;}
.h4{height:28.741238pt;}
.h2{height:32.284045pt;}
.ha{height:36.896250pt;}
.hc{height:38.256384pt;}
.h7{height:38.947124pt;}
.h9{height:39.531597pt;}
.hb{height:41.508454pt;}
.he{height:43.612570pt;}
.h3{height:45.233304pt;}
.hd{height:46.120196pt;}
.h8{height:68.861952pt;}
.h6{height:79.946609pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:251.923925pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:25.236320pt;}
.x2{left:28.870570pt;}
.x3{left:38.475895pt;}
.x5{left:45.606984pt;}
.x1{left:47.621333pt;}
.xb{left:76.309333pt;}
.x7{left:220.912000pt;}
.x6{left:221.858667pt;}
.x8{left:250.105333pt;}
.x9{left:660.514667pt;}
.xa{left:744.754667pt;}
}




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