
    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_17079a7fbd1db231791a8748.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_4929ff16126f1831a270b2f8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1bff7b685710f9629d2a8c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.688000;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_b37fef043b10cd67b57e54c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.028000;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_38971c6476f16f2753c6c8d2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_14f8d7aa97b086b099651175.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a4c9ac629028eb46e9c53dd8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_eb9c13e7f6c2ec1aecb3c616.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1c16d95e230ddc26783dc253.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e264ad5974cfad74edfe40e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.028000;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_b0561c6fd9c5d29975cd8e5a.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_b2187a1c5ee077145be8e46b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.482000;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_ca0420352b1006715d1e44d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708000;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_49b351944b6d4d7968e40ac9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708000;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_5f50fe3a4208c5b8e75e3c88.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_ccae9f1690000d1f6b75821c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.664000;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);}
.m18{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);}
.ma{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);}
.m3{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);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m1b{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);}
.mb{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);}
.m10{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);}
.m9{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);}
.m17{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);}
.m22{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);}
.m26{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);}
.md{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);}
.m1e{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);}
.m5{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);}
.m1f{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.mc{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);}
.m13{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);}
.m11{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);}
.m25{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);}
.m16{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);}
.m12{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);}
.m1c{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);}
.m21{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);}
.m1d{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);}
.m2{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);}
.m19{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);}
.m7{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);}
.m24{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);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.v3{vertical-align:-35.868000px;}
.v2{vertical-align:-26.034000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004200px;}
.ls1{letter-spacing:2.984915px;}
.ls0{letter-spacing:18.427553px;}
.ls5{letter-spacing:19.920538px;}
.ls2{letter-spacing:26.060915px;}
.ls6{letter-spacing:105.305590px;}
.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;}
}
.ws82{word-spacing:-29.887800px;}
.wsa4{word-spacing:-28.228020px;}
.wsa5{word-spacing:-27.646998px;}
.ws84{word-spacing:-19.725948px;}
.ws2a{word-spacing:-15.960085px;}
.ws45{word-spacing:-15.900310px;}
.ws20{word-spacing:-15.183002px;}
.ws83{word-spacing:-14.764573px;}
.ws5d{word-spacing:-14.704798px;}
.ws2d{word-spacing:-14.465695px;}
.ws8f{word-spacing:-14.346144px;}
.ws5e{word-spacing:-14.286368px;}
.ws75{word-spacing:-14.226593px;}
.ws92{word-spacing:-14.107042px;}
.ws59{word-spacing:-13.808164px;}
.ws3d{word-spacing:-13.688612px;}
.ws52{word-spacing:-13.628837px;}
.ws48{word-spacing:-13.509286px;}
.ws46{word-spacing:-13.449510px;}
.ws47{word-spacing:-13.389734px;}
.ws4f{word-spacing:-13.270183px;}
.ws8a{word-spacing:-13.090856px;}
.wsa9{word-spacing:-12.798639px;}
.ws73{word-spacing:-12.791978px;}
.ws70{word-spacing:-12.732203px;}
.ws71{word-spacing:-12.253998px;}
.ws11{word-spacing:-12.194222px;}
.ws18{word-spacing:-12.074671px;}
.ws88{word-spacing:-12.014896px;}
.ws5c{word-spacing:-11.895344px;}
.ws41{word-spacing:-11.835569px;}
.ws57{word-spacing:-11.716018px;}
.ws74{word-spacing:-11.596466px;}
.ws17{word-spacing:-11.417140px;}
.ws1f{word-spacing:-11.357364px;}
.ws56{word-spacing:-11.178037px;}
.ws1c{word-spacing:-10.998710px;}
.ws65{word-spacing:-10.938935px;}
.ws40{word-spacing:-10.879159px;}
.ws8d{word-spacing:-10.819384px;}
.ws53{word-spacing:-10.640057px;}
.ws58{word-spacing:-10.580281px;}
.ws39{word-spacing:-10.520506px;}
.ws50{word-spacing:-10.460730px;}
.wsd{word-spacing:-10.400954px;}
.ws19{word-spacing:-10.341179px;}
.wsa{word-spacing:-10.281403px;}
.ws1d{word-spacing:-10.221628px;}
.ws3e{word-spacing:-10.161852px;}
.ws26{word-spacing:-10.102076px;}
.wse{word-spacing:-10.042301px;}
.ws12{word-spacing:-9.982525px;}
.ws24{word-spacing:-9.922750px;}
.wsc{word-spacing:-9.862974px;}
.ws10{word-spacing:-9.803198px;}
.wsa3{word-spacing:-9.785929px;}
.ws22{word-spacing:-9.743423px;}
.wsb{word-spacing:-9.683647px;}
.ws42{word-spacing:-9.623872px;}
.ws43{word-spacing:-9.564096px;}
.ws9a{word-spacing:-9.504320px;}
.ws8b{word-spacing:-9.444545px;}
.ws3f{word-spacing:-9.384769px;}
.ws3{word-spacing:-9.247945px;}
.wsa8{word-spacing:-9.213754px;}
.ws32{word-spacing:-9.205442px;}
.wsa7{word-spacing:-9.197203px;}
.ws2{word-spacing:-9.194147px;}
.ws51{word-spacing:-9.145667px;}
.ws9f{word-spacing:-9.086550px;}
.wsf{word-spacing:-9.085891px;}
.wsa2{word-spacing:-8.978953px;}
.ws69{word-spacing:-8.846789px;}
.ws54{word-spacing:-8.727238px;}
.ws68{word-spacing:-8.547911px;}
.ws1b{word-spacing:-8.488135px;}
.ws7{word-spacing:-8.484008px;}
.ws0{word-spacing:-8.430209px;}
.ws4b{word-spacing:-8.428360px;}
.ws96{word-spacing:-8.368584px;}
.ws9c{word-spacing:-8.308808px;}
.ws2c{word-spacing:-8.249033px;}
.ws4c{word-spacing:-8.129482px;}
.ws1e{word-spacing:-8.069706px;}
.ws3c{word-spacing:-7.950155px;}
.ws3b{word-spacing:-7.890379px;}
.ws3a{word-spacing:-7.830604px;}
.ws2e{word-spacing:-7.531726px;}
.ws2b{word-spacing:-7.412174px;}
.ws94{word-spacing:-7.352399px;}
.ws64{word-spacing:-7.232848px;}
.ws8e{word-spacing:-7.053521px;}
.ws49{word-spacing:-6.993745px;}
.ws91{word-spacing:-6.874194px;}
.ws23{word-spacing:-6.754643px;}
.ws72{word-spacing:-6.694867px;}
.ws5f{word-spacing:-6.635092px;}
.ws5a{word-spacing:-6.575316px;}
.ws93{word-spacing:-6.515540px;}
.ws90{word-spacing:-6.455765px;}
.ws67{word-spacing:-6.336214px;}
.ws33{word-spacing:-6.276438px;}
.ws4e{word-spacing:-6.097111px;}
.ws21{word-spacing:-6.037336px;}
.ws89{word-spacing:-5.977560px;}
.ws29{word-spacing:-5.917784px;}
.ws8c{word-spacing:-5.858009px;}
.ws2f{word-spacing:-5.798233px;}
.ws66{word-spacing:-5.618906px;}
.ws97{word-spacing:-5.379804px;}
.wsa0{word-spacing:-5.374460px;}
.ws9b{word-spacing:-5.260253px;}
.ws6a{word-spacing:-5.140702px;}
.ws99{word-spacing:-5.080926px;}
.ws1a{word-spacing:-4.901599px;}
.ws98{word-spacing:-4.841824px;}
.ws31{word-spacing:-4.722272px;}
.ws4d{word-spacing:-4.542946px;}
.ws34{word-spacing:-4.363619px;}
.ws4a{word-spacing:-4.244068px;}
.ws5b{word-spacing:-4.064741px;}
.ws28{word-spacing:-3.885414px;}
.ws9{word-spacing:-3.825638px;}
.ws87{word-spacing:-3.765863px;}
.ws6b{word-spacing:-3.706087px;}
.ws25{word-spacing:-3.646312px;}
.ws16{word-spacing:-3.466985px;}
.wsa6{word-spacing:-3.184625px;}
.wsa1{word-spacing:-3.123003px;}
.ws9e{word-spacing:-2.630742px;}
.ws86{word-spacing:-2.630126px;}
.ws35{word-spacing:-2.570351px;}
.ws79{word-spacing:-2.469347px;}
.ws6f{word-spacing:-2.211697px;}
.ws85{word-spacing:-2.092146px;}
.ws27{word-spacing:-0.896634px;}
.ws15{word-spacing:-0.077708px;}
.ws9d{word-spacing:-0.065753px;}
.ws55{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.ws36{word-spacing:0.000000px;}
.ws95{word-spacing:1.613941px;}
.ws30{word-spacing:9.862974px;}
.ws6e{word-spacing:20.228198px;}
.ws38{word-spacing:20.281997px;}
.ws60{word-spacing:22.518376px;}
.ws62{word-spacing:22.528128px;}
.ws37{word-spacing:22.535401px;}
.ws7c{word-spacing:22.834279px;}
.ws13{word-spacing:26.505019px;}
.ws6{word-spacing:26.970931px;}
.ws5{word-spacing:27.042662px;}
.ws78{word-spacing:27.114394px;}
.ws4{word-spacing:27.945205px;}
.ws14{word-spacing:29.061442px;}
.ws44{word-spacing:29.296067px;}
.ws61{word-spacing:45.104321px;}
.ws8{word-spacing:76.995640px;}
.ws7b{word-spacing:92.175029px;}
.ws7a{word-spacing:99.999723px;}
.ws6d{word-spacing:100.781662px;}
.ws77{word-spacing:124.034370px;}
.ws6c{word-spacing:159.720403px;}
.ws7e{word-spacing:165.261227px;}
.ws76{word-spacing:174.664303px;}
.ws7f{word-spacing:259.203844px;}
.ws81{word-spacing:259.903214px;}
.ws80{word-spacing:296.637367px;}
.ws7d{word-spacing:316.056684px;}
.ws63{word-spacing:1016.578418px;}
._5{margin-left:-6.488660px;}
._4{margin-left:-4.626662px;}
._0{margin-left:-2.851315px;}
._3{margin-left:-1.560154px;}
._8{width:1.022170px;}
._7{width:3.012710px;}
._11{width:9.629860px;}
._f{width:10.771584px;}
._13{width:14.937962px;}
._10{width:16.384506px;}
._19{width:17.645782px;}
._b{width:19.146152px;}
._1{width:20.821745px;}
._1d{width:22.176748px;}
._14{width:23.784704px;}
._9{width:25.113884px;}
._a{width:26.773484px;}
._d{width:28.094532px;}
._c{width:29.947576px;}
._12{width:31.161052px;}
._e{width:32.213064px;}
._17{width:35.931124px;}
._25{width:37.891746px;}
._1a{width:40.348530px;}
._18{width:43.157987px;}
._15{width:44.586613px;}
._24{width:45.800086px;}
._1f{width:47.823487px;}
._6{width:54.982717px;}
._26{width:62.650820px;}
._1b{width:71.730720px;}
._22{width:165.165974px;}
._21{width:188.050519px;}
._20{width:190.869479px;}
._1c{width:215.451523px;}
._1e{width:230.395423px;}
._23{width:259.254697px;}
._2{width:828.981540px;}
._16{width:1414.695035px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs7{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:74.719800px;}
.fs5{font-size:77.708400px;}
.y0{bottom:0.000000px;}
.y54{bottom:59.400000px;}
.y191{bottom:95.265000px;}
.y35{bottom:95.266500px;}
.y190{bottom:111.769500px;}
.y158{bottom:112.315500px;}
.y82{bottom:113.211000px;}
.yec{bottom:113.260500px;}
.yc5{bottom:113.277000px;}
.yae{bottom:113.308500px;}
.y11f{bottom:113.371500px;}
.y34{bottom:113.487000px;}
.yd0{bottom:113.493000px;}
.y53{bottom:113.664000px;}
.y122{bottom:128.152500px;}
.y18f{bottom:128.274000px;}
.y157{bottom:129.366000px;}
.y81{bottom:131.157000px;}
.yeb{bottom:131.254500px;}
.yc4{bottom:131.287500px;}
.yad{bottom:131.350500px;}
.y33{bottom:131.709000px;}
.ycf{bottom:131.719500px;}
.y52{bottom:132.063000px;}
.y11e{bottom:132.810000px;}
.y18e{bottom:144.777000px;}
.y156{bottom:146.415000px;}
.y80{bottom:149.101500px;}
.yc3{bottom:149.298000px;}
.y32{bottom:149.929500px;}
.yce{bottom:149.947500px;}
.yac{bottom:150.243000px;}
.y51{bottom:150.460500px;}
.y11d{bottom:150.915000px;}
.yea{bottom:155.278500px;}
.y18d{bottom:161.281500px;}
.y7f{bottom:167.047500px;}
.yc2{bottom:167.308500px;}
.y31{bottom:168.150000px;}
.yab{bottom:168.285000px;}
.y50{bottom:168.859500px;}
.y11c{bottom:169.020000px;}
.y155{bottom:169.293000px;}
.ycd{bottom:170.452500px;}
.y7e{bottom:184.993500px;}
.yc1{bottom:185.319000px;}
.yaa{bottom:186.328500px;}
.y30{bottom:186.372000px;}
.y18c{bottom:186.651000px;}
.y11b{bottom:187.125000px;}
.y4f{bottom:187.257000px;}
.ycc{bottom:188.679000px;}
.ye9{bottom:196.500000px;}
.y7d{bottom:202.938000px;}
.y18b{bottom:203.155500px;}
.yc0{bottom:203.331000px;}
.ya9{bottom:204.370500px;}
.y2f{bottom:204.592500px;}
.y11a{bottom:205.230000px;}
.y4e{bottom:205.656000px;}
.ycb{bottom:206.907000px;}
.y154{bottom:211.300500px;}
.ye8{bottom:214.494000px;}
.y18a{bottom:219.658500px;}
.y7c{bottom:220.884000px;}
.ybf{bottom:221.341500px;}
.ya8{bottom:222.412500px;}
.y119{bottom:223.335000px;}
.y4d{bottom:224.053500px;}
.y2e{bottom:225.048000px;}
.yca{bottom:225.133500px;}
.y153{bottom:229.414500px;}
.ye7{bottom:232.488000px;}
.y189{bottom:236.163000px;}
.y7b{bottom:238.828500px;}
.ybe{bottom:239.352000px;}
.ya7{bottom:241.305000px;}
.y118{bottom:241.441500px;}
.y2d{bottom:243.270000px;}
.yc9{bottom:245.638500px;}
.y4c{bottom:246.057000px;}
.y152{bottom:247.528500px;}
.ye6{bottom:250.482000px;}
.y7a{bottom:256.774500px;}
.ybd{bottom:257.362500px;}
.ya6{bottom:259.348500px;}
.y117{bottom:260.880000px;}
.y2c{bottom:261.490500px;}
.y188{bottom:261.532500px;}
.yc8{bottom:263.866500px;}
.y4b{bottom:264.454500px;}
.y151{bottom:265.642500px;}
.ye5{bottom:268.476000px;}
.y79{bottom:274.720500px;}
.ybc{bottom:275.373000px;}
.ya5{bottom:277.390500px;}
.y187{bottom:278.037000px;}
.y116{bottom:278.985000px;}
.y2b{bottom:279.712500px;}
.yc7{bottom:282.093000px;}
.y4a{bottom:282.853500px;}
.y150{bottom:283.756500px;}
.ye4{bottom:286.470000px;}
.y78{bottom:292.665000px;}
.y186{bottom:294.540000px;}
.ya4{bottom:295.432500px;}
.y115{bottom:297.090000px;}
.y2a{bottom:297.933000px;}
.ybb{bottom:299.655000px;}
.y49{bottom:301.251000px;}
.y14f{bottom:303.273000px;}
.ye3{bottom:304.464000px;}
.y77{bottom:310.611000px;}
.y185{bottom:311.044500px;}
.ya3{bottom:313.476000px;}
.y114{bottom:315.195000px;}
.y29{bottom:318.388500px;}
.y48{bottom:319.650000px;}
.y14e{bottom:321.387000px;}
.ye2{bottom:322.458000px;}
.y184{bottom:327.549000px;}
.y76{bottom:328.555500px;}
.ya2{bottom:331.518000px;}
.y113{bottom:333.300000px;}
.yc6{bottom:336.414000px;}
.y28{bottom:336.609000px;}
.y47{bottom:338.047500px;}
.y14d{bottom:339.501000px;}
.ye1{bottom:340.452000px;}
.yba{bottom:341.865000px;}
.y75{bottom:346.501500px;}
.ya1{bottom:350.410500px;}
.y112{bottom:351.405000px;}
.y183{bottom:352.918500px;}
.y27{bottom:354.831000px;}
.y46{bottom:356.446500px;}
.y14c{bottom:357.615000px;}
.ye0{bottom:358.446000px;}
.yb9{bottom:359.875500px;}
.y74{bottom:364.447500px;}
.ya0{bottom:368.452500px;}
.y182{bottom:369.421500px;}
.y111{bottom:369.510000px;}
.y26{bottom:373.051500px;}
.y45{bottom:374.844000px;}
.y14b{bottom:375.729000px;}
.ydf{bottom:376.914000px;}
.yb8{bottom:377.886000px;}
.y73{bottom:382.392000px;}
.y181{bottom:385.926000px;}
.y9f{bottom:386.496000px;}
.y110{bottom:387.615000px;}
.y25{bottom:391.273500px;}
.y14a{bottom:393.843000px;}
.yde{bottom:394.908000px;}
.yb7{bottom:395.898000px;}
.y44{bottom:396.847500px;}
.y72{bottom:400.338000px;}
.y180{bottom:402.430500px;}
.y9e{bottom:404.538000px;}
.y24{bottom:409.494000px;}
.ydd{bottom:412.902000px;}
.y10f{bottom:413.352000px;}
.y149{bottom:413.359500px;}
.yb6{bottom:413.908500px;}
.y43{bottom:415.245000px;}
.y71{bottom:418.282500px;}
.y17f{bottom:418.933500px;}
.y9d{bottom:422.580000px;}
.y23{bottom:427.716000px;}
.ydc{bottom:430.896000px;}
.y148{bottom:431.473500px;}
.yb5{bottom:431.919000px;}
.y42{bottom:433.644000px;}
.y17e{bottom:435.438000px;}
.y70{bottom:436.228500px;}
.y9c{bottom:440.623500px;}
.y22{bottom:445.936500px;}
.ydb{bottom:448.890000px;}
.y147{bottom:449.587500px;}
.yb4{bottom:449.929500px;}
.y41{bottom:452.041500px;}
.y6f{bottom:454.174500px;}
.y9b{bottom:458.665500px;}
.y17d{bottom:460.807500px;}
.y10e{bottom:461.131500px;}
.y21{bottom:466.392000px;}
.yda{bottom:466.884000px;}
.y146{bottom:467.701500px;}
.yb3{bottom:467.940000px;}
.y40{bottom:470.440500px;}
.y6e{bottom:472.119000px;}
.y9a{bottom:476.707500px;}
.y17c{bottom:477.312000px;}
.y10d{bottom:479.236500px;}
.y20{bottom:484.612500px;}
.yd9{bottom:484.878000px;}
.y145{bottom:485.815500px;}
.yb2{bottom:485.950500px;}
.y3f{bottom:488.838000px;}
.y6d{bottom:490.065000px;}
.y17b{bottom:493.815000px;}
.y99{bottom:495.600000px;}
.y10c{bottom:497.341500px;}
.y1f{bottom:502.834500px;}
.yd8{bottom:502.872000px;}
.y144{bottom:503.929500px;}
.yb1{bottom:503.962500px;}
.y3e{bottom:507.237000px;}
.y17a{bottom:510.319500px;}
.y6c{bottom:513.339000px;}
.y98{bottom:513.643500px;}
.y10b{bottom:515.446500px;}
.y121{bottom:517.650000px;}
.y1e{bottom:521.055000px;}
.yd7{bottom:521.341500px;}
.y143{bottom:522.043500px;}
.y3d{bottom:525.634500px;}
.y179{bottom:526.824000px;}
.y97{bottom:531.685500px;}
.y10a{bottom:533.551500px;}
.y1d{bottom:539.277000px;}
.yd6{bottom:539.335500px;}
.y142{bottom:540.157500px;}
.y3c{bottom:544.033500px;}
.y96{bottom:549.727500px;}
.y6b{bottom:551.691000px;}
.y178{bottom:552.193500px;}
.y109{bottom:552.991500px;}
.yb0{bottom:553.725000px;}
.y1c{bottom:557.497500px;}
.y141{bottom:558.271500px;}
.y3b{bottom:562.431000px;}
.y95{bottom:567.771000px;}
.y177{bottom:568.696500px;}
.y6a{bottom:569.635500px;}
.y108{bottom:571.096500px;}
.y1b{bottom:575.719500px;}
.y140{bottom:576.385500px;}
.y3a{bottom:580.830000px;}
.y176{bottom:585.201000px;}
.y94{bottom:585.813000px;}
.y69{bottom:587.581500px;}
.y107{bottom:589.201500px;}
.yd5{bottom:590.047500px;}
.y1a{bottom:593.940000px;}
.y13f{bottom:594.498000px;}
.y39{bottom:599.227500px;}
.y175{bottom:601.705500px;}
.y93{bottom:603.855000px;}
.y68{bottom:605.527500px;}
.y106{bottom:607.306500px;}
.y19{bottom:612.160500px;}
.y13e{bottom:612.612000px;}
.y38{bottom:617.626500px;}
.y92{bottom:621.898500px;}
.yd4{bottom:622.659000px;}
.y67{bottom:623.472000px;}
.y105{bottom:625.411500px;}
.y174{bottom:627.075000px;}
.y18{bottom:630.382500px;}
.y13d{bottom:632.128500px;}
.y37{bottom:639.628500px;}
.y91{bottom:639.940500px;}
.yd3{bottom:640.591500px;}
.y66{bottom:641.418000px;}
.y173{bottom:643.578000px;}
.y104{bottom:644.851500px;}
.y13c{bottom:650.242500px;}
.y17{bottom:657.907500px;}
.y36{bottom:658.027500px;}
.y90{bottom:658.833000px;}
.y65{bottom:659.362500px;}
.y172{bottom:660.082500px;}
.y103{bottom:662.956500px;}
.yd2{bottom:666.027000px;}
.y13b{bottom:668.356500px;}
.y171{bottom:676.587000px;}
.y8f{bottom:676.875000px;}
.y64{bottom:677.308500px;}
.y102{bottom:681.061500px;}
.y13a{bottom:687.873000px;}
.y8e{bottom:694.918500px;}
.y63{bottom:695.254500px;}
.y101{bottom:699.166500px;}
.y170{bottom:701.956500px;}
.y16{bottom:703.773000px;}
.y139{bottom:705.987000px;}
.yd1{bottom:707.770500px;}
.y62{bottom:713.199000px;}
.y8d{bottom:713.809500px;}
.y100{bottom:717.271500px;}
.y16f{bottom:718.459500px;}
.y138{bottom:724.101000px;}
.y15{bottom:730.899000px;}
.y61{bottom:731.145000px;}
.y8c{bottom:731.853000px;}
.y16e{bottom:734.964000px;}
.yff{bottom:735.376500px;}
.y137{bottom:743.617500px;}
.y14{bottom:748.831500px;}
.y60{bottom:749.089500px;}
.y8b{bottom:749.895000px;}
.y16d{bottom:751.468500px;}
.yfd{bottom:754.815000px;}
.yfe{bottom:760.239000px;}
.y136{bottom:761.731500px;}
.y13{bottom:766.764000px;}
.y5f{bottom:767.035500px;}
.y8a{bottom:767.937000px;}
.y16c{bottom:767.971500px;}
.yfc{bottom:772.921500px;}
.y135{bottom:779.845500px;}
.y12{bottom:784.698000px;}
.y5e{bottom:784.981500px;}
.y89{bottom:785.980500px;}
.yfb{bottom:791.026500px;}
.y16b{bottom:793.341000px;}
.y134{bottom:799.362000px;}
.y11{bottom:802.630500px;}
.y5d{bottom:802.926000px;}
.y88{bottom:804.022500px;}
.yfa{bottom:809.131500px;}
.y16a{bottom:809.845500px;}
.y133{bottom:817.476000px;}
.y10{bottom:820.563000px;}
.y5c{bottom:820.872000px;}
.y87{bottom:822.064500px;}
.y169{bottom:826.350000px;}
.y120{bottom:829.359000px;}
.y132{bottom:835.590000px;}
.yf{bottom:838.495500px;}
.y5b{bottom:838.816500px;}
.y86{bottom:840.108000px;}
.y168{bottom:842.853000px;}
.yaf{bottom:849.837000px;}
.y131{bottom:853.704000px;}
.ye{bottom:856.428000px;}
.y5a{bottom:856.762500px;}
.y85{bottom:858.150000px;}
.y167{bottom:859.357500px;}
.yf9{bottom:861.562500px;}
.y130{bottom:871.818000px;}
.yd{bottom:874.360500px;}
.y59{bottom:874.708500px;}
.y166{bottom:875.862000px;}
.y84{bottom:876.193500px;}
.yf8{bottom:878.001000px;}
.y12f{bottom:889.932000px;}
.yc{bottom:892.294500px;}
.y165{bottom:892.365000px;}
.y58{bottom:892.653000px;}
.y19f{bottom:905.667000px;}
.y12e{bottom:908.046000px;}
.yb{bottom:910.227000px;}
.yf7{bottom:910.612500px;}
.y57{bottom:910.696500px;}
.y164{bottom:917.734500px;}
.y19e{bottom:922.105500px;}
.y12d{bottom:926.160000px;}
.y83{bottom:927.655500px;}
.ya{bottom:928.159500px;}
.yf6{bottom:928.545000px;}
.y56{bottom:928.642500px;}
.y163{bottom:934.239000px;}
.y19d{bottom:938.544000px;}
.y12c{bottom:945.676500px;}
.y9{bottom:946.092000px;}
.yf5{bottom:946.477500px;}
.y162{bottom:950.743500px;}
.y19c{bottom:954.982500px;}
.y12b{bottom:963.790500px;}
.yf4{bottom:964.410000px;}
.y161{bottom:967.246500px;}
.y19b{bottom:971.421000px;}
.y55{bottom:978.601500px;}
.y12a{bottom:981.904500px;}
.yf3{bottom:982.344000px;}
.y8{bottom:983.398500px;}
.y160{bottom:992.616000px;}
.y19a{bottom:993.280500px;}
.y7{bottom:998.040000px;}
.y129{bottom:1000.018500px;}
.yf2{bottom:1007.779500px;}
.y15f{bottom:1009.120500px;}
.y199{bottom:1009.719000px;}
.y6{bottom:1015.972500px;}
.y128{bottom:1018.132500px;}
.y198{bottom:1026.157500px;}
.y15e{bottom:1034.490000px;}
.y127{bottom:1036.246500px;}
.y197{bottom:1042.596000px;}
.y5{bottom:1049.532000px;}
.y15d{bottom:1050.994500px;}
.yf1{bottom:1051.242000px;}
.y126{bottom:1054.360500px;}
.y196{bottom:1059.034500px;}
.y15c{bottom:1067.497500px;}
.yf0{bottom:1067.680500px;}
.y125{bottom:1080.231000px;}
.y195{bottom:1080.894000px;}
.y15b{bottom:1092.867000px;}
.y4{bottom:1095.730500px;}
.y194{bottom:1097.332500px;}
.yef{bottom:1100.292000px;}
.y15a{bottom:1109.371500px;}
.y193{bottom:1113.771000px;}
.y3{bottom:1116.652500px;}
.yee{bottom:1118.224500px;}
.y159{bottom:1125.876000px;}
.y124{bottom:1128.534000px;}
.y192{bottom:1130.209500px;}
.yed{bottom:1143.660000px;}
.y123{bottom:1146.648000px;}
.y1{bottom:1168.465500px;}
.y2{bottom:1184.904000px;}
.h7{height:22.236579px;}
.hb{height:27.783619px;}
.hd{height:36.367718px;}
.h2{height:37.336090px;}
.h4{height:40.348800px;}
.h3{height:41.855155px;}
.h9{height:44.831700px;}
.h8{height:46.505417px;}
.hc{height:51.156145px;}
.h5{height:52.303860px;}
.h6{height:55.806874px;}
.ha{height:60.457135px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:75.600000px;}
.x14{left:90.543000px;}
.x1{left:97.200000px;}
.x22{left:103.834500px;}
.x3a{left:106.060500px;}
.x39{left:107.161500px;}
.x15{left:110.746500px;}
.x7{left:113.131500px;}
.x16{left:118.219500px;}
.x6{left:125.998500px;}
.x17{left:127.278000px;}
.x1f{left:128.475000px;}
.x21{left:130.260000px;}
.x3{left:133.377000px;}
.x18{left:134.749500px;}
.x20{left:144.996000px;}
.x1e{left:152.247000px;}
.x8{left:225.861000px;}
.x9{left:233.332500px;}
.x5{left:240.222000px;}
.x32{left:255.412500px;}
.x4{left:259.087500px;}
.xc{left:315.507000px;}
.xd{left:322.978500px;}
.x2f{left:328.296000px;}
.x1c{left:341.119500px;}
.xa{left:352.806000px;}
.xb{left:360.277500px;}
.x31{left:368.121000px;}
.x30{left:379.000500px;}
.x2{left:448.681500px;}
.x1a{left:451.857000px;}
.x38{left:460.182000px;}
.x33{left:461.820000px;}
.x26{left:463.276500px;}
.x1b{left:466.801500px;}
.xe{left:473.457000px;}
.x3b{left:483.418500px;}
.xf{left:488.400000px;}
.x27{left:492.420000px;}
.x2e{left:496.689000px;}
.x23{left:504.732000px;}
.x25{left:506.517000px;}
.x19{left:508.797000px;}
.x24{left:521.253000px;}
.x1d{left:546.951000px;}
.x2c{left:560.773500px;}
.x2d{left:575.119500px;}
.x28{left:577.237500px;}
.x29{left:588.574500px;}
.x3c{left:610.518000px;}
.x36{left:632.175000px;}
.x37{left:648.090000px;}
.x34{left:729.190500px;}
.x35{left:745.105500px;}
.x10{left:761.508000px;}
.x11{left:768.979500px;}
.x2a{left:776.701500px;}
.x2b{left:791.646000px;}
.x12{left:796.579500px;}
@media print{
.v3{vertical-align:-31.882667pt;}
.v2{vertical-align:-23.141333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003733pt;}
.ls1{letter-spacing:2.653258pt;}
.ls0{letter-spacing:16.380047pt;}
.ls5{letter-spacing:17.707145pt;}
.ls2{letter-spacing:23.165258pt;}
.ls6{letter-spacing:93.604969pt;}
.ws82{word-spacing:-26.566933pt;}
.wsa4{word-spacing:-25.091574pt;}
.wsa5{word-spacing:-24.575109pt;}
.ws84{word-spacing:-17.534176pt;}
.ws2a{word-spacing:-14.186742pt;}
.ws45{word-spacing:-14.133609pt;}
.ws20{word-spacing:-13.496002pt;}
.ws83{word-spacing:-13.124065pt;}
.ws5d{word-spacing:-13.070931pt;}
.ws2d{word-spacing:-12.858396pt;}
.ws8f{word-spacing:-12.752128pt;}
.ws5e{word-spacing:-12.698994pt;}
.ws75{word-spacing:-12.645860pt;}
.ws92{word-spacing:-12.539593pt;}
.ws59{word-spacing:-12.273923pt;}
.ws3d{word-spacing:-12.167655pt;}
.ws52{word-spacing:-12.114522pt;}
.ws48{word-spacing:-12.008254pt;}
.ws46{word-spacing:-11.955120pt;}
.ws47{word-spacing:-11.901986pt;}
.ws4f{word-spacing:-11.795718pt;}
.ws8a{word-spacing:-11.636317pt;}
.wsa9{word-spacing:-11.376568pt;}
.ws73{word-spacing:-11.370647pt;}
.ws70{word-spacing:-11.317514pt;}
.ws71{word-spacing:-10.892443pt;}
.ws11{word-spacing:-10.839309pt;}
.ws18{word-spacing:-10.733041pt;}
.ws88{word-spacing:-10.679907pt;}
.ws5c{word-spacing:-10.573639pt;}
.ws41{word-spacing:-10.520506pt;}
.ws57{word-spacing:-10.414238pt;}
.ws74{word-spacing:-10.307970pt;}
.ws17{word-spacing:-10.148569pt;}
.ws1f{word-spacing:-10.095435pt;}
.ws56{word-spacing:-9.936033pt;}
.ws1c{word-spacing:-9.776631pt;}
.ws65{word-spacing:-9.723498pt;}
.ws40{word-spacing:-9.670364pt;}
.ws8d{word-spacing:-9.617230pt;}
.ws53{word-spacing:-9.457828pt;}
.ws58{word-spacing:-9.404694pt;}
.ws39{word-spacing:-9.351561pt;}
.ws50{word-spacing:-9.298427pt;}
.wsd{word-spacing:-9.245293pt;}
.ws19{word-spacing:-9.192159pt;}
.wsa{word-spacing:-9.139025pt;}
.ws1d{word-spacing:-9.085891pt;}
.ws3e{word-spacing:-9.032757pt;}
.ws26{word-spacing:-8.979623pt;}
.wse{word-spacing:-8.926490pt;}
.ws12{word-spacing:-8.873356pt;}
.ws24{word-spacing:-8.820222pt;}
.wsc{word-spacing:-8.767088pt;}
.ws10{word-spacing:-8.713954pt;}
.wsa3{word-spacing:-8.698604pt;}
.ws22{word-spacing:-8.660820pt;}
.wsb{word-spacing:-8.607686pt;}
.ws42{word-spacing:-8.554553pt;}
.ws43{word-spacing:-8.501419pt;}
.ws9a{word-spacing:-8.448285pt;}
.ws8b{word-spacing:-8.395151pt;}
.ws3f{word-spacing:-8.342017pt;}
.ws3{word-spacing:-8.220396pt;}
.wsa8{word-spacing:-8.190003pt;}
.ws32{word-spacing:-8.182615pt;}
.wsa7{word-spacing:-8.175292pt;}
.ws2{word-spacing:-8.172575pt;}
.ws51{word-spacing:-8.129482pt;}
.ws9f{word-spacing:-8.076933pt;}
.wsf{word-spacing:-8.076348pt;}
.wsa2{word-spacing:-7.981292pt;}
.ws69{word-spacing:-7.863812pt;}
.ws54{word-spacing:-7.757545pt;}
.ws68{word-spacing:-7.598143pt;}
.ws1b{word-spacing:-7.545009pt;}
.ws7{word-spacing:-7.541340pt;}
.ws0{word-spacing:-7.493519pt;}
.ws4b{word-spacing:-7.491875pt;}
.ws96{word-spacing:-7.438741pt;}
.ws9c{word-spacing:-7.385607pt;}
.ws2c{word-spacing:-7.332474pt;}
.ws4c{word-spacing:-7.226206pt;}
.ws1e{word-spacing:-7.173072pt;}
.ws3c{word-spacing:-7.066804pt;}
.ws3b{word-spacing:-7.013670pt;}
.ws3a{word-spacing:-6.960537pt;}
.ws2e{word-spacing:-6.694867pt;}
.ws2b{word-spacing:-6.588599pt;}
.ws94{word-spacing:-6.535466pt;}
.ws64{word-spacing:-6.429198pt;}
.ws8e{word-spacing:-6.269796pt;}
.ws49{word-spacing:-6.216662pt;}
.ws91{word-spacing:-6.110395pt;}
.ws23{word-spacing:-6.004127pt;}
.ws72{word-spacing:-5.950993pt;}
.ws5f{word-spacing:-5.897859pt;}
.ws5a{word-spacing:-5.844725pt;}
.ws93{word-spacing:-5.791591pt;}
.ws90{word-spacing:-5.738458pt;}
.ws67{word-spacing:-5.632190pt;}
.ws33{word-spacing:-5.579056pt;}
.ws4e{word-spacing:-5.419654pt;}
.ws21{word-spacing:-5.366521pt;}
.ws89{word-spacing:-5.313387pt;}
.ws29{word-spacing:-5.260253pt;}
.ws8c{word-spacing:-5.207119pt;}
.ws2f{word-spacing:-5.153985pt;}
.ws66{word-spacing:-4.994583pt;}
.ws97{word-spacing:-4.782048pt;}
.wsa0{word-spacing:-4.777298pt;}
.ws9b{word-spacing:-4.675780pt;}
.ws6a{word-spacing:-4.569513pt;}
.ws99{word-spacing:-4.516379pt;}
.ws1a{word-spacing:-4.356977pt;}
.ws98{word-spacing:-4.303843pt;}
.ws31{word-spacing:-4.197575pt;}
.ws4d{word-spacing:-4.038174pt;}
.ws34{word-spacing:-3.878772pt;}
.ws4a{word-spacing:-3.772505pt;}
.ws5b{word-spacing:-3.613103pt;}
.ws28{word-spacing:-3.453701pt;}
.ws9{word-spacing:-3.400567pt;}
.ws87{word-spacing:-3.347434pt;}
.ws6b{word-spacing:-3.294300pt;}
.ws25{word-spacing:-3.241166pt;}
.ws16{word-spacing:-3.081764pt;}
.wsa6{word-spacing:-2.830778pt;}
.wsa1{word-spacing:-2.776003pt;}
.ws9e{word-spacing:-2.338437pt;}
.ws86{word-spacing:-2.337890pt;}
.ws35{word-spacing:-2.284756pt;}
.ws79{word-spacing:-2.194975pt;}
.ws6f{word-spacing:-1.965953pt;}
.ws85{word-spacing:-1.859685pt;}
.ws27{word-spacing:-0.797008pt;}
.ws15{word-spacing:-0.069074pt;}
.ws9d{word-spacing:-0.058447pt;}
.ws55{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.ws36{word-spacing:0.000000pt;}
.ws95{word-spacing:1.434614pt;}
.ws30{word-spacing:8.767088pt;}
.ws6e{word-spacing:17.980621pt;}
.ws38{word-spacing:18.028442pt;}
.ws60{word-spacing:20.016334pt;}
.ws62{word-spacing:20.025003pt;}
.ws37{word-spacing:20.031468pt;}
.ws7c{word-spacing:20.297137pt;}
.ws13{word-spacing:23.560017pt;}
.ws6{word-spacing:23.974161pt;}
.ws5{word-spacing:24.037922pt;}
.ws78{word-spacing:24.101683pt;}
.ws4{word-spacing:24.840182pt;}
.ws14{word-spacing:25.832393pt;}
.ws44{word-spacing:26.040948pt;}
.ws61{word-spacing:40.092730pt;}
.ws8{word-spacing:68.440569pt;}
.ws7b{word-spacing:81.933359pt;}
.ws7a{word-spacing:88.888642pt;}
.ws6d{word-spacing:89.583699pt;}
.ws77{word-spacing:110.252773pt;}
.ws6c{word-spacing:141.973692pt;}
.ws7e{word-spacing:146.898869pt;}
.ws76{word-spacing:155.257158pt;}
.ws7f{word-spacing:230.403417pt;}
.ws81{word-spacing:231.025079pt;}
.ws80{word-spacing:263.677660pt;}
.ws7d{word-spacing:280.939275pt;}
.ws63{word-spacing:903.625260pt;}
._5{margin-left:-5.767698pt;}
._4{margin-left:-4.112589pt;}
._0{margin-left:-2.534502pt;}
._3{margin-left:-1.386803pt;}
._8{width:0.908595pt;}
._7{width:2.677965pt;}
._11{width:8.559875pt;}
._f{width:9.574741pt;}
._13{width:13.278189pt;}
._10{width:14.564005pt;}
._19{width:15.685139pt;}
._b{width:17.018802pt;}
._1{width:18.508218pt;}
._1d{width:19.712665pt;}
._14{width:21.141959pt;}
._9{width:22.323453pt;}
._a{width:23.798653pt;}
._d{width:24.972917pt;}
._c{width:26.620067pt;}
._12{width:27.698713pt;}
._e{width:28.633835pt;}
._17{width:31.938777pt;}
._25{width:33.681552pt;}
._1a{width:35.865360pt;}
._18{width:38.362655pt;}
._15{width:39.632545pt;}
._24{width:40.711187pt;}
._1f{width:42.509766pt;}
._6{width:48.873527pt;}
._26{width:55.689618pt;}
._1b{width:63.760640pt;}
._22{width:146.814199pt;}
._21{width:167.156017pt;}
._20{width:169.661759pt;}
._1c{width:191.512465pt;}
._1e{width:204.795932pt;}
._23{width:230.448620pt;}
._2{width:736.872480pt;}
._16{width:1257.506698pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs7{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:66.417600pt;}
.fs5{font-size:69.074133pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:52.800000pt;}
.y191{bottom:84.680000pt;}
.y35{bottom:84.681333pt;}
.y190{bottom:99.350667pt;}
.y158{bottom:99.836000pt;}
.y82{bottom:100.632000pt;}
.yec{bottom:100.676000pt;}
.yc5{bottom:100.690667pt;}
.yae{bottom:100.718667pt;}
.y11f{bottom:100.774667pt;}
.y34{bottom:100.877333pt;}
.yd0{bottom:100.882667pt;}
.y53{bottom:101.034667pt;}
.y122{bottom:113.913333pt;}
.y18f{bottom:114.021333pt;}
.y157{bottom:114.992000pt;}
.y81{bottom:116.584000pt;}
.yeb{bottom:116.670667pt;}
.yc4{bottom:116.700000pt;}
.yad{bottom:116.756000pt;}
.y33{bottom:117.074667pt;}
.ycf{bottom:117.084000pt;}
.y52{bottom:117.389333pt;}
.y11e{bottom:118.053333pt;}
.y18e{bottom:128.690667pt;}
.y156{bottom:130.146667pt;}
.y80{bottom:132.534667pt;}
.yc3{bottom:132.709333pt;}
.y32{bottom:133.270667pt;}
.yce{bottom:133.286667pt;}
.yac{bottom:133.549333pt;}
.y51{bottom:133.742667pt;}
.y11d{bottom:134.146667pt;}
.yea{bottom:138.025333pt;}
.y18d{bottom:143.361333pt;}
.y7f{bottom:148.486667pt;}
.yc2{bottom:148.718667pt;}
.y31{bottom:149.466667pt;}
.yab{bottom:149.586667pt;}
.y50{bottom:150.097333pt;}
.y11c{bottom:150.240000pt;}
.y155{bottom:150.482667pt;}
.ycd{bottom:151.513333pt;}
.y7e{bottom:164.438667pt;}
.yc1{bottom:164.728000pt;}
.yaa{bottom:165.625333pt;}
.y30{bottom:165.664000pt;}
.y18c{bottom:165.912000pt;}
.y11b{bottom:166.333333pt;}
.y4f{bottom:166.450667pt;}
.ycc{bottom:167.714667pt;}
.ye9{bottom:174.666667pt;}
.y7d{bottom:180.389333pt;}
.y18b{bottom:180.582667pt;}
.yc0{bottom:180.738667pt;}
.ya9{bottom:181.662667pt;}
.y2f{bottom:181.860000pt;}
.y11a{bottom:182.426667pt;}
.y4e{bottom:182.805333pt;}
.ycb{bottom:183.917333pt;}
.y154{bottom:187.822667pt;}
.ye8{bottom:190.661333pt;}
.y18a{bottom:195.252000pt;}
.y7c{bottom:196.341333pt;}
.ybf{bottom:196.748000pt;}
.ya8{bottom:197.700000pt;}
.y119{bottom:198.520000pt;}
.y4d{bottom:199.158667pt;}
.y2e{bottom:200.042667pt;}
.yca{bottom:200.118667pt;}
.y153{bottom:203.924000pt;}
.ye7{bottom:206.656000pt;}
.y189{bottom:209.922667pt;}
.y7b{bottom:212.292000pt;}
.ybe{bottom:212.757333pt;}
.ya7{bottom:214.493333pt;}
.y118{bottom:214.614667pt;}
.y2d{bottom:216.240000pt;}
.yc9{bottom:218.345333pt;}
.y4c{bottom:218.717333pt;}
.y152{bottom:220.025333pt;}
.ye6{bottom:222.650667pt;}
.y7a{bottom:228.244000pt;}
.ybd{bottom:228.766667pt;}
.ya6{bottom:230.532000pt;}
.y117{bottom:231.893333pt;}
.y2c{bottom:232.436000pt;}
.y188{bottom:232.473333pt;}
.yc8{bottom:234.548000pt;}
.y4b{bottom:235.070667pt;}
.y151{bottom:236.126667pt;}
.ye5{bottom:238.645333pt;}
.y79{bottom:244.196000pt;}
.ybc{bottom:244.776000pt;}
.ya5{bottom:246.569333pt;}
.y187{bottom:247.144000pt;}
.y116{bottom:247.986667pt;}
.y2b{bottom:248.633333pt;}
.yc7{bottom:250.749333pt;}
.y4a{bottom:251.425333pt;}
.y150{bottom:252.228000pt;}
.ye4{bottom:254.640000pt;}
.y78{bottom:260.146667pt;}
.y186{bottom:261.813333pt;}
.ya4{bottom:262.606667pt;}
.y115{bottom:264.080000pt;}
.y2a{bottom:264.829333pt;}
.ybb{bottom:266.360000pt;}
.y49{bottom:267.778667pt;}
.y14f{bottom:269.576000pt;}
.ye3{bottom:270.634667pt;}
.y77{bottom:276.098667pt;}
.y185{bottom:276.484000pt;}
.ya3{bottom:278.645333pt;}
.y114{bottom:280.173333pt;}
.y29{bottom:283.012000pt;}
.y48{bottom:284.133333pt;}
.y14e{bottom:285.677333pt;}
.ye2{bottom:286.629333pt;}
.y184{bottom:291.154667pt;}
.y76{bottom:292.049333pt;}
.ya2{bottom:294.682667pt;}
.y113{bottom:296.266667pt;}
.yc6{bottom:299.034667pt;}
.y28{bottom:299.208000pt;}
.y47{bottom:300.486667pt;}
.y14d{bottom:301.778667pt;}
.ye1{bottom:302.624000pt;}
.yba{bottom:303.880000pt;}
.y75{bottom:308.001333pt;}
.ya1{bottom:311.476000pt;}
.y112{bottom:312.360000pt;}
.y183{bottom:313.705333pt;}
.y27{bottom:315.405333pt;}
.y46{bottom:316.841333pt;}
.y14c{bottom:317.880000pt;}
.ye0{bottom:318.618667pt;}
.yb9{bottom:319.889333pt;}
.y74{bottom:323.953333pt;}
.ya0{bottom:327.513333pt;}
.y182{bottom:328.374667pt;}
.y111{bottom:328.453333pt;}
.y26{bottom:331.601333pt;}
.y45{bottom:333.194667pt;}
.y14b{bottom:333.981333pt;}
.ydf{bottom:335.034667pt;}
.yb8{bottom:335.898667pt;}
.y73{bottom:339.904000pt;}
.y181{bottom:343.045333pt;}
.y9f{bottom:343.552000pt;}
.y110{bottom:344.546667pt;}
.y25{bottom:347.798667pt;}
.y14a{bottom:350.082667pt;}
.yde{bottom:351.029333pt;}
.yb7{bottom:351.909333pt;}
.y44{bottom:352.753333pt;}
.y72{bottom:355.856000pt;}
.y180{bottom:357.716000pt;}
.y9e{bottom:359.589333pt;}
.y24{bottom:363.994667pt;}
.ydd{bottom:367.024000pt;}
.y10f{bottom:367.424000pt;}
.y149{bottom:367.430667pt;}
.yb6{bottom:367.918667pt;}
.y43{bottom:369.106667pt;}
.y71{bottom:371.806667pt;}
.y17f{bottom:372.385333pt;}
.y9d{bottom:375.626667pt;}
.y23{bottom:380.192000pt;}
.ydc{bottom:383.018667pt;}
.y148{bottom:383.532000pt;}
.yb5{bottom:383.928000pt;}
.y42{bottom:385.461333pt;}
.y17e{bottom:387.056000pt;}
.y70{bottom:387.758667pt;}
.y9c{bottom:391.665333pt;}
.y22{bottom:396.388000pt;}
.ydb{bottom:399.013333pt;}
.y147{bottom:399.633333pt;}
.yb4{bottom:399.937333pt;}
.y41{bottom:401.814667pt;}
.y6f{bottom:403.710667pt;}
.y9b{bottom:407.702667pt;}
.y17d{bottom:409.606667pt;}
.y10e{bottom:409.894667pt;}
.y21{bottom:414.570667pt;}
.yda{bottom:415.008000pt;}
.y146{bottom:415.734667pt;}
.yb3{bottom:415.946667pt;}
.y40{bottom:418.169333pt;}
.y6e{bottom:419.661333pt;}
.y9a{bottom:423.740000pt;}
.y17c{bottom:424.277333pt;}
.y10d{bottom:425.988000pt;}
.y20{bottom:430.766667pt;}
.yd9{bottom:431.002667pt;}
.y145{bottom:431.836000pt;}
.yb2{bottom:431.956000pt;}
.y3f{bottom:434.522667pt;}
.y6d{bottom:435.613333pt;}
.y17b{bottom:438.946667pt;}
.y99{bottom:440.533333pt;}
.y10c{bottom:442.081333pt;}
.y1f{bottom:446.964000pt;}
.yd8{bottom:446.997333pt;}
.y144{bottom:447.937333pt;}
.yb1{bottom:447.966667pt;}
.y3e{bottom:450.877333pt;}
.y17a{bottom:453.617333pt;}
.y6c{bottom:456.301333pt;}
.y98{bottom:456.572000pt;}
.y10b{bottom:458.174667pt;}
.y121{bottom:460.133333pt;}
.y1e{bottom:463.160000pt;}
.yd7{bottom:463.414667pt;}
.y143{bottom:464.038667pt;}
.y3d{bottom:467.230667pt;}
.y179{bottom:468.288000pt;}
.y97{bottom:472.609333pt;}
.y10a{bottom:474.268000pt;}
.y1d{bottom:479.357333pt;}
.yd6{bottom:479.409333pt;}
.y142{bottom:480.140000pt;}
.y3c{bottom:483.585333pt;}
.y96{bottom:488.646667pt;}
.y6b{bottom:490.392000pt;}
.y178{bottom:490.838667pt;}
.y109{bottom:491.548000pt;}
.yb0{bottom:492.200000pt;}
.y1c{bottom:495.553333pt;}
.y141{bottom:496.241333pt;}
.y3b{bottom:499.938667pt;}
.y95{bottom:504.685333pt;}
.y177{bottom:505.508000pt;}
.y6a{bottom:506.342667pt;}
.y108{bottom:507.641333pt;}
.y1b{bottom:511.750667pt;}
.y140{bottom:512.342667pt;}
.y3a{bottom:516.293333pt;}
.y176{bottom:520.178667pt;}
.y94{bottom:520.722667pt;}
.y69{bottom:522.294667pt;}
.y107{bottom:523.734667pt;}
.yd5{bottom:524.486667pt;}
.y1a{bottom:527.946667pt;}
.y13f{bottom:528.442667pt;}
.y39{bottom:532.646667pt;}
.y175{bottom:534.849333pt;}
.y93{bottom:536.760000pt;}
.y68{bottom:538.246667pt;}
.y106{bottom:539.828000pt;}
.y19{bottom:544.142667pt;}
.y13e{bottom:544.544000pt;}
.y38{bottom:549.001333pt;}
.y92{bottom:552.798667pt;}
.yd4{bottom:553.474667pt;}
.y67{bottom:554.197333pt;}
.y105{bottom:555.921333pt;}
.y174{bottom:557.400000pt;}
.y18{bottom:560.340000pt;}
.y13d{bottom:561.892000pt;}
.y37{bottom:568.558667pt;}
.y91{bottom:568.836000pt;}
.yd3{bottom:569.414667pt;}
.y66{bottom:570.149333pt;}
.y173{bottom:572.069333pt;}
.y104{bottom:573.201333pt;}
.y13c{bottom:577.993333pt;}
.y17{bottom:584.806667pt;}
.y36{bottom:584.913333pt;}
.y90{bottom:585.629333pt;}
.y65{bottom:586.100000pt;}
.y172{bottom:586.740000pt;}
.y103{bottom:589.294667pt;}
.yd2{bottom:592.024000pt;}
.y13b{bottom:594.094667pt;}
.y171{bottom:601.410667pt;}
.y8f{bottom:601.666667pt;}
.y64{bottom:602.052000pt;}
.y102{bottom:605.388000pt;}
.y13a{bottom:611.442667pt;}
.y8e{bottom:617.705333pt;}
.y63{bottom:618.004000pt;}
.y101{bottom:621.481333pt;}
.y170{bottom:623.961333pt;}
.y16{bottom:625.576000pt;}
.y139{bottom:627.544000pt;}
.yd1{bottom:629.129333pt;}
.y62{bottom:633.954667pt;}
.y8d{bottom:634.497333pt;}
.y100{bottom:637.574667pt;}
.y16f{bottom:638.630667pt;}
.y138{bottom:643.645333pt;}
.y15{bottom:649.688000pt;}
.y61{bottom:649.906667pt;}
.y8c{bottom:650.536000pt;}
.y16e{bottom:653.301333pt;}
.yff{bottom:653.668000pt;}
.y137{bottom:660.993333pt;}
.y14{bottom:665.628000pt;}
.y60{bottom:665.857333pt;}
.y8b{bottom:666.573333pt;}
.y16d{bottom:667.972000pt;}
.yfd{bottom:670.946667pt;}
.yfe{bottom:675.768000pt;}
.y136{bottom:677.094667pt;}
.y13{bottom:681.568000pt;}
.y5f{bottom:681.809333pt;}
.y8a{bottom:682.610667pt;}
.y16c{bottom:682.641333pt;}
.yfc{bottom:687.041333pt;}
.y135{bottom:693.196000pt;}
.y12{bottom:697.509333pt;}
.y5e{bottom:697.761333pt;}
.y89{bottom:698.649333pt;}
.yfb{bottom:703.134667pt;}
.y16b{bottom:705.192000pt;}
.y134{bottom:710.544000pt;}
.y11{bottom:713.449333pt;}
.y5d{bottom:713.712000pt;}
.y88{bottom:714.686667pt;}
.yfa{bottom:719.228000pt;}
.y16a{bottom:719.862667pt;}
.y133{bottom:726.645333pt;}
.y10{bottom:729.389333pt;}
.y5c{bottom:729.664000pt;}
.y87{bottom:730.724000pt;}
.y169{bottom:734.533333pt;}
.y120{bottom:737.208000pt;}
.y132{bottom:742.746667pt;}
.yf{bottom:745.329333pt;}
.y5b{bottom:745.614667pt;}
.y86{bottom:746.762667pt;}
.y168{bottom:749.202667pt;}
.yaf{bottom:755.410667pt;}
.y131{bottom:758.848000pt;}
.ye{bottom:761.269333pt;}
.y5a{bottom:761.566667pt;}
.y85{bottom:762.800000pt;}
.y167{bottom:763.873333pt;}
.yf9{bottom:765.833333pt;}
.y130{bottom:774.949333pt;}
.yd{bottom:777.209333pt;}
.y59{bottom:777.518667pt;}
.y166{bottom:778.544000pt;}
.y84{bottom:778.838667pt;}
.yf8{bottom:780.445333pt;}
.y12f{bottom:791.050667pt;}
.yc{bottom:793.150667pt;}
.y165{bottom:793.213333pt;}
.y58{bottom:793.469333pt;}
.y19f{bottom:805.037333pt;}
.y12e{bottom:807.152000pt;}
.yb{bottom:809.090667pt;}
.yf7{bottom:809.433333pt;}
.y57{bottom:809.508000pt;}
.y164{bottom:815.764000pt;}
.y19e{bottom:819.649333pt;}
.y12d{bottom:823.253333pt;}
.y83{bottom:824.582667pt;}
.ya{bottom:825.030667pt;}
.yf6{bottom:825.373333pt;}
.y56{bottom:825.460000pt;}
.y163{bottom:830.434667pt;}
.y19d{bottom:834.261333pt;}
.y12c{bottom:840.601333pt;}
.y9{bottom:840.970667pt;}
.yf5{bottom:841.313333pt;}
.y162{bottom:845.105333pt;}
.y19c{bottom:848.873333pt;}
.y12b{bottom:856.702667pt;}
.yf4{bottom:857.253333pt;}
.y161{bottom:859.774667pt;}
.y19b{bottom:863.485333pt;}
.y55{bottom:869.868000pt;}
.y12a{bottom:872.804000pt;}
.yf3{bottom:873.194667pt;}
.y8{bottom:874.132000pt;}
.y160{bottom:882.325333pt;}
.y19a{bottom:882.916000pt;}
.y7{bottom:887.146667pt;}
.y129{bottom:888.905333pt;}
.yf2{bottom:895.804000pt;}
.y15f{bottom:896.996000pt;}
.y199{bottom:897.528000pt;}
.y6{bottom:903.086667pt;}
.y128{bottom:905.006667pt;}
.y198{bottom:912.140000pt;}
.y15e{bottom:919.546667pt;}
.y127{bottom:921.108000pt;}
.y197{bottom:926.752000pt;}
.y5{bottom:932.917333pt;}
.y15d{bottom:934.217333pt;}
.yf1{bottom:934.437333pt;}
.y126{bottom:937.209333pt;}
.y196{bottom:941.364000pt;}
.y15c{bottom:948.886667pt;}
.yf0{bottom:949.049333pt;}
.y125{bottom:960.205333pt;}
.y195{bottom:960.794667pt;}
.y15b{bottom:971.437333pt;}
.y4{bottom:973.982667pt;}
.y194{bottom:975.406667pt;}
.yef{bottom:978.037333pt;}
.y15a{bottom:986.108000pt;}
.y193{bottom:990.018667pt;}
.y3{bottom:992.580000pt;}
.yee{bottom:993.977333pt;}
.y159{bottom:1000.778667pt;}
.y124{bottom:1003.141333pt;}
.y192{bottom:1004.630667pt;}
.yed{bottom:1016.586667pt;}
.y123{bottom:1019.242667pt;}
.y1{bottom:1038.636000pt;}
.y2{bottom:1053.248000pt;}
.h7{height:19.765848pt;}
.hb{height:24.696550pt;}
.hd{height:32.326861pt;}
.h2{height:33.187635pt;}
.h4{height:35.865600pt;}
.h3{height:37.204582pt;}
.h9{height:39.850400pt;}
.h8{height:41.338148pt;}
.hc{height:45.472129pt;}
.h5{height:46.492320pt;}
.h6{height:49.606110pt;}
.ha{height:53.739676pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:67.200000pt;}
.x14{left:80.482667pt;}
.x1{left:86.400000pt;}
.x22{left:92.297333pt;}
.x3a{left:94.276000pt;}
.x39{left:95.254667pt;}
.x15{left:98.441333pt;}
.x7{left:100.561333pt;}
.x16{left:105.084000pt;}
.x6{left:111.998667pt;}
.x17{left:113.136000pt;}
.x1f{left:114.200000pt;}
.x21{left:115.786667pt;}
.x3{left:118.557333pt;}
.x18{left:119.777333pt;}
.x20{left:128.885333pt;}
.x1e{left:135.330667pt;}
.x8{left:200.765333pt;}
.x9{left:207.406667pt;}
.x5{left:213.530667pt;}
.x32{left:227.033333pt;}
.x4{left:230.300000pt;}
.xc{left:280.450667pt;}
.xd{left:287.092000pt;}
.x2f{left:291.818667pt;}
.x1c{left:303.217333pt;}
.xa{left:313.605333pt;}
.xb{left:320.246667pt;}
.x31{left:327.218667pt;}
.x30{left:336.889333pt;}
.x2{left:398.828000pt;}
.x1a{left:401.650667pt;}
.x38{left:409.050667pt;}
.x33{left:410.506667pt;}
.x26{left:411.801333pt;}
.x1b{left:414.934667pt;}
.xe{left:420.850667pt;}
.x3b{left:429.705333pt;}
.xf{left:434.133333pt;}
.x27{left:437.706667pt;}
.x2e{left:441.501333pt;}
.x23{left:448.650667pt;}
.x25{left:450.237333pt;}
.x19{left:452.264000pt;}
.x24{left:463.336000pt;}
.x1d{left:486.178667pt;}
.x2c{left:498.465333pt;}
.x2d{left:511.217333pt;}
.x28{left:513.100000pt;}
.x29{left:523.177333pt;}
.x3c{left:542.682667pt;}
.x36{left:561.933333pt;}
.x37{left:576.080000pt;}
.x34{left:648.169333pt;}
.x35{left:662.316000pt;}
.x10{left:676.896000pt;}
.x11{left:683.537333pt;}
.x2a{left:690.401333pt;}
.x2b{left:703.685333pt;}
.x12{left:708.070667pt;}
}




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