
    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_4c4d243ddec1246c9b866c3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_82f4761298593a3d38734bb0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_31ea1e0c83ab69c148aede79.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_5b3dc2f0ebdb3c7a7297d77d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_6779c054a51d6bf13d5cc445.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_636f1271473292ff2bf2e73b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_7f8599191801210d3e8665e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_3875e2ce00b20b87bcc7c15a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_5d0673e97fadd5b94e4e592e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706543;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_370da070bb34658f464aeb1c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_3f2608774b07856ee0ad5189.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_156bab914e120017be2e6216.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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_eb4b0f5565529574b42802a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898438;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_5c719049b3ab65c48fde327e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908691;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;}
.m9{transform:matrix(0.000000,-0.250356,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250356,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250356,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250072,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250072,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250072,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250046,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250046,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250046,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249340,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249340,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249340,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m1{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.096000px;}
.v7{vertical-align:-30.240000px;}
.v9{vertical-align:-14.400368px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v8{vertical-align:18.000241px;}
.v4{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.v6{vertical-align:39.600000px;}
.ls20{letter-spacing:-2.160000px;}
.ls1f{letter-spacing:-1.656000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.672000px;}
.ls3{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.206400px;}
.ls3e{letter-spacing:-0.184300px;}
.ls46{letter-spacing:-0.183880px;}
.ls42{letter-spacing:-0.182587px;}
.ls37{letter-spacing:-0.175804px;}
.ls4a{letter-spacing:-0.175705px;}
.ls1b{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.115676px;}
.ls3f{letter-spacing:-0.115068px;}
.ls30{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.072000px;}
.ls47{letter-spacing:-0.056735px;}
.ls40{letter-spacing:-0.056665px;}
.ls2d{letter-spacing:-0.053280px;}
.ls48{letter-spacing:-0.051013px;}
.ls41{letter-spacing:-0.051000px;}
.ls25{letter-spacing:-0.045360px;}
.ls35{letter-spacing:-0.042600px;}
.ls33{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.004320px;}
.ls34{letter-spacing:0.037440px;}
.ls2a{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.153600px;}
.ls27{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.190205px;}
.ls39{letter-spacing:0.198619px;}
.lsd{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.262200px;}
.ls38{letter-spacing:0.265401px;}
.ls17{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.305280px;}
.ls12{letter-spacing:0.305400px;}
.lse{letter-spacing:0.314640px;}
.lsa{letter-spacing:0.315360px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.404640px;}
.ls4{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.494640px;}
.ls10{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.648000px;}
.ls2e{letter-spacing:0.666000px;}
.ls29{letter-spacing:0.702720px;}
.lsf{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.724320px;}
.ls8{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.864000px;}
.ls2b{letter-spacing:0.882720px;}
.ls1d{letter-spacing:0.900000px;}
.ls21{letter-spacing:1.584000px;}
.ls11{letter-spacing:1.620000px;}
.ls22{letter-spacing:3.600000px;}
.ls1{letter-spacing:4.500000px;}
.ls18{letter-spacing:9.360000px;}
.ls24{letter-spacing:10.800000px;}
.ls49{letter-spacing:14.006519px;}
.ls26{letter-spacing:54.864000px;}
.ls15{letter-spacing:144.521280px;}
.ls3c{letter-spacing:304.690277px;}
.ls3b{letter-spacing:305.176805px;}
.ls3a{letter-spacing:306.652375px;}
.ls45{letter-spacing:311.453937px;}
.ls44{letter-spacing:311.713067px;}
.ls43{letter-spacing:313.381643px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws1d{word-spacing:-59.760000px;}
.wsc{word-spacing:-38.684160px;}
.ws17{word-spacing:-19.584000px;}
.ws18{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.792000px;}
.wsf{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.676920px;}
.ws13{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.414720px;}
.wse{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.064000px;}
.ws1e{word-spacing:-16.766880px;}
.ws26{word-spacing:-16.613503px;}
.ws23{word-spacing:-16.613331px;}
.ws1b{word-spacing:-16.613280px;}
.ws4c{word-spacing:-16.613121px;}
.ws1a{word-spacing:-16.560000px;}
.ws1f{word-spacing:-16.506480px;}
.ws15{word-spacing:-16.344000px;}
.ws2f{word-spacing:-15.260556px;}
.ws30{word-spacing:-15.161246px;}
.ws2e{word-spacing:-14.995155px;}
.ws2d{word-spacing:-14.962627px;}
.ws40{word-spacing:-14.940000px;}
.ws20{word-spacing:-14.733600px;}
.ws28{word-spacing:-13.538346px;}
.ws4e{word-spacing:-13.529095px;}
.ws2a{word-spacing:-13.506105px;}
.ws27{word-spacing:-13.505801px;}
.ws11{word-spacing:-13.500000px;}
.ws50{word-spacing:-13.498474px;}
.ws4d{word-spacing:-13.496573px;}
.ws2c{word-spacing:-13.330301px;}
.ws52{word-spacing:-13.322768px;}
.ws35{word-spacing:-13.207450px;}
.ws3a{word-spacing:-13.109515px;}
.ws49{word-spacing:-13.094607px;}
.ws3f{word-spacing:-13.091282px;}
.ws16{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws19{word-spacing:-12.014640px;}
.ws31{word-spacing:-11.918220px;}
.ws32{word-spacing:-11.889570px;}
.ws36{word-spacing:-11.855562px;}
.ws46{word-spacing:-11.842079px;}
.ws3c{word-spacing:-11.839073px;}
.ws37{word-spacing:-11.827063px;}
.ws45{word-spacing:-11.813613px;}
.ws3b{word-spacing:-11.810613px;}
.ws4{word-spacing:-11.700000px;}
.wsa{word-spacing:-11.609280px;}
.ws8{word-spacing:-11.388000px;}
.ws25{word-spacing:-11.209110px;}
.ws4b{word-spacing:-11.208852px;}
.ws1c{word-spacing:-10.808640px;}
.ws22{word-spacing:-10.791360px;}
.ws21{word-spacing:-9.720000px;}
.ws2b{word-spacing:-9.112553px;}
.ws51{word-spacing:-9.107404px;}
.ws1{word-spacing:0.000000px;}
.ws4a{word-spacing:201.560779px;}
.ws29{word-spacing:226.703928px;}
.ws3e{word-spacing:252.745531px;}
.ws39{word-spacing:252.981027px;}
.ws34{word-spacing:254.318067px;}
.ws48{word-spacing:259.475006px;}
.ws44{word-spacing:259.653899px;}
.ws42{word-spacing:261.026207px;}
.ws3d{word-spacing:266.642111px;}
.ws38{word-spacing:266.944018px;}
.ws33{word-spacing:268.513315px;}
.ws47{word-spacing:273.270150px;}
.ws43{word-spacing:273.669433px;}
.ws41{word-spacing:275.062994px;}
.ws24{word-spacing:293.683142px;}
.ws4f{word-spacing:338.417556px;}
._20{margin-left:-3.606960px;}
._4{margin-left:-2.394000px;}
._1{margin-left:-1.340640px;}
._2{width:1.723680px;}
._7{width:2.738400px;}
._d{width:4.185600px;}
._a{width:5.832000px;}
._b{width:7.716000px;}
._c{width:9.116640px;}
._e{width:10.512000px;}
._3{width:11.778480px;}
._0{width:13.310640px;}
._8{width:14.481360px;}
._10{width:15.560640px;}
._9{width:16.753200px;}
._f{width:19.512000px;}
._14{width:21.303600px;}
._15{width:23.156640px;}
._1b{width:24.192000px;}
._1c{width:25.464000px;}
._1d{width:26.594640px;}
._1e{width:28.102320px;}
._1f{width:29.144400px;}
._24{width:30.429360px;}
._11{width:31.440960px;}
._12{width:32.700000px;}
._13{width:34.373040px;}
._23{width:36.072000px;}
._21{width:37.344960px;}
._22{width:38.520000px;}
._16{width:44.424000px;}
._5{width:57.743280px;}
._6{width:58.988160px;}
._26{width:101.795520px;}
._25{width:193.856552px;}
._1a{width:237.243600px;}
._18{width:272.087520px;}
._19{width:283.109520px;}
._17{width:323.705040px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs8{font-size:38.880000px;}
.fs26{font-size:40.298247px;}
.fs22{font-size:40.319613px;}
.fsc{font-size:40.320540px;}
.fse{font-size:40.321031px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs17{font-size:52.257652px;}
.fs19{font-size:52.259351px;}
.fs1e{font-size:52.272624px;}
.fs1d{font-size:52.322405px;}
.fs16{font-size:52.332136px;}
.fs1a{font-size:52.385277px;}
.fs1f{font-size:52.398582px;}
.fs15{font-size:52.458237px;}
.fs12{font-size:52.608718px;}
.fs1c{font-size:52.627667px;}
.fs11{font-size:52.735486px;}
.fs13{font-size:52.747922px;}
.fs7{font-size:54.000000px;}
.fs1b{font-size:57.926028px;}
.fs20{font-size:57.940740px;}
.fs18{font-size:58.006705px;}
.fs14{font-size:58.440046px;}
.fs23{font-size:59.719349px;}
.fs25{font-size:59.727759px;}
.fs21{font-size:59.759427px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.760183px;}
.fsb{font-size:59.760801px;}
.fsd{font-size:59.761527px;}
.fs24{font-size:59.863251px;}
.fsa{font-size:59.904184px;}
.fsf{font-size:66.206315px;}
.fs4{font-size:66.240000px;}
.fs10{font-size:66.350242px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y192{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y172{bottom:0.180000px;}
.y109{bottom:3.420000px;}
.y114{bottom:3.600000px;}
.yfe{bottom:5.220000px;}
.y118{bottom:5.580000px;}
.yfb{bottom:5.940000px;}
.y11b{bottom:6.120000px;}
.y10c{bottom:6.660000px;}
.y108{bottom:7.020000px;}
.y11e{bottom:7.740000px;}
.y105{bottom:8.640000px;}
.y142{bottom:9.684107px;}
.y10d{bottom:9.900000px;}
.y1da{bottom:9.965226px;}
.y112{bottom:12.240000px;}
.y153{bottom:14.075596px;}
.y143{bottom:17.640000px;}
.y1db{bottom:17.820000px;}
.yf9{bottom:18.360000px;}
.y17f{bottom:19.702878px;}
.y1a9{bottom:19.702881px;}
.y18e{bottom:19.738753px;}
.y1c1{bottom:19.743767px;}
.y19a{bottom:19.965437px;}
.y16e{bottom:19.965442px;}
.y1cc{bottom:19.980000px;}
.y113{bottom:20.880000px;}
.y134{bottom:21.635695px;}
.y135{bottom:22.500000px;}
.y140{bottom:32.795729px;}
.y1d8{bottom:33.277059px;}
.y17c{bottom:39.658446px;}
.y1a7{bottom:39.658449px;}
.y18b{bottom:39.698048px;}
.y1be{bottom:39.708132px;}
.y198{bottom:40.026472px;}
.y16b{bottom:40.026479px;}
.y152{bottom:41.170560px;}
.y132{bottom:43.451765px;}
.y139{bottom:52.307789px;}
.y1d0{bottom:52.775786px;}
.y174{bottom:56.745203px;}
.y19f{bottom:56.745207px;}
.y183{bottom:56.761040px;}
.y1ae{bottom:56.775457px;}
.y1b6{bottom:56.775458px;}
.yf{bottom:57.060000px;}
.y15b{bottom:57.203537px;}
.y163{bottom:57.203543px;}
.y116{bottom:60.840000px;}
.y120{bottom:60.885000px;}
.y12c{bottom:61.343820px;}
.ye{bottom:75.960000px;}
.y1d1{bottom:85.189722px;}
.y184{bottom:88.525911px;}
.y1af{bottom:88.548395px;}
.y1b7{bottom:88.548396px;}
.y175{bottom:88.554315px;}
.y1a0{bottom:88.554319px;}
.y15c{bottom:88.927228px;}
.y164{bottom:88.927235px;}
.y13a{bottom:89.927905px;}
.y52{bottom:100.116000px;}
.yb6{bottom:101.376000px;}
.y12d{bottom:104.327953px;}
.yd{bottom:106.956000px;}
.ya2{bottom:110.916000px;}
.y14a{bottom:116.156408px;}
.y195{bottom:116.856000px;}
.y1d2{bottom:117.603657px;}
.y185{bottom:120.290782px;}
.y1b0{bottom:120.321333px;}
.y1b8{bottom:120.321334px;}
.y176{bottom:120.363426px;}
.y1a1{bottom:120.363430px;}
.y15d{bottom:120.650919px;}
.y165{bottom:120.650926px;}
.yc0{bottom:120.816000px;}
.y1d9{bottom:122.964009px;}
.y141{bottom:125.640015px;}
.y133{bottom:126.324020px;}
.y13b{bottom:127.548020px;}
.y8c{bottom:128.016000px;}
.y9a{bottom:128.916000px;}
.y1cb{bottom:131.544037px;}
.y1c7{bottom:131.616000px;}
.ya7{bottom:134.316000px;}
.ydc{bottom:137.916000px;}
.y51{bottom:141.516000px;}
.y16d{bottom:141.977000px;}
.y18d{bottom:142.076005px;}
.y17e{bottom:142.210517px;}
.yb5{bottom:144.216000px;}
.yae{bottom:146.916000px;}
.y12e{bottom:147.312084px;}
.y1d3{bottom:149.978620px;}
.y194{bottom:151.230000px;}
.y186{bottom:152.058276px;}
.y1b1{bottom:152.096895px;}
.y1b9{bottom:152.096897px;}
.y177{bottom:152.167284px;}
.y1a2{bottom:152.167287px;}
.y7a{bottom:152.310000px;}
.y15e{bottom:152.369328px;}
.y166{bottom:152.369335px;}
.yc{bottom:153.930000px;}
.y14b{bottom:161.782694px;}
.ybf{bottom:162.210000px;}
.y18c{bottom:163.483451px;}
.y1bf{bottom:163.524971px;}
.y17d{bottom:163.621506px;}
.y16c{bottom:163.686012px;}
.y13c{bottom:165.139636px;}
.y1c6{bottom:165.990000px;}
.yf5{bottom:167.610000px;}
.y8b{bottom:169.410000px;}
.y99{bottom:170.310000px;}
.y39{bottom:173.910000px;}
.ya6{bottom:175.710000px;}
.y199{bottom:176.904217px;}
.y1c0{bottom:176.973627px;}
.y1a8{bottom:177.111747px;}
.ydb{bottom:179.310000px;}
.y1d4{bottom:182.401549px;}
.y50{bottom:182.910000px;}
.y187{bottom:183.815276px;}
.y1b2{bottom:183.861961px;}
.y1ba{bottom:183.861962px;}
.y178{bottom:183.981649px;}
.y1a3{bottom:183.981653px;}
.y15f{bottom:184.100942px;}
.y167{bottom:184.100949px;}
.yd1{bottom:184.710000px;}
.yc6{bottom:185.610000px;}
.y193{bottom:185.790000px;}
.yb4{bottom:186.870000px;}
.yad{bottom:188.310000px;}
.y12f{bottom:190.339717px;}
.yb{bottom:193.350000px;}
.ya1{bottom:193.710000px;}
.y14c{bottom:196.639959px;}
.y1c5{bottom:200.550000px;}
.y13d{bottom:202.759751px;}
.ybe{bottom:203.610000px;}
.y8a{bottom:210.810000px;}
.y79{bottom:211.710000px;}
.y1d5{bottom:214.809489px;}
.y38{bottom:215.310000px;}
.y188{bottom:215.559160px;}
.y1b3{bottom:215.613906px;}
.y1bb{bottom:215.613908px;}
.yf4{bottom:215.670000px;}
.y179{bottom:215.796015px;}
.y1a4{bottom:215.796019px;}
.y160{bottom:215.819351px;}
.y168{bottom:215.819358px;}
.y191{bottom:217.665000px;}
.y18f{bottom:217.740000px;}
.y182{bottom:217.908072px;}
.y66{bottom:218.010000px;}
.ye0{bottom:220.710000px;}
.y4f{bottom:224.310000px;}
.yd0{bottom:226.110000px;}
.yc5{bottom:227.010000px;}
.y14d{bottom:228.993498px;}
.yac{bottom:229.710000px;}
.y1c4{bottom:232.425000px;}
.y1c2{bottom:232.439998px;}
.y1ad{bottom:232.608113px;}
.y130{bottom:233.314849px;}
.ya0{bottom:235.110000px;}
.y13e{bottom:240.379867px;}
.y1d6{bottom:247.217428px;}
.y189{bottom:247.316160px;}
.y1b4{bottom:247.378972px;}
.y1bc{bottom:247.378973px;}
.y161{bottom:247.550965px;}
.y169{bottom:247.550972px;}
.y17a{bottom:247.597245px;}
.y1a5{bottom:247.597249px;}
.yb3{bottom:247.710000px;}
.y89{bottom:252.210000px;}
.y78{bottom:253.110000px;}
.y37{bottom:256.710000px;}
.y14e{bottom:260.477480px;}
.ydf{bottom:262.110000px;}
.ybd{bottom:263.010000px;}
.y4e{bottom:265.710000px;}
.yf3{bottom:266.070000px;}
.yc4{bottom:268.410000px;}
.y98{bottom:271.110000px;}
.y14f{bottom:275.949608px;}
.y131{bottom:276.304981px;}
.y65{bottom:276.510000px;}
.y13f{bottom:277.954982px;}
.y181{bottom:278.474217px;}
.y18a{bottom:279.086278px;}
.y19c{bottom:279.114077px;}
.y170{bottom:279.114085px;}
.y190{bottom:279.123177px;}
.y1b5{bottom:279.157158px;}
.y1bd{bottom:279.157160px;}
.y1c3{bottom:279.194068px;}
.y162{bottom:279.269375px;}
.y16a{bottom:279.269381px;}
.y17b{bottom:279.411611px;}
.y1a6{bottom:279.411615px;}
.y1ab{bottom:279.419982px;}
.y1d7{bottom:279.640358px;}
.yd6{bottom:280.110000px;}
.yab{bottom:289.110000px;}
.y88{bottom:293.610000px;}
.y9f{bottom:294.330000px;}
.y77{bottom:294.510000px;}
.y150{bottom:296.279265px;}
.y36{bottom:298.110000px;}
.y137{bottom:298.290000px;}
.y1ce{bottom:300.270000px;}
.y12a{bottom:303.165000px;}
.ybc{bottom:304.410000px;}
.y4d{bottom:307.110000px;}
.yf2{bottom:307.470000px;}
.y151{bottom:309.022781px;}
.yc3{bottom:309.810000px;}
.y97{bottom:312.510000px;}
.y64{bottom:317.910000px;}
.yd5{bottom:321.510000px;}
.y154{bottom:328.737750px;}
.yaa{bottom:330.510000px;}
.y148{bottom:334.290000px;}
.y87{bottom:335.010000px;}
.y35{bottom:339.510000px;}
.ybb{bottom:345.810000px;}
.y4c{bottom:348.555000px;}
.yf1{bottom:348.915000px;}
.yc2{bottom:351.255000px;}
.y76{bottom:353.955000px;}
.y63{bottom:359.355000px;}
.y1df{bottom:362.235000px;}
.yd4{bottom:362.955000px;}
.ya9{bottom:371.955000px;}
.y147{bottom:372.495000px;}
.y86{bottom:376.455000px;}
.y34{bottom:380.955000px;}
.yba{bottom:387.255000px;}
.y4b{bottom:389.955000px;}
.yf0{bottom:390.135000px;}
.y21{bottom:392.655000px;}
.yc1{bottom:393.915000px;}
.y96{bottom:395.355000px;}
.y1de{bottom:399.495000px;}
.y146{bottom:400.215000px;}
.y62{bottom:400.755000px;}
.yd3{bottom:404.355000px;}
.ycf{bottom:409.755000px;}
.y75{bottom:413.355000px;}
.y85{bottom:418.215000px;}
.y33{bottom:422.355000px;}
.y1dd{bottom:425.415000px;}
.y145{bottom:426.135000px;}
.yb9{bottom:428.655000px;}
.y4a{bottom:431.355000px;}
.y95{bottom:436.755000px;}
.yef{bottom:441.975000px;}
.y61{bottom:442.155000px;}
.y20{bottom:443.055000px;}
.yda{bottom:445.755000px;}
.yce{bottom:451.155000px;}
.y1dc{bottom:451.335000px;}
.y144{bottom:452.055000px;}
.y74{bottom:454.755000px;}
.y84{bottom:460.155000px;}
.y32{bottom:463.755000px;}
.y1cd{bottom:465.195000px;}
.y136{bottom:465.915000px;}
.yb8{bottom:471.315000px;}
.yb2{bottom:472.755000px;}
.y94{bottom:478.155000px;}
.y1cf{bottom:483.024282px;}
.yee{bottom:483.375000px;}
.y60{bottom:483.555000px;}
.y138{bottom:483.595871px;}
.y1f{bottom:484.455000px;}
.yd9{bottom:487.155000px;}
.y49{bottom:490.755000px;}
.ycd{bottom:492.555000px;}
.y73{bottom:496.155000px;}
.y83{bottom:501.555000px;}
.y31{bottom:505.155000px;}
.yb1{bottom:514.155000px;}
.y10f{bottom:514.515000px;}
.y180{bottom:515.415000px;}
.y173{bottom:515.554723px;}
.y93{bottom:519.555000px;}
.yed{bottom:524.775000px;}
.yde{bottom:528.555000px;}
.y1ac{bottom:530.175000px;}
.y1aa{bottom:530.189996px;}
.y19e{bottom:530.329719px;}
.y48{bottom:532.155000px;}
.y72{bottom:537.555000px;}
.y5f{bottom:542.955000px;}
.y1e{bottom:543.855000px;}
.y30{bottom:546.555000px;}
.y10e{bottom:550.875000px;}
.yb0{bottom:555.555000px;}
.y92{bottom:560.955000px;}
.y10b{bottom:568.695000px;}
.ydd{bottom:569.955000px;}
.y47{bottom:573.555000px;}
.yec{bottom:576.615000px;}
.y71{bottom:578.955000px;}
.y5e{bottom:584.355000px;}
.y1d{bottom:585.255000px;}
.y2f{bottom:587.955000px;}
.y10a{bottom:592.455000px;}
.yaf{bottom:596.955000px;}
.y91{bottom:602.355000px;}
.y46{bottom:614.985000px;}
.yeb{bottom:618.045000px;}
.y9e{bottom:620.385000px;}
.y5d{bottom:625.785000px;}
.y1c{bottom:626.685000px;}
.y2e{bottom:629.385000px;}
.y70{bottom:638.385000px;}
.y107{bottom:638.925000px;}
.y90{bottom:643.785000px;}
.y45{bottom:656.385000px;}
.yea{bottom:659.265000px;}
.y106{bottom:659.805000px;}
.y9d{bottom:661.785000px;}
.y5c{bottom:667.185000px;}
.y1b{bottom:668.085000px;}
.y2d{bottom:670.785000px;}
.ycc{bottom:676.185000px;}
.y128{bottom:678.885000px;}
.y6f{bottom:679.785000px;}
.y104{bottom:682.305000px;}
.y44{bottom:697.785000px;}
.y8f{bottom:703.185000px;}
.y158{bottom:705.165000px;}
.y103{bottom:706.965000px;}
.y5b{bottom:708.585000px;}
.y1a{bottom:709.485000px;}
.ye9{bottom:711.105000px;}
.yd2{bottom:712.185000px;}
.ycb{bottom:717.585000px;}
.y6e{bottom:721.185000px;}
.y127{bottom:724.785000px;}
.y82{bottom:726.405000px;}
.y2c{bottom:730.185000px;}
.y43{bottom:739.185000px;}
.y8e{bottom:744.585000px;}
.y5a{bottom:749.985000px;}
.y157{bottom:750.165000px;}
.y19{bottom:750.885000px;}
.ye8{bottom:752.325000px;}
.yd8{bottom:753.585000px;}
.ya{bottom:760.245000px;}
.yb7{bottom:762.405000px;}
.y6d{bottom:762.585000px;}
.y2b{bottom:771.585000px;}
.yca{bottom:776.985000px;}
.y42{bottom:780.585000px;}
.y126{bottom:781.845000px;}
.y156{bottom:784.725000px;}
.y102{bottom:785.625000px;}
.y81{bottom:785.985000px;}
.y129{bottom:789.945000px;}
.y1c9{bottom:791.205000px;}
.y59{bottom:791.385000px;}
.y18{bottom:792.285000px;}
.yd7{bottom:794.985000px;}
.y6c{bottom:803.985000px;}
.ye7{bottom:804.165000px;}
.y9{bottom:810.645000px;}
.y1ca{bottom:811.195867px;}
.y12b{bottom:812.395867px;}
.y2a{bottom:812.985000px;}
.y171{bottom:813.165000px;}
.y16f{bottom:813.314992px;}
.y15a{bottom:813.318155px;}
.y11f{bottom:818.205000px;}
.yc9{bottom:818.385000px;}
.y149{bottom:819.614992px;}
.y155{bottom:819.645000px;}
.y41{bottom:821.985000px;}
.y80{bottom:827.385000px;}
.y19d{bottom:827.925000px;}
.y19b{bottom:828.090000px;}
.y197{bottom:828.093163px;}
.ya5{bottom:832.785000px;}
.y17{bottom:833.685000px;}
.y101{bottom:838.185000px;}
.y125{bottom:840.705000px;}
.ye1{bottom:845.025000px;}
.ya8{bottom:845.205000px;}
.y6b{bottom:845.385000px;}
.ye6{bottom:845.565000px;}
.y58{bottom:850.785000px;}
.y29{bottom:854.385000px;}
.y8{bottom:859.605000px;}
.yc8{bottom:859.785000px;}
.y124{bottom:862.305000px;}
.y40{bottom:863.385000px;}
.y7f{bottom:868.785000px;}
.y16{bottom:874.905000px;}
.y123{bottom:885.570000px;}
.y6a{bottom:886.830000px;}
.ye5{bottom:887.010000px;}
.y100{bottom:890.610000px;}
.ya4{bottom:892.050000px;}
.y57{bottom:892.230000px;}
.y28{bottom:895.830000px;}
.y7{bottom:899.610000px;}
.y3f{bottom:904.830000px;}
.y122{bottom:907.170000px;}
.y7e{bottom:910.230000px;}
.y15{bottom:916.350000px;}
.yff{bottom:924.810000px;}
.y69{bottom:928.230000px;}
.y121{bottom:928.770000px;}
.y56{bottom:933.450000px;}
.y27{bottom:937.230000px;}
.y6{bottom:944.430000px;}
.y3e{bottom:946.230000px;}
.yfd{bottom:947.310000px;}
.ya3{bottom:951.090000px;}
.y7d{bottom:951.450000px;}
.y115{bottom:951.810000px;}
.y14{bottom:957.750000px;}
.yfc{bottom:968.190000px;}
.y68{bottom:969.450000px;}
.y11d{bottom:973.410000px;}
.y55{bottom:974.850000px;}
.yc7{bottom:978.090000px;}
.y26{bottom:978.450000px;}
.ye4{bottom:979.890000px;}
.y5{bottom:985.830000px;}
.y3d{bottom:987.450000px;}
.yfa{bottom:990.690000px;}
.y7c{bottom:992.850000px;}
.y11c{bottom:995.010000px;}
.y13{bottom:1000.410000px;}
.y67{bottom:1010.850000px;}
.yf8{bottom:1015.350000px;}
.y11a{bottom:1018.050000px;}
.y25{bottom:1019.850000px;}
.y4{bottom:1027.230000px;}
.y3c{bottom:1028.850000px;}
.ye3{bottom:1031.550000px;}
.y54{bottom:1034.070000px;}
.y119{bottom:1040.550000px;}
.y12{bottom:1043.250000px;}
.y8d{bottom:1052.070000px;}
.y7b{bottom:1052.250000px;}
.y24{bottom:1061.250000px;}
.y117{bottom:1062.150000px;}
.y3b{bottom:1070.250000px;}
.y3{bottom:1074.930000px;}
.ye2{bottom:1083.210000px;}
.y11{bottom:1084.650000px;}
.y111{bottom:1086.090000px;}
.y53{bottom:1093.290000px;}
.y9c{bottom:1093.650000px;}
.yf7{bottom:1094.010000px;}
.y23{bottom:1102.650000px;}
.y3a{bottom:1111.650000px;}
.y2{bottom:1120.110000px;}
.y10{bottom:1143.720000px;}
.y22{bottom:1144.080000px;}
.y159{bottom:1144.800000px;}
.yf6{bottom:1146.780000px;}
.y110{bottom:1152.360000px;}
.y9b{bottom:1152.900000px;}
.y1{bottom:1153.080000px;}
.y1c8{bottom:1153.800000px;}
.y196{bottom:1155.420000px;}
.h12{height:20.865000px;}
.h16{height:20.880000px;}
.h1c{height:21.585000px;}
.h1f{height:21.600000px;}
.h1e{height:21.622500px;}
.h11{height:22.485000px;}
.h15{height:22.500000px;}
.h17{height:22.530000px;}
.h18{height:23.745000px;}
.h1a{height:34.545000px;}
.h3f{height:35.647614px;}
.h4b{height:35.656668px;}
.h38{height:35.697263px;}
.h40{height:35.733512px;}
.h4c{height:35.742587px;}
.h37{height:35.783280px;}
.h30{height:35.885928px;}
.h2f{height:35.972400px;}
.h39{height:37.942934px;}
.h48{height:37.989949px;}
.h3a{height:37.997015px;}
.h41{height:38.035599px;}
.h4d{height:38.045259px;}
.h32{height:38.197834px;}
.h45{height:38.211592px;}
.h31{height:38.298906px;}
.h54{height:40.736294px;}
.h28{height:40.764149px;}
.h55{height:40.834454px;}
.h27{height:40.862375px;}
.h43{height:42.058595px;}
.h4f{height:42.069277px;}
.h3c{height:42.117173px;}
.h34{height:42.431811px;}
.h57{height:43.360679px;}
.h2a{height:43.390329px;}
.h2c{height:45.161241px;}
.h19{height:45.184219px;}
.h2d{height:45.259418px;}
.hf{height:46.785000px;}
.h13{height:46.800000px;}
.h56{height:47.249806px;}
.h29{height:47.276520px;}
.h7{height:47.344922px;}
.he{height:60.226875px;}
.h51{height:62.327214px;}
.h10{height:62.327813px;}
.h22{height:62.328004px;}
.h24{height:62.328648px;}
.h23{height:62.478192px;}
.hd{height:64.546875px;}
.h8{height:65.010937px;}
.h2{height:70.664062px;}
.h14{height:70.790625px;}
.ha{height:72.562500px;}
.hb{height:73.794375px;}
.h9{height:75.093750px;}
.h6{height:80.464922px;}
.hc{height:80.644922px;}
.h4{height:87.859687px;}
.h5{height:99.874688px;}
.h1b{height:131.925000px;}
.h1d{height:132.142500px;}
.h3e{height:297.500524px;}
.h42{height:297.511175px;}
.h26{height:297.540918px;}
.h21{height:297.540922px;}
.h4a{height:297.576083px;}
.h4e{height:297.586737px;}
.h50{height:297.735000px;}
.h44{height:297.743168px;}
.h2e{height:297.743176px;}
.h46{height:297.746331px;}
.h33{height:297.746340px;}
.h3d{height:297.750000px;}
.h36{height:297.757243px;}
.h47{height:297.757247px;}
.h3b{height:297.896979px;}
.h49{height:297.896983px;}
.h35{height:297.930000px;}
.h53{height:299.316257px;}
.h25{height:324.030000px;}
.h52{height:326.010000px;}
.h20{height:328.890000px;}
.h2b{height:349.562156px;}
.h3{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:39.225000px;}
.w6{width:89.989500px;}
.w3{width:90.000000px;}
.wb{width:91.620000px;}
.wd{width:93.060000px;}
.wc{width:93.081000px;}
.w10{width:93.090000px;}
.w7{width:100.461000px;}
.w4{width:100.476000px;}
.wa{width:124.410000px;}
.w9{width:130.521000px;}
.wf{width:133.581000px;}
.w5{width:160.575000px;}
.w8{width:160.590000px;}
.we{width:164.910000px;}
.w15{width:219.448203px;}
.w14{width:382.689781px;}
.w21{width:385.172086px;}
.w1f{width:467.635515px;}
.w12{width:467.646271px;}
.w20{width:483.765000px;}
.w13{width:483.945000px;}
.w1a{width:487.934843px;}
.w19{width:487.947960px;}
.w1e{width:488.539444px;}
.w1d{width:488.552578px;}
.w1c{width:491.389706px;}
.w1b{width:491.402915px;}
.w17{width:492.512539px;}
.w16{width:492.525779px;}
.w18{width:669.570000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x53{left:3.714701px;}
.x2d{left:5.400000px;}
.x1d{left:7.369500px;}
.x33{left:9.000000px;}
.x21{left:11.145000px;}
.x14{left:12.240000px;}
.x12{left:14.940000px;}
.x31{left:16.545000px;}
.x29{left:17.629500px;}
.x5c{left:18.709902px;}
.x2e{left:21.229500px;}
.x37{left:22.665000px;}
.x39{left:24.300000px;}
.x18{left:26.460000px;}
.x1f{left:28.290000px;}
.x3c{left:29.340000px;}
.x16{left:31.485000px;}
.x24{left:34.200000px;}
.x27{left:35.445000px;}
.x4b{left:36.796443px;}
.x1b{left:38.700000px;}
.x1a{left:40.860000px;}
.x17{left:42.840000px;}
.x25{left:44.983500px;}
.x3b{left:46.440000px;}
.x2b{left:48.090000px;}
.x26{left:50.250000px;}
.x2a{left:52.200000px;}
.x4a{left:53.574096px;}
.x35{left:56.910000px;}
.x28{left:57.960000px;}
.x2c{left:59.220000px;}
.x19{left:60.645000px;}
.x57{left:62.360615px;}
.x3a{left:65.370000px;}
.x41{left:67.393722px;}
.x4c{left:69.207817px;}
.x8{left:73.618125px;}
.x4{left:82.654125px;}
.x2{left:91.654125px;}
.x3{left:100.656000px;}
.x4e{left:122.436000px;}
.x1{left:127.656000px;}
.x46{left:134.496000px;}
.x54{left:142.596000px;}
.x55{left:144.756000px;}
.xd{left:154.650000px;}
.x30{left:168.345000px;}
.xc{left:170.130000px;}
.xe{left:181.650000px;}
.x42{left:188.794825px;}
.x3d{left:195.525000px;}
.x48{left:210.839998px;}
.x2f{left:212.970000px;}
.x59{left:214.989401px;}
.x58{left:216.217283px;}
.x1e{left:217.665000px;}
.x4d{left:220.074288px;}
.x3f{left:234.750000px;}
.x10{left:241.995000px;}
.x5a{left:243.089998px;}
.x5b{left:247.287629px;}
.x3e{left:251.568374px;}
.x32{left:261.435000px;}
.x1c{left:277.635000px;}
.x11{left:281.595000px;}
.x47{left:296.535000px;}
.x7{left:318.315000px;}
.xa{left:329.475000px;}
.x5{left:343.695000px;}
.x44{left:347.489996px;}
.x34{left:354.495000px;}
.x9{left:361.515000px;}
.x13{left:371.595000px;}
.x56{left:377.715000px;}
.x43{left:390.720000px;}
.x5d{left:393.600000px;}
.x50{left:428.633426px;}
.x49{left:432.628289px;}
.xb{left:448.845000px;}
.x6{left:452.985000px;}
.xf{left:457.125000px;}
.x51{left:468.272638px;}
.x15{left:472.080000px;}
.x40{left:475.860000px;}
.x20{left:478.740000px;}
.x36{left:519.420000px;}
.x45{left:566.970000px;}
.x52{left:578.994000px;}
.x4f{left:581.154000px;}
.x22{left:609.270000px;}
.x38{left:653.010000px;}
.x23{left:733.680000px;}
@media print{
.v2{vertical-align:-29.418667pt;}
.v7{vertical-align:-26.880000pt;}
.v9{vertical-align:-12.800327pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v8{vertical-align:16.000214pt;}
.v4{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.v6{vertical-align:35.200000pt;}
.ls20{letter-spacing:-1.920000pt;}
.ls1f{letter-spacing:-1.472000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.597333pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.183467pt;}
.ls3e{letter-spacing:-0.163822pt;}
.ls46{letter-spacing:-0.163449pt;}
.ls42{letter-spacing:-0.162300pt;}
.ls37{letter-spacing:-0.156271pt;}
.ls4a{letter-spacing:-0.156182pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.102823pt;}
.ls3f{letter-spacing:-0.102282pt;}
.ls30{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls47{letter-spacing:-0.050431pt;}
.ls40{letter-spacing:-0.050369pt;}
.ls2d{letter-spacing:-0.047360pt;}
.ls48{letter-spacing:-0.045345pt;}
.ls41{letter-spacing:-0.045333pt;}
.ls25{letter-spacing:-0.040320pt;}
.ls35{letter-spacing:-0.037867pt;}
.ls33{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.003840pt;}
.ls34{letter-spacing:0.033280pt;}
.ls2a{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.136533pt;}
.ls27{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.169071pt;}
.ls39{letter-spacing:0.176550pt;}
.lsd{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.233067pt;}
.ls38{letter-spacing:0.235912pt;}
.ls17{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.271360pt;}
.ls12{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.279680pt;}
.lsa{letter-spacing:0.280320pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.359680pt;}
.ls4{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.439680pt;}
.ls10{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls2e{letter-spacing:0.592000pt;}
.ls29{letter-spacing:0.624640pt;}
.lsf{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.643840pt;}
.ls8{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls2b{letter-spacing:0.784640pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls21{letter-spacing:1.408000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls22{letter-spacing:3.200000pt;}
.ls1{letter-spacing:4.000000pt;}
.ls18{letter-spacing:8.320000pt;}
.ls24{letter-spacing:9.600000pt;}
.ls49{letter-spacing:12.450239pt;}
.ls26{letter-spacing:48.768000pt;}
.ls15{letter-spacing:128.463360pt;}
.ls3c{letter-spacing:270.835802pt;}
.ls3b{letter-spacing:271.268271pt;}
.ls3a{letter-spacing:272.579889pt;}
.ls45{letter-spacing:276.847944pt;}
.ls44{letter-spacing:277.078282pt;}
.ls43{letter-spacing:278.561460pt;}
.ws2{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-53.120000pt;}
.wsc{word-spacing:-34.385920pt;}
.ws17{word-spacing:-17.408000pt;}
.ws18{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.704000pt;}
.wsf{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.601707pt;}
.ws13{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.368640pt;}
.wse{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.168000pt;}
.ws1e{word-spacing:-14.903893pt;}
.ws26{word-spacing:-14.767558pt;}
.ws23{word-spacing:-14.767405pt;}
.ws1b{word-spacing:-14.767360pt;}
.ws4c{word-spacing:-14.767218pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-14.672427pt;}
.ws15{word-spacing:-14.528000pt;}
.ws2f{word-spacing:-13.564938pt;}
.ws30{word-spacing:-13.476663pt;}
.ws2e{word-spacing:-13.329026pt;}
.ws2d{word-spacing:-13.300113pt;}
.ws40{word-spacing:-13.280000pt;}
.ws20{word-spacing:-13.096533pt;}
.ws28{word-spacing:-12.034085pt;}
.ws4e{word-spacing:-12.025862pt;}
.ws2a{word-spacing:-12.005427pt;}
.ws27{word-spacing:-12.005157pt;}
.ws11{word-spacing:-12.000000pt;}
.ws50{word-spacing:-11.998643pt;}
.ws4d{word-spacing:-11.996954pt;}
.ws2c{word-spacing:-11.849156pt;}
.ws52{word-spacing:-11.842461pt;}
.ws35{word-spacing:-11.739956pt;}
.ws3a{word-spacing:-11.652902pt;}
.ws49{word-spacing:-11.639651pt;}
.ws3f{word-spacing:-11.636695pt;}
.ws16{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.679680pt;}
.ws31{word-spacing:-10.593973pt;}
.ws32{word-spacing:-10.568507pt;}
.ws36{word-spacing:-10.538277pt;}
.ws46{word-spacing:-10.526293pt;}
.ws3c{word-spacing:-10.523620pt;}
.ws37{word-spacing:-10.512945pt;}
.ws45{word-spacing:-10.500989pt;}
.ws3b{word-spacing:-10.498323pt;}
.ws4{word-spacing:-10.400000pt;}
.wsa{word-spacing:-10.319360pt;}
.ws8{word-spacing:-10.122667pt;}
.ws25{word-spacing:-9.963654pt;}
.ws4b{word-spacing:-9.963424pt;}
.ws1c{word-spacing:-9.607680pt;}
.ws22{word-spacing:-9.592320pt;}
.ws21{word-spacing:-8.640000pt;}
.ws2b{word-spacing:-8.100047pt;}
.ws51{word-spacing:-8.095470pt;}
.ws1{word-spacing:0.000000pt;}
.ws4a{word-spacing:179.165137pt;}
.ws29{word-spacing:201.514603pt;}
.ws3e{word-spacing:224.662694pt;}
.ws39{word-spacing:224.872024pt;}
.ws34{word-spacing:226.060504pt;}
.ws48{word-spacing:230.644450pt;}
.ws44{word-spacing:230.803466pt;}
.ws42{word-spacing:232.023295pt;}
.ws3d{word-spacing:237.015210pt;}
.ws38{word-spacing:237.283572pt;}
.ws33{word-spacing:238.678502pt;}
.ws47{word-spacing:242.906800pt;}
.ws43{word-spacing:243.261718pt;}
.ws41{word-spacing:244.500439pt;}
.ws24{word-spacing:261.051681pt;}
.ws4f{word-spacing:300.815606pt;}
._20{margin-left:-3.206187pt;}
._4{margin-left:-2.128000pt;}
._1{margin-left:-1.191680pt;}
._2{width:1.532160pt;}
._7{width:2.434133pt;}
._d{width:3.720533pt;}
._a{width:5.184000pt;}
._b{width:6.858667pt;}
._c{width:8.103680pt;}
._e{width:9.344000pt;}
._3{width:10.469760pt;}
._0{width:11.831680pt;}
._8{width:12.872320pt;}
._10{width:13.831680pt;}
._9{width:14.891733pt;}
._f{width:17.344000pt;}
._14{width:18.936533pt;}
._15{width:20.583680pt;}
._1b{width:21.504000pt;}
._1c{width:22.634667pt;}
._1d{width:23.639680pt;}
._1e{width:24.979840pt;}
._1f{width:25.906133pt;}
._24{width:27.048320pt;}
._11{width:27.947520pt;}
._12{width:29.066667pt;}
._13{width:30.553813pt;}
._23{width:32.064000pt;}
._21{width:33.195520pt;}
._22{width:34.240000pt;}
._16{width:39.488000pt;}
._5{width:51.327360pt;}
._6{width:52.433920pt;}
._26{width:90.484906pt;}
._25{width:172.316935pt;}
._1a{width:210.883200pt;}
._18{width:241.855573pt;}
._19{width:251.652907pt;}
._17{width:287.737813pt;}
.fs8{font-size:34.560000pt;}
.fs26{font-size:35.820664pt;}
.fs22{font-size:35.839656pt;}
.fsc{font-size:35.840480pt;}
.fse{font-size:35.840916pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs17{font-size:46.451246pt;}
.fs19{font-size:46.452757pt;}
.fs1e{font-size:46.464554pt;}
.fs1d{font-size:46.508804pt;}
.fs16{font-size:46.517454pt;}
.fs1a{font-size:46.564691pt;}
.fs1f{font-size:46.576517pt;}
.fs15{font-size:46.629544pt;}
.fs12{font-size:46.763305pt;}
.fs1c{font-size:46.780149pt;}
.fs11{font-size:46.875988pt;}
.fs13{font-size:46.887042pt;}
.fs7{font-size:48.000000pt;}
.fs1b{font-size:51.489803pt;}
.fs20{font-size:51.502880pt;}
.fs18{font-size:51.561515pt;}
.fs14{font-size:51.946708pt;}
.fs23{font-size:53.083865pt;}
.fs25{font-size:53.091341pt;}
.fs21{font-size:53.119490pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.120163pt;}
.fsb{font-size:53.120712pt;}
.fsd{font-size:53.121358pt;}
.fs24{font-size:53.211778pt;}
.fsa{font-size:53.248163pt;}
.fsf{font-size:58.850058pt;}
.fs4{font-size:58.880000pt;}
.fs10{font-size:58.977993pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y192{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y172{bottom:0.160000pt;}
.y109{bottom:3.040000pt;}
.y114{bottom:3.200000pt;}
.yfe{bottom:4.640000pt;}
.y118{bottom:4.960000pt;}
.yfb{bottom:5.280000pt;}
.y11b{bottom:5.440000pt;}
.y10c{bottom:5.920000pt;}
.y108{bottom:6.240000pt;}
.y11e{bottom:6.880000pt;}
.y105{bottom:7.680000pt;}
.y142{bottom:8.608095pt;}
.y10d{bottom:8.800000pt;}
.y1da{bottom:8.857979pt;}
.y112{bottom:10.880000pt;}
.y153{bottom:12.511641pt;}
.y143{bottom:15.680000pt;}
.y1db{bottom:15.840000pt;}
.yf9{bottom:16.320000pt;}
.y17f{bottom:17.513670pt;}
.y1a9{bottom:17.513672pt;}
.y18e{bottom:17.545558pt;}
.y1c1{bottom:17.550015pt;}
.y19a{bottom:17.747055pt;}
.y16e{bottom:17.747059pt;}
.y1cc{bottom:17.760000pt;}
.y113{bottom:18.560000pt;}
.y134{bottom:19.231729pt;}
.y135{bottom:20.000000pt;}
.y140{bottom:29.151759pt;}
.y1d8{bottom:29.579608pt;}
.y17c{bottom:35.251952pt;}
.y1a7{bottom:35.251955pt;}
.y18b{bottom:35.287153pt;}
.y1be{bottom:35.296117pt;}
.y198{bottom:35.579087pt;}
.y16b{bottom:35.579093pt;}
.y152{bottom:36.596053pt;}
.y132{bottom:38.623791pt;}
.y139{bottom:46.495813pt;}
.y1d0{bottom:46.911810pt;}
.y174{bottom:50.440181pt;}
.y19f{bottom:50.440184pt;}
.y183{bottom:50.454258pt;}
.y1ae{bottom:50.467072pt;}
.y1b6{bottom:50.467074pt;}
.yf{bottom:50.720000pt;}
.y15b{bottom:50.847588pt;}
.y163{bottom:50.847594pt;}
.y116{bottom:54.080000pt;}
.y120{bottom:54.120000pt;}
.y12c{bottom:54.527840pt;}
.ye{bottom:67.520000pt;}
.y1d1{bottom:75.724197pt;}
.y184{bottom:78.689699pt;}
.y1af{bottom:78.709684pt;}
.y1b7{bottom:78.709686pt;}
.y175{bottom:78.714947pt;}
.y1a0{bottom:78.714950pt;}
.y15c{bottom:79.046425pt;}
.y164{bottom:79.046431pt;}
.y13a{bottom:79.935915pt;}
.y52{bottom:88.992000pt;}
.yb6{bottom:90.112000pt;}
.y12d{bottom:92.735958pt;}
.yd{bottom:95.072000pt;}
.ya2{bottom:98.592000pt;}
.y14a{bottom:103.250141pt;}
.y195{bottom:103.872000pt;}
.y1d2{bottom:104.536584pt;}
.y185{bottom:106.925140pt;}
.y1b0{bottom:106.952296pt;}
.y1b8{bottom:106.952297pt;}
.y176{bottom:106.989712pt;}
.y1a1{bottom:106.989716pt;}
.y15d{bottom:107.245261pt;}
.y165{bottom:107.245267pt;}
.yc0{bottom:107.392000pt;}
.y1d9{bottom:109.301341pt;}
.y141{bottom:111.680013pt;}
.y133{bottom:112.288018pt;}
.y13b{bottom:113.376018pt;}
.y8c{bottom:113.792000pt;}
.y9a{bottom:114.592000pt;}
.y1cb{bottom:116.928032pt;}
.y1c7{bottom:116.992000pt;}
.ya7{bottom:119.392000pt;}
.ydc{bottom:122.592000pt;}
.y51{bottom:125.792000pt;}
.y16d{bottom:126.201778pt;}
.y18d{bottom:126.289783pt;}
.y17e{bottom:126.409348pt;}
.yb5{bottom:128.192000pt;}
.yae{bottom:130.592000pt;}
.y12e{bottom:130.944075pt;}
.y1d3{bottom:133.314328pt;}
.y194{bottom:134.426667pt;}
.y186{bottom:135.162912pt;}
.y1b1{bottom:135.197240pt;}
.y1b9{bottom:135.197242pt;}
.y177{bottom:135.259808pt;}
.y1a2{bottom:135.259811pt;}
.y7a{bottom:135.386667pt;}
.y15e{bottom:135.439403pt;}
.y166{bottom:135.439409pt;}
.yc{bottom:136.826667pt;}
.y14b{bottom:143.806839pt;}
.ybf{bottom:144.186667pt;}
.y18c{bottom:145.318623pt;}
.y1bf{bottom:145.355530pt;}
.y17d{bottom:145.441339pt;}
.y16c{bottom:145.498678pt;}
.y13c{bottom:146.790787pt;}
.y1c6{bottom:147.546667pt;}
.yf5{bottom:148.986667pt;}
.y8b{bottom:150.586667pt;}
.y99{bottom:151.386667pt;}
.y39{bottom:154.586667pt;}
.ya6{bottom:156.186667pt;}
.y199{bottom:157.248192pt;}
.y1c0{bottom:157.309891pt;}
.y1a8{bottom:157.432664pt;}
.ydb{bottom:159.386667pt;}
.y1d4{bottom:162.134710pt;}
.y50{bottom:162.586667pt;}
.y187{bottom:163.391357pt;}
.y1b2{bottom:163.432854pt;}
.y1ba{bottom:163.432856pt;}
.y178{bottom:163.539244pt;}
.y1a3{bottom:163.539247pt;}
.y15f{bottom:163.645282pt;}
.y167{bottom:163.645288pt;}
.yd1{bottom:164.186667pt;}
.yc6{bottom:164.986667pt;}
.y193{bottom:165.146667pt;}
.yb4{bottom:166.106667pt;}
.yad{bottom:167.386667pt;}
.y12f{bottom:169.190859pt;}
.yb{bottom:171.866667pt;}
.ya1{bottom:172.186667pt;}
.y14c{bottom:174.791075pt;}
.y1c5{bottom:178.266667pt;}
.y13d{bottom:180.230890pt;}
.ybe{bottom:180.986667pt;}
.y8a{bottom:187.386667pt;}
.y79{bottom:188.186667pt;}
.y1d5{bottom:190.941768pt;}
.y38{bottom:191.386667pt;}
.y188{bottom:191.608142pt;}
.y1b3{bottom:191.656805pt;}
.y1bb{bottom:191.656807pt;}
.yf4{bottom:191.706667pt;}
.y179{bottom:191.818680pt;}
.y1a4{bottom:191.818683pt;}
.y160{bottom:191.839423pt;}
.y168{bottom:191.839429pt;}
.y191{bottom:193.480000pt;}
.y18f{bottom:193.546667pt;}
.y182{bottom:193.696064pt;}
.y66{bottom:193.786667pt;}
.ye0{bottom:196.186667pt;}
.y4f{bottom:199.386667pt;}
.yd0{bottom:200.986667pt;}
.yc5{bottom:201.786667pt;}
.y14d{bottom:203.549776pt;}
.yac{bottom:204.186667pt;}
.y1c4{bottom:206.600000pt;}
.y1c2{bottom:206.613332pt;}
.y1ad{bottom:206.762767pt;}
.y130{bottom:207.390976pt;}
.ya0{bottom:208.986667pt;}
.y13e{bottom:213.670993pt;}
.y1d6{bottom:219.748825pt;}
.y189{bottom:219.836587pt;}
.y1b4{bottom:219.892419pt;}
.y1bc{bottom:219.892421pt;}
.y161{bottom:220.045303pt;}
.y169{bottom:220.045308pt;}
.y17a{bottom:220.086440pt;}
.y1a5{bottom:220.086443pt;}
.yb3{bottom:220.186667pt;}
.y89{bottom:224.186667pt;}
.y78{bottom:224.986667pt;}
.y37{bottom:228.186667pt;}
.y14e{bottom:231.535538pt;}
.ydf{bottom:232.986667pt;}
.ybd{bottom:233.786667pt;}
.y4e{bottom:236.186667pt;}
.yf3{bottom:236.506667pt;}
.yc4{bottom:238.586667pt;}
.y98{bottom:240.986667pt;}
.y14f{bottom:245.288541pt;}
.y131{bottom:245.604427pt;}
.y65{bottom:245.786667pt;}
.y13f{bottom:247.071095pt;}
.y181{bottom:247.532637pt;}
.y18a{bottom:248.076691pt;}
.y19c{bottom:248.101402pt;}
.y170{bottom:248.101409pt;}
.y190{bottom:248.109490pt;}
.y1b5{bottom:248.139696pt;}
.y1bd{bottom:248.139698pt;}
.y1c3{bottom:248.172505pt;}
.y162{bottom:248.239444pt;}
.y16a{bottom:248.239450pt;}
.y17b{bottom:248.365876pt;}
.y1a6{bottom:248.365880pt;}
.y1ab{bottom:248.373318pt;}
.y1d7{bottom:248.569207pt;}
.yd6{bottom:248.986667pt;}
.yab{bottom:256.986667pt;}
.y88{bottom:260.986667pt;}
.y9f{bottom:261.626667pt;}
.y77{bottom:261.786667pt;}
.y150{bottom:263.359346pt;}
.y36{bottom:264.986667pt;}
.y137{bottom:265.146667pt;}
.y1ce{bottom:266.906667pt;}
.y12a{bottom:269.480000pt;}
.ybc{bottom:270.586667pt;}
.y4d{bottom:272.986667pt;}
.yf2{bottom:273.306667pt;}
.y151{bottom:274.686916pt;}
.yc3{bottom:275.386667pt;}
.y97{bottom:277.786667pt;}
.y64{bottom:282.586667pt;}
.yd5{bottom:285.786667pt;}
.y154{bottom:292.211333pt;}
.yaa{bottom:293.786667pt;}
.y148{bottom:297.146667pt;}
.y87{bottom:297.786667pt;}
.y35{bottom:301.786667pt;}
.ybb{bottom:307.386667pt;}
.y4c{bottom:309.826667pt;}
.yf1{bottom:310.146667pt;}
.yc2{bottom:312.226667pt;}
.y76{bottom:314.626667pt;}
.y63{bottom:319.426667pt;}
.y1df{bottom:321.986667pt;}
.yd4{bottom:322.626667pt;}
.ya9{bottom:330.626667pt;}
.y147{bottom:331.106667pt;}
.y86{bottom:334.626667pt;}
.y34{bottom:338.626667pt;}
.yba{bottom:344.226667pt;}
.y4b{bottom:346.626667pt;}
.yf0{bottom:346.786667pt;}
.y21{bottom:349.026667pt;}
.yc1{bottom:350.146667pt;}
.y96{bottom:351.426667pt;}
.y1de{bottom:355.106667pt;}
.y146{bottom:355.746667pt;}
.y62{bottom:356.226667pt;}
.yd3{bottom:359.426667pt;}
.ycf{bottom:364.226667pt;}
.y75{bottom:367.426667pt;}
.y85{bottom:371.746667pt;}
.y33{bottom:375.426667pt;}
.y1dd{bottom:378.146667pt;}
.y145{bottom:378.786667pt;}
.yb9{bottom:381.026667pt;}
.y4a{bottom:383.426667pt;}
.y95{bottom:388.226667pt;}
.yef{bottom:392.866667pt;}
.y61{bottom:393.026667pt;}
.y20{bottom:393.826667pt;}
.yda{bottom:396.226667pt;}
.yce{bottom:401.026667pt;}
.y1dc{bottom:401.186667pt;}
.y144{bottom:401.826667pt;}
.y74{bottom:404.226667pt;}
.y84{bottom:409.026667pt;}
.y32{bottom:412.226667pt;}
.y1cd{bottom:413.506667pt;}
.y136{bottom:414.146667pt;}
.yb8{bottom:418.946667pt;}
.yb2{bottom:420.226667pt;}
.y94{bottom:425.026667pt;}
.y1cf{bottom:429.354918pt;}
.yee{bottom:429.666667pt;}
.y60{bottom:429.826667pt;}
.y138{bottom:429.862997pt;}
.y1f{bottom:430.626667pt;}
.yd9{bottom:433.026667pt;}
.y49{bottom:436.226667pt;}
.ycd{bottom:437.826667pt;}
.y73{bottom:441.026667pt;}
.y83{bottom:445.826667pt;}
.y31{bottom:449.026667pt;}
.yb1{bottom:457.026667pt;}
.y10f{bottom:457.346667pt;}
.y180{bottom:458.146667pt;}
.y173{bottom:458.270865pt;}
.y93{bottom:461.826667pt;}
.yed{bottom:466.466667pt;}
.yde{bottom:469.826667pt;}
.y1ac{bottom:471.266667pt;}
.y1aa{bottom:471.279996pt;}
.y19e{bottom:471.404195pt;}
.y48{bottom:473.026667pt;}
.y72{bottom:477.826667pt;}
.y5f{bottom:482.626667pt;}
.y1e{bottom:483.426667pt;}
.y30{bottom:485.826667pt;}
.y10e{bottom:489.666667pt;}
.yb0{bottom:493.826667pt;}
.y92{bottom:498.626667pt;}
.y10b{bottom:505.506667pt;}
.ydd{bottom:506.626667pt;}
.y47{bottom:509.826667pt;}
.yec{bottom:512.546667pt;}
.y71{bottom:514.626667pt;}
.y5e{bottom:519.426667pt;}
.y1d{bottom:520.226667pt;}
.y2f{bottom:522.626667pt;}
.y10a{bottom:526.626667pt;}
.yaf{bottom:530.626667pt;}
.y91{bottom:535.426667pt;}
.y46{bottom:546.653333pt;}
.yeb{bottom:549.373333pt;}
.y9e{bottom:551.453333pt;}
.y5d{bottom:556.253333pt;}
.y1c{bottom:557.053333pt;}
.y2e{bottom:559.453333pt;}
.y70{bottom:567.453333pt;}
.y107{bottom:567.933333pt;}
.y90{bottom:572.253333pt;}
.y45{bottom:583.453333pt;}
.yea{bottom:586.013333pt;}
.y106{bottom:586.493333pt;}
.y9d{bottom:588.253333pt;}
.y5c{bottom:593.053333pt;}
.y1b{bottom:593.853333pt;}
.y2d{bottom:596.253333pt;}
.ycc{bottom:601.053333pt;}
.y128{bottom:603.453333pt;}
.y6f{bottom:604.253333pt;}
.y104{bottom:606.493333pt;}
.y44{bottom:620.253333pt;}
.y8f{bottom:625.053333pt;}
.y158{bottom:626.813333pt;}
.y103{bottom:628.413333pt;}
.y5b{bottom:629.853333pt;}
.y1a{bottom:630.653333pt;}
.ye9{bottom:632.093333pt;}
.yd2{bottom:633.053333pt;}
.ycb{bottom:637.853333pt;}
.y6e{bottom:641.053333pt;}
.y127{bottom:644.253333pt;}
.y82{bottom:645.693333pt;}
.y2c{bottom:649.053333pt;}
.y43{bottom:657.053333pt;}
.y8e{bottom:661.853333pt;}
.y5a{bottom:666.653333pt;}
.y157{bottom:666.813333pt;}
.y19{bottom:667.453333pt;}
.ye8{bottom:668.733333pt;}
.yd8{bottom:669.853333pt;}
.ya{bottom:675.773333pt;}
.yb7{bottom:677.693333pt;}
.y6d{bottom:677.853333pt;}
.y2b{bottom:685.853333pt;}
.yca{bottom:690.653333pt;}
.y42{bottom:693.853333pt;}
.y126{bottom:694.973333pt;}
.y156{bottom:697.533333pt;}
.y102{bottom:698.333333pt;}
.y81{bottom:698.653333pt;}
.y129{bottom:702.173333pt;}
.y1c9{bottom:703.293333pt;}
.y59{bottom:703.453333pt;}
.y18{bottom:704.253333pt;}
.yd7{bottom:706.653333pt;}
.y6c{bottom:714.653333pt;}
.ye7{bottom:714.813333pt;}
.y9{bottom:720.573333pt;}
.y1ca{bottom:721.062993pt;}
.y12b{bottom:722.129660pt;}
.y2a{bottom:722.653333pt;}
.y171{bottom:722.813333pt;}
.y16f{bottom:722.946659pt;}
.y15a{bottom:722.949471pt;}
.y11f{bottom:727.293333pt;}
.yc9{bottom:727.453333pt;}
.y149{bottom:728.546659pt;}
.y155{bottom:728.573333pt;}
.y41{bottom:730.653333pt;}
.y80{bottom:735.453333pt;}
.y19d{bottom:735.933333pt;}
.y19b{bottom:736.080000pt;}
.y197{bottom:736.082812pt;}
.ya5{bottom:740.253333pt;}
.y17{bottom:741.053333pt;}
.y101{bottom:745.053333pt;}
.y125{bottom:747.293333pt;}
.ye1{bottom:751.133333pt;}
.ya8{bottom:751.293333pt;}
.y6b{bottom:751.453333pt;}
.ye6{bottom:751.613333pt;}
.y58{bottom:756.253333pt;}
.y29{bottom:759.453333pt;}
.y8{bottom:764.093333pt;}
.yc8{bottom:764.253333pt;}
.y124{bottom:766.493333pt;}
.y40{bottom:767.453333pt;}
.y7f{bottom:772.253333pt;}
.y16{bottom:777.693333pt;}
.y123{bottom:787.173333pt;}
.y6a{bottom:788.293333pt;}
.ye5{bottom:788.453333pt;}
.y100{bottom:791.653333pt;}
.ya4{bottom:792.933333pt;}
.y57{bottom:793.093333pt;}
.y28{bottom:796.293333pt;}
.y7{bottom:799.653333pt;}
.y3f{bottom:804.293333pt;}
.y122{bottom:806.373333pt;}
.y7e{bottom:809.093333pt;}
.y15{bottom:814.533333pt;}
.yff{bottom:822.053333pt;}
.y69{bottom:825.093333pt;}
.y121{bottom:825.573333pt;}
.y56{bottom:829.733333pt;}
.y27{bottom:833.093333pt;}
.y6{bottom:839.493333pt;}
.y3e{bottom:841.093333pt;}
.yfd{bottom:842.053333pt;}
.ya3{bottom:845.413333pt;}
.y7d{bottom:845.733333pt;}
.y115{bottom:846.053333pt;}
.y14{bottom:851.333333pt;}
.yfc{bottom:860.613333pt;}
.y68{bottom:861.733333pt;}
.y11d{bottom:865.253333pt;}
.y55{bottom:866.533333pt;}
.yc7{bottom:869.413333pt;}
.y26{bottom:869.733333pt;}
.ye4{bottom:871.013333pt;}
.y5{bottom:876.293333pt;}
.y3d{bottom:877.733333pt;}
.yfa{bottom:880.613333pt;}
.y7c{bottom:882.533333pt;}
.y11c{bottom:884.453333pt;}
.y13{bottom:889.253333pt;}
.y67{bottom:898.533333pt;}
.yf8{bottom:902.533333pt;}
.y11a{bottom:904.933333pt;}
.y25{bottom:906.533333pt;}
.y4{bottom:913.093333pt;}
.y3c{bottom:914.533333pt;}
.ye3{bottom:916.933333pt;}
.y54{bottom:919.173333pt;}
.y119{bottom:924.933333pt;}
.y12{bottom:927.333333pt;}
.y8d{bottom:935.173333pt;}
.y7b{bottom:935.333333pt;}
.y24{bottom:943.333333pt;}
.y117{bottom:944.133333pt;}
.y3b{bottom:951.333333pt;}
.y3{bottom:955.493333pt;}
.ye2{bottom:962.853333pt;}
.y11{bottom:964.133333pt;}
.y111{bottom:965.413333pt;}
.y53{bottom:971.813333pt;}
.y9c{bottom:972.133333pt;}
.yf7{bottom:972.453333pt;}
.y23{bottom:980.133333pt;}
.y3a{bottom:988.133333pt;}
.y2{bottom:995.653333pt;}
.y10{bottom:1016.640000pt;}
.y22{bottom:1016.960000pt;}
.y159{bottom:1017.600000pt;}
.yf6{bottom:1019.360000pt;}
.y110{bottom:1024.320000pt;}
.y9b{bottom:1024.800000pt;}
.y1{bottom:1024.960000pt;}
.y1c8{bottom:1025.600000pt;}
.y196{bottom:1027.040000pt;}
.h12{height:18.546667pt;}
.h16{height:18.560000pt;}
.h1c{height:19.186667pt;}
.h1f{height:19.200000pt;}
.h1e{height:19.220000pt;}
.h11{height:19.986667pt;}
.h15{height:20.000000pt;}
.h17{height:20.026667pt;}
.h18{height:21.106667pt;}
.h1a{height:30.706667pt;}
.h3f{height:31.686768pt;}
.h4b{height:31.694816pt;}
.h38{height:31.730900pt;}
.h40{height:31.763122pt;}
.h4c{height:31.771189pt;}
.h37{height:31.807360pt;}
.h30{height:31.898602pt;}
.h2f{height:31.975466pt;}
.h39{height:33.727052pt;}
.h48{height:33.768844pt;}
.h3a{height:33.775124pt;}
.h41{height:33.809422pt;}
.h4d{height:33.818008pt;}
.h32{height:33.953630pt;}
.h45{height:33.965860pt;}
.h31{height:34.043472pt;}
.h54{height:36.210039pt;}
.h28{height:36.234799pt;}
.h55{height:36.297292pt;}
.h27{height:36.322112pt;}
.h43{height:37.385418pt;}
.h4f{height:37.394913pt;}
.h3c{height:37.437487pt;}
.h34{height:37.717165pt;}
.h57{height:38.542826pt;}
.h2a{height:38.569181pt;}
.h2c{height:40.143326pt;}
.h19{height:40.163750pt;}
.h2d{height:40.230594pt;}
.hf{height:41.586667pt;}
.h13{height:41.600000pt;}
.h56{height:41.999828pt;}
.h29{height:42.023573pt;}
.h7{height:42.084375pt;}
.he{height:53.535000pt;}
.h51{height:55.401968pt;}
.h10{height:55.402500pt;}
.h22{height:55.402670pt;}
.h24{height:55.403243pt;}
.h23{height:55.536170pt;}
.hd{height:57.375000pt;}
.h8{height:57.787500pt;}
.h2{height:62.812500pt;}
.h14{height:62.925000pt;}
.ha{height:64.500000pt;}
.hb{height:65.595000pt;}
.h9{height:66.750000pt;}
.h6{height:71.524375pt;}
.hc{height:71.684375pt;}
.h4{height:78.097500pt;}
.h5{height:88.777500pt;}
.h1b{height:117.266667pt;}
.h1d{height:117.460000pt;}
.h3e{height:264.444910pt;}
.h42{height:264.454378pt;}
.h26{height:264.480816pt;}
.h21{height:264.480819pt;}
.h4a{height:264.512074pt;}
.h4e{height:264.521544pt;}
.h50{height:264.653333pt;}
.h44{height:264.660594pt;}
.h2e{height:264.660601pt;}
.h46{height:264.663406pt;}
.h33{height:264.663413pt;}
.h3d{height:264.666667pt;}
.h36{height:264.673105pt;}
.h47{height:264.673108pt;}
.h3b{height:264.797315pt;}
.h49{height:264.797318pt;}
.h35{height:264.826667pt;}
.h53{height:266.058895pt;}
.h25{height:288.026667pt;}
.h52{height:289.786667pt;}
.h20{height:292.346667pt;}
.h2b{height:310.721916pt;}
.h3{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:34.866667pt;}
.w6{width:79.990667pt;}
.w3{width:80.000000pt;}
.wb{width:81.440000pt;}
.wd{width:82.720000pt;}
.wc{width:82.738667pt;}
.w10{width:82.746667pt;}
.w7{width:89.298667pt;}
.w4{width:89.312000pt;}
.wa{width:110.586667pt;}
.w9{width:116.018667pt;}
.wf{width:118.738667pt;}
.w5{width:142.733333pt;}
.w8{width:142.746667pt;}
.we{width:146.586667pt;}
.w15{width:195.065070pt;}
.w14{width:340.168694pt;}
.w21{width:342.375188pt;}
.w1f{width:415.676013pt;}
.w12{width:415.685574pt;}
.w20{width:430.013333pt;}
.w13{width:430.173333pt;}
.w1a{width:433.719861pt;}
.w19{width:433.731520pt;}
.w1e{width:434.257284pt;}
.w1d{width:434.268958pt;}
.w1c{width:436.790849pt;}
.w1b{width:436.802591pt;}
.w17{width:437.788923pt;}
.w16{width:437.800692pt;}
.w18{width:595.173333pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x53{left:3.301956pt;}
.x2d{left:4.800000pt;}
.x1d{left:6.550667pt;}
.x33{left:8.000000pt;}
.x21{left:9.906667pt;}
.x14{left:10.880000pt;}
.x12{left:13.280000pt;}
.x31{left:14.706667pt;}
.x29{left:15.670667pt;}
.x5c{left:16.631024pt;}
.x2e{left:18.870667pt;}
.x37{left:20.146667pt;}
.x39{left:21.600000pt;}
.x18{left:23.520000pt;}
.x1f{left:25.146667pt;}
.x3c{left:26.080000pt;}
.x16{left:27.986667pt;}
.x24{left:30.400000pt;}
.x27{left:31.506667pt;}
.x4b{left:32.707950pt;}
.x1b{left:34.400000pt;}
.x1a{left:36.320000pt;}
.x17{left:38.080000pt;}
.x25{left:39.985333pt;}
.x3b{left:41.280000pt;}
.x2b{left:42.746667pt;}
.x26{left:44.666667pt;}
.x2a{left:46.400000pt;}
.x4a{left:47.621418pt;}
.x35{left:50.586667pt;}
.x28{left:51.520000pt;}
.x2c{left:52.640000pt;}
.x19{left:53.906667pt;}
.x57{left:55.431658pt;}
.x3a{left:58.106667pt;}
.x41{left:59.905531pt;}
.x4c{left:61.518060pt;}
.x8{left:65.438333pt;}
.x4{left:73.470333pt;}
.x2{left:81.470333pt;}
.x3{left:89.472000pt;}
.x4e{left:108.832000pt;}
.x1{left:113.472000pt;}
.x46{left:119.552000pt;}
.x54{left:126.752000pt;}
.x55{left:128.672000pt;}
.xd{left:137.466667pt;}
.x30{left:149.640000pt;}
.xc{left:151.226667pt;}
.xe{left:161.466667pt;}
.x42{left:167.817622pt;}
.x3d{left:173.800000pt;}
.x48{left:187.413332pt;}
.x2f{left:189.306667pt;}
.x59{left:191.101690pt;}
.x58{left:192.193140pt;}
.x1e{left:193.480000pt;}
.x4d{left:195.621590pt;}
.x3f{left:208.666667pt;}
.x10{left:215.106667pt;}
.x5a{left:216.079998pt;}
.x5b{left:219.811226pt;}
.x3e{left:223.616333pt;}
.x32{left:232.386667pt;}
.x1c{left:246.786667pt;}
.x11{left:250.306667pt;}
.x47{left:263.586667pt;}
.x7{left:282.946667pt;}
.xa{left:292.866667pt;}
.x5{left:305.506667pt;}
.x44{left:308.879996pt;}
.x34{left:315.106667pt;}
.x9{left:321.346667pt;}
.x13{left:330.306667pt;}
.x56{left:335.746667pt;}
.x43{left:347.306667pt;}
.x5d{left:349.866667pt;}
.x50{left:381.007489pt;}
.x49{left:384.558479pt;}
.xb{left:398.973333pt;}
.x6{left:402.653333pt;}
.xf{left:406.333333pt;}
.x51{left:416.242345pt;}
.x15{left:419.626667pt;}
.x40{left:422.986667pt;}
.x20{left:425.546667pt;}
.x36{left:461.706667pt;}
.x45{left:503.973333pt;}
.x52{left:514.661333pt;}
.x4f{left:516.581333pt;}
.x22{left:541.573333pt;}
.x38{left:580.453333pt;}
.x23{left:652.160000pt;}
}




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