
    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_62bf1eb0e2c0c86e5750ac90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e1f35bc7400a6bc5317d1389.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1de3637e14272c21079cab13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a098b9321836cc486656e67a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f7eb9044f8ee3f8cb2818cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;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_ddfbf6e25b7e016c85d7aa43.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.593000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3fad8d30fbbbb05666e05d24.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9b61aa75139b37482875575d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_eb5dd2822ba17ac42f6b9308.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.391000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ecafe27e547a76ecfaf2e8b5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.869000;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;}
.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);}
.m1e{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);}
.m16{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);}
.m1a{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);}
.m4{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);}
.m17{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);}
.m1c{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);}
.m7{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m19{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);}
.m6{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);}
.m11{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);}
.m22{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);}
.mb{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);}
.mf{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);}
.m20{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);}
.m2b{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);}
.m1b{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);}
.m9{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);}
.m24{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);}
.me{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);}
.m8{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);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m25{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);}
.m18{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);}
.m21{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);}
.m3{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m26{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);}
.m27{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);}
.m28{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);}
.md{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);}
.m14{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);}
.m13{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);}
.m2a{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);}
.m1d{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);}
.m23{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);}
.ma{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);}
.m1{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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:30.244080px;}
.ls7{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000099px;}
.ls36{letter-spacing:0.000134px;}
.ls31{letter-spacing:0.000435px;}
.ls38{letter-spacing:0.000845px;}
.ls44{letter-spacing:0.001036px;}
.ls3f{letter-spacing:0.001102px;}
.ls46{letter-spacing:0.001303px;}
.lsa{letter-spacing:0.001331px;}
.ls52{letter-spacing:0.001478px;}
.ls30{letter-spacing:0.001518px;}
.ls47{letter-spacing:0.001834px;}
.ls5{letter-spacing:0.002181px;}
.ls2d{letter-spacing:0.002239px;}
.ls2b{letter-spacing:0.002338px;}
.ls51{letter-spacing:0.002573px;}
.ls20{letter-spacing:0.002688px;}
.ls2c{letter-spacing:0.002940px;}
.ls3d{letter-spacing:0.003040px;}
.ls9{letter-spacing:0.003494px;}
.ls2a{letter-spacing:0.004176px;}
.ls2f{letter-spacing:0.004350px;}
.ls45{letter-spacing:0.004800px;}
.ls2e{letter-spacing:0.005415px;}
.ls57{letter-spacing:0.524565px;}
.ls4f{letter-spacing:0.528176px;}
.ls56{letter-spacing:0.530447px;}
.ls37{letter-spacing:0.532026px;}
.ls55{letter-spacing:0.533963px;}
.ls50{letter-spacing:0.534117px;}
.ls33{letter-spacing:0.535835px;}
.ls35{letter-spacing:0.537859px;}
.ls41{letter-spacing:0.537925px;}
.ls4a{letter-spacing:0.539698px;}
.ls54{letter-spacing:0.539939px;}
.ls49{letter-spacing:0.541622px;}
.ls3e{letter-spacing:0.541732px;}
.ls34{letter-spacing:0.541841px;}
.ls3c{letter-spacing:0.543566px;}
.ls4d{letter-spacing:0.545573px;}
.ls4b{letter-spacing:0.545746px;}
.ls40{letter-spacing:0.547664px;}
.ls48{letter-spacing:0.547701px;}
.ls43{letter-spacing:0.549676px;}
.ls4c{letter-spacing:0.551696px;}
.ls8{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls58{letter-spacing:2.932192px;}
.ls0{letter-spacing:2.989200px;}
.ls1b{letter-spacing:11.949787px;}
.ls1e{letter-spacing:11.951700px;}
.ls1d{letter-spacing:11.952019px;}
.ls6{letter-spacing:11.954850px;}
.ls1c{letter-spacing:11.957700px;}
.ls1f{letter-spacing:11.958019px;}
.ls1a{letter-spacing:12.369711px;}
.lsd{letter-spacing:12.731319px;}
.lse{letter-spacing:12.737442px;}
.ls3b{letter-spacing:13.448400px;}
.lsf{letter-spacing:13.448870px;}
.ls39{letter-spacing:13.449600px;}
.ls4e{letter-spacing:13.454400px;}
.ls53{letter-spacing:13.983859px;}
.ls42{letter-spacing:13.989859px;}
.ls17{letter-spacing:14.218287px;}
.ls16{letter-spacing:14.218322px;}
.ls22{letter-spacing:14.740094px;}
.ls23{letter-spacing:14.741280px;}
.ls21{letter-spacing:14.747215px;}
.ls27{letter-spacing:14.786037px;}
.ls24{letter-spacing:14.789396px;}
.ls25{letter-spacing:14.791960px;}
.ls26{letter-spacing:14.795319px;}
.ls12{letter-spacing:14.944200px;}
.ls13{letter-spacing:14.946124px;}
.ls19{letter-spacing:14.957182px;}
.ls18{letter-spacing:14.959259px;}
.ls28{letter-spacing:15.112200px;}
.ls29{letter-spacing:15.119215px;}
.lsb{letter-spacing:15.242778px;}
.ls14{letter-spacing:17.865141px;}
.ls15{letter-spacing:17.868947px;}
.ls11{letter-spacing:20.104241px;}
.ls10{letter-spacing:20.106318px;}
.ls3a{letter-spacing:20.150400px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.361200px;}
.lsc{letter-spacing:249.978473px;}
.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;}
}
.ws7{word-spacing:-17.394700px;}
.ws5c{word-spacing:-15.655334px;}
.wsc3{word-spacing:-14.955955px;}
.ws53{word-spacing:-14.943900px;}
.ws47{word-spacing:-14.402908px;}
.ws1d{word-spacing:-13.915795px;}
.ws4a{word-spacing:-13.449600px;}
.ws48{word-spacing:-12.373632px;}
.ws1c{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws10{word-spacing:-4.363619px;}
.ws5d{word-spacing:-4.303843px;}
.ws9{word-spacing:-4.124516px;}
.ws73{word-spacing:-3.819686px;}
.ws54{word-spacing:-3.646312px;}
.ws74{word-spacing:-3.604493px;}
.ws7b{word-spacing:-3.526760px;}
.ws5e{word-spacing:-3.287658px;}
.wscc{word-spacing:-3.227904px;}
.ws7f{word-spacing:-3.227882px;}
.wsd8{word-spacing:-3.120307px;}
.wsf{word-spacing:-2.689902px;}
.wsc9{word-spacing:-2.474726px;}
.ws90{word-spacing:-2.450800px;}
.ws85{word-spacing:-2.391024px;}
.ws67{word-spacing:-2.331248px;}
.ws8{word-spacing:-2.211697px;}
.ws83{word-spacing:-2.151922px;}
.wscd{word-spacing:-2.044339px;}
.ws88{word-spacing:-2.032370px;}
.wsb6{word-spacing:-1.995472px;}
.wsb7{word-spacing:-1.990541px;}
.ws5{word-spacing:-1.908367px;}
.ws86{word-spacing:-1.793268px;}
.ws55{word-spacing:-1.733492px;}
.ws41{word-spacing:-1.673717px;}
.ws51{word-spacing:-1.613941px;}
.ws99{word-spacing:-1.434614px;}
.ws25{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.wsa3{word-spacing:-1.022170px;}
.ws56{word-spacing:-0.968371px;}
.ws92{word-spacing:-0.956410px;}
.ws16{word-spacing:-0.896634px;}
.ws42{word-spacing:-0.836858px;}
.ws43{word-spacing:-0.777083px;}
.wsb3{word-spacing:-0.753178px;}
.ws38{word-spacing:-0.717307px;}
.ws59{word-spacing:-0.703376px;}
.ws58{word-spacing:-0.701256px;}
.ws57{word-spacing:-0.699379px;}
.wsb{word-spacing:-0.597756px;}
.ws4e{word-spacing:-0.544440px;}
.ws87{word-spacing:-0.537980px;}
.wsd1{word-spacing:-0.484186px;}
.ws2d{word-spacing:-0.478205px;}
.ws44{word-spacing:-0.418429px;}
.wsd6{word-spacing:-0.376589px;}
.ws7e{word-spacing:-0.358654px;}
.wsbb{word-spacing:-0.322790px;}
.ws17{word-spacing:-0.298878px;}
.wsa4{word-spacing:-0.268992px;}
.ws14{word-spacing:-0.239102px;}
.wsc0{word-spacing:-0.215194px;}
.ws77{word-spacing:-0.198644px;}
.wsd{word-spacing:-0.179327px;}
.wsab{word-spacing:-0.161395px;}
.wsa{word-spacing:-0.119551px;}
.wsad{word-spacing:-0.107597px;}
.wsc1{word-spacing:-0.080193px;}
.ws22{word-spacing:-0.059776px;}
.ws6e{word-spacing:-0.053798px;}
.wsbc{word-spacing:-0.035812px;}
.wsd2{word-spacing:-0.027178px;}
.wsdc{word-spacing:-0.024192px;}
.wsa6{word-spacing:-0.021571px;}
.wscb{word-spacing:-0.005290px;}
.wsaf{word-spacing:-0.003686px;}
.ws1b{word-spacing:-0.003082px;}
.wsb2{word-spacing:-0.002304px;}
.ws1{word-spacing:-0.000157px;}
.ws0{word-spacing:0.000000px;}
.ws76{word-spacing:0.002049px;}
.ws5a{word-spacing:0.003418px;}
.ws79{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.ws4b{word-spacing:0.098989px;}
.wsc8{word-spacing:0.107597px;}
.ws18{word-spacing:0.119551px;}
.ws4c{word-spacing:0.148484px;}
.ws7a{word-spacing:0.161395px;}
.ws15{word-spacing:0.179327px;}
.wsa9{word-spacing:0.184905px;}
.wsaa{word-spacing:0.215194px;}
.wsc{word-spacing:0.239102px;}
.wsc4{word-spacing:0.268992px;}
.ws35{word-spacing:0.298878px;}
.wsd0{word-spacing:0.322790px;}
.ws3f{word-spacing:0.358654px;}
.wsb5{word-spacing:0.376589px;}
.wsb4{word-spacing:0.395044px;}
.ws1a{word-spacing:0.418429px;}
.ws65{word-spacing:0.537980px;}
.ws95{word-spacing:0.597756px;}
.ws26{word-spacing:0.657532px;}
.ws9a{word-spacing:0.717307px;}
.ws8c{word-spacing:0.777083px;}
.ws8b{word-spacing:0.836858px;}
.ws3b{word-spacing:0.896634px;}
.ws64{word-spacing:0.956410px;}
.ws66{word-spacing:1.016185px;}
.wsac{word-spacing:1.022170px;}
.ws6c{word-spacing:1.129766px;}
.ws31{word-spacing:1.135736px;}
.ws71{word-spacing:1.195512px;}
.wsdf{word-spacing:1.237363px;}
.ws93{word-spacing:1.255288px;}
.ws9b{word-spacing:1.315063px;}
.wse{word-spacing:1.374839px;}
.ws19{word-spacing:1.434614px;}
.ws6b{word-spacing:1.452557px;}
.ws61{word-spacing:1.494390px;}
.ws2f{word-spacing:1.554166px;}
.wse2{word-spacing:1.560154px;}
.ws6a{word-spacing:1.673717px;}
.ws52{word-spacing:1.733492px;}
.ws32{word-spacing:1.793268px;}
.ws60{word-spacing:1.853044px;}
.wsd3{word-spacing:1.882944px;}
.ws63{word-spacing:1.972595px;}
.ws20{word-spacing:2.032370px;}
.ws33{word-spacing:2.151922px;}
.ws94{word-spacing:2.271473px;}
.wsa7{word-spacing:2.313331px;}
.ws34{word-spacing:2.331248px;}
.ws40{word-spacing:2.391024px;}
.ws96{word-spacing:2.450800px;}
.ws80{word-spacing:2.510575px;}
.ws91{word-spacing:2.570351px;}
.ws89{word-spacing:2.630126px;}
.ws84{word-spacing:2.689902px;}
.ws75{word-spacing:2.743718px;}
.ws11{word-spacing:2.749678px;}
.ws6d{word-spacing:2.797517px;}
.ws2c{word-spacing:2.929004px;}
.ws8d{word-spacing:2.988780px;}
.wsb0{word-spacing:3.012710px;}
.ws23{word-spacing:3.048556px;}
.wsd4{word-spacing:3.174106px;}
.wsd9{word-spacing:3.227904px;}
.wsc5{word-spacing:3.281702px;}
.ws29{word-spacing:3.287658px;}
.wsd5{word-spacing:3.335501px;}
.ws2a{word-spacing:3.347434px;}
.ws69{word-spacing:3.466985px;}
.wsb1{word-spacing:3.712090px;}
.ws68{word-spacing:3.765863px;}
.ws27{word-spacing:4.004965px;}
.wsa2{word-spacing:4.088678px;}
.ws6f{word-spacing:4.244068px;}
.ws37{word-spacing:4.303843px;}
.wsbf{word-spacing:4.303872px;}
.ws3c{word-spacing:4.423394px;}
.wse0{word-spacing:4.572864px;}
.ws8a{word-spacing:4.662497px;}
.ws78{word-spacing:4.722272px;}
.wscf{word-spacing:4.788058px;}
.wsb9{word-spacing:4.841856px;}
.ws3d{word-spacing:4.901599px;}
.ws4d{word-spacing:4.949453px;}
.ws30{word-spacing:4.961375px;}
.ws5f{word-spacing:5.021150px;}
.ws70{word-spacing:5.140702px;}
.wsdb{word-spacing:5.218445px;}
.wsa5{word-spacing:5.326042px;}
.wsa8{word-spacing:5.378429px;}
.wsae{word-spacing:5.379235px;}
.ws3{word-spacing:5.379840px;}
.wsca{word-spacing:5.381578px;}
.wsc2{word-spacing:5.433638px;}
.ws2b{word-spacing:5.439580px;}
.ws4f{word-spacing:5.499355px;}
.ws7c{word-spacing:5.559131px;}
.ws9d{word-spacing:5.702630px;}
.ws7d{word-spacing:5.738458px;}
.ws8f{word-spacing:5.858009px;}
.wsa1{word-spacing:5.917824px;}
.ws12{word-spacing:5.971475px;}
.wsda{word-spacing:5.971622px;}
.ws13{word-spacing:5.977560px;}
.ws39{word-spacing:6.156887px;}
.ws9f{word-spacing:6.240614px;}
.ws50{word-spacing:6.276438px;}
.ws3a{word-spacing:6.336214px;}
.ws72{word-spacing:6.455765px;}
.ws9e{word-spacing:6.724800px;}
.ws9c{word-spacing:6.814418px;}
.wsbd{word-spacing:7.155187px;}
.ws24{word-spacing:7.173072px;}
.ws1f{word-spacing:7.352399px;}
.wsba{word-spacing:7.424179px;}
.ws97{word-spacing:7.531726px;}
.ws8e{word-spacing:7.651277px;}
.ws21{word-spacing:7.711052px;}
.ws98{word-spacing:8.189257px;}
.ws62{word-spacing:8.368584px;}
.ws2e{word-spacing:8.547911px;}
.wsdd{word-spacing:9.576115px;}
.wsd7{word-spacing:9.683712px;}
.ws6{word-spacing:9.922750px;}
.ws36{word-spacing:10.759608px;}
.wsa0{word-spacing:10.974874px;}
.wsc6{word-spacing:11.351462px;}
.wsbe{word-spacing:11.943245px;}
.wsce{word-spacing:12.481229px;}
.ws82{word-spacing:12.642624px;}
.ws81{word-spacing:13.180608px;}
.wse1{word-spacing:17.054093px;}
.wsc7{word-spacing:17.161690px;}
.wsb8{word-spacing:20.358514px;}
.ws3e{word-spacing:21.280114px;}
.wsde{word-spacing:34.538573px;}
.ws5b{word-spacing:138.584678px;}
.ws49{word-spacing:147.280489px;}
.ws45{word-spacing:282.000055px;}
.ws46{word-spacing:284.742020px;}
.ws1e{word-spacing:751.309447px;}
._4{margin-left:-7.711052px;}
._13{margin-left:-6.635092px;}
._3{margin-left:-5.499355px;}
._b{margin-left:-3.682164px;}
._5{margin-left:-1.936742px;}
._7{width:1.091170px;}
._1{width:2.998511px;}
._50{width:4.030804px;}
._3b{width:12.397472px;}
._17{width:13.790404px;}
._a{width:15.864457px;}
._26{width:17.693578px;}
._6{width:18.829440px;}
._8{width:20.204153px;}
._9{width:21.937645px;}
._11{width:23.611362px;}
._d{width:24.950348px;}
._15{width:26.002386px;}
._e{width:27.377225px;}
._18{width:28.512961px;}
._3e{width:29.879588px;}
._12{width:31.322414px;}
._16{width:33.952541px;}
._3c{width:35.984911px;}
._0{width:37.658880px;}
._3d{width:40.611556px;}
._10{width:42.918881px;}
._f{width:44.592598px;}
._14{width:46.794250px;}
._4d{width:47.963954px;}
._51{width:49.351021px;}
._2{width:54.391348px;}
._4f{width:61.868160px;}
._1e{width:72.599305px;}
._42{width:77.508431px;}
._4e{width:88.767360px;}
._49{width:93.099207px;}
._43{width:102.701146px;}
._4a{width:106.759697px;}
._4b{width:109.630380px;}
._45{width:115.322250px;}
._46{width:118.539395px;}
._44{width:122.597946px;}
._47{width:138.337206px;}
._29{width:147.211790px;}
._41{width:150.067409px;}
._37{width:161.664192px;}
._27{width:169.949146px;}
._2b{width:174.468211px;}
._34{width:187.917811px;}
._28{width:191.576102px;}
._2c{width:196.041370px;}
._1f{width:199.561937px;}
._2e{width:201.176202px;}
._25{width:205.105324px;}
._35{width:209.628380px;}
._20{width:214.509284px;}
._2f{width:223.077980px;}
._22{width:230.891973px;}
._1b{width:236.930306px;}
._21{width:254.302885px;}
._48{width:257.767502px;}
._23{width:270.586585px;}
._38{width:271.950912px;}
._1c{width:276.624917px;}
._40{width:279.644083px;}
._3a{width:281.204237px;}
._39{width:288.467021px;}
._1d{width:316.418518px;}
._24{width:351.906094px;}
._19{width:356.113129px;}
._3f{width:363.091857px;}
._1a{width:388.977496px;}
._33{width:399.578605px;}
._2d{width:406.389984px;}
._31{width:409.189306px;}
._2a{width:424.146586px;}
._36{width:426.675110px;}
._32{width:454.973069px;}
._30{width:467.777088px;}
._4c{width:1922.198700px;}
._c{width:1946.108700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:49.494528px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y11{bottom:3.425340px;}
.y10{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y2f{bottom:63.780000px;}
.yf9{bottom:108.612000px;}
.y143{bottom:109.222500px;}
.y17f{bottom:110.898000px;}
.y113{bottom:114.700500px;}
.yc7{bottom:120.042000px;}
.y130{bottom:120.694500px;}
.y62{bottom:123.121500px;}
.y1da{bottom:128.325000px;}
.yf8{bottom:128.875500px;}
.y17e{bottom:131.161500px;}
.y2e{bottom:132.489000px;}
.y112{bottom:134.964000px;}
.y8a{bottom:139.665300px;}
.yc6{bottom:140.307000px;}
.y12f{bottom:140.959500px;}
.y61{bottom:143.386500px;}
.y1d9{bottom:147.691500px;}
.y1a6{bottom:149.080500px;}
.yf7{bottom:149.139000px;}
.y17d{bottom:151.426500px;}
.y2d{bottom:152.752500px;}
.y89{bottom:154.788720px;}
.y111{bottom:155.229000px;}
.y150{bottom:158.106000px;}
.yc5{bottom:160.570500px;}
.y12e{bottom:161.223000px;}
.y8b{bottom:162.349740px;}
.y60{bottom:163.650000px;}
.y1d8{bottom:167.059500px;}
.y1a5{bottom:168.448500px;}
.yf6{bottom:169.404000px;}
.y88{bottom:169.910760px;}
.y17c{bottom:171.690000px;}
.y2c{bottom:173.016000px;}
.y110{bottom:175.492500px;}
.yc4{bottom:180.835500px;}
.y12d{bottom:181.488000px;}
.y5f{bottom:183.913500px;}
.y87{bottom:185.034180px;}
.y1d7{bottom:186.427500px;}
.y1a4{bottom:187.816500px;}
.yf5{bottom:189.667500px;}
.y17b{bottom:191.953500px;}
.y14f{bottom:192.925500px;}
.y2b{bottom:193.281000px;}
.y10f{bottom:195.756000px;}
.yc3{bottom:201.099000px;}
.y12c{bottom:201.751500px;}
.y5e{bottom:204.178500px;}
.y1d6{bottom:205.794000px;}
.y86{bottom:206.784360px;}
.y1a3{bottom:207.183000px;}
.yf4{bottom:209.932500px;}
.y17a{bottom:212.218500px;}
.y2a{bottom:213.544500px;}
.y10e{bottom:216.021000px;}
.yc2{bottom:221.362500px;}
.y85{bottom:221.907780px;}
.y12b{bottom:222.015000px;}
.y14e{bottom:222.774000px;}
.y5d{bottom:224.442000px;}
.y1d5{bottom:225.162000px;}
.y1a2{bottom:226.551000px;}
.yf3{bottom:230.196000px;}
.y179{bottom:232.482000px;}
.y29{bottom:233.809500px;}
.y10d{bottom:236.284500px;}
.yc1{bottom:241.627500px;}
.y14d{bottom:242.007000px;}
.y12a{bottom:242.280000px;}
.y84{bottom:243.656580px;}
.y1d4{bottom:244.528500px;}
.y5c{bottom:244.707000px;}
.y1a1{bottom:245.917500px;}
.yf2{bottom:250.459500px;}
.y178{bottom:252.747000px;}
.y28{bottom:254.073000px;}
.y10c{bottom:256.549500px;}
.y83{bottom:258.780000px;}
.yc0{bottom:261.891000px;}
.y129{bottom:262.543500px;}
.y1d3{bottom:263.896500px;}
.y5b{bottom:264.970500px;}
.y1a0{bottom:265.285500px;}
.yf1{bottom:270.724500px;}
.y177{bottom:273.010500px;}
.y27{bottom:274.336500px;}
.y10b{bottom:276.813000px;}
.y82{bottom:280.530180px;}
.ybf{bottom:282.156000px;}
.y128{bottom:282.808500px;}
.y1d2{bottom:283.264500px;}
.y19f{bottom:284.653500px;}
.y5a{bottom:285.234000px;}
.yf0{bottom:290.988000px;}
.y176{bottom:293.274000px;}
.y26{bottom:294.601500px;}
.y81{bottom:295.652220px;}
.y10a{bottom:297.076500px;}
.ybe{bottom:302.419500px;}
.y1d1{bottom:302.631000px;}
.y127{bottom:303.072000px;}
.y19e{bottom:304.020000px;}
.y59{bottom:305.499000px;}
.yef{bottom:311.253000px;}
.y175{bottom:313.539000px;}
.y25{bottom:314.865000px;}
.y1d0{bottom:321.999000px;}
.ybd{bottom:322.683000px;}
.y126{bottom:323.335500px;}
.y19d{bottom:323.388000px;}
.y58{bottom:325.762500px;}
.y80{bottom:325.921500px;}
.y109{bottom:326.307000px;}
.yee{bottom:331.516500px;}
.y174{bottom:333.802500px;}
.y24{bottom:335.130000px;}
.y1cf{bottom:341.367000px;}
.y19c{bottom:342.754500px;}
.ybc{bottom:342.948000px;}
.y125{bottom:343.600500px;}
.y57{bottom:346.027500px;}
.yed{bottom:351.780000px;}
.y23{bottom:355.393500px;}
.y108{bottom:357.930000px;}
.y1ce{bottom:360.733500px;}
.y19b{bottom:362.122500px;}
.y7f{bottom:363.033000px;}
.ybb{bottom:363.211500px;}
.y124{bottom:363.864000px;}
.y56{bottom:366.291000px;}
.yec{bottom:372.045000px;}
.y22{bottom:375.657000px;}
.y107{bottom:377.163000px;}
.y1cd{bottom:380.101500px;}
.y19a{bottom:381.490500px;}
.y7e{bottom:383.298000px;}
.yba{bottom:383.476500px;}
.y55{bottom:386.554500px;}
.yeb{bottom:392.308500px;}
.y21{bottom:395.922000px;}
.y106{bottom:396.396000px;}
.y173{bottom:397.852500px;}
.y123{bottom:398.865000px;}
.y1cc{bottom:399.468000px;}
.y199{bottom:400.857000px;}
.y7d{bottom:403.561500px;}
.yb9{bottom:403.740000px;}
.y54{bottom:406.819500px;}
.yea{bottom:412.573500px;}
.y105{bottom:415.629000px;}
.y20{bottom:416.185500px;}
.y172{bottom:418.117500px;}
.y1cb{bottom:418.836000px;}
.y198{bottom:420.225000px;}
.y7c{bottom:423.825000px;}
.yb8{bottom:424.003500px;}
.y53{bottom:427.083000px;}
.ye9{bottom:432.837000px;}
.y1ca{bottom:438.204000px;}
.y171{bottom:438.381000px;}
.y197{bottom:439.591500px;}
.y7b{bottom:444.090000px;}
.yb7{bottom:444.268500px;}
.y1f{bottom:445.416000px;}
.y52{bottom:447.348000px;}
.y142{bottom:449.709000px;}
.ye8{bottom:453.100500px;}
.y1c9{bottom:457.570500px;}
.y170{bottom:458.644500px;}
.y196{bottom:458.959500px;}
.y7a{bottom:464.353500px;}
.yb6{bottom:464.532000px;}
.y51{bottom:467.611500px;}
.y141{bottom:469.972500px;}
.ye7{bottom:473.365500px;}
.y1c8{bottom:476.938500px;}
.y195{bottom:478.327500px;}
.y16f{bottom:478.909500px;}
.y79{bottom:484.618500px;}
.yb5{bottom:484.795500px;}
.y50{bottom:487.875000px;}
.y140{bottom:490.237500px;}
.ye6{bottom:493.629000px;}
.y1c7{bottom:496.305000px;}
.y194{bottom:497.694000px;}
.y16e{bottom:499.173000px;}
.y78{bottom:504.882000px;}
.yb4{bottom:505.060500px;}
.y4f{bottom:508.140000px;}
.y13f{bottom:510.501000px;}
.ye5{bottom:513.894000px;}
.y1c6{bottom:515.673000px;}
.y193{bottom:517.062000px;}
.y16d{bottom:519.438000px;}
.y1e{bottom:521.832000px;}
.y77{bottom:525.145500px;}
.yb3{bottom:525.324000px;}
.y4e{bottom:528.403500px;}
.y13e{bottom:530.764500px;}
.ye4{bottom:534.157500px;}
.y1c5{bottom:535.041000px;}
.y192{bottom:536.428500px;}
.y16c{bottom:539.701500px;}
.y76{bottom:545.410500px;}
.yb2{bottom:545.589000px;}
.y4d{bottom:548.667000px;}
.y13d{bottom:551.029500px;}
.y1c4{bottom:554.407500px;}
.ye3{bottom:554.421000px;}
.y191{bottom:555.796500px;}
.y16b{bottom:559.965000px;}
.y1d{bottom:560.029500px;}
.y75{bottom:565.674000px;}
.yb1{bottom:565.852500px;}
.y4c{bottom:568.932000px;}
.y13c{bottom:571.293000px;}
.y1c3{bottom:573.775500px;}
.ye2{bottom:574.686000px;}
.y190{bottom:575.164500px;}
.y16a{bottom:580.230000px;}
.y1c{bottom:580.293000px;}
.y1dd{bottom:580.965000px;}
.y74{bottom:585.939000px;}
.yb0{bottom:586.116000px;}
.y4b{bottom:589.195500px;}
.y13b{bottom:591.558000px;}
.y1c2{bottom:593.142000px;}
.ye1{bottom:594.949500px;}
.y1dc{bottom:600.333000px;}
.y169{bottom:600.493500px;}
.y1b{bottom:600.556500px;}
.y18f{bottom:603.498000px;}
.y73{bottom:606.202500px;}
.yaf{bottom:606.381000px;}
.y4a{bottom:609.460500px;}
.y13a{bottom:611.821500px;}
.y1c1{bottom:612.510000px;}
.ye0{bottom:615.214500px;}
.y1db{bottom:619.699500px;}
.y168{bottom:620.758500px;}
.y1a{bottom:620.821500px;}
.y72{bottom:626.466000px;}
.yae{bottom:626.644500px;}
.y49{bottom:629.724000px;}
.y1c0{bottom:631.878000px;}
.y139{bottom:632.085000px;}
.y14c{bottom:634.018500px;}
.ydf{bottom:635.478000px;}
.y167{bottom:641.022000px;}
.y19{bottom:641.085000px;}
.y18e{bottom:642.949500px;}
.y71{bottom:646.731000px;}
.yad{bottom:646.909500px;}
.y48{bottom:649.987500px;}
.y1bf{bottom:651.244500px;}
.y138{bottom:652.350000px;}
.y14b{bottom:654.282000px;}
.yde{bottom:655.741500px;}
.y166{bottom:661.285500px;}
.y18{bottom:661.350000px;}
.y70{bottom:666.994500px;}
.y18d{bottom:667.114500px;}
.yac{bottom:667.173000px;}
.y47{bottom:670.252500px;}
.y1be{bottom:670.612500px;}
.y137{bottom:672.613500px;}
.y14a{bottom:674.545500px;}
.ydd{bottom:676.006500px;}
.y165{bottom:681.550500px;}
.y17{bottom:681.613500px;}
.y18c{bottom:682.312500px;}
.y6f{bottom:687.258000px;}
.yab{bottom:687.436500px;}
.y1bd{bottom:689.979000px;}
.y46{bottom:690.516000px;}
.y136{bottom:692.878500px;}
.y149{bottom:694.810500px;}
.ydc{bottom:696.270000px;}
.y18b{bottom:697.510500px;}
.y164{bottom:701.814000px;}
.y16{bottom:701.877000px;}
.y6e{bottom:707.523000px;}
.yaa{bottom:707.701500px;}
.y1bc{bottom:709.347000px;}
.y45{bottom:710.781000px;}
.y135{bottom:713.142000px;}
.y148{bottom:715.074000px;}
.ydb{bottom:716.535000px;}
.y18a{bottom:721.675500px;}
.y163{bottom:722.077500px;}
.y15{bottom:722.142000px;}
.y6d{bottom:727.786500px;}
.ya9{bottom:727.965000px;}
.y1bb{bottom:728.715000px;}
.y44{bottom:731.044500px;}
.y134{bottom:733.405500px;}
.y104{bottom:733.495500px;}
.y147{bottom:735.339000px;}
.y189{bottom:736.873500px;}
.y162{bottom:742.342500px;}
.y14{bottom:742.405500px;}
.y122{bottom:742.735500px;}
.y6c{bottom:748.051500px;}
.y1ba{bottom:748.081500px;}
.ya8{bottom:748.230000px;}
.y43{bottom:751.308000px;}
.y103{bottom:753.759000px;}
.y146{bottom:755.602500px;}
.y188{bottom:761.037000px;}
.yda{bottom:761.040000px;}
.y161{bottom:762.606000px;}
.y133{bottom:762.636000px;}
.y13{bottom:762.670500px;}
.y121{bottom:762.999000px;}
.y1b9{bottom:767.449500px;}
.y6b{bottom:768.315000px;}
.ya7{bottom:768.493500px;}
.y42{bottom:771.573000px;}
.y102{bottom:774.024000px;}
.y145{bottom:775.866000px;}
.y187{bottom:776.235000px;}
.yd9{bottom:777.835500px;}
.y160{bottom:782.871000px;}
.y12{bottom:782.934000px;}
.y120{bottom:783.262500px;}
.y1b8{bottom:786.816000px;}
.y6a{bottom:788.578500px;}
.y186{bottom:791.433000px;}
.y41{bottom:791.836500px;}
.y132{bottom:794.259000px;}
.y101{bottom:794.287500px;}
.yd8{bottom:794.631000px;}
.ya6{bottom:797.724000px;}
.y15f{bottom:803.134500px;}
.y11f{bottom:803.527500px;}
.y1b7{bottom:806.184000px;}
.y185{bottom:806.631000px;}
.y69{bottom:808.843500px;}
.y144{bottom:809.092500px;}
.yd7{bottom:811.426500px;}
.y40{bottom:812.101500px;}
.y131{bottom:813.492000px;}
.y100{bottom:814.552500px;}
.yf{bottom:818.365555px;}
.ye{bottom:819.133500px;}
.y184{bottom:821.829000px;}
.y15e{bottom:823.398000px;}
.y11e{bottom:823.791000px;}
.y1b6{bottom:825.552000px;}
.yd6{bottom:828.222000px;}
.y68{bottom:829.107000px;}
.y3f{bottom:832.365000px;}
.yff{bottom:834.816000px;}
.y183{bottom:837.028500px;}
.ya1{bottom:840.546540px;}
.y15d{bottom:843.663000px;}
.y1b4{bottom:844.918500px;}
.yd5{bottom:845.017500px;}
.ya5{bottom:848.108940px;}
.y67{bottom:849.372000px;}
.y1b5{bottom:849.801000px;}
.y3e{bottom:852.628500px;}
.y11d{bottom:853.021500px;}
.yfe{bottom:855.079500px;}
.ya0{bottom:855.669960px;}
.yd{bottom:858.138000px;}
.y182{bottom:861.192000px;}
.yd4{bottom:861.813000px;}
.ya4{bottom:863.232360px;}
.y15c{bottom:863.926500px;}
.y1b3{bottom:864.286500px;}
.y66{bottom:869.635500px;}
.y9f{bottom:870.793380px;}
.y3d{bottom:872.893500px;}
.yfd{bottom:875.344500px;}
.yc{bottom:876.295500px;}
.y181{bottom:876.390000px;}
.y99{bottom:878.355780px;}
.yd3{bottom:878.608500px;}
.y1b2{bottom:883.653000px;}
.y15b{bottom:884.191500px;}
.y9e{bottom:885.916800px;}
.y65{bottom:889.899000px;}
.y180{bottom:891.588000px;}
.y3c{bottom:893.157000px;}
.y98{bottom:893.479200px;}
.yd2{bottom:895.404000px;}
.yfc{bottom:895.608000px;}
.yb{bottom:899.334000px;}
.y11c{bottom:900.184500px;}
.y9d{bottom:901.040220px;}
.y1b1{bottom:903.021000px;}
.y15a{bottom:904.455000px;}
.y97{bottom:908.601240px;}
.y64{bottom:910.164000px;}
.yd1{bottom:912.199500px;}
.ya{bottom:912.609000px;}
.y3b{bottom:913.422000px;}
.y9c{bottom:916.163640px;}
.y11b{bottom:921.518760px;}
.y1b0{bottom:922.389000px;}
.ya3{bottom:923.724660px;}
.y159{bottom:924.718500px;}
.yfb{bottom:924.838500px;}
.yd0{bottom:928.995000px;}
.y9b{bottom:931.287060px;}
.y3a{bottom:933.685500px;}
.y9{bottom:935.649000px;}
.y11a{bottom:936.970620px;}
.ya2{bottom:938.848080px;}
.y63{bottom:939.394500px;}
.y1af{bottom:941.755500px;}
.y158{bottom:944.983500px;}
.ycf{bottom:945.790500px;}
.y9a{bottom:946.410480px;}
.y119{bottom:952.422480px;}
.y8{bottom:953.805000px;}
.y39{bottom:953.949000px;}
.yfa{bottom:959.658000px;}
.y1ae{bottom:961.123500px;}
.yce{bottom:962.586000px;}
.y157{bottom:965.247000px;}
.y118{bottom:967.874340px;}
.y94{bottom:968.159280px;}
.y38{bottom:974.214000px;}
.y96{bottom:975.721680px;}
.y7{bottom:976.047000px;}
.y1ad{bottom:980.490000px;}
.y93{bottom:983.282700px;}
.y156{bottom:985.512000px;}
.ycd{bottom:986.584500px;}
.y117{bottom:989.951580px;}
.y95{bottom:990.845100px;}
.ycb{bottom:991.345500px;}
.y37{bottom:994.477500px;}
.y6{bottom:996.310500px;}
.y92{bottom:998.406120px;}
.y1ac{bottom:999.858000px;}
.y155{bottom:1005.775500px;}
.yca{bottom:1007.784000px;}
.ycc{bottom:1010.583000px;}
.y36{bottom:1014.742500px;}
.y1ab{bottom:1019.226000px;}
.y91{bottom:1020.154920px;}
.y116{bottom:1020.220500px;}
.y154{bottom:1026.039000px;}
.y35{bottom:1035.006000px;}
.y90{bottom:1035.278340px;}
.y1aa{bottom:1038.592500px;}
.y115{bottom:1039.453500px;}
.y5{bottom:1040.848500px;}
.yc9{bottom:1042.201500px;}
.y153{bottom:1046.304000px;}
.y8f{bottom:1050.401760px;}
.y34{bottom:1055.269500px;}
.y1a9{bottom:1057.960500px;}
.y114{bottom:1058.686500px;}
.yc8{bottom:1061.434500px;}
.y152{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y8e{bottom:1072.151940px;}
.y33{bottom:1075.534500px;}
.y1a8{bottom:1077.327000px;}
.y151{bottom:1086.832500px;}
.y8d{bottom:1087.275360px;}
.y32{bottom:1095.798000px;}
.y1a7{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y31{bottom:1116.063000px;}
.y8c{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h18{height:19.498745px;}
.ha{height:25.508090px;}
.h8{height:30.461558px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.hf{height:35.052500px;}
.h10{height:35.636060px;}
.h12{height:36.032016px;}
.h19{height:37.927872px;}
.h17{height:38.412058px;}
.h16{height:38.734848px;}
.h9{height:39.165235px;}
.h15{height:39.434227px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h4{height:43.815515px;}
.h2{height:50.931027px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h11{height:65.880140px;}
.h14{height:66.276096px;}
.h13{height:66.281616px;}
.h3{height:69.505289px;}
.h5{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.111683px;}
.xaa{left:112.561500px;}
.x1{left:114.802500px;}
.x9d{left:119.385000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x74{left:129.713640px;}
.x76{left:132.091380px;}
.x75{left:135.352320px;}
.x70{left:137.807340px;}
.x6e{left:140.554920px;}
.x71{left:142.627680px;}
.x9f{left:143.995380px;}
.x4{left:146.170500px;}
.x79{left:148.981200px;}
.x6c{left:151.381020px;}
.x6f{left:153.936780px;}
.x77{left:156.714720px;}
.x6d{left:160.840920px;}
.x78{left:163.050300px;}
.x6b{left:169.587000px;}
.xa6{left:171.366000px;}
.x3e{left:174.900000px;}
.x2e{left:180.883500px;}
.xa7{left:186.310500px;}
.x9e{left:187.389480px;}
.x3f{left:189.843000px;}
.xa0{left:192.268500px;}
.x8{left:194.161500px;}
.x2f{left:195.828000px;}
.x1d{left:198.552000px;}
.x30{left:199.638000px;}
.xa1{left:204.487500px;}
.x9c{left:205.900500px;}
.x40{left:208.449000px;}
.x41{left:212.110500px;}
.x1e{left:213.496500px;}
.x31{left:214.582500px;}
.x28{left:216.853500px;}
.x9a{left:225.216000px;}
.x42{left:227.053500px;}
.x1f{left:230.764500px;}
.x29{left:231.798000px;}
.x43{left:234.376500px;}
.x2a{left:235.609500px;}
.xba{left:240.357000px;}
.x20{left:245.709000px;}
.x5a{left:247.143000px;}
.x5b{left:248.148000px;}
.x21{left:249.519000px;}
.x2b{left:250.552500px;}
.xc1{left:251.667000px;}
.x9b{left:252.787500px;}
.x2c{left:254.364000px;}
.x7e{left:255.903600px;}
.x63{left:257.908500px;}
.x7f{left:259.590960px;}
.x66{left:260.815500px;}
.x3c{left:261.951000px;}
.x5c{left:263.092500px;}
.x22{left:264.463500px;}
.x36{left:266.412000px;}
.x2d{left:269.307000px;}
.x64{left:272.853000px;}
.x72{left:274.506000px;}
.x3d{left:276.894000px;}
.xb9{left:279.357000px;}
.x5d{left:281.697000px;}
.x37{left:285.166500px;}
.x96{left:286.390500px;}
.x99{left:288.099000px;}
.x65{left:291.484500px;}
.x93{left:294.433500px;}
.x98{left:298.542000px;}
.x5e{left:300.303000px;}
.x97{left:301.735500px;}
.xd{left:307.596000px;}
.xb7{left:312.528000px;}
.xe{left:315.067500px;}
.xa2{left:319.594500px;}
.xf{left:322.435500px;}
.xbc{left:325.152000px;}
.xb8{left:327.472500px;}
.x10{left:329.907000px;}
.xbd{left:331.876500px;}
.x32{left:337.324500px;}
.xb3{left:342.645000px;}
.x33{left:352.267500px;}
.xb4{left:357.588000px;}
.xab{left:365.961000px;}
.x7a{left:373.881180px;}
.x81{left:380.977140px;}
.x82{left:383.099580px;}
.x7b{left:385.072980px;}
.x5f{left:388.582500px;}
.x19{left:389.716500px;}
.x73{left:396.554580px;}
.x80{left:397.849020px;}
.x60{left:403.525500px;}
.x1a{left:404.659500px;}
.x1b{left:408.466500px;}
.xa5{left:410.760000px;}
.x7c{left:412.690920px;}
.x1c{left:423.411000px;}
.x67{left:426.282000px;}
.x68{left:441.226500px;}
.x69{left:444.966000px;}
.xac{left:450.283500px;}
.x9{left:460.005000px;}
.x95{left:464.961000px;}
.xa{left:467.476500px;}
.xb{left:471.246000px;}
.x15{left:474.574500px;}
.xc{left:478.717500px;}
.xb2{left:485.653500px;}
.x8d{left:486.703500px;}
.x16{left:493.180500px;}
.x84{left:495.859380px;}
.xa3{left:497.700000px;}
.x38{left:500.586000px;}
.x8e{left:501.646500px;}
.x83{left:504.572700px;}
.x86{left:506.230080px;}
.x85{left:509.471700px;}
.x7d{left:511.977780px;}
.x39{left:515.530500px;}
.x92{left:517.566000px;}
.x3a{left:519.192000px;}
.x8f{left:520.312500px;}
.x87{left:528.105840px;}
.xa4{left:531.361500px;}
.x3b{left:534.135000px;}
.x94{left:541.381500px;}
.x11{left:550.516500px;}
.x6a{left:555.036000px;}
.x44{left:556.684500px;}
.x12{left:557.988000px;}
.x13{left:565.311000px;}
.x50{left:568.315500px;}
.x17{left:569.811000px;}
.x45{left:571.629000px;}
.x14{left:572.782500px;}
.x46{left:578.952000px;}
.x51{left:583.260000px;}
.x18{left:584.754000px;}
.x52{left:586.959000px;}
.x4c{left:588.807000px;}
.x47{left:593.895000px;}
.xc0{left:595.849500px;}
.x23{left:601.759500px;}
.x4d{left:603.750000px;}
.x53{left:605.601000px;}
.x4e{left:611.334000px;}
.x24{left:616.704000px;}
.x90{left:619.494000px;}
.x25{left:620.514000px;}
.xa8{left:625.257000px;}
.x4f{left:626.278500px;}
.x91{left:634.437000px;}
.x26{left:635.458500px;}
.x89{left:637.782720px;}
.x56{left:640.102500px;}
.x8a{left:643.065360px;}
.xaf{left:644.940000px;}
.x88{left:646.491900px;}
.x8b{left:649.864620px;}
.x57{left:655.047000px;}
.x58{left:658.857000px;}
.x61{left:660.285000px;}
.xb5{left:661.915500px;}
.xb0{left:663.642000px;}
.x48{left:666.154500px;}
.xa9{left:669.712500px;}
.x59{left:673.801500px;}
.x62{left:675.229500px;}
.xb6{left:676.860000px;}
.xb1{left:678.586500px;}
.x8c{left:679.777500px;}
.x49{left:681.099000px;}
.x4a{left:684.798000px;}
.xbb{left:691.306500px;}
.x4b{left:699.741000px;}
.x6{left:701.339982px;}
.x27{left:716.242500px;}
.xad{left:738.141000px;}
.xbe{left:749.536500px;}
.xae{left:753.084000px;}
.x54{left:756.148500px;}
.x34{left:757.243500px;}
.x55{left:771.091500px;}
.x35{left:772.188000px;}
.xbf{left:776.436000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:26.883627pt;}
.ls7{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000088pt;}
.ls36{letter-spacing:0.000119pt;}
.ls31{letter-spacing:0.000387pt;}
.ls38{letter-spacing:0.000751pt;}
.ls44{letter-spacing:0.000921pt;}
.ls3f{letter-spacing:0.000980pt;}
.ls46{letter-spacing:0.001158pt;}
.lsa{letter-spacing:0.001183pt;}
.ls52{letter-spacing:0.001314pt;}
.ls30{letter-spacing:0.001349pt;}
.ls47{letter-spacing:0.001630pt;}
.ls5{letter-spacing:0.001939pt;}
.ls2d{letter-spacing:0.001990pt;}
.ls2b{letter-spacing:0.002078pt;}
.ls51{letter-spacing:0.002287pt;}
.ls20{letter-spacing:0.002389pt;}
.ls2c{letter-spacing:0.002613pt;}
.ls3d{letter-spacing:0.002703pt;}
.ls9{letter-spacing:0.003106pt;}
.ls2a{letter-spacing:0.003712pt;}
.ls2f{letter-spacing:0.003866pt;}
.ls45{letter-spacing:0.004267pt;}
.ls2e{letter-spacing:0.004813pt;}
.ls57{letter-spacing:0.466280pt;}
.ls4f{letter-spacing:0.469490pt;}
.ls56{letter-spacing:0.471509pt;}
.ls37{letter-spacing:0.472912pt;}
.ls55{letter-spacing:0.474634pt;}
.ls50{letter-spacing:0.474770pt;}
.ls33{letter-spacing:0.476298pt;}
.ls35{letter-spacing:0.478097pt;}
.ls41{letter-spacing:0.478156pt;}
.ls4a{letter-spacing:0.479731pt;}
.ls54{letter-spacing:0.479946pt;}
.ls49{letter-spacing:0.481442pt;}
.ls3e{letter-spacing:0.481540pt;}
.ls34{letter-spacing:0.481637pt;}
.ls3c{letter-spacing:0.483170pt;}
.ls4d{letter-spacing:0.484954pt;}
.ls4b{letter-spacing:0.485108pt;}
.ls40{letter-spacing:0.486813pt;}
.ls48{letter-spacing:0.486845pt;}
.ls43{letter-spacing:0.488601pt;}
.ls4c{letter-spacing:0.490396pt;}
.ls8{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls58{letter-spacing:2.606393pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1b{letter-spacing:10.622033pt;}
.ls1e{letter-spacing:10.623733pt;}
.ls1d{letter-spacing:10.624017pt;}
.ls6{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:10.629067pt;}
.ls1f{letter-spacing:10.629350pt;}
.ls1a{letter-spacing:10.995298pt;}
.lsd{letter-spacing:11.316728pt;}
.lse{letter-spacing:11.322171pt;}
.ls3b{letter-spacing:11.954133pt;}
.lsf{letter-spacing:11.954551pt;}
.ls39{letter-spacing:11.955200pt;}
.ls4e{letter-spacing:11.959467pt;}
.ls53{letter-spacing:12.430097pt;}
.ls42{letter-spacing:12.435430pt;}
.ls17{letter-spacing:12.638477pt;}
.ls16{letter-spacing:12.638509pt;}
.ls22{letter-spacing:13.102306pt;}
.ls23{letter-spacing:13.103360pt;}
.ls21{letter-spacing:13.108635pt;}
.ls27{letter-spacing:13.143144pt;}
.ls24{letter-spacing:13.146130pt;}
.ls25{letter-spacing:13.148409pt;}
.ls26{letter-spacing:13.151395pt;}
.ls12{letter-spacing:13.283733pt;}
.ls13{letter-spacing:13.285443pt;}
.ls19{letter-spacing:13.295273pt;}
.ls18{letter-spacing:13.297119pt;}
.ls28{letter-spacing:13.433067pt;}
.ls29{letter-spacing:13.439302pt;}
.lsb{letter-spacing:13.549136pt;}
.ls14{letter-spacing:15.880125pt;}
.ls15{letter-spacing:15.883509pt;}
.ls11{letter-spacing:17.870437pt;}
.ls10{letter-spacing:17.872282pt;}
.ls3a{letter-spacing:17.911467pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.321067pt;}
.lsc{letter-spacing:222.203087pt;}
.ws7{word-spacing:-15.461955pt;}
.ws5c{word-spacing:-13.915853pt;}
.wsc3{word-spacing:-13.294182pt;}
.ws53{word-spacing:-13.283467pt;}
.ws47{word-spacing:-12.802585pt;}
.ws1d{word-spacing:-12.369595pt;}
.ws4a{word-spacing:-11.955200pt;}
.ws48{word-spacing:-10.998784pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws10{word-spacing:-3.878772pt;}
.ws5d{word-spacing:-3.825638pt;}
.ws9{word-spacing:-3.666237pt;}
.ws73{word-spacing:-3.395277pt;}
.ws54{word-spacing:-3.241166pt;}
.ws74{word-spacing:-3.203994pt;}
.ws7b{word-spacing:-3.134898pt;}
.ws5e{word-spacing:-2.922363pt;}
.wscc{word-spacing:-2.869248pt;}
.ws7f{word-spacing:-2.869229pt;}
.wsd8{word-spacing:-2.773606pt;}
.wsf{word-spacing:-2.391024pt;}
.wsc9{word-spacing:-2.199757pt;}
.ws90{word-spacing:-2.178489pt;}
.ws85{word-spacing:-2.125355pt;}
.ws67{word-spacing:-2.072221pt;}
.ws8{word-spacing:-1.965953pt;}
.ws83{word-spacing:-1.912819pt;}
.wscd{word-spacing:-1.817190pt;}
.ws88{word-spacing:-1.806551pt;}
.wsb6{word-spacing:-1.773753pt;}
.wsb7{word-spacing:-1.769370pt;}
.ws5{word-spacing:-1.696326pt;}
.ws86{word-spacing:-1.594016pt;}
.ws55{word-spacing:-1.540882pt;}
.ws41{word-spacing:-1.487748pt;}
.ws51{word-spacing:-1.434614pt;}
.ws99{word-spacing:-1.275213pt;}
.ws25{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.wsa3{word-spacing:-0.908595pt;}
.ws56{word-spacing:-0.860774pt;}
.ws92{word-spacing:-0.850142pt;}
.ws16{word-spacing:-0.797008pt;}
.ws42{word-spacing:-0.743874pt;}
.ws43{word-spacing:-0.690740pt;}
.wsb3{word-spacing:-0.669491pt;}
.ws38{word-spacing:-0.637606pt;}
.ws59{word-spacing:-0.625223pt;}
.ws58{word-spacing:-0.623338pt;}
.ws57{word-spacing:-0.621670pt;}
.wsb{word-spacing:-0.531339pt;}
.ws4e{word-spacing:-0.483946pt;}
.ws87{word-spacing:-0.478205pt;}
.wsd1{word-spacing:-0.430387pt;}
.ws2d{word-spacing:-0.425071pt;}
.ws44{word-spacing:-0.371937pt;}
.wsd6{word-spacing:-0.334746pt;}
.ws7e{word-spacing:-0.318803pt;}
.wsbb{word-spacing:-0.286925pt;}
.ws17{word-spacing:-0.265669pt;}
.wsa4{word-spacing:-0.239104pt;}
.ws14{word-spacing:-0.212535pt;}
.wsc0{word-spacing:-0.191283pt;}
.ws77{word-spacing:-0.176572pt;}
.wsd{word-spacing:-0.159402pt;}
.wsab{word-spacing:-0.143462pt;}
.wsa{word-spacing:-0.106268pt;}
.wsad{word-spacing:-0.095642pt;}
.wsc1{word-spacing:-0.071283pt;}
.ws22{word-spacing:-0.053134pt;}
.ws6e{word-spacing:-0.047821pt;}
.wsbc{word-spacing:-0.031833pt;}
.wsd2{word-spacing:-0.024158pt;}
.wsdc{word-spacing:-0.021504pt;}
.wsa6{word-spacing:-0.019174pt;}
.wscb{word-spacing:-0.004702pt;}
.wsaf{word-spacing:-0.003277pt;}
.ws1b{word-spacing:-0.002739pt;}
.wsb2{word-spacing:-0.002048pt;}
.ws1{word-spacing:-0.000140pt;}
.ws0{word-spacing:0.000000pt;}
.ws76{word-spacing:0.001821pt;}
.ws5a{word-spacing:0.003038pt;}
.ws79{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.ws4b{word-spacing:0.087990pt;}
.wsc8{word-spacing:0.095642pt;}
.ws18{word-spacing:0.106268pt;}
.ws4c{word-spacing:0.131985pt;}
.ws7a{word-spacing:0.143462pt;}
.ws15{word-spacing:0.159402pt;}
.wsa9{word-spacing:0.164360pt;}
.wsaa{word-spacing:0.191283pt;}
.wsc{word-spacing:0.212535pt;}
.wsc4{word-spacing:0.239104pt;}
.ws35{word-spacing:0.265669pt;}
.wsd0{word-spacing:0.286925pt;}
.ws3f{word-spacing:0.318803pt;}
.wsb5{word-spacing:0.334746pt;}
.wsb4{word-spacing:0.351150pt;}
.ws1a{word-spacing:0.371937pt;}
.ws65{word-spacing:0.478205pt;}
.ws95{word-spacing:0.531339pt;}
.ws26{word-spacing:0.584473pt;}
.ws9a{word-spacing:0.637606pt;}
.ws8c{word-spacing:0.690740pt;}
.ws8b{word-spacing:0.743874pt;}
.ws3b{word-spacing:0.797008pt;}
.ws64{word-spacing:0.850142pt;}
.ws66{word-spacing:0.903276pt;}
.wsac{word-spacing:0.908595pt;}
.ws6c{word-spacing:1.004237pt;}
.ws31{word-spacing:1.009543pt;}
.ws71{word-spacing:1.062677pt;}
.wsdf{word-spacing:1.099878pt;}
.ws93{word-spacing:1.115811pt;}
.ws9b{word-spacing:1.168945pt;}
.wse{word-spacing:1.222079pt;}
.ws19{word-spacing:1.275213pt;}
.ws6b{word-spacing:1.291162pt;}
.ws61{word-spacing:1.328347pt;}
.ws2f{word-spacing:1.381481pt;}
.wse2{word-spacing:1.386803pt;}
.ws6a{word-spacing:1.487748pt;}
.ws52{word-spacing:1.540882pt;}
.ws32{word-spacing:1.594016pt;}
.ws60{word-spacing:1.647150pt;}
.wsd3{word-spacing:1.673728pt;}
.ws63{word-spacing:1.753418pt;}
.ws20{word-spacing:1.806551pt;}
.ws33{word-spacing:1.912819pt;}
.ws94{word-spacing:2.019087pt;}
.wsa7{word-spacing:2.056294pt;}
.ws34{word-spacing:2.072221pt;}
.ws40{word-spacing:2.125355pt;}
.ws96{word-spacing:2.178489pt;}
.ws80{word-spacing:2.231622pt;}
.ws91{word-spacing:2.284756pt;}
.ws89{word-spacing:2.337890pt;}
.ws84{word-spacing:2.391024pt;}
.ws75{word-spacing:2.438861pt;}
.ws11{word-spacing:2.444158pt;}
.ws6d{word-spacing:2.486682pt;}
.ws2c{word-spacing:2.603559pt;}
.ws8d{word-spacing:2.656693pt;}
.wsb0{word-spacing:2.677965pt;}
.ws23{word-spacing:2.709827pt;}
.wsd4{word-spacing:2.821427pt;}
.wsd9{word-spacing:2.869248pt;}
.wsc5{word-spacing:2.917069pt;}
.ws29{word-spacing:2.922363pt;}
.wsd5{word-spacing:2.964890pt;}
.ws2a{word-spacing:2.975497pt;}
.ws69{word-spacing:3.081764pt;}
.wsb1{word-spacing:3.299635pt;}
.ws68{word-spacing:3.347434pt;}
.ws27{word-spacing:3.559969pt;}
.wsa2{word-spacing:3.634381pt;}
.ws6f{word-spacing:3.772505pt;}
.ws37{word-spacing:3.825638pt;}
.wsbf{word-spacing:3.825664pt;}
.ws3c{word-spacing:3.931906pt;}
.wse0{word-spacing:4.064768pt;}
.ws8a{word-spacing:4.144442pt;}
.ws78{word-spacing:4.197575pt;}
.wscf{word-spacing:4.256051pt;}
.wsb9{word-spacing:4.303872pt;}
.ws3d{word-spacing:4.356977pt;}
.ws4d{word-spacing:4.399514pt;}
.ws30{word-spacing:4.410111pt;}
.ws5f{word-spacing:4.463245pt;}
.ws70{word-spacing:4.569513pt;}
.wsdb{word-spacing:4.638618pt;}
.wsa5{word-spacing:4.734259pt;}
.wsa8{word-spacing:4.780826pt;}
.wsae{word-spacing:4.781542pt;}
.ws3{word-spacing:4.782080pt;}
.wsca{word-spacing:4.783625pt;}
.wsc2{word-spacing:4.829901pt;}
.ws2b{word-spacing:4.835182pt;}
.ws4f{word-spacing:4.888316pt;}
.ws7c{word-spacing:4.941450pt;}
.ws9d{word-spacing:5.069005pt;}
.ws7d{word-spacing:5.100851pt;}
.ws8f{word-spacing:5.207119pt;}
.wsa1{word-spacing:5.260288pt;}
.ws12{word-spacing:5.307978pt;}
.wsda{word-spacing:5.308109pt;}
.ws13{word-spacing:5.313387pt;}
.ws39{word-spacing:5.472788pt;}
.ws9f{word-spacing:5.547213pt;}
.ws50{word-spacing:5.579056pt;}
.ws3a{word-spacing:5.632190pt;}
.ws72{word-spacing:5.738458pt;}
.ws9e{word-spacing:5.977600pt;}
.ws9c{word-spacing:6.057261pt;}
.wsbd{word-spacing:6.360166pt;}
.ws24{word-spacing:6.376064pt;}
.ws1f{word-spacing:6.535466pt;}
.wsba{word-spacing:6.599270pt;}
.ws97{word-spacing:6.694867pt;}
.ws8e{word-spacing:6.801135pt;}
.ws21{word-spacing:6.854269pt;}
.ws98{word-spacing:7.279340pt;}
.ws62{word-spacing:7.438741pt;}
.ws2e{word-spacing:7.598143pt;}
.wsdd{word-spacing:8.512102pt;}
.wsd7{word-spacing:8.607744pt;}
.ws6{word-spacing:8.820222pt;}
.ws36{word-spacing:9.564096pt;}
.wsa0{word-spacing:9.755443pt;}
.wsc6{word-spacing:10.090189pt;}
.wsbe{word-spacing:10.616218pt;}
.wsce{word-spacing:11.094426pt;}
.ws82{word-spacing:11.237888pt;}
.ws81{word-spacing:11.716096pt;}
.wse1{word-spacing:15.159194pt;}
.wsc7{word-spacing:15.254835pt;}
.wsb8{word-spacing:18.096457pt;}
.ws3e{word-spacing:18.915657pt;}
.wsde{word-spacing:30.700954pt;}
.ws5b{word-spacing:123.186381pt;}
.ws49{word-spacing:130.915990pt;}
.ws45{word-spacing:250.666715pt;}
.ws46{word-spacing:253.104017pt;}
.ws1e{word-spacing:667.830619pt;}
._4{margin-left:-6.854269pt;}
._13{margin-left:-5.897859pt;}
._3{margin-left:-4.888316pt;}
._b{margin-left:-3.273035pt;}
._5{margin-left:-1.721549pt;}
._7{width:0.969929pt;}
._1{width:2.665343pt;}
._50{width:3.582937pt;}
._3b{width:11.019975pt;}
._17{width:12.258137pt;}
._a{width:14.101740pt;}
._26{width:15.727625pt;}
._6{width:16.737280pt;}
._8{width:17.959247pt;}
._9{width:19.500129pt;}
._11{width:20.987877pt;}
._d{width:22.178087pt;}
._15{width:23.113232pt;}
._e{width:24.335311pt;}
._18{width:25.344854pt;}
._3e{width:26.559634pt;}
._12{width:27.842146pt;}
._16{width:30.180036pt;}
._3c{width:31.986588pt;}
._0{width:33.474560pt;}
._3d{width:36.099161pt;}
._10{width:38.150116pt;}
._f{width:39.637865pt;}
._14{width:41.594889pt;}
._4d{width:42.634626pt;}
._51{width:43.867574pt;}
._2{width:48.347865pt;}
._4f{width:54.993920pt;}
._1e{width:64.532716pt;}
._42{width:68.896383pt;}
._4e{width:78.904320pt;}
._49{width:82.754851pt;}
._43{width:91.289907pt;}
._4a{width:94.897508pt;}
._4b{width:97.449226pt;}
._45{width:102.508667pt;}
._46{width:105.368351pt;}
._44{width:108.975952pt;}
._47{width:122.966405pt;}
._29{width:130.854924pt;}
._41{width:133.393252pt;}
._37{width:143.701504pt;}
._27{width:151.065907pt;}
._2b{width:155.082854pt;}
._34{width:167.038054pt;}
._28{width:170.289869pt;}
._2c{width:174.258995pt;}
._1f{width:177.388388pt;}
._2e{width:178.823291pt;}
._25{width:182.315844pt;}
._35{width:186.336338pt;}
._20{width:190.674919pt;}
._2f{width:198.291538pt;}
._22{width:205.237309pt;}
._1b{width:210.604716pt;}
._21{width:226.047009pt;}
._48{width:229.126668pt;}
._23{width:240.521409pt;}
._38{width:241.734144pt;}
._1c{width:245.888815pt;}
._40{width:248.572518pt;}
._3a{width:249.959322pt;}
._39{width:256.415130pt;}
._1d{width:281.260904pt;}
._24{width:312.805417pt;}
._19{width:316.545004pt;}
._3f{width:322.748318pt;}
._1a{width:345.757774pt;}
._33{width:355.180982pt;}
._2d{width:361.235541pt;}
._31{width:363.723827pt;}
._2a{width:377.019187pt;}
._36{width:379.266765pt;}
._32{width:404.420506pt;}
._30{width:415.801856pt;}
._4c{width:1708.621067pt;}
._c{width:1729.874400pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:43.995136pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.044747pt;}
.y10{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y2f{bottom:56.693333pt;}
.yf9{bottom:96.544000pt;}
.y143{bottom:97.086667pt;}
.y17f{bottom:98.576000pt;}
.y113{bottom:101.956000pt;}
.yc7{bottom:106.704000pt;}
.y130{bottom:107.284000pt;}
.y62{bottom:109.441333pt;}
.y1da{bottom:114.066667pt;}
.yf8{bottom:114.556000pt;}
.y17e{bottom:116.588000pt;}
.y2e{bottom:117.768000pt;}
.y112{bottom:119.968000pt;}
.y8a{bottom:124.146933pt;}
.yc6{bottom:124.717333pt;}
.y12f{bottom:125.297333pt;}
.y61{bottom:127.454667pt;}
.y1d9{bottom:131.281333pt;}
.y1a6{bottom:132.516000pt;}
.yf7{bottom:132.568000pt;}
.y17d{bottom:134.601333pt;}
.y2d{bottom:135.780000pt;}
.y89{bottom:137.589973pt;}
.y111{bottom:137.981333pt;}
.y150{bottom:140.538667pt;}
.yc5{bottom:142.729333pt;}
.y12e{bottom:143.309333pt;}
.y8b{bottom:144.310880pt;}
.y60{bottom:145.466667pt;}
.y1d8{bottom:148.497333pt;}
.y1a5{bottom:149.732000pt;}
.yf6{bottom:150.581333pt;}
.y88{bottom:151.031787pt;}
.y17c{bottom:152.613333pt;}
.y2c{bottom:153.792000pt;}
.y110{bottom:155.993333pt;}
.yc4{bottom:160.742667pt;}
.y12d{bottom:161.322667pt;}
.y5f{bottom:163.478667pt;}
.y87{bottom:164.474827pt;}
.y1d7{bottom:165.713333pt;}
.y1a4{bottom:166.948000pt;}
.yf5{bottom:168.593333pt;}
.y17b{bottom:170.625333pt;}
.y14f{bottom:171.489333pt;}
.y2b{bottom:171.805333pt;}
.y10f{bottom:174.005333pt;}
.yc3{bottom:178.754667pt;}
.y12c{bottom:179.334667pt;}
.y5e{bottom:181.492000pt;}
.y1d6{bottom:182.928000pt;}
.y86{bottom:183.808320pt;}
.y1a3{bottom:184.162667pt;}
.yf4{bottom:186.606667pt;}
.y17a{bottom:188.638667pt;}
.y2a{bottom:189.817333pt;}
.y10e{bottom:192.018667pt;}
.yc2{bottom:196.766667pt;}
.y85{bottom:197.251360pt;}
.y12b{bottom:197.346667pt;}
.y14e{bottom:198.021333pt;}
.y5d{bottom:199.504000pt;}
.y1d5{bottom:200.144000pt;}
.y1a2{bottom:201.378667pt;}
.yf3{bottom:204.618667pt;}
.y179{bottom:206.650667pt;}
.y29{bottom:207.830667pt;}
.y10d{bottom:210.030667pt;}
.yc1{bottom:214.780000pt;}
.y14d{bottom:215.117333pt;}
.y12a{bottom:215.360000pt;}
.y84{bottom:216.583627pt;}
.y1d4{bottom:217.358667pt;}
.y5c{bottom:217.517333pt;}
.y1a1{bottom:218.593333pt;}
.yf2{bottom:222.630667pt;}
.y178{bottom:224.664000pt;}
.y28{bottom:225.842667pt;}
.y10c{bottom:228.044000pt;}
.y83{bottom:230.026667pt;}
.yc0{bottom:232.792000pt;}
.y129{bottom:233.372000pt;}
.y1d3{bottom:234.574667pt;}
.y5b{bottom:235.529333pt;}
.y1a0{bottom:235.809333pt;}
.yf1{bottom:240.644000pt;}
.y177{bottom:242.676000pt;}
.y27{bottom:243.854667pt;}
.y10b{bottom:246.056000pt;}
.y82{bottom:249.360160pt;}
.ybf{bottom:250.805333pt;}
.y128{bottom:251.385333pt;}
.y1d2{bottom:251.790667pt;}
.y19f{bottom:253.025333pt;}
.y5a{bottom:253.541333pt;}
.yf0{bottom:258.656000pt;}
.y176{bottom:260.688000pt;}
.y26{bottom:261.868000pt;}
.y81{bottom:262.801973pt;}
.y10a{bottom:264.068000pt;}
.ybe{bottom:268.817333pt;}
.y1d1{bottom:269.005333pt;}
.y127{bottom:269.397333pt;}
.y19e{bottom:270.240000pt;}
.y59{bottom:271.554667pt;}
.yef{bottom:276.669333pt;}
.y175{bottom:278.701333pt;}
.y25{bottom:279.880000pt;}
.y1d0{bottom:286.221333pt;}
.ybd{bottom:286.829333pt;}
.y126{bottom:287.409333pt;}
.y19d{bottom:287.456000pt;}
.y58{bottom:289.566667pt;}
.y80{bottom:289.708000pt;}
.y109{bottom:290.050667pt;}
.yee{bottom:294.681333pt;}
.y174{bottom:296.713333pt;}
.y24{bottom:297.893333pt;}
.y1cf{bottom:303.437333pt;}
.y19c{bottom:304.670667pt;}
.ybc{bottom:304.842667pt;}
.y125{bottom:305.422667pt;}
.y57{bottom:307.580000pt;}
.yed{bottom:312.693333pt;}
.y23{bottom:315.905333pt;}
.y108{bottom:318.160000pt;}
.y1ce{bottom:320.652000pt;}
.y19b{bottom:321.886667pt;}
.y7f{bottom:322.696000pt;}
.ybb{bottom:322.854667pt;}
.y124{bottom:323.434667pt;}
.y56{bottom:325.592000pt;}
.yec{bottom:330.706667pt;}
.y22{bottom:333.917333pt;}
.y107{bottom:335.256000pt;}
.y1cd{bottom:337.868000pt;}
.y19a{bottom:339.102667pt;}
.y7e{bottom:340.709333pt;}
.yba{bottom:340.868000pt;}
.y55{bottom:343.604000pt;}
.yeb{bottom:348.718667pt;}
.y21{bottom:351.930667pt;}
.y106{bottom:352.352000pt;}
.y173{bottom:353.646667pt;}
.y123{bottom:354.546667pt;}
.y1cc{bottom:355.082667pt;}
.y199{bottom:356.317333pt;}
.y7d{bottom:358.721333pt;}
.yb9{bottom:358.880000pt;}
.y54{bottom:361.617333pt;}
.yea{bottom:366.732000pt;}
.y105{bottom:369.448000pt;}
.y20{bottom:369.942667pt;}
.y172{bottom:371.660000pt;}
.y1cb{bottom:372.298667pt;}
.y198{bottom:373.533333pt;}
.y7c{bottom:376.733333pt;}
.yb8{bottom:376.892000pt;}
.y53{bottom:379.629333pt;}
.ye9{bottom:384.744000pt;}
.y1ca{bottom:389.514667pt;}
.y171{bottom:389.672000pt;}
.y197{bottom:390.748000pt;}
.y7b{bottom:394.746667pt;}
.yb7{bottom:394.905333pt;}
.y1f{bottom:395.925333pt;}
.y52{bottom:397.642667pt;}
.y142{bottom:399.741333pt;}
.ye8{bottom:402.756000pt;}
.y1c9{bottom:406.729333pt;}
.y170{bottom:407.684000pt;}
.y196{bottom:407.964000pt;}
.y7a{bottom:412.758667pt;}
.yb6{bottom:412.917333pt;}
.y51{bottom:415.654667pt;}
.y141{bottom:417.753333pt;}
.ye7{bottom:420.769333pt;}
.y1c8{bottom:423.945333pt;}
.y195{bottom:425.180000pt;}
.y16f{bottom:425.697333pt;}
.y79{bottom:430.772000pt;}
.yb5{bottom:430.929333pt;}
.y50{bottom:433.666667pt;}
.y140{bottom:435.766667pt;}
.ye6{bottom:438.781333pt;}
.y1c7{bottom:441.160000pt;}
.y194{bottom:442.394667pt;}
.y16e{bottom:443.709333pt;}
.y78{bottom:448.784000pt;}
.yb4{bottom:448.942667pt;}
.y4f{bottom:451.680000pt;}
.y13f{bottom:453.778667pt;}
.ye5{bottom:456.794667pt;}
.y1c6{bottom:458.376000pt;}
.y193{bottom:459.610667pt;}
.y16d{bottom:461.722667pt;}
.y1e{bottom:463.850667pt;}
.y77{bottom:466.796000pt;}
.yb3{bottom:466.954667pt;}
.y4e{bottom:469.692000pt;}
.y13e{bottom:471.790667pt;}
.ye4{bottom:474.806667pt;}
.y1c5{bottom:475.592000pt;}
.y192{bottom:476.825333pt;}
.y16c{bottom:479.734667pt;}
.y76{bottom:484.809333pt;}
.yb2{bottom:484.968000pt;}
.y4d{bottom:487.704000pt;}
.y13d{bottom:489.804000pt;}
.y1c4{bottom:492.806667pt;}
.ye3{bottom:492.818667pt;}
.y191{bottom:494.041333pt;}
.y16b{bottom:497.746667pt;}
.y1d{bottom:497.804000pt;}
.y75{bottom:502.821333pt;}
.yb1{bottom:502.980000pt;}
.y4c{bottom:505.717333pt;}
.y13c{bottom:507.816000pt;}
.y1c3{bottom:510.022667pt;}
.ye2{bottom:510.832000pt;}
.y190{bottom:511.257333pt;}
.y16a{bottom:515.760000pt;}
.y1c{bottom:515.816000pt;}
.y1dd{bottom:516.413333pt;}
.y74{bottom:520.834667pt;}
.yb0{bottom:520.992000pt;}
.y4b{bottom:523.729333pt;}
.y13b{bottom:525.829333pt;}
.y1c2{bottom:527.237333pt;}
.ye1{bottom:528.844000pt;}
.y1dc{bottom:533.629333pt;}
.y169{bottom:533.772000pt;}
.y1b{bottom:533.828000pt;}
.y18f{bottom:536.442667pt;}
.y73{bottom:538.846667pt;}
.yaf{bottom:539.005333pt;}
.y4a{bottom:541.742667pt;}
.y13a{bottom:543.841333pt;}
.y1c1{bottom:544.453333pt;}
.ye0{bottom:546.857333pt;}
.y1db{bottom:550.844000pt;}
.y168{bottom:551.785333pt;}
.y1a{bottom:551.841333pt;}
.y72{bottom:556.858667pt;}
.yae{bottom:557.017333pt;}
.y49{bottom:559.754667pt;}
.y1c0{bottom:561.669333pt;}
.y139{bottom:561.853333pt;}
.y14c{bottom:563.572000pt;}
.ydf{bottom:564.869333pt;}
.y167{bottom:569.797333pt;}
.y19{bottom:569.853333pt;}
.y18e{bottom:571.510667pt;}
.y71{bottom:574.872000pt;}
.yad{bottom:575.030667pt;}
.y48{bottom:577.766667pt;}
.y1bf{bottom:578.884000pt;}
.y138{bottom:579.866667pt;}
.y14b{bottom:581.584000pt;}
.yde{bottom:582.881333pt;}
.y166{bottom:587.809333pt;}
.y18{bottom:587.866667pt;}
.y70{bottom:592.884000pt;}
.y18d{bottom:592.990667pt;}
.yac{bottom:593.042667pt;}
.y47{bottom:595.780000pt;}
.y1be{bottom:596.100000pt;}
.y137{bottom:597.878667pt;}
.y14a{bottom:599.596000pt;}
.ydd{bottom:600.894667pt;}
.y165{bottom:605.822667pt;}
.y17{bottom:605.878667pt;}
.y18c{bottom:606.500000pt;}
.y6f{bottom:610.896000pt;}
.yab{bottom:611.054667pt;}
.y1bd{bottom:613.314667pt;}
.y46{bottom:613.792000pt;}
.y136{bottom:615.892000pt;}
.y149{bottom:617.609333pt;}
.ydc{bottom:618.906667pt;}
.y18b{bottom:620.009333pt;}
.y164{bottom:623.834667pt;}
.y16{bottom:623.890667pt;}
.y6e{bottom:628.909333pt;}
.yaa{bottom:629.068000pt;}
.y1bc{bottom:630.530667pt;}
.y45{bottom:631.805333pt;}
.y135{bottom:633.904000pt;}
.y148{bottom:635.621333pt;}
.ydb{bottom:636.920000pt;}
.y18a{bottom:641.489333pt;}
.y163{bottom:641.846667pt;}
.y15{bottom:641.904000pt;}
.y6d{bottom:646.921333pt;}
.ya9{bottom:647.080000pt;}
.y1bb{bottom:647.746667pt;}
.y44{bottom:649.817333pt;}
.y134{bottom:651.916000pt;}
.y104{bottom:651.996000pt;}
.y147{bottom:653.634667pt;}
.y189{bottom:654.998667pt;}
.y162{bottom:659.860000pt;}
.y14{bottom:659.916000pt;}
.y122{bottom:660.209333pt;}
.y6c{bottom:664.934667pt;}
.y1ba{bottom:664.961333pt;}
.ya8{bottom:665.093333pt;}
.y43{bottom:667.829333pt;}
.y103{bottom:670.008000pt;}
.y146{bottom:671.646667pt;}
.y188{bottom:676.477333pt;}
.yda{bottom:676.480000pt;}
.y161{bottom:677.872000pt;}
.y133{bottom:677.898667pt;}
.y13{bottom:677.929333pt;}
.y121{bottom:678.221333pt;}
.y1b9{bottom:682.177333pt;}
.y6b{bottom:682.946667pt;}
.ya7{bottom:683.105333pt;}
.y42{bottom:685.842667pt;}
.y102{bottom:688.021333pt;}
.y145{bottom:689.658667pt;}
.y187{bottom:689.986667pt;}
.yd9{bottom:691.409333pt;}
.y160{bottom:695.885333pt;}
.y12{bottom:695.941333pt;}
.y120{bottom:696.233333pt;}
.y1b8{bottom:699.392000pt;}
.y6a{bottom:700.958667pt;}
.y186{bottom:703.496000pt;}
.y41{bottom:703.854667pt;}
.y132{bottom:706.008000pt;}
.y101{bottom:706.033333pt;}
.yd8{bottom:706.338667pt;}
.ya6{bottom:709.088000pt;}
.y15f{bottom:713.897333pt;}
.y11f{bottom:714.246667pt;}
.y1b7{bottom:716.608000pt;}
.y185{bottom:717.005333pt;}
.y69{bottom:718.972000pt;}
.y144{bottom:719.193333pt;}
.yd7{bottom:721.268000pt;}
.y40{bottom:721.868000pt;}
.y131{bottom:723.104000pt;}
.y100{bottom:724.046667pt;}
.yf{bottom:727.436048pt;}
.ye{bottom:728.118667pt;}
.y184{bottom:730.514667pt;}
.y15e{bottom:731.909333pt;}
.y11e{bottom:732.258667pt;}
.y1b6{bottom:733.824000pt;}
.yd6{bottom:736.197333pt;}
.y68{bottom:736.984000pt;}
.y3f{bottom:739.880000pt;}
.yff{bottom:742.058667pt;}
.y183{bottom:744.025333pt;}
.ya1{bottom:747.152480pt;}
.y15d{bottom:749.922667pt;}
.y1b4{bottom:751.038667pt;}
.yd5{bottom:751.126667pt;}
.ya5{bottom:753.874613pt;}
.y67{bottom:754.997333pt;}
.y1b5{bottom:755.378667pt;}
.y3e{bottom:757.892000pt;}
.y11d{bottom:758.241333pt;}
.yfe{bottom:760.070667pt;}
.ya0{bottom:760.595520pt;}
.yd{bottom:762.789333pt;}
.y182{bottom:765.504000pt;}
.yd4{bottom:766.056000pt;}
.ya4{bottom:767.317653pt;}
.y15c{bottom:767.934667pt;}
.y1b3{bottom:768.254667pt;}
.y66{bottom:773.009333pt;}
.y9f{bottom:774.038560pt;}
.y3d{bottom:775.905333pt;}
.yfd{bottom:778.084000pt;}
.yc{bottom:778.929333pt;}
.y181{bottom:779.013333pt;}
.y99{bottom:780.760693pt;}
.yd3{bottom:780.985333pt;}
.y1b2{bottom:785.469333pt;}
.y15b{bottom:785.948000pt;}
.y9e{bottom:787.481600pt;}
.y65{bottom:791.021333pt;}
.y180{bottom:792.522667pt;}
.y3c{bottom:793.917333pt;}
.y98{bottom:794.203733pt;}
.yd2{bottom:795.914667pt;}
.yfc{bottom:796.096000pt;}
.yb{bottom:799.408000pt;}
.y11c{bottom:800.164000pt;}
.y9d{bottom:800.924640pt;}
.y1b1{bottom:802.685333pt;}
.y15a{bottom:803.960000pt;}
.y97{bottom:807.645547pt;}
.y64{bottom:809.034667pt;}
.yd1{bottom:810.844000pt;}
.ya{bottom:811.208000pt;}
.y3b{bottom:811.930667pt;}
.y9c{bottom:814.367680pt;}
.y11b{bottom:819.127787pt;}
.y1b0{bottom:819.901333pt;}
.ya3{bottom:821.088587pt;}
.y159{bottom:821.972000pt;}
.yfb{bottom:822.078667pt;}
.yd0{bottom:825.773333pt;}
.y9b{bottom:827.810720pt;}
.y3a{bottom:829.942667pt;}
.y9{bottom:831.688000pt;}
.y11a{bottom:832.862773pt;}
.ya2{bottom:834.531627pt;}
.y63{bottom:835.017333pt;}
.y1af{bottom:837.116000pt;}
.y158{bottom:839.985333pt;}
.ycf{bottom:840.702667pt;}
.y9a{bottom:841.253760pt;}
.y119{bottom:846.597760pt;}
.y8{bottom:847.826667pt;}
.y39{bottom:847.954667pt;}
.yfa{bottom:853.029333pt;}
.y1ae{bottom:854.332000pt;}
.yce{bottom:855.632000pt;}
.y157{bottom:857.997333pt;}
.y118{bottom:860.332747pt;}
.y94{bottom:860.586027pt;}
.y38{bottom:865.968000pt;}
.y96{bottom:867.308160pt;}
.y7{bottom:867.597333pt;}
.y1ad{bottom:871.546667pt;}
.y93{bottom:874.029067pt;}
.y156{bottom:876.010667pt;}
.ycd{bottom:876.964000pt;}
.y117{bottom:879.956960pt;}
.y95{bottom:880.751200pt;}
.ycb{bottom:881.196000pt;}
.y37{bottom:883.980000pt;}
.y6{bottom:885.609333pt;}
.y92{bottom:887.472107pt;}
.y1ac{bottom:888.762667pt;}
.y155{bottom:894.022667pt;}
.yca{bottom:895.808000pt;}
.ycc{bottom:898.296000pt;}
.y36{bottom:901.993333pt;}
.y1ab{bottom:905.978667pt;}
.y91{bottom:906.804373pt;}
.y116{bottom:906.862667pt;}
.y154{bottom:912.034667pt;}
.y35{bottom:920.005333pt;}
.y90{bottom:920.247413pt;}
.y1aa{bottom:923.193333pt;}
.y115{bottom:923.958667pt;}
.y5{bottom:925.198667pt;}
.yc9{bottom:926.401333pt;}
.y153{bottom:930.048000pt;}
.y8f{bottom:933.690453pt;}
.y34{bottom:938.017333pt;}
.y1a9{bottom:940.409333pt;}
.y114{bottom:941.054667pt;}
.yc8{bottom:943.497333pt;}
.y152{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y8e{bottom:953.023947pt;}
.y33{bottom:956.030667pt;}
.y1a8{bottom:957.624000pt;}
.y151{bottom:966.073333pt;}
.y8d{bottom:966.466987pt;}
.y32{bottom:974.042667pt;}
.y1a7{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y31{bottom:992.056000pt;}
.y8c{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h18{height:17.332218pt;}
.ha{height:22.673858pt;}
.h8{height:27.076941pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.hf{height:31.157778pt;}
.h10{height:31.676498pt;}
.h12{height:32.028459pt;}
.h19{height:33.713664pt;}
.h17{height:34.144051pt;}
.h16{height:34.430976pt;}
.h9{height:34.813542pt;}
.h15{height:35.052646pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h4{height:38.947124pt;}
.h2{height:45.272024pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h11{height:58.560125pt;}
.h14{height:58.912086pt;}
.h13{height:58.916992pt;}
.h3{height:61.782479pt;}
.h5{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:50.765941pt;}
.xaa{left:100.054667pt;}
.x1{left:102.046667pt;}
.x9d{left:106.120000pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x74{left:115.301013pt;}
.x76{left:117.414560pt;}
.x75{left:120.313173pt;}
.x70{left:122.495413pt;}
.x6e{left:124.937707pt;}
.x71{left:126.780160pt;}
.x9f{left:127.995893pt;}
.x4{left:129.929333pt;}
.x79{left:132.427733pt;}
.x6c{left:134.560907pt;}
.x6f{left:136.832693pt;}
.x77{left:139.301973pt;}
.x6d{left:142.969707pt;}
.x78{left:144.933600pt;}
.x6b{left:150.744000pt;}
.xa6{left:152.325333pt;}
.x3e{left:155.466667pt;}
.x2e{left:160.785333pt;}
.xa7{left:165.609333pt;}
.x9e{left:166.568427pt;}
.x3f{left:168.749333pt;}
.xa0{left:170.905333pt;}
.x8{left:172.588000pt;}
.x2f{left:174.069333pt;}
.x1d{left:176.490667pt;}
.x30{left:177.456000pt;}
.xa1{left:181.766667pt;}
.x9c{left:183.022667pt;}
.x40{left:185.288000pt;}
.x41{left:188.542667pt;}
.x1e{left:189.774667pt;}
.x31{left:190.740000pt;}
.x28{left:192.758667pt;}
.x9a{left:200.192000pt;}
.x42{left:201.825333pt;}
.x1f{left:205.124000pt;}
.x29{left:206.042667pt;}
.x43{left:208.334667pt;}
.x2a{left:209.430667pt;}
.xba{left:213.650667pt;}
.x20{left:218.408000pt;}
.x5a{left:219.682667pt;}
.x5b{left:220.576000pt;}
.x21{left:221.794667pt;}
.x2b{left:222.713333pt;}
.xc1{left:223.704000pt;}
.x9b{left:224.700000pt;}
.x2c{left:226.101333pt;}
.x7e{left:227.469867pt;}
.x63{left:229.252000pt;}
.x7f{left:230.747520pt;}
.x66{left:231.836000pt;}
.x3c{left:232.845333pt;}
.x5c{left:233.860000pt;}
.x22{left:235.078667pt;}
.x36{left:236.810667pt;}
.x2d{left:239.384000pt;}
.x64{left:242.536000pt;}
.x72{left:244.005333pt;}
.x3d{left:246.128000pt;}
.xb9{left:248.317333pt;}
.x5d{left:250.397333pt;}
.x37{left:253.481333pt;}
.x96{left:254.569333pt;}
.x99{left:256.088000pt;}
.x65{left:259.097333pt;}
.x93{left:261.718667pt;}
.x98{left:265.370667pt;}
.x5e{left:266.936000pt;}
.x97{left:268.209333pt;}
.xd{left:273.418667pt;}
.xb7{left:277.802667pt;}
.xe{left:280.060000pt;}
.xa2{left:284.084000pt;}
.xf{left:286.609333pt;}
.xbc{left:289.024000pt;}
.xb8{left:291.086667pt;}
.x10{left:293.250667pt;}
.xbd{left:295.001333pt;}
.x32{left:299.844000pt;}
.xb3{left:304.573333pt;}
.x33{left:313.126667pt;}
.xb4{left:317.856000pt;}
.xab{left:325.298667pt;}
.x7a{left:332.338827pt;}
.x81{left:338.646347pt;}
.x82{left:340.532960pt;}
.x7b{left:342.287093pt;}
.x5f{left:345.406667pt;}
.x19{left:346.414667pt;}
.x73{left:352.492960pt;}
.x80{left:353.643573pt;}
.x60{left:358.689333pt;}
.x1a{left:359.697333pt;}
.x1b{left:363.081333pt;}
.xa5{left:365.120000pt;}
.x7c{left:366.836373pt;}
.x1c{left:376.365333pt;}
.x67{left:378.917333pt;}
.x68{left:392.201333pt;}
.x69{left:395.525333pt;}
.xac{left:400.252000pt;}
.x9{left:408.893333pt;}
.x95{left:413.298667pt;}
.xa{left:415.534667pt;}
.xb{left:418.885333pt;}
.x15{left:421.844000pt;}
.xc{left:425.526667pt;}
.xb2{left:431.692000pt;}
.x8d{left:432.625333pt;}
.x16{left:438.382667pt;}
.x84{left:440.763893pt;}
.xa3{left:442.400000pt;}
.x38{left:444.965333pt;}
.x8e{left:445.908000pt;}
.x83{left:448.509067pt;}
.x86{left:449.982293pt;}
.x85{left:452.863733pt;}
.x7d{left:455.091360pt;}
.x39{left:458.249333pt;}
.x92{left:460.058667pt;}
.x3a{left:461.504000pt;}
.x8f{left:462.500000pt;}
.x87{left:469.427413pt;}
.xa4{left:472.321333pt;}
.x3b{left:474.786667pt;}
.x94{left:481.228000pt;}
.x11{left:489.348000pt;}
.x6a{left:493.365333pt;}
.x44{left:494.830667pt;}
.x12{left:495.989333pt;}
.x13{left:502.498667pt;}
.x50{left:505.169333pt;}
.x17{left:506.498667pt;}
.x45{left:508.114667pt;}
.x14{left:509.140000pt;}
.x46{left:514.624000pt;}
.x51{left:518.453333pt;}
.x18{left:519.781333pt;}
.x52{left:521.741333pt;}
.x4c{left:523.384000pt;}
.x47{left:527.906667pt;}
.xc0{left:529.644000pt;}
.x23{left:534.897333pt;}
.x4d{left:536.666667pt;}
.x53{left:538.312000pt;}
.x4e{left:543.408000pt;}
.x24{left:548.181333pt;}
.x90{left:550.661333pt;}
.x25{left:551.568000pt;}
.xa8{left:555.784000pt;}
.x4f{left:556.692000pt;}
.x91{left:563.944000pt;}
.x26{left:564.852000pt;}
.x89{left:566.917973pt;}
.x56{left:568.980000pt;}
.x8a{left:571.613653pt;}
.xaf{left:573.280000pt;}
.x88{left:574.659467pt;}
.x8b{left:577.657440pt;}
.x57{left:582.264000pt;}
.x58{left:585.650667pt;}
.x61{left:586.920000pt;}
.xb5{left:588.369333pt;}
.xb0{left:589.904000pt;}
.x48{left:592.137333pt;}
.xa9{left:595.300000pt;}
.x59{left:598.934667pt;}
.x62{left:600.204000pt;}
.xb6{left:601.653333pt;}
.xb1{left:603.188000pt;}
.x8c{left:604.246667pt;}
.x49{left:605.421333pt;}
.x4a{left:608.709333pt;}
.xbb{left:614.494667pt;}
.x4b{left:621.992000pt;}
.x6{left:623.413317pt;}
.x27{left:636.660000pt;}
.xad{left:656.125333pt;}
.xbe{left:666.254667pt;}
.xae{left:669.408000pt;}
.x54{left:672.132000pt;}
.x34{left:673.105333pt;}
.x55{left:685.414667pt;}
.x35{left:686.389333pt;}
.xbf{left:690.165333pt;}
}




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