
    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_37869367dea82dc244b1eebd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c739d7edc4f1a65110e551af.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_159fc1050c3379915efa6682.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_6531440bd73999a3ae07d271.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_27d1acff1d449788a69a9a60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_44465618557ee47139ec9e55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c0482c1be3aa5bf3f40fc89f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859000;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_f3687c0459442f63be33a747.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.874000;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_869057cc02a64ef6f99a0a85.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_dae38ea0bdd06d542ce20130.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_24567ca93961460d3fd06eed.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fc1e07ad8b86c45f50bab41a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7fee48561c1e76919c1ddb2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694000;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_8effd1ab7845c80936ffacb3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_70a508425b4ad4b8b82cb4ef.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;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_9945b2f276323c8595403cbe.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b9540df949a6553271140121.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704000;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_c0482c1be3aa5bf3f40fc89f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.859000;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_d7657bd449fa870f85829cd7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_29c52daccc173fe5413e4db0.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_7a0b66279ad08517cdf24d1d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.726000;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:ff16;src:url('chunks/assets/font_869057cc02a64ef6f99a0a85.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.684000;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:ff17;src:url('chunks/assets/font_6a41f7b240bcf025e21917be.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.mb{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);}
.m10{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);}
.m5{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.me{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);}
.m4{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);}
.m14{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);}
.m17{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);}
.m12{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);}
.m13{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);}
.m15{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);}
.m2{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);}
.m18{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);}
.m7{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);}
.ma{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);}
.mc{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);}
.mf{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);}
.m8{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);}
.md{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);}
.m16{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);}
.m11{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.854000px;}
.v2{vertical-align:-12.912000px;}
.v4{vertical-align:-9.816000px;}
.ve{vertical-align:-6.892420px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.v6{vertical-align:9.816000px;}
.vd{vertical-align:14.778000px;}
.vc{vertical-align:16.182000px;}
.vb{vertical-align:23.754000px;}
.v5{vertical-align:27.030000px;}
.v9{vertical-align:35.082000px;}
.v7{vertical-align:44.280000px;}
.v8{vertical-align:68.034000px;}
.va{vertical-align:89.178000px;}
.ls3{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.000396px;}
.ls34{letter-spacing:0.000544px;}
.lsb{letter-spacing:0.001590px;}
.ls2b{letter-spacing:0.001597px;}
.ls49{letter-spacing:0.003269px;}
.ls20{letter-spacing:0.004338px;}
.ls37{letter-spacing:0.004379px;}
.ls32{letter-spacing:0.004631px;}
.ls29{letter-spacing:0.005429px;}
.ls48{letter-spacing:0.005556px;}
.ls42{letter-spacing:0.006682px;}
.ls39{letter-spacing:0.007051px;}
.ls54{letter-spacing:0.008396px;}
.ls9{letter-spacing:0.008843px;}
.ls57{letter-spacing:0.011618px;}
.ls4c{letter-spacing:0.011934px;}
.ls46{letter-spacing:0.014421px;}
.ls44{letter-spacing:0.020782px;}
.ls3f{letter-spacing:0.030259px;}
.ls38{letter-spacing:0.298878px;}
.ls17{letter-spacing:2.290911px;}
.ls59{letter-spacing:2.297946px;}
.ls58{letter-spacing:2.298019px;}
.ls52{letter-spacing:2.301203px;}
.lsf{letter-spacing:2.356366px;}
.lsd{letter-spacing:2.984915px;}
.lse{letter-spacing:2.986059px;}
.ls15{letter-spacing:2.987971px;}
.ls3e{letter-spacing:2.989739px;}
.ls11{letter-spacing:2.992059px;}
.ls16{letter-spacing:3.861821px;}
.ls36{letter-spacing:5.075095px;}
.ls3a{letter-spacing:5.081095px;}
.ls23{letter-spacing:5.105459px;}
.ls1d{letter-spacing:5.544130px;}
.ls1a{letter-spacing:5.550130px;}
.ls3c{letter-spacing:6.235481px;}
.ls2e{letter-spacing:6.719578px;}
.ls50{letter-spacing:10.203444px;}
.ls1b{letter-spacing:10.930918px;}
.ls4f{letter-spacing:12.510282px;}
.ls4e{letter-spacing:12.777286px;}
.ls26{letter-spacing:14.530921px;}
.ls4d{letter-spacing:16.385413px;}
.ls1f{letter-spacing:16.458130px;}
.ls27{letter-spacing:17.528915px;}
.ls2c{letter-spacing:17.534915px;}
.ls4b{letter-spacing:17.617315px;}
.ls21{letter-spacing:18.130924px;}
.ls6{letter-spacing:18.196379px;}
.ls7{letter-spacing:18.458197px;}
.ls56{letter-spacing:19.227956px;}
.ls3b{letter-spacing:19.590710px;}
.ls35{letter-spacing:19.596710px;}
.ls4a{letter-spacing:19.905275px;}
.ls25{letter-spacing:20.094130px;}
.ls41{letter-spacing:20.487290px;}
.ls10{letter-spacing:20.552744px;}
.ls51{letter-spacing:20.685226px;}
.ls14{letter-spacing:21.166059px;}
.ls1e{letter-spacing:21.169739px;}
.lsc{letter-spacing:21.172059px;}
.ls24{letter-spacing:21.175739px;}
.ls4{letter-spacing:21.419468px;}
.ls28{letter-spacing:21.719412px;}
.ls19{letter-spacing:21.796382px;}
.ls12{letter-spacing:21.861836px;}
.ls13{letter-spacing:21.992746px;}
.ls2d{letter-spacing:22.445644px;}
.ls18{letter-spacing:24.152747px;}
.ls31{letter-spacing:24.800915px;}
.ls8{letter-spacing:24.802059px;}
.lsa{letter-spacing:24.808059px;}
.ls33{letter-spacing:26.081644px;}
.ls5{letter-spacing:27.949114px;}
.ls43{letter-spacing:29.912752px;}
.ls3d{letter-spacing:30.829117px;}
.ls2a{letter-spacing:31.256700px;}
.ls2{letter-spacing:33.839194px;}
.ls30{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls40{letter-spacing:68.438915px;}
.ls45{letter-spacing:181.284615px;}
.ls47{letter-spacing:183.377095px;}
.ls53{letter-spacing:186.781467px;}
.ls5a{letter-spacing:307.390237px;}
.ls2f{letter-spacing:325.636635px;}
.ls0{letter-spacing:345.347589px;}
.ls22{letter-spacing:750.567898px;}
.ls1c{letter-spacing:888.742559px;}
.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;}
}
.ws36{word-spacing:-65.454600px;}
.ws41{word-spacing:-54.589136px;}
.ws32{word-spacing:-42.637126px;}
.ws44{word-spacing:-38.937826px;}
.ws35{word-spacing:-36.379667px;}
.ws52{word-spacing:-33.453846px;}
.ws37{word-spacing:-32.727300px;}
.ws40{word-spacing:-31.706208px;}
.ws73{word-spacing:-30.551309px;}
.ws64{word-spacing:-29.939294px;}
.ws5d{word-spacing:-29.887800px;}
.ws4f{word-spacing:-29.127297px;}
.ws47{word-spacing:-29.015076px;}
.ws46{word-spacing:-28.955301px;}
.ws19{word-spacing:-27.646998px;}
.ws3e{word-spacing:-24.440748px;}
.ws30{word-spacing:-18.183288px;}
.ws59{word-spacing:-16.625468px;}
.ws55{word-spacing:-15.054558px;}
.ws56{word-spacing:-14.989103px;}
.ws57{word-spacing:-14.923649px;}
.wse{word-spacing:-14.286368px;}
.ws69{word-spacing:-14.072739px;}
.ws58{word-spacing:-13.483648px;}
.ws53{word-spacing:-12.960011px;}
.ws65{word-spacing:-12.768093px;}
.ws4e{word-spacing:-12.501829px;}
.wsf{word-spacing:-12.253998px;}
.ws5f{word-spacing:-12.109101px;}
.ws12{word-spacing:-11.835569px;}
.ws5e{word-spacing:-11.716018px;}
.ws23{word-spacing:-11.650919px;}
.ws1b{word-spacing:-11.476915px;}
.ws4d{word-spacing:-11.461100px;}
.ws2b{word-spacing:-11.389100px;}
.ws60{word-spacing:-11.323646px;}
.ws33{word-spacing:-11.258191px;}
.ws22{word-spacing:-11.192737px;}
.ws2a{word-spacing:-11.127282px;}
.ws1f{word-spacing:-11.061827px;}
.ws5c{word-spacing:-10.996373px;}
.ws16{word-spacing:-10.930918px;}
.ws17{word-spacing:-10.865464px;}
.ws13{word-spacing:-10.819384px;}
.ws3f{word-spacing:-10.800009px;}
.ws54{word-spacing:-10.734554px;}
.ws3b{word-spacing:-10.669100px;}
.ws2c{word-spacing:-10.603645px;}
.ws1d{word-spacing:-10.472736px;}
.ws39{word-spacing:-10.348372px;}
.ws70{word-spacing:-10.341179px;}
.wsc{word-spacing:-10.221628px;}
.ws2f{word-spacing:-10.145463px;}
.wsb{word-spacing:-10.102076px;}
.ws50{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws51{word-spacing:-9.955645px;}
.ws25{word-spacing:-9.949099px;}
.ws6c{word-spacing:-9.862974px;}
.ws4b{word-spacing:-9.818190px;}
.ws5b{word-spacing:-9.752735px;}
.ws10{word-spacing:-9.743423px;}
.ws11{word-spacing:-9.623872px;}
.ws20{word-spacing:-9.301099px;}
.ws5{word-spacing:-9.247945px;}
.ws24{word-spacing:-9.235644px;}
.ws6f{word-spacing:-9.211420px;}
.ws6{word-spacing:-9.194147px;}
.ws6e{word-spacing:-9.151644px;}
.ws6d{word-spacing:-9.091869px;}
.ws4a{word-spacing:-8.770916px;}
.ws4c{word-spacing:-8.574553px;}
.ws26{word-spacing:-8.116370px;}
.ws2e{word-spacing:-7.861097px;}
.ws63{word-spacing:-7.675564px;}
.ws67{word-spacing:-7.592734px;}
.ws27{word-spacing:-7.468370px;}
.ws62{word-spacing:-7.396370px;}
.ws61{word-spacing:-7.330915px;}
.ws1c{word-spacing:-7.069097px;}
.ws3a{word-spacing:-6.741824px;}
.ws6b{word-spacing:-6.283642px;}
.ws18{word-spacing:-5.825459px;}
.wsd{word-spacing:-5.798233px;}
.ws2d{word-spacing:-5.635641px;}
.ws1e{word-spacing:-5.432732px;}
.wsa{word-spacing:-5.027128px;}
.ws28{word-spacing:-4.843640px;}
.ws29{word-spacing:-4.778186px;}
.ws68{word-spacing:-4.712731px;}
.ws5a{word-spacing:-4.516367px;}
.ws49{word-spacing:-4.254549px;}
.ws71{word-spacing:-3.825638px;}
.ws15{word-spacing:-3.600003px;}
.ws72{word-spacing:-3.532738px;}
.ws66{word-spacing:-3.207275px;}
.ws43{word-spacing:-2.749093px;}
.ws21{word-spacing:-1.898183px;}
.ws2{word-spacing:-0.086077px;}
.ws34{word-spacing:-0.065455px;}
.ws38{word-spacing:-0.052364px;}
.ws7{word-spacing:0.000000px;}
.ws45{word-spacing:0.011955px;}
.ws31{word-spacing:0.013091px;}
.ws8{word-spacing:2.683639px;}
.ws14{word-spacing:6.414551px;}
.ws3d{word-spacing:6.667496px;}
.ws9{word-spacing:11.429123px;}
.ws3c{word-spacing:17.578552px;}
.ws6a{word-spacing:21.730927px;}
.ws1{word-spacing:23.384371px;}
.ws3{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws48{word-spacing:34.370970px;}
.ws42{word-spacing:99.137537px;}
.ws1a{word-spacing:2310.948812px;}
._1{margin-left:-5.881958px;}
._6{margin-left:-4.507133px;}
._5{margin-left:-2.952946px;}
._3{margin-left:-1.673717px;}
._2{width:1.205092px;}
._0{width:2.668393px;}
._22{width:4.942679px;}
._2a{width:17.460581px;}
._8{width:18.759959px;}
._9{width:20.962076px;}
._17{width:22.814959px;}
._4{width:24.585869px;}
._7{width:26.576356px;}
._2e{width:27.795654px;}
._1f{width:28.800024px;}
._d{width:30.080419px;}
._b{width:33.026470px;}
._23{width:36.824031px;}
._29{width:39.343009px;}
._1d{width:41.170943px;}
._2d{width:43.527309px;}
._1e{width:46.754276px;}
._28{width:49.151904px;}
._a{width:52.894805px;}
._20{width:65.060126px;}
._1c{width:68.741940px;}
._2c{width:92.428494px;}
._21{width:141.820796px;}
._25{width:171.363423px;}
._24{width:178.295786px;}
._2b{width:258.946859px;}
._26{width:325.545013px;}
._27{width:572.659590px;}
._14{width:986.293813px;}
._19{width:1106.917986px;}
._18{width:1158.611875px;}
._12{width:1179.767168px;}
._f{width:1266.586850px;}
._e{width:1370.459146px;}
._16{width:1513.789480px;}
._1a{width:1523.229560px;}
._15{width:1744.585354px;}
._10{width:1775.623692px;}
._1b{width:1825.330642px;}
._11{width:1901.034706px;}
._c{width:1972.236453px;}
._13{width:2149.542393px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:32.172929px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs8{font-size:45.961459px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y46{bottom:160.314000px;}
.y2c{bottom:173.425500px;}
.y78{bottom:190.464000px;}
.y92{bottom:190.800000px;}
.yaa{bottom:191.584500px;}
.y60{bottom:200.184000px;}
.y2b{bottom:201.123000px;}
.y45{bottom:212.359500px;}
.y77{bottom:217.363500px;}
.ya9{bottom:218.484000px;}
.y91{bottom:221.286000px;}
.y5f{bottom:230.670000px;}
.y2a{bottom:231.609000px;}
.y44{bottom:244.551000px;}
.yc2{bottom:248.641500px;}
.y5e{bottom:261.156000px;}
.y29{bottom:262.095000px;}
.y90{bottom:263.938500px;}
.y74{bottom:264.187500px;}
.ya6{bottom:268.512000px;}
.y73{bottom:270.165000px;}
.y43{bottom:275.037000px;}
.y72{bottom:276.142500px;}
.yd{bottom:279.648000px;}
.yc1{bottom:280.260000px;}
.y8f{bottom:294.424500px;}
.ya8{bottom:294.895500px;}
.ya5{bottom:295.411500px;}
.y42{bottom:305.523000px;}
.yc{bottom:307.294500px;}
.y28{bottom:308.944500px;}
.yd9{bottom:309.006000px;}
.yc0{bottom:310.746000px;}
.y5d{bottom:312.901500px;}
.ya7{bottom:321.795000px;}
.y8e{bottom:324.910500px;}
.yb{bottom:334.941000px;}
.yd8{bottom:335.905500px;}
.y27{bottom:339.430500px;}
.y71{bottom:339.807000px;}
.ybf{bottom:341.230500px;}
.y70{bottom:343.501500px;}
.y8d{bottom:355.396500px;}
.y41{bottom:358.975500px;}
.ya{bottom:362.586000px;}
.yd7{bottom:362.805000px;}
.y26{bottom:369.915000px;}
.y5c{bottom:372.708000px;}
.ya2{bottom:379.570500px;}
.yd6{bottom:389.703000px;}
.y9{bottom:390.232500px;}
.ybe{bottom:394.108500px;}
.y8c{bottom:398.049000px;}
.y76{bottom:400.249500px;}
.y25{bottom:400.401000px;}
.y5b{bottom:403.194000px;}
.y6f{bottom:413.658000px;}
.yd5{bottom:416.602500px;}
.y75{bottom:427.149000px;}
.y8b{bottom:428.535000px;}
.y40{bottom:429.645000px;}
.y24{bottom:430.887000px;}
.y5a{bottom:443.064000px;}
.yd4{bottom:443.502000px;}
.y8a{bottom:456.567000px;}
.y89{bottom:459.021000px;}
.y3f{bottom:460.131000px;}
.ybd{bottom:461.496000px;}
.ya4{bottom:463.729500px;}
.yd3{bottom:470.401500px;}
.y23{bottom:477.736500px;}
.y6e{bottom:481.680000px;}
.y59{bottom:482.934000px;}
.y3e{bottom:490.615500px;}
.ya3{bottom:490.627500px;}
.ybc{bottom:491.982000px;}
.yd2{bottom:497.299500px;}
.y88{bottom:501.675000px;}
.y58{bottom:513.420000px;}
.ybb{bottom:522.468000px;}
.y3d{bottom:522.808500px;}
.yd1{bottom:524.199000px;}
.y22{bottom:524.586000px;}
.y8{bottom:531.609000px;}
.y87{bottom:532.159500px;}
.ya1{bottom:536.245500px;}
.y6d{bottom:548.209500px;}
.y57{bottom:553.290000px;}
.y3c{bottom:553.294500px;}
.ya0{bottom:566.730000px;}
.y21{bottom:576.331500px;}
.yba{bottom:581.118000px;}
.y3b{bottom:583.780500px;}
.y86{bottom:583.905000px;}
.y7{bottom:584.020500px;}
.y6c{bottom:592.249500px;}
.y56{bottom:593.160000px;}
.y9f{bottom:598.701000px;}
.y6{bottom:610.920000px;}
.y3a{bottom:614.266500px;}
.yb9{bottom:614.516450px;}
.yd0{bottom:618.346500px;}
.y6b{bottom:622.735500px;}
.y9e{bottom:629.187000px;}
.yb8{bottom:635.199476px;}
.y20{bottom:636.129000px;}
.y5{bottom:637.818000px;}
.y85{bottom:644.385000px;}
.y55{bottom:644.905500px;}
.y39{bottom:646.458000px;}
.ycf{bottom:648.832500px;}
.yb7{bottom:655.881348px;}
.y9d{bottom:659.673000px;}
.y1f{bottom:666.615000px;}
.y6a{bottom:673.722000px;}
.y84{bottom:674.869500px;}
.y38{bottom:676.944000px;}
.yb6{bottom:677.024560px;}
.yce{bottom:679.317000px;}
.y54{bottom:704.712000px;}
.y37{bottom:707.430000px;}
.ycd{bottom:709.803000px;}
.y9c{bottom:712.903500px;}
.y83{bottom:719.017500px;}
.yb5{bottom:720.595500px;}
.y1e{bottom:724.000500px;}
.y69{bottom:724.708500px;}
.y53{bottom:732.744000px;}
.y52{bottom:735.198000px;}
.y36{bottom:739.623000px;}
.ycc{bottom:740.289000px;}
.y1d{bottom:750.900000px;}
.yb4{bottom:751.081500px;}
.y82{bottom:763.165500px;}
.y35{bottom:770.109000px;}
.ycb{bottom:770.775000px;}
.y51{bottom:775.068000px;}
.y68{bottom:775.695000px;}
.y1c{bottom:777.798000px;}
.y9b{bottom:782.302500px;}
.yb3{bottom:782.700000px;}
.y4{bottom:788.899500px;}
.y81{bottom:791.197500px;}
.y80{bottom:793.651500px;}
.y34{bottom:800.593500px;}
.yca{bottom:801.261000px;}
.y1b{bottom:804.697500px;}
.y9a{bottom:812.788500px;}
.yb2{bottom:813.186000px;}
.y50{bottom:814.939500px;}
.y67{bottom:826.683000px;}
.y1a{bottom:831.597000px;}
.yc9{bottom:831.745500px;}
.y7f{bottom:836.305500px;}
.yb1{bottom:843.672000px;}
.y4f{bottom:845.424000px;}
.y33{bottom:854.046000px;}
.y66{bottom:857.167500px;}
.y19{bottom:858.496500px;}
.y99{bottom:865.642500px;}
.y7e{bottom:866.790000px;}
.yb0{bottom:874.156500px;}
.y4e{bottom:875.910000px;}
.yc8{bottom:881.659500px;}
.y18{bottom:885.394500px;}
.y64{bottom:897.313500px;}
.y4d{bottom:903.942000px;}
.y65{bottom:904.492500px;}
.y4c{bottom:906.396000px;}
.y63{bottom:908.538000px;}
.yc7{bottom:912.144000px;}
.y17{bottom:912.294000px;}
.y98{bottom:918.496500px;}
.y7d{bottom:918.535500px;}
.y32{bottom:924.715500px;}
.yaf{bottom:927.034500px;}
.y16{bottom:939.193500px;}
.y3{bottom:942.895500px;}
.yc6{bottom:957.574500px;}
.y4b{bottom:958.141500px;}
.y62{bottom:958.795500px;}
.y15{bottom:966.093000px;}
.y7c{bottom:966.694500px;}
.y97{bottom:971.350500px;}
.y2{bottom:974.277000px;}
.y31{bottom:974.979000px;}
.yc5{bottom:988.060500px;}
.y14{bottom:992.991000px;}
.yae{bottom:994.423500px;}
.y61{bottom:1011.652500px;}
.y4a{bottom:1017.948000px;}
.y13{bottom:1019.890500px;}
.y96{bottom:1024.204500px;}
.y30{bottom:1025.242500px;}
.yad{bottom:1026.040500px;}
.y7b{bottom:1027.174500px;}
.yc4{bottom:1033.489500px;}
.y1{bottom:1040.139000px;}
.y49{bottom:1048.434000px;}
.y95{bottom:1056.174000px;}
.yac{bottom:1056.526500px;}
.y7a{bottom:1057.659000px;}
.y12{bottom:1058.595000px;}
.yc3{bottom:1063.975500px;}
.y11{bottom:1064.019000px;}
.y2f{bottom:1075.506000px;}
.y48{bottom:1078.920000px;}
.y94{bottom:1084.206000px;}
.y93{bottom:1086.660000px;}
.yab{bottom:1087.012500px;}
.y79{bottom:1088.145000px;}
.yf{bottom:1090.725000px;}
.y10{bottom:1096.663500px;}
.y2e{bottom:1107.697500px;}
.y47{bottom:1109.404500px;}
.ye{bottom:1139.890500px;}
.y2d{bottom:1192.194000px;}
.hd{height:16.677504px;}
.ha{height:27.783619px;}
.hf{height:33.187496px;}
.h9{height:33.665702px;}
.h1d{height:34.471094px;}
.h1e{height:38.040266px;}
.h7{height:38.519654px;}
.hc{height:41.842920px;}
.h18{height:42.141798px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.he{height:45.425492px;}
.h1c{height:45.818220px;}
.h10{height:46.145493px;}
.h1b{height:46.865494px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.h19{height:54.183619px;}
.h11{height:58.830699px;}
.h12{height:58.906950px;}
.h1a{height:59.609700px;}
.h2{height:60.254040px;}
.h13{height:60.689702px;}
.h17{height:65.272950px;}
.h4{height:67.226503px;}
.h14{height:99.834699px;}
.h16{height:105.109496px;}
.h15{height:144.732699px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x11{left:108.000000px;}
.x16{left:110.739000px;}
.x14{left:114.363000px;}
.x13{left:120.727500px;}
.x5e{left:121.843500px;}
.x43{left:125.829000px;}
.x1a{left:130.416000px;}
.x68{left:131.563500px;}
.x69{left:132.741000px;}
.x15{left:138.133500px;}
.x18{left:139.270500px;}
.x67{left:152.242500px;}
.x10{left:158.809500px;}
.x51{left:160.057500px;}
.x31{left:161.373000px;}
.x1{left:164.901000px;}
.xf{left:173.754000px;}
.x65{left:176.638500px;}
.x24{left:182.574000px;}
.x39{left:200.664000px;}
.xd{left:214.422000px;}
.xe{left:221.125500px;}
.x1b{left:224.095500px;}
.x35{left:231.582000px;}
.xa{left:240.789000px;}
.x5d{left:250.641000px;}
.x40{left:253.165500px;}
.x52{left:255.367500px;}
.x58{left:257.175000px;}
.x34{left:261.012000px;}
.x3f{left:267.037500px;}
.x2{left:274.819500px;}
.x53{left:277.233000px;}
.x54{left:283.470000px;}
.x66{left:287.866500px;}
.x1c{left:292.123500px;}
.x3e{left:299.977500px;}
.x4d{left:303.702000px;}
.x55{left:305.184000px;}
.x41{left:307.992000px;}
.x3a{left:315.331500px;}
.x19{left:318.513000px;}
.x1d{left:319.639500px;}
.x6{left:329.793000px;}
.x44{left:333.888000px;}
.x3b{left:335.616000px;}
.x2d{left:338.250000px;}
.x3{left:343.095000px;}
.x28{left:352.981500px;}
.x30{left:354.688500px;}
.x2f{left:372.367500px;}
.x5{left:381.384000px;}
.xb{left:382.602000px;}
.x29{left:387.390000px;}
.x36{left:390.457500px;}
.x7{left:392.640000px;}
.x4{left:394.558500px;}
.x2a{left:396.535500px;}
.x2e{left:406.551000px;}
.x27{left:407.638500px;}
.x12{left:409.203000px;}
.x8{left:414.060000px;}
.x1e{left:428.257500px;}
.x64{left:432.591000px;}
.x2b{left:439.267500px;}
.x37{left:450.333000px;}
.x2c{left:455.904000px;}
.x63{left:465.766500px;}
.x49{left:468.904500px;}
.x32{left:470.277000px;}
.x42{left:488.080500px;}
.x4a{left:497.805000px;}
.x33{left:499.167000px;}
.xc{left:511.759500px;}
.x59{left:518.782500px;}
.x5a{left:540.498000px;}
.x5b{left:546.735000px;}
.x3c{left:554.482500px;}
.x5c{left:557.304000px;}
.x25{left:564.796500px;}
.x26{left:574.618500px;}
.x3d{left:579.301500px;}
.x56{left:597.232500px;}
.x57{left:616.408500px;}
.x62{left:619.477500px;}
.x60{left:630.499500px;}
.x38{left:632.680500px;}
.x1f{left:637.243500px;}
.x45{left:647.049000px;}
.x20{left:664.747500px;}
.x46{left:668.764500px;}
.x61{left:670.059000px;}
.x47{left:675.255000px;}
.x5f{left:678.465000px;}
.x48{left:688.042500px;}
.x21{left:699.453000px;}
.x4e{left:711.339000px;}
.x22{left:716.554500px;}
.x4b{left:723.307500px;}
.x4c{left:733.129500px;}
.x4f{left:739.404000px;}
.x23{left:744.057000px;}
.x50{left:751.870500px;}
.x17{left:799.195500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v2{vertical-align:-11.477333pt;}
.v4{vertical-align:-8.725333pt;}
.ve{vertical-align:-6.126595pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.v6{vertical-align:8.725333pt;}
.vd{vertical-align:13.136000pt;}
.vc{vertical-align:14.384000pt;}
.vb{vertical-align:21.114667pt;}
.v5{vertical-align:24.026667pt;}
.v9{vertical-align:31.184000pt;}
.v7{vertical-align:39.360000pt;}
.v8{vertical-align:60.474667pt;}
.va{vertical-align:79.269333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.000352pt;}
.ls34{letter-spacing:0.000483pt;}
.lsb{letter-spacing:0.001414pt;}
.ls2b{letter-spacing:0.001420pt;}
.ls49{letter-spacing:0.002906pt;}
.ls20{letter-spacing:0.003856pt;}
.ls37{letter-spacing:0.003892pt;}
.ls32{letter-spacing:0.004116pt;}
.ls29{letter-spacing:0.004826pt;}
.ls48{letter-spacing:0.004939pt;}
.ls42{letter-spacing:0.005940pt;}
.ls39{letter-spacing:0.006268pt;}
.ls54{letter-spacing:0.007463pt;}
.ls9{letter-spacing:0.007861pt;}
.ls57{letter-spacing:0.010327pt;}
.ls4c{letter-spacing:0.010608pt;}
.ls46{letter-spacing:0.012818pt;}
.ls44{letter-spacing:0.018473pt;}
.ls3f{letter-spacing:0.026897pt;}
.ls38{letter-spacing:0.265669pt;}
.ls17{letter-spacing:2.036365pt;}
.ls59{letter-spacing:2.042618pt;}
.ls58{letter-spacing:2.042683pt;}
.ls52{letter-spacing:2.045514pt;}
.lsf{letter-spacing:2.094547pt;}
.lsd{letter-spacing:2.653258pt;}
.lse{letter-spacing:2.654275pt;}
.ls15{letter-spacing:2.655975pt;}
.ls3e{letter-spacing:2.657546pt;}
.ls11{letter-spacing:2.659608pt;}
.ls16{letter-spacing:3.432730pt;}
.ls36{letter-spacing:4.511196pt;}
.ls3a{letter-spacing:4.516529pt;}
.ls23{letter-spacing:4.538186pt;}
.ls1d{letter-spacing:4.928116pt;}
.ls1a{letter-spacing:4.933449pt;}
.ls3c{letter-spacing:5.542649pt;}
.ls2e{letter-spacing:5.972958pt;}
.ls50{letter-spacing:9.069728pt;}
.ls1b{letter-spacing:9.716372pt;}
.ls4f{letter-spacing:11.120250pt;}
.ls4e{letter-spacing:11.357587pt;}
.ls26{letter-spacing:12.916374pt;}
.ls4d{letter-spacing:14.564811pt;}
.ls1f{letter-spacing:14.629449pt;}
.ls27{letter-spacing:15.581258pt;}
.ls2c{letter-spacing:15.586591pt;}
.ls4b{letter-spacing:15.659836pt;}
.ls21{letter-spacing:16.116377pt;}
.ls6{letter-spacing:16.174559pt;}
.ls7{letter-spacing:16.407286pt;}
.ls56{letter-spacing:17.091516pt;}
.ls3b{letter-spacing:17.413964pt;}
.ls35{letter-spacing:17.419297pt;}
.ls4a{letter-spacing:17.693578pt;}
.ls25{letter-spacing:17.861449pt;}
.ls41{letter-spacing:18.210924pt;}
.ls10{letter-spacing:18.269106pt;}
.ls51{letter-spacing:18.386868pt;}
.ls14{letter-spacing:18.814275pt;}
.ls1e{letter-spacing:18.817546pt;}
.lsc{letter-spacing:18.819608pt;}
.ls24{letter-spacing:18.822879pt;}
.ls4{letter-spacing:19.039527pt;}
.ls28{letter-spacing:19.306144pt;}
.ls19{letter-spacing:19.374562pt;}
.ls12{letter-spacing:19.432743pt;}
.ls13{letter-spacing:19.549107pt;}
.ls2d{letter-spacing:19.951684pt;}
.ls18{letter-spacing:21.469109pt;}
.ls31{letter-spacing:22.045258pt;}
.ls8{letter-spacing:22.046275pt;}
.lsa{letter-spacing:22.051608pt;}
.ls33{letter-spacing:23.183684pt;}
.ls5{letter-spacing:24.843657pt;}
.ls43{letter-spacing:26.589113pt;}
.ls3d{letter-spacing:27.403659pt;}
.ls2a{letter-spacing:27.783733pt;}
.ls2{letter-spacing:30.079283pt;}
.ls30{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls40{letter-spacing:60.834591pt;}
.ls45{letter-spacing:161.141880pt;}
.ls47{letter-spacing:163.001863pt;}
.ls53{letter-spacing:166.027970pt;}
.ls5a{letter-spacing:273.235766pt;}
.ls2f{letter-spacing:289.454787pt;}
.ls0{letter-spacing:306.975635pt;}
.ls22{letter-spacing:667.171465pt;}
.ls1c{letter-spacing:789.993386pt;}
.ws36{word-spacing:-58.181867pt;}
.ws41{word-spacing:-48.523677pt;}
.ws32{word-spacing:-37.899668pt;}
.ws44{word-spacing:-34.611401pt;}
.ws35{word-spacing:-32.337481pt;}
.ws52{word-spacing:-29.736752pt;}
.ws37{word-spacing:-29.090933pt;}
.ws40{word-spacing:-28.183296pt;}
.ws73{word-spacing:-27.156719pt;}
.ws64{word-spacing:-26.612706pt;}
.ws5d{word-spacing:-26.566933pt;}
.ws4f{word-spacing:-25.890931pt;}
.ws47{word-spacing:-25.791179pt;}
.ws46{word-spacing:-25.738045pt;}
.ws19{word-spacing:-24.575109pt;}
.ws3e{word-spacing:-21.725109pt;}
.ws30{word-spacing:-16.162923pt;}
.ws59{word-spacing:-14.778194pt;}
.ws55{word-spacing:-13.381829pt;}
.ws56{word-spacing:-13.323647pt;}
.ws57{word-spacing:-13.265466pt;}
.wse{word-spacing:-12.698994pt;}
.ws69{word-spacing:-12.509101pt;}
.ws58{word-spacing:-11.985465pt;}
.ws53{word-spacing:-11.520010pt;}
.ws65{word-spacing:-11.349416pt;}
.ws4e{word-spacing:-11.112737pt;}
.wsf{word-spacing:-10.892443pt;}
.ws5f{word-spacing:-10.763645pt;}
.ws12{word-spacing:-10.520506pt;}
.ws5e{word-spacing:-10.414238pt;}
.ws23{word-spacing:-10.356372pt;}
.ws1b{word-spacing:-10.201702pt;}
.ws4d{word-spacing:-10.187645pt;}
.ws2b{word-spacing:-10.123645pt;}
.ws60{word-spacing:-10.065463pt;}
.ws33{word-spacing:-10.007281pt;}
.ws22{word-spacing:-9.949099pt;}
.ws2a{word-spacing:-9.890917pt;}
.ws1f{word-spacing:-9.832735pt;}
.ws5c{word-spacing:-9.774554pt;}
.ws16{word-spacing:-9.716372pt;}
.ws17{word-spacing:-9.658190pt;}
.ws13{word-spacing:-9.617230pt;}
.ws3f{word-spacing:-9.600008pt;}
.ws54{word-spacing:-9.541826pt;}
.ws3b{word-spacing:-9.483644pt;}
.ws2c{word-spacing:-9.425462pt;}
.ws1d{word-spacing:-9.309099pt;}
.ws39{word-spacing:-9.198553pt;}
.ws70{word-spacing:-9.192159pt;}
.wsc{word-spacing:-9.085891pt;}
.ws2f{word-spacing:-9.018189pt;}
.wsb{word-spacing:-8.979623pt;}
.ws50{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws51{word-spacing:-8.849462pt;}
.ws25{word-spacing:-8.843644pt;}
.ws6c{word-spacing:-8.767088pt;}
.ws4b{word-spacing:-8.727280pt;}
.ws5b{word-spacing:-8.669098pt;}
.ws10{word-spacing:-8.660820pt;}
.ws11{word-spacing:-8.554553pt;}
.ws20{word-spacing:-8.267643pt;}
.ws5{word-spacing:-8.220396pt;}
.ws24{word-spacing:-8.209461pt;}
.ws6f{word-spacing:-8.187929pt;}
.ws6{word-spacing:-8.172575pt;}
.ws6e{word-spacing:-8.134795pt;}
.ws6d{word-spacing:-8.081661pt;}
.ws4a{word-spacing:-7.796370pt;}
.ws4c{word-spacing:-7.621825pt;}
.ws26{word-spacing:-7.214551pt;}
.ws2e{word-spacing:-6.987642pt;}
.ws63{word-spacing:-6.822723pt;}
.ws67{word-spacing:-6.749097pt;}
.ws27{word-spacing:-6.638551pt;}
.ws62{word-spacing:-6.574551pt;}
.ws61{word-spacing:-6.516369pt;}
.ws1c{word-spacing:-6.283642pt;}
.ws3a{word-spacing:-5.992732pt;}
.ws6b{word-spacing:-5.585459pt;}
.ws18{word-spacing:-5.178186pt;}
.wsd{word-spacing:-5.153985pt;}
.ws2d{word-spacing:-5.009459pt;}
.ws1e{word-spacing:-4.829095pt;}
.wsa{word-spacing:-4.468558pt;}
.ws28{word-spacing:-4.305458pt;}
.ws29{word-spacing:-4.247276pt;}
.ws68{word-spacing:-4.189094pt;}
.ws5a{word-spacing:-4.014549pt;}
.ws49{word-spacing:-3.781821pt;}
.ws71{word-spacing:-3.400567pt;}
.ws15{word-spacing:-3.200003pt;}
.ws72{word-spacing:-3.140212pt;}
.ws66{word-spacing:-2.850911pt;}
.ws43{word-spacing:-2.443638pt;}
.ws21{word-spacing:-1.687274pt;}
.ws2{word-spacing:-0.076513pt;}
.ws34{word-spacing:-0.058182pt;}
.ws38{word-spacing:-0.046545pt;}
.ws7{word-spacing:0.000000pt;}
.ws45{word-spacing:0.010627pt;}
.ws31{word-spacing:0.011636pt;}
.ws8{word-spacing:2.385457pt;}
.ws14{word-spacing:5.701823pt;}
.ws3d{word-spacing:5.926663pt;}
.ws9{word-spacing:10.159221pt;}
.ws3c{word-spacing:15.625380pt;}
.ws6a{word-spacing:19.316380pt;}
.ws1{word-spacing:20.786108pt;}
.ws3{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws48{word-spacing:30.551973pt;}
.ws42{word-spacing:88.122255pt;}
.ws1a{word-spacing:2054.176722pt;}
._1{margin-left:-5.228407pt;}
._6{margin-left:-4.006340pt;}
._5{margin-left:-2.624841pt;}
._3{margin-left:-1.487748pt;}
._2{width:1.071193pt;}
._0{width:2.371905pt;}
._22{width:4.393492pt;}
._2a{width:15.520516pt;}
._8{width:16.675519pt;}
._9{width:18.632957pt;}
._17{width:20.279963pt;}
._4{width:21.854106pt;}
._7{width:23.623427pt;}
._2e{width:24.707248pt;}
._1f{width:25.600021pt;}
._d{width:26.738150pt;}
._b{width:29.356862pt;}
._23{width:32.732472pt;}
._29{width:34.971563pt;}
._1d{width:36.596394pt;}
._2d{width:38.690941pt;}
._1e{width:41.559357pt;}
._28{width:43.690581pt;}
._a{width:47.017605pt;}
._20{width:57.831223pt;}
._1c{width:61.103947pt;}
._2c{width:82.158661pt;}
._21{width:126.062930pt;}
._25{width:152.323043pt;}
._24{width:158.485143pt;}
._2b{width:230.174986pt;}
._26{width:289.373345pt;}
._27{width:509.030746pt;}
._14{width:876.705612pt;}
._19{width:983.927099pt;}
._18{width:1029.877222pt;}
._12{width:1048.681927pt;}
._f{width:1125.854978pt;}
._e{width:1218.185907pt;}
._16{width:1345.590649pt;}
._1a{width:1353.981831pt;}
._15{width:1550.742537pt;}
._10{width:1578.332171pt;}
._1b{width:1622.516126pt;}
._11{width:1689.808627pt;}
._c{width:1753.099069pt;}
._13{width:1910.704350pt;}
.fs9{font-size:28.598159pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs8{font-size:40.854630pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:142.501333pt;}
.y2c{bottom:154.156000pt;}
.y78{bottom:169.301333pt;}
.y92{bottom:169.600000pt;}
.yaa{bottom:170.297333pt;}
.y60{bottom:177.941333pt;}
.y2b{bottom:178.776000pt;}
.y45{bottom:188.764000pt;}
.y77{bottom:193.212000pt;}
.ya9{bottom:194.208000pt;}
.y91{bottom:196.698667pt;}
.y5f{bottom:205.040000pt;}
.y2a{bottom:205.874667pt;}
.y44{bottom:217.378667pt;}
.yc2{bottom:221.014667pt;}
.y5e{bottom:232.138667pt;}
.y29{bottom:232.973333pt;}
.y90{bottom:234.612000pt;}
.y74{bottom:234.833333pt;}
.ya6{bottom:238.677333pt;}
.y73{bottom:240.146667pt;}
.y43{bottom:244.477333pt;}
.y72{bottom:245.460000pt;}
.yd{bottom:248.576000pt;}
.yc1{bottom:249.120000pt;}
.y8f{bottom:261.710667pt;}
.ya8{bottom:262.129333pt;}
.ya5{bottom:262.588000pt;}
.y42{bottom:271.576000pt;}
.yc{bottom:273.150667pt;}
.y28{bottom:274.617333pt;}
.yd9{bottom:274.672000pt;}
.yc0{bottom:276.218667pt;}
.y5d{bottom:278.134667pt;}
.ya7{bottom:286.040000pt;}
.y8e{bottom:288.809333pt;}
.yb{bottom:297.725333pt;}
.yd8{bottom:298.582667pt;}
.y27{bottom:301.716000pt;}
.y71{bottom:302.050667pt;}
.ybf{bottom:303.316000pt;}
.y70{bottom:305.334667pt;}
.y8d{bottom:315.908000pt;}
.y41{bottom:319.089333pt;}
.ya{bottom:322.298667pt;}
.yd7{bottom:322.493333pt;}
.y26{bottom:328.813333pt;}
.y5c{bottom:331.296000pt;}
.ya2{bottom:337.396000pt;}
.yd6{bottom:346.402667pt;}
.y9{bottom:346.873333pt;}
.ybe{bottom:350.318667pt;}
.y8c{bottom:353.821333pt;}
.y76{bottom:355.777333pt;}
.y25{bottom:355.912000pt;}
.y5b{bottom:358.394667pt;}
.y6f{bottom:367.696000pt;}
.yd5{bottom:370.313333pt;}
.y75{bottom:379.688000pt;}
.y8b{bottom:380.920000pt;}
.y40{bottom:381.906667pt;}
.y24{bottom:383.010667pt;}
.y5a{bottom:393.834667pt;}
.yd4{bottom:394.224000pt;}
.y8a{bottom:405.837333pt;}
.y89{bottom:408.018667pt;}
.y3f{bottom:409.005333pt;}
.ybd{bottom:410.218667pt;}
.ya4{bottom:412.204000pt;}
.yd3{bottom:418.134667pt;}
.y23{bottom:424.654667pt;}
.y6e{bottom:428.160000pt;}
.y59{bottom:429.274667pt;}
.y3e{bottom:436.102667pt;}
.ya3{bottom:436.113333pt;}
.ybc{bottom:437.317333pt;}
.yd2{bottom:442.044000pt;}
.y88{bottom:445.933333pt;}
.y58{bottom:456.373333pt;}
.ybb{bottom:464.416000pt;}
.y3d{bottom:464.718667pt;}
.yd1{bottom:465.954667pt;}
.y22{bottom:466.298667pt;}
.y8{bottom:472.541333pt;}
.y87{bottom:473.030667pt;}
.ya1{bottom:476.662667pt;}
.y6d{bottom:487.297333pt;}
.y57{bottom:491.813333pt;}
.y3c{bottom:491.817333pt;}
.ya0{bottom:503.760000pt;}
.y21{bottom:512.294667pt;}
.yba{bottom:516.549333pt;}
.y3b{bottom:518.916000pt;}
.y86{bottom:519.026667pt;}
.y7{bottom:519.129333pt;}
.y6c{bottom:526.444000pt;}
.y56{bottom:527.253333pt;}
.y9f{bottom:532.178667pt;}
.y6{bottom:543.040000pt;}
.y3a{bottom:546.014667pt;}
.yb9{bottom:546.236845pt;}
.yd0{bottom:549.641333pt;}
.y6b{bottom:553.542667pt;}
.y9e{bottom:559.277333pt;}
.yb8{bottom:564.621756pt;}
.y20{bottom:565.448000pt;}
.y5{bottom:566.949333pt;}
.y85{bottom:572.786667pt;}
.y55{bottom:573.249333pt;}
.y39{bottom:574.629333pt;}
.ycf{bottom:576.740000pt;}
.yb7{bottom:583.005643pt;}
.y9d{bottom:586.376000pt;}
.y1f{bottom:592.546667pt;}
.y6a{bottom:598.864000pt;}
.y84{bottom:599.884000pt;}
.y38{bottom:601.728000pt;}
.yb6{bottom:601.799609pt;}
.yce{bottom:603.837333pt;}
.y54{bottom:626.410667pt;}
.y37{bottom:628.826667pt;}
.ycd{bottom:630.936000pt;}
.y9c{bottom:633.692000pt;}
.y83{bottom:639.126667pt;}
.yb5{bottom:640.529333pt;}
.y1e{bottom:643.556000pt;}
.y69{bottom:644.185333pt;}
.y53{bottom:651.328000pt;}
.y52{bottom:653.509333pt;}
.y36{bottom:657.442667pt;}
.ycc{bottom:658.034667pt;}
.y1d{bottom:667.466667pt;}
.yb4{bottom:667.628000pt;}
.y82{bottom:678.369333pt;}
.y35{bottom:684.541333pt;}
.ycb{bottom:685.133333pt;}
.y51{bottom:688.949333pt;}
.y68{bottom:689.506667pt;}
.y1c{bottom:691.376000pt;}
.y9b{bottom:695.380000pt;}
.yb3{bottom:695.733333pt;}
.y4{bottom:701.244000pt;}
.y81{bottom:703.286667pt;}
.y80{bottom:705.468000pt;}
.y34{bottom:711.638667pt;}
.yca{bottom:712.232000pt;}
.y1b{bottom:715.286667pt;}
.y9a{bottom:722.478667pt;}
.yb2{bottom:722.832000pt;}
.y50{bottom:724.390667pt;}
.y67{bottom:734.829333pt;}
.y1a{bottom:739.197333pt;}
.yc9{bottom:739.329333pt;}
.y7f{bottom:743.382667pt;}
.yb1{bottom:749.930667pt;}
.y4f{bottom:751.488000pt;}
.y33{bottom:759.152000pt;}
.y66{bottom:761.926667pt;}
.y19{bottom:763.108000pt;}
.y99{bottom:769.460000pt;}
.y7e{bottom:770.480000pt;}
.yb0{bottom:777.028000pt;}
.y4e{bottom:778.586667pt;}
.yc8{bottom:783.697333pt;}
.y18{bottom:787.017333pt;}
.y64{bottom:797.612000pt;}
.y4d{bottom:803.504000pt;}
.y65{bottom:803.993333pt;}
.y4c{bottom:805.685333pt;}
.y63{bottom:807.589333pt;}
.yc7{bottom:810.794667pt;}
.y17{bottom:810.928000pt;}
.y98{bottom:816.441333pt;}
.y7d{bottom:816.476000pt;}
.y32{bottom:821.969333pt;}
.yaf{bottom:824.030667pt;}
.y16{bottom:834.838667pt;}
.y3{bottom:838.129333pt;}
.yc6{bottom:851.177333pt;}
.y4b{bottom:851.681333pt;}
.y62{bottom:852.262667pt;}
.y15{bottom:858.749333pt;}
.y7c{bottom:859.284000pt;}
.y97{bottom:863.422667pt;}
.y2{bottom:866.024000pt;}
.y31{bottom:866.648000pt;}
.yc5{bottom:878.276000pt;}
.y14{bottom:882.658667pt;}
.yae{bottom:883.932000pt;}
.y61{bottom:899.246667pt;}
.y4a{bottom:904.842667pt;}
.y13{bottom:906.569333pt;}
.y96{bottom:910.404000pt;}
.y30{bottom:911.326667pt;}
.yad{bottom:912.036000pt;}
.y7b{bottom:913.044000pt;}
.yc4{bottom:918.657333pt;}
.y1{bottom:924.568000pt;}
.y49{bottom:931.941333pt;}
.y95{bottom:938.821333pt;}
.yac{bottom:939.134667pt;}
.y7a{bottom:940.141333pt;}
.y12{bottom:940.973333pt;}
.yc3{bottom:945.756000pt;}
.y11{bottom:945.794667pt;}
.y2f{bottom:956.005333pt;}
.y48{bottom:959.040000pt;}
.y94{bottom:963.738667pt;}
.y93{bottom:965.920000pt;}
.yab{bottom:966.233333pt;}
.y79{bottom:967.240000pt;}
.yf{bottom:969.533333pt;}
.y10{bottom:974.812000pt;}
.y2e{bottom:984.620000pt;}
.y47{bottom:986.137333pt;}
.ye{bottom:1013.236000pt;}
.y2d{bottom:1059.728000pt;}
.hd{height:14.824448pt;}
.ha{height:24.696550pt;}
.hf{height:29.499997pt;}
.h9{height:29.925069pt;}
.h1d{height:30.640973pt;}
.h1e{height:33.813570pt;}
.h7{height:34.239693pt;}
.hc{height:37.193707pt;}
.h18{height:37.459376pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.he{height:40.378215pt;}
.h1c{height:40.727307pt;}
.h10{height:41.018216pt;}
.h1b{height:41.658217pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.h19{height:48.163217pt;}
.h11{height:52.293955pt;}
.h12{height:52.361733pt;}
.h1a{height:52.986400pt;}
.h2{height:53.559147pt;}
.h13{height:53.946402pt;}
.h17{height:58.020400pt;}
.h4{height:59.756892pt;}
.h14{height:88.741955pt;}
.h16{height:93.430663pt;}
.h15{height:128.651288pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x11{left:96.000000pt;}
.x16{left:98.434667pt;}
.x14{left:101.656000pt;}
.x13{left:107.313333pt;}
.x5e{left:108.305333pt;}
.x43{left:111.848000pt;}
.x1a{left:115.925333pt;}
.x68{left:116.945333pt;}
.x69{left:117.992000pt;}
.x15{left:122.785333pt;}
.x18{left:123.796000pt;}
.x67{left:135.326667pt;}
.x10{left:141.164000pt;}
.x51{left:142.273333pt;}
.x31{left:143.442667pt;}
.x1{left:146.578667pt;}
.xf{left:154.448000pt;}
.x65{left:157.012000pt;}
.x24{left:162.288000pt;}
.x39{left:178.368000pt;}
.xd{left:190.597333pt;}
.xe{left:196.556000pt;}
.x1b{left:199.196000pt;}
.x35{left:205.850667pt;}
.xa{left:214.034667pt;}
.x5d{left:222.792000pt;}
.x40{left:225.036000pt;}
.x52{left:226.993333pt;}
.x58{left:228.600000pt;}
.x34{left:232.010667pt;}
.x3f{left:237.366667pt;}
.x2{left:244.284000pt;}
.x53{left:246.429333pt;}
.x54{left:251.973333pt;}
.x66{left:255.881333pt;}
.x1c{left:259.665333pt;}
.x3e{left:266.646667pt;}
.x4d{left:269.957333pt;}
.x55{left:271.274667pt;}
.x41{left:273.770667pt;}
.x3a{left:280.294667pt;}
.x19{left:283.122667pt;}
.x1d{left:284.124000pt;}
.x6{left:293.149333pt;}
.x44{left:296.789333pt;}
.x3b{left:298.325333pt;}
.x2d{left:300.666667pt;}
.x3{left:304.973333pt;}
.x28{left:313.761333pt;}
.x30{left:315.278667pt;}
.x2f{left:330.993333pt;}
.x5{left:339.008000pt;}
.xb{left:340.090667pt;}
.x29{left:344.346667pt;}
.x36{left:347.073333pt;}
.x7{left:349.013333pt;}
.x4{left:350.718667pt;}
.x2a{left:352.476000pt;}
.x2e{left:361.378667pt;}
.x27{left:362.345333pt;}
.x12{left:363.736000pt;}
.x8{left:368.053333pt;}
.x1e{left:380.673333pt;}
.x64{left:384.525333pt;}
.x2b{left:390.460000pt;}
.x37{left:400.296000pt;}
.x2c{left:405.248000pt;}
.x63{left:414.014667pt;}
.x49{left:416.804000pt;}
.x32{left:418.024000pt;}
.x42{left:433.849333pt;}
.x4a{left:442.493333pt;}
.x33{left:443.704000pt;}
.xc{left:454.897333pt;}
.x59{left:461.140000pt;}
.x5a{left:480.442667pt;}
.x5b{left:485.986667pt;}
.x3c{left:492.873333pt;}
.x5c{left:495.381333pt;}
.x25{left:502.041333pt;}
.x26{left:510.772000pt;}
.x3d{left:514.934667pt;}
.x56{left:530.873333pt;}
.x57{left:547.918667pt;}
.x62{left:550.646667pt;}
.x60{left:560.444000pt;}
.x38{left:562.382667pt;}
.x1f{left:566.438667pt;}
.x45{left:575.154667pt;}
.x20{left:590.886667pt;}
.x46{left:594.457333pt;}
.x61{left:595.608000pt;}
.x47{left:600.226667pt;}
.x5f{left:603.080000pt;}
.x48{left:611.593333pt;}
.x21{left:621.736000pt;}
.x4e{left:632.301333pt;}
.x22{left:636.937333pt;}
.x4b{left:642.940000pt;}
.x4c{left:651.670667pt;}
.x4f{left:657.248000pt;}
.x23{left:661.384000pt;}
.x50{left:668.329333pt;}
.x17{left:710.396000pt;}
}




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