
    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_5da58cb0b20452d52806761f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_baae6941ff2a5d300a7b0ed4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_25856f76d99f656def8aad5b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1132d1f192dfc300d0ca86a1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4ca9ca598d0688a4f86b2a03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_2891f859b87ca7d01456b438.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_d1bbfabbac2e100a48701046.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_aa962cb4b7934d8b45f6b96b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_88c25bce4d24a4a8eb23908b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_38717f6c837463d8f45a683c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_6514c72d87ba48d792d0aef1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bea916ae07bae27ab7024a87.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_65c6b366f77a9052b8816cc7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c5aab2cd3238df73d06823ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.799000;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_69fc6b1d1c416de8659a91cb.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2a22592e8208cb8e896411a2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a34e01393e53145e41deecb1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.001000;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_069458d18ce977d9b0c639a3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.431000;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_7f791d0e3e076d08546694eb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923000;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_aa5ee093976485471ee32f5c.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m4{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);}
.m3{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);}
.m11{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);}
.m10{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);}
.m12{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);}
.m2{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);}
.m14{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);}
.m6{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);}
.m7{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);}
.mb{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);}
.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);}
.m16{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);}
.me{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);}
.m9{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);}
.ma{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);}
.md{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);}
.m15{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);}
.mc{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);}
.m1{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.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);}
.m13{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);}
.m5{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);}
.m8{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);}
.ve{vertical-align:-38.856000px;}
.v2{vertical-align:-31.236000px;}
.vf{vertical-align:-26.028000px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.758000px;}
.v9{vertical-align:17.736000px;}
.vc{vertical-align:26.028000px;}
.v8{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.vd{vertical-align:37.770000px;}
.va{vertical-align:47.352000px;}
.v5{vertical-align:48.528000px;}
.v7{vertical-align:69.342000px;}
.vb{vertical-align:87.078000px;}
.v6{vertical-align:97.728000px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.001476px;}
.ls16{letter-spacing:0.002012px;}
.ls44{letter-spacing:0.002294px;}
.ls32{letter-spacing:0.002793px;}
.ls36{letter-spacing:0.016788px;}
.ls31{letter-spacing:0.028176px;}
.ls4a{letter-spacing:0.065455px;}
.ls48{letter-spacing:0.327273px;}
.ls4e{letter-spacing:0.458182px;}
.ls50{letter-spacing:0.523637px;}
.ls52{letter-spacing:0.654546px;}
.ls56{letter-spacing:0.720001px;}
.ls55{letter-spacing:0.981819px;}
.ls4c{letter-spacing:1.047274px;}
.ls59{letter-spacing:1.112728px;}
.ls58{letter-spacing:1.440001px;}
.ls4b{letter-spacing:1.832729px;}
.ls51{letter-spacing:1.898183px;}
.ls4d{letter-spacing:1.963638px;}
.ls4f{letter-spacing:2.029093px;}
.ls5d{letter-spacing:2.094547px;}
.ls5a{letter-spacing:2.225456px;}
.ls5b{letter-spacing:2.618184px;}
.ls27{letter-spacing:2.880002px;}
.ls5c{letter-spacing:2.945457px;}
.ls22{letter-spacing:2.984915px;}
.ls37{letter-spacing:2.985056px;}
.ls0{letter-spacing:2.986200px;}
.ls57{letter-spacing:3.076366px;}
.ls28{letter-spacing:3.796367px;}
.ls30{letter-spacing:3.873485px;}
.ls49{letter-spacing:3.927276px;}
.lse{letter-spacing:4.160410px;}
.ls11{letter-spacing:4.232141px;}
.ls53{letter-spacing:5.668099px;}
.ls14{letter-spacing:7.186324px;}
.ls20{letter-spacing:7.265461px;}
.ls2c{letter-spacing:7.675238px;}
.ls1e{letter-spacing:8.256366px;}
.ls9{letter-spacing:8.262366px;}
.ls17{letter-spacing:9.755464px;}
.ls18{letter-spacing:9.766656px;}
.ls19{letter-spacing:11.954012px;}
.ls1d{letter-spacing:12.122573px;}
.ls38{letter-spacing:12.409498px;}
.ls34{letter-spacing:13.772390px;}
.ls54{letter-spacing:14.530921px;}
.ls10{letter-spacing:14.942915px;}
.lsb{letter-spacing:15.924326px;}
.ls2a{letter-spacing:18.196379px;}
.ls45{letter-spacing:18.721843px;}
.ls1c{letter-spacing:19.778759px;}
.ls35{letter-spacing:19.869542px;}
.lsf{letter-spacing:19.941274px;}
.ls23{letter-spacing:21.164915px;}
.ls29{letter-spacing:21.796382px;}
.ls3a{letter-spacing:23.120139px;}
.ls2{letter-spacing:23.367292px;}
.ls46{letter-spacing:23.384371px;}
.ls1{letter-spacing:23.432747px;}
.ls3e{letter-spacing:23.814758px;}
.ls8{letter-spacing:24.101683px;}
.lsa{letter-spacing:24.173414px;}
.ls39{letter-spacing:24.198366px;}
.ls21{letter-spacing:24.806915px;}
.ls25{letter-spacing:25.461839px;}
.ls26{letter-spacing:25.592749px;}
.ls3d{letter-spacing:26.403056px;}
.ls40{letter-spacing:26.899200px;}
.ls2e{letter-spacing:26.910960px;}
.ls5{letter-spacing:27.080112px;}
.ls2f{letter-spacing:27.095518px;}
.ls3f{letter-spacing:27.329587px;}
.lsc{letter-spacing:28.188366px;}
.ls3{letter-spacing:31.674366px;}
.ls47{letter-spacing:32.278950px;}
.ls5e{letter-spacing:33.185482px;}
.ls3c{letter-spacing:35.148288px;}
.ls5f{letter-spacing:70.224845px;}
.ls13{letter-spacing:78.641251px;}
.ls6{letter-spacing:90.166118px;}
.ls24{letter-spacing:255.788498px;}
.ls7{letter-spacing:366.833357px;}
.ls41{letter-spacing:572.886580px;}
.ls2b{letter-spacing:582.531601px;}
.ls43{letter-spacing:619.831052px;}
.ls3b{letter-spacing:624.204902px;}
.ls42{letter-spacing:708.849471px;}
.ls33{letter-spacing:825.195725px;}
.ls1a{letter-spacing:844.921805px;}
.ls1f{letter-spacing:946.851840px;}
.ls12{letter-spacing:967.151770px;}
.ls2d{letter-spacing:974.683546px;}
.lsd{letter-spacing:992.903270px;}
.ls15{letter-spacing:1072.309709px;}
.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;}
}
.ws57{word-spacing:-71.731200px;}
.ws2c{word-spacing:-55.806874px;}
.ws7b{word-spacing:-48.418425px;}
.ws49{word-spacing:-47.258221px;}
.ws2a{word-spacing:-45.664082px;}
.ws44{word-spacing:-42.637126px;}
.ws69{word-spacing:-40.348800px;}
.ws17{word-spacing:-35.865600px;}
.ws2d{word-spacing:-35.119596px;}
.ws30{word-spacing:-33.738444px;}
.ws36{word-spacing:-33.684972px;}
.ws7{word-spacing:-33.453846px;}
.ws32{word-spacing:-33.211407px;}
.ws5{word-spacing:-32.727300px;}
.ws55{word-spacing:-27.463576px;}
.ws0{word-spacing:-23.245312px;}
.ws6e{word-spacing:-22.057344px;}
.ws4e{word-spacing:-21.777592px;}
.ws4b{word-spacing:-19.510886px;}
.ws61{word-spacing:-19.195269px;}
.ws9a{word-spacing:-17.869106px;}
.ws62{word-spacing:-17.574144px;}
.ws50{word-spacing:-17.000247px;}
.ws76{word-spacing:-16.469484px;}
.ws8b{word-spacing:-16.429105px;}
.ws75{word-spacing:-16.397752px;}
.ws88{word-spacing:-16.232741px;}
.ws14{word-spacing:-16.139475px;}
.ws38{word-spacing:-16.110828px;}
.wse{word-spacing:-15.840013px;}
.ws51{word-spacing:-15.752172px;}
.ws5d{word-spacing:-15.680440px;}
.ws5c{word-spacing:-15.393516px;}
.wsf{word-spacing:-15.316376px;}
.ws21{word-spacing:-15.178322px;}
.wsb2{word-spacing:-14.792740px;}
.ws94{word-spacing:-14.269103px;}
.ws81{word-spacing:-14.138194px;}
.ws35{word-spacing:-14.111859px;}
.ws1{word-spacing:-14.082230px;}
.ws3c{word-spacing:-13.887160px;}
.ws25{word-spacing:-13.449600px;}
.wsa1{word-spacing:-13.352738px;}
.ws40{word-spacing:-13.306138px;}
.ws1b{word-spacing:-13.234406px;}
.ws12{word-spacing:-13.221829px;}
.ws74{word-spacing:-13.169848px;}
.ws3d{word-spacing:-13.162675px;}
.ws3a{word-spacing:-13.026386px;}
.ws27{word-spacing:-12.875750px;}
.ws6c{word-spacing:-12.165612px;}
.ws59{word-spacing:-12.093880px;}
.wsae{word-spacing:-12.043646px;}
.ws42{word-spacing:-12.022149px;}
.ws37{word-spacing:-11.950418px;}
.ws20{word-spacing:-11.878687px;}
.ws56{word-spacing:-11.806956px;}
.ws1a{word-spacing:-11.735224px;}
.ws26{word-spacing:-11.663493px;}
.ws41{word-spacing:-11.591762px;}
.wsa2{word-spacing:-11.585464px;}
.ws1d{word-spacing:-11.520031px;}
.ws3e{word-spacing:-11.448300px;}
.ws68{word-spacing:-11.304837px;}
.ws29{word-spacing:-11.233106px;}
.ws8{word-spacing:-11.192737px;}
.ws78{word-spacing:-11.190067px;}
.ws28{word-spacing:-11.161375px;}
.ws85{word-spacing:-11.127282px;}
.wsaf{word-spacing:-10.996373px;}
.ws79{word-spacing:-10.974874px;}
.ws4{word-spacing:-10.930918px;}
.ws2{word-spacing:-10.865464px;}
.ws91{word-spacing:-10.800009px;}
.ws7a{word-spacing:-10.759680px;}
.ws10{word-spacing:-10.734554px;}
.wsc{word-spacing:-10.669100px;}
.ws9e{word-spacing:-10.538191px;}
.ws7c{word-spacing:-10.472736px;}
.ws80{word-spacing:-10.407281px;}
.ws9{word-spacing:-10.348372px;}
.wsd{word-spacing:-10.341827px;}
.ws16{word-spacing:-10.300600px;}
.ws3b{word-spacing:-10.157138px;}
.ws6{word-spacing:-10.021099px;}
.ws60{word-spacing:-10.013676px;}
.ws23{word-spacing:-9.977445px;}
.ws90{word-spacing:-9.883645px;}
.ws4d{word-spacing:-9.870213px;}
.ws5b{word-spacing:-9.791309px;}
.ws99{word-spacing:-9.425462px;}
.wsa0{word-spacing:-9.163644px;}
.ws70{word-spacing:-9.002266px;}
.ws6d{word-spacing:-8.787072px;}
.ws5a{word-spacing:-8.579052px;}
.ws71{word-spacing:-8.500147px;}
.ws9d{word-spacing:-8.378189px;}
.ws8a{word-spacing:-8.312734px;}
.ws66{word-spacing:-8.292127px;}
.wsb7{word-spacing:-8.247280px;}
.wsaa{word-spacing:-8.050916px;}
.ws34{word-spacing:-7.861740px;}
.ws67{word-spacing:-7.675238px;}
.ws72{word-spacing:-7.431352px;}
.ws54{word-spacing:-7.244851px;}
.ws2f{word-spacing:-7.173034px;}
.wsa6{word-spacing:-7.134551px;}
.ws52{word-spacing:-6.922061px;}
.ws18{word-spacing:-6.814464px;}
.wsa{word-spacing:-6.087278px;}
.ws87{word-spacing:-6.021823px;}
.ws97{word-spacing:-5.825459px;}
.wsa8{word-spacing:-5.760005px;}
.ws8e{word-spacing:-5.629096px;}
.ws93{word-spacing:-5.301823px;}
.ws6a{word-spacing:-5.279416px;}
.wsb4{word-spacing:-5.236368px;}
.wsac{word-spacing:-4.778186px;}
.wsa7{word-spacing:-4.712731px;}
.ws6b{word-spacing:-4.418642px;}
.ws15{word-spacing:-4.124544px;}
.ws82{word-spacing:-3.992731px;}
.ws65{word-spacing:-3.988255px;}
.ws63{word-spacing:-3.916524px;}
.ws13{word-spacing:-3.665458px;}
.ws9b{word-spacing:-3.652367px;}
.ws2e{word-spacing:-3.586560px;}
.ws73{word-spacing:-3.557868px;}
.wsa3{word-spacing:-3.141821px;}
.wsb9{word-spacing:-3.012710px;}
.wsb0{word-spacing:-3.010912px;}
.wsb1{word-spacing:-2.749093px;}
.wsad{word-spacing:-2.683639px;}
.wsa4{word-spacing:-2.356366px;}
.wsab{word-spacing:-2.290911px;}
.wsb3{word-spacing:-2.160002px;}
.ws92{word-spacing:-2.094547px;}
.ws8d{word-spacing:-2.029093px;}
.ws96{word-spacing:-1.963638px;}
.ws64{word-spacing:-1.936742px;}
.ws86{word-spacing:-1.898183px;}
.wsa5{word-spacing:-1.505456px;}
.wsa9{word-spacing:-1.178183px;}
.ws89{word-spacing:-1.112728px;}
.ws9c{word-spacing:-1.047274px;}
.ws11{word-spacing:-0.850910px;}
.ws9f{word-spacing:-0.785455px;}
.ws98{word-spacing:-0.720001px;}
.ws95{word-spacing:-0.589091px;}
.ws8f{word-spacing:-0.523637px;}
.ws7f{word-spacing:-0.392728px;}
.ws5f{word-spacing:-0.286925px;}
.ws5e{word-spacing:-0.258232px;}
.ws84{word-spacing:-0.130909px;}
.ws19{word-spacing:-0.071731px;}
.ws7e{word-spacing:-0.065455px;}
.ws1f{word-spacing:0.000000px;}
.ws83{word-spacing:0.261818px;}
.ws58{word-spacing:0.358656px;}
.ws24{word-spacing:0.430387px;}
.ws1c{word-spacing:0.573850px;}
.ws1e{word-spacing:0.645581px;}
.ws39{word-spacing:0.789043px;}
.ws3f{word-spacing:1.219430px;}
.ws8c{word-spacing:2.356366px;}
.ws7d{word-spacing:2.421820px;}
.ws2b{word-spacing:4.360424px;}
.ws4f{word-spacing:5.738496px;}
.ws77{word-spacing:8.779359px;}
.ws4c{word-spacing:8.798785px;}
.wsb5{word-spacing:21.730927px;}
.wsb8{word-spacing:22.123655px;}
.ws31{word-spacing:24.392966px;}
.wsb6{word-spacing:24.414566px;}
.wsb{word-spacing:24.676384px;}
.ws43{word-spacing:25.003657px;}
.ws53{word-spacing:36.136424px;}
.ws33{word-spacing:40.616966px;}
.ws3{word-spacing:54.523682px;}
.wsba{word-spacing:58.561352px;}
.ws22{word-spacing:60.258555px;}
.ws48{word-spacing:78.429540px;}
.ws45{word-spacing:81.954457px;}
.ws46{word-spacing:113.153206px;}
.ws4a{word-spacing:147.340143px;}
.ws47{word-spacing:173.191971px;}
.ws6f{word-spacing:636.964046px;}
._10{margin-left:-8.491054px;}
._2{margin-left:-7.058330px;}
._f{margin-left:-6.011068px;}
._6{margin-left:-4.875922px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.324084px;}
._a{margin-left:-1.275919px;}
._23{width:1.448977px;}
._1{width:2.496239px;}
._21{width:3.584993px;}
._7{width:4.791871px;}
._14{width:6.483905px;}
._b{width:19.334209px;}
._e{width:20.782282px;}
._c{width:23.022315px;}
._9{width:24.938203px;}
._22{width:27.076195px;}
._2e{width:28.167004px;}
._5{width:29.553198px;}
._8{width:30.614156px;}
._12{width:32.092532px;}
._d{width:33.765610px;}
._27{width:35.148288px;}
._15{width:37.356473px;}
._2d{width:39.895025px;}
._26{width:45.291060px;}
._13{width:48.418560px;}
._24{width:55.447307px;}
._11{width:58.102110px;}
._1b{width:76.279543px;}
._4{width:87.742337px;}
._16{width:105.210191px;}
._1c{width:111.648196px;}
._1a{width:122.361506px;}
._1f{width:130.181406px;}
._1d{width:144.024768px;}
._2b{width:169.520270px;}
._20{width:180.558799px;}
._19{width:203.428190px;}
._2c{width:221.706777px;}
._17{width:243.295425px;}
._25{width:273.713640px;}
._1e{width:314.189302px;}
._18{width:326.002379px;}
._28{width:349.386634px;}
._29{width:452.429658px;}
._2a{width:468.029678px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.ye6{bottom:-412.857000px;}
.ye5{bottom:-386.436000px;}
.ye4{bottom:-360.015000px;}
.ye3{bottom:-333.594000px;}
.ye2{bottom:-307.173000px;}
.ye1{bottom:-280.752000px;}
.ye0{bottom:-254.331000px;}
.ydf{bottom:-227.910000px;}
.yde{bottom:-201.489000px;}
.ydd{bottom:-175.068000px;}
.ydc{bottom:-148.647000px;}
.ydb{bottom:-122.226000px;}
.yda{bottom:-95.805000px;}
.yd9{bottom:-69.384000px;}
.yd8{bottom:-42.963000px;}
.yd7{bottom:-16.542000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:9.879000px;}
.yd5{bottom:36.300000px;}
.yd4{bottom:62.721000px;}
.y1f{bottom:63.168000px;}
.yd3{bottom:89.142000px;}
.y1e{bottom:108.000000px;}
.yd2{bottom:115.563000px;}
.y127{bottom:116.586000px;}
.y76{bottom:126.498000px;}
.y75{bottom:129.187500px;}
.y106{bottom:131.140500px;}
.y145{bottom:134.421000px;}
.y1d{bottom:136.170000px;}
.yd1{bottom:141.984000px;}
.y126{bottom:143.007000px;}
.y105{bottom:157.561500px;}
.y74{bottom:160.345500px;}
.y1c{bottom:164.338500px;}
.yd0{bottom:168.405000px;}
.y144{bottom:169.069500px;}
.y125{bottom:179.142000px;}
.yad{bottom:181.455000px;}
.y1b{bottom:192.508500px;}
.y104{bottom:193.696500px;}
.ycf{bottom:194.826000px;}
.y143{bottom:195.490500px;}
.y55{bottom:197.263500px;}
.y73{bottom:198.976500px;}
.y3a{bottom:199.999500px;}
.y124{bottom:205.563000px;}
.yac{bottom:209.623500px;}
.y103{bottom:220.117500px;}
.yce{bottom:221.247000px;}
.y92{bottom:221.344500px;}
.y54{bottom:223.684500px;}
.y39{bottom:223.735500px;}
.y38{bottom:228.169500px;}
.y142{bottom:230.139000px;}
.y72{bottom:237.606000px;}
.yab{bottom:237.793500px;}
.y1a{bottom:238.432500px;}
.y123{bottom:241.698000px;}
.ycd{bottom:247.668000px;}
.y91{bottom:249.514500px;}
.y53{bottom:250.105500px;}
.y102{bottom:256.252500px;}
.y37{bottom:264.532500px;}
.yaa{bottom:265.963500px;}
.y122{bottom:268.119000px;}
.y71{bottom:268.764000px;}
.y36{bottom:268.966500px;}
.ycc{bottom:274.089000px;}
.y141{bottom:274.314000px;}
.y52{bottom:276.526500px;}
.y90{bottom:277.683000px;}
.y101{bottom:282.673500px;}
.y19{bottom:300.285000px;}
.ycb{bottom:300.510000px;}
.y51{bottom:302.947500px;}
.y121{bottom:304.252500px;}
.y70{bottom:307.945500px;}
.y35{bottom:308.715000px;}
.ya9{bottom:311.886000px;}
.y100{bottom:318.807000px;}
.y18{bottom:326.706000px;}
.yca{bottom:326.931000px;}
.y8f{bottom:329.166000px;}
.y50{bottom:329.367000px;}
.y120{bottom:330.673500px;}
.y6f{bottom:332.377500px;}
.y140{bottom:334.765500px;}
.yff{bottom:345.228000px;}
.y17{bottom:353.127000px;}
.yc9{bottom:353.352000px;}
.y4f{bottom:355.788000px;}
.y34{bottom:359.497500px;}
.y11f{bottom:366.808500px;}
.y13f{bottom:369.415500px;}
.y6e{bottom:371.728500px;}
.y33{bottom:371.799000px;}
.ya8{bottom:373.872000px;}
.y4e{bottom:379.543500px;}
.y16{bottom:379.548000px;}
.yc8{bottom:379.773000px;}
.y8e{bottom:380.647500px;}
.yfe{bottom:381.363000px;}
.y4d{bottom:382.209000px;}
.y13e{bottom:395.836500px;}
.y6d{bottom:399.898500px;}
.ya7{bottom:402.042000px;}
.y11e{bottom:402.943500px;}
.y15{bottom:405.969000px;}
.yc7{bottom:406.194000px;}
.yfd{bottom:407.784000px;}
.y4c{bottom:408.630000px;}
.y8d{bottom:416.289000px;}
.y32{bottom:423.280500px;}
.y13d{bottom:430.485000px;}
.y14{bottom:432.390000px;}
.yc6{bottom:432.615000px;}
.y4b{bottom:435.051000px;}
.y11d{bottom:439.077000px;}
.y6c{bottom:439.645500px;}
.ya6{bottom:440.671500px;}
.yfc{bottom:443.919000px;}
.y8c{bottom:444.459000px;}
.y13c{bottom:456.906000px;}
.y13{bottom:458.811000px;}
.yc5{bottom:459.036000px;}
.y31{bottom:463.029000px;}
.yfb{bottom:470.340000px;}
.y4a{bottom:470.455500px;}
.y8b{bottom:472.627500px;}
.y11c{bottom:475.212000px;}
.ya5{bottom:479.302500px;}
.y12{bottom:485.232000px;}
.yc4{bottom:485.457000px;}
.y13b{bottom:491.554500px;}
.y6b{bottom:492.903000px;}
.yfa{bottom:506.473500px;}
.y11{bottom:508.987500px;}
.y8a{bottom:511.258500px;}
.y11b{bottom:511.347000px;}
.y10{bottom:511.653000px;}
.yc3{bottom:511.878000px;}
.y30{bottom:516.286500px;}
.ya4{bottom:517.932000px;}
.y49{bottom:525.111000px;}
.y13a{bottom:526.203000px;}
.yf9{bottom:532.894500px;}
.yf{bottom:538.074000px;}
.yc2{bottom:538.299000px;}
.y89{bottom:539.427000px;}
.y6a{bottom:544.384500px;}
.y11a{bottom:547.480500px;}
.y139{bottom:552.624000px;}
.ya3{bottom:563.856000px;}
.ye{bottom:564.495000px;}
.yc1{bottom:564.720000px;}
.y88{bottom:567.597000px;}
.y2f{bottom:567.768000px;}
.yf8{bottom:569.029500px;}
.y69{bottom:572.554500px;}
.y119{bottom:573.901500px;}
.y48{bottom:587.097000px;}
.y138{bottom:587.274000px;}
.yc0{bottom:591.141000px;}
.yf7{bottom:595.450500px;}
.yd{bottom:599.904000px;}
.y68{bottom:600.724500px;}
.y87{bottom:606.226500px;}
.y2e{bottom:607.516500px;}
.y118{bottom:610.036500px;}
.y47{bottom:615.267000px;}
.ybf{bottom:617.562000px;}
.y137{bottom:621.922500px;}
.ya2{bottom:625.842000px;}
.y67{bottom:628.893000px;}
.yf6{bottom:631.585500px;}
.y86{bottom:634.396500px;}
.y117{bottom:636.457500px;}
.ybe{bottom:643.983000px;}
.yc{bottom:644.722500px;}
.y2d{bottom:653.815500px;}
.ya1{bottom:654.012000px;}
.y66{bottom:654.372000px;}
.y136{bottom:656.571000px;}
.y65{bottom:657.063000px;}
.yf5{bottom:658.006500px;}
.y85{bottom:662.566500px;}
.y46{bottom:666.748500px;}
.ybd{bottom:670.404000px;}
.yb{bottom:671.143500px;}
.y116{bottom:672.592500px;}
.y2c{bottom:678.249000px;}
.ya0{bottom:682.180500px;}
.y135{bottom:682.992000px;}
.y60{bottom:692.242500px;}
.yf4{bottom:694.141500px;}
.y64{bottom:695.577000px;}
.ybc{bottom:696.825000px;}
.ya{bottom:697.564500px;}
.y84{bottom:701.196000px;}
.y5f{bottom:704.542500px;}
.y115{bottom:708.727500px;}
.y9f{bottom:710.350500px;}
.y63{bottom:713.509500px;}
.y2b{bottom:717.598500px;}
.y134{bottom:717.640500px;}
.y45{bottom:718.230000px;}
.yf3{bottom:720.562500px;}
.y62{bottom:722.475000px;}
.ybb{bottom:723.246000px;}
.y9{bottom:723.985500px;}
.y83{bottom:729.366000px;}
.y61{bottom:731.442000px;}
.y5e{bottom:732.712500px;}
.y114{bottom:735.147000px;}
.y133{bottom:744.061500px;}
.y44{bottom:746.400000px;}
.yba{bottom:749.667000px;}
.y9e{bottom:756.273000px;}
.yf2{bottom:756.696000px;}
.y2a{bottom:757.347000px;}
.y82{bottom:757.534500px;}
.y5d{bottom:760.881000px;}
.y113{bottom:771.282000px;}
.y43{bottom:774.570000px;}
.yb9{bottom:776.088000px;}
.y132{bottom:778.710000px;}
.yf1{bottom:783.117000px;}
.y5c{bottom:789.051000px;}
.y8{bottom:795.141000px;}
.y81{bottom:796.165500px;}
.y112{bottom:797.703000px;}
.yb8{bottom:802.509000px;}
.y42{bottom:802.738500px;}
.y131{bottom:805.131000px;}
.y29{bottom:806.805000px;}
.y5b{bottom:814.530000px;}
.y5a{bottom:817.221000px;}
.y9d{bottom:818.259000px;}
.yf0{bottom:819.252000px;}
.y80{bottom:824.334000px;}
.yb7{bottom:828.930000px;}
.y41{bottom:830.908500px;}
.y111{bottom:833.838000px;}
.y130{bottom:839.781000px;}
.y59{bottom:845.389500px;}
.yef{bottom:845.673000px;}
.y9b{bottom:846.429000px;}
.y7f{bottom:852.504000px;}
.y9c{bottom:852.936000px;}
.yb6{bottom:855.351000px;}
.y7{bottom:859.267500px;}
.y110{bottom:860.259000px;}
.y12f{bottom:866.202000px;}
.y28{bottom:868.791000px;}
.y9a{bottom:874.599000px;}
.yb5{bottom:881.772000px;}
.yee{bottom:881.808000px;}
.y6{bottom:885.688500px;}
.y40{bottom:887.247000px;}
.y7e{bottom:888.145500px;}
.y58{bottom:891.313500px;}
.y12e{bottom:892.623000px;}
.y10f{bottom:896.394000px;}
.y27{bottom:896.961000px;}
.y99{bottom:902.767500px;}
.yb4{bottom:908.193000px;}
.yed{bottom:908.229000px;}
.y3f{bottom:915.417000px;}
.y7d{bottom:916.314000px;}
.y5{bottom:919.918500px;}
.y10e{bottom:922.815000px;}
.y26{bottom:925.129500px;}
.y12d{bottom:927.271500px;}
.y98{bottom:930.655500px;}
.yb3{bottom:934.612500px;}
.y3e{bottom:943.585500px;}
.yec{bottom:944.362500px;}
.y7c{bottom:944.484000px;}
.y10d{bottom:949.236000px;}
.y25{bottom:953.299500px;}
.y12c{bottom:953.692500px;}
.y4{bottom:956.085000px;}
.y97{bottom:958.824000px;}
.yb2{bottom:961.033500px;}
.yeb{bottom:970.783500px;}
.y3d{bottom:971.755500px;}
.y7b{bottom:972.654000px;}
.y57{bottom:981.469500px;}
.y10c{bottom:985.369500px;}
.y96{bottom:986.994000px;}
.yb1{bottom:987.454500px;}
.y12b{bottom:988.341000px;}
.y24{bottom:992.481000px;}
.y93{bottom:993.600000px;}
.yea{bottom:997.204500px;}
.y23{bottom:1004.781000px;}
.y10b{bottom:1009.258500px;}
.y10a{bottom:1011.790500px;}
.yb0{bottom:1013.875500px;}
.y12a{bottom:1014.762000px;}
.y95{bottom:1015.162500px;}
.y3{bottom:1017.393000px;}
.y7a{bottom:1018.576500px;}
.y3c{bottom:1028.094000px;}
.y56{bottom:1032.951000px;}
.ye9{bottom:1033.339500px;}
.yaf{bottom:1040.296500px;}
.y109{bottom:1047.925500px;}
.y129{bottom:1049.410500px;}
.y94{bottom:1052.314500px;}
.y2{bottom:1052.361000px;}
.y3b{bottom:1053.573000px;}
.y22{bottom:1056.264000px;}
.ye8{bottom:1059.760500px;}
.y108{bottom:1074.346500px;}
.yae{bottom:1075.701000px;}
.y128{bottom:1075.831500px;}
.y79{bottom:1080.562500px;}
.y21{bottom:1084.432500px;}
.ye7{bottom:1086.181500px;}
.y1{bottom:1087.330500px;}
.y78{bottom:1108.732500px;}
.y107{bottom:1110.481500px;}
.y20{bottom:1130.356500px;}
.y77{bottom:1136.902500px;}
.h12{height:2.391024px;}
.h13{height:27.770400px;}
.h7{height:33.665702px;}
.h5{height:44.831700px;}
.h14{height:45.425492px;}
.h6{height:49.090950px;}
.h8{height:53.798400px;}
.h15{height:59.218950px;}
.h10{height:61.893450px;}
.h3{height:64.557900px;}
.hd{height:71.733024px;}
.h11{height:71.930400px;}
.h4{height:76.067700px;}
.he{height:83.217450px;}
.hf{height:89.469024px;}
.h2{height:92.981250px;}
.h9{height:102.326400px;}
.hb{height:102.998400px;}
.hc{height:103.004400px;}
.ha{height:151.526400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x63{left:105.945000px;}
.x1a{left:106.951500px;}
.x11{left:108.000000px;}
.xa{left:109.288500px;}
.x9{left:117.444000px;}
.x2{left:119.166000px;}
.x6f{left:122.209500px;}
.xb{left:128.175000px;}
.x52{left:129.460500px;}
.x2a{left:134.338500px;}
.x27{left:140.479500px;}
.x4{left:147.061500px;}
.x57{left:149.745000px;}
.xe{left:151.897500px;}
.x2b{left:158.866500px;}
.x25{left:160.096500px;}
.xf{left:161.908500px;}
.x6{left:163.731000px;}
.x10{left:170.076000px;}
.x1{left:172.047000px;}
.x2c{left:175.690500px;}
.x5{left:190.680000px;}
.x26{left:209.691000px;}
.x17{left:220.102500px;}
.x2f{left:237.918000px;}
.x39{left:240.735000px;}
.x67{left:257.743500px;}
.x4e{left:259.174500px;}
.x30{left:267.694500px;}
.x31{left:276.298500px;}
.x59{left:277.332000px;}
.x3{left:279.441000px;}
.x32{left:281.176500px;}
.x4f{left:286.218000px;}
.x53{left:288.988500px;}
.x18{left:290.560500px;}
.x50{left:300.885000px;}
.x54{left:313.315500px;}
.x60{left:316.420500px;}
.x61{left:325.387500px;}
.xc{left:329.514000px;}
.x64{left:331.233000px;}
.x44{left:334.675500px;}
.x23{left:339.616500px;}
.x49{left:341.914500px;}
.x4a{left:355.936500px;}
.x56{left:357.672000px;}
.x62{left:362.446500px;}
.x38{left:365.094000px;}
.x12{left:366.949500px;}
.x8{left:367.996500px;}
.x20{left:370.171500px;}
.x3e{left:372.054000px;}
.x7{left:377.617500px;}
.x3f{left:382.210500px;}
.x13{left:383.799000px;}
.x1f{left:385.117500px;}
.x21{left:396.463500px;}
.x45{left:408.040500px;}
.x4b{left:409.674000px;}
.xd{left:410.710500px;}
.x3b{left:420.849000px;}
.x7c{left:437.677500px;}
.x33{left:439.320000px;}
.x16{left:442.066500px;}
.x24{left:447.940500px;}
.x4c{left:449.217000px;}
.x4d{left:454.095000px;}
.x22{left:455.223000px;}
.x34{left:456.456000px;}
.x1b{left:467.637000px;}
.x68{left:473.595000px;}
.x40{left:475.821000px;}
.x41{left:480.697500px;}
.x46{left:488.220000px;}
.x28{left:495.363000px;}
.x1c{left:503.428500px;}
.x58{left:507.222000px;}
.x29{left:509.511000px;}
.x1d{left:512.032500px;}
.x1e{left:516.910500px;}
.x35{left:529.765500px;}
.x47{left:531.828000px;}
.x6d{left:533.941500px;}
.x77{left:535.077000px;}
.x6b{left:536.170500px;}
.x6a{left:538.689000px;}
.x71{left:540.799500px;}
.x73{left:542.704500px;}
.x6e{left:546.958500px;}
.x7b{left:548.026500px;}
.x3c{left:549.541500px;}
.x79{left:551.313000px;}
.x48{left:553.360500px;}
.x6c{left:555.864000px;}
.x70{left:557.214000px;}
.x72{left:558.415500px;}
.x7a{left:560.751000px;}
.x7d{left:564.621000px;}
.x7e{left:568.306500px;}
.x78{left:569.743500px;}
.x3d{left:575.641500px;}
.x5a{left:579.126000px;}
.x51{left:582.481500px;}
.x65{left:591.711000px;}
.x5b{left:603.480000px;}
.x19{left:611.670000px;}
.x66{left:625.471500px;}
.x74{left:630.457500px;}
.x36{left:641.554500px;}
.x42{left:652.599000px;}
.x37{left:658.398000px;}
.x43{left:665.518500px;}
.x5c{left:669.189000px;}
.x14{left:675.120000px;}
.x2d{left:676.854000px;}
.x3a{left:678.613500px;}
.x69{left:687.118500px;}
.x5d{left:690.835500px;}
.x15{left:691.968000px;}
.x2e{left:693.678000px;}
.x5e{left:697.636500px;}
.x5f{left:706.593000px;}
.x55{left:749.890500px;}
.x75{left:777.010500px;}
.x76{left:817.101000px;}
@media print{
.ve{vertical-align:-34.538667pt;}
.v2{vertical-align:-27.765333pt;}
.vf{vertical-align:-23.136000pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.562667pt;}
.v9{vertical-align:15.765333pt;}
.vc{vertical-align:23.136000pt;}
.v8{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.vd{vertical-align:33.573333pt;}
.va{vertical-align:42.090667pt;}
.v5{vertical-align:43.136000pt;}
.v7{vertical-align:61.637333pt;}
.vb{vertical-align:77.402667pt;}
.v6{vertical-align:86.869333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.001312pt;}
.ls16{letter-spacing:0.001788pt;}
.ls44{letter-spacing:0.002039pt;}
.ls32{letter-spacing:0.002482pt;}
.ls36{letter-spacing:0.014923pt;}
.ls31{letter-spacing:0.025045pt;}
.ls4a{letter-spacing:0.058182pt;}
.ls48{letter-spacing:0.290909pt;}
.ls4e{letter-spacing:0.407273pt;}
.ls50{letter-spacing:0.465455pt;}
.ls52{letter-spacing:0.581819pt;}
.ls56{letter-spacing:0.640001pt;}
.ls55{letter-spacing:0.872728pt;}
.ls4c{letter-spacing:0.930910pt;}
.ls59{letter-spacing:0.989092pt;}
.ls58{letter-spacing:1.280001pt;}
.ls4b{letter-spacing:1.629092pt;}
.ls51{letter-spacing:1.687274pt;}
.ls4d{letter-spacing:1.745456pt;}
.ls4f{letter-spacing:1.803638pt;}
.ls5d{letter-spacing:1.861820pt;}
.ls5a{letter-spacing:1.978183pt;}
.ls5b{letter-spacing:2.327275pt;}
.ls27{letter-spacing:2.560002pt;}
.ls5c{letter-spacing:2.618184pt;}
.ls22{letter-spacing:2.653258pt;}
.ls37{letter-spacing:2.653383pt;}
.ls0{letter-spacing:2.654400pt;}
.ls57{letter-spacing:2.734548pt;}
.ls28{letter-spacing:3.374548pt;}
.ls30{letter-spacing:3.443098pt;}
.ls49{letter-spacing:3.490912pt;}
.lse{letter-spacing:3.698142pt;}
.ls11{letter-spacing:3.761903pt;}
.ls53{letter-spacing:5.038310pt;}
.ls14{letter-spacing:6.387843pt;}
.ls20{letter-spacing:6.458187pt;}
.ls2c{letter-spacing:6.822434pt;}
.ls1e{letter-spacing:7.338992pt;}
.ls9{letter-spacing:7.344325pt;}
.ls17{letter-spacing:8.671524pt;}
.ls18{letter-spacing:8.681472pt;}
.ls19{letter-spacing:10.625788pt;}
.ls1d{letter-spacing:10.775620pt;}
.ls38{letter-spacing:11.030665pt;}
.ls34{letter-spacing:12.242125pt;}
.ls54{letter-spacing:12.916374pt;}
.ls10{letter-spacing:13.282591pt;}
.lsb{letter-spacing:14.154957pt;}
.ls2a{letter-spacing:16.174559pt;}
.ls45{letter-spacing:16.641638pt;}
.ls1c{letter-spacing:17.581119pt;}
.ls35{letter-spacing:17.661815pt;}
.lsf{letter-spacing:17.725577pt;}
.ls23{letter-spacing:18.813258pt;}
.ls29{letter-spacing:19.374562pt;}
.ls3a{letter-spacing:20.551235pt;}
.ls2{letter-spacing:20.770926pt;}
.ls46{letter-spacing:20.786108pt;}
.ls1{letter-spacing:20.829108pt;}
.ls3e{letter-spacing:21.168674pt;}
.ls8{letter-spacing:21.423718pt;}
.lsa{letter-spacing:21.487479pt;}
.ls39{letter-spacing:21.509658pt;}
.ls21{letter-spacing:22.050591pt;}
.ls25{letter-spacing:22.632746pt;}
.ls26{letter-spacing:22.749110pt;}
.ls3d{letter-spacing:23.469383pt;}
.ls40{letter-spacing:23.910400pt;}
.ls2e{letter-spacing:23.920853pt;}
.ls5{letter-spacing:24.071211pt;}
.ls2f{letter-spacing:24.084905pt;}
.ls3f{letter-spacing:24.292966pt;}
.lsc{letter-spacing:25.056325pt;}
.ls3{letter-spacing:28.154992pt;}
.ls47{letter-spacing:28.692400pt;}
.ls5e{letter-spacing:29.498206pt;}
.ls3c{letter-spacing:31.242923pt;}
.ls5f{letter-spacing:62.422084pt;}
.ls13{letter-spacing:69.903334pt;}
.ls6{letter-spacing:80.147661pt;}
.ls24{letter-spacing:227.367554pt;}
.ls7{letter-spacing:326.074095pt;}
.ls41{letter-spacing:509.232515pt;}
.ls2b{letter-spacing:517.805868pt;}
.ls43{letter-spacing:550.960935pt;}
.ls3b{letter-spacing:554.848802pt;}
.ls42{letter-spacing:630.088419pt;}
.ls33{letter-spacing:733.507311pt;}
.ls1a{letter-spacing:751.041604pt;}
.ls1f{letter-spacing:841.646080pt;}
.ls12{letter-spacing:859.690462pt;}
.ls2d{letter-spacing:866.385374pt;}
.lsd{letter-spacing:882.580685pt;}
.ls15{letter-spacing:953.164186pt;}
.ws57{word-spacing:-63.761067pt;}
.ws2c{word-spacing:-49.606110pt;}
.ws7b{word-spacing:-43.038600pt;}
.ws49{word-spacing:-42.007308pt;}
.ws2a{word-spacing:-40.590295pt;}
.ws44{word-spacing:-37.899668pt;}
.ws69{word-spacing:-35.865600pt;}
.ws17{word-spacing:-31.880533pt;}
.ws2d{word-spacing:-31.217418pt;}
.ws30{word-spacing:-29.989728pt;}
.ws36{word-spacing:-29.942197pt;}
.ws7{word-spacing:-29.736752pt;}
.ws32{word-spacing:-29.521250pt;}
.ws5{word-spacing:-29.090933pt;}
.ws55{word-spacing:-24.412068pt;}
.ws0{word-spacing:-20.662500pt;}
.ws6e{word-spacing:-19.606528pt;}
.ws4e{word-spacing:-19.357860pt;}
.ws4b{word-spacing:-17.343010pt;}
.ws61{word-spacing:-17.062461pt;}
.ws9a{word-spacing:-15.883650pt;}
.ws62{word-spacing:-15.621461pt;}
.ws50{word-spacing:-15.111331pt;}
.ws76{word-spacing:-14.639541pt;}
.ws8b{word-spacing:-14.603649pt;}
.ws75{word-spacing:-14.575780pt;}
.ws88{word-spacing:-14.429103pt;}
.ws14{word-spacing:-14.346200pt;}
.ws38{word-spacing:-14.320736pt;}
.wse{word-spacing:-14.080012pt;}
.ws51{word-spacing:-14.001930pt;}
.ws5d{word-spacing:-13.938169pt;}
.ws5c{word-spacing:-13.683125pt;}
.wsf{word-spacing:-13.614557pt;}
.ws21{word-spacing:-13.491842pt;}
.wsb2{word-spacing:-13.149102pt;}
.ws94{word-spacing:-12.683647pt;}
.ws81{word-spacing:-12.567283pt;}
.ws35{word-spacing:-12.543875pt;}
.ws1{word-spacing:-12.517538pt;}
.ws3c{word-spacing:-12.344143pt;}
.ws25{word-spacing:-11.955200pt;}
.wsa1{word-spacing:-11.869101pt;}
.ws40{word-spacing:-11.827678pt;}
.ws1b{word-spacing:-11.763917pt;}
.ws12{word-spacing:-11.752737pt;}
.ws74{word-spacing:-11.706532pt;}
.ws3d{word-spacing:-11.700156pt;}
.ws3a{word-spacing:-11.579010pt;}
.ws27{word-spacing:-11.445111pt;}
.ws6c{word-spacing:-10.813877pt;}
.ws59{word-spacing:-10.750116pt;}
.wsae{word-spacing:-10.705463pt;}
.ws42{word-spacing:-10.686355pt;}
.ws37{word-spacing:-10.622594pt;}
.ws20{word-spacing:-10.558833pt;}
.ws56{word-spacing:-10.495072pt;}
.ws1a{word-spacing:-10.431311pt;}
.ws26{word-spacing:-10.367549pt;}
.ws41{word-spacing:-10.303788pt;}
.wsa2{word-spacing:-10.298190pt;}
.ws1d{word-spacing:-10.240027pt;}
.ws3e{word-spacing:-10.176266pt;}
.ws68{word-spacing:-10.048744pt;}
.ws29{word-spacing:-9.984983pt;}
.ws8{word-spacing:-9.949099pt;}
.ws78{word-spacing:-9.946726pt;}
.ws28{word-spacing:-9.921222pt;}
.ws85{word-spacing:-9.890917pt;}
.wsaf{word-spacing:-9.774554pt;}
.ws79{word-spacing:-9.755443pt;}
.ws4{word-spacing:-9.716372pt;}
.ws2{word-spacing:-9.658190pt;}
.ws91{word-spacing:-9.600008pt;}
.ws7a{word-spacing:-9.564160pt;}
.ws10{word-spacing:-9.541826pt;}
.wsc{word-spacing:-9.483644pt;}
.ws9e{word-spacing:-9.367281pt;}
.ws7c{word-spacing:-9.309099pt;}
.ws80{word-spacing:-9.250917pt;}
.ws9{word-spacing:-9.198553pt;}
.wsd{word-spacing:-9.192735pt;}
.ws16{word-spacing:-9.156089pt;}
.ws3b{word-spacing:-9.028567pt;}
.ws6{word-spacing:-8.907644pt;}
.ws60{word-spacing:-8.901045pt;}
.ws23{word-spacing:-8.868840pt;}
.ws90{word-spacing:-8.785462pt;}
.ws4d{word-spacing:-8.773523pt;}
.ws5b{word-spacing:-8.703386pt;}
.ws99{word-spacing:-8.378189pt;}
.wsa0{word-spacing:-8.145461pt;}
.ws70{word-spacing:-8.002014pt;}
.ws6d{word-spacing:-7.810731pt;}
.ws5a{word-spacing:-7.625824pt;}
.ws71{word-spacing:-7.555686pt;}
.ws9d{word-spacing:-7.447279pt;}
.ws8a{word-spacing:-7.389097pt;}
.ws66{word-spacing:-7.370779pt;}
.wsb7{word-spacing:-7.330915pt;}
.wsaa{word-spacing:-7.156370pt;}
.ws34{word-spacing:-6.988213pt;}
.ws67{word-spacing:-6.822434pt;}
.ws72{word-spacing:-6.605647pt;}
.ws54{word-spacing:-6.439868pt;}
.ws2f{word-spacing:-6.376030pt;}
.wsa6{word-spacing:-6.341823pt;}
.ws52{word-spacing:-6.152943pt;}
.ws18{word-spacing:-6.057301pt;}
.wsa{word-spacing:-5.410914pt;}
.ws87{word-spacing:-5.352732pt;}
.ws97{word-spacing:-5.178186pt;}
.wsa8{word-spacing:-5.120004pt;}
.ws8e{word-spacing:-5.003641pt;}
.ws93{word-spacing:-4.712731pt;}
.ws6a{word-spacing:-4.692815pt;}
.wsb4{word-spacing:-4.654549pt;}
.wsac{word-spacing:-4.247276pt;}
.wsa7{word-spacing:-4.189094pt;}
.ws6b{word-spacing:-3.927682pt;}
.ws15{word-spacing:-3.666261pt;}
.ws82{word-spacing:-3.549094pt;}
.ws65{word-spacing:-3.545115pt;}
.ws63{word-spacing:-3.481354pt;}
.ws13{word-spacing:-3.258185pt;}
.ws9b{word-spacing:-3.246548pt;}
.ws2e{word-spacing:-3.188053pt;}
.ws73{word-spacing:-3.162549pt;}
.wsa3{word-spacing:-2.792730pt;}
.wsb9{word-spacing:-2.677965pt;}
.wsb0{word-spacing:-2.676366pt;}
.wsb1{word-spacing:-2.443638pt;}
.wsad{word-spacing:-2.385457pt;}
.wsa4{word-spacing:-2.094547pt;}
.wsab{word-spacing:-2.036365pt;}
.wsb3{word-spacing:-1.920002pt;}
.ws92{word-spacing:-1.861820pt;}
.ws8d{word-spacing:-1.803638pt;}
.ws96{word-spacing:-1.745456pt;}
.ws64{word-spacing:-1.721549pt;}
.ws86{word-spacing:-1.687274pt;}
.wsa5{word-spacing:-1.338183pt;}
.wsa9{word-spacing:-1.047274pt;}
.ws89{word-spacing:-0.989092pt;}
.ws9c{word-spacing:-0.930910pt;}
.ws11{word-spacing:-0.756364pt;}
.ws9f{word-spacing:-0.698182pt;}
.ws98{word-spacing:-0.640001pt;}
.ws95{word-spacing:-0.523637pt;}
.ws8f{word-spacing:-0.465455pt;}
.ws7f{word-spacing:-0.349091pt;}
.ws5f{word-spacing:-0.255044pt;}
.ws5e{word-spacing:-0.229540pt;}
.ws84{word-spacing:-0.116364pt;}
.ws19{word-spacing:-0.063761pt;}
.ws7e{word-spacing:-0.058182pt;}
.ws1f{word-spacing:0.000000pt;}
.ws83{word-spacing:0.232727pt;}
.ws58{word-spacing:0.318805pt;}
.ws24{word-spacing:0.382566pt;}
.ws1c{word-spacing:0.510089pt;}
.ws1e{word-spacing:0.573850pt;}
.ws39{word-spacing:0.701372pt;}
.ws3f{word-spacing:1.083938pt;}
.ws8c{word-spacing:2.094547pt;}
.ws7d{word-spacing:2.152729pt;}
.ws2b{word-spacing:3.875932pt;}
.ws4f{word-spacing:5.100885pt;}
.ws77{word-spacing:7.803875pt;}
.ws4c{word-spacing:7.821142pt;}
.wsb5{word-spacing:19.316380pt;}
.wsb8{word-spacing:19.665471pt;}
.ws31{word-spacing:21.682637pt;}
.wsb6{word-spacing:21.701836pt;}
.wsb{word-spacing:21.934564pt;}
.ws43{word-spacing:22.225473pt;}
.ws53{word-spacing:32.121265pt;}
.ws33{word-spacing:36.103970pt;}
.ws3{word-spacing:48.465495pt;}
.wsba{word-spacing:52.054535pt;}
.ws22{word-spacing:53.563160pt;}
.ws48{word-spacing:69.715147pt;}
.ws45{word-spacing:72.848406pt;}
.ws46{word-spacing:100.580627pt;}
.ws4a{word-spacing:130.969016pt;}
.ws47{word-spacing:153.948419pt;}
.ws6f{word-spacing:566.190263pt;}
._10{margin-left:-7.547604pt;}
._2{margin-left:-6.274071pt;}
._f{margin-left:-5.343171pt;}
._6{margin-left:-4.334153pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-2.065853pt;}
._a{margin-left:-1.134150pt;}
._23{width:1.287980pt;}
._1{width:2.218879pt;}
._21{width:3.186661pt;}
._7{width:4.259441pt;}
._14{width:5.763471pt;}
._b{width:17.185963pt;}
._e{width:18.473139pt;}
._c{width:20.464280pt;}
._9{width:22.167291pt;}
._22{width:24.067729pt;}
._2e{width:25.037337pt;}
._5{width:26.269509pt;}
._8{width:27.212583pt;}
._12{width:28.526695pt;}
._d{width:30.013875pt;}
._27{width:31.242923pt;}
._15{width:33.205754pt;}
._2d{width:35.462244pt;}
._26{width:40.258720pt;}
._13{width:43.038720pt;}
._24{width:49.286495pt;}
._11{width:51.646320pt;}
._1b{width:67.804038pt;}
._4{width:77.993189pt;}
._16{width:93.520169pt;}
._1c{width:99.242841pt;}
._1a{width:108.765783pt;}
._1f{width:115.716806pt;}
._1d{width:128.022016pt;}
._2b{width:150.684684pt;}
._20{width:160.496710pt;}
._19{width:180.825058pt;}
._2c{width:197.072690pt;}
._17{width:216.262600pt;}
._25{width:243.301013pt;}
._1e{width:279.279380pt;}
._18{width:289.779893pt;}
._28{width:310.565897pt;}
._29{width:402.159696pt;}
._2a{width:416.026381pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.ye6{bottom:-366.984000pt;}
.ye5{bottom:-343.498667pt;}
.ye4{bottom:-320.013333pt;}
.ye3{bottom:-296.528000pt;}
.ye2{bottom:-273.042667pt;}
.ye1{bottom:-249.557333pt;}
.ye0{bottom:-226.072000pt;}
.ydf{bottom:-202.586667pt;}
.yde{bottom:-179.101333pt;}
.ydd{bottom:-155.616000pt;}
.ydc{bottom:-132.130667pt;}
.ydb{bottom:-108.645333pt;}
.yda{bottom:-85.160000pt;}
.yd9{bottom:-61.674667pt;}
.yd8{bottom:-38.189333pt;}
.yd7{bottom:-14.704000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:8.781333pt;}
.yd5{bottom:32.266667pt;}
.yd4{bottom:55.752000pt;}
.y1f{bottom:56.149333pt;}
.yd3{bottom:79.237333pt;}
.y1e{bottom:96.000000pt;}
.yd2{bottom:102.722667pt;}
.y127{bottom:103.632000pt;}
.y76{bottom:112.442667pt;}
.y75{bottom:114.833333pt;}
.y106{bottom:116.569333pt;}
.y145{bottom:119.485333pt;}
.y1d{bottom:121.040000pt;}
.yd1{bottom:126.208000pt;}
.y126{bottom:127.117333pt;}
.y105{bottom:140.054667pt;}
.y74{bottom:142.529333pt;}
.y1c{bottom:146.078667pt;}
.yd0{bottom:149.693333pt;}
.y144{bottom:150.284000pt;}
.y125{bottom:159.237333pt;}
.yad{bottom:161.293333pt;}
.y1b{bottom:171.118667pt;}
.y104{bottom:172.174667pt;}
.ycf{bottom:173.178667pt;}
.y143{bottom:173.769333pt;}
.y55{bottom:175.345333pt;}
.y73{bottom:176.868000pt;}
.y3a{bottom:177.777333pt;}
.y124{bottom:182.722667pt;}
.yac{bottom:186.332000pt;}
.y103{bottom:195.660000pt;}
.yce{bottom:196.664000pt;}
.y92{bottom:196.750667pt;}
.y54{bottom:198.830667pt;}
.y39{bottom:198.876000pt;}
.y38{bottom:202.817333pt;}
.y142{bottom:204.568000pt;}
.y72{bottom:211.205333pt;}
.yab{bottom:211.372000pt;}
.y1a{bottom:211.940000pt;}
.y123{bottom:214.842667pt;}
.ycd{bottom:220.149333pt;}
.y91{bottom:221.790667pt;}
.y53{bottom:222.316000pt;}
.y102{bottom:227.780000pt;}
.y37{bottom:235.140000pt;}
.yaa{bottom:236.412000pt;}
.y122{bottom:238.328000pt;}
.y71{bottom:238.901333pt;}
.y36{bottom:239.081333pt;}
.ycc{bottom:243.634667pt;}
.y141{bottom:243.834667pt;}
.y52{bottom:245.801333pt;}
.y90{bottom:246.829333pt;}
.y101{bottom:251.265333pt;}
.y19{bottom:266.920000pt;}
.ycb{bottom:267.120000pt;}
.y51{bottom:269.286667pt;}
.y121{bottom:270.446667pt;}
.y70{bottom:273.729333pt;}
.y35{bottom:274.413333pt;}
.ya9{bottom:277.232000pt;}
.y100{bottom:283.384000pt;}
.y18{bottom:290.405333pt;}
.yca{bottom:290.605333pt;}
.y8f{bottom:292.592000pt;}
.y50{bottom:292.770667pt;}
.y120{bottom:293.932000pt;}
.y6f{bottom:295.446667pt;}
.y140{bottom:297.569333pt;}
.yff{bottom:306.869333pt;}
.y17{bottom:313.890667pt;}
.yc9{bottom:314.090667pt;}
.y4f{bottom:316.256000pt;}
.y34{bottom:319.553333pt;}
.y11f{bottom:326.052000pt;}
.y13f{bottom:328.369333pt;}
.y6e{bottom:330.425333pt;}
.y33{bottom:330.488000pt;}
.ya8{bottom:332.330667pt;}
.y4e{bottom:337.372000pt;}
.y16{bottom:337.376000pt;}
.yc8{bottom:337.576000pt;}
.y8e{bottom:338.353333pt;}
.yfe{bottom:338.989333pt;}
.y4d{bottom:339.741333pt;}
.y13e{bottom:351.854667pt;}
.y6d{bottom:355.465333pt;}
.ya7{bottom:357.370667pt;}
.y11e{bottom:358.172000pt;}
.y15{bottom:360.861333pt;}
.yc7{bottom:361.061333pt;}
.yfd{bottom:362.474667pt;}
.y4c{bottom:363.226667pt;}
.y8d{bottom:370.034667pt;}
.y32{bottom:376.249333pt;}
.y13d{bottom:382.653333pt;}
.y14{bottom:384.346667pt;}
.yc6{bottom:384.546667pt;}
.y4b{bottom:386.712000pt;}
.y11d{bottom:390.290667pt;}
.y6c{bottom:390.796000pt;}
.ya6{bottom:391.708000pt;}
.yfc{bottom:394.594667pt;}
.y8c{bottom:395.074667pt;}
.y13c{bottom:406.138667pt;}
.y13{bottom:407.832000pt;}
.yc5{bottom:408.032000pt;}
.y31{bottom:411.581333pt;}
.yfb{bottom:418.080000pt;}
.y4a{bottom:418.182667pt;}
.y8b{bottom:420.113333pt;}
.y11c{bottom:422.410667pt;}
.ya5{bottom:426.046667pt;}
.y12{bottom:431.317333pt;}
.yc4{bottom:431.517333pt;}
.y13b{bottom:436.937333pt;}
.y6b{bottom:438.136000pt;}
.yfa{bottom:450.198667pt;}
.y11{bottom:452.433333pt;}
.y8a{bottom:454.452000pt;}
.y11b{bottom:454.530667pt;}
.y10{bottom:454.802667pt;}
.yc3{bottom:455.002667pt;}
.y30{bottom:458.921333pt;}
.ya4{bottom:460.384000pt;}
.y49{bottom:466.765333pt;}
.y13a{bottom:467.736000pt;}
.yf9{bottom:473.684000pt;}
.yf{bottom:478.288000pt;}
.yc2{bottom:478.488000pt;}
.y89{bottom:479.490667pt;}
.y6a{bottom:483.897333pt;}
.y11a{bottom:486.649333pt;}
.y139{bottom:491.221333pt;}
.ya3{bottom:501.205333pt;}
.ye{bottom:501.773333pt;}
.yc1{bottom:501.973333pt;}
.y88{bottom:504.530667pt;}
.y2f{bottom:504.682667pt;}
.yf8{bottom:505.804000pt;}
.y69{bottom:508.937333pt;}
.y119{bottom:510.134667pt;}
.y48{bottom:521.864000pt;}
.y138{bottom:522.021333pt;}
.yc0{bottom:525.458667pt;}
.yf7{bottom:529.289333pt;}
.yd{bottom:533.248000pt;}
.y68{bottom:533.977333pt;}
.y87{bottom:538.868000pt;}
.y2e{bottom:540.014667pt;}
.y118{bottom:542.254667pt;}
.y47{bottom:546.904000pt;}
.ybf{bottom:548.944000pt;}
.y137{bottom:552.820000pt;}
.ya2{bottom:556.304000pt;}
.y67{bottom:559.016000pt;}
.yf6{bottom:561.409333pt;}
.y86{bottom:563.908000pt;}
.y117{bottom:565.740000pt;}
.ybe{bottom:572.429333pt;}
.yc{bottom:573.086667pt;}
.y2d{bottom:581.169333pt;}
.ya1{bottom:581.344000pt;}
.y66{bottom:581.664000pt;}
.y136{bottom:583.618667pt;}
.y65{bottom:584.056000pt;}
.yf5{bottom:584.894667pt;}
.y85{bottom:588.948000pt;}
.y46{bottom:592.665333pt;}
.ybd{bottom:595.914667pt;}
.yb{bottom:596.572000pt;}
.y116{bottom:597.860000pt;}
.y2c{bottom:602.888000pt;}
.ya0{bottom:606.382667pt;}
.y135{bottom:607.104000pt;}
.y60{bottom:615.326667pt;}
.yf4{bottom:617.014667pt;}
.y64{bottom:618.290667pt;}
.ybc{bottom:619.400000pt;}
.ya{bottom:620.057333pt;}
.y84{bottom:623.285333pt;}
.y5f{bottom:626.260000pt;}
.y115{bottom:629.980000pt;}
.y9f{bottom:631.422667pt;}
.y63{bottom:634.230667pt;}
.y2b{bottom:637.865333pt;}
.y134{bottom:637.902667pt;}
.y45{bottom:638.426667pt;}
.yf3{bottom:640.500000pt;}
.y62{bottom:642.200000pt;}
.ybb{bottom:642.885333pt;}
.y9{bottom:643.542667pt;}
.y83{bottom:648.325333pt;}
.y61{bottom:650.170667pt;}
.y5e{bottom:651.300000pt;}
.y114{bottom:653.464000pt;}
.y133{bottom:661.388000pt;}
.y44{bottom:663.466667pt;}
.yba{bottom:666.370667pt;}
.y9e{bottom:672.242667pt;}
.yf2{bottom:672.618667pt;}
.y2a{bottom:673.197333pt;}
.y82{bottom:673.364000pt;}
.y5d{bottom:676.338667pt;}
.y113{bottom:685.584000pt;}
.y43{bottom:688.506667pt;}
.yb9{bottom:689.856000pt;}
.y132{bottom:692.186667pt;}
.yf1{bottom:696.104000pt;}
.y5c{bottom:701.378667pt;}
.y8{bottom:706.792000pt;}
.y81{bottom:707.702667pt;}
.y112{bottom:709.069333pt;}
.yb8{bottom:713.341333pt;}
.y42{bottom:713.545333pt;}
.y131{bottom:715.672000pt;}
.y29{bottom:717.160000pt;}
.y5b{bottom:724.026667pt;}
.y5a{bottom:726.418667pt;}
.y9d{bottom:727.341333pt;}
.yf0{bottom:728.224000pt;}
.y80{bottom:732.741333pt;}
.yb7{bottom:736.826667pt;}
.y41{bottom:738.585333pt;}
.y111{bottom:741.189333pt;}
.y130{bottom:746.472000pt;}
.y59{bottom:751.457333pt;}
.yef{bottom:751.709333pt;}
.y9b{bottom:752.381333pt;}
.y7f{bottom:757.781333pt;}
.y9c{bottom:758.165333pt;}
.yb6{bottom:760.312000pt;}
.y7{bottom:763.793333pt;}
.y110{bottom:764.674667pt;}
.y12f{bottom:769.957333pt;}
.y28{bottom:772.258667pt;}
.y9a{bottom:777.421333pt;}
.yb5{bottom:783.797333pt;}
.yee{bottom:783.829333pt;}
.y6{bottom:787.278667pt;}
.y40{bottom:788.664000pt;}
.y7e{bottom:789.462667pt;}
.y58{bottom:792.278667pt;}
.y12e{bottom:793.442667pt;}
.y10f{bottom:796.794667pt;}
.y27{bottom:797.298667pt;}
.y99{bottom:802.460000pt;}
.yb4{bottom:807.282667pt;}
.yed{bottom:807.314667pt;}
.y3f{bottom:813.704000pt;}
.y7d{bottom:814.501333pt;}
.y5{bottom:817.705333pt;}
.y10e{bottom:820.280000pt;}
.y26{bottom:822.337333pt;}
.y12d{bottom:824.241333pt;}
.y98{bottom:827.249333pt;}
.yb3{bottom:830.766667pt;}
.y3e{bottom:838.742667pt;}
.yec{bottom:839.433333pt;}
.y7c{bottom:839.541333pt;}
.y10d{bottom:843.765333pt;}
.y25{bottom:847.377333pt;}
.y12c{bottom:847.726667pt;}
.y4{bottom:849.853333pt;}
.y97{bottom:852.288000pt;}
.yb2{bottom:854.252000pt;}
.yeb{bottom:862.918667pt;}
.y3d{bottom:863.782667pt;}
.y7b{bottom:864.581333pt;}
.y57{bottom:872.417333pt;}
.y10c{bottom:875.884000pt;}
.y96{bottom:877.328000pt;}
.yb1{bottom:877.737333pt;}
.y12b{bottom:878.525333pt;}
.y24{bottom:882.205333pt;}
.y93{bottom:883.200000pt;}
.yea{bottom:886.404000pt;}
.y23{bottom:893.138667pt;}
.y10b{bottom:897.118667pt;}
.y10a{bottom:899.369333pt;}
.yb0{bottom:901.222667pt;}
.y12a{bottom:902.010667pt;}
.y95{bottom:902.366667pt;}
.y3{bottom:904.349333pt;}
.y7a{bottom:905.401333pt;}
.y3c{bottom:913.861333pt;}
.y56{bottom:918.178667pt;}
.ye9{bottom:918.524000pt;}
.yaf{bottom:924.708000pt;}
.y109{bottom:931.489333pt;}
.y129{bottom:932.809333pt;}
.y94{bottom:935.390667pt;}
.y2{bottom:935.432000pt;}
.y3b{bottom:936.509333pt;}
.y22{bottom:938.901333pt;}
.ye8{bottom:942.009333pt;}
.y108{bottom:954.974667pt;}
.yae{bottom:956.178667pt;}
.y128{bottom:956.294667pt;}
.y79{bottom:960.500000pt;}
.y21{bottom:963.940000pt;}
.ye7{bottom:965.494667pt;}
.y1{bottom:966.516000pt;}
.y78{bottom:985.540000pt;}
.y107{bottom:987.094667pt;}
.y20{bottom:1004.761333pt;}
.y77{bottom:1010.580000pt;}
.h12{height:2.125355pt;}
.h13{height:24.684800pt;}
.h7{height:29.925069pt;}
.h5{height:39.850400pt;}
.h14{height:40.378215pt;}
.h6{height:43.636400pt;}
.h8{height:47.820800pt;}
.h15{height:52.639067pt;}
.h10{height:55.016400pt;}
.h3{height:57.384800pt;}
.hd{height:63.762688pt;}
.h11{height:63.938133pt;}
.h4{height:67.615733pt;}
.he{height:73.971067pt;}
.hf{height:79.528021pt;}
.h2{height:82.650000pt;}
.h9{height:90.956800pt;}
.hb{height:91.554133pt;}
.hc{height:91.559467pt;}
.ha{height:134.690133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x63{left:94.173333pt;}
.x1a{left:95.068000pt;}
.x11{left:96.000000pt;}
.xa{left:97.145333pt;}
.x9{left:104.394667pt;}
.x2{left:105.925333pt;}
.x6f{left:108.630667pt;}
.xb{left:113.933333pt;}
.x52{left:115.076000pt;}
.x2a{left:119.412000pt;}
.x27{left:124.870667pt;}
.x4{left:130.721333pt;}
.x57{left:133.106667pt;}
.xe{left:135.020000pt;}
.x2b{left:141.214667pt;}
.x25{left:142.308000pt;}
.xf{left:143.918667pt;}
.x6{left:145.538667pt;}
.x10{left:151.178667pt;}
.x1{left:152.930667pt;}
.x2c{left:156.169333pt;}
.x5{left:169.493333pt;}
.x26{left:186.392000pt;}
.x17{left:195.646667pt;}
.x2f{left:211.482667pt;}
.x39{left:213.986667pt;}
.x67{left:229.105333pt;}
.x4e{left:230.377333pt;}
.x30{left:237.950667pt;}
.x31{left:245.598667pt;}
.x59{left:246.517333pt;}
.x3{left:248.392000pt;}
.x32{left:249.934667pt;}
.x4f{left:254.416000pt;}
.x53{left:256.878667pt;}
.x18{left:258.276000pt;}
.x50{left:267.453333pt;}
.x54{left:278.502667pt;}
.x60{left:281.262667pt;}
.x61{left:289.233333pt;}
.xc{left:292.901333pt;}
.x64{left:294.429333pt;}
.x44{left:297.489333pt;}
.x23{left:301.881333pt;}
.x49{left:303.924000pt;}
.x4a{left:316.388000pt;}
.x56{left:317.930667pt;}
.x62{left:322.174667pt;}
.x38{left:324.528000pt;}
.x12{left:326.177333pt;}
.x8{left:327.108000pt;}
.x20{left:329.041333pt;}
.x3e{left:330.714667pt;}
.x7{left:335.660000pt;}
.x3f{left:339.742667pt;}
.x13{left:341.154667pt;}
.x1f{left:342.326667pt;}
.x21{left:352.412000pt;}
.x45{left:362.702667pt;}
.x4b{left:364.154667pt;}
.xd{left:365.076000pt;}
.x3b{left:374.088000pt;}
.x7c{left:389.046667pt;}
.x33{left:390.506667pt;}
.x16{left:392.948000pt;}
.x24{left:398.169333pt;}
.x4c{left:399.304000pt;}
.x4d{left:403.640000pt;}
.x22{left:404.642667pt;}
.x34{left:405.738667pt;}
.x1b{left:415.677333pt;}
.x68{left:420.973333pt;}
.x40{left:422.952000pt;}
.x41{left:427.286667pt;}
.x46{left:433.973333pt;}
.x28{left:440.322667pt;}
.x1c{left:447.492000pt;}
.x58{left:450.864000pt;}
.x29{left:452.898667pt;}
.x1d{left:455.140000pt;}
.x1e{left:459.476000pt;}
.x35{left:470.902667pt;}
.x47{left:472.736000pt;}
.x6d{left:474.614667pt;}
.x77{left:475.624000pt;}
.x6b{left:476.596000pt;}
.x6a{left:478.834667pt;}
.x71{left:480.710667pt;}
.x73{left:482.404000pt;}
.x6e{left:486.185333pt;}
.x7b{left:487.134667pt;}
.x3c{left:488.481333pt;}
.x79{left:490.056000pt;}
.x48{left:491.876000pt;}
.x6c{left:494.101333pt;}
.x70{left:495.301333pt;}
.x72{left:496.369333pt;}
.x7a{left:498.445333pt;}
.x7d{left:501.885333pt;}
.x7e{left:505.161333pt;}
.x78{left:506.438667pt;}
.x3d{left:511.681333pt;}
.x5a{left:514.778667pt;}
.x51{left:517.761333pt;}
.x65{left:525.965333pt;}
.x5b{left:536.426667pt;}
.x19{left:543.706667pt;}
.x66{left:555.974667pt;}
.x74{left:560.406667pt;}
.x36{left:570.270667pt;}
.x42{left:580.088000pt;}
.x37{left:585.242667pt;}
.x43{left:591.572000pt;}
.x5c{left:594.834667pt;}
.x14{left:600.106667pt;}
.x2d{left:601.648000pt;}
.x3a{left:603.212000pt;}
.x69{left:610.772000pt;}
.x5d{left:614.076000pt;}
.x15{left:615.082667pt;}
.x2e{left:616.602667pt;}
.x5e{left:620.121333pt;}
.x5f{left:628.082667pt;}
.x55{left:666.569333pt;}
.x75{left:690.676000pt;}
.x76{left:726.312000pt;}
}




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