
    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_9ec12f8432384f0199aec42c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_c9ad579b62a4d331bf21cae6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_1a2ed0f1340703c35da73244.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_605fbda96475bbbfeb9aec0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bc95265581f236fab234946b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_435236f67421ade092391bb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_2ae4265c2896829a73a8cba5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1b{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);}
.m7{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);}
.m4{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);}
.m11{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);}
.m22{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);}
.m13{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);}
.m18{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);}
.m24{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m3{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);}
.m1d{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);}
.ma{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);}
.m1c{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);}
.m25{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);}
.m14{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);}
.m17{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);}
.m23{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);}
.m26{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);}
.m9{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);}
.mf{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);}
.m1a{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);}
.m5{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);}
.m1e{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);}
.m21{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);}
.me{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);}
.m10{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);}
.m19{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);}
.m6{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);}
.m16{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);}
.md{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);}
.m1f{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000182px;}
.ls1c{letter-spacing:0.000676px;}
.ls16{letter-spacing:0.000800px;}
.lsb{letter-spacing:0.000846px;}
.ls22{letter-spacing:0.001957px;}
.ls9{letter-spacing:0.002083px;}
.ls28{letter-spacing:0.002338px;}
.ls29{letter-spacing:0.002818px;}
.lse{letter-spacing:0.002958px;}
.lsd{letter-spacing:0.003226px;}
.ls6{letter-spacing:0.003488px;}
.ls4{letter-spacing:0.003494px;}
.lsa{letter-spacing:0.003859px;}
.ls2b{letter-spacing:0.004047px;}
.ls1a{letter-spacing:0.004800px;}
.ls8{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.998354px;}
.ls5{letter-spacing:11.954850px;}
.ls27{letter-spacing:12.558563px;}
.ls23{letter-spacing:12.576931px;}
.ls25{letter-spacing:12.754482px;}
.ls18{letter-spacing:13.042237px;}
.ls2a{letter-spacing:13.297173px;}
.ls24{letter-spacing:13.342237px;}
.lsf{letter-spacing:13.448400px;}
.ls26{letter-spacing:13.450800px;}
.ls10{letter-spacing:13.454400px;}
.ls1f{letter-spacing:13.457493px;}
.ls2e{letter-spacing:13.517301px;}
.ls19{letter-spacing:13.520219px;}
.ls1d{letter-spacing:13.525910px;}
.ls20{letter-spacing:13.595901px;}
.ls1e{letter-spacing:13.641678px;}
.ls11{letter-spacing:13.699639px;}
.ls2d{letter-spacing:14.020988px;}
.ls15{letter-spacing:14.556282px;}
.ls14{letter-spacing:14.585694px;}
.ls17{letter-spacing:16.073929px;}
.ls12{letter-spacing:16.509224px;}
.ls21{letter-spacing:16.744518px;}
.ls1b{letter-spacing:17.532753px;}
.ls2c{letter-spacing:18.673929px;}
.ls13{letter-spacing:18.815106px;}
.ls1{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.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;}
}
.ws0{word-spacing:-102.076556px;}
.ws16{word-spacing:-17.394700px;}
.ws5a{word-spacing:-15.655334px;}
.ws21{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.ws1e{word-spacing:-13.915795px;}
.ws58{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws34{word-spacing:-5.260253px;}
.ws39{word-spacing:-4.542946px;}
.ws8d{word-spacing:-4.465267px;}
.ws31{word-spacing:-4.184292px;}
.ws68{word-spacing:-4.088678px;}
.ws9e{word-spacing:-3.174106px;}
.ws7a{word-spacing:-3.120307px;}
.ws80{word-spacing:-2.743718px;}
.ws13{word-spacing:-2.689902px;}
.ws93{word-spacing:-2.420928px;}
.ws15{word-spacing:-2.271473px;}
.ws95{word-spacing:-2.259533px;}
.ws85{word-spacing:-2.044339px;}
.ws84{word-spacing:-1.936742px;}
.ws7{word-spacing:-1.908367px;}
.ws1a{word-spacing:-1.853044px;}
.ws4b{word-spacing:-1.733492px;}
.ws45{word-spacing:-1.434614px;}
.ws6{word-spacing:-1.322630px;}
.ws4f{word-spacing:-1.255288px;}
.wsab{word-spacing:-1.237363px;}
.ws96{word-spacing:-1.183565px;}
.ws92{word-spacing:-1.022170px;}
.ws50{word-spacing:-1.016185px;}
.ws9b{word-spacing:-0.968371px;}
.ws9a{word-spacing:-0.914573px;}
.ws97{word-spacing:-0.860774px;}
.wsa9{word-spacing:-0.753178px;}
.ws91{word-spacing:-0.699379px;}
.ws1b{word-spacing:-0.657532px;}
.ws27{word-spacing:-0.597756px;}
.ws7b{word-spacing:-0.591782px;}
.wsa3{word-spacing:-0.484186px;}
.wsa2{word-spacing:-0.430387px;}
.ws48{word-spacing:-0.418429px;}
.wsa0{word-spacing:-0.376589px;}
.wse{word-spacing:-0.358654px;}
.wsa1{word-spacing:-0.322790px;}
.ws2d{word-spacing:-0.298878px;}
.ws86{word-spacing:-0.268992px;}
.ws23{word-spacing:-0.239102px;}
.ws82{word-spacing:-0.215194px;}
.wsf{word-spacing:-0.179327px;}
.ws78{word-spacing:-0.161395px;}
.ws17{word-spacing:-0.119551px;}
.ws61{word-spacing:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.ws62{word-spacing:-0.053798px;}
.ws9d{word-spacing:-0.013267px;}
.ws7f{word-spacing:-0.009149px;}
.ws90{word-spacing:-0.007373px;}
.ws81{word-spacing:-0.006998px;}
.wsad{word-spacing:-0.005712px;}
.wsac{word-spacing:-0.003466px;}
.ws70{word-spacing:-0.002822px;}
.ws5f{word-spacing:-0.000998px;}
.ws1c{word-spacing:-0.000148px;}
.ws1{word-spacing:0.000000px;}
.ws87{word-spacing:0.003178px;}
.ws57{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.ws59{word-spacing:0.107597px;}
.ws28{word-spacing:0.119551px;}
.ws5c{word-spacing:0.161395px;}
.ws30{word-spacing:0.179327px;}
.ws67{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.wsc{word-spacing:0.298878px;}
.ws10{word-spacing:0.358654px;}
.wsa7{word-spacing:0.376589px;}
.ws32{word-spacing:0.418429px;}
.ws4{word-spacing:0.556186px;}
.wsa8{word-spacing:0.591782px;}
.ws3f{word-spacing:0.597756px;}
.ws7e{word-spacing:0.645581px;}
.ws26{word-spacing:0.657532px;}
.ws63{word-spacing:0.699379px;}
.ws51{word-spacing:0.717307px;}
.ws65{word-spacing:0.753178px;}
.ws77{word-spacing:0.806976px;}
.ws73{word-spacing:0.860774px;}
.ws18{word-spacing:1.016185px;}
.ws74{word-spacing:1.129766px;}
.ws37{word-spacing:1.195512px;}
.ws38{word-spacing:1.255288px;}
.ws19{word-spacing:1.554166px;}
.ws7d{word-spacing:1.560154px;}
.ws46{word-spacing:1.613941px;}
.ws3b{word-spacing:1.853044px;}
.ws8f{word-spacing:1.882944px;}
.wsb{word-spacing:1.912819px;}
.wsa4{word-spacing:1.990541px;}
.ws4c{word-spacing:2.032370px;}
.ws79{word-spacing:2.044339px;}
.ws14{word-spacing:2.271473px;}
.ws66{word-spacing:2.313331px;}
.ws6c{word-spacing:2.420928px;}
.ws72{word-spacing:2.528525px;}
.ws8a{word-spacing:2.582323px;}
.ws35{word-spacing:2.630126px;}
.ws8e{word-spacing:2.797517px;}
.ws76{word-spacing:2.905114px;}
.ws3a{word-spacing:2.929004px;}
.ws6d{word-spacing:3.066509px;}
.ws29{word-spacing:3.108331px;}
.ws36{word-spacing:3.168107px;}
.ws55{word-spacing:3.227904px;}
.ws94{word-spacing:3.281702px;}
.ws54{word-spacing:3.550694px;}
.ws6f{word-spacing:3.658291px;}
.ws4a{word-spacing:3.765863px;}
.ws20{word-spacing:3.825638px;}
.ws9{word-spacing:3.945190px;}
.ws53{word-spacing:4.064741px;}
.wsa5{word-spacing:4.142477px;}
.ws6e{word-spacing:4.250074px;}
.ws43{word-spacing:4.423394px;}
.ws42{word-spacing:4.542946px;}
.ws2e{word-spacing:4.722272px;}
.ws99{word-spacing:5.003251px;}
.wsa6{word-spacing:5.218445px;}
.ws69{word-spacing:5.272243px;}
.ws52{word-spacing:5.320028px;}
.ws83{word-spacing:5.371210px;}
.ws8c{word-spacing:5.373168px;}
.ws5e{word-spacing:5.377066px;}
.ws6a{word-spacing:5.377478px;}
.ws56{word-spacing:5.378822px;}
.ws6b{word-spacing:5.379533px;}
.ws5{word-spacing:5.379840px;}
.ws9f{word-spacing:5.380454px;}
.ws8b{word-spacing:5.380838px;}
.ws7c{word-spacing:5.487437px;}
.ws5b{word-spacing:5.541235px;}
.ws89{word-spacing:5.595034px;}
.ws5d{word-spacing:5.648832px;}
.ws60{word-spacing:5.702630px;}
.ws3c{word-spacing:5.738458px;}
.ws3d{word-spacing:5.798233px;}
.ws11{word-spacing:5.971475px;}
.ws12{word-spacing:5.977560px;}
.ws47{word-spacing:6.037336px;}
.ws2f{word-spacing:6.097111px;}
.ws44{word-spacing:6.575316px;}
.wsaa{word-spacing:7.047590px;}
.ws9c{word-spacing:7.693171px;}
.ws64{word-spacing:7.854566px;}
.ws8{word-spacing:7.950155px;}
.ws4e{word-spacing:8.607686px;}
.ws98{word-spacing:9.038131px;}
.ws3e{word-spacing:10.400954px;}
.ws40{word-spacing:10.640057px;}
.ws75{word-spacing:11.028672px;}
.ws49{word-spacing:11.237813px;}
.ws71{word-spacing:11.405261px;}
.ws25{word-spacing:13.150632px;}
.ws88{word-spacing:13.664794px;}
.ws4d{word-spacing:16.378514px;}
.ws24{word-spacing:16.557841px;}
.ws33{word-spacing:16.617617px;}
.ws41{word-spacing:38.435711px;}
.ws2a{word-spacing:283.701293px;}
.ws2c{word-spacing:411.450163px;}
.ws2b{word-spacing:417.098995px;}
.ws1f{word-spacing:807.976858px;}
._2f{margin-left:-24.047885px;}
._2a{margin-left:-7.908365px;}
._2{margin-left:-6.635092px;}
._5{margin-left:-4.949453px;}
._2c{margin-left:-3.927283px;}
._0{margin-left:-2.632972px;}
._1{margin-left:-1.082723px;}
._7{width:1.091170px;}
._3{width:3.000913px;}
._2e{width:6.022274px;}
._22{width:10.720118px;}
._2b{width:12.481229px;}
._21{width:14.346144px;}
._10{width:15.727745px;}
._2d{width:17.107891px;}
._4{width:18.177559px;}
._6{width:19.481321px;}
._9{width:21.286875px;}
._f{width:23.142764px;}
._23{width:25.045976px;}
._26{width:26.547128px;}
._a{width:28.154308px;}
._27{width:29.177255px;}
._e{width:31.575040px;}
._8{width:33.182220px;}
._30{width:34.532272px;}
._d{width:35.686033px;}
._29{width:37.306736px;}
._24{width:38.615038px;}
._20{width:39.690998px;}
._25{width:41.125613px;}
._28{width:46.877594px;}
._c{width:70.953637px;}
._15{width:288.574618px;}
._1c{width:308.318630px;}
._11{width:328.277837px;}
._16{width:338.660928px;}
._1a{width:379.541424px;}
._17{width:414.355277px;}
._19{width:433.830298px;}
._1d{width:435.498048px;}
._13{width:505.489766px;}
._1e{width:519.474200px;}
._12{width:533.895322px;}
._18{width:623.200666px;}
._1b{width:636.650266px;}
._14{width:694.480396px;}
._1f{width:700.724160px;}
._b{width:2082.969000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(45,95,181);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:131.203800px;}
.y0{bottom:0.000000px;}
.y13{bottom:3.425340px;}
.y2{bottom:14.145555px;}
.y12{bottom:14.151273px;}
.y30{bottom:63.780000px;}
.yce{bottom:113.844000px;}
.y75{bottom:116.607000px;}
.y2f{bottom:120.402000px;}
.y5f{bottom:121.891500px;}
.y9c{bottom:125.812500px;}
.y101{bottom:128.325000px;}
.ycd{bottom:133.212000px;}
.y74{bottom:136.870500px;}
.y2e{bottom:140.667000px;}
.y9b{bottom:141.010500px;}
.y5e{bottom:142.155000px;}
.y100{bottom:147.691500px;}
.ycc{bottom:152.578500px;}
.y2d{bottom:160.930500px;}
.y5d{bottom:162.420000px;}
.y73{bottom:166.101000px;}
.yff{bottom:167.059500px;}
.ycb{bottom:171.946500px;}
.y9a{bottom:174.141000px;}
.y2c{bottom:181.194000px;}
.y5c{bottom:182.683500px;}
.yfe{bottom:186.427500px;}
.yca{bottom:191.313000px;}
.y99{bottom:194.404500px;}
.y72{bottom:200.920500px;}
.y2b{bottom:201.459000px;}
.y5b{bottom:202.948500px;}
.yfd{bottom:205.794000px;}
.yc9{bottom:210.681000px;}
.y98{bottom:214.669500px;}
.y71{bottom:221.184000px;}
.y2a{bottom:221.722500px;}
.y5a{bottom:223.212000px;}
.yfc{bottom:225.162000px;}
.yc8{bottom:230.049000px;}
.y97{bottom:234.933000px;}
.y70{bottom:241.449000px;}
.y29{bottom:241.987500px;}
.y59{bottom:243.475500px;}
.yfb{bottom:244.528500px;}
.yc7{bottom:249.415500px;}
.y96{bottom:255.198000px;}
.y6f{bottom:261.712500px;}
.y28{bottom:262.251000px;}
.yfa{bottom:263.896500px;}
.yc6{bottom:268.783500px;}
.y58{bottom:272.706000px;}
.y95{bottom:275.461500px;}
.y6e{bottom:281.977500px;}
.y27{bottom:282.514500px;}
.yf9{bottom:283.264500px;}
.yc5{bottom:288.151500px;}
.y94{bottom:295.725000px;}
.y6d{bottom:302.241000px;}
.yf8{bottom:302.631000px;}
.y26{bottom:302.779500px;}
.yc4{bottom:307.518000px;}
.y93{bottom:315.990000px;}
.y57{bottom:316.582500px;}
.yf7{bottom:321.999000px;}
.y6c{bottom:322.504500px;}
.y25{bottom:323.043000px;}
.yc3{bottom:326.886000px;}
.y92{bottom:336.253500px;}
.y56{bottom:340.581000px;}
.yf6{bottom:341.367000px;}
.y6b{bottom:342.769500px;}
.y24{bottom:343.308000px;}
.yc2{bottom:346.252500px;}
.y91{bottom:356.518500px;}
.yf5{bottom:360.733500px;}
.y6a{bottom:363.033000px;}
.y23{bottom:363.571500px;}
.y55{bottom:364.579500px;}
.yc1{bottom:365.620500px;}
.yf4{bottom:380.101500px;}
.y69{bottom:383.298000px;}
.y22{bottom:383.835000px;}
.yc0{bottom:384.988500px;}
.y90{bottom:385.749000px;}
.y54{bottom:388.219500px;}
.y53{bottom:396.439500px;}
.yf3{bottom:399.468000px;}
.y68{bottom:403.561500px;}
.y21{bottom:404.100000px;}
.ybf{bottom:404.355000px;}
.yf2{bottom:418.836000px;}
.y8f{bottom:420.568500px;}
.ybe{bottom:423.723000px;}
.y67{bottom:423.825000px;}
.y52{bottom:428.656500px;}
.y20{bottom:433.330500px;}
.yf1{bottom:438.204000px;}
.y8e{bottom:440.832000px;}
.ybd{bottom:443.089500px;}
.y66{bottom:444.090000px;}
.y51{bottom:452.653500px;}
.yf0{bottom:457.570500px;}
.y8d{bottom:461.095500px;}
.ybc{bottom:462.457500px;}
.y65{bottom:464.353500px;}
.y50{bottom:476.652000px;}
.yef{bottom:476.938500px;}
.y8c{bottom:481.360500px;}
.ybb{bottom:481.825500px;}
.y64{bottom:484.618500px;}
.yee{bottom:496.305000px;}
.y4f{bottom:500.292000px;}
.yba{bottom:501.192000px;}
.y8b{bottom:501.624000px;}
.y63{bottom:504.882000px;}
.y4e{bottom:508.512000px;}
.y1f{bottom:509.746500px;}
.yed{bottom:515.673000px;}
.yb9{bottom:520.560000px;}
.y8a{bottom:521.889000px;}
.y62{bottom:534.112500px;}
.yec{bottom:535.041000px;}
.yb8{bottom:539.926500px;}
.y4d{bottom:540.729000px;}
.y89{bottom:542.152500px;}
.y1e{bottom:547.942500px;}
.yeb{bottom:554.407500px;}
.yb7{bottom:559.294500px;}
.y88{bottom:562.416000px;}
.y1d{bottom:568.207500px;}
.y61{bottom:568.932000px;}
.y4c{bottom:572.349000px;}
.yea{bottom:573.775500px;}
.yb6{bottom:578.662500px;}
.y1c{bottom:588.471000px;}
.y60{bottom:589.195500px;}
.y87{bottom:591.646500px;}
.ye9{bottom:593.142000px;}
.yb5{bottom:598.029000px;}
.y104{bottom:599.020500px;}
.y1b{bottom:608.734500px;}
.y4b{bottom:609.460500px;}
.ye8{bottom:612.510000px;}
.yb4{bottom:617.397000px;}
.y103{bottom:618.388500px;}
.y86{bottom:626.466000px;}
.y1a{bottom:628.999500px;}
.y4a{bottom:629.724000px;}
.ye7{bottom:631.878000px;}
.yb3{bottom:636.763500px;}
.y102{bottom:637.755000px;}
.y85{bottom:646.731000px;}
.y19{bottom:649.263000px;}
.y49{bottom:649.987500px;}
.ye6{bottom:651.244500px;}
.yb2{bottom:656.131500px;}
.y84{bottom:666.994500px;}
.y18{bottom:669.528000px;}
.y48{bottom:670.252500px;}
.ye5{bottom:670.612500px;}
.yb1{bottom:675.499500px;}
.y83{bottom:687.258000px;}
.y17{bottom:689.791500px;}
.ye4{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.yb0{bottom:694.866000px;}
.y82{bottom:707.523000px;}
.ye3{bottom:709.347000px;}
.y16{bottom:710.055000px;}
.y46{bottom:710.781000px;}
.yaf{bottom:714.234000px;}
.y81{bottom:727.786500px;}
.ye2{bottom:728.715000px;}
.y15{bottom:730.320000px;}
.y45{bottom:731.044500px;}
.yae{bottom:733.600500px;}
.y80{bottom:748.051500px;}
.ye1{bottom:748.081500px;}
.y14{bottom:750.583500px;}
.y44{bottom:751.308000px;}
.yad{bottom:752.968500px;}
.ye0{bottom:767.449500px;}
.y7f{bottom:768.315000px;}
.y43{bottom:771.573000px;}
.yac{bottom:772.336500px;}
.y11{bottom:786.016464px;}
.y10{bottom:786.783000px;}
.ydf{bottom:786.816000px;}
.y7e{bottom:788.578500px;}
.yab{bottom:791.703000px;}
.y42{bottom:791.836500px;}
.yde{bottom:806.184000px;}
.y7d{bottom:808.843500px;}
.yaa{bottom:811.071000px;}
.y41{bottom:812.101500px;}
.ydd{bottom:825.552000px;}
.yf{bottom:825.789000px;}
.y7c{bottom:829.107000px;}
.ya9{bottom:830.437500px;}
.y40{bottom:832.365000px;}
.ydc{bottom:844.918500px;}
.ye{bottom:848.827500px;}
.y7b{bottom:849.372000px;}
.ya8{bottom:849.805500px;}
.y3f{bottom:852.628500px;}
.yd{bottom:862.102500px;}
.ydb{bottom:864.286500px;}
.ya7{bottom:869.173500px;}
.y7a{bottom:869.635500px;}
.y3e{bottom:872.893500px;}
.yda{bottom:883.653000px;}
.yc{bottom:885.141000px;}
.ya6{bottom:888.540000px;}
.y79{bottom:889.899000px;}
.y3d{bottom:893.157000px;}
.yb{bottom:898.416000px;}
.yd9{bottom:903.021000px;}
.ya5{bottom:907.908000px;}
.y78{bottom:910.164000px;}
.y3c{bottom:913.422000px;}
.ya{bottom:921.456000px;}
.yd8{bottom:922.389000px;}
.ya4{bottom:927.274500px;}
.y77{bottom:930.427500px;}
.y3b{bottom:933.685500px;}
.y9{bottom:934.731000px;}
.yd7{bottom:941.755500px;}
.ya3{bottom:946.642500px;}
.y3a{bottom:953.949000px;}
.y8{bottom:957.769500px;}
.y76{bottom:959.658000px;}
.yd6{bottom:961.123500px;}
.ya2{bottom:966.010500px;}
.y39{bottom:974.214000px;}
.y7{bottom:975.927000px;}
.yd5{bottom:980.490000px;}
.ya1{bottom:985.377000px;}
.y38{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.yd4{bottom:999.858000px;}
.ya0{bottom:1004.745000px;}
.y37{bottom:1014.742500px;}
.yd3{bottom:1019.226000px;}
.y9f{bottom:1024.111500px;}
.y36{bottom:1035.006000px;}
.yd2{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y9e{bottom:1052.446500px;}
.y35{bottom:1055.269500px;}
.yd1{bottom:1057.960500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.yd0{bottom:1077.327000px;}
.y9d{bottom:1091.898000px;}
.y33{bottom:1095.798000px;}
.ycf{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h7{height:30.461558px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.he{height:35.100320px;}
.h13{height:37.927872px;}
.h12{height:38.412058px;}
.hf{height:38.734848px;}
.h8{height:39.165235px;}
.h11{height:39.488026px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h4{height:43.875290px;}
.h2{height:51.023700px;}
.h6{height:54.411312px;}
.h10{height:72.039235px;}
.h5{height:77.469696px;}
.h3{height:88.956176px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:212.598629px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:56.693162px;}
.x17{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x4{left:146.170500px;}
.x19{left:150.856500px;}
.x1e{left:154.098000px;}
.x1c{left:157.897500px;}
.x1f{left:158.967000px;}
.x1d{left:166.734000px;}
.x21{left:170.776500px;}
.xd{left:171.808500px;}
.x22{left:180.210000px;}
.x25{left:184.938000px;}
.xe{left:186.751500px;}
.x1a{left:190.929000px;}
.x8{left:193.144500px;}
.xf{left:205.056000px;}
.x4b{left:216.432000px;}
.x10{left:220.000500px;}
.x4c{left:231.376500px;}
.x6f{left:237.532500px;}
.x70{left:244.876500px;}
.x7b{left:251.667000px;}
.x7d{left:254.101500px;}
.x33{left:258.732000px;}
.x7c{left:267.238500px;}
.x18{left:269.940000px;}
.x34{left:273.676500px;}
.x23{left:280.813500px;}
.x24{left:295.756500px;}
.x39{left:300.781500px;}
.x3a{left:315.726000px;}
.x3b{left:323.583000px;}
.x3c{left:338.526000px;}
.x3d{left:342.303000px;}
.x3e{left:357.247500px;}
.x55{left:367.048500px;}
.x56{left:381.993000px;}
.x13{left:386.575500px;}
.x57{left:389.314500px;}
.x2a{left:391.660500px;}
.x60{left:398.257500px;}
.x14{left:401.520000px;}
.x77{left:402.693000px;}
.x58{left:404.259000px;}
.x61{left:405.601500px;}
.x2b{left:406.605000px;}
.x15{left:408.841500px;}
.x5a{left:414.747000px;}
.x5b{left:422.089500px;}
.x16{left:423.786000px;}
.x11{left:430.107000px;}
.x4f{left:432.757500px;}
.x3f{left:441.598500px;}
.x12{left:445.050000px;}
.x50{left:447.700500px;}
.x2c{left:449.847000px;}
.x40{left:456.543000px;}
.x2e{left:459.103500px;}
.x2f{left:462.915000px;}
.x2d{left:464.790000px;}
.x75{left:468.939000px;}
.x76{left:475.380000px;}
.x30{left:477.858000px;}
.x28{left:480.465000px;}
.x9{left:484.357500px;}
.x31{left:485.479500px;}
.xa{left:491.829000px;}
.x20{left:495.999000px;}
.x1b{left:497.196000px;}
.xb{left:499.264500px;}
.x32{left:500.424000px;}
.x53{left:505.012500px;}
.xc{left:506.736000px;}
.x29{left:514.041000px;}
.x54{left:519.957000px;}
.x69{left:546.013500px;}
.x6d{left:548.472000px;}
.x26{left:550.899000px;}
.x51{left:557.421000px;}
.x27{left:565.842000px;}
.x52{left:572.365500px;}
.x6e{left:575.371500px;}
.x71{left:579.394500px;}
.x41{left:595.339500px;}
.x6a{left:606.795000px;}
.x42{left:610.284000px;}
.x43{left:618.084000px;}
.x72{left:630.256500px;}
.x44{left:633.028500px;}
.x45{left:636.838500px;}
.x37{left:648.174000px;}
.x46{left:651.783000px;}
.x78{left:660.673500px;}
.x38{left:663.118500px;}
.x67{left:664.558500px;}
.x62{left:674.103000px;}
.x79{left:676.426500px;}
.x74{left:678.214500px;}
.x5d{left:679.444500px;}
.x6b{left:686.721000px;}
.x4d{left:689.682000px;}
.x68{left:691.458000px;}
.x6{left:701.339982px;}
.x7a{left:703.326000px;}
.x4e{left:704.626500px;}
.x6c{left:713.620500px;}
.x47{left:715.873500px;}
.x64{left:716.926500px;}
.x5e{left:720.657000px;}
.x5c{left:723.022500px;}
.x65{left:727.845000px;}
.x48{left:730.818000px;}
.x49{left:734.572500px;}
.x73{left:735.933000px;}
.x5f{left:747.556500px;}
.x4a{left:749.517000px;}
.x66{left:754.743000px;}
.x35{left:756.895500px;}
.x63{left:762.361500px;}
.x36{left:771.838500px;}
.x59{left:776.446500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000162pt;}
.ls1c{letter-spacing:0.000600pt;}
.ls16{letter-spacing:0.000711pt;}
.lsb{letter-spacing:0.000752pt;}
.ls22{letter-spacing:0.001739pt;}
.ls9{letter-spacing:0.001852pt;}
.ls28{letter-spacing:0.002078pt;}
.ls29{letter-spacing:0.002505pt;}
.lse{letter-spacing:0.002630pt;}
.lsd{letter-spacing:0.002868pt;}
.ls6{letter-spacing:0.003100pt;}
.ls4{letter-spacing:0.003106pt;}
.lsa{letter-spacing:0.003430pt;}
.ls2b{letter-spacing:0.003597pt;}
.ls1a{letter-spacing:0.004267pt;}
.ls8{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.665203pt;}
.ls5{letter-spacing:10.626533pt;}
.ls27{letter-spacing:11.163167pt;}
.ls23{letter-spacing:11.179494pt;}
.ls25{letter-spacing:11.337317pt;}
.ls18{letter-spacing:11.593099pt;}
.ls2a{letter-spacing:11.819709pt;}
.ls24{letter-spacing:11.859766pt;}
.lsf{letter-spacing:11.954133pt;}
.ls26{letter-spacing:11.956267pt;}
.ls10{letter-spacing:11.959467pt;}
.ls1f{letter-spacing:11.962216pt;}
.ls2e{letter-spacing:12.015378pt;}
.ls19{letter-spacing:12.017972pt;}
.ls1d{letter-spacing:12.023031pt;}
.ls20{letter-spacing:12.085245pt;}
.ls1e{letter-spacing:12.125936pt;}
.ls11{letter-spacing:12.177457pt;}
.ls2d{letter-spacing:12.463101pt;}
.ls15{letter-spacing:12.938918pt;}
.ls14{letter-spacing:12.965061pt;}
.ls17{letter-spacing:14.287937pt;}
.ls12{letter-spacing:14.674865pt;}
.ls21{letter-spacing:14.884016pt;}
.ls1b{letter-spacing:15.584669pt;}
.ls2c{letter-spacing:16.599048pt;}
.ls13{letter-spacing:16.724539pt;}
.ls1{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ws0{word-spacing:-90.734717pt;}
.ws16{word-spacing:-15.461955pt;}
.ws5a{word-spacing:-13.915853pt;}
.ws21{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.ws1e{word-spacing:-12.369595pt;}
.ws58{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws34{word-spacing:-4.675780pt;}
.ws39{word-spacing:-4.038174pt;}
.ws8d{word-spacing:-3.969126pt;}
.ws31{word-spacing:-3.719371pt;}
.ws68{word-spacing:-3.634381pt;}
.ws9e{word-spacing:-2.821427pt;}
.ws7a{word-spacing:-2.773606pt;}
.ws80{word-spacing:-2.438861pt;}
.ws13{word-spacing:-2.391024pt;}
.ws93{word-spacing:-2.151936pt;}
.ws15{word-spacing:-2.019087pt;}
.ws95{word-spacing:-2.008474pt;}
.ws85{word-spacing:-1.817190pt;}
.ws84{word-spacing:-1.721549pt;}
.ws7{word-spacing:-1.696326pt;}
.ws1a{word-spacing:-1.647150pt;}
.ws4b{word-spacing:-1.540882pt;}
.ws45{word-spacing:-1.275213pt;}
.ws6{word-spacing:-1.175671pt;}
.ws4f{word-spacing:-1.115811pt;}
.wsab{word-spacing:-1.099878pt;}
.ws96{word-spacing:-1.052058pt;}
.ws92{word-spacing:-0.908595pt;}
.ws50{word-spacing:-0.903276pt;}
.ws9b{word-spacing:-0.860774pt;}
.ws9a{word-spacing:-0.812954pt;}
.ws97{word-spacing:-0.765133pt;}
.wsa9{word-spacing:-0.669491pt;}
.ws91{word-spacing:-0.621670pt;}
.ws1b{word-spacing:-0.584473pt;}
.ws27{word-spacing:-0.531339pt;}
.ws7b{word-spacing:-0.526029pt;}
.wsa3{word-spacing:-0.430387pt;}
.wsa2{word-spacing:-0.382566pt;}
.ws48{word-spacing:-0.371937pt;}
.wsa0{word-spacing:-0.334746pt;}
.wse{word-spacing:-0.318803pt;}
.wsa1{word-spacing:-0.286925pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws86{word-spacing:-0.239104pt;}
.ws23{word-spacing:-0.212535pt;}
.ws82{word-spacing:-0.191283pt;}
.wsf{word-spacing:-0.159402pt;}
.ws78{word-spacing:-0.143462pt;}
.ws17{word-spacing:-0.106268pt;}
.ws61{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.ws62{word-spacing:-0.047821pt;}
.ws9d{word-spacing:-0.011793pt;}
.ws7f{word-spacing:-0.008132pt;}
.ws90{word-spacing:-0.006554pt;}
.ws81{word-spacing:-0.006221pt;}
.wsad{word-spacing:-0.005077pt;}
.wsac{word-spacing:-0.003081pt;}
.ws70{word-spacing:-0.002509pt;}
.ws5f{word-spacing:-0.000887pt;}
.ws1c{word-spacing:-0.000131pt;}
.ws1{word-spacing:0.000000pt;}
.ws87{word-spacing:0.002825pt;}
.ws57{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.ws59{word-spacing:0.095642pt;}
.ws28{word-spacing:0.106268pt;}
.ws5c{word-spacing:0.143462pt;}
.ws30{word-spacing:0.159402pt;}
.ws67{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.wsc{word-spacing:0.265669pt;}
.ws10{word-spacing:0.318803pt;}
.wsa7{word-spacing:0.334746pt;}
.ws32{word-spacing:0.371937pt;}
.ws4{word-spacing:0.494387pt;}
.wsa8{word-spacing:0.526029pt;}
.ws3f{word-spacing:0.531339pt;}
.ws7e{word-spacing:0.573850pt;}
.ws26{word-spacing:0.584473pt;}
.ws63{word-spacing:0.621670pt;}
.ws51{word-spacing:0.637606pt;}
.ws65{word-spacing:0.669491pt;}
.ws77{word-spacing:0.717312pt;}
.ws73{word-spacing:0.765133pt;}
.ws18{word-spacing:0.903276pt;}
.ws74{word-spacing:1.004237pt;}
.ws37{word-spacing:1.062677pt;}
.ws38{word-spacing:1.115811pt;}
.ws19{word-spacing:1.381481pt;}
.ws7d{word-spacing:1.386803pt;}
.ws46{word-spacing:1.434614pt;}
.ws3b{word-spacing:1.647150pt;}
.ws8f{word-spacing:1.673728pt;}
.wsb{word-spacing:1.700284pt;}
.wsa4{word-spacing:1.769370pt;}
.ws4c{word-spacing:1.806551pt;}
.ws79{word-spacing:1.817190pt;}
.ws14{word-spacing:2.019087pt;}
.ws66{word-spacing:2.056294pt;}
.ws6c{word-spacing:2.151936pt;}
.ws72{word-spacing:2.247578pt;}
.ws8a{word-spacing:2.295398pt;}
.ws35{word-spacing:2.337890pt;}
.ws8e{word-spacing:2.486682pt;}
.ws76{word-spacing:2.582323pt;}
.ws3a{word-spacing:2.603559pt;}
.ws6d{word-spacing:2.725786pt;}
.ws29{word-spacing:2.762961pt;}
.ws36{word-spacing:2.816095pt;}
.ws55{word-spacing:2.869248pt;}
.ws94{word-spacing:2.917069pt;}
.ws54{word-spacing:3.156173pt;}
.ws6f{word-spacing:3.251814pt;}
.ws4a{word-spacing:3.347434pt;}
.ws20{word-spacing:3.400567pt;}
.ws9{word-spacing:3.506835pt;}
.ws53{word-spacing:3.613103pt;}
.wsa5{word-spacing:3.682202pt;}
.ws6e{word-spacing:3.777843pt;}
.ws43{word-spacing:3.931906pt;}
.ws42{word-spacing:4.038174pt;}
.ws2e{word-spacing:4.197575pt;}
.ws99{word-spacing:4.447334pt;}
.wsa6{word-spacing:4.638618pt;}
.ws69{word-spacing:4.686438pt;}
.ws52{word-spacing:4.728914pt;}
.ws83{word-spacing:4.774409pt;}
.ws8c{word-spacing:4.776149pt;}
.ws5e{word-spacing:4.779614pt;}
.ws6a{word-spacing:4.779981pt;}
.ws56{word-spacing:4.781175pt;}
.ws6b{word-spacing:4.781807pt;}
.ws5{word-spacing:4.782080pt;}
.ws9f{word-spacing:4.782626pt;}
.ws8b{word-spacing:4.782967pt;}
.ws7c{word-spacing:4.877722pt;}
.ws5b{word-spacing:4.925542pt;}
.ws89{word-spacing:4.973363pt;}
.ws5d{word-spacing:5.021184pt;}
.ws60{word-spacing:5.069005pt;}
.ws3c{word-spacing:5.100851pt;}
.ws3d{word-spacing:5.153985pt;}
.ws11{word-spacing:5.307978pt;}
.ws12{word-spacing:5.313387pt;}
.ws47{word-spacing:5.366521pt;}
.ws2f{word-spacing:5.419654pt;}
.ws44{word-spacing:5.844725pt;}
.wsaa{word-spacing:6.264525pt;}
.ws9c{word-spacing:6.838374pt;}
.ws64{word-spacing:6.981837pt;}
.ws8{word-spacing:7.066804pt;}
.ws4e{word-spacing:7.651277pt;}
.ws98{word-spacing:8.033894pt;}
.ws3e{word-spacing:9.245293pt;}
.ws40{word-spacing:9.457828pt;}
.ws75{word-spacing:9.803264pt;}
.ws49{word-spacing:9.989167pt;}
.ws71{word-spacing:10.138010pt;}
.ws25{word-spacing:11.689451pt;}
.ws88{word-spacing:12.146483pt;}
.ws4d{word-spacing:14.558679pt;}
.ws24{word-spacing:14.718081pt;}
.ws33{word-spacing:14.771215pt;}
.ws41{word-spacing:34.165076pt;}
.ws2a{word-spacing:252.178927pt;}
.ws2c{word-spacing:365.733478pt;}
.ws2b{word-spacing:370.754662pt;}
.ws1f{word-spacing:718.201651pt;}
._2f{margin-left:-21.375898pt;}
._2a{margin-left:-7.029658pt;}
._2{margin-left:-5.897859pt;}
._5{margin-left:-4.399514pt;}
._2c{margin-left:-3.490918pt;}
._0{margin-left:-2.340419pt;}
._1{margin-left:-0.962420pt;}
._7{width:0.969929pt;}
._3{width:2.667478pt;}
._2e{width:5.353133pt;}
._22{width:9.528994pt;}
._2b{width:11.094426pt;}
._21{width:12.752128pt;}
._10{width:13.980217pt;}
._2d{width:15.207014pt;}
._4{width:16.157830pt;}
._6{width:17.316730pt;}
._9{width:18.921667pt;}
._f{width:20.571346pt;}
._23{width:22.263090pt;}
._26{width:23.597447pt;}
._a{width:25.026051pt;}
._27{width:25.935337pt;}
._e{width:28.066703pt;}
._8{width:29.495307pt;}
._30{width:30.695353pt;}
._d{width:31.720918pt;}
._29{width:33.161543pt;}
._24{width:34.324478pt;}
._20{width:35.280887pt;}
._25{width:36.556100pt;}
._28{width:41.668972pt;}
._c{width:63.069900pt;}
._15{width:256.510771pt;}
._1c{width:274.061005pt;}
._11{width:291.802522pt;}
._16{width:301.031936pt;}
._1a{width:337.370155pt;}
._17{width:368.315802pt;}
._19{width:385.626931pt;}
._1d{width:387.109376pt;}
._13{width:449.324237pt;}
._1e{width:461.754845pt;}
._12{width:474.573619pt;}
._18{width:553.956147pt;}
._1b{width:565.911347pt;}
._14{width:617.315907pt;}
._1f{width:622.865920pt;}
._b{width:1851.528000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:116.625600pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.044747pt;}
.y2{bottom:12.573827pt;}
.y12{bottom:12.578910pt;}
.y30{bottom:56.693333pt;}
.yce{bottom:101.194667pt;}
.y75{bottom:103.650667pt;}
.y2f{bottom:107.024000pt;}
.y5f{bottom:108.348000pt;}
.y9c{bottom:111.833333pt;}
.y101{bottom:114.066667pt;}
.ycd{bottom:118.410667pt;}
.y74{bottom:121.662667pt;}
.y2e{bottom:125.037333pt;}
.y9b{bottom:125.342667pt;}
.y5e{bottom:126.360000pt;}
.y100{bottom:131.281333pt;}
.ycc{bottom:135.625333pt;}
.y2d{bottom:143.049333pt;}
.y5d{bottom:144.373333pt;}
.y73{bottom:147.645333pt;}
.yff{bottom:148.497333pt;}
.ycb{bottom:152.841333pt;}
.y9a{bottom:154.792000pt;}
.y2c{bottom:161.061333pt;}
.y5c{bottom:162.385333pt;}
.yfe{bottom:165.713333pt;}
.yca{bottom:170.056000pt;}
.y99{bottom:172.804000pt;}
.y72{bottom:178.596000pt;}
.y2b{bottom:179.074667pt;}
.y5b{bottom:180.398667pt;}
.yfd{bottom:182.928000pt;}
.yc9{bottom:187.272000pt;}
.y98{bottom:190.817333pt;}
.y71{bottom:196.608000pt;}
.y2a{bottom:197.086667pt;}
.y5a{bottom:198.410667pt;}
.yfc{bottom:200.144000pt;}
.yc8{bottom:204.488000pt;}
.y97{bottom:208.829333pt;}
.y70{bottom:214.621333pt;}
.y29{bottom:215.100000pt;}
.y59{bottom:216.422667pt;}
.yfb{bottom:217.358667pt;}
.yc7{bottom:221.702667pt;}
.y96{bottom:226.842667pt;}
.y6f{bottom:232.633333pt;}
.y28{bottom:233.112000pt;}
.yfa{bottom:234.574667pt;}
.yc6{bottom:238.918667pt;}
.y58{bottom:242.405333pt;}
.y95{bottom:244.854667pt;}
.y6e{bottom:250.646667pt;}
.y27{bottom:251.124000pt;}
.yf9{bottom:251.790667pt;}
.yc5{bottom:256.134667pt;}
.y94{bottom:262.866667pt;}
.y6d{bottom:268.658667pt;}
.yf8{bottom:269.005333pt;}
.y26{bottom:269.137333pt;}
.yc4{bottom:273.349333pt;}
.y93{bottom:280.880000pt;}
.y57{bottom:281.406667pt;}
.yf7{bottom:286.221333pt;}
.y6c{bottom:286.670667pt;}
.y25{bottom:287.149333pt;}
.yc3{bottom:290.565333pt;}
.y92{bottom:298.892000pt;}
.y56{bottom:302.738667pt;}
.yf6{bottom:303.437333pt;}
.y6b{bottom:304.684000pt;}
.y24{bottom:305.162667pt;}
.yc2{bottom:307.780000pt;}
.y91{bottom:316.905333pt;}
.yf5{bottom:320.652000pt;}
.y6a{bottom:322.696000pt;}
.y23{bottom:323.174667pt;}
.y55{bottom:324.070667pt;}
.yc1{bottom:324.996000pt;}
.yf4{bottom:337.868000pt;}
.y69{bottom:340.709333pt;}
.y22{bottom:341.186667pt;}
.yc0{bottom:342.212000pt;}
.y90{bottom:342.888000pt;}
.y54{bottom:345.084000pt;}
.y53{bottom:352.390667pt;}
.yf3{bottom:355.082667pt;}
.y68{bottom:358.721333pt;}
.y21{bottom:359.200000pt;}
.ybf{bottom:359.426667pt;}
.yf2{bottom:372.298667pt;}
.y8f{bottom:373.838667pt;}
.ybe{bottom:376.642667pt;}
.y67{bottom:376.733333pt;}
.y52{bottom:381.028000pt;}
.y20{bottom:385.182667pt;}
.yf1{bottom:389.514667pt;}
.y8e{bottom:391.850667pt;}
.ybd{bottom:393.857333pt;}
.y66{bottom:394.746667pt;}
.y51{bottom:402.358667pt;}
.yf0{bottom:406.729333pt;}
.y8d{bottom:409.862667pt;}
.ybc{bottom:411.073333pt;}
.y65{bottom:412.758667pt;}
.y50{bottom:423.690667pt;}
.yef{bottom:423.945333pt;}
.y8c{bottom:427.876000pt;}
.ybb{bottom:428.289333pt;}
.y64{bottom:430.772000pt;}
.yee{bottom:441.160000pt;}
.y4f{bottom:444.704000pt;}
.yba{bottom:445.504000pt;}
.y8b{bottom:445.888000pt;}
.y63{bottom:448.784000pt;}
.y4e{bottom:452.010667pt;}
.y1f{bottom:453.108000pt;}
.yed{bottom:458.376000pt;}
.yb9{bottom:462.720000pt;}
.y8a{bottom:463.901333pt;}
.y62{bottom:474.766667pt;}
.yec{bottom:475.592000pt;}
.yb8{bottom:479.934667pt;}
.y4d{bottom:480.648000pt;}
.y89{bottom:481.913333pt;}
.y1e{bottom:487.060000pt;}
.yeb{bottom:492.806667pt;}
.yb7{bottom:497.150667pt;}
.y88{bottom:499.925333pt;}
.y1d{bottom:505.073333pt;}
.y61{bottom:505.717333pt;}
.y4c{bottom:508.754667pt;}
.yea{bottom:510.022667pt;}
.yb6{bottom:514.366667pt;}
.y1c{bottom:523.085333pt;}
.y60{bottom:523.729333pt;}
.y87{bottom:525.908000pt;}
.ye9{bottom:527.237333pt;}
.yb5{bottom:531.581333pt;}
.y104{bottom:532.462667pt;}
.y1b{bottom:541.097333pt;}
.y4b{bottom:541.742667pt;}
.ye8{bottom:544.453333pt;}
.yb4{bottom:548.797333pt;}
.y103{bottom:549.678667pt;}
.y86{bottom:556.858667pt;}
.y1a{bottom:559.110667pt;}
.y4a{bottom:559.754667pt;}
.ye7{bottom:561.669333pt;}
.yb3{bottom:566.012000pt;}
.y102{bottom:566.893333pt;}
.y85{bottom:574.872000pt;}
.y19{bottom:577.122667pt;}
.y49{bottom:577.766667pt;}
.ye6{bottom:578.884000pt;}
.yb2{bottom:583.228000pt;}
.y84{bottom:592.884000pt;}
.y18{bottom:595.136000pt;}
.y48{bottom:595.780000pt;}
.ye5{bottom:596.100000pt;}
.yb1{bottom:600.444000pt;}
.y83{bottom:610.896000pt;}
.y17{bottom:613.148000pt;}
.ye4{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.yb0{bottom:617.658667pt;}
.y82{bottom:628.909333pt;}
.ye3{bottom:630.530667pt;}
.y16{bottom:631.160000pt;}
.y46{bottom:631.805333pt;}
.yaf{bottom:634.874667pt;}
.y81{bottom:646.921333pt;}
.ye2{bottom:647.746667pt;}
.y15{bottom:649.173333pt;}
.y45{bottom:649.817333pt;}
.yae{bottom:652.089333pt;}
.y80{bottom:664.934667pt;}
.ye1{bottom:664.961333pt;}
.y14{bottom:667.185333pt;}
.y44{bottom:667.829333pt;}
.yad{bottom:669.305333pt;}
.ye0{bottom:682.177333pt;}
.y7f{bottom:682.946667pt;}
.y43{bottom:685.842667pt;}
.yac{bottom:686.521333pt;}
.y11{bottom:698.681301pt;}
.y10{bottom:699.362667pt;}
.ydf{bottom:699.392000pt;}
.y7e{bottom:700.958667pt;}
.yab{bottom:703.736000pt;}
.y42{bottom:703.854667pt;}
.yde{bottom:716.608000pt;}
.y7d{bottom:718.972000pt;}
.yaa{bottom:720.952000pt;}
.y41{bottom:721.868000pt;}
.ydd{bottom:733.824000pt;}
.yf{bottom:734.034667pt;}
.y7c{bottom:736.984000pt;}
.ya9{bottom:738.166667pt;}
.y40{bottom:739.880000pt;}
.ydc{bottom:751.038667pt;}
.ye{bottom:754.513333pt;}
.y7b{bottom:754.997333pt;}
.ya8{bottom:755.382667pt;}
.y3f{bottom:757.892000pt;}
.yd{bottom:766.313333pt;}
.ydb{bottom:768.254667pt;}
.ya7{bottom:772.598667pt;}
.y7a{bottom:773.009333pt;}
.y3e{bottom:775.905333pt;}
.yda{bottom:785.469333pt;}
.yc{bottom:786.792000pt;}
.ya6{bottom:789.813333pt;}
.y79{bottom:791.021333pt;}
.y3d{bottom:793.917333pt;}
.yb{bottom:798.592000pt;}
.yd9{bottom:802.685333pt;}
.ya5{bottom:807.029333pt;}
.y78{bottom:809.034667pt;}
.y3c{bottom:811.930667pt;}
.ya{bottom:819.072000pt;}
.yd8{bottom:819.901333pt;}
.ya4{bottom:824.244000pt;}
.y77{bottom:827.046667pt;}
.y3b{bottom:829.942667pt;}
.y9{bottom:830.872000pt;}
.yd7{bottom:837.116000pt;}
.ya3{bottom:841.460000pt;}
.y3a{bottom:847.954667pt;}
.y8{bottom:851.350667pt;}
.y76{bottom:853.029333pt;}
.yd6{bottom:854.332000pt;}
.ya2{bottom:858.676000pt;}
.y39{bottom:865.968000pt;}
.y7{bottom:867.490667pt;}
.yd5{bottom:871.546667pt;}
.ya1{bottom:875.890667pt;}
.y38{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.yd4{bottom:888.762667pt;}
.ya0{bottom:893.106667pt;}
.y37{bottom:901.993333pt;}
.yd3{bottom:905.978667pt;}
.y9f{bottom:910.321333pt;}
.y36{bottom:920.005333pt;}
.yd2{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y9e{bottom:935.508000pt;}
.y35{bottom:938.017333pt;}
.yd1{bottom:940.409333pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.yd0{bottom:957.624000pt;}
.y9d{bottom:970.576000pt;}
.y33{bottom:974.042667pt;}
.ycf{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h7{height:27.076941pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.he{height:31.200285pt;}
.h13{height:33.713664pt;}
.h12{height:34.144051pt;}
.hf{height:34.430976pt;}
.h8{height:34.813542pt;}
.h11{height:35.100467pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h4{height:39.000258pt;}
.h2{height:45.354400pt;}
.h6{height:48.365611pt;}
.h10{height:64.034876pt;}
.h5{height:68.861952pt;}
.h3{height:79.072157pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.976559pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:50.393922pt;}
.x17{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x4{left:129.929333pt;}
.x19{left:134.094667pt;}
.x1e{left:136.976000pt;}
.x1c{left:140.353333pt;}
.x1f{left:141.304000pt;}
.x1d{left:148.208000pt;}
.x21{left:151.801333pt;}
.xd{left:152.718667pt;}
.x22{left:160.186667pt;}
.x25{left:164.389333pt;}
.xe{left:166.001333pt;}
.x1a{left:169.714667pt;}
.x8{left:171.684000pt;}
.xf{left:182.272000pt;}
.x4b{left:192.384000pt;}
.x10{left:195.556000pt;}
.x4c{left:205.668000pt;}
.x6f{left:211.140000pt;}
.x70{left:217.668000pt;}
.x7b{left:223.704000pt;}
.x7d{left:225.868000pt;}
.x33{left:229.984000pt;}
.x7c{left:237.545333pt;}
.x18{left:239.946667pt;}
.x34{left:243.268000pt;}
.x23{left:249.612000pt;}
.x24{left:262.894667pt;}
.x39{left:267.361333pt;}
.x3a{left:280.645333pt;}
.x3b{left:287.629333pt;}
.x3c{left:300.912000pt;}
.x3d{left:304.269333pt;}
.x3e{left:317.553333pt;}
.x55{left:326.265333pt;}
.x56{left:339.549333pt;}
.x13{left:343.622667pt;}
.x57{left:346.057333pt;}
.x2a{left:348.142667pt;}
.x60{left:354.006667pt;}
.x14{left:356.906667pt;}
.x77{left:357.949333pt;}
.x58{left:359.341333pt;}
.x61{left:360.534667pt;}
.x2b{left:361.426667pt;}
.x15{left:363.414667pt;}
.x5a{left:368.664000pt;}
.x5b{left:375.190667pt;}
.x16{left:376.698667pt;}
.x11{left:382.317333pt;}
.x4f{left:384.673333pt;}
.x3f{left:392.532000pt;}
.x12{left:395.600000pt;}
.x50{left:397.956000pt;}
.x2c{left:399.864000pt;}
.x40{left:405.816000pt;}
.x2e{left:408.092000pt;}
.x2f{left:411.480000pt;}
.x2d{left:413.146667pt;}
.x75{left:416.834667pt;}
.x76{left:422.560000pt;}
.x30{left:424.762667pt;}
.x28{left:427.080000pt;}
.x9{left:430.540000pt;}
.x31{left:431.537333pt;}
.xa{left:437.181333pt;}
.x20{left:440.888000pt;}
.x1b{left:441.952000pt;}
.xb{left:443.790667pt;}
.x32{left:444.821333pt;}
.x53{left:448.900000pt;}
.xc{left:450.432000pt;}
.x29{left:456.925333pt;}
.x54{left:462.184000pt;}
.x69{left:485.345333pt;}
.x6d{left:487.530667pt;}
.x26{left:489.688000pt;}
.x51{left:495.485333pt;}
.x27{left:502.970667pt;}
.x52{left:508.769333pt;}
.x6e{left:511.441333pt;}
.x71{left:515.017333pt;}
.x41{left:529.190667pt;}
.x6a{left:539.373333pt;}
.x42{left:542.474667pt;}
.x43{left:549.408000pt;}
.x72{left:560.228000pt;}
.x44{left:562.692000pt;}
.x45{left:566.078667pt;}
.x37{left:576.154667pt;}
.x46{left:579.362667pt;}
.x78{left:587.265333pt;}
.x38{left:589.438667pt;}
.x67{left:590.718667pt;}
.x62{left:599.202667pt;}
.x79{left:601.268000pt;}
.x74{left:602.857333pt;}
.x5d{left:603.950667pt;}
.x6b{left:610.418667pt;}
.x4d{left:613.050667pt;}
.x68{left:614.629333pt;}
.x6{left:623.413317pt;}
.x7a{left:625.178667pt;}
.x4e{left:626.334667pt;}
.x6c{left:634.329333pt;}
.x47{left:636.332000pt;}
.x64{left:637.268000pt;}
.x5e{left:640.584000pt;}
.x5c{left:642.686667pt;}
.x65{left:646.973333pt;}
.x48{left:649.616000pt;}
.x49{left:652.953333pt;}
.x73{left:654.162667pt;}
.x5f{left:664.494667pt;}
.x4a{left:666.237333pt;}
.x66{left:670.882667pt;}
.x35{left:672.796000pt;}
.x63{left:677.654667pt;}
.x36{left:686.078667pt;}
.x59{left:690.174667pt;}
}




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