
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6664495ffa6ed846213f19a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9a9e9a0353a96e021b210656.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b6fab669bf144dc3de55f675.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_101b8f08d632a43389dcb670.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747000;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_0aec8a2ce22c58df706eb7af.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dd403dbee4c0e2f030abe720.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_3adb796c3c6d0f56c1b88d35.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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4a32910336303fd50008dab1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.488000;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_183584fbbe0054f1924adfcf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.059000;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_f5f4d9e39dba007dc6f76b3b.woff2')format("woff");}.fff{font-family:fff;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fc276b5cc031a4d1718e55ce.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_92c4cb51d261d56daf1f929c.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m1{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);}
.m13{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);}
.m9{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.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);}
.md{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);}
.me{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);}
.m1b{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.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);}
.m2{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);}
.m14{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);}
.m18{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);}
.m26{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);}
.m1c{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);}
.m23{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);}
.m20{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);}
.m19{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);}
.m16{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);}
.m27{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);}
.m17{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);}
.m22{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);}
.m21{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);}
.m5{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);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1a{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);}
.m8{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);}
.m1f{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);}
.m11{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);}
.mf{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);}
.m25{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);}
.mb{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);}
.m10{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);}
.m7{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);}
.m12{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);}
.m1e{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);}
.m28{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-36.828000px;}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.398000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:29.808000px;}
.v7{vertical-align:32.436000px;}
.v3{vertical-align:36.828000px;}
.lsf{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000059px;}
.ls49{letter-spacing:0.000214px;}
.ls11{letter-spacing:0.000309px;}
.ls5c{letter-spacing:0.000447px;}
.ls1b{letter-spacing:0.000500px;}
.ls13{letter-spacing:0.000649px;}
.ls57{letter-spacing:0.000712px;}
.ls4c{letter-spacing:0.000800px;}
.ls35{letter-spacing:0.000990px;}
.ls3e{letter-spacing:0.001465px;}
.lsa{letter-spacing:0.001518px;}
.ls9{letter-spacing:0.001890px;}
.ls33{letter-spacing:0.001996px;}
.ls34{letter-spacing:0.002181px;}
.ls14{letter-spacing:0.002224px;}
.ls58{letter-spacing:0.002338px;}
.ls12{letter-spacing:0.002502px;}
.ls59{letter-spacing:0.002573px;}
.ls1a{letter-spacing:0.002719px;}
.ls3{letter-spacing:0.002725px;}
.ls61{letter-spacing:0.002818px;}
.ls60{letter-spacing:0.002841px;}
.ls31{letter-spacing:0.002870px;}
.ls16{letter-spacing:0.002958px;}
.ls37{letter-spacing:0.003394px;}
.lse{letter-spacing:0.003488px;}
.lsc{letter-spacing:0.003494px;}
.ls55{letter-spacing:0.003564px;}
.ls6{letter-spacing:0.003859px;}
.ls15{letter-spacing:0.004099px;}
.ls5a{letter-spacing:0.004168px;}
.ls1c{letter-spacing:0.004435px;}
.ls5d{letter-spacing:0.004800px;}
.ls4a{letter-spacing:0.005415px;}
.ls4f{letter-spacing:0.537859px;}
.ls10{letter-spacing:1.275394px;}
.ls8{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls18{letter-spacing:10.269307px;}
.ls5b{letter-spacing:11.248359px;}
.ls2d{letter-spacing:11.951081px;}
.ls48{letter-spacing:11.951700px;}
.ls20{letter-spacing:11.952019px;}
.lsd{letter-spacing:11.954850px;}
.ls1f{letter-spacing:11.957081px;}
.ls32{letter-spacing:11.957700px;}
.ls2e{letter-spacing:11.958019px;}
.ls5f{letter-spacing:12.013665px;}
.ls22{letter-spacing:12.063185px;}
.ls24{letter-spacing:12.840736px;}
.ls54{letter-spacing:13.317796px;}
.ls56{letter-spacing:13.348359px;}
.ls3d{letter-spacing:13.424994px;}
.ls3b{letter-spacing:13.425666px;}
.ls3a{letter-spacing:13.425787px;}
.ls3c{letter-spacing:13.431548px;}
.ls4d{letter-spacing:13.442184px;}
.ls4e{letter-spacing:13.448400px;}
.ls52{letter-spacing:13.454400px;}
.ls53{letter-spacing:13.657216px;}
.ls50{letter-spacing:13.989859px;}
.ls5e{letter-spacing:14.014102px;}
.ls21{letter-spacing:14.766029px;}
.ls2c{letter-spacing:14.787572px;}
.ls28{letter-spacing:14.817245px;}
.lsb{letter-spacing:14.822873px;}
.ls41{letter-spacing:14.842459px;}
.ls26{letter-spacing:14.940124px;}
.ls25{letter-spacing:14.943767px;}
.ls4{letter-spacing:14.944200px;}
.ls30{letter-spacing:14.944638px;}
.ls1d{letter-spacing:14.946124px;}
.ls36{letter-spacing:14.980003px;}
.ls17{letter-spacing:14.998359px;}
.ls29{letter-spacing:15.008083px;}
.ls2a{letter-spacing:15.087203px;}
.ls27{letter-spacing:15.228491px;}
.ls2b{letter-spacing:15.277471px;}
.ls19{letter-spacing:15.680712px;}
.ls42{letter-spacing:15.845418px;}
.ls40{letter-spacing:16.298359px;}
.ls3f{letter-spacing:16.318739px;}
.ls46{letter-spacing:16.419783px;}
.ls47{letter-spacing:16.425666px;}
.ls45{letter-spacing:16.425787px;}
.ls2f{letter-spacing:16.798359px;}
.ls44{letter-spacing:17.398359px;}
.ls4b{letter-spacing:17.432753px;}
.ls43{letter-spacing:18.074829px;}
.ls23{letter-spacing:18.974829px;}
.ls51{letter-spacing:19.762165px;}
.ls0{letter-spacing:57.415200px;}
.ls5{letter-spacing:70.236600px;}
.ls7{letter-spacing:72.353510px;}
.ls2{letter-spacing:72.355200px;}
.ls39{letter-spacing:130.624090px;}
.ls1e{letter-spacing:487.196870px;}
.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;}
}
.wsd{word-spacing:-17.394700px;}
.ws5{word-spacing:-15.655334px;}
.ws3{word-spacing:-14.943900px;}
.ws6{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws39{word-spacing:-4.662497px;}
.ws1f{word-spacing:-3.586536px;}
.ws1e{word-spacing:-3.526760px;}
.ws20{word-spacing:-2.929004px;}
.ws50{word-spacing:-2.869229px;}
.wsb2{word-spacing:-2.851315px;}
.wsb3{word-spacing:-2.797517px;}
.wsb4{word-spacing:-2.205734px;}
.ws3c{word-spacing:-2.092146px;}
.ws72{word-spacing:-2.032370px;}
.wsa{word-spacing:-1.908367px;}
.wsc3{word-spacing:-1.882944px;}
.ws52{word-spacing:-1.613941px;}
.wsaa{word-spacing:-1.560154px;}
.wsc5{word-spacing:-1.452557px;}
.ws9{word-spacing:-1.322630px;}
.ws1d{word-spacing:-1.195512px;}
.wsbc{word-spacing:-1.183565px;}
.ws11{word-spacing:-1.135736px;}
.wsaf{word-spacing:-1.075968px;}
.wscc{word-spacing:-0.968371px;}
.ws5a{word-spacing:-0.956410px;}
.ws54{word-spacing:-0.896634px;}
.ws5b{word-spacing:-0.657532px;}
.ws53{word-spacing:-0.597756px;}
.ws9e{word-spacing:-0.484186px;}
.ws65{word-spacing:-0.322790px;}
.ws2d{word-spacing:-0.298878px;}
.ws87{word-spacing:-0.268992px;}
.ws19{word-spacing:-0.239102px;}
.ws9b{word-spacing:-0.215194px;}
.ws15{word-spacing:-0.179327px;}
.ws83{word-spacing:-0.161395px;}
.ws12{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.107597px;}
.ws16{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws25{word-spacing:-0.047821px;}
.wsa0{word-spacing:-0.026006px;}
.ws45{word-spacing:-0.003679px;}
.ws6a{word-spacing:-0.001570px;}
.ws71{word-spacing:-0.001498px;}
.ws59{word-spacing:-0.000866px;}
.ws0{word-spacing:0.000000px;}
.ws5c{word-spacing:0.053798px;}
.wsb{word-spacing:0.059776px;}
.ws98{word-spacing:0.107597px;}
.ws14{word-spacing:0.119551px;}
.ws94{word-spacing:0.161395px;}
.ws27{word-spacing:0.179327px;}
.ws7{word-spacing:0.215194px;}
.wse{word-spacing:0.239102px;}
.ws90{word-spacing:0.268992px;}
.ws55{word-spacing:0.283953px;}
.ws17{word-spacing:0.298878px;}
.ws22{word-spacing:0.358654px;}
.ws84{word-spacing:0.376589px;}
.ws78{word-spacing:0.418429px;}
.ws10{word-spacing:0.478205px;}
.wsc0{word-spacing:0.537984px;}
.wsc1{word-spacing:0.591782px;}
.ws21{word-spacing:0.597756px;}
.ws42{word-spacing:0.657532px;}
.ws3a{word-spacing:0.717307px;}
.wsc8{word-spacing:0.753178px;}
.wsc9{word-spacing:0.806976px;}
.ws6c{word-spacing:0.896634px;}
.ws31{word-spacing:0.956410px;}
.ws38{word-spacing:1.016185px;}
.ws1a{word-spacing:1.195512px;}
.ws37{word-spacing:1.315063px;}
.ws6b{word-spacing:1.374839px;}
.ws66{word-spacing:1.434618px;}
.ws68{word-spacing:1.447364px;}
.ws69{word-spacing:1.449874px;}
.ws67{word-spacing:1.482439px;}
.ws8a{word-spacing:1.775347px;}
.wsbd{word-spacing:1.829146px;}
.ws58{word-spacing:1.853044px;}
.ws77{word-spacing:1.912819px;}
.ws89{word-spacing:2.044339px;}
.ws85{word-spacing:2.151936px;}
.wsa3{word-spacing:2.205734px;}
.ws43{word-spacing:2.211697px;}
.ws86{word-spacing:2.259533px;}
.wsf{word-spacing:2.271473px;}
.ws29{word-spacing:2.331248px;}
.ws2a{word-spacing:2.450800px;}
.ws2b{word-spacing:2.510575px;}
.ws3b{word-spacing:2.809453px;}
.ws18{word-spacing:2.869229px;}
.ws74{word-spacing:2.988780px;}
.ws2c{word-spacing:3.108331px;}
.ws8b{word-spacing:3.120307px;}
.wsb5{word-spacing:3.281702px;}
.ws41{word-spacing:3.347434px;}
.ws40{word-spacing:3.407209px;}
.ws35{word-spacing:3.466985px;}
.ws7a{word-spacing:3.885414px;}
.ws79{word-spacing:3.945190px;}
.ws8d{word-spacing:3.981082px;}
.ws51{word-spacing:4.004965px;}
.ws80{word-spacing:4.184292px;}
.wsa5{word-spacing:4.196275px;}
.ws7c{word-spacing:4.244068px;}
.ws44{word-spacing:4.303843px;}
.wsb8{word-spacing:4.357670px;}
.ws6d{word-spacing:4.447316px;}
.ws6f{word-spacing:4.451645px;}
.ws6e{word-spacing:4.492476px;}
.ws70{word-spacing:4.495136px;}
.ws32{word-spacing:4.901599px;}
.ws34{word-spacing:4.961375px;}
.ws91{word-spacing:5.003251px;}
.ws7b{word-spacing:5.140702px;}
.wsb0{word-spacing:5.310518px;}
.wsbb{word-spacing:5.376346px;}
.wsab{word-spacing:5.377987px;}
.ws88{word-spacing:5.378822px;}
.ws2f{word-spacing:5.379804px;}
.ws8{word-spacing:5.379840px;}
.ws9f{word-spacing:5.381443px;}
.wsad{word-spacing:5.381885px;}
.wsca{word-spacing:5.449659px;}
.wsbf{word-spacing:5.541235px;}
.ws7d{word-spacing:5.678682px;}
.ws75{word-spacing:5.858009px;}
.ws1b{word-spacing:5.971475px;}
.ws1c{word-spacing:5.977560px;}
.ws73{word-spacing:6.037336px;}
.ws30{word-spacing:6.097111px;}
.ws28{word-spacing:6.276438px;}
.ws93{word-spacing:6.294413px;}
.ws2e{word-spacing:6.336214px;}
.ws76{word-spacing:6.515540px;}
.ws7e{word-spacing:6.694867px;}
.ws95{word-spacing:6.778598px;}
.ws57{word-spacing:6.814418px;}
.wsc{word-spacing:7.651277px;}
.ws81{word-spacing:8.769139px;}
.ws7f{word-spacing:8.787013px;}
.wsc6{word-spacing:9.468518px;}
.ws8f{word-spacing:10.221696px;}
.ws82{word-spacing:10.490688px;}
.ws3f{word-spacing:10.580281px;}
.wsc4{word-spacing:11.512858px;}
.wsa6{word-spacing:12.050842px;}
.ws33{word-spacing:12.313774px;}
.wsb1{word-spacing:12.319834px;}
.wsba{word-spacing:13.126810px;}
.ws9c{word-spacing:13.180608px;}
.ws9a{word-spacing:13.234406px;}
.wsa8{word-spacing:13.288205px;}
.wsb9{word-spacing:13.387382px;}
.ws99{word-spacing:13.389178px;}
.ws13{word-spacing:13.389734px;}
.wsae{word-spacing:13.389965px;}
.wscd{word-spacing:13.391098px;}
.wsb7{word-spacing:13.391606px;}
.ws96{word-spacing:13.392499px;}
.wsa7{word-spacing:13.392518px;}
.wsc7{word-spacing:13.394102px;}
.wsa9{word-spacing:13.394640px;}
.wsac{word-spacing:13.394755px;}
.ws8e{word-spacing:13.395802px;}
.wsa1{word-spacing:13.503398px;}
.ws97{word-spacing:13.557197px;}
.wsc2{word-spacing:13.987584px;}
.ws36{word-spacing:14.884124px;}
.ws3e{word-spacing:15.123227px;}
.wsbe{word-spacing:15.224947px;}
.wsa4{word-spacing:15.655334px;}
.ws8c{word-spacing:16.516109px;}
.ws23{word-spacing:16.689389px;}
.ws92{word-spacing:18.399053px;}
.wsb6{word-spacing:18.771408px;}
.ws9d{word-spacing:18.771984px;}
.wsa2{word-spacing:18.775642px;}
.wscb{word-spacing:18.829440px;}
.ws3d{word-spacing:20.861684px;}
.ws56{word-spacing:91.833869px;}
.ws64{word-spacing:113.398022px;}
.ws5f{word-spacing:128.197200px;}
.ws62{word-spacing:129.541200px;}
.ws5d{word-spacing:137.078323px;}
.ws60{word-spacing:143.641728px;}
.ws63{word-spacing:157.091328px;}
.ws5e{word-spacing:159.835046px;}
.ws61{word-spacing:173.284646px;}
.ws4c{word-spacing:248.602406px;}
.ws48{word-spacing:293.954458px;}
.ws4a{word-spacing:323.359670px;}
.ws4f{word-spacing:332.043725px;}
.ws4e{word-spacing:334.091491px;}
.ws4b{word-spacing:353.240294px;}
.ws47{word-spacing:383.582592px;}
.ws49{word-spacing:389.177626px;}
.ws4d{word-spacing:391.383360px;}
.ws26{word-spacing:430.815785px;}
.ws46{word-spacing:799.659418px;}
._2{margin-left:-11.943245px;}
._7{margin-left:-7.813712px;}
._5{margin-left:-6.635092px;}
._8{margin-left:-5.308153px;}
._6{margin-left:-3.981082px;}
._a{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._b{width:1.091170px;}
._3{width:3.000389px;}
._0{width:10.165172px;}
._12{width:11.955150px;}
._2a{width:13.329959px;}
._46{width:14.994749px;}
._11{width:16.413478px;}
._54{width:17.506694px;}
._9{width:18.829440px;}
._10{width:20.084602px;}
._e{width:21.132592px;}
._16{width:22.953830px;}
._f{width:25.105752px;}
._d{width:26.583068px;}
._14{width:28.871615px;}
._15{width:30.577802px;}
._18{width:32.475225px;}
._1a{width:34.370970px;}
._17{width:36.597701px;}
._51{width:38.028741px;}
._19{width:40.288754px;}
._39{width:41.890974px;}
._c{width:44.353495px;}
._56{width:45.818348px;}
._52{width:49.422841px;}
._4{width:54.402691px;}
._55{width:57.940877px;}
._53{width:61.868160px;}
._4a{width:93.071232px;}
._4b{width:104.745485px;}
._50{width:121.691981px;}
._41{width:122.929344px;}
._4d{width:128.793370px;}
._47{width:137.185920px;}
._4e{width:170.540928px;}
._43{width:173.284646px;}
._49{width:177.749914px;}
._44{width:186.158947px;}
._24{width:192.383078px;}
._2c{width:193.512845px;}
._48{width:197.386330px;}
._40{width:203.372438px;}
._4f{width:216.269568px;}
._37{width:222.187392px;}
._4c{width:223.478554px;}
._34{width:229.342579px;}
._45{width:231.890227px;}
._2e{width:236.820557px;}
._42{width:239.042602px;}
._2b{width:248.763802px;}
._35{width:250.270157px;}
._3e{width:262.535885px;}
._32{width:263.719757px;}
._36{width:271.090138px;}
._2d{width:278.245325px;}
._2f{width:283.840358px;}
._26{width:288.413222px;}
._33{width:297.289958px;}
._27{width:301.916621px;}
._38{width:304.068557px;}
._29{width:311.654131px;}
._30{width:317.518157px;}
._3a{width:331.317264px;}
._31{width:337.423565px;}
._1f{width:341.081856px;}
._3f{width:342.297293px;}
._3c{width:360.266496px;}
._22{width:362.541542px;}
._28{width:372.176131px;}
._21{width:374.275469px;}
._3d{width:375.404842px;}
._3b{width:378.310349px;}
._1e{width:385.842125px;}
._1c{width:398.538547px;}
._1d{width:417.260390px;}
._25{width:458.147174px;}
._23{width:629.550576px;}
._20{width:868.228685px;}
._1b{width:923.449536px;}
._13{width:1563.366793px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.y19{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y34{bottom:63.780000px;}
.y33{bottom:108.612000px;}
.y168{bottom:108.957000px;}
.y85{bottom:115.800000px;}
.y110{bottom:122.940000px;}
.y167{bottom:128.325000px;}
.y32{bottom:128.875500px;}
.y134{bottom:128.877000px;}
.ye7{bottom:134.247000px;}
.y84{bottom:136.063500px;}
.yb3{bottom:139.170000px;}
.y63{bottom:142.579500px;}
.y10f{bottom:143.205000px;}
.y166{bottom:147.691500px;}
.y133{bottom:148.243500px;}
.y31{bottom:149.139000px;}
.ye6{bottom:154.510500px;}
.y83{bottom:156.328500px;}
.yb2{bottom:159.435000px;}
.y62{bottom:162.843000px;}
.y10e{bottom:163.468500px;}
.y165{bottom:167.059500px;}
.y132{bottom:167.611500px;}
.y30{bottom:169.404000px;}
.ye5{bottom:174.775500px;}
.y82{bottom:176.592000px;}
.yb1{bottom:179.698500px;}
.y61{bottom:183.108000px;}
.y10d{bottom:183.732000px;}
.y164{bottom:186.427500px;}
.y130{bottom:186.978000px;}
.y131{bottom:186.979500px;}
.y2f{bottom:189.667500px;}
.ye4{bottom:195.039000px;}
.y81{bottom:196.855500px;}
.yb0{bottom:199.963500px;}
.y60{bottom:203.371500px;}
.y10c{bottom:203.997000px;}
.y163{bottom:205.794000px;}
.y12f{bottom:206.346000px;}
.y2e{bottom:209.932500px;}
.ye3{bottom:215.302500px;}
.y80{bottom:217.120500px;}
.y5f{bottom:223.635000px;}
.y10b{bottom:224.260500px;}
.y162{bottom:225.162000px;}
.y12e{bottom:225.714000px;}
.y2d{bottom:230.196000px;}
.ye2{bottom:235.567500px;}
.y7f{bottom:237.384000px;}
.yaf{bottom:243.091500px;}
.y5e{bottom:243.900000px;}
.y10a{bottom:244.525500px;}
.y161{bottom:244.528500px;}
.y12d{bottom:245.080500px;}
.ye1{bottom:255.831000px;}
.y7e{bottom:257.649000px;}
.y2c{bottom:259.426500px;}
.y160{bottom:263.896500px;}
.y12c{bottom:264.448500px;}
.y109{bottom:264.789000px;}
.yae{bottom:265.149000px;}
.y5d{bottom:273.130500px;}
.yad{bottom:281.944500px;}
.y15f{bottom:283.264500px;}
.y12b{bottom:283.816500px;}
.y108{bottom:285.052500px;}
.ye0{bottom:285.061500px;}
.y7d{bottom:286.879500px;}
.yac{bottom:298.740000px;}
.y15e{bottom:302.631000px;}
.y12a{bottom:303.183000px;}
.y107{bottom:305.317500px;}
.y5c{bottom:307.950000px;}
.yab{bottom:315.535500px;}
.y7c{bottom:321.699000px;}
.y15d{bottom:321.999000px;}
.y129{bottom:322.551000px;}
.ydf{bottom:324.813000px;}
.y106{bottom:325.581000px;}
.y5b{bottom:328.213500px;}
.yaa{bottom:332.331000px;}
.y2b{bottom:335.842500px;}
.yde{bottom:339.009000px;}
.y15c{bottom:341.367000px;}
.y128{bottom:341.917500px;}
.y105{bottom:345.846000px;}
.y5a{bottom:348.478500px;}
.ya9{bottom:349.128000px;}
.y7b{bottom:356.518500px;}
.y15b{bottom:360.733500px;}
.ydd{bottom:361.068000px;}
.y127{bottom:361.285500px;}
.y104{bottom:366.109500px;}
.ydc{bottom:368.655000px;}
.y59{bottom:368.742000px;}
.yda{bottom:370.410000px;}
.ya8{bottom:373.125000px;}
.y2a{bottom:374.038500px;}
.y7a{bottom:376.782000px;}
.ydb{bottom:377.863500px;}
.y15a{bottom:380.101500px;}
.y126{bottom:380.653500px;}
.y103{bottom:386.373000px;}
.y58{bottom:389.005500px;}
.y29{bottom:394.303500px;}
.yd9{bottom:394.659000px;}
.y79{bottom:397.045500px;}
.y159{bottom:399.468000px;}
.y125{bottom:400.020000px;}
.yd8{bottom:402.246000px;}
.yd7{bottom:404.002500px;}
.ya7{bottom:404.745000px;}
.y102{bottom:406.638000px;}
.y28{bottom:414.567000px;}
.y78{bottom:417.310500px;}
.y57{bottom:418.236000px;}
.y158{bottom:418.836000px;}
.y124{bottom:419.388000px;}
.y101{bottom:426.901500px;}
.yd6{bottom:428.250000px;}
.y27{bottom:434.832000px;}
.yd5{bottom:435.838500px;}
.yd4{bottom:436.936500px;}
.y77{bottom:437.574000px;}
.y157{bottom:438.204000px;}
.y123{bottom:438.754500px;}
.ya6{bottom:441.856500px;}
.y100{bottom:447.165000px;}
.y56{bottom:453.055500px;}
.y26{bottom:455.095500px;}
.y156{bottom:457.570500px;}
.y76{bottom:457.839000px;}
.y122{bottom:458.122500px;}
.yd3{bottom:461.841000px;}
.ya5{bottom:462.120000px;}
.yff{bottom:467.430000px;}
.yd2{bottom:469.429500px;}
.yd0{bottom:471.184500px;}
.y25{bottom:475.359000px;}
.y155{bottom:476.938500px;}
.y75{bottom:478.102500px;}
.yd1{bottom:478.636500px;}
.ya4{bottom:482.385000px;}
.y121{bottom:486.456000px;}
.yfe{bottom:487.693500px;}
.y55{bottom:487.875000px;}
.ycf{bottom:495.432000px;}
.y24{bottom:495.624000px;}
.y154{bottom:496.305000px;}
.y74{bottom:498.366000px;}
.ya3{bottom:502.648500px;}
.yce{bottom:503.020500px;}
.ycd{bottom:504.775500px;}
.yfd{bottom:507.958500px;}
.y54{bottom:508.140000px;}
.y153{bottom:515.673000px;}
.y23{bottom:515.887500px;}
.y73{bottom:518.631000px;}
.ya2{bottom:522.913500px;}
.y120{bottom:525.909000px;}
.yfc{bottom:528.222000px;}
.y53{bottom:528.403500px;}
.ycc{bottom:529.023000px;}
.y152{bottom:535.041000px;}
.y22{bottom:536.152500px;}
.ycb{bottom:536.611500px;}
.y72{bottom:538.894500px;}
.y11f{bottom:541.107000px;}
.ya1{bottom:543.177000px;}
.yfb{bottom:548.485500px;}
.y52{bottom:548.667000px;}
.y151{bottom:554.407500px;}
.y11e{bottom:556.305000px;}
.y21{bottom:556.416000px;}
.y71{bottom:559.159500px;}
.ya0{bottom:563.440500px;}
.yfa{bottom:568.750500px;}
.y51{bottom:568.932000px;}
.yca{bottom:569.817000px;}
.y150{bottom:573.775500px;}
.y20{bottom:576.679500px;}
.y70{bottom:579.423000px;}
.y11d{bottom:580.468500px;}
.y9f{bottom:583.705500px;}
.yf9{bottom:589.014000px;}
.y50{bottom:589.195500px;}
.y14f{bottom:593.142000px;}
.y11c{bottom:595.666500px;}
.y1f{bottom:596.944500px;}
.y6f{bottom:599.686500px;}
.yc9{bottom:601.437000px;}
.y9e{bottom:603.969000px;}
.yf8{bottom:609.279000px;}
.y4f{bottom:609.460500px;}
.y14e{bottom:612.510000px;}
.y1e{bottom:617.208000px;}
.y16b{bottom:618.448500px;}
.y11b{bottom:619.831500px;}
.y6e{bottom:619.951500px;}
.yc8{bottom:620.668500px;}
.y9d{bottom:624.234000px;}
.yf7{bottom:629.542500px;}
.y4e{bottom:629.724000px;}
.y14d{bottom:631.878000px;}
.y1d{bottom:637.473000px;}
.y16a{bottom:637.816500px;}
.y6d{bottom:640.215000px;}
.y11a{bottom:643.996500px;}
.yf6{bottom:649.806000px;}
.y4d{bottom:649.987500px;}
.y14c{bottom:651.244500px;}
.y9c{bottom:653.463000px;}
.y169{bottom:657.183000px;}
.y1c{bottom:657.736500px;}
.yc7{bottom:657.781500px;}
.y119{bottom:659.194500px;}
.y6c{bottom:669.445500px;}
.yf5{bottom:670.071000px;}
.y4c{bottom:670.252500px;}
.y14b{bottom:670.612500px;}
.y118{bottom:674.392500px;}
.y1b{bottom:678.000000px;}
.yc6{bottom:678.045000px;}
.y9b{bottom:688.282500px;}
.y117{bottom:689.590500px;}
.y14a{bottom:689.979000px;}
.yf4{bottom:690.334500px;}
.y4b{bottom:690.516000px;}
.yc5{bottom:698.308500px;}
.y6b{bottom:704.265000px;}
.y116{bottom:704.788500px;}
.y9a{bottom:708.547500px;}
.y149{bottom:709.347000px;}
.yf3{bottom:710.599500px;}
.y4a{bottom:710.781000px;}
.y18{bottom:711.303055px;}
.y17{bottom:712.069500px;}
.yc4{bottom:718.573500px;}
.y115{bottom:719.986500px;}
.y6a{bottom:724.530000px;}
.y148{bottom:728.715000px;}
.y99{bottom:728.811000px;}
.yf2{bottom:730.863000px;}
.y49{bottom:731.044500px;}
.y114{bottom:735.184500px;}
.yc3{bottom:738.837000px;}
.y69{bottom:744.793500px;}
.y147{bottom:748.081500px;}
.y98{bottom:749.076000px;}
.y16{bottom:751.075500px;}
.yf1{bottom:751.126500px;}
.y48{bottom:751.308000px;}
.yc2{bottom:759.102000px;}
.y146{bottom:767.449500px;}
.y113{bottom:768.315000px;}
.y97{bottom:769.339500px;}
.yf0{bottom:771.391500px;}
.y47{bottom:771.573000px;}
.y68{bottom:774.024000px;}
.y15{bottom:774.115500px;}
.yc1{bottom:779.365500px;}
.y145{bottom:786.816000px;}
.y14{bottom:787.389000px;}
.y112{bottom:788.578500px;}
.yef{bottom:791.655000px;}
.y46{bottom:791.836500px;}
.y96{bottom:798.570000px;}
.yc0{bottom:799.629000px;}
.y13{bottom:805.546500px;}
.y144{bottom:806.184000px;}
.y67{bottom:808.843500px;}
.y12{bottom:810.429000px;}
.yee{bottom:811.920000px;}
.y45{bottom:812.101500px;}
.ybf{bottom:819.894000px;}
.y11{bottom:823.704000px;}
.y143{bottom:825.552000px;}
.y66{bottom:829.107000px;}
.yed{bottom:832.183500px;}
.y44{bottom:832.365000px;}
.y95{bottom:838.321500px;}
.ybe{bottom:840.157500px;}
.y142{bottom:844.918500px;}
.y10{bottom:846.742500px;}
.y65{bottom:849.372000px;}
.yec{bottom:852.447000px;}
.y43{bottom:852.628500px;}
.y111{bottom:858.337500px;}
.yf{bottom:860.017500px;}
.y94{bottom:860.379000px;}
.ybd{bottom:860.422500px;}
.y141{bottom:864.286500px;}
.yeb{bottom:872.712000px;}
.y42{bottom:872.893500px;}
.y93{bottom:877.174500px;}
.y64{bottom:878.602500px;}
.ybc{bottom:880.686000px;}
.ye{bottom:883.057500px;}
.y140{bottom:883.653000px;}
.y41{bottom:893.157000px;}
.y92{bottom:893.970000px;}
.ybb{bottom:900.949500px;}
.yd{bottom:901.213500px;}
.yea{bottom:901.942500px;}
.y13f{bottom:903.021000px;}
.y91{bottom:910.765500px;}
.y40{bottom:913.422000px;}
.yc{bottom:914.488500px;}
.yba{bottom:921.214500px;}
.y13e{bottom:922.389000px;}
.y90{bottom:927.561000px;}
.y3f{bottom:933.685500px;}
.yb{bottom:937.528500px;}
.ye9{bottom:941.694000px;}
.y13d{bottom:941.755500px;}
.y8f{bottom:944.358000px;}
.yb9{bottom:950.445000px;}
.y3e{bottom:953.949000px;}
.ye8{bottom:955.890000px;}
.ya{bottom:957.639000px;}
.y13c{bottom:961.123500px;}
.y8e{bottom:961.153500px;}
.y3d{bottom:974.214000px;}
.y9{bottom:977.904000px;}
.y8d{bottom:977.949000px;}
.y13b{bottom:980.490000px;}
.yb8{bottom:990.195000px;}
.y3c{bottom:994.477500px;}
.y8c{bottom:994.744500px;}
.y8{bottom:998.167500px;}
.y13a{bottom:999.858000px;}
.y8b{bottom:1011.540000px;}
.yb7{bottom:1012.254000px;}
.y3b{bottom:1014.742500px;}
.y139{bottom:1019.226000px;}
.y8a{bottom:1028.335500px;}
.yb6{bottom:1029.049500px;}
.y3a{bottom:1035.006000px;}
.y138{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y89{bottom:1045.131000px;}
.yb5{bottom:1045.845000px;}
.y39{bottom:1055.269500px;}
.y137{bottom:1057.960500px;}
.y88{bottom:1061.926500px;}
.yb4{bottom:1069.485000px;}
.y6{bottom:1071.244500px;}
.y38{bottom:1075.534500px;}
.y136{bottom:1077.327000px;}
.y87{bottom:1085.923500px;}
.y37{bottom:1095.798000px;}
.y135{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y36{bottom:1116.063000px;}
.y86{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y35{bottom:1168.366500px;}
.hb{height:25.508090px;}
.h13{height:27.974981px;}
.h9{height:30.461558px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h12{height:34.813397px;}
.h10{height:35.052500px;}
.h1a{height:37.927872px;}
.h19{height:38.412058px;}
.h11{height:38.896243px;}
.ha{height:39.165235px;}
.h3{height:39.402747px;}
.h18{height:39.434227px;}
.h4{height:41.001535px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h15{height:43.563235px;}
.h5{height:43.815515px;}
.h2{height:50.931027px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h16{height:68.973235px;}
.h17{height:71.601235px;}
.h14{height:75.993235px;}
.h6{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:59.014071px;}
.x1{left:114.802500px;}
.x41{left:119.385000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x42{left:134.064000px;}
.x52{left:143.050500px;}
.x5e{left:144.826500px;}
.x4{left:146.170500px;}
.x2b{left:154.015500px;}
.x50{left:155.746500px;}
.x5d{left:158.047500px;}
.x21{left:161.331000px;}
.x4b{left:163.504500px;}
.x51{left:166.768500px;}
.x22{left:168.804000px;}
.x2c{left:172.770000px;}
.x48{left:174.940500px;}
.x38{left:179.653500px;}
.x37{left:181.806000px;}
.x49{left:185.376000px;}
.x2d{left:187.714500px;}
.x8{left:188.941500px;}
.x7e{left:191.739000px;}
.x19{left:194.779500px;}
.x4a{left:196.809000px;}
.x34{left:198.529500px;}
.x53{left:201.055500px;}
.x6e{left:204.364500px;}
.x1a{left:209.724000px;}
.x6f{left:211.710000px;}
.x36{left:216.592500px;}
.x31{left:217.756500px;}
.x33{left:219.477000px;}
.x35{left:222.597000px;}
.x32{left:226.014000px;}
.x3a{left:233.055000px;}
.x39{left:237.553500px;}
.x7f{left:240.606000px;}
.x65{left:243.735000px;}
.x62{left:245.524500px;}
.xf{left:250.252500px;}
.x94{left:251.667000px;}
.x95{left:254.101500px;}
.x63{left:255.961500px;}
.x10{left:257.724000px;}
.x74{left:260.263500px;}
.x5f{left:262.414500px;}
.x11{left:265.345500px;}
.x64{left:267.393000px;}
.x61{left:269.181000px;}
.x89{left:271.444500px;}
.x12{left:272.817000px;}
.x69{left:274.251000px;}
.x8a{left:275.304000px;}
.x54{left:281.544000px;}
.x80{left:287.809500px;}
.x6a{left:289.195500px;}
.x81{left:295.153500px;}
.x55{left:296.488500px;}
.x13{left:297.577500px;}
.x88{left:301.966500px;}
.x14{left:305.049000px;}
.x15{left:308.826000px;}
.x16{left:323.770500px;}
.x7d{left:336.591000px;}
.x58{left:339.534000px;}
.x30{left:342.555000px;}
.x66{left:347.272500px;}
.x5c{left:355.000500px;}
.x67{left:362.217000px;}
.x68{left:365.994000px;}
.x85{left:372.717000px;}
.x45{left:375.813000px;}
.x3f{left:381.228000px;}
.x46{left:388.797000px;}
.x40{left:394.023000px;}
.x6b{left:398.310000px;}
.x6c{left:405.781500px;}
.x1b{left:411.634500px;}
.x47{left:415.036500px;}
.x1c{left:419.107500px;}
.x90{left:427.276500px;}
.x91{left:431.136000px;}
.x3c{left:433.903500px;}
.x17{left:440.290500px;}
.x18{left:455.235000px;}
.x60{left:467.025000px;}
.x8c{left:471.799500px;}
.x9{left:474.625500px;}
.x8d{left:475.660500px;}
.xa{left:482.098500px;}
.x7a{left:485.637000px;}
.x7b{left:489.496500px;}
.x23{left:495.708000px;}
.x3b{left:497.851500px;}
.x59{left:507.826500px;}
.x4d{left:509.422500px;}
.x24{left:510.652500px;}
.x92{left:533.853000px;}
.x93{left:537.712500px;}
.xd{left:541.713000px;}
.x4c{left:547.944000px;}
.xe{left:549.184500px;}
.x8e{left:559.612500px;}
.x8f{left:563.472000px;}
.x5a{left:565.800000px;}
.x2e{left:573.888000px;}
.x2f{left:588.831000px;}
.x86{left:616.930500px;}
.x1d{left:632.115000px;}
.x5b{left:635.005500px;}
.x4f{left:642.643500px;}
.x87{left:643.830000px;}
.x1e{left:647.059500px;}
.x8b{left:650.166000px;}
.x4e{left:653.167500px;}
.x70{left:658.117500px;}
.x27{left:661.590000px;}
.x7c{left:671.466000px;}
.x71{left:673.062000px;}
.x1f{left:674.652000px;}
.x28{left:676.534500px;}
.x83{left:677.824500px;}
.x56{left:683.964000px;}
.x77{left:686.370000px;}
.x20{left:689.596500px;}
.x72{left:693.721500px;}
.x57{left:698.908500px;}
.x6{left:701.339982px;}
.x79{left:703.285500px;}
.x84{left:704.724000px;}
.x73{left:708.666000px;}
.x43{left:712.158000px;}
.x78{left:713.269500px;}
.x3d{left:714.522000px;}
.x6d{left:718.746000px;}
.x44{left:726.835500px;}
.x3e{left:728.112000px;}
.x82{left:729.705000px;}
.x75{left:737.890500px;}
.x25{left:743.125500px;}
.x76{left:752.835000px;}
.x29{left:756.391500px;}
.x26{left:758.068500px;}
.xb{left:764.533500px;}
.xc{left:772.006500px;}
.x2a{left:773.089500px;}
@media print{
.v6{vertical-align:-32.736000pt;}
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.909333pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:26.496000pt;}
.v7{vertical-align:28.832000pt;}
.v3{vertical-align:32.736000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000052pt;}
.ls49{letter-spacing:0.000190pt;}
.ls11{letter-spacing:0.000274pt;}
.ls5c{letter-spacing:0.000397pt;}
.ls1b{letter-spacing:0.000444pt;}
.ls13{letter-spacing:0.000577pt;}
.ls57{letter-spacing:0.000633pt;}
.ls4c{letter-spacing:0.000711pt;}
.ls35{letter-spacing:0.000880pt;}
.ls3e{letter-spacing:0.001302pt;}
.lsa{letter-spacing:0.001349pt;}
.ls9{letter-spacing:0.001680pt;}
.ls33{letter-spacing:0.001774pt;}
.ls34{letter-spacing:0.001939pt;}
.ls14{letter-spacing:0.001977pt;}
.ls58{letter-spacing:0.002078pt;}
.ls12{letter-spacing:0.002224pt;}
.ls59{letter-spacing:0.002287pt;}
.ls1a{letter-spacing:0.002417pt;}
.ls3{letter-spacing:0.002422pt;}
.ls61{letter-spacing:0.002505pt;}
.ls60{letter-spacing:0.002525pt;}
.ls31{letter-spacing:0.002551pt;}
.ls16{letter-spacing:0.002630pt;}
.ls37{letter-spacing:0.003017pt;}
.lse{letter-spacing:0.003100pt;}
.lsc{letter-spacing:0.003106pt;}
.ls55{letter-spacing:0.003168pt;}
.ls6{letter-spacing:0.003430pt;}
.ls15{letter-spacing:0.003644pt;}
.ls5a{letter-spacing:0.003705pt;}
.ls1c{letter-spacing:0.003942pt;}
.ls5d{letter-spacing:0.004267pt;}
.ls4a{letter-spacing:0.004813pt;}
.ls4f{letter-spacing:0.478097pt;}
.ls10{letter-spacing:1.133683pt;}
.ls8{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls18{letter-spacing:9.128273pt;}
.ls5b{letter-spacing:9.998541pt;}
.ls2d{letter-spacing:10.623183pt;}
.ls48{letter-spacing:10.623733pt;}
.ls20{letter-spacing:10.624017pt;}
.lsd{letter-spacing:10.626533pt;}
.ls1f{letter-spacing:10.628517pt;}
.ls32{letter-spacing:10.629067pt;}
.ls2e{letter-spacing:10.629350pt;}
.ls5f{letter-spacing:10.678814pt;}
.ls22{letter-spacing:10.722831pt;}
.ls24{letter-spacing:11.413987pt;}
.ls54{letter-spacing:11.838041pt;}
.ls56{letter-spacing:11.865208pt;}
.ls3d{letter-spacing:11.933328pt;}
.ls3b{letter-spacing:11.933925pt;}
.ls3a{letter-spacing:11.934033pt;}
.ls3c{letter-spacing:11.939154pt;}
.ls4d{letter-spacing:11.948608pt;}
.ls4e{letter-spacing:11.954133pt;}
.ls52{letter-spacing:11.959467pt;}
.ls53{letter-spacing:12.139747pt;}
.ls50{letter-spacing:12.435430pt;}
.ls5e{letter-spacing:12.456980pt;}
.ls21{letter-spacing:13.125359pt;}
.ls2c{letter-spacing:13.144508pt;}
.ls28{letter-spacing:13.170885pt;}
.lsb{letter-spacing:13.175887pt;}
.ls41{letter-spacing:13.193297pt;}
.ls26{letter-spacing:13.280110pt;}
.ls25{letter-spacing:13.283349pt;}
.ls4{letter-spacing:13.283733pt;}
.ls30{letter-spacing:13.284123pt;}
.ls1d{letter-spacing:13.285443pt;}
.ls36{letter-spacing:13.315558pt;}
.ls17{letter-spacing:13.331875pt;}
.ls29{letter-spacing:13.340518pt;}
.ls2a{letter-spacing:13.410847pt;}
.ls27{letter-spacing:13.536436pt;}
.ls2b{letter-spacing:13.579974pt;}
.ls19{letter-spacing:13.938411pt;}
.ls42{letter-spacing:14.084816pt;}
.ls40{letter-spacing:14.487430pt;}
.ls3f{letter-spacing:14.505546pt;}
.ls46{letter-spacing:14.595363pt;}
.ls47{letter-spacing:14.600592pt;}
.ls45{letter-spacing:14.600700pt;}
.ls2f{letter-spacing:14.931875pt;}
.ls44{letter-spacing:15.465208pt;}
.ls4b{letter-spacing:15.495780pt;}
.ls43{letter-spacing:16.066515pt;}
.ls23{letter-spacing:16.866515pt;}
.ls51{letter-spacing:17.566369pt;}
.ls0{letter-spacing:51.035733pt;}
.ls5{letter-spacing:62.432533pt;}
.ls7{letter-spacing:64.314231pt;}
.ls2{letter-spacing:64.315733pt;}
.ls39{letter-spacing:116.110302pt;}
.ls1e{letter-spacing:433.063885pt;}
.wsd{word-spacing:-15.461955pt;}
.ws5{word-spacing:-13.915853pt;}
.ws3{word-spacing:-13.283467pt;}
.ws6{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws39{word-spacing:-4.144442pt;}
.ws1f{word-spacing:-3.188032pt;}
.ws1e{word-spacing:-3.134898pt;}
.ws20{word-spacing:-2.603559pt;}
.ws50{word-spacing:-2.550426pt;}
.wsb2{word-spacing:-2.534502pt;}
.wsb3{word-spacing:-2.486682pt;}
.wsb4{word-spacing:-1.960653pt;}
.ws3c{word-spacing:-1.859685pt;}
.ws72{word-spacing:-1.806551pt;}
.wsa{word-spacing:-1.696326pt;}
.wsc3{word-spacing:-1.673728pt;}
.ws52{word-spacing:-1.434614pt;}
.wsaa{word-spacing:-1.386803pt;}
.wsc5{word-spacing:-1.291162pt;}
.ws9{word-spacing:-1.175671pt;}
.ws1d{word-spacing:-1.062677pt;}
.wsbc{word-spacing:-1.052058pt;}
.ws11{word-spacing:-1.009543pt;}
.wsaf{word-spacing:-0.956416pt;}
.wscc{word-spacing:-0.860774pt;}
.ws5a{word-spacing:-0.850142pt;}
.ws54{word-spacing:-0.797008pt;}
.ws5b{word-spacing:-0.584473pt;}
.ws53{word-spacing:-0.531339pt;}
.ws9e{word-spacing:-0.430387pt;}
.ws65{word-spacing:-0.286925pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws87{word-spacing:-0.239104pt;}
.ws19{word-spacing:-0.212535pt;}
.ws9b{word-spacing:-0.191283pt;}
.ws15{word-spacing:-0.159402pt;}
.ws83{word-spacing:-0.143462pt;}
.ws12{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.095642pt;}
.ws16{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws25{word-spacing:-0.042507pt;}
.wsa0{word-spacing:-0.023117pt;}
.ws45{word-spacing:-0.003270pt;}
.ws6a{word-spacing:-0.001395pt;}
.ws71{word-spacing:-0.001331pt;}
.ws59{word-spacing:-0.000770pt;}
.ws0{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.047821pt;}
.wsb{word-spacing:0.053134pt;}
.ws98{word-spacing:0.095642pt;}
.ws14{word-spacing:0.106268pt;}
.ws94{word-spacing:0.143462pt;}
.ws27{word-spacing:0.159402pt;}
.ws7{word-spacing:0.191283pt;}
.wse{word-spacing:0.212535pt;}
.ws90{word-spacing:0.239104pt;}
.ws55{word-spacing:0.252403pt;}
.ws17{word-spacing:0.265669pt;}
.ws22{word-spacing:0.318803pt;}
.ws84{word-spacing:0.334746pt;}
.ws78{word-spacing:0.371937pt;}
.ws10{word-spacing:0.425071pt;}
.wsc0{word-spacing:0.478208pt;}
.wsc1{word-spacing:0.526029pt;}
.ws21{word-spacing:0.531339pt;}
.ws42{word-spacing:0.584473pt;}
.ws3a{word-spacing:0.637606pt;}
.wsc8{word-spacing:0.669491pt;}
.wsc9{word-spacing:0.717312pt;}
.ws6c{word-spacing:0.797008pt;}
.ws31{word-spacing:0.850142pt;}
.ws38{word-spacing:0.903276pt;}
.ws1a{word-spacing:1.062677pt;}
.ws37{word-spacing:1.168945pt;}
.ws6b{word-spacing:1.222079pt;}
.ws66{word-spacing:1.275216pt;}
.ws68{word-spacing:1.286545pt;}
.ws69{word-spacing:1.288777pt;}
.ws67{word-spacing:1.317723pt;}
.ws8a{word-spacing:1.578086pt;}
.wsbd{word-spacing:1.625907pt;}
.ws58{word-spacing:1.647150pt;}
.ws77{word-spacing:1.700284pt;}
.ws89{word-spacing:1.817190pt;}
.ws85{word-spacing:1.912832pt;}
.wsa3{word-spacing:1.960653pt;}
.ws43{word-spacing:1.965953pt;}
.ws86{word-spacing:2.008474pt;}
.wsf{word-spacing:2.019087pt;}
.ws29{word-spacing:2.072221pt;}
.ws2a{word-spacing:2.178489pt;}
.ws2b{word-spacing:2.231622pt;}
.ws3b{word-spacing:2.497292pt;}
.ws18{word-spacing:2.550426pt;}
.ws74{word-spacing:2.656693pt;}
.ws2c{word-spacing:2.762961pt;}
.ws8b{word-spacing:2.773606pt;}
.wsb5{word-spacing:2.917069pt;}
.ws41{word-spacing:2.975497pt;}
.ws40{word-spacing:3.028630pt;}
.ws35{word-spacing:3.081764pt;}
.ws7a{word-spacing:3.453701pt;}
.ws79{word-spacing:3.506835pt;}
.ws8d{word-spacing:3.538739pt;}
.ws51{word-spacing:3.559969pt;}
.ws80{word-spacing:3.719371pt;}
.wsa5{word-spacing:3.730022pt;}
.ws7c{word-spacing:3.772505pt;}
.ws44{word-spacing:3.825638pt;}
.wsb8{word-spacing:3.873485pt;}
.ws6d{word-spacing:3.953170pt;}
.ws6f{word-spacing:3.957018pt;}
.ws6e{word-spacing:3.993312pt;}
.ws70{word-spacing:3.995677pt;}
.ws32{word-spacing:4.356977pt;}
.ws34{word-spacing:4.410111pt;}
.ws91{word-spacing:4.447334pt;}
.ws7b{word-spacing:4.569513pt;}
.wsb0{word-spacing:4.720460pt;}
.wsbb{word-spacing:4.778974pt;}
.wsab{word-spacing:4.780433pt;}
.ws88{word-spacing:4.781175pt;}
.ws2f{word-spacing:4.782048pt;}
.ws8{word-spacing:4.782080pt;}
.ws9f{word-spacing:4.783505pt;}
.wsad{word-spacing:4.783898pt;}
.wsca{word-spacing:4.844141pt;}
.wsbf{word-spacing:4.925542pt;}
.ws7d{word-spacing:5.047717pt;}
.ws75{word-spacing:5.207119pt;}
.ws1b{word-spacing:5.307978pt;}
.ws1c{word-spacing:5.313387pt;}
.ws73{word-spacing:5.366521pt;}
.ws30{word-spacing:5.419654pt;}
.ws28{word-spacing:5.579056pt;}
.ws93{word-spacing:5.595034pt;}
.ws2e{word-spacing:5.632190pt;}
.ws76{word-spacing:5.791591pt;}
.ws7e{word-spacing:5.950993pt;}
.ws95{word-spacing:6.025421pt;}
.ws57{word-spacing:6.057261pt;}
.wsc{word-spacing:6.801135pt;}
.ws81{word-spacing:7.794790pt;}
.ws7f{word-spacing:7.810678pt;}
.wsc6{word-spacing:8.416461pt;}
.ws8f{word-spacing:9.085952pt;}
.ws82{word-spacing:9.325056pt;}
.ws3f{word-spacing:9.404694pt;}
.wsc4{word-spacing:10.233651pt;}
.wsa6{word-spacing:10.711859pt;}
.ws33{word-spacing:10.945577pt;}
.wsb1{word-spacing:10.950963pt;}
.wsba{word-spacing:11.668275pt;}
.ws9c{word-spacing:11.716096pt;}
.ws9a{word-spacing:11.763917pt;}
.wsa8{word-spacing:11.811738pt;}
.wsb9{word-spacing:11.899895pt;}
.ws99{word-spacing:11.901491pt;}
.ws13{word-spacing:11.901986pt;}
.wsae{word-spacing:11.902191pt;}
.wscd{word-spacing:11.903198pt;}
.wsb7{word-spacing:11.903650pt;}
.ws96{word-spacing:11.904444pt;}
.wsa7{word-spacing:11.904461pt;}
.wsc7{word-spacing:11.905869pt;}
.wsa9{word-spacing:11.906347pt;}
.wsac{word-spacing:11.906449pt;}
.ws8e{word-spacing:11.907379pt;}
.wsa1{word-spacing:12.003021pt;}
.ws97{word-spacing:12.050842pt;}
.wsc2{word-spacing:12.433408pt;}
.ws36{word-spacing:13.230333pt;}
.ws3e{word-spacing:13.442868pt;}
.wsbe{word-spacing:13.533286pt;}
.wsa4{word-spacing:13.915853pt;}
.ws8c{word-spacing:14.680986pt;}
.ws23{word-spacing:14.835013pt;}
.ws92{word-spacing:16.354714pt;}
.wsb6{word-spacing:16.685696pt;}
.ws9d{word-spacing:16.686208pt;}
.wsa2{word-spacing:16.689459pt;}
.wscb{word-spacing:16.737280pt;}
.ws3d{word-spacing:18.543719pt;}
.ws56{word-spacing:81.630106pt;}
.ws64{word-spacing:100.798242pt;}
.ws5f{word-spacing:113.953067pt;}
.ws62{word-spacing:115.147733pt;}
.ws5d{word-spacing:121.847398pt;}
.ws60{word-spacing:127.681536pt;}
.ws63{word-spacing:139.636736pt;}
.ws5e{word-spacing:142.075597pt;}
.ws61{word-spacing:154.030797pt;}
.ws4c{word-spacing:220.979917pt;}
.ws48{word-spacing:261.292851pt;}
.ws4a{word-spacing:287.430818pt;}
.ws4f{word-spacing:295.149978pt;}
.ws4e{word-spacing:296.970214pt;}
.ws4b{word-spacing:313.991373pt;}
.ws47{word-spacing:340.962304pt;}
.ws49{word-spacing:345.935667pt;}
.ws4d{word-spacing:347.896320pt;}
.ws26{word-spacing:382.947365pt;}
.ws46{word-spacing:710.808371pt;}
._2{margin-left:-10.616218pt;}
._7{margin-left:-6.945522pt;}
._5{margin-left:-5.897859pt;}
._8{margin-left:-4.718358pt;}
._6{margin-left:-3.538739pt;}
._a{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._b{width:0.969929pt;}
._3{width:2.667012pt;}
._0{width:9.035708pt;}
._12{width:10.626800pt;}
._2a{width:11.848852pt;}
._46{width:13.328666pt;}
._11{width:14.589758pt;}
._54{width:15.561506pt;}
._9{width:16.737280pt;}
._10{width:17.852979pt;}
._e{width:18.784526pt;}
._16{width:20.403405pt;}
._f{width:22.316224pt;}
._d{width:23.629394pt;}
._14{width:25.663658pt;}
._15{width:27.180268pt;}
._18{width:28.866866pt;}
._1a{width:30.551973pt;}
._17{width:32.531290pt;}
._51{width:33.803325pt;}
._19{width:35.812226pt;}
._39{width:37.236421pt;}
._c{width:39.425329pt;}
._56{width:40.727421pt;}
._52{width:43.931414pt;}
._4{width:48.357948pt;}
._55{width:51.503002pt;}
._53{width:54.993920pt;}
._4a{width:82.729984pt;}
._4b{width:93.107098pt;}
._50{width:108.170650pt;}
._41{width:109.270528pt;}
._4d{width:114.482995pt;}
._47{width:121.943040pt;}
._4e{width:151.591936pt;}
._43{width:154.030797pt;}
._49{width:157.999923pt;}
._44{width:165.474620pt;}
._24{width:171.007181pt;}
._2c{width:172.011418pt;}
._48{width:175.454515pt;}
._40{width:180.775501pt;}
._4f{width:192.239616pt;}
._37{width:197.499904pt;}
._4c{width:198.647603pt;}
._34{width:203.860070pt;}
._45{width:206.124646pt;}
._2e{width:210.507162pt;}
._42{width:212.482313pt;}
._2b{width:221.123379pt;}
._35{width:222.462362pt;}
._3e{width:233.365231pt;}
._32{width:234.417562pt;}
._36{width:240.969011pt;}
._2d{width:247.329178pt;}
._2f{width:252.302541pt;}
._26{width:256.367309pt;}
._33{width:264.257741pt;}
._27{width:268.370330pt;}
._38{width:270.283162pt;}
._29{width:277.025894pt;}
._30{width:282.238362pt;}
._3a{width:294.504235pt;}
._31{width:299.932058pt;}
._1f{width:303.183872pt;}
._3f{width:304.264260pt;}
._3c{width:320.236885pt;}
._22{width:322.259149pt;}
._28{width:330.823228pt;}
._21{width:332.689306pt;}
._3d{width:333.693193pt;}
._3b{width:336.275866pt;}
._1e{width:342.970778pt;}
._1c{width:354.256486pt;}
._1d{width:370.898125pt;}
._25{width:407.241933pt;}
._23{width:559.600512pt;}
._20{width:771.758831pt;}
._1b{width:820.844032pt;}
._13{width:1389.659371pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.y19{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y34{bottom:56.693333pt;}
.y33{bottom:96.544000pt;}
.y168{bottom:96.850667pt;}
.y85{bottom:102.933333pt;}
.y110{bottom:109.280000pt;}
.y167{bottom:114.066667pt;}
.y32{bottom:114.556000pt;}
.y134{bottom:114.557333pt;}
.ye7{bottom:119.330667pt;}
.y84{bottom:120.945333pt;}
.yb3{bottom:123.706667pt;}
.y63{bottom:126.737333pt;}
.y10f{bottom:127.293333pt;}
.y166{bottom:131.281333pt;}
.y133{bottom:131.772000pt;}
.y31{bottom:132.568000pt;}
.ye6{bottom:137.342667pt;}
.y83{bottom:138.958667pt;}
.yb2{bottom:141.720000pt;}
.y62{bottom:144.749333pt;}
.y10e{bottom:145.305333pt;}
.y165{bottom:148.497333pt;}
.y132{bottom:148.988000pt;}
.y30{bottom:150.581333pt;}
.ye5{bottom:155.356000pt;}
.y82{bottom:156.970667pt;}
.yb1{bottom:159.732000pt;}
.y61{bottom:162.762667pt;}
.y10d{bottom:163.317333pt;}
.y164{bottom:165.713333pt;}
.y130{bottom:166.202667pt;}
.y131{bottom:166.204000pt;}
.y2f{bottom:168.593333pt;}
.ye4{bottom:173.368000pt;}
.y81{bottom:174.982667pt;}
.yb0{bottom:177.745333pt;}
.y60{bottom:180.774667pt;}
.y10c{bottom:181.330667pt;}
.y163{bottom:182.928000pt;}
.y12f{bottom:183.418667pt;}
.y2e{bottom:186.606667pt;}
.ye3{bottom:191.380000pt;}
.y80{bottom:192.996000pt;}
.y5f{bottom:198.786667pt;}
.y10b{bottom:199.342667pt;}
.y162{bottom:200.144000pt;}
.y12e{bottom:200.634667pt;}
.y2d{bottom:204.618667pt;}
.ye2{bottom:209.393333pt;}
.y7f{bottom:211.008000pt;}
.yaf{bottom:216.081333pt;}
.y5e{bottom:216.800000pt;}
.y10a{bottom:217.356000pt;}
.y161{bottom:217.358667pt;}
.y12d{bottom:217.849333pt;}
.ye1{bottom:227.405333pt;}
.y7e{bottom:229.021333pt;}
.y2c{bottom:230.601333pt;}
.y160{bottom:234.574667pt;}
.y12c{bottom:235.065333pt;}
.y109{bottom:235.368000pt;}
.yae{bottom:235.688000pt;}
.y5d{bottom:242.782667pt;}
.yad{bottom:250.617333pt;}
.y15f{bottom:251.790667pt;}
.y12b{bottom:252.281333pt;}
.y108{bottom:253.380000pt;}
.ye0{bottom:253.388000pt;}
.y7d{bottom:255.004000pt;}
.yac{bottom:265.546667pt;}
.y15e{bottom:269.005333pt;}
.y12a{bottom:269.496000pt;}
.y107{bottom:271.393333pt;}
.y5c{bottom:273.733333pt;}
.yab{bottom:280.476000pt;}
.y7c{bottom:285.954667pt;}
.y15d{bottom:286.221333pt;}
.y129{bottom:286.712000pt;}
.ydf{bottom:288.722667pt;}
.y106{bottom:289.405333pt;}
.y5b{bottom:291.745333pt;}
.yaa{bottom:295.405333pt;}
.y2b{bottom:298.526667pt;}
.yde{bottom:301.341333pt;}
.y15c{bottom:303.437333pt;}
.y128{bottom:303.926667pt;}
.y105{bottom:307.418667pt;}
.y5a{bottom:309.758667pt;}
.ya9{bottom:310.336000pt;}
.y7b{bottom:316.905333pt;}
.y15b{bottom:320.652000pt;}
.ydd{bottom:320.949333pt;}
.y127{bottom:321.142667pt;}
.y104{bottom:325.430667pt;}
.ydc{bottom:327.693333pt;}
.y59{bottom:327.770667pt;}
.yda{bottom:329.253333pt;}
.ya8{bottom:331.666667pt;}
.y2a{bottom:332.478667pt;}
.y7a{bottom:334.917333pt;}
.ydb{bottom:335.878667pt;}
.y15a{bottom:337.868000pt;}
.y126{bottom:338.358667pt;}
.y103{bottom:343.442667pt;}
.y58{bottom:345.782667pt;}
.y29{bottom:350.492000pt;}
.yd9{bottom:350.808000pt;}
.y79{bottom:352.929333pt;}
.y159{bottom:355.082667pt;}
.y125{bottom:355.573333pt;}
.yd8{bottom:357.552000pt;}
.yd7{bottom:359.113333pt;}
.ya7{bottom:359.773333pt;}
.y102{bottom:361.456000pt;}
.y28{bottom:368.504000pt;}
.y78{bottom:370.942667pt;}
.y57{bottom:371.765333pt;}
.y158{bottom:372.298667pt;}
.y124{bottom:372.789333pt;}
.y101{bottom:379.468000pt;}
.yd6{bottom:380.666667pt;}
.y27{bottom:386.517333pt;}
.yd5{bottom:387.412000pt;}
.yd4{bottom:388.388000pt;}
.y77{bottom:388.954667pt;}
.y157{bottom:389.514667pt;}
.y123{bottom:390.004000pt;}
.ya6{bottom:392.761333pt;}
.y100{bottom:397.480000pt;}
.y56{bottom:402.716000pt;}
.y26{bottom:404.529333pt;}
.y156{bottom:406.729333pt;}
.y76{bottom:406.968000pt;}
.y122{bottom:407.220000pt;}
.yd3{bottom:410.525333pt;}
.ya5{bottom:410.773333pt;}
.yff{bottom:415.493333pt;}
.yd2{bottom:417.270667pt;}
.yd0{bottom:418.830667pt;}
.y25{bottom:422.541333pt;}
.y155{bottom:423.945333pt;}
.y75{bottom:424.980000pt;}
.yd1{bottom:425.454667pt;}
.ya4{bottom:428.786667pt;}
.y121{bottom:432.405333pt;}
.yfe{bottom:433.505333pt;}
.y55{bottom:433.666667pt;}
.ycf{bottom:440.384000pt;}
.y24{bottom:440.554667pt;}
.y154{bottom:441.160000pt;}
.y74{bottom:442.992000pt;}
.ya3{bottom:446.798667pt;}
.yce{bottom:447.129333pt;}
.ycd{bottom:448.689333pt;}
.yfd{bottom:451.518667pt;}
.y54{bottom:451.680000pt;}
.y153{bottom:458.376000pt;}
.y23{bottom:458.566667pt;}
.y73{bottom:461.005333pt;}
.ya2{bottom:464.812000pt;}
.y120{bottom:467.474667pt;}
.yfc{bottom:469.530667pt;}
.y53{bottom:469.692000pt;}
.ycc{bottom:470.242667pt;}
.y152{bottom:475.592000pt;}
.y22{bottom:476.580000pt;}
.ycb{bottom:476.988000pt;}
.y72{bottom:479.017333pt;}
.y11f{bottom:480.984000pt;}
.ya1{bottom:482.824000pt;}
.yfb{bottom:487.542667pt;}
.y52{bottom:487.704000pt;}
.y151{bottom:492.806667pt;}
.y11e{bottom:494.493333pt;}
.y21{bottom:494.592000pt;}
.y71{bottom:497.030667pt;}
.ya0{bottom:500.836000pt;}
.yfa{bottom:505.556000pt;}
.y51{bottom:505.717333pt;}
.yca{bottom:506.504000pt;}
.y150{bottom:510.022667pt;}
.y20{bottom:512.604000pt;}
.y70{bottom:515.042667pt;}
.y11d{bottom:515.972000pt;}
.y9f{bottom:518.849333pt;}
.yf9{bottom:523.568000pt;}
.y50{bottom:523.729333pt;}
.y14f{bottom:527.237333pt;}
.y11c{bottom:529.481333pt;}
.y1f{bottom:530.617333pt;}
.y6f{bottom:533.054667pt;}
.yc9{bottom:534.610667pt;}
.y9e{bottom:536.861333pt;}
.yf8{bottom:541.581333pt;}
.y4f{bottom:541.742667pt;}
.y14e{bottom:544.453333pt;}
.y1e{bottom:548.629333pt;}
.y16b{bottom:549.732000pt;}
.y11b{bottom:550.961333pt;}
.y6e{bottom:551.068000pt;}
.yc8{bottom:551.705333pt;}
.y9d{bottom:554.874667pt;}
.yf7{bottom:559.593333pt;}
.y4e{bottom:559.754667pt;}
.y14d{bottom:561.669333pt;}
.y1d{bottom:566.642667pt;}
.y16a{bottom:566.948000pt;}
.y6d{bottom:569.080000pt;}
.y11a{bottom:572.441333pt;}
.yf6{bottom:577.605333pt;}
.y4d{bottom:577.766667pt;}
.y14c{bottom:578.884000pt;}
.y9c{bottom:580.856000pt;}
.y169{bottom:584.162667pt;}
.y1c{bottom:584.654667pt;}
.yc7{bottom:584.694667pt;}
.y119{bottom:585.950667pt;}
.y6c{bottom:595.062667pt;}
.yf5{bottom:595.618667pt;}
.y4c{bottom:595.780000pt;}
.y14b{bottom:596.100000pt;}
.y118{bottom:599.460000pt;}
.y1b{bottom:602.666667pt;}
.yc6{bottom:602.706667pt;}
.y9b{bottom:611.806667pt;}
.y117{bottom:612.969333pt;}
.y14a{bottom:613.314667pt;}
.yf4{bottom:613.630667pt;}
.y4b{bottom:613.792000pt;}
.yc5{bottom:620.718667pt;}
.y6b{bottom:626.013333pt;}
.y116{bottom:626.478667pt;}
.y9a{bottom:629.820000pt;}
.y149{bottom:630.530667pt;}
.yf3{bottom:631.644000pt;}
.y4a{bottom:631.805333pt;}
.y18{bottom:632.269382pt;}
.y17{bottom:632.950667pt;}
.yc4{bottom:638.732000pt;}
.y115{bottom:639.988000pt;}
.y6a{bottom:644.026667pt;}
.y148{bottom:647.746667pt;}
.y99{bottom:647.832000pt;}
.yf2{bottom:649.656000pt;}
.y49{bottom:649.817333pt;}
.y114{bottom:653.497333pt;}
.yc3{bottom:656.744000pt;}
.y69{bottom:662.038667pt;}
.y147{bottom:664.961333pt;}
.y98{bottom:665.845333pt;}
.y16{bottom:667.622667pt;}
.yf1{bottom:667.668000pt;}
.y48{bottom:667.829333pt;}
.yc2{bottom:674.757333pt;}
.y146{bottom:682.177333pt;}
.y113{bottom:682.946667pt;}
.y97{bottom:683.857333pt;}
.yf0{bottom:685.681333pt;}
.y47{bottom:685.842667pt;}
.y68{bottom:688.021333pt;}
.y15{bottom:688.102667pt;}
.yc1{bottom:692.769333pt;}
.y145{bottom:699.392000pt;}
.y14{bottom:699.901333pt;}
.y112{bottom:700.958667pt;}
.yef{bottom:703.693333pt;}
.y46{bottom:703.854667pt;}
.y96{bottom:709.840000pt;}
.yc0{bottom:710.781333pt;}
.y13{bottom:716.041333pt;}
.y144{bottom:716.608000pt;}
.y67{bottom:718.972000pt;}
.y12{bottom:720.381333pt;}
.yee{bottom:721.706667pt;}
.y45{bottom:721.868000pt;}
.ybf{bottom:728.794667pt;}
.y11{bottom:732.181333pt;}
.y143{bottom:733.824000pt;}
.y66{bottom:736.984000pt;}
.yed{bottom:739.718667pt;}
.y44{bottom:739.880000pt;}
.y95{bottom:745.174667pt;}
.ybe{bottom:746.806667pt;}
.y142{bottom:751.038667pt;}
.y10{bottom:752.660000pt;}
.y65{bottom:754.997333pt;}
.yec{bottom:757.730667pt;}
.y43{bottom:757.892000pt;}
.y111{bottom:762.966667pt;}
.yf{bottom:764.460000pt;}
.y94{bottom:764.781333pt;}
.ybd{bottom:764.820000pt;}
.y141{bottom:768.254667pt;}
.yeb{bottom:775.744000pt;}
.y42{bottom:775.905333pt;}
.y93{bottom:779.710667pt;}
.y64{bottom:780.980000pt;}
.ybc{bottom:782.832000pt;}
.ye{bottom:784.940000pt;}
.y140{bottom:785.469333pt;}
.y41{bottom:793.917333pt;}
.y92{bottom:794.640000pt;}
.ybb{bottom:800.844000pt;}
.yd{bottom:801.078667pt;}
.yea{bottom:801.726667pt;}
.y13f{bottom:802.685333pt;}
.y91{bottom:809.569333pt;}
.y40{bottom:811.930667pt;}
.yc{bottom:812.878667pt;}
.yba{bottom:818.857333pt;}
.y13e{bottom:819.901333pt;}
.y90{bottom:824.498667pt;}
.y3f{bottom:829.942667pt;}
.yb{bottom:833.358667pt;}
.ye9{bottom:837.061333pt;}
.y13d{bottom:837.116000pt;}
.y8f{bottom:839.429333pt;}
.yb9{bottom:844.840000pt;}
.y3e{bottom:847.954667pt;}
.ye8{bottom:849.680000pt;}
.ya{bottom:851.234667pt;}
.y13c{bottom:854.332000pt;}
.y8e{bottom:854.358667pt;}
.y3d{bottom:865.968000pt;}
.y9{bottom:869.248000pt;}
.y8d{bottom:869.288000pt;}
.y13b{bottom:871.546667pt;}
.yb8{bottom:880.173333pt;}
.y3c{bottom:883.980000pt;}
.y8c{bottom:884.217333pt;}
.y8{bottom:887.260000pt;}
.y13a{bottom:888.762667pt;}
.y8b{bottom:899.146667pt;}
.yb7{bottom:899.781333pt;}
.y3b{bottom:901.993333pt;}
.y139{bottom:905.978667pt;}
.y8a{bottom:914.076000pt;}
.yb6{bottom:914.710667pt;}
.y3a{bottom:920.005333pt;}
.y138{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y89{bottom:929.005333pt;}
.yb5{bottom:929.640000pt;}
.y39{bottom:938.017333pt;}
.y137{bottom:940.409333pt;}
.y88{bottom:943.934667pt;}
.yb4{bottom:950.653333pt;}
.y6{bottom:952.217333pt;}
.y38{bottom:956.030667pt;}
.y136{bottom:957.624000pt;}
.y87{bottom:965.265333pt;}
.y37{bottom:974.042667pt;}
.y135{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y36{bottom:992.056000pt;}
.y86{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y35{bottom:1038.548000pt;}
.hb{height:22.673858pt;}
.h13{height:24.866650pt;}
.h9{height:27.076941pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h12{height:30.945242pt;}
.h10{height:31.157778pt;}
.h1a{height:33.713664pt;}
.h19{height:34.144051pt;}
.h11{height:34.574438pt;}
.ha{height:34.813542pt;}
.h3{height:35.024664pt;}
.h18{height:35.052646pt;}
.h4{height:36.445809pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h15{height:38.722876pt;}
.h5{height:38.947124pt;}
.h2{height:45.272024pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h16{height:61.309542pt;}
.h17{height:63.645542pt;}
.h14{height:67.549542pt;}
.h6{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:52.456952pt;}
.x1{left:102.046667pt;}
.x41{left:106.120000pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x42{left:119.168000pt;}
.x52{left:127.156000pt;}
.x5e{left:128.734667pt;}
.x4{left:129.929333pt;}
.x2b{left:136.902667pt;}
.x50{left:138.441333pt;}
.x5d{left:140.486667pt;}
.x21{left:143.405333pt;}
.x4b{left:145.337333pt;}
.x51{left:148.238667pt;}
.x22{left:150.048000pt;}
.x2c{left:153.573333pt;}
.x48{left:155.502667pt;}
.x38{left:159.692000pt;}
.x37{left:161.605333pt;}
.x49{left:164.778667pt;}
.x2d{left:166.857333pt;}
.x8{left:167.948000pt;}
.x7e{left:170.434667pt;}
.x19{left:173.137333pt;}
.x4a{left:174.941333pt;}
.x34{left:176.470667pt;}
.x53{left:178.716000pt;}
.x6e{left:181.657333pt;}
.x1a{left:186.421333pt;}
.x6f{left:188.186667pt;}
.x36{left:192.526667pt;}
.x31{left:193.561333pt;}
.x33{left:195.090667pt;}
.x35{left:197.864000pt;}
.x32{left:200.901333pt;}
.x3a{left:207.160000pt;}
.x39{left:211.158667pt;}
.x7f{left:213.872000pt;}
.x65{left:216.653333pt;}
.x62{left:218.244000pt;}
.xf{left:222.446667pt;}
.x94{left:223.704000pt;}
.x95{left:225.868000pt;}
.x63{left:227.521333pt;}
.x10{left:229.088000pt;}
.x74{left:231.345333pt;}
.x5f{left:233.257333pt;}
.x11{left:235.862667pt;}
.x64{left:237.682667pt;}
.x61{left:239.272000pt;}
.x89{left:241.284000pt;}
.x12{left:242.504000pt;}
.x69{left:243.778667pt;}
.x8a{left:244.714667pt;}
.x54{left:250.261333pt;}
.x80{left:255.830667pt;}
.x6a{left:257.062667pt;}
.x81{left:262.358667pt;}
.x55{left:263.545333pt;}
.x13{left:264.513333pt;}
.x88{left:268.414667pt;}
.x14{left:271.154667pt;}
.x15{left:274.512000pt;}
.x16{left:287.796000pt;}
.x7d{left:299.192000pt;}
.x58{left:301.808000pt;}
.x30{left:304.493333pt;}
.x66{left:308.686667pt;}
.x5c{left:315.556000pt;}
.x67{left:321.970667pt;}
.x68{left:325.328000pt;}
.x85{left:331.304000pt;}
.x45{left:334.056000pt;}
.x3f{left:338.869333pt;}
.x46{left:345.597333pt;}
.x40{left:350.242667pt;}
.x6b{left:354.053333pt;}
.x6c{left:360.694667pt;}
.x1b{left:365.897333pt;}
.x47{left:368.921333pt;}
.x1c{left:372.540000pt;}
.x90{left:379.801333pt;}
.x91{left:383.232000pt;}
.x3c{left:385.692000pt;}
.x17{left:391.369333pt;}
.x18{left:404.653333pt;}
.x60{left:415.133333pt;}
.x8c{left:419.377333pt;}
.x9{left:421.889333pt;}
.x8d{left:422.809333pt;}
.xa{left:428.532000pt;}
.x7a{left:431.677333pt;}
.x7b{left:435.108000pt;}
.x23{left:440.629333pt;}
.x3b{left:442.534667pt;}
.x59{left:451.401333pt;}
.x4d{left:452.820000pt;}
.x24{left:453.913333pt;}
.x92{left:474.536000pt;}
.x93{left:477.966667pt;}
.xd{left:481.522667pt;}
.x4c{left:487.061333pt;}
.xe{left:488.164000pt;}
.x8e{left:497.433333pt;}
.x8f{left:500.864000pt;}
.x5a{left:502.933333pt;}
.x2e{left:510.122667pt;}
.x2f{left:523.405333pt;}
.x86{left:548.382667pt;}
.x1d{left:561.880000pt;}
.x5b{left:564.449333pt;}
.x4f{left:571.238667pt;}
.x87{left:572.293333pt;}
.x1e{left:575.164000pt;}
.x8b{left:577.925333pt;}
.x4e{left:580.593333pt;}
.x70{left:584.993333pt;}
.x27{left:588.080000pt;}
.x7c{left:596.858667pt;}
.x71{left:598.277333pt;}
.x1f{left:599.690667pt;}
.x28{left:601.364000pt;}
.x83{left:602.510667pt;}
.x56{left:607.968000pt;}
.x77{left:610.106667pt;}
.x20{left:612.974667pt;}
.x72{left:616.641333pt;}
.x57{left:621.252000pt;}
.x6{left:623.413317pt;}
.x79{left:625.142667pt;}
.x84{left:626.421333pt;}
.x73{left:629.925333pt;}
.x43{left:633.029333pt;}
.x78{left:634.017333pt;}
.x3d{left:635.130667pt;}
.x6d{left:638.885333pt;}
.x44{left:646.076000pt;}
.x3e{left:647.210667pt;}
.x82{left:648.626667pt;}
.x75{left:655.902667pt;}
.x25{left:660.556000pt;}
.x76{left:669.186667pt;}
.x29{left:672.348000pt;}
.x26{left:673.838667pt;}
.xb{left:679.585333pt;}
.xc{left:686.228000pt;}
.x2a{left:687.190667pt;}
}




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