
    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_cd958410a3e2a97f77495981.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_1a0d3c9cba2260ba8b00ca2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_864924ac2b13355f0081b3f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887000;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_ca08eef934e271a185b46624.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_adbcf360c8cce0055d7543cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.845000;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_67b2581ba1e5ca1acb6f64d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.164000;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_c5307ee23acb5136f7a19716.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_705cd26911a6d8fabb1cef2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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_8712a0c42802e6875b1d6005.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_941f9ad4331a0583ca21c111.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.672000;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_ca6857dbb6e9075b3c453ac9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.550000;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_1c6698f0df254294fb669665.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899000;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_0a6a52bc3534769449566b7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_161431341a0c88ba90761e4e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908000;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_dbc2907cfa18ead69172bd50.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;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_145c4da8950e8ff799b23e1c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918000;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_f9ae71920304ef8f3609bfa9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2ee8d2562bf1156004da25a7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7cf1e51dfe07036eb8deb2f4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_77e8ec1c3184acd5afa85060.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5c059af80a1432c4e5115c86.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.868000;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);}
.m10{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);}
.m5{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);}
.m2{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);}
.m12{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);}
.m1b{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);}
.m1c{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);}
.m7{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);}
.m6{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);}
.m16{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);}
.me{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);}
.m14{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);}
.m1a{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m3{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);}
.m13{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);}
.m8{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);}
.mc{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.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);}
.m1d{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);}
.m19{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);}
.m9{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.mb{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);}
.m18{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);}
.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);}
.v6{vertical-align:-65.274000px;}
.v2{vertical-align:-26.028000px;}
.v9{vertical-align:-21.282000px;}
.v12{vertical-align:-19.446000px;}
.v14{vertical-align:-17.874000px;}
.v3{vertical-align:-16.182000px;}
.v7{vertical-align:-13.552587px;}
.v10{vertical-align:-11.412000px;}
.v4{vertical-align:-10.128000px;}
.vc{vertical-align:-8.040000px;}
.v16{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:10.128000px;}
.v13{vertical-align:11.682000px;}
.v8{vertical-align:19.894213px;}
.v5{vertical-align:23.748000px;}
.v1{vertical-align:26.034000px;}
.vf{vertical-align:32.160000px;}
.vb{vertical-align:34.146000px;}
.v15{vertical-align:37.932000px;}
.ve{vertical-align:40.194000px;}
.va{vertical-align:44.280000px;}
.vd{vertical-align:72.660000px;}
.v11{vertical-align:95.226000px;}
.ls5{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000422px;}
.ls17{letter-spacing:0.000503px;}
.ls33{letter-spacing:0.000513px;}
.ls43{letter-spacing:0.001050px;}
.ls1f{letter-spacing:0.001338px;}
.ls2c{letter-spacing:0.001580px;}
.ls9{letter-spacing:0.001588px;}
.ls39{letter-spacing:0.001593px;}
.ls3d{letter-spacing:0.001597px;}
.ls3b{letter-spacing:0.002149px;}
.ls1b{letter-spacing:0.002250px;}
.ls22{letter-spacing:0.002560px;}
.lsd{letter-spacing:0.002682px;}
.ls3e{letter-spacing:0.002687px;}
.ls41{letter-spacing:0.002688px;}
.ls4d{letter-spacing:0.002706px;}
.ls51{letter-spacing:0.002712px;}
.ls16{letter-spacing:0.003056px;}
.ls35{letter-spacing:0.003325px;}
.ls3a{letter-spacing:0.003419px;}
.ls18{letter-spacing:0.004335px;}
.lse{letter-spacing:0.005415px;}
.ls36{letter-spacing:0.005916px;}
.ls3c{letter-spacing:0.007593px;}
.ls1d{letter-spacing:0.203257px;}
.ls14{letter-spacing:0.242692px;}
.ls1a{letter-spacing:2.502881px;}
.ls25{letter-spacing:2.898520px;}
.ls8{letter-spacing:2.982665px;}
.ls44{letter-spacing:2.984915px;}
.ls2f{letter-spacing:2.985008px;}
.ls32{letter-spacing:2.986127px;}
.ls0{letter-spacing:2.988479px;}
.ls7{letter-spacing:2.988665px;}
.ls42{letter-spacing:2.990915px;}
.ls40{letter-spacing:2.991008px;}
.ls1{letter-spacing:2.994479px;}
.ls6{letter-spacing:3.454878px;}
.lsf{letter-spacing:3.460878px;}
.lsc{letter-spacing:4.772524px;}
.ls34{letter-spacing:7.175412px;}
.ls5b{letter-spacing:13.892915px;}
.ls5e{letter-spacing:14.540700px;}
.ls45{letter-spacing:14.540712px;}
.ls53{letter-spacing:14.543412px;}
.ls5a{letter-spacing:14.546700px;}
.ls5f{letter-spacing:14.549412px;}
.ls4a{letter-spacing:17.534915px;}
.ls52{letter-spacing:18.179412px;}
.ls54{letter-spacing:18.196379px;}
.ls59{letter-spacing:21.164915px;}
.ls2{letter-spacing:21.700349px;}
.ls2d{letter-spacing:24.051242px;}
.ls47{letter-spacing:24.686915px;}
.ls4c{letter-spacing:24.692915px;}
.ls57{letter-spacing:25.349412px;}
.ls37{letter-spacing:26.928513px;}
.ls2e{letter-spacing:27.046571px;}
.ls4f{letter-spacing:28.340915px;}
.ls15{letter-spacing:28.560784px;}
.ls5d{letter-spacing:28.751412px;}
.ls4{letter-spacing:30.383973px;}
.ls49{letter-spacing:32.606712px;}
.ls3{letter-spacing:32.729973px;}
.ls31{letter-spacing:32.825412px;}
.lsa{letter-spacing:35.834712px;}
.lsb{letter-spacing:35.840712px;}
.ls5c{letter-spacing:39.230915px;}
.ls30{letter-spacing:45.897754px;}
.ls4b{letter-spacing:45.953412px;}
.ls4e{letter-spacing:55.913412px;}
.ls1c{letter-spacing:69.207398px;}
.ls11{letter-spacing:74.714915px;}
.ls13{letter-spacing:74.720915px;}
.ls10{letter-spacing:125.348915px;}
.ls12{letter-spacing:125.720915px;}
.ls2b{letter-spacing:126.211678px;}
.ls19{letter-spacing:134.816915px;}
.ls56{letter-spacing:148.349400px;}
.ls3f{letter-spacing:195.113364px;}
.ls27{letter-spacing:195.386654px;}
.ls1e{letter-spacing:199.477053px;}
.ls26{letter-spacing:200.848895px;}
.ls28{letter-spacing:204.165434px;}
.ls55{letter-spacing:205.526712px;}
.ls21{letter-spacing:256.137760px;}
.ls23{letter-spacing:287.757477px;}
.ls24{letter-spacing:313.194331px;}
.ls29{letter-spacing:347.590697px;}
.ls2a{letter-spacing:355.932296px;}
.ls46{letter-spacing:589.259412px;}
.ls38{letter-spacing:664.244712px;}
.ls48{letter-spacing:718.346712px;}
.ls50{letter-spacing:827.954712px;}
.ls58{letter-spacing:943.916712px;}
.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;}
}
.ws27{word-spacing:-65.454600px;}
.ws52{word-spacing:-54.818882px;}
.ws9{word-spacing:-47.333852px;}
.ws7f{word-spacing:-47.289948px;}
.ws84{word-spacing:-47.269825px;}
.ws40{word-spacing:-42.637126px;}
.wsd{word-spacing:-37.387668px;}
.ws8c{word-spacing:-36.379667px;}
.ws6a{word-spacing:-32.995064px;}
.ws2b{word-spacing:-32.544027px;}
.ws4e{word-spacing:-27.255948px;}
.wse{word-spacing:-26.484810px;}
.wsc{word-spacing:-26.478810px;}
.ws1b{word-spacing:-18.183288px;}
.ws93{word-spacing:-17.685833px;}
.ws5{word-spacing:-15.829597px;}
.ws10{word-spacing:-15.788874px;}
.ws9f{word-spacing:-15.787650px;}
.ws39{word-spacing:-15.743520px;}
.ws5d{word-spacing:-15.571365px;}
.ws65{word-spacing:-15.329467px;}
.ws53{word-spacing:-15.228685px;}
.ws33{word-spacing:-14.740376px;}
.ws15{word-spacing:-14.020375px;}
.ws87{word-spacing:-13.627648px;}
.ws64{word-spacing:-13.104011px;}
.ws3d{word-spacing:-12.973102px;}
.ws3c{word-spacing:-12.907647px;}
.ws34{word-spacing:-12.645829px;}
.wsb{word-spacing:-12.514920px;}
.wsa{word-spacing:-12.459370px;}
.ws3{word-spacing:-12.449465px;}
.ws4c{word-spacing:-12.122192px;}
.ws77{word-spacing:-11.729464px;}
.ws82{word-spacing:-11.598555px;}
.ws3b{word-spacing:-11.402191px;}
.ws3f{word-spacing:-11.271282px;}
.ws36{word-spacing:-11.205828px;}
.ws37{word-spacing:-11.140373px;}
.ws9c{word-spacing:-11.080903px;}
.ws43{word-spacing:-11.074918px;}
.ws35{word-spacing:-11.009464px;}
.ws94{word-spacing:-10.995469px;}
.ws14{word-spacing:-10.944009px;}
.ws6{word-spacing:-10.878555px;}
.ws7{word-spacing:-10.813100px;}
.ws3e{word-spacing:-10.747645px;}
.ws18{word-spacing:-10.682191px;}
.ws13{word-spacing:-10.616736px;}
.ws19{word-spacing:-10.551282px;}
.ws16{word-spacing:-10.485827px;}
.ws3a{word-spacing:-10.420372px;}
.ws49{word-spacing:-10.354918px;}
.ws4a{word-spacing:-10.289463px;}
.ws63{word-spacing:-10.093099px;}
.ws71{word-spacing:-9.962190px;}
.ws72{word-spacing:-9.896736px;}
.ws38{word-spacing:-9.831281px;}
.ws17{word-spacing:-9.700372px;}
.ws12{word-spacing:-9.438553px;}
.ws11{word-spacing:-9.373099px;}
.ws74{word-spacing:-9.242190px;}
.ws73{word-spacing:-9.176735px;}
.ws4f{word-spacing:-9.110898px;}
.ws4d{word-spacing:-9.056079px;}
.ws83{word-spacing:-8.718553px;}
.ws9e{word-spacing:-8.522189px;}
.ws6b{word-spacing:-8.456734px;}
.ws61{word-spacing:-8.194916px;}
.ws32{word-spacing:-7.736734px;}
.ws7d{word-spacing:-7.474915px;}
.ws7c{word-spacing:-7.409461px;}
.ws42{word-spacing:-7.344006px;}
.ws62{word-spacing:-6.558551px;}
.ws78{word-spacing:-6.296733px;}
.wsa2{word-spacing:-6.231278px;}
.ws76{word-spacing:-5.642187px;}
.ws5e{word-spacing:-5.249459px;}
.ws6c{word-spacing:-4.791277px;}
.ws60{word-spacing:-4.333095px;}
.ws5f{word-spacing:-4.267640px;}
.ws95{word-spacing:-4.173190px;}
.ws1c{word-spacing:-4.136731px;}
.ws1a{word-spacing:-4.071276px;}
.ws7e{word-spacing:-3.652367px;}
.ws91{word-spacing:-3.639888px;}
.ws8b{word-spacing:-3.639426px;}
.ws80{word-spacing:-3.637776px;}
.ws88{word-spacing:-3.613094px;}
.ws41{word-spacing:-3.547639px;}
.ws9b{word-spacing:-3.482185px;}
.ws75{word-spacing:-3.220366px;}
.wsa1{word-spacing:-2.762184px;}
.ws4{word-spacing:-0.065455px;}
.ws50{word-spacing:-0.054819px;}
.ws8f{word-spacing:-0.052364px;}
.ws2{word-spacing:-0.047821px;}
.ws51{word-spacing:-0.040050px;}
.ws6e{word-spacing:-0.035866px;}
.ws8{word-spacing:0.000000px;}
.ws89{word-spacing:0.013091px;}
.ws90{word-spacing:3.547639px;}
.ws1f{word-spacing:7.029628px;}
.ws81{word-spacing:15.521305px;}
.ws6d{word-spacing:21.118622px;}
.ws86{word-spacing:21.121137px;}
.ws8d{word-spacing:21.122952px;}
.ws9d{word-spacing:22.909110px;}
.wsa0{word-spacing:23.170928px;}
.ws1{word-spacing:23.312640px;}
.ws8e{word-spacing:24.636010px;}
.ws92{word-spacing:24.642010px;}
.ws96{word-spacing:24.643960px;}
.wsa3{word-spacing:26.994874px;}
.ws4b{word-spacing:27.222497px;}
.ws0{word-spacing:32.227229px;}
.ws7a{word-spacing:38.788396px;}
.ws2c{word-spacing:39.163255px;}
.ws47{word-spacing:39.164465px;}
.ws45{word-spacing:39.166722px;}
.ws22{word-spacing:39.179946px;}
.ws67{word-spacing:39.180981px;}
.ws20{word-spacing:39.194214px;}
.ws69{word-spacing:39.204751px;}
.ws30{word-spacing:44.045658px;}
.ws26{word-spacing:44.344873px;}
.ws2e{word-spacing:50.892720px;}
.ws31{word-spacing:55.775122px;}
.ws1e{word-spacing:61.252415px;}
.ws2f{word-spacing:62.622184px;}
.ws46{word-spacing:71.708492px;}
.ws7b{word-spacing:74.670010px;}
.ws9a{word-spacing:74.671960px;}
.ws99{word-spacing:74.675500px;}
.ws98{word-spacing:74.690688px;}
.ws2a{word-spacing:76.896064px;}
.ws5c{word-spacing:82.462190px;}
.ws68{word-spacing:84.357888px;}
.ws97{word-spacing:84.432213px;}
.ws79{word-spacing:88.050213px;}
.ws24{word-spacing:95.573946px;}
.ws1d{word-spacing:97.038213px;}
.ws48{word-spacing:109.362010px;}
.ws70{word-spacing:120.181389px;}
.ws29{word-spacing:125.725196px;}
.ws2d{word-spacing:127.557924px;}
.ws6f{word-spacing:129.847389px;}
.ws23{word-spacing:146.212485px;}
.ws56{word-spacing:151.616210px;}
.ws54{word-spacing:155.705271px;}
.ws55{word-spacing:157.072088px;}
.ws57{word-spacing:160.392713px;}
.ws25{word-spacing:180.445241px;}
.ws8a{word-spacing:188.948098px;}
.ws21{word-spacing:203.943443px;}
.ws66{word-spacing:220.422357px;}
.ws28{word-spacing:232.743467px;}
.ws5a{word-spacing:266.438740px;}
.ws5b{word-spacing:291.875593px;}
.ws58{word-spacing:303.859209px;}
.ws59{word-spacing:312.180716px;}
.ws44{word-spacing:326.151098px;}
.ws85{word-spacing:702.587777px;}
.wsf{word-spacing:2217.196041px;}
._42{margin-left:-25.461839px;}
._43{margin-left:-21.469109px;}
._45{margin-left:-17.938299px;}
._44{margin-left:-14.530921px;}
._23{margin-left:-7.833025px;}
._6{margin-left:-6.559087px;}
._4{margin-left:-5.061367px;}
._2{margin-left:-3.873485px;}
._1{margin-left:-2.685602px;}
._5{margin-left:-1.187882px;}
._11{width:1.461364px;}
._0{width:2.685602px;}
._3{width:3.716006px;}
._28{width:5.115139px;}
._2f{width:9.100052px;}
._39{width:10.888115px;}
._46{width:14.891055px;}
._34{width:18.394706px;}
._33{width:20.828190px;}
._27{width:22.714710px;}
._32{width:25.398349px;}
._47{width:26.772895px;}
._7{width:28.299392px;}
._12{width:30.111080px;}
._26{width:31.158353px;}
._13{width:33.120028px;}
._38{width:35.412902px;}
._31{width:37.701850px;}
._24{width:39.522915px;}
._2a{width:40.693362px;}
._14{width:42.370489px;}
._4b{width:43.854582px;}
._37{width:47.662014px;}
._25{width:50.729279px;}
._29{width:52.419435px;}
._30{width:59.746831px;}
._3c{width:71.738242px;}
._40{width:75.352020px;}
._3d{width:76.621329px;}
._3e{width:78.253329px;}
._3b{width:80.234423px;}
._2c{width:82.409264px;}
._21{width:83.436747px;}
._3f{width:85.831302px;}
._1c{width:109.440091px;}
._49{width:111.262267px;}
._2b{width:115.436092px;}
._36{width:117.754789px;}
._18{width:130.073149px;}
._1b{width:141.802613px;}
._2d{width:147.664267px;}
._1e{width:158.262058px;}
._16{width:165.485057px;}
._48{width:167.057388px;}
._41{width:180.197198px;}
._35{width:190.116877px;}
._c{width:201.883363px;}
._1f{width:214.661639px;}
._3a{width:223.628135px;}
._4a{width:231.251102px;}
._20{width:236.225651px;}
._1d{width:241.723838px;}
._15{width:264.055074px;}
._1a{width:268.839544px;}
._2e{width:316.103973px;}
._19{width:323.104161px;}
._17{width:421.738803px;}
._22{width:466.887662px;}
._f{width:487.938711px;}
._e{width:594.521195px;}
._d{width:739.636980px;}
._9{width:1271.469232px;}
._10{width:1556.248570px;}
._b{width:1618.515293px;}
._8{width:1758.176011px;}
._a{width:1816.103332px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs6{font-size:40.050231px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:54.818882px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y10{bottom:68.253000px;}
.yd7{bottom:115.683000px;}
.yfe{bottom:119.182500px;}
.yd6{bottom:126.907500px;}
.yfd{bottom:139.506000px;}
.y6b{bottom:146.677339px;}
.yfc{bottom:159.829500px;}
.yd5{bottom:163.327500px;}
.y6a{bottom:163.698473px;}
.yfb{bottom:180.154500px;}
.y69{bottom:180.719608px;}
.yd4{bottom:181.197000px;}
.yd3{bottom:183.652500px;}
.y68{bottom:197.741998px;}
.yfa{bottom:201.075000px;}
.y86{bottom:205.341000px;}
.yd2{bottom:208.234500px;}
.y67{bottom:214.763133px;}
.yd1{bottom:219.459000px;}
.yf9{bottom:222.384000px;}
.y85{bottom:225.664500px;}
.y66{bottom:231.784267px;}
.yf8{bottom:242.709000px;}
.y84{bottom:245.988000px;}
.y65{bottom:248.805402px;}
.yd0{bottom:254.970000px;}
.yf7{bottom:263.032500px;}
.y64{bottom:265.826536px;}
.y83{bottom:266.311500px;}
.ycf{bottom:272.839500px;}
.yce{bottom:275.293500px;}
.y63{bottom:283.348921px;}
.yf6{bottom:283.356000px;}
.y82{bottom:286.635000px;}
.y32{bottom:293.295000px;}
.y62{bottom:300.871305px;}
.y44{bottom:303.622500px;}
.yf5{bottom:303.679500px;}
.ycc{bottom:304.839000px;}
.y81{bottom:306.960000px;}
.y31{bottom:313.618500px;}
.ycd{bottom:316.164000px;}
.y61{bottom:317.892439px;}
.y43{bottom:323.946000px;}
.yf4{bottom:324.003000px;}
.y80{bottom:327.283500px;}
.y30{bottom:334.540500px;}
.y60{bottom:334.913574px;}
.y42{bottom:344.269500px;}
.yf3{bottom:344.328000px;}
.y7f{bottom:347.607000px;}
.y5f{bottom:351.934708px;}
.y2f{bottom:354.864000px;}
.ycb{bottom:357.141000px;}
.y41{bottom:364.593000px;}
.y7d{bottom:367.930500px;}
.y5e{bottom:368.955843px;}
.y7e{bottom:373.869000px;}
.y2e{bottom:375.187500px;}
.yca{bottom:377.464500px;}
.y40{bottom:384.918000px;}
.y5d{bottom:385.978234px;}
.y7c{bottom:388.254000px;}
.yf2{bottom:393.480000px;}
.y2d{bottom:395.512500px;}
.yc9{bottom:397.788000px;}
.y5c{bottom:402.999368px;}
.y3f{bottom:405.241500px;}
.y7b{bottom:408.579000px;}
.yf1{bottom:413.803500px;}
.y2c{bottom:416.433000px;}
.y5b{bottom:420.020503px;}
.yc8{bottom:427.332000px;}
.y7a{bottom:428.902500px;}
.yef{bottom:434.127000px;}
.y2b{bottom:436.758000px;}
.y5a{bottom:437.542887px;}
.yf0{bottom:440.065500px;}
.y3e{bottom:441.765000px;}
.y79{bottom:449.226000px;}
.yee{bottom:454.452000px;}
.y59{bottom:455.542500px;}
.y2a{bottom:457.678500px;}
.yc7{bottom:458.827500px;}
.y58{bottom:473.412000px;}
.yed{bottom:474.775500px;}
.y57{bottom:475.866000px;}
.y29{bottom:478.002000px;}
.y78{bottom:484.302000px;}
.yec{bottom:495.099000px;}
.y28{bottom:497.502000px;}
.y77{bottom:504.625500px;}
.yc6{bottom:508.696500px;}
.y3d{bottom:511.251000px;}
.yeb{bottom:515.422500px;}
.y27{bottom:517.825500px;}
.y76{bottom:524.949000px;}
.y56{bottom:525.688500px;}
.yc5{bottom:529.020000px;}
.y3c{bottom:531.574500px;}
.y75{bottom:545.272500px;}
.y55{bottom:546.012000px;}
.ya8{bottom:549.013500px;}
.yc4{bottom:549.343500px;}
.y10a{bottom:551.614500px;}
.y3b{bottom:551.898000px;}
.yea{bottom:551.947500px;}
.y54{bottom:566.335500px;}
.y26{bottom:567.648000px;}
.ya7{bottom:569.337000px;}
.yc3{bottom:569.667000px;}
.y109{bottom:571.938000px;}
.y25{bottom:587.971500px;}
.ya6{bottom:589.660500px;}
.y108{bottom:592.261500px;}
.ye9{bottom:593.994000px;}
.y53{bottom:602.860500px;}
.yf{bottom:605.121000px;}
.ye8{bottom:605.218500px;}
.yc2{bottom:606.192000px;}
.y24{bottom:608.295000px;}
.ya5{bottom:609.985500px;}
.y107{bottom:612.585000px;}
.y23{bottom:628.620000px;}
.ya4{bottom:630.309000px;}
.y106{bottom:632.908500px;}
.ye{bottom:638.895000px;}
.y22{bottom:648.943500px;}
.ye7{bottom:649.945500px;}
.ya3{bottom:650.632500px;}
.y105{bottom:653.233500px;}
.y52{bottom:655.881000px;}
.yc1{bottom:662.707500px;}
.y21{bottom:669.267000px;}
.ya2{bottom:670.956000px;}
.yd{bottom:672.667500px;}
.y104{bottom:673.557000px;}
.y51{bottom:676.204500px;}
.ye6{bottom:679.503000px;}
.yc0{bottom:683.031000px;}
.ye5{bottom:690.727500px;}
.ya1{bottom:691.279500px;}
.y103{bottom:693.880500px;}
.y50{bottom:696.529500px;}
.ybf{bottom:703.354500px;}
.y20{bottom:708.432000px;}
.yc{bottom:709.192500px;}
.ya0{bottom:711.604500px;}
.y102{bottom:714.204000px;}
.y4f{bottom:716.853000px;}
.ybe{bottom:723.678000px;}
.y1f{bottom:728.757000px;}
.ye4{bottom:735.454500px;}
.y4e{bottom:737.176500px;}
.y9c{bottom:739.042500px;}
.ybd{bottom:744.001500px;}
.y9f{bottom:748.122000px;}
.y101{bottom:750.729000px;}
.y9d{bottom:753.765000px;}
.y4d{bottom:757.500000px;}
.yb{bottom:760.744500px;}
.y93{bottom:763.623000px;}
.ybc{bottom:764.326500px;}
.y9e{bottom:765.442500px;}
.y9b{bottom:766.038000px;}
.y9a{bottom:769.864500px;}
.ye3{bottom:770.209500px;}
.y92{bottom:774.849000px;}
.y96{bottom:782.866500px;}
.ybb{bottom:785.247000px;}
.y99{bottom:791.946000px;}
.y1b{bottom:793.693500px;}
.y4c{bottom:794.740500px;}
.y100{bottom:797.055000px;}
.y97{bottom:797.587500px;}
.ye2{bottom:804.963000px;}
.yba{bottom:805.572000px;}
.y98{bottom:807.636000px;}
.y95{bottom:809.860500px;}
.y94{bottom:813.688500px;}
.y4b{bottom:815.064000px;}
.yff{bottom:817.378500px;}
.yb9{bottom:825.895500px;}
.y1a{bottom:830.287500px;}
.y4a{bottom:835.387500px;}
.ye1{bottom:837.063000px;}
.y91{bottom:842.290500px;}
.yb8{bottom:846.219000px;}
.ya{bottom:847.848000px;}
.y49{bottom:855.712500px;}
.y9{bottom:862.261500px;}
.y90{bottom:862.614000px;}
.y19{bottom:866.883000px;}
.yb7{bottom:867.141000px;}
.ye0{bottom:870.166500px;}
.y48{bottom:876.036000px;}
.y8f{bottom:882.937500px;}
.yb6{bottom:887.464500px;}
.y8{bottom:889.690500px;}
.y47{bottom:896.359500px;}
.y8e{bottom:903.261000px;}
.ydf{bottom:903.270000px;}
.y18{bottom:903.477000px;}
.y7{bottom:904.104000px;}
.yb5{bottom:907.788000px;}
.yb4{bottom:928.111500px;}
.y6{bottom:931.533000px;}
.yde{bottom:936.375000px;}
.y8d{bottom:939.786000px;}
.y17{bottom:940.071000px;}
.y3a{bottom:940.200000px;}
.y46{bottom:944.686500px;}
.yb3{bottom:949.033500px;}
.y5{bottom:952.455000px;}
.y74{bottom:953.949000px;}
.y39{bottom:960.525000px;}
.y45{bottom:965.011500px;}
.ydd{bottom:968.473500px;}
.yb2{bottom:969.357000px;}
.y73{bottom:974.272500px;}
.y16{bottom:976.666500px;}
.y37{bottom:980.848500px;}
.y4{bottom:983.139000px;}
.y38{bottom:986.787000px;}
.yb1{bottom:989.680500px;}
.y8c{bottom:991.312500px;}
.y72{bottom:994.597500px;}
.y36{bottom:1001.172000px;}
.ydc{bottom:1004.998500px;}
.yb0{bottom:1010.004000px;}
.y8b{bottom:1011.636000px;}
.y15{bottom:1013.260500px;}
.y71{bottom:1014.921000px;}
.y35{bottom:1021.495500px;}
.y3{bottom:1028.467500px;}
.y8a{bottom:1032.558000px;}
.y70{bottom:1035.244500px;}
.y34{bottom:1041.819000px;}
.yaf{bottom:1047.244500px;}
.ydb{bottom:1048.278000px;}
.y14{bottom:1049.856000px;}
.y89{bottom:1052.967000px;}
.y6f{bottom:1055.568000px;}
.yda{bottom:1059.502500px;}
.y2{bottom:1061.344500px;}
.y33{bottom:1062.144000px;}
.yae{bottom:1067.568000px;}
.y88{bottom:1073.290500px;}
.y6e{bottom:1075.891500px;}
.y1e{bottom:1082.467500px;}
.y13{bottom:1086.450000px;}
.yac{bottom:1087.893000px;}
.yd9{bottom:1088.823000px;}
.y87{bottom:1093.614000px;}
.yad{bottom:1093.830000px;}
.y1{bottom:1094.221500px;}
.y6d{bottom:1096.216500px;}
.y1d{bottom:1102.791000px;}
.yab{bottom:1108.216500px;}
.yd8{bottom:1111.117500px;}
.y12{bottom:1123.044000px;}
.y1c{bottom:1123.114500px;}
.yaa{bottom:1128.540000px;}
.y6c{bottom:1132.740000px;}
.ya9{bottom:1148.863500px;}
.y11{bottom:1159.639500px;}
.he{height:2.618184px;}
.h4{height:33.235317px;}
.ha{height:33.665702px;}
.hb{height:34.363665px;}
.h9{height:46.210948px;}
.h14{height:49.090950px;}
.h8{height:49.156405px;}
.hc{height:50.104458px;}
.h5{height:51.287808px;}
.h3{height:59.269317px;}
.h6{height:59.825504px;}
.h18{height:60.689702px;}
.h7{height:64.643977px;}
.h13{height:71.597702px;}
.h2{height:72.614557px;}
.h11{height:75.272184px;}
.hf{height:75.278184px;}
.hd{height:90.490948px;}
.h15{height:93.370950px;}
.h10{height:97.844184px;}
.h1a{height:101.693702px;}
.h19{height:101.699702px;}
.h17{height:104.723504px;}
.h16{height:105.587702px;}
.h12{height:166.733504px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:110.349000px;}
.xc{left:112.252500px;}
.x6{left:115.813500px;}
.x28{left:116.865000px;}
.x1e{left:121.218000px;}
.x27{left:122.781000px;}
.x2c{left:124.305106px;}
.x8{left:130.050000px;}
.xb{left:135.940500px;}
.x12{left:137.656500px;}
.x3{left:139.261500px;}
.x2{left:146.512500px;}
.x7a{left:157.048500px;}
.x87{left:160.783500px;}
.xa{left:161.847000px;}
.x5{left:163.827000px;}
.x4{left:165.096000px;}
.x88{left:168.483000px;}
.x4d{left:173.680500px;}
.x39{left:178.528500px;}
.x61{left:179.628000px;}
.x48{left:185.835000px;}
.x7e{left:191.562000px;}
.x29{left:193.498500px;}
.x8a{left:194.709000px;}
.x89{left:199.158000px;}
.x4e{left:203.517000px;}
.x49{left:209.857500px;}
.x62{left:223.489500px;}
.x81{left:237.949500px;}
.x1f{left:245.358000px;}
.x18{left:247.816500px;}
.x25{left:253.557000px;}
.x8b{left:255.306000px;}
.x19{left:257.935500px;}
.x63{left:259.854000px;}
.x26{left:273.306000px;}
.x36{left:275.362500px;}
.x64{left:278.602500px;}
.x5d{left:280.747500px;}
.x69{left:283.140000px;}
.x71{left:287.496000px;}
.x6a{left:292.585500px;}
.x5e{left:293.613000px;}
.x65{left:295.581000px;}
.x7d{left:297.027000px;}
.x3e{left:306.241500px;}
.x1{left:309.441000px;}
.x53{left:314.031000px;}
.x54{left:319.669500px;}
.x15{left:321.472500px;}
.x2a{left:328.828500px;}
.x16{left:331.591500px;}
.x6f{left:333.201000px;}
.x7b{left:347.169000px;}
.x9{left:362.323500px;}
.x50{left:364.089000px;}
.x84{left:368.787000px;}
.x66{left:374.928000px;}
.x3a{left:380.253000px;}
.x82{left:381.352500px;}
.x51{left:382.587000px;}
.x3f{left:389.563500px;}
.x32{left:393.417000px;}
.x7{left:395.479500px;}
.x7c{left:399.942000px;}
.x4a{left:412.306500px;}
.x77{left:415.885500px;}
.x6e{left:422.505000px;}
.x33{left:425.361000px;}
.x3b{left:427.447500px;}
.x40{left:429.706500px;}
.x41{left:432.229500px;}
.x44{left:435.096000px;}
.x67{left:436.692000px;}
.x3c{left:439.519500px;}
.x7f{left:440.787000px;}
.x83{left:442.671000px;}
.xd{left:443.823000px;}
.x68{left:446.811000px;}
.x42{left:454.753500px;}
.x6b{left:456.699000px;}
.x70{left:457.852500px;}
.x78{left:468.658500px;}
.x74{left:477.306000px;}
.x4f{left:479.248500px;}
.x73{left:481.188000px;}
.x5a{left:500.104500px;}
.x45{left:503.940000px;}
.x34{left:510.396000px;}
.x80{left:524.113500px;}
.x46{left:528.358500px;}
.x47{left:530.436000px;}
.x43{left:533.298000px;}
.x6c{left:540.091500px;}
.x35{left:542.340000px;}
.x5b{left:543.966000px;}
.x72{left:546.082500px;}
.x1a{left:552.912000px;}
.x75{left:560.593500px;}
.x1b{left:563.031000px;}
.x55{left:570.075000px;}
.x76{left:573.925500px;}
.x4b{left:582.339000px;}
.x4c{left:599.940000px;}
.x56{left:604.662000px;}
.x37{left:612.684000px;}
.x85{left:615.522000px;}
.x86{left:623.281500px;}
.x30{left:630.973500px;}
.x5c{left:635.673000px;}
.x38{left:644.629500px;}
.x5f{left:651.760500px;}
.x2d{left:655.860000px;}
.x6d{left:656.991000px;}
.x31{left:662.917500px;}
.x59{left:667.237500px;}
.x20{left:670.378500px;}
.x17{left:674.752500px;}
.x21{left:680.907000px;}
.xe{left:685.851000px;}
.xf{left:695.971500px;}
.x2e{left:701.470500px;}
.x2f{left:702.981000px;}
.x57{left:711.120000px;}
.x1c{left:723.151500px;}
.x60{left:727.740000px;}
.x10{left:730.407000px;}
.x13{left:731.541000px;}
.x1d{left:733.270500px;}
.x22{left:734.331000px;}
.x11{left:740.935500px;}
.x14{left:742.069500px;}
.x23{left:751.309500px;}
.x58{left:753.006000px;}
.x79{left:764.638500px;}
.x52{left:765.766500px;}
.x2b{left:774.612000px;}
.x24{left:775.906500px;}
@media print{
.v6{vertical-align:-58.021333pt;}
.v2{vertical-align:-23.136000pt;}
.v9{vertical-align:-18.917333pt;}
.v12{vertical-align:-17.285333pt;}
.v14{vertical-align:-15.888000pt;}
.v3{vertical-align:-14.384000pt;}
.v7{vertical-align:-12.046744pt;}
.v10{vertical-align:-10.144000pt;}
.v4{vertical-align:-9.002667pt;}
.vc{vertical-align:-7.146667pt;}
.v16{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:9.002667pt;}
.v13{vertical-align:10.384000pt;}
.v8{vertical-align:17.683744pt;}
.v5{vertical-align:21.109333pt;}
.v1{vertical-align:23.141333pt;}
.vf{vertical-align:28.586667pt;}
.vb{vertical-align:30.352000pt;}
.v15{vertical-align:33.717333pt;}
.ve{vertical-align:35.728000pt;}
.va{vertical-align:39.360000pt;}
.vd{vertical-align:64.586667pt;}
.v11{vertical-align:84.645333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000375pt;}
.ls17{letter-spacing:0.000447pt;}
.ls33{letter-spacing:0.000456pt;}
.ls43{letter-spacing:0.000933pt;}
.ls1f{letter-spacing:0.001189pt;}
.ls2c{letter-spacing:0.001404pt;}
.ls9{letter-spacing:0.001411pt;}
.ls39{letter-spacing:0.001416pt;}
.ls3d{letter-spacing:0.001420pt;}
.ls3b{letter-spacing:0.001910pt;}
.ls1b{letter-spacing:0.002000pt;}
.ls22{letter-spacing:0.002275pt;}
.lsd{letter-spacing:0.002384pt;}
.ls3e{letter-spacing:0.002388pt;}
.ls41{letter-spacing:0.002389pt;}
.ls4d{letter-spacing:0.002405pt;}
.ls51{letter-spacing:0.002411pt;}
.ls16{letter-spacing:0.002717pt;}
.ls35{letter-spacing:0.002956pt;}
.ls3a{letter-spacing:0.003039pt;}
.ls18{letter-spacing:0.003854pt;}
.lse{letter-spacing:0.004813pt;}
.ls36{letter-spacing:0.005258pt;}
.ls3c{letter-spacing:0.006750pt;}
.ls1d{letter-spacing:0.180673pt;}
.ls14{letter-spacing:0.215727pt;}
.ls1a{letter-spacing:2.224783pt;}
.ls25{letter-spacing:2.576462pt;}
.ls8{letter-spacing:2.651257pt;}
.ls44{letter-spacing:2.653258pt;}
.ls2f{letter-spacing:2.653340pt;}
.ls32{letter-spacing:2.654335pt;}
.ls0{letter-spacing:2.656426pt;}
.ls7{letter-spacing:2.656591pt;}
.ls42{letter-spacing:2.658591pt;}
.ls40{letter-spacing:2.658673pt;}
.ls1{letter-spacing:2.661759pt;}
.ls6{letter-spacing:3.071003pt;}
.lsf{letter-spacing:3.076336pt;}
.lsc{letter-spacing:4.242243pt;}
.ls34{letter-spacing:6.378144pt;}
.ls5b{letter-spacing:12.349258pt;}
.ls5e{letter-spacing:12.925067pt;}
.ls45{letter-spacing:12.925077pt;}
.ls53{letter-spacing:12.927477pt;}
.ls5a{letter-spacing:12.930400pt;}
.ls5f{letter-spacing:12.932811pt;}
.ls4a{letter-spacing:15.586591pt;}
.ls52{letter-spacing:16.159477pt;}
.ls54{letter-spacing:16.174559pt;}
.ls59{letter-spacing:18.813258pt;}
.ls2{letter-spacing:19.289199pt;}
.ls2d{letter-spacing:21.378881pt;}
.ls47{letter-spacing:21.943925pt;}
.ls4c{letter-spacing:21.949258pt;}
.ls57{letter-spacing:22.532811pt;}
.ls37{letter-spacing:23.936456pt;}
.ls2e{letter-spacing:24.041397pt;}
.ls4f{letter-spacing:25.191925pt;}
.ls15{letter-spacing:25.387363pt;}
.ls5d{letter-spacing:25.556811pt;}
.ls4{letter-spacing:27.007976pt;}
.ls49{letter-spacing:28.983744pt;}
.ls3{letter-spacing:29.093309pt;}
.ls31{letter-spacing:29.178144pt;}
.lsa{letter-spacing:31.853077pt;}
.lsb{letter-spacing:31.858411pt;}
.ls5c{letter-spacing:34.871925pt;}
.ls30{letter-spacing:40.798003pt;}
.ls4b{letter-spacing:40.847477pt;}
.ls4e{letter-spacing:49.700811pt;}
.ls1c{letter-spacing:61.517687pt;}
.ls11{letter-spacing:66.413258pt;}
.ls13{letter-spacing:66.418591pt;}
.ls10{letter-spacing:111.421258pt;}
.ls12{letter-spacing:111.751925pt;}
.ls2b{letter-spacing:112.188159pt;}
.ls19{letter-spacing:119.837258pt;}
.ls56{letter-spacing:131.866133pt;}
.ls3f{letter-spacing:173.434102pt;}
.ls27{letter-spacing:173.677026pt;}
.ls1e{letter-spacing:177.312936pt;}
.ls26{letter-spacing:178.532351pt;}
.ls28{letter-spacing:181.480386pt;}
.ls55{letter-spacing:182.690411pt;}
.ls21{letter-spacing:227.678009pt;}
.ls23{letter-spacing:255.784424pt;}
.ls24{letter-spacing:278.394961pt;}
.ls29{letter-spacing:308.969508pt;}
.ls2a{letter-spacing:316.384263pt;}
.ls46{letter-spacing:523.786144pt;}
.ls38{letter-spacing:590.439744pt;}
.ls48{letter-spacing:638.530411pt;}
.ls50{letter-spacing:735.959744pt;}
.ls58{letter-spacing:839.037077pt;}
.ws27{word-spacing:-58.181867pt;}
.ws52{word-spacing:-48.727895pt;}
.ws9{word-spacing:-42.074535pt;}
.ws7f{word-spacing:-42.035510pt;}
.ws84{word-spacing:-42.017622pt;}
.ws40{word-spacing:-37.899668pt;}
.wsd{word-spacing:-33.233482pt;}
.ws8c{word-spacing:-32.337481pt;}
.ws6a{word-spacing:-29.328946pt;}
.ws2b{word-spacing:-28.928024pt;}
.ws4e{word-spacing:-24.227509pt;}
.wse{word-spacing:-23.542054pt;}
.wsc{word-spacing:-23.536720pt;}
.ws1b{word-spacing:-16.162923pt;}
.ws93{word-spacing:-15.720740pt;}
.ws5{word-spacing:-14.070753pt;}
.ws10{word-spacing:-14.034554pt;}
.ws9f{word-spacing:-14.033466pt;}
.ws39{word-spacing:-13.994240pt;}
.ws5d{word-spacing:-13.841214pt;}
.ws65{word-spacing:-13.626193pt;}
.ws53{word-spacing:-13.536609pt;}
.ws33{word-spacing:-13.102556pt;}
.ws15{word-spacing:-12.462556pt;}
.ws87{word-spacing:-12.113465pt;}
.ws64{word-spacing:-11.648010pt;}
.ws3d{word-spacing:-11.531646pt;}
.ws3c{word-spacing:-11.473464pt;}
.ws34{word-spacing:-11.240737pt;}
.wsb{word-spacing:-11.124373pt;}
.wsa{word-spacing:-11.074995pt;}
.ws3{word-spacing:-11.066191pt;}
.ws4c{word-spacing:-10.775282pt;}
.ws77{word-spacing:-10.426191pt;}
.ws82{word-spacing:-10.309827pt;}
.ws3b{word-spacing:-10.135281pt;}
.ws3f{word-spacing:-10.018917pt;}
.ws36{word-spacing:-9.960736pt;}
.ws37{word-spacing:-9.902554pt;}
.ws9c{word-spacing:-9.849691pt;}
.ws43{word-spacing:-9.844372pt;}
.ws35{word-spacing:-9.786190pt;}
.ws94{word-spacing:-9.773750pt;}
.ws14{word-spacing:-9.728008pt;}
.ws6{word-spacing:-9.669826pt;}
.ws7{word-spacing:-9.611644pt;}
.ws3e{word-spacing:-9.553463pt;}
.ws18{word-spacing:-9.495281pt;}
.ws13{word-spacing:-9.437099pt;}
.ws19{word-spacing:-9.378917pt;}
.ws16{word-spacing:-9.320735pt;}
.ws3a{word-spacing:-9.262553pt;}
.ws49{word-spacing:-9.204371pt;}
.ws4a{word-spacing:-9.146189pt;}
.ws63{word-spacing:-8.971644pt;}
.ws71{word-spacing:-8.855280pt;}
.ws72{word-spacing:-8.797098pt;}
.ws38{word-spacing:-8.738916pt;}
.ws17{word-spacing:-8.622553pt;}
.ws12{word-spacing:-8.389825pt;}
.ws11{word-spacing:-8.331643pt;}
.ws74{word-spacing:-8.215280pt;}
.ws73{word-spacing:-8.157098pt;}
.ws4f{word-spacing:-8.098576pt;}
.ws4d{word-spacing:-8.049848pt;}
.ws83{word-spacing:-7.749825pt;}
.ws9e{word-spacing:-7.575279pt;}
.ws6b{word-spacing:-7.517097pt;}
.ws61{word-spacing:-7.284370pt;}
.ws32{word-spacing:-6.877097pt;}
.ws7d{word-spacing:-6.644369pt;}
.ws7c{word-spacing:-6.586187pt;}
.ws42{word-spacing:-6.528005pt;}
.ws62{word-spacing:-5.829823pt;}
.ws78{word-spacing:-5.597096pt;}
.wsa2{word-spacing:-5.538914pt;}
.ws76{word-spacing:-5.015277pt;}
.ws5e{word-spacing:-4.666186pt;}
.ws6c{word-spacing:-4.258913pt;}
.ws60{word-spacing:-3.851640pt;}
.ws5f{word-spacing:-3.793458pt;}
.ws95{word-spacing:-3.709502pt;}
.ws1c{word-spacing:-3.677094pt;}
.ws1a{word-spacing:-3.618912pt;}
.ws7e{word-spacing:-3.246548pt;}
.ws91{word-spacing:-3.235456pt;}
.ws8b{word-spacing:-3.235045pt;}
.ws80{word-spacing:-3.233578pt;}
.ws88{word-spacing:-3.211639pt;}
.ws41{word-spacing:-3.153457pt;}
.ws9b{word-spacing:-3.095275pt;}
.ws75{word-spacing:-2.862548pt;}
.wsa1{word-spacing:-2.455275pt;}
.ws4{word-spacing:-0.058182pt;}
.ws50{word-spacing:-0.048728pt;}
.ws8f{word-spacing:-0.046545pt;}
.ws2{word-spacing:-0.042507pt;}
.ws51{word-spacing:-0.035600pt;}
.ws6e{word-spacing:-0.031881pt;}
.ws8{word-spacing:0.000000pt;}
.ws89{word-spacing:0.011636pt;}
.ws90{word-spacing:3.153457pt;}
.ws1f{word-spacing:6.248558pt;}
.ws81{word-spacing:13.796715pt;}
.ws6d{word-spacing:18.772109pt;}
.ws86{word-spacing:18.774344pt;}
.ws8d{word-spacing:18.775958pt;}
.ws9d{word-spacing:20.363653pt;}
.wsa0{word-spacing:20.596381pt;}
.ws1{word-spacing:20.722347pt;}
.ws8e{word-spacing:21.898675pt;}
.ws92{word-spacing:21.904009pt;}
.ws96{word-spacing:21.905743pt;}
.wsa3{word-spacing:23.995443pt;}
.ws4b{word-spacing:24.197775pt;}
.ws0{word-spacing:28.646426pt;}
.ws7a{word-spacing:34.478574pt;}
.ws2c{word-spacing:34.811782pt;}
.ws47{word-spacing:34.812858pt;}
.ws45{word-spacing:34.814864pt;}
.ws22{word-spacing:34.826618pt;}
.ws67{word-spacing:34.827539pt;}
.ws20{word-spacing:34.839302pt;}
.ws69{word-spacing:34.848668pt;}
.ws30{word-spacing:39.151696pt;}
.ws26{word-spacing:39.417665pt;}
.ws2e{word-spacing:45.237973pt;}
.ws31{word-spacing:49.577887pt;}
.ws1e{word-spacing:54.446591pt;}
.ws2f{word-spacing:55.664163pt;}
.ws46{word-spacing:63.740882pt;}
.ws7b{word-spacing:66.373342pt;}
.ws9a{word-spacing:66.375076pt;}
.ws99{word-spacing:66.378222pt;}
.ws98{word-spacing:66.391723pt;}
.ws2a{word-spacing:68.352057pt;}
.ws5c{word-spacing:73.299725pt;}
.ws68{word-spacing:74.984790pt;}
.ws97{word-spacing:75.050856pt;}
.ws79{word-spacing:78.266856pt;}
.ws24{word-spacing:84.954618pt;}
.ws1d{word-spacing:86.256189pt;}
.ws48{word-spacing:97.210675pt;}
.ws70{word-spacing:106.827901pt;}
.ws29{word-spacing:111.755729pt;}
.ws2d{word-spacing:113.384822pt;}
.ws6f{word-spacing:115.419901pt;}
.ws23{word-spacing:129.966654pt;}
.ws56{word-spacing:134.769965pt;}
.ws54{word-spacing:138.404686pt;}
.ws55{word-spacing:139.619633pt;}
.ws57{word-spacing:142.571301pt;}
.ws25{word-spacing:160.395770pt;}
.ws8a{word-spacing:167.953865pt;}
.ws21{word-spacing:181.283060pt;}
.ws66{word-spacing:195.930984pt;}
.ws28{word-spacing:206.883081pt;}
.ws5a{word-spacing:236.834435pt;}
.ws5b{word-spacing:259.444972pt;}
.ws58{word-spacing:270.097075pt;}
.ws59{word-spacing:277.493969pt;}
.ws44{word-spacing:289.912087pt;}
.ws85{word-spacing:624.522468pt;}
.wsf{word-spacing:1970.840925pt;}
._42{margin-left:-22.632746pt;}
._43{margin-left:-19.083652pt;}
._45{margin-left:-15.945155pt;}
._44{margin-left:-12.916374pt;}
._23{margin-left:-6.962689pt;}
._6{margin-left:-5.830300pt;}
._4{margin-left:-4.498993pt;}
._2{margin-left:-3.443098pt;}
._1{margin-left:-2.387202pt;}
._5{margin-left:-1.055895pt;}
._11{width:1.298990pt;}
._0{width:2.387202pt;}
._3{width:3.303117pt;}
._28{width:4.546791pt;}
._2f{width:8.088935pt;}
._39{width:9.678325pt;}
._46{width:13.236494pt;}
._34{width:16.350850pt;}
._33{width:18.513947pt;}
._27{width:20.190853pt;}
._32{width:22.576310pt;}
._47{width:23.798129pt;}
._7{width:25.155016pt;}
._12{width:26.765404pt;}
._26{width:27.696314pt;}
._13{width:29.440025pt;}
._38{width:31.478135pt;}
._31{width:33.512755pt;}
._24{width:35.131480pt;}
._2a{width:36.171877pt;}
._14{width:37.662657pt;}
._4b{width:38.981851pt;}
._37{width:42.366235pt;}
._25{width:45.092692pt;}
._29{width:46.595053pt;}
._30{width:53.108294pt;}
._3c{width:63.767326pt;}
._40{width:66.979573pt;}
._3d{width:68.107848pt;}
._3e{width:69.558515pt;}
._3b{width:71.319487pt;}
._2c{width:73.252680pt;}
._21{width:74.165997pt;}
._3f{width:76.294490pt;}
._1c{width:97.280081pt;}
._49{width:98.899793pt;}
._2b{width:102.609860pt;}
._36{width:104.670924pt;}
._18{width:115.620577pt;}
._1b{width:126.046768pt;}
._2d{width:131.257126pt;}
._1e{width:140.677385pt;}
._16{width:147.097828pt;}
._48{width:148.495456pt;}
._41{width:160.175287pt;}
._35{width:168.992779pt;}
._c{width:179.451878pt;}
._1f{width:190.810346pt;}
._3a{width:198.780565pt;}
._4a{width:205.556535pt;}
._20{width:209.978357pt;}
._1d{width:214.865634pt;}
._15{width:234.715621pt;}
._1a{width:238.968484pt;}
._2e{width:280.981309pt;}
._19{width:287.203699pt;}
._17{width:374.878936pt;}
._22{width:415.011255pt;}
._f{width:433.723299pt;}
._e{width:528.463284pt;}
._d{width:657.455093pt;}
._9{width:1130.194873pt;}
._10{width:1383.332062pt;}
._b{width:1438.680261pt;}
._8{width:1562.823121pt;}
._a{width:1614.314073pt;}
.fs8{font-size:31.880533pt;}
.fs6{font-size:35.600205pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:48.727895pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:60.669333pt;}
.yd7{bottom:102.829333pt;}
.yfe{bottom:105.940000pt;}
.yd6{bottom:112.806667pt;}
.yfd{bottom:124.005333pt;}
.y6b{bottom:130.379857pt;}
.yfc{bottom:142.070667pt;}
.yd5{bottom:145.180000pt;}
.y6a{bottom:145.509754pt;}
.yfb{bottom:160.137333pt;}
.y69{bottom:160.639651pt;}
.yd4{bottom:161.064000pt;}
.yd3{bottom:163.246667pt;}
.y68{bottom:175.770665pt;}
.yfa{bottom:178.733333pt;}
.y86{bottom:182.525333pt;}
.yd2{bottom:185.097333pt;}
.y67{bottom:190.900563pt;}
.yd1{bottom:195.074667pt;}
.yf9{bottom:197.674667pt;}
.y85{bottom:200.590667pt;}
.y66{bottom:206.030460pt;}
.yf8{bottom:215.741333pt;}
.y84{bottom:218.656000pt;}
.y65{bottom:221.160357pt;}
.yd0{bottom:226.640000pt;}
.yf7{bottom:233.806667pt;}
.y64{bottom:236.290255pt;}
.y83{bottom:236.721333pt;}
.ycf{bottom:242.524000pt;}
.yce{bottom:244.705333pt;}
.y63{bottom:251.865707pt;}
.yf6{bottom:251.872000pt;}
.y82{bottom:254.786667pt;}
.y32{bottom:260.706667pt;}
.y62{bottom:267.441160pt;}
.y44{bottom:269.886667pt;}
.yf5{bottom:269.937333pt;}
.ycc{bottom:270.968000pt;}
.y81{bottom:272.853333pt;}
.y31{bottom:278.772000pt;}
.ycd{bottom:281.034667pt;}
.y61{bottom:282.571057pt;}
.y43{bottom:287.952000pt;}
.yf4{bottom:288.002667pt;}
.y80{bottom:290.918667pt;}
.y30{bottom:297.369333pt;}
.y60{bottom:297.700955pt;}
.y42{bottom:306.017333pt;}
.yf3{bottom:306.069333pt;}
.y7f{bottom:308.984000pt;}
.y5f{bottom:312.830852pt;}
.y2f{bottom:315.434667pt;}
.ycb{bottom:317.458667pt;}
.y41{bottom:324.082667pt;}
.y7d{bottom:327.049333pt;}
.y5e{bottom:327.960749pt;}
.y7e{bottom:332.328000pt;}
.y2e{bottom:333.500000pt;}
.yca{bottom:335.524000pt;}
.y40{bottom:342.149333pt;}
.y5d{bottom:343.091763pt;}
.y7c{bottom:345.114667pt;}
.yf2{bottom:349.760000pt;}
.y2d{bottom:351.566667pt;}
.yc9{bottom:353.589333pt;}
.y5c{bottom:358.221660pt;}
.y3f{bottom:360.214667pt;}
.y7b{bottom:363.181333pt;}
.yf1{bottom:367.825333pt;}
.y2c{bottom:370.162667pt;}
.y5b{bottom:373.351558pt;}
.yc8{bottom:379.850667pt;}
.y7a{bottom:381.246667pt;}
.yef{bottom:385.890667pt;}
.y2b{bottom:388.229333pt;}
.y5a{bottom:388.927010pt;}
.yf0{bottom:391.169333pt;}
.y3e{bottom:392.680000pt;}
.y79{bottom:399.312000pt;}
.yee{bottom:403.957333pt;}
.y59{bottom:404.926667pt;}
.y2a{bottom:406.825333pt;}
.yc7{bottom:407.846667pt;}
.y58{bottom:420.810667pt;}
.yed{bottom:422.022667pt;}
.y57{bottom:422.992000pt;}
.y29{bottom:424.890667pt;}
.y78{bottom:430.490667pt;}
.yec{bottom:440.088000pt;}
.y28{bottom:442.224000pt;}
.y77{bottom:448.556000pt;}
.yc6{bottom:452.174667pt;}
.y3d{bottom:454.445333pt;}
.yeb{bottom:458.153333pt;}
.y27{bottom:460.289333pt;}
.y76{bottom:466.621333pt;}
.y56{bottom:467.278667pt;}
.yc5{bottom:470.240000pt;}
.y3c{bottom:472.510667pt;}
.y75{bottom:484.686667pt;}
.y55{bottom:485.344000pt;}
.ya8{bottom:488.012000pt;}
.yc4{bottom:488.305333pt;}
.y10a{bottom:490.324000pt;}
.y3b{bottom:490.576000pt;}
.yea{bottom:490.620000pt;}
.y54{bottom:503.409333pt;}
.y26{bottom:504.576000pt;}
.ya7{bottom:506.077333pt;}
.yc3{bottom:506.370667pt;}
.y109{bottom:508.389333pt;}
.y25{bottom:522.641333pt;}
.ya6{bottom:524.142667pt;}
.y108{bottom:526.454667pt;}
.ye9{bottom:527.994667pt;}
.y53{bottom:535.876000pt;}
.yf{bottom:537.885333pt;}
.ye8{bottom:537.972000pt;}
.yc2{bottom:538.837333pt;}
.y24{bottom:540.706667pt;}
.ya5{bottom:542.209333pt;}
.y107{bottom:544.520000pt;}
.y23{bottom:558.773333pt;}
.ya4{bottom:560.274667pt;}
.y106{bottom:562.585333pt;}
.ye{bottom:567.906667pt;}
.y22{bottom:576.838667pt;}
.ye7{bottom:577.729333pt;}
.ya3{bottom:578.340000pt;}
.y105{bottom:580.652000pt;}
.y52{bottom:583.005333pt;}
.yc1{bottom:589.073333pt;}
.y21{bottom:594.904000pt;}
.ya2{bottom:596.405333pt;}
.yd{bottom:597.926667pt;}
.y104{bottom:598.717333pt;}
.y51{bottom:601.070667pt;}
.ye6{bottom:604.002667pt;}
.yc0{bottom:607.138667pt;}
.ye5{bottom:613.980000pt;}
.ya1{bottom:614.470667pt;}
.y103{bottom:616.782667pt;}
.y50{bottom:619.137333pt;}
.ybf{bottom:625.204000pt;}
.y20{bottom:629.717333pt;}
.yc{bottom:630.393333pt;}
.ya0{bottom:632.537333pt;}
.y102{bottom:634.848000pt;}
.y4f{bottom:637.202667pt;}
.ybe{bottom:643.269333pt;}
.y1f{bottom:647.784000pt;}
.ye4{bottom:653.737333pt;}
.y4e{bottom:655.268000pt;}
.y9c{bottom:656.926667pt;}
.ybd{bottom:661.334667pt;}
.y9f{bottom:664.997333pt;}
.y101{bottom:667.314667pt;}
.y9d{bottom:670.013333pt;}
.y4d{bottom:673.333333pt;}
.yb{bottom:676.217333pt;}
.y93{bottom:678.776000pt;}
.ybc{bottom:679.401333pt;}
.y9e{bottom:680.393333pt;}
.y9b{bottom:680.922667pt;}
.y9a{bottom:684.324000pt;}
.ye3{bottom:684.630667pt;}
.y92{bottom:688.754667pt;}
.y96{bottom:695.881333pt;}
.ybb{bottom:697.997333pt;}
.y99{bottom:703.952000pt;}
.y1b{bottom:705.505333pt;}
.y4c{bottom:706.436000pt;}
.y100{bottom:708.493333pt;}
.y97{bottom:708.966667pt;}
.ye2{bottom:715.522667pt;}
.yba{bottom:716.064000pt;}
.y98{bottom:717.898667pt;}
.y95{bottom:719.876000pt;}
.y94{bottom:723.278667pt;}
.y4b{bottom:724.501333pt;}
.yff{bottom:726.558667pt;}
.yb9{bottom:734.129333pt;}
.y1a{bottom:738.033333pt;}
.y4a{bottom:742.566667pt;}
.ye1{bottom:744.056000pt;}
.y91{bottom:748.702667pt;}
.yb8{bottom:752.194667pt;}
.ya{bottom:753.642667pt;}
.y49{bottom:760.633333pt;}
.y9{bottom:766.454667pt;}
.y90{bottom:766.768000pt;}
.y19{bottom:770.562667pt;}
.yb7{bottom:770.792000pt;}
.ye0{bottom:773.481333pt;}
.y48{bottom:778.698667pt;}
.y8f{bottom:784.833333pt;}
.yb6{bottom:788.857333pt;}
.y8{bottom:790.836000pt;}
.y47{bottom:796.764000pt;}
.y8e{bottom:802.898667pt;}
.ydf{bottom:802.906667pt;}
.y18{bottom:803.090667pt;}
.y7{bottom:803.648000pt;}
.yb5{bottom:806.922667pt;}
.yb4{bottom:824.988000pt;}
.y6{bottom:828.029333pt;}
.yde{bottom:832.333333pt;}
.y8d{bottom:835.365333pt;}
.y17{bottom:835.618667pt;}
.y3a{bottom:835.733333pt;}
.y46{bottom:839.721333pt;}
.yb3{bottom:843.585333pt;}
.y5{bottom:846.626667pt;}
.y74{bottom:847.954667pt;}
.y39{bottom:853.800000pt;}
.y45{bottom:857.788000pt;}
.ydd{bottom:860.865333pt;}
.yb2{bottom:861.650667pt;}
.y73{bottom:866.020000pt;}
.y16{bottom:868.148000pt;}
.y37{bottom:871.865333pt;}
.y4{bottom:873.901333pt;}
.y38{bottom:877.144000pt;}
.yb1{bottom:879.716000pt;}
.y8c{bottom:881.166667pt;}
.y72{bottom:884.086667pt;}
.y36{bottom:889.930667pt;}
.ydc{bottom:893.332000pt;}
.yb0{bottom:897.781333pt;}
.y8b{bottom:899.232000pt;}
.y15{bottom:900.676000pt;}
.y71{bottom:902.152000pt;}
.y35{bottom:907.996000pt;}
.y3{bottom:914.193333pt;}
.y8a{bottom:917.829333pt;}
.y70{bottom:920.217333pt;}
.y34{bottom:926.061333pt;}
.yaf{bottom:930.884000pt;}
.ydb{bottom:931.802667pt;}
.y14{bottom:933.205333pt;}
.y89{bottom:935.970667pt;}
.y6f{bottom:938.282667pt;}
.yda{bottom:941.780000pt;}
.y2{bottom:943.417333pt;}
.y33{bottom:944.128000pt;}
.yae{bottom:948.949333pt;}
.y88{bottom:954.036000pt;}
.y6e{bottom:956.348000pt;}
.y1e{bottom:962.193333pt;}
.y13{bottom:965.733333pt;}
.yac{bottom:967.016000pt;}
.yd9{bottom:967.842667pt;}
.y87{bottom:972.101333pt;}
.yad{bottom:972.293333pt;}
.y1{bottom:972.641333pt;}
.y6d{bottom:974.414667pt;}
.y1d{bottom:980.258667pt;}
.yab{bottom:985.081333pt;}
.yd8{bottom:987.660000pt;}
.y12{bottom:998.261333pt;}
.y1c{bottom:998.324000pt;}
.yaa{bottom:1003.146667pt;}
.y6c{bottom:1006.880000pt;}
.ya9{bottom:1021.212000pt;}
.y11{bottom:1030.790667pt;}
.he{height:2.327275pt;}
.h4{height:29.542504pt;}
.ha{height:29.925069pt;}
.hb{height:30.545480pt;}
.h9{height:41.076398pt;}
.h14{height:43.636400pt;}
.h8{height:43.694582pt;}
.hc{height:44.537296pt;}
.h5{height:45.589163pt;}
.h3{height:52.683837pt;}
.h6{height:53.178226pt;}
.h18{height:53.946402pt;}
.h7{height:57.461313pt;}
.h13{height:63.642402pt;}
.h2{height:64.546273pt;}
.h11{height:66.908608pt;}
.hf{height:66.913941pt;}
.hd{height:80.436398pt;}
.h15{height:82.996400pt;}
.h10{height:86.972608pt;}
.h1a{height:90.394402pt;}
.h19{height:90.399735pt;}
.h17{height:93.087559pt;}
.h16{height:93.855735pt;}
.h12{height:148.207559pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:98.088000pt;}
.xc{left:99.780000pt;}
.x6{left:102.945333pt;}
.x28{left:103.880000pt;}
.x1e{left:107.749333pt;}
.x27{left:109.138667pt;}
.x2c{left:110.493428pt;}
.x8{left:115.600000pt;}
.xb{left:120.836000pt;}
.x12{left:122.361333pt;}
.x3{left:123.788000pt;}
.x2{left:130.233333pt;}
.x7a{left:139.598667pt;}
.x87{left:142.918667pt;}
.xa{left:143.864000pt;}
.x5{left:145.624000pt;}
.x4{left:146.752000pt;}
.x88{left:149.762667pt;}
.x4d{left:154.382667pt;}
.x39{left:158.692000pt;}
.x61{left:159.669333pt;}
.x48{left:165.186667pt;}
.x7e{left:170.277333pt;}
.x29{left:171.998667pt;}
.x8a{left:173.074667pt;}
.x89{left:177.029333pt;}
.x4e{left:180.904000pt;}
.x49{left:186.540000pt;}
.x62{left:198.657333pt;}
.x81{left:211.510667pt;}
.x1f{left:218.096000pt;}
.x18{left:220.281333pt;}
.x25{left:225.384000pt;}
.x8b{left:226.938667pt;}
.x19{left:229.276000pt;}
.x63{left:230.981333pt;}
.x26{left:242.938667pt;}
.x36{left:244.766667pt;}
.x64{left:247.646667pt;}
.x5d{left:249.553333pt;}
.x69{left:251.680000pt;}
.x71{left:255.552000pt;}
.x6a{left:260.076000pt;}
.x5e{left:260.989333pt;}
.x65{left:262.738667pt;}
.x7d{left:264.024000pt;}
.x3e{left:272.214667pt;}
.x1{left:275.058667pt;}
.x53{left:279.138667pt;}
.x54{left:284.150667pt;}
.x15{left:285.753333pt;}
.x2a{left:292.292000pt;}
.x16{left:294.748000pt;}
.x6f{left:296.178667pt;}
.x7b{left:308.594667pt;}
.x9{left:322.065333pt;}
.x50{left:323.634667pt;}
.x84{left:327.810667pt;}
.x66{left:333.269333pt;}
.x3a{left:338.002667pt;}
.x82{left:338.980000pt;}
.x51{left:340.077333pt;}
.x3f{left:346.278667pt;}
.x32{left:349.704000pt;}
.x7{left:351.537333pt;}
.x7c{left:355.504000pt;}
.x4a{left:366.494667pt;}
.x77{left:369.676000pt;}
.x6e{left:375.560000pt;}
.x33{left:378.098667pt;}
.x3b{left:379.953333pt;}
.x40{left:381.961333pt;}
.x41{left:384.204000pt;}
.x44{left:386.752000pt;}
.x67{left:388.170667pt;}
.x3c{left:390.684000pt;}
.x7f{left:391.810667pt;}
.x83{left:393.485333pt;}
.xd{left:394.509333pt;}
.x68{left:397.165333pt;}
.x42{left:404.225333pt;}
.x6b{left:405.954667pt;}
.x70{left:406.980000pt;}
.x78{left:416.585333pt;}
.x74{left:424.272000pt;}
.x4f{left:425.998667pt;}
.x73{left:427.722667pt;}
.x5a{left:444.537333pt;}
.x45{left:447.946667pt;}
.x34{left:453.685333pt;}
.x80{left:465.878667pt;}
.x46{left:469.652000pt;}
.x47{left:471.498667pt;}
.x43{left:474.042667pt;}
.x6c{left:480.081333pt;}
.x35{left:482.080000pt;}
.x5b{left:483.525333pt;}
.x72{left:485.406667pt;}
.x1a{left:491.477333pt;}
.x75{left:498.305333pt;}
.x1b{left:500.472000pt;}
.x55{left:506.733333pt;}
.x76{left:510.156000pt;}
.x4b{left:517.634667pt;}
.x4c{left:533.280000pt;}
.x56{left:537.477333pt;}
.x37{left:544.608000pt;}
.x85{left:547.130667pt;}
.x86{left:554.028000pt;}
.x30{left:560.865333pt;}
.x5c{left:565.042667pt;}
.x38{left:573.004000pt;}
.x5f{left:579.342667pt;}
.x2d{left:582.986667pt;}
.x6d{left:583.992000pt;}
.x31{left:589.260000pt;}
.x59{left:593.100000pt;}
.x20{left:595.892000pt;}
.x17{left:599.780000pt;}
.x21{left:605.250667pt;}
.xe{left:609.645333pt;}
.xf{left:618.641333pt;}
.x2e{left:623.529333pt;}
.x2f{left:624.872000pt;}
.x57{left:632.106667pt;}
.x1c{left:642.801333pt;}
.x60{left:646.880000pt;}
.x10{left:649.250667pt;}
.x13{left:650.258667pt;}
.x1d{left:651.796000pt;}
.x22{left:652.738667pt;}
.x11{left:658.609333pt;}
.x14{left:659.617333pt;}
.x23{left:667.830667pt;}
.x58{left:669.338667pt;}
.x79{left:679.678667pt;}
.x52{left:680.681333pt;}
.x2b{left:688.544000pt;}
.x24{left:689.694667pt;}
}




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