
    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_2cb82e1820d4afab552bf80e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_65ba017c29963e76b3faaf14.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_00c17cda1118bb299af3aba2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_badfa777351caac8ac470c98.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_0c5e1f0e5f6ce2d0568485f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_92249f0d20e9b96c02d9542a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2e59cab00f2a1ed0fa7c7841.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_c4281af967cdbd77d8602c92.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_f397d5e0e2f95bd1e8bc497c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.m1c{transform:matrix(0.170741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170741,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.189383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189383,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.190382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190382,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.191053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191053,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.235064,0.000000,-0.078347,0.237406,0,0);-ms-transform:matrix(0.235064,0.000000,-0.078347,0.237406,0,0);-webkit-transform:matrix(0.235064,0.000000,-0.078347,0.237406,0,0);}
.m1e{transform:matrix(0.236063,0.000000,-0.078680,0.237296,0,0);-ms-transform:matrix(0.236063,0.000000,-0.078680,0.237296,0,0);-webkit-transform:matrix(0.236063,0.000000,-0.078680,0.237296,0,0);}
.m16{transform:matrix(0.237194,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237194,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237194,0.000000,-0.079057,0.237171,0,0);}
.m7{transform:matrix(0.237367,0.000000,-0.079115,0.237152,0,0);-ms-transform:matrix(0.237367,0.000000,-0.079115,0.237152,0,0);-webkit-transform:matrix(0.237367,0.000000,-0.079115,0.237152,0,0);}
.m9{transform:matrix(0.237821,0.000000,-0.079266,0.237101,0,0);-ms-transform:matrix(0.237821,0.000000,-0.079266,0.237101,0,0);-webkit-transform:matrix(0.237821,0.000000,-0.079266,0.237101,0,0);}
.mc{transform:matrix(0.237936,0.000000,-0.079304,0.237088,0,0);-ms-transform:matrix(0.237936,0.000000,-0.079304,0.237088,0,0);-webkit-transform:matrix(0.237936,0.000000,-0.079304,0.237088,0,0);}
.m21{transform:matrix(0.240093,0.000000,-0.080023,0.236847,0,0);-ms-transform:matrix(0.240093,0.000000,-0.080023,0.236847,0,0);-webkit-transform:matrix(0.240093,0.000000,-0.080023,0.236847,0,0);}
.m11{transform:matrix(0.245539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245539,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246299,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247533,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248701,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,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);}
.m3{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254324,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-66.844886px;}
.v8{vertical-align:-38.487932px;}
.v7{vertical-align:-20.545395px;}
.v2{vertical-align:-15.481696px;}
.vc{vertical-align:-13.428573px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:4.857194px;}
.v5{vertical-align:7.518573px;}
.vb{vertical-align:21.000115px;}
.v9{vertical-align:24.000000px;}
.vd{vertical-align:25.857309px;}
.v1{vertical-align:38.487932px;}
.v3{vertical-align:66.118090px;}
.v6{vertical-align:77.691919px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.ls1b{letter-spacing:-0.922422px;}
.ls1a{letter-spacing:-0.801051px;}
.ls25{letter-spacing:-0.535847px;}
.ls22{letter-spacing:-0.192000px;}
.ls23{letter-spacing:-0.024000px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls29{letter-spacing:0.030000px;}
.ls1d{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.150000px;}
.ls21{letter-spacing:0.213872px;}
.ls1c{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.459621px;}
.ls24{letter-spacing:0.497742px;}
.ls27{letter-spacing:0.506301px;}
.ls5{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.706999px;}
.ls16{letter-spacing:0.724142px;}
.ls26{letter-spacing:0.754065px;}
.ls17{letter-spacing:1.196006px;}
.ls2a{letter-spacing:5.340000px;}
.ls28{letter-spacing:33.984000px;}
.ls11{letter-spacing:59.029747px;}
.ls12{letter-spacing:77.499181px;}
.lsd{letter-spacing:203.206830px;}
.ls15{letter-spacing:225.542409px;}
.ls13{letter-spacing:242.682279px;}
.lsf{letter-spacing:289.749683px;}
.ls1e{letter-spacing:351.375315px;}
.ls1f{letter-spacing:458.470335px;}
.ls10{letter-spacing:495.174506px;}
.lse{letter-spacing:517.133512px;}
.ls20{letter-spacing:618.871722px;}
.ls14{letter-spacing:732.808436px;}
.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;}
}
.ws4a{word-spacing:-48.304486px;}
.ws30{word-spacing:-47.056112px;}
.ws16{word-spacing:-46.901770px;}
.wsd{word-spacing:-46.790004px;}
.ws14{word-spacing:-46.405393px;}
.ws49{word-spacing:-45.763036px;}
.ws1b{word-spacing:-45.292970px;}
.ws29{word-spacing:-39.528000px;}
.ws45{word-spacing:-23.203234px;}
.ws9{word-spacing:-18.000000px;}
.ws27{word-spacing:-17.976000px;}
.ws26{word-spacing:-17.808000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws28{word-spacing:-12.000000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws17{word-spacing:-2.366688px;}
.ws38{word-spacing:-1.519567px;}
.ws32{word-spacing:-0.838449px;}
.ws1d{word-spacing:-0.789500px;}
.ws36{word-spacing:-0.590684px;}
.ws2a{word-spacing:-0.582970px;}
.ws13{word-spacing:-0.544148px;}
.ws20{word-spacing:-0.085712px;}
.ws15{word-spacing:-0.085431px;}
.wsc{word-spacing:-0.085228px;}
.wsf{word-spacing:-0.084527px;}
.ws35{word-spacing:-0.084383px;}
.ws11{word-spacing:-0.082642px;}
.ws1c{word-spacing:-0.082501px;}
.ws2c{word-spacing:-0.042716px;}
.ws3a{word-spacing:-0.041750px;}
.wsa{word-spacing:0.000000px;}
.ws2d{word-spacing:0.450416px;}
.ws21{word-spacing:0.715338px;}
.ws25{word-spacing:0.836709px;}
.ws46{word-spacing:17.003264px;}
.ws41{word-spacing:23.047841px;}
.ws33{word-spacing:23.139630px;}
.ws12{word-spacing:24.662365px;}
.ws1a{word-spacing:25.561131px;}
.ws44{word-spacing:73.488128px;}
.wse{word-spacing:88.623520px;}
.ws1e{word-spacing:98.919168px;}
.ws3f{word-spacing:99.803794px;}
.ws48{word-spacing:134.400997px;}
.ws39{word-spacing:146.251832px;}
.ws43{word-spacing:151.483674px;}
.ws34{word-spacing:164.581332px;}
.ws10{word-spacing:172.392012px;}
.ws37{word-spacing:181.384819px;}
.ws42{word-spacing:232.199889px;}
.ws2e{word-spacing:240.834537px;}
.ws31{word-spacing:265.063524px;}
.ws3b{word-spacing:283.177086px;}
.wsb{word-spacing:333.135832px;}
.ws47{word-spacing:369.400992px;}
.ws3d{word-spacing:434.592884px;}
.ws2f{word-spacing:465.796621px;}
.ws3e{word-spacing:489.030583px;}
.ws18{word-spacing:515.227701px;}
.ws19{word-spacing:548.407180px;}
.ws2b{word-spacing:979.454822px;}
.ws40{word-spacing:1010.186069px;}
.ws3c{word-spacing:1040.354886px;}
.ws23{word-spacing:1060.900629px;}
.ws1f{word-spacing:1193.771577px;}
.ws24{word-spacing:1328.905527px;}
.ws22{word-spacing:1483.238281px;}
._62{margin-left:-1338.968027px;}
._5b{margin-left:-1336.862035px;}
._a1{margin-left:-672.290341px;}
._63{margin-left:-621.991938px;}
._8a{margin-left:-581.458240px;}
._9e{margin-left:-546.919357px;}
._7d{margin-left:-526.588306px;}
._ab{margin-left:-518.385684px;}
._8d{margin-left:-508.723247px;}
._8e{margin-left:-491.767951px;}
._9b{margin-left:-484.900999px;}
._50{margin-left:-460.193341px;}
._99{margin-left:-458.463550px;}
._68{margin-left:-416.223697px;}
._61{margin-left:-399.512552px;}
._aa{margin-left:-397.265547px;}
._92{margin-left:-391.178223px;}
._a0{margin-left:-388.901021px;}
._5e{margin-left:-380.518989px;}
._a9{margin-left:-375.493568px;}
._a8{margin-left:-367.269919px;}
._87{margin-left:-361.723333px;}
._84{margin-left:-348.950315px;}
._4e{margin-left:-342.048279px;}
._67{margin-left:-325.761898px;}
._7c{margin-left:-320.088515px;}
._57{margin-left:-304.736567px;}
._52{margin-left:-301.414131px;}
._6b{margin-left:-294.358938px;}
._51{margin-left:-291.017255px;}
._78{margin-left:-281.784100px;}
._64{margin-left:-278.037825px;}
._7b{margin-left:-274.326662px;}
._76{margin-left:-271.799140px;}
._82{margin-left:-266.822409px;}
._36{margin-left:-265.405258px;}
._89{margin-left:-263.427920px;}
._32{margin-left:-261.250889px;}
._3a{margin-left:-257.313791px;}
._46{margin-left:-248.640992px;}
._5a{margin-left:-245.218559px;}
._4a{margin-left:-241.871490px;}
._79{margin-left:-240.388572px;}
._77{margin-left:-239.375225px;}
._91{margin-left:-234.649724px;}
._45{margin-left:-226.285369px;}
._3e{margin-left:-225.263838px;}
._60{margin-left:-224.112097px;}
._59{margin-left:-222.152727px;}
._6c{margin-left:-217.441652px;}
._86{margin-left:-214.103601px;}
._66{margin-left:-212.324080px;}
._7a{margin-left:-211.295960px;}
._3f{margin-left:-207.869884px;}
._3d{margin-left:-206.865579px;}
._80{margin-left:-204.873273px;}
._85{margin-left:-200.268676px;}
._3c{margin-left:-197.576693px;}
._4f{margin-left:-195.944022px;}
._9c{margin-left:-193.109569px;}
._44{margin-left:-191.646230px;}
._7e{margin-left:-188.362540px;}
._a3{margin-left:-186.530058px;}
._47{margin-left:-183.189870px;}
._a2{margin-left:-177.837540px;}
._54{margin-left:-176.595086px;}
._81{margin-left:-174.864620px;}
._3b{margin-left:-168.761008px;}
._37{margin-left:-166.871738px;}
._33{margin-left:-164.015626px;}
._49{margin-left:-161.626938px;}
._43{margin-left:-159.317662px;}
._40{margin-left:-154.821424px;}
._88{margin-left:-153.178787px;}
._34{margin-left:-151.189388px;}
._6a{margin-left:-144.971313px;}
._69{margin-left:-143.621858px;}
._7f{margin-left:-140.810260px;}
._a4{margin-left:-138.663117px;}
._38{margin-left:-132.023754px;}
._65{margin-left:-130.085754px;}
._35{margin-left:-129.074240px;}
._55{margin-left:-123.789213px;}
._5f{margin-left:-122.538402px;}
._9d{margin-left:-119.654714px;}
._53{margin-left:-116.578144px;}
._48{margin-left:-112.893835px;}
._8c{margin-left:-110.805705px;}
._90{margin-left:-108.997804px;}
._9a{margin-left:-103.180377px;}
._39{margin-left:-99.629212px;}
._41{margin-left:-94.568805px;}
._5d{margin-left:-84.670558px;}
._96{margin-left:-77.123183px;}
._5c{margin-left:-69.026913px;}
._58{margin-left:-67.097987px;}
._94{margin-left:-56.609686px;}
._97{margin-left:-45.955602px;}
._98{margin-left:-37.837660px;}
._9{margin-left:-4.752000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._5{width:2.736000px;}
._6{width:3.816000px;}
._42{width:4.969860px;}
._17{width:6.102000px;}
._2d{width:7.110000px;}
._22{width:8.490000px;}
._1a{width:9.816000px;}
._31{width:10.836000px;}
._b4{width:11.880000px;}
._73{width:12.960000px;}
._18{width:14.544000px;}
._19{width:15.912000px;}
._6f{width:16.920000px;}
._4{width:19.770000px;}
._b{width:21.240000px;}
._a{width:22.536000px;}
._2a{width:23.892000px;}
._c{width:24.984000px;}
._1b{width:26.352000px;}
._2c{width:27.534000px;}
._56{width:28.776000px;}
._71{width:29.952000px;}
._25{width:31.176000px;}
._26{width:32.358000px;}
._b2{width:33.552000px;}
._20{width:34.632000px;}
._21{width:35.640000px;}
._6d{width:36.864000px;}
._28{width:37.944000px;}
._29{width:38.952000px;}
._7{width:40.320000px;}
._8{width:41.646000px;}
._2b{width:43.200000px;}
._f{width:44.496000px;}
._27{width:46.008000px;}
._af{width:47.304000px;}
._14{width:50.316000px;}
._e{width:52.128000px;}
._24{width:54.072000px;}
._1e{width:56.016000px;}
._1f{width:57.240000px;}
._1c{width:58.608000px;}
._1d{width:59.904000px;}
._6e{width:60.984000px;}
._70{width:62.310000px;}
._75{width:63.546000px;}
._23{width:65.880000px;}
._ae{width:67.032000px;}
._4b{width:68.748000px;}
._2e{width:69.768000px;}
._12{width:73.512000px;}
._13{width:74.694000px;}
._b0{width:75.888000px;}
._2f{width:77.424000px;}
._30{width:78.432000px;}
._8f{width:83.340000px;}
._ad{width:86.040000px;}
._b1{width:90.936000px;}
._74{width:98.064000px;}
._83{width:102.528000px;}
._b6{width:103.608000px;}
._15{width:107.208000px;}
._16{width:108.504000px;}
._72{width:110.304000px;}
._ac{width:132.264000px;}
._d{width:135.144000px;}
._93{width:136.512000px;}
._b3{width:138.744000px;}
._8b{width:155.232000px;}
._a5{width:157.176000px;}
._b8{width:158.502000px;}
._10{width:163.224000px;}
._4c{width:174.874614px;}
._a6{width:193.069504px;}
._11{width:211.464000px;}
._a7{width:314.171992px;}
._b7{width:382.968000px;}
._b5{width:447.768000px;}
._95{width:612.758565px;}
._9f{width:638.256279px;}
._4d{width:1339.587348px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:41.749830px;}
.fsa{font-size:42.262965px;}
.fs20{font-size:42.264542px;}
.fsc{font-size:42.716234px;}
.fs13{font-size:42.855598px;}
.fs15{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs12{font-size:82.500855px;}
.fs9{font-size:82.642255px;}
.fs1b{font-size:83.357078px;}
.fs0{font-size:84.000000px;}
.fs16{font-size:84.383496px;}
.fs8{font-size:84.527128px;}
.fs1f{font-size:84.530281px;}
.fs6{font-size:85.227694px;}
.fsb{font-size:85.431275px;}
.fs14{font-size:85.712409px;}
.fs22{font-size:87.986314px;}
.fs17{font-size:88.947956px;}
.fs21{font-size:89.055629px;}
.fs18{font-size:89.748707px;}
.fsd{font-size:90.059757px;}
.fse{font-size:90.078930px;}
.fs11{font-size:90.083778px;}
.fs1c{font-size:107.154027px;}
.fs19{font-size:108.008337px;}
.fs7{font-size:109.417267px;}
.fs1d{font-size:109.421349px;}
.fs10{font-size:109.818899px;}
.fsf{font-size:110.540921px;}
.fs1e{font-size:121.582601px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y1c{bottom:3.900000px;}
.y65{bottom:3.954206px;}
.y92{bottom:3.954234px;}
.y5d{bottom:4.749861px;}
.y9d{bottom:4.785655px;}
.y98{bottom:4.785686px;}
.yc3{bottom:5.250000px;}
.y7e{bottom:5.317153px;}
.ye9{bottom:5.317154px;}
.yec{bottom:5.317157px;}
.y6f{bottom:5.317158px;}
.y72{bottom:5.317160px;}
.y7{bottom:5.400000px;}
.y108{bottom:5.642884px;}
.y107{bottom:5.642888px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y106{bottom:6.857163px;}
.y7c{bottom:7.559746px;}
.y6d{bottom:7.559753px;}
.y110{bottom:7.763725px;}
.y111{bottom:7.763738px;}
.y112{bottom:7.763741px;}
.y10e{bottom:7.836143px;}
.y10f{bottom:7.836148px;}
.y85{bottom:8.898215px;}
.y8e{bottom:9.115109px;}
.y87{bottom:9.115112px;}
.y8b{bottom:9.115115px;}
.yf9{bottom:9.286974px;}
.y66{bottom:9.286976px;}
.yfa{bottom:9.286978px;}
.y59{bottom:9.286979px;}
.yfd{bottom:9.287013px;}
.y93{bottom:9.287042px;}
.y58{bottom:9.359555px;}
.yf4{bottom:9.417201px;}
.yf5{bottom:9.417215px;}
.y51{bottom:9.433332px;}
.ye4{bottom:9.433335px;}
.y100{bottom:9.433353px;}
.y116{bottom:12.107193px;}
.y117{bottom:12.107197px;}
.y118{bottom:12.107205px;}
.y109{bottom:12.107224px;}
.y115{bottom:12.178645px;}
.y105{bottom:12.178668px;}
.ybc{bottom:14.250000px;}
.y7d{bottom:14.866337px;}
.ye8{bottom:14.866338px;}
.yeb{bottom:14.866341px;}
.y71{bottom:14.866344px;}
.y6e{bottom:18.736773px;}
.ya1{bottom:19.055295px;}
.ya{bottom:19.950000px;}
.y84{bottom:20.292738px;}
.y6{bottom:20.550000px;}
.y7a{bottom:24.089268px;}
.y6a{bottom:24.089270px;}
.yee{bottom:24.089274px;}
.y74{bottom:24.089277px;}
.y6c{bottom:24.089279px;}
.y75{bottom:24.089289px;}
.yef{bottom:24.089295px;}
.y1b{bottom:24.600000px;}
.y83{bottom:25.609395px;}
.y86{bottom:25.609419px;}
.y8d{bottom:25.609446px;}
.y88{bottom:25.609450px;}
.y82{bottom:25.718370px;}
.yc1{bottom:25.950000px;}
.y89{bottom:33.494977px;}
.y9{bottom:33.900000px;}
.y8a{bottom:35.231425px;}
.y7f{bottom:35.520781px;}
.yea{bottom:35.520783px;}
.yed{bottom:35.520786px;}
.y70{bottom:35.520787px;}
.y73{bottom:35.520789px;}
.y5{bottom:36.000000px;}
.y7b{bottom:37.328819px;}
.yf0{bottom:37.328822px;}
.y6b{bottom:37.328826px;}
.y8c{bottom:38.847487px;}
.y1a{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y19{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y18{bottom:86.700000px;}
.y17{bottom:107.400000px;}
.y11f{bottom:109.537500px;}
.ye2{bottom:110.737500px;}
.y3b{bottom:112.687500px;}
.y80{bottom:115.687500px;}
.y79{bottom:115.725000px;}
.y136{bottom:126.637500px;}
.y11e{bottom:133.237500px;}
.ye1{bottom:134.587500px;}
.y3a{bottom:136.537500px;}
.y135{bottom:150.495000px;}
.yba{bottom:153.645000px;}
.y11d{bottom:157.095000px;}
.ye0{bottom:158.430000px;}
.y39{bottom:160.395000px;}
.y134{bottom:174.345000px;}
.yb9{bottom:177.495000px;}
.y11c{bottom:180.930000px;}
.y78{bottom:181.995000px;}
.ydf{bottom:182.130000px;}
.y38{bottom:184.095000px;}
.y133{bottom:198.195000px;}
.yb8{bottom:201.195000px;}
.y11b{bottom:204.645000px;}
.y77{bottom:205.695000px;}
.yde{bottom:205.995000px;}
.y37{bottom:207.945000px;}
.y132{bottom:221.895000px;}
.yb7{bottom:225.045000px;}
.y76{bottom:225.630000px;}
.y69{bottom:225.674980px;}
.y11a{bottom:228.495000px;}
.ydd{bottom:229.830000px;}
.y36{bottom:231.795000px;}
.y131{bottom:245.745000px;}
.yb6{bottom:248.895000px;}
.y119{bottom:252.345000px;}
.y114{bottom:252.374980px;}
.ydc{bottom:253.545000px;}
.y35{bottom:255.495000px;}
.y130{bottom:269.595000px;}
.yb5{bottom:272.595000px;}
.ydb{bottom:277.395000px;}
.y34{bottom:279.345000px;}
.y113{bottom:290.745000px;}
.y68{bottom:291.795000px;}
.y12f{bottom:293.295000px;}
.yb4{bottom:296.445000px;}
.yda{bottom:301.245000px;}
.y33{bottom:303.195000px;}
.y67{bottom:311.745000px;}
.y64{bottom:311.774980px;}
.y10c{bottom:314.580000px;}
.y10d{bottom:314.624980px;}
.y12e{bottom:317.130000px;}
.yb3{bottom:320.295000px;}
.yd9{bottom:324.945000px;}
.y32{bottom:326.880000px;}
.y12d{bottom:340.995000px;}
.yb2{bottom:343.995000px;}
.y63{bottom:347.745000px;}
.yd8{bottom:348.795000px;}
.y10b{bottom:350.595000px;}
.y31{bottom:350.745000px;}
.y12c{bottom:364.695000px;}
.yb1{bottom:367.830000px;}
.y10a{bottom:370.545000px;}
.y104{bottom:370.574959px;}
.y62{bottom:371.445000px;}
.yd7{bottom:372.645000px;}
.y30{bottom:374.580000px;}
.y12b{bottom:388.575000px;}
.yb0{bottom:391.725000px;}
.y61{bottom:395.325000px;}
.yd6{bottom:396.375000px;}
.y2f{bottom:398.325000px;}
.y103{bottom:408.975000px;}
.y12a{bottom:412.425000px;}
.yaf{bottom:415.425000px;}
.y60{bottom:419.175000px;}
.yd5{bottom:420.225000px;}
.y2e{bottom:422.175000px;}
.y102{bottom:432.825000px;}
.y129{bottom:436.125000px;}
.yae{bottom:439.275000px;}
.y5f{bottom:443.025000px;}
.yd4{bottom:444.075000px;}
.y2d{bottom:446.025000px;}
.yff{bottom:456.674959px;}
.y101{bottom:456.675000px;}
.y128{bottom:459.975000px;}
.y5c{bottom:462.824959px;}
.y5e{bottom:462.825000px;}
.yad{bottom:463.125000px;}
.yd3{bottom:467.775000px;}
.y2c{bottom:469.725000px;}
.y127{bottom:483.825000px;}
.yac{bottom:486.975000px;}
.yfc{bottom:491.324959px;}
.yfe{bottom:491.325000px;}
.yd2{bottom:491.625000px;}
.y5b{bottom:492.375000px;}
.y2b{bottom:493.575000px;}
.y126{bottom:507.525000px;}
.yab{bottom:510.675000px;}
.y57{bottom:512.324959px;}
.y5a{bottom:512.325000px;}
.yd1{bottom:515.475000px;}
.y2a{bottom:517.425000px;}
.yfb{bottom:527.175000px;}
.y125{bottom:531.375000px;}
.yaa{bottom:534.525000px;}
.yd0{bottom:539.175000px;}
.y29{bottom:541.275000px;}
.y56{bottom:548.175000px;}
.yf8{bottom:551.024959px;}
.yf7{bottom:551.025000px;}
.y124{bottom:555.225000px;}
.ya9{bottom:558.375000px;}
.ycf{bottom:563.025000px;}
.y28{bottom:564.975000px;}
.y55{bottom:572.025000px;}
.y123{bottom:579.075000px;}
.ya8{bottom:582.075000px;}
.yce{bottom:586.875000px;}
.yf6{bottom:587.025000px;}
.y27{bottom:588.825000px;}
.y54{bottom:595.875000px;}
.y122{bottom:602.775000px;}
.ya7{bottom:605.925000px;}
.yf3{bottom:610.724959px;}
.ycd{bottom:610.725000px;}
.y26{bottom:612.675000px;}
.y53{bottom:619.575000px;}
.y121{bottom:626.625000px;}
.ya6{bottom:629.775000px;}
.ycc{bottom:634.425000px;}
.y25{bottom:636.375000px;}
.y50{bottom:639.674959px;}
.y52{bottom:639.675000px;}
.yf2{bottom:648.675000px;}
.y120{bottom:650.475000px;}
.ya5{bottom:653.475000px;}
.ycb{bottom:658.275000px;}
.y24{bottom:660.225000px;}
.ye7{bottom:672.374959px;}
.yf1{bottom:672.375000px;}
.y4f{bottom:674.175000px;}
.ya4{bottom:677.325000px;}
.yca{bottom:682.125000px;}
.y23{bottom:684.075000px;}
.y4e{bottom:698.025000px;}
.ya3{bottom:701.175000px;}
.yc9{bottom:705.825000px;}
.y22{bottom:707.775000px;}
.ya0{bottom:720.974919px;}
.ya2{bottom:720.975000px;}
.y4d{bottom:721.875000px;}
.yc8{bottom:729.675000px;}
.y21{bottom:731.625000px;}
.ye6{bottom:738.720000px;}
.y4c{bottom:745.620000px;}
.yc7{bottom:753.570000px;}
.y20{bottom:755.520000px;}
.ye3{bottom:758.624919px;}
.ye5{bottom:758.670000px;}
.y9f{bottom:758.970000px;}
.y4b{bottom:769.470000px;}
.yc6{bottom:777.270000px;}
.y9c{bottom:778.724919px;}
.y9e{bottom:778.770000px;}
.y1f{bottom:788.220000px;}
.y4a{bottom:793.320000px;}
.yc5{bottom:801.120000px;}
.y1e{bottom:805.020000px;}
.y9b{bottom:808.320000px;}
.y49{bottom:817.020000px;}
.yc4{bottom:818.670000px;}
.y9a{bottom:832.170000px;}
.y48{bottom:840.870000px;}
.y1d{bottom:846.420000px;}
.y97{bottom:851.924919px;}
.y99{bottom:851.970000px;}
.yc2{bottom:860.820000px;}
.y47{bottom:864.720000px;}
.y16{bottom:867.120000px;}
.y96{bottom:881.520000px;}
.y46{bottom:888.420000px;}
.yc0{bottom:904.320000px;}
.y95{bottom:905.370000px;}
.y45{bottom:912.270000px;}
.y94{bottom:929.220000px;}
.y44{bottom:936.120000px;}
.ybf{bottom:947.820000px;}
.y91{bottom:952.874919px;}
.y90{bottom:952.920000px;}
.y43{bottom:959.970000px;}
.ybe{bottom:969.270000px;}
.y42{bottom:983.670000px;}
.y81{bottom:988.874919px;}
.y8f{bottom:988.920000px;}
.y15{bottom:994.920000px;}
.y41{bottom:1007.520000px;}
.ybd{bottom:1011.420000px;}
.y14{bottom:1014.120000px;}
.y40{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.ybb{bottom:1053.570000px;}
.y3f{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y3e{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3d{bottom:1102.800000px;}
.y3c{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h16{height:22.500274px;}
.h2d{height:22.500315px;}
.h11{height:27.749754px;}
.h33{height:27.749795px;}
.h18{height:28.949245px;}
.h13{height:28.949265px;}
.h2c{height:28.949306px;}
.h43{height:28.950325px;}
.h35{height:30.899655px;}
.h2f{height:30.899696px;}
.h49{height:31.500488px;}
.h3c{height:31.500508px;}
.h27{height:39.566746px;}
.h3e{height:40.954789px;}
.h10{height:41.400000px;}
.h19{height:41.478789px;}
.h29{height:41.902790px;}
.h31{height:42.750000px;}
.h6{height:45.300000px;}
.h2a{height:45.316478px;}
.h30{height:45.569664px;}
.h3f{height:45.811983px;}
.h3{height:48.600000px;}
.he{height:52.066406px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h21{height:59.249039px;}
.h1b{height:59.249059px;}
.h34{height:59.249079px;}
.h24{height:59.249120px;}
.h1e{height:63.650691px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.hb{height:70.664062px;}
.h32{height:71.109375px;}
.ha{height:72.562500px;}
.h4c{height:74.004654px;}
.h47{height:78.297824px;}
.h1f{height:79.132387px;}
.h37{height:79.392793px;}
.h2e{height:80.970078px;}
.h17{height:81.068501px;}
.h4b{height:81.499042px;}
.h4a{height:81.769712px;}
.h42{height:81.810413px;}
.h3a{height:82.389782px;}
.h2{height:82.441406px;}
.h48{height:82.489516px;}
.h39{height:82.776584px;}
.h38{height:82.817787px;}
.h1a{height:82.917480px;}
.h46{height:82.920574px;}
.h15{height:82.958753px;}
.h3b{height:83.131493px;}
.h20{height:83.419609px;}
.h23{height:83.437368px;}
.h2b{height:83.441859px;}
.h12{height:83.646321px;}
.h1c{height:83.804410px;}
.h1d{height:83.846124px;}
.h36{height:84.122042px;}
.h3d{height:100.044832px;}
.h14{height:101.349881px;}
.h44{height:101.353662px;}
.h25{height:102.390687px;}
.h41{height:103.068431px;}
.h26{height:109.240473px;}
.h40{height:111.682246px;}
.h45{height:112.618259px;}
.h28{height:119.594709px;}
.hd{height:124.185000px;}
.h22{height:145.250477px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w10{width:22.499403px;}
.w14{width:33.600000px;}
.wb{width:55.951675px;}
.w18{width:59.587500px;}
.w16{width:79.500000px;}
.w11{width:82.947804px;}
.w17{width:86.400000px;}
.wa{width:91.948014px;}
.w12{width:92.551835px;}
.wc{width:94.496351px;}
.w15{width:129.787500px;}
.w20{width:133.046022px;}
.w1e{width:152.241041px;}
.w9{width:153.003012px;}
.w19{width:155.549066px;}
.w1b{width:163.953477px;}
.w6{width:178.350000px;}
.we{width:229.503750px;}
.w1d{width:229.503781px;}
.wd{width:232.048484px;}
.w21{width:232.048515px;}
.w1c{width:247.508542px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w1a{width:317.553660px;}
.wf{width:352.794549px;}
.w1f{width:383.242700px;}
.w13{width:395.245451px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:1.049463px;}
.x4a{left:3.285716px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x49{left:14.392618px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1a{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x4d{left:40.804122px;}
.x3{left:42.599987px;}
.x26{left:44.826249px;}
.x22{left:48.416610px;}
.x6e{left:52.504706px;}
.x64{left:58.977864px;}
.x6c{left:67.279150px;}
.x72{left:69.599987px;}
.x69{left:73.978190px;}
.x23{left:75.772235px;}
.x55{left:77.700000px;}
.x2a{left:78.908707px;}
.x50{left:80.333372px;}
.x37{left:83.737898px;}
.x29{left:86.684668px;}
.x30{left:88.652050px;}
.x1b{left:95.699987px;}
.x19{left:100.200000px;}
.x39{left:102.193362px;}
.x18{left:104.700000px;}
.xd{left:106.980000px;}
.x38{left:111.168220px;}
.x2f{left:116.240748px;}
.x6{left:121.687500px;}
.x10{left:126.037487px;}
.xa{left:128.130000px;}
.x3d{left:132.843290px;}
.x33{left:134.657104px;}
.x43{left:137.259761px;}
.x1f{left:139.622141px;}
.x5a{left:142.283821px;}
.x32{left:143.575615px;}
.x2c{left:149.774990px;}
.x35{left:151.124990px;}
.x2e{left:153.584111px;}
.x68{left:157.941735px;}
.x41{left:160.685095px;}
.x3e{left:164.233251px;}
.x31{left:166.499754px;}
.x70{left:169.247143px;}
.x44{left:181.974032px;}
.x1e{left:189.374980px;}
.x40{left:195.837291px;}
.x45{left:198.127853px;}
.x42{left:207.140472px;}
.x56{left:208.245000px;}
.x46{left:210.074829px;}
.x6f{left:213.130449px;}
.x36{left:214.839927px;}
.x2d{left:217.356009px;}
.x28{left:218.624980px;}
.x21{left:219.824980px;}
.x3f{left:236.498849px;}
.x25{left:237.824980px;}
.x5f{left:254.937437px;}
.x5d{left:273.351328px;}
.x5c{left:282.281548px;}
.x57{left:288.495000px;}
.x5e{left:292.303716px;}
.x27{left:293.744987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x24{left:311.744987px;}
.x2b{left:313.094987px;}
.x11{left:324.644987px;}
.x3c{left:341.251795px;}
.x20{left:342.344987px;}
.x58{left:375.645000px;}
.x67{left:376.716795px;}
.x3a{left:380.624987px;}
.x34{left:381.824987px;}
.x53{left:388.272913px;}
.x1c{left:457.274987px;}
.x52{left:467.925000px;}
.x66{left:478.574959px;}
.x73{left:484.274987px;}
.x3b{left:489.224959px;}
.x1d{left:510.374987px;}
.x14{left:574.274987px;}
.x48{left:582.675000px;}
.x12{left:587.174987px;}
.x13{left:594.374987px;}
.x59{left:602.624959px;}
.x4b{left:605.174987px;}
.x65{left:609.524987px;}
.x61{left:621.224987px;}
.xc{left:625.425000px;}
.x16{left:630.674987px;}
.x4f{left:634.124959px;}
.x4c{left:638.925000px;}
.x6b{left:660.374959px;}
.x63{left:686.819987px;}
.x71{left:689.369987px;}
.xf{left:713.655000px;}
.x4e{left:721.904987px;}
.x15{left:723.119987px;}
.x51{left:726.719987px;}
.x5b{left:758.204987px;}
.x60{left:774.869987px;}
.x6d{left:793.469987px;}
.x2{left:829.619987px;}
.x47{left:842.069987px;}
.x17{left:850.619987px;}
.x6a{left:861.869987px;}
.x54{left:863.204987px;}
@media print{
.v4{vertical-align:-59.417676pt;}
.v8{vertical-align:-34.211495pt;}
.v7{vertical-align:-18.262573pt;}
.v2{vertical-align:-13.761508pt;}
.vc{vertical-align:-11.936509pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:4.317505pt;}
.v5{vertical-align:6.683176pt;}
.vb{vertical-align:18.666769pt;}
.v9{vertical-align:21.333333pt;}
.vd{vertical-align:22.984275pt;}
.v1{vertical-align:34.211495pt;}
.v3{vertical-align:58.771636pt;}
.v6{vertical-align:69.059483pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls1b{letter-spacing:-0.819931pt;}
.ls1a{letter-spacing:-0.712045pt;}
.ls25{letter-spacing:-0.476309pt;}
.ls22{letter-spacing:-0.170667pt;}
.ls23{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls29{letter-spacing:0.026667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133333pt;}
.ls21{letter-spacing:0.190108pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.408552pt;}
.ls24{letter-spacing:0.442437pt;}
.ls27{letter-spacing:0.450045pt;}
.ls5{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.628443pt;}
.ls16{letter-spacing:0.643682pt;}
.ls26{letter-spacing:0.670280pt;}
.ls17{letter-spacing:1.063117pt;}
.ls2a{letter-spacing:4.746667pt;}
.ls28{letter-spacing:30.208000pt;}
.ls11{letter-spacing:52.470886pt;}
.ls12{letter-spacing:68.888161pt;}
.lsd{letter-spacing:180.628293pt;}
.ls15{letter-spacing:200.482141pt;}
.ls13{letter-spacing:215.717582pt;}
.lsf{letter-spacing:257.555274pt;}
.ls1e{letter-spacing:312.333613pt;}
.ls1f{letter-spacing:407.529187pt;}
.ls10{letter-spacing:440.155116pt;}
.lse{letter-spacing:459.674233pt;}
.ls20{letter-spacing:550.108197pt;}
.ls14{letter-spacing:651.385277pt;}
.ws4a{word-spacing:-42.937321pt;}
.ws30{word-spacing:-41.827655pt;}
.ws16{word-spacing:-41.690462pt;}
.wsd{word-spacing:-41.591115pt;}
.ws14{word-spacing:-41.249238pt;}
.ws49{word-spacing:-40.678254pt;}
.ws1b{word-spacing:-40.260417pt;}
.ws29{word-spacing:-35.136000pt;}
.ws45{word-spacing:-20.625097pt;}
.ws9{word-spacing:-16.000000pt;}
.ws27{word-spacing:-15.978667pt;}
.ws26{word-spacing:-15.829333pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws28{word-spacing:-10.666667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws17{word-spacing:-2.103722pt;}
.ws38{word-spacing:-1.350726pt;}
.ws32{word-spacing:-0.745288pt;}
.ws1d{word-spacing:-0.701777pt;}
.ws36{word-spacing:-0.525053pt;}
.ws2a{word-spacing:-0.518195pt;}
.ws13{word-spacing:-0.483687pt;}
.ws20{word-spacing:-0.076189pt;}
.ws15{word-spacing:-0.075939pt;}
.wsc{word-spacing:-0.075758pt;}
.wsf{word-spacing:-0.075135pt;}
.ws35{word-spacing:-0.075008pt;}
.ws11{word-spacing:-0.073460pt;}
.ws1c{word-spacing:-0.073334pt;}
.ws2c{word-spacing:-0.037970pt;}
.ws3a{word-spacing:-0.037111pt;}
.wsa{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.400370pt;}
.ws21{word-spacing:0.635856pt;}
.ws25{word-spacing:0.743742pt;}
.ws46{word-spacing:15.114013pt;}
.ws41{word-spacing:20.486969pt;}
.ws33{word-spacing:20.568560pt;}
.ws12{word-spacing:21.922102pt;}
.ws1a{word-spacing:22.721005pt;}
.ws44{word-spacing:65.322780pt;}
.wse{word-spacing:78.776462pt;}
.ws1e{word-spacing:87.928149pt;}
.ws3f{word-spacing:88.714483pt;}
.ws48{word-spacing:119.467553pt;}
.ws39{word-spacing:130.001629pt;}
.ws43{word-spacing:134.652155pt;}
.ws34{word-spacing:146.294517pt;}
.ws10{word-spacing:153.237344pt;}
.ws37{word-spacing:161.230950pt;}
.ws42{word-spacing:206.399901pt;}
.ws2e{word-spacing:214.075144pt;}
.ws31{word-spacing:235.612021pt;}
.ws3b{word-spacing:251.712965pt;}
.wsb{word-spacing:296.120739pt;}
.ws47{word-spacing:328.356437pt;}
.ws3d{word-spacing:386.304786pt;}
.ws2f{word-spacing:414.041441pt;}
.ws3e{word-spacing:434.693851pt;}
.ws18{word-spacing:457.980178pt;}
.ws19{word-spacing:487.473049pt;}
.ws2b{word-spacing:870.626508pt;}
.ws40{word-spacing:897.943172pt;}
.ws3c{word-spacing:924.759899pt;}
.ws23{word-spacing:943.022781pt;}
.ws1f{word-spacing:1061.130291pt;}
.ws24{word-spacing:1181.249357pt;}
.ws22{word-spacing:1318.434027pt;}
._62{margin-left:-1190.193802pt;}
._5b{margin-left:-1188.321809pt;}
._a1{margin-left:-597.591414pt;}
._63{margin-left:-552.881723pt;}
._8a{margin-left:-516.851769pt;}
._9e{margin-left:-486.150540pt;}
._7d{margin-left:-468.078494pt;}
._ab{margin-left:-460.787275pt;}
._8d{margin-left:-452.198442pt;}
._8e{margin-left:-437.127067pt;}
._9b{margin-left:-431.023110pt;}
._50{margin-left:-409.060748pt;}
._99{margin-left:-407.523156pt;}
._68{margin-left:-369.976620pt;}
._61{margin-left:-355.122269pt;}
._aa{margin-left:-353.124930pt;}
._92{margin-left:-347.713976pt;}
._a0{margin-left:-345.689797pt;}
._5e{margin-left:-338.239101pt;}
._a9{margin-left:-333.772061pt;}
._a8{margin-left:-326.462150pt;}
._87{margin-left:-321.531851pt;}
._84{margin-left:-310.178057pt;}
._4e{margin-left:-304.042915pt;}
._67{margin-left:-289.566131pt;}
._7c{margin-left:-284.523124pt;}
._57{margin-left:-270.876949pt;}
._52{margin-left:-267.923672pt;}
._6b{margin-left:-261.652389pt;}
._51{margin-left:-258.682005pt;}
._78{margin-left:-250.474755pt;}
._64{margin-left:-247.144733pt;}
._7b{margin-left:-243.845922pt;}
._76{margin-left:-241.599236pt;}
._82{margin-left:-237.175474pt;}
._36{margin-left:-235.915785pt;}
._89{margin-left:-234.158151pt;}
._32{margin-left:-232.223012pt;}
._3a{margin-left:-228.723370pt;}
._46{margin-left:-221.014215pt;}
._5a{margin-left:-217.972053pt;}
._4a{margin-left:-214.996880pt;}
._79{margin-left:-213.678731pt;}
._77{margin-left:-212.777978pt;}
._91{margin-left:-208.577533pt;}
._45{margin-left:-201.142550pt;}
._3e{margin-left:-200.234523pt;}
._60{margin-left:-199.210753pt;}
._59{margin-left:-197.469091pt;}
._6c{margin-left:-193.281468pt;}
._86{margin-left:-190.314312pt;}
._66{margin-left:-188.732515pt;}
._7a{margin-left:-187.818631pt;}
._3f{margin-left:-184.773230pt;}
._3d{margin-left:-183.880514pt;}
._80{margin-left:-182.109576pt;}
._85{margin-left:-178.016601pt;}
._3c{margin-left:-175.623727pt;}
._4f{margin-left:-174.172464pt;}
._9c{margin-left:-171.652950pt;}
._44{margin-left:-170.352204pt;}
._7e{margin-left:-167.433369pt;}
._a3{margin-left:-165.804496pt;}
._47{margin-left:-162.835440pt;}
._a2{margin-left:-158.077813pt;}
._54{margin-left:-156.973409pt;}
._81{margin-left:-155.435218pt;}
._3b{margin-left:-150.009785pt;}
._37{margin-left:-148.330434pt;}
._33{margin-left:-145.791668pt;}
._49{margin-left:-143.668389pt;}
._43{margin-left:-141.615700pt;}
._40{margin-left:-137.619044pt;}
._88{margin-left:-136.158922pt;}
._34{margin-left:-134.390567pt;}
._6a{margin-left:-128.863390pt;}
._69{margin-left:-127.663874pt;}
._7f{margin-left:-125.164675pt;}
._a4{margin-left:-123.256104pt;}
._38{margin-left:-117.354448pt;}
._65{margin-left:-115.631782pt;}
._35{margin-left:-114.732658pt;}
._55{margin-left:-110.034856pt;}
._5f{margin-left:-108.923024pt;}
._9d{margin-left:-106.359745pt;}
._53{margin-left:-103.625017pt;}
._48{margin-left:-100.350075pt;}
._8c{margin-left:-98.493960pt;}
._90{margin-left:-96.886937pt;}
._9a{margin-left:-91.715891pt;}
._39{margin-left:-88.559300pt;}
._41{margin-left:-84.061160pt;}
._5d{margin-left:-75.262718pt;}
._96{margin-left:-68.553941pt;}
._5c{margin-left:-61.357256pt;}
._58{margin-left:-59.642655pt;}
._94{margin-left:-50.319721pt;}
._97{margin-left:-40.849424pt;}
._98{margin-left:-33.633475pt;}
._9{margin-left:-4.224000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._5{width:2.432000pt;}
._6{width:3.392000pt;}
._42{width:4.417653pt;}
._17{width:5.424000pt;}
._2d{width:6.320000pt;}
._22{width:7.546667pt;}
._1a{width:8.725333pt;}
._31{width:9.632000pt;}
._b4{width:10.560000pt;}
._73{width:11.520000pt;}
._18{width:12.928000pt;}
._19{width:14.144000pt;}
._6f{width:15.040000pt;}
._4{width:17.573333pt;}
._b{width:18.880000pt;}
._a{width:20.032000pt;}
._2a{width:21.237333pt;}
._c{width:22.208000pt;}
._1b{width:23.424000pt;}
._2c{width:24.474667pt;}
._56{width:25.578667pt;}
._71{width:26.624000pt;}
._25{width:27.712000pt;}
._26{width:28.762667pt;}
._b2{width:29.824000pt;}
._20{width:30.784000pt;}
._21{width:31.680000pt;}
._6d{width:32.768000pt;}
._28{width:33.728000pt;}
._29{width:34.624000pt;}
._7{width:35.840000pt;}
._8{width:37.018667pt;}
._2b{width:38.400000pt;}
._f{width:39.552000pt;}
._27{width:40.896000pt;}
._af{width:42.048000pt;}
._14{width:44.725333pt;}
._e{width:46.336000pt;}
._24{width:48.064000pt;}
._1e{width:49.792000pt;}
._1f{width:50.880000pt;}
._1c{width:52.096000pt;}
._1d{width:53.248000pt;}
._6e{width:54.208000pt;}
._70{width:55.386667pt;}
._75{width:56.485333pt;}
._23{width:58.560000pt;}
._ae{width:59.584000pt;}
._4b{width:61.109333pt;}
._2e{width:62.016000pt;}
._12{width:65.344000pt;}
._13{width:66.394667pt;}
._b0{width:67.456000pt;}
._2f{width:68.821333pt;}
._30{width:69.717333pt;}
._8f{width:74.080000pt;}
._ad{width:76.480000pt;}
._b1{width:80.832000pt;}
._74{width:87.168000pt;}
._83{width:91.136000pt;}
._b6{width:92.096000pt;}
._15{width:95.296000pt;}
._16{width:96.448000pt;}
._72{width:98.048000pt;}
._ac{width:117.568000pt;}
._d{width:120.128000pt;}
._93{width:121.344000pt;}
._b3{width:123.328000pt;}
._8b{width:137.984000pt;}
._a5{width:139.712000pt;}
._b8{width:140.890667pt;}
._10{width:145.088000pt;}
._4c{width:155.444102pt;}
._a6{width:171.617336pt;}
._11{width:187.968000pt;}
._a7{width:279.263992pt;}
._b7{width:340.416000pt;}
._b5{width:398.016000pt;}
._95{width:544.674280pt;}
._9f{width:567.338915pt;}
._4d{width:1190.744309pt;}
.fs1a{font-size:37.110960pt;}
.fsa{font-size:37.567080pt;}
.fs20{font-size:37.568482pt;}
.fsc{font-size:37.969986pt;}
.fs13{font-size:38.093864pt;}
.fs15{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs12{font-size:73.334094pt;}
.fs9{font-size:73.459782pt;}
.fs1b{font-size:74.095180pt;}
.fs0{font-size:74.666667pt;}
.fs16{font-size:75.007552pt;}
.fs8{font-size:75.135225pt;}
.fs1f{font-size:75.138028pt;}
.fs6{font-size:75.757950pt;}
.fsb{font-size:75.938911pt;}
.fs14{font-size:76.188808pt;}
.fs22{font-size:78.210057pt;}
.fs17{font-size:79.064850pt;}
.fs21{font-size:79.160559pt;}
.fs18{font-size:79.776628pt;}
.fsd{font-size:80.053117pt;}
.fse{font-size:80.070160pt;}
.fs11{font-size:80.074469pt;}
.fs1c{font-size:95.248024pt;}
.fs19{font-size:96.007411pt;}
.fs7{font-size:97.259793pt;}
.fs1d{font-size:97.263421pt;}
.fs10{font-size:97.616800pt;}
.fsf{font-size:98.258597pt;}
.fs1e{font-size:108.073424pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y1c{bottom:3.466667pt;}
.y65{bottom:3.514850pt;}
.y92{bottom:3.514875pt;}
.y5d{bottom:4.222099pt;}
.y9d{bottom:4.253916pt;}
.y98{bottom:4.253943pt;}
.yc3{bottom:4.666667pt;}
.y7e{bottom:4.726358pt;}
.ye9{bottom:4.726359pt;}
.yec{bottom:4.726362pt;}
.y6f{bottom:4.726363pt;}
.y72{bottom:4.726365pt;}
.y7{bottom:4.800000pt;}
.y108{bottom:5.015897pt;}
.y107{bottom:5.015900pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y106{bottom:6.095256pt;}
.y7c{bottom:6.719774pt;}
.y6d{bottom:6.719780pt;}
.y110{bottom:6.901089pt;}
.y111{bottom:6.901100pt;}
.y112{bottom:6.901103pt;}
.y10e{bottom:6.965461pt;}
.y10f{bottom:6.965465pt;}
.y85{bottom:7.909524pt;}
.y8e{bottom:8.102319pt;}
.y87{bottom:8.102322pt;}
.y8b{bottom:8.102325pt;}
.yf9{bottom:8.255088pt;}
.y66{bottom:8.255089pt;}
.yfa{bottom:8.255091pt;}
.y59{bottom:8.255093pt;}
.yfd{bottom:8.255123pt;}
.y93{bottom:8.255148pt;}
.y58{bottom:8.319605pt;}
.yf4{bottom:8.370846pt;}
.yf5{bottom:8.370857pt;}
.y51{bottom:8.385184pt;}
.ye4{bottom:8.385187pt;}
.y100{bottom:8.385203pt;}
.y116{bottom:10.761949pt;}
.y117{bottom:10.761953pt;}
.y118{bottom:10.761960pt;}
.y109{bottom:10.761977pt;}
.y115{bottom:10.825462pt;}
.y105{bottom:10.825483pt;}
.ybc{bottom:12.666667pt;}
.y7d{bottom:13.214522pt;}
.ye8{bottom:13.214523pt;}
.yeb{bottom:13.214526pt;}
.y71{bottom:13.214528pt;}
.y6e{bottom:16.654910pt;}
.ya1{bottom:16.938040pt;}
.ya{bottom:17.733333pt;}
.y84{bottom:18.037990pt;}
.y6{bottom:18.266667pt;}
.y7a{bottom:21.412683pt;}
.y6a{bottom:21.412684pt;}
.yee{bottom:21.412688pt;}
.y74{bottom:21.412691pt;}
.y6c{bottom:21.412692pt;}
.y75{bottom:21.412701pt;}
.yef{bottom:21.412707pt;}
.y1b{bottom:21.866667pt;}
.y83{bottom:22.763907pt;}
.y86{bottom:22.763928pt;}
.y8d{bottom:22.763952pt;}
.y88{bottom:22.763956pt;}
.y82{bottom:22.860774pt;}
.yc1{bottom:23.066667pt;}
.y89{bottom:29.773313pt;}
.y9{bottom:30.133333pt;}
.y8a{bottom:31.316823pt;}
.y7f{bottom:31.574028pt;}
.yea{bottom:31.574029pt;}
.yed{bottom:31.574032pt;}
.y70{bottom:31.574033pt;}
.y73{bottom:31.574034pt;}
.y5{bottom:32.000000pt;}
.y7b{bottom:33.181172pt;}
.yf0{bottom:33.181175pt;}
.y6b{bottom:33.181178pt;}
.y8c{bottom:34.531099pt;}
.y1a{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y19{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y18{bottom:77.066667pt;}
.y17{bottom:95.466667pt;}
.y11f{bottom:97.366667pt;}
.ye2{bottom:98.433333pt;}
.y3b{bottom:100.166667pt;}
.y80{bottom:102.833333pt;}
.y79{bottom:102.866667pt;}
.y136{bottom:112.566667pt;}
.y11e{bottom:118.433333pt;}
.ye1{bottom:119.633333pt;}
.y3a{bottom:121.366667pt;}
.y135{bottom:133.773333pt;}
.yba{bottom:136.573333pt;}
.y11d{bottom:139.640000pt;}
.ye0{bottom:140.826667pt;}
.y39{bottom:142.573333pt;}
.y134{bottom:154.973333pt;}
.yb9{bottom:157.773333pt;}
.y11c{bottom:160.826667pt;}
.y78{bottom:161.773333pt;}
.ydf{bottom:161.893333pt;}
.y38{bottom:163.640000pt;}
.y133{bottom:176.173333pt;}
.yb8{bottom:178.840000pt;}
.y11b{bottom:181.906667pt;}
.y77{bottom:182.840000pt;}
.yde{bottom:183.106667pt;}
.y37{bottom:184.840000pt;}
.y132{bottom:197.240000pt;}
.yb7{bottom:200.040000pt;}
.y76{bottom:200.560000pt;}
.y69{bottom:200.599982pt;}
.y11a{bottom:203.106667pt;}
.ydd{bottom:204.293333pt;}
.y36{bottom:206.040000pt;}
.y131{bottom:218.440000pt;}
.yb6{bottom:221.240000pt;}
.y119{bottom:224.306667pt;}
.y114{bottom:224.333315pt;}
.ydc{bottom:225.373333pt;}
.y35{bottom:227.106667pt;}
.y130{bottom:239.640000pt;}
.yb5{bottom:242.306667pt;}
.ydb{bottom:246.573333pt;}
.y34{bottom:248.306667pt;}
.y113{bottom:258.440000pt;}
.y68{bottom:259.373333pt;}
.y12f{bottom:260.706667pt;}
.yb4{bottom:263.506667pt;}
.yda{bottom:267.773333pt;}
.y33{bottom:269.506667pt;}
.y67{bottom:277.106667pt;}
.y64{bottom:277.133315pt;}
.y10c{bottom:279.626667pt;}
.y10d{bottom:279.666649pt;}
.y12e{bottom:281.893333pt;}
.yb3{bottom:284.706667pt;}
.yd9{bottom:288.840000pt;}
.y32{bottom:290.560000pt;}
.y12d{bottom:303.106667pt;}
.yb2{bottom:305.773333pt;}
.y63{bottom:309.106667pt;}
.yd8{bottom:310.040000pt;}
.y10b{bottom:311.640000pt;}
.y31{bottom:311.773333pt;}
.y12c{bottom:324.173333pt;}
.yb1{bottom:326.960000pt;}
.y10a{bottom:329.373333pt;}
.y104{bottom:329.399964pt;}
.y62{bottom:330.173333pt;}
.yd7{bottom:331.240000pt;}
.y30{bottom:332.960000pt;}
.y12b{bottom:345.400000pt;}
.yb0{bottom:348.200000pt;}
.y61{bottom:351.400000pt;}
.yd6{bottom:352.333333pt;}
.y2f{bottom:354.066667pt;}
.y103{bottom:363.533333pt;}
.y12a{bottom:366.600000pt;}
.yaf{bottom:369.266667pt;}
.y60{bottom:372.600000pt;}
.yd5{bottom:373.533333pt;}
.y2e{bottom:375.266667pt;}
.y102{bottom:384.733333pt;}
.y129{bottom:387.666667pt;}
.yae{bottom:390.466667pt;}
.y5f{bottom:393.800000pt;}
.yd4{bottom:394.733333pt;}
.y2d{bottom:396.466667pt;}
.yff{bottom:405.933297pt;}
.y101{bottom:405.933333pt;}
.y128{bottom:408.866667pt;}
.y5c{bottom:411.399964pt;}
.y5e{bottom:411.400000pt;}
.yad{bottom:411.666667pt;}
.yd3{bottom:415.800000pt;}
.y2c{bottom:417.533333pt;}
.y127{bottom:430.066667pt;}
.yac{bottom:432.866667pt;}
.yfc{bottom:436.733297pt;}
.yfe{bottom:436.733333pt;}
.yd2{bottom:437.000000pt;}
.y5b{bottom:437.666667pt;}
.y2b{bottom:438.733333pt;}
.y126{bottom:451.133333pt;}
.yab{bottom:453.933333pt;}
.y57{bottom:455.399964pt;}
.y5a{bottom:455.400000pt;}
.yd1{bottom:458.200000pt;}
.y2a{bottom:459.933333pt;}
.yfb{bottom:468.600000pt;}
.y125{bottom:472.333333pt;}
.yaa{bottom:475.133333pt;}
.yd0{bottom:479.266667pt;}
.y29{bottom:481.133333pt;}
.y56{bottom:487.266667pt;}
.yf8{bottom:489.799964pt;}
.yf7{bottom:489.800000pt;}
.y124{bottom:493.533333pt;}
.ya9{bottom:496.333333pt;}
.ycf{bottom:500.466667pt;}
.y28{bottom:502.200000pt;}
.y55{bottom:508.466667pt;}
.y123{bottom:514.733333pt;}
.ya8{bottom:517.400000pt;}
.yce{bottom:521.666667pt;}
.yf6{bottom:521.800000pt;}
.y27{bottom:523.400000pt;}
.y54{bottom:529.666667pt;}
.y122{bottom:535.800000pt;}
.ya7{bottom:538.600000pt;}
.yf3{bottom:542.866630pt;}
.ycd{bottom:542.866667pt;}
.y26{bottom:544.600000pt;}
.y53{bottom:550.733333pt;}
.y121{bottom:557.000000pt;}
.ya6{bottom:559.800000pt;}
.ycc{bottom:563.933333pt;}
.y25{bottom:565.666667pt;}
.y50{bottom:568.599964pt;}
.y52{bottom:568.600000pt;}
.yf2{bottom:576.600000pt;}
.y120{bottom:578.200000pt;}
.ya5{bottom:580.866667pt;}
.ycb{bottom:585.133333pt;}
.y24{bottom:586.866667pt;}
.ye7{bottom:597.666630pt;}
.yf1{bottom:597.666667pt;}
.y4f{bottom:599.266667pt;}
.ya4{bottom:602.066667pt;}
.yca{bottom:606.333333pt;}
.y23{bottom:608.066667pt;}
.y4e{bottom:620.466667pt;}
.ya3{bottom:623.266667pt;}
.yc9{bottom:627.400000pt;}
.y22{bottom:629.133333pt;}
.ya0{bottom:640.866594pt;}
.ya2{bottom:640.866667pt;}
.y4d{bottom:641.666667pt;}
.yc8{bottom:648.600000pt;}
.y21{bottom:650.333333pt;}
.ye6{bottom:656.640000pt;}
.y4c{bottom:662.773333pt;}
.yc7{bottom:669.840000pt;}
.y20{bottom:671.573333pt;}
.ye3{bottom:674.333261pt;}
.ye5{bottom:674.373333pt;}
.y9f{bottom:674.640000pt;}
.y4b{bottom:683.973333pt;}
.yc6{bottom:690.906667pt;}
.y9c{bottom:692.199928pt;}
.y9e{bottom:692.240000pt;}
.y1f{bottom:700.640000pt;}
.y4a{bottom:705.173333pt;}
.yc5{bottom:712.106667pt;}
.y1e{bottom:715.573333pt;}
.y9b{bottom:718.506667pt;}
.y49{bottom:726.240000pt;}
.yc4{bottom:727.706667pt;}
.y9a{bottom:739.706667pt;}
.y48{bottom:747.440000pt;}
.y1d{bottom:752.373333pt;}
.y97{bottom:757.266594pt;}
.y99{bottom:757.306667pt;}
.yc2{bottom:765.173333pt;}
.y47{bottom:768.640000pt;}
.y16{bottom:770.773333pt;}
.y96{bottom:783.573333pt;}
.y46{bottom:789.706667pt;}
.yc0{bottom:803.840000pt;}
.y95{bottom:804.773333pt;}
.y45{bottom:810.906667pt;}
.y94{bottom:825.973333pt;}
.y44{bottom:832.106667pt;}
.ybf{bottom:842.506667pt;}
.y91{bottom:846.999928pt;}
.y90{bottom:847.040000pt;}
.y43{bottom:853.306667pt;}
.ybe{bottom:861.573333pt;}
.y42{bottom:874.373333pt;}
.y81{bottom:878.999928pt;}
.y8f{bottom:879.040000pt;}
.y15{bottom:884.373333pt;}
.y41{bottom:895.573333pt;}
.ybd{bottom:899.040000pt;}
.y14{bottom:901.440000pt;}
.y40{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.ybb{bottom:936.506667pt;}
.y3f{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y3e{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3d{bottom:980.266667pt;}
.y3c{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h16{height:20.000244pt;}
.h2d{height:20.000280pt;}
.h11{height:24.666448pt;}
.h33{height:24.666484pt;}
.h18{height:25.732662pt;}
.h13{height:25.732680pt;}
.h2c{height:25.732717pt;}
.h43{height:25.733622pt;}
.h35{height:27.466360pt;}
.h2f{height:27.466397pt;}
.h49{height:28.000434pt;}
.h3c{height:28.000452pt;}
.h27{height:35.170441pt;}
.h3e{height:36.404257pt;}
.h10{height:36.800000pt;}
.h19{height:36.870035pt;}
.h29{height:37.246925pt;}
.h31{height:38.000000pt;}
.h6{height:40.266667pt;}
.h2a{height:40.281314pt;}
.h30{height:40.506368pt;}
.h3f{height:40.721762pt;}
.h3{height:43.200000pt;}
.he{height:46.281250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h21{height:52.665812pt;}
.h1b{height:52.665830pt;}
.h34{height:52.665848pt;}
.h24{height:52.665885pt;}
.h1e{height:56.578392pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.hb{height:62.812500pt;}
.h32{height:63.208333pt;}
.ha{height:64.500000pt;}
.h4c{height:65.781915pt;}
.h47{height:69.598066pt;}
.h1f{height:70.339900pt;}
.h37{height:70.571371pt;}
.h2e{height:71.973402pt;}
.h17{height:72.060890pt;}
.h4b{height:72.443593pt;}
.h4a{height:72.684188pt;}
.h42{height:72.720367pt;}
.h3a{height:73.235362pt;}
.h2{height:73.281250pt;}
.h48{height:73.324014pt;}
.h39{height:73.579186pt;}
.h38{height:73.615811pt;}
.h1a{height:73.704427pt;}
.h46{height:73.707177pt;}
.h15{height:73.741114pt;}
.h3b{height:73.894660pt;}
.h20{height:74.150763pt;}
.h23{height:74.166550pt;}
.h2b{height:74.170541pt;}
.h12{height:74.352285pt;}
.h1c{height:74.492809pt;}
.h1d{height:74.529888pt;}
.h36{height:74.775148pt;}
.h3d{height:88.928739pt;}
.h14{height:90.088783pt;}
.h44{height:90.092144pt;}
.h25{height:91.013944pt;}
.h41{height:91.616383pt;}
.h26{height:97.102643pt;}
.h40{height:99.273108pt;}
.h45{height:100.105119pt;}
.h28{height:106.306408pt;}
.hd{height:110.386667pt;}
.h22{height:129.111535pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w10{width:19.999469pt;}
.w14{width:29.866667pt;}
.wb{width:49.734822pt;}
.w18{width:52.966667pt;}
.w16{width:70.666667pt;}
.w11{width:73.731381pt;}
.w17{width:76.800000pt;}
.wa{width:81.731568pt;}
.w12{width:82.268298pt;}
.wc{width:83.996757pt;}
.w15{width:115.366667pt;}
.w20{width:118.263131pt;}
.w1e{width:135.325370pt;}
.w9{width:136.002677pt;}
.w19{width:138.265836pt;}
.w1b{width:145.736424pt;}
.w6{width:158.533333pt;}
.we{width:204.003334pt;}
.w1d{width:204.003361pt;}
.wd{width:206.265319pt;}
.w21{width:206.265347pt;}
.w1c{width:220.007593pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w1a{width:282.269920pt;}
.wf{width:313.595154pt;}
.w1f{width:340.660178pt;}
.w13{width:351.329290pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:0.932856pt;}
.x4a{left:2.920637pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x49{left:12.793438pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1a{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x4d{left:36.270331pt;}
.x3{left:37.866655pt;}
.x26{left:39.845555pt;}
.x22{left:43.036987pt;}
.x6e{left:46.670850pt;}
.x64{left:52.424768pt;}
.x6c{left:59.803689pt;}
.x72{left:61.866655pt;}
.x69{left:65.758391pt;}
.x23{left:67.353097pt;}
.x55{left:69.066667pt;}
.x2a{left:70.141073pt;}
.x50{left:71.407442pt;}
.x37{left:74.433687pt;}
.x29{left:77.053038pt;}
.x30{left:78.801822pt;}
.x1b{left:85.066655pt;}
.x19{left:89.066667pt;}
.x39{left:90.838544pt;}
.x18{left:93.066667pt;}
.xd{left:95.093333pt;}
.x38{left:98.816195pt;}
.x2f{left:103.325109pt;}
.x6{left:108.166667pt;}
.x10{left:112.033322pt;}
.xa{left:113.893333pt;}
.x3d{left:118.082925pt;}
.x33{left:119.695204pt;}
.x43{left:122.008677pt;}
.x1f{left:124.108570pt;}
.x5a{left:126.474508pt;}
.x32{left:127.622769pt;}
.x2c{left:133.133324pt;}
.x35{left:134.333324pt;}
.x2e{left:136.519209pt;}
.x68{left:140.392654pt;}
.x41{left:142.831196pt;}
.x3e{left:145.985112pt;}
.x31{left:147.999781pt;}
.x70{left:150.441905pt;}
.x44{left:161.754695pt;}
.x1e{left:168.333315pt;}
.x40{left:174.077592pt;}
.x45{left:176.113647pt;}
.x42{left:184.124864pt;}
.x56{left:185.106667pt;}
.x46{left:186.733181pt;}
.x6f{left:189.449288pt;}
.x36{left:190.968824pt;}
.x2d{left:193.205341pt;}
.x28{left:194.333315pt;}
.x21{left:195.399982pt;}
.x3f{left:210.221199pt;}
.x25{left:211.399982pt;}
.x5f{left:226.611055pt;}
.x5d{left:242.978958pt;}
.x5c{left:250.916932pt;}
.x57{left:256.440000pt;}
.x5e{left:259.825525pt;}
.x27{left:261.106655pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x24{left:277.106655pt;}
.x2b{left:278.306655pt;}
.x11{left:288.573322pt;}
.x3c{left:303.334929pt;}
.x20{left:304.306655pt;}
.x58{left:333.906667pt;}
.x67{left:334.859373pt;}
.x3a{left:338.333322pt;}
.x34{left:339.399988pt;}
.x53{left:345.131478pt;}
.x1c{left:406.466655pt;}
.x52{left:415.933333pt;}
.x66{left:425.399964pt;}
.x73{left:430.466655pt;}
.x3b{left:434.866630pt;}
.x1d{left:453.666655pt;}
.x14{left:510.466655pt;}
.x48{left:517.933333pt;}
.x12{left:521.933322pt;}
.x13{left:528.333322pt;}
.x59{left:535.666630pt;}
.x4b{left:537.933322pt;}
.x65{left:541.799988pt;}
.x61{left:552.199988pt;}
.xc{left:555.933333pt;}
.x16{left:560.599988pt;}
.x4f{left:563.666630pt;}
.x4c{left:567.933333pt;}
.x6b{left:586.999964pt;}
.x63{left:610.506655pt;}
.x71{left:612.773322pt;}
.xf{left:634.360000pt;}
.x4e{left:641.693322pt;}
.x15{left:642.773322pt;}
.x51{left:645.973322pt;}
.x5b{left:673.959988pt;}
.x60{left:688.773322pt;}
.x6d{left:705.306655pt;}
.x2{left:737.439988pt;}
.x47{left:748.506655pt;}
.x17{left:756.106655pt;}
.x6a{left:766.106655pt;}
.x54{left:767.293322pt;}
}




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