
    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_07a44eb234f4cefc4ef2691c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_407f3f11055238c44d2fc585.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f7afae8294f33ec15125340a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_eefae3f3d5e935f415287b8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de12c6fd8093134751a4e60b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693000;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_a54a2b6e33c08fe4550b30b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7cc3134a21c08f77161e5aea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_6c88d1adba11acad3d0dd8d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722000;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_b24d9766ba643cf20d9a5b5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.803000;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_8d2f190bbd1dd37157a0f5a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;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_6369438a49456f54c953a483.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003418;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_381c144da715fc5d797599ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_f16cf27cac1f79543cbde6e3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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:ffe;src:url('chunks/assets/font_0ccd73ac46e9b48f561162f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7138ad099aa79fbdfb614885.woff2')format("woff");}.fff{font-family:fff;line-height:0.997000;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:ff10;src:url('chunks/assets/font_8d2f190bbd1dd37157a0f5a0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.014160;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:ff11;src:url('chunks/assets/font_ead71755cb9aca216cba32f1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003418;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:ff12;src:url('chunks/assets/font_5ba21a4e21134823b23650e9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206055;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:ff13;src:url('chunks/assets/font_8d2f190bbd1dd37157a0f5a0.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.014160;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:ff14;src:url('chunks/assets/font_ead71755cb9aca216cba32f1.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003418;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:ff15;src:url('chunks/assets/font_5ba21a4e21134823b23650e9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;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;}
.m6{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.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);}
.m12{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);}
.me{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m14{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);}
.m22{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);}
.m18{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);}
.m13{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);}
.m1{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);}
.m5{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);}
.m7{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);}
.m19{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);}
.m1f{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);}
.m27{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);}
.mf{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);}
.m20{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);}
.m11{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);}
.m24{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m16{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);}
.m10{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);}
.m15{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);}
.mc{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);}
.m17{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);}
.m26{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);}
.m8{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);}
.m1b{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);}
.m9{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);}
.m4{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);}
.m28{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);}
.m1d{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);}
.m23{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);}
.md{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);}
.m21{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);}
.m25{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{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:-17.364000px;}
.v8{vertical-align:-15.786000px;}
.va{vertical-align:-13.404000px;}
.v3{vertical-align:-11.148000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.786000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:28.206000px;}
.v5{vertical-align:29.322000px;}
.vb{vertical-align:31.980000px;}
.v4{vertical-align:40.470000px;}
.v9{vertical-align:43.596000px;}
.ls4c{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.220200px;}
.ls50{letter-spacing:-0.165600px;}
.ls58{letter-spacing:-0.138000px;}
.ls11{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000091px;}
.ls5e{letter-spacing:0.000121px;}
.lsb{letter-spacing:0.000178px;}
.ls42{letter-spacing:0.000422px;}
.ls1d{letter-spacing:0.000608px;}
.ls62{letter-spacing:0.000800px;}
.ls5a{letter-spacing:0.000823px;}
.ls5d{letter-spacing:0.001303px;}
.ls9{letter-spacing:0.001952px;}
.ls19{letter-spacing:0.001996px;}
.ls1{letter-spacing:0.002725px;}
.lsc{letter-spacing:0.002970px;}
.lsa{letter-spacing:0.003488px;}
.ls1c{letter-spacing:0.003984px;}
.ls1a{letter-spacing:0.004416px;}
.ls59{letter-spacing:0.175200px;}
.ls14{letter-spacing:0.180000px;}
.ls56{letter-spacing:0.206400px;}
.ls51{letter-spacing:0.210240px;}
.ls49{letter-spacing:0.216000px;}
.ls4e{letter-spacing:0.247680px;}
.ls55{letter-spacing:0.259800px;}
.ls4d{letter-spacing:0.311760px;}
.ls15{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.445200px;}
.ls32{letter-spacing:0.451200px;}
.ls57{letter-spacing:0.490800px;}
.ls45{letter-spacing:0.520800px;}
.ls29{letter-spacing:0.567886px;}
.ls4f{letter-spacing:0.588960px;}
.ls16{letter-spacing:0.613440px;}
.ls41{letter-spacing:0.648088px;}
.ls20{letter-spacing:0.748200px;}
.ls33{letter-spacing:0.850185px;}
.ls2b{letter-spacing:0.856185px;}
.ls35{letter-spacing:0.878370px;}
.ls2d{letter-spacing:0.884370px;}
.ls2c{letter-spacing:0.890755px;}
.ls34{letter-spacing:0.896755px;}
.ls31{letter-spacing:1.311292px;}
.ls28{letter-spacing:1.317292px;}
.ls26{letter-spacing:1.318200px;}
.ls23{letter-spacing:1.720741px;}
.ls2e{letter-spacing:1.967674px;}
.ls36{letter-spacing:1.973674px;}
.ls4{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls27{letter-spacing:5.665258px;}
.ls0{letter-spacing:10.461300px;}
.ls10{letter-spacing:11.954850px;}
.lsd{letter-spacing:12.059428px;}
.ls30{letter-spacing:13.089483px;}
.ls61{letter-spacing:13.320988px;}
.ls5f{letter-spacing:13.351587px;}
.ls25{letter-spacing:13.389483px;}
.ls5b{letter-spacing:13.448400px;}
.ls5c{letter-spacing:13.454400px;}
.ls60{letter-spacing:13.583767px;}
.ls3c{letter-spacing:14.100088px;}
.lsf{letter-spacing:14.583153px;}
.ls3a{letter-spacing:14.640687px;}
.ls53{letter-spacing:14.670278px;}
.ls54{letter-spacing:14.676184px;}
.ls12{letter-spacing:14.872229px;}
.ls5{letter-spacing:14.942725px;}
.ls13{letter-spacing:14.943900px;}
.ls6{letter-spacing:14.944200px;}
.ls39{letter-spacing:15.018082px;}
.ls3b{letter-spacing:15.159259px;}
.ls38{letter-spacing:15.161080px;}
.ls24{letter-spacing:15.355200px;}
.ls21{letter-spacing:15.361200px;}
.ls4b{letter-spacing:15.663483px;}
.ls48{letter-spacing:16.019861px;}
.ls7{letter-spacing:17.929200px;}
.ls1e{letter-spacing:18.094200px;}
.ls1f{letter-spacing:18.369483px;}
.ls2f{letter-spacing:18.754185px;}
.ls52{letter-spacing:18.958884px;}
.ls4a{letter-spacing:22.236523px;}
.ls3{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lse{letter-spacing:64.321654px;}
.ls22{letter-spacing:80.481483px;}
.ls3f{letter-spacing:120.868090px;}
.ls40{letter-spacing:120.874090px;}
.ls3d{letter-spacing:248.740090px;}
.ls3e{letter-spacing:248.746090px;}
.ls47{letter-spacing:403.662600px;}
.ls46{letter-spacing:405.459797px;}
.ls44{letter-spacing:428.393510px;}
.ls43{letter-spacing:433.542600px;}
.ls37{letter-spacing:797.158185px;}
.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;}
}
.ws7b{word-spacing:-18.516960px;}
.ws79{word-spacing:-18.175680px;}
.ws7d{word-spacing:-18.138240px;}
.ws7e{word-spacing:-17.928000px;}
.ws7c{word-spacing:-17.762400px;}
.ws7a{word-spacing:-17.496000px;}
.ws83{word-spacing:-15.430800px;}
.ws81{word-spacing:-15.146400px;}
.ws85{word-spacing:-15.115200px;}
.wsf{word-spacing:-14.943900px;}
.ws86{word-spacing:-14.940000px;}
.ws84{word-spacing:-14.802000px;}
.ws4f{word-spacing:-14.719800px;}
.ws82{word-spacing:-14.580000px;}
.ws77{word-spacing:-14.472000px;}
.ws14{word-spacing:-14.355754px;}
.ws78{word-spacing:-14.040000px;}
.ws60{word-spacing:-13.449600px;}
.ws4d{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.955150px;}
.ws4e{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.460700px;}
.ws35{word-spacing:-3.168107px;}
.ws89{word-spacing:-2.809453px;}
.ws80{word-spacing:-2.689902px;}
.ws87{word-spacing:-2.570351px;}
.ws50{word-spacing:-1.972595px;}
.ws4b{word-spacing:-1.793268px;}
.ws30{word-spacing:-1.733492px;}
.ws49{word-spacing:-1.554166px;}
.ws32{word-spacing:-1.494390px;}
.ws33{word-spacing:-1.434614px;}
.ws94{word-spacing:-1.374839px;}
.ws6c{word-spacing:-1.344960px;}
.ws9d{word-spacing:-1.291162px;}
.ws5c{word-spacing:-1.255288px;}
.ws5b{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws6d{word-spacing:-1.129766px;}
.ws7{word-spacing:-1.046070px;}
.wsa2{word-spacing:-0.968371px;}
.ws5a{word-spacing:-0.956410px;}
.ws88{word-spacing:-0.836858px;}
.ws3e{word-spacing:-0.657532px;}
.wsa3{word-spacing:-0.645581px;}
.ws37{word-spacing:-0.597756px;}
.ws3f{word-spacing:-0.478205px;}
.wsad{word-spacing:-0.430387px;}
.ws51{word-spacing:-0.418429px;}
.wsa4{word-spacing:-0.376589px;}
.ws3c{word-spacing:-0.358654px;}
.ws2a{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.268992px;}
.ws39{word-spacing:-0.239102px;}
.wsa9{word-spacing:-0.215194px;}
.ws3a{word-spacing:-0.179327px;}
.ws1e{word-spacing:-0.161395px;}
.ws3b{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.ws10{word-spacing:-0.059776px;}
.ws73{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws56{word-spacing:-0.006696px;}
.ws11{word-spacing:-0.003625px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:0.001225px;}
.ws75{word-spacing:0.047821px;}
.ws25{word-spacing:0.053798px;}
.ws45{word-spacing:0.059776px;}
.ws17{word-spacing:0.095641px;}
.wsa7{word-spacing:0.105952px;}
.ws23{word-spacing:0.107597px;}
.ws42{word-spacing:0.119551px;}
.ws1c{word-spacing:0.161395px;}
.ws31{word-spacing:0.179327px;}
.ws41{word-spacing:0.239102px;}
.ws3d{word-spacing:0.298878px;}
.ws4c{word-spacing:0.358654px;}
.ws36{word-spacing:0.418429px;}
.ws52{word-spacing:0.597756px;}
.ws5d{word-spacing:0.657532px;}
.ws46{word-spacing:0.717307px;}
.ws44{word-spacing:0.777083px;}
.ws9f{word-spacing:0.914573px;}
.ws6{word-spacing:1.004227px;}
.ws76{word-spacing:1.075961px;}
.ws21{word-spacing:1.129766px;}
.ws9e{word-spacing:1.237363px;}
.ws5f{word-spacing:1.255288px;}
.ws8c{word-spacing:1.374839px;}
.ws40{word-spacing:1.613941px;}
.ws59{word-spacing:1.673717px;}
.ws97{word-spacing:1.733492px;}
.wsae{word-spacing:1.775347px;}
.ws20{word-spacing:1.936742px;}
.ws22{word-spacing:2.044339px;}
.ws58{word-spacing:2.073656px;}
.ws57{word-spacing:2.092146px;}
.ws91{word-spacing:2.151922px;}
.wsa1{word-spacing:2.205734px;}
.ws5e{word-spacing:2.211697px;}
.wsaf{word-spacing:2.367130px;}
.ws0{word-spacing:2.511541px;}
.ws8f{word-spacing:2.570351px;}
.ws9c{word-spacing:2.582323px;}
.wsb4{word-spacing:2.636122px;}
.ws38{word-spacing:2.749678px;}
.ws27{word-spacing:2.797517px;}
.ws55{word-spacing:2.869229px;}
.ws54{word-spacing:2.883265px;}
.ws8d{word-spacing:2.929004px;}
.ws98{word-spacing:3.108331px;}
.ws28{word-spacing:3.219667px;}
.wsb8{word-spacing:3.220762px;}
.ws2d{word-spacing:3.227882px;}
.wsab{word-spacing:3.227904px;}
.ws8a{word-spacing:3.287658px;}
.wsb3{word-spacing:3.389299px;}
.wsb1{word-spacing:3.496896px;}
.ws90{word-spacing:3.526760px;}
.ws29{word-spacing:3.586536px;}
.ws1f{word-spacing:3.712090px;}
.ws26{word-spacing:3.819686px;}
.ws93{word-spacing:3.945190px;}
.ws2b{word-spacing:4.004965px;}
.ws2c{word-spacing:4.064741px;}
.ws1a{word-spacing:4.142477px;}
.ws95{word-spacing:4.244068px;}
.ws43{word-spacing:4.423394px;}
.wsa0{word-spacing:4.465267px;}
.wsd{word-spacing:4.770079px;}
.ws19{word-spacing:4.788058px;}
.ws24{word-spacing:4.841856px;}
.wse{word-spacing:4.853765px;}
.ws8e{word-spacing:4.901599px;}
.ws34{word-spacing:5.140702px;}
.ws1d{word-spacing:5.379840px;}
.ws9a{word-spacing:5.541235px;}
.ws48{word-spacing:5.618906px;}
.ws4a{word-spacing:5.798233px;}
.ws99{word-spacing:5.917824px;}
.ws9b{word-spacing:6.025421px;}
.ws8b{word-spacing:6.216662px;}
.ws47{word-spacing:6.635092px;}
.ws96{word-spacing:6.933970px;}
.ws7f{word-spacing:7.292623px;}
.ws92{word-spacing:7.711052px;}
.wsb{word-spacing:7.782761px;}
.ws53{word-spacing:8.488135px;}
.ws2{word-spacing:10.418857px;}
.ws2f{word-spacing:11.904926px;}
.ws9{word-spacing:12.176255px;}
.wsb2{word-spacing:13.234406px;}
.wsa6{word-spacing:13.395802px;}
.wsac{word-spacing:13.503398px;}
.ws2e{word-spacing:13.748388px;}
.wsa{word-spacing:16.109478px;}
.wsb5{word-spacing:16.462310px;}
.wsaa{word-spacing:16.516109px;}
.wsb0{word-spacing:16.614854px;}
.wsb7{word-spacing:16.616054px;}
.wsb6{word-spacing:16.617715px;}
.wsa5{word-spacing:16.623706px;}
.wsa8{word-spacing:16.731302px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws12{word-spacing:40.042186px;}
.ws65{word-spacing:71.229082px;}
.ws64{word-spacing:71.282880px;}
.ws66{word-spacing:78.868454px;}
.ws6a{word-spacing:83.936189px;}
.ws69{word-spacing:83.942189px;}
.ws68{word-spacing:99.042854px;}
.ws6b{word-spacing:140.844211px;}
.ws67{word-spacing:154.293811px;}
.ws72{word-spacing:171.132710px;}
.ws71{word-spacing:184.582310px;}
.ws6f{word-spacing:189.101376px;}
.ws70{word-spacing:198.031910px;}
.ws63{word-spacing:380.139494px;}
.ws62{word-spacing:414.462874px;}
.ws74{word-spacing:503.714419px;}
.ws6e{word-spacing:1086.620083px;}
.ws61{word-spacing:1679.370854px;}
._f{margin-left:-7.962163px;}
._10{margin-left:-6.873904px;}
._8{margin-left:-5.872384px;}
._34{margin-left:-4.856486px;}
._0{margin-left:-3.849538px;}
._4{margin-left:-2.301354px;}
._7{margin-left:-1.249654px;}
._1a{width:1.235754px;}
._3{width:2.301354px;}
._1b{width:3.412650px;}
._19{width:4.501206px;}
._18{width:5.557680px;}
._31{width:6.700086px;}
._1c{width:7.709040px;}
._2f{width:9.162486px;}
._30{width:10.414678px;}
._1{width:12.968809px;}
._b{width:14.663009px;}
._a{width:16.569907px;}
._15{width:18.351109px;}
._9{width:19.528819px;}
._e{width:20.553127px;}
._d{width:22.810522px;}
._16{width:23.910240px;}
._2{width:25.946136px;}
._c{width:27.759974px;}
._12{width:29.361949px;}
._5{width:30.587087px;}
._11{width:31.588019px;}
._6{width:33.355008px;}
._32{width:34.370970px;}
._33{width:39.804916px;}
._36{width:61.868160px;}
._35{width:88.767360px;}
._29{width:92.318054px;}
._26{width:97.395706px;}
._23{width:99.042854px;}
._25{width:100.495411px;}
._24{width:112.492454px;}
._27{width:131.806080px;}
._28{width:142.242970px;}
._20{width:146.095008px;}
._22{width:167.743411px;}
._1e{width:186.667200px;}
._2c{width:211.589107px;}
._2d{width:303.796170px;}
._2b{width:321.442045px;}
._2a{width:557.297626px;}
._13{width:950.668141px;}
._21{width:1134.667008px;}
._1f{width:1382.188493px;}
._17{width:2093.797603px;}
._37{width:2429.764480px;}
._14{width:2453.674480px;}
._2e{width:2512.859030px;}
._1d{width:3931.654480px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(14,15,14);}
.fc2{color:rgb(46,92,87);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fsd{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs7{font-size:47.820600px;}
.fsa{font-size:48.240000px;}
.fs8{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs9{font-size:56.058000px;}
.fs1{font-size:56.694600px;}
.fse{font-size:57.888000px;}
.fsb{font-size:59.760000px;}
.fs3{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fs10{font-size:64.800000px;}
.fsf{font-size:71.712000px;}
.fs2{font-size:75.592800px;}
.fs4{font-size:107.596800px;}
.yf1{bottom:-1028.014200px;}
.y10b{bottom:-949.995000px;}
.y10a{bottom:-926.883000px;}
.y109{bottom:-903.771000px;}
.y108{bottom:-880.666200px;}
.y107{bottom:-857.554200px;}
.y106{bottom:-834.658200px;}
.y105{bottom:-811.546200px;}
.y104{bottom:-788.434200px;}
.y103{bottom:-765.322200px;}
.y102{bottom:-742.210200px;}
.y101{bottom:-719.314200px;}
.y100{bottom:-696.202200px;}
.yff{bottom:-673.090200px;}
.yfe{bottom:-649.924200px;}
.yfd{bottom:-621.196200px;}
.yfc{bottom:-577.348200px;}
.yfb{bottom:-556.612200px;}
.yfa{bottom:-529.396200px;}
.y116{bottom:-414.589500px;}
.y130{bottom:-349.573500px;}
.y12f{bottom:-330.313500px;}
.y12e{bottom:-311.053500px;}
.y12d{bottom:-291.799500px;}
.y12c{bottom:-272.539500px;}
.y12b{bottom:-253.459500px;}
.y12a{bottom:-234.199500px;}
.y129{bottom:-214.939500px;}
.y128{bottom:-195.679500px;}
.yf9{bottom:-183.112200px;}
.y127{bottom:-176.419500px;}
.yf8{bottom:-160.216200px;}
.y126{bottom:-157.339500px;}
.y125{bottom:-138.079500px;}
.yf7{bottom:-137.104200px;}
.y124{bottom:-118.819500px;}
.yf6{bottom:-113.992200px;}
.y123{bottom:-99.514500px;}
.yf5{bottom:-90.880200px;}
.y122{bottom:-75.574500px;}
.y89{bottom:-54.898500px;}
.yf4{bottom:-46.816200px;}
.y121{bottom:-39.034500px;}
.yf3{bottom:-26.026200px;}
.y120{bottom:-21.754500px;}
.y0{bottom:0.000000px;}
.y11f{bottom:0.925500px;}
.yf2{bottom:1.189800px;}
.y99{bottom:6.517500px;}
.y1e{bottom:10.988264px;}
.y1d{bottom:30.831374px;}
.y4f{bottom:31.890000px;}
.y9a{bottom:88.468500px;}
.y1b{bottom:104.646000px;}
.y85{bottom:107.193000px;}
.y157{bottom:109.902000px;}
.y86{bottom:113.887500px;}
.y4e{bottom:115.354500px;}
.y1a{bottom:122.535000px;}
.y1be{bottom:122.959500px;}
.y84{bottom:126.022500px;}
.y156{bottom:128.731500px;}
.y4d{bottom:134.184000px;}
.y1bd{bottom:140.220000px;}
.y19{bottom:140.422500px;}
.y83{bottom:144.852000px;}
.y155{bottom:147.561000px;}
.y18b{bottom:148.288500px;}
.y4c{bottom:153.013500px;}
.y1bc{bottom:157.480500px;}
.y18{bottom:158.310000px;}
.y82{bottom:163.681500px;}
.y154{bottom:166.390500px;}
.y18a{bottom:167.118000px;}
.y1bb{bottom:174.739500px;}
.y17{bottom:176.199000px;}
.y4b{bottom:176.326500px;}
.y81{bottom:182.511000px;}
.y153{bottom:185.220000px;}
.y189{bottom:185.947500px;}
.y1ba{bottom:192.000000px;}
.yba{bottom:193.431000px;}
.y16{bottom:194.086500px;}
.yd7{bottom:199.209000px;}
.y80{bottom:201.340500px;}
.y152{bottom:204.049500px;}
.y188{bottom:204.777000px;}
.y1b9{bottom:209.260500px;}
.y112{bottom:211.467000px;}
.y15{bottom:211.974000px;}
.yb9{bottom:212.260500px;}
.y7f{bottom:220.170000px;}
.yd6{bottom:221.041500px;}
.y151{bottom:222.879000px;}
.y187{bottom:223.606500px;}
.y1b8{bottom:226.521000px;}
.yb8{bottom:228.148500px;}
.yb7{bottom:228.360000px;}
.y14{bottom:229.863000px;}
.y111{bottom:230.296500px;}
.yb6{bottom:231.090000px;}
.y150{bottom:241.708500px;}
.y186{bottom:242.436000px;}
.y7e{bottom:243.481500px;}
.y1b7{bottom:243.781500px;}
.yd5{bottom:244.683000px;}
.y110{bottom:249.126000px;}
.yb5{bottom:249.918000px;}
.y4a{bottom:251.476500px;}
.y14f{bottom:260.538000px;}
.y1b6{bottom:261.042000px;}
.y185{bottom:261.265500px;}
.y10f{bottom:267.955500px;}
.yd4{bottom:268.323000px;}
.yb4{bottom:268.747500px;}
.y7d{bottom:277.105500px;}
.y1b5{bottom:278.302500px;}
.y14e{bottom:279.367500px;}
.y184{bottom:280.095000px;}
.y10e{bottom:286.785000px;}
.yb3{bottom:287.577000px;}
.y49{bottom:288.865500px;}
.y11e{bottom:289.495500px;}
.yd3{bottom:291.964500px;}
.y1b4{bottom:295.563000px;}
.y7c{bottom:295.935000px;}
.y14d{bottom:298.197000px;}
.y183{bottom:298.924500px;}
.y13{bottom:300.154500px;}
.yb2{bottom:306.406500px;}
.y48{bottom:308.323500px;}
.y11d{bottom:308.575500px;}
.y1b3{bottom:312.823500px;}
.y7b{bottom:314.764500px;}
.yd2{bottom:315.604500px;}
.y14c{bottom:317.026500px;}
.y182{bottom:317.754000px;}
.y12{bottom:318.043500px;}
.y10d{bottom:320.350500px;}
.yb1{bottom:325.236000px;}
.y47{bottom:327.780000px;}
.y11c{bottom:327.835500px;}
.y1b2{bottom:330.082500px;}
.yf0{bottom:333.217800px;}
.y7a{bottom:333.594000px;}
.y14b{bottom:335.856000px;}
.y11{bottom:335.931000px;}
.y181{bottom:336.583500px;}
.yd1{bottom:339.246000px;}
.y10c{bottom:339.583500px;}
.yb0{bottom:344.065500px;}
.yef{bottom:345.097800px;}
.y11b{bottom:347.095500px;}
.y46{bottom:347.236500px;}
.y1b1{bottom:347.343000px;}
.y79{bottom:352.423500px;}
.y10{bottom:353.818500px;}
.y14a{bottom:354.685500px;}
.y180{bottom:355.413000px;}
.yd0{bottom:362.886000px;}
.yaf{bottom:362.895000px;}
.y1b0{bottom:364.603500px;}
.yee{bottom:365.001000px;}
.y11a{bottom:366.355500px;}
.y45{bottom:366.694500px;}
.y78{bottom:371.253000px;}
.y149{bottom:373.515000px;}
.y17f{bottom:374.242500px;}
.yf{bottom:380.673000px;}
.yae{bottom:381.724500px;}
.y1af{bottom:381.864000px;}
.y44{bottom:386.151000px;}
.ycf{bottom:386.527500px;}
.y77{bottom:390.082500px;}
.y148{bottom:392.344500px;}
.y17e{bottom:393.072000px;}
.ye{bottom:398.562000px;}
.y1ae{bottom:399.124500px;}
.yad{bottom:400.554000px;}
.y119{bottom:403.075500px;}
.y43{bottom:405.609000px;}
.y76{bottom:408.912000px;}
.yce{bottom:410.167500px;}
.y147{bottom:411.174000px;}
.y17d{bottom:411.901500px;}
.y1ad{bottom:416.385000px;}
.yd{bottom:416.449500px;}
.yac{bottom:419.383500px;}
.y118{bottom:420.400500px;}
.y42{bottom:425.065500px;}
.y75{bottom:427.741500px;}
.y146{bottom:430.003500px;}
.y17c{bottom:430.731000px;}
.y1ac{bottom:433.645500px;}
.ycd{bottom:433.809000px;}
.yab{bottom:438.213000px;}
.y117{bottom:443.080500px;}
.y41{bottom:444.522000px;}
.yc{bottom:444.798000px;}
.y74{bottom:446.571000px;}
.y145{bottom:448.833000px;}
.y17b{bottom:449.560500px;}
.y1ab{bottom:450.906000px;}
.yaa{bottom:457.042500px;}
.ycc{bottom:457.449000px;}
.y40{bottom:461.163000px;}
.y3f{bottom:461.356500px;}
.y3e{bottom:463.980000px;}
.y73{bottom:465.400500px;}
.y144{bottom:467.661000px;}
.y1aa{bottom:468.165000px;}
.y17a{bottom:468.390000px;}
.yb{bottom:471.652500px;}
.ya9{bottom:480.355500px;}
.ycb{bottom:481.090500px;}
.y3d{bottom:483.436500px;}
.y72{bottom:484.230000px;}
.y1a9{bottom:485.425500px;}
.y143{bottom:486.490500px;}
.y179{bottom:487.219500px;}
.ya{bottom:489.540000px;}
.y1a8{bottom:502.686000px;}
.y3c{bottom:502.893000px;}
.y71{bottom:503.059500px;}
.yca{bottom:504.730500px;}
.y142{bottom:505.320000px;}
.y178{bottom:506.049000px;}
.y9{bottom:507.429000px;}
.ya8{bottom:513.979500px;}
.y70{bottom:521.889000px;}
.y3b{bottom:522.351000px;}
.y141{bottom:524.149500px;}
.y1a7{bottom:524.430000px;}
.y177{bottom:524.877000px;}
.y8{bottom:525.316500px;}
.yc9{bottom:528.372000px;}
.ya7{bottom:532.809000px;}
.y6f{bottom:540.718500px;}
.y3a{bottom:541.807500px;}
.y140{bottom:542.979000px;}
.y7{bottom:543.204000px;}
.y176{bottom:543.706500px;}
.ya6{bottom:551.638500px;}
.yc8{bottom:552.012000px;}
.y1a6{bottom:558.054000px;}
.y6e{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.y39{bottom:561.265500px;}
.y13f{bottom:561.808500px;}
.y175{bottom:562.536000px;}
.ya5{bottom:570.468000px;}
.yc7{bottom:575.653500px;}
.y6d{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.y13e{bottom:580.638000px;}
.y38{bottom:580.722000px;}
.y174{bottom:581.365500px;}
.y1a5{bottom:584.595000px;}
.ya4{bottom:589.297500px;}
.y4{bottom:596.868000px;}
.y6c{bottom:597.207000px;}
.yc6{bottom:599.293500px;}
.y13d{bottom:599.467500px;}
.y37{bottom:600.178500px;}
.y173{bottom:600.195000px;}
.y1a4{bottom:602.169000px;}
.ya3{bottom:608.127000px;}
.y3{bottom:614.757000px;}
.y6b{bottom:616.036500px;}
.y13c{bottom:618.297000px;}
.y172{bottom:619.024500px;}
.y36{bottom:619.636500px;}
.yc5{bottom:622.935000px;}
.ya2{bottom:624.226500px;}
.ya1{bottom:626.956500px;}
.y1a3{bottom:628.708500px;}
.y2{bottom:632.644500px;}
.y6a{bottom:634.866000px;}
.y13b{bottom:637.126500px;}
.y171{bottom:637.854000px;}
.y35{bottom:639.093000px;}
.ya0{bottom:642.844500px;}
.y9f{bottom:643.056000px;}
.y9e{bottom:645.786000px;}
.yc4{bottom:646.575000px;}
.y1{bottom:650.532000px;}
.y69{bottom:653.695500px;}
.y1a2{bottom:655.249500px;}
.y13a{bottom:655.956000px;}
.y170{bottom:656.683500px;}
.yc2{bottom:659.490000px;}
.yc3{bottom:670.215000px;}
.yc1{bottom:671.283000px;}
.y68{bottom:672.525000px;}
.y1a1{bottom:672.823500px;}
.yed{bottom:673.192500px;}
.y139{bottom:674.785500px;}
.y9d{bottom:675.067500px;}
.y16f{bottom:675.513000px;}
.ybe{bottom:675.724500px;}
.y34{bottom:677.679000px;}
.y9c{bottom:685.966500px;}
.y1a0{bottom:690.397500px;}
.y67{bottom:691.354500px;}
.yec{bottom:692.022000px;}
.ybd{bottom:692.163000px;}
.y138{bottom:693.615000px;}
.y33{bottom:693.817500px;}
.yc0{bottom:693.856500px;}
.y16e{bottom:694.342500px;}
.y32{bottom:698.157000px;}
.y19f{bottom:707.971500px;}
.y66{bottom:710.184000px;}
.y137{bottom:712.444500px;}
.y16d{bottom:713.172000px;}
.y31{bottom:714.297000px;}
.ybf{bottom:717.496500px;}
.y115{bottom:719.770500px;}
.y19e{bottom:725.545500px;}
.y30{bottom:726.097500px;}
.y1d3{bottom:728.863500px;}
.y65{bottom:729.013500px;}
.yeb{bottom:729.040500px;}
.y114{bottom:729.670500px;}
.y136{bottom:731.274000px;}
.y16c{bottom:732.001500px;}
.y19d{bottom:743.119500px;}
.yea{bottom:743.238000px;}
.y1d2{bottom:746.124000px;}
.y2f{bottom:746.577000px;}
.y64{bottom:747.843000px;}
.ybc{bottom:749.116500px;}
.y135{bottom:750.103500px;}
.y16b{bottom:750.831000px;}
.y98{bottom:755.746500px;}
.y2e{bottom:758.376000px;}
.y19c{bottom:760.695000px;}
.y1d1{bottom:763.384500px;}
.ye9{bottom:765.070500px;}
.y63{bottom:766.671000px;}
.y134{bottom:768.933000px;}
.y16a{bottom:769.660500px;}
.y97{bottom:774.826500px;}
.y2d{bottom:778.855500px;}
.y1d0{bottom:780.645000px;}
.y62{bottom:785.500500px;}
.y19b{bottom:787.234500px;}
.y169{bottom:788.490000px;}
.ye8{bottom:788.710500px;}
.y2c{bottom:790.656000px;}
.y133{bottom:792.246000px;}
.y96{bottom:794.131500px;}
.y1cf{bottom:797.904000px;}
.ybb{bottom:801.433500px;}
.y61{bottom:804.330000px;}
.y19a{bottom:804.808500px;}
.y168{bottom:807.319500px;}
.y2b{bottom:811.134000px;}
.ye7{bottom:812.350500px;}
.y95{bottom:813.391500px;}
.y1ce{bottom:815.164500px;}
.y199{bottom:822.382500px;}
.y132{bottom:822.673500px;}
.y2a{bottom:822.934500px;}
.y60{bottom:823.159500px;}
.y167{bottom:826.149000px;}
.y1cd{bottom:832.425000px;}
.y94{bottom:832.651500px;}
.ye6{bottom:835.992000px;}
.y29{bottom:839.074500px;}
.y131{bottom:841.906500px;}
.y5f{bottom:841.989000px;}
.y166{bottom:844.978500px;}
.y198{bottom:848.923500px;}
.y1cc{bottom:849.685500px;}
.y93{bottom:851.911500px;}
.y28{bottom:859.552500px;}
.ye5{bottom:859.632000px;}
.y5e{bottom:860.818500px;}
.y165{bottom:863.808000px;}
.y113{bottom:864.334500px;}
.y197{bottom:866.497500px;}
.y1cb{bottom:866.946000px;}
.y92{bottom:870.991500px;}
.y27{bottom:875.692500px;}
.y5d{bottom:879.648000px;}
.y164{bottom:882.637500px;}
.ye4{bottom:883.273500px;}
.y196{bottom:884.071500px;}
.y1ca{bottom:884.206500px;}
.y26{bottom:887.493000px;}
.y91{bottom:890.251500px;}
.y5c{bottom:898.477500px;}
.y163{bottom:901.467000px;}
.y195{bottom:901.645500px;}
.ye3{bottom:906.913500px;}
.y25{bottom:907.972500px;}
.y90{bottom:909.511500px;}
.y5b{bottom:917.307000px;}
.y1c9{bottom:918.727500px;}
.y194{bottom:919.219500px;}
.y162{bottom:920.296500px;}
.y8f{bottom:928.771500px;}
.ye2{bottom:930.555000px;}
.y1c8{bottom:935.986500px;}
.y5a{bottom:936.136500px;}
.y193{bottom:936.795000px;}
.y161{bottom:939.126000px;}
.y8e{bottom:948.031500px;}
.y24{bottom:952.648500px;}
.y1c7{bottom:953.247000px;}
.ye1{bottom:954.195000px;}
.y59{bottom:954.966000px;}
.y160{bottom:957.955500px;}
.y8d{bottom:967.111500px;}
.y1c6{bottom:970.507500px;}
.y23{bottom:971.478000px;}
.y192{bottom:972.301500px;}
.y58{bottom:973.795500px;}
.y15f{bottom:976.785000px;}
.ye0{bottom:977.836500px;}
.y8c{bottom:986.371500px;}
.y1c5{bottom:987.768000px;}
.y191{bottom:991.131000px;}
.y57{bottom:992.625000px;}
.y15e{bottom:995.614500px;}
.ydf{bottom:1001.476500px;}
.y1c4{bottom:1005.028500px;}
.y8b{bottom:1005.631500px;}
.y22{bottom:1008.240000px;}
.y190{bottom:1009.960500px;}
.y56{bottom:1011.454500px;}
.y15d{bottom:1014.444000px;}
.y1c3{bottom:1022.289000px;}
.y8a{bottom:1024.891500px;}
.yde{bottom:1025.118000px;}
.y18f{bottom:1028.790000px;}
.y55{bottom:1030.284000px;}
.y15c{bottom:1033.272000px;}
.ydb{bottom:1035.010500px;}
.y21{bottom:1036.485000px;}
.y1c2{bottom:1039.549500px;}
.ydd{bottom:1041.556500px;}
.y18e{bottom:1047.619500px;}
.y54{bottom:1049.113500px;}
.y15b{bottom:1052.101500px;}
.y9b{bottom:1054.537500px;}
.y1c1{bottom:1056.810000px;}
.y20{bottom:1064.728500px;}
.ydc{bottom:1065.196500px;}
.y18d{bottom:1066.449000px;}
.y53{bottom:1067.943000px;}
.y15a{bottom:1070.931000px;}
.y1c0{bottom:1074.070500px;}
.y88{bottom:1079.461500px;}
.y18c{bottom:1085.278500px;}
.y52{bottom:1086.772500px;}
.y87{bottom:1089.361500px;}
.y159{bottom:1089.760500px;}
.y1bf{bottom:1091.329500px;}
.y1f{bottom:1092.972000px;}
.yda{bottom:1099.804500px;}
.y51{bottom:1105.602000px;}
.y158{bottom:1108.590000px;}
.yd9{bottom:1119.037500px;}
.y1c{bottom:1136.460000px;}
.y50{bottom:1168.366500px;}
.yd8{bottom:1171.354500px;}
.ha{height:26.110157px;}
.he{height:26.296208px;}
.hc{height:26.302208px;}
.h12{height:29.750231px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h1e{height:32.300446px;}
.h1b{height:33.072749px;}
.hb{height:34.813397px;}
.h16{height:35.052500px;}
.h13{height:37.334628px;}
.hf{height:38.896243px;}
.h23{height:39.057638px;}
.h10{height:39.165235px;}
.h5{height:39.402747px;}
.h11{height:39.434227px;}
.h2a{height:41.482876px;}
.h1f{height:42.500452px;}
.h14{height:43.217759px;}
.h15{height:43.516637px;}
.hd{height:43.660208px;}
.h7{height:43.815515px;}
.h2d{height:43.827891px;}
.h19{height:44.612578px;}
.h2e{height:49.117939px;}
.h2c{height:49.939453px;}
.h4{height:50.931027px;}
.h6{height:51.251918px;}
.h29{height:52.593469px;}
.h26{height:53.535094px;}
.h9{height:54.541601px;}
.h17{height:54.575123px;}
.h1a{height:55.266328px;}
.h22{height:57.472243px;}
.h24{height:57.478243px;}
.h28{height:59.927344px;}
.h27{height:66.319594px;}
.h8{height:77.792486px;}
.h1c{height:86.554950px;}
.h1d{height:87.112637px;}
.h2b{height:259.200000px;}
.h25{height:284.551200px;}
.h18{height:743.127000px;}
.h20{height:892.914000px;}
.h21{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:209.166223px;}
.w7{width:316.588500px;}
.w3{width:685.316250px;}
.w6{width:728.785080px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x69{left:-211.506000px;}
.x62{left:-103.963320px;}
.x2d{left:-50.058750px;}
.x6b{left:-15.816000px;}
.x0{left:0.000000px;}
.x6c{left:16.044000px;}
.x1{left:53.574000px;}
.x2{left:58.055459px;}
.x40{left:64.048500px;}
.x3f{left:71.794500px;}
.x55{left:74.256000px;}
.x60{left:75.810000px;}
.x53{left:77.665500px;}
.x4a{left:81.028500px;}
.x8d{left:85.848000px;}
.x2c{left:103.586250px;}
.x61{left:110.739000px;}
.x5f{left:128.250000px;}
.x63{left:130.864680px;}
.x5d{left:134.776500px;}
.x49{left:136.032000px;}
.x5e{left:137.193000px;}
.x2e{left:145.631250px;}
.x64{left:169.096680px;}
.x4b{left:173.727000px;}
.x2f{left:177.491250px;}
.x48{left:188.971500px;}
.x42{left:201.291000px;}
.x4c{left:227.962500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x71{left:266.631000px;}
.x4{left:269.914500px;}
.x58{left:277.567500px;}
.x10{left:281.479500px;}
.xb{left:283.908000px;}
.x57{left:290.433000px;}
.xc{left:298.924500px;}
.x54{left:299.935500px;}
.x7{left:300.978000px;}
.x20{left:305.134500px;}
.x8{left:306.957000px;}
.x6{left:308.130000px;}
.x8b{left:309.442500px;}
.x86{left:311.380500px;}
.x21{left:320.079000px;}
.xf{left:322.357500px;}
.x4d{left:323.667000px;}
.x87{left:326.325000px;}
.x22{left:327.400500px;}
.x35{left:328.711500px;}
.x19{left:331.152000px;}
.x36{left:335.137500px;}
.x80{left:337.042500px;}
.x1a{left:338.623500px;}
.x1b{left:342.285000px;}
.x3c{left:344.118000px;}
.x1c{left:349.756500px;}
.x24{left:355.024500px;}
.x56{left:365.062500px;}
.x25{left:369.967500px;}
.x41{left:372.610500px;}
.x4e{left:377.902500px;}
.x74{left:387.127500px;}
.x7a{left:390.553500px;}
.x8a{left:395.131500px;}
.x67{left:401.154000px;}
.x7c{left:406.674000px;}
.x81{left:414.781500px;}
.x68{left:416.445000px;}
.x7d{left:421.618500px;}
.x59{left:426.907500px;}
.x5a{left:430.392000px;}
.x8c{left:433.978500px;}
.x43{left:441.313500px;}
.x26{left:451.408500px;}
.x34{left:463.177500px;}
.x27{left:466.353000px;}
.x37{left:473.778000px;}
.x9{left:475.932000px;}
.xa{left:481.768500px;}
.x38{left:483.777000px;}
.x23{left:490.183500px;}
.x32{left:493.816500px;}
.x6a{left:499.464000px;}
.x33{left:501.289500px;}
.x88{left:502.578000px;}
.xd{left:511.980000px;}
.x89{left:517.522500px;}
.x39{left:520.209000px;}
.xe{left:526.996500px;}
.x72{left:530.874000px;}
.x1f{left:534.637500px;}
.x73{left:545.817000px;}
.x3a{left:548.376000px;}
.x3b{left:554.802000px;}
.x65{left:557.122680px;}
.x77{left:565.107000px;}
.x28{left:568.587000px;}
.x83{left:573.661500px;}
.x3d{left:575.160000px;}
.x78{left:580.050000px;}
.x3e{left:581.431500px;}
.x29{left:583.531500px;}
.x7b{left:591.604500px;}
.x5b{left:596.080500px;}
.x75{left:600.718500px;}
.x76{left:615.663000px;}
.x44{left:622.275000px;}
.x8f{left:627.303000px;}
.x6d{left:643.483500px;}
.x6f{left:649.548000px;}
.x6e{left:658.428000px;}
.x70{left:664.491000px;}
.x30{left:672.791250px;}
.x79{left:706.512000px;}
.x4f{left:720.750000px;}
.x82{left:721.998000px;}
.x1d{left:725.151000px;}
.x15{left:731.470500px;}
.x1e{left:732.622500px;}
.x5c{left:736.039500px;}
.x16{left:738.943500px;}
.x17{left:742.623000px;}
.x45{left:748.315500px;}
.x18{left:750.094500px;}
.x84{left:756.037500px;}
.x66{left:758.209500px;}
.x13{left:762.063000px;}
.x14{left:769.534500px;}
.x85{left:772.048500px;}
.x50{left:774.985500px;}
.x2a{left:786.693000px;}
.x11{left:788.779500px;}
.x7e{left:790.363500px;}
.x12{left:796.252500px;}
.x2b{left:801.636000px;}
.x7f{left:806.406000px;}
.x8e{left:823.623000px;}
.x31{left:831.375000px;}
.x51{left:870.691500px;}
.x52{left:924.927000px;}
.x46{left:988.336500px;}
.x47{left:1169.298000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v8{vertical-align:-14.032000pt;}
.va{vertical-align:-11.914667pt;}
.v3{vertical-align:-9.909333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.032000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:25.072000pt;}
.v5{vertical-align:26.064000pt;}
.vb{vertical-align:28.426667pt;}
.v4{vertical-align:35.973333pt;}
.v9{vertical-align:38.752000pt;}
.ls4c{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.195733pt;}
.ls50{letter-spacing:-0.147200pt;}
.ls58{letter-spacing:-0.122667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000081pt;}
.ls5e{letter-spacing:0.000108pt;}
.lsb{letter-spacing:0.000158pt;}
.ls42{letter-spacing:0.000375pt;}
.ls1d{letter-spacing:0.000540pt;}
.ls62{letter-spacing:0.000711pt;}
.ls5a{letter-spacing:0.000732pt;}
.ls5d{letter-spacing:0.001158pt;}
.ls9{letter-spacing:0.001735pt;}
.ls19{letter-spacing:0.001774pt;}
.ls1{letter-spacing:0.002422pt;}
.lsc{letter-spacing:0.002640pt;}
.lsa{letter-spacing:0.003100pt;}
.ls1c{letter-spacing:0.003541pt;}
.ls1a{letter-spacing:0.003925pt;}
.ls59{letter-spacing:0.155733pt;}
.ls14{letter-spacing:0.160000pt;}
.ls56{letter-spacing:0.183467pt;}
.ls51{letter-spacing:0.186880pt;}
.ls49{letter-spacing:0.192000pt;}
.ls4e{letter-spacing:0.220160pt;}
.ls55{letter-spacing:0.230933pt;}
.ls4d{letter-spacing:0.277120pt;}
.ls15{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.395733pt;}
.ls32{letter-spacing:0.401067pt;}
.ls57{letter-spacing:0.436267pt;}
.ls45{letter-spacing:0.462933pt;}
.ls29{letter-spacing:0.504787pt;}
.ls4f{letter-spacing:0.523520pt;}
.ls16{letter-spacing:0.545280pt;}
.ls41{letter-spacing:0.576078pt;}
.ls20{letter-spacing:0.665067pt;}
.ls33{letter-spacing:0.755720pt;}
.ls2b{letter-spacing:0.761053pt;}
.ls35{letter-spacing:0.780773pt;}
.ls2d{letter-spacing:0.786106pt;}
.ls2c{letter-spacing:0.791782pt;}
.ls34{letter-spacing:0.797116pt;}
.ls31{letter-spacing:1.165593pt;}
.ls28{letter-spacing:1.170926pt;}
.ls26{letter-spacing:1.171733pt;}
.ls23{letter-spacing:1.529548pt;}
.ls2e{letter-spacing:1.749043pt;}
.ls36{letter-spacing:1.754377pt;}
.ls4{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls27{letter-spacing:5.035785pt;}
.ls0{letter-spacing:9.298933pt;}
.ls10{letter-spacing:10.626533pt;}
.lsd{letter-spacing:10.719491pt;}
.ls30{letter-spacing:11.635096pt;}
.ls61{letter-spacing:11.840878pt;}
.ls5f{letter-spacing:11.868077pt;}
.ls25{letter-spacing:11.901762pt;}
.ls5b{letter-spacing:11.954133pt;}
.ls5c{letter-spacing:11.959467pt;}
.ls60{letter-spacing:12.074460pt;}
.ls3c{letter-spacing:12.533411pt;}
.lsf{letter-spacing:12.962803pt;}
.ls3a{letter-spacing:13.013944pt;}
.ls53{letter-spacing:13.040247pt;}
.ls54{letter-spacing:13.045497pt;}
.ls12{letter-spacing:13.219759pt;}
.ls5{letter-spacing:13.282422pt;}
.ls13{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.283733pt;}
.ls39{letter-spacing:13.349407pt;}
.ls3b{letter-spacing:13.474897pt;}
.ls38{letter-spacing:13.476515pt;}
.ls24{letter-spacing:13.649067pt;}
.ls21{letter-spacing:13.654400pt;}
.ls4b{letter-spacing:13.923096pt;}
.ls48{letter-spacing:14.239876pt;}
.ls7{letter-spacing:15.937067pt;}
.ls1e{letter-spacing:16.083733pt;}
.ls1f{letter-spacing:16.328429pt;}
.ls2f{letter-spacing:16.670386pt;}
.ls52{letter-spacing:16.852341pt;}
.ls4a{letter-spacing:19.765798pt;}
.ls3{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lse{letter-spacing:57.174803pt;}
.ls22{letter-spacing:71.539096pt;}
.ls3f{letter-spacing:107.438302pt;}
.ls40{letter-spacing:107.443635pt;}
.ls3d{letter-spacing:221.102302pt;}
.ls3e{letter-spacing:221.107635pt;}
.ls47{letter-spacing:358.811200pt;}
.ls46{letter-spacing:360.408708pt;}
.ls44{letter-spacing:380.794231pt;}
.ls43{letter-spacing:385.371200pt;}
.ls37{letter-spacing:708.585053pt;}
.ws7b{word-spacing:-16.459520pt;}
.ws79{word-spacing:-16.156160pt;}
.ws7d{word-spacing:-16.122880pt;}
.ws7e{word-spacing:-15.936000pt;}
.ws7c{word-spacing:-15.788800pt;}
.ws7a{word-spacing:-15.552000pt;}
.ws83{word-spacing:-13.716267pt;}
.ws81{word-spacing:-13.463467pt;}
.ws85{word-spacing:-13.435733pt;}
.wsf{word-spacing:-13.283467pt;}
.ws86{word-spacing:-13.280000pt;}
.ws84{word-spacing:-13.157333pt;}
.ws4f{word-spacing:-13.084267pt;}
.ws82{word-spacing:-12.960000pt;}
.ws77{word-spacing:-12.864000pt;}
.ws14{word-spacing:-12.760670pt;}
.ws78{word-spacing:-12.480000pt;}
.ws60{word-spacing:-11.955200pt;}
.ws4d{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.626800pt;}
.ws4e{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws35{word-spacing:-2.816095pt;}
.ws89{word-spacing:-2.497292pt;}
.ws80{word-spacing:-2.391024pt;}
.ws87{word-spacing:-2.284756pt;}
.ws50{word-spacing:-1.753418pt;}
.ws4b{word-spacing:-1.594016pt;}
.ws30{word-spacing:-1.540882pt;}
.ws49{word-spacing:-1.381481pt;}
.ws32{word-spacing:-1.328347pt;}
.ws33{word-spacing:-1.275213pt;}
.ws94{word-spacing:-1.222079pt;}
.ws6c{word-spacing:-1.195520pt;}
.ws9d{word-spacing:-1.147699pt;}
.ws5c{word-spacing:-1.115811pt;}
.ws5b{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws6d{word-spacing:-1.004237pt;}
.ws7{word-spacing:-0.929840pt;}
.wsa2{word-spacing:-0.860774pt;}
.ws5a{word-spacing:-0.850142pt;}
.ws88{word-spacing:-0.743874pt;}
.ws3e{word-spacing:-0.584473pt;}
.wsa3{word-spacing:-0.573850pt;}
.ws37{word-spacing:-0.531339pt;}
.ws3f{word-spacing:-0.425071pt;}
.wsad{word-spacing:-0.382566pt;}
.ws51{word-spacing:-0.371937pt;}
.wsa4{word-spacing:-0.334746pt;}
.ws3c{word-spacing:-0.318803pt;}
.ws2a{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws39{word-spacing:-0.212535pt;}
.wsa9{word-spacing:-0.191283pt;}
.ws3a{word-spacing:-0.159402pt;}
.ws1e{word-spacing:-0.143462pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.ws10{word-spacing:-0.053134pt;}
.ws73{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws56{word-spacing:-0.005952pt;}
.ws11{word-spacing:-0.003222pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:0.001089pt;}
.ws75{word-spacing:0.042507pt;}
.ws25{word-spacing:0.047821pt;}
.ws45{word-spacing:0.053134pt;}
.ws17{word-spacing:0.085014pt;}
.wsa7{word-spacing:0.094179pt;}
.ws23{word-spacing:0.095642pt;}
.ws42{word-spacing:0.106268pt;}
.ws1c{word-spacing:0.143462pt;}
.ws31{word-spacing:0.159402pt;}
.ws41{word-spacing:0.212535pt;}
.ws3d{word-spacing:0.265669pt;}
.ws4c{word-spacing:0.318803pt;}
.ws36{word-spacing:0.371937pt;}
.ws52{word-spacing:0.531339pt;}
.ws5d{word-spacing:0.584473pt;}
.ws46{word-spacing:0.637606pt;}
.ws44{word-spacing:0.690740pt;}
.ws9f{word-spacing:0.812954pt;}
.ws6{word-spacing:0.892646pt;}
.ws76{word-spacing:0.956410pt;}
.ws21{word-spacing:1.004237pt;}
.ws9e{word-spacing:1.099878pt;}
.ws5f{word-spacing:1.115811pt;}
.ws8c{word-spacing:1.222079pt;}
.ws40{word-spacing:1.434614pt;}
.ws59{word-spacing:1.487748pt;}
.ws97{word-spacing:1.540882pt;}
.wsae{word-spacing:1.578086pt;}
.ws20{word-spacing:1.721549pt;}
.ws22{word-spacing:1.817190pt;}
.ws58{word-spacing:1.843250pt;}
.ws57{word-spacing:1.859685pt;}
.ws91{word-spacing:1.912819pt;}
.wsa1{word-spacing:1.960653pt;}
.ws5e{word-spacing:1.965953pt;}
.wsaf{word-spacing:2.104115pt;}
.ws0{word-spacing:2.232481pt;}
.ws8f{word-spacing:2.284756pt;}
.ws9c{word-spacing:2.295398pt;}
.wsb4{word-spacing:2.343219pt;}
.ws38{word-spacing:2.444158pt;}
.ws27{word-spacing:2.486682pt;}
.ws55{word-spacing:2.550426pt;}
.ws54{word-spacing:2.562903pt;}
.ws8d{word-spacing:2.603559pt;}
.ws98{word-spacing:2.762961pt;}
.ws28{word-spacing:2.861926pt;}
.wsb8{word-spacing:2.862899pt;}
.ws2d{word-spacing:2.869229pt;}
.wsab{word-spacing:2.869248pt;}
.ws8a{word-spacing:2.922363pt;}
.wsb3{word-spacing:3.012710pt;}
.wsb1{word-spacing:3.108352pt;}
.ws90{word-spacing:3.134898pt;}
.ws29{word-spacing:3.188032pt;}
.ws1f{word-spacing:3.299635pt;}
.ws26{word-spacing:3.395277pt;}
.ws93{word-spacing:3.506835pt;}
.ws2b{word-spacing:3.559969pt;}
.ws2c{word-spacing:3.613103pt;}
.ws1a{word-spacing:3.682202pt;}
.ws95{word-spacing:3.772505pt;}
.ws43{word-spacing:3.931906pt;}
.wsa0{word-spacing:3.969126pt;}
.wsd{word-spacing:4.240070pt;}
.ws19{word-spacing:4.256051pt;}
.ws24{word-spacing:4.303872pt;}
.wse{word-spacing:4.314458pt;}
.ws8e{word-spacing:4.356977pt;}
.ws34{word-spacing:4.569513pt;}
.ws1d{word-spacing:4.782080pt;}
.ws9a{word-spacing:4.925542pt;}
.ws48{word-spacing:4.994583pt;}
.ws4a{word-spacing:5.153985pt;}
.ws99{word-spacing:5.260288pt;}
.ws9b{word-spacing:5.355930pt;}
.ws8b{word-spacing:5.525922pt;}
.ws47{word-spacing:5.897859pt;}
.ws96{word-spacing:6.163529pt;}
.ws7f{word-spacing:6.482332pt;}
.ws92{word-spacing:6.854269pt;}
.wsb{word-spacing:6.918010pt;}
.ws53{word-spacing:7.545009pt;}
.ws2{word-spacing:9.261206pt;}
.ws2f{word-spacing:10.582157pt;}
.ws9{word-spacing:10.823338pt;}
.wsb2{word-spacing:11.763917pt;}
.wsa6{word-spacing:11.907379pt;}
.wsac{word-spacing:12.003021pt;}
.ws2e{word-spacing:12.220789pt;}
.wsa{word-spacing:14.319536pt;}
.wsb5{word-spacing:14.633165pt;}
.wsaa{word-spacing:14.680986pt;}
.wsb0{word-spacing:14.768759pt;}
.wsb7{word-spacing:14.769826pt;}
.wsb6{word-spacing:14.771302pt;}
.wsa5{word-spacing:14.776627pt;}
.wsa8{word-spacing:14.872269pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws12{word-spacing:35.593054pt;}
.ws65{word-spacing:63.314739pt;}
.ws64{word-spacing:63.362560pt;}
.ws66{word-spacing:70.105293pt;}
.ws6a{word-spacing:74.609946pt;}
.ws69{word-spacing:74.615279pt;}
.ws68{word-spacing:88.038093pt;}
.ws6b{word-spacing:125.194854pt;}
.ws67{word-spacing:137.150054pt;}
.ws72{word-spacing:152.117965pt;}
.ws71{word-spacing:164.073165pt;}
.ws6f{word-spacing:168.090112pt;}
.ws70{word-spacing:176.028365pt;}
.ws63{word-spacing:337.901773pt;}
.ws62{word-spacing:368.411443pt;}
.ws74{word-spacing:447.746150pt;}
.ws6e{word-spacing:965.884518pt;}
.ws61{word-spacing:1492.774093pt;}
._f{margin-left:-7.077478pt;}
._10{margin-left:-6.110137pt;}
._8{margin-left:-5.219897pt;}
._34{margin-left:-4.316877pt;}
._0{margin-left:-3.421811pt;}
._4{margin-left:-2.045648pt;}
._7{margin-left:-1.110804pt;}
._1a{width:1.098448pt;}
._3{width:2.045648pt;}
._1b{width:3.033467pt;}
._19{width:4.001072pt;}
._18{width:4.940160pt;}
._31{width:5.955632pt;}
._1c{width:6.852480pt;}
._2f{width:8.144432pt;}
._30{width:9.257492pt;}
._1{width:11.527830pt;}
._b{width:13.033786pt;}
._a{width:14.728806pt;}
._15{width:16.312097pt;}
._9{width:17.358950pt;}
._e{width:18.269446pt;}
._d{width:20.276019pt;}
._16{width:21.253547pt;}
._2{width:23.063232pt;}
._c{width:24.675533pt;}
._12{width:26.099510pt;}
._5{width:27.188522pt;}
._11{width:28.078239pt;}
._6{width:29.648896pt;}
._32{width:30.551973pt;}
._33{width:35.382148pt;}
._36{width:54.993920pt;}
._35{width:78.904320pt;}
._29{width:82.060493pt;}
._26{width:86.573961pt;}
._23{width:88.038093pt;}
._25{width:89.329254pt;}
._24{width:99.993293pt;}
._27{width:117.160960pt;}
._28{width:126.438195pt;}
._20{width:129.862229pt;}
._22{width:149.105254pt;}
._1e{width:165.926400pt;}
._2c{width:188.079206pt;}
._2d{width:270.041040pt;}
._2b{width:285.726262pt;}
._2a{width:495.375667pt;}
._13{width:845.038348pt;}
._21{width:1008.592896pt;}
._1f{width:1228.611994pt;}
._17{width:1861.153425pt;}
._37{width:2159.790649pt;}
._14{width:2181.043982pt;}
._2e{width:2233.652471pt;}
._1d{width:3494.803982pt;}
.fs6{font-size:31.880533pt;}
.fsd{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs7{font-size:42.507200pt;}
.fsa{font-size:42.880000pt;}
.fs8{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs9{font-size:49.829333pt;}
.fs1{font-size:50.395200pt;}
.fse{font-size:51.456000pt;}
.fsb{font-size:53.120000pt;}
.fs3{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fs10{font-size:57.600000pt;}
.fsf{font-size:63.744000pt;}
.fs2{font-size:67.193600pt;}
.fs4{font-size:95.641600pt;}
.yf1{bottom:-913.790400pt;}
.y10b{bottom:-844.440000pt;}
.y10a{bottom:-823.896000pt;}
.y109{bottom:-803.352000pt;}
.y108{bottom:-782.814400pt;}
.y107{bottom:-762.270400pt;}
.y106{bottom:-741.918400pt;}
.y105{bottom:-721.374400pt;}
.y104{bottom:-700.830400pt;}
.y103{bottom:-680.286400pt;}
.y102{bottom:-659.742400pt;}
.y101{bottom:-639.390400pt;}
.y100{bottom:-618.846400pt;}
.yff{bottom:-598.302400pt;}
.yfe{bottom:-577.710400pt;}
.yfd{bottom:-552.174400pt;}
.yfc{bottom:-513.198400pt;}
.yfb{bottom:-494.766400pt;}
.yfa{bottom:-470.574400pt;}
.y116{bottom:-368.524000pt;}
.y130{bottom:-310.732000pt;}
.y12f{bottom:-293.612000pt;}
.y12e{bottom:-276.492000pt;}
.y12d{bottom:-259.377333pt;}
.y12c{bottom:-242.257333pt;}
.y12b{bottom:-225.297333pt;}
.y12a{bottom:-208.177333pt;}
.y129{bottom:-191.057333pt;}
.y128{bottom:-173.937333pt;}
.yf9{bottom:-162.766400pt;}
.y127{bottom:-156.817333pt;}
.yf8{bottom:-142.414400pt;}
.y126{bottom:-139.857333pt;}
.y125{bottom:-122.737333pt;}
.yf7{bottom:-121.870400pt;}
.y124{bottom:-105.617333pt;}
.yf6{bottom:-101.326400pt;}
.y123{bottom:-88.457333pt;}
.yf5{bottom:-80.782400pt;}
.y122{bottom:-67.177333pt;}
.y89{bottom:-48.798667pt;}
.yf4{bottom:-41.614400pt;}
.y121{bottom:-34.697333pt;}
.yf3{bottom:-23.134400pt;}
.y120{bottom:-19.337333pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:0.822667pt;}
.yf2{bottom:1.057600pt;}
.y99{bottom:5.793333pt;}
.y1e{bottom:9.767346pt;}
.y1d{bottom:27.405666pt;}
.y4f{bottom:28.346667pt;}
.y9a{bottom:78.638667pt;}
.y1b{bottom:93.018667pt;}
.y85{bottom:95.282667pt;}
.y157{bottom:97.690667pt;}
.y86{bottom:101.233333pt;}
.y4e{bottom:102.537333pt;}
.y1a{bottom:108.920000pt;}
.y1be{bottom:109.297333pt;}
.y84{bottom:112.020000pt;}
.y156{bottom:114.428000pt;}
.y4d{bottom:119.274667pt;}
.y1bd{bottom:124.640000pt;}
.y19{bottom:124.820000pt;}
.y83{bottom:128.757333pt;}
.y155{bottom:131.165333pt;}
.y18b{bottom:131.812000pt;}
.y4c{bottom:136.012000pt;}
.y1bc{bottom:139.982667pt;}
.y18{bottom:140.720000pt;}
.y82{bottom:145.494667pt;}
.y154{bottom:147.902667pt;}
.y18a{bottom:148.549333pt;}
.y1bb{bottom:155.324000pt;}
.y17{bottom:156.621333pt;}
.y4b{bottom:156.734667pt;}
.y81{bottom:162.232000pt;}
.y153{bottom:164.640000pt;}
.y189{bottom:165.286667pt;}
.y1ba{bottom:170.666667pt;}
.yba{bottom:171.938667pt;}
.y16{bottom:172.521333pt;}
.yd7{bottom:177.074667pt;}
.y80{bottom:178.969333pt;}
.y152{bottom:181.377333pt;}
.y188{bottom:182.024000pt;}
.y1b9{bottom:186.009333pt;}
.y112{bottom:187.970667pt;}
.y15{bottom:188.421333pt;}
.yb9{bottom:188.676000pt;}
.y7f{bottom:195.706667pt;}
.yd6{bottom:196.481333pt;}
.y151{bottom:198.114667pt;}
.y187{bottom:198.761333pt;}
.y1b8{bottom:201.352000pt;}
.yb8{bottom:202.798667pt;}
.yb7{bottom:202.986667pt;}
.y14{bottom:204.322667pt;}
.y111{bottom:204.708000pt;}
.yb6{bottom:205.413333pt;}
.y150{bottom:214.852000pt;}
.y186{bottom:215.498667pt;}
.y7e{bottom:216.428000pt;}
.y1b7{bottom:216.694667pt;}
.yd5{bottom:217.496000pt;}
.y110{bottom:221.445333pt;}
.yb5{bottom:222.149333pt;}
.y4a{bottom:223.534667pt;}
.y14f{bottom:231.589333pt;}
.y1b6{bottom:232.037333pt;}
.y185{bottom:232.236000pt;}
.y10f{bottom:238.182667pt;}
.yd4{bottom:238.509333pt;}
.yb4{bottom:238.886667pt;}
.y7d{bottom:246.316000pt;}
.y1b5{bottom:247.380000pt;}
.y14e{bottom:248.326667pt;}
.y184{bottom:248.973333pt;}
.y10e{bottom:254.920000pt;}
.yb3{bottom:255.624000pt;}
.y49{bottom:256.769333pt;}
.y11e{bottom:257.329333pt;}
.yd3{bottom:259.524000pt;}
.y1b4{bottom:262.722667pt;}
.y7c{bottom:263.053333pt;}
.y14d{bottom:265.064000pt;}
.y183{bottom:265.710667pt;}
.y13{bottom:266.804000pt;}
.yb2{bottom:272.361333pt;}
.y48{bottom:274.065333pt;}
.y11d{bottom:274.289333pt;}
.y1b3{bottom:278.065333pt;}
.y7b{bottom:279.790667pt;}
.yd2{bottom:280.537333pt;}
.y14c{bottom:281.801333pt;}
.y182{bottom:282.448000pt;}
.y12{bottom:282.705333pt;}
.y10d{bottom:284.756000pt;}
.yb1{bottom:289.098667pt;}
.y47{bottom:291.360000pt;}
.y11c{bottom:291.409333pt;}
.y1b2{bottom:293.406667pt;}
.yf0{bottom:296.193600pt;}
.y7a{bottom:296.528000pt;}
.y14b{bottom:298.538667pt;}
.y11{bottom:298.605333pt;}
.y181{bottom:299.185333pt;}
.yd1{bottom:301.552000pt;}
.y10c{bottom:301.852000pt;}
.yb0{bottom:305.836000pt;}
.yef{bottom:306.753600pt;}
.y11b{bottom:308.529333pt;}
.y46{bottom:308.654667pt;}
.y1b1{bottom:308.749333pt;}
.y79{bottom:313.265333pt;}
.y10{bottom:314.505333pt;}
.y14a{bottom:315.276000pt;}
.y180{bottom:315.922667pt;}
.yd0{bottom:322.565333pt;}
.yaf{bottom:322.573333pt;}
.y1b0{bottom:324.092000pt;}
.yee{bottom:324.445333pt;}
.y11a{bottom:325.649333pt;}
.y45{bottom:325.950667pt;}
.y78{bottom:330.002667pt;}
.y149{bottom:332.013333pt;}
.y17f{bottom:332.660000pt;}
.yf{bottom:338.376000pt;}
.yae{bottom:339.310667pt;}
.y1af{bottom:339.434667pt;}
.y44{bottom:343.245333pt;}
.ycf{bottom:343.580000pt;}
.y77{bottom:346.740000pt;}
.y148{bottom:348.750667pt;}
.y17e{bottom:349.397333pt;}
.ye{bottom:354.277333pt;}
.y1ae{bottom:354.777333pt;}
.yad{bottom:356.048000pt;}
.y119{bottom:358.289333pt;}
.y43{bottom:360.541333pt;}
.y76{bottom:363.477333pt;}
.yce{bottom:364.593333pt;}
.y147{bottom:365.488000pt;}
.y17d{bottom:366.134667pt;}
.y1ad{bottom:370.120000pt;}
.yd{bottom:370.177333pt;}
.yac{bottom:372.785333pt;}
.y118{bottom:373.689333pt;}
.y42{bottom:377.836000pt;}
.y75{bottom:380.214667pt;}
.y146{bottom:382.225333pt;}
.y17c{bottom:382.872000pt;}
.y1ac{bottom:385.462667pt;}
.ycd{bottom:385.608000pt;}
.yab{bottom:389.522667pt;}
.y117{bottom:393.849333pt;}
.y41{bottom:395.130667pt;}
.yc{bottom:395.376000pt;}
.y74{bottom:396.952000pt;}
.y145{bottom:398.962667pt;}
.y17b{bottom:399.609333pt;}
.y1ab{bottom:400.805333pt;}
.yaa{bottom:406.260000pt;}
.ycc{bottom:406.621333pt;}
.y40{bottom:409.922667pt;}
.y3f{bottom:410.094667pt;}
.y3e{bottom:412.426667pt;}
.y73{bottom:413.689333pt;}
.y144{bottom:415.698667pt;}
.y1aa{bottom:416.146667pt;}
.y17a{bottom:416.346667pt;}
.yb{bottom:419.246667pt;}
.ya9{bottom:426.982667pt;}
.ycb{bottom:427.636000pt;}
.y3d{bottom:429.721333pt;}
.y72{bottom:430.426667pt;}
.y1a9{bottom:431.489333pt;}
.y143{bottom:432.436000pt;}
.y179{bottom:433.084000pt;}
.ya{bottom:435.146667pt;}
.y1a8{bottom:446.832000pt;}
.y3c{bottom:447.016000pt;}
.y71{bottom:447.164000pt;}
.yca{bottom:448.649333pt;}
.y142{bottom:449.173333pt;}
.y178{bottom:449.821333pt;}
.y9{bottom:451.048000pt;}
.ya8{bottom:456.870667pt;}
.y70{bottom:463.901333pt;}
.y3b{bottom:464.312000pt;}
.y141{bottom:465.910667pt;}
.y1a7{bottom:466.160000pt;}
.y177{bottom:466.557333pt;}
.y8{bottom:466.948000pt;}
.yc9{bottom:469.664000pt;}
.ya7{bottom:473.608000pt;}
.y6f{bottom:480.638667pt;}
.y3a{bottom:481.606667pt;}
.y140{bottom:482.648000pt;}
.y7{bottom:482.848000pt;}
.y176{bottom:483.294667pt;}
.ya6{bottom:490.345333pt;}
.yc8{bottom:490.677333pt;}
.y1a6{bottom:496.048000pt;}
.y6e{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.y39{bottom:498.902667pt;}
.y13f{bottom:499.385333pt;}
.y175{bottom:500.032000pt;}
.ya5{bottom:507.082667pt;}
.yc7{bottom:511.692000pt;}
.y6d{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.y13e{bottom:516.122667pt;}
.y38{bottom:516.197333pt;}
.y174{bottom:516.769333pt;}
.y1a5{bottom:519.640000pt;}
.ya4{bottom:523.820000pt;}
.y4{bottom:530.549333pt;}
.y6c{bottom:530.850667pt;}
.yc6{bottom:532.705333pt;}
.y13d{bottom:532.860000pt;}
.y37{bottom:533.492000pt;}
.y173{bottom:533.506667pt;}
.y1a4{bottom:535.261333pt;}
.ya3{bottom:540.557333pt;}
.y3{bottom:546.450667pt;}
.y6b{bottom:547.588000pt;}
.y13c{bottom:549.597333pt;}
.y172{bottom:550.244000pt;}
.y36{bottom:550.788000pt;}
.yc5{bottom:553.720000pt;}
.ya2{bottom:554.868000pt;}
.ya1{bottom:557.294667pt;}
.y1a3{bottom:558.852000pt;}
.y2{bottom:562.350667pt;}
.y6a{bottom:564.325333pt;}
.y13b{bottom:566.334667pt;}
.y171{bottom:566.981333pt;}
.y35{bottom:568.082667pt;}
.ya0{bottom:571.417333pt;}
.y9f{bottom:571.605333pt;}
.y9e{bottom:574.032000pt;}
.yc4{bottom:574.733333pt;}
.y1{bottom:578.250667pt;}
.y69{bottom:581.062667pt;}
.y1a2{bottom:582.444000pt;}
.y13a{bottom:583.072000pt;}
.y170{bottom:583.718667pt;}
.yc2{bottom:586.213333pt;}
.yc3{bottom:595.746667pt;}
.yc1{bottom:596.696000pt;}
.y68{bottom:597.800000pt;}
.y1a1{bottom:598.065333pt;}
.yed{bottom:598.393333pt;}
.y139{bottom:599.809333pt;}
.y9d{bottom:600.060000pt;}
.y16f{bottom:600.456000pt;}
.ybe{bottom:600.644000pt;}
.y34{bottom:602.381333pt;}
.y9c{bottom:609.748000pt;}
.y1a0{bottom:613.686667pt;}
.y67{bottom:614.537333pt;}
.yec{bottom:615.130667pt;}
.ybd{bottom:615.256000pt;}
.y138{bottom:616.546667pt;}
.y33{bottom:616.726667pt;}
.yc0{bottom:616.761333pt;}
.y16e{bottom:617.193333pt;}
.y32{bottom:620.584000pt;}
.y19f{bottom:629.308000pt;}
.y66{bottom:631.274667pt;}
.y137{bottom:633.284000pt;}
.y16d{bottom:633.930667pt;}
.y31{bottom:634.930667pt;}
.ybf{bottom:637.774667pt;}
.y115{bottom:639.796000pt;}
.y19e{bottom:644.929333pt;}
.y30{bottom:645.420000pt;}
.y1d3{bottom:647.878667pt;}
.y65{bottom:648.012000pt;}
.yeb{bottom:648.036000pt;}
.y114{bottom:648.596000pt;}
.y136{bottom:650.021333pt;}
.y16c{bottom:650.668000pt;}
.y19d{bottom:660.550667pt;}
.yea{bottom:660.656000pt;}
.y1d2{bottom:663.221333pt;}
.y2f{bottom:663.624000pt;}
.y64{bottom:664.749333pt;}
.ybc{bottom:665.881333pt;}
.y135{bottom:666.758667pt;}
.y16b{bottom:667.405333pt;}
.y98{bottom:671.774667pt;}
.y2e{bottom:674.112000pt;}
.y19c{bottom:676.173333pt;}
.y1d1{bottom:678.564000pt;}
.ye9{bottom:680.062667pt;}
.y63{bottom:681.485333pt;}
.y134{bottom:683.496000pt;}
.y16a{bottom:684.142667pt;}
.y97{bottom:688.734667pt;}
.y2d{bottom:692.316000pt;}
.y1d0{bottom:693.906667pt;}
.y62{bottom:698.222667pt;}
.y19b{bottom:699.764000pt;}
.y169{bottom:700.880000pt;}
.ye8{bottom:701.076000pt;}
.y2c{bottom:702.805333pt;}
.y133{bottom:704.218667pt;}
.y96{bottom:705.894667pt;}
.y1cf{bottom:709.248000pt;}
.ybb{bottom:712.385333pt;}
.y61{bottom:714.960000pt;}
.y19a{bottom:715.385333pt;}
.y168{bottom:717.617333pt;}
.y2b{bottom:721.008000pt;}
.ye7{bottom:722.089333pt;}
.y95{bottom:723.014667pt;}
.y1ce{bottom:724.590667pt;}
.y199{bottom:731.006667pt;}
.y132{bottom:731.265333pt;}
.y2a{bottom:731.497333pt;}
.y60{bottom:731.697333pt;}
.y167{bottom:734.354667pt;}
.y1cd{bottom:739.933333pt;}
.y94{bottom:740.134667pt;}
.ye6{bottom:743.104000pt;}
.y29{bottom:745.844000pt;}
.y131{bottom:748.361333pt;}
.y5f{bottom:748.434667pt;}
.y166{bottom:751.092000pt;}
.y198{bottom:754.598667pt;}
.y1cc{bottom:755.276000pt;}
.y93{bottom:757.254667pt;}
.y28{bottom:764.046667pt;}
.ye5{bottom:764.117333pt;}
.y5e{bottom:765.172000pt;}
.y165{bottom:767.829333pt;}
.y113{bottom:768.297333pt;}
.y197{bottom:770.220000pt;}
.y1cb{bottom:770.618667pt;}
.y92{bottom:774.214667pt;}
.y27{bottom:778.393333pt;}
.y5d{bottom:781.909333pt;}
.y164{bottom:784.566667pt;}
.ye4{bottom:785.132000pt;}
.y196{bottom:785.841333pt;}
.y1ca{bottom:785.961333pt;}
.y26{bottom:788.882667pt;}
.y91{bottom:791.334667pt;}
.y5c{bottom:798.646667pt;}
.y163{bottom:801.304000pt;}
.y195{bottom:801.462667pt;}
.ye3{bottom:806.145333pt;}
.y25{bottom:807.086667pt;}
.y90{bottom:808.454667pt;}
.y5b{bottom:815.384000pt;}
.y1c9{bottom:816.646667pt;}
.y194{bottom:817.084000pt;}
.y162{bottom:818.041333pt;}
.y8f{bottom:825.574667pt;}
.ye2{bottom:827.160000pt;}
.y1c8{bottom:831.988000pt;}
.y5a{bottom:832.121333pt;}
.y193{bottom:832.706667pt;}
.y161{bottom:834.778667pt;}
.y8e{bottom:842.694667pt;}
.y24{bottom:846.798667pt;}
.y1c7{bottom:847.330667pt;}
.ye1{bottom:848.173333pt;}
.y59{bottom:848.858667pt;}
.y160{bottom:851.516000pt;}
.y8d{bottom:859.654667pt;}
.y1c6{bottom:862.673333pt;}
.y23{bottom:863.536000pt;}
.y192{bottom:864.268000pt;}
.y58{bottom:865.596000pt;}
.y15f{bottom:868.253333pt;}
.ye0{bottom:869.188000pt;}
.y8c{bottom:876.774667pt;}
.y1c5{bottom:878.016000pt;}
.y191{bottom:881.005333pt;}
.y57{bottom:882.333333pt;}
.y15e{bottom:884.990667pt;}
.ydf{bottom:890.201333pt;}
.y1c4{bottom:893.358667pt;}
.y8b{bottom:893.894667pt;}
.y22{bottom:896.213333pt;}
.y190{bottom:897.742667pt;}
.y56{bottom:899.070667pt;}
.y15d{bottom:901.728000pt;}
.y1c3{bottom:908.701333pt;}
.y8a{bottom:911.014667pt;}
.yde{bottom:911.216000pt;}
.y18f{bottom:914.480000pt;}
.y55{bottom:915.808000pt;}
.y15c{bottom:918.464000pt;}
.ydb{bottom:920.009333pt;}
.y21{bottom:921.320000pt;}
.y1c2{bottom:924.044000pt;}
.ydd{bottom:925.828000pt;}
.y18e{bottom:931.217333pt;}
.y54{bottom:932.545333pt;}
.y15b{bottom:935.201333pt;}
.y9b{bottom:937.366667pt;}
.y1c1{bottom:939.386667pt;}
.y20{bottom:946.425333pt;}
.ydc{bottom:946.841333pt;}
.y18d{bottom:947.954667pt;}
.y53{bottom:949.282667pt;}
.y15a{bottom:951.938667pt;}
.y1c0{bottom:954.729333pt;}
.y88{bottom:959.521333pt;}
.y18c{bottom:964.692000pt;}
.y52{bottom:966.020000pt;}
.y87{bottom:968.321333pt;}
.y159{bottom:968.676000pt;}
.y1bf{bottom:970.070667pt;}
.y1f{bottom:971.530667pt;}
.yda{bottom:977.604000pt;}
.y51{bottom:982.757333pt;}
.y158{bottom:985.413333pt;}
.yd9{bottom:994.700000pt;}
.y1c{bottom:1010.186667pt;}
.y50{bottom:1038.548000pt;}
.yd8{bottom:1041.204000pt;}
.ha{height:23.209028pt;}
.he{height:23.374407pt;}
.hc{height:23.379740pt;}
.h12{height:26.444650pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h1e{height:28.711507pt;}
.h1b{height:29.397999pt;}
.hb{height:30.945242pt;}
.h16{height:31.157778pt;}
.h13{height:33.186336pt;}
.hf{height:34.574438pt;}
.h23{height:34.717901pt;}
.h10{height:34.813542pt;}
.h5{height:35.024664pt;}
.h11{height:35.052646pt;}
.h2a{height:36.873667pt;}
.h1f{height:37.778179pt;}
.h14{height:38.415786pt;}
.h15{height:38.681455pt;}
.hd{height:38.809074pt;}
.h7{height:38.947124pt;}
.h2d{height:38.958125pt;}
.h19{height:39.655625pt;}
.h2e{height:43.660390pt;}
.h2c{height:44.390625pt;}
.h4{height:45.272024pt;}
.h6{height:45.557261pt;}
.h29{height:46.749750pt;}
.h26{height:47.586750pt;}
.h9{height:48.481423pt;}
.h17{height:48.511220pt;}
.h1a{height:49.125625pt;}
.h22{height:51.086438pt;}
.h24{height:51.091772pt;}
.h28{height:53.268750pt;}
.h27{height:58.950750pt;}
.h8{height:69.148877pt;}
.h1c{height:76.937733pt;}
.h1d{height:77.433455pt;}
.h2b{height:230.400000pt;}
.h25{height:252.934400pt;}
.h18{height:660.557333pt;}
.h20{height:793.701333pt;}
.h21{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:185.925531pt;}
.w7{width:281.412000pt;}
.w3{width:609.170000pt;}
.w6{width:647.808960pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x69{left:-188.005333pt;}
.x62{left:-92.411840pt;}
.x2d{left:-44.496667pt;}
.x6b{left:-14.058667pt;}
.x0{left:0.000000pt;}
.x6c{left:14.261333pt;}
.x1{left:47.621333pt;}
.x2{left:51.604853pt;}
.x40{left:56.932000pt;}
.x3f{left:63.817333pt;}
.x55{left:66.005333pt;}
.x60{left:67.386667pt;}
.x53{left:69.036000pt;}
.x4a{left:72.025333pt;}
.x8d{left:76.309333pt;}
.x2c{left:92.076667pt;}
.x61{left:98.434667pt;}
.x5f{left:114.000000pt;}
.x63{left:116.324160pt;}
.x5d{left:119.801333pt;}
.x49{left:120.917333pt;}
.x5e{left:121.949333pt;}
.x2e{left:129.450000pt;}
.x64{left:150.308160pt;}
.x4b{left:154.424000pt;}
.x2f{left:157.770000pt;}
.x48{left:167.974667pt;}
.x42{left:178.925333pt;}
.x4c{left:202.633333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x71{left:237.005333pt;}
.x4{left:239.924000pt;}
.x58{left:246.726667pt;}
.x10{left:250.204000pt;}
.xb{left:252.362667pt;}
.x57{left:258.162667pt;}
.xc{left:265.710667pt;}
.x54{left:266.609333pt;}
.x7{left:267.536000pt;}
.x20{left:271.230667pt;}
.x8{left:272.850667pt;}
.x6{left:273.893333pt;}
.x8b{left:275.060000pt;}
.x86{left:276.782667pt;}
.x21{left:284.514667pt;}
.xf{left:286.540000pt;}
.x4d{left:287.704000pt;}
.x87{left:290.066667pt;}
.x22{left:291.022667pt;}
.x35{left:292.188000pt;}
.x19{left:294.357333pt;}
.x36{left:297.900000pt;}
.x80{left:299.593333pt;}
.x1a{left:300.998667pt;}
.x1b{left:304.253333pt;}
.x3c{left:305.882667pt;}
.x1c{left:310.894667pt;}
.x24{left:315.577333pt;}
.x56{left:324.500000pt;}
.x25{left:328.860000pt;}
.x41{left:331.209333pt;}
.x4e{left:335.913333pt;}
.x74{left:344.113333pt;}
.x7a{left:347.158667pt;}
.x8a{left:351.228000pt;}
.x67{left:356.581333pt;}
.x7c{left:361.488000pt;}
.x81{left:368.694667pt;}
.x68{left:370.173333pt;}
.x7d{left:374.772000pt;}
.x59{left:379.473333pt;}
.x5a{left:382.570667pt;}
.x8c{left:385.758667pt;}
.x43{left:392.278667pt;}
.x26{left:401.252000pt;}
.x34{left:411.713333pt;}
.x27{left:414.536000pt;}
.x37{left:421.136000pt;}
.x9{left:423.050667pt;}
.xa{left:428.238667pt;}
.x38{left:430.024000pt;}
.x23{left:435.718667pt;}
.x32{left:438.948000pt;}
.x6a{left:443.968000pt;}
.x33{left:445.590667pt;}
.x88{left:446.736000pt;}
.xd{left:455.093333pt;}
.x89{left:460.020000pt;}
.x39{left:462.408000pt;}
.xe{left:468.441333pt;}
.x72{left:471.888000pt;}
.x1f{left:475.233333pt;}
.x73{left:485.170667pt;}
.x3a{left:487.445333pt;}
.x3b{left:493.157333pt;}
.x65{left:495.220160pt;}
.x77{left:502.317333pt;}
.x28{left:505.410667pt;}
.x83{left:509.921333pt;}
.x3d{left:511.253333pt;}
.x78{left:515.600000pt;}
.x3e{left:516.828000pt;}
.x29{left:518.694667pt;}
.x7b{left:525.870667pt;}
.x5b{left:529.849333pt;}
.x75{left:533.972000pt;}
.x76{left:547.256000pt;}
.x44{left:553.133333pt;}
.x8f{left:557.602667pt;}
.x6d{left:571.985333pt;}
.x6f{left:577.376000pt;}
.x6e{left:585.269333pt;}
.x70{left:590.658667pt;}
.x30{left:598.036667pt;}
.x79{left:628.010667pt;}
.x4f{left:640.666667pt;}
.x82{left:641.776000pt;}
.x1d{left:644.578667pt;}
.x15{left:650.196000pt;}
.x1e{left:651.220000pt;}
.x5c{left:654.257333pt;}
.x16{left:656.838667pt;}
.x17{left:660.109333pt;}
.x45{left:665.169333pt;}
.x18{left:666.750667pt;}
.x84{left:672.033333pt;}
.x66{left:673.964000pt;}
.x13{left:677.389333pt;}
.x14{left:684.030667pt;}
.x85{left:686.265333pt;}
.x50{left:688.876000pt;}
.x2a{left:699.282667pt;}
.x11{left:701.137333pt;}
.x7e{left:702.545333pt;}
.x12{left:707.780000pt;}
.x2b{left:712.565333pt;}
.x7f{left:716.805333pt;}
.x8e{left:732.109333pt;}
.x31{left:739.000000pt;}
.x51{left:773.948000pt;}
.x52{left:822.157333pt;}
.x46{left:878.521333pt;}
.x47{left:1039.376000pt;}
}




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