
    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_fce7c3d5d2d84a4c33419e47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_21c155401e2b9e4fa55216c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_8f3e9234400f2ad73d6a2838.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_b44a2da76080f4af42969bf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_908837beb0d18bb8dc5a1c83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_230c690345f4c44c84277bfe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_a7eee96a7cdb866fc5a62ae1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_865f36a03dbaf8e0d89628ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_df8e4f6464e86f37ff9c7e0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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;}
.m28{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);}
.m17{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.mb{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);}
.m25{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);}
.m13{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);}
.m6{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);}
.m23{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);}
.m1d{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);}
.m16{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);}
.m15{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);}
.m9{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);}
.md{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);}
.m11{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);}
.m4{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);}
.m1{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);}
.m5{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);}
.mc{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);}
.m7{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);}
.m14{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);}
.ma{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);}
.m19{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);}
.m26{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);}
.m1e{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);}
.m1f{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m24{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);}
.m1a{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);}
.m29{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);}
.m20{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);}
.mf{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);}
.m8{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);}
.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);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.546000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000429px;}
.lsc{letter-spacing:0.000444px;}
.ls14{letter-spacing:0.000547px;}
.ls3{letter-spacing:0.001639px;}
.ls4{letter-spacing:2.310587px;}
.lse{letter-spacing:2.312552px;}
.ls2{letter-spacing:2.315727px;}
.lsf{letter-spacing:2.818917px;}
.lsd{letter-spacing:3.630547px;}
.ls10{letter-spacing:3.702446px;}
.ls5{letter-spacing:13.449720px;}
.ls8{letter-spacing:14.220782px;}
.ls12{letter-spacing:16.214526px;}
.ls7{letter-spacing:16.362001px;}
.ls9{letter-spacing:16.391294px;}
.lsa{letter-spacing:17.898933px;}
.lsb{letter-spacing:21.804815px;}
.ls1{letter-spacing:36.008332px;}
.ls0{letter-spacing:36.014356px;}
.ls11{letter-spacing:39.931742px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa1{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws15{word-spacing:-65.454540px;}
.ws47{word-spacing:-64.557900px;}
.ws86{word-spacing:-59.775840px;}
.ws78{word-spacing:-49.287269px;}
.ws77{word-spacing:-49.156360px;}
.ws69{word-spacing:-49.090905px;}
.ws82{word-spacing:-48.763632px;}
.ws7a{word-spacing:-48.239996px;}
.ws68{word-spacing:-48.174541px;}
.ws3{word-spacing:-47.820660px;}
.ws67{word-spacing:-47.061814px;}
.ws72{word-spacing:-47.059458px;}
.ws6e{word-spacing:-46.939118px;}
.ws87{word-spacing:-45.130759px;}
.ws88{word-spacing:-45.070983px;}
.ws4e{word-spacing:-44.831880px;}
.ws80{word-spacing:-44.772104px;}
.ws85{word-spacing:-44.712328px;}
.ws81{word-spacing:-44.517626px;}
.ws74{word-spacing:-44.507384px;}
.ws70{word-spacing:-44.440037px;}
.ws16{word-spacing:-43.038600px;}
.wsb6{word-spacing:-41.956360px;}
.wsb{word-spacing:-40.832895px;}
.ws23{word-spacing:-40.402508px;}
.wsa{word-spacing:-40.348710px;}
.ws4d{word-spacing:-36.305472px;}
.ws2{word-spacing:-31.202994px;}
.ws46{word-spacing:-28.472725px;}
.ws28{word-spacing:-23.402252px;}
.ws4{word-spacing:-20.801987px;}
.ws6a{word-spacing:-16.756362px;}
.ws91{word-spacing:-16.298180px;}
.ws5f{word-spacing:-16.101817px;}
.ws1c{word-spacing:-15.905453px;}
.wsa8{word-spacing:-15.643635px;}
.ws7f{word-spacing:-15.601484px;}
.wsa9{word-spacing:-15.578181px;}
.wsb5{word-spacing:-15.512726px;}
.ws49{word-spacing:-15.316362px;}
.ws17{word-spacing:-15.250908px;}
.ws36{word-spacing:-15.185453px;}
.ws92{word-spacing:-15.119999px;}
.ws76{word-spacing:-14.989090px;}
.ws62{word-spacing:-14.727271px;}
.ws84{word-spacing:-14.661817px;}
.ws41{word-spacing:-14.530908px;}
.ws29{word-spacing:-14.471737px;}
.ws42{word-spacing:-14.465453px;}
.ws39{word-spacing:-14.269090px;}
.ws3b{word-spacing:-14.138181px;}
.ws51{word-spacing:-13.876362px;}
.ws98{word-spacing:-13.745453px;}
.ws35{word-spacing:-13.418181px;}
.ws6b{word-spacing:-13.287272px;}
.ws97{word-spacing:-13.221817px;}
.ws5{word-spacing:-13.202414px;}
.ws9{word-spacing:-13.202242px;}
.ws6{word-spacing:-13.199745px;}
.ws1{word-spacing:-13.195529px;}
.ws7{word-spacing:-13.195037px;}
.ws73{word-spacing:-13.025453px;}
.ws71{word-spacing:-12.959999px;}
.ws6d{word-spacing:-12.923244px;}
.ws8c{word-spacing:-12.894544px;}
.wsa2{word-spacing:-12.829090px;}
.ws6f{word-spacing:-12.764498px;}
.ws1a{word-spacing:-12.763635px;}
.ws8e{word-spacing:-12.632726px;}
.ws8f{word-spacing:-12.567272px;}
.ws99{word-spacing:-12.501817px;}
.ws19{word-spacing:-12.436363px;}
.ws37{word-spacing:-12.370908px;}
.ws5e{word-spacing:-12.305454px;}
.ws63{word-spacing:-12.257348px;}
.ws1f{word-spacing:-12.239999px;}
.ws1e{word-spacing:-12.174544px;}
.ws18{word-spacing:-12.109090px;}
.ws1d{word-spacing:-12.043635px;}
.ws21{word-spacing:-11.978181px;}
.ws22{word-spacing:-11.912726px;}
.ws3f{word-spacing:-11.847272px;}
.ws20{word-spacing:-11.781817px;}
.ws5d{word-spacing:-11.716363px;}
.ws6c{word-spacing:-11.650908px;}
.ws93{word-spacing:-11.585454px;}
.ws65{word-spacing:-11.519999px;}
.ws50{word-spacing:-11.454545px;}
.ws9f{word-spacing:-11.389090px;}
.ws79{word-spacing:-11.258181px;}
.ws3c{word-spacing:-11.192726px;}
.ws75{word-spacing:-11.127272px;}
.ws1b{word-spacing:-11.061817px;}
.ws7b{word-spacing:-10.996363px;}
.ws4b{word-spacing:-10.865454px;}
.ws4a{word-spacing:-10.799999px;}
.ws9e{word-spacing:-10.669090px;}
.ws14{word-spacing:-10.652059px;}
.ws44{word-spacing:-10.603635px;}
.ws90{word-spacing:-10.407272px;}
.ws33{word-spacing:-10.341817px;}
.ws11{word-spacing:-10.221673px;}
.ws60{word-spacing:-10.210908px;}
.ws66{word-spacing:-10.079999px;}
.ws7d{word-spacing:-10.014545px;}
.ws25{word-spacing:-9.985239px;}
.ws2b{word-spacing:-9.984901px;}
.ws30{word-spacing:-9.957576px;}
.ws2a{word-spacing:-9.956211px;}
.ws2e{word-spacing:-9.954911px;}
.ws26{word-spacing:-9.954315px;}
.wsd{word-spacing:-9.952682px;}
.ws4c{word-spacing:-9.949090px;}
.ws2c{word-spacing:-9.949010px;}
.ws27{word-spacing:-9.933608px;}
.ws2f{word-spacing:-9.927608px;}
.ws24{word-spacing:-9.900574px;}
.wse{word-spacing:-9.898884px;}
.ws95{word-spacing:-9.883636px;}
.wsf{word-spacing:-9.845085px;}
.ws9d{word-spacing:-9.818181px;}
.ws10{word-spacing:-9.629892px;}
.ws48{word-spacing:-9.359999px;}
.ws40{word-spacing:-9.163636px;}
.ws13{word-spacing:-9.145708px;}
.ws3d{word-spacing:-9.098181px;}
.ws12{word-spacing:-8.984313px;}
.ws43{word-spacing:-8.967272px;}
.ws4f{word-spacing:-8.836363px;}
.ws61{word-spacing:-8.770908px;}
.wsaa{word-spacing:-8.639999px;}
.wsae{word-spacing:-8.574545px;}
.ws96{word-spacing:-8.443636px;}
.ws8d{word-spacing:-8.378181px;}
.ws9c{word-spacing:-8.312727px;}
.ws3e{word-spacing:-8.247272px;}
.wsaf{word-spacing:-8.181817px;}
.ws58{word-spacing:-8.050908px;}
.ws56{word-spacing:-7.854545px;}
.ws55{word-spacing:-7.789090px;}
.ws9b{word-spacing:-7.723636px;}
.ws89{word-spacing:-7.527272px;}
.wsa3{word-spacing:-7.461818px;}
.ws9a{word-spacing:-7.330908px;}
.ws7e{word-spacing:-7.134545px;}
.ws8b{word-spacing:-7.069090px;}
.ws8a{word-spacing:-7.003636px;}
.wsc{word-spacing:-6.832382px;}
.wsab{word-spacing:-6.807272px;}
.ws45{word-spacing:-6.676363px;}
.ws31{word-spacing:-6.635114px;}
.ws38{word-spacing:-6.479999px;}
.ws83{word-spacing:-6.087272px;}
.ws3a{word-spacing:-6.021818px;}
.ws57{word-spacing:-5.825454px;}
.ws64{word-spacing:-5.629090px;}
.ws52{word-spacing:-5.563636px;}
.ws2d{word-spacing:-5.487425px;}
.wsa0{word-spacing:-5.367272px;}
.ws34{word-spacing:-5.301818px;}
.ws7c{word-spacing:-5.170909px;}
.ws94{word-spacing:-5.105454px;}
.ws54{word-spacing:-4.974545px;}
.ws53{word-spacing:-4.909090px;}
.wsb4{word-spacing:-3.992727px;}
.ws5a{word-spacing:-0.001387px;}
.ws32{word-spacing:0.000000px;}
.ws5c{word-spacing:0.000501px;}
.ws59{word-spacing:0.001696px;}
.ws5b{word-spacing:0.004085px;}
.wsb0{word-spacing:0.196364px;}
.wsb3{word-spacing:2.487273px;}
.ws8{word-spacing:4.805677px;}
.wsb2{word-spacing:19.047271px;}
.wsb1{word-spacing:21.403635px;}
.wsa4{word-spacing:22.712725px;}
.wsac{word-spacing:23.563634px;}
.wsa5{word-spacing:35.476361px;}
.wsa6{word-spacing:50.530905px;}
.wsad{word-spacing:82.472720px;}
.wsa7{word-spacing:320.399973px;}
._1a{margin-left:-7.574794px;}
._1f{margin-left:-5.694545px;}
._2{margin-left:-4.375592px;}
._3{margin-left:-3.349842px;}
._0{margin-left:-2.065853px;}
._5{margin-left:-1.036516px;}
._6{width:1.129764px;}
._b{width:2.421818px;}
._d{width:3.818782px;}
._18{width:5.904394px;}
._e{width:11.943205px;}
._c{width:13.944179px;}
._11{width:15.643635px;}
._8{width:16.804785px;}
._4{width:18.251965px;}
._14{width:19.446570px;}
._7{width:21.426064px;}
._a{width:22.778180px;}
._16{width:24.549046px;}
._9{width:25.582863px;}
._12{width:27.697122px;}
._23{width:28.799998px;}
._15{width:30.174543px;}
._10{width:32.269088px;}
._1{width:34.396449px;}
._17{width:35.401044px;}
._19{width:36.953123px;}
._f{width:38.683633px;}
._13{width:43.038600px;}
._25{width:44.443633px;}
._20{width:49.614541px;}
._2a{width:52.101814px;}
._26{width:57.992722px;}
._1b{width:60.618974px;}
._29{width:66.239994px;}
._24{width:73.161144px;}
._28{width:81.098175px;}
._1d{width:92.552720px;}
._27{width:154.799987px;}
._1c{width:159.606861px;}
._22{width:162.506586px;}
._21{width:163.689256px;}
._1e{width:209.551368px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs7{font-size:52.363620px;}
.fs4{font-size:53.798280px;}
.fs8{font-size:56.727300px;}
.fsa{font-size:57.850722px;}
.fs9{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y31{bottom:112.921500px;}
.ya8{bottom:116.187000px;}
.yc4{bottom:116.515500px;}
.y120{bottom:116.520000px;}
.y93{bottom:116.521500px;}
.yeb{bottom:116.535000px;}
.y65{bottom:116.541000px;}
.yea{bottom:127.929000px;}
.yd4{bottom:129.409500px;}
.y30{bottom:129.982500px;}
.yc3{bottom:132.954000px;}
.y11f{bottom:132.958500px;}
.y92{bottom:132.960000px;}
.ye9{bottom:132.973500px;}
.y64{bottom:132.979500px;}
.ya7{bottom:136.510500px;}
.y145{bottom:145.869000px;}
.y2f{bottom:146.421000px;}
.y11e{bottom:149.397000px;}
.y91{bottom:149.398500px;}
.y63{bottom:149.418000px;}
.yd3{bottom:149.733000px;}
.ya6{bottom:156.834000px;}
.yc2{bottom:157.780500px;}
.y2e{bottom:162.906000px;}
.y90{bottom:165.837000px;}
.y144{bottom:166.192500px;}
.ye8{bottom:166.848000px;}
.yd2{bottom:170.058000px;}
.y11d{bottom:176.622000px;}
.ya5{bottom:177.157500px;}
.yc1{bottom:178.104000px;}
.y2d{bottom:179.344500px;}
.y8f{bottom:182.275500px;}
.y62{bottom:186.124500px;}
.y143{bottom:186.516000px;}
.ye7{bottom:187.171500px;}
.yd1{bottom:190.381500px;}
.y11c{bottom:196.945500px;}
.ya4{bottom:197.481000px;}
.yc0{bottom:198.427500px;}
.y2c{bottom:201.087000px;}
.y61{bottom:206.448000px;}
.y142{bottom:206.841000px;}
.ye6{bottom:207.495000px;}
.yd0{bottom:210.705000px;}
.y8e{bottom:212.410500px;}
.y2b{bottom:212.482500px;}
.y150{bottom:213.091500px;}
.y11b{bottom:217.269000px;}
.ya3{bottom:217.806000px;}
.ybf{bottom:218.752500px;}
.y60{bottom:226.771500px;}
.y141{bottom:227.164500px;}
.ye4{bottom:227.818500px;}
.ycf{bottom:231.028500px;}
.y8d{bottom:232.734000px;}
.y14f{bottom:233.415000px;}
.ye5{bottom:233.955000px;}
.y11a{bottom:237.592500px;}
.ya2{bottom:238.129500px;}
.ybe{bottom:239.076000px;}
.y5f{bottom:247.095000px;}
.y140{bottom:247.488000px;}
.ye3{bottom:248.143500px;}
.yce{bottom:251.352000px;}
.y8c{bottom:253.057500px;}
.y14e{bottom:253.738500px;}
.y119{bottom:257.917500px;}
.ya1{bottom:258.453000px;}
.ybd{bottom:259.399500px;}
.y5d{bottom:267.418500px;}
.y13f{bottom:267.811500px;}
.ye1{bottom:268.467000px;}
.y2a{bottom:270.262500px;}
.ycd{bottom:271.677000px;}
.y8b{bottom:273.381000px;}
.y5e{bottom:273.555000px;}
.y14d{bottom:274.063500px;}
.ye2{bottom:274.603500px;}
.y118{bottom:278.241000px;}
.ya0{bottom:278.776500px;}
.ybc{bottom:279.723000px;}
.y5c{bottom:287.743500px;}
.y13e{bottom:288.135000px;}
.ye0{bottom:288.790500px;}
.y29{bottom:290.586000px;}
.ycc{bottom:292.000500px;}
.y8a{bottom:293.706000px;}
.y14c{bottom:294.387000px;}
.y117{bottom:298.564500px;}
.y9f{bottom:299.100000px;}
.ybb{bottom:300.046500px;}
.y5b{bottom:308.067000px;}
.y13d{bottom:308.458500px;}
.ydf{bottom:309.114000px;}
.y28{bottom:310.909500px;}
.ycb{bottom:312.324000px;}
.y89{bottom:314.029500px;}
.y14b{bottom:314.710500px;}
.y116{bottom:318.888000px;}
.y9e{bottom:319.423500px;}
.yb9{bottom:320.371500px;}
.yba{bottom:326.508000px;}
.y5a{bottom:328.390500px;}
.y13c{bottom:328.783500px;}
.yde{bottom:329.437500px;}
.y27{bottom:331.233000px;}
.yca{bottom:332.647500px;}
.y88{bottom:334.353000px;}
.y14a{bottom:335.034000px;}
.y115{bottom:339.211500px;}
.y9d{bottom:339.748500px;}
.yb8{bottom:340.695000px;}
.y59{bottom:348.714000px;}
.y13b{bottom:349.107000px;}
.ydd{bottom:349.762500px;}
.y26{bottom:351.558000px;}
.yc9{bottom:352.971000px;}
.y87{bottom:354.676500px;}
.y149{bottom:355.357500px;}
.y114{bottom:359.536500px;}
.y9c{bottom:360.072000px;}
.yb7{bottom:361.018500px;}
.y13a{bottom:369.430500px;}
.ydc{bottom:370.086000px;}
.y25{bottom:371.881500px;}
.yc8{bottom:373.296000px;}
.y86{bottom:375.000000px;}
.y148{bottom:375.682500px;}
.y113{bottom:379.860000px;}
.y9b{bottom:380.395500px;}
.yb6{bottom:381.342000px;}
.y58{bottom:385.183500px;}
.y139{bottom:389.754000px;}
.ydb{bottom:390.409500px;}
.y24{bottom:392.205000px;}
.y85{bottom:395.325000px;}
.y147{bottom:396.006000px;}
.y112{bottom:400.183500px;}
.y9a{bottom:400.719000px;}
.yb5{bottom:401.665500px;}
.y138{bottom:410.077500px;}
.yda{bottom:410.733000px;}
.y23{bottom:412.528500px;}
.y146{bottom:416.329500px;}
.y111{bottom:420.507000px;}
.y99{bottom:421.042500px;}
.yb4{bottom:421.990500px;}
.yc7{bottom:428.752500px;}
.yec{bottom:429.156000px;}
.y137{bottom:430.402500px;}
.yd9{bottom:431.056500px;}
.y22{bottom:432.852000px;}
.y84{bottom:435.972000px;}
.y57{bottom:436.653000px;}
.y110{bottom:440.830500px;}
.y98{bottom:441.367500px;}
.yb3{bottom:442.314000px;}
.yc6{bottom:446.685000px;}
.y136{bottom:450.726000px;}
.y21{bottom:453.177000px;}
.y83{bottom:456.295500px;}
.y55{bottom:456.976500px;}
.y10f{bottom:461.155500px;}
.yb2{bottom:462.637500px;}
.y56{bottom:463.113000px;}
.y135{bottom:471.049500px;}
.y20{bottom:473.500500px;}
.y82{bottom:476.619000px;}
.y54{bottom:477.301500px;}
.y97{bottom:477.837000px;}
.y10e{bottom:481.479000px;}
.yb1{bottom:482.961000px;}
.yd8{bottom:489.891000px;}
.y134{bottom:491.373000px;}
.y1f{bottom:493.824000px;}
.y53{bottom:497.625000px;}
.y81{bottom:501.426000px;}
.y10d{bottom:501.802500px;}
.yb0{bottom:503.284500px;}
.yd7{bottom:507.823500px;}
.y133{bottom:511.696500px;}
.y1e{bottom:514.147500px;}
.y52{bottom:517.948500px;}
.y10c{bottom:522.126000px;}
.yaf{bottom:523.609500px;}
.y96{bottom:529.306500px;}
.y132{bottom:532.021500px;}
.y1d{bottom:534.471000px;}
.y80{bottom:535.200000px;}
.y51{bottom:538.272000px;}
.y10b{bottom:542.449500px;}
.yad{bottom:543.933000px;}
.y95{bottom:549.630000px;}
.yae{bottom:550.069500px;}
.y131{bottom:552.345000px;}
.y1c{bottom:554.796000px;}
.y7f{bottom:555.523500px;}
.y50{bottom:558.595500px;}
.y10a{bottom:562.774500px;}
.yac{bottom:564.256500px;}
.y94{bottom:569.953500px;}
.y7e{bottom:575.847000px;}
.y4f{bottom:578.920500px;}
.y109{bottom:583.098000px;}
.yab{bottom:584.580000px;}
.y130{bottom:588.814500px;}
.y1b{bottom:591.265500px;}
.y7d{bottom:596.172000px;}
.y4e{bottom:599.244000px;}
.y108{bottom:603.421500px;}
.yaa{bottom:604.903500px;}
.y7c{bottom:616.495500px;}
.y4d{bottom:619.567500px;}
.y107{bottom:623.745000px;}
.y7b{bottom:636.819000px;}
.y4c{bottom:639.891000px;}
.y12f{bottom:640.284000px;}
.y106{bottom:644.068500px;}
.ya9{bottom:651.313500px;}
.y7a{bottom:657.142500px;}
.y4b{bottom:660.214500px;}
.y12e{bottom:660.607500px;}
.y105{bottom:664.393500px;}
.y1a{bottom:665.439000px;}
.y79{bottom:677.466000px;}
.y4a{bottom:680.539500px;}
.y12d{bottom:680.931000px;}
.y19{bottom:681.877500px;}
.y104{bottom:684.717000px;}
.y78{bottom:697.791000px;}
.y49{bottom:700.863000px;}
.y103{bottom:705.040500px;}
.y18{bottom:709.737000px;}
.y12c{bottom:717.400500px;}
.y77{bottom:718.114500px;}
.y47{bottom:721.186500px;}
.y102{bottom:725.364000px;}
.y17{bottom:726.175500px;}
.y48{bottom:727.323000px;}
.y76{bottom:738.438000px;}
.y46{bottom:741.510000px;}
.y16{bottom:742.614000px;}
.y101{bottom:745.687500px;}
.y74{bottom:758.761500px;}
.y15{bottom:759.052500px;}
.y45{bottom:761.833500px;}
.y75{bottom:764.898000px;}
.y100{bottom:766.012500px;}
.y12b{bottom:768.870000px;}
.yd6{bottom:771.288000px;}
.y14{bottom:775.491000px;}
.y73{bottom:779.085000px;}
.y44{bottom:782.158500px;}
.yff{bottom:786.336000px;}
.y12a{bottom:789.193500px;}
.yd5{bottom:789.220500px;}
.y13{bottom:791.929500px;}
.y72{bottom:799.410000px;}
.yc5{bottom:802.233000px;}
.y43{bottom:802.482000px;}
.yfe{bottom:806.659500px;}
.y12{bottom:808.368000px;}
.y129{bottom:809.518500px;}
.y70{bottom:819.733500px;}
.y42{bottom:822.805500px;}
.y11{bottom:824.806500px;}
.y71{bottom:825.870000px;}
.yfd{bottom:826.983000px;}
.y6e{bottom:840.057000px;}
.y10{bottom:841.245000px;}
.y41{bottom:843.129000px;}
.y128{bottom:845.988000px;}
.y6f{bottom:846.193500px;}
.yfb{bottom:847.306500px;}
.yfc{bottom:853.443000px;}
.yf{bottom:857.682000px;}
.y6c{bottom:860.380500px;}
.y40{bottom:863.452500px;}
.y6d{bottom:866.517000px;}
.yf9{bottom:867.631500px;}
.yfa{bottom:873.766500px;}
.ye{bottom:874.120500px;}
.y6b{bottom:880.704000px;}
.y3f{bottom:883.777500px;}
.yf8{bottom:887.955000px;}
.yd{bottom:890.559000px;}
.y127{bottom:897.457500px;}
.y6a{bottom:901.029000px;}
.y3e{bottom:904.101000px;}
.yc{bottom:906.997500px;}
.yf7{bottom:908.278500px;}
.y126{bottom:917.781000px;}
.y69{bottom:921.352500px;}
.yb{bottom:923.436000px;}
.y3d{bottom:924.424500px;}
.yf6{bottom:928.602000px;}
.y125{bottom:938.104500px;}
.y68{bottom:941.676000px;}
.y3c{bottom:944.748000px;}
.yf5{bottom:948.925500px;}
.y124{bottom:958.428000px;}
.y67{bottom:961.999500px;}
.y3b{bottom:965.071500px;}
.ya{bottom:968.566500px;}
.yf4{bottom:969.250500px;}
.y123{bottom:978.751500px;}
.y3a{bottom:985.396500px;}
.yf3{bottom:989.574000px;}
.y9{bottom:990.049500px;}
.y122{bottom:999.076500px;}
.y8{bottom:1004.433000px;}
.y39{bottom:1005.720000px;}
.y7{bottom:1009.476000px;}
.yf2{bottom:1009.897500px;}
.y66{bottom:1020.849000px;}
.y6{bottom:1023.859500px;}
.y38{bottom:1026.043500px;}
.yf1{bottom:1030.221000px;}
.y121{bottom:1035.546000px;}
.y5{bottom:1045.341000px;}
.y37{bottom:1046.367000px;}
.yf0{bottom:1050.544500px;}
.y36{bottom:1066.690500px;}
.yef{bottom:1070.869500px;}
.y3{bottom:1074.669000px;}
.y4{bottom:1081.393500px;}
.y35{bottom:1087.015500px;}
.yee{bottom:1091.193000px;}
.y34{bottom:1107.339000px;}
.yed{bottom:1111.516500px;}
.y2{bottom:1113.523500px;}
.y33{bottom:1127.662500px;}
.y1{bottom:1146.400500px;}
.y32{bottom:1147.986000px;}
.hc{height:25.034105px;}
.h6{height:25.105836px;}
.hf{height:26.396993px;}
.h5{height:33.474462px;}
.h4{height:35.196006px;}
.h7{height:37.658796px;}
.h10{height:38.539624px;}
.h9{height:39.595534px;}
.h11{height:41.240747px;}
.h14{height:42.057475px;}
.h12{height:42.321295px;}
.h8{height:45.687269px;}
.h15{height:45.818178px;}
.he{height:46.212723px;}
.hd{height:47.073495px;}
.hb{height:48.174541px;}
.h3{height:52.794031px;}
.ha{height:60.081886px;}
.h13{height:63.085624px;}
.h2{height:72.098263px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:107.095500px;}
.x14{left:108.579000px;}
.xb{left:112.560000px;}
.x73{left:113.784000px;}
.x77{left:115.609500px;}
.x68{left:116.917500px;}
.x37{left:119.487000px;}
.xd{left:124.363500px;}
.x43{left:125.503500px;}
.x74{left:129.003000px;}
.x75{left:136.650000px;}
.x78{left:143.050500px;}
.x76{left:151.869000px;}
.x7f{left:167.874000px;}
.x39{left:171.180000px;}
.x15{left:172.576500px;}
.xc{left:175.122000px;}
.x40{left:205.641000px;}
.x5f{left:211.612500px;}
.x87{left:216.570000px;}
.x24{left:222.363000px;}
.x88{left:224.260500px;}
.x71{left:226.875000px;}
.x25{left:230.277000px;}
.x2{left:233.488500px;}
.x61{left:234.789000px;}
.x8c{left:236.062500px;}
.x72{left:239.752500px;}
.x36{left:245.544000px;}
.x3{left:256.041000px;}
.x16{left:266.365500px;}
.x17{left:273.973500px;}
.x5b{left:275.793000px;}
.x57{left:279.543000px;}
.x62{left:284.224500px;}
.x58{left:286.522500px;}
.x89{left:292.198500px;}
.x59{left:299.400000px;}
.x44{left:301.131000px;}
.x8b{left:302.350500px;}
.x7d{left:306.507000px;}
.x55{left:312.805500px;}
.x7c{left:324.670500px;}
.x83{left:331.746000px;}
.x4b{left:332.925000px;}
.x60{left:338.857500px;}
.x48{left:349.117500px;}
.x31{left:350.290500px;}
.x4{left:353.938500px;}
.x82{left:355.755000px;}
.x32{left:357.082500px;}
.x5{left:360.018000px;}
.x50{left:364.327500px;}
.x63{left:369.921000px;}
.x80{left:382.372500px;}
.x35{left:389.976000px;}
.x3e{left:391.735500px;}
.x3d{left:399.904500px;}
.x45{left:402.666000px;}
.x38{left:405.393000px;}
.x2f{left:411.694500px;}
.x5a{left:413.632500px;}
.x79{left:416.520000px;}
.x33{left:422.520000px;}
.x3f{left:424.410000px;}
.x26{left:426.327000px;}
.x84{left:437.742000px;}
.x56{left:439.447500px;}
.x3a{left:440.748000px;}
.x85{left:445.294500px;}
.x12{left:448.402500px;}
.x5c{left:451.426500px;}
.x13{left:456.010500px;}
.x3b{left:457.084500px;}
.x20{left:462.145500px;}
.x27{left:463.573500px;}
.x6a{left:465.708000px;}
.x21{left:468.936000px;}
.x2b{left:473.947500px;}
.x30{left:475.666500px;}
.x6b{left:478.585500px;}
.x2c{left:480.738000px;}
.x6c{left:484.527000px;}
.x2d{left:486.511500px;}
.x3c{left:497.929500px;}
.x6d{left:499.746000px;}
.x2e{left:501.729000px;}
.x6{left:504.906000px;}
.x4c{left:508.192500px;}
.x7{left:510.985500px;}
.x51{left:519.534000px;}
.x7e{left:521.005500px;}
.x52{left:527.190000px;}
.x66{left:531.412500px;}
.x34{left:542.152500px;}
.x67{left:544.290000px;}
.x18{left:547.236000px;}
.x49{left:552.574500px;}
.x46{left:554.467500px;}
.x19{left:558.258000px;}
.x28{left:561.598500px;}
.xe{left:562.798500px;}
.x1a{left:564.201000px;}
.x41{left:565.534500px;}
.x29{left:567.976500px;}
.xf{left:570.406500px;}
.x1b{left:571.809000px;}
.x2a{left:574.767000px;}
.x10{left:578.061000px;}
.x1c{left:579.712500px;}
.x11{left:585.670500px;}
.x5d{left:589.179000px;}
.x22{left:590.229000px;}
.x1d{left:594.930000px;}
.x23{left:597.021000px;}
.x6e{left:610.219500px;}
.x4d{left:613.369500px;}
.x6f{left:616.161000px;}
.x7a{left:622.849500px;}
.x53{left:625.215000px;}
.x42{left:626.826000px;}
.x70{left:631.380000px;}
.x8{left:636.415500px;}
.x9{left:646.978500px;}
.x64{left:656.893500px;}
.x54{left:661.344000px;}
.x4a{left:662.860500px;}
.x65{left:669.772500px;}
.x7b{left:698.524500px;}
.x5e{left:711.711000px;}
.x8a{left:713.028000px;}
.x86{left:721.197000px;}
.x47{left:730.716000px;}
.x69{left:753.000000px;}
.x1e{left:762.799500px;}
.x81{left:766.125000px;}
.xa{left:770.683500px;}
.x4e{left:776.334000px;}
.x1f{left:778.017000px;}
.x4f{left:783.124500px;}
@media print{
.v1{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.818667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000382pt;}
.lsc{letter-spacing:0.000394pt;}
.ls14{letter-spacing:0.000486pt;}
.ls3{letter-spacing:0.001457pt;}
.ls4{letter-spacing:2.053855pt;}
.lse{letter-spacing:2.055602pt;}
.ls2{letter-spacing:2.058424pt;}
.lsf{letter-spacing:2.505704pt;}
.lsd{letter-spacing:3.227153pt;}
.ls10{letter-spacing:3.291063pt;}
.ls5{letter-spacing:11.955307pt;}
.ls8{letter-spacing:12.640695pt;}
.ls12{letter-spacing:14.412912pt;}
.ls7{letter-spacing:14.544001pt;}
.ls9{letter-spacing:14.570039pt;}
.lsa{letter-spacing:15.910163pt;}
.lsb{letter-spacing:19.382058pt;}
.ls1{letter-spacing:32.007406pt;}
.ls0{letter-spacing:32.012761pt;}
.ls11{letter-spacing:35.494882pt;}
.wsa1{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws15{word-spacing:-58.181813pt;}
.ws47{word-spacing:-57.384800pt;}
.ws86{word-spacing:-53.134080pt;}
.ws78{word-spacing:-43.810905pt;}
.ws77{word-spacing:-43.694542pt;}
.ws69{word-spacing:-43.636360pt;}
.ws82{word-spacing:-43.345451pt;}
.ws7a{word-spacing:-42.879996pt;}
.ws68{word-spacing:-42.821815pt;}
.ws3{word-spacing:-42.507253pt;}
.ws67{word-spacing:-41.832724pt;}
.ws72{word-spacing:-41.830629pt;}
.ws6e{word-spacing:-41.723660pt;}
.ws87{word-spacing:-40.116230pt;}
.ws88{word-spacing:-40.063096pt;}
.ws4e{word-spacing:-39.850560pt;}
.ws80{word-spacing:-39.797426pt;}
.ws85{word-spacing:-39.744292pt;}
.ws81{word-spacing:-39.571223pt;}
.ws74{word-spacing:-39.562119pt;}
.ws70{word-spacing:-39.502255pt;}
.ws16{word-spacing:-38.256533pt;}
.wsb6{word-spacing:-37.294542pt;}
.wsb{word-spacing:-36.295906pt;}
.ws23{word-spacing:-35.913341pt;}
.wsa{word-spacing:-35.865520pt;}
.ws4d{word-spacing:-32.271531pt;}
.ws2{word-spacing:-27.735994pt;}
.ws46{word-spacing:-25.309089pt;}
.ws28{word-spacing:-20.802002pt;}
.ws4{word-spacing:-18.490655pt;}
.ws6a{word-spacing:-14.894544pt;}
.ws91{word-spacing:-14.487272pt;}
.ws5f{word-spacing:-14.312726pt;}
.ws1c{word-spacing:-14.138181pt;}
.wsa8{word-spacing:-13.905453pt;}
.ws7f{word-spacing:-13.867986pt;}
.wsa9{word-spacing:-13.847272pt;}
.wsb5{word-spacing:-13.789090pt;}
.ws49{word-spacing:-13.614544pt;}
.ws17{word-spacing:-13.556363pt;}
.ws36{word-spacing:-13.498181pt;}
.ws92{word-spacing:-13.439999pt;}
.ws76{word-spacing:-13.323635pt;}
.ws62{word-spacing:-13.090908pt;}
.ws84{word-spacing:-13.032726pt;}
.ws41{word-spacing:-12.916363pt;}
.ws29{word-spacing:-12.863767pt;}
.ws42{word-spacing:-12.858181pt;}
.ws39{word-spacing:-12.683635pt;}
.ws3b{word-spacing:-12.567272pt;}
.ws51{word-spacing:-12.334544pt;}
.ws98{word-spacing:-12.218181pt;}
.ws35{word-spacing:-11.927272pt;}
.ws6b{word-spacing:-11.810908pt;}
.ws97{word-spacing:-11.752726pt;}
.ws5{word-spacing:-11.735479pt;}
.ws9{word-spacing:-11.735326pt;}
.ws6{word-spacing:-11.733107pt;}
.ws1{word-spacing:-11.729360pt;}
.ws7{word-spacing:-11.728922pt;}
.ws73{word-spacing:-11.578181pt;}
.ws71{word-spacing:-11.519999pt;}
.ws6d{word-spacing:-11.487328pt;}
.ws8c{word-spacing:-11.461817pt;}
.wsa2{word-spacing:-11.403635pt;}
.ws6f{word-spacing:-11.346220pt;}
.ws1a{word-spacing:-11.345454pt;}
.ws8e{word-spacing:-11.229090pt;}
.ws8f{word-spacing:-11.170908pt;}
.ws99{word-spacing:-11.112726pt;}
.ws19{word-spacing:-11.054545pt;}
.ws37{word-spacing:-10.996363pt;}
.ws5e{word-spacing:-10.938181pt;}
.ws63{word-spacing:-10.895420pt;}
.ws1f{word-spacing:-10.879999pt;}
.ws1e{word-spacing:-10.821817pt;}
.ws18{word-spacing:-10.763635pt;}
.ws1d{word-spacing:-10.705454pt;}
.ws21{word-spacing:-10.647272pt;}
.ws22{word-spacing:-10.589090pt;}
.ws3f{word-spacing:-10.530908pt;}
.ws20{word-spacing:-10.472726pt;}
.ws5d{word-spacing:-10.414545pt;}
.ws6c{word-spacing:-10.356363pt;}
.ws93{word-spacing:-10.298181pt;}
.ws65{word-spacing:-10.239999pt;}
.ws50{word-spacing:-10.181817pt;}
.ws9f{word-spacing:-10.123636pt;}
.ws79{word-spacing:-10.007272pt;}
.ws3c{word-spacing:-9.949090pt;}
.ws75{word-spacing:-9.890908pt;}
.ws1b{word-spacing:-9.832726pt;}
.ws7b{word-spacing:-9.774545pt;}
.ws4b{word-spacing:-9.658181pt;}
.ws4a{word-spacing:-9.599999pt;}
.ws9e{word-spacing:-9.483636pt;}
.ws14{word-spacing:-9.468497pt;}
.ws44{word-spacing:-9.425454pt;}
.ws90{word-spacing:-9.250908pt;}
.ws33{word-spacing:-9.192727pt;}
.ws11{word-spacing:-9.085932pt;}
.ws60{word-spacing:-9.076363pt;}
.ws66{word-spacing:-8.959999pt;}
.ws7d{word-spacing:-8.901817pt;}
.ws25{word-spacing:-8.875768pt;}
.ws2b{word-spacing:-8.875468pt;}
.ws30{word-spacing:-8.851178pt;}
.ws2a{word-spacing:-8.849965pt;}
.ws2e{word-spacing:-8.848810pt;}
.ws26{word-spacing:-8.848280pt;}
.wsd{word-spacing:-8.846828pt;}
.ws4c{word-spacing:-8.843636pt;}
.ws2c{word-spacing:-8.843564pt;}
.ws27{word-spacing:-8.829874pt;}
.ws2f{word-spacing:-8.824540pt;}
.ws24{word-spacing:-8.800510pt;}
.wse{word-spacing:-8.799008pt;}
.ws95{word-spacing:-8.785454pt;}
.wsf{word-spacing:-8.751187pt;}
.ws9d{word-spacing:-8.727272pt;}
.ws10{word-spacing:-8.559904pt;}
.ws48{word-spacing:-8.319999pt;}
.ws40{word-spacing:-8.145454pt;}
.ws13{word-spacing:-8.129518pt;}
.ws3d{word-spacing:-8.087272pt;}
.ws12{word-spacing:-7.986056pt;}
.ws43{word-spacing:-7.970908pt;}
.ws4f{word-spacing:-7.854545pt;}
.ws61{word-spacing:-7.796363pt;}
.wsaa{word-spacing:-7.679999pt;}
.wsae{word-spacing:-7.621818pt;}
.ws96{word-spacing:-7.505454pt;}
.ws8d{word-spacing:-7.447272pt;}
.ws9c{word-spacing:-7.389090pt;}
.ws3e{word-spacing:-7.330908pt;}
.wsaf{word-spacing:-7.272727pt;}
.ws58{word-spacing:-7.156363pt;}
.ws56{word-spacing:-6.981818pt;}
.ws55{word-spacing:-6.923636pt;}
.ws9b{word-spacing:-6.865454pt;}
.ws89{word-spacing:-6.690909pt;}
.wsa3{word-spacing:-6.632727pt;}
.ws9a{word-spacing:-6.516363pt;}
.ws7e{word-spacing:-6.341818pt;}
.ws8b{word-spacing:-6.283636pt;}
.ws8a{word-spacing:-6.225454pt;}
.wsc{word-spacing:-6.073228pt;}
.wsab{word-spacing:-6.050909pt;}
.ws45{word-spacing:-5.934545pt;}
.ws31{word-spacing:-5.897879pt;}
.ws38{word-spacing:-5.760000pt;}
.ws83{word-spacing:-5.410909pt;}
.ws3a{word-spacing:-5.352727pt;}
.ws57{word-spacing:-5.178181pt;}
.ws64{word-spacing:-5.003636pt;}
.ws52{word-spacing:-4.945454pt;}
.ws2d{word-spacing:-4.877711pt;}
.wsa0{word-spacing:-4.770909pt;}
.ws34{word-spacing:-4.712727pt;}
.ws7c{word-spacing:-4.596363pt;}
.ws94{word-spacing:-4.538181pt;}
.ws54{word-spacing:-4.421818pt;}
.ws53{word-spacing:-4.363636pt;}
.wsb4{word-spacing:-3.549091pt;}
.ws5a{word-spacing:-0.001233pt;}
.ws32{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.000446pt;}
.ws59{word-spacing:0.001508pt;}
.ws5b{word-spacing:0.003631pt;}
.wsb0{word-spacing:0.174545pt;}
.wsb3{word-spacing:2.210909pt;}
.ws8{word-spacing:4.271713pt;}
.wsb2{word-spacing:16.930908pt;}
.wsb1{word-spacing:19.025453pt;}
.wsa4{word-spacing:20.189089pt;}
.wsac{word-spacing:20.945453pt;}
.wsa5{word-spacing:31.534543pt;}
.wsa6{word-spacing:44.916360pt;}
.wsad{word-spacing:73.309085pt;}
.wsa7{word-spacing:284.799976pt;}
._1a{margin-left:-6.733150pt;}
._1f{margin-left:-5.061818pt;}
._2{margin-left:-3.889415pt;}
._3{margin-left:-2.977637pt;}
._0{margin-left:-1.836314pt;}
._5{margin-left:-0.921347pt;}
._6{width:1.004235pt;}
._b{width:2.152727pt;}
._d{width:3.394473pt;}
._18{width:5.248350pt;}
._e{width:10.616182pt;}
._c{width:12.394826pt;}
._11{width:13.905453pt;}
._8{width:14.937586pt;}
._4{width:16.223969pt;}
._14{width:17.285840pt;}
._7{width:19.045390pt;}
._a{width:20.247271pt;}
._16{width:21.821374pt;}
._9{width:22.740323pt;}
._12{width:24.619664pt;}
._23{width:25.599998pt;}
._15{width:26.821816pt;}
._10{width:28.683634pt;}
._1{width:30.574621pt;}
._17{width:31.467595pt;}
._19{width:32.847220pt;}
._f{width:34.385452pt;}
._13{width:38.256533pt;}
._25{width:39.505451pt;}
._20{width:44.101815pt;}
._2a{width:46.312723pt;}
._26{width:51.549087pt;}
._1b{width:53.883532pt;}
._29{width:58.879995pt;}
._24{width:65.032128pt;}
._28{width:72.087267pt;}
._1d{width:82.269084pt;}
._27{width:137.599989pt;}
._1c{width:141.872765pt;}
._22{width:144.450299pt;}
._21{width:145.501561pt;}
._1e{width:186.267883pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs7{font-size:46.545440pt;}
.fs4{font-size:47.820693pt;}
.fs8{font-size:50.424267pt;}
.fsa{font-size:51.422864pt;}
.fs9{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:100.374667pt;}
.ya8{bottom:103.277333pt;}
.yc4{bottom:103.569333pt;}
.y120{bottom:103.573333pt;}
.y93{bottom:103.574667pt;}
.yeb{bottom:103.586667pt;}
.y65{bottom:103.592000pt;}
.yea{bottom:113.714667pt;}
.yd4{bottom:115.030667pt;}
.y30{bottom:115.540000pt;}
.yc3{bottom:118.181333pt;}
.y11f{bottom:118.185333pt;}
.y92{bottom:118.186667pt;}
.ye9{bottom:118.198667pt;}
.y64{bottom:118.204000pt;}
.ya7{bottom:121.342667pt;}
.y145{bottom:129.661333pt;}
.y2f{bottom:130.152000pt;}
.y11e{bottom:132.797333pt;}
.y91{bottom:132.798667pt;}
.y63{bottom:132.816000pt;}
.yd3{bottom:133.096000pt;}
.ya6{bottom:139.408000pt;}
.yc2{bottom:140.249333pt;}
.y2e{bottom:144.805333pt;}
.y90{bottom:147.410667pt;}
.y144{bottom:147.726667pt;}
.ye8{bottom:148.309333pt;}
.yd2{bottom:151.162667pt;}
.y11d{bottom:156.997333pt;}
.ya5{bottom:157.473333pt;}
.yc1{bottom:158.314667pt;}
.y2d{bottom:159.417333pt;}
.y8f{bottom:162.022667pt;}
.y62{bottom:165.444000pt;}
.y143{bottom:165.792000pt;}
.ye7{bottom:166.374667pt;}
.yd1{bottom:169.228000pt;}
.y11c{bottom:175.062667pt;}
.ya4{bottom:175.538667pt;}
.yc0{bottom:176.380000pt;}
.y2c{bottom:178.744000pt;}
.y61{bottom:183.509333pt;}
.y142{bottom:183.858667pt;}
.ye6{bottom:184.440000pt;}
.yd0{bottom:187.293333pt;}
.y8e{bottom:188.809333pt;}
.y2b{bottom:188.873333pt;}
.y150{bottom:189.414667pt;}
.y11b{bottom:193.128000pt;}
.ya3{bottom:193.605333pt;}
.ybf{bottom:194.446667pt;}
.y60{bottom:201.574667pt;}
.y141{bottom:201.924000pt;}
.ye4{bottom:202.505333pt;}
.ycf{bottom:205.358667pt;}
.y8d{bottom:206.874667pt;}
.y14f{bottom:207.480000pt;}
.ye5{bottom:207.960000pt;}
.y11a{bottom:211.193333pt;}
.ya2{bottom:211.670667pt;}
.ybe{bottom:212.512000pt;}
.y5f{bottom:219.640000pt;}
.y140{bottom:219.989333pt;}
.ye3{bottom:220.572000pt;}
.yce{bottom:223.424000pt;}
.y8c{bottom:224.940000pt;}
.y14e{bottom:225.545333pt;}
.y119{bottom:229.260000pt;}
.ya1{bottom:229.736000pt;}
.ybd{bottom:230.577333pt;}
.y5d{bottom:237.705333pt;}
.y13f{bottom:238.054667pt;}
.ye1{bottom:238.637333pt;}
.y2a{bottom:240.233333pt;}
.ycd{bottom:241.490667pt;}
.y8b{bottom:243.005333pt;}
.y5e{bottom:243.160000pt;}
.y14d{bottom:243.612000pt;}
.ye2{bottom:244.092000pt;}
.y118{bottom:247.325333pt;}
.ya0{bottom:247.801333pt;}
.ybc{bottom:248.642667pt;}
.y5c{bottom:255.772000pt;}
.y13e{bottom:256.120000pt;}
.ye0{bottom:256.702667pt;}
.y29{bottom:258.298667pt;}
.ycc{bottom:259.556000pt;}
.y8a{bottom:261.072000pt;}
.y14c{bottom:261.677333pt;}
.y117{bottom:265.390667pt;}
.y9f{bottom:265.866667pt;}
.ybb{bottom:266.708000pt;}
.y5b{bottom:273.837333pt;}
.y13d{bottom:274.185333pt;}
.ydf{bottom:274.768000pt;}
.y28{bottom:276.364000pt;}
.ycb{bottom:277.621333pt;}
.y89{bottom:279.137333pt;}
.y14b{bottom:279.742667pt;}
.y116{bottom:283.456000pt;}
.y9e{bottom:283.932000pt;}
.yb9{bottom:284.774667pt;}
.yba{bottom:290.229333pt;}
.y5a{bottom:291.902667pt;}
.y13c{bottom:292.252000pt;}
.yde{bottom:292.833333pt;}
.y27{bottom:294.429333pt;}
.yca{bottom:295.686667pt;}
.y88{bottom:297.202667pt;}
.y14a{bottom:297.808000pt;}
.y115{bottom:301.521333pt;}
.y9d{bottom:301.998667pt;}
.yb8{bottom:302.840000pt;}
.y59{bottom:309.968000pt;}
.y13b{bottom:310.317333pt;}
.ydd{bottom:310.900000pt;}
.y26{bottom:312.496000pt;}
.yc9{bottom:313.752000pt;}
.y87{bottom:315.268000pt;}
.y149{bottom:315.873333pt;}
.y114{bottom:319.588000pt;}
.y9c{bottom:320.064000pt;}
.yb7{bottom:320.905333pt;}
.y13a{bottom:328.382667pt;}
.ydc{bottom:328.965333pt;}
.y25{bottom:330.561333pt;}
.yc8{bottom:331.818667pt;}
.y86{bottom:333.333333pt;}
.y148{bottom:333.940000pt;}
.y113{bottom:337.653333pt;}
.y9b{bottom:338.129333pt;}
.yb6{bottom:338.970667pt;}
.y58{bottom:342.385333pt;}
.y139{bottom:346.448000pt;}
.ydb{bottom:347.030667pt;}
.y24{bottom:348.626667pt;}
.y85{bottom:351.400000pt;}
.y147{bottom:352.005333pt;}
.y112{bottom:355.718667pt;}
.y9a{bottom:356.194667pt;}
.yb5{bottom:357.036000pt;}
.y138{bottom:364.513333pt;}
.yda{bottom:365.096000pt;}
.y23{bottom:366.692000pt;}
.y146{bottom:370.070667pt;}
.y111{bottom:373.784000pt;}
.y99{bottom:374.260000pt;}
.yb4{bottom:375.102667pt;}
.yc7{bottom:381.113333pt;}
.yec{bottom:381.472000pt;}
.y137{bottom:382.580000pt;}
.yd9{bottom:383.161333pt;}
.y22{bottom:384.757333pt;}
.y84{bottom:387.530667pt;}
.y57{bottom:388.136000pt;}
.y110{bottom:391.849333pt;}
.y98{bottom:392.326667pt;}
.yb3{bottom:393.168000pt;}
.yc6{bottom:397.053333pt;}
.y136{bottom:400.645333pt;}
.y21{bottom:402.824000pt;}
.y83{bottom:405.596000pt;}
.y55{bottom:406.201333pt;}
.y10f{bottom:409.916000pt;}
.yb2{bottom:411.233333pt;}
.y56{bottom:411.656000pt;}
.y135{bottom:418.710667pt;}
.y20{bottom:420.889333pt;}
.y82{bottom:423.661333pt;}
.y54{bottom:424.268000pt;}
.y97{bottom:424.744000pt;}
.y10e{bottom:427.981333pt;}
.yb1{bottom:429.298667pt;}
.yd8{bottom:435.458667pt;}
.y134{bottom:436.776000pt;}
.y1f{bottom:438.954667pt;}
.y53{bottom:442.333333pt;}
.y81{bottom:445.712000pt;}
.y10d{bottom:446.046667pt;}
.yb0{bottom:447.364000pt;}
.yd7{bottom:451.398667pt;}
.y133{bottom:454.841333pt;}
.y1e{bottom:457.020000pt;}
.y52{bottom:460.398667pt;}
.y10c{bottom:464.112000pt;}
.yaf{bottom:465.430667pt;}
.y96{bottom:470.494667pt;}
.y132{bottom:472.908000pt;}
.y1d{bottom:475.085333pt;}
.y80{bottom:475.733333pt;}
.y51{bottom:478.464000pt;}
.y10b{bottom:482.177333pt;}
.yad{bottom:483.496000pt;}
.y95{bottom:488.560000pt;}
.yae{bottom:488.950667pt;}
.y131{bottom:490.973333pt;}
.y1c{bottom:493.152000pt;}
.y7f{bottom:493.798667pt;}
.y50{bottom:496.529333pt;}
.y10a{bottom:500.244000pt;}
.yac{bottom:501.561333pt;}
.y94{bottom:506.625333pt;}
.y7e{bottom:511.864000pt;}
.y4f{bottom:514.596000pt;}
.y109{bottom:518.309333pt;}
.yab{bottom:519.626667pt;}
.y130{bottom:523.390667pt;}
.y1b{bottom:525.569333pt;}
.y7d{bottom:529.930667pt;}
.y4e{bottom:532.661333pt;}
.y108{bottom:536.374667pt;}
.yaa{bottom:537.692000pt;}
.y7c{bottom:547.996000pt;}
.y4d{bottom:550.726667pt;}
.y107{bottom:554.440000pt;}
.y7b{bottom:566.061333pt;}
.y4c{bottom:568.792000pt;}
.y12f{bottom:569.141333pt;}
.y106{bottom:572.505333pt;}
.ya9{bottom:578.945333pt;}
.y7a{bottom:584.126667pt;}
.y4b{bottom:586.857333pt;}
.y12e{bottom:587.206667pt;}
.y105{bottom:590.572000pt;}
.y1a{bottom:591.501333pt;}
.y79{bottom:602.192000pt;}
.y4a{bottom:604.924000pt;}
.y12d{bottom:605.272000pt;}
.y19{bottom:606.113333pt;}
.y104{bottom:608.637333pt;}
.y78{bottom:620.258667pt;}
.y49{bottom:622.989333pt;}
.y103{bottom:626.702667pt;}
.y18{bottom:630.877333pt;}
.y12c{bottom:637.689333pt;}
.y77{bottom:638.324000pt;}
.y47{bottom:641.054667pt;}
.y102{bottom:644.768000pt;}
.y17{bottom:645.489333pt;}
.y48{bottom:646.509333pt;}
.y76{bottom:656.389333pt;}
.y46{bottom:659.120000pt;}
.y16{bottom:660.101333pt;}
.y101{bottom:662.833333pt;}
.y74{bottom:674.454667pt;}
.y15{bottom:674.713333pt;}
.y45{bottom:677.185333pt;}
.y75{bottom:679.909333pt;}
.y100{bottom:680.900000pt;}
.y12b{bottom:683.440000pt;}
.yd6{bottom:685.589333pt;}
.y14{bottom:689.325333pt;}
.y73{bottom:692.520000pt;}
.y44{bottom:695.252000pt;}
.yff{bottom:698.965333pt;}
.y12a{bottom:701.505333pt;}
.yd5{bottom:701.529333pt;}
.y13{bottom:703.937333pt;}
.y72{bottom:710.586667pt;}
.yc5{bottom:713.096000pt;}
.y43{bottom:713.317333pt;}
.yfe{bottom:717.030667pt;}
.y12{bottom:718.549333pt;}
.y129{bottom:719.572000pt;}
.y70{bottom:728.652000pt;}
.y42{bottom:731.382667pt;}
.y11{bottom:733.161333pt;}
.y71{bottom:734.106667pt;}
.yfd{bottom:735.096000pt;}
.y6e{bottom:746.717333pt;}
.y10{bottom:747.773333pt;}
.y41{bottom:749.448000pt;}
.y128{bottom:751.989333pt;}
.y6f{bottom:752.172000pt;}
.yfb{bottom:753.161333pt;}
.yfc{bottom:758.616000pt;}
.yf{bottom:762.384000pt;}
.y6c{bottom:764.782667pt;}
.y40{bottom:767.513333pt;}
.y6d{bottom:770.237333pt;}
.yf9{bottom:771.228000pt;}
.yfa{bottom:776.681333pt;}
.ye{bottom:776.996000pt;}
.y6b{bottom:782.848000pt;}
.y3f{bottom:785.580000pt;}
.yf8{bottom:789.293333pt;}
.yd{bottom:791.608000pt;}
.y127{bottom:797.740000pt;}
.y6a{bottom:800.914667pt;}
.y3e{bottom:803.645333pt;}
.yc{bottom:806.220000pt;}
.yf7{bottom:807.358667pt;}
.y126{bottom:815.805333pt;}
.y69{bottom:818.980000pt;}
.yb{bottom:820.832000pt;}
.y3d{bottom:821.710667pt;}
.yf6{bottom:825.424000pt;}
.y125{bottom:833.870667pt;}
.y68{bottom:837.045333pt;}
.y3c{bottom:839.776000pt;}
.yf5{bottom:843.489333pt;}
.y124{bottom:851.936000pt;}
.y67{bottom:855.110667pt;}
.y3b{bottom:857.841333pt;}
.ya{bottom:860.948000pt;}
.yf4{bottom:861.556000pt;}
.y123{bottom:870.001333pt;}
.y3a{bottom:875.908000pt;}
.yf3{bottom:879.621333pt;}
.y9{bottom:880.044000pt;}
.y122{bottom:888.068000pt;}
.y8{bottom:892.829333pt;}
.y39{bottom:893.973333pt;}
.y7{bottom:897.312000pt;}
.yf2{bottom:897.686667pt;}
.y66{bottom:907.421333pt;}
.y6{bottom:910.097333pt;}
.y38{bottom:912.038667pt;}
.yf1{bottom:915.752000pt;}
.y121{bottom:920.485333pt;}
.y5{bottom:929.192000pt;}
.y37{bottom:930.104000pt;}
.yf0{bottom:933.817333pt;}
.y36{bottom:948.169333pt;}
.yef{bottom:951.884000pt;}
.y3{bottom:955.261333pt;}
.y4{bottom:961.238667pt;}
.y35{bottom:966.236000pt;}
.yee{bottom:969.949333pt;}
.y34{bottom:984.301333pt;}
.yed{bottom:988.014667pt;}
.y2{bottom:989.798667pt;}
.y33{bottom:1002.366667pt;}
.y1{bottom:1019.022667pt;}
.y32{bottom:1020.432000pt;}
.hc{height:22.252538pt;}
.h6{height:22.316299pt;}
.hf{height:23.463994pt;}
.h5{height:29.755077pt;}
.h4{height:31.285338pt;}
.h7{height:33.474485pt;}
.h10{height:34.257444pt;}
.h9{height:35.196030pt;}
.h11{height:36.658442pt;}
.h14{height:37.384422pt;}
.h12{height:37.618929pt;}
.h8{height:40.610906pt;}
.h15{height:40.727269pt;}
.he{height:41.077976pt;}
.hd{height:41.843107pt;}
.hb{height:42.821815pt;}
.h3{height:46.928027pt;}
.ha{height:53.406121pt;}
.h13{height:56.076111pt;}
.h2{height:64.087345pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.196000pt;}
.x14{left:96.514667pt;}
.xb{left:100.053333pt;}
.x73{left:101.141333pt;}
.x77{left:102.764000pt;}
.x68{left:103.926667pt;}
.x37{left:106.210667pt;}
.xd{left:110.545333pt;}
.x43{left:111.558667pt;}
.x74{left:114.669333pt;}
.x75{left:121.466667pt;}
.x78{left:127.156000pt;}
.x76{left:134.994667pt;}
.x7f{left:149.221333pt;}
.x39{left:152.160000pt;}
.x15{left:153.401333pt;}
.xc{left:155.664000pt;}
.x40{left:182.792000pt;}
.x5f{left:188.100000pt;}
.x87{left:192.506667pt;}
.x24{left:197.656000pt;}
.x88{left:199.342667pt;}
.x71{left:201.666667pt;}
.x25{left:204.690667pt;}
.x2{left:207.545333pt;}
.x61{left:208.701333pt;}
.x8c{left:209.833333pt;}
.x72{left:213.113333pt;}
.x36{left:218.261333pt;}
.x3{left:227.592000pt;}
.x16{left:236.769333pt;}
.x17{left:243.532000pt;}
.x5b{left:245.149333pt;}
.x57{left:248.482667pt;}
.x62{left:252.644000pt;}
.x58{left:254.686667pt;}
.x89{left:259.732000pt;}
.x59{left:266.133333pt;}
.x44{left:267.672000pt;}
.x8b{left:268.756000pt;}
.x7d{left:272.450667pt;}
.x55{left:278.049333pt;}
.x7c{left:288.596000pt;}
.x83{left:294.885333pt;}
.x4b{left:295.933333pt;}
.x60{left:301.206667pt;}
.x48{left:310.326667pt;}
.x31{left:311.369333pt;}
.x4{left:314.612000pt;}
.x82{left:316.226667pt;}
.x32{left:317.406667pt;}
.x5{left:320.016000pt;}
.x50{left:323.846667pt;}
.x63{left:328.818667pt;}
.x80{left:339.886667pt;}
.x35{left:346.645333pt;}
.x3e{left:348.209333pt;}
.x3d{left:355.470667pt;}
.x45{left:357.925333pt;}
.x38{left:360.349333pt;}
.x2f{left:365.950667pt;}
.x5a{left:367.673333pt;}
.x79{left:370.240000pt;}
.x33{left:375.573333pt;}
.x3f{left:377.253333pt;}
.x26{left:378.957333pt;}
.x84{left:389.104000pt;}
.x56{left:390.620000pt;}
.x3a{left:391.776000pt;}
.x85{left:395.817333pt;}
.x12{left:398.580000pt;}
.x5c{left:401.268000pt;}
.x13{left:405.342667pt;}
.x3b{left:406.297333pt;}
.x20{left:410.796000pt;}
.x27{left:412.065333pt;}
.x6a{left:413.962667pt;}
.x21{left:416.832000pt;}
.x2b{left:421.286667pt;}
.x30{left:422.814667pt;}
.x6b{left:425.409333pt;}
.x2c{left:427.322667pt;}
.x6c{left:430.690667pt;}
.x2d{left:432.454667pt;}
.x3c{left:442.604000pt;}
.x6d{left:444.218667pt;}
.x2e{left:445.981333pt;}
.x6{left:448.805333pt;}
.x4c{left:451.726667pt;}
.x7{left:454.209333pt;}
.x51{left:461.808000pt;}
.x7e{left:463.116000pt;}
.x52{left:468.613333pt;}
.x66{left:472.366667pt;}
.x34{left:481.913333pt;}
.x67{left:483.813333pt;}
.x18{left:486.432000pt;}
.x49{left:491.177333pt;}
.x46{left:492.860000pt;}
.x19{left:496.229333pt;}
.x28{left:499.198667pt;}
.xe{left:500.265333pt;}
.x1a{left:501.512000pt;}
.x41{left:502.697333pt;}
.x29{left:504.868000pt;}
.xf{left:507.028000pt;}
.x1b{left:508.274667pt;}
.x2a{left:510.904000pt;}
.x10{left:513.832000pt;}
.x1c{left:515.300000pt;}
.x11{left:520.596000pt;}
.x5d{left:523.714667pt;}
.x22{left:524.648000pt;}
.x1d{left:528.826667pt;}
.x23{left:530.685333pt;}
.x6e{left:542.417333pt;}
.x4d{left:545.217333pt;}
.x6f{left:547.698667pt;}
.x7a{left:553.644000pt;}
.x53{left:555.746667pt;}
.x42{left:557.178667pt;}
.x70{left:561.226667pt;}
.x8{left:565.702667pt;}
.x9{left:575.092000pt;}
.x64{left:583.905333pt;}
.x54{left:587.861333pt;}
.x4a{left:589.209333pt;}
.x65{left:595.353333pt;}
.x7b{left:620.910667pt;}
.x5e{left:632.632000pt;}
.x8a{left:633.802667pt;}
.x86{left:641.064000pt;}
.x47{left:649.525333pt;}
.x69{left:669.333333pt;}
.x1e{left:678.044000pt;}
.x81{left:681.000000pt;}
.xa{left:685.052000pt;}
.x4e{left:690.074667pt;}
.x1f{left:691.570667pt;}
.x4f{left:696.110667pt;}
}




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