
    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_1f1667aa60bfca2c18e92e34.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_118462ddd128b1bf051606d5.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_5627f3ec911fbb6ec0b78c13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.894000;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_aa81b39080bba6c9724b99da.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_1ffc94f5cccf824e03daf782.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_61c7392bd938114f6d079e04.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f52e5b7f1edce0d7c957d98d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.821000;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_a3b65b0b4732f19d2ef10028.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_bc9ebf074c0efb7a8394af6b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fa73429e1b79810ab06935fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705000;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_f03ed1d33fb50961267f0355.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_72df6b93f9335c950b173157.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_94ea0fd7e0ce5d52c5bfdaf2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.686000;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_a179e3baf700156edae004e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.804000;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_528c5cddd6767fa17ab0a161.woff2')format("woff");}.fff{font-family:fff;line-height:0.518000;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_c572781a719cd0828731f907.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.520000;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_eba8daff74c0ddc308138f51.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.703450;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_590e2265307fc54f5336b8a7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.724000;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_7d3e93ff5c1bf928e2c477aa.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.m2{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);}
.m8{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);}
.m11{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);}
.m7{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);}
.m22{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);}
.m1f{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);}
.m1a{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);}
.m21{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);}
.m20{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1d{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);}
.m15{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);}
.m6{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);}
.ma{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.mc{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);}
.me{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);}
.m1c{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);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m3{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);}
.m17{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);}
.m12{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);}
.m16{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);}
.m5{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);}
.m9{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);}
.m14{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);}
.m1b{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);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v8{vertical-align:-18.252000px;}
.v5{vertical-align:-10.998000px;}
.v1{vertical-align:-9.816000px;}
.v7{vertical-align:-8.436000px;}
.v2{vertical-align:-6.636000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.616000px;}
.v3{vertical-align:9.822000px;}
.v4{vertical-align:23.754000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000520px;}
.ls21{letter-spacing:0.001050px;}
.ls39{letter-spacing:0.001052px;}
.ls24{letter-spacing:0.001590px;}
.ls22{letter-spacing:0.004878px;}
.ls35{letter-spacing:0.005071px;}
.ls45{letter-spacing:0.005214px;}
.ls16{letter-spacing:0.005402px;}
.ls12{letter-spacing:0.018454px;}
.ls38{letter-spacing:0.028824px;}
.ls3c{letter-spacing:0.033178px;}
.ls3d{letter-spacing:0.753178px;}
.lsc{letter-spacing:2.984915px;}
.ls15{letter-spacing:2.987214px;}
.ls17{letter-spacing:2.988103px;}
.ls28{letter-spacing:2.990915px;}
.ls29{letter-spacing:2.992059px;}
.ls14{letter-spacing:2.993214px;}
.ls2e{letter-spacing:3.796367px;}
.ls2a{letter-spacing:10.930918px;}
.ls0{letter-spacing:16.617617px;}
.ls4a{letter-spacing:17.410924px;}
.ls8{letter-spacing:18.196379px;}
.ls3e{letter-spacing:18.261833px;}
.ls3f{letter-spacing:18.392743px;}
.ls32{letter-spacing:19.309107px;}
.ls10{letter-spacing:19.559214px;}
.ls41{letter-spacing:19.767289px;}
.ls1{letter-spacing:19.965050px;}
.ls37{letter-spacing:20.749108px;}
.ls7{letter-spacing:21.167214px;}
.lsb{letter-spacing:21.170915px;}
.ls23{letter-spacing:21.173214px;}
.ls3b{letter-spacing:21.207290px;}
.ls11{letter-spacing:21.403654px;}
.ls1d{letter-spacing:21.534563px;}
.ls5{letter-spacing:21.600018px;}
.ls1e{letter-spacing:21.796382px;}
.ls19{letter-spacing:21.861836px;}
.ls2d{letter-spacing:21.927291px;}
.ls49{letter-spacing:22.123655px;}
.ls44{letter-spacing:22.189109px;}
.ls31{letter-spacing:22.326103px;}
.ls46{letter-spacing:22.445644px;}
.lsf{letter-spacing:22.778201px;}
.ls6{letter-spacing:23.236383px;}
.ls9{letter-spacing:23.301838px;}
.ls34{letter-spacing:23.629111px;}
.ls36{letter-spacing:23.768915px;}
.ls2b{letter-spacing:23.929488px;}
.ls33{letter-spacing:24.161950px;}
.ls13{letter-spacing:24.413214px;}
.ls27{letter-spacing:24.414566px;}
.ls1f{letter-spacing:24.809214px;}
.ls30{letter-spacing:25.854567px;}
.ls1c{letter-spacing:27.621841px;}
.ls47{letter-spacing:27.752750px;}
.ls3a{letter-spacing:27.968425px;}
.lse{letter-spacing:28.341842px;}
.ls2c{letter-spacing:29.520025px;}
.ls4{letter-spacing:29.650934px;}
.ls20{letter-spacing:29.781843px;}
.lsd{letter-spacing:29.847298px;}
.ls40{letter-spacing:29.912752px;}
.ls25{letter-spacing:30.174571px;}
.ls3{letter-spacing:30.240025px;}
.ls42{letter-spacing:30.370934px;}
.ls18{letter-spacing:30.436389px;}
.ls48{letter-spacing:30.632753px;}
.ls26{letter-spacing:31.025480px;}
.ls2f{letter-spacing:31.745481px;}
.ls1a{letter-spacing:32.727300px;}
.ls43{letter-spacing:33.512755px;}
.ls1b{letter-spacing:36.327303px;}
.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;}
}
.ws52{word-spacing:-65.454600px;}
.ws5b{word-spacing:-53.568045px;}
.ws51{word-spacing:-47.258221px;}
.ws43{word-spacing:-42.637126px;}
.ws4c{word-spacing:-33.538937px;}
.ws68{word-spacing:-33.453846px;}
.ws2d{word-spacing:-32.727300px;}
.ws64{word-spacing:-31.771663px;}
.ws3f{word-spacing:-31.706208px;}
.ws8{word-spacing:-30.551309px;}
.ws42{word-spacing:-24.440748px;}
.ws77{word-spacing:-21.953473px;}
.ws94{word-spacing:-17.214560px;}
.ws35{word-spacing:-16.139475px;}
.ws4e{word-spacing:-16.101832px;}
.ws34{word-spacing:-15.905468px;}
.ws9a{word-spacing:-15.840013px;}
.ws90{word-spacing:-15.316376px;}
.ws81{word-spacing:-14.203648px;}
.ws10{word-spacing:-14.166817px;}
.ws4f{word-spacing:-13.941830px;}
.ws57{word-spacing:-13.810921px;}
.wsf{word-spacing:-13.688612px;}
.ws7e{word-spacing:-13.549102px;}
.ws8d{word-spacing:-13.490193px;}
.ws2b{word-spacing:-13.449600px;}
.ws85{word-spacing:-13.352738px;}
.ws11{word-spacing:-13.210408px;}
.ws70{word-spacing:-13.090920px;}
.ws5d{word-spacing:-12.829102px;}
.ws3c{word-spacing:-12.763647px;}
.ws2c{word-spacing:-12.698192px;}
.ws8b{word-spacing:-12.639283px;}
.ws53{word-spacing:-12.567283px;}
.ws46{word-spacing:-12.501829px;}
.ws55{word-spacing:-12.436374px;}
.ws62{word-spacing:-12.305465px;}
.ws4b{word-spacing:-12.174556px;}
.ws82{word-spacing:-12.109101px;}
.ws6f{word-spacing:-12.043646px;}
.ws1f{word-spacing:-11.978192px;}
.ws72{word-spacing:-11.585464px;}
.ws36{word-spacing:-11.454555px;}
.ws21{word-spacing:-11.389100px;}
.ws6e{word-spacing:-11.323646px;}
.ws19{word-spacing:-11.258191px;}
.ws18{word-spacing:-11.192737px;}
.ws3d{word-spacing:-11.127282px;}
.ws38{word-spacing:-11.061827px;}
.ws84{word-spacing:-11.002918px;}
.ws33{word-spacing:-10.996373px;}
.ws1a{word-spacing:-10.930918px;}
.ws30{word-spacing:-10.865464px;}
.ws7d{word-spacing:-10.806554px;}
.ws56{word-spacing:-10.800009px;}
.ws17{word-spacing:-10.734554px;}
.ws61{word-spacing:-10.669100px;}
.ws44{word-spacing:-10.603645px;}
.ws31{word-spacing:-10.538191px;}
.ws9{word-spacing:-10.520506px;}
.ws27{word-spacing:-10.472736px;}
.ws7{word-spacing:-10.460730px;}
.ws73{word-spacing:-10.413827px;}
.ws60{word-spacing:-10.348372px;}
.ws24{word-spacing:-10.341827px;}
.wsd{word-spacing:-10.281403px;}
.ws3e{word-spacing:-10.217463px;}
.ws7b{word-spacing:-10.210918px;}
.wsa{word-spacing:-10.161852px;}
.ws6{word-spacing:-10.102076px;}
.ws54{word-spacing:-10.086554px;}
.ws15{word-spacing:-10.042301px;}
.ws67{word-spacing:-10.021099px;}
.wsb{word-spacing:-9.982525px;}
.ws47{word-spacing:-9.955645px;}
.ws6d{word-spacing:-9.949099px;}
.ws83{word-spacing:-9.890190px;}
.ws65{word-spacing:-9.824735px;}
.ws63{word-spacing:-9.759281px;}
.ws91{word-spacing:-9.693826px;}
.ws12{word-spacing:-9.689625px;}
.ws39{word-spacing:-9.687281px;}
.ws32{word-spacing:-9.628372px;}
.ws3a{word-spacing:-9.621826px;}
.ws75{word-spacing:-9.562917px;}
.ws58{word-spacing:-9.556372px;}
.wse{word-spacing:-9.510298px;}
.ws3{word-spacing:-9.504320px;}
.ws76{word-spacing:-9.497462px;}
.ws40{word-spacing:-9.490917px;}
.ws4a{word-spacing:-9.425462px;}
.ws5{word-spacing:-9.205442px;}
.ws69{word-spacing:-9.104735px;}
.ws74{word-spacing:-8.973826px;}
.ws9b{word-spacing:-8.967280px;}
.ws6a{word-spacing:-8.842916px;}
.ws1b{word-spacing:-8.705462px;}
.ws23{word-spacing:-8.509098px;}
.ws78{word-spacing:-8.443643px;}
.ws49{word-spacing:-8.378189px;}
.ws59{word-spacing:-8.312734px;}
.ws97{word-spacing:-8.247280px;}
.ws14{word-spacing:-8.069706px;}
.ws5e{word-spacing:-7.920007px;}
.ws1e{word-spacing:-7.854552px;}
.ws13{word-spacing:-7.830604px;}
.ws95{word-spacing:-7.592734px;}
.ws2{word-spacing:-7.591501px;}
.ws7c{word-spacing:-7.527279px;}
.ws98{word-spacing:-7.402915px;}
.ws2e{word-spacing:-7.396370px;}
.ws96{word-spacing:-7.265461px;}
.ws5f{word-spacing:-6.872733px;}
.ws99{word-spacing:-6.545460px;}
.ws80{word-spacing:-6.486551px;}
.ws79{word-spacing:-6.349096px;}
.ws7a{word-spacing:-6.283642px;}
.ws4{word-spacing:-5.738458px;}
.ws5a{word-spacing:-5.701096px;}
.ws8c{word-spacing:-5.635641px;}
.ws2f{word-spacing:-5.563641px;}
.ws92{word-spacing:-5.432732px;}
.ws93{word-spacing:-5.367277px;}
.ws6b{word-spacing:-4.778186px;}
.ws20{word-spacing:-4.189094px;}
.ws66{word-spacing:-4.064731px;}
.ws8e{word-spacing:-4.058185px;}
.ws1c{word-spacing:-3.534548px;}
.ws1d{word-spacing:-3.344730px;}
.ws28{word-spacing:-3.141821px;}
.ws2a{word-spacing:-3.076366px;}
.ws29{word-spacing:-2.886548px;}
.ws8a{word-spacing:-2.356366px;}
.ws88{word-spacing:-2.290911px;}
.ws25{word-spacing:-1.570910px;}
.ws48{word-spacing:-0.850910px;}
.ws41{word-spacing:-0.065455px;}
.ws45{word-spacing:-0.047821px;}
.ws26{word-spacing:0.000000px;}
.ws7f{word-spacing:5.629096px;}
.wsc{word-spacing:16.557841px;}
.ws22{word-spacing:18.130924px;}
.ws50{word-spacing:18.196379px;}
.ws87{word-spacing:18.523652px;}
.ws71{word-spacing:19.570925px;}
.ws4d{word-spacing:22.385473px;}
.ws3b{word-spacing:22.450928px;}
.ws1{word-spacing:23.312640px;}
.ws86{word-spacing:23.757307px;}
.ws6c{word-spacing:24.178404px;}
.ws8f{word-spacing:29.912752px;}
.ws0{word-spacing:31.091012px;}
.ws89{word-spacing:32.792755px;}
.ws37{word-spacing:40.348800px;}
.ws16{word-spacing:48.418425px;}
.ws5c{word-spacing:99.137537px;}
._1b{margin-left:-10.930918px;}
._18{margin-left:-6.216223px;}
._2{margin-left:-4.901599px;}
._1a{margin-left:-3.859858px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.613941px;}
._4{width:1.554166px;}
._1{width:2.757334px;}
._15{width:5.105459px;}
._19{width:10.343791px;}
._1c{width:11.775729px;}
._b{width:17.450176px;}
._11{width:18.491687px;}
._1d{width:20.143272px;}
._8{width:21.758318px;}
._10{width:22.837591px;}
._a{width:24.687323px;}
._9{width:26.301264px;}
._14{width:27.573131px;}
._d{width:28.996388px;}
._f{width:30.241989px;}
._5{width:31.561517px;}
._c{width:32.996131px;}
._16{width:34.036392px;}
._7{width:35.267604px;}
._6{width:39.810550px;}
._e{width:44.987983px;}
._13{width:80.697600px;}
._12{width:96.836850px;}
._17{width:141.725372px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2a{bottom:63.168000px;}
.y99{bottom:108.000000px;}
.y53{bottom:120.076500px;}
.ye1{bottom:123.279000px;}
.y12c{bottom:125.551500px;}
.y29{bottom:128.044500px;}
.y98{bottom:128.323500px;}
.y52{bottom:140.400000px;}
.ye0{bottom:143.602500px;}
.y107{bottom:148.203000px;}
.y28{bottom:148.368000px;}
.ybf{bottom:148.647000px;}
.y12b{bottom:157.834500px;}
.y97{bottom:161.364000px;}
.y106{bottom:168.528000px;}
.ybe{bottom:168.972000px;}
.y51{bottom:174.172500px;}
.ydf{bottom:180.132000px;}
.y96{bottom:181.687500px;}
.y27{bottom:182.140500px;}
.ybd{bottom:189.295500px;}
.y12a{bottom:190.116000px;}
.y50{bottom:192.042000px;}
.y4f{bottom:194.497500px;}
.y95{bottom:202.011000px;}
.y26{bottom:202.464000px;}
.y105{bottom:206.784000px;}
.ybc{bottom:220.186500px;}
.y94{bottom:222.334500px;}
.y129{bottom:222.399000px;}
.y4e{bottom:224.533500px;}
.y104{bottom:227.107500px;}
.yde{bottom:231.688500px;}
.y6f{bottom:236.032500px;}
.y25{bottom:236.238000px;}
.y93{bottom:242.658000px;}
.y128{bottom:242.722500px;}
.y4d{bottom:244.858500px;}
.ydd{bottom:252.013500px;}
.y6e{bottom:256.356000px;}
.y103{bottom:258.000000px;}
.y92{bottom:262.983000px;}
.ybb{bottom:263.964000px;}
.y4c{bottom:265.182000px;}
.y24{bottom:265.528500px;}
.ydc{bottom:272.337000px;}
.y127{bottom:275.005500px;}
.y91{bottom:283.306500px;}
.yba{bottom:284.287500px;}
.y4b{bottom:285.505500px;}
.y23{bottom:285.852000px;}
.y6d{bottom:290.128500px;}
.y102{bottom:301.818000px;}
.y90{bottom:303.630000px;}
.yb9{bottom:304.612500px;}
.ydb{bottom:306.109500px;}
.y22{bottom:306.175500px;}
.y6c{bottom:310.453500px;}
.y126{bottom:311.533500px;}
.y4a{bottom:319.279500px;}
.y101{bottom:322.143000px;}
.yda{bottom:326.434500px;}
.y21{bottom:326.499000px;}
.y8f{bottom:333.735000px;}
.y49{bottom:337.147500px;}
.yb8{bottom:338.341500px;}
.y48{bottom:339.603000px;}
.y6b{bottom:344.226000px;}
.yd9{bottom:346.758000px;}
.y20{bottom:346.824000px;}
.y8e{bottom:354.058500px;}
.yb7{bottom:358.665000px;}
.y100{bottom:358.671000px;}
.y125{bottom:362.388000px;}
.yd8{bottom:367.081500px;}
.y1f{bottom:367.147500px;}
.y47{bottom:376.365000px;}
.y6a{bottom:378.000000px;}
.yb6{bottom:378.988500px;}
.y124{bottom:382.711500px;}
.y8d{bottom:386.364000px;}
.yd7{bottom:387.405000px;}
.y1e{bottom:387.471000px;}
.y69{bottom:398.323500px;}
.yb5{bottom:399.312000px;}
.y123{bottom:403.036500px;}
.y8c{bottom:404.022000px;}
.y8b{bottom:406.687500px;}
.y1d{bottom:407.794500px;}
.yff{bottom:410.227500px;}
.y46{bottom:413.127000px;}
.yb4{bottom:419.635500px;}
.yd6{bottom:421.179000px;}
.y122{bottom:423.360000px;}
.y8a{bottom:427.012500px;}
.y1c{bottom:428.118000px;}
.yfe{bottom:430.552500px;}
.y68{bottom:432.096000px;}
.y45{bottom:433.450500px;}
.yd5{bottom:441.502500px;}
.y121{bottom:443.683500px;}
.y1b{bottom:448.443000px;}
.yfd{bottom:450.876000px;}
.yb3{bottom:453.189000px;}
.y44{bottom:453.774000px;}
.y89{bottom:459.318000px;}
.yd4{bottom:461.826000px;}
.y67{bottom:462.133500px;}
.y120{bottom:464.007000px;}
.y1a{bottom:468.766500px;}
.yb2{bottom:473.512500px;}
.y88{bottom:479.641500px;}
.yd3{bottom:482.149500px;}
.y66{bottom:482.458500px;}
.y11f{bottom:484.330500px;}
.yfc{bottom:484.648500px;}
.y43{bottom:484.666500px;}
.y19{bottom:489.090000px;}
.yb1{bottom:493.836000px;}
.y65{bottom:502.782000px;}
.y11e{bottom:504.655500px;}
.yfb{bottom:504.973500px;}
.y87{bottom:509.746500px;}
.yb0{bottom:514.159500px;}
.yd2{bottom:515.923500px;}
.y11d{bottom:524.979000px;}
.y18{bottom:525.618000px;}
.y42{bottom:528.486000px;}
.y86{bottom:530.070000px;}
.yd1{bottom:536.247000px;}
.y64{bottom:536.554500px;}
.yfa{bottom:538.746000px;}
.yaf{bottom:547.713000px;}
.y11c{bottom:552.778500px;}
.yd0{bottom:556.570500px;}
.yf9{bottom:559.069500px;}
.y85{bottom:560.175000px;}
.y41{bottom:562.258500px;}
.y63{bottom:567.447000px;}
.yae{bottom:568.036500px;}
.y11b{bottom:573.102000px;}
.y17{bottom:577.176000px;}
.y84{bottom:580.498500px;}
.y40{bottom:582.582000px;}
.yad{bottom:588.360000px;}
.ycf{bottom:590.344500px;}
.yf8{bottom:592.843500px;}
.y11a{bottom:593.425500px;}
.y16{bottom:595.108500px;}
.y3f{bottom:602.907000px;}
.yce{bottom:610.668000px;}
.y62{bottom:611.266500px;}
.y83{bottom:612.804000px;}
.y15{bottom:613.041000px;}
.yf7{bottom:613.167000px;}
.y119{bottom:621.225000px;}
.yac{bottom:621.912000px;}
.y14{bottom:630.973500px;}
.y82{bottom:633.127500px;}
.y3e{bottom:633.798000px;}
.yaa{bottom:642.235500px;}
.yab{bottom:642.237000px;}
.ycd{bottom:644.442000px;}
.yf6{bottom:646.941000px;}
.y61{bottom:647.794500px;}
.y13{bottom:648.907500px;}
.y118{bottom:652.117500px;}
.ycc{bottom:664.765500px;}
.y81{bottom:665.434500px;}
.y12{bottom:666.840000px;}
.yf5{bottom:667.264500px;}
.ya9{bottom:675.921000px;}
.y3d{bottom:677.617500px;}
.y11{bottom:684.772500px;}
.yf4{bottom:687.588000px;}
.y117{bottom:695.233500px;}
.y80{bottom:695.538000px;}
.ya8{bottom:696.244500px;}
.y3c{bottom:697.941000px;}
.ycb{bottom:698.538000px;}
.y60{bottom:699.351000px;}
.y10{bottom:702.705000px;}
.yf3{bottom:707.911500px;}
.y116{bottom:715.557000px;}
.y7f{bottom:715.861500px;}
.y5f{bottom:719.676000px;}
.yf{bottom:720.637500px;}
.ya7{bottom:729.930000px;}
.yca{bottom:732.312000px;}
.y3b{bottom:734.469000px;}
.y115{bottom:735.880500px;}
.y7e{bottom:736.186500px;}
.ye{bottom:738.570000px;}
.yf2{bottom:738.804000px;}
.y5e{bottom:739.999500px;}
.ya6{bottom:750.253500px;}
.y114{bottom:756.204000px;}
.yd{bottom:756.504000px;}
.yc9{bottom:766.086000px;}
.y7d{bottom:766.290000px;}
.y5d{bottom:773.772000px;}
.yc{bottom:774.436500px;}
.y113{bottom:776.527500px;}
.yf1{bottom:782.622000px;}
.ya5{bottom:783.807000px;}
.y3a{bottom:786.027000px;}
.yc8{bottom:786.409500px;}
.yb{bottom:792.369000px;}
.y5c{bottom:794.097000px;}
.y7c{bottom:797.182500px;}
.yf0{bottom:802.947000px;}
.ya4{bottom:804.130500px;}
.y39{bottom:806.350500px;}
.ya{bottom:810.301500px;}
.y112{bottom:810.312000px;}
.yc7{bottom:820.182000px;}
.y38{bottom:826.674000px;}
.y9{bottom:828.234000px;}
.y5b{bottom:830.859000px;}
.ya3{bottom:835.021500px;}
.yef{bottom:836.719500px;}
.y7b{bottom:840.309000px;}
.y111{bottom:842.595000px;}
.y8{bottom:846.166500px;}
.y37{bottom:846.997500px;}
.yc6{bottom:853.956000px;}
.yee{bottom:857.043000px;}
.y7a{bottom:860.632500px;}
.y110{bottom:862.918500px;}
.y7{bottom:864.100500px;}
.y36{bottom:867.322500px;}
.y5a{bottom:867.621000px;}
.yed{bottom:874.701000px;}
.yec{bottom:877.368000px;}
.ya2{bottom:878.799000px;}
.y79{bottom:880.957500px;}
.y6{bottom:882.033000px;}
.y35{bottom:887.646000px;}
.yc5{bottom:887.728500px;}
.y59{bottom:887.944500px;}
.y10f{bottom:895.201500px;}
.yeb{bottom:897.691500px;}
.y78{bottom:901.281000px;}
.y34{bottom:907.969500px;}
.y58{bottom:908.268000px;}
.y5{bottom:909.306000px;}
.ya1{bottom:912.351000px;}
.yea{bottom:918.015000px;}
.yc4{bottom:918.621000px;}
.y77{bottom:921.604500px;}
.y33{bottom:928.293000px;}
.y10e{bottom:928.986000px;}
.ya0{bottom:932.676000px;}
.y57{bottom:939.160500px;}
.y32{bottom:948.616500px;}
.y10d{bottom:949.309500px;}
.y76{bottom:951.709500px;}
.ye9{bottom:951.789000px;}
.yc3{bottom:962.440500px;}
.y9f{bottom:966.228000px;}
.y31{bottom:968.941500px;}
.y10c{bottom:969.633000px;}
.y4{bottom:969.717000px;}
.y75{bottom:972.033000px;}
.ye8{bottom:972.112500px;}
.y56{bottom:982.978500px;}
.y9e{bottom:986.551500px;}
.y30{bottom:989.265000px;}
.ye7{bottom:992.436000px;}
.yc2{bottom:998.968500px;}
.y10b{bottom:1000.524000px;}
.y74{bottom:1002.138000px;}
.y3{bottom:1006.404000px;}
.y9d{bottom:1006.875000px;}
.ye6{bottom:1012.759500px;}
.y55{bottom:1016.752500px;}
.y2f{bottom:1020.156000px;}
.y73{bottom:1022.461500px;}
.ye5{bottom:1030.417500px;}
.ye4{bottom:1033.083000px;}
.y9c{bottom:1037.767500px;}
.y10a{bottom:1043.641500px;}
.y54{bottom:1050.526500px;}
.y2{bottom:1051.870500px;}
.y72{bottom:1054.821000px;}
.y109{bottom:1063.965000px;}
.y2e{bottom:1063.975500px;}
.ye3{bottom:1064.191500px;}
.ye2{bottom:1066.857000px;}
.yc1{bottom:1070.850000px;}
.y1{bottom:1072.792500px;}
.y9b{bottom:1081.545000px;}
.y2d{bottom:1084.299000px;}
.y71{bottom:1087.180500px;}
.y108{bottom:1097.748000px;}
.y9a{bottom:1101.868500px;}
.yc0{bottom:1104.622500px;}
.y70{bottom:1107.504000px;}
.y2c{bottom:1118.073000px;}
.y2b{bottom:1138.396500px;}
.hc{height:31.800699px;}
.hd{height:33.187496px;}
.h4{height:41.842920px;}
.hb{height:44.770946px;}
.h5{height:44.831700px;}
.h9{height:45.425492px;}
.ha{height:46.865494px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h10{height:50.479715px;}
.hf{height:50.485715px;}
.h3{height:51.216077px;}
.he{height:54.592946px;}
.h6{height:60.254040px;}
.h11{height:61.459121px;}
.h2{height:72.511265px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x58{left:98.908500px;}
.x9f{left:104.973000px;}
.x53{left:106.711500px;}
.x8{left:108.000000px;}
.x63{left:111.454500px;}
.x5f{left:115.999500px;}
.xa{left:119.818500px;}
.x9{left:133.404000px;}
.x7f{left:139.440000px;}
.xb{left:140.727000px;}
.x4f{left:144.190500px;}
.x81{left:146.587500px;}
.x7{left:148.909500px;}
.x80{left:150.927000px;}
.x64{left:164.842500px;}
.x77{left:166.176000px;}
.x6{left:171.325500px;}
.x65{left:178.686000px;}
.x82{left:185.473500px;}
.x50{left:203.265000px;}
.x6c{left:210.747000px;}
.x51{left:222.373500px;}
.x75{left:228.991500px;}
.x76{left:244.989000px;}
.x16{left:252.885000px;}
.x1{left:260.514000px;}
.x17{left:273.144000px;}
.x59{left:275.976000px;}
.x2e{left:282.195000px;}
.x60{left:286.836000px;}
.x5a{left:289.236000px;}
.x2f{left:295.765500px;}
.x2{left:298.345500px;}
.x61{left:301.965000px;}
.x5b{left:309.700500px;}
.x22{left:316.372500px;}
.x8e{left:320.665500px;}
.x7b{left:322.065000px;}
.x88{left:323.784000px;}
.x4c{left:330.102000px;}
.x23{left:331.213500px;}
.x8f{left:337.128000px;}
.x7c{left:338.445000px;}
.x7d{left:351.520500px;}
.x89{left:353.241000px;}
.x5c{left:357.178500px;}
.x91{left:359.286000px;}
.x15{left:363.438000px;}
.xd{left:370.378500px;}
.x3{left:375.274500px;}
.x98{left:378.987000px;}
.x36{left:382.513500px;}
.x3d{left:383.917500px;}
.x4{left:388.269000px;}
.x7a{left:391.744500px;}
.x90{left:394.309500px;}
.x44{left:399.282000px;}
.x92{left:400.806000px;}
.x45{left:404.467500px;}
.x26{left:405.763500px;}
.x99{left:410.659500px;}
.x5{left:413.812500px;}
.xe{left:415.561500px;}
.x9e{left:417.231000px;}
.x9a{left:418.339500px;}
.x93{left:419.914500px;}
.x78{left:420.985500px;}
.x40{left:423.462000px;}
.x9d{left:427.953000px;}
.x41{left:431.092500px;}
.x94{left:432.201000px;}
.xc{left:442.366500px;}
.x6e{left:447.006000px;}
.x79{left:450.696000px;}
.x18{left:455.221500px;}
.x6b{left:457.705500px;}
.x6f{left:463.447500px;}
.x19{left:466.866000px;}
.x24{left:474.822000px;}
.x54{left:478.839000px;}
.x1a{left:483.883500px;}
.x13{left:486.216000px;}
.x7e{left:489.397500px;}
.x27{left:491.382000px;}
.x62{left:494.310000px;}
.x25{left:496.083000px;}
.x55{left:497.947500px;}
.x95{left:501.480000px;}
.x1b{left:502.938000px;}
.x73{left:506.299500px;}
.x14{left:508.506000px;}
.x9b{left:510.367500px;}
.x28{left:514.248000px;}
.x70{left:516.067500px;}
.x74{left:518.854500px;}
.x9c{left:520.117500px;}
.x66{left:521.889000px;}
.x33{left:525.801000px;}
.x67{left:528.531000px;}
.x71{left:532.123500px;}
.x68{left:535.023000px;}
.x8a{left:538.773000px;}
.x6d{left:539.788500px;}
.x1c{left:544.884000px;}
.x69{left:548.979000px;}
.x5d{left:559.267500px;}
.x83{left:562.104000px;}
.x1d{left:563.140500px;}
.x8c{left:565.809000px;}
.x29{left:576.418500px;}
.x84{left:579.850500px;}
.xf{left:583.848000px;}
.x6a{left:585.541500px;}
.x8d{left:590.995500px;}
.x5e{left:598.153500px;}
.x85{left:605.931000px;}
.x48{left:610.020000px;}
.x56{left:613.023000px;}
.x52{left:622.089000px;}
.x86{left:625.038000px;}
.x57{left:626.110500px;}
.x10{left:628.600500px;}
.x34{left:636.825000px;}
.x87{left:638.053500px;}
.x96{left:641.703000px;}
.x35{left:644.455500px;}
.x49{left:648.906000px;}
.x37{left:650.239500px;}
.x31{left:651.286500px;}
.x97{left:657.013500px;}
.x46{left:658.116000px;}
.x38{left:664.141500px;}
.x2a{left:668.893500px;}
.x47{left:682.461000px;}
.x39{left:686.010000px;}
.x32{left:690.172500px;}
.x2b{left:691.971000px;}
.x42{left:697.059000px;}
.x1e{left:701.911500px;}
.x2c{left:703.099500px;}
.x3a{left:705.118500px;}
.x43{left:710.157000px;}
.x3b{left:714.204000px;}
.x2d{left:715.924500px;}
.x4d{left:718.419000px;}
.x1f{left:720.169500px;}
.x72{left:724.359000px;}
.x20{left:727.218000px;}
.x8b{left:734.494500px;}
.x4a{left:735.988500px;}
.x4e{left:745.119000px;}
.x4b{left:749.847000px;}
.x11{left:751.948500px;}
.x3c{left:755.415000px;}
.x21{left:766.104000px;}
.x30{left:775.177500px;}
.x3e{left:777.283500px;}
.x12{left:780.426000px;}
.x3f{left:783.496500px;}
@media print{
.v8{vertical-align:-16.224000pt;}
.v5{vertical-align:-9.776000pt;}
.v1{vertical-align:-8.725333pt;}
.v7{vertical-align:-7.498667pt;}
.v2{vertical-align:-5.898667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.325333pt;}
.v3{vertical-align:8.730667pt;}
.v4{vertical-align:21.114667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000462pt;}
.ls21{letter-spacing:0.000933pt;}
.ls39{letter-spacing:0.000935pt;}
.ls24{letter-spacing:0.001414pt;}
.ls22{letter-spacing:0.004336pt;}
.ls35{letter-spacing:0.004507pt;}
.ls45{letter-spacing:0.004634pt;}
.ls16{letter-spacing:0.004802pt;}
.ls12{letter-spacing:0.016404pt;}
.ls38{letter-spacing:0.025621pt;}
.ls3c{letter-spacing:0.029491pt;}
.ls3d{letter-spacing:0.669491pt;}
.lsc{letter-spacing:2.653258pt;}
.ls15{letter-spacing:2.655301pt;}
.ls17{letter-spacing:2.656092pt;}
.ls28{letter-spacing:2.658591pt;}
.ls29{letter-spacing:2.659608pt;}
.ls14{letter-spacing:2.660634pt;}
.ls2e{letter-spacing:3.374548pt;}
.ls2a{letter-spacing:9.716372pt;}
.ls0{letter-spacing:14.771215pt;}
.ls4a{letter-spacing:15.476377pt;}
.ls8{letter-spacing:16.174559pt;}
.ls3e{letter-spacing:16.232741pt;}
.ls3f{letter-spacing:16.349105pt;}
.ls32{letter-spacing:17.163651pt;}
.ls10{letter-spacing:17.385968pt;}
.ls41{letter-spacing:17.570924pt;}
.ls1{letter-spacing:17.746711pt;}
.ls37{letter-spacing:18.443652pt;}
.ls7{letter-spacing:18.815301pt;}
.lsb{letter-spacing:18.818591pt;}
.ls23{letter-spacing:18.820634pt;}
.ls3b{letter-spacing:18.850925pt;}
.ls11{letter-spacing:19.025470pt;}
.ls1d{letter-spacing:19.141834pt;}
.ls5{letter-spacing:19.200016pt;}
.ls1e{letter-spacing:19.374562pt;}
.ls19{letter-spacing:19.432743pt;}
.ls2d{letter-spacing:19.490925pt;}
.ls49{letter-spacing:19.665471pt;}
.ls44{letter-spacing:19.723653pt;}
.ls31{letter-spacing:19.845425pt;}
.ls46{letter-spacing:19.951684pt;}
.lsf{letter-spacing:20.247290pt;}
.ls6{letter-spacing:20.654563pt;}
.ls9{letter-spacing:20.712745pt;}
.ls34{letter-spacing:21.003654pt;}
.ls36{letter-spacing:21.127925pt;}
.ls2b{letter-spacing:21.270656pt;}
.ls33{letter-spacing:21.477289pt;}
.ls13{letter-spacing:21.700634pt;}
.ls27{letter-spacing:21.701836pt;}
.ls1f{letter-spacing:22.052634pt;}
.ls30{letter-spacing:22.981837pt;}
.ls1c{letter-spacing:24.552748pt;}
.ls47{letter-spacing:24.669111pt;}
.ls3a{letter-spacing:24.860822pt;}
.lse{letter-spacing:25.192748pt;}
.ls2c{letter-spacing:26.240022pt;}
.ls4{letter-spacing:26.356386pt;}
.ls20{letter-spacing:26.472749pt;}
.lsd{letter-spacing:26.530931pt;}
.ls40{letter-spacing:26.589113pt;}
.ls25{letter-spacing:26.821841pt;}
.ls3{letter-spacing:26.880022pt;}
.ls42{letter-spacing:26.996386pt;}
.ls18{letter-spacing:27.054568pt;}
.ls48{letter-spacing:27.229114pt;}
.ls26{letter-spacing:27.578205pt;}
.ls2f{letter-spacing:28.218205pt;}
.ls1a{letter-spacing:29.090933pt;}
.ls43{letter-spacing:29.789116pt;}
.ls1b{letter-spacing:32.290936pt;}
.ws52{word-spacing:-58.181867pt;}
.ws5b{word-spacing:-47.616040pt;}
.ws51{word-spacing:-42.007308pt;}
.ws43{word-spacing:-37.899668pt;}
.ws4c{word-spacing:-29.812388pt;}
.ws68{word-spacing:-29.736752pt;}
.ws2d{word-spacing:-29.090933pt;}
.ws64{word-spacing:-28.241478pt;}
.ws3f{word-spacing:-28.183296pt;}
.ws8{word-spacing:-27.156719pt;}
.ws42{word-spacing:-21.725109pt;}
.ws77{word-spacing:-19.514198pt;}
.ws94{word-spacing:-15.301831pt;}
.ws35{word-spacing:-14.346200pt;}
.ws4e{word-spacing:-14.312739pt;}
.ws34{word-spacing:-14.138194pt;}
.ws9a{word-spacing:-14.080012pt;}
.ws90{word-spacing:-13.614557pt;}
.ws81{word-spacing:-12.625465pt;}
.ws10{word-spacing:-12.592726pt;}
.ws4f{word-spacing:-12.392738pt;}
.ws57{word-spacing:-12.276374pt;}
.wsf{word-spacing:-12.167655pt;}
.ws7e{word-spacing:-12.043646pt;}
.ws8d{word-spacing:-11.991283pt;}
.ws2b{word-spacing:-11.955200pt;}
.ws85{word-spacing:-11.869101pt;}
.ws11{word-spacing:-11.742585pt;}
.ws70{word-spacing:-11.636373pt;}
.ws5d{word-spacing:-11.403646pt;}
.ws3c{word-spacing:-11.345464pt;}
.ws2c{word-spacing:-11.287282pt;}
.ws8b{word-spacing:-11.234918pt;}
.ws53{word-spacing:-11.170918pt;}
.ws46{word-spacing:-11.112737pt;}
.ws55{word-spacing:-11.054555pt;}
.ws62{word-spacing:-10.938191pt;}
.ws4b{word-spacing:-10.821827pt;}
.ws82{word-spacing:-10.763645pt;}
.ws6f{word-spacing:-10.705463pt;}
.ws1f{word-spacing:-10.647282pt;}
.ws72{word-spacing:-10.298190pt;}
.ws36{word-spacing:-10.181827pt;}
.ws21{word-spacing:-10.123645pt;}
.ws6e{word-spacing:-10.065463pt;}
.ws19{word-spacing:-10.007281pt;}
.ws18{word-spacing:-9.949099pt;}
.ws3d{word-spacing:-9.890917pt;}
.ws38{word-spacing:-9.832735pt;}
.ws84{word-spacing:-9.780372pt;}
.ws33{word-spacing:-9.774554pt;}
.ws1a{word-spacing:-9.716372pt;}
.ws30{word-spacing:-9.658190pt;}
.ws7d{word-spacing:-9.605826pt;}
.ws56{word-spacing:-9.600008pt;}
.ws17{word-spacing:-9.541826pt;}
.ws61{word-spacing:-9.483644pt;}
.ws44{word-spacing:-9.425462pt;}
.ws31{word-spacing:-9.367281pt;}
.ws9{word-spacing:-9.351561pt;}
.ws27{word-spacing:-9.309099pt;}
.ws7{word-spacing:-9.298427pt;}
.ws73{word-spacing:-9.256735pt;}
.ws60{word-spacing:-9.198553pt;}
.ws24{word-spacing:-9.192735pt;}
.wsd{word-spacing:-9.139025pt;}
.ws3e{word-spacing:-9.082189pt;}
.ws7b{word-spacing:-9.076371pt;}
.wsa{word-spacing:-9.032757pt;}
.ws6{word-spacing:-8.979623pt;}
.ws54{word-spacing:-8.965826pt;}
.ws15{word-spacing:-8.926490pt;}
.ws67{word-spacing:-8.907644pt;}
.wsb{word-spacing:-8.873356pt;}
.ws47{word-spacing:-8.849462pt;}
.ws6d{word-spacing:-8.843644pt;}
.ws83{word-spacing:-8.791280pt;}
.ws65{word-spacing:-8.733098pt;}
.ws63{word-spacing:-8.674916pt;}
.ws91{word-spacing:-8.616734pt;}
.ws12{word-spacing:-8.613000pt;}
.ws39{word-spacing:-8.610916pt;}
.ws32{word-spacing:-8.558553pt;}
.ws3a{word-spacing:-8.552734pt;}
.ws75{word-spacing:-8.500371pt;}
.ws58{word-spacing:-8.494553pt;}
.wse{word-spacing:-8.453598pt;}
.ws3{word-spacing:-8.448285pt;}
.ws76{word-spacing:-8.442189pt;}
.ws40{word-spacing:-8.436371pt;}
.ws4a{word-spacing:-8.378189pt;}
.ws5{word-spacing:-8.182615pt;}
.ws69{word-spacing:-8.093098pt;}
.ws74{word-spacing:-7.976734pt;}
.ws9b{word-spacing:-7.970916pt;}
.ws6a{word-spacing:-7.860370pt;}
.ws1b{word-spacing:-7.738188pt;}
.ws23{word-spacing:-7.563643pt;}
.ws78{word-spacing:-7.505461pt;}
.ws49{word-spacing:-7.447279pt;}
.ws59{word-spacing:-7.389097pt;}
.ws97{word-spacing:-7.330915pt;}
.ws14{word-spacing:-7.173072pt;}
.ws5e{word-spacing:-7.040006pt;}
.ws1e{word-spacing:-6.981824pt;}
.ws13{word-spacing:-6.960537pt;}
.ws95{word-spacing:-6.749097pt;}
.ws2{word-spacing:-6.748001pt;}
.ws7c{word-spacing:-6.690915pt;}
.ws98{word-spacing:-6.580369pt;}
.ws2e{word-spacing:-6.574551pt;}
.ws96{word-spacing:-6.458187pt;}
.ws5f{word-spacing:-6.109096pt;}
.ws99{word-spacing:-5.818187pt;}
.ws80{word-spacing:-5.765823pt;}
.ws79{word-spacing:-5.643641pt;}
.ws7a{word-spacing:-5.585459pt;}
.ws4{word-spacing:-5.100851pt;}
.ws5a{word-spacing:-5.067641pt;}
.ws8c{word-spacing:-5.009459pt;}
.ws2f{word-spacing:-4.945459pt;}
.ws92{word-spacing:-4.829095pt;}
.ws93{word-spacing:-4.770913pt;}
.ws6b{word-spacing:-4.247276pt;}
.ws20{word-spacing:-3.723639pt;}
.ws66{word-spacing:-3.613094pt;}
.ws8e{word-spacing:-3.607276pt;}
.ws1c{word-spacing:-3.141821pt;}
.ws1d{word-spacing:-2.973093pt;}
.ws28{word-spacing:-2.792730pt;}
.ws2a{word-spacing:-2.734548pt;}
.ws29{word-spacing:-2.565820pt;}
.ws8a{word-spacing:-2.094547pt;}
.ws88{word-spacing:-2.036365pt;}
.ws25{word-spacing:-1.396365pt;}
.ws48{word-spacing:-0.756364pt;}
.ws41{word-spacing:-0.058182pt;}
.ws45{word-spacing:-0.042507pt;}
.ws26{word-spacing:0.000000pt;}
.ws7f{word-spacing:5.003641pt;}
.wsc{word-spacing:14.718081pt;}
.ws22{word-spacing:16.116377pt;}
.ws50{word-spacing:16.174559pt;}
.ws87{word-spacing:16.465468pt;}
.ws71{word-spacing:17.396378pt;}
.ws4d{word-spacing:19.898198pt;}
.ws3b{word-spacing:19.956380pt;}
.ws1{word-spacing:20.722347pt;}
.ws86{word-spacing:21.117606pt;}
.ws6c{word-spacing:21.491915pt;}
.ws8f{word-spacing:26.589113pt;}
.ws0{word-spacing:27.636455pt;}
.ws89{word-spacing:29.149115pt;}
.ws37{word-spacing:35.865600pt;}
.ws16{word-spacing:43.038600pt;}
.ws5c{word-spacing:88.122255pt;}
._1b{margin-left:-9.716372pt;}
._18{margin-left:-5.525532pt;}
._2{margin-left:-4.356977pt;}
._1a{margin-left:-3.430985pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.434614pt;}
._4{width:1.381481pt;}
._1{width:2.450963pt;}
._15{width:4.538186pt;}
._19{width:9.194481pt;}
._1c{width:10.467315pt;}
._b{width:15.511267pt;}
._11{width:16.437055pt;}
._1d{width:17.905131pt;}
._8{width:19.340727pt;}
._10{width:20.300081pt;}
._a{width:21.944287pt;}
._9{width:23.378901pt;}
._14{width:24.509450pt;}
._d{width:25.774567pt;}
._f{width:26.881768pt;}
._5{width:28.054682pt;}
._c{width:29.329894pt;}
._16{width:30.254571pt;}
._7{width:31.348981pt;}
._6{width:35.387155pt;}
._e{width:39.989318pt;}
._13{width:71.731200pt;}
._12{width:86.077200pt;}
._17{width:125.978108pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:56.149333pt;}
.y99{bottom:96.000000pt;}
.y53{bottom:106.734667pt;}
.ye1{bottom:109.581333pt;}
.y12c{bottom:111.601333pt;}
.y29{bottom:113.817333pt;}
.y98{bottom:114.065333pt;}
.y52{bottom:124.800000pt;}
.ye0{bottom:127.646667pt;}
.y107{bottom:131.736000pt;}
.y28{bottom:131.882667pt;}
.ybf{bottom:132.130667pt;}
.y12b{bottom:140.297333pt;}
.y97{bottom:143.434667pt;}
.y106{bottom:149.802667pt;}
.ybe{bottom:150.197333pt;}
.y51{bottom:154.820000pt;}
.ydf{bottom:160.117333pt;}
.y96{bottom:161.500000pt;}
.y27{bottom:161.902667pt;}
.ybd{bottom:168.262667pt;}
.y12a{bottom:168.992000pt;}
.y50{bottom:170.704000pt;}
.y4f{bottom:172.886667pt;}
.y95{bottom:179.565333pt;}
.y26{bottom:179.968000pt;}
.y105{bottom:183.808000pt;}
.ybc{bottom:195.721333pt;}
.y94{bottom:197.630667pt;}
.y129{bottom:197.688000pt;}
.y4e{bottom:199.585333pt;}
.y104{bottom:201.873333pt;}
.yde{bottom:205.945333pt;}
.y6f{bottom:209.806667pt;}
.y25{bottom:209.989333pt;}
.y93{bottom:215.696000pt;}
.y128{bottom:215.753333pt;}
.y4d{bottom:217.652000pt;}
.ydd{bottom:224.012000pt;}
.y6e{bottom:227.872000pt;}
.y103{bottom:229.333333pt;}
.y92{bottom:233.762667pt;}
.ybb{bottom:234.634667pt;}
.y4c{bottom:235.717333pt;}
.y24{bottom:236.025333pt;}
.ydc{bottom:242.077333pt;}
.y127{bottom:244.449333pt;}
.y91{bottom:251.828000pt;}
.yba{bottom:252.700000pt;}
.y4b{bottom:253.782667pt;}
.y23{bottom:254.090667pt;}
.y6d{bottom:257.892000pt;}
.y102{bottom:268.282667pt;}
.y90{bottom:269.893333pt;}
.yb9{bottom:270.766667pt;}
.ydb{bottom:272.097333pt;}
.y22{bottom:272.156000pt;}
.y6c{bottom:275.958667pt;}
.y126{bottom:276.918667pt;}
.y4a{bottom:283.804000pt;}
.y101{bottom:286.349333pt;}
.yda{bottom:290.164000pt;}
.y21{bottom:290.221333pt;}
.y8f{bottom:296.653333pt;}
.y49{bottom:299.686667pt;}
.yb8{bottom:300.748000pt;}
.y48{bottom:301.869333pt;}
.y6b{bottom:305.978667pt;}
.yd9{bottom:308.229333pt;}
.y20{bottom:308.288000pt;}
.y8e{bottom:314.718667pt;}
.yb7{bottom:318.813333pt;}
.y100{bottom:318.818667pt;}
.y125{bottom:322.122667pt;}
.yd8{bottom:326.294667pt;}
.y1f{bottom:326.353333pt;}
.y47{bottom:334.546667pt;}
.y6a{bottom:336.000000pt;}
.yb6{bottom:336.878667pt;}
.y124{bottom:340.188000pt;}
.y8d{bottom:343.434667pt;}
.yd7{bottom:344.360000pt;}
.y1e{bottom:344.418667pt;}
.y69{bottom:354.065333pt;}
.yb5{bottom:354.944000pt;}
.y123{bottom:358.254667pt;}
.y8c{bottom:359.130667pt;}
.y8b{bottom:361.500000pt;}
.y1d{bottom:362.484000pt;}
.yff{bottom:364.646667pt;}
.y46{bottom:367.224000pt;}
.yb4{bottom:373.009333pt;}
.yd6{bottom:374.381333pt;}
.y122{bottom:376.320000pt;}
.y8a{bottom:379.566667pt;}
.y1c{bottom:380.549333pt;}
.yfe{bottom:382.713333pt;}
.y68{bottom:384.085333pt;}
.y45{bottom:385.289333pt;}
.yd5{bottom:392.446667pt;}
.y121{bottom:394.385333pt;}
.y1b{bottom:398.616000pt;}
.yfd{bottom:400.778667pt;}
.yb3{bottom:402.834667pt;}
.y44{bottom:403.354667pt;}
.y89{bottom:408.282667pt;}
.yd4{bottom:410.512000pt;}
.y67{bottom:410.785333pt;}
.y120{bottom:412.450667pt;}
.y1a{bottom:416.681333pt;}
.yb2{bottom:420.900000pt;}
.y88{bottom:426.348000pt;}
.yd3{bottom:428.577333pt;}
.y66{bottom:428.852000pt;}
.y11f{bottom:430.516000pt;}
.yfc{bottom:430.798667pt;}
.y43{bottom:430.814667pt;}
.y19{bottom:434.746667pt;}
.yb1{bottom:438.965333pt;}
.y65{bottom:446.917333pt;}
.y11e{bottom:448.582667pt;}
.yfb{bottom:448.865333pt;}
.y87{bottom:453.108000pt;}
.yb0{bottom:457.030667pt;}
.yd2{bottom:458.598667pt;}
.y11d{bottom:466.648000pt;}
.y18{bottom:467.216000pt;}
.y42{bottom:469.765333pt;}
.y86{bottom:471.173333pt;}
.yd1{bottom:476.664000pt;}
.y64{bottom:476.937333pt;}
.yfa{bottom:478.885333pt;}
.yaf{bottom:486.856000pt;}
.y11c{bottom:491.358667pt;}
.yd0{bottom:494.729333pt;}
.yf9{bottom:496.950667pt;}
.y85{bottom:497.933333pt;}
.y41{bottom:499.785333pt;}
.y63{bottom:504.397333pt;}
.yae{bottom:504.921333pt;}
.y11b{bottom:509.424000pt;}
.y17{bottom:513.045333pt;}
.y84{bottom:515.998667pt;}
.y40{bottom:517.850667pt;}
.yad{bottom:522.986667pt;}
.ycf{bottom:524.750667pt;}
.yf8{bottom:526.972000pt;}
.y11a{bottom:527.489333pt;}
.y16{bottom:528.985333pt;}
.y3f{bottom:535.917333pt;}
.yce{bottom:542.816000pt;}
.y62{bottom:543.348000pt;}
.y83{bottom:544.714667pt;}
.y15{bottom:544.925333pt;}
.yf7{bottom:545.037333pt;}
.y119{bottom:552.200000pt;}
.yac{bottom:552.810667pt;}
.y14{bottom:560.865333pt;}
.y82{bottom:562.780000pt;}
.y3e{bottom:563.376000pt;}
.yaa{bottom:570.876000pt;}
.yab{bottom:570.877333pt;}
.ycd{bottom:572.837333pt;}
.yf6{bottom:575.058667pt;}
.y61{bottom:575.817333pt;}
.y13{bottom:576.806667pt;}
.y118{bottom:579.660000pt;}
.ycc{bottom:590.902667pt;}
.y81{bottom:591.497333pt;}
.y12{bottom:592.746667pt;}
.yf5{bottom:593.124000pt;}
.ya9{bottom:600.818667pt;}
.y3d{bottom:602.326667pt;}
.y11{bottom:608.686667pt;}
.yf4{bottom:611.189333pt;}
.y117{bottom:617.985333pt;}
.y80{bottom:618.256000pt;}
.ya8{bottom:618.884000pt;}
.y3c{bottom:620.392000pt;}
.ycb{bottom:620.922667pt;}
.y60{bottom:621.645333pt;}
.y10{bottom:624.626667pt;}
.yf3{bottom:629.254667pt;}
.y116{bottom:636.050667pt;}
.y7f{bottom:636.321333pt;}
.y5f{bottom:639.712000pt;}
.yf{bottom:640.566667pt;}
.ya7{bottom:648.826667pt;}
.yca{bottom:650.944000pt;}
.y3b{bottom:652.861333pt;}
.y115{bottom:654.116000pt;}
.y7e{bottom:654.388000pt;}
.ye{bottom:656.506667pt;}
.yf2{bottom:656.714667pt;}
.y5e{bottom:657.777333pt;}
.ya6{bottom:666.892000pt;}
.y114{bottom:672.181333pt;}
.yd{bottom:672.448000pt;}
.yc9{bottom:680.965333pt;}
.y7d{bottom:681.146667pt;}
.y5d{bottom:687.797333pt;}
.yc{bottom:688.388000pt;}
.y113{bottom:690.246667pt;}
.yf1{bottom:695.664000pt;}
.ya5{bottom:696.717333pt;}
.y3a{bottom:698.690667pt;}
.yc8{bottom:699.030667pt;}
.yb{bottom:704.328000pt;}
.y5c{bottom:705.864000pt;}
.y7c{bottom:708.606667pt;}
.yf0{bottom:713.730667pt;}
.ya4{bottom:714.782667pt;}
.y39{bottom:716.756000pt;}
.ya{bottom:720.268000pt;}
.y112{bottom:720.277333pt;}
.yc7{bottom:729.050667pt;}
.y38{bottom:734.821333pt;}
.y9{bottom:736.208000pt;}
.y5b{bottom:738.541333pt;}
.ya3{bottom:742.241333pt;}
.yef{bottom:743.750667pt;}
.y7b{bottom:746.941333pt;}
.y111{bottom:748.973333pt;}
.y8{bottom:752.148000pt;}
.y37{bottom:752.886667pt;}
.yc6{bottom:759.072000pt;}
.yee{bottom:761.816000pt;}
.y7a{bottom:765.006667pt;}
.y110{bottom:767.038667pt;}
.y7{bottom:768.089333pt;}
.y36{bottom:770.953333pt;}
.y5a{bottom:771.218667pt;}
.yed{bottom:777.512000pt;}
.yec{bottom:779.882667pt;}
.ya2{bottom:781.154667pt;}
.y79{bottom:783.073333pt;}
.y6{bottom:784.029333pt;}
.y35{bottom:789.018667pt;}
.yc5{bottom:789.092000pt;}
.y59{bottom:789.284000pt;}
.y10f{bottom:795.734667pt;}
.yeb{bottom:797.948000pt;}
.y78{bottom:801.138667pt;}
.y34{bottom:807.084000pt;}
.y58{bottom:807.349333pt;}
.y5{bottom:808.272000pt;}
.ya1{bottom:810.978667pt;}
.yea{bottom:816.013333pt;}
.yc4{bottom:816.552000pt;}
.y77{bottom:819.204000pt;}
.y33{bottom:825.149333pt;}
.y10e{bottom:825.765333pt;}
.ya0{bottom:829.045333pt;}
.y57{bottom:834.809333pt;}
.y32{bottom:843.214667pt;}
.y10d{bottom:843.830667pt;}
.y76{bottom:845.964000pt;}
.ye9{bottom:846.034667pt;}
.yc3{bottom:855.502667pt;}
.y9f{bottom:858.869333pt;}
.y31{bottom:861.281333pt;}
.y10c{bottom:861.896000pt;}
.y4{bottom:861.970667pt;}
.y75{bottom:864.029333pt;}
.ye8{bottom:864.100000pt;}
.y56{bottom:873.758667pt;}
.y9e{bottom:876.934667pt;}
.y30{bottom:879.346667pt;}
.ye7{bottom:882.165333pt;}
.yc2{bottom:887.972000pt;}
.y10b{bottom:889.354667pt;}
.y74{bottom:890.789333pt;}
.y3{bottom:894.581333pt;}
.y9d{bottom:895.000000pt;}
.ye6{bottom:900.230667pt;}
.y55{bottom:903.780000pt;}
.y2f{bottom:906.805333pt;}
.y73{bottom:908.854667pt;}
.ye5{bottom:915.926667pt;}
.ye4{bottom:918.296000pt;}
.y9c{bottom:922.460000pt;}
.y10a{bottom:927.681333pt;}
.y54{bottom:933.801333pt;}
.y2{bottom:934.996000pt;}
.y72{bottom:937.618667pt;}
.y109{bottom:945.746667pt;}
.y2e{bottom:945.756000pt;}
.ye3{bottom:945.948000pt;}
.ye2{bottom:948.317333pt;}
.yc1{bottom:951.866667pt;}
.y1{bottom:953.593333pt;}
.y9b{bottom:961.373333pt;}
.y2d{bottom:963.821333pt;}
.y71{bottom:966.382667pt;}
.y108{bottom:975.776000pt;}
.y9a{bottom:979.438667pt;}
.yc0{bottom:981.886667pt;}
.y70{bottom:984.448000pt;}
.y2c{bottom:993.842667pt;}
.y2b{bottom:1011.908000pt;}
.hc{height:28.267288pt;}
.hd{height:29.499997pt;}
.h4{height:37.193707pt;}
.hb{height:39.796397pt;}
.h5{height:39.850400pt;}
.h9{height:40.378215pt;}
.ha{height:41.658217pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h10{height:44.870858pt;}
.hf{height:44.876191pt;}
.h3{height:45.525402pt;}
.he{height:48.527063pt;}
.h6{height:53.559147pt;}
.h11{height:54.630330pt;}
.h2{height:64.454458pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x58{left:87.918667pt;}
.x9f{left:93.309333pt;}
.x53{left:94.854667pt;}
.x8{left:96.000000pt;}
.x63{left:99.070667pt;}
.x5f{left:103.110667pt;}
.xa{left:106.505333pt;}
.x9{left:118.581333pt;}
.x7f{left:123.946667pt;}
.xb{left:125.090667pt;}
.x4f{left:128.169333pt;}
.x81{left:130.300000pt;}
.x7{left:132.364000pt;}
.x80{left:134.157333pt;}
.x64{left:146.526667pt;}
.x77{left:147.712000pt;}
.x6{left:152.289333pt;}
.x65{left:158.832000pt;}
.x82{left:164.865333pt;}
.x50{left:180.680000pt;}
.x6c{left:187.330667pt;}
.x51{left:197.665333pt;}
.x75{left:203.548000pt;}
.x76{left:217.768000pt;}
.x16{left:224.786667pt;}
.x1{left:231.568000pt;}
.x17{left:242.794667pt;}
.x59{left:245.312000pt;}
.x2e{left:250.840000pt;}
.x60{left:254.965333pt;}
.x5a{left:257.098667pt;}
.x2f{left:262.902667pt;}
.x2{left:265.196000pt;}
.x61{left:268.413333pt;}
.x5b{left:275.289333pt;}
.x22{left:281.220000pt;}
.x8e{left:285.036000pt;}
.x7b{left:286.280000pt;}
.x88{left:287.808000pt;}
.x4c{left:293.424000pt;}
.x23{left:294.412000pt;}
.x8f{left:299.669333pt;}
.x7c{left:300.840000pt;}
.x7d{left:312.462667pt;}
.x89{left:313.992000pt;}
.x5c{left:317.492000pt;}
.x91{left:319.365333pt;}
.x15{left:323.056000pt;}
.xd{left:329.225333pt;}
.x3{left:333.577333pt;}
.x98{left:336.877333pt;}
.x36{left:340.012000pt;}
.x3d{left:341.260000pt;}
.x4{left:345.128000pt;}
.x7a{left:348.217333pt;}
.x90{left:350.497333pt;}
.x44{left:354.917333pt;}
.x92{left:356.272000pt;}
.x45{left:359.526667pt;}
.x26{left:360.678667pt;}
.x99{left:365.030667pt;}
.x5{left:367.833333pt;}
.xe{left:369.388000pt;}
.x9e{left:370.872000pt;}
.x9a{left:371.857333pt;}
.x93{left:373.257333pt;}
.x78{left:374.209333pt;}
.x40{left:376.410667pt;}
.x9d{left:380.402667pt;}
.x41{left:383.193333pt;}
.x94{left:384.178667pt;}
.xc{left:393.214667pt;}
.x6e{left:397.338667pt;}
.x79{left:400.618667pt;}
.x18{left:404.641333pt;}
.x6b{left:406.849333pt;}
.x6f{left:411.953333pt;}
.x19{left:414.992000pt;}
.x24{left:422.064000pt;}
.x54{left:425.634667pt;}
.x1a{left:430.118667pt;}
.x13{left:432.192000pt;}
.x7e{left:435.020000pt;}
.x27{left:436.784000pt;}
.x62{left:439.386667pt;}
.x25{left:440.962667pt;}
.x55{left:442.620000pt;}
.x95{left:445.760000pt;}
.x1b{left:447.056000pt;}
.x73{left:450.044000pt;}
.x14{left:452.005333pt;}
.x9b{left:453.660000pt;}
.x28{left:457.109333pt;}
.x70{left:458.726667pt;}
.x74{left:461.204000pt;}
.x9c{left:462.326667pt;}
.x66{left:463.901333pt;}
.x33{left:467.378667pt;}
.x67{left:469.805333pt;}
.x71{left:472.998667pt;}
.x68{left:475.576000pt;}
.x8a{left:478.909333pt;}
.x6d{left:479.812000pt;}
.x1c{left:484.341333pt;}
.x69{left:487.981333pt;}
.x5d{left:497.126667pt;}
.x83{left:499.648000pt;}
.x1d{left:500.569333pt;}
.x8c{left:502.941333pt;}
.x29{left:512.372000pt;}
.x84{left:515.422667pt;}
.xf{left:518.976000pt;}
.x6a{left:520.481333pt;}
.x8d{left:525.329333pt;}
.x5e{left:531.692000pt;}
.x85{left:538.605333pt;}
.x48{left:542.240000pt;}
.x56{left:544.909333pt;}
.x52{left:552.968000pt;}
.x86{left:555.589333pt;}
.x57{left:556.542667pt;}
.x10{left:558.756000pt;}
.x34{left:566.066667pt;}
.x87{left:567.158667pt;}
.x96{left:570.402667pt;}
.x35{left:572.849333pt;}
.x49{left:576.805333pt;}
.x37{left:577.990667pt;}
.x31{left:578.921333pt;}
.x97{left:584.012000pt;}
.x46{left:584.992000pt;}
.x38{left:590.348000pt;}
.x2a{left:594.572000pt;}
.x47{left:606.632000pt;}
.x39{left:609.786667pt;}
.x32{left:613.486667pt;}
.x2b{left:615.085333pt;}
.x42{left:619.608000pt;}
.x1e{left:623.921333pt;}
.x2c{left:624.977333pt;}
.x3a{left:626.772000pt;}
.x43{left:631.250667pt;}
.x3b{left:634.848000pt;}
.x2d{left:636.377333pt;}
.x4d{left:638.594667pt;}
.x1f{left:640.150667pt;}
.x72{left:643.874667pt;}
.x20{left:646.416000pt;}
.x8b{left:652.884000pt;}
.x4a{left:654.212000pt;}
.x4e{left:662.328000pt;}
.x4b{left:666.530667pt;}
.x11{left:668.398667pt;}
.x3c{left:671.480000pt;}
.x21{left:680.981333pt;}
.x30{left:689.046667pt;}
.x3e{left:690.918667pt;}
.x12{left:693.712000pt;}
.x3f{left:696.441333pt;}
}




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