
    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_100bac1d1af5fa1320c0b657.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932000;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_9d5d62299ff867f02d1683c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_05f33c2bb084ae8e44df72f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_9eb61d3be9c71b711f386148.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_5ab8ba07cfe4e6964cd2c235.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_4e84c7754c1d09e4ea0229a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.059000;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_5ab8ba07cfe4e6964cd2c235.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.042000;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_9d5d62299ff867f02d1683c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_84d7c92af070daf3cc0328a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_d7a2e0f90f0582dc5e117e97.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_947a08d6f5204182925db7d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_753224bb0616ec75e8790139.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_d744a1da358440a5e5e8121c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.715820;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_2c8f6abf02369306906c13a1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_15903649e75612af25c77ee6.woff2')format("woff");}.fff{font-family:fff;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9eb61d3be9c71b711f386148.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f7aa1fd811e08fc7f9eedba7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.030000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_98ee0b8c0fb3526beab56f0b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3f74b23f418e5683be59ba9c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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;}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m2{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,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);}
.v1{vertical-align:-6.137273px;}
.v2{vertical-align:-1.079640px;}
.v0{vertical-align:0.000000px;}
.ls61{letter-spacing:-2.584905px;}
.ls13{letter-spacing:-1.018872px;}
.ls46{letter-spacing:-0.503832px;}
.ls2f{letter-spacing:-0.143952px;}
.ls2e{letter-spacing:-0.136754px;}
.ls34{letter-spacing:-0.129557px;}
.ls33{letter-spacing:-0.122359px;}
.ls35{letter-spacing:-0.115162px;}
.ls7f{letter-spacing:-0.108000px;}
.ls42{letter-spacing:-0.107964px;}
.ls3b{letter-spacing:-0.105696px;}
.ls30{letter-spacing:-0.100766px;}
.ls4c{letter-spacing:-0.096088px;}
.ls8a{letter-spacing:-0.095760px;}
.ls41{letter-spacing:-0.093569px;}
.ls11{letter-spacing:-0.076896px;}
.ls56{letter-spacing:-0.076870px;}
.ls85{letter-spacing:-0.076608px;}
.ls52{letter-spacing:-0.071976px;}
.ls84{letter-spacing:-0.071820px;}
.ls63{letter-spacing:-0.067261px;}
.ls5a{letter-spacing:-0.057581px;}
.ls40{letter-spacing:-0.054738px;}
.ls44{letter-spacing:-0.050383px;}
.ls89{letter-spacing:-0.047880px;}
.ls6{letter-spacing:-0.043200px;}
.ls32{letter-spacing:-0.043186px;}
.ls88{letter-spacing:-0.043092px;}
.ls2d{letter-spacing:-0.038435px;}
.ls4{letter-spacing:-0.036000px;}
.ls3c{letter-spacing:-0.035988px;}
.ls80{letter-spacing:-0.034243px;}
.ls31{letter-spacing:-0.034116px;}
.ls82{letter-spacing:-0.032400px;}
.ls47{letter-spacing:-0.028790px;}
.ls3a{letter-spacing:-0.026343px;}
.ls58{letter-spacing:-0.025264px;}
.ls67{letter-spacing:-0.022744px;}
.ls7{letter-spacing:-0.021600px;}
.ls3f{letter-spacing:-0.021593px;}
.ls5c{letter-spacing:-0.019757px;}
.ls7c{letter-spacing:-0.016200px;}
.ls5{letter-spacing:-0.014400px;}
.ls3e{letter-spacing:-0.014395px;}
.ls15{letter-spacing:-0.013176px;}
.ls7e{letter-spacing:-0.010800px;}
.ls3d{letter-spacing:-0.007198px;}
.ls12{letter-spacing:-0.006588px;}
.ls81{letter-spacing:-0.005707px;}
.ls87{letter-spacing:-0.005400px;}
.ls2{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.005400px;}
.ls66{letter-spacing:0.005686px;}
.ls14{letter-spacing:0.006588px;}
.ls18{letter-spacing:0.007198px;}
.ls1{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.008388px;}
.ls6a{letter-spacing:0.009609px;}
.ls55{letter-spacing:0.010385px;}
.ls70{letter-spacing:0.010800px;}
.ls6c{letter-spacing:0.011414px;}
.ls10{letter-spacing:0.013176px;}
.ls78{letter-spacing:0.014364px;}
.ls38{letter-spacing:0.014395px;}
.ls6b{letter-spacing:0.016200px;}
.ls64{letter-spacing:0.017058px;}
.ls4d{letter-spacing:0.017724px;}
.lsf{letter-spacing:0.019764px;}
.ls39{letter-spacing:0.021593px;}
.ls6f{letter-spacing:0.021600px;}
.ls1c{letter-spacing:0.022744px;}
.lsa{letter-spacing:0.026352px;}
.ls28{letter-spacing:0.028430px;}
.ls43{letter-spacing:0.028790px;}
.ls37{letter-spacing:0.029474px;}
.ls6e{letter-spacing:0.032400px;}
.lsb{letter-spacing:0.032940px;}
.ls1b{letter-spacing:0.034116px;}
.ls48{letter-spacing:0.035988px;}
.ls75{letter-spacing:0.038304px;}
.lsd{letter-spacing:0.039528px;}
.ls1e{letter-spacing:0.039803px;}
.ls76{letter-spacing:0.043092px;}
.ls2c{letter-spacing:0.043186px;}
.ls51{letter-spacing:0.044310px;}
.ls65{letter-spacing:0.045489px;}
.ls8{letter-spacing:0.046116px;}
.ls77{letter-spacing:0.047880px;}
.ls4a{letter-spacing:0.050383px;}
.ls1d{letter-spacing:0.051175px;}
.lsc{letter-spacing:0.052704px;}
.ls7a{letter-spacing:0.057456px;}
.ls53{letter-spacing:0.057581px;}
.ls0{letter-spacing:0.058716px;}
.ls9{letter-spacing:0.059292px;}
.ls4f{letter-spacing:0.062034px;}
.ls74{letter-spacing:0.062244px;}
.ls4b{letter-spacing:0.064778px;}
.ls1a{letter-spacing:0.067296px;}
.ls59{letter-spacing:0.070896px;}
.ls86{letter-spacing:0.071820px;}
.ls1f{letter-spacing:0.071976px;}
.ls20{letter-spacing:0.073296px;}
.lse{letter-spacing:0.079056px;}
.ls25{letter-spacing:0.079605px;}
.ls4e{letter-spacing:0.079758px;}
.ls21{letter-spacing:0.085291px;}
.ls71{letter-spacing:0.100548px;}
.ls2a{letter-spacing:0.102349px;}
.ls72{letter-spacing:0.105336px;}
.ls49{letter-spacing:0.107964px;}
.ls23{letter-spacing:0.108036px;}
.ls57{letter-spacing:0.113687px;}
.ls7d{letter-spacing:0.124200px;}
.ls79{letter-spacing:0.129276px;}
.ls83{letter-spacing:0.135000px;}
.ls45{letter-spacing:0.138950px;}
.ls2b{letter-spacing:0.139392px;}
.ls22{letter-spacing:0.143832px;}
.ls26{letter-spacing:0.143952px;}
.ls16{letter-spacing:0.144312px;}
.ls27{letter-spacing:0.145992px;}
.ls73{letter-spacing:0.148428px;}
.ls62{letter-spacing:0.155229px;}
.ls50{letter-spacing:0.172742px;}
.ls68{letter-spacing:0.181955px;}
.ls29{letter-spacing:0.363120px;}
.ls5f{letter-spacing:0.438692px;}
.ls24{letter-spacing:0.499392px;}
.ls5e{letter-spacing:0.526430px;}
.ls60{letter-spacing:0.647914px;}
.ls5d{letter-spacing:1.696291px;}
.ls7b{letter-spacing:1.929600px;}
.ls5b{letter-spacing:2.053097px;}
.ls36{letter-spacing:49.581202px;}
.ls54{letter-spacing:51.246912px;}
.ls17{letter-spacing:67.888537px;}
.ls19{letter-spacing:76.166137px;}
.ls69{letter-spacing:140.785056px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsba{word-spacing:-71.976000px;}
.wsfb{word-spacing:-67.491000px;}
.ws47{word-spacing:-19.409695px;}
.ws8{word-spacing:-19.339344px;}
.ws9{word-spacing:-18.397368px;}
.ws27{word-spacing:-15.402864px;}
.ws24{word-spacing:-15.330888px;}
.ws2a{word-spacing:-15.302098px;}
.ws22{word-spacing:-15.258912px;}
.ws29{word-spacing:-15.122158px;}
.ws89{word-spacing:-14.647116px;}
.ws8a{word-spacing:-14.589535px;}
.ws8b{word-spacing:-14.567942px;}
.ws8c{word-spacing:-14.553547px;}
.ws11a{word-spacing:-12.617393px;}
.ws37{word-spacing:-12.595800px;}
.ws43{word-spacing:-12.279106px;}
.ws46{word-spacing:-12.264710px;}
.ws44{word-spacing:-12.257513px;}
.ws26{word-spacing:-12.139781px;}
.ws28{word-spacing:-12.105664px;}
.ws111{word-spacing:-12.094292px;}
.ws25{word-spacing:-12.088606px;}
.ws113{word-spacing:-12.082920px;}
.ws23{word-spacing:-12.077234px;}
.ws112{word-spacing:-12.071548px;}
.ws114{word-spacing:-12.060176px;}
.ws11c{word-spacing:-9.833400px;}
.ws11b{word-spacing:-9.817200px;}
.ws11d{word-spacing:-9.806400px;}
.ws3a{word-spacing:-9.738353px;}
.ws4a{word-spacing:-9.065465px;}
.wsc7{word-spacing:-9.040201px;}
.ws49{word-spacing:-8.955989px;}
.wsc8{word-spacing:-8.901251px;}
.ws48{word-spacing:-8.871776px;}
.ws119{word-spacing:-7.917360px;}
.ws38{word-spacing:-6.837720px;}
.ws3e{word-spacing:-6.117960px;}
.ws33{word-spacing:-5.758080px;}
.ws30{word-spacing:-5.218260px;}
.ws2c{word-spacing:-5.038320px;}
.ws45{word-spacing:-3.605998px;}
.ws41{word-spacing:-3.598800px;}
.ws35{word-spacing:-2.879040px;}
.ws2b{word-spacing:-2.166478px;}
.ws3c{word-spacing:-2.159280px;}
.wsf8{word-spacing:-2.111590px;}
.ws42{word-spacing:-0.734155px;}
.wsfd{word-spacing:-0.715405px;}
.ws12b{word-spacing:-0.604800px;}
.wsfa{word-spacing:-0.593921px;}
.wsfc{word-spacing:-0.506183px;}
.ws3b{word-spacing:-0.284304px;}
.ws2d{word-spacing:-0.266311px;}
.ws3d{word-spacing:-0.255874px;}
.ws31{word-spacing:-0.227443px;}
.ws117{word-spacing:-0.221757px;}
.ws12f{word-spacing:-0.220248px;}
.ws115{word-spacing:-0.216071px;}
.ws2f{word-spacing:-0.210385px;}
.ws95{word-spacing:-0.208730px;}
.ws13b{word-spacing:-0.201096px;}
.ws98{word-spacing:-0.194335px;}
.ws118{word-spacing:-0.181955px;}
.ws91{word-spacing:-0.179940px;}
.ws12e{word-spacing:-0.177156px;}
.ws34{word-spacing:-0.176268px;}
.wsb2{word-spacing:-0.172742px;}
.ws12d{word-spacing:-0.172368px;}
.wsf3{word-spacing:-0.165545px;}
.ws53{word-spacing:-0.158347px;}
.ws116{word-spacing:-0.153524px;}
.ws9f{word-spacing:-0.151150px;}
.ws5e{word-spacing:-0.143952px;}
.ws131{word-spacing:-0.143640px;}
.ws36{word-spacing:-0.142152px;}
.ws123{word-spacing:-0.140400px;}
.wsab{word-spacing:-0.136754px;}
.ws132{word-spacing:-0.134064px;}
.wsae{word-spacing:-0.129557px;}
.ws13c{word-spacing:-0.129276px;}
.ws120{word-spacing:-0.125556px;}
.ws11f{word-spacing:-0.124200px;}
.ws73{word-spacing:-0.122359px;}
.ws12a{word-spacing:-0.118800px;}
.wsa3{word-spacing:-0.115162px;}
.ws134{word-spacing:-0.114912px;}
.ws122{word-spacing:-0.113400px;}
.ws133{word-spacing:-0.110124px;}
.ws126{word-spacing:-0.108435px;}
.ws129{word-spacing:-0.108000px;}
.wsd7{word-spacing:-0.107964px;}
.wsa0{word-spacing:-0.106344px;}
.ws136{word-spacing:-0.102600px;}
.ws39{word-spacing:-0.100766px;}
.wsd8{word-spacing:-0.097482px;}
.ws121{word-spacing:-0.097200px;}
.ws6c{word-spacing:-0.093569px;}
.ws11e{word-spacing:-0.091800px;}
.wsb5{word-spacing:-0.088620px;}
.ws124{word-spacing:-0.086400px;}
.ws6a{word-spacing:-0.086371px;}
.ws139{word-spacing:-0.086184px;}
.ws125{word-spacing:-0.079899px;}
.ws77{word-spacing:-0.079174px;}
.ws78{word-spacing:-0.071976px;}
.ws12c{word-spacing:-0.064800px;}
.wscd{word-spacing:-0.064778px;}
.ws1{word-spacing:-0.058716px;}
.ws74{word-spacing:-0.057581px;}
.ws6b{word-spacing:-0.050383px;}
.ws2e{word-spacing:-0.043186px;}
.wse7{word-spacing:-0.035988px;}
.ws57{word-spacing:-0.028790px;}
.ws137{word-spacing:-0.028728px;}
.wsbb{word-spacing:-0.026586px;}
.ws7c{word-spacing:-0.021593px;}
.ws72{word-spacing:-0.014395px;}
.ws2{word-spacing:-0.008388px;}
.ws3{word-spacing:-0.007200px;}
.ws94{word-spacing:-0.007198px;}
.ws15{word-spacing:-0.006588px;}
.ws0{word-spacing:0.000000px;}
.ws130{word-spacing:0.004788px;}
.wsdb{word-spacing:0.007198px;}
.ws71{word-spacing:0.014395px;}
.wsc2{word-spacing:0.017724px;}
.ws13a{word-spacing:0.023940px;}
.ws8d{word-spacing:0.028826px;}
.ws21{word-spacing:0.032940px;}
.wscf{word-spacing:0.043186px;}
.ws67{word-spacing:0.071976px;}
.ws4{word-spacing:0.072000px;}
.ws40{word-spacing:0.079605px;}
.ws5{word-spacing:0.086400px;}
.wsff{word-spacing:0.092201px;}
.wsc9{word-spacing:0.096088px;}
.ws4b{word-spacing:0.098787px;}
.ws55{word-spacing:0.122359px;}
.ws32{word-spacing:0.142152px;}
.ws3f{word-spacing:0.153524px;}
.wsc6{word-spacing:0.158347px;}
.ws7{word-spacing:0.162000px;}
.wsda{word-spacing:0.230323px;}
.ws88{word-spacing:0.323892px;}
.ws6{word-spacing:0.331200px;}
.wsa8{word-spacing:0.554215px;}
.wsd9{word-spacing:0.590203px;}
.ws5d{word-spacing:0.597401px;}
.ws10e{word-spacing:0.633389px;}
.wsd{word-spacing:0.731268px;}
.wse{word-spacing:0.764208px;}
.ws52{word-spacing:0.870910px;}
.wsec{word-spacing:0.950083px;}
.ws60{word-spacing:0.957281px;}
.ws5f{word-spacing:0.971676px;}
.wsf7{word-spacing:1.302766px;}
.wsce{word-spacing:1.324358px;}
.wsea{word-spacing:1.338754px;}
.wsf1{word-spacing:1.374742px;}
.wsa2{word-spacing:1.662646px;}
.wsb3{word-spacing:1.669843px;}
.wsc3{word-spacing:1.698634px;}
.ws4e{word-spacing:1.705831px;}
.ws101{word-spacing:2.015328px;}
.ws7a{word-spacing:2.022526px;}
.ws5c{word-spacing:2.065711px;}
.wsaa{word-spacing:2.108897px;}
.wsaf{word-spacing:2.274442px;}
.wsa6{word-spacing:2.332022px;}
.ws10c{word-spacing:2.382406px;}
.ws70{word-spacing:2.396801px;}
.wsd0{word-spacing:2.403998px;}
.wsdf{word-spacing:2.411196px;}
.wsa4{word-spacing:2.418394px;}
.ws62{word-spacing:2.439986px;}
.wsf2{word-spacing:2.454382px;}
.wsfe{word-spacing:2.517414px;}
.ws1e{word-spacing:2.542968px;}
.ws1d{word-spacing:2.562732px;}
.wsb0{word-spacing:2.684705px;}
.wse9{word-spacing:2.727890px;}
.ws106{word-spacing:2.749483px;}
.ws8e{word-spacing:2.756681px;}
.wse2{word-spacing:2.792669px;}
.ws87{word-spacing:3.102166px;}
.wsa7{word-spacing:3.116561px;}
.ws109{word-spacing:3.123758px;}
.ws7d{word-spacing:3.202932px;}
.ws9a{word-spacing:3.346884px;}
.wsc1{word-spacing:3.440453px;}
.ws127{word-spacing:3.472200px;}
.wsb9{word-spacing:3.498034px;}
.ws128{word-spacing:3.526200px;}
.ws1c{word-spacing:3.623400px;}
.ws10{word-spacing:3.643164px;}
.ws1a{word-spacing:3.656340px;}
.ws1b{word-spacing:3.689280px;}
.ws8f{word-spacing:3.793135px;}
.ws51{word-spacing:3.829123px;}
.ws65{word-spacing:4.174608px;}
.wsee{word-spacing:4.196201px;}
.wsd6{word-spacing:4.203398px;}
.wse5{word-spacing:4.520093px;}
.wsc5{word-spacing:4.556081px;}
.ws10d{word-spacing:4.577674px;}
.wsde{word-spacing:4.584871px;}
.wsf4{word-spacing:4.858380px;}
.wsd1{word-spacing:4.894368px;}
.wse8{word-spacing:4.915961px;}
.ws103{word-spacing:4.980739px;}
.wsca{word-spacing:5.239853px;}
.ws7e{word-spacing:5.275841px;}
.wsef{word-spacing:5.283038px;}
.wscb{word-spacing:5.290236px;}
.wsf{word-spacing:5.415336px;}
.ws6f{word-spacing:5.642918px;}
.wsc4{word-spacing:5.664511px;}
.ws10a{word-spacing:5.995601px;}
.wsb6{word-spacing:6.002798px;}
.ws83{word-spacing:6.333888px;}
.wsdd{word-spacing:6.686570px;}
.wsbc{word-spacing:6.693768px;}
.ws6d{word-spacing:6.715361px;}
.ws108{word-spacing:6.722558px;}
.wse0{word-spacing:7.068043px;}
.ws4f{word-spacing:7.104031px;}
.ws9b{word-spacing:7.125624px;}
.ws84{word-spacing:7.463911px;}
.wsed{word-spacing:7.766210px;}
.wsac{word-spacing:7.802198px;}
.ws79{word-spacing:7.816594px;}
.wsbf{word-spacing:8.140486px;}
.ws102{word-spacing:8.169276px;}
.wsb1{word-spacing:8.183671px;}
.ws81{word-spacing:8.521958px;}
.ws64{word-spacing:8.529156px;}
.wse6{word-spacing:8.543551px;}
.ws4d{word-spacing:8.572342px;}
.wse4{word-spacing:8.860246px;}
.ws61{word-spacing:8.896234px;}
.ws86{word-spacing:9.227323px;}
.wsf0{word-spacing:9.234521px;}
.ws17{word-spacing:9.420840px;}
.ws18{word-spacing:9.440604px;}
.ws68{word-spacing:9.587203px;}
.ws7b{word-spacing:9.608796px;}
.ws69{word-spacing:9.615994px;}
.wsa9{word-spacing:9.911095px;}
.ws107{word-spacing:9.925490px;}
.ws5b{word-spacing:9.947083px;}
.wse1{word-spacing:10.019059px;}
.wsad{word-spacing:10.306963px;}
.ws104{word-spacing:10.335754px;}
.wsb7{word-spacing:10.378939px;}
.wsa5{word-spacing:10.630855px;}
.wsd4{word-spacing:10.645250px;}
.ws110{word-spacing:10.702831px;}
.ws82{word-spacing:11.005130px;}
.ws85{word-spacing:11.062711px;}
.ws5a{word-spacing:11.343418px;}
.ws59{word-spacing:11.365010px;}
.ws9e{word-spacing:11.393801px;}
.ws4c{word-spacing:11.408196px;}
.wsb4{word-spacing:11.429789px;}
.ws10b{word-spacing:11.739286px;}
.wsd2{word-spacing:12.063178px;}
.ws66{word-spacing:12.077573px;}
.wsc0{word-spacing:12.120758px;}
.ws93{word-spacing:12.466243px;}
.wse3{word-spacing:12.480638px;}
.ws92{word-spacing:12.502231px;}
.wsdc{word-spacing:12.574207px;}
.ws100{word-spacing:13.164410px;}
.ws80{word-spacing:13.193201px;}
.ws7f{word-spacing:13.200398px;}
.wsf5{word-spacing:13.876973px;}
.wseb{word-spacing:13.891368px;}
.wsbd{word-spacing:14.006530px;}
.wsa1{word-spacing:14.258446px;}
.wsb8{word-spacing:14.265643px;}
.ws76{word-spacing:14.280038px;}
.ws75{word-spacing:14.294434px;}
.wsd3{word-spacing:14.618326px;}
.ws1f{word-spacing:15.514740px;}
.ws20{word-spacing:15.527916px;}
.ws105{word-spacing:16.065043px;}
.ws63{word-spacing:16.158612px;}
.ws6e{word-spacing:16.453714px;}
.ws10f{word-spacing:17.598132px;}
.ws19{word-spacing:18.433224px;}
.ws97{word-spacing:19.311161px;}
.ws11{word-spacing:22.339908px;}
.ws9d{word-spacing:22.909961px;}
.wscc{word-spacing:26.861443px;}
.wsb{word-spacing:28.071468px;}
.wsa{word-spacing:28.104408px;}
.ws16{word-spacing:29.573532px;}
.wsc{word-spacing:42.150024px;}
.ws50{word-spacing:44.855443px;}
.ws96{word-spacing:46.302161px;}
.ws12{word-spacing:46.471752px;}
.wsbe{word-spacing:64.684831px;}
.ws99{word-spacing:67.535081px;}
.ws14{word-spacing:78.858360px;}
.ws13{word-spacing:78.917652px;}
.ws135{word-spacing:110.401704px;}
.ws13d{word-spacing:117.947592px;}
.ws138{word-spacing:118.057716px;}
.wsf9{word-spacing:160.369710px;}
.ws9c{word-spacing:165.731938px;}
.ws90{word-spacing:187.029636px;}
.wsd5{word-spacing:196.998312px;}
.ws54{word-spacing:197.070288px;}
.wsf6{word-spacing:197.091881px;}
.ws56{word-spacing:197.106276px;}
.ws58{word-spacing:197.178252px;}
._b{margin-left:-197.214240px;}
._2c{margin-left:-184.726404px;}
._33{margin-left:-170.583120px;}
._2a{margin-left:-134.127276px;}
._32{margin-left:-119.840040px;}
._a{margin-left:-102.205920px;}
._2b{margin-left:-98.967000px;}
._31{margin-left:-76.294560px;}
._29{margin-left:-46.424520px;}
._13{margin-left:-31.669440px;}
._e{margin-left:-16.275175px;}
._5{margin-left:-11.726292px;}
._9{margin-left:-6.535421px;}
._6{margin-left:-5.038320px;}
._8{margin-left:-3.390869px;}
._34{margin-left:-2.111122px;}
._2{margin-left:-1.028484px;}
._3{width:1.073844px;}
._4{width:2.269620px;}
._35{width:3.855374px;}
._36{width:5.041578px;}
._24{width:6.549816px;}
._7{width:7.771233px;}
._0{width:8.975160px;}
._14{width:10.076640px;}
._1{width:13.968000px;}
._2f{width:21.412860px;}
._1e{width:23.665709px;}
._1b{width:31.309560px;}
._d{width:38.925133px;}
._21{width:43.006249px;}
._c{width:51.861172px;}
._1f{width:54.356275px;}
._20{width:55.816057px;}
._1d{width:67.211189px;}
._37{width:78.809069px;}
._12{width:81.260904px;}
._1c{width:82.599658px;}
._30{width:97.851372px;}
._2e{width:113.031110px;}
._19{width:121.279560px;}
._16{width:125.598120px;}
._23{width:131.982391px;}
._27{width:139.345536px;}
._17{width:143.592120px;}
._22{width:147.126142px;}
._25{width:150.861696px;}
._2d{width:158.577523px;}
._26{width:161.658096px;}
._28{width:162.665760px;}
._1a{width:167.207446px;}
._15{width:187.137600px;}
._11{width:197.142264px;}
._18{width:198.704143px;}
._f{width:527.399222px;}
._10{width:822.325800px;}
.fc2{color:rgb(59,75,167);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:18.000000px;}
.fsc{font-size:42.106200px;}
.fs13{font-size:47.880000px;}
.fs11{font-size:53.982000px;}
.fs4{font-size:54.000000px;}
.fsb{font-size:56.860800px;}
.fs12{font-size:57.070914px;}
.fsf{font-size:58.492800px;}
.fs7{font-size:60.120000px;}
.fsa{font-size:65.857800px;}
.fs1{font-size:65.880000px;}
.fs10{font-size:67.491000px;}
.fs9{font-size:71.976000px;}
.fs2{font-size:72.000000px;}
.fse{font-size:83.851800px;}
.fs0{font-size:83.880000px;}
.fsd{font-size:88.620334px;}
.fs8{font-size:96.087600px;}
.fs6{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1ab{bottom:3.420450px;}
.y3e{bottom:70.702200px;}
.yb1{bottom:103.996858px;}
.y165{bottom:107.410140px;}
.y8d{bottom:111.195958px;}
.y64{bottom:114.070529px;}
.y164{bottom:131.792010px;}
.y8c{bottom:135.397888px;}
.yb0{bottom:137.195788px;}
.y12e{bottom:138.723359px;}
.y63{bottom:147.629339px;}
.y10d{bottom:147.630179px;}
.yd4{bottom:151.857089px;}
.y1fb{bottom:159.420450px;}
.y8b{bottom:159.687988px;}
.y163{bottom:160.762350px;}
.yaf{bottom:170.484688px;}
.y62{bottom:171.829469px;}
.y10c{bottom:171.920279px;}
.y12d{bottom:171.920489px;}
.y1fa{bottom:180.480450px;}
.y8a{bottom:183.889918px;}
.yd3{bottom:185.145989px;}
.y160{bottom:190.361850px;}
.yae{bottom:194.684819px;}
.y61{bottom:196.121369px;}
.y10b{bottom:196.122209px;}
.y12c{bottom:196.212389px;}
.y1f9{bottom:199.379388px;}
.y89{bottom:208.180019px;}
.y1f8{bottom:213.149676px;}
.yd2{bottom:218.434889px;}
.y15c{bottom:222.305654px;}
.y1f7{bottom:226.919964px;}
.yad{bottom:227.973719px;}
.y60{bottom:229.320569px;}
.y10a{bottom:229.411109px;}
.y12b{bottom:229.501289px;}
.y88{bottom:232.381949px;}
.y1f6{bottom:240.690252px;}
.y156{bottom:241.735500px;}
.yd1{bottom:242.636819px;}
.y5f{bottom:253.612469px;}
.y12a{bottom:253.703219px;}
.y1f4{bottom:255.270909px;}
.yac{bottom:261.170849px;}
.y109{bottom:264.859289px;}
.y87{bottom:265.669049px;}
.y1f3{bottom:268.866201px;}
.yd0{bottom:276.015689px;}
.y5e{bottom:277.904369px;}
.y129{bottom:277.995119px;}
.y1f2{bottom:282.455742px;}
.yab{bottom:285.462749px;}
.y157{bottom:289.418831px;}
.y86{bottom:289.960949px;}
.y1f1{bottom:295.955508px;}
.y108{bottom:300.397439px;}
.ycf{bottom:301.207289px;}
.y128{bottom:302.195250px;}
.y1f0{bottom:309.545049px;}
.yaa{bottom:309.754649px;}
.y5d{bottom:311.103119px;}
.y85{bottom:314.161080px;}
.y1ef{bottom:323.134590px;}
.y107{bottom:324.597570px;}
.ya9{bottom:333.954780px;}
.yce{bottom:334.496189px;}
.y127{bottom:335.484150px;}
.y1ee{bottom:336.724131px;}
.y158{bottom:337.011497px;}
.y84{bottom:338.452980px;}
.y5c{bottom:344.392019px;}
.y106{bottom:348.889470px;}
.yf0{bottom:348.980249px;}
.y1ed{bottom:350.313672px;}
.y83{bottom:362.654910px;}
.y1ec{bottom:363.813438px;}
.y126{bottom:365.713650px;}
.ya8{bottom:367.333650px;}
.ycd{bottom:367.695119px;}
.y5b{bottom:368.596409px;}
.y105{bottom:373.091400px;}
.y1eb{bottom:377.402979px;}
.yef{bottom:382.269149px;}
.y159{bottom:384.607089px;}
.y2a{bottom:386.850450px;}
.y82{bottom:386.946810px;}
.y1ea{bottom:390.992520px;}
.ycc{bottom:391.987019px;}
.ya7{bottom:397.743300px;}
.y5a{bottom:401.885309px;}
.y1e9{bottom:404.582061px;}
.y104{bottom:406.380300px;}
.y15f{bottom:409.168800px;}
.y125{bottom:410.885848px;}
.y81{bottom:411.148740px;}
.yee{bottom:415.558049px;}
.ycb{bottom:416.278919px;}
.y1e8{bottom:418.171602px;}
.y59{bottom:426.085439px;}
.y1e7{bottom:431.671368px;}
.y15a{bottom:432.202680px;}
.y124{bottom:435.177748px;}
.y103{bottom:436.609800px;}
.yca{bottom:440.479050px;}
.y17f{bottom:440.491346px;}
.yed{bottom:440.839619px;}
.ya6{bottom:443.005108px;}
.y80{bottom:444.437640px;}
.y15e{bottom:444.796800px;}
.y1e6{bottom:445.260909px;}
.y58{bottom:450.377339px;}
.y1e5{bottom:458.850450px;}
.y123{bottom:459.379678px;}
.ya5{bottom:467.297008px;}
.y7f{bottom:468.639570px;}
.y1e4{bottom:470.550450px;}
.yc9{bottom:473.767950px;}
.y17e{bottom:473.778446px;}
.yec{bottom:474.218489px;}
.y57{bottom:474.579269px;}
.y1e3{bottom:477.930600px;}
.y1f5{bottom:479.460630px;}
.y15b{bottom:479.798271px;}
.y15d{bottom:480.424950px;}
.y141{bottom:481.331698px;}
.y102{bottom:481.774050px;}
.ya4{bottom:491.498938px;}
.y122{bottom:492.666778px;}
.y7e{bottom:492.931470px;}
.y197{bottom:497.789670px;}
.y56{bottom:498.871169px;}
.y1e2{bottom:498.990450px;}
.y162{bottom:501.925615px;}
.yc8{bottom:503.997450px;}
.y140{bottom:505.533628px;}
.y17d{bottom:506.977376px;}
.yeb{bottom:508.407089px;}
.y101{bottom:515.065289px;}
.y7d{bottom:517.223370px;}
.y1e1{bottom:517.895049px;}
.y1a7{bottom:518.937778px;}
.y161{bottom:522.169541px;}
.y55{bottom:523.163069px;}
.ya3{bottom:524.786038px;}
.y121{bottom:525.865708px;}
.y196{bottom:530.988600px;}
.y17c{bottom:531.267477px;}
.y1e0{bottom:531.484590px;}
.yea{bottom:532.697190px;}
.y13f{bottom:538.822528px;}
.y1ce{bottom:539.850450px;}
.y1df{bottom:544.984356px;}
.y54{bottom:547.363200px;}
.y100{bottom:548.264219px;}
.yc7{bottom:549.168838px;}
.y120{bottom:550.157608px;}
.y1a6{bottom:552.046738px;}
.y17b{bottom:555.557578px;}
.y7c{bottom:556.540260px;}
.ye9{bottom:556.899120px;}
.ya2{bottom:557.984968px;}
.y1de{bottom:558.573897px;}
.y1cd{bottom:558.665967px;}
.y195{bottom:562.304758px;}
.y53{bottom:571.658909px;}
.y13e{bottom:572.111428px;}
.y1dd{bottom:572.163438px;}
.y1cc{bottom:572.255508px;}
.yff{bottom:572.556119px;}
.yc6{bottom:573.458938px;}
.y3d{bottom:574.265159px;}
.y11f{bottom:574.449508px;}
.y13{bottom:575.851764px;}
.y17a{bottom:579.759508px;}
.ya1{bottom:582.275069px;}
.y1a5{bottom:585.243869px;}
.y1dc{bottom:585.752979px;}
.y1cb{bottom:585.845049px;}
.y155{bottom:587.760329px;}
.y194{bottom:589.475248px;}
.y7b{bottom:590.009100px;}
.ye8{bottom:590.188020px;}
.yc5{bottom:597.660868px;}
.y11e{bottom:598.651438px;}
.y1db{bottom:599.342520px;}
.y1ca{bottom:599.434590px;}
.y52{bottom:604.856039px;}
.y13d{bottom:605.310358px;}
.yfe{bottom:605.753850px;}
.y3c{bottom:607.464089px;}
.y154{bottom:611.962259px;}
.y1da{bottom:612.842286px;}
.y1c9{bottom:613.024131px;}
.y179{bottom:613.048408px;}
.y12{bottom:614.011107px;}
.ye7{bottom:614.389950px;}
.y193{bottom:616.644388px;}
.y1a4{bottom:618.440999px;}
.ya0{bottom:621.501989px;}
.y75{bottom:624.018539px;}
.y7a{bottom:624.020339px;}
.y1d9{bottom:626.431827px;}
.y1c8{bottom:626.523897px;}
.y51{bottom:629.147939px;}
.yc4{bottom:631.037939px;}
.y11d{bottom:631.940338px;}
.y153{bottom:636.254159px;}
.y178{bottom:637.250338px;}
.y29{bottom:637.680450px;}
.y13c{bottom:638.599258px;}
.ye6{bottom:638.681850px;}
.yfd{bottom:639.046139px;}
.y1d8{bottom:640.021368px;}
.y1c7{bottom:640.113438px;}
.y3b{bottom:640.571250px;}
.y192{bottom:643.814878px;}
.y9f{bottom:645.793889px;}
.y1a3{bottom:651.549959px;}
.y11{bottom:652.170450px;}
.y50{bottom:653.348070px;}
.y1d7{bottom:653.610909px;}
.y1c6{bottom:653.702979px;}
.yc3{bottom:656.321308px;}
.y74{bottom:657.307439px;}
.y79{bottom:657.309239px;}
.y28{bottom:660.542403px;}
.y152{bottom:660.546059px;}
.y177{bottom:661.542238px;}
.y13b{bottom:662.801188px;}
.y11c{bottom:665.139268px;}
.y1d6{bottom:667.202520px;}
.y1c5{bottom:667.292520px;}
.y9e{bottom:669.995819px;}
.y191{bottom:670.984019px;}
.ye5{bottom:671.970750px;}
.yfc{bottom:672.335039px;}
.y3a{bottom:673.770750px;}
.y4f{bottom:677.639970px;}
.y1d5{bottom:680.702286px;}
.y1c4{bottom:680.882061px;}
.y27{bottom:681.961638px;}
.y1a2{bottom:684.747090px;}
.y176{bottom:685.744168px;}
.y11b{bottom:689.429369px;}
.yc2{bottom:689.518439px;}
.y73{bottom:690.506369px;}
.y78{bottom:690.508169px;}
.y151{bottom:693.743190px;}
.y1d4{bottom:694.291827px;}
.y1c3{bottom:694.381827px;}
.y9d{bottom:694.555829px;}
.y13a{bottom:696.090088px;}
.yfb{bottom:696.536969px;}
.y10{bottom:698.070450px;}
.y190{bottom:698.154509px;}
.y4e{bottom:701.841000px;}
.ye4{bottom:702.111900px;}
.y26{bottom:703.471458px;}
.y39{bottom:706.968900px;}
.y1d3{bottom:707.881368px;}
.y1c2{bottom:707.971368px;}
.y1a1{bottom:717.856050px;}
.y150{bottom:718.035090px;}
.y175{bottom:719.033068px;}
.y1d2{bottom:721.470909px;}
.y1c1{bottom:721.560909px;}
.y11a{bottom:722.628299px;}
.yc1{bottom:722.807339px;}
.y72{bottom:723.795269px;}
.y77{bottom:723.797069px;}
.y25{bottom:724.890693px;}
.y18f{bottom:725.415419px;}
.y139{bottom:729.287218px;}
.yfa{bottom:729.825869px;}
.y9c{bottom:733.872719px;}
.y1d1{bottom:735.060450px;}
.y4d{bottom:735.130650px;}
.y1c0{bottom:735.150450px;}
.yf{bottom:737.130450px;}
.y38{bottom:740.078400px;}
.y174{bottom:743.233198px;}
.y24{bottom:746.309928px;}
.y1d0{bottom:746.670450px;}
.y1bf{bottom:746.760450px;}
.y119{bottom:746.918399px;}
.yc0{bottom:747.007469px;}
.y14f{bottom:747.095400px;}
.ye3{bottom:747.373468px;}
.y1a0{bottom:751.054980px;}
.y18e{bottom:752.585909px;}
.yf9{bottom:754.027799px;}
.y1cf{bottom:754.050450px;}
.y1be{bottom:754.230450px;}
.y71{bottom:756.992400px;}
.y76{bottom:756.994199px;}
.y9b{bottom:758.074649px;}
.y138{bottom:762.576118px;}
.ye{bottom:764.760450px;}
.y173{bottom:767.525098px;}
.y23{bottom:767.819748px;}
.y4c{bottom:768.418620px;}
.y1bd{bottom:769.351827px;}
.y118{bottom:771.120329px;}
.ybf{bottom:771.299369px;}
.ye2{bottom:771.665368px;}
.y37{bottom:773.278050px;}
.y14c{bottom:776.696550px;}
.y18d{bottom:779.755050px;}
.y9a{bottom:782.366549px;}
.y1bc{bottom:782.941368px;}
.y19f{bottom:784.253910px;}
.yd{bottom:785.820450px;}
.y22{bottom:789.240630px;}
.yf8{bottom:789.565949px;}
.y70{bottom:791.092050px;}
.y172{bottom:791.816998px;}
.y137{bottom:795.773249px;}
.ye1{bottom:795.865498px;}
.y1bb{bottom:796.530909px;}
.y36{bottom:797.389050px;}
.y4b{bottom:801.617550px;}
.y117{bottom:804.407430px;}
.ybe{bottom:804.498299px;}
.y99{bottom:806.928359px;}
.y18c{bottom:807.195562px;}
.y148{bottom:808.634317px;}
.y1ba{bottom:810.120450px;}
.y21{bottom:810.750450px;}
.yf7{bottom:813.766079px;}
.y19e{bottom:817.362870px;}
.y136{bottom:820.065149px;}
.y35{bottom:821.591550px;}
.y1b9{bottom:824.250450px;}
.y6f{bottom:824.650050px;}
.y171{bottom:825.015928px;}
.y18b{bottom:826.450050px;}
.yc{bottom:827.130450px;}
.y142{bottom:828.068550px;}
.ybd{bottom:828.788400px;}
.ye0{bottom:829.154398px;}
.y4a{bottom:834.911368px;}
.y1b8{bottom:839.281827px;}
.y116{bottom:839.857409px;}
.y96{bottom:840.219059px;}
.y20{bottom:841.980450px;}
.y18a{bottom:845.614322px;}
.y98{bottom:848.584469px;}
.yf6{bottom:849.304229px;}
.y170{bottom:849.306029px;}
.y19d{bottom:850.651770px;}
.y1b7{bottom:852.871368px;}
.ybc{bottom:852.990330px;}
.y135{bottom:853.354049px;}
.ydf{bottom:853.356328px;}
.y34{bottom:854.789550px;}
.y6e{bottom:858.928350px;}
.y189{bottom:864.867389px;}
.y1b6{bottom:866.460909px;}
.y49{bottom:868.110298px;}
.yb{bottom:868.440450px;}
.y97{bottom:873.146279px;}
.y95{bottom:873.416189px;}
.yf5{bottom:873.506159px;}
.y16f{bottom:873.507959px;}
.y115{bottom:875.395559px;}
.y143{bottom:875.751881px;}
.y1b5{bottom:880.050450px;}
.y6d{bottom:883.220250px;}
.y19c{bottom:883.850700px;}
.y1f{bottom:886.080450px;}
.ybb{bottom:886.369200px;}
.y134{bottom:886.552979px;}
.yde{bottom:886.643429px;}
.y33{bottom:887.899200px;}
.y48{bottom:892.402198px;}
.y188{bottom:893.027700px;}
.y1b4{bottom:894.000450px;}
.yf4{bottom:897.798059px;}
.y16e{bottom:897.799859px;}
.y6c{bottom:907.422180px;}
.y1e{bottom:909.480450px;}
.y114{bottom:910.843739px;}
.y32{bottom:912.100200px;}
.y187{bottom:912.191484px;}
.y94{bottom:913.002989px;}
.y19b{bottom:915.610350px;}
.yba{bottom:916.868700px;}
.y1b3{bottom:918.210000px;}
.y133{bottom:919.841879px;}
.ydd{bottom:919.842359px;}
.y144{bottom:923.346010px;}
.ya{bottom:924.511008px;}
.y47{bottom:925.599329px;}
.yf3{bottom:930.995190px;}
.y16d{bottom:930.996989px;}
.y186{bottom:931.445972px;}
.y1d{bottom:932.343168px;}
.y113{bottom:935.133840px;}
.y31{bottom:936.212700px;}
.y1b2{bottom:942.330000px;}
.ydc{bottom:944.134259px;}
.y93{bottom:946.291889px;}
.y6b{bottom:946.739070px;}
.y46{bottom:949.891229px;}
.y132{bottom:953.040809px;}
.y1c{bottom:953.764050px;}
.yf2{bottom:955.287090px;}
.y16c{bottom:955.288889px;}
.y1b1{bottom:957.540450px;}
.y112{bottom:959.335770px;}
.y185{bottom:959.604862px;}
.y30{bottom:960.415350px;}
.yb9{bottom:962.036009px;}
.y9{bottom:967.260450px;}
.ydb{bottom:968.336189px;}
.y19a{bottom:969.682500px;}
.y145{bottom:970.940139px;}
.y6a{bottom:971.390850px;}
.y45{bottom:974.093159px;}
.y1b{bottom:975.183285px;}
.y1af{bottom:975.630000px;}
.y1b0{bottom:975.630450px;}
.y184{bottom:978.859350px;}
.y92{bottom:979.489020px;}
.y111{bottom:983.627670px;}
.y2f{bottom:984.616350px;}
.yb8{bottom:986.327909px;}
.y131{bottom:986.329709px;}
.y16b{bottom:986.777759px;}
.yf1{bottom:988.486020px;}
.yda{bottom:992.626289px;}
.y1ae{bottom:993.990000px;}
.y1a{bottom:996.693105px;}
.y183{bottom:998.022200px;}
.y44{bottom:998.385059px;}
.y199{bottom:1000.272000px;}
.y14b{bottom:1001.530500px;}
.y69{bottom:1005.670320px;}
.y110{bottom:1007.919570px;}
.y8{bottom:1008.750450px;}
.yb7{bottom:1010.528040px;}
.y16a{bottom:1010.979689px;}
.y91{bottom:1012.777920px;}
.y182{bottom:1017.184290px;}
.y2e{bottom:1017.726000px;}
.y19{bottom:1018.112340px;}
.y146{bottom:1018.534268px;}
.y130{bottom:1019.526839px;}
.y1ad{bottom:1021.080450px;}
.y43{bottom:1022.676959px;}
.yd9{bottom:1025.915189px;}
.y7{bottom:1029.721062px;}
.y198{bottom:1030.771500px;}
.yb6{bottom:1034.819940px;}
.y169{bottom:1035.181619px;}
.y1aa{bottom:1035.750000px;}
.y90{bottom:1037.069820px;}
.y14a{bottom:1037.158500px;}
.y68{bottom:1038.869250px;}
.y1ac{bottom:1039.170450px;}
.y18{bottom:1039.622160px;}
.y10f{bottom:1041.118500px;}
.y12f{bottom:1043.818739px;}
.y181{bottom:1045.437000px;}
.y42{bottom:1046.877089px;}
.yd8{bottom:1050.117119px;}
.y2d{bottom:1050.924690px;}
.y6{bottom:1053.840756px;}
.y17{bottom:1061.041395px;}
.y8f{bottom:1061.271750px;}
.y180{bottom:1064.599500px;}
.y147{bottom:1066.126934px;}
.y1a9{bottom:1066.260450px;}
.yb5{bottom:1068.018870px;}
.y168{bottom:1068.288780px;}
.y41{bottom:1071.168989px;}
.y10e{bottom:1071.348150px;}
.y67{bottom:1072.158150px;}
.y149{bottom:1072.786500px;}
.yd7{bottom:1074.407220px;}
.y5{bottom:1077.960450px;}
.y16{bottom:1082.551215px;}
.y2c{bottom:1084.033650px;}
.y14e{bottom:1088.258628px;}
.yb4{bottom:1092.310770px;}
.y167{bottom:1092.490710px;}
.y8e{bottom:1094.560650px;}
.y1a8{bottom:1100.370450px;}
.y15{bottom:1103.970450px;}
.y40{bottom:1104.276150px;}
.y66{bottom:1106.166150px;}
.yd6{bottom:1107.606150px;}
.y14d{bottom:1108.502553px;}
.yb3{bottom:1116.602670px;}
.y166{bottom:1116.692640px;}
.y4{bottom:1119.270450px;}
.y2b{bottom:1120.111500px;}
.y3f{bottom:1126.229550px;}
.y14{bottom:1135.290600px;}
.yd5{bottom:1137.835350px;}
.y65{bottom:1139.814750px;}
.yb2{bottom:1140.804600px;}
.y3{bottom:1158.781737px;}
.y2{bottom:1201.531179px;}
.y1{bottom:1244.190450px;}
.h20{height:12.978000px;}
.h1b{height:15.120000px;}
.h1e{height:34.521480px;}
.h5{height:38.394000px;}
.h1f{height:38.934000px;}
.h1a{height:41.148129px;}
.h2{height:43.909277px;}
.h19{height:44.334000px;}
.h1d{height:44.334600px;}
.h1c{height:44.335800px;}
.h17{height:44.373204px;}
.h14{height:46.382962px;}
.h16{height:46.739578px;}
.h21{height:47.988281px;}
.ha{height:49.418640px;}
.h3{height:51.912000px;}
.h15{height:53.518254px;}
.h8{height:54.153360px;}
.h13{height:55.887552px;}
.hc{height:59.164272px;}
.hf{height:59.167872px;}
.he{height:59.167992px;}
.h9{height:59.184000px;}
.h1{height:59.638680px;}
.h11{height:60.099960px;}
.h10{height:61.179600px;}
.h7{height:69.302520px;}
.hd{height:70.270273px;}
.h12{height:75.327284px;}
.h6{height:76.788000px;}
.h18{height:77.868000px;}
.hb{height:81.674460px;}
.h4{height:102.384000px;}
.h0{height:1263.000000px;}
.w2{width:269.640000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x5{left:106.290000px;}
.x1b{left:116.910000px;}
.x6{left:119.929800px;}
.x1e{left:124.560000px;}
.x22{left:127.620000px;}
.x1{left:129.150000px;}
.x13{left:133.245450px;}
.x7{left:134.954850px;}
.x1a{left:144.311700px;}
.xa{left:159.337050px;}
.x8{left:164.914800px;}
.x15{left:179.490300px;}
.x2{left:182.070000px;}
.xb{left:191.365800px;}
.xe{left:204.771450px;}
.x16{left:210.170407px;}
.x11{left:220.606320px;}
.x3{left:255.150000px;}
.x4{left:263.250000px;}
.xd{left:267.030840px;}
.x10{left:270.357931px;}
.x1f{left:313.920000px;}
.x12{left:326.860890px;}
.x18{left:332.349600px;}
.x14{left:429.336750px;}
.x9{left:433.565250px;}
.xc{left:447.690900px;}
.xf{left:461.006400px;}
.x21{left:462.420000px;}
.x1c{left:513.450000px;}
.x17{left:651.382350px;}
.x1d{left:668.340000px;}
.x19{left:754.397850px;}
.x20{left:776.249850px;}
@media print{
.v1{vertical-align:-5.455354pt;}
.v2{vertical-align:-0.959680pt;}
.v0{vertical-align:0.000000pt;}
.ls61{letter-spacing:-2.297694pt;}
.ls13{letter-spacing:-0.905664pt;}
.ls46{letter-spacing:-0.447851pt;}
.ls2f{letter-spacing:-0.127957pt;}
.ls2e{letter-spacing:-0.121559pt;}
.ls34{letter-spacing:-0.115162pt;}
.ls33{letter-spacing:-0.108764pt;}
.ls35{letter-spacing:-0.102366pt;}
.ls7f{letter-spacing:-0.096000pt;}
.ls42{letter-spacing:-0.095968pt;}
.ls3b{letter-spacing:-0.093952pt;}
.ls30{letter-spacing:-0.089570pt;}
.ls4c{letter-spacing:-0.085411pt;}
.ls8a{letter-spacing:-0.085120pt;}
.ls41{letter-spacing:-0.083172pt;}
.ls11{letter-spacing:-0.068352pt;}
.ls56{letter-spacing:-0.068329pt;}
.ls85{letter-spacing:-0.068096pt;}
.ls52{letter-spacing:-0.063979pt;}
.ls84{letter-spacing:-0.063840pt;}
.ls63{letter-spacing:-0.059788pt;}
.ls5a{letter-spacing:-0.051183pt;}
.ls40{letter-spacing:-0.048656pt;}
.ls44{letter-spacing:-0.044785pt;}
.ls89{letter-spacing:-0.042560pt;}
.ls6{letter-spacing:-0.038400pt;}
.ls32{letter-spacing:-0.038387pt;}
.ls88{letter-spacing:-0.038304pt;}
.ls2d{letter-spacing:-0.034164pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls3c{letter-spacing:-0.031989pt;}
.ls80{letter-spacing:-0.030438pt;}
.ls31{letter-spacing:-0.030326pt;}
.ls82{letter-spacing:-0.028800pt;}
.ls47{letter-spacing:-0.025591pt;}
.ls3a{letter-spacing:-0.023416pt;}
.ls58{letter-spacing:-0.022457pt;}
.ls67{letter-spacing:-0.020217pt;}
.ls7{letter-spacing:-0.019200pt;}
.ls3f{letter-spacing:-0.019194pt;}
.ls5c{letter-spacing:-0.017562pt;}
.ls7c{letter-spacing:-0.014400pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls3e{letter-spacing:-0.012796pt;}
.ls15{letter-spacing:-0.011712pt;}
.ls7e{letter-spacing:-0.009600pt;}
.ls3d{letter-spacing:-0.006398pt;}
.ls12{letter-spacing:-0.005856pt;}
.ls81{letter-spacing:-0.005073pt;}
.ls87{letter-spacing:-0.004800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.004800pt;}
.ls66{letter-spacing:0.005054pt;}
.ls14{letter-spacing:0.005856pt;}
.ls18{letter-spacing:0.006398pt;}
.ls1{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.007456pt;}
.ls6a{letter-spacing:0.008541pt;}
.ls55{letter-spacing:0.009231pt;}
.ls70{letter-spacing:0.009600pt;}
.ls6c{letter-spacing:0.010146pt;}
.ls10{letter-spacing:0.011712pt;}
.ls78{letter-spacing:0.012768pt;}
.ls38{letter-spacing:0.012796pt;}
.ls6b{letter-spacing:0.014400pt;}
.ls64{letter-spacing:0.015163pt;}
.ls4d{letter-spacing:0.015755pt;}
.lsf{letter-spacing:0.017568pt;}
.ls39{letter-spacing:0.019194pt;}
.ls6f{letter-spacing:0.019200pt;}
.ls1c{letter-spacing:0.020217pt;}
.lsa{letter-spacing:0.023424pt;}
.ls28{letter-spacing:0.025271pt;}
.ls43{letter-spacing:0.025591pt;}
.ls37{letter-spacing:0.026199pt;}
.ls6e{letter-spacing:0.028800pt;}
.lsb{letter-spacing:0.029280pt;}
.ls1b{letter-spacing:0.030326pt;}
.ls48{letter-spacing:0.031989pt;}
.ls75{letter-spacing:0.034048pt;}
.lsd{letter-spacing:0.035136pt;}
.ls1e{letter-spacing:0.035380pt;}
.ls76{letter-spacing:0.038304pt;}
.ls2c{letter-spacing:0.038387pt;}
.ls51{letter-spacing:0.039387pt;}
.ls65{letter-spacing:0.040434pt;}
.ls8{letter-spacing:0.040992pt;}
.ls77{letter-spacing:0.042560pt;}
.ls4a{letter-spacing:0.044785pt;}
.ls1d{letter-spacing:0.045489pt;}
.lsc{letter-spacing:0.046848pt;}
.ls7a{letter-spacing:0.051072pt;}
.ls53{letter-spacing:0.051183pt;}
.ls0{letter-spacing:0.052192pt;}
.ls9{letter-spacing:0.052704pt;}
.ls4f{letter-spacing:0.055142pt;}
.ls74{letter-spacing:0.055328pt;}
.ls4b{letter-spacing:0.057581pt;}
.ls1a{letter-spacing:0.059819pt;}
.ls59{letter-spacing:0.063019pt;}
.ls86{letter-spacing:0.063840pt;}
.ls1f{letter-spacing:0.063979pt;}
.ls20{letter-spacing:0.065152pt;}
.lse{letter-spacing:0.070272pt;}
.ls25{letter-spacing:0.070760pt;}
.ls4e{letter-spacing:0.070896pt;}
.ls21{letter-spacing:0.075814pt;}
.ls71{letter-spacing:0.089376pt;}
.ls2a{letter-spacing:0.090977pt;}
.ls72{letter-spacing:0.093632pt;}
.ls49{letter-spacing:0.095968pt;}
.ls23{letter-spacing:0.096032pt;}
.ls57{letter-spacing:0.101055pt;}
.ls7d{letter-spacing:0.110400pt;}
.ls79{letter-spacing:0.114912pt;}
.ls83{letter-spacing:0.120000pt;}
.ls45{letter-spacing:0.123512pt;}
.ls2b{letter-spacing:0.123904pt;}
.ls22{letter-spacing:0.127851pt;}
.ls26{letter-spacing:0.127957pt;}
.ls16{letter-spacing:0.128277pt;}
.ls27{letter-spacing:0.129771pt;}
.ls73{letter-spacing:0.131936pt;}
.ls62{letter-spacing:0.137982pt;}
.ls50{letter-spacing:0.153549pt;}
.ls68{letter-spacing:0.161737pt;}
.ls29{letter-spacing:0.322773pt;}
.ls5f{letter-spacing:0.389948pt;}
.ls24{letter-spacing:0.443904pt;}
.ls5e{letter-spacing:0.467938pt;}
.ls60{letter-spacing:0.575923pt;}
.ls5d{letter-spacing:1.507814pt;}
.ls7b{letter-spacing:1.715200pt;}
.ls5b{letter-spacing:1.824975pt;}
.ls36{letter-spacing:44.072179pt;}
.ls54{letter-spacing:45.552811pt;}
.ls17{letter-spacing:60.345366pt;}
.ls19{letter-spacing:67.703233pt;}
.ls69{letter-spacing:125.142272pt;}
.wsba{word-spacing:-63.978667pt;}
.wsfb{word-spacing:-59.992000pt;}
.ws47{word-spacing:-17.253062pt;}
.ws8{word-spacing:-17.190528pt;}
.ws9{word-spacing:-16.353216pt;}
.ws27{word-spacing:-13.691435pt;}
.ws24{word-spacing:-13.627456pt;}
.ws2a{word-spacing:-13.601865pt;}
.ws22{word-spacing:-13.563477pt;}
.ws29{word-spacing:-13.441918pt;}
.ws89{word-spacing:-13.019659pt;}
.ws8a{word-spacing:-12.968476pt;}
.ws8b{word-spacing:-12.949282pt;}
.ws8c{word-spacing:-12.936486pt;}
.ws11a{word-spacing:-11.215460pt;}
.ws37{word-spacing:-11.196267pt;}
.ws43{word-spacing:-10.914761pt;}
.ws46{word-spacing:-10.901965pt;}
.ws44{word-spacing:-10.895567pt;}
.ws26{word-spacing:-10.790916pt;}
.ws28{word-spacing:-10.760591pt;}
.ws111{word-spacing:-10.750482pt;}
.ws25{word-spacing:-10.745428pt;}
.ws113{word-spacing:-10.740373pt;}
.ws23{word-spacing:-10.735319pt;}
.ws112{word-spacing:-10.730265pt;}
.ws114{word-spacing:-10.720156pt;}
.ws11c{word-spacing:-8.740800pt;}
.ws11b{word-spacing:-8.726400pt;}
.ws11d{word-spacing:-8.716800pt;}
.ws3a{word-spacing:-8.656314pt;}
.ws4a{word-spacing:-8.058191pt;}
.wsc7{word-spacing:-8.035734pt;}
.ws49{word-spacing:-7.960879pt;}
.wsc8{word-spacing:-7.912223pt;}
.ws48{word-spacing:-7.886023pt;}
.ws119{word-spacing:-7.037653pt;}
.ws38{word-spacing:-6.077973pt;}
.ws3e{word-spacing:-5.438187pt;}
.ws33{word-spacing:-5.118293pt;}
.ws30{word-spacing:-4.638453pt;}
.ws2c{word-spacing:-4.478507pt;}
.ws45{word-spacing:-3.205331pt;}
.ws41{word-spacing:-3.198933pt;}
.ws35{word-spacing:-2.559147pt;}
.ws2b{word-spacing:-1.925758pt;}
.ws3c{word-spacing:-1.919360pt;}
.wsf8{word-spacing:-1.876969pt;}
.ws42{word-spacing:-0.652582pt;}
.wsfd{word-spacing:-0.635915pt;}
.ws12b{word-spacing:-0.537600pt;}
.wsfa{word-spacing:-0.527930pt;}
.wsfc{word-spacing:-0.449940pt;}
.ws3b{word-spacing:-0.252715pt;}
.ws2d{word-spacing:-0.236721pt;}
.ws3d{word-spacing:-0.227443pt;}
.ws31{word-spacing:-0.202172pt;}
.ws117{word-spacing:-0.197117pt;}
.ws12f{word-spacing:-0.195776pt;}
.ws115{word-spacing:-0.192063pt;}
.ws2f{word-spacing:-0.187009pt;}
.ws95{word-spacing:-0.185538pt;}
.ws13b{word-spacing:-0.178752pt;}
.ws98{word-spacing:-0.172742pt;}
.ws118{word-spacing:-0.161737pt;}
.ws91{word-spacing:-0.159947pt;}
.ws12e{word-spacing:-0.157472pt;}
.ws34{word-spacing:-0.156683pt;}
.wsb2{word-spacing:-0.153549pt;}
.ws12d{word-spacing:-0.153216pt;}
.wsf3{word-spacing:-0.147151pt;}
.ws53{word-spacing:-0.140753pt;}
.ws116{word-spacing:-0.136466pt;}
.ws9f{word-spacing:-0.134355pt;}
.ws5e{word-spacing:-0.127957pt;}
.ws131{word-spacing:-0.127680pt;}
.ws36{word-spacing:-0.126357pt;}
.ws123{word-spacing:-0.124800pt;}
.wsab{word-spacing:-0.121559pt;}
.ws132{word-spacing:-0.119168pt;}
.wsae{word-spacing:-0.115162pt;}
.ws13c{word-spacing:-0.114912pt;}
.ws120{word-spacing:-0.111605pt;}
.ws11f{word-spacing:-0.110400pt;}
.ws73{word-spacing:-0.108764pt;}
.ws12a{word-spacing:-0.105600pt;}
.wsa3{word-spacing:-0.102366pt;}
.ws134{word-spacing:-0.102144pt;}
.ws122{word-spacing:-0.100800pt;}
.ws133{word-spacing:-0.097888pt;}
.ws126{word-spacing:-0.096386pt;}
.ws129{word-spacing:-0.096000pt;}
.wsd7{word-spacing:-0.095968pt;}
.wsa0{word-spacing:-0.094528pt;}
.ws136{word-spacing:-0.091200pt;}
.ws39{word-spacing:-0.089570pt;}
.wsd8{word-spacing:-0.086651pt;}
.ws121{word-spacing:-0.086400pt;}
.ws6c{word-spacing:-0.083172pt;}
.ws11e{word-spacing:-0.081600pt;}
.wsb5{word-spacing:-0.078774pt;}
.ws124{word-spacing:-0.076800pt;}
.ws6a{word-spacing:-0.076774pt;}
.ws139{word-spacing:-0.076608pt;}
.ws125{word-spacing:-0.071022pt;}
.ws77{word-spacing:-0.070377pt;}
.ws78{word-spacing:-0.063979pt;}
.ws12c{word-spacing:-0.057600pt;}
.wscd{word-spacing:-0.057581pt;}
.ws1{word-spacing:-0.052192pt;}
.ws74{word-spacing:-0.051183pt;}
.ws6b{word-spacing:-0.044785pt;}
.ws2e{word-spacing:-0.038387pt;}
.wse7{word-spacing:-0.031989pt;}
.ws57{word-spacing:-0.025591pt;}
.ws137{word-spacing:-0.025536pt;}
.wsbb{word-spacing:-0.023632pt;}
.ws7c{word-spacing:-0.019194pt;}
.ws72{word-spacing:-0.012796pt;}
.ws2{word-spacing:-0.007456pt;}
.ws3{word-spacing:-0.006400pt;}
.ws94{word-spacing:-0.006398pt;}
.ws15{word-spacing:-0.005856pt;}
.ws0{word-spacing:0.000000pt;}
.ws130{word-spacing:0.004256pt;}
.wsdb{word-spacing:0.006398pt;}
.ws71{word-spacing:0.012796pt;}
.wsc2{word-spacing:0.015755pt;}
.ws13a{word-spacing:0.021280pt;}
.ws8d{word-spacing:0.025623pt;}
.ws21{word-spacing:0.029280pt;}
.wscf{word-spacing:0.038387pt;}
.ws67{word-spacing:0.063979pt;}
.ws4{word-spacing:0.064000pt;}
.ws40{word-spacing:0.070760pt;}
.ws5{word-spacing:0.076800pt;}
.wsff{word-spacing:0.081956pt;}
.wsc9{word-spacing:0.085411pt;}
.ws4b{word-spacing:0.087810pt;}
.ws55{word-spacing:0.108764pt;}
.ws32{word-spacing:0.126357pt;}
.ws3f{word-spacing:0.136466pt;}
.wsc6{word-spacing:0.140753pt;}
.ws7{word-spacing:0.144000pt;}
.wsda{word-spacing:0.204732pt;}
.ws88{word-spacing:0.287904pt;}
.ws6{word-spacing:0.294400pt;}
.wsa8{word-spacing:0.492636pt;}
.wsd9{word-spacing:0.524625pt;}
.ws5d{word-spacing:0.531023pt;}
.ws10e{word-spacing:0.563012pt;}
.wsd{word-spacing:0.650016pt;}
.wse{word-spacing:0.679296pt;}
.ws52{word-spacing:0.774142pt;}
.wsec{word-spacing:0.844518pt;}
.ws60{word-spacing:0.850916pt;}
.ws5f{word-spacing:0.863712pt;}
.wsf7{word-spacing:1.158014pt;}
.wsce{word-spacing:1.177207pt;}
.wsea{word-spacing:1.190003pt;}
.wsf1{word-spacing:1.221993pt;}
.wsa2{word-spacing:1.477907pt;}
.wsb3{word-spacing:1.484305pt;}
.wsc3{word-spacing:1.509897pt;}
.ws4e{word-spacing:1.516294pt;}
.ws101{word-spacing:1.791403pt;}
.ws7a{word-spacing:1.797801pt;}
.ws5c{word-spacing:1.836188pt;}
.wsaa{word-spacing:1.874575pt;}
.wsaf{word-spacing:2.021726pt;}
.wsa6{word-spacing:2.072909pt;}
.ws10c{word-spacing:2.117694pt;}
.ws70{word-spacing:2.130490pt;}
.wsd0{word-spacing:2.136887pt;}
.wsdf{word-spacing:2.143285pt;}
.wsa4{word-spacing:2.149683pt;}
.ws62{word-spacing:2.168877pt;}
.wsf2{word-spacing:2.181673pt;}
.wsfe{word-spacing:2.237702pt;}
.ws1e{word-spacing:2.260416pt;}
.ws1d{word-spacing:2.277984pt;}
.wsb0{word-spacing:2.386404pt;}
.wse9{word-spacing:2.424791pt;}
.ws106{word-spacing:2.443985pt;}
.ws8e{word-spacing:2.450383pt;}
.wse2{word-spacing:2.482372pt;}
.ws87{word-spacing:2.757481pt;}
.wsa7{word-spacing:2.770276pt;}
.ws109{word-spacing:2.776674pt;}
.ws7d{word-spacing:2.847051pt;}
.ws9a{word-spacing:2.975008pt;}
.wsc1{word-spacing:3.058180pt;}
.ws127{word-spacing:3.086400pt;}
.wsb9{word-spacing:3.109363pt;}
.ws128{word-spacing:3.134400pt;}
.ws1c{word-spacing:3.220800pt;}
.ws10{word-spacing:3.238368pt;}
.ws1a{word-spacing:3.250080pt;}
.ws1b{word-spacing:3.279360pt;}
.ws8f{word-spacing:3.371676pt;}
.ws51{word-spacing:3.403665pt;}
.ws65{word-spacing:3.710763pt;}
.wsee{word-spacing:3.729956pt;}
.wsd6{word-spacing:3.736354pt;}
.wse5{word-spacing:4.017860pt;}
.wsc5{word-spacing:4.049850pt;}
.ws10d{word-spacing:4.069043pt;}
.wsde{word-spacing:4.075441pt;}
.wsf4{word-spacing:4.318560pt;}
.wsd1{word-spacing:4.350549pt;}
.wse8{word-spacing:4.369743pt;}
.ws103{word-spacing:4.427324pt;}
.wsca{word-spacing:4.657647pt;}
.ws7e{word-spacing:4.689636pt;}
.wsef{word-spacing:4.696034pt;}
.wscb{word-spacing:4.702432pt;}
.wsf{word-spacing:4.813632pt;}
.ws6f{word-spacing:5.015927pt;}
.wsc4{word-spacing:5.035121pt;}
.ws10a{word-spacing:5.329423pt;}
.wsb6{word-spacing:5.335821pt;}
.ws83{word-spacing:5.630123pt;}
.wsdd{word-spacing:5.943618pt;}
.wsbc{word-spacing:5.950016pt;}
.ws6d{word-spacing:5.969210pt;}
.ws108{word-spacing:5.975607pt;}
.wse0{word-spacing:6.282705pt;}
.ws4f{word-spacing:6.314694pt;}
.ws9b{word-spacing:6.333888pt;}
.ws84{word-spacing:6.634588pt;}
.wsed{word-spacing:6.903298pt;}
.wsac{word-spacing:6.935287pt;}
.ws79{word-spacing:6.948083pt;}
.wsbf{word-spacing:7.235987pt;}
.ws102{word-spacing:7.261579pt;}
.wsb1{word-spacing:7.274374pt;}
.ws81{word-spacing:7.575074pt;}
.ws64{word-spacing:7.581472pt;}
.wse6{word-spacing:7.594268pt;}
.ws4d{word-spacing:7.619859pt;}
.wse4{word-spacing:7.875774pt;}
.ws61{word-spacing:7.907763pt;}
.ws86{word-spacing:8.202065pt;}
.wsf0{word-spacing:8.208463pt;}
.ws17{word-spacing:8.374080pt;}
.ws18{word-spacing:8.391648pt;}
.ws68{word-spacing:8.521958pt;}
.ws7b{word-spacing:8.541152pt;}
.ws69{word-spacing:8.547550pt;}
.wsa9{word-spacing:8.809862pt;}
.ws107{word-spacing:8.822658pt;}
.ws5b{word-spacing:8.841852pt;}
.wse1{word-spacing:8.905830pt;}
.wsad{word-spacing:9.161745pt;}
.ws104{word-spacing:9.187337pt;}
.wsb7{word-spacing:9.225724pt;}
.wsa5{word-spacing:9.449649pt;}
.wsd4{word-spacing:9.462445pt;}
.ws110{word-spacing:9.513628pt;}
.ws82{word-spacing:9.782338pt;}
.ws85{word-spacing:9.833521pt;}
.ws5a{word-spacing:10.083038pt;}
.ws59{word-spacing:10.102231pt;}
.ws9e{word-spacing:10.127823pt;}
.ws4c{word-spacing:10.140619pt;}
.wsb4{word-spacing:10.159812pt;}
.ws10b{word-spacing:10.434921pt;}
.wsd2{word-spacing:10.722825pt;}
.ws66{word-spacing:10.735620pt;}
.wsc0{word-spacing:10.774007pt;}
.ws93{word-spacing:11.081105pt;}
.wse3{word-spacing:11.093901pt;}
.ws92{word-spacing:11.113094pt;}
.wsdc{word-spacing:11.177073pt;}
.ws100{word-spacing:11.701698pt;}
.ws80{word-spacing:11.727290pt;}
.ws7f{word-spacing:11.733687pt;}
.wsf5{word-spacing:12.335087pt;}
.wseb{word-spacing:12.347883pt;}
.wsbd{word-spacing:12.450249pt;}
.wsa1{word-spacing:12.674174pt;}
.wsb8{word-spacing:12.680572pt;}
.ws76{word-spacing:12.693367pt;}
.ws75{word-spacing:12.706163pt;}
.wsd3{word-spacing:12.994067pt;}
.ws1f{word-spacing:13.790880pt;}
.ws20{word-spacing:13.802592pt;}
.ws105{word-spacing:14.280038pt;}
.ws63{word-spacing:14.363211pt;}
.ws6e{word-spacing:14.625523pt;}
.ws10f{word-spacing:15.642784pt;}
.ws19{word-spacing:16.385088pt;}
.ws97{word-spacing:17.165476pt;}
.ws11{word-spacing:19.857696pt;}
.ws9d{word-spacing:20.364410pt;}
.wscc{word-spacing:23.876838pt;}
.wsb{word-spacing:24.952416pt;}
.wsa{word-spacing:24.981696pt;}
.ws16{word-spacing:26.287584pt;}
.wsc{word-spacing:37.466688pt;}
.ws50{word-spacing:39.871505pt;}
.ws96{word-spacing:41.157476pt;}
.ws12{word-spacing:41.308224pt;}
.wsbe{word-spacing:57.497628pt;}
.ws99{word-spacing:60.031183pt;}
.ws14{word-spacing:70.096320pt;}
.ws13{word-spacing:70.149024pt;}
.ws135{word-spacing:98.134848pt;}
.ws13d{word-spacing:104.842304pt;}
.ws138{word-spacing:104.940192pt;}
.wsf9{word-spacing:142.550853pt;}
.ws9c{word-spacing:147.317278pt;}
.ws90{word-spacing:166.248565pt;}
.wsd5{word-spacing:175.109611pt;}
.ws54{word-spacing:175.173589pt;}
.wsf6{word-spacing:175.192783pt;}
.ws56{word-spacing:175.205579pt;}
.ws58{word-spacing:175.269557pt;}
._b{margin-left:-175.301547pt;}
._2c{margin-left:-164.201248pt;}
._33{margin-left:-151.629440pt;}
._2a{margin-left:-119.224245pt;}
._32{margin-left:-106.524480pt;}
._a{margin-left:-90.849707pt;}
._2b{margin-left:-87.970667pt;}
._31{margin-left:-67.817387pt;}
._29{margin-left:-41.266240pt;}
._13{margin-left:-28.150613pt;}
._e{margin-left:-14.466822pt;}
._5{margin-left:-10.423371pt;}
._9{margin-left:-5.809263pt;}
._6{margin-left:-4.478507pt;}
._8{margin-left:-3.014106pt;}
._34{margin-left:-1.876553pt;}
._2{margin-left:-0.914208pt;}
._3{width:0.954528pt;}
._4{width:2.017440pt;}
._35{width:3.426999pt;}
._36{width:4.481402pt;}
._24{width:5.822059pt;}
._7{width:6.907763pt;}
._0{width:7.977920pt;}
._14{width:8.957013pt;}
._1{width:12.416000pt;}
._2f{width:19.033653pt;}
._1e{width:21.036186pt;}
._1b{width:27.830720pt;}
._d{width:34.600118pt;}
._21{width:38.227777pt;}
._c{width:46.098820pt;}
._1f{width:48.316689pt;}
._20{width:49.614273pt;}
._1d{width:59.743279pt;}
._37{width:70.052506pt;}
._12{width:72.231915pt;}
._1c{width:73.421918pt;}
._30{width:86.978997pt;}
._2e{width:100.472098pt;}
._19{width:107.804053pt;}
._16{width:111.642773pt;}
._23{width:117.317681pt;}
._27{width:123.862699pt;}
._17{width:127.637440pt;}
._22{width:130.778793pt;}
._25{width:134.099285pt;}
._2d{width:140.957798pt;}
._26{width:143.696085pt;}
._28{width:144.591787pt;}
._1a{width:148.628841pt;}
._15{width:166.344533pt;}
._11{width:175.237568pt;}
._18{width:176.625905pt;}
._f{width:468.799309pt;}
._10{width:730.956267pt;}
.fs14{font-size:16.000000pt;}
.fsc{font-size:37.427733pt;}
.fs13{font-size:42.560000pt;}
.fs11{font-size:47.984000pt;}
.fs4{font-size:48.000000pt;}
.fsb{font-size:50.542933pt;}
.fs12{font-size:50.729701pt;}
.fsf{font-size:51.993600pt;}
.fs7{font-size:53.440000pt;}
.fsa{font-size:58.540267pt;}
.fs1{font-size:58.560000pt;}
.fs10{font-size:59.992000pt;}
.fs9{font-size:63.978667pt;}
.fs2{font-size:64.000000pt;}
.fse{font-size:74.534933pt;}
.fs0{font-size:74.560000pt;}
.fsd{font-size:78.773630pt;}
.fs8{font-size:85.411200pt;}
.fs6{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1ab{bottom:3.040400pt;}
.y3e{bottom:62.846400pt;}
.yb1{bottom:92.441652pt;}
.y165{bottom:95.475680pt;}
.y8d{bottom:98.840851pt;}
.y64{bottom:101.396026pt;}
.y164{bottom:117.148453pt;}
.y8c{bottom:120.353678pt;}
.yb0{bottom:121.951812pt;}
.y12e{bottom:123.309652pt;}
.y63{bottom:131.226079pt;}
.y10d{bottom:131.226826pt;}
.yd4{bottom:134.984079pt;}
.y1fb{bottom:141.707067pt;}
.y8b{bottom:141.944878pt;}
.y163{bottom:142.899867pt;}
.yaf{bottom:151.541945pt;}
.y62{bottom:152.737306pt;}
.y10c{bottom:152.818026pt;}
.y12d{bottom:152.818213pt;}
.y1fa{bottom:160.427067pt;}
.y8a{bottom:163.457705pt;}
.yd3{bottom:164.574213pt;}
.y160{bottom:169.210533pt;}
.yae{bottom:173.053172pt;}
.y61{bottom:174.330106pt;}
.y10b{bottom:174.330853pt;}
.y12c{bottom:174.411013pt;}
.y1f9{bottom:177.226123pt;}
.y89{bottom:185.048906pt;}
.y1f8{bottom:189.466379pt;}
.yd2{bottom:194.164346pt;}
.y15c{bottom:197.605026pt;}
.y1f7{bottom:201.706635pt;}
.yad{bottom:202.643306pt;}
.y60{bottom:203.840506pt;}
.y10a{bottom:203.920986pt;}
.y12b{bottom:204.001146pt;}
.y88{bottom:206.561732pt;}
.y1f6{bottom:213.946891pt;}
.y156{bottom:214.876000pt;}
.yd1{bottom:215.677173pt;}
.y5f{bottom:225.433306pt;}
.y12a{bottom:225.513973pt;}
.y1f4{bottom:226.907475pt;}
.yac{bottom:232.151866pt;}
.y109{bottom:235.430479pt;}
.y87{bottom:236.150266pt;}
.y1f3{bottom:238.992179pt;}
.yd0{bottom:245.347279pt;}
.y5e{bottom:247.026106pt;}
.y129{bottom:247.106773pt;}
.y1f2{bottom:251.071771pt;}
.yab{bottom:253.744666pt;}
.y157{bottom:257.261183pt;}
.y86{bottom:257.743066pt;}
.y1f1{bottom:263.071563pt;}
.y108{bottom:267.019946pt;}
.ycf{bottom:267.739813pt;}
.y128{bottom:268.618000pt;}
.y1f0{bottom:275.151155pt;}
.yaa{bottom:275.337466pt;}
.y5d{bottom:276.536106pt;}
.y85{bottom:279.254293pt;}
.y1ef{bottom:287.230747pt;}
.y107{bottom:288.531173pt;}
.ya9{bottom:296.848693pt;}
.yce{bottom:297.329946pt;}
.y127{bottom:298.208133pt;}
.y1ee{bottom:299.310339pt;}
.y158{bottom:299.565775pt;}
.y84{bottom:300.847093pt;}
.y5c{bottom:306.126239pt;}
.y106{bottom:310.123973pt;}
.yf0{bottom:310.204666pt;}
.y1ed{bottom:311.389931pt;}
.y83{bottom:322.359920pt;}
.y1ec{bottom:323.389723pt;}
.y126{bottom:325.078800pt;}
.ya8{bottom:326.518800pt;}
.ycd{bottom:326.840106pt;}
.y5b{bottom:327.641252pt;}
.y105{bottom:331.636800pt;}
.y1eb{bottom:335.469315pt;}
.yef{bottom:339.794799pt;}
.y159{bottom:341.872968pt;}
.y2a{bottom:343.867067pt;}
.y82{bottom:343.952720pt;}
.y1ea{bottom:347.548907pt;}
.ycc{bottom:348.432906pt;}
.ya7{bottom:353.549600pt;}
.y5a{bottom:357.231386pt;}
.y1e9{bottom:359.628499pt;}
.y104{bottom:361.226933pt;}
.y15f{bottom:363.705600pt;}
.y125{bottom:365.231865pt;}
.y81{bottom:365.465547pt;}
.yee{bottom:369.384933pt;}
.ycb{bottom:370.025706pt;}
.y1e8{bottom:371.708091pt;}
.y59{bottom:378.742613pt;}
.y1e7{bottom:383.707883pt;}
.y15a{bottom:384.180160pt;}
.y124{bottom:386.824665pt;}
.y103{bottom:388.097600pt;}
.yca{bottom:391.536933pt;}
.y17f{bottom:391.547863pt;}
.yed{bottom:391.857439pt;}
.ya6{bottom:393.782318pt;}
.y80{bottom:395.055680pt;}
.y15e{bottom:395.374933pt;}
.y1e6{bottom:395.787475pt;}
.y58{bottom:400.335413pt;}
.y1e5{bottom:407.867067pt;}
.y123{bottom:408.337491pt;}
.ya5{bottom:415.375118pt;}
.y7f{bottom:416.568507pt;}
.y1e4{bottom:418.267067pt;}
.yc9{bottom:421.127067pt;}
.y17e{bottom:421.136397pt;}
.yec{bottom:421.527546pt;}
.y57{bottom:421.848239pt;}
.y1e3{bottom:424.827200pt;}
.y1f5{bottom:426.187227pt;}
.y15b{bottom:426.487352pt;}
.y15d{bottom:427.044400pt;}
.y141{bottom:427.850398pt;}
.y102{bottom:428.243600pt;}
.ya4{bottom:436.887945pt;}
.y122{bottom:437.926025pt;}
.y7e{bottom:438.161307pt;}
.y197{bottom:442.479707pt;}
.y56{bottom:443.441039pt;}
.y1e2{bottom:443.547067pt;}
.y162{bottom:446.156102pt;}
.yc8{bottom:447.997733pt;}
.y140{bottom:449.363225pt;}
.y17d{bottom:450.646557pt;}
.yeb{bottom:451.917413pt;}
.y101{bottom:457.835813pt;}
.y7d{bottom:459.754107pt;}
.y1e1{bottom:460.351155pt;}
.y1a7{bottom:461.278025pt;}
.y161{bottom:464.150703pt;}
.y55{bottom:465.033839pt;}
.ya3{bottom:466.476478pt;}
.y121{bottom:467.436185pt;}
.y196{bottom:471.989867pt;}
.y17c{bottom:472.237757pt;}
.y1e0{bottom:472.430747pt;}
.yea{bottom:473.508613pt;}
.y13f{bottom:478.953358pt;}
.y1ce{bottom:479.867067pt;}
.y1df{bottom:484.430539pt;}
.y54{bottom:486.545067pt;}
.y100{bottom:487.345973pt;}
.yc7{bottom:488.150078pt;}
.y120{bottom:489.028985pt;}
.y1a6{bottom:490.708212pt;}
.y17b{bottom:493.828958pt;}
.y7c{bottom:494.702453pt;}
.ye9{bottom:495.021440pt;}
.ya2{bottom:495.986638pt;}
.y1de{bottom:496.510131pt;}
.y1cd{bottom:496.591971pt;}
.y195{bottom:499.826451pt;}
.y53{bottom:508.141252pt;}
.y13e{bottom:508.543491pt;}
.y1dd{bottom:508.589723pt;}
.y1cc{bottom:508.671563pt;}
.yff{bottom:508.938773pt;}
.yc6{bottom:509.741278pt;}
.y3d{bottom:510.457919pt;}
.y11f{bottom:510.621785pt;}
.y13{bottom:511.868235pt;}
.y17a{bottom:515.341785pt;}
.ya1{bottom:517.577839pt;}
.y1a5{bottom:520.216772pt;}
.y1dc{bottom:520.669315pt;}
.y1cb{bottom:520.751155pt;}
.y155{bottom:522.453626pt;}
.y194{bottom:523.977998pt;}
.y7b{bottom:524.452533pt;}
.ye8{bottom:524.611573pt;}
.yc5{bottom:531.254105pt;}
.y11e{bottom:532.134612pt;}
.y1db{bottom:532.748907pt;}
.y1ca{bottom:532.830747pt;}
.y52{bottom:537.649813pt;}
.y13d{bottom:538.053651pt;}
.yfe{bottom:538.447867pt;}
.y3c{bottom:539.968079pt;}
.y154{bottom:543.966453pt;}
.y1da{bottom:544.748699pt;}
.y1c9{bottom:544.910339pt;}
.y179{bottom:544.931918pt;}
.y12{bottom:545.787651pt;}
.ye7{bottom:546.124400pt;}
.y193{bottom:548.128345pt;}
.y1a4{bottom:549.725333pt;}
.ya0{bottom:552.446212pt;}
.y75{bottom:554.683146pt;}
.y7a{bottom:554.684746pt;}
.y1d9{bottom:556.828291pt;}
.y1c8{bottom:556.910131pt;}
.y51{bottom:559.242613pt;}
.yc4{bottom:560.922612pt;}
.y11d{bottom:561.724745pt;}
.y153{bottom:565.559253pt;}
.y178{bottom:566.444745pt;}
.y29{bottom:566.827067pt;}
.y13c{bottom:567.643785pt;}
.ye6{bottom:567.717200pt;}
.yfd{bottom:568.041012pt;}
.y1d8{bottom:568.907883pt;}
.y1c7{bottom:568.989723pt;}
.y3b{bottom:569.396667pt;}
.y192{bottom:572.279892pt;}
.y9f{bottom:574.039012pt;}
.y1a3{bottom:579.155519pt;}
.y11{bottom:579.707067pt;}
.y50{bottom:580.753840pt;}
.y1d7{bottom:580.987475pt;}
.y1c6{bottom:581.069315pt;}
.yc3{bottom:583.396718pt;}
.y74{bottom:584.273279pt;}
.y79{bottom:584.274879pt;}
.y28{bottom:587.148803pt;}
.y152{bottom:587.152053pt;}
.y177{bottom:588.037545pt;}
.y13b{bottom:589.156611pt;}
.y11c{bottom:591.234905pt;}
.y1d6{bottom:593.068907pt;}
.y1c5{bottom:593.148907pt;}
.y9e{bottom:595.551839pt;}
.y191{bottom:596.430239pt;}
.ye5{bottom:597.307333pt;}
.yfc{bottom:597.631146pt;}
.y3a{bottom:598.907333pt;}
.y4f{bottom:602.346640pt;}
.y1d5{bottom:605.068699pt;}
.y1c4{bottom:605.228499pt;}
.y27{bottom:606.188123pt;}
.y1a2{bottom:608.664080pt;}
.y176{bottom:609.550371pt;}
.y11b{bottom:612.826106pt;}
.yc2{bottom:612.905279pt;}
.y73{bottom:613.783439pt;}
.y78{bottom:613.785039pt;}
.y151{bottom:616.660613pt;}
.y1d4{bottom:617.148291pt;}
.y1c3{bottom:617.228291pt;}
.y9d{bottom:617.382959pt;}
.y13a{bottom:618.746745pt;}
.yfb{bottom:619.143972pt;}
.y10{bottom:620.507067pt;}
.y190{bottom:620.581786pt;}
.y4e{bottom:623.858667pt;}
.ye4{bottom:624.099467pt;}
.y26{bottom:625.307963pt;}
.y39{bottom:628.416800pt;}
.y1d3{bottom:629.227883pt;}
.y1c2{bottom:629.307883pt;}
.y1a1{bottom:638.094267pt;}
.y150{bottom:638.253413pt;}
.y175{bottom:639.140505pt;}
.y1d2{bottom:641.307475pt;}
.y1c1{bottom:641.387475pt;}
.y11a{bottom:642.336266pt;}
.yc1{bottom:642.495412pt;}
.y72{bottom:643.373573pt;}
.y77{bottom:643.375172pt;}
.y25{bottom:644.347283pt;}
.y18f{bottom:644.813706pt;}
.y139{bottom:648.255305pt;}
.yfa{bottom:648.734106pt;}
.y9c{bottom:652.331306pt;}
.y1d1{bottom:653.387067pt;}
.y4d{bottom:653.449467pt;}
.y1c0{bottom:653.467067pt;}
.yf{bottom:655.227067pt;}
.y38{bottom:657.847467pt;}
.y174{bottom:660.651732pt;}
.y24{bottom:663.386603pt;}
.y1d0{bottom:663.707067pt;}
.y1bf{bottom:663.787067pt;}
.y119{bottom:663.927466pt;}
.yc0{bottom:664.006639pt;}
.y14f{bottom:664.084800pt;}
.ye3{bottom:664.331971pt;}
.y1a0{bottom:667.604427pt;}
.y18e{bottom:668.965253pt;}
.yf9{bottom:670.246932pt;}
.y1cf{bottom:670.267067pt;}
.y1be{bottom:670.427067pt;}
.y71{bottom:672.882133pt;}
.y76{bottom:672.883733pt;}
.y9b{bottom:673.844133pt;}
.y138{bottom:677.845438pt;}
.ye{bottom:679.787067pt;}
.y173{bottom:682.244532pt;}
.y23{bottom:682.506443pt;}
.y4c{bottom:683.038773pt;}
.y1bd{bottom:683.868291pt;}
.y118{bottom:685.440293pt;}
.ybf{bottom:685.599439pt;}
.ye2{bottom:685.924771pt;}
.y37{bottom:687.358267pt;}
.y14c{bottom:690.396933pt;}
.y18d{bottom:693.115600pt;}
.y9a{bottom:695.436933pt;}
.y1bc{bottom:695.947883pt;}
.y19f{bottom:697.114587pt;}
.yd{bottom:698.507067pt;}
.y22{bottom:701.547227pt;}
.yf8{bottom:701.836399pt;}
.y70{bottom:703.192933pt;}
.y172{bottom:703.837332pt;}
.y137{bottom:707.353999pt;}
.ye1{bottom:707.435998pt;}
.y1bb{bottom:708.027475pt;}
.y36{bottom:708.790267pt;}
.y4b{bottom:712.548933pt;}
.y117{bottom:715.028827pt;}
.ybe{bottom:715.109599pt;}
.y99{bottom:717.269653pt;}
.y18c{bottom:717.507166pt;}
.y148{bottom:718.786060pt;}
.y1ba{bottom:720.107067pt;}
.y21{bottom:720.667067pt;}
.yf7{bottom:723.347626pt;}
.y19e{bottom:726.544773pt;}
.y136{bottom:728.946799pt;}
.y35{bottom:730.303600pt;}
.y1b9{bottom:732.667067pt;}
.y6f{bottom:733.022267pt;}
.y171{bottom:733.347492pt;}
.y18b{bottom:734.622267pt;}
.yc{bottom:735.227067pt;}
.y142{bottom:736.060933pt;}
.ybd{bottom:736.700800pt;}
.ye0{bottom:737.026132pt;}
.y4a{bottom:742.143438pt;}
.y1b8{bottom:746.028291pt;}
.y116{bottom:746.539919pt;}
.y96{bottom:746.861386pt;}
.y20{bottom:748.427067pt;}
.y18a{bottom:751.657175pt;}
.y98{bottom:754.297306pt;}
.yf6{bottom:754.937093pt;}
.y170{bottom:754.938692pt;}
.y19d{bottom:756.134907pt;}
.y1b7{bottom:758.107883pt;}
.ybc{bottom:758.213627pt;}
.y135{bottom:758.536932pt;}
.ydf{bottom:758.538958pt;}
.y34{bottom:759.812933pt;}
.y6e{bottom:763.491867pt;}
.y189{bottom:768.771012pt;}
.y1b6{bottom:770.187475pt;}
.y49{bottom:771.653598pt;}
.yb{bottom:771.947067pt;}
.y97{bottom:776.130026pt;}
.y95{bottom:776.369946pt;}
.yf5{bottom:776.449919pt;}
.y16f{bottom:776.451519pt;}
.y115{bottom:778.129386pt;}
.y143{bottom:778.446116pt;}
.y1b5{bottom:782.267067pt;}
.y6d{bottom:785.084667pt;}
.y19c{bottom:785.645067pt;}
.y1f{bottom:787.627067pt;}
.ybb{bottom:787.883733pt;}
.y134{bottom:788.047092pt;}
.yde{bottom:788.127492pt;}
.y33{bottom:789.243733pt;}
.y48{bottom:793.246398pt;}
.y188{bottom:793.802400pt;}
.y1b4{bottom:794.667067pt;}
.yf4{bottom:798.042719pt;}
.y16e{bottom:798.044319pt;}
.y6c{bottom:806.597493pt;}
.y1e{bottom:808.427067pt;}
.y114{bottom:809.638879pt;}
.y32{bottom:810.755733pt;}
.y187{bottom:810.836874pt;}
.y94{bottom:811.558213pt;}
.y19b{bottom:813.875867pt;}
.yba{bottom:814.994400pt;}
.y1b3{bottom:816.186667pt;}
.y133{bottom:817.637226pt;}
.ydd{bottom:817.637652pt;}
.y144{bottom:820.752009pt;}
.ya{bottom:821.787563pt;}
.y47{bottom:822.754959pt;}
.yf3{bottom:827.551280pt;}
.y16d{bottom:827.552879pt;}
.y186{bottom:827.951975pt;}
.y1d{bottom:828.749483pt;}
.y113{bottom:831.230080pt;}
.y31{bottom:832.189067pt;}
.y1b2{bottom:837.626667pt;}
.ydc{bottom:839.230452pt;}
.y93{bottom:841.148346pt;}
.y6b{bottom:841.545840pt;}
.y46{bottom:844.347759pt;}
.y132{bottom:847.147386pt;}
.y1c{bottom:847.790267pt;}
.yf2{bottom:849.144080pt;}
.y16c{bottom:849.145679pt;}
.y1b1{bottom:851.147067pt;}
.y112{bottom:852.742907pt;}
.y185{bottom:852.982099pt;}
.y30{bottom:853.702533pt;}
.yb9{bottom:855.143119pt;}
.y9{bottom:859.787067pt;}
.ydb{bottom:860.743279pt;}
.y19a{bottom:861.940000pt;}
.y145{bottom:863.057901pt;}
.y6a{bottom:863.458533pt;}
.y45{bottom:865.860586pt;}
.y1b{bottom:866.829587pt;}
.y1af{bottom:867.226667pt;}
.y1b0{bottom:867.227067pt;}
.y184{bottom:870.097200pt;}
.y92{bottom:870.656907pt;}
.y111{bottom:874.335707pt;}
.y2f{bottom:875.214533pt;}
.yb8{bottom:876.735919pt;}
.y131{bottom:876.737519pt;}
.y16b{bottom:877.135786pt;}
.yf1{bottom:878.654240pt;}
.yda{bottom:882.334479pt;}
.y1ae{bottom:883.546667pt;}
.y1a{bottom:885.949427pt;}
.y183{bottom:887.130845pt;}
.y44{bottom:887.453386pt;}
.y199{bottom:889.130667pt;}
.y14b{bottom:890.249333pt;}
.y69{bottom:893.929173pt;}
.y110{bottom:895.928507pt;}
.y8{bottom:896.667067pt;}
.yb7{bottom:898.247147pt;}
.y16a{bottom:898.648613pt;}
.y91{bottom:900.247040pt;}
.y182{bottom:904.163813pt;}
.y2e{bottom:904.645333pt;}
.y19{bottom:904.988747pt;}
.y146{bottom:905.363793pt;}
.y130{bottom:906.246079pt;}
.y1ad{bottom:907.627067pt;}
.y43{bottom:909.046186pt;}
.yd9{bottom:911.924613pt;}
.y7{bottom:915.307611pt;}
.y198{bottom:916.241333pt;}
.yb6{bottom:919.839947pt;}
.y169{bottom:920.161439pt;}
.y1aa{bottom:920.666667pt;}
.y90{bottom:921.839840pt;}
.y14a{bottom:921.918667pt;}
.y68{bottom:923.439333pt;}
.y1ac{bottom:923.707067pt;}
.y18{bottom:924.108587pt;}
.y10f{bottom:925.438667pt;}
.y12f{bottom:927.838879pt;}
.y181{bottom:929.277333pt;}
.y42{bottom:930.557413pt;}
.yd8{bottom:933.437439pt;}
.y2d{bottom:934.155280pt;}
.y6{bottom:936.747339pt;}
.y17{bottom:943.147907pt;}
.y8f{bottom:943.352667pt;}
.y180{bottom:946.310667pt;}
.y147{bottom:947.668386pt;}
.y1a9{bottom:947.787067pt;}
.yb5{bottom:949.350107pt;}
.y168{bottom:949.590027pt;}
.y41{bottom:952.150213pt;}
.y10e{bottom:952.309467pt;}
.y67{bottom:953.029467pt;}
.y149{bottom:953.588000pt;}
.yd7{bottom:955.028640pt;}
.y5{bottom:958.187067pt;}
.y16{bottom:962.267747pt;}
.y2c{bottom:963.585467pt;}
.y14e{bottom:967.341003pt;}
.yb4{bottom:970.942907pt;}
.y167{bottom:971.102853pt;}
.y8e{bottom:972.942800pt;}
.y1a8{bottom:978.107067pt;}
.y15{bottom:981.307067pt;}
.y40{bottom:981.578800pt;}
.y66{bottom:983.258800pt;}
.yd6{bottom:984.538800pt;}
.y14d{bottom:985.335603pt;}
.yb3{bottom:992.535707pt;}
.y166{bottom:992.615680pt;}
.y4{bottom:994.907067pt;}
.y2b{bottom:995.654667pt;}
.y3f{bottom:1001.092933pt;}
.y14{bottom:1009.147200pt;}
.yd5{bottom:1011.409200pt;}
.y65{bottom:1013.168667pt;}
.yb2{bottom:1014.048533pt;}
.y3{bottom:1030.028211pt;}
.y2{bottom:1068.027715pt;}
.y1{bottom:1105.947067pt;}
.h20{height:11.536000pt;}
.h1b{height:13.440000pt;}
.h1e{height:30.685760pt;}
.h5{height:34.128000pt;}
.h1f{height:34.608000pt;}
.h1a{height:36.576114pt;}
.h2{height:39.030469pt;}
.h19{height:39.408000pt;}
.h1d{height:39.408533pt;}
.h1c{height:39.409600pt;}
.h17{height:39.442848pt;}
.h14{height:41.229300pt;}
.h16{height:41.546291pt;}
.h21{height:42.656250pt;}
.ha{height:43.927680pt;}
.h3{height:46.144000pt;}
.h15{height:47.571781pt;}
.h8{height:48.136320pt;}
.h13{height:49.677824pt;}
.hc{height:52.590464pt;}
.hf{height:52.593664pt;}
.he{height:52.593771pt;}
.h9{height:52.608000pt;}
.h1{height:53.012160pt;}
.h11{height:53.422187pt;}
.h10{height:54.381867pt;}
.h7{height:61.602240pt;}
.hd{height:62.462465pt;}
.h12{height:66.957585pt;}
.h6{height:68.256000pt;}
.h18{height:69.216000pt;}
.hb{height:72.599520pt;}
.h4{height:91.008000pt;}
.h0{height:1122.666667pt;}
.w2{width:239.680000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x5{left:94.480000pt;}
.x1b{left:103.920000pt;}
.x6{left:106.604267pt;}
.x1e{left:110.720000pt;}
.x22{left:113.440000pt;}
.x1{left:114.800000pt;}
.x13{left:118.440400pt;}
.x7{left:119.959867pt;}
.x1a{left:128.277067pt;}
.xa{left:141.632933pt;}
.x8{left:146.590933pt;}
.x15{left:159.546933pt;}
.x2{left:161.840000pt;}
.xb{left:170.102933pt;}
.xe{left:182.019067pt;}
.x16{left:186.818139pt;}
.x11{left:196.094507pt;}
.x3{left:226.800000pt;}
.x4{left:234.000000pt;}
.xd{left:237.360747pt;}
.x10{left:240.318161pt;}
.x1f{left:279.040000pt;}
.x12{left:290.543013pt;}
.x18{left:295.421867pt;}
.x14{left:381.632667pt;}
.x9{left:385.391333pt;}
.xc{left:397.947467pt;}
.xf{left:409.783467pt;}
.x21{left:411.040000pt;}
.x1c{left:456.400000pt;}
.x17{left:579.006533pt;}
.x1d{left:594.080000pt;}
.x19{left:670.575867pt;}
.x20{left:689.999867pt;}
}




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