
    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_b45d1c634a6468f4395650d2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_1552810a3e84f7c78b370f56.woff')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_df5c99d39129f654097fc78c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.911621;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_f5f4ce7ddf73e96f9adeccae.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_d95b94a8e1181050d72482ee.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bfef9d05f1251c8f2f285b19.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_46a6bbe690a69ffe7250e5f4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1a32f96f3a506746a1f865cd.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_db2d017a338409202146eca6.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6eed698a9b7f5378efc7acb5.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5e833763a60b204742423ca4.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_239a2378a0d1ba63061be270.woff')format("woff");}.ffc{font-family:ffc;line-height:0.705078;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_fde45d5acddba21ee076628d.woff')format("woff");}.ffd{font-family:ffd;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;}
.m15{transform:matrix(0.000000,-0.220675,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.220675,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.220675,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.220973,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.220973,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.220973,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.213098,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.213098,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.213098,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.214781,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.214781,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.214781,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249706,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249706,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249706,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.237072,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237072,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237072,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249723,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249723,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249723,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.258441,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258441,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258441,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.253544,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253544,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253544,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246505,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,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);}
.mc{transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.263633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263633,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.282840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282840,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.283222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283222,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.290994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290994,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.293293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293293,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v9{vertical-align:-15.271918px;}
.va{vertical-align:-14.083134px;}
.v7{vertical-align:-10.747998px;}
.v5{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v8{vertical-align:-1.110807px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v6{vertical-align:5.760000px;}
.v1{vertical-align:18.000000px;}
.ls1e{letter-spacing:-2.016000px;}
.lsc{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-0.864000px;}
.ls34{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.073056px;}
.lse{letter-spacing:-0.072000px;}
.ls2c{letter-spacing:-0.024972px;}
.ls30{letter-spacing:-0.022475px;}
.ls32{letter-spacing:-0.022445px;}
.ls2b{letter-spacing:-0.022085px;}
.ls20{letter-spacing:-0.021412px;}
.ls24{letter-spacing:-0.021244px;}
.ls12{letter-spacing:-0.020902px;}
.ls13{letter-spacing:-0.020396px;}
.ls17{letter-spacing:-0.020337px;}
.ls23{letter-spacing:-0.018072px;}
.ls2a{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.005134px;}
.ls27{letter-spacing:0.008678px;}
.ls22{letter-spacing:0.008747px;}
.ls1d{letter-spacing:0.009720px;}
.ls1c{letter-spacing:0.014579px;}
.ls1a{letter-spacing:0.014695px;}
.ls1b{letter-spacing:0.023791px;}
.ls31{letter-spacing:0.027764px;}
.ls2f{letter-spacing:0.034474px;}
.ls25{letter-spacing:0.052069px;}
.ls2e{letter-spacing:0.052832px;}
.ls19{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.099599px;}
.ls26{letter-spacing:0.104138px;}
.ls21{letter-spacing:0.104961px;}
.ls29{letter-spacing:0.114034px;}
.ls18{letter-spacing:0.119535px;}
.ls10{letter-spacing:0.136612px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.233400px;}
.ls14{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.269280px;}
.ls3{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.360000px;}
.ls1{letter-spacing:167.309280px;}
.lsf{letter-spacing:342.961075px;}
.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;}
}
.ws19{word-spacing:-72.000000px;}
.wsa{word-spacing:-20.304000px;}
.ws33{word-spacing:-20.232000px;}
.wsc{word-spacing:-20.160000px;}
.wsd{word-spacing:-20.016000px;}
.ws11{word-spacing:-19.944000px;}
.wsf{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.800000px;}
.ws28{word-spacing:-19.584000px;}
.wsb{word-spacing:-19.440000px;}
.ws34{word-spacing:-19.224000px;}
.wse{word-spacing:-19.152000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.613280px;}
.ws1c{word-spacing:-15.300000px;}
.ws1a{word-spacing:-14.680200px;}
.ws15{word-spacing:-13.860000px;}
.ws2a{word-spacing:-13.482000px;}
.ws7{word-spacing:-13.410720px;}
.ws5{word-spacing:-13.229520px;}
.ws21{word-spacing:-11.085272px;}
.ws26{word-spacing:-10.998381px;}
.ws1b{word-spacing:-9.720000px;}
.ws2c{word-spacing:-9.702648px;}
.ws2d{word-spacing:-9.677676px;}
.ws30{word-spacing:-9.035944px;}
.ws29{word-spacing:-9.000000px;}
.ws32{word-spacing:-8.843695px;}
.ws6{word-spacing:-8.640120px;}
.ws3{word-spacing:-8.017001px;}
.ws2{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws20{word-spacing:-6.766830px;}
.ws1e{word-spacing:-6.661869px;}
.ws24{word-spacing:-6.609651px;}
.ws25{word-spacing:-6.548904px;}
.ws1{word-spacing:-6.413601px;}
.ws31{word-spacing:-5.278608px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:60.662588px;}
.ws17{word-spacing:83.360981px;}
.ws14{word-spacing:83.605670px;}
.ws16{word-spacing:91.187652px;}
.ws13{word-spacing:91.455315px;}
.ws2f{word-spacing:94.309571px;}
.ws2b{word-spacing:99.971410px;}
.ws23{word-spacing:104.188948px;}
.ws2e{word-spacing:120.542075px;}
.ws22{word-spacing:155.119013px;}
.ws12{word-spacing:156.267005px;}
.ws18{word-spacing:171.116702px;}
.ws1f{word-spacing:732.674410px;}
.ws27{word-spacing:734.318296px;}
._23{margin-left:-254.891063px;}
._22{margin-left:-221.122520px;}
._21{margin-left:-163.698441px;}
._1c{margin-left:-5.954462px;}
._18{margin-left:-4.618769px;}
._d{margin-left:-3.528000px;}
._12{margin-left:-2.422769px;}
._0{margin-left:-1.345231px;}
._4{width:1.140000px;}
._8{width:2.160000px;}
._6{width:4.032000px;}
._7{width:5.112000px;}
._c{width:6.525538px;}
._b{width:7.537231px;}
._a{width:8.568000px;}
._9{width:9.648000px;}
._15{width:10.848000px;}
._14{width:11.952000px;}
._13{width:13.008000px;}
._19{width:14.208000px;}
._1b{width:15.317846px;}
._f{width:16.636923px;}
._e{width:17.856000px;}
._1d{width:21.024000px;}
._16{width:22.032000px;}
._17{width:23.496000px;}
._1a{width:24.540000px;}
._1e{width:25.548000px;}
._10{width:27.480000px;}
._11{width:66.888000px;}
._1f{width:107.908502px;}
._25{width:138.163389px;}
._24{width:147.329776px;}
._20{width:187.724309px;}
._1{width:218.266443px;}
._26{width:269.208000px;}
._3{width:275.688000px;}
._2{width:631.889280px;}
._5{width:2872.080000px;}
.fc7{color:rgb(28,29,30);}
.fc5{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc1{color:rgb(56,116,161);}
.fca{color:rgb(180,180,180);}
.fc9{color:rgb(31,31,31);}
.fc8{color:rgb(34,34,34);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs31{font-size:15.994237px;}
.fs25{font-size:16.120597px;}
.fs46{font-size:21.114432px;}
.fs3a{font-size:22.867460px;}
.fs49{font-size:24.000000px;}
.fs2b{font-size:25.883944px;}
.fs35{font-size:26.195615px;}
.fs2a{font-size:26.402568px;}
.fs30{font-size:26.438604px;}
.fs20{font-size:26.454866px;}
.fs24{font-size:26.647477px;}
.fs5{font-size:27.828506px;}
.fs14{font-size:28.196666px;}
.fs2c{font-size:28.717547px;}
.fs1c{font-size:29.127955px;}
.fs17{font-size:29.213455px;}
.fs10{font-size:29.732182px;}
.fse{font-size:29.937100px;}
.fs32{font-size:30.219514px;}
.fs7{font-size:30.240000px;}
.fs2f{font-size:30.427791px;}
.fs26{font-size:30.458258px;}
.fs23{font-size:30.668180px;}
.fs16{font-size:31.029994px;}
.fs38{font-size:31.632214px;}
.fs3{font-size:31.804007px;}
.fs2d{font-size:31.970503px;}
.fs2e{font-size:32.112201px;}
.fs43{font-size:32.147687px;}
.fs3e{font-size:32.191056px;}
.fs3d{font-size:32.786990px;}
.fs13{font-size:33.214416px;}
.fs21{font-size:33.658404px;}
.fsa{font-size:34.059259px;}
.fs18{font-size:34.865735px;}
.fs47{font-size:35.667003px;}
.fs3f{font-size:35.715120px;}
.fs1f{font-size:35.738037px;}
.fs0{font-size:35.779508px;}
.fs1d{font-size:35.979779px;}
.fs37{font-size:36.000000px;}
.fs1e{font-size:36.136795px;}
.fs45{font-size:36.143776px;}
.fs19{font-size:36.242867px;}
.fs15{font-size:36.730802px;}
.fs12{font-size:37.140637px;}
.fs33{font-size:37.749400px;}
.fs28{font-size:38.047631px;}
.fs3b{font-size:38.481567px;}
.fs39{font-size:38.810593px;}
.fs22{font-size:38.880000px;}
.fs11{font-size:38.949851px;}
.fs3c{font-size:39.243634px;}
.fs2{font-size:39.755009px;}
.fs44{font-size:39.883141px;}
.fs41{font-size:39.936946px;}
.fs1a{font-size:42.237797px;}
.fsf{font-size:43.284068px;}
.fs34{font-size:43.993525px;}
.fs27{font-size:44.042166px;}
.fs29{font-size:44.341088px;}
.fs40{font-size:44.933829px;}
.fs48{font-size:46.480209px;}
.fs42{font-size:46.542914px;}
.fs4{font-size:47.706010px;}
.fs6{font-size:48.240000px;}
.fs1b{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs36{font-size:61.966388px;}
.fs9{font-size:66.754693px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:79.510017px;}
.fsd{font-size:84.240000px;}
.fsb{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.yda{bottom:2.880000px;}
.yd8{bottom:3.060000px;}
.y123{bottom:3.240000px;}
.ydd{bottom:3.600000px;}
.y10{bottom:3.975482px;}
.y12{bottom:3.975485px;}
.ya{bottom:3.975503px;}
.yc{bottom:3.975506px;}
.y191{bottom:7.380000px;}
.y1e1{bottom:7.500000px;}
.y1ae{bottom:7.560000px;}
.y121{bottom:9.720000px;}
.y147{bottom:10.942175px;}
.y159{bottom:14.196069px;}
.yfa{bottom:15.975249px;}
.yb0{bottom:16.022141px;}
.ya0{bottom:16.419025px;}
.y179{bottom:16.688145px;}
.y1a7{bottom:17.348712px;}
.y1cf{bottom:17.631423px;}
.y1c0{bottom:17.655209px;}
.y18f{bottom:18.405000px;}
.y1ac{bottom:18.540000px;}
.ydc{bottom:19.080000px;}
.y18d{bottom:19.260000px;}
.y16{bottom:22.859102px;}
.y129{bottom:26.283962px;}
.y11f{bottom:27.000000px;}
.y151{bottom:27.144537px;}
.y1e{bottom:28.413865px;}
.yef{bottom:30.546538px;}
.ya5{bottom:30.636201px;}
.y82{bottom:31.395089px;}
.y15d{bottom:31.909677px;}
.y197{bottom:33.172758px;}
.y1c5{bottom:33.713335px;}
.y1b3{bottom:33.758817px;}
.y1aa{bottom:34.740000px;}
.y18c{bottom:34.785000px;}
.y1f{bottom:36.114559px;}
.y12a{bottom:36.816790px;}
.yf0{bottom:40.550383px;}
.ya6{bottom:40.669411px;}
.y100{bottom:41.676831px;}
.y15{bottom:42.736606px;}
.y83{bottom:43.527920px;}
.y198{bottom:44.036678px;}
.y1b4{bottom:44.814668px;}
.y152{bottom:45.533724px;}
.y1c6{bottom:47.567251px;}
.ya1{bottom:48.121490px;}
.y11b{bottom:48.394714px;}
.yeb{bottom:51.840000px;}
.y1a3{bottom:52.643371px;}
.y12b{bottom:55.069493px;}
.y15e{bottom:55.637564px;}
.y1c{bottom:57.060000px;}
.y1c1{bottom:57.980331px;}
.yfe{bottom:58.311737px;}
.yb4{bottom:58.806175px;}
.y140{bottom:58.823595px;}
.y13f{bottom:59.155971px;}
.y13e{bottom:59.600306px;}
.y14b{bottom:59.663282px;}
.y101{bottom:60.365319px;}
.y114{bottom:60.423379px;}
.y84{bottom:62.066135px;}
.y1d4{bottom:63.245740px;}
.yf1{bottom:63.312829px;}
.ya7{bottom:63.498671px;}
.y199{bottom:63.783355px;}
.y1be{bottom:65.615314px;}
.y1b5{bottom:67.150390px;}
.y95{bottom:70.645353px;}
.ya2{bottom:73.155594px;}
.y15f{bottom:73.302872px;}
.y12c{bottom:73.325694px;}
.y170{bottom:73.417424px;}
.y171{bottom:73.747195px;}
.y173{bottom:74.076966px;}
.y180{bottom:74.139449px;}
.y172{bottom:74.469220px;}
.y1c7{bottom:75.861881px;}
.y1b{bottom:77.580000px;}
.y115{bottom:77.861869px;}
.y102{bottom:79.115282px;}
.y85{bottom:80.594104px;}
.y1a4{bottom:83.371250px;}
.y19a{bottom:83.594988px;}
.y153{bottom:83.626139px;}
.yf2{bottom:86.075275px;}
.ya8{bottom:86.327931px;}
.y15a{bottom:87.311358px;}
.y9e{bottom:87.865265px;}
.y158{bottom:88.492518px;}
.y11a{bottom:88.797640px;}
.y1b6{bottom:89.544871px;}
.y139{bottom:90.679232px;}
.y160{bottom:91.027192px;}
.y137{bottom:91.071086px;}
.y136{bottom:91.134063px;}
.y138{bottom:91.186543px;}
.y12d{bottom:91.578397px;}
.y96{bottom:91.854328px;}
.y1bf{bottom:92.600333px;}
.y146{bottom:95.444458px;}
.y1a5{bottom:97.055351px;}
.y103{bottom:97.814016px;}
.yf9{bottom:98.044666px;}
.y1a{bottom:98.280000px;}
.yaf{bottom:98.332456px;}
.y86{bottom:99.128904px;}
.y178{bottom:100.528066px;}
.y9f{bottom:102.349526px;}
.y19b{bottom:103.352491px;}
.y1c8{bottom:104.156510px;}
.y1a6{bottom:104.507268px;}
.y9d{bottom:105.081761px;}
.y16e{bottom:105.415618px;}
.y16b{bottom:105.474630px;}
.y16d{bottom:105.526699px;}
.y1ce{bottom:106.210301px;}
.y161{bottom:108.695971px;}
.yf3{bottom:108.837721px;}
.y119{bottom:109.128884px;}
.ya9{bottom:109.157191px;}
.y12e{bottom:109.834599px;}
.y1b7{bottom:111.880592px;}
.y97{bottom:114.046907px;}
.y9c{bottom:115.139801px;}
.y104{bottom:116.505919px;}
.y111{bottom:116.615208px;}
.y87{bottom:117.656873px;}
.y19{bottom:118.980000px;}
.y98{bottom:119.074220px;}
.y1d3{bottom:120.293434px;}
.y10d{bottom:120.337878px;}
.y154{bottom:121.674260px;}
.y118{bottom:122.796890px;}
.y19c{bottom:123.102777px;}
.y162{bottom:126.364751px;}
.y12f{bottom:128.087302px;}
.y116{bottom:128.859037px;}
.yf4{bottom:131.550321px;}
.yaa{bottom:131.936461px;}
.y1c9{bottom:132.506152px;}
.y14f{bottom:133.912632px;}
.y13a{bottom:134.192528px;}
.y1b8{bottom:134.219987px;}
.y135{bottom:134.867777px;}
.y105{bottom:135.204653px;}
.y13b{bottom:136.099318px;}
.y88{bottom:136.133612px;}
.y99{bottom:136.680059px;}
.y13c{bottom:137.439319px;}
.y117{bottom:138.534564px;}
.y1d2{bottom:139.613734px;}
.y13d{bottom:140.798068px;}
.y1a9{bottom:142.228762px;}
.y19d{bottom:142.860280px;}
.y163{bottom:144.085599px;}
.y14d{bottom:146.011127px;}
.y130{bottom:146.343503px;}
.y80{bottom:146.520000px;}
.y9b{bottom:148.155447px;}
.y169{bottom:149.309865px;}
.y16c{bottom:149.698648px;}
.y16a{bottom:149.976350px;}
.y16f{bottom:150.028419px;}
.y94{bottom:151.000387px;}
.y15b{bottom:151.212122px;}
.y157{bottom:153.338211px;}
.y106{bottom:153.954616px;}
.yf5{bottom:154.312767px;}
.y89{bottom:154.661582px;}
.yab{bottom:154.765721px;}
.y1b9{bottom:156.610795px;}
.y4e{bottom:156.780000px;}
.y8e{bottom:156.796140px;}
.yd6{bottom:158.760000px;}
.y155{bottom:159.766675px;}
.y1ca{bottom:160.800781px;}
.y164{bottom:161.754379px;}
.y19e{bottom:162.671913px;}
.y131{bottom:164.596206px;}
.y145{bottom:167.010307px;}
.y7f{bottom:167.220000px;}
.y143{bottom:167.685556px;}
.y144{bottom:167.738036px;}
.y142{bottom:168.070412px;}
.y141{bottom:168.742162px;}
.y14a{bottom:169.189996px;}
.y14c{bottom:169.924722px;}
.y10a{bottom:170.843244px;}
.y107{bottom:172.643104px;}
.y8a{bottom:173.189551px;}
.y112{bottom:175.050886px;}
.y110{bottom:176.256484px;}
.y91{bottom:176.912221px;}
.yf6{bottom:177.075213px;}
.y4d{bottom:177.480000px;}
.yac{bottom:177.594981px;}
.y1ba{bottom:178.950189px;}
.yd5{bottom:179.460000px;}
.y165{bottom:179.475228px;}
.y8f{bottom:180.515356px;}
.y90{bottom:181.881473px;}
.y10b{bottom:181.994178px;}
.y19f{bottom:182.418591px;}
.y132{bottom:182.852408px;}
.y1d1{bottom:183.227438px;}
.y92{bottom:183.691579px;}
.y7e{bottom:187.920000px;}
.y1cb{bottom:189.095411px;}
.y10f{bottom:189.541978px;}
.y10c{bottom:190.248943px;}
.y175{bottom:190.479163px;}
.y177{bottom:190.867946px;}
.y9a{bottom:191.181319px;}
.y176{bottom:191.197717px;}
.y174{bottom:191.260199px;}
.y17d{bottom:191.312269px;}
.y108{bottom:191.341837px;}
.y93{bottom:191.615061px;}
.y8b{bottom:191.727766px;}
.y17f{bottom:192.759789px;}
.yb3{bottom:192.958907px;}
.yfd{bottom:193.032186px;}
.y10e{bottom:194.955218px;}
.y150{bottom:195.690000px;}
.y166{bottom:197.144007px;}
.y156{bottom:197.814796px;}
.y4c{bottom:198.210000px;}
.yf7{bottom:199.837659px;}
.yd4{bottom:200.190000px;}
.yad{bottom:200.424241px;}
.y133{bottom:201.115607px;}
.y1bb{bottom:201.278566px;}
.yb2{bottom:201.973965px;}
.yfc{bottom:202.020860px;}
.y1a0{bottom:202.176094px;}
.y149{bottom:202.899942px;}
.y81{bottom:205.665000px;}
.y11d{bottom:208.343170px;}
.y17c{bottom:208.477713px;}
.y7d{bottom:208.650000px;}
.y109{bottom:210.091801px;}
.y8c{bottom:210.255735px;}
.y113{bottom:210.587018px;}
.yb1{bottom:210.989023px;}
.yfb{bottom:211.009534px;}
.ya4{bottom:211.965000px;}
.y148{bottom:214.550604px;}
.y167{bottom:214.871798px;}
.y14e{bottom:215.950083px;}
.y1cc{bottom:217.390040px;}
.y17b{bottom:217.867507px;}
.y4b{bottom:218.910000px;}
.ya3{bottom:219.278941px;}
.y134{bottom:219.368310px;}
.y11c{bottom:219.716099px;}
.y181{bottom:220.425835px;}
.yd3{bottom:220.890000px;}
.y1a1{bottom:221.987727px;}
.yf8{bottom:222.606750px;}
.y17e{bottom:222.647450px;}
.yae{bottom:223.260167px;}
.y1bc{bottom:223.680391px;}
.y17a{bottom:227.257300px;}
.y1c3{bottom:227.727410px;}
.y8d{bottom:228.790534px;}
.y7c{bottom:229.350000px;}
.y1c2{bottom:231.319047px;}
.y1d5{bottom:231.711561px;}
.y1d0{bottom:232.059971px;}
.y168{bottom:232.540578px;}
.y1a8{bottom:232.561149px;}
.y4a{bottom:239.610000px;}
.yd2{bottom:241.590000px;}
.y1a2{bottom:241.745230px;}
.y1cd{bottom:245.684670px;}
.y1bd{bottom:246.016113px;}
.y7b{bottom:250.050000px;}
.y49{bottom:260.310000px;}
.yd1{bottom:262.290000px;}
.y7a{bottom:270.750000px;}
.y48{bottom:281.010000px;}
.yd0{bottom:282.990000px;}
.y79{bottom:291.450000px;}
.y47{bottom:301.710000px;}
.ycf{bottom:303.690000px;}
.y78{bottom:312.150000px;}
.y195{bottom:319.890000px;}
.y46{bottom:322.410000px;}
.yce{bottom:324.390000px;}
.y77{bottom:332.850000px;}
.y194{bottom:336.270000px;}
.y45{bottom:343.110000px;}
.ycd{bottom:345.090000px;}
.y193{bottom:352.470000px;}
.y76{bottom:353.550000px;}
.y44{bottom:363.810000px;}
.ycc{bottom:365.790000px;}
.y192{bottom:368.670000px;}
.y75{bottom:374.250000px;}
.y43{bottom:384.510000px;}
.y190{bottom:385.050000px;}
.ycb{bottom:386.490000px;}
.y74{bottom:394.950000px;}
.y18b{bottom:401.250000px;}
.y42{bottom:405.210000px;}
.yca{bottom:407.190000px;}
.y73{bottom:415.650000px;}
.y18e{bottom:417.630000px;}
.y41{bottom:425.910000px;}
.yc9{bottom:427.890000px;}
.y72{bottom:436.395000px;}
.y40{bottom:446.655000px;}
.yc8{bottom:448.635000px;}
.y71{bottom:457.095000px;}
.yea{bottom:466.275000px;}
.y3f{bottom:467.355000px;}
.y70{bottom:477.795000px;}
.yed{bottom:482.655000px;}
.y3e{bottom:488.055000px;}
.y6f{bottom:498.495000px;}
.yec{bottom:498.855000px;}
.y1b1{bottom:505.695000px;}
.y3d{bottom:508.755000px;}
.ye9{bottom:515.235000px;}
.y6e{bottom:519.195000px;}
.y1b0{bottom:521.895000px;}
.y3c{bottom:529.455000px;}
.ye8{bottom:531.435000px;}
.y1af{bottom:538.275000px;}
.y6d{bottom:539.895000px;}
.ye7{bottom:547.635000px;}
.y3b{bottom:550.155000px;}
.y1ad{bottom:554.475000px;}
.y6c{bottom:560.595000px;}
.ye6{bottom:564.015000px;}
.y3a{bottom:570.855000px;}
.ye5{bottom:580.215000px;}
.y6b{bottom:581.295000px;}
.y1ab{bottom:587.055000px;}
.y39{bottom:591.555000px;}
.ye4{bottom:596.595000px;}
.y6a{bottom:601.995000px;}
.y38{bottom:612.255000px;}
.y69{bottom:622.695000px;}
.yc7{bottom:623.235000px;}
.y37{bottom:632.955000px;}
.y68{bottom:643.395000px;}
.yc6{bottom:643.935000px;}
.y15c{bottom:652.215000px;}
.y36{bottom:653.655000px;}
.y67{bottom:664.095000px;}
.yc5{bottom:664.635000px;}
.y35{bottom:674.385000px;}
.y66{bottom:684.825000px;}
.yc4{bottom:685.365000px;}
.yff{bottom:692.865000px;}
.y34{bottom:695.085000px;}
.yee{bottom:699.915000px;}
.y1e0{bottom:703.185000px;}
.y65{bottom:705.525000px;}
.yc3{bottom:706.065000px;}
.y127{bottom:710.025000px;}
.y33{bottom:715.785000px;}
.y1b2{bottom:720.465000px;}
.y1c4{bottom:720.840000px;}
.y1df{bottom:723.885000px;}
.y64{bottom:726.225000px;}
.yc2{bottom:726.765000px;}
.y126{bottom:728.025000px;}
.y32{bottom:736.485000px;}
.y1de{bottom:744.585000px;}
.y125{bottom:746.025000px;}
.y63{bottom:746.925000px;}
.yc1{bottom:747.465000px;}
.y31{bottom:757.185000px;}
.y124{bottom:764.025000px;}
.y1dd{bottom:765.285000px;}
.y62{bottom:767.625000px;}
.yc0{bottom:768.165000px;}
.y30{bottom:777.885000px;}
.y122{bottom:782.025000px;}
.y14{bottom:783.173641px;}
.y1dc{bottom:785.985000px;}
.y61{bottom:788.325000px;}
.ybf{bottom:788.865000px;}
.y196{bottom:791.940000px;}
.y18a{bottom:798.585000px;}
.y2f{bottom:799.305000px;}
.y120{bottom:800.025000px;}
.y1db{bottom:806.685000px;}
.y13{bottom:807.026646px;}
.y60{bottom:809.025000px;}
.ybe{bottom:809.565000px;}
.y189{bottom:819.285000px;}
.y11{bottom:821.153236px;}
.y2e{bottom:822.705000px;}
.y1da{bottom:827.385000px;}
.y5f{bottom:829.725000px;}
.ybd{bottom:830.265000px;}
.yf{bottom:837.055242px;}
.y188{bottom:839.985000px;}
.y11e{bottom:841.785000px;}
.y2d{bottom:842.865000px;}
.y1d9{bottom:848.085000px;}
.y5e{bottom:850.425000px;}
.ybc{bottom:850.965000px;}
.y2c{bottom:860.685000px;}
.y1d8{bottom:868.785000px;}
.y5d{bottom:871.125000px;}
.ybb{bottom:871.665000px;}
.ye{bottom:877.591787px;}
.y2b{bottom:881.385000px;}
.y1d7{bottom:889.485000px;}
.y5c{bottom:891.825000px;}
.yba{bottom:892.365000px;}
.yd{bottom:901.444792px;}
.y2a{bottom:902.085000px;}
.y1d6{bottom:910.410000px;}
.y5b{bottom:912.570000px;}
.yb9{bottom:913.110000px;}
.yb{bottom:915.571361px;}
.y29{bottom:922.830000px;}
.y9{bottom:931.473366px;}
.y5a{bottom:933.270000px;}
.yb8{bottom:933.810000px;}
.y128{bottom:940.215000px;}
.y28{bottom:943.530000px;}
.y59{bottom:953.970000px;}
.yb7{bottom:954.510000px;}
.y8{bottom:962.071180px;}
.y27{bottom:964.230000px;}
.y58{bottom:974.670000px;}
.yb6{bottom:975.210000px;}
.y26{bottom:984.930000px;}
.y7{bottom:989.899686px;}
.y57{bottom:995.370000px;}
.yb5{bottom:995.910000px;}
.y25{bottom:1005.630000px;}
.y6{bottom:1005.801689px;}
.ye3{bottom:1013.550000px;}
.y56{bottom:1016.070000px;}
.y187{bottom:1026.330000px;}
.y24{bottom:1028.490000px;}
.ye2{bottom:1029.750000px;}
.y5{bottom:1034.624071px;}
.y55{bottom:1036.770000px;}
.ye1{bottom:1046.130000px;}
.y186{bottom:1047.030000px;}
.y54{bottom:1057.470000px;}
.y23{bottom:1059.450000px;}
.ye0{bottom:1062.330000px;}
.y185{bottom:1067.730000px;}
.y4{bottom:1076.366830px;}
.y53{bottom:1078.170000px;}
.ydf{bottom:1078.710000px;}
.y184{bottom:1088.430000px;}
.y22{bottom:1090.590000px;}
.yde{bottom:1094.910000px;}
.y52{bottom:1098.870000px;}
.y3{bottom:1104.195336px;}
.y183{bottom:1109.130000px;}
.ydb{bottom:1111.290000px;}
.y51{bottom:1119.570000px;}
.y21{bottom:1121.550000px;}
.yd9{bottom:1127.490000px;}
.y182{bottom:1129.830000px;}
.y50{bottom:1140.270000px;}
.yd7{bottom:1143.720000px;}
.y2{bottom:1144.944219px;}
.y20{bottom:1152.720000px;}
.y4f{bottom:1161.000000px;}
.y18{bottom:1189.800000px;}
.y1d{bottom:1191.930000px;}
.y17{bottom:1209.060000px;}
.h9{height:12.920361px;}
.h8{height:12.920383px;}
.h26{height:15.480000px;}
.h24{height:15.660000px;}
.h33{height:17.280000px;}
.h43{height:18.357273px;}
.h2e{height:18.368564px;}
.h36{height:18.502301px;}
.h3d{height:18.856857px;}
.h3e{height:19.939625px;}
.h1b{height:20.136004px;}
.ha{height:20.151208px;}
.h37{height:20.979378px;}
.h44{height:20.982495px;}
.h38{height:21.148263px;}
.h2a{height:21.220171px;}
.h20{height:21.282458px;}
.h30{height:21.545240px;}
.h19{height:21.809645px;}
.h42{height:22.167121px;}
.h35{height:22.342248px;}
.h50{height:22.765185px;}
.h6{height:23.029952px;}
.h4c{height:23.044562px;}
.h1e{height:23.061962px;}
.h13{height:23.232805px;}
.h3f{height:23.291011px;}
.h2f{height:23.370239px;}
.h40{height:23.394240px;}
.h5a{height:23.420092px;}
.h54{height:23.451687px;}
.h5d{height:24.764882px;}
.h55{height:24.798291px;}
.h2d{height:24.814203px;}
.h4a{height:24.996094px;}
.h5f{height:25.031250px;}
.h5c{height:25.095923px;}
.h21{height:25.400233px;}
.h3{height:25.908696px;}
.h2b{height:26.211831px;}
.h2c{height:26.326220px;}
.h22{height:26.403495px;}
.h4d{height:26.947589px;}
.h1d{height:27.057535px;}
.h45{height:27.501027px;}
.h3a{height:27.718294px;}
.h4e{height:28.034423px;}
.h1c{height:28.375575px;}
.h4f{height:28.589600px;}
.h5{height:28.787440px;}
.h5b{height:29.055492px;}
.h57{height:29.094689px;}
.h23{height:29.327221px;}
.h1a{height:30.053684px;}
.h46{height:30.546286px;}
.h3b{height:30.787611px;}
.h49{height:30.996000px;}
.h52{height:31.140000px;}
.h27{height:31.680000px;}
.h39{height:32.085406px;}
.h5e{height:32.272880px;}
.h58{height:32.316418px;}
.h56{height:32.734997px;}
.h7{height:34.544928px;}
.h25{height:37.494141px;}
.hd{height:40.045078px;}
.h31{height:41.040000px;}
.h32{height:41.493516px;}
.h47{height:43.025490px;}
.h10{height:44.070187px;}
.h12{height:44.098032px;}
.h11{height:45.535306px;}
.h51{height:47.340000px;}
.h48{height:47.376000px;}
.he{height:49.992188px;}
.h16{height:52.417969px;}
.hf{height:52.488281px;}
.h17{height:61.329023px;}
.h28{height:64.440000px;}
.h4{height:65.533647px;}
.h15{height:78.626953px;}
.h14{height:78.732422px;}
.h3c{height:225.601589px;}
.h29{height:253.876037px;}
.h1f{height:254.621239px;}
.h18{height:260.928449px;}
.h41{height:265.205257px;}
.h34{height:267.300460px;}
.h4b{height:275.702875px;}
.h59{height:280.195683px;}
.h53{height:280.573683px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.hb{height:1262.880000px;}
.hc{height:1263.000000px;}
.w6{width:53.450377px;}
.w7{width:53.557224px;}
.w1e{width:67.500000px;}
.w1f{width:69.120000px;}
.w12{width:74.700000px;}
.w17{width:88.236000px;}
.w10{width:94.320000px;}
.w15{width:96.300000px;}
.w16{width:98.316000px;}
.w1a{width:99.936000px;}
.w1b{width:114.156000px;}
.w11{width:115.416000px;}
.w1c{width:137.340000px;}
.w1d{width:143.316000px;}
.wd{width:152.130000px;}
.wf{width:165.450000px;}
.we{width:190.830000px;}
.wc{width:210.450000px;}
.w14{width:284.295000px;}
.w19{width:322.950914px;}
.w2{width:346.862448px;}
.w9{width:352.197180px;}
.wb{width:357.195000px;}
.wa{width:363.315000px;}
.w13{width:363.450728px;}
.w20{width:388.722612px;}
.w8{width:393.452990px;}
.w18{width:444.893153px;}
.w21{width:453.900312px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w5{width:892.979987px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:7.740000px;}
.x84{left:22.680000px;}
.x5b{left:24.840000px;}
.x83{left:27.000000px;}
.x3a{left:30.960000px;}
.x70{left:32.686490px;}
.x48{left:33.840000px;}
.x32{left:35.646561px;}
.x3e{left:37.620000px;}
.x5e{left:38.700000px;}
.x2b{left:39.822142px;}
.x5f{left:41.625000px;}
.x69{left:42.678727px;}
.x43{left:43.740000px;}
.x45{left:45.945000px;}
.x7f{left:46.980000px;}
.x31{left:49.109529px;}
.x46{left:50.940000px;}
.x30{left:53.029781px;}
.x1b{left:54.862140px;}
.x75{left:57.086870px;}
.x80{left:58.500000px;}
.x1{left:59.632513px;}
.x1a{left:61.611412px;}
.x4a{left:62.981580px;}
.x7{left:64.601889px;}
.x44{left:65.880000px;}
.x74{left:66.986869px;}
.x3b{left:68.940000px;}
.x3c{left:71.100000px;}
.x47{left:72.360000px;}
.x9{left:73.491283px;}
.x3f{left:75.420000px;}
.x2d{left:78.725893px;}
.x38{left:80.994000px;}
.x4e{left:83.115000px;}
.x8{left:84.995987px;}
.x73{left:88.102251px;}
.x34{left:89.346911px;}
.x4c{left:92.900409px;}
.x2a{left:95.087654px;}
.x51{left:96.132098px;}
.x64{left:98.075553px;}
.x3{left:99.387518px;}
.x6d{left:100.547498px;}
.xc{left:102.815987px;}
.x19{left:104.040000px;}
.x8e{left:106.509479px;}
.x4{left:110.320149px;}
.x10{left:111.995987px;}
.x22{left:118.944203px;}
.xb{left:120.095987px;}
.x8d{left:121.803467px;}
.x72{left:124.215756px;}
.x37{left:126.225000px;}
.x90{left:127.475987px;}
.x53{left:130.645582px;}
.x21{left:132.892938px;}
.x7d{left:135.755987px;}
.x29{left:137.448876px;}
.x11{left:138.995987px;}
.x59{left:141.255696px;}
.xe{left:144.755987px;}
.x28{left:146.960523px;}
.x63{left:150.267401px;}
.x2e{left:151.397610px;}
.x33{left:153.679653px;}
.x71{left:154.827007px;}
.x4b{left:158.590088px;}
.x58{left:168.854237px;}
.x20{left:170.006727px;}
.x1f{left:178.304658px;}
.x41{left:180.930000px;}
.x67{left:182.333460px;}
.x27{left:185.107952px;}
.x88{left:186.358842px;}
.x2c{left:188.626649px;}
.x52{left:190.409407px;}
.x1e{left:192.660365px;}
.x35{left:196.135071px;}
.x7e{left:198.030000px;}
.x78{left:200.386399px;}
.x79{left:202.919430px;}
.x4d{left:206.979876px;}
.x1d{left:208.218984px;}
.x66{left:212.310379px;}
.x26{left:213.466417px;}
.x6a{left:215.894089px;}
.x60{left:217.665000px;}
.x86{left:220.350632px;}
.x87{left:223.649113px;}
.x89{left:224.734374px;}
.x50{left:225.967335px;}
.x1c{left:228.621664px;}
.x85{left:234.990000px;}
.x25{left:240.780437px;}
.x57{left:242.678445px;}
.x55{left:245.278751px;}
.x77{left:246.583677px;}
.x7b{left:248.668745px;}
.x65{left:252.578247px;}
.xf{left:255.314987px;}
.x68{left:257.269649px;}
.x24{left:258.590014px;}
.x4f{left:266.138826px;}
.x8b{left:275.038344px;}
.x56{left:277.487254px;}
.x6f{left:283.440000px;}
.x54{left:288.385490px;}
.x6e{left:290.178694px;}
.x62{left:294.483219px;}
.x39{left:297.075000px;}
.x76{left:299.174621px;}
.x23{left:305.438745px;}
.xd{left:311.474987px;}
.x6c{left:318.396338px;}
.x61{left:321.458781px;}
.x7a{left:324.004029px;}
.x6b{left:342.574162px;}
.x7c{left:354.176423px;}
.x12{left:358.094987px;}
.x16{left:363.314987px;}
.x13{left:364.934987px;}
.x17{left:392.474987px;}
.x15{left:393.914987px;}
.x8f{left:397.874987px;}
.x14{left:403.814987px;}
.x8a{left:405.434987px;}
.xa{left:407.444987px;}
.x18{left:413.924987px;}
.x8c{left:417.240000px;}
.x2{left:446.249971px;}
.x36{left:450.105000px;}
.x5a{left:457.665000px;}
.x2f{left:466.665000px;}
.x49{left:471.015000px;}
.x82{left:481.785000px;}
.x5{left:486.004991px;}
.x6{left:496.937607px;}
.x42{left:525.525000px;}
.x81{left:551.625000px;}
.x5c{left:554.685000px;}
.x3d{left:641.850000px;}
.x5d{left:653.730000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v9{vertical-align:-13.575039pt;}
.va{vertical-align:-12.518341pt;}
.v7{vertical-align:-9.553776pt;}
.v5{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v8{vertical-align:-0.987384pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v6{vertical-align:5.120000pt;}
.v1{vertical-align:16.000000pt;}
.ls1e{letter-spacing:-1.792000pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls34{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.064939pt;}
.lse{letter-spacing:-0.064000pt;}
.ls2c{letter-spacing:-0.022197pt;}
.ls30{letter-spacing:-0.019978pt;}
.ls32{letter-spacing:-0.019951pt;}
.ls2b{letter-spacing:-0.019631pt;}
.ls20{letter-spacing:-0.019033pt;}
.ls24{letter-spacing:-0.018884pt;}
.ls12{letter-spacing:-0.018579pt;}
.ls13{letter-spacing:-0.018130pt;}
.ls17{letter-spacing:-0.018077pt;}
.ls23{letter-spacing:-0.016064pt;}
.ls2a{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.004564pt;}
.ls27{letter-spacing:0.007714pt;}
.ls22{letter-spacing:0.007775pt;}
.ls1d{letter-spacing:0.008640pt;}
.ls1c{letter-spacing:0.012959pt;}
.ls1a{letter-spacing:0.013062pt;}
.ls1b{letter-spacing:0.021148pt;}
.ls31{letter-spacing:0.024679pt;}
.ls2f{letter-spacing:0.030644pt;}
.ls25{letter-spacing:0.046284pt;}
.ls2e{letter-spacing:0.046962pt;}
.ls19{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.088533pt;}
.ls26{letter-spacing:0.092567pt;}
.ls21{letter-spacing:0.093299pt;}
.ls29{letter-spacing:0.101364pt;}
.ls18{letter-spacing:0.106254pt;}
.ls10{letter-spacing:0.121433pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.207467pt;}
.ls14{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.239360pt;}
.ls3{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls1{letter-spacing:148.719360pt;}
.lsf{letter-spacing:304.854289pt;}
.ws19{word-spacing:-64.000000pt;}
.wsa{word-spacing:-18.048000pt;}
.ws33{word-spacing:-17.984000pt;}
.wsc{word-spacing:-17.920000pt;}
.wsd{word-spacing:-17.792000pt;}
.ws11{word-spacing:-17.728000pt;}
.wsf{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.600000pt;}
.ws28{word-spacing:-17.408000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws34{word-spacing:-17.088000pt;}
.wse{word-spacing:-17.024000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.767360pt;}
.ws1c{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.320000pt;}
.ws2a{word-spacing:-11.984000pt;}
.ws7{word-spacing:-11.920640pt;}
.ws5{word-spacing:-11.759573pt;}
.ws21{word-spacing:-9.853575pt;}
.ws26{word-spacing:-9.776339pt;}
.ws1b{word-spacing:-8.640000pt;}
.ws2c{word-spacing:-8.624576pt;}
.ws2d{word-spacing:-8.602379pt;}
.ws30{word-spacing:-8.031950pt;}
.ws29{word-spacing:-8.000000pt;}
.ws32{word-spacing:-7.861062pt;}
.ws6{word-spacing:-7.680107pt;}
.ws3{word-spacing:-7.126223pt;}
.ws2{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws20{word-spacing:-6.014960pt;}
.ws1e{word-spacing:-5.921662pt;}
.ws24{word-spacing:-5.875245pt;}
.ws25{word-spacing:-5.821248pt;}
.ws1{word-spacing:-5.700979pt;}
.ws31{word-spacing:-4.692096pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:53.922301pt;}
.ws17{word-spacing:74.098650pt;}
.ws14{word-spacing:74.316151pt;}
.ws16{word-spacing:81.055691pt;}
.ws13{word-spacing:81.293613pt;}
.ws2f{word-spacing:83.830730pt;}
.ws2b{word-spacing:88.863475pt;}
.ws23{word-spacing:92.612398pt;}
.ws2e{word-spacing:107.148511pt;}
.ws22{word-spacing:137.883567pt;}
.ws12{word-spacing:138.904004pt;}
.ws18{word-spacing:152.103735pt;}
.ws1f{word-spacing:651.266143pt;}
.ws27{word-spacing:652.727374pt;}
._23{margin-left:-226.569834pt;}
._22{margin-left:-196.553351pt;}
._21{margin-left:-145.509725pt;}
._1c{margin-left:-5.292855pt;}
._18{margin-left:-4.105573pt;}
._d{margin-left:-3.136000pt;}
._12{margin-left:-2.153573pt;}
._0{margin-left:-1.195761pt;}
._4{width:1.013333pt;}
._8{width:1.920000pt;}
._6{width:3.584000pt;}
._7{width:4.544000pt;}
._c{width:5.800479pt;}
._b{width:6.699761pt;}
._a{width:7.616000pt;}
._9{width:8.576000pt;}
._15{width:9.642667pt;}
._14{width:10.624000pt;}
._13{width:11.562667pt;}
._19{width:12.629333pt;}
._1b{width:13.615863pt;}
._f{width:14.788376pt;}
._e{width:15.872000pt;}
._1d{width:18.688000pt;}
._16{width:19.584000pt;}
._17{width:20.885333pt;}
._1a{width:21.813333pt;}
._1e{width:22.709333pt;}
._10{width:24.426667pt;}
._11{width:59.456000pt;}
._1f{width:95.918669pt;}
._25{width:122.811902pt;}
._24{width:130.959801pt;}
._20{width:166.866052pt;}
._1{width:194.014616pt;}
._26{width:239.296000pt;}
._3{width:245.056000pt;}
._2{width:561.679360pt;}
._5{width:2552.960000pt;}
.fs31{font-size:14.217100pt;}
.fs25{font-size:14.329419pt;}
.fs46{font-size:18.768384pt;}
.fs3a{font-size:20.326631pt;}
.fs49{font-size:21.333333pt;}
.fs2b{font-size:23.007950pt;}
.fs35{font-size:23.284991pt;}
.fs2a{font-size:23.468949pt;}
.fs30{font-size:23.500981pt;}
.fs20{font-size:23.515437pt;}
.fs24{font-size:23.686646pt;}
.fs5{font-size:24.736450pt;}
.fs14{font-size:25.063703pt;}
.fs2c{font-size:25.526708pt;}
.fs1c{font-size:25.891516pt;}
.fs17{font-size:25.967515pt;}
.fs10{font-size:26.428606pt;}
.fse{font-size:26.610755pt;}
.fs32{font-size:26.861790pt;}
.fs7{font-size:26.880000pt;}
.fs2f{font-size:27.046925pt;}
.fs26{font-size:27.074007pt;}
.fs23{font-size:27.260604pt;}
.fs16{font-size:27.582217pt;}
.fs38{font-size:28.117523pt;}
.fs3{font-size:28.270228pt;}
.fs2d{font-size:28.418225pt;}
.fs2e{font-size:28.544179pt;}
.fs43{font-size:28.575722pt;}
.fs3e{font-size:28.614272pt;}
.fs3d{font-size:29.143991pt;}
.fs13{font-size:29.523925pt;}
.fs21{font-size:29.918581pt;}
.fsa{font-size:30.274897pt;}
.fs18{font-size:30.991764pt;}
.fs47{font-size:31.704003pt;}
.fs3f{font-size:31.746774pt;}
.fs1f{font-size:31.767144pt;}
.fs0{font-size:31.804007pt;}
.fs1d{font-size:31.982026pt;}
.fs37{font-size:32.000000pt;}
.fs1e{font-size:32.121595pt;}
.fs45{font-size:32.127801pt;}
.fs19{font-size:32.215882pt;}
.fs15{font-size:32.649602pt;}
.fs12{font-size:33.013900pt;}
.fs33{font-size:33.555022pt;}
.fs28{font-size:33.820117pt;}
.fs3b{font-size:34.205838pt;}
.fs39{font-size:34.498305pt;}
.fs22{font-size:34.560000pt;}
.fs11{font-size:34.622090pt;}
.fs3c{font-size:34.883230pt;}
.fs2{font-size:35.337785pt;}
.fs44{font-size:35.451681pt;}
.fs41{font-size:35.499508pt;}
.fs1a{font-size:37.544709pt;}
.fsf{font-size:38.474727pt;}
.fs34{font-size:39.105356pt;}
.fs27{font-size:39.148592pt;}
.fs29{font-size:39.414300pt;}
.fs40{font-size:39.941181pt;}
.fs48{font-size:41.315742pt;}
.fs42{font-size:41.371479pt;}
.fs4{font-size:42.405342pt;}
.fs6{font-size:42.880000pt;}
.fs1b{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs36{font-size:55.081234pt;}
.fs9{font-size:59.337505pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:70.675571pt;}
.fsd{font-size:74.880000pt;}
.fsb{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.yda{bottom:2.560000pt;}
.yd8{bottom:2.720000pt;}
.y123{bottom:2.880000pt;}
.ydd{bottom:3.200000pt;}
.y10{bottom:3.533762pt;}
.y12{bottom:3.533764pt;}
.ya{bottom:3.533781pt;}
.yc{bottom:3.533783pt;}
.y191{bottom:6.560000pt;}
.y1e1{bottom:6.666667pt;}
.y1ae{bottom:6.720000pt;}
.y121{bottom:8.640000pt;}
.y147{bottom:9.726378pt;}
.y159{bottom:12.618728pt;}
.yfa{bottom:14.200222pt;}
.yb0{bottom:14.241903pt;}
.ya0{bottom:14.594689pt;}
.y179{bottom:14.833907pt;}
.y1a7{bottom:15.421077pt;}
.y1cf{bottom:15.672376pt;}
.y1c0{bottom:15.693519pt;}
.y18f{bottom:16.360000pt;}
.y1ac{bottom:16.480000pt;}
.ydc{bottom:16.960000pt;}
.y18d{bottom:17.120000pt;}
.y16{bottom:20.319202pt;}
.y129{bottom:23.363522pt;}
.y11f{bottom:24.000000pt;}
.y151{bottom:24.128477pt;}
.y1e{bottom:25.256769pt;}
.yef{bottom:27.152478pt;}
.ya5{bottom:27.232178pt;}
.y82{bottom:27.906745pt;}
.y15d{bottom:28.364157pt;}
.y197{bottom:29.486896pt;}
.y1c5{bottom:29.967409pt;}
.y1b3{bottom:30.007837pt;}
.y1aa{bottom:30.880000pt;}
.y18c{bottom:30.920000pt;}
.y1f{bottom:32.101830pt;}
.y12a{bottom:32.726035pt;}
.yf0{bottom:36.044785pt;}
.ya6{bottom:36.150587pt;}
.y100{bottom:37.046072pt;}
.y15{bottom:37.988095pt;}
.y83{bottom:38.691484pt;}
.y198{bottom:39.143714pt;}
.y1b4{bottom:39.835261pt;}
.y152{bottom:40.474421pt;}
.y1c6{bottom:42.282001pt;}
.ya1{bottom:42.774658pt;}
.y11b{bottom:43.017523pt;}
.yeb{bottom:46.080000pt;}
.y1a3{bottom:46.794107pt;}
.y12b{bottom:48.950660pt;}
.y15e{bottom:49.455612pt;}
.y1c{bottom:50.720000pt;}
.y1c1{bottom:51.538072pt;}
.yfe{bottom:51.832655pt;}
.yb4{bottom:52.272155pt;}
.y140{bottom:52.287640pt;}
.y13f{bottom:52.583085pt;}
.y13e{bottom:52.978049pt;}
.y14b{bottom:53.034029pt;}
.y101{bottom:53.658061pt;}
.y114{bottom:53.709670pt;}
.y84{bottom:55.169898pt;}
.y1d4{bottom:56.218436pt;}
.yf1{bottom:56.278070pt;}
.ya7{bottom:56.443263pt;}
.y199{bottom:56.696315pt;}
.y1be{bottom:58.324724pt;}
.y1b5{bottom:59.689236pt;}
.y95{bottom:62.795869pt;}
.ya2{bottom:65.027195pt;}
.y15f{bottom:65.158108pt;}
.y12c{bottom:65.178395pt;}
.y170{bottom:65.259932pt;}
.y171{bottom:65.553062pt;}
.y173{bottom:65.846192pt;}
.y180{bottom:65.901732pt;}
.y172{bottom:66.194862pt;}
.y1c7{bottom:67.432783pt;}
.y1b{bottom:68.960000pt;}
.y115{bottom:69.210550pt;}
.y102{bottom:70.324695pt;}
.y85{bottom:71.639204pt;}
.y1a4{bottom:74.107778pt;}
.y19a{bottom:74.306656pt;}
.y153{bottom:74.334345pt;}
.yf2{bottom:76.511355pt;}
.ya8{bottom:76.735939pt;}
.y15a{bottom:77.610096pt;}
.y9e{bottom:78.102457pt;}
.y158{bottom:78.660016pt;}
.y11a{bottom:78.931235pt;}
.y1b6{bottom:79.595441pt;}
.y139{bottom:80.603762pt;}
.y160{bottom:80.913059pt;}
.y137{bottom:80.952077pt;}
.y136{bottom:81.008056pt;}
.y138{bottom:81.054705pt;}
.y12d{bottom:81.403020pt;}
.y96{bottom:81.648291pt;}
.y1bf{bottom:82.311407pt;}
.y146{bottom:84.839518pt;}
.y1a5{bottom:86.271423pt;}
.y103{bottom:86.945792pt;}
.yf9{bottom:87.150814pt;}
.y1a{bottom:87.360000pt;}
.yaf{bottom:87.406628pt;}
.y86{bottom:88.114581pt;}
.y178{bottom:89.358281pt;}
.y9f{bottom:90.977356pt;}
.y19b{bottom:91.868881pt;}
.y1c8{bottom:92.583565pt;}
.y1a6{bottom:92.895349pt;}
.y9d{bottom:93.406010pt;}
.y16e{bottom:93.702772pt;}
.y16b{bottom:93.755227pt;}
.y16d{bottom:93.801510pt;}
.y1ce{bottom:94.409156pt;}
.y161{bottom:96.618641pt;}
.yf3{bottom:96.744640pt;}
.y119{bottom:97.003453pt;}
.ya9{bottom:97.028615pt;}
.y12e{bottom:97.630755pt;}
.y1b7{bottom:99.449415pt;}
.y97{bottom:101.375029pt;}
.y9c{bottom:102.346490pt;}
.y104{bottom:103.560817pt;}
.y111{bottom:103.657963pt;}
.y87{bottom:104.583887pt;}
.y19{bottom:105.760000pt;}
.y98{bottom:105.843751pt;}
.y1d3{bottom:106.927497pt;}
.y10d{bottom:106.967003pt;}
.y154{bottom:108.154898pt;}
.y118{bottom:109.152791pt;}
.y19c{bottom:109.424691pt;}
.y162{bottom:112.324223pt;}
.y12f{bottom:113.855379pt;}
.y116{bottom:114.541366pt;}
.yf4{bottom:116.933619pt;}
.yaa{bottom:117.276854pt;}
.y1c9{bottom:117.783246pt;}
.y14f{bottom:119.033451pt;}
.y13a{bottom:119.282247pt;}
.y1b8{bottom:119.306655pt;}
.y135{bottom:119.882468pt;}
.y105{bottom:120.181913pt;}
.y13b{bottom:120.977172pt;}
.y88{bottom:121.007656pt;}
.y99{bottom:121.493386pt;}
.y13c{bottom:122.168284pt;}
.y117{bottom:123.141835pt;}
.y1d2{bottom:124.101096pt;}
.y13d{bottom:125.153839pt;}
.y1a9{bottom:126.425566pt;}
.y19d{bottom:126.986916pt;}
.y163{bottom:128.076088pt;}
.y14d{bottom:129.787669pt;}
.y130{bottom:130.083114pt;}
.y80{bottom:130.240000pt;}
.y9b{bottom:131.693730pt;}
.y169{bottom:132.719880pt;}
.y16c{bottom:133.065465pt;}
.y16a{bottom:133.312311pt;}
.y16f{bottom:133.358594pt;}
.y94{bottom:134.222566pt;}
.y15b{bottom:134.410775pt;}
.y157{bottom:136.300632pt;}
.y106{bottom:136.848547pt;}
.yf5{bottom:137.166904pt;}
.y89{bottom:137.476961pt;}
.yab{bottom:137.569530pt;}
.y1b9{bottom:139.209595pt;}
.y4e{bottom:139.360000pt;}
.y8e{bottom:139.374347pt;}
.yd6{bottom:141.120000pt;}
.y155{bottom:142.014822pt;}
.y1ca{bottom:142.934028pt;}
.y164{bottom:143.781670pt;}
.y19e{bottom:144.597256pt;}
.y131{bottom:146.307739pt;}
.y145{bottom:148.453606pt;}
.y7f{bottom:148.640000pt;}
.y143{bottom:149.053827pt;}
.y144{bottom:149.100477pt;}
.y142{bottom:149.395922pt;}
.y141{bottom:149.993033pt;}
.y14a{bottom:150.391107pt;}
.y14c{bottom:151.044197pt;}
.y10a{bottom:151.860661pt;}
.y107{bottom:153.460537pt;}
.y8a{bottom:153.946267pt;}
.y112{bottom:155.600787pt;}
.y110{bottom:156.672431pt;}
.y91{bottom:157.255307pt;}
.yf6{bottom:157.400189pt;}
.y4d{bottom:157.760000pt;}
.yac{bottom:157.862205pt;}
.y1ba{bottom:159.066835pt;}
.yd5{bottom:159.520000pt;}
.y165{bottom:159.533536pt;}
.y8f{bottom:160.458094pt;}
.y90{bottom:161.672421pt;}
.y10b{bottom:161.772603pt;}
.y19f{bottom:162.149858pt;}
.y132{bottom:162.535474pt;}
.y1d1{bottom:162.868834pt;}
.y92{bottom:163.281404pt;}
.y7e{bottom:167.040000pt;}
.y1cb{bottom:168.084810pt;}
.y10f{bottom:168.481758pt;}
.y10c{bottom:169.110172pt;}
.y175{bottom:169.314812pt;}
.y177{bottom:169.660396pt;}
.y9a{bottom:169.938950pt;}
.y176{bottom:169.953526pt;}
.y174{bottom:170.009066pt;}
.y17d{bottom:170.055350pt;}
.y108{bottom:170.081633pt;}
.y93{bottom:170.324499pt;}
.y8b{bottom:170.424681pt;}
.y17f{bottom:171.342035pt;}
.yb3{bottom:171.519028pt;}
.yfd{bottom:171.584165pt;}
.y10e{bottom:173.293527pt;}
.y150{bottom:173.946667pt;}
.y166{bottom:175.239117pt;}
.y156{bottom:175.835374pt;}
.y4c{bottom:176.186667pt;}
.yf7{bottom:177.633474pt;}
.yd4{bottom:177.946667pt;}
.yad{bottom:178.154881pt;}
.y133{bottom:178.769428pt;}
.y1bb{bottom:178.914281pt;}
.yb2{bottom:179.532413pt;}
.yfc{bottom:179.574098pt;}
.y1a0{bottom:179.712083pt;}
.y149{bottom:180.355504pt;}
.y81{bottom:182.813333pt;}
.y11d{bottom:185.193929pt;}
.y17c{bottom:185.313523pt;}
.y7d{bottom:185.466667pt;}
.y109{bottom:186.748267pt;}
.y8c{bottom:186.893986pt;}
.y113{bottom:187.188461pt;}
.yb1{bottom:187.545798pt;}
.yfb{bottom:187.564030pt;}
.ya4{bottom:188.413333pt;}
.y148{bottom:190.711648pt;}
.y167{bottom:190.997154pt;}
.y14e{bottom:191.955629pt;}
.y1cc{bottom:193.235591pt;}
.y17b{bottom:193.660006pt;}
.y4b{bottom:194.586667pt;}
.ya3{bottom:194.914614pt;}
.y134{bottom:194.994053pt;}
.y11c{bottom:195.303199pt;}
.y181{bottom:195.934076pt;}
.yd3{bottom:196.346667pt;}
.y1a1{bottom:197.322424pt;}
.yf8{bottom:197.872667pt;}
.y17e{bottom:197.908844pt;}
.yae{bottom:198.453482pt;}
.y1bc{bottom:198.827015pt;}
.y17a{bottom:202.006489pt;}
.y1c3{bottom:202.424364pt;}
.y8d{bottom:203.369364pt;}
.y7c{bottom:203.866667pt;}
.y1c2{bottom:205.616930pt;}
.y1d5{bottom:205.965832pt;}
.y1d0{bottom:206.275530pt;}
.y168{bottom:206.702736pt;}
.y1a8{bottom:206.721021pt;}
.y4a{bottom:212.986667pt;}
.yd2{bottom:214.746667pt;}
.y1a2{bottom:214.884649pt;}
.y1cd{bottom:218.386373pt;}
.y1bd{bottom:218.680989pt;}
.y7b{bottom:222.266667pt;}
.y49{bottom:231.386667pt;}
.yd1{bottom:233.146667pt;}
.y7a{bottom:240.666667pt;}
.y48{bottom:249.786667pt;}
.yd0{bottom:251.546667pt;}
.y79{bottom:259.066667pt;}
.y47{bottom:268.186667pt;}
.ycf{bottom:269.946667pt;}
.y78{bottom:277.466667pt;}
.y195{bottom:284.346667pt;}
.y46{bottom:286.586667pt;}
.yce{bottom:288.346667pt;}
.y77{bottom:295.866667pt;}
.y194{bottom:298.906667pt;}
.y45{bottom:304.986667pt;}
.ycd{bottom:306.746667pt;}
.y193{bottom:313.306667pt;}
.y76{bottom:314.266667pt;}
.y44{bottom:323.386667pt;}
.ycc{bottom:325.146667pt;}
.y192{bottom:327.706667pt;}
.y75{bottom:332.666667pt;}
.y43{bottom:341.786667pt;}
.y190{bottom:342.266667pt;}
.ycb{bottom:343.546667pt;}
.y74{bottom:351.066667pt;}
.y18b{bottom:356.666667pt;}
.y42{bottom:360.186667pt;}
.yca{bottom:361.946667pt;}
.y73{bottom:369.466667pt;}
.y18e{bottom:371.226667pt;}
.y41{bottom:378.586667pt;}
.yc9{bottom:380.346667pt;}
.y72{bottom:387.906667pt;}
.y40{bottom:397.026667pt;}
.yc8{bottom:398.786667pt;}
.y71{bottom:406.306667pt;}
.yea{bottom:414.466667pt;}
.y3f{bottom:415.426667pt;}
.y70{bottom:424.706667pt;}
.yed{bottom:429.026667pt;}
.y3e{bottom:433.826667pt;}
.y6f{bottom:443.106667pt;}
.yec{bottom:443.426667pt;}
.y1b1{bottom:449.506667pt;}
.y3d{bottom:452.226667pt;}
.ye9{bottom:457.986667pt;}
.y6e{bottom:461.506667pt;}
.y1b0{bottom:463.906667pt;}
.y3c{bottom:470.626667pt;}
.ye8{bottom:472.386667pt;}
.y1af{bottom:478.466667pt;}
.y6d{bottom:479.906667pt;}
.ye7{bottom:486.786667pt;}
.y3b{bottom:489.026667pt;}
.y1ad{bottom:492.866667pt;}
.y6c{bottom:498.306667pt;}
.ye6{bottom:501.346667pt;}
.y3a{bottom:507.426667pt;}
.ye5{bottom:515.746667pt;}
.y6b{bottom:516.706667pt;}
.y1ab{bottom:521.826667pt;}
.y39{bottom:525.826667pt;}
.ye4{bottom:530.306667pt;}
.y6a{bottom:535.106667pt;}
.y38{bottom:544.226667pt;}
.y69{bottom:553.506667pt;}
.yc7{bottom:553.986667pt;}
.y37{bottom:562.626667pt;}
.y68{bottom:571.906667pt;}
.yc6{bottom:572.386667pt;}
.y15c{bottom:579.746667pt;}
.y36{bottom:581.026667pt;}
.y67{bottom:590.306667pt;}
.yc5{bottom:590.786667pt;}
.y35{bottom:599.453333pt;}
.y66{bottom:608.733333pt;}
.yc4{bottom:609.213333pt;}
.yff{bottom:615.880000pt;}
.y34{bottom:617.853333pt;}
.yee{bottom:622.146667pt;}
.y1e0{bottom:625.053333pt;}
.y65{bottom:627.133333pt;}
.yc3{bottom:627.613333pt;}
.y127{bottom:631.133333pt;}
.y33{bottom:636.253333pt;}
.y1b2{bottom:640.413333pt;}
.y1c4{bottom:640.746667pt;}
.y1df{bottom:643.453333pt;}
.y64{bottom:645.533333pt;}
.yc2{bottom:646.013333pt;}
.y126{bottom:647.133333pt;}
.y32{bottom:654.653333pt;}
.y1de{bottom:661.853333pt;}
.y125{bottom:663.133333pt;}
.y63{bottom:663.933333pt;}
.yc1{bottom:664.413333pt;}
.y31{bottom:673.053333pt;}
.y124{bottom:679.133333pt;}
.y1dd{bottom:680.253333pt;}
.y62{bottom:682.333333pt;}
.yc0{bottom:682.813333pt;}
.y30{bottom:691.453333pt;}
.y122{bottom:695.133333pt;}
.y14{bottom:696.154348pt;}
.y1dc{bottom:698.653333pt;}
.y61{bottom:700.733333pt;}
.ybf{bottom:701.213333pt;}
.y196{bottom:703.946667pt;}
.y18a{bottom:709.853333pt;}
.y2f{bottom:710.493333pt;}
.y120{bottom:711.133333pt;}
.y1db{bottom:717.053333pt;}
.y13{bottom:717.357019pt;}
.y60{bottom:719.133333pt;}
.ybe{bottom:719.613333pt;}
.y189{bottom:728.253333pt;}
.y11{bottom:729.913988pt;}
.y2e{bottom:731.293333pt;}
.y1da{bottom:735.453333pt;}
.y5f{bottom:737.533333pt;}
.ybd{bottom:738.013333pt;}
.yf{bottom:744.049104pt;}
.y188{bottom:746.653333pt;}
.y11e{bottom:748.253333pt;}
.y2d{bottom:749.213333pt;}
.y1d9{bottom:753.853333pt;}
.y5e{bottom:755.933333pt;}
.ybc{bottom:756.413333pt;}
.y2c{bottom:765.053333pt;}
.y1d8{bottom:772.253333pt;}
.y5d{bottom:774.333333pt;}
.ybb{bottom:774.813333pt;}
.ye{bottom:780.081588pt;}
.y2b{bottom:783.453333pt;}
.y1d7{bottom:790.653333pt;}
.y5c{bottom:792.733333pt;}
.yba{bottom:793.213333pt;}
.yd{bottom:801.284259pt;}
.y2a{bottom:801.853333pt;}
.y1d6{bottom:809.253333pt;}
.y5b{bottom:811.173333pt;}
.yb9{bottom:811.653333pt;}
.yb{bottom:813.841209pt;}
.y29{bottom:820.293333pt;}
.y9{bottom:827.976326pt;}
.y5a{bottom:829.573333pt;}
.yb8{bottom:830.053333pt;}
.y128{bottom:835.746667pt;}
.y28{bottom:838.693333pt;}
.y59{bottom:847.973333pt;}
.yb7{bottom:848.453333pt;}
.y8{bottom:855.174382pt;}
.y27{bottom:857.093333pt;}
.y58{bottom:866.373333pt;}
.yb6{bottom:866.853333pt;}
.y26{bottom:875.493333pt;}
.y7{bottom:879.910832pt;}
.y57{bottom:884.773333pt;}
.yb5{bottom:885.253333pt;}
.y25{bottom:893.893333pt;}
.y6{bottom:894.045946pt;}
.ye3{bottom:900.933333pt;}
.y56{bottom:903.173333pt;}
.y187{bottom:912.293333pt;}
.y24{bottom:914.213333pt;}
.ye2{bottom:915.333333pt;}
.y5{bottom:919.665840pt;}
.y55{bottom:921.573333pt;}
.ye1{bottom:929.893333pt;}
.y186{bottom:930.693333pt;}
.y54{bottom:939.973333pt;}
.y23{bottom:941.733333pt;}
.ye0{bottom:944.293333pt;}
.y185{bottom:949.093333pt;}
.y4{bottom:956.770515pt;}
.y53{bottom:958.373333pt;}
.ydf{bottom:958.853333pt;}
.y184{bottom:967.493333pt;}
.y22{bottom:969.413333pt;}
.yde{bottom:973.253333pt;}
.y52{bottom:976.773333pt;}
.y3{bottom:981.506965pt;}
.y183{bottom:985.893333pt;}
.ydb{bottom:987.813333pt;}
.y51{bottom:995.173333pt;}
.y21{bottom:996.933333pt;}
.yd9{bottom:1002.213333pt;}
.y182{bottom:1004.293333pt;}
.y50{bottom:1013.573333pt;}
.yd7{bottom:1016.640000pt;}
.y2{bottom:1017.728195pt;}
.y20{bottom:1024.640000pt;}
.y4f{bottom:1032.000000pt;}
.y18{bottom:1057.600000pt;}
.y1d{bottom:1059.493333pt;}
.y17{bottom:1074.720000pt;}
.h9{height:11.484765pt;}
.h8{height:11.484785pt;}
.h26{height:13.760000pt;}
.h24{height:13.920000pt;}
.h33{height:15.360000pt;}
.h43{height:16.317576pt;}
.h2e{height:16.327613pt;}
.h36{height:16.446490pt;}
.h3d{height:16.761651pt;}
.h3e{height:17.724111pt;}
.h1b{height:17.898670pt;}
.ha{height:17.912185pt;}
.h37{height:18.648336pt;}
.h44{height:18.651106pt;}
.h38{height:18.798456pt;}
.h2a{height:18.862374pt;}
.h20{height:18.917741pt;}
.h30{height:19.151324pt;}
.h19{height:19.386351pt;}
.h42{height:19.704107pt;}
.h35{height:19.859776pt;}
.h50{height:20.235720pt;}
.h6{height:20.471069pt;}
.h4c{height:20.484055pt;}
.h1e{height:20.499522pt;}
.h13{height:20.651382pt;}
.h3f{height:20.703121pt;}
.h2f{height:20.773546pt;}
.h40{height:20.794880pt;}
.h5a{height:20.817860pt;}
.h54{height:20.845944pt;}
.h5d{height:22.013229pt;}
.h55{height:22.042926pt;}
.h2d{height:22.057070pt;}
.h4a{height:22.218750pt;}
.h5f{height:22.250000pt;}
.h5c{height:22.307487pt;}
.h21{height:22.577984pt;}
.h3{height:23.029952pt;}
.h2b{height:23.299405pt;}
.h2c{height:23.401084pt;}
.h22{height:23.469773pt;}
.h4d{height:23.953413pt;}
.h1d{height:24.051142pt;}
.h45{height:24.445358pt;}
.h3a{height:24.638484pt;}
.h4e{height:24.919487pt;}
.h1c{height:25.222733pt;}
.h4f{height:25.412978pt;}
.h5{height:25.588836pt;}
.h5b{height:25.827104pt;}
.h57{height:25.861946pt;}
.h23{height:26.068641pt;}
.h1a{height:26.714386pt;}
.h46{height:27.152254pt;}
.h3b{height:27.366765pt;}
.h49{height:27.552000pt;}
.h52{height:27.680000pt;}
.h27{height:28.160000pt;}
.h39{height:28.520361pt;}
.h5e{height:28.687004pt;}
.h58{height:28.725705pt;}
.h56{height:29.097775pt;}
.h7{height:30.706603pt;}
.h25{height:33.328125pt;}
.hd{height:35.595625pt;}
.h31{height:36.480000pt;}
.h32{height:36.883125pt;}
.h47{height:38.244880pt;}
.h10{height:39.173500pt;}
.h12{height:39.198251pt;}
.h11{height:40.475828pt;}
.h51{height:42.080000pt;}
.h48{height:42.112000pt;}
.he{height:44.437500pt;}
.h16{height:46.593750pt;}
.hf{height:46.656250pt;}
.h17{height:54.514687pt;}
.h28{height:57.280000pt;}
.h4{height:58.252131pt;}
.h15{height:69.890625pt;}
.h14{height:69.984375pt;}
.h3c{height:200.534745pt;}
.h29{height:225.667589pt;}
.h1f{height:226.329990pt;}
.h18{height:231.936399pt;}
.h41{height:235.738006pt;}
.h34{height:237.600409pt;}
.h4b{height:245.069222pt;}
.h59{height:249.062829pt;}
.h53{height:249.398830pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.hb{height:1122.560000pt;}
.hc{height:1122.666667pt;}
.w6{width:47.511447pt;}
.w7{width:47.606421pt;}
.w1e{width:60.000000pt;}
.w1f{width:61.440000pt;}
.w12{width:66.400000pt;}
.w17{width:78.432000pt;}
.w10{width:83.840000pt;}
.w15{width:85.600000pt;}
.w16{width:87.392000pt;}
.w1a{width:88.832000pt;}
.w1b{width:101.472000pt;}
.w11{width:102.592000pt;}
.w1c{width:122.080000pt;}
.w1d{width:127.392000pt;}
.wd{width:135.226667pt;}
.wf{width:147.066667pt;}
.we{width:169.626667pt;}
.wc{width:187.066667pt;}
.w14{width:252.706667pt;}
.w19{width:287.067479pt;}
.w2{width:308.322176pt;}
.w9{width:313.064160pt;}
.wb{width:317.506667pt;}
.wa{width:322.946667pt;}
.w13{width:323.067314pt;}
.w20{width:345.531210pt;}
.w8{width:349.735991pt;}
.w18{width:395.460581pt;}
.w21{width:403.466944pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w5{width:793.759988pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:6.880000pt;}
.x84{left:20.160000pt;}
.x5b{left:22.080000pt;}
.x83{left:24.000000pt;}
.x3a{left:27.520000pt;}
.x70{left:29.054658pt;}
.x48{left:30.080000pt;}
.x32{left:31.685832pt;}
.x3e{left:33.440000pt;}
.x5e{left:34.400000pt;}
.x2b{left:35.397459pt;}
.x5f{left:37.000000pt;}
.x69{left:37.936647pt;}
.x43{left:38.880000pt;}
.x45{left:40.840000pt;}
.x7f{left:41.760000pt;}
.x31{left:43.652915pt;}
.x46{left:45.280000pt;}
.x30{left:47.137583pt;}
.x1b{left:48.766347pt;}
.x75{left:50.743885pt;}
.x80{left:52.000000pt;}
.x1{left:53.006678pt;}
.x1a{left:54.765699pt;}
.x4a{left:55.983627pt;}
.x7{left:57.423901pt;}
.x44{left:58.560000pt;}
.x74{left:59.543883pt;}
.x3b{left:61.280000pt;}
.x3c{left:63.200000pt;}
.x47{left:64.320000pt;}
.x9{left:65.325585pt;}
.x3f{left:67.040000pt;}
.x2d{left:69.978572pt;}
.x38{left:71.994667pt;}
.x4e{left:73.880000pt;}
.x8{left:75.551988pt;}
.x73{left:78.313112pt;}
.x34{left:79.419476pt;}
.x4c{left:82.578142pt;}
.x2a{left:84.522359pt;}
.x51{left:85.450754pt;}
.x64{left:87.178269pt;}
.x3{left:88.344460pt;}
.x6d{left:89.375554pt;}
.xc{left:91.391988pt;}
.x19{left:92.480000pt;}
.x8e{left:94.675092pt;}
.x4{left:98.062355pt;}
.x10{left:99.551988pt;}
.x22{left:105.728181pt;}
.xb{left:106.751988pt;}
.x8d{left:108.269748pt;}
.x72{left:110.414005pt;}
.x37{left:112.200000pt;}
.x90{left:113.311988pt;}
.x53{left:116.129406pt;}
.x21{left:118.127056pt;}
.x7d{left:120.671988pt;}
.x29{left:122.176779pt;}
.x11{left:123.551988pt;}
.x59{left:125.560618pt;}
.xe{left:128.671988pt;}
.x28{left:130.631576pt;}
.x63{left:133.571023pt;}
.x2e{left:134.575654pt;}
.x33{left:136.604136pt;}
.x71{left:137.624006pt;}
.x4b{left:140.968967pt;}
.x58{left:150.092655pt;}
.x20{left:151.117091pt;}
.x1f{left:158.493029pt;}
.x41{left:160.826667pt;}
.x67{left:162.074186pt;}
.x27{left:164.540402pt;}
.x88{left:165.652304pt;}
.x2c{left:167.668132pt;}
.x52{left:169.252807pt;}
.x1e{left:171.253658pt;}
.x35{left:174.342286pt;}
.x7e{left:176.026667pt;}
.x78{left:178.121243pt;}
.x79{left:180.372827pt;}
.x4d{left:183.982112pt;}
.x1d{left:185.083542pt;}
.x66{left:188.720337pt;}
.x26{left:189.747926pt;}
.x6a{left:191.905857pt;}
.x60{left:193.480000pt;}
.x86{left:195.867229pt;}
.x87{left:198.799212pt;}
.x89{left:199.763888pt;}
.x50{left:200.859853pt;}
.x1c{left:203.219257pt;}
.x85{left:208.880000pt;}
.x25{left:214.027055pt;}
.x57{left:215.714173pt;}
.x55{left:218.025556pt;}
.x77{left:219.185491pt;}
.x7b{left:221.038884pt;}
.x65{left:224.513997pt;}
.xf{left:226.946655pt;}
.x68{left:228.684132pt;}
.x24{left:229.857790pt;}
.x4f{left:236.567845pt;}
.x8b{left:244.478528pt;}
.x56{left:246.655337pt;}
.x6f{left:251.946667pt;}
.x54{left:256.342658pt;}
.x6e{left:257.936617pt;}
.x62{left:261.762861pt;}
.x39{left:264.066667pt;}
.x76{left:265.932996pt;}
.x23{left:271.501107pt;}
.xd{left:276.866655pt;}
.x6c{left:283.018967pt;}
.x61{left:285.741138pt;}
.x7a{left:288.003581pt;}
.x6b{left:304.510367pt;}
.x7c{left:314.823487pt;}
.x12{left:318.306655pt;}
.x16{left:322.946655pt;}
.x13{left:324.386655pt;}
.x17{left:348.866655pt;}
.x15{left:350.146655pt;}
.x8f{left:353.666655pt;}
.x14{left:358.946655pt;}
.x8a{left:360.386655pt;}
.xa{left:362.173322pt;}
.x18{left:367.933322pt;}
.x8c{left:370.880000pt;}
.x2{left:396.666641pt;}
.x36{left:400.093333pt;}
.x5a{left:406.813333pt;}
.x2f{left:414.813333pt;}
.x49{left:418.680000pt;}
.x82{left:428.253333pt;}
.x5{left:432.004436pt;}
.x6{left:441.722318pt;}
.x42{left:467.133333pt;}
.x81{left:490.333333pt;}
.x5c{left:493.053333pt;}
.x3d{left:570.533333pt;}
.x5d{left:581.093333pt;}
}




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