
    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_9e2ffb45b34794796e710b2e.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_935f54fea55662a093d1d625.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_370dcb2d5b8aa3b60f6e36a9.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_23d0b5f4051f8c0fec1f9c47.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_3fb6ca5975ce140687024c6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_ec67a56770d4a81fbcec5658.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_d2aa06e7dcc4d04a2058b88f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727000;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_33f60a4eda462c5b3380fdc7.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_c4eb144a54f0ba12bc093313.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877000;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_607b90db3210cff53bc93b00.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d55ff688f26615b1ebc85055.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1490367b1f2bd1ef6b06cfbe.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_99785da27073a7bfc244118d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e13fa55349971d9cbb104234.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d3ad2d76ed4f2c3706d07fb5.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a387ced97f3d50a198bb21a0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.877000;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_c4c2bbca5d8e4b326cab577f.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_96621deb5c2d43dd98385cc7.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8011f2a5152e1177139dece4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.687000;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_7299e04b76eba9caac34257b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.929000;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_b1a82bcfee0c730c6e4565c3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d55ff688f26615b1ebc85055.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_241e366d128cad16eec0e8be.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.872000;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:ff18;src:url('chunks/assets/font_7a20996f4668b23fd92189ce.woff2')format("woff");}.ff18{font-family:ff18;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;}
.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);}
.m15{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);}
.m13{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);}
.md{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);}
.m8{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);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4{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);}
.m10{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);}
.mc{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);}
.me{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);}
.m6{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);}
.m3{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.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);}
.m12{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);}
.m9{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);}
.m7{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);}
.m11{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);}
.m5{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);}
.m14{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);}
.ma{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);}
.v4{vertical-align:-22.854000px;}
.v2{vertical-align:-12.912000px;}
.v5{vertical-align:-10.398000px;}
.vd{vertical-align:-8.970000px;}
.v11{vertical-align:-7.492910px;}
.v3{vertical-align:-5.976000px;}
.v10{vertical-align:-1.158000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.ve{vertical-align:14.778000px;}
.vc{vertical-align:16.182000px;}
.vf{vertical-align:23.754000px;}
.v6{vertical-align:27.024000px;}
.v9{vertical-align:35.082000px;}
.v7{vertical-align:44.280000px;}
.v8{vertical-align:68.034000px;}
.va{vertical-align:89.178000px;}
.vb{vertical-align:112.932000px;}
.ls4{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000993px;}
.ls25{letter-spacing:0.001597px;}
.ls1c{letter-spacing:0.002651px;}
.ls17{letter-spacing:0.002682px;}
.ls1e{letter-spacing:0.002706px;}
.ls19{letter-spacing:0.004338px;}
.ls2a{letter-spacing:0.004379px;}
.ls54{letter-spacing:0.004435px;}
.ls23{letter-spacing:0.005429px;}
.ls40{letter-spacing:0.009076px;}
.ls53{letter-spacing:0.009824px;}
.lsf{letter-spacing:0.010161px;}
.ls48{letter-spacing:0.011454px;}
.ls5b{letter-spacing:0.011793px;}
.ls4b{letter-spacing:0.012965px;}
.ls12{letter-spacing:0.012980px;}
.ls44{letter-spacing:0.019397px;}
.ls41{letter-spacing:0.021442px;}
.ls3d{letter-spacing:0.025193px;}
.ls39{letter-spacing:0.028184px;}
.ls46{letter-spacing:0.029459px;}
.lsc{letter-spacing:1.820137px;}
.ls38{letter-spacing:2.356366px;}
.ls55{letter-spacing:2.496479px;}
.ls51{letter-spacing:2.500018px;}
.ls37{letter-spacing:2.984915px;}
.lsb{letter-spacing:2.985072px;}
.ls2c{letter-spacing:2.986851px;}
.ls49{letter-spacing:2.988710px;}
.ls35{letter-spacing:2.989739px;}
.ls14{letter-spacing:2.990367px;}
.ls3e{letter-spacing:2.990915px;}
.lsd{letter-spacing:2.991072px;}
.ls2d{letter-spacing:2.992851px;}
.ls47{letter-spacing:2.994710px;}
.ls1d{letter-spacing:2.996367px;}
.ls2f{letter-spacing:6.241481px;}
.ls27{letter-spacing:6.719578px;}
.ls5a{letter-spacing:8.308808px;}
.ls13{letter-spacing:10.930918px;}
.ls4f{letter-spacing:11.084982px;}
.ls4e{letter-spacing:13.591122px;}
.ls4d{letter-spacing:13.881194px;}
.ls18{letter-spacing:13.898367px;}
.ls7{letter-spacing:14.530921px;}
.ls21{letter-spacing:17.528915px;}
.ls20{letter-spacing:17.534367px;}
.ls31{letter-spacing:17.534915px;}
.ls11{letter-spacing:17.535072px;}
.ls30{letter-spacing:17.540367px;}
.ls4c{letter-spacing:17.801049px;}
.ls8{letter-spacing:18.196379px;}
.ls4a{letter-spacing:19.139384px;}
.ls57{letter-spacing:19.141344px;}
.ls56{letter-spacing:19.142329px;}
.ls2b{letter-spacing:19.590710px;}
.ls2e{letter-spacing:19.596710px;}
.ls45{letter-spacing:19.905275px;}
.ls3b{letter-spacing:20.552744px;}
.ls1f{letter-spacing:21.169739px;}
.lsa{letter-spacing:21.170367px;}
.ls32{letter-spacing:21.170915px;}
.ls10{letter-spacing:21.171072px;}
.ls26{letter-spacing:21.172059px;}
.ls16{letter-spacing:21.175739px;}
.ls5{letter-spacing:21.419468px;}
.ls3{letter-spacing:21.420532px;}
.ls3f{letter-spacing:21.600018px;}
.ls22{letter-spacing:21.719412px;}
.ls9{letter-spacing:21.796382px;}
.ls6{letter-spacing:21.861836px;}
.ls50{letter-spacing:22.472350px;}
.ls5c{letter-spacing:24.372710px;}
.ls34{letter-spacing:24.800915px;}
.ls3c{letter-spacing:26.407739px;}
.ls15{letter-spacing:26.967295px;}
.ls36{letter-spacing:29.520025px;}
.ls1b{letter-spacing:29.650934px;}
.ls33{letter-spacing:30.109116px;}
.ls24{letter-spacing:31.256700px;}
.ls58{letter-spacing:33.512755px;}
.ls1{letter-spacing:33.839194px;}
.ls59{letter-spacing:35.869121px;}
.ls2{letter-spacing:35.883533px;}
.ls3a{letter-spacing:69.896915px;}
.ls43{letter-spacing:130.264362px;}
.ls42{letter-spacing:130.264851px;}
.ls52{letter-spacing:202.918666px;}
.ls28{letter-spacing:312.807533px;}
.ls0{letter-spacing:345.347589px;}
.ls1a{letter-spacing:902.618934px;}
.lse{letter-spacing:1006.299020px;}
.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;}
}
.ws40{word-spacing:-65.520055px;}
.ws57{word-spacing:-65.454600px;}
.ws4f{word-spacing:-54.589136px;}
.ws6b{word-spacing:-49.932352px;}
.ws56{word-spacing:-47.323676px;}
.ws28{word-spacing:-42.637126px;}
.ws4c{word-spacing:-38.937826px;}
.ws2f{word-spacing:-33.453846px;}
.ws34{word-spacing:-32.727300px;}
.ws67{word-spacing:-32.525934px;}
.ws50{word-spacing:-31.771663px;}
.ws2c{word-spacing:-31.706208px;}
.ws78{word-spacing:-30.551309px;}
.ws62{word-spacing:-29.887800px;}
.ws4a{word-spacing:-29.015076px;}
.ws49{word-spacing:-28.955301px;}
.ws20{word-spacing:-27.646998px;}
.ws39{word-spacing:-26.490090px;}
.ws2a{word-spacing:-24.506202px;}
.ws2b{word-spacing:-18.183288px;}
.ws42{word-spacing:-17.803651px;}
.ws26{word-spacing:-17.018196px;}
.ws4b{word-spacing:-16.605662px;}
.ws0{word-spacing:-16.139475px;}
.ws53{word-spacing:-16.101832px;}
.ws38{word-spacing:-15.585034px;}
.ws10{word-spacing:-15.063451px;}
.ws1d{word-spacing:-14.727285px;}
.ws70{word-spacing:-13.876375px;}
.ws69{word-spacing:-13.871207px;}
.ws3{word-spacing:-13.449600px;}
.ws5b{word-spacing:-13.090920px;}
.ws54{word-spacing:-12.894556px;}
.ws59{word-spacing:-12.829102px;}
.wse{word-spacing:-12.732203px;}
.ws3c{word-spacing:-12.698192px;}
.ws37{word-spacing:-12.436374px;}
.ws51{word-spacing:-12.305465px;}
.wsc{word-spacing:-12.134447px;}
.ws4d{word-spacing:-11.895344px;}
.ws5c{word-spacing:-11.847283px;}
.ws3a{word-spacing:-11.585464px;}
.ws16{word-spacing:-11.476915px;}
.ws5a{word-spacing:-11.454555px;}
.ws71{word-spacing:-11.389100px;}
.ws73{word-spacing:-11.357364px;}
.ws6f{word-spacing:-11.258191px;}
.ws1a{word-spacing:-11.192737px;}
.ws5e{word-spacing:-11.127282px;}
.ws1e{word-spacing:-11.061827px;}
.ws1b{word-spacing:-10.996373px;}
.ws15{word-spacing:-10.930918px;}
.ws30{word-spacing:-10.865464px;}
.ws19{word-spacing:-10.800009px;}
.ws1f{word-spacing:-10.734554px;}
.ws31{word-spacing:-10.669100px;}
.ws74{word-spacing:-10.646034px;}
.ws61{word-spacing:-10.603645px;}
.ws5f{word-spacing:-10.538191px;}
.ws55{word-spacing:-10.348372px;}
.ws3e{word-spacing:-10.217463px;}
.ws3d{word-spacing:-10.152008px;}
.ws11{word-spacing:-10.102076px;}
.wsd{word-spacing:-10.042301px;}
.ws3f{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws23{word-spacing:-9.949099px;}
.ws63{word-spacing:-9.922750px;}
.ws21{word-spacing:-9.883645px;}
.wsf{word-spacing:-9.862974px;}
.ws52{word-spacing:-9.824735px;}
.ws27{word-spacing:-9.621826px;}
.ws64{word-spacing:-9.564096px;}
.ws72{word-spacing:-9.490917px;}
.ws6e{word-spacing:-9.360008px;}
.ws1c{word-spacing:-9.301099px;}
.ws58{word-spacing:-9.294553px;}
.ws5{word-spacing:-9.247945px;}
.ws22{word-spacing:-9.235644px;}
.ws6{word-spacing:-9.194147px;}
.ws75{word-spacing:-9.151644px;}
.ws5d{word-spacing:-9.032735px;}
.ws32{word-spacing:-8.967280px;}
.ws4e{word-spacing:-8.705462px;}
.ws2d{word-spacing:-8.574553px;}
.ws14{word-spacing:-8.443643px;}
.ws68{word-spacing:-8.338703px;}
.ws66{word-spacing:-8.288770px;}
.ws24{word-spacing:-8.116370px;}
.ws44{word-spacing:-7.920007px;}
.ws25{word-spacing:-7.468370px;}
.ws65{word-spacing:-7.461824px;}
.ws43{word-spacing:-6.741824px;}
.ws12{word-spacing:-5.977560px;}
.ws2e{word-spacing:-5.373823px;}
.wsb{word-spacing:-5.027128px;}
.ws17{word-spacing:-4.843640px;}
.ws60{word-spacing:-4.320004px;}
.ws6d{word-spacing:-4.303843px;}
.ws18{word-spacing:-4.058185px;}
.ws3b{word-spacing:-3.992731px;}
.ws76{word-spacing:-3.825638px;}
.ws35{word-spacing:-3.652367px;}
.ws47{word-spacing:-3.534548px;}
.ws77{word-spacing:-3.532738px;}
.ws13{word-spacing:-3.338185px;}
.ws36{word-spacing:-2.814548px;}
.ws46{word-spacing:-2.749093px;}
.ws2{word-spacing:-0.086077px;}
.ws7{word-spacing:-0.053798px;}
.ws29{word-spacing:-0.047821px;}
.ws8{word-spacing:0.000000px;}
.ws48{word-spacing:0.011955px;}
.ws33{word-spacing:0.013091px;}
.ws9{word-spacing:2.683639px;}
.wsa{word-spacing:11.429123px;}
.ws1{word-spacing:23.312640px;}
.ws45{word-spacing:34.370970px;}
.ws41{word-spacing:99.137537px;}
.ws6a{word-spacing:147.999491px;}
.ws6c{word-spacing:211.912902px;}
._1{margin-left:-8.091257px;}
._2{margin-left:-5.881958px;}
._4{margin-left:-4.626662px;}
._5{margin-left:-2.952946px;}
._3{margin-left:-1.673717px;}
._6{width:1.452557px;}
._0{width:2.668393px;}
._13{width:4.789856px;}
._15{width:5.824154px;}
._8{width:16.007968px;}
._14{width:17.141948px;}
._17{width:19.132248px;}
._1e{width:20.455218px;}
._c{width:22.830530px;}
._18{width:24.897544px;}
._7{width:26.576356px;}
._16{width:27.608716px;}
._b{width:29.095888px;}
._a{width:30.231070px;}
._11{width:32.007299px;}
._e{width:33.905483px;}
._10{width:35.738212px;}
._f{width:37.047304px;}
._1a{width:40.279375px;}
._23{width:44.201684px;}
._12{width:50.935919px;}
._1d{width:54.877621px;}
._d{width:63.505939px;}
._9{width:68.741940px;}
._1f{width:117.067382px;}
._19{width:128.177736px;}
._21{width:141.159221px;}
._1b{width:185.974028px;}
._22{width:498.753151px;}
._1c{width:621.798542px;}
._20{width:721.724181px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.952546px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:49.932352px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y4a{bottom:160.314000px;}
.y2e{bottom:173.425500px;}
.y49{bottom:190.800000px;}
.yb0{bottom:192.514500px;}
.y2d{bottom:215.047500px;}
.y48{bottom:218.752500px;}
.y47{bottom:221.286000px;}
.yaf{bottom:223.000500px;}
.y7c{bottom:238.009500px;}
.y62{bottom:243.159000px;}
.y2c{bottom:245.533500px;}
.y95{bottom:251.770500px;}
.y46{bottom:252.357000px;}
.ye{bottom:259.473000px;}
.y7b{bottom:268.494000px;}
.y2b{bottom:276.019500px;}
.yae{bottom:276.462000px;}
.y94{bottom:282.256500px;}
.yd{bottom:287.119500px;}
.y7a{bottom:299.335500px;}
.y45{bottom:301.038000px;}
.y2a{bottom:306.505500px;}
.y61{bottom:307.579500px;}
.yc{bottom:314.766000px;}
.y79{bottom:329.821500px;}
.y93{bottom:334.002000px;}
.y29{bottom:336.990000px;}
.y60{bottom:338.065500px;}
.yb{bottom:342.412500px;}
.yad{bottom:347.179500px;}
.y44{bottom:349.717500px;}
.y28{bottom:367.476000px;}
.y5f{bottom:369.165000px;}
.ya{bottom:370.059000px;}
.yac{bottom:377.665500px;}
.y78{bottom:377.814000px;}
.y43{bottom:380.203500px;}
.y92{bottom:393.880500px;}
.y27{bottom:397.962000px;}
.y5e{bottom:399.651000px;}
.yab{bottom:408.150000px;}
.y42{bottom:410.689500px;}
.y91{bottom:424.366500px;}
.y77{bottom:425.805000px;}
.yc3{bottom:427.362000px;}
.y26{bottom:428.448000px;}
.y5d{bottom:430.135500px;}
.yc2{bottom:454.261500px;}
.y90{bottom:454.851000px;}
.y25{bottom:458.934000px;}
.y76{bottom:462.573000px;}
.y41{bottom:463.020000px;}
.y5b{bottom:468.289500px;}
.yaa{bottom:469.132500px;}
.y75{bottom:473.797500px;}
.y5c{bottom:475.468500px;}
.y5a{bottom:479.514000px;}
.yc1{bottom:481.161000px;}
.y8f{bottom:485.337000px;}
.y24{bottom:489.418500px;}
.y9{bottom:491.260500px;}
.ya9{bottom:496.032000px;}
.yc0{bottom:508.060500px;}
.y8e{bottom:515.823000px;}
.y23{bottom:519.904500px;}
.y74{bottom:521.788500px;}
.y40{bottom:527.281500px;}
.y59{bottom:528.279000px;}
.ya8{bottom:530.004408px;}
.ybf{bottom:534.958500px;}
.y8{bottom:543.672000px;}
.y22{bottom:550.390500px;}
.ya7{bottom:552.474367px;}
.y3f{bottom:557.767500px;}
.ybe{bottom:561.858000px;}
.y8d{bottom:567.568500px;}
.y7{bottom:570.570000px;}
.y73{bottom:573.889500px;}
.ya6{bottom:575.443018px;}
.y58{bottom:580.638000px;}
.y3e{bottom:588.252000px;}
.ybd{bottom:588.757500px;}
.y6{bottom:597.469500px;}
.ya5{bottom:598.411670px;}
.y21{bottom:602.136000px;}
.ybc{bottom:615.657000px;}
.y3d{bottom:619.324500px;}
.ya4{bottom:620.881629px;}
.y72{bottom:622.405500px;}
.y8c{bottom:627.447000px;}
.ya3{bottom:643.850280px;}
.y57{bottom:645.058500px;}
.y3c{bottom:649.809000px;}
.y8b{bottom:657.931500px;}
.y20{bottom:663.028500px;}
.y56{bottom:675.544500px;}
.y3b{bottom:680.881500px;}
.y71{bottom:685.353000px;}
.y8a{bottom:688.417500px;}
.ya2{bottom:691.042500px;}
.y1f{bottom:693.514500px;}
.ybb{bottom:709.803000px;}
.y70{bottom:716.196000px;}
.ya1{bottom:721.528500px;}
.y55{bottom:724.042500px;}
.y89{bottom:727.248000px;}
.y3a{bottom:729.561000px;}
.yba{bottom:740.289000px;}
.y6f{bottom:746.680500px;}
.y5{bottom:748.551000px;}
.y1e{bottom:750.900000px;}
.y53{bottom:751.995000px;}
.ya0{bottom:752.014500px;}
.y54{bottom:752.073000px;}
.y52{bottom:754.527000px;}
.y88{bottom:757.732500px;}
.yb9{bottom:770.775000px;}
.y1d{bottom:777.798000px;}
.y39{bottom:778.242000px;}
.y86{bottom:785.685000px;}
.y87{bottom:785.764500px;}
.y85{bottom:788.218500px;}
.y6e{bottom:798.118500px;}
.yb8{bottom:801.261000px;}
.y51{bottom:803.025000px;}
.y1c{bottom:804.697500px;}
.y9f{bottom:805.476000px;}
.y38{bottom:809.313000px;}
.y84{bottom:818.704500px;}
.y6d{bottom:825.018000px;}
.y1b{bottom:831.597000px;}
.yb7{bottom:831.745500px;}
.y50{bottom:833.511000px;}
.y37{bottom:839.799000px;}
.y83{bottom:857.533500px;}
.y1a{bottom:858.496500px;}
.y9e{bottom:859.632000px;}
.yb6{bottom:862.231500px;}
.y4f{bottom:863.997000px;}
.y36{bottom:870.285000px;}
.y6a{bottom:871.842000px;}
.y69{bottom:877.819500px;}
.y68{bottom:883.797000px;}
.y19{bottom:885.394500px;}
.y9d{bottom:886.531500px;}
.yb5{bottom:892.717500px;}
.y82{bottom:897.858000px;}
.y35{bottom:900.771000px;}
.y4{bottom:902.547000px;}
.y18{bottom:912.294000px;}
.y4e{bottom:913.374000px;}
.y3{bottom:933.928500px;}
.y9a{bottom:936.559500px;}
.y81{bottom:938.182500px;}
.y17{bottom:939.193500px;}
.yb4{bottom:942.630000px;}
.y67{bottom:943.209000px;}
.y66{bottom:946.903500px;}
.y9c{bottom:952.363500px;}
.y34{bottom:953.101500px;}
.y4d{bottom:962.139000px;}
.y99{bottom:963.459000px;}
.y16{bottom:966.093000px;}
.y80{bottom:978.505500px;}
.y9b{bottom:979.263000px;}
.yb3{bottom:988.060500px;}
.y4c{bottom:992.625000px;}
.y15{bottom:992.991000px;}
.y6c{bottom:997.947000px;}
.y2{bottom:999.790500px;}
.y65{bottom:1012.807500px;}
.y33{bottom:1017.363000px;}
.y7f{bottom:1018.830000px;}
.y14{bottom:1019.890500px;}
.y6b{bottom:1024.846500px;}
.yb2{bottom:1033.489500px;}
.y96{bottom:1037.910000px;}
.y1{bottom:1040.139000px;}
.y4b{bottom:1044.984000px;}
.y32{bottom:1047.847500px;}
.y7e{bottom:1049.316000px;}
.y13{bottom:1058.595000px;}
.yb1{bottom:1063.975500px;}
.y12{bottom:1064.019000px;}
.y64{bottom:1076.578500px;}
.y31{bottom:1078.333500px;}
.y7d{bottom:1088.145000px;}
.y10{bottom:1090.725000px;}
.y11{bottom:1096.663500px;}
.y30{bottom:1109.404500px;}
.y98{bottom:1112.361000px;}
.y63{bottom:1138.855500px;}
.y97{bottom:1139.260500px;}
.yf{bottom:1139.890500px;}
.y2f{bottom:1192.194000px;}
.hc{height:16.677504px;}
.ha{height:27.783619px;}
.h9{height:32.661470px;}
.hf{height:34.143908px;}
.h1c{height:37.449264px;}
.h7{height:37.927872px;}
.hb{height:41.842920px;}
.h17{height:42.799330px;}
.h6{height:44.831700px;}
.hd{height:46.865494px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.h15{height:54.183619px;}
.h19{height:56.415470px;}
.h16{height:59.609700px;}
.h1b{height:59.685470px;}
.h1a{height:59.691470px;}
.h2{height:60.254040px;}
.he{height:61.167908px;}
.h10{height:61.173908px;}
.h14{height:65.272950px;}
.h4{height:67.226503px;}
.h18{height:93.988950px;}
.h11{height:100.695470px;}
.h13{height:106.071908px;}
.h12{height:145.593470px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x11{left:108.000000px;}
.x14{left:110.739000px;}
.x13{left:130.416000px;}
.x5c{left:131.625000px;}
.x2f{left:133.426500px;}
.x4f{left:137.467500px;}
.x58{left:152.242500px;}
.x10{left:158.809500px;}
.x47{left:160.057500px;}
.x2c{left:170.601000px;}
.xf{left:173.754000px;}
.x56{left:179.275500px;}
.x2d{left:189.099000px;}
.x3c{left:193.155000px;}
.x16{left:202.800000px;}
.x48{left:204.046500px;}
.x1f{left:213.267000px;}
.xd{left:214.422000px;}
.xe{left:221.125500px;}
.x28{left:227.920500px;}
.x1{left:235.500000px;}
.x3d{left:247.708500px;}
.x1d{left:250.062000px;}
.x42{left:266.941500px;}
.x1e{left:267.946500px;}
.x33{left:271.611000px;}
.x3{left:274.819500px;}
.x27{left:279.262500px;}
.x34{left:280.389000px;}
.x57{left:284.370000px;}
.x32{left:285.481500px;}
.x43{left:291.222000px;}
.x44{left:295.705500px;}
.x2{left:300.640500px;}
.x2e{left:306.538500px;}
.x12{left:318.513000px;}
.x36{left:327.441000px;}
.x7{left:329.793000px;}
.x35{left:333.472500px;}
.x3e{left:339.127500px;}
.x30{left:343.006500px;}
.x4{left:346.506000px;}
.x49{left:348.238500px;}
.x4a{left:358.500000px;}
.x46{left:359.650500px;}
.x4b{left:364.735500px;}
.x19{left:367.075500px;}
.x31{left:368.128500px;}
.x4c{left:371.356500px;}
.x20{left:375.375000px;}
.x6{left:381.384000px;}
.xb{left:382.602000px;}
.x1a{left:387.480000px;}
.x29{left:391.161000px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x1b{left:399.753000px;}
.x1c{left:401.758500px;}
.x9{left:414.060000px;}
.x54{left:441.793500px;}
.x2a{left:451.038000px;}
.x55{left:461.080500px;}
.x4d{left:464.154000px;}
.x4e{left:488.062500px;}
.x3f{left:502.368000px;}
.x37{left:508.533000px;}
.xc{left:511.759500px;}
.x40{left:519.676500px;}
.x41{left:543.904500px;}
.x21{left:546.228000px;}
.x59{left:554.568000px;}
.x17{left:559.603500px;}
.x18{left:577.855500px;}
.x22{left:585.730500px;}
.x38{left:592.639500px;}
.x39{left:614.430000px;}
.x2b{left:634.159500px;}
.x3a{left:638.698500px;}
.x3b{left:663.622500px;}
.x51{left:671.044500px;}
.x52{left:674.530500px;}
.x53{left:679.014000px;}
.x50{left:682.936500px;}
.x23{left:708.943500px;}
.x5a{left:716.691000px;}
.x24{left:719.205000px;}
.x25{left:725.613000px;}
.x26{left:738.093000px;}
.x5b{left:741.414000px;}
.x45{left:756.247500px;}
.x15{left:799.195500px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.v2{vertical-align:-11.477333pt;}
.v5{vertical-align:-9.242667pt;}
.vd{vertical-align:-7.973333pt;}
.v11{vertical-align:-6.660365pt;}
.v3{vertical-align:-5.312000pt;}
.v10{vertical-align:-1.029333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.ve{vertical-align:13.136000pt;}
.vc{vertical-align:14.384000pt;}
.vf{vertical-align:21.114667pt;}
.v6{vertical-align:24.021333pt;}
.v9{vertical-align:31.184000pt;}
.v7{vertical-align:39.360000pt;}
.v8{vertical-align:60.474667pt;}
.va{vertical-align:79.269333pt;}
.vb{vertical-align:100.384000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000882pt;}
.ls25{letter-spacing:0.001420pt;}
.ls1c{letter-spacing:0.002356pt;}
.ls17{letter-spacing:0.002384pt;}
.ls1e{letter-spacing:0.002405pt;}
.ls19{letter-spacing:0.003856pt;}
.ls2a{letter-spacing:0.003892pt;}
.ls54{letter-spacing:0.003942pt;}
.ls23{letter-spacing:0.004826pt;}
.ls40{letter-spacing:0.008067pt;}
.ls53{letter-spacing:0.008733pt;}
.lsf{letter-spacing:0.009032pt;}
.ls48{letter-spacing:0.010182pt;}
.ls5b{letter-spacing:0.010483pt;}
.ls4b{letter-spacing:0.011525pt;}
.ls12{letter-spacing:0.011538pt;}
.ls44{letter-spacing:0.017242pt;}
.ls41{letter-spacing:0.019059pt;}
.ls3d{letter-spacing:0.022393pt;}
.ls39{letter-spacing:0.025053pt;}
.ls46{letter-spacing:0.026186pt;}
.lsc{letter-spacing:1.617899pt;}
.ls38{letter-spacing:2.094547pt;}
.ls55{letter-spacing:2.219093pt;}
.ls51{letter-spacing:2.222238pt;}
.ls37{letter-spacing:2.653258pt;}
.lsb{letter-spacing:2.653398pt;}
.ls2c{letter-spacing:2.654978pt;}
.ls49{letter-spacing:2.656631pt;}
.ls35{letter-spacing:2.657546pt;}
.ls14{letter-spacing:2.658104pt;}
.ls3e{letter-spacing:2.658591pt;}
.lsd{letter-spacing:2.658731pt;}
.ls2d{letter-spacing:2.660312pt;}
.ls47{letter-spacing:2.661964pt;}
.ls1d{letter-spacing:2.663437pt;}
.ls2f{letter-spacing:5.547983pt;}
.ls27{letter-spacing:5.972958pt;}
.ls5a{letter-spacing:7.385607pt;}
.ls13{letter-spacing:9.716372pt;}
.ls4f{letter-spacing:9.853317pt;}
.ls4e{letter-spacing:12.080997pt;}
.ls4d{letter-spacing:12.338839pt;}
.ls18{letter-spacing:12.354104pt;}
.ls7{letter-spacing:12.916374pt;}
.ls21{letter-spacing:15.581258pt;}
.ls20{letter-spacing:15.586104pt;}
.ls31{letter-spacing:15.586591pt;}
.ls11{letter-spacing:15.586731pt;}
.ls30{letter-spacing:15.591437pt;}
.ls4c{letter-spacing:15.823155pt;}
.ls8{letter-spacing:16.174559pt;}
.ls4a{letter-spacing:17.012785pt;}
.ls57{letter-spacing:17.014528pt;}
.ls56{letter-spacing:17.015403pt;}
.ls2b{letter-spacing:17.413964pt;}
.ls2e{letter-spacing:17.419297pt;}
.ls45{letter-spacing:17.693578pt;}
.ls3b{letter-spacing:18.269106pt;}
.ls1f{letter-spacing:18.817546pt;}
.lsa{letter-spacing:18.818104pt;}
.ls32{letter-spacing:18.818591pt;}
.ls10{letter-spacing:18.818731pt;}
.ls26{letter-spacing:18.819608pt;}
.ls16{letter-spacing:18.822879pt;}
.ls5{letter-spacing:19.039527pt;}
.ls3{letter-spacing:19.040473pt;}
.ls3f{letter-spacing:19.200016pt;}
.ls22{letter-spacing:19.306144pt;}
.ls9{letter-spacing:19.374562pt;}
.ls6{letter-spacing:19.432743pt;}
.ls50{letter-spacing:19.975422pt;}
.ls5c{letter-spacing:21.664631pt;}
.ls34{letter-spacing:22.045258pt;}
.ls3c{letter-spacing:23.473546pt;}
.ls15{letter-spacing:23.970929pt;}
.ls36{letter-spacing:26.240022pt;}
.ls1b{letter-spacing:26.356386pt;}
.ls33{letter-spacing:26.763659pt;}
.ls24{letter-spacing:27.783733pt;}
.ls58{letter-spacing:29.789116pt;}
.ls1{letter-spacing:30.079283pt;}
.ls59{letter-spacing:31.883663pt;}
.ls2{letter-spacing:31.896474pt;}
.ls3a{letter-spacing:62.130591pt;}
.ls43{letter-spacing:115.790544pt;}
.ls42{letter-spacing:115.790978pt;}
.ls52{letter-spacing:180.372148pt;}
.ls28{letter-spacing:278.051141pt;}
.ls0{letter-spacing:306.975635pt;}
.ls1a{letter-spacing:802.327941pt;}
.lse{letter-spacing:894.488018pt;}
.ws40{word-spacing:-58.240049pt;}
.ws57{word-spacing:-58.181867pt;}
.ws4f{word-spacing:-48.523677pt;}
.ws6b{word-spacing:-44.384313pt;}
.ws56{word-spacing:-42.065490pt;}
.ws28{word-spacing:-37.899668pt;}
.ws4c{word-spacing:-34.611401pt;}
.ws2f{word-spacing:-29.736752pt;}
.ws34{word-spacing:-29.090933pt;}
.ws67{word-spacing:-28.911941pt;}
.ws50{word-spacing:-28.241478pt;}
.ws2c{word-spacing:-28.183296pt;}
.ws78{word-spacing:-27.156719pt;}
.ws62{word-spacing:-26.566933pt;}
.ws4a{word-spacing:-25.791179pt;}
.ws49{word-spacing:-25.738045pt;}
.ws20{word-spacing:-24.575109pt;}
.ws39{word-spacing:-23.546747pt;}
.ws2a{word-spacing:-21.783291pt;}
.ws2b{word-spacing:-16.162923pt;}
.ws42{word-spacing:-15.825468pt;}
.ws26{word-spacing:-15.127285pt;}
.ws4b{word-spacing:-14.760588pt;}
.ws0{word-spacing:-14.346200pt;}
.ws53{word-spacing:-14.312739pt;}
.ws38{word-spacing:-13.853363pt;}
.ws10{word-spacing:-13.389734pt;}
.ws1d{word-spacing:-13.090920pt;}
.ws70{word-spacing:-12.334556pt;}
.ws69{word-spacing:-12.329962pt;}
.ws3{word-spacing:-11.955200pt;}
.ws5b{word-spacing:-11.636373pt;}
.ws54{word-spacing:-11.461828pt;}
.ws59{word-spacing:-11.403646pt;}
.wse{word-spacing:-11.317514pt;}
.ws3c{word-spacing:-11.287282pt;}
.ws37{word-spacing:-11.054555pt;}
.ws51{word-spacing:-10.938191pt;}
.wsc{word-spacing:-10.786175pt;}
.ws4d{word-spacing:-10.573639pt;}
.ws5c{word-spacing:-10.530918pt;}
.ws3a{word-spacing:-10.298190pt;}
.ws16{word-spacing:-10.201702pt;}
.ws5a{word-spacing:-10.181827pt;}
.ws71{word-spacing:-10.123645pt;}
.ws73{word-spacing:-10.095435pt;}
.ws6f{word-spacing:-10.007281pt;}
.ws1a{word-spacing:-9.949099pt;}
.ws5e{word-spacing:-9.890917pt;}
.ws1e{word-spacing:-9.832735pt;}
.ws1b{word-spacing:-9.774554pt;}
.ws15{word-spacing:-9.716372pt;}
.ws30{word-spacing:-9.658190pt;}
.ws19{word-spacing:-9.600008pt;}
.ws1f{word-spacing:-9.541826pt;}
.ws31{word-spacing:-9.483644pt;}
.ws74{word-spacing:-9.463142pt;}
.ws61{word-spacing:-9.425462pt;}
.ws5f{word-spacing:-9.367281pt;}
.ws55{word-spacing:-9.198553pt;}
.ws3e{word-spacing:-9.082189pt;}
.ws3d{word-spacing:-9.024008pt;}
.ws11{word-spacing:-8.979623pt;}
.wsd{word-spacing:-8.926490pt;}
.ws3f{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws23{word-spacing:-8.843644pt;}
.ws63{word-spacing:-8.820222pt;}
.ws21{word-spacing:-8.785462pt;}
.wsf{word-spacing:-8.767088pt;}
.ws52{word-spacing:-8.733098pt;}
.ws27{word-spacing:-8.552734pt;}
.ws64{word-spacing:-8.501419pt;}
.ws72{word-spacing:-8.436371pt;}
.ws6e{word-spacing:-8.320007pt;}
.ws1c{word-spacing:-8.267643pt;}
.ws58{word-spacing:-8.261825pt;}
.ws5{word-spacing:-8.220396pt;}
.ws22{word-spacing:-8.209461pt;}
.ws6{word-spacing:-8.172575pt;}
.ws75{word-spacing:-8.134795pt;}
.ws5d{word-spacing:-8.029098pt;}
.ws32{word-spacing:-7.970916pt;}
.ws4e{word-spacing:-7.738188pt;}
.ws2d{word-spacing:-7.621825pt;}
.ws14{word-spacing:-7.505461pt;}
.ws68{word-spacing:-7.412180pt;}
.ws66{word-spacing:-7.367796pt;}
.ws24{word-spacing:-7.214551pt;}
.ws44{word-spacing:-7.040006pt;}
.ws25{word-spacing:-6.638551pt;}
.ws65{word-spacing:-6.632733pt;}
.ws43{word-spacing:-5.992732pt;}
.ws12{word-spacing:-5.313387pt;}
.ws2e{word-spacing:-4.776731pt;}
.wsb{word-spacing:-4.468558pt;}
.ws17{word-spacing:-4.305458pt;}
.ws60{word-spacing:-3.840003pt;}
.ws6d{word-spacing:-3.825638pt;}
.ws18{word-spacing:-3.607276pt;}
.ws3b{word-spacing:-3.549094pt;}
.ws76{word-spacing:-3.400567pt;}
.ws35{word-spacing:-3.246548pt;}
.ws47{word-spacing:-3.141821pt;}
.ws77{word-spacing:-3.140212pt;}
.ws13{word-spacing:-2.967275pt;}
.ws36{word-spacing:-2.501820pt;}
.ws46{word-spacing:-2.443638pt;}
.ws2{word-spacing:-0.076513pt;}
.ws7{word-spacing:-0.047821pt;}
.ws29{word-spacing:-0.042507pt;}
.ws8{word-spacing:0.000000pt;}
.ws48{word-spacing:0.010627pt;}
.ws33{word-spacing:0.011636pt;}
.ws9{word-spacing:2.385457pt;}
.wsa{word-spacing:10.159221pt;}
.ws1{word-spacing:20.722347pt;}
.ws45{word-spacing:30.551973pt;}
.ws41{word-spacing:88.122255pt;}
.ws6a{word-spacing:131.555103pt;}
.ws6c{word-spacing:188.367024pt;}
._1{margin-left:-7.192228pt;}
._2{margin-left:-5.228407pt;}
._4{margin-left:-4.112589pt;}
._5{margin-left:-2.624841pt;}
._3{margin-left:-1.487748pt;}
._6{width:1.291162pt;}
._0{width:2.371905pt;}
._13{width:4.257650pt;}
._15{width:5.177026pt;}
._8{width:14.229305pt;}
._14{width:15.237287pt;}
._17{width:17.006442pt;}
._1e{width:18.182416pt;}
._c{width:20.293804pt;}
._18{width:22.131150pt;}
._7{width:23.623427pt;}
._16{width:24.541081pt;}
._b{width:25.863011pt;}
._a{width:26.872062pt;}
._11{width:28.450933pt;}
._e{width:30.138207pt;}
._10{width:31.767299pt;}
._f{width:32.930937pt;}
._1a{width:35.803889pt;}
._23{width:39.290386pt;}
._12{width:45.276373pt;}
._1d{width:48.780107pt;}
._d{width:56.449724pt;}
._9{width:61.103947pt;}
._1f{width:104.059895pt;}
._19{width:113.935765pt;}
._21{width:125.474863pt;}
._1b{width:165.310247pt;}
._22{width:443.336134pt;}
._1c{width:552.709815pt;}
._20{width:641.532605pt;}
.fs9{font-size:31.068930pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:44.384313pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:142.501333pt;}
.y2e{bottom:154.156000pt;}
.y49{bottom:169.600000pt;}
.yb0{bottom:171.124000pt;}
.y2d{bottom:191.153333pt;}
.y48{bottom:194.446667pt;}
.y47{bottom:196.698667pt;}
.yaf{bottom:198.222667pt;}
.y7c{bottom:211.564000pt;}
.y62{bottom:216.141333pt;}
.y2c{bottom:218.252000pt;}
.y95{bottom:223.796000pt;}
.y46{bottom:224.317333pt;}
.ye{bottom:230.642667pt;}
.y7b{bottom:238.661333pt;}
.y2b{bottom:245.350667pt;}
.yae{bottom:245.744000pt;}
.y94{bottom:250.894667pt;}
.yd{bottom:255.217333pt;}
.y7a{bottom:266.076000pt;}
.y45{bottom:267.589333pt;}
.y2a{bottom:272.449333pt;}
.y61{bottom:273.404000pt;}
.yc{bottom:279.792000pt;}
.y79{bottom:293.174667pt;}
.y93{bottom:296.890667pt;}
.y29{bottom:299.546667pt;}
.y60{bottom:300.502667pt;}
.yb{bottom:304.366667pt;}
.yad{bottom:308.604000pt;}
.y44{bottom:310.860000pt;}
.y28{bottom:326.645333pt;}
.y5f{bottom:328.146667pt;}
.ya{bottom:328.941333pt;}
.yac{bottom:335.702667pt;}
.y78{bottom:335.834667pt;}
.y43{bottom:337.958667pt;}
.y92{bottom:350.116000pt;}
.y27{bottom:353.744000pt;}
.y5e{bottom:355.245333pt;}
.yab{bottom:362.800000pt;}
.y42{bottom:365.057333pt;}
.y91{bottom:377.214667pt;}
.y77{bottom:378.493333pt;}
.yc3{bottom:379.877333pt;}
.y26{bottom:380.842667pt;}
.y5d{bottom:382.342667pt;}
.yc2{bottom:403.788000pt;}
.y90{bottom:404.312000pt;}
.y25{bottom:407.941333pt;}
.y76{bottom:411.176000pt;}
.y41{bottom:411.573333pt;}
.y5b{bottom:416.257333pt;}
.yaa{bottom:417.006667pt;}
.y75{bottom:421.153333pt;}
.y5c{bottom:422.638667pt;}
.y5a{bottom:426.234667pt;}
.yc1{bottom:427.698667pt;}
.y8f{bottom:431.410667pt;}
.y24{bottom:435.038667pt;}
.y9{bottom:436.676000pt;}
.ya9{bottom:440.917333pt;}
.yc0{bottom:451.609333pt;}
.y8e{bottom:458.509333pt;}
.y23{bottom:462.137333pt;}
.y74{bottom:463.812000pt;}
.y40{bottom:468.694667pt;}
.y59{bottom:469.581333pt;}
.ya8{bottom:471.115029pt;}
.ybf{bottom:475.518667pt;}
.y8{bottom:483.264000pt;}
.y22{bottom:489.236000pt;}
.ya7{bottom:491.088326pt;}
.y3f{bottom:495.793333pt;}
.ybe{bottom:499.429333pt;}
.y8d{bottom:504.505333pt;}
.y7{bottom:507.173333pt;}
.y73{bottom:510.124000pt;}
.ya6{bottom:511.504905pt;}
.y58{bottom:516.122667pt;}
.y3e{bottom:522.890667pt;}
.ybd{bottom:523.340000pt;}
.y6{bottom:531.084000pt;}
.ya5{bottom:531.921484pt;}
.y21{bottom:535.232000pt;}
.ybc{bottom:547.250667pt;}
.y3d{bottom:550.510667pt;}
.ya4{bottom:551.894781pt;}
.y72{bottom:553.249333pt;}
.y8c{bottom:557.730667pt;}
.ya3{bottom:572.311360pt;}
.y57{bottom:573.385333pt;}
.y3c{bottom:577.608000pt;}
.y8b{bottom:584.828000pt;}
.y20{bottom:589.358667pt;}
.y56{bottom:600.484000pt;}
.y3b{bottom:605.228000pt;}
.y71{bottom:609.202667pt;}
.y8a{bottom:611.926667pt;}
.ya2{bottom:614.260000pt;}
.y1f{bottom:616.457333pt;}
.ybb{bottom:630.936000pt;}
.y70{bottom:636.618667pt;}
.ya1{bottom:641.358667pt;}
.y55{bottom:643.593333pt;}
.y89{bottom:646.442667pt;}
.y3a{bottom:648.498667pt;}
.yba{bottom:658.034667pt;}
.y6f{bottom:663.716000pt;}
.y5{bottom:665.378667pt;}
.y1e{bottom:667.466667pt;}
.y53{bottom:668.440000pt;}
.ya0{bottom:668.457333pt;}
.y54{bottom:668.509333pt;}
.y52{bottom:670.690667pt;}
.y88{bottom:673.540000pt;}
.yb9{bottom:685.133333pt;}
.y1d{bottom:691.376000pt;}
.y39{bottom:691.770667pt;}
.y86{bottom:698.386667pt;}
.y87{bottom:698.457333pt;}
.y85{bottom:700.638667pt;}
.y6e{bottom:709.438667pt;}
.yb8{bottom:712.232000pt;}
.y51{bottom:713.800000pt;}
.y1c{bottom:715.286667pt;}
.y9f{bottom:715.978667pt;}
.y38{bottom:719.389333pt;}
.y84{bottom:727.737333pt;}
.y6d{bottom:733.349333pt;}
.y1b{bottom:739.197333pt;}
.yb7{bottom:739.329333pt;}
.y50{bottom:740.898667pt;}
.y37{bottom:746.488000pt;}
.y83{bottom:762.252000pt;}
.y1a{bottom:763.108000pt;}
.y9e{bottom:764.117333pt;}
.yb6{bottom:766.428000pt;}
.y4f{bottom:767.997333pt;}
.y36{bottom:773.586667pt;}
.y6a{bottom:774.970667pt;}
.y69{bottom:780.284000pt;}
.y68{bottom:785.597333pt;}
.y19{bottom:787.017333pt;}
.y9d{bottom:788.028000pt;}
.yb5{bottom:793.526667pt;}
.y82{bottom:798.096000pt;}
.y35{bottom:800.685333pt;}
.y4{bottom:802.264000pt;}
.y18{bottom:810.928000pt;}
.y4e{bottom:811.888000pt;}
.y3{bottom:830.158667pt;}
.y9a{bottom:832.497333pt;}
.y81{bottom:833.940000pt;}
.y17{bottom:834.838667pt;}
.yb4{bottom:837.893333pt;}
.y67{bottom:838.408000pt;}
.y66{bottom:841.692000pt;}
.y9c{bottom:846.545333pt;}
.y34{bottom:847.201333pt;}
.y4d{bottom:855.234667pt;}
.y99{bottom:856.408000pt;}
.y16{bottom:858.749333pt;}
.y80{bottom:869.782667pt;}
.y9b{bottom:870.456000pt;}
.yb3{bottom:878.276000pt;}
.y4c{bottom:882.333333pt;}
.y15{bottom:882.658667pt;}
.y6c{bottom:887.064000pt;}
.y2{bottom:888.702667pt;}
.y65{bottom:900.273333pt;}
.y33{bottom:904.322667pt;}
.y7f{bottom:905.626667pt;}
.y14{bottom:906.569333pt;}
.y6b{bottom:910.974667pt;}
.yb2{bottom:918.657333pt;}
.y96{bottom:922.586667pt;}
.y1{bottom:924.568000pt;}
.y4b{bottom:928.874667pt;}
.y32{bottom:931.420000pt;}
.y7e{bottom:932.725333pt;}
.y13{bottom:940.973333pt;}
.yb1{bottom:945.756000pt;}
.y12{bottom:945.794667pt;}
.y64{bottom:956.958667pt;}
.y31{bottom:958.518667pt;}
.y7d{bottom:967.240000pt;}
.y10{bottom:969.533333pt;}
.y11{bottom:974.812000pt;}
.y30{bottom:986.137333pt;}
.y98{bottom:988.765333pt;}
.y63{bottom:1012.316000pt;}
.y97{bottom:1012.676000pt;}
.yf{bottom:1013.236000pt;}
.y2f{bottom:1059.728000pt;}
.hc{height:14.824448pt;}
.ha{height:24.696550pt;}
.h9{height:29.032418pt;}
.hf{height:30.350141pt;}
.h1c{height:33.288235pt;}
.h7{height:33.713664pt;}
.hb{height:37.193707pt;}
.h17{height:38.043849pt;}
.h6{height:39.850400pt;}
.hd{height:41.658217pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.h15{height:48.163217pt;}
.h19{height:50.147084pt;}
.h16{height:52.986400pt;}
.h1b{height:53.053751pt;}
.h1a{height:53.059084pt;}
.h2{height:53.559147pt;}
.he{height:54.371474pt;}
.h10{height:54.376807pt;}
.h14{height:58.020400pt;}
.h4{height:59.756892pt;}
.h18{height:83.545733pt;}
.h11{height:89.507084pt;}
.h13{height:94.286141pt;}
.h12{height:129.416418pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x11{left:96.000000pt;}
.x14{left:98.434667pt;}
.x13{left:115.925333pt;}
.x5c{left:117.000000pt;}
.x2f{left:118.601333pt;}
.x4f{left:122.193333pt;}
.x58{left:135.326667pt;}
.x10{left:141.164000pt;}
.x47{left:142.273333pt;}
.x2c{left:151.645333pt;}
.xf{left:154.448000pt;}
.x56{left:159.356000pt;}
.x2d{left:168.088000pt;}
.x3c{left:171.693333pt;}
.x16{left:180.266667pt;}
.x48{left:181.374667pt;}
.x1f{left:189.570667pt;}
.xd{left:190.597333pt;}
.xe{left:196.556000pt;}
.x28{left:202.596000pt;}
.x1{left:209.333333pt;}
.x3d{left:220.185333pt;}
.x1d{left:222.277333pt;}
.x42{left:237.281333pt;}
.x1e{left:238.174667pt;}
.x33{left:241.432000pt;}
.x3{left:244.284000pt;}
.x27{left:248.233333pt;}
.x34{left:249.234667pt;}
.x57{left:252.773333pt;}
.x32{left:253.761333pt;}
.x43{left:258.864000pt;}
.x44{left:262.849333pt;}
.x2{left:267.236000pt;}
.x2e{left:272.478667pt;}
.x12{left:283.122667pt;}
.x36{left:291.058667pt;}
.x7{left:293.149333pt;}
.x35{left:296.420000pt;}
.x3e{left:301.446667pt;}
.x30{left:304.894667pt;}
.x4{left:308.005333pt;}
.x49{left:309.545333pt;}
.x4a{left:318.666667pt;}
.x46{left:319.689333pt;}
.x4b{left:324.209333pt;}
.x19{left:326.289333pt;}
.x31{left:327.225333pt;}
.x4c{left:330.094667pt;}
.x20{left:333.666667pt;}
.x6{left:339.008000pt;}
.xb{left:340.090667pt;}
.x1a{left:344.426667pt;}
.x29{left:347.698667pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x1b{left:355.336000pt;}
.x1c{left:357.118667pt;}
.x9{left:368.053333pt;}
.x54{left:392.705333pt;}
.x2a{left:400.922667pt;}
.x55{left:409.849333pt;}
.x4d{left:412.581333pt;}
.x4e{left:433.833333pt;}
.x3f{left:446.549333pt;}
.x37{left:452.029333pt;}
.xc{left:454.897333pt;}
.x40{left:461.934667pt;}
.x41{left:483.470667pt;}
.x21{left:485.536000pt;}
.x59{left:492.949333pt;}
.x17{left:497.425333pt;}
.x18{left:513.649333pt;}
.x22{left:520.649333pt;}
.x38{left:526.790667pt;}
.x39{left:546.160000pt;}
.x2b{left:563.697333pt;}
.x3a{left:567.732000pt;}
.x3b{left:589.886667pt;}
.x51{left:596.484000pt;}
.x52{left:599.582667pt;}
.x53{left:603.568000pt;}
.x50{left:607.054667pt;}
.x23{left:630.172000pt;}
.x5a{left:637.058667pt;}
.x24{left:639.293333pt;}
.x25{left:644.989333pt;}
.x26{left:656.082667pt;}
.x5b{left:659.034667pt;}
.x45{left:672.220000pt;}
.x15{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; }
  