
    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_1813063fb9755692dd948162.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d0f8d59c214f5cfd910f51a2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2116ea470d5987debde04c49.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5191b611e664a0219e2eac46.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_64a4feac1c8cea36da0cf8e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_0e785b45e6a272d512d844d7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d3bbf4b765038dfaa94cd2e3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca254d689d62f09dafe15cf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_d742a2cecfdcdf452f81f4cd.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_c0d35c465618aba9f207fc6f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.716000;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_2da25c7acf951586a54ebb6b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_a2f52442e012358d50c06a2d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_56692248f89d1d705a783075.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;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_c70ab93675df23733c91715d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4ebd84a1fbfe0d88353288c6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_95911c3610f2a260478c9a8c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_83c834a3facfca3d44c2e2f2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m11{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);}
.m23{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);}
.m8{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);}
.m1e{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);}
.m13{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);}
.m1d{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);}
.m3{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);}
.m16{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);}
.m17{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);}
.md{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);}
.mc{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);}
.m20{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);}
.m12{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);}
.m7{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);}
.m1f{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);}
.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);}
.ma{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);}
.mb{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);}
.m19{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);}
.m1{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);}
.m21{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);}
.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);}
.m4{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);}
.me{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);}
.mf{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);}
.m1b{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);}
.m18{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);}
.m22{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);}
.m1c{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);}
.m24{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);}
.m9{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);}
.m6{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);}
.m14{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);}
.m5{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);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-17.958000px;}
.v3{vertical-align:-10.134000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:2.356366px;}
.ls3{letter-spacing:2.421820px;}
.ls4{letter-spacing:2.988532px;}
.ls7{letter-spacing:2.990915px;}
.lsb{letter-spacing:14.530921px;}
.ls8{letter-spacing:15.601536px;}
.lsc{letter-spacing:18.196379px;}
.ls9{letter-spacing:21.796382px;}
.lsa{letter-spacing:21.861836px;}
.lsd{letter-spacing:24.158289px;}
.ls1{letter-spacing:24.800915px;}
.ls2{letter-spacing:28.930933px;}
.ls6{letter-spacing:30.109116px;}
.ls5{letter-spacing:32.727300px;}
.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;}
}
.ws93{word-spacing:-65.454600px;}
.ws59{word-spacing:-42.637126px;}
.ws25{word-spacing:-38.937826px;}
.ws73{word-spacing:-37.636395px;}
.ws4{word-spacing:-34.370970px;}
.ws83{word-spacing:-33.453846px;}
.ws94{word-spacing:-33.211407px;}
.ws75{word-spacing:-32.727300px;}
.ws58{word-spacing:-28.040751px;}
.ws7a{word-spacing:-22.935292px;}
.ws0{word-spacing:-19.367325px;}
.ws56{word-spacing:-19.047289px;}
.ws3d{word-spacing:-18.196379px;}
.ws92{word-spacing:-17.869106px;}
.wsb9{word-spacing:-17.803651px;}
.ws40{word-spacing:-17.541833px;}
.ws70{word-spacing:-16.821832px;}
.ws57{word-spacing:-16.625468px;}
.ws95{word-spacing:-16.494559px;}
.wsb1{word-spacing:-16.363650px;}
.wsba{word-spacing:-16.304741px;}
.wsaf{word-spacing:-16.298195px;}
.ws2a{word-spacing:-16.139475px;}
.ws7c{word-spacing:-15.970922px;}
.ws89{word-spacing:-15.905468px;}
.ws3e{word-spacing:-15.840013px;}
.ws5e{word-spacing:-15.774559px;}
.ws39{word-spacing:-15.578195px;}
.ws61{word-spacing:-15.447286px;}
.ws1e{word-spacing:-15.422105px;}
.ws2e{word-spacing:-15.185467px;}
.ws5{word-spacing:-15.003676px;}
.wsb0{word-spacing:-14.995649px;}
.ws76{word-spacing:-14.923649px;}
.ws71{word-spacing:-14.661830px;}
.ws1d{word-spacing:-14.585246px;}
.ws1a{word-spacing:-14.525471px;}
.ws1c{word-spacing:-14.465695px;}
.ws26{word-spacing:-14.405920px;}
.ws8b{word-spacing:-14.400012px;}
.ws1f{word-spacing:-14.346144px;}
.ws7f{word-spacing:-14.203648px;}
.ws77{word-spacing:-14.007284px;}
.ws6e{word-spacing:-13.876375px;}
.wsb8{word-spacing:-13.810921px;}
.wsb5{word-spacing:-13.614557px;}
.ws3c{word-spacing:-13.449600px;}
.ws4e{word-spacing:-13.418193px;}
.ws17{word-spacing:-13.389734px;}
.ws91{word-spacing:-13.352738px;}
.ws43{word-spacing:-13.221829px;}
.ws5d{word-spacing:-13.162675px;}
.ws7e{word-spacing:-12.960011px;}
.ws7d{word-spacing:-12.894556px;}
.ws63{word-spacing:-12.852438px;}
.ws2f{word-spacing:-12.829102px;}
.ws6f{word-spacing:-12.763647px;}
.wsb{word-spacing:-12.738180px;}
.ws51{word-spacing:-12.698192px;}
.ws5f{word-spacing:-12.567283px;}
.wsb6{word-spacing:-12.442919px;}
.ws80{word-spacing:-12.305465px;}
.ws33{word-spacing:-12.240010px;}
.ws81{word-spacing:-12.174556px;}
.ws97{word-spacing:-12.050192px;}
.ws4f{word-spacing:-12.043646px;}
.ws6c{word-spacing:-11.912737px;}
.ws7{word-spacing:-11.895344px;}
.ws64{word-spacing:-11.765710px;}
.wsc5{word-spacing:-11.716373px;}
.ws65{word-spacing:-11.711912px;}
.ws62{word-spacing:-11.615075px;}
.ws53{word-spacing:-11.526555px;}
.ws44{word-spacing:-11.520010px;}
.ws9a{word-spacing:-11.454555px;}
.ws12{word-spacing:-11.417140px;}
.ws34{word-spacing:-11.389100px;}
.ws24{word-spacing:-11.357364px;}
.wsbb{word-spacing:-11.323646px;}
.ws4d{word-spacing:-11.258191px;}
.ws82{word-spacing:-11.192737px;}
.ws3f{word-spacing:-11.127282px;}
.ws8{word-spacing:-11.118262px;}
.ws49{word-spacing:-11.061827px;}
.ws42{word-spacing:-10.996373px;}
.ws31{word-spacing:-10.930918px;}
.ws30{word-spacing:-10.865464px;}
.ws2d{word-spacing:-10.800009px;}
.wsc6{word-spacing:-10.741100px;}
.ws35{word-spacing:-10.734554px;}
.ws45{word-spacing:-10.675645px;}
.ws32{word-spacing:-10.669100px;}
.ws2b{word-spacing:-10.603645px;}
.wsc4{word-spacing:-10.544736px;}
.ws41{word-spacing:-10.538191px;}
.ws6{word-spacing:-10.520506px;}
.wsbc{word-spacing:-10.479281px;}
.ws50{word-spacing:-10.472736px;}
.ws6d{word-spacing:-10.407281px;}
.wsf{word-spacing:-10.400954px;}
.ws46{word-spacing:-10.282918px;}
.ws16{word-spacing:-10.281403px;}
.ws18{word-spacing:-10.221628px;}
.wsd{word-spacing:-10.161852px;}
.ws52{word-spacing:-10.152008px;}
.ws3{word-spacing:-10.102076px;}
.ws9e{word-spacing:-10.086554px;}
.ws1b{word-spacing:-10.042301px;}
.ws9d{word-spacing:-10.021099px;}
.ws90{word-spacing:-10.014554px;}
.ws19{word-spacing:-9.982525px;}
.ws96{word-spacing:-9.955645px;}
.ws13{word-spacing:-9.922750px;}
.ws84{word-spacing:-9.890190px;}
.ws20{word-spacing:-9.862974px;}
.wsb7{word-spacing:-9.824735px;}
.wsb4{word-spacing:-9.759281px;}
.ws2c{word-spacing:-9.693826px;}
.ws72{word-spacing:-9.687281px;}
.ws9{word-spacing:-9.683647px;}
.ws7b{word-spacing:-9.628372px;}
.ws14{word-spacing:-9.623872px;}
.ws47{word-spacing:-9.621826px;}
.ws5a{word-spacing:-9.556372px;}
.wsab{word-spacing:-9.497462px;}
.wsa4{word-spacing:-9.490917px;}
.wsa2{word-spacing:-9.425462px;}
.ws66{word-spacing:-9.409340px;}
.wsc{word-spacing:-9.390747px;}
.ws36{word-spacing:-9.294553px;}
.ws9b{word-spacing:-9.229099px;}
.wse{word-spacing:-9.205442px;}
.ws5c{word-spacing:-9.194147px;}
.wsc7{word-spacing:-9.163644px;}
.ws2{word-spacing:-9.151644px;}
.wsa{word-spacing:-8.912542px;}
.ws23{word-spacing:-8.906564px;}
.wsb3{word-spacing:-8.901826px;}
.wsa3{word-spacing:-8.777462px;}
.ws3a{word-spacing:-8.705462px;}
.ws15{word-spacing:-8.667462px;}
.ws67{word-spacing:-8.645403px;}
.ws69{word-spacing:-8.574553px;}
.wsc8{word-spacing:-8.515643px;}
.ws87{word-spacing:-8.509098px;}
.ws68{word-spacing:-8.484008px;}
.ws4b{word-spacing:-8.443643px;}
.ws9c{word-spacing:-8.378189px;}
.wsb2{word-spacing:-8.253825px;}
.wsa9{word-spacing:-8.247280px;}
.ws9f{word-spacing:-8.181825px;}
.wsa1{word-spacing:-8.116370px;}
.ws11{word-spacing:-7.890379px;}
.ws5b{word-spacing:-7.854552px;}
.ws22{word-spacing:-7.770828px;}
.wsaa{word-spacing:-7.599279px;}
.wsa0{word-spacing:-7.533824px;}
.ws6a{word-spacing:-7.396370px;}
.ws4c{word-spacing:-7.330915px;}
.ws27{word-spacing:-7.173072px;}
.ws10{word-spacing:-6.874194px;}
.wsa7{word-spacing:-6.807278px;}
.ws3b{word-spacing:-6.676369px;}
.wsa8{word-spacing:-6.355642px;}
.ws99{word-spacing:-6.349096px;}
.ws85{word-spacing:-6.218187px;}
.ws21{word-spacing:-6.037336px;}
.ws37{word-spacing:-6.021823px;}
.ws79{word-spacing:-5.760005px;}
.wsa5{word-spacing:-5.694550px;}
.ws86{word-spacing:-5.432732px;}
.wsa6{word-spacing:-5.308368px;}
.ws48{word-spacing:-5.236368px;}
.ws38{word-spacing:-4.843640px;}
.ws28{word-spacing:-4.841824px;}
.ws88{word-spacing:-4.450913px;}
.ws98{word-spacing:-4.320004px;}
.ws8a{word-spacing:-4.189094px;}
.ws54{word-spacing:-3.730912px;}
.ws6b{word-spacing:-3.665458px;}
.ws8e{word-spacing:-3.403639px;}
.ws55{word-spacing:-3.207275px;}
.wsae{word-spacing:-3.141821px;}
.wsad{word-spacing:-2.886548px;}
.ws4a{word-spacing:-2.880002px;}
.wsc2{word-spacing:-1.309092px;}
.wsc3{word-spacing:-1.250183px;}
.wsac{word-spacing:-1.047274px;}
.ws60{word-spacing:-0.065455px;}
.ws29{word-spacing:0.000000px;}
.wsc1{word-spacing:4.182549px;}
.wsc0{word-spacing:4.647277px;}
.wsbe{word-spacing:9.026189px;}
.wsbf{word-spacing:9.818190px;}
.wsbd{word-spacing:9.883645px;}
.ws8d{word-spacing:10.603645px;}
.ws74{word-spacing:12.960011px;}
.ws78{word-spacing:16.298195px;}
.ws1{word-spacing:23.312640px;}
.ws8f{word-spacing:55.767319px;}
.ws8c{word-spacing:429.077305px;}
._3{margin-left:-5.810227px;}
._b{margin-left:-4.495099px;}
._1{margin-left:-3.202064px;}
._2{margin-left:-1.936742px;}
._4{width:1.936742px;}
._0{width:3.202064px;}
._1b{width:4.712731px;}
._26{width:5.854013px;}
._1c{width:7.985461px;}
._17{width:16.690923px;}
._11{width:18.824029px;}
._6{width:20.108525px;}
._22{width:21.126604px;}
._5{width:22.260446px;}
._8{width:24.003973px;}
._d{width:25.189451px;}
._9{width:26.301264px;}
._7{width:28.068714px;}
._12{width:29.112065px;}
._19{width:30.115568px;}
._1f{width:31.325858px;}
._1d{width:32.685172px;}
._c{width:34.610072px;}
._25{width:35.865600px;}
._a{width:36.905468px;}
._e{width:38.545163px;}
._1e{width:41.123605px;}
._10{width:43.038600px;}
._13{width:44.624451px;}
._1a{width:45.759218px;}
._14{width:48.382613px;}
._20{width:57.823307px;}
._21{width:62.940430px;}
._18{width:64.975975px;}
._16{width:66.698237px;}
._15{width:80.697600px;}
._f{width:96.836850px;}
._23{width:99.324289px;}
._24{width:194.768759px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{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;}
.y20{bottom:63.168000px;}
.y75{bottom:108.025500px;}
.y5f{bottom:113.739000px;}
.y10b{bottom:122.595000px;}
.y74{bottom:124.464000px;}
.y73{bottom:140.901000px;}
.y10a{bottom:145.966500px;}
.y72{bottom:157.339500px;}
.y71{bottom:163.053000px;}
.yb9{bottom:178.332000px;}
.y109{bottom:182.788500px;}
.yb8{bottom:201.705000px;}
.y108{bottom:206.161500px;}
.y107{bottom:229.533000px;}
.yb7{bottom:233.212500px;}
.yb6{bottom:256.584000px;}
.yda{bottom:260.521500px;}
.y106{bottom:266.355000px;}
.yb5{bottom:279.957000px;}
.yd9{bottom:283.893000px;}
.y105{bottom:289.726500px;}
.yb4{bottom:303.328500px;}
.y1f{bottom:307.071000px;}
.yd8{bottom:307.266000px;}
.y104{bottom:326.548500px;}
.yb3{bottom:326.701500px;}
.y1e{bottom:327.694500px;}
.yd7{bottom:338.773500px;}
.y1d{bottom:348.316500px;}
.y103{bottom:349.921500px;}
.yd6{bottom:362.145000px;}
.y1c{bottom:368.938500px;}
.y5e{bottom:371.314500px;}
.y102{bottom:373.293000px;}
.yb2{bottom:376.141500px;}
.y1b{bottom:389.562000px;}
.y5d{bottom:394.686000px;}
.yd5{bottom:397.744500px;}
.yb1{bottom:399.514500px;}
.y101{bottom:410.115000px;}
.y1a{bottom:410.184000px;}
.y5c{bottom:418.059000px;}
.y70{bottom:420.522000px;}
.yd4{bottom:421.116000px;}
.yb0{bottom:422.886000px;}
.y19{bottom:430.807500px;}
.y100{bottom:433.488000px;}
.y5b{bottom:441.430500px;}
.yaf{bottom:446.259000px;}
.y18{bottom:451.429500px;}
.y6f{bottom:452.029500px;}
.yd3{bottom:452.623500px;}
.y5a{bottom:464.803500px;}
.yff{bottom:470.308500px;}
.y17{bottom:472.051500px;}
.y6e{bottom:475.401000px;}
.yd2{bottom:475.996500px;}
.yae{bottom:483.079500px;}
.y16{bottom:492.675000px;}
.yfe{bottom:493.681500px;}
.y6d{bottom:498.774000px;}
.yad{bottom:506.452500px;}
.y15{bottom:513.297000px;}
.y59{bottom:514.243500px;}
.yd1{bottom:518.071500px;}
.ye8{bottom:525.091500px;}
.yac{bottom:529.824000px;}
.y6c{bottom:530.281500px;}
.yfd{bottom:530.503500px;}
.y14{bottom:533.919000px;}
.y58{bottom:537.616500px;}
.yab{bottom:553.197000px;}
.y6b{bottom:553.653000px;}
.yfc{bottom:553.875000px;}
.y13{bottom:554.542500px;}
.y57{bottom:560.988000px;}
.y9d{bottom:563.770500px;}
.ye7{bottom:572.962500px;}
.yd0{bottom:573.163500px;}
.y12{bottom:575.164500px;}
.y37{bottom:576.034500px;}
.yfb{bottom:577.248000px;}
.y56{bottom:584.361000px;}
.y9c{bottom:587.143500px;}
.yaa{bottom:590.019000px;}
.y11{bottom:595.788000px;}
.ye6{bottom:596.334000px;}
.ycf{bottom:596.536500px;}
.y36{bottom:599.407500px;}
.y6a{bottom:601.525500px;}
.y55{bottom:607.732500px;}
.y9b{bottom:610.515000px;}
.ya9{bottom:613.390500px;}
.yfa{bottom:614.070000px;}
.y10{bottom:616.410000px;}
.ye5{bottom:619.707000px;}
.yce{bottom:619.908000px;}
.y35{bottom:622.779000px;}
.y54{bottom:631.105500px;}
.ya8{bottom:636.763500px;}
.yf{bottom:637.032000px;}
.yf9{bottom:637.441500px;}
.ycd{bottom:643.281000px;}
.y34{bottom:646.152000px;}
.y69{bottom:650.965500px;}
.ye4{bottom:651.214500px;}
.y9a{bottom:654.735000px;}
.y85{bottom:656.844000px;}
.ye{bottom:657.655500px;}
.yf8{bottom:660.814500px;}
.ycc{bottom:666.652500px;}
.y53{bottom:667.926000px;}
.y33{bottom:669.523500px;}
.ya7{bottom:673.585500px;}
.ye3{bottom:674.586000px;}
.yd{bottom:678.277500px;}
.y84{bottom:680.215500px;}
.y68{bottom:687.787500px;}
.ycb{bottom:690.025500px;}
.y99{bottom:691.210500px;}
.y52{bottom:691.299000px;}
.y32{bottom:692.896500px;}
.ya6{bottom:696.957000px;}
.yf7{bottom:697.636500px;}
.ye2{bottom:697.959000px;}
.yc{bottom:698.899500px;}
.y98{bottom:711.534000px;}
.yca{bottom:713.397000px;}
.y51{bottom:714.670500px;}
.y31{bottom:716.268000px;}
.y83{bottom:717.037500px;}
.yb{bottom:719.523000px;}
.yf6{bottom:721.008000px;}
.y67{bottom:724.609500px;}
.ye1{bottom:729.466500px;}
.ya5{bottom:733.779000px;}
.y97{bottom:734.488500px;}
.y30{bottom:739.641000px;}
.ya{bottom:740.145000px;}
.y82{bottom:740.410500px;}
.yf5{bottom:744.381000px;}
.y50{bottom:751.492500px;}
.ye0{bottom:752.838000px;}
.y96{bottom:754.812000px;}
.yc9{bottom:755.473500px;}
.ya4{bottom:757.150500px;}
.y9{bottom:760.767000px;}
.y66{bottom:761.430000px;}
.y2f{bottom:763.012500px;}
.y4f{bottom:774.865500px;}
.ydf{bottom:776.211000px;}
.y81{bottom:777.232500px;}
.y95{bottom:777.766500px;}
.ya3{bottom:780.523500px;}
.yf4{bottom:781.201500px;}
.y8{bottom:781.390500px;}
.y2e{bottom:794.520000px;}
.y94{bottom:798.090000px;}
.y4e{bottom:798.237000px;}
.y65{bottom:798.252000px;}
.yde{bottom:799.582500px;}
.y80{bottom:800.604000px;}
.yf3{bottom:804.574500px;}
.yc8{bottom:807.897000px;}
.y111{bottom:814.054500px;}
.y7{bottom:815.005500px;}
.y2d{bottom:817.893000px;}
.y93{bottom:821.044500px;}
.ydd{bottom:822.955500px;}
.yf2{bottom:827.946000px;}
.y4d{bottom:828.334500px;}
.ya2{bottom:829.963500px;}
.y42{bottom:831.565500px;}
.y64{bottom:835.074000px;}
.y7f{bottom:837.426000px;}
.y2c{bottom:841.264500px;}
.y92{bottom:841.368000px;}
.yc7{bottom:844.981500px;}
.ydc{bottom:846.327000px;}
.y4c{bottom:851.706000px;}
.y41{bottom:854.937000px;}
.y7e{bottom:860.799000px;}
.y91{bottom:864.322500px;}
.y2b{bottom:864.637500px;}
.yf1{bottom:864.768000px;}
.yc6{bottom:865.305000px;}
.y63{bottom:871.896000px;}
.y110{bottom:874.248000px;}
.y4b{bottom:875.079000px;}
.ya1{bottom:877.834500px;}
.y40{bottom:878.310000px;}
.y6{bottom:879.628500px;}
.y90{bottom:884.646000px;}
.y2a{bottom:888.009000px;}
.yf0{bottom:888.141000px;}
.yc5{bottom:890.292000px;}
.y7d{bottom:897.619500px;}
.ya0{bottom:901.207500px;}
.y3f{bottom:901.681500px;}
.y8f{bottom:907.600500px;}
.y62{bottom:908.718000px;}
.yc4{bottom:910.615500px;}
.yef{bottom:911.512500px;}
.y4a{bottom:911.901000px;}
.y29{bottom:919.516500px;}
.y7c{bottom:920.992500px;}
.y9f{bottom:924.579000px;}
.y5{bottom:925.192500px;}
.y8e{bottom:927.924000px;}
.y10f{bottom:934.441500px;}
.y49{bottom:935.272500px;}
.yc3{bottom:935.601000px;}
.y28{bottom:942.889500px;}
.y61{bottom:945.540000px;}
.y9e{bottom:947.952000px;}
.yee{bottom:948.334500px;}
.y4{bottom:949.252500px;}
.y8d{bottom:950.877000px;}
.yc2{bottom:955.924500px;}
.y3e{bottom:956.086500px;}
.y7b{bottom:957.814500px;}
.y48{bottom:958.645500px;}
.y27{bottom:966.261000px;}
.y8c{bottom:971.202000px;}
.ydb{bottom:971.323500px;}
.yed{bottom:971.707500px;}
.y3{bottom:973.312500px;}
.y3d{bottom:979.459500px;}
.yc1{bottom:980.911500px;}
.y7a{bottom:981.186000px;}
.y26{bottom:989.634000px;}
.y8b{bottom:994.155000px;}
.y10e{bottom:994.636500px;}
.yec{bottom:995.079000px;}
.y47{bottom:995.467500px;}
.yc0{bottom:1001.235000px;}
.y3c{bottom:1002.831000px;}
.y25{bottom:1013.005500px;}
.y8a{bottom:1014.478500px;}
.y79{bottom:1018.008000px;}
.y46{bottom:1018.839000px;}
.y60{bottom:1025.077500px;}
.y3b{bottom:1026.204000px;}
.ybf{bottom:1026.222000px;}
.y2{bottom:1030.053000px;}
.yeb{bottom:1031.901000px;}
.y24{bottom:1036.378500px;}
.y89{bottom:1037.433000px;}
.y78{bottom:1041.381000px;}
.y45{bottom:1042.212000px;}
.ybe{bottom:1046.545500px;}
.y3a{bottom:1049.575500px;}
.y10d{bottom:1054.830000px;}
.yea{bottom:1055.272500px;}
.y88{bottom:1057.756500px;}
.y23{bottom:1059.750000px;}
.y44{bottom:1065.583500px;}
.y1{bottom:1067.860500px;}
.ybd{bottom:1071.531000px;}
.y39{bottom:1072.948500px;}
.y10c{bottom:1078.201500px;}
.y77{bottom:1078.203000px;}
.y87{bottom:1080.711000px;}
.ybc{bottom:1091.854500px;}
.ye9{bottom:1092.094500px;}
.y38{bottom:1096.320000px;}
.y86{bottom:1101.034500px;}
.y76{bottom:1101.574500px;}
.y22{bottom:1107.462000px;}
.y43{bottom:1115.023500px;}
.ybb{bottom:1116.841500px;}
.yba{bottom:1137.165000px;}
.y21{bottom:1138.396500px;}
.hb{height:23.850624px;}
.hc{height:40.348800px;}
.h5{height:42.799330px;}
.h4{height:44.831700px;}
.ha{height:46.865494px;}
.h6{height:49.090950px;}
.h3{height:50.498765px;}
.h8{height:53.798400px;}
.h9{height:55.554699px;}
.h7{height:64.557900px;}
.h2{height:77.469300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:81.840000px;}
.x10{left:105.993000px;}
.xe{left:108.000000px;}
.x1{left:117.613500px;}
.x16{left:126.655500px;}
.x11{left:127.999500px;}
.x18{left:132.384000px;}
.x30{left:133.455000px;}
.x31{left:141.636000px;}
.xf{left:144.313500px;}
.xa{left:147.160500px;}
.x9{left:148.909500px;}
.x17{left:153.952500px;}
.x8{left:171.325500px;}
.x1a{left:178.983000px;}
.x21{left:188.199000px;}
.x24{left:230.527500px;}
.x26{left:237.346500px;}
.x1c{left:241.230000px;}
.x4{left:268.600500px;}
.xb{left:273.334500px;}
.xc{left:283.605000px;}
.x25{left:306.631500px;}
.x1b{left:309.993000px;}
.x2b{left:314.791500px;}
.x2c{left:347.112000px;}
.x2{left:363.879000px;}
.x3{left:365.370000px;}
.x6{left:381.073500px;}
.x27{left:400.005000px;}
.x5{left:401.977500px;}
.x7{left:413.812500px;}
.x1d{left:415.761000px;}
.x32{left:421.351500px;}
.x28{left:429.826500px;}
.x33{left:432.598500px;}
.x2f{left:438.274500px;}
.xd{left:442.366500px;}
.x22{left:454.648500px;}
.x1e{left:482.233500px;}
.x1f{left:499.603500px;}
.x12{left:533.095500px;}
.x2d{left:544.849500px;}
.x34{left:579.628500px;}
.x20{left:588.783000px;}
.x35{left:590.874000px;}
.x13{left:599.560500px;}
.x23{left:606.919500px;}
.x2e{left:611.289000px;}
.x14{left:616.578000px;}
.x29{left:634.212000px;}
.x2a{left:668.106000px;}
.x15{left:694.243500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-15.962667pt;}
.v3{vertical-align:-9.008000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:2.094547pt;}
.ls3{letter-spacing:2.152729pt;}
.ls4{letter-spacing:2.656473pt;}
.ls7{letter-spacing:2.658591pt;}
.lsb{letter-spacing:12.916374pt;}
.ls8{letter-spacing:13.868032pt;}
.lsc{letter-spacing:16.174559pt;}
.ls9{letter-spacing:19.374562pt;}
.lsa{letter-spacing:19.432743pt;}
.lsd{letter-spacing:21.474034pt;}
.ls1{letter-spacing:22.045258pt;}
.ls2{letter-spacing:25.716385pt;}
.ls6{letter-spacing:26.763659pt;}
.ls5{letter-spacing:29.090933pt;}
.ws93{word-spacing:-58.181867pt;}
.ws59{word-spacing:-37.899668pt;}
.ws25{word-spacing:-34.611401pt;}
.ws73{word-spacing:-33.454573pt;}
.ws4{word-spacing:-30.551973pt;}
.ws83{word-spacing:-29.736752pt;}
.ws94{word-spacing:-29.521250pt;}
.ws75{word-spacing:-29.090933pt;}
.ws58{word-spacing:-24.925112pt;}
.ws7a{word-spacing:-20.386926pt;}
.ws0{word-spacing:-17.215400pt;}
.ws56{word-spacing:-16.930923pt;}
.ws3d{word-spacing:-16.174559pt;}
.ws92{word-spacing:-15.883650pt;}
.wsb9{word-spacing:-15.825468pt;}
.ws40{word-spacing:-15.592740pt;}
.ws70{word-spacing:-14.952740pt;}
.ws57{word-spacing:-14.778194pt;}
.ws95{word-spacing:-14.661830pt;}
.wsb1{word-spacing:-14.545467pt;}
.wsba{word-spacing:-14.493103pt;}
.wsaf{word-spacing:-14.487285pt;}
.ws2a{word-spacing:-14.346200pt;}
.ws7c{word-spacing:-14.196375pt;}
.ws89{word-spacing:-14.138194pt;}
.ws3e{word-spacing:-14.080012pt;}
.ws5e{word-spacing:-14.021830pt;}
.ws39{word-spacing:-13.847284pt;}
.ws61{word-spacing:-13.730921pt;}
.ws1e{word-spacing:-13.708538pt;}
.ws2e{word-spacing:-13.498193pt;}
.ws5{word-spacing:-13.336601pt;}
.wsb0{word-spacing:-13.329466pt;}
.ws76{word-spacing:-13.265466pt;}
.ws71{word-spacing:-13.032738pt;}
.ws1d{word-spacing:-12.964663pt;}
.ws1a{word-spacing:-12.911530pt;}
.ws1c{word-spacing:-12.858396pt;}
.ws26{word-spacing:-12.805262pt;}
.ws8b{word-spacing:-12.800011pt;}
.ws1f{word-spacing:-12.752128pt;}
.ws7f{word-spacing:-12.625465pt;}
.ws77{word-spacing:-12.450919pt;}
.ws6e{word-spacing:-12.334556pt;}
.wsb8{word-spacing:-12.276374pt;}
.wsb5{word-spacing:-12.101828pt;}
.ws3c{word-spacing:-11.955200pt;}
.ws4e{word-spacing:-11.927283pt;}
.ws17{word-spacing:-11.901986pt;}
.ws91{word-spacing:-11.869101pt;}
.ws43{word-spacing:-11.752737pt;}
.ws5d{word-spacing:-11.700156pt;}
.ws7e{word-spacing:-11.520010pt;}
.ws7d{word-spacing:-11.461828pt;}
.ws63{word-spacing:-11.424389pt;}
.ws2f{word-spacing:-11.403646pt;}
.ws6f{word-spacing:-11.345464pt;}
.wsb{word-spacing:-11.322827pt;}
.ws51{word-spacing:-11.287282pt;}
.ws5f{word-spacing:-11.170918pt;}
.wsb6{word-spacing:-11.060373pt;}
.ws80{word-spacing:-10.938191pt;}
.ws33{word-spacing:-10.880009pt;}
.ws81{word-spacing:-10.821827pt;}
.ws97{word-spacing:-10.711282pt;}
.ws4f{word-spacing:-10.705463pt;}
.ws6c{word-spacing:-10.589100pt;}
.ws7{word-spacing:-10.573639pt;}
.ws64{word-spacing:-10.458409pt;}
.wsc5{word-spacing:-10.414554pt;}
.ws65{word-spacing:-10.410588pt;}
.ws62{word-spacing:-10.324511pt;}
.ws53{word-spacing:-10.245827pt;}
.ws44{word-spacing:-10.240009pt;}
.ws9a{word-spacing:-10.181827pt;}
.ws12{word-spacing:-10.148569pt;}
.ws34{word-spacing:-10.123645pt;}
.ws24{word-spacing:-10.095435pt;}
.wsbb{word-spacing:-10.065463pt;}
.ws4d{word-spacing:-10.007281pt;}
.ws82{word-spacing:-9.949099pt;}
.ws3f{word-spacing:-9.890917pt;}
.ws8{word-spacing:-9.882899pt;}
.ws49{word-spacing:-9.832735pt;}
.ws42{word-spacing:-9.774554pt;}
.ws31{word-spacing:-9.716372pt;}
.ws30{word-spacing:-9.658190pt;}
.ws2d{word-spacing:-9.600008pt;}
.wsc6{word-spacing:-9.547644pt;}
.ws35{word-spacing:-9.541826pt;}
.ws45{word-spacing:-9.489462pt;}
.ws32{word-spacing:-9.483644pt;}
.ws2b{word-spacing:-9.425462pt;}
.wsc4{word-spacing:-9.373099pt;}
.ws41{word-spacing:-9.367281pt;}
.ws6{word-spacing:-9.351561pt;}
.wsbc{word-spacing:-9.314917pt;}
.ws50{word-spacing:-9.309099pt;}
.ws6d{word-spacing:-9.250917pt;}
.wsf{word-spacing:-9.245293pt;}
.ws46{word-spacing:-9.140371pt;}
.ws16{word-spacing:-9.139025pt;}
.ws18{word-spacing:-9.085891pt;}
.wsd{word-spacing:-9.032757pt;}
.ws52{word-spacing:-9.024008pt;}
.ws3{word-spacing:-8.979623pt;}
.ws9e{word-spacing:-8.965826pt;}
.ws1b{word-spacing:-8.926490pt;}
.ws9d{word-spacing:-8.907644pt;}
.ws90{word-spacing:-8.901826pt;}
.ws19{word-spacing:-8.873356pt;}
.ws96{word-spacing:-8.849462pt;}
.ws13{word-spacing:-8.820222pt;}
.ws84{word-spacing:-8.791280pt;}
.ws20{word-spacing:-8.767088pt;}
.wsb7{word-spacing:-8.733098pt;}
.wsb4{word-spacing:-8.674916pt;}
.ws2c{word-spacing:-8.616734pt;}
.ws72{word-spacing:-8.610916pt;}
.ws9{word-spacing:-8.607686pt;}
.ws7b{word-spacing:-8.558553pt;}
.ws14{word-spacing:-8.554553pt;}
.ws47{word-spacing:-8.552734pt;}
.ws5a{word-spacing:-8.494553pt;}
.wsab{word-spacing:-8.442189pt;}
.wsa4{word-spacing:-8.436371pt;}
.wsa2{word-spacing:-8.378189pt;}
.ws66{word-spacing:-8.363858pt;}
.wsc{word-spacing:-8.347330pt;}
.ws36{word-spacing:-8.261825pt;}
.ws9b{word-spacing:-8.203643pt;}
.wse{word-spacing:-8.182615pt;}
.ws5c{word-spacing:-8.172575pt;}
.wsc7{word-spacing:-8.145461pt;}
.ws2{word-spacing:-8.134795pt;}
.wsa{word-spacing:-7.922260pt;}
.ws23{word-spacing:-7.916946pt;}
.wsb3{word-spacing:-7.912734pt;}
.wsa3{word-spacing:-7.802188pt;}
.ws3a{word-spacing:-7.738188pt;}
.ws15{word-spacing:-7.704411pt;}
.ws67{word-spacing:-7.684803pt;}
.ws69{word-spacing:-7.621825pt;}
.wsc8{word-spacing:-7.569461pt;}
.ws87{word-spacing:-7.563643pt;}
.ws68{word-spacing:-7.541340pt;}
.ws4b{word-spacing:-7.505461pt;}
.ws9c{word-spacing:-7.447279pt;}
.wsb2{word-spacing:-7.336733pt;}
.wsa9{word-spacing:-7.330915pt;}
.ws9f{word-spacing:-7.272733pt;}
.wsa1{word-spacing:-7.214551pt;}
.ws11{word-spacing:-7.013670pt;}
.ws5b{word-spacing:-6.981824pt;}
.ws22{word-spacing:-6.907403pt;}
.wsaa{word-spacing:-6.754915pt;}
.wsa0{word-spacing:-6.696733pt;}
.ws6a{word-spacing:-6.574551pt;}
.ws4c{word-spacing:-6.516369pt;}
.ws27{word-spacing:-6.376064pt;}
.ws10{word-spacing:-6.110395pt;}
.wsa7{word-spacing:-6.050914pt;}
.ws3b{word-spacing:-5.934550pt;}
.wsa8{word-spacing:-5.649459pt;}
.ws99{word-spacing:-5.643641pt;}
.ws85{word-spacing:-5.527277pt;}
.ws21{word-spacing:-5.366521pt;}
.ws37{word-spacing:-5.352732pt;}
.ws79{word-spacing:-5.120004pt;}
.wsa5{word-spacing:-5.061822pt;}
.ws86{word-spacing:-4.829095pt;}
.wsa6{word-spacing:-4.718549pt;}
.ws48{word-spacing:-4.654549pt;}
.ws38{word-spacing:-4.305458pt;}
.ws28{word-spacing:-4.303843pt;}
.ws88{word-spacing:-3.956367pt;}
.ws98{word-spacing:-3.840003pt;}
.ws8a{word-spacing:-3.723639pt;}
.ws54{word-spacing:-3.316366pt;}
.ws6b{word-spacing:-3.258185pt;}
.ws8e{word-spacing:-3.025457pt;}
.ws55{word-spacing:-2.850911pt;}
.wsae{word-spacing:-2.792730pt;}
.wsad{word-spacing:-2.565820pt;}
.ws4a{word-spacing:-2.560002pt;}
.wsc2{word-spacing:-1.163637pt;}
.wsc3{word-spacing:-1.111274pt;}
.wsac{word-spacing:-0.930910pt;}
.ws60{word-spacing:-0.058182pt;}
.ws29{word-spacing:0.000000pt;}
.wsc1{word-spacing:3.717821pt;}
.wsc0{word-spacing:4.130913pt;}
.wsbe{word-spacing:8.023279pt;}
.wsbf{word-spacing:8.727280pt;}
.wsbd{word-spacing:8.785462pt;}
.ws8d{word-spacing:9.425462pt;}
.ws74{word-spacing:11.520010pt;}
.ws78{word-spacing:14.487285pt;}
.ws1{word-spacing:20.722347pt;}
.ws8f{word-spacing:49.570950pt;}
.ws8c{word-spacing:381.402048pt;}
._3{margin-left:-5.164646pt;}
._b{margin-left:-3.995644pt;}
._1{margin-left:-2.846279pt;}
._2{margin-left:-1.721549pt;}
._4{width:1.721549pt;}
._0{width:2.846279pt;}
._1b{width:4.189094pt;}
._26{width:5.203567pt;}
._1c{width:7.098188pt;}
._17{width:14.836376pt;}
._11{width:16.732470pt;}
._6{width:17.874244pt;}
._22{width:18.779203pt;}
._5{width:19.787063pt;}
._8{width:21.336865pt;}
._d{width:22.390623pt;}
._9{width:23.378901pt;}
._7{width:24.949968pt;}
._12{width:25.877391pt;}
._19{width:26.769394pt;}
._1f{width:27.845207pt;}
._1d{width:29.053486pt;}
._c{width:30.764509pt;}
._25{width:31.880533pt;}
._a{width:32.804861pt;}
._e{width:34.262367pt;}
._1e{width:36.554315pt;}
._10{width:38.256533pt;}
._13{width:39.666179pt;}
._1a{width:40.674860pt;}
._14{width:43.006767pt;}
._20{width:51.398495pt;}
._21{width:55.947049pt;}
._18{width:57.756422pt;}
._16{width:59.287322pt;}
._15{width:71.731200pt;}
._f{width:86.077200pt;}
._23{width:88.288257pt;}
._24{width:173.127786pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{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;}
.y20{bottom:56.149333pt;}
.y75{bottom:96.022667pt;}
.y5f{bottom:101.101333pt;}
.y10b{bottom:108.973333pt;}
.y74{bottom:110.634667pt;}
.y73{bottom:125.245333pt;}
.y10a{bottom:129.748000pt;}
.y72{bottom:139.857333pt;}
.y71{bottom:144.936000pt;}
.yb9{bottom:158.517333pt;}
.y109{bottom:162.478667pt;}
.yb8{bottom:179.293333pt;}
.y108{bottom:183.254667pt;}
.y107{bottom:204.029333pt;}
.yb7{bottom:207.300000pt;}
.yb6{bottom:228.074667pt;}
.yda{bottom:231.574667pt;}
.y106{bottom:236.760000pt;}
.yb5{bottom:248.850667pt;}
.yd9{bottom:252.349333pt;}
.y105{bottom:257.534667pt;}
.yb4{bottom:269.625333pt;}
.y1f{bottom:272.952000pt;}
.yd8{bottom:273.125333pt;}
.y104{bottom:290.265333pt;}
.yb3{bottom:290.401333pt;}
.y1e{bottom:291.284000pt;}
.yd7{bottom:301.132000pt;}
.y1d{bottom:309.614667pt;}
.y103{bottom:311.041333pt;}
.yd6{bottom:321.906667pt;}
.y1c{bottom:327.945333pt;}
.y5e{bottom:330.057333pt;}
.y102{bottom:331.816000pt;}
.yb2{bottom:334.348000pt;}
.y1b{bottom:346.277333pt;}
.y5d{bottom:350.832000pt;}
.yd5{bottom:353.550667pt;}
.yb1{bottom:355.124000pt;}
.y101{bottom:364.546667pt;}
.y1a{bottom:364.608000pt;}
.y5c{bottom:371.608000pt;}
.y70{bottom:373.797333pt;}
.yd4{bottom:374.325333pt;}
.yb0{bottom:375.898667pt;}
.y19{bottom:382.940000pt;}
.y100{bottom:385.322667pt;}
.y5b{bottom:392.382667pt;}
.yaf{bottom:396.674667pt;}
.y18{bottom:401.270667pt;}
.y6f{bottom:401.804000pt;}
.yd3{bottom:402.332000pt;}
.y5a{bottom:413.158667pt;}
.yff{bottom:418.052000pt;}
.y17{bottom:419.601333pt;}
.y6e{bottom:422.578667pt;}
.yd2{bottom:423.108000pt;}
.yae{bottom:429.404000pt;}
.y16{bottom:437.933333pt;}
.yfe{bottom:438.828000pt;}
.y6d{bottom:443.354667pt;}
.yad{bottom:450.180000pt;}
.y15{bottom:456.264000pt;}
.y59{bottom:457.105333pt;}
.yd1{bottom:460.508000pt;}
.ye8{bottom:466.748000pt;}
.yac{bottom:470.954667pt;}
.y6c{bottom:471.361333pt;}
.yfd{bottom:471.558667pt;}
.y14{bottom:474.594667pt;}
.y58{bottom:477.881333pt;}
.yab{bottom:491.730667pt;}
.y6b{bottom:492.136000pt;}
.yfc{bottom:492.333333pt;}
.y13{bottom:492.926667pt;}
.y57{bottom:498.656000pt;}
.y9d{bottom:501.129333pt;}
.ye7{bottom:509.300000pt;}
.yd0{bottom:509.478667pt;}
.y12{bottom:511.257333pt;}
.y37{bottom:512.030667pt;}
.yfb{bottom:513.109333pt;}
.y56{bottom:519.432000pt;}
.y9c{bottom:521.905333pt;}
.yaa{bottom:524.461333pt;}
.y11{bottom:529.589333pt;}
.ye6{bottom:530.074667pt;}
.ycf{bottom:530.254667pt;}
.y36{bottom:532.806667pt;}
.y6a{bottom:534.689333pt;}
.y55{bottom:540.206667pt;}
.y9b{bottom:542.680000pt;}
.ya9{bottom:545.236000pt;}
.yfa{bottom:545.840000pt;}
.y10{bottom:547.920000pt;}
.ye5{bottom:550.850667pt;}
.yce{bottom:551.029333pt;}
.y35{bottom:553.581333pt;}
.y54{bottom:560.982667pt;}
.ya8{bottom:566.012000pt;}
.yf{bottom:566.250667pt;}
.yf9{bottom:566.614667pt;}
.ycd{bottom:571.805333pt;}
.y34{bottom:574.357333pt;}
.y69{bottom:578.636000pt;}
.ye4{bottom:578.857333pt;}
.y9a{bottom:581.986667pt;}
.y85{bottom:583.861333pt;}
.ye{bottom:584.582667pt;}
.yf8{bottom:587.390667pt;}
.ycc{bottom:592.580000pt;}
.y53{bottom:593.712000pt;}
.y33{bottom:595.132000pt;}
.ya7{bottom:598.742667pt;}
.ye3{bottom:599.632000pt;}
.yd{bottom:602.913333pt;}
.y84{bottom:604.636000pt;}
.y68{bottom:611.366667pt;}
.ycb{bottom:613.356000pt;}
.y99{bottom:614.409333pt;}
.y52{bottom:614.488000pt;}
.y32{bottom:615.908000pt;}
.ya6{bottom:619.517333pt;}
.yf7{bottom:620.121333pt;}
.ye2{bottom:620.408000pt;}
.yc{bottom:621.244000pt;}
.y98{bottom:632.474667pt;}
.yca{bottom:634.130667pt;}
.y51{bottom:635.262667pt;}
.y31{bottom:636.682667pt;}
.y83{bottom:637.366667pt;}
.yb{bottom:639.576000pt;}
.yf6{bottom:640.896000pt;}
.y67{bottom:644.097333pt;}
.ye1{bottom:648.414667pt;}
.ya5{bottom:652.248000pt;}
.y97{bottom:652.878667pt;}
.y30{bottom:657.458667pt;}
.ya{bottom:657.906667pt;}
.y82{bottom:658.142667pt;}
.yf5{bottom:661.672000pt;}
.y50{bottom:667.993333pt;}
.ye0{bottom:669.189333pt;}
.y96{bottom:670.944000pt;}
.yc9{bottom:671.532000pt;}
.ya4{bottom:673.022667pt;}
.y9{bottom:676.237333pt;}
.y66{bottom:676.826667pt;}
.y2f{bottom:678.233333pt;}
.y4f{bottom:688.769333pt;}
.ydf{bottom:689.965333pt;}
.y81{bottom:690.873333pt;}
.y95{bottom:691.348000pt;}
.ya3{bottom:693.798667pt;}
.yf4{bottom:694.401333pt;}
.y8{bottom:694.569333pt;}
.y2e{bottom:706.240000pt;}
.y94{bottom:709.413333pt;}
.y4e{bottom:709.544000pt;}
.y65{bottom:709.557333pt;}
.yde{bottom:710.740000pt;}
.y80{bottom:711.648000pt;}
.yf3{bottom:715.177333pt;}
.yc8{bottom:718.130667pt;}
.y111{bottom:723.604000pt;}
.y7{bottom:724.449333pt;}
.y2d{bottom:727.016000pt;}
.y93{bottom:729.817333pt;}
.ydd{bottom:731.516000pt;}
.yf2{bottom:735.952000pt;}
.y4d{bottom:736.297333pt;}
.ya2{bottom:737.745333pt;}
.y42{bottom:739.169333pt;}
.y64{bottom:742.288000pt;}
.y7f{bottom:744.378667pt;}
.y2c{bottom:747.790667pt;}
.y92{bottom:747.882667pt;}
.yc7{bottom:751.094667pt;}
.ydc{bottom:752.290667pt;}
.y4c{bottom:757.072000pt;}
.y41{bottom:759.944000pt;}
.y7e{bottom:765.154667pt;}
.y91{bottom:768.286667pt;}
.y2b{bottom:768.566667pt;}
.yf1{bottom:768.682667pt;}
.yc6{bottom:769.160000pt;}
.y63{bottom:775.018667pt;}
.y110{bottom:777.109333pt;}
.y4b{bottom:777.848000pt;}
.ya1{bottom:780.297333pt;}
.y40{bottom:780.720000pt;}
.y6{bottom:781.892000pt;}
.y90{bottom:786.352000pt;}
.y2a{bottom:789.341333pt;}
.yf0{bottom:789.458667pt;}
.yc5{bottom:791.370667pt;}
.y7d{bottom:797.884000pt;}
.ya0{bottom:801.073333pt;}
.y3f{bottom:801.494667pt;}
.y8f{bottom:806.756000pt;}
.y62{bottom:807.749333pt;}
.yc4{bottom:809.436000pt;}
.yef{bottom:810.233333pt;}
.y4a{bottom:810.578667pt;}
.y29{bottom:817.348000pt;}
.y7c{bottom:818.660000pt;}
.y9f{bottom:821.848000pt;}
.y5{bottom:822.393333pt;}
.y8e{bottom:824.821333pt;}
.y10f{bottom:830.614667pt;}
.y49{bottom:831.353333pt;}
.yc3{bottom:831.645333pt;}
.y28{bottom:838.124000pt;}
.y61{bottom:840.480000pt;}
.y9e{bottom:842.624000pt;}
.yee{bottom:842.964000pt;}
.y4{bottom:843.780000pt;}
.y8d{bottom:845.224000pt;}
.yc2{bottom:849.710667pt;}
.y3e{bottom:849.854667pt;}
.y7b{bottom:851.390667pt;}
.y48{bottom:852.129333pt;}
.y27{bottom:858.898667pt;}
.y8c{bottom:863.290667pt;}
.ydb{bottom:863.398667pt;}
.yed{bottom:863.740000pt;}
.y3{bottom:865.166667pt;}
.y3d{bottom:870.630667pt;}
.yc1{bottom:871.921333pt;}
.y7a{bottom:872.165333pt;}
.y26{bottom:879.674667pt;}
.y8b{bottom:883.693333pt;}
.y10e{bottom:884.121333pt;}
.yec{bottom:884.514667pt;}
.y47{bottom:884.860000pt;}
.yc0{bottom:889.986667pt;}
.y3c{bottom:891.405333pt;}
.y25{bottom:900.449333pt;}
.y8a{bottom:901.758667pt;}
.y79{bottom:904.896000pt;}
.y46{bottom:905.634667pt;}
.y60{bottom:911.180000pt;}
.y3b{bottom:912.181333pt;}
.ybf{bottom:912.197333pt;}
.y2{bottom:915.602667pt;}
.yeb{bottom:917.245333pt;}
.y24{bottom:921.225333pt;}
.y89{bottom:922.162667pt;}
.y78{bottom:925.672000pt;}
.y45{bottom:926.410667pt;}
.ybe{bottom:930.262667pt;}
.y3a{bottom:932.956000pt;}
.y10d{bottom:937.626667pt;}
.yea{bottom:938.020000pt;}
.y88{bottom:940.228000pt;}
.y23{bottom:942.000000pt;}
.y44{bottom:947.185333pt;}
.y1{bottom:949.209333pt;}
.ybd{bottom:952.472000pt;}
.y39{bottom:953.732000pt;}
.y10c{bottom:958.401333pt;}
.y77{bottom:958.402667pt;}
.y87{bottom:960.632000pt;}
.ybc{bottom:970.537333pt;}
.ye9{bottom:970.750667pt;}
.y38{bottom:974.506667pt;}
.y86{bottom:978.697333pt;}
.y76{bottom:979.177333pt;}
.y22{bottom:984.410667pt;}
.y43{bottom:991.132000pt;}
.ybb{bottom:992.748000pt;}
.yba{bottom:1010.813333pt;}
.y21{bottom:1011.908000pt;}
.hb{height:21.200555pt;}
.hc{height:35.865600pt;}
.h5{height:38.043849pt;}
.h4{height:39.850400pt;}
.ha{height:41.658217pt;}
.h6{height:43.636400pt;}
.h3{height:44.887791pt;}
.h8{height:47.820800pt;}
.h9{height:49.381955pt;}
.h7{height:57.384800pt;}
.h2{height:68.861600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:72.746667pt;}
.x10{left:94.216000pt;}
.xe{left:96.000000pt;}
.x1{left:104.545333pt;}
.x16{left:112.582667pt;}
.x11{left:113.777333pt;}
.x18{left:117.674667pt;}
.x30{left:118.626667pt;}
.x31{left:125.898667pt;}
.xf{left:128.278667pt;}
.xa{left:130.809333pt;}
.x9{left:132.364000pt;}
.x17{left:136.846667pt;}
.x8{left:152.289333pt;}
.x1a{left:159.096000pt;}
.x21{left:167.288000pt;}
.x24{left:204.913333pt;}
.x26{left:210.974667pt;}
.x1c{left:214.426667pt;}
.x4{left:238.756000pt;}
.xb{left:242.964000pt;}
.xc{left:252.093333pt;}
.x25{left:272.561333pt;}
.x1b{left:275.549333pt;}
.x2b{left:279.814667pt;}
.x2c{left:308.544000pt;}
.x2{left:323.448000pt;}
.x3{left:324.773333pt;}
.x6{left:338.732000pt;}
.x27{left:355.560000pt;}
.x5{left:357.313333pt;}
.x7{left:367.833333pt;}
.x1d{left:369.565333pt;}
.x32{left:374.534667pt;}
.x28{left:382.068000pt;}
.x33{left:384.532000pt;}
.x2f{left:389.577333pt;}
.xd{left:393.214667pt;}
.x22{left:404.132000pt;}
.x1e{left:428.652000pt;}
.x1f{left:444.092000pt;}
.x12{left:473.862667pt;}
.x2d{left:484.310667pt;}
.x34{left:515.225333pt;}
.x20{left:523.362667pt;}
.x35{left:525.221333pt;}
.x13{left:532.942667pt;}
.x23{left:539.484000pt;}
.x2e{left:543.368000pt;}
.x14{left:548.069333pt;}
.x29{left:563.744000pt;}
.x2a{left:593.872000pt;}
.x15{left:617.105333pt;}
}




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