
    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_291a2b3fb5f144cd52c50296.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_25d8553eb20b7045281cc205.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aed9500d9542060d7a06d462.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;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:ffa;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;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:ffb;src:url('chunks/assets/font_72eda532ac4f8c907c17ea05.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011000;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:ffc;src:url('chunks/assets/font_fbb421b056fb2b2612f5a899.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.040000;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:ffd;src:url('chunks/assets/font_ed2bd47437a782287b749711.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m15{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);}
.m18{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);}
.m9{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);}
.m1a{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);}
.m26{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);}
.m7{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);}
.m20{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);}
.m2{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);}
.m1d{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.ma{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);}
.m22{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);}
.mf{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);}
.m11{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);}
.m21{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);}
.m5{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);}
.m27{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);}
.m25{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);}
.m1f{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);}
.m1e{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);}
.m1c{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);}
.md{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);}
.m13{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.mc{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);}
.mb{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);}
.m17{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);}
.m24{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);}
.m23{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);}
.m10{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);}
.m1b{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);}
.m12{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);}
.m19{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);}
.m6{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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.038000px;}
.v3{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.v2{vertical-align:32.880000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.002669px;}
.ls18{letter-spacing:0.503764px;}
.lsc{letter-spacing:0.642088px;}
.lsd{letter-spacing:0.648088px;}
.ls7{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls6{letter-spacing:11.954850px;}
.ls15{letter-spacing:11.955787px;}
.ls14{letter-spacing:12.524693px;}
.ls12{letter-spacing:12.530693px;}
.ls11{letter-spacing:12.551700px;}
.ls13{letter-spacing:12.557700px;}
.ls5{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.123227px;}
.ls3{letter-spacing:17.633802px;}
.ls9{letter-spacing:22.116972px;}
.lsa{letter-spacing:22.415850px;}
.lsb{letter-spacing:22.475626px;}
.ls4{letter-spacing:25.225303px;}
.ls2{letter-spacing:37.063654px;}
.ls17{letter-spacing:181.362600px;}
.ls16{letter-spacing:413.550600px;}
.ls10{letter-spacing:496.590600px;}
.lsf{letter-spacing:728.778600px;}
.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;}
}
.ws1{word-spacing:-16.529216px;}
.ws38{word-spacing:-14.943900px;}
.ws8e{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws7{word-spacing:-10.460700px;}
.ws59{word-spacing:-2.331248px;}
.ws52{word-spacing:-2.211697px;}
.ws4d{word-spacing:-2.092146px;}
.ws5f{word-spacing:-1.972595px;}
.ws3{word-spacing:-1.908367px;}
.ws2d{word-spacing:-1.673717px;}
.ws68{word-spacing:-1.494390px;}
.ws2{word-spacing:-1.322630px;}
.ws66{word-spacing:-1.315063px;}
.ws77{word-spacing:-1.195512px;}
.ws90{word-spacing:-0.968371px;}
.ws4a{word-spacing:-0.896634px;}
.ws85{word-spacing:-0.699379px;}
.ws89{word-spacing:-0.537984px;}
.ws78{word-spacing:-0.484186px;}
.ws4c{word-spacing:-0.478205px;}
.ws86{word-spacing:-0.430387px;}
.ws17{word-spacing:-0.322790px;}
.ws49{word-spacing:-0.298878px;}
.ws14{word-spacing:-0.268992px;}
.ws36{word-spacing:-0.239102px;}
.ws79{word-spacing:-0.215194px;}
.ws20{word-spacing:-0.179327px;}
.ws28{word-spacing:-0.119551px;}
.ws63{word-spacing:-0.107597px;}
.ws29{word-spacing:-0.059776px;}
.ws62{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.ws91{word-spacing:-0.006998px;}
.ws74{word-spacing:-0.002140px;}
.ws73{word-spacing:-0.001577px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.053798px;}
.ws1d{word-spacing:0.059776px;}
.ws13{word-spacing:0.107597px;}
.ws1a{word-spacing:0.119551px;}
.ws8f{word-spacing:0.161395px;}
.ws2a{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.ws8b{word-spacing:0.215194px;}
.ws1c{word-spacing:0.239102px;}
.ws15{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws3f{word-spacing:0.298878px;}
.ws18{word-spacing:0.322790px;}
.ws4e{word-spacing:0.358654px;}
.ws44{word-spacing:0.418429px;}
.ws41{word-spacing:0.478205px;}
.ws4f{word-spacing:0.597756px;}
.ws54{word-spacing:0.657532px;}
.ws55{word-spacing:0.717307px;}
.ws22{word-spacing:0.836858px;}
.ws8a{word-spacing:0.860774px;}
.ws5b{word-spacing:0.896634px;}
.ws83{word-spacing:0.956410px;}
.ws3a{word-spacing:1.016185px;}
.ws43{word-spacing:1.075961px;}
.ws6a{word-spacing:1.183565px;}
.ws3b{word-spacing:1.195512px;}
.ws64{word-spacing:1.315063px;}
.ws23{word-spacing:1.374839px;}
.ws5c{word-spacing:1.434614px;}
.ws69{word-spacing:1.452557px;}
.ws26{word-spacing:1.494390px;}
.ws60{word-spacing:1.554166px;}
.ws42{word-spacing:1.613941px;}
.ws93{word-spacing:1.936742px;}
.ws9{word-spacing:2.008454px;}
.ws76{word-spacing:2.092146px;}
.ws5e{word-spacing:2.151936px;}
.ws25{word-spacing:2.331248px;}
.ws82{word-spacing:2.391024px;}
.ws5d{word-spacing:2.474726px;}
.ws81{word-spacing:2.510575px;}
.ws53{word-spacing:2.570351px;}
.ws9e{word-spacing:2.582323px;}
.ws1e{word-spacing:2.689902px;}
.wsa4{word-spacing:2.743718px;}
.ws27{word-spacing:2.749678px;}
.ws5a{word-spacing:2.809453px;}
.ws3e{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws4b{word-spacing:2.929004px;}
.ws97{word-spacing:3.012710px;}
.ws2b{word-spacing:3.048556px;}
.ws48{word-spacing:3.108331px;}
.ws88{word-spacing:3.224822px;}
.ws92{word-spacing:3.226013px;}
.ws9f{word-spacing:3.227088px;}
.ws72{word-spacing:3.227904px;}
.wsa7{word-spacing:3.229622px;}
.ws37{word-spacing:3.347434px;}
.ws21{word-spacing:3.466985px;}
.ws9b{word-spacing:3.496896px;}
.ws19{word-spacing:3.586536px;}
.ws95{word-spacing:3.604493px;}
.ws45{word-spacing:3.825638px;}
.ws47{word-spacing:3.945190px;}
.ws39{word-spacing:4.483170px;}
.wsa3{word-spacing:4.572864px;}
.wsa1{word-spacing:4.626662px;}
.ws65{word-spacing:4.901599px;}
.ws1f{word-spacing:5.021150px;}
.ws84{word-spacing:5.080926px;}
.ws61{word-spacing:5.140702px;}
.ws98{word-spacing:5.702630px;}
.ws1b{word-spacing:5.738458px;}
.ws46{word-spacing:5.858009px;}
.ws2c{word-spacing:5.917784px;}
.ws50{word-spacing:5.977560px;}
.ws10{word-spacing:6.067206px;}
.ws11{word-spacing:6.150892px;}
.ws67{word-spacing:6.754643px;}
.ws51{word-spacing:6.874194px;}
.ws24{word-spacing:6.933970px;}
.ws75{word-spacing:7.113296px;}
.ws2f{word-spacing:7.173072px;}
.ws33{word-spacing:7.232848px;}
.ws34{word-spacing:7.471950px;}
.ws87{word-spacing:7.477978px;}
.ws3d{word-spacing:8.129482px;}
.ws2e{word-spacing:8.189257px;}
.wse{word-spacing:8.661460px;}
.ws3c{word-spacing:9.026116px;}
.ws35{word-spacing:9.444545px;}
.ws5{word-spacing:10.418857px;}
.ws30{word-spacing:11.907329px;}
.wsa0{word-spacing:13.288205px;}
.ws94{word-spacing:13.385654px;}
.wsa6{word-spacing:13.389542px;}
.ws96{word-spacing:13.390906px;}
.ws9d{word-spacing:13.395370px;}
.ws8d{word-spacing:13.395802px;}
.wsa5{word-spacing:13.449600px;}
.ws8c{word-spacing:13.610995px;}
.ws6{word-spacing:15.481836px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.ws9c{word-spacing:16.892698px;}
.wsd{word-spacing:17.699504px;}
.wsa2{word-spacing:18.022464px;}
.ws99{word-spacing:19.098432px;}
.ws9a{word-spacing:20.766182px;}
.wsf{word-spacing:27.448877px;}
.ws40{word-spacing:39.989876px;}
.ws7e{word-spacing:242.709792px;}
.ws7d{word-spacing:246.289075px;}
.ws7f{word-spacing:291.672000px;}
.ws7b{word-spacing:300.087475px;}
.ws58{word-spacing:305.628710px;}
.ws6e{word-spacing:330.807600px;}
.ws57{word-spacing:332.527910px;}
.ws7c{word-spacing:335.917210px;}
.ws6f{word-spacing:363.892378px;}
.ws80{word-spacing:376.266010px;}
.ws7a{word-spacing:394.234675px;}
.ws6c{word-spacing:417.690778px;}
.ws71{word-spacing:453.520512px;}
.ws70{word-spacing:493.869312px;}
.ws6b{word-spacing:511.837978px;}
.ws56{word-spacing:563.273971px;}
.ws6d{word-spacing:604.552138px;}
._14{margin-left:-7.464383px;}
._8{margin-left:-6.240614px;}
._7{margin-left:-4.303854px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._f{width:4.303843px;}
._1f{width:11.962687px;}
._3{width:12.971268px;}
._5{width:14.215636px;}
._16{width:15.429672px;}
._9{width:16.838899px;}
._b{width:18.709763px;}
._e{width:19.793291px;}
._d{width:21.280114px;}
._10{width:23.432035px;}
._11{width:25.225303px;}
._c{width:27.340151px;}
._3e{width:28.775135px;}
._17{width:30.134470px;}
._6{width:32.637384px;}
._20{width:33.832990px;}
._3f{width:35.031200px;}
._a{width:36.470683px;}
._2e{width:39.459474px;}
._15{width:41.567994px;}
._3c{width:73.466285px;}
._3b{width:154.562803px;}
._18{width:192.428842px;}
._37{width:219.336077px;}
._38{width:240.263654px;}
._3d{width:243.599155px;}
._3a{width:249.816845px;}
._35{width:270.742339px;}
._31{width:273.134477px;}
._39{width:288.090432px;}
._30{width:306.489485px;}
._2f{width:312.030720px;}
._33{width:314.989632px;}
._21{width:329.515200px;}
._27{width:341.488303px;}
._22{width:347.968051px;}
._32{width:349.366810px;}
._36{width:351.602402px;}
._2d{width:361.202458px;}
._26{width:368.995786px;}
._34{width:377.557171px;}
._29{width:379.459786px;}
._2b{width:387.671270px;}
._23{width:428.827046px;}
._24{width:445.203053px;}
._2c{width:466.970112px;}
._2a{width:489.942029px;}
._28{width:570.693427px;}
._1e{width:610.020058px;}
._1c{width:636.919258px;}
._1a{width:663.818458px;}
._25{width:692.761997px;}
._1d{width:699.271603px;}
._12{width:704.907850px;}
._1b{width:739.620403px;}
._19{width:766.519603px;}
._13{width:2270.516102px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.842800px;}
.fsa{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:43.600200px;}
.fse{font-size:45.429600px;}
.fs9{font-size:47.236800px;}
.fsc{font-size:47.820600px;}
.fs10{font-size:49.829400px;}
.fs5{font-size:52.197584px;}
.fsd{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.425340px;}
.y23{bottom:5.788613px;}
.y28{bottom:14.151273px;}
.y22{bottom:22.317924px;}
.y68{bottom:31.890000px;}
.y21{bottom:38.654567px;}
.yf3{bottom:88.993500px;}
.y109{bottom:89.895000px;}
.y4{bottom:97.125005px;}
.y136{bottom:101.844000px;}
.y3e{bottom:102.823500px;}
.y9f{bottom:105.273000px;}
.y169{bottom:106.251000px;}
.yf2{bottom:107.823000px;}
.y108{bottom:108.724500px;}
.y67{bottom:111.043500px;}
.y135{bottom:120.322500px;}
.y3d{bottom:120.711000px;}
.y168{bottom:123.511500px;}
.y9e{bottom:124.102500px;}
.yf1{bottom:126.652500px;}
.y106{bottom:127.554000px;}
.y66{bottom:129.873000px;}
.y107{bottom:132.978000px;}
.y134{bottom:136.761000px;}
.y3c{bottom:138.600000px;}
.y1f{bottom:139.264499px;}
.y167{bottom:140.772000px;}
.y9d{bottom:142.932000px;}
.yf0{bottom:145.482000px;}
.y105{bottom:148.206000px;}
.y65{bottom:148.702500px;}
.y133{bottom:153.199500px;}
.y3b{bottom:156.487500px;}
.y166{bottom:158.032500px;}
.y9b{bottom:161.761500px;}
.y104{bottom:167.035500px;}
.y9c{bottom:167.185500px;}
.y64{bottom:167.532000px;}
.y132{bottom:169.638000px;}
.y3a{bottom:174.375000px;}
.yef{bottom:177.151500px;}
.y165{bottom:179.775000px;}
.y9a{bottom:182.413500px;}
.y103{bottom:185.865000px;}
.y131{bottom:186.076500px;}
.y63{bottom:186.361500px;}
.y39{bottom:192.264000px;}
.yee{bottom:196.384500px;}
.y16{bottom:196.933500px;}
.yd0{bottom:198.571500px;}
.y99{bottom:201.243000px;}
.y130{bottom:202.515000px;}
.y102{bottom:204.694500px;}
.y62{bottom:205.191000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y38{bottom:210.151500px;}
.y164{bottom:213.399000px;}
.ycf{bottom:217.401000px;}
.y12f{bottom:218.953500px;}
.y98{bottom:220.072500px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y101{bottom:223.524000px;}
.y61{bottom:224.020500px;}
.y37{bottom:228.039000px;}
.y162{bottom:230.659500px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y12e{bottom:235.390500px;}
.y163{bottom:235.542000px;}
.yce{bottom:236.230500px;}
.y97{bottom:238.902000px;}
.y100{bottom:242.353500px;}
.y60{bottom:242.850000px;}
.y161{bottom:247.920000px;}
.y160{bottom:252.802500px;}
.ycd{bottom:255.060000px;}
.y96{bottom:257.731500px;}
.y12d{bottom:259.330500px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.yff{bottom:261.183000px;}
.y5f{bottom:261.679500px;}
.y15f{bottom:268.551000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.ycc{bottom:273.889500px;}
.y12c{bottom:275.769000px;}
.y95{bottom:276.561000px;}
.yfe{bottom:280.012500px;}
.y5e{bottom:280.509000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y15e{bottom:285.810000px;}
.y15d{bottom:290.692500px;}
.ycb{bottom:292.719000px;}
.y94{bottom:295.390500px;}
.y5d{bottom:299.337000px;}
.y12b{bottom:299.410500px;}
.y15c{bottom:306.441000px;}
.y36{bottom:307.299000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.yca{bottom:311.548500px;}
.yfd{bottom:313.578000px;}
.y5c{bottom:318.166500px;}
.y93{bottom:318.703500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y15b{bottom:323.701500px;}
.y35{bottom:325.186500px;}
.yc9{bottom:330.378000px;}
.y12a{bottom:331.029000px;}
.yfc{bottom:332.811000px;}
.y5b{bottom:336.996000px;}
.y15a{bottom:340.962000px;}
.y34{bottom:343.074000px;}
.yd{bottom:348.133500px;}
.yc8{bottom:349.207500px;}
.y129{bottom:350.262000px;}
.yfb{bottom:352.044000px;}
.y92{bottom:352.327500px;}
.y5a{bottom:355.825500px;}
.y159{bottom:358.221000px;}
.y33{bottom:360.963000px;}
.y158{bottom:363.103500px;}
.yc7{bottom:368.035500px;}
.y91{bottom:371.157000px;}
.y59{bottom:374.655000px;}
.y157{bottom:378.852000px;}
.yc{bottom:386.785499px;}
.y128{bottom:387.366000px;}
.y90{bottom:389.986500px;}
.yc6{bottom:391.348500px;}
.y58{bottom:393.484500px;}
.y156{bottom:396.112500px;}
.y18f{bottom:396.982500px;}
.y32{bottom:399.024000px;}
.y155{bottom:400.993500px;}
.y127{bottom:406.195500px;}
.yb{bottom:408.044999px;}
.y8f{bottom:408.814500px;}
.y57{bottom:412.314000px;}
.y18e{bottom:414.243000px;}
.y31{bottom:416.913000px;}
.y154{bottom:422.140500px;}
.yc5{bottom:424.972500px;}
.y126{bottom:425.025000px;}
.y8e{bottom:427.644000px;}
.y56{bottom:431.143500px;}
.y18d{bottom:431.503500px;}
.y30{bottom:434.800500px;}
.yc3{bottom:443.802000px;}
.y125{bottom:443.854500px;}
.y8d{bottom:446.473500px;}
.y18c{bottom:448.764000px;}
.yc4{bottom:449.227500px;}
.y55{bottom:449.973000px;}
.y153{bottom:455.764500px;}
.y124{bottom:462.684000px;}
.yc2{bottom:464.454000px;}
.y8c{bottom:465.303000px;}
.y18b{bottom:466.024500px;}
.y54{bottom:468.802500px;}
.y2f{bottom:470.622000px;}
.yed{bottom:480.844500px;}
.y123{bottom:481.513500px;}
.y152{bottom:482.304000px;}
.yc1{bottom:483.283500px;}
.y8b{bottom:484.132500px;}
.y53{bottom:487.632000px;}
.yec{bottom:499.674000px;}
.y151{bottom:499.878000px;}
.y122{bottom:500.343000px;}
.y18a{bottom:500.544000px;}
.yc0{bottom:502.113000px;}
.y8a{bottom:502.962000px;}
.y2e{bottom:506.442000px;}
.y52{bottom:506.461500px;}
.y189{bottom:517.804500px;}
.yeb{bottom:518.503500px;}
.y121{bottom:519.172500px;}
.ya{bottom:520.864502px;}
.ybf{bottom:520.942500px;}
.y89{bottom:521.791500px;}
.y2d{bottom:524.329500px;}
.y51{bottom:525.291000px;}
.y150{bottom:526.419000px;}
.y188{bottom:535.065000px;}
.yea{bottom:537.333000px;}
.y9{bottom:538.864499px;}
.ybe{bottom:539.772000px;}
.y88{bottom:540.621000px;}
.y2c{bottom:542.218500px;}
.y50{bottom:544.120500px;}
.y187{bottom:552.325500px;}
.y14f{bottom:552.960000px;}
.y120{bottom:554.751000px;}
.ye9{bottom:556.162500px;}
.y8{bottom:556.864499px;}
.ybd{bottom:558.601500px;}
.y87{bottom:559.450500px;}
.y2b{bottom:560.106000px;}
.y4f{bottom:562.950000px;}
.y186{bottom:569.586000px;}
.y11f{bottom:573.229500px;}
.ye8{bottom:574.992000px;}
.ybc{bottom:577.431000px;}
.y2a{bottom:577.993500px;}
.y86{bottom:578.280000px;}
.y14e{bottom:579.499500px;}
.y4e{bottom:581.779500px;}
.y185{bottom:586.846500px;}
.y11e{bottom:589.668000px;}
.ye7{bottom:593.821500px;}
.ybb{bottom:596.260500px;}
.y85{bottom:597.109500px;}
.y27{bottom:600.365964px;}
.y4d{bottom:600.609000px;}
.y184{bottom:604.107000px;}
.y14d{bottom:606.040500px;}
.y11d{bottom:606.106500px;}
.ye6{bottom:612.651000px;}
.yba{bottom:615.090000px;}
.y84{bottom:615.939000px;}
.y4c{bottom:619.438500px;}
.y183{bottom:621.366000px;}
.y11c{bottom:623.065500px;}
.y14c{bottom:623.614500px;}
.ye5{bottom:631.480500px;}
.yb9{bottom:633.919500px;}
.y83{bottom:634.768500px;}
.y4b{bottom:638.268000px;}
.y182{bottom:638.626500px;}
.y11b{bottom:640.023000px;}
.y14b{bottom:641.188500px;}
.y7{bottom:645.510000px;}
.yb8{bottom:652.749000px;}
.y82{bottom:653.598000px;}
.yfa{bottom:653.674500px;}
.y181{bottom:655.887000px;}
.y4a{bottom:661.581000px;}
.y11a{bottom:663.963000px;}
.y6{bottom:666.771000px;}
.yb7{bottom:671.578500px;}
.y81{bottom:672.427500px;}
.yf9{bottom:672.504000px;}
.y180{bottom:673.147500px;}
.ye4{bottom:675.046500px;}
.y14a{bottom:676.695000px;}
.y119{bottom:680.401500px;}
.yb6{bottom:690.408000px;}
.y80{bottom:691.257000px;}
.yf8{bottom:691.333500px;}
.y149{bottom:695.524500px;}
.y118{bottom:696.840000px;}
.ye3{bottom:698.985000px;}
.y17f{bottom:707.668500px;}
.yb5{bottom:709.237500px;}
.y7f{bottom:710.086500px;}
.yf7{bottom:710.163000px;}
.y117{bottom:713.278500px;}
.y148{bottom:714.354000px;}
.ye2{bottom:722.925000px;}
.y17e{bottom:724.929000px;}
.y5{bottom:726.298500px;}
.yb4{bottom:728.067000px;}
.y7e{bottom:728.916000px;}
.yf6{bottom:728.992500px;}
.y116{bottom:729.717000px;}
.y147{bottom:733.183500px;}
.y49{bottom:735.924000px;}
.y17d{bottom:742.189500px;}
.y115{bottom:746.154000px;}
.ye1{bottom:746.865000px;}
.yb3{bottom:746.896500px;}
.y7d{bottom:747.745500px;}
.y146{bottom:752.013000px;}
.y3{bottom:752.599495px;}
.y17c{bottom:759.450000px;}
.yf5{bottom:762.558000px;}
.y114{bottom:762.592500px;}
.yb2{bottom:765.726000px;}
.y7c{bottom:766.575000px;}
.ye0{bottom:770.803500px;}
.y145{bottom:770.842500px;}
.y48{bottom:773.313000px;}
.y17b{bottom:776.709000px;}
.y113{bottom:779.031000px;}
.yf4{bottom:781.791000px;}
.yb1{bottom:784.555500px;}
.y7b{bottom:785.404500px;}
.y144{bottom:789.672000px;}
.y47{bottom:792.771000px;}
.y17a{bottom:793.969500px;}
.ydf{bottom:794.743500px;}
.y112{bottom:802.971000px;}
.yb0{bottom:803.385000px;}
.y7a{bottom:804.234000px;}
.y143{bottom:808.501500px;}
.y179{bottom:811.230000px;}
.yde{bottom:818.683500px;}
.y111{bottom:819.409500px;}
.yaf{bottom:822.214500px;}
.y79{bottom:823.063500px;}
.y142{bottom:827.331000px;}
.y178{bottom:828.490500px;}
.y46{bottom:830.160000px;}
.y10e{bottom:840.256500px;}
.y110{bottom:840.331500px;}
.yae{bottom:841.044000px;}
.y78{bottom:841.893000px;}
.ydd{bottom:842.623500px;}
.y177{bottom:845.751000px;}
.y141{bottom:846.160500px;}
.y45{bottom:849.616500px;}
.y10d{bottom:856.695000px;}
.y10f{bottom:856.770000px;}
.yad{bottom:859.873500px;}
.y77{bottom:860.722500px;}
.y176{bottom:863.011500px;}
.y140{bottom:864.990000px;}
.ydc{bottom:866.562000px;}
.y44{bottom:869.074500px;}
.yac{bottom:878.703000px;}
.y2{bottom:879.369000px;}
.y76{bottom:879.552000px;}
.y175{bottom:880.272000px;}
.y10c{bottom:884.893500px;}
.y13f{bottom:888.303000px;}
.y43{bottom:888.531000px;}
.ydb{bottom:890.502000px;}
.yab{bottom:897.532500px;}
.y75{bottom:898.381500px;}
.y42{bottom:907.989000px;}
.yda{bottom:914.442000px;}
.y174{bottom:914.793000px;}
.yaa{bottom:916.362000px;}
.y10b{bottom:916.512000px;}
.y74{bottom:917.209500px;}
.y13e{bottom:925.227000px;}
.y41{bottom:927.445500px;}
.y173{bottom:932.052000px;}
.ya9{bottom:935.191500px;}
.y10a{bottom:935.745000px;}
.y73{bottom:936.039000px;}
.yd9{bottom:938.380500px;}
.y13d{bottom:943.705500px;}
.y172{bottom:949.312500px;}
.ya8{bottom:954.021000px;}
.y72{bottom:954.868500px;}
.y13c{bottom:960.144000px;}
.yd8{bottom:962.320500px;}
.y40{bottom:966.031500px;}
.y171{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.ya7{bottom:972.849000px;}
.y71{bottom:975.522000px;}
.y13b{bottom:976.582500px;}
.y3f{bottom:982.170000px;}
.y170{bottom:983.833500px;}
.yd7{bottom:986.260500px;}
.ya6{bottom:991.678500px;}
.y13a{bottom:993.540000px;}
.y70{bottom:994.351500px;}
.y16f{bottom:1001.094000px;}
.yd6{bottom:1010.200500px;}
.y139{bottom:1010.499000px;}
.ya5{bottom:1010.508000px;}
.y6f{bottom:1013.181000px;}
.y16e{bottom:1018.354500px;}
.y26{bottom:1026.703500px;}
.ya4{bottom:1029.337500px;}
.y6e{bottom:1032.010500px;}
.yd5{bottom:1034.139000px;}
.y138{bottom:1034.439000px;}
.y16d{bottom:1035.615000px;}
.ya3{bottom:1048.167000px;}
.y6d{bottom:1050.840000px;}
.y137{bottom:1050.876000px;}
.y16c{bottom:1052.875500px;}
.yd3{bottom:1058.079000px;}
.yd2{bottom:1066.297500px;}
.ya2{bottom:1066.996500px;}
.y25{bottom:1069.443000px;}
.y6c{bottom:1069.669500px;}
.y16b{bottom:1070.134500px;}
.yd4{bottom:1074.517500px;}
.ya1{bottom:1085.826000px;}
.y16a{bottom:1087.395000px;}
.y6b{bottom:1088.499000px;}
.y24{bottom:1097.688000px;}
.ya0{bottom:1104.655500px;}
.yd1{bottom:1106.137500px;}
.y6a{bottom:1107.327000px;}
.y20{bottom:1141.174500px;}
.y69{bottom:1173.397500px;}
.hf{height:25.508090px;}
.h12{height:30.461558px;}
.h13{height:30.670772px;}
.h7{height:32.130000px;}
.h1a{height:33.072749px;}
.h11{height:33.112997px;}
.h10{height:34.199443px;}
.h14{height:34.813397px;}
.h18{height:35.052500px;}
.ha{height:36.277321px;}
.h15{height:38.896243px;}
.h16{height:39.165235px;}
.h1f{height:39.434227px;}
.he{height:43.217759px;}
.h17{height:43.516637px;}
.hc{height:43.815515px;}
.hb{height:44.827234px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1d{height:49.985558px;}
.h1e{height:49.991558px;}
.h9{height:50.931027px;}
.h19{height:54.774749px;}
.h2{height:55.080000px;}
.h1c{height:71.770243px;}
.h1b{height:71.776243px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x5{left:54.000000px;}
.x6{left:60.141348px;}
.x31{left:84.403500px;}
.x2e{left:86.314500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x9{left:249.832500px;}
.x8{left:250.897500px;}
.x28{left:259.863000px;}
.xc{left:282.786000px;}
.x1a{left:297.477000px;}
.x2a{left:301.539000px;}
.x21{left:303.177000px;}
.x1f{left:308.110500px;}
.xa{left:309.436500px;}
.x1e{left:310.620000px;}
.xb{left:321.501000px;}
.x2c{left:377.466000px;}
.xd{left:391.647000px;}
.x11{left:407.985000px;}
.x1b{left:409.312500px;}
.x15{left:410.422500px;}
.x2d{left:429.313500px;}
.x23{left:439.090500px;}
.x24{left:442.264500px;}
.x29{left:445.069500px;}
.xf{left:450.949500px;}
.x3{left:454.959000px;}
.x14{left:456.544500px;}
.x27{left:463.561500px;}
.x18{left:469.375500px;}
.x16{left:470.553000px;}
.x17{left:476.979000px;}
.x19{left:479.551500px;}
.x2b{left:540.205500px;}
.x22{left:554.905500px;}
.xe{left:566.013000px;}
.x10{left:580.114500px;}
.x26{left:590.016000px;}
.x1c{left:599.542500px;}
.x1d{left:600.673500px;}
.x25{left:620.371500px;}
.x2f{left:657.541500px;}
.x30{left:675.496500px;}
.x12{left:683.277000px;}
.x20{left:832.488000px;}
.x13{left:837.108000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:0.922667pt;}
.v3{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.v2{vertical-align:29.226667pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.002372pt;}
.ls18{letter-spacing:0.447791pt;}
.lsc{letter-spacing:0.570745pt;}
.lsd{letter-spacing:0.576078pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls6{letter-spacing:10.626533pt;}
.ls15{letter-spacing:10.627366pt;}
.ls14{letter-spacing:11.133060pt;}
.ls12{letter-spacing:11.138393pt;}
.ls11{letter-spacing:11.157067pt;}
.ls13{letter-spacing:11.162400pt;}
.ls5{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.442868pt;}
.ls3{letter-spacing:15.674491pt;}
.ls9{letter-spacing:19.659531pt;}
.lsa{letter-spacing:19.925200pt;}
.lsb{letter-spacing:19.978334pt;}
.ls4{letter-spacing:22.422492pt;}
.ls2{letter-spacing:32.945470pt;}
.ls17{letter-spacing:161.211200pt;}
.ls16{letter-spacing:367.600533pt;}
.ls10{letter-spacing:441.413867pt;}
.lsf{letter-spacing:647.803200pt;}
.ws1{word-spacing:-14.692637pt;}
.ws38{word-spacing:-13.283467pt;}
.ws8e{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws7{word-spacing:-9.298400pt;}
.ws59{word-spacing:-2.072221pt;}
.ws52{word-spacing:-1.965953pt;}
.ws4d{word-spacing:-1.859685pt;}
.ws5f{word-spacing:-1.753418pt;}
.ws3{word-spacing:-1.696326pt;}
.ws2d{word-spacing:-1.487748pt;}
.ws68{word-spacing:-1.328347pt;}
.ws2{word-spacing:-1.175671pt;}
.ws66{word-spacing:-1.168945pt;}
.ws77{word-spacing:-1.062677pt;}
.ws90{word-spacing:-0.860774pt;}
.ws4a{word-spacing:-0.797008pt;}
.ws85{word-spacing:-0.621670pt;}
.ws89{word-spacing:-0.478208pt;}
.ws78{word-spacing:-0.430387pt;}
.ws4c{word-spacing:-0.425071pt;}
.ws86{word-spacing:-0.382566pt;}
.ws17{word-spacing:-0.286925pt;}
.ws49{word-spacing:-0.265669pt;}
.ws14{word-spacing:-0.239104pt;}
.ws36{word-spacing:-0.212535pt;}
.ws79{word-spacing:-0.191283pt;}
.ws20{word-spacing:-0.159402pt;}
.ws28{word-spacing:-0.106268pt;}
.ws63{word-spacing:-0.095642pt;}
.ws29{word-spacing:-0.053134pt;}
.ws62{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.ws91{word-spacing:-0.006221pt;}
.ws74{word-spacing:-0.001902pt;}
.ws73{word-spacing:-0.001402pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.053134pt;}
.ws13{word-spacing:0.095642pt;}
.ws1a{word-spacing:0.106268pt;}
.ws8f{word-spacing:0.143462pt;}
.ws2a{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.ws8b{word-spacing:0.191283pt;}
.ws1c{word-spacing:0.212535pt;}
.ws15{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws3f{word-spacing:0.265669pt;}
.ws18{word-spacing:0.286925pt;}
.ws4e{word-spacing:0.318803pt;}
.ws44{word-spacing:0.371937pt;}
.ws41{word-spacing:0.425071pt;}
.ws4f{word-spacing:0.531339pt;}
.ws54{word-spacing:0.584473pt;}
.ws55{word-spacing:0.637606pt;}
.ws22{word-spacing:0.743874pt;}
.ws8a{word-spacing:0.765133pt;}
.ws5b{word-spacing:0.797008pt;}
.ws83{word-spacing:0.850142pt;}
.ws3a{word-spacing:0.903276pt;}
.ws43{word-spacing:0.956410pt;}
.ws6a{word-spacing:1.052058pt;}
.ws3b{word-spacing:1.062677pt;}
.ws64{word-spacing:1.168945pt;}
.ws23{word-spacing:1.222079pt;}
.ws5c{word-spacing:1.275213pt;}
.ws69{word-spacing:1.291162pt;}
.ws26{word-spacing:1.328347pt;}
.ws60{word-spacing:1.381481pt;}
.ws42{word-spacing:1.434614pt;}
.ws93{word-spacing:1.721549pt;}
.ws9{word-spacing:1.785293pt;}
.ws76{word-spacing:1.859685pt;}
.ws5e{word-spacing:1.912832pt;}
.ws25{word-spacing:2.072221pt;}
.ws82{word-spacing:2.125355pt;}
.ws5d{word-spacing:2.199757pt;}
.ws81{word-spacing:2.231622pt;}
.ws53{word-spacing:2.284756pt;}
.ws9e{word-spacing:2.295398pt;}
.ws1e{word-spacing:2.391024pt;}
.wsa4{word-spacing:2.438861pt;}
.ws27{word-spacing:2.444158pt;}
.ws5a{word-spacing:2.497292pt;}
.ws3e{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws4b{word-spacing:2.603559pt;}
.ws97{word-spacing:2.677965pt;}
.ws2b{word-spacing:2.709827pt;}
.ws48{word-spacing:2.762961pt;}
.ws88{word-spacing:2.866509pt;}
.ws92{word-spacing:2.867567pt;}
.ws9f{word-spacing:2.868523pt;}
.ws72{word-spacing:2.869248pt;}
.wsa7{word-spacing:2.870775pt;}
.ws37{word-spacing:2.975497pt;}
.ws21{word-spacing:3.081764pt;}
.ws9b{word-spacing:3.108352pt;}
.ws19{word-spacing:3.188032pt;}
.ws95{word-spacing:3.203994pt;}
.ws45{word-spacing:3.400567pt;}
.ws47{word-spacing:3.506835pt;}
.ws39{word-spacing:3.985040pt;}
.wsa3{word-spacing:4.064768pt;}
.wsa1{word-spacing:4.112589pt;}
.ws65{word-spacing:4.356977pt;}
.ws1f{word-spacing:4.463245pt;}
.ws84{word-spacing:4.516379pt;}
.ws61{word-spacing:4.569513pt;}
.ws98{word-spacing:5.069005pt;}
.ws1b{word-spacing:5.100851pt;}
.ws46{word-spacing:5.207119pt;}
.ws2c{word-spacing:5.260253pt;}
.ws50{word-spacing:5.313387pt;}
.ws10{word-spacing:5.393072pt;}
.ws11{word-spacing:5.467459pt;}
.ws67{word-spacing:6.004127pt;}
.ws51{word-spacing:6.110395pt;}
.ws24{word-spacing:6.163529pt;}
.ws75{word-spacing:6.322930pt;}
.ws2f{word-spacing:6.376064pt;}
.ws33{word-spacing:6.429198pt;}
.ws34{word-spacing:6.641733pt;}
.ws87{word-spacing:6.647091pt;}
.ws3d{word-spacing:7.226206pt;}
.ws2e{word-spacing:7.279340pt;}
.wse{word-spacing:7.699075pt;}
.ws3c{word-spacing:8.023214pt;}
.ws35{word-spacing:8.395151pt;}
.ws5{word-spacing:9.261206pt;}
.ws30{word-spacing:10.584293pt;}
.wsa0{word-spacing:11.811738pt;}
.ws94{word-spacing:11.898359pt;}
.wsa6{word-spacing:11.901815pt;}
.ws96{word-spacing:11.903027pt;}
.ws9d{word-spacing:11.906995pt;}
.ws8d{word-spacing:11.907379pt;}
.wsa5{word-spacing:11.955200pt;}
.ws8c{word-spacing:12.098662pt;}
.ws6{word-spacing:13.761632pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.ws9c{word-spacing:15.015731pt;}
.wsd{word-spacing:15.732893pt;}
.wsa2{word-spacing:16.019968pt;}
.ws99{word-spacing:16.976384pt;}
.ws9a{word-spacing:18.458829pt;}
.wsf{word-spacing:24.399002pt;}
.ws40{word-spacing:35.546557pt;}
.ws7e{word-spacing:215.742037pt;}
.ws7d{word-spacing:218.923622pt;}
.ws7f{word-spacing:259.264000pt;}
.ws7b{word-spacing:266.744422pt;}
.ws58{word-spacing:271.669965pt;}
.ws6e{word-spacing:294.051200pt;}
.ws57{word-spacing:295.580365pt;}
.ws7c{word-spacing:298.593075pt;}
.ws6f{word-spacing:323.459891pt;}
.ws80{word-spacing:334.458675pt;}
.ws7a{word-spacing:350.430822pt;}
.ws6c{word-spacing:371.280691pt;}
.ws71{word-spacing:403.129344pt;}
.ws70{word-spacing:438.994944pt;}
.ws6b{word-spacing:454.967091pt;}
.ws56{word-spacing:500.687974pt;}
.ws6d{word-spacing:537.379678pt;}
._14{margin-left:-6.635007pt;}
._8{margin-left:-5.547213pt;}
._7{margin-left:-3.825648pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._f{width:3.825638pt;}
._1f{width:10.633500pt;}
._3{width:11.530016pt;}
._5{width:12.636121pt;}
._16{width:13.715264pt;}
._9{width:14.967910pt;}
._b{width:16.630900pt;}
._e{width:17.594036pt;}
._d{width:18.915657pt;}
._10{width:20.828476pt;}
._11{width:22.422492pt;}
._c{width:24.302356pt;}
._3e{width:25.577898pt;}
._17{width:26.786195pt;}
._6{width:29.011008pt;}
._20{width:30.073769pt;}
._3f{width:31.138844pt;}
._a{width:32.418385pt;}
._2e{width:35.075088pt;}
._15{width:36.949328pt;}
._3c{width:65.303364pt;}
._3b{width:137.389158pt;}
._18{width:171.047859pt;}
._37{width:194.965402pt;}
._38{width:213.567693pt;}
._3d{width:216.532582pt;}
._3a{width:222.059418pt;}
._35{width:240.659857pt;}
._31{width:242.786202pt;}
._39{width:256.080384pt;}
._30{width:272.435098pt;}
._2f{width:277.360640pt;}
._33{width:279.990784pt;}
._21{width:292.902400pt;}
._27{width:303.545158pt;}
._22{width:309.304934pt;}
._32{width:310.548275pt;}
._36{width:312.535469pt;}
._2d{width:321.068851pt;}
._26{width:327.996254pt;}
._34{width:335.606374pt;}
._29{width:337.297587pt;}
._2b{width:344.596685pt;}
._23{width:381.179597pt;}
._24{width:395.736047pt;}
._2c{width:415.084544pt;}
._2a{width:435.504026pt;}
._28{width:507.283046pt;}
._1e{width:542.240051pt;}
._1c{width:566.150451pt;}
._1a{width:590.060851pt;}
._25{width:615.788442pt;}
._1d{width:621.574758pt;}
._12{width:626.584755pt;}
._1b{width:657.440358pt;}
._19{width:681.350758pt;}
._13{width:2018.236535pt;}
.fsb{font-size:37.193600pt;}
.fsa{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:38.755733pt;}
.fse{font-size:40.381867pt;}
.fs9{font-size:41.988267pt;}
.fsc{font-size:42.507200pt;}
.fs10{font-size:44.292800pt;}
.fs5{font-size:46.397853pt;}
.fsd{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:3.044747pt;}
.y23{bottom:5.145434pt;}
.y28{bottom:12.578910pt;}
.y22{bottom:19.838154pt;}
.y68{bottom:28.346667pt;}
.y21{bottom:34.359615pt;}
.yf3{bottom:79.105333pt;}
.y109{bottom:79.906667pt;}
.y4{bottom:86.333337pt;}
.y136{bottom:90.528000pt;}
.y3e{bottom:91.398667pt;}
.y9f{bottom:93.576000pt;}
.y169{bottom:94.445333pt;}
.yf2{bottom:95.842667pt;}
.y108{bottom:96.644000pt;}
.y67{bottom:98.705333pt;}
.y135{bottom:106.953333pt;}
.y3d{bottom:107.298667pt;}
.y168{bottom:109.788000pt;}
.y9e{bottom:110.313333pt;}
.yf1{bottom:112.580000pt;}
.y106{bottom:113.381333pt;}
.y66{bottom:115.442667pt;}
.y107{bottom:118.202667pt;}
.y134{bottom:121.565333pt;}
.y3c{bottom:123.200000pt;}
.y1f{bottom:123.790666pt;}
.y167{bottom:125.130667pt;}
.y9d{bottom:127.050667pt;}
.yf0{bottom:129.317333pt;}
.y105{bottom:131.738667pt;}
.y65{bottom:132.180000pt;}
.y133{bottom:136.177333pt;}
.y3b{bottom:139.100000pt;}
.y166{bottom:140.473333pt;}
.y9b{bottom:143.788000pt;}
.y104{bottom:148.476000pt;}
.y9c{bottom:148.609333pt;}
.y64{bottom:148.917333pt;}
.y132{bottom:150.789333pt;}
.y3a{bottom:155.000000pt;}
.yef{bottom:157.468000pt;}
.y165{bottom:159.800000pt;}
.y9a{bottom:162.145333pt;}
.y103{bottom:165.213333pt;}
.y131{bottom:165.401333pt;}
.y63{bottom:165.654667pt;}
.y39{bottom:170.901333pt;}
.yee{bottom:174.564000pt;}
.y16{bottom:175.052000pt;}
.yd0{bottom:176.508000pt;}
.y99{bottom:178.882667pt;}
.y130{bottom:180.013333pt;}
.y102{bottom:181.950667pt;}
.y62{bottom:182.392000pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y38{bottom:186.801333pt;}
.y164{bottom:189.688000pt;}
.ycf{bottom:193.245333pt;}
.y12f{bottom:194.625333pt;}
.y98{bottom:195.620000pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y101{bottom:198.688000pt;}
.y61{bottom:199.129333pt;}
.y37{bottom:202.701333pt;}
.y162{bottom:205.030667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y12e{bottom:209.236000pt;}
.y163{bottom:209.370667pt;}
.yce{bottom:209.982667pt;}
.y97{bottom:212.357333pt;}
.y100{bottom:215.425333pt;}
.y60{bottom:215.866667pt;}
.y161{bottom:220.373333pt;}
.y160{bottom:224.713333pt;}
.ycd{bottom:226.720000pt;}
.y96{bottom:229.094667pt;}
.y12d{bottom:230.516000pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.yff{bottom:232.162667pt;}
.y5f{bottom:232.604000pt;}
.y15f{bottom:238.712000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.ycc{bottom:243.457333pt;}
.y12c{bottom:245.128000pt;}
.y95{bottom:245.832000pt;}
.yfe{bottom:248.900000pt;}
.y5e{bottom:249.341333pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y15e{bottom:254.053333pt;}
.y15d{bottom:258.393333pt;}
.ycb{bottom:260.194667pt;}
.y94{bottom:262.569333pt;}
.y5d{bottom:266.077333pt;}
.y12b{bottom:266.142667pt;}
.y15c{bottom:272.392000pt;}
.y36{bottom:273.154667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.yca{bottom:276.932000pt;}
.yfd{bottom:278.736000pt;}
.y5c{bottom:282.814667pt;}
.y93{bottom:283.292000pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y15b{bottom:287.734667pt;}
.y35{bottom:289.054667pt;}
.yc9{bottom:293.669333pt;}
.y12a{bottom:294.248000pt;}
.yfc{bottom:295.832000pt;}
.y5b{bottom:299.552000pt;}
.y15a{bottom:303.077333pt;}
.y34{bottom:304.954667pt;}
.yd{bottom:309.452000pt;}
.yc8{bottom:310.406667pt;}
.y129{bottom:311.344000pt;}
.yfb{bottom:312.928000pt;}
.y92{bottom:313.180000pt;}
.y5a{bottom:316.289333pt;}
.y159{bottom:318.418667pt;}
.y33{bottom:320.856000pt;}
.y158{bottom:322.758667pt;}
.yc7{bottom:327.142667pt;}
.y91{bottom:329.917333pt;}
.y59{bottom:333.026667pt;}
.y157{bottom:336.757333pt;}
.yc{bottom:343.809333pt;}
.y128{bottom:344.325333pt;}
.y90{bottom:346.654667pt;}
.yc6{bottom:347.865333pt;}
.y58{bottom:349.764000pt;}
.y156{bottom:352.100000pt;}
.y18f{bottom:352.873333pt;}
.y32{bottom:354.688000pt;}
.y155{bottom:356.438667pt;}
.y127{bottom:361.062667pt;}
.yb{bottom:362.706666pt;}
.y8f{bottom:363.390667pt;}
.y57{bottom:366.501333pt;}
.y18e{bottom:368.216000pt;}
.y31{bottom:370.589333pt;}
.y154{bottom:375.236000pt;}
.yc5{bottom:377.753333pt;}
.y126{bottom:377.800000pt;}
.y8e{bottom:380.128000pt;}
.y56{bottom:383.238667pt;}
.y18d{bottom:383.558667pt;}
.y30{bottom:386.489333pt;}
.yc3{bottom:394.490667pt;}
.y125{bottom:394.537333pt;}
.y8d{bottom:396.865333pt;}
.y18c{bottom:398.901333pt;}
.yc4{bottom:399.313333pt;}
.y55{bottom:399.976000pt;}
.y153{bottom:405.124000pt;}
.y124{bottom:411.274667pt;}
.yc2{bottom:412.848000pt;}
.y8c{bottom:413.602667pt;}
.y18b{bottom:414.244000pt;}
.y54{bottom:416.713333pt;}
.y2f{bottom:418.330667pt;}
.yed{bottom:427.417333pt;}
.y123{bottom:428.012000pt;}
.y152{bottom:428.714667pt;}
.yc1{bottom:429.585333pt;}
.y8b{bottom:430.340000pt;}
.y53{bottom:433.450667pt;}
.yec{bottom:444.154667pt;}
.y151{bottom:444.336000pt;}
.y122{bottom:444.749333pt;}
.y18a{bottom:444.928000pt;}
.yc0{bottom:446.322667pt;}
.y8a{bottom:447.077333pt;}
.y2e{bottom:450.170667pt;}
.y52{bottom:450.188000pt;}
.y189{bottom:460.270667pt;}
.yeb{bottom:460.892000pt;}
.y121{bottom:461.486667pt;}
.ya{bottom:462.990669pt;}
.ybf{bottom:463.060000pt;}
.y89{bottom:463.814667pt;}
.y2d{bottom:466.070667pt;}
.y51{bottom:466.925333pt;}
.y150{bottom:467.928000pt;}
.y188{bottom:475.613333pt;}
.yea{bottom:477.629333pt;}
.y9{bottom:478.990666pt;}
.ybe{bottom:479.797333pt;}
.y88{bottom:480.552000pt;}
.y2c{bottom:481.972000pt;}
.y50{bottom:483.662667pt;}
.y187{bottom:490.956000pt;}
.y14f{bottom:491.520000pt;}
.y120{bottom:493.112000pt;}
.ye9{bottom:494.366667pt;}
.y8{bottom:494.990666pt;}
.ybd{bottom:496.534667pt;}
.y87{bottom:497.289333pt;}
.y2b{bottom:497.872000pt;}
.y4f{bottom:500.400000pt;}
.y186{bottom:506.298667pt;}
.y11f{bottom:509.537333pt;}
.ye8{bottom:511.104000pt;}
.ybc{bottom:513.272000pt;}
.y2a{bottom:513.772000pt;}
.y86{bottom:514.026667pt;}
.y14e{bottom:515.110667pt;}
.y4e{bottom:517.137333pt;}
.y185{bottom:521.641333pt;}
.y11e{bottom:524.149333pt;}
.ye7{bottom:527.841333pt;}
.ybb{bottom:530.009333pt;}
.y85{bottom:530.764000pt;}
.y27{bottom:533.658634pt;}
.y4d{bottom:533.874667pt;}
.y184{bottom:536.984000pt;}
.y14d{bottom:538.702667pt;}
.y11d{bottom:538.761333pt;}
.ye6{bottom:544.578667pt;}
.yba{bottom:546.746667pt;}
.y84{bottom:547.501333pt;}
.y4c{bottom:550.612000pt;}
.y183{bottom:552.325333pt;}
.y11c{bottom:553.836000pt;}
.y14c{bottom:554.324000pt;}
.ye5{bottom:561.316000pt;}
.yb9{bottom:563.484000pt;}
.y83{bottom:564.238667pt;}
.y4b{bottom:567.349333pt;}
.y182{bottom:567.668000pt;}
.y11b{bottom:568.909333pt;}
.y14b{bottom:569.945333pt;}
.y7{bottom:573.786667pt;}
.yb8{bottom:580.221333pt;}
.y82{bottom:580.976000pt;}
.yfa{bottom:581.044000pt;}
.y181{bottom:583.010667pt;}
.y4a{bottom:588.072000pt;}
.y11a{bottom:590.189333pt;}
.y6{bottom:592.685334pt;}
.yb7{bottom:596.958667pt;}
.y81{bottom:597.713333pt;}
.yf9{bottom:597.781333pt;}
.y180{bottom:598.353333pt;}
.ye4{bottom:600.041333pt;}
.y14a{bottom:601.506667pt;}
.y119{bottom:604.801333pt;}
.yb6{bottom:613.696000pt;}
.y80{bottom:614.450667pt;}
.yf8{bottom:614.518667pt;}
.y149{bottom:618.244000pt;}
.y118{bottom:619.413333pt;}
.ye3{bottom:621.320000pt;}
.y17f{bottom:629.038667pt;}
.yb5{bottom:630.433333pt;}
.y7f{bottom:631.188000pt;}
.yf7{bottom:631.256000pt;}
.y117{bottom:634.025333pt;}
.y148{bottom:634.981333pt;}
.ye2{bottom:642.600000pt;}
.y17e{bottom:644.381333pt;}
.y5{bottom:645.598667pt;}
.yb4{bottom:647.170667pt;}
.y7e{bottom:647.925333pt;}
.yf6{bottom:647.993333pt;}
.y116{bottom:648.637333pt;}
.y147{bottom:651.718667pt;}
.y49{bottom:654.154667pt;}
.y17d{bottom:659.724000pt;}
.y115{bottom:663.248000pt;}
.ye1{bottom:663.880000pt;}
.yb3{bottom:663.908000pt;}
.y7d{bottom:664.662667pt;}
.y146{bottom:668.456000pt;}
.y3{bottom:668.977329pt;}
.y17c{bottom:675.066667pt;}
.yf5{bottom:677.829333pt;}
.y114{bottom:677.860000pt;}
.yb2{bottom:680.645333pt;}
.y7c{bottom:681.400000pt;}
.ye0{bottom:685.158667pt;}
.y145{bottom:685.193333pt;}
.y48{bottom:687.389333pt;}
.y17b{bottom:690.408000pt;}
.y113{bottom:692.472000pt;}
.yf4{bottom:694.925333pt;}
.yb1{bottom:697.382667pt;}
.y7b{bottom:698.137333pt;}
.y144{bottom:701.930667pt;}
.y47{bottom:704.685333pt;}
.y17a{bottom:705.750667pt;}
.ydf{bottom:706.438667pt;}
.y112{bottom:713.752000pt;}
.yb0{bottom:714.120000pt;}
.y7a{bottom:714.874667pt;}
.y143{bottom:718.668000pt;}
.y179{bottom:721.093333pt;}
.yde{bottom:727.718667pt;}
.y111{bottom:728.364000pt;}
.yaf{bottom:730.857333pt;}
.y79{bottom:731.612000pt;}
.y142{bottom:735.405333pt;}
.y178{bottom:736.436000pt;}
.y46{bottom:737.920000pt;}
.y10e{bottom:746.894667pt;}
.y110{bottom:746.961333pt;}
.yae{bottom:747.594667pt;}
.y78{bottom:748.349333pt;}
.ydd{bottom:748.998667pt;}
.y177{bottom:751.778667pt;}
.y141{bottom:752.142667pt;}
.y45{bottom:755.214667pt;}
.y10d{bottom:761.506667pt;}
.y10f{bottom:761.573333pt;}
.yad{bottom:764.332000pt;}
.y77{bottom:765.086667pt;}
.y176{bottom:767.121333pt;}
.y140{bottom:768.880000pt;}
.ydc{bottom:770.277333pt;}
.y44{bottom:772.510667pt;}
.yac{bottom:781.069333pt;}
.y2{bottom:781.661334pt;}
.y76{bottom:781.824000pt;}
.y175{bottom:782.464000pt;}
.y10c{bottom:786.572000pt;}
.y13f{bottom:789.602667pt;}
.y43{bottom:789.805333pt;}
.ydb{bottom:791.557333pt;}
.yab{bottom:797.806667pt;}
.y75{bottom:798.561333pt;}
.y42{bottom:807.101333pt;}
.yda{bottom:812.837333pt;}
.y174{bottom:813.149333pt;}
.yaa{bottom:814.544000pt;}
.y10b{bottom:814.677333pt;}
.y74{bottom:815.297333pt;}
.y13e{bottom:822.424000pt;}
.y41{bottom:824.396000pt;}
.y173{bottom:828.490667pt;}
.ya9{bottom:831.281333pt;}
.y10a{bottom:831.773333pt;}
.y73{bottom:832.034667pt;}
.yd9{bottom:834.116000pt;}
.y13d{bottom:838.849333pt;}
.y172{bottom:843.833333pt;}
.ya8{bottom:848.018667pt;}
.y72{bottom:848.772000pt;}
.y13c{bottom:853.461333pt;}
.yd8{bottom:855.396000pt;}
.y40{bottom:858.694667pt;}
.y171{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.ya7{bottom:864.754667pt;}
.y71{bottom:867.130667pt;}
.y13b{bottom:868.073333pt;}
.y3f{bottom:873.040000pt;}
.y170{bottom:874.518667pt;}
.yd7{bottom:876.676000pt;}
.ya6{bottom:881.492000pt;}
.y13a{bottom:883.146667pt;}
.y70{bottom:883.868000pt;}
.y16f{bottom:889.861333pt;}
.yd6{bottom:897.956000pt;}
.y139{bottom:898.221333pt;}
.ya5{bottom:898.229333pt;}
.y6f{bottom:900.605333pt;}
.y16e{bottom:905.204000pt;}
.y26{bottom:912.625333pt;}
.ya4{bottom:914.966667pt;}
.y6e{bottom:917.342667pt;}
.yd5{bottom:919.234667pt;}
.y138{bottom:919.501333pt;}
.y16d{bottom:920.546667pt;}
.ya3{bottom:931.704000pt;}
.y6d{bottom:934.080000pt;}
.y137{bottom:934.112000pt;}
.y16c{bottom:935.889333pt;}
.yd3{bottom:940.514667pt;}
.yd2{bottom:947.820000pt;}
.ya2{bottom:948.441333pt;}
.y25{bottom:950.616000pt;}
.y6c{bottom:950.817333pt;}
.y16b{bottom:951.230667pt;}
.yd4{bottom:955.126667pt;}
.ya1{bottom:965.178667pt;}
.y16a{bottom:966.573333pt;}
.y6b{bottom:967.554667pt;}
.y24{bottom:975.722667pt;}
.ya0{bottom:981.916000pt;}
.yd1{bottom:983.233333pt;}
.y6a{bottom:984.290667pt;}
.y20{bottom:1014.377333pt;}
.y69{bottom:1043.020000pt;}
.hf{height:22.673858pt;}
.h12{height:27.076941pt;}
.h13{height:27.262909pt;}
.h7{height:28.560000pt;}
.h1a{height:29.397999pt;}
.h11{height:29.433775pt;}
.h10{height:30.399505pt;}
.h14{height:30.945242pt;}
.h18{height:31.157778pt;}
.ha{height:32.246508pt;}
.h15{height:34.574438pt;}
.h16{height:34.813542pt;}
.h1f{height:35.052646pt;}
.he{height:38.415786pt;}
.h17{height:38.681455pt;}
.hc{height:38.947124pt;}
.hb{height:39.846430pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1d{height:44.431607pt;}
.h1e{height:44.436941pt;}
.h9{height:45.272024pt;}
.h19{height:48.688666pt;}
.h2{height:48.960000pt;}
.h1c{height:63.795772pt;}
.h1b{height:63.801105pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x5{left:48.000000pt;}
.x6{left:53.458976pt;}
.x31{left:75.025333pt;}
.x2e{left:76.724000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x9{left:222.073333pt;}
.x8{left:223.020000pt;}
.x28{left:230.989333pt;}
.xc{left:251.365333pt;}
.x1a{left:264.424000pt;}
.x2a{left:268.034667pt;}
.x21{left:269.490667pt;}
.x1f{left:273.876000pt;}
.xa{left:275.054667pt;}
.x1e{left:276.106667pt;}
.xb{left:285.778667pt;}
.x2c{left:335.525333pt;}
.xd{left:348.130667pt;}
.x11{left:362.653333pt;}
.x1b{left:363.833333pt;}
.x15{left:364.820000pt;}
.x2d{left:381.612000pt;}
.x23{left:390.302667pt;}
.x24{left:393.124000pt;}
.x29{left:395.617333pt;}
.xf{left:400.844000pt;}
.x3{left:404.408000pt;}
.x14{left:405.817333pt;}
.x27{left:412.054667pt;}
.x18{left:417.222667pt;}
.x16{left:418.269333pt;}
.x17{left:423.981333pt;}
.x19{left:426.268000pt;}
.x2b{left:480.182667pt;}
.x22{left:493.249333pt;}
.xe{left:503.122667pt;}
.x10{left:515.657333pt;}
.x26{left:524.458667pt;}
.x1c{left:532.926667pt;}
.x1d{left:533.932000pt;}
.x25{left:551.441333pt;}
.x2f{left:584.481333pt;}
.x30{left:600.441333pt;}
.x12{left:607.357333pt;}
.x20{left:739.989333pt;}
.x13{left:744.096000pt;}
}




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