
    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_e25d7dab0836e150e7a2cffa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_3f2840a88e9a3739ef0bbf4b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_180e390012be7f124407f0b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_703121c48c9407f2a74228f5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f86b10af23be1911fbc55923.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_c006a689eeb1e37f359a45b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.721000;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_f50064e6b1e3c6766a3cf9ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.508000;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_dbe45f877553abbdc033d3ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.514000;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_3181cdf199a6e7f8f8cbd7c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.466000;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_050db2906dca8d1474e65b6a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fac1e56ef0976a7265dac25e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.468000;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_706f03b68abf2cccc25e6da6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.502000;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_ff16ee966f0b8a85007be5bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.264000;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_c4df031333745a16c80cd1c5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_eab36f9c173edf9c59c6a54d.woff2')format("woff");}.fff{font-family:fff;line-height:0.457000;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_b729bc280797c0a538805eff.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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_e5c941b65bef31219e2e5e80.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3a{letter-spacing:-1.111309px;}
.ls4{letter-spacing:-1.099549px;}
.lsc{letter-spacing:-1.093669px;}
.ls9{letter-spacing:-1.087789px;}
.ls6{letter-spacing:-1.076029px;}
.ls8{letter-spacing:-1.070149px;}
.ls2{letter-spacing:-1.064269px;}
.ls1{letter-spacing:-1.058389px;}
.ls5{letter-spacing:-1.052509px;}
.lsb{letter-spacing:-1.046629px;}
.ls3{letter-spacing:-1.040749px;}
.ls1b{letter-spacing:-1.034869px;}
.lsa{letter-spacing:-1.028990px;}
.ls1a{letter-spacing:-1.017230px;}
.ls3f{letter-spacing:-0.923151px;}
.ls7{letter-spacing:-0.911391px;}
.ls3c{letter-spacing:-0.905511px;}
.ls48{letter-spacing:-0.881991px;}
.ls43{letter-spacing:-0.870231px;}
.ls47{letter-spacing:-0.864351px;}
.ls42{letter-spacing:-0.858471px;}
.ls33{letter-spacing:-0.852591px;}
.ls40{letter-spacing:-0.846711px;}
.ls35{letter-spacing:-0.840831px;}
.ls44{letter-spacing:-0.834951px;}
.ls36{letter-spacing:-0.829072px;}
.ls34{letter-spacing:-0.823192px;}
.ls46{letter-spacing:-0.817312px;}
.ls32{letter-spacing:-0.805552px;}
.ls45{letter-spacing:-0.799672px;}
.ls37{letter-spacing:-0.793792px;}
.ls41{letter-spacing:-0.746752px;}
.ls24{letter-spacing:-0.723233px;}
.ls3d{letter-spacing:-0.017640px;}
.ls2a{letter-spacing:-0.011760px;}
.ls3e{letter-spacing:-0.005880px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.005880px;}
.ls4a{letter-spacing:0.058499px;}
.ls38{letter-spacing:0.095999px;}
.ls39{letter-spacing:0.158398px;}
.lsd{letter-spacing:0.199918px;}
.ls18{letter-spacing:0.323397px;}
.ls4b{letter-spacing:0.409495px;}
.ls4f{letter-spacing:0.413994px;}
.ls59{letter-spacing:0.418494px;}
.ls5e{letter-spacing:0.494993px;}
.ls4d{letter-spacing:0.508493px;}
.ls5c{letter-spacing:0.512993px;}
.ls5b{letter-spacing:0.517493px;}
.ls13{letter-spacing:0.540954px;}
.ls30{letter-spacing:0.552714px;}
.ls54{letter-spacing:0.553493px;}
.ls1d{letter-spacing:0.558594px;}
.ls53{letter-spacing:0.566992px;}
.ls2e{letter-spacing:0.570354px;}
.ls52{letter-spacing:0.571492px;}
.ls14{letter-spacing:0.582114px;}
.ls11{letter-spacing:0.593874px;}
.ls4c{letter-spacing:0.593992px;}
.ls58{letter-spacing:0.602992px;}
.ls1c{letter-spacing:0.605634px;}
.ls2c{letter-spacing:0.611514px;}
.ls10{letter-spacing:0.623274px;}
.ls57{letter-spacing:0.625492px;}
.ls50{letter-spacing:0.629992px;}
.ls17{letter-spacing:0.635034px;}
.lsf{letter-spacing:0.640913px;}
.ls4e{letter-spacing:0.643491px;}
.ls2b{letter-spacing:0.652673px;}
.ls12{letter-spacing:0.658553px;}
.ls31{letter-spacing:0.682073px;}
.ls2f{letter-spacing:0.693833px;}
.ls25{letter-spacing:0.705593px;}
.ls28{letter-spacing:0.711473px;}
.ls5d{letter-spacing:0.719990px;}
.ls5a{letter-spacing:0.832489px;}
.ls26{letter-spacing:1.317107px;}
.ls21{letter-spacing:1.693423px;}
.ls22{letter-spacing:1.910981px;}
.ls2d{letter-spacing:12.133627px;}
.ls51{letter-spacing:12.581832px;}
.ls5f{letter-spacing:13.140180px;}
.ls56{letter-spacing:13.297323px;}
.ls49{letter-spacing:13.504320px;}
.ls55{letter-spacing:13.657318px;}
.ls3b{letter-spacing:14.308621px;}
.ls19{letter-spacing:21.285383px;}
.ls27{letter-spacing:27.559279px;}
.ls1f{letter-spacing:27.576919px;}
.ls15{letter-spacing:27.582799px;}
.ls1e{letter-spacing:27.659238px;}
.ls29{letter-spacing:27.917955px;}
.ls16{letter-spacing:27.923835px;}
.ls23{letter-spacing:34.362369px;}
.ls20{letter-spacing:36.502668px;}
.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;}
}
.ws73{word-spacing:-36.561467px;}
.ws7a{word-spacing:-27.982634px;}
.ws7b{word-spacing:-27.976755px;}
.ws70{word-spacing:-27.718037px;}
.ws77{word-spacing:-27.641598px;}
.ws71{word-spacing:-27.635718px;}
.ws205{word-spacing:-11.342400px;}
.ws206{word-spacing:-10.508400px;}
.ws75{word-spacing:-1.969780px;}
.ws74{word-spacing:-1.752222px;}
.ws79{word-spacing:-0.770272px;}
.ws6d{word-spacing:-0.717353px;}
.ws1c4{word-spacing:-0.688491px;}
.ws72{word-spacing:-0.640913px;}
.ws6f{word-spacing:-0.617394px;}
.ws1b{word-spacing:-0.061800px;}
.ws42{word-spacing:-0.058799px;}
.ws57{word-spacing:-0.055201px;}
.ws39{word-spacing:-0.047999px;}
.ws2f{word-spacing:-0.044999px;}
.ws1fd{word-spacing:-0.043801px;}
.ws108{word-spacing:-0.041999px;}
.ws3a{word-spacing:0.000000px;}
.ws76{word-spacing:0.664433px;}
.wsfb{word-spacing:9.081486px;}
.wsf9{word-spacing:9.091086px;}
.wsfa{word-spacing:9.182285px;}
.wsf8{word-spacing:9.244684px;}
.wsa2{word-spacing:10.607412px;}
.wse7{word-spacing:10.672091px;}
.ws13b{word-spacing:10.889649px;}
.wsdc{word-spacing:10.901409px;}
.ws1c3{word-spacing:10.966354px;}
.ws1c1{word-spacing:11.236350px;}
.ws1dc{word-spacing:11.276850px;}
.ws1e2{word-spacing:11.465847px;}
.ws1c2{word-spacing:11.474847px;}
.ws1df{word-spacing:11.497347px;}
.ws1e0{word-spacing:11.519846px;}
.ws10a{word-spacing:11.577602px;}
.ws1e1{word-spacing:11.578346px;}
.ws1de{word-spacing:11.605345px;}
.ws10{word-spacing:11.640116px;}
.wscf{word-spacing:11.671681px;}
.ws2e{word-spacing:11.884342px;}
.wsf{word-spacing:11.982120px;}
.wsc5{word-spacing:12.324354px;}
.ws101{word-spacing:12.436022px;}
.wsff{word-spacing:12.448622px;}
.ws34{word-spacing:12.465422px;}
.ws8e{word-spacing:12.483113px;}
.wsfd{word-spacing:12.532621px;}
.ws1c0{word-spacing:12.536833px;}
.wsfe{word-spacing:12.541021px;}
.ws35{word-spacing:12.557821px;}
.ws33{word-spacing:12.570420px;}
.ws1bf{word-spacing:12.581832px;}
.ws104{word-spacing:12.641819px;}
.ws105{word-spacing:12.683819px;}
.ws107{word-spacing:12.692219px;}
.wsfc{word-spacing:12.704818px;}
.ws100{word-spacing:12.709018px;}
.ws103{word-spacing:12.734218px;}
.ws102{word-spacing:12.835017px;}
.ws1dd{word-spacing:12.896828px;}
.ws203{word-spacing:12.912417px;}
.ws106{word-spacing:12.919015px;}
.ws204{word-spacing:12.978118px;}
.ws202{word-spacing:13.004398px;}
.ws1fe{word-spacing:13.030679px;}
.ws201{word-spacing:13.035059px;}
.ws1ec{word-spacing:13.112825px;}
.ws1fb{word-spacing:13.130825px;}
.ws1db{word-spacing:13.148825px;}
.ws1a9{word-spacing:13.166824px;}
.ws1ce{word-spacing:13.171324px;}
.ws1c8{word-spacing:13.175824px;}
.ws1e7{word-spacing:13.180324px;}
.ws1e5{word-spacing:13.189324px;}
.ws1cc{word-spacing:13.202824px;}
.ws200{word-spacing:13.210261px;}
.ws1e8{word-spacing:13.211824px;}
.ws1b1{word-spacing:13.216324px;}
.ws1ed{word-spacing:13.229824px;}
.ws19c{word-spacing:13.234324px;}
.ws1e3{word-spacing:13.238823px;}
.ws1bc{word-spacing:13.243323px;}
.ws1b0{word-spacing:13.247823px;}
.ws1f6{word-spacing:13.252323px;}
.ws1ae{word-spacing:13.256823px;}
.ws1b8{word-spacing:13.261323px;}
.ws1d0{word-spacing:13.265823px;}
.ws1a1{word-spacing:13.274823px;}
.ws1ea{word-spacing:13.279323px;}
.ws1b9{word-spacing:13.283823px;}
.ws1c6{word-spacing:13.288323px;}
.ws1e6{word-spacing:13.292823px;}
.ws1a3{word-spacing:13.297323px;}
.ws1f5{word-spacing:13.301823px;}
.ws1d4{word-spacing:13.306323px;}
.ws1c5{word-spacing:13.310823px;}
.ws1d6{word-spacing:13.315322px;}
.ws1f9{word-spacing:13.317827px;}
.ws1b4{word-spacing:13.319822px;}
.ws1cf{word-spacing:13.324322px;}
.ws1af{word-spacing:13.328822px;}
.ws1ef{word-spacing:13.333322px;}
.ws32{word-spacing:13.342322px;}
.ws1bd{word-spacing:13.346822px;}
.ws1f7{word-spacing:13.355822px;}
.ws1b6{word-spacing:13.360322px;}
.ws1d1{word-spacing:13.364822px;}
.ws1a6{word-spacing:13.369322px;}
.ws1d9{word-spacing:13.373822px;}
.ws1ba{word-spacing:13.382822px;}
.ws1d3{word-spacing:13.387322px;}
.ws1b2{word-spacing:13.391821px;}
.ws1ad{word-spacing:13.396321px;}
.ws1b7{word-spacing:13.405321px;}
.ws1da{word-spacing:13.409821px;}
.ws1cb{word-spacing:13.418821px;}
.ws19b{word-spacing:13.427821px;}
.ws19f{word-spacing:13.432321px;}
.ws1d5{word-spacing:13.436821px;}
.ws1cd{word-spacing:13.441321px;}
.ws1c7{word-spacing:13.445821px;}
.ws1a0{word-spacing:13.450321px;}
.ws1bb{word-spacing:13.454821px;}
.ws1d2{word-spacing:13.472820px;}
.ws1a5{word-spacing:13.490820px;}
.ws1d8{word-spacing:13.495320px;}
.ws1a2{word-spacing:13.504320px;}
.ws1eb{word-spacing:13.508820px;}
.ws1aa{word-spacing:13.513320px;}
.ws1d7{word-spacing:13.526820px;}
.ws1e9{word-spacing:13.558319px;}
.ws1ac{word-spacing:13.562819px;}
.ws30{word-spacing:13.576319px;}
.ws1ff{word-spacing:13.578186px;}
.ws1ab{word-spacing:13.580819px;}
.ws19d{word-spacing:13.589819px;}
.ws1e4{word-spacing:13.594319px;}
.ws1ca{word-spacing:13.612318px;}
.ws31{word-spacing:13.616818px;}
.ws1b3{word-spacing:13.621318px;}
.ws1f8{word-spacing:13.639318px;}
.ws1b5{word-spacing:13.684318px;}
.ws118{word-spacing:13.694229px;}
.ws1ee{word-spacing:13.706817px;}
.ws1fc{word-spacing:13.711317px;}
.ws148{word-spacing:13.737428px;}
.ws1fa{word-spacing:13.742817px;}
.ws1f4{word-spacing:13.769816px;}
.ws1f3{word-spacing:13.801316px;}
.ws1a8{word-spacing:13.814816px;}
.ws1a4{word-spacing:13.846315px;}
.ws143{word-spacing:13.847827px;}
.ws19e{word-spacing:13.882315px;}
.wsf7{word-spacing:13.910226px;}
.ws14b{word-spacing:13.919826px;}
.ws119{word-spacing:13.929426px;}
.ws1f1{word-spacing:13.936314px;}
.ws145{word-spacing:13.939026px;}
.ws140{word-spacing:13.943826px;}
.ws141{word-spacing:13.948626px;}
.ws147{word-spacing:13.958226px;}
.ws1a7{word-spacing:13.972314px;}
.ws117{word-spacing:13.982225px;}
.ws36{word-spacing:13.991825px;}
.ws38{word-spacing:14.011025px;}
.ws146{word-spacing:14.025425px;}
.ws37{word-spacing:14.039824px;}
.ws14a{word-spacing:14.049424px;}
.ws11a{word-spacing:14.063824px;}
.ws144{word-spacing:14.121423px;}
.wsb0{word-spacing:14.135376px;}
.ws149{word-spacing:14.193423px;}
.wsab{word-spacing:14.251022px;}
.wsf5{word-spacing:14.356621px;}
.ws142{word-spacing:14.385420px;}
.ws18b{word-spacing:14.629291px;}
.wsbf{word-spacing:14.641051px;}
.wsc0{word-spacing:14.723370px;}
.ws88{word-spacing:14.746890px;}
.wsad{word-spacing:14.846848px;}
.wse6{word-spacing:14.876248px;}
.wsef{word-spacing:14.888008px;}
.ws66{word-spacing:14.935048px;}
.ws190{word-spacing:14.976207px;}
.ws1f0{word-spacing:14.998300px;}
.ws1f2{word-spacing:15.043299px;}
.wsb7{word-spacing:15.117326px;}
.wsec{word-spacing:15.158485px;}
.ws9c{word-spacing:15.217285px;}
.ws18c{word-spacing:15.264324px;}
.wsee{word-spacing:15.399563px;}
.ws80{word-spacing:15.440722px;}
.wse9{word-spacing:15.446602px;}
.ws195{word-spacing:15.517162px;}
.ws17c{word-spacing:15.570081px;}
.wsb2{word-spacing:15.711200px;}
.ws175{word-spacing:15.740599px;}
.wse0{word-spacing:15.787639px;}
.ws196{word-spacing:15.834678px;}
.wsf3{word-spacing:15.849000px;}
.wsac{word-spacing:16.175715px;}
.ws180{word-spacing:16.328593px;}
.ws178{word-spacing:16.399153px;}
.ws67{word-spacing:16.400098px;}
.wsd8{word-spacing:16.434432px;}
.ws13e{word-spacing:16.504992px;}
.wsf0{word-spacing:16.510499px;}
.ws9e{word-spacing:16.516751px;}
.wsc8{word-spacing:16.528511px;}
.ws89{word-spacing:16.565700px;}
.wsc7{word-spacing:16.657870px;}
.ws83{word-spacing:16.716669px;}
.ws17d{word-spacing:16.763709px;}
.ws11c{word-spacing:16.781349px;}
.wsde{word-spacing:16.804869px;}
.ws3d{word-spacing:16.828388px;}
.wsdd{word-spacing:16.857788px;}
.ws153{word-spacing:16.887188px;}
.ws63{word-spacing:16.928347px;}
.ws110{word-spacing:16.945987px;}
.ws137{word-spacing:16.987147px;}
.wsda{word-spacing:17.010666px;}
.ws9d{word-spacing:17.022426px;}
.wsc6{word-spacing:17.057706px;}
.ws15c{word-spacing:17.098866px;}
.ws17f{word-spacing:17.104745px;}
.ws15f{word-spacing:17.163545px;}
.ws191{word-spacing:17.187065px;}
.ws23{word-spacing:17.257624px;}
.wsd1{word-spacing:17.269384px;}
.ws87{word-spacing:17.275264px;}
.ws56{word-spacing:17.310543px;}
.ws160{word-spacing:17.363463px;}
.ws10b{word-spacing:17.469302px;}
.ws12a{word-spacing:17.486942px;}
.ws12f{word-spacing:17.504581px;}
.ws3b{word-spacing:17.533981px;}
.wsd7{word-spacing:17.539861px;}
.ws161{word-spacing:17.575141px;}
.ws99{word-spacing:17.586901px;}
.ws14f{word-spacing:17.598660px;}
.wsd0{word-spacing:17.628060px;}
.ws12c{word-spacing:17.633940px;}
.wsa9{word-spacing:17.651580px;}
.wsaf{word-spacing:17.692739px;}
.ws1a{word-spacing:17.742177px;}
.ws7e{word-spacing:17.763299px;}
.ws150{word-spacing:17.780939px;}
.ws18{word-spacing:17.790178px;}
.ws20{word-spacing:17.810338px;}
.ws12{word-spacing:17.826178px;}
.ws17{word-spacing:17.850179px;}
.wsd{word-spacing:17.874179px;}
.ws15{word-spacing:17.886179px;}
.ws9f{word-spacing:17.939697px;}
.ws44{word-spacing:17.945577px;}
.wsa{word-spacing:17.970180px;}
.ws14{word-spacing:17.988180px;}
.ws9{word-spacing:17.994180px;}
.ws3e{word-spacing:17.998496px;}
.ws16c{word-spacing:18.039656px;}
.ws64{word-spacing:18.121975px;}
.ws124{word-spacing:18.157255px;}
.ws13{word-spacing:18.168182px;}
.wsb{word-spacing:18.180182px;}
.ws113{word-spacing:18.186654px;}
.ws24{word-spacing:18.198414px;}
.ws16{word-spacing:18.204182px;}
.wsd4{word-spacing:18.210174px;}
.ws18e{word-spacing:18.216054px;}
.wsc{word-spacing:18.216182px;}
.ws8{word-spacing:18.240182px;}
.ws16e{word-spacing:18.245454px;}
.ws4e{word-spacing:18.274854px;}
.wseb{word-spacing:18.280733px;}
.ws185{word-spacing:18.292493px;}
.ws10e{word-spacing:18.298373px;}
.wse{word-spacing:18.318183px;}
.ws11{word-spacing:18.330183px;}
.ws155{word-spacing:18.368933px;}
.wse5{word-spacing:18.380692px;}
.wsa1{word-spacing:18.404212px;}
.ws19{word-spacing:18.432184px;}
.ws179{word-spacing:18.492411px;}
.ws50{word-spacing:18.533571px;}
.ws157{word-spacing:18.574730px;}
.wsae{word-spacing:18.580610px;}
.ws7{word-spacing:18.600186px;}
.ws49{word-spacing:18.633530px;}
.ws1c{word-spacing:18.651170px;}
.wsb9{word-spacing:18.668809px;}
.ws40{word-spacing:18.721729px;}
.ws133{word-spacing:18.804048px;}
.ws154{word-spacing:18.827568px;}
.wscb{word-spacing:18.839328px;}
.ws6a{word-spacing:18.892247px;}
.ws60{word-spacing:18.898127px;}
.ws168{word-spacing:18.909887px;}
.ws11f{word-spacing:18.939287px;}
.ws167{word-spacing:19.003966px;}
.ws7f{word-spacing:19.015726px;}
.ws3f{word-spacing:19.115685px;}
.ws4c{word-spacing:19.180364px;}
.ws1e{word-spacing:19.186244px;}
.wsdb{word-spacing:19.268563px;}
.ws11e{word-spacing:19.321483px;}
.ws126{word-spacing:19.368522px;}
.ws123{word-spacing:19.403802px;}
.ws172{word-spacing:19.480241px;}
.ws120{word-spacing:19.509641px;}
.ws170{word-spacing:19.539041px;}
.wsa3{word-spacing:19.580200px;}
.wsc1{word-spacing:19.597840px;}
.wsba{word-spacing:19.668399px;}
.ws25{word-spacing:19.691919px;}
.ws5{word-spacing:19.773780px;}
.ws187{word-spacing:19.821278px;}
.ws6{word-spacing:19.918981px;}
.wsbb{word-spacing:19.921237px;}
.ws193{word-spacing:19.944756px;}
.ws2c{word-spacing:19.974156px;}
.ws4{word-spacing:19.984982px;}
.ws171{word-spacing:19.991796px;}
.ws1f{word-spacing:20.027076px;}
.wsca{word-spacing:20.044715px;}
.wsea{word-spacing:20.297553px;}
.wse1{word-spacing:20.332833px;}
.ws165{word-spacing:20.373992px;}
.ws2a{word-spacing:20.391632px;}
.wse3{word-spacing:20.485711px;}
.ws68{word-spacing:20.503351px;}
.ws183{word-spacing:20.597430px;}
.ws18a{word-spacing:20.620950px;}
.wse2{word-spacing:20.803228px;}
.ws173{word-spacing:20.820868px;}
.ws59{word-spacing:20.826747px;}
.ws22{word-spacing:20.885547px;}
.wscd{word-spacing:20.897307px;}
.ws12d{word-spacing:20.909067px;}
.ws9b{word-spacing:20.914947px;}
.ws111{word-spacing:20.932586px;}
.ws166{word-spacing:20.938466px;}
.wsf1{word-spacing:20.991386px;}
.ws182{word-spacing:21.009026px;}
.ws174{word-spacing:21.014906px;}
.ws4f{word-spacing:21.103105px;}
.ws55{word-spacing:21.220703px;}
.ws13d{word-spacing:21.444141px;}
.ws10c{word-spacing:21.520580px;}
.ws184{word-spacing:21.549980px;}
.ws10f{word-spacing:21.579380px;}
.ws92{word-spacing:21.602900px;}
.ws14e{word-spacing:21.632299px;}
.ws97{word-spacing:21.649939px;}
.ws114{word-spacing:21.661699px;}
.ws11b{word-spacing:21.667579px;}
.ws98{word-spacing:21.726378px;}
.wse8{word-spacing:21.785178px;}
.wsbe{word-spacing:21.861617px;}
.ws4a{word-spacing:21.926296px;}
.ws198{word-spacing:21.961576px;}
.ws84{word-spacing:21.979216px;}
.ws5c{word-spacing:21.985096px;}
.wsbd{word-spacing:22.014495px;}
.ws131{word-spacing:22.049775px;}
.ws156{word-spacing:22.137974px;}
.ws17e{word-spacing:22.302612px;}
.ws46{word-spacing:22.431971px;}
.ws130{word-spacing:22.443731px;}
.ws158{word-spacing:22.455491px;}
.ws62{word-spacing:22.496650px;}
.wsb5{word-spacing:22.555450px;}
.ws45{word-spacing:22.590729px;}
.ws61{word-spacing:22.637769px;}
.ws188{word-spacing:22.667169px;}
.wsc3{word-spacing:22.737728px;}
.ws27{word-spacing:22.761248px;}
.ws14c{word-spacing:22.837687px;}
.ws15e{word-spacing:22.872967px;}
.ws48{word-spacing:23.108164px;}
.ws16a{word-spacing:23.119924px;}
.ws93{word-spacing:23.143444px;}
.ws192{word-spacing:23.225763px;}
.wsd5{word-spacing:23.261043px;}
.wsd9{word-spacing:23.296322px;}
.wsc4{word-spacing:23.302202px;}
.ws197{word-spacing:23.319842px;}
.wsd6{word-spacing:23.343362px;}
.wsb4{word-spacing:23.384521px;}
.ws19a{word-spacing:23.437441px;}
.ws163{word-spacing:23.455081px;}
.wsa6{word-spacing:23.637359px;}
.ws0{word-spacing:23.649600px;}
.wsa5{word-spacing:23.719678px;}
.wsa4{word-spacing:23.801997px;}
.ws5b{word-spacing:23.943116px;}
.ws128{word-spacing:23.966635px;}
.ws81{word-spacing:24.001915px;}
.ws12e{word-spacing:24.031315px;}
.ws16f{word-spacing:24.048955px;}
.ws91{word-spacing:24.166553px;}
.ws162{word-spacing:24.190073px;}
.ws5a{word-spacing:24.278272px;}
.ws16b{word-spacing:24.284152px;}
.ws4d{word-spacing:24.307672px;}
.ws15a{word-spacing:24.495830px;}
.ws51{word-spacing:24.619309px;}
.wsbc{word-spacing:24.648708px;}
.ws8d{word-spacing:24.695748px;}
.ws7c{word-spacing:24.801587px;}
.ws5e{word-spacing:24.854506px;}
.ws78{word-spacing:24.883906px;}
.ws17b{word-spacing:24.889786px;}
.ws65{word-spacing:25.013265px;}
.ws13c{word-spacing:25.095584px;}
.ws109{word-spacing:25.283742px;}
.ws90{word-spacing:25.330782px;}
.ws139{word-spacing:25.383701px;}
.ws8b{word-spacing:25.524820px;}
.ws52{word-spacing:25.630658px;}
.wsd2{word-spacing:25.865856px;}
.ws8c{word-spacing:25.907016px;}
.ws132{word-spacing:25.971695px;}
.ws136{word-spacing:26.042254px;}
.wsf2{word-spacing:26.124573px;}
.wscc{word-spacing:26.206893px;}
.wsc9{word-spacing:26.242172px;}
.ws112{word-spacing:26.318611px;}
.ws85{word-spacing:26.400931px;}
.ws152{word-spacing:26.442090px;}
.ws47{word-spacing:26.659648px;}
.ws6e{word-spacing:26.706687px;}
.wsc2{word-spacing:26.712567px;}
.ws164{word-spacing:26.853686px;}
.ws4b{word-spacing:26.965405px;}
.ws176{word-spacing:27.124163px;}
.ws5f{word-spacing:27.194723px;}
.wse4{word-spacing:27.306441px;}
.ws177{word-spacing:27.335841px;}
.wsb8{word-spacing:27.365241px;}
.ws7d{word-spacing:27.388761px;}
.ws3c{word-spacing:27.429920px;}
.ws122{word-spacing:27.465200px;}
.wsb3{word-spacing:27.623958px;}
.ws135{word-spacing:27.682758px;}
.ws95{word-spacing:27.741557px;}
.ws199{word-spacing:27.894435px;}
.wsd3{word-spacing:28.082593px;}
.wsce{word-spacing:28.100233px;}
.ws6b{word-spacing:28.288391px;}
.ws12b{word-spacing:28.335431px;}
.wsa8{word-spacing:28.588268px;}
.ws121{word-spacing:28.705867px;}
.ws17a{word-spacing:28.764666px;}
.ws53{word-spacing:28.776426px;}
.ws194{word-spacing:28.835226px;}
.wsdf{word-spacing:28.929305px;}
.ws151{word-spacing:29.070423px;}
.ws14d{word-spacing:29.176262px;}
.ws134{word-spacing:29.464379px;}
.ws43{word-spacing:29.658417px;}
.ws16d{word-spacing:29.699577px;}
.ws69{word-spacing:30.046493px;}
.ws54{word-spacing:30.122933px;}
.wsa0{word-spacing:30.140572px;}
.ws41{word-spacing:30.175852px;}
.ws138{word-spacing:30.228772px;}
.ws129{word-spacing:30.405170px;}
.wsed{word-spacing:30.411050px;}
.ws8a{word-spacing:30.434569px;}
.ws181{word-spacing:30.463969px;}
.ws127{word-spacing:30.746206px;}
.ws18d{word-spacing:30.752086px;}
.ws9a{word-spacing:31.004924px;}
.ws18f{word-spacing:31.304801px;}
.ws26{word-spacing:32.016273px;}
.ws96{word-spacing:32.469029px;}
.ws125{word-spacing:32.533708px;}
.ws13a{word-spacing:32.686586px;}
.ws15b{word-spacing:33.045263px;}
.wsb1{word-spacing:33.062903px;}
.ws10d{word-spacing:34.156571px;}
.ws11d{word-spacing:34.303570px;}
.ws8f{word-spacing:34.456448px;}
.wsb6{word-spacing:34.785725px;}
.ws94{word-spacing:34.985643px;}
.ws21{word-spacing:35.314920px;}
.ws2d{word-spacing:35.538357px;}
.ws13f{word-spacing:36.243950px;}
.ws58{word-spacing:37.037742px;}
.ws15d{word-spacing:37.073022px;}
.ws169{word-spacing:37.960893px;}
.wsaa{word-spacing:38.019692px;}
.ws189{word-spacing:38.107891px;}
.ws2b{word-spacing:38.207850px;}
.ws82{word-spacing:39.031042px;}
.ws86{word-spacing:39.718995px;}
.ws28{word-spacing:39.948312px;}
.ws29{word-spacing:40.065911px;}
.ws6c{word-spacing:40.265829px;}
.ws186{word-spacing:40.830303px;}
.ws5d{word-spacing:41.418297px;}
.ws116{word-spacing:42.000411px;}
.ws115{word-spacing:42.270889px;}
.ws3{word-spacing:42.955379px;}
.ws1{word-spacing:43.070579px;}
.ws2{word-spacing:43.243380px;}
.wsa7{word-spacing:44.211269px;}
.ws1c9{word-spacing:44.261410px;}
.ws1d{word-spacing:47.339397px;}
.ws159{word-spacing:51.361276px;}
.wsf6{word-spacing:52.232947px;}
.wsf4{word-spacing:52.276147px;}
.ws1be{word-spacing:65.816122px;}
._19{margin-left:-35.967593px;}
._1b{margin-left:-30.122933px;}
._18{margin-left:-27.124163px;}
._45{margin-left:-6.067529px;}
._14{margin-left:-5.056748px;}
._17{margin-left:-3.763162px;}
._16{margin-left:-2.334336px;}
._c{margin-left:-1.246547px;}
._5{width:1.236012px;}
._1a{width:2.815266px;}
._0{width:8.954400px;}
._3c{width:10.252672px;}
._8{width:11.262113px;}
._7{width:12.702127px;}
._f{width:14.120812px;}
._21{width:15.681800px;}
._20{width:16.722549px;}
._6{width:18.258183px;}
._4{width:19.356194px;}
._a{width:20.616776px;}
._b{width:22.043895px;}
._e{width:23.166964px;}
._11{width:24.284152px;}
._13{width:25.923431px;}
._1e{width:27.006564px;}
._12{width:28.517709px;}
._1c{width:29.814726px;}
._10{width:30.846165px;}
._15{width:31.875155px;}
._1{width:32.877000px;}
._1f{width:34.274314px;}
._d{width:35.478333px;}
._43{width:36.508547px;}
._44{width:37.731575px;}
._22{width:39.254479px;}
._1d{width:40.965542px;}
._46{width:42.323808px;}
._3{width:44.380985px;}
._9{width:48.915221px;}
._25{width:52.717741px;}
._2b{width:63.887201px;}
._47{width:65.861122px;}
._36{width:79.002212px;}
._33{width:91.098061px;}
._3f{width:95.902801px;}
._39{width:98.865588px;}
._3b{width:101.998725px;}
._3d{width:103.487660px;}
._29{width:123.113661px;}
._2d{width:129.272596px;}
._40{width:140.215847px;}
._34{width:145.188585px;}
._2e{width:155.513868px;}
._3e{width:157.826827px;}
._26{width:160.802790px;}
._37{width:161.810777px;}
._31{width:164.786740px;}
._2a{width:167.676304px;}
._2f{width:181.432932px;}
._27{width:185.416882px;}
._24{width:188.392845px;}
._3a{width:191.896801px;}
._35{width:207.880601px;}
._42{width:222.002025px;}
._28{width:225.121986px;}
._41{width:229.864327px;}
._30{width:245.368133px;}
._32{width:257.137586px;}
._2c{width:280.086099px;}
._38{width:456.522293px;}
._2{width:1602.252600px;}
._23{width:1703.829902px;}
.fc3{color:rgb(85,123,178);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fs11{font-size:37.800000px;}
.fsc{font-size:39.194400px;}
.fs10{font-size:40.800000px;}
.fs9{font-size:41.999400px;}
.fse{font-size:43.800600px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsf{font-size:53.349000px;}
.fsd{font-size:54.000000px;}
.fsb{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y231{bottom:84.166905px;}
.y108{bottom:91.417082px;}
.y75{bottom:91.417350px;}
.y73{bottom:91.417804px;}
.y191{bottom:91.417965px;}
.y1d6{bottom:91.418235px;}
.yb0{bottom:91.420038px;}
.y15c{bottom:91.444874px;}
.y37{bottom:91.501843px;}
.y10e{bottom:92.100288px;}
.y114{bottom:92.103228px;}
.y21d{bottom:92.438282px;}
.y230{bottom:94.666800px;}
.y74{bottom:97.965300px;}
.y13d{bottom:100.770900px;}
.y36{bottom:103.492671px;}
.y107{bottom:104.173350px;}
.y190{bottom:104.939159px;}
.y1d5{bottom:104.939430px;}
.y21c{bottom:105.959476px;}
.y72{bottom:109.445700px;}
.y70{bottom:109.446363px;}
.yaf{bottom:109.447934px;}
.y15b{bottom:109.472770px;}
.y10d{bottom:110.128184px;}
.y113{bottom:110.131124px;}
.y35{bottom:115.483500px;}
.y13c{bottom:115.822312px;}
.y71{bottom:115.993650px;}
.y18f{bottom:118.460354px;}
.y1d4{bottom:118.460624px;}
.y21b{bottom:119.480671px;}
.y106{bottom:123.903544px;}
.y22f{bottom:127.200150px;}
.y6f{bottom:127.389000px;}
.y6d{bottom:127.389454px;}
.yae{bottom:127.390571px;}
.y15a{bottom:127.500666px;}
.y10c{bottom:128.070821px;}
.y112{bottom:128.073761px;}
.y13b{bottom:130.789725px;}
.y18e{bottom:131.896050px;}
.y1d3{bottom:131.896320px;}
.y6e{bottom:133.936950px;}
.y21a{bottom:134.198019px;}
.y34{bottom:140.910361px;}
.y105{bottom:143.632498px;}
.y6c{bottom:145.417350px;}
.y1d2{bottom:145.417515px;}
.yad{bottom:145.418467px;}
.y6a{bottom:145.419375px;}
.y159{bottom:145.443303px;}
.y22e{bottom:145.815000px;}
.y13a{bottom:145.841137px;}
.y10b{bottom:146.098717px;}
.y111{bottom:146.101657px;}
.y219{bottom:147.719214px;}
.y2f{bottom:149.591853px;}
.y6b{bottom:151.965300px;}
.y33{bottom:154.431555px;}
.y1d1{bottom:158.938710px;}
.y139{bottom:160.808549px;}
.y218{bottom:161.154910px;}
.y18d{bottom:161.157355px;}
.y104{bottom:163.361451px;}
.yac{bottom:163.446363px;}
.y69{bottom:163.447271px;}
.y158{bottom:163.471199px;}
.y10a{bottom:164.126613px;}
.y110{bottom:164.129553px;}
.y22d{bottom:164.429550px;}
.y2e{bottom:167.619749px;}
.y32{bottom:167.952750px;}
.y1d0{bottom:172.459904px;}
.y31{bottom:172.970100px;}
.y217{bottom:174.676104px;}
.y138{bottom:175.775962px;}
.y18c{bottom:179.185251px;}
.yab{bottom:181.389000px;}
.y68{bottom:181.389908px;}
.ya9{bottom:181.403443px;}
.y30{bottom:181.474050px;}
.y157{bottom:181.499095px;}
.y109{bottom:182.069250px;}
.y10f{bottom:182.072190px;}
.y22c{bottom:183.044400px;}
.y103{bottom:183.090404px;}
.y2d{bottom:185.647645px;}
.y1cf{bottom:185.896725px;}
.yaa{bottom:187.936950px;}
.y216{bottom:188.622543px;}
.y137{bottom:190.827374px;}
.y18b{bottom:197.213147px;}
.y67{bottom:199.417804px;}
.y1ce{bottom:199.417920px;}
.ya8{bottom:199.431339px;}
.y156{bottom:199.441732px;}
.y22b{bottom:201.659250px;}
.y215{bottom:202.143738px;}
.y102{bottom:202.819358px;}
.y2c{bottom:203.590282px;}
.y136{bottom:205.794787px;}
.y1cd{bottom:212.939115px;}
.y18a{bottom:215.155784px;}
.y214{bottom:215.664933px;}
.y66{bottom:217.445700px;}
.ya7{bottom:217.459235px;}
.y155{bottom:217.469628px;}
.y22a{bottom:220.274250px;}
.y135{bottom:220.762200px;}
.y24{bottom:221.615238px;}
.y2b{bottom:221.618178px;}
.y101{bottom:222.548311px;}
.y1cc{bottom:226.460309px;}
.y213{bottom:229.100629px;}
.y189{bottom:233.183680px;}
.y65{bottom:235.389000px;}
.ya6{bottom:235.401872px;}
.y154{bottom:235.497524px;}
.y116{bottom:237.599437px;}
.y23{bottom:239.643134px;}
.y2a{bottom:239.646074px;}
.y1cb{bottom:239.896005px;}
.y100{bottom:242.277265px;}
.y212{bottom:242.621823px;}
.y188{bottom:251.211576px;}
.y229{bottom:251.663850px;}
.y115{bottom:252.566850px;}
.y1ca{bottom:253.417200px;}
.ya5{bottom:253.429768px;}
.y153{bottom:253.440161px;}
.y211{bottom:256.568263px;}
.y22{bottom:257.585771px;}
.y29{bottom:257.588711px;}
.yff{bottom:262.006218px;}
.y1c9{bottom:266.943435px;}
.y228{bottom:267.668550px;}
.y187{bottom:269.154213px;}
.y210{bottom:270.089457px;}
.y64{bottom:271.453405px;}
.ya4{bottom:271.457664px;}
.y152{bottom:271.468057px;}
.yfe{bottom:275.442450px;}
.y21{bottom:275.613667px;}
.y28{bottom:275.616607px;}
.y1c8{bottom:280.464629px;}
.y20f{bottom:283.610652px;}
.y186{bottom:287.182109px;}
.y63{bottom:289.396042px;}
.ya3{bottom:289.400301px;}
.y151{bottom:289.495953px;}
.y20{bottom:293.641563px;}
.y27{bottom:293.644503px;}
.y1c7{bottom:293.900325px;}
.yfd{bottom:295.171650px;}
.y20e{bottom:297.046348px;}
.y185{bottom:305.210005px;}
.y1c6{bottom:307.421520px;}
.y62{bottom:307.423938px;}
.ya2{bottom:307.428197px;}
.y150{bottom:307.438590px;}
.y20d{bottom:310.567543px;}
.y1f{bottom:311.584200px;}
.y26{bottom:311.587140px;}
.y1c5{bottom:320.942715px;}
.y184{bottom:323.152642px;}
.y20c{bottom:324.513982px;}
.y61{bottom:325.451834px;}
.ya1{bottom:325.456093px;}
.y14f{bottom:325.466486px;}
.yfc{bottom:328.934325px;}
.yd5{bottom:328.950548px;}
.y1e{bottom:329.612550px;}
.y25{bottom:329.615036px;}
.y1c4{bottom:334.463909px;}
.y20b{bottom:338.035176px;}
.y183{bottom:341.180538px;}
.y60{bottom:343.394471px;}
.ya0{bottom:343.398730px;}
.y14e{bottom:343.409123px;}
.yfb{bottom:346.962221px;}
.yd4{bottom:346.978444px;}
.y1c3{bottom:347.899605px;}
.y20a{bottom:351.556371px;}
.y182{bottom:359.208434px;}
.y1c2{bottom:361.420800px;}
.y5f{bottom:361.422367px;}
.y9f{bottom:361.426626px;}
.y14d{bottom:361.437019px;}
.yfa{bottom:364.990117px;}
.y209{bottom:364.992067px;}
.yd3{bottom:365.006340px;}
.y1c1{bottom:374.941995px;}
.y1d{bottom:375.273900px;}
.y181{bottom:377.151071px;}
.y208{bottom:378.513262px;}
.y5e{bottom:379.450263px;}
.y9e{bottom:379.454522px;}
.y14c{bottom:379.464915px;}
.yf9{bottom:382.932754px;}
.yd2{bottom:382.948977px;}
.y1c0{bottom:388.463189px;}
.y207{bottom:392.459701px;}
.y180{bottom:395.178967px;}
.y5d{bottom:397.392900px;}
.y9d{bottom:397.397159px;}
.y14b{bottom:397.407552px;}
.y1c{bottom:400.786155px;}
.yf8{bottom:400.960650px;}
.yd1{bottom:400.976873px;}
.y1bf{bottom:401.898885px;}
.y206{bottom:405.980895px;}
.y17f{bottom:413.206863px;}
.y1be{bottom:415.420080px;}
.y5c{bottom:415.420796px;}
.y9c{bottom:415.425055px;}
.y14a{bottom:415.435448px;}
.y1b{bottom:418.814835px;}
.yf7{bottom:418.988850px;}
.yd0{bottom:419.004769px;}
.y205{bottom:419.502090px;}
.y1bd{bottom:428.941275px;}
.y17e{bottom:431.149500px;}
.y204{bottom:432.937786px;}
.y5b{bottom:433.448692px;}
.y9b{bottom:433.452951px;}
.y149{bottom:433.463344px;}
.y1a{bottom:436.758015px;}
.ycf{bottom:436.947406px;}
.y1bc{bottom:442.462469px;}
.y203{bottom:446.458981px;}
.y17d{bottom:449.177850px;}
.y5a{bottom:451.391329px;}
.y9a{bottom:451.395588px;}
.y148{bottom:451.405981px;}
.y19{bottom:454.786695px;}
.yce{bottom:454.975302px;}
.y1bb{bottom:455.898165px;}
.y202{bottom:459.980175px;}
.y59{bottom:469.419225px;}
.y1ba{bottom:469.419360px;}
.y99{bottom:469.423484px;}
.y147{bottom:469.433877px;}
.yf6{bottom:469.450244px;}
.y18{bottom:472.815375px;}
.ycd{bottom:473.003198px;}
.y201{bottom:473.501370px;}
.y1b9{bottom:482.940555px;}
.y58{bottom:487.447121px;}
.y200{bottom:487.447809px;}
.y98{bottom:487.451380px;}
.y146{bottom:487.461773px;}
.yf5{bottom:487.478141px;}
.y17c{bottom:487.485293px;}
.ycc{bottom:490.945835px;}
.y17{bottom:495.266100px;}
.y1b8{bottom:496.461749px;}
.y1ff{bottom:500.969004px;}
.y57{bottom:505.389758px;}
.y97{bottom:505.394017px;}
.y12e{bottom:505.397613px;}
.y145{bottom:505.404410px;}
.yf4{bottom:505.420777px;}
.y17b{bottom:505.427930px;}
.ycb{bottom:508.973731px;}
.y1b7{bottom:509.897445px;}
.y16{bottom:513.294780px;}
.y1fe{bottom:514.404700px;}
.y56{bottom:523.417654px;}
.y1b6{bottom:523.418640px;}
.y96{bottom:523.421913px;}
.y12d{bottom:523.425509px;}
.y144{bottom:523.432306px;}
.yf3{bottom:523.448673px;}
.y17a{bottom:523.455826px;}
.yca{bottom:527.001627px;}
.y1fd{bottom:528.351139px;}
.y15{bottom:531.323460px;}
.y1b5{bottom:536.939835px;}
.y55{bottom:541.445550px;}
.y95{bottom:541.449809px;}
.y12c{bottom:541.453405px;}
.y143{bottom:541.460202px;}
.yf2{bottom:541.476570px;}
.y179{bottom:541.483722px;}
.y1fc{bottom:541.872333px;}
.yc9{bottom:544.944264px;}
.y14{bottom:549.266640px;}
.y1b4{bottom:550.461029px;}
.y1fb{bottom:555.393528px;}
.y54{bottom:559.388850px;}
.y94{bottom:559.392446px;}
.y12b{bottom:559.396042px;}
.y142{bottom:559.402839px;}
.yf1{bottom:559.419206px;}
.y178{bottom:559.426359px;}
.yc8{bottom:562.972160px;}
.y1b3{bottom:563.896725px;}
.y13{bottom:567.295320px;}
.y1fa{bottom:568.914723px;}
.y53{bottom:577.417200px;}
.y1b2{bottom:577.417920px;}
.y93{bottom:577.420342px;}
.y12a{bottom:577.423938px;}
.y141{bottom:577.430735px;}
.yf0{bottom:577.447102px;}
.y177{bottom:577.454255px;}
.yc7{bottom:581.000056px;}
.y1f9{bottom:582.861162px;}
.y12{bottom:585.324000px;}
.y1b1{bottom:590.939115px;}
.y92{bottom:595.448238px;}
.y129{bottom:595.451834px;}
.y140{bottom:595.458631px;}
.yef{bottom:595.474998px;}
.y176{bottom:595.482151px;}
.y1f8{bottom:596.296858px;}
.yc6{bottom:598.942693px;}
.y11{bottom:603.267180px;}
.y1b0{bottom:604.460309px;}
.y1f7{bottom:609.818052px;}
.y91{bottom:613.390875px;}
.y128{bottom:613.394471px;}
.y52{bottom:613.401268px;}
.yee{bottom:613.417635px;}
.y175{bottom:613.424788px;}
.yc5{bottom:616.970589px;}
.y1af{bottom:617.896005px;}
.y10{bottom:621.295860px;}
.y1f6{bottom:623.339247px;}
.y1ae{bottom:631.417200px;}
.y90{bottom:631.418771px;}
.y127{bottom:631.422367px;}
.y51{bottom:631.429164px;}
.yed{bottom:631.445531px;}
.y174{bottom:631.452684px;}
.yc4{bottom:634.998485px;}
.y1f5{bottom:637.285686px;}
.yf{bottom:643.832085px;}
.y1ad{bottom:644.939380px;}
.y8f{bottom:649.446667px;}
.y126{bottom:649.450263px;}
.y50{bottom:649.457060px;}
.yec{bottom:649.473427px;}
.y173{bottom:649.480580px;}
.y1f4{bottom:650.806881px;}
.yc3{bottom:652.941122px;}
.ye{bottom:661.775265px;}
.y1f3{bottom:664.242577px;}
.y8e{bottom:667.389304px;}
.y125{bottom:667.392900px;}
.y4f{bottom:667.399697px;}
.yeb{bottom:667.416064px;}
.y172{bottom:667.423217px;}
.yc2{bottom:670.969018px;}
.y1f2{bottom:677.763772px;}
.y1ac{bottom:679.465170px;}
.yd{bottom:684.311490px;}
.y8d{bottom:685.417200px;}
.y124{bottom:685.420796px;}
.y4e{bottom:685.427593px;}
.yea{bottom:685.443960px;}
.y171{bottom:685.451113px;}
.yc1{bottom:688.996914px;}
.y1f1{bottom:691.284966px;}
.y1ab{bottom:692.900866px;}
.yc{bottom:702.340171px;}
.y8c{bottom:703.445895px;}
.y123{bottom:703.448692px;}
.y4d{bottom:703.455489px;}
.ye9{bottom:703.471856px;}
.y170{bottom:703.479009px;}
.y1f0{bottom:705.231405px;}
.yc0{bottom:706.939551px;}
.y1ef{bottom:718.754870px;}
.y1aa{bottom:719.943255px;}
.yb{bottom:720.283350px;}
.y8b{bottom:721.388850px;}
.y122{bottom:721.391329px;}
.y4c{bottom:721.398126px;}
.ye8{bottom:721.414493px;}
.y16f{bottom:721.421646px;}
.ybf{bottom:724.967447px;}
.y1ee{bottom:732.190566px;}
.y1a7{bottom:733.463940px;}
.y1a9{bottom:733.464450px;}
.y1a8{bottom:738.396750px;}
.y121{bottom:739.419225px;}
.y4b{bottom:739.426022px;}
.ye7{bottom:739.442389px;}
.y16e{bottom:739.449542px;}
.ybe{bottom:742.995343px;}
.y1ed{bottom:746.137005px;}
.y1a6{bottom:746.900761px;}
.ya{bottom:747.325800px;}
.y120{bottom:757.447121px;}
.y8a{bottom:757.452801px;}
.y4a{bottom:757.453918px;}
.ye6{bottom:757.470285px;}
.y16d{bottom:757.477438px;}
.y1ec{bottom:759.658200px;}
.y1a5{bottom:760.421955px;}
.ybd{bottom:760.937980px;}
.y1eb{bottom:773.179395px;}
.y1a4{bottom:773.943150px;}
.y1a2{bottom:773.943255px;}
.y11f{bottom:775.389758px;}
.y89{bottom:775.395438px;}
.y49{bottom:775.396555px;}
.ye5{bottom:775.412922px;}
.y16c{bottom:775.420075px;}
.y1a3{bottom:778.960500px;}
.ybc{bottom:778.965876px;}
.y1ea{bottom:786.700589px;}
.y1a1{bottom:787.464450px;}
.y1a0{bottom:792.396750px;}
.y11e{bottom:793.417654px;}
.y88{bottom:793.423334px;}
.y48{bottom:793.424451px;}
.ye4{bottom:793.440818px;}
.y16b{bottom:793.447971px;}
.ybb{bottom:796.908513px;}
.y1e9{bottom:800.136285px;}
.y19f{bottom:800.902460px;}
.y8{bottom:805.067550px;}
.y11d{bottom:811.445550px;}
.y87{bottom:811.451230px;}
.y47{bottom:811.452347px;}
.ye3{bottom:811.468714px;}
.y16a{bottom:811.475867px;}
.y9{bottom:812.380950px;}
.y1e8{bottom:813.657480px;}
.yba{bottom:814.936409px;}
.y6{bottom:826.072200px;}
.y1e7{bottom:827.603919px;}
.y19e{bottom:827.944849px;}
.y11c{bottom:829.388684px;}
.y132{bottom:829.388700px;}
.y86{bottom:829.393867px;}
.y46{bottom:829.394984px;}
.ye2{bottom:829.411351px;}
.y169{bottom:829.418504px;}
.yb9{bottom:832.964305px;}
.y7{bottom:833.385750px;}
.y1e6{bottom:841.125114px;}
.y19d{bottom:841.466044px;}
.y11b{bottom:847.417200px;}
.y85{bottom:847.421763px;}
.y45{bottom:847.422880px;}
.ye1{bottom:847.439247px;}
.y168{bottom:847.446400px;}
.yb8{bottom:850.906942px;}
.y1e5{bottom:854.646309px;}
.y19c{bottom:854.901740px;}
.y5{bottom:862.046662px;}
.y84{bottom:865.449659px;}
.y44{bottom:865.450776px;}
.y131{bottom:865.454269px;}
.ye0{bottom:865.467143px;}
.y167{bottom:865.474296px;}
.y1e4{bottom:868.167503px;}
.y19b{bottom:868.422935px;}
.yb7{bottom:868.934838px;}
.y19a{bottom:881.944129px;}
.y1e3{bottom:882.113942px;}
.y11a{bottom:883.389304px;}
.y83{bottom:883.392296px;}
.y43{bottom:883.393413px;}
.y130{bottom:883.396906px;}
.ydf{bottom:883.409780px;}
.y166{bottom:883.416933px;}
.y227{bottom:884.494581px;}
.yb6{bottom:886.962734px;}
.y1e2{bottom:895.550763px;}
.y226{bottom:897.250411px;}
.y4{bottom:901.078025px;}
.y119{bottom:901.417200px;}
.y82{bottom:901.420192px;}
.y42{bottom:901.421309px;}
.y12f{bottom:901.424802px;}
.yde{bottom:901.437676px;}
.y165{bottom:901.444829px;}
.yb5{bottom:904.905371px;}
.y1e1{bottom:909.071958px;}
.y225{bottom:910.006241px;}
.y199{bottom:916.385545px;}
.y81{bottom:919.448088px;}
.y41{bottom:919.449205px;}
.ydd{bottom:919.465572px;}
.y164{bottom:919.472725px;}
.y1e0{bottom:922.593153px;}
.y224{bottom:922.762070px;}
.yb4{bottom:922.933267px;}
.y198{bottom:929.906740px;}
.y223{bottom:935.517900px;}
.y1df{bottom:936.114347px;}
.y80{bottom:937.390725px;}
.y40{bottom:937.391842px;}
.ydc{bottom:937.408209px;}
.y163{bottom:937.415362px;}
.y3{bottom:940.026587px;}
.yb3{bottom:940.961163px;}
.y197{bottom:943.427934px;}
.y134{bottom:949.889137px;}
.y1de{bottom:950.060786px;}
.y7f{bottom:955.418621px;}
.y3f{bottom:955.419738px;}
.ydb{bottom:955.436105px;}
.y162{bottom:955.443258px;}
.y196{bottom:956.949129px;}
.yb2{bottom:958.903800px;}
.y1dd{bottom:963.496482px;}
.y222{bottom:964.432529px;}
.y133{bottom:964.856550px;}
.y195{bottom:970.384825px;}
.y7e{bottom:973.446517px;}
.y3e{bottom:973.447634px;}
.yda{bottom:973.464001px;}
.y161{bottom:973.471154px;}
.yb1{bottom:976.932000px;}
.y1dc{bottom:977.017677px;}
.y221{bottom:977.953724px;}
.y2{bottom:979.057950px;}
.y194{bottom:983.906020px;}
.y1db{bottom:990.964116px;}
.y7d{bottom:991.389154px;}
.y220{bottom:991.389420px;}
.y3d{bottom:991.390271px;}
.yd9{bottom:991.406638px;}
.y160{bottom:991.413791px;}
.y193{bottom:997.427214px;}
.y1da{bottom:1004.485311px;}
.y21f{bottom:1004.910615px;}
.y7c{bottom:1009.417050px;}
.y7a{bottom:1009.417504px;}
.y3c{bottom:1009.418167px;}
.yd8{bottom:1009.434534px;}
.y15f{bottom:1009.441687px;}
.y7b{bottom:1015.965150px;}
.y1d9{bottom:1018.006505px;}
.y21e{bottom:1018.431809px;}
.y79{bottom:1027.445400px;}
.y3b{bottom:1027.446063px;}
.yd7{bottom:1027.462430px;}
.y15e{bottom:1027.469583px;}
.y1d8{bottom:1031.952944px;}
.y192{bottom:1031.953004px;}
.y78{bottom:1033.993500px;}
.y1{bottom:1036.034400px;}
.y76{bottom:1045.384696px;}
.y1d7{bottom:1045.388640px;}
.y3a{bottom:1045.388700px;}
.yd6{bottom:1045.405067px;}
.y15d{bottom:1045.412220px;}
.y77{bottom:1051.936650px;}
.y13f{bottom:1114.945423px;}
.y118{bottom:1114.945670px;}
.y39{bottom:1114.950487px;}
.y13e{bottom:1129.912835px;}
.y117{bottom:1129.913083px;}
.y38{bottom:1129.917900px;}
.ha{height:21.626539px;}
.he{height:21.870475px;}
.h14{height:28.350000px;}
.hf{height:28.376746px;}
.hb{height:30.281567px;}
.h13{height:31.089600px;}
.h11{height:31.580233px;}
.h5{height:31.721260px;}
.h9{height:32.444567px;}
.hc{height:34.607567px;}
.h10{height:38.934000px;}
.hd{height:39.799633px;}
.h12{height:40.651938px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x11{left:89.036250px;}
.x1{left:91.077150px;}
.x42{left:93.288150px;}
.xf{left:94.818900px;}
.x13{left:97.030018px;}
.x40{left:107.574696px;}
.x18{left:126.538500px;}
.x3f{left:128.494500px;}
.x19{left:129.514950px;}
.x3d{left:132.235960px;}
.x21{left:171.099150px;}
.x14{left:172.459800px;}
.x22{left:174.075600px;}
.x15{left:175.436250px;}
.xe{left:193.209450px;}
.x3{left:195.250350px;}
.x4{left:205.370100px;}
.x23{left:225.524400px;}
.x24{left:228.500700px;}
.x1e{left:254.862900px;}
.x1f{left:257.839350px;}
.x12{left:270.680250px;}
.x36{left:289.132799px;}
.x5{left:306.056700px;}
.x6{left:311.669250px;}
.x20{left:315.155850px;}
.x1a{left:325.955850px;}
.x1b{left:328.932150px;}
.x37{left:362.011488px;}
.x3e{left:365.924400px;}
.x1c{left:377.489700px;}
.x1d{left:380.551050px;}
.x7{left:418.223550px;}
.x8{left:423.836100px;}
.x16{left:429.618750px;}
.x17{left:432.595200px;}
.x38{left:437.780941px;}
.x10{left:457.085204px;}
.x33{left:469.078588px;}
.x25{left:470.097450px;}
.x26{left:473.073900px;}
.x41{left:479.621656px;}
.x44{left:483.219150px;}
.x43{left:484.282650px;}
.x27{left:514.062900px;}
.x28{left:517.124250px;}
.x39{left:522.735079px;}
.x9{left:536.598300px;}
.xa{left:542.295900px;}
.x3a{left:594.507382px;}
.x31{left:617.215650px;}
.x32{left:620.277000px;}
.xb{left:643.237650px;}
.xc{left:648.935250px;}
.x3b{left:655.225423px;}
.x2d{left:696.897450px;}
.x2e{left:699.873900px;}
.x34{left:716.456550px;}
.x35{left:728.021850px;}
.x2f{left:741.032850px;}
.x30{left:744.094350px;}
.x29{left:750.132150px;}
.x2a{left:753.108600px;}
.xd{left:754.809300px;}
.x3c{left:759.142924px;}
.x2b{left:799.540050px;}
.x2c{left:802.516350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3a{letter-spacing:-0.987830pt;}
.ls4{letter-spacing:-0.977377pt;}
.lsc{letter-spacing:-0.972150pt;}
.ls9{letter-spacing:-0.966923pt;}
.ls6{letter-spacing:-0.956470pt;}
.ls8{letter-spacing:-0.951244pt;}
.ls2{letter-spacing:-0.946017pt;}
.ls1{letter-spacing:-0.940790pt;}
.ls5{letter-spacing:-0.935564pt;}
.lsb{letter-spacing:-0.930337pt;}
.ls3{letter-spacing:-0.925111pt;}
.ls1b{letter-spacing:-0.919884pt;}
.lsa{letter-spacing:-0.914657pt;}
.ls1a{letter-spacing:-0.904204pt;}
.ls3f{letter-spacing:-0.820578pt;}
.ls7{letter-spacing:-0.810125pt;}
.ls3c{letter-spacing:-0.804898pt;}
.ls48{letter-spacing:-0.783992pt;}
.ls43{letter-spacing:-0.773539pt;}
.ls47{letter-spacing:-0.768312pt;}
.ls42{letter-spacing:-0.763086pt;}
.ls33{letter-spacing:-0.757859pt;}
.ls40{letter-spacing:-0.752632pt;}
.ls35{letter-spacing:-0.747406pt;}
.ls44{letter-spacing:-0.742179pt;}
.ls36{letter-spacing:-0.736952pt;}
.ls34{letter-spacing:-0.731726pt;}
.ls46{letter-spacing:-0.726499pt;}
.ls32{letter-spacing:-0.716046pt;}
.ls45{letter-spacing:-0.710819pt;}
.ls37{letter-spacing:-0.705593pt;}
.ls41{letter-spacing:-0.663780pt;}
.ls24{letter-spacing:-0.642873pt;}
.ls3d{letter-spacing:-0.015680pt;}
.ls2a{letter-spacing:-0.010453pt;}
.ls3e{letter-spacing:-0.005227pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.005227pt;}
.ls4a{letter-spacing:0.051999pt;}
.ls38{letter-spacing:0.085332pt;}
.ls39{letter-spacing:0.140798pt;}
.lsd{letter-spacing:0.177705pt;}
.ls18{letter-spacing:0.287464pt;}
.ls4b{letter-spacing:0.363995pt;}
.ls4f{letter-spacing:0.367995pt;}
.ls59{letter-spacing:0.371995pt;}
.ls5e{letter-spacing:0.439994pt;}
.ls4d{letter-spacing:0.451994pt;}
.ls5c{letter-spacing:0.455994pt;}
.ls5b{letter-spacing:0.459994pt;}
.ls13{letter-spacing:0.480848pt;}
.ls30{letter-spacing:0.491302pt;}
.ls54{letter-spacing:0.491993pt;}
.ls1d{letter-spacing:0.496528pt;}
.ls53{letter-spacing:0.503993pt;}
.ls2e{letter-spacing:0.506981pt;}
.ls52{letter-spacing:0.507993pt;}
.ls14{letter-spacing:0.517435pt;}
.ls11{letter-spacing:0.527888pt;}
.ls4c{letter-spacing:0.527993pt;}
.ls58{letter-spacing:0.535993pt;}
.ls1c{letter-spacing:0.538341pt;}
.ls2c{letter-spacing:0.543568pt;}
.ls10{letter-spacing:0.554021pt;}
.ls57{letter-spacing:0.555993pt;}
.ls50{letter-spacing:0.559993pt;}
.ls17{letter-spacing:0.564474pt;}
.lsf{letter-spacing:0.569701pt;}
.ls4e{letter-spacing:0.571992pt;}
.ls2b{letter-spacing:0.580154pt;}
.ls12{letter-spacing:0.585381pt;}
.ls31{letter-spacing:0.606287pt;}
.ls2f{letter-spacing:0.616740pt;}
.ls25{letter-spacing:0.627194pt;}
.ls28{letter-spacing:0.632420pt;}
.ls5d{letter-spacing:0.639991pt;}
.ls5a{letter-spacing:0.739990pt;}
.ls26{letter-spacing:1.170761pt;}
.ls21{letter-spacing:1.505265pt;}
.ls22{letter-spacing:1.698649pt;}
.ls2d{letter-spacing:10.785446pt;}
.ls51{letter-spacing:11.183851pt;}
.ls5f{letter-spacing:11.680160pt;}
.ls56{letter-spacing:11.819842pt;}
.ls49{letter-spacing:12.003840pt;}
.ls55{letter-spacing:12.139838pt;}
.ls3b{letter-spacing:12.718774pt;}
.ls19{letter-spacing:18.920340pt;}
.ls27{letter-spacing:24.497137pt;}
.ls1f{letter-spacing:24.512817pt;}
.ls15{letter-spacing:24.518043pt;}
.ls1e{letter-spacing:24.585989pt;}
.ls29{letter-spacing:24.815960pt;}
.ls16{letter-spacing:24.821187pt;}
.ls23{letter-spacing:30.544328pt;}
.ls20{letter-spacing:32.446816pt;}
.ws73{word-spacing:-32.499082pt;}
.ws7a{word-spacing:-24.873453pt;}
.ws7b{word-spacing:-24.868226pt;}
.ws70{word-spacing:-24.638255pt;}
.ws77{word-spacing:-24.570309pt;}
.ws71{word-spacing:-24.565083pt;}
.ws205{word-spacing:-10.082133pt;}
.ws206{word-spacing:-9.340800pt;}
.ws75{word-spacing:-1.750915pt;}
.ws74{word-spacing:-1.557531pt;}
.ws79{word-spacing:-0.684686pt;}
.ws6d{word-spacing:-0.637647pt;}
.ws1c4{word-spacing:-0.611992pt;}
.ws72{word-spacing:-0.569701pt;}
.ws6f{word-spacing:-0.548794pt;}
.ws1b{word-spacing:-0.054933pt;}
.ws42{word-spacing:-0.052266pt;}
.ws57{word-spacing:-0.049067pt;}
.ws39{word-spacing:-0.042666pt;}
.ws2f{word-spacing:-0.039999pt;}
.ws1fd{word-spacing:-0.038934pt;}
.ws108{word-spacing:-0.037333pt;}
.ws3a{word-spacing:0.000000pt;}
.ws76{word-spacing:0.590607pt;}
.wsfb{word-spacing:8.072432pt;}
.wsf9{word-spacing:8.080966pt;}
.wsfa{word-spacing:8.162031pt;}
.wsf8{word-spacing:8.217497pt;}
.wsa2{word-spacing:9.428810pt;}
.wse7{word-spacing:9.486303pt;}
.ws13b{word-spacing:9.679688pt;}
.wsdc{word-spacing:9.690141pt;}
.ws1c3{word-spacing:9.747870pt;}
.ws1c1{word-spacing:9.987867pt;}
.ws1dc{word-spacing:10.023866pt;}
.ws1e2{word-spacing:10.191864pt;}
.ws1c2{word-spacing:10.199864pt;}
.ws1df{word-spacing:10.219864pt;}
.ws1e0{word-spacing:10.239863pt;}
.ws10a{word-spacing:10.291202pt;}
.ws1e1{word-spacing:10.291863pt;}
.ws1de{word-spacing:10.315862pt;}
.ws10{word-spacing:10.346770pt;}
.wscf{word-spacing:10.374827pt;}
.ws2e{word-spacing:10.563859pt;}
.wsf{word-spacing:10.650773pt;}
.wsc5{word-spacing:10.954982pt;}
.ws101{word-spacing:11.054242pt;}
.wsff{word-spacing:11.065442pt;}
.ws34{word-spacing:11.080375pt;}
.ws8e{word-spacing:11.096100pt;}
.wsfd{word-spacing:11.140108pt;}
.ws1c0{word-spacing:11.143851pt;}
.wsfe{word-spacing:11.147574pt;}
.ws35{word-spacing:11.162507pt;}
.ws33{word-spacing:11.173707pt;}
.ws1bf{word-spacing:11.183851pt;}
.ws104{word-spacing:11.237173pt;}
.ws105{word-spacing:11.274506pt;}
.ws107{word-spacing:11.281972pt;}
.wsfc{word-spacing:11.293172pt;}
.ws100{word-spacing:11.296905pt;}
.ws103{word-spacing:11.319305pt;}
.ws102{word-spacing:11.408904pt;}
.ws1dd{word-spacing:11.463847pt;}
.ws203{word-spacing:11.477704pt;}
.ws106{word-spacing:11.483569pt;}
.ws204{word-spacing:11.536105pt;}
.ws202{word-spacing:11.559465pt;}
.ws1fe{word-spacing:11.582825pt;}
.ws201{word-spacing:11.586719pt;}
.ws1ec{word-spacing:11.655845pt;}
.ws1fb{word-spacing:11.671844pt;}
.ws1db{word-spacing:11.687844pt;}
.ws1a9{word-spacing:11.703844pt;}
.ws1ce{word-spacing:11.707844pt;}
.ws1c8{word-spacing:11.711844pt;}
.ws1e7{word-spacing:11.715844pt;}
.ws1e5{word-spacing:11.723844pt;}
.ws1cc{word-spacing:11.735844pt;}
.ws200{word-spacing:11.742454pt;}
.ws1e8{word-spacing:11.743843pt;}
.ws1b1{word-spacing:11.747843pt;}
.ws1ed{word-spacing:11.759843pt;}
.ws19c{word-spacing:11.763843pt;}
.ws1e3{word-spacing:11.767843pt;}
.ws1bc{word-spacing:11.771843pt;}
.ws1b0{word-spacing:11.775843pt;}
.ws1f6{word-spacing:11.779843pt;}
.ws1ae{word-spacing:11.783843pt;}
.ws1b8{word-spacing:11.787843pt;}
.ws1d0{word-spacing:11.791843pt;}
.ws1a1{word-spacing:11.799843pt;}
.ws1ea{word-spacing:11.803843pt;}
.ws1b9{word-spacing:11.807843pt;}
.ws1c6{word-spacing:11.811843pt;}
.ws1e6{word-spacing:11.815842pt;}
.ws1a3{word-spacing:11.819842pt;}
.ws1f5{word-spacing:11.823842pt;}
.ws1d4{word-spacing:11.827842pt;}
.ws1c5{word-spacing:11.831842pt;}
.ws1d6{word-spacing:11.835842pt;}
.ws1f9{word-spacing:11.838068pt;}
.ws1b4{word-spacing:11.839842pt;}
.ws1cf{word-spacing:11.843842pt;}
.ws1af{word-spacing:11.847842pt;}
.ws1ef{word-spacing:11.851842pt;}
.ws32{word-spacing:11.859842pt;}
.ws1bd{word-spacing:11.863842pt;}
.ws1f7{word-spacing:11.871842pt;}
.ws1b6{word-spacing:11.875842pt;}
.ws1d1{word-spacing:11.879842pt;}
.ws1a6{word-spacing:11.883842pt;}
.ws1d9{word-spacing:11.887841pt;}
.ws1ba{word-spacing:11.895841pt;}
.ws1d3{word-spacing:11.899841pt;}
.ws1b2{word-spacing:11.903841pt;}
.ws1ad{word-spacing:11.907841pt;}
.ws1b7{word-spacing:11.915841pt;}
.ws1da{word-spacing:11.919841pt;}
.ws1cb{word-spacing:11.927841pt;}
.ws19b{word-spacing:11.935841pt;}
.ws19f{word-spacing:11.939841pt;}
.ws1d5{word-spacing:11.943841pt;}
.ws1cd{word-spacing:11.947841pt;}
.ws1c7{word-spacing:11.951841pt;}
.ws1a0{word-spacing:11.955841pt;}
.ws1bb{word-spacing:11.959841pt;}
.ws1d2{word-spacing:11.975840pt;}
.ws1a5{word-spacing:11.991840pt;}
.ws1d8{word-spacing:11.995840pt;}
.ws1a2{word-spacing:12.003840pt;}
.ws1eb{word-spacing:12.007840pt;}
.ws1aa{word-spacing:12.011840pt;}
.ws1d7{word-spacing:12.023840pt;}
.ws1e9{word-spacing:12.051839pt;}
.ws1ac{word-spacing:12.055839pt;}
.ws30{word-spacing:12.067839pt;}
.ws1ff{word-spacing:12.069499pt;}
.ws1ab{word-spacing:12.071839pt;}
.ws19d{word-spacing:12.079839pt;}
.ws1e4{word-spacing:12.083839pt;}
.ws1ca{word-spacing:12.099839pt;}
.ws31{word-spacing:12.103839pt;}
.ws1b3{word-spacing:12.107839pt;}
.ws1f8{word-spacing:12.123838pt;}
.ws1b5{word-spacing:12.163838pt;}
.ws118{word-spacing:12.172648pt;}
.ws1ee{word-spacing:12.183838pt;}
.ws1fc{word-spacing:12.187837pt;}
.ws148{word-spacing:12.211047pt;}
.ws1fa{word-spacing:12.215837pt;}
.ws1f4{word-spacing:12.239837pt;}
.ws1f3{word-spacing:12.267836pt;}
.ws1a8{word-spacing:12.279836pt;}
.ws1a4{word-spacing:12.307836pt;}
.ws143{word-spacing:12.309179pt;}
.ws19e{word-spacing:12.339835pt;}
.wsf7{word-spacing:12.364645pt;}
.ws14b{word-spacing:12.373179pt;}
.ws119{word-spacing:12.381712pt;}
.ws1f1{word-spacing:12.387835pt;}
.ws145{word-spacing:12.390245pt;}
.ws140{word-spacing:12.394512pt;}
.ws141{word-spacing:12.398778pt;}
.ws147{word-spacing:12.407312pt;}
.ws1a7{word-spacing:12.419834pt;}
.ws117{word-spacing:12.428645pt;}
.ws36{word-spacing:12.437178pt;}
.ws38{word-spacing:12.454244pt;}
.ws146{word-spacing:12.467044pt;}
.ws37{word-spacing:12.479844pt;}
.ws14a{word-spacing:12.488377pt;}
.ws11a{word-spacing:12.501177pt;}
.ws144{word-spacing:12.552376pt;}
.wsb0{word-spacing:12.564778pt;}
.ws149{word-spacing:12.616376pt;}
.wsab{word-spacing:12.667575pt;}
.wsf5{word-spacing:12.761440pt;}
.ws142{word-spacing:12.787040pt;}
.ws18b{word-spacing:13.003814pt;}
.wsbf{word-spacing:13.014267pt;}
.wsc0{word-spacing:13.087440pt;}
.ws88{word-spacing:13.108346pt;}
.wsad{word-spacing:13.197199pt;}
.wse6{word-spacing:13.223332pt;}
.wsef{word-spacing:13.233785pt;}
.ws66{word-spacing:13.275598pt;}
.ws190{word-spacing:13.312184pt;}
.ws1f0{word-spacing:13.331822pt;}
.ws1f2{word-spacing:13.371822pt;}
.wsb7{word-spacing:13.437623pt;}
.wsec{word-spacing:13.474209pt;}
.ws9c{word-spacing:13.526475pt;}
.ws18c{word-spacing:13.568288pt;}
.wsee{word-spacing:13.688500pt;}
.ws80{word-spacing:13.725087pt;}
.wse9{word-spacing:13.730313pt;}
.ws195{word-spacing:13.793033pt;}
.ws17c{word-spacing:13.840072pt;}
.wsb2{word-spacing:13.965511pt;}
.ws175{word-spacing:13.991644pt;}
.wse0{word-spacing:14.033457pt;}
.ws196{word-spacing:14.075270pt;}
.wsf3{word-spacing:14.088000pt;}
.wsac{word-spacing:14.378413pt;}
.ws180{word-spacing:14.514305pt;}
.ws178{word-spacing:14.577025pt;}
.ws67{word-spacing:14.577865pt;}
.wsd8{word-spacing:14.608384pt;}
.ws13e{word-spacing:14.671104pt;}
.wsf0{word-spacing:14.676000pt;}
.ws9e{word-spacing:14.681557pt;}
.wsc8{word-spacing:14.692010pt;}
.ws89{word-spacing:14.725067pt;}
.wsc7{word-spacing:14.806996pt;}
.ws83{word-spacing:14.859262pt;}
.ws17d{word-spacing:14.901075pt;}
.ws11c{word-spacing:14.916754pt;}
.wsde{word-spacing:14.937661pt;}
.ws3d{word-spacing:14.958567pt;}
.wsdd{word-spacing:14.984700pt;}
.ws153{word-spacing:15.010833pt;}
.ws63{word-spacing:15.047420pt;}
.ws110{word-spacing:15.063100pt;}
.ws137{word-spacing:15.099686pt;}
.wsda{word-spacing:15.120592pt;}
.ws9d{word-spacing:15.131046pt;}
.wsc6{word-spacing:15.162405pt;}
.ws15c{word-spacing:15.198992pt;}
.ws17f{word-spacing:15.204218pt;}
.ws15f{word-spacing:15.256484pt;}
.ws191{word-spacing:15.277391pt;}
.ws23{word-spacing:15.340110pt;}
.wsd1{word-spacing:15.350563pt;}
.ws87{word-spacing:15.355790pt;}
.ws56{word-spacing:15.387150pt;}
.ws160{word-spacing:15.434189pt;}
.ws10b{word-spacing:15.528268pt;}
.ws12a{word-spacing:15.543948pt;}
.ws12f{word-spacing:15.559628pt;}
.ws3b{word-spacing:15.585761pt;}
.wsd7{word-spacing:15.590988pt;}
.ws161{word-spacing:15.622347pt;}
.ws99{word-spacing:15.632800pt;}
.ws14f{word-spacing:15.643254pt;}
.wsd0{word-spacing:15.669387pt;}
.ws12c{word-spacing:15.674613pt;}
.wsa9{word-spacing:15.690293pt;}
.wsaf{word-spacing:15.726880pt;}
.ws1a{word-spacing:15.770824pt;}
.ws7e{word-spacing:15.789599pt;}
.ws150{word-spacing:15.805279pt;}
.ws18{word-spacing:15.813491pt;}
.ws20{word-spacing:15.831412pt;}
.ws12{word-spacing:15.845492pt;}
.ws17{word-spacing:15.866825pt;}
.wsd{word-spacing:15.888159pt;}
.ws15{word-spacing:15.898826pt;}
.ws9f{word-spacing:15.946397pt;}
.ws44{word-spacing:15.951624pt;}
.wsa{word-spacing:15.973493pt;}
.ws14{word-spacing:15.989493pt;}
.ws9{word-spacing:15.994827pt;}
.ws3e{word-spacing:15.998663pt;}
.ws16c{word-spacing:16.035250pt;}
.ws64{word-spacing:16.108422pt;}
.ws124{word-spacing:16.139782pt;}
.ws13{word-spacing:16.149495pt;}
.wsb{word-spacing:16.160162pt;}
.ws113{word-spacing:16.165915pt;}
.ws24{word-spacing:16.176368pt;}
.ws16{word-spacing:16.181495pt;}
.wsd4{word-spacing:16.186821pt;}
.ws18e{word-spacing:16.192048pt;}
.wsc{word-spacing:16.192162pt;}
.ws8{word-spacing:16.213495pt;}
.ws16e{word-spacing:16.218181pt;}
.ws4e{word-spacing:16.244314pt;}
.wseb{word-spacing:16.249541pt;}
.ws185{word-spacing:16.259994pt;}
.ws10e{word-spacing:16.265221pt;}
.wse{word-spacing:16.282829pt;}
.ws11{word-spacing:16.293496pt;}
.ws155{word-spacing:16.327940pt;}
.wse5{word-spacing:16.338393pt;}
.wsa1{word-spacing:16.359300pt;}
.ws19{word-spacing:16.384164pt;}
.ws179{word-spacing:16.437699pt;}
.ws50{word-spacing:16.474285pt;}
.ws157{word-spacing:16.510872pt;}
.wsae{word-spacing:16.516098pt;}
.ws7{word-spacing:16.533499pt;}
.ws49{word-spacing:16.563138pt;}
.ws1c{word-spacing:16.578817pt;}
.wsb9{word-spacing:16.594497pt;}
.ws40{word-spacing:16.641537pt;}
.ws133{word-spacing:16.714709pt;}
.ws154{word-spacing:16.735616pt;}
.wscb{word-spacing:16.746069pt;}
.ws6a{word-spacing:16.793109pt;}
.ws60{word-spacing:16.798335pt;}
.ws168{word-spacing:16.808788pt;}
.ws11f{word-spacing:16.834922pt;}
.ws167{word-spacing:16.892414pt;}
.ws7f{word-spacing:16.902868pt;}
.ws3f{word-spacing:16.991720pt;}
.ws4c{word-spacing:17.049213pt;}
.ws1e{word-spacing:17.054439pt;}
.wsdb{word-spacing:17.127612pt;}
.ws11e{word-spacing:17.174651pt;}
.ws126{word-spacing:17.216464pt;}
.ws123{word-spacing:17.247824pt;}
.ws172{word-spacing:17.315770pt;}
.ws120{word-spacing:17.341903pt;}
.ws170{word-spacing:17.368036pt;}
.wsa3{word-spacing:17.404622pt;}
.wsc1{word-spacing:17.420302pt;}
.wsba{word-spacing:17.483022pt;}
.ws25{word-spacing:17.503928pt;}
.ws5{word-spacing:17.576693pt;}
.ws187{word-spacing:17.618914pt;}
.ws6{word-spacing:17.705761pt;}
.wsbb{word-spacing:17.707766pt;}
.ws193{word-spacing:17.728672pt;}
.ws2c{word-spacing:17.754805pt;}
.ws4{word-spacing:17.764428pt;}
.ws171{word-spacing:17.770485pt;}
.ws1f{word-spacing:17.801845pt;}
.wsca{word-spacing:17.817525pt;}
.wsea{word-spacing:18.042269pt;}
.wse1{word-spacing:18.073629pt;}
.ws165{word-spacing:18.110215pt;}
.ws2a{word-spacing:18.125895pt;}
.wse3{word-spacing:18.209521pt;}
.ws68{word-spacing:18.225201pt;}
.ws183{word-spacing:18.308827pt;}
.ws18a{word-spacing:18.329733pt;}
.wse2{word-spacing:18.491758pt;}
.ws173{word-spacing:18.507438pt;}
.ws59{word-spacing:18.512664pt;}
.ws22{word-spacing:18.564931pt;}
.wscd{word-spacing:18.575384pt;}
.ws12d{word-spacing:18.585837pt;}
.ws9b{word-spacing:18.591064pt;}
.ws111{word-spacing:18.606743pt;}
.ws166{word-spacing:18.611970pt;}
.wsf1{word-spacing:18.659010pt;}
.ws182{word-spacing:18.674689pt;}
.ws174{word-spacing:18.679916pt;}
.ws4f{word-spacing:18.758315pt;}
.ws55{word-spacing:18.862848pt;}
.ws13d{word-spacing:19.061459pt;}
.ws10c{word-spacing:19.129405pt;}
.ws184{word-spacing:19.155538pt;}
.ws10f{word-spacing:19.181671pt;}
.ws92{word-spacing:19.202577pt;}
.ws14e{word-spacing:19.228710pt;}
.ws97{word-spacing:19.244390pt;}
.ws114{word-spacing:19.254844pt;}
.ws11b{word-spacing:19.260070pt;}
.ws98{word-spacing:19.312336pt;}
.wse8{word-spacing:19.364602pt;}
.wsbe{word-spacing:19.432548pt;}
.ws4a{word-spacing:19.490041pt;}
.ws198{word-spacing:19.521401pt;}
.ws84{word-spacing:19.537081pt;}
.ws5c{word-spacing:19.542307pt;}
.wsbd{word-spacing:19.568440pt;}
.ws131{word-spacing:19.599800pt;}
.ws156{word-spacing:19.678199pt;}
.ws17e{word-spacing:19.824544pt;}
.ws46{word-spacing:19.939530pt;}
.ws130{word-spacing:19.949983pt;}
.ws158{word-spacing:19.960436pt;}
.ws62{word-spacing:19.997023pt;}
.wsb5{word-spacing:20.049289pt;}
.ws45{word-spacing:20.080648pt;}
.ws61{word-spacing:20.122461pt;}
.ws188{word-spacing:20.148594pt;}
.wsc3{word-spacing:20.211314pt;}
.ws27{word-spacing:20.232220pt;}
.ws14c{word-spacing:20.300166pt;}
.ws15e{word-spacing:20.331526pt;}
.ws48{word-spacing:20.540590pt;}
.ws16a{word-spacing:20.551044pt;}
.ws93{word-spacing:20.571950pt;}
.ws192{word-spacing:20.645123pt;}
.wsd5{word-spacing:20.676482pt;}
.wsd9{word-spacing:20.707842pt;}
.wsc4{word-spacing:20.713069pt;}
.ws197{word-spacing:20.728748pt;}
.wsd6{word-spacing:20.749655pt;}
.wsb4{word-spacing:20.786241pt;}
.ws19a{word-spacing:20.833281pt;}
.ws163{word-spacing:20.848961pt;}
.wsa6{word-spacing:21.010986pt;}
.ws0{word-spacing:21.021867pt;}
.wsa5{word-spacing:21.084158pt;}
.wsa4{word-spacing:21.157331pt;}
.ws5b{word-spacing:21.282769pt;}
.ws128{word-spacing:21.303676pt;}
.ws81{word-spacing:21.335036pt;}
.ws12e{word-spacing:21.361169pt;}
.ws16f{word-spacing:21.376849pt;}
.ws91{word-spacing:21.481381pt;}
.ws162{word-spacing:21.502287pt;}
.ws5a{word-spacing:21.580686pt;}
.ws16b{word-spacing:21.585913pt;}
.ws4d{word-spacing:21.606820pt;}
.ws15a{word-spacing:21.774071pt;}
.ws51{word-spacing:21.883830pt;}
.wsbc{word-spacing:21.909963pt;}
.ws8d{word-spacing:21.951776pt;}
.ws7c{word-spacing:22.045855pt;}
.ws5e{word-spacing:22.092895pt;}
.ws78{word-spacing:22.119028pt;}
.ws17b{word-spacing:22.124254pt;}
.ws65{word-spacing:22.234013pt;}
.ws13c{word-spacing:22.307186pt;}
.ws109{word-spacing:22.474437pt;}
.ws90{word-spacing:22.516250pt;}
.ws139{word-spacing:22.563290pt;}
.ws8b{word-spacing:22.688728pt;}
.ws52{word-spacing:22.782808pt;}
.wsd2{word-spacing:22.991872pt;}
.ws8c{word-spacing:23.028458pt;}
.ws132{word-spacing:23.085951pt;}
.ws136{word-spacing:23.148670pt;}
.wsf2{word-spacing:23.221843pt;}
.wscc{word-spacing:23.295016pt;}
.wsc9{word-spacing:23.326375pt;}
.ws112{word-spacing:23.394321pt;}
.ws85{word-spacing:23.467494pt;}
.ws152{word-spacing:23.504080pt;}
.ws47{word-spacing:23.697465pt;}
.ws6e{word-spacing:23.739278pt;}
.wsc2{word-spacing:23.744504pt;}
.ws164{word-spacing:23.869943pt;}
.ws4b{word-spacing:23.969249pt;}
.ws176{word-spacing:24.110367pt;}
.ws5f{word-spacing:24.173087pt;}
.wse4{word-spacing:24.272392pt;}
.ws177{word-spacing:24.298525pt;}
.wsb8{word-spacing:24.324658pt;}
.ws7d{word-spacing:24.345565pt;}
.ws3c{word-spacing:24.382151pt;}
.ws122{word-spacing:24.413511pt;}
.wsb3{word-spacing:24.554629pt;}
.ws135{word-spacing:24.606896pt;}
.ws95{word-spacing:24.659162pt;}
.ws199{word-spacing:24.795054pt;}
.wsd3{word-spacing:24.962305pt;}
.wsce{word-spacing:24.977985pt;}
.ws6b{word-spacing:25.145237pt;}
.ws12b{word-spacing:25.187050pt;}
.wsa8{word-spacing:25.411794pt;}
.ws121{word-spacing:25.516326pt;}
.ws17a{word-spacing:25.568592pt;}
.ws53{word-spacing:25.579046pt;}
.ws194{word-spacing:25.631312pt;}
.wsdf{word-spacing:25.714938pt;}
.ws151{word-spacing:25.840376pt;}
.ws14d{word-spacing:25.934455pt;}
.ws134{word-spacing:26.190559pt;}
.ws43{word-spacing:26.363038pt;}
.ws16d{word-spacing:26.399624pt;}
.ws69{word-spacing:26.707994pt;}
.ws54{word-spacing:26.775940pt;}
.wsa0{word-spacing:26.791620pt;}
.ws41{word-spacing:26.822980pt;}
.ws138{word-spacing:26.870019pt;}
.ws129{word-spacing:27.026818pt;}
.wsed{word-spacing:27.032044pt;}
.ws8a{word-spacing:27.052951pt;}
.ws181{word-spacing:27.079084pt;}
.ws127{word-spacing:27.329961pt;}
.ws18d{word-spacing:27.335188pt;}
.ws9a{word-spacing:27.559932pt;}
.ws18f{word-spacing:27.826489pt;}
.ws26{word-spacing:28.458910pt;}
.ws96{word-spacing:28.861359pt;}
.ws125{word-spacing:28.918852pt;}
.ws13a{word-spacing:29.054744pt;}
.ws15b{word-spacing:29.373567pt;}
.wsb1{word-spacing:29.389247pt;}
.ws10d{word-spacing:30.361397pt;}
.ws11d{word-spacing:30.492062pt;}
.ws8f{word-spacing:30.627954pt;}
.wsb6{word-spacing:30.920644pt;}
.ws94{word-spacing:31.098349pt;}
.ws21{word-spacing:31.391040pt;}
.ws2d{word-spacing:31.589651pt;}
.ws13f{word-spacing:32.216845pt;}
.ws58{word-spacing:32.922437pt;}
.ws15d{word-spacing:32.953797pt;}
.ws169{word-spacing:33.743016pt;}
.wsaa{word-spacing:33.795282pt;}
.ws189{word-spacing:33.873681pt;}
.ws2b{word-spacing:33.962533pt;}
.ws82{word-spacing:34.694259pt;}
.ws86{word-spacing:35.305773pt;}
.ws28{word-spacing:35.509611pt;}
.ws29{word-spacing:35.614143pt;}
.ws6c{word-spacing:35.791848pt;}
.ws186{word-spacing:36.293603pt;}
.ws5d{word-spacing:36.816264pt;}
.ws116{word-spacing:37.333699pt;}
.ws115{word-spacing:37.574123pt;}
.ws3{word-spacing:38.182559pt;}
.ws1{word-spacing:38.284960pt;}
.ws2{word-spacing:38.438560pt;}
.wsa7{word-spacing:39.298906pt;}
.ws1c9{word-spacing:39.343475pt;}
.ws1d{word-spacing:42.079464pt;}
.ws159{word-spacing:45.654467pt;}
.wsf6{word-spacing:46.429286pt;}
.wsf4{word-spacing:46.467686pt;}
.ws1be{word-spacing:58.503220pt;}
._19{margin-left:-31.971194pt;}
._1b{margin-left:-26.775940pt;}
._18{margin-left:-24.110367pt;}
._45{margin-left:-5.393359pt;}
._14{margin-left:-4.494887pt;}
._17{margin-left:-3.345033pt;}
._16{margin-left:-2.074965pt;}
._c{margin-left:-1.108042pt;}
._5{width:1.098678pt;}
._1a{width:2.502459pt;}
._0{width:7.959467pt;}
._3c{width:9.113486pt;}
._8{width:10.010767pt;}
._7{width:11.290780pt;}
._f{width:12.551833pt;}
._21{width:13.939378pt;}
._20{width:14.864488pt;}
._6{width:16.229496pt;}
._4{width:17.205505pt;}
._a{width:18.326023pt;}
._b{width:19.594573pt;}
._e{width:20.592857pt;}
._11{width:21.585913pt;}
._13{width:23.043049pt;}
._1e{width:24.005835pt;}
._12{width:25.349075pt;}
._1c{width:26.501979pt;}
._10{width:27.418814pt;}
._15{width:28.333471pt;}
._1{width:29.224000pt;}
._1f{width:30.466057pt;}
._d{width:31.536296pt;}
._43{width:32.452042pt;}
._44{width:33.539178pt;}
._22{width:34.892871pt;}
._1d{width:36.413815pt;}
._46{width:37.621163pt;}
._3{width:39.449764pt;}
._9{width:43.480196pt;}
._25{width:46.860214pt;}
._2b{width:56.788623pt;}
._47{width:58.543219pt;}
._36{width:70.224189pt;}
._33{width:80.976054pt;}
._3f{width:85.246934pt;}
._39{width:87.880522pt;}
._3b{width:90.665533pt;}
._3d{width:91.989031pt;}
._29{width:109.434365pt;}
._2d{width:114.908974pt;}
._40{width:124.636309pt;}
._34{width:129.056520pt;}
._2e{width:138.234549pt;}
._3e{width:140.290513pt;}
._26{width:142.935813pt;}
._37{width:143.831802pt;}
._31{width:146.477102pt;}
._2a{width:149.045604pt;}
._2f{width:161.273717pt;}
._27{width:164.815006pt;}
._24{width:167.460307pt;}
._3a{width:170.574934pt;}
._35{width:184.782757pt;}
._42{width:197.335133pt;}
._28{width:200.108432pt;}
._41{width:204.323846pt;}
._30{width:218.105007pt;}
._32{width:228.566743pt;}
._2c{width:248.965421pt;}
._38{width:405.797594pt;}
._2{width:1424.224533pt;}
._23{width:1514.515468pt;}
.fs8{font-size:26.662400pt;}
.fs11{font-size:33.600000pt;}
.fsc{font-size:34.839467pt;}
.fs10{font-size:36.266667pt;}
.fs9{font-size:37.332800pt;}
.fse{font-size:38.933867pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsf{font-size:47.421333pt;}
.fsd{font-size:48.000000pt;}
.fsb{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y231{bottom:74.815027pt;}
.y108{bottom:81.259629pt;}
.y75{bottom:81.259867pt;}
.y73{bottom:81.260270pt;}
.y191{bottom:81.260413pt;}
.y1d6{bottom:81.260653pt;}
.yb0{bottom:81.262256pt;}
.y15c{bottom:81.284333pt;}
.y37{bottom:81.334971pt;}
.y10e{bottom:81.866923pt;}
.y114{bottom:81.869536pt;}
.y21d{bottom:82.167362pt;}
.y230{bottom:84.148267pt;}
.y74{bottom:87.080267pt;}
.y13d{bottom:89.574133pt;}
.y36{bottom:91.993486pt;}
.y107{bottom:92.598533pt;}
.y190{bottom:93.279253pt;}
.y1d5{bottom:93.279493pt;}
.y21c{bottom:94.186201pt;}
.y72{bottom:97.285067pt;}
.y70{bottom:97.285656pt;}
.yaf{bottom:97.287053pt;}
.y15b{bottom:97.309129pt;}
.y10d{bottom:97.891719pt;}
.y113{bottom:97.894333pt;}
.y35{bottom:102.652000pt;}
.y13c{bottom:102.953166pt;}
.y71{bottom:103.105467pt;}
.y18f{bottom:105.298093pt;}
.y1d4{bottom:105.298333pt;}
.y21b{bottom:106.205041pt;}
.y106{bottom:110.136484pt;}
.y22f{bottom:113.066800pt;}
.y6f{bottom:113.234667pt;}
.y6d{bottom:113.235070pt;}
.yae{bottom:113.236063pt;}
.y15a{bottom:113.333926pt;}
.y10c{bottom:113.840730pt;}
.y112{bottom:113.843343pt;}
.y13b{bottom:116.257533pt;}
.y18e{bottom:117.240933pt;}
.y1d3{bottom:117.241174pt;}
.y6e{bottom:119.055067pt;}
.y21a{bottom:119.287128pt;}
.y34{bottom:125.253654pt;}
.y105{bottom:127.673331pt;}
.y6c{bottom:129.259867pt;}
.y1d2{bottom:129.260013pt;}
.yad{bottom:129.260860pt;}
.y6a{bottom:129.261667pt;}
.y159{bottom:129.282936pt;}
.y22e{bottom:129.613333pt;}
.y13a{bottom:129.636566pt;}
.y10b{bottom:129.865526pt;}
.y111{bottom:129.868140pt;}
.y219{bottom:131.305968pt;}
.y2f{bottom:132.970536pt;}
.y6b{bottom:135.080267pt;}
.y33{bottom:137.272494pt;}
.y1d1{bottom:141.278853pt;}
.y139{bottom:142.940933pt;}
.y218{bottom:143.248809pt;}
.y18d{bottom:143.250982pt;}
.y104{bottom:145.210179pt;}
.yac{bottom:145.285656pt;}
.y69{bottom:145.286463pt;}
.y158{bottom:145.307733pt;}
.y10a{bottom:145.890323pt;}
.y110{bottom:145.892936pt;}
.y22d{bottom:146.159600pt;}
.y2e{bottom:148.995332pt;}
.y32{bottom:149.291333pt;}
.y1d0{bottom:153.297693pt;}
.y31{bottom:153.751200pt;}
.y217{bottom:155.267648pt;}
.y138{bottom:156.245300pt;}
.y18c{bottom:159.275779pt;}
.yab{bottom:161.234667pt;}
.y68{bottom:161.235474pt;}
.ya9{bottom:161.247505pt;}
.y30{bottom:161.310267pt;}
.y157{bottom:161.332529pt;}
.y109{bottom:161.839333pt;}
.y10f{bottom:161.841947pt;}
.y22c{bottom:162.706133pt;}
.y103{bottom:162.747026pt;}
.y2d{bottom:165.020129pt;}
.y1cf{bottom:165.241534pt;}
.yaa{bottom:167.055067pt;}
.y216{bottom:167.664483pt;}
.y137{bottom:169.624333pt;}
.y18b{bottom:175.300575pt;}
.y67{bottom:177.260270pt;}
.y1ce{bottom:177.260373pt;}
.ya8{bottom:177.272301pt;}
.y156{bottom:177.281540pt;}
.y22b{bottom:179.252667pt;}
.y215{bottom:179.683323pt;}
.y102{bottom:180.283874pt;}
.y2c{bottom:180.969140pt;}
.y136{bottom:182.928700pt;}
.y1cd{bottom:189.279213pt;}
.y18a{bottom:191.249586pt;}
.y214{bottom:191.702163pt;}
.y66{bottom:193.285067pt;}
.ya7{bottom:193.297098pt;}
.y155{bottom:193.306336pt;}
.y22a{bottom:195.799333pt;}
.y135{bottom:196.233067pt;}
.y24{bottom:196.991323pt;}
.y2b{bottom:196.993936pt;}
.y101{bottom:197.820721pt;}
.y1cc{bottom:201.298053pt;}
.y213{bottom:203.645003pt;}
.y189{bottom:207.274382pt;}
.y65{bottom:209.234667pt;}
.ya6{bottom:209.246108pt;}
.y154{bottom:209.331133pt;}
.y116{bottom:211.199500pt;}
.y23{bottom:213.016119pt;}
.y2a{bottom:213.018733pt;}
.y1cb{bottom:213.240894pt;}
.y100{bottom:215.357569pt;}
.y212{bottom:215.663843pt;}
.y188{bottom:223.299179pt;}
.y229{bottom:223.701200pt;}
.y115{bottom:224.503867pt;}
.y1ca{bottom:225.259733pt;}
.ya5{bottom:225.270905pt;}
.y153{bottom:225.280143pt;}
.y211{bottom:228.060678pt;}
.y22{bottom:228.965130pt;}
.y29{bottom:228.967743pt;}
.yff{bottom:232.894416pt;}
.y1c9{bottom:237.283053pt;}
.y228{bottom:237.927600pt;}
.y187{bottom:239.248189pt;}
.y210{bottom:240.079518pt;}
.y64{bottom:241.291916pt;}
.ya4{bottom:241.295701pt;}
.y152{bottom:241.304940pt;}
.yfe{bottom:244.837733pt;}
.y21{bottom:244.989926pt;}
.y28{bottom:244.992540pt;}
.y1c8{bottom:249.301893pt;}
.y20f{bottom:252.098357pt;}
.y186{bottom:255.272986pt;}
.y63{bottom:257.240926pt;}
.ya3{bottom:257.244712pt;}
.y151{bottom:257.329736pt;}
.y20{bottom:261.014723pt;}
.y27{bottom:261.017336pt;}
.y1c7{bottom:261.244734pt;}
.yfd{bottom:262.374800pt;}
.y20e{bottom:264.041198pt;}
.y185{bottom:271.297782pt;}
.y1c6{bottom:273.263573pt;}
.y62{bottom:273.265723pt;}
.ya2{bottom:273.269509pt;}
.y150{bottom:273.278747pt;}
.y20d{bottom:276.060038pt;}
.y1f{bottom:276.963733pt;}
.y26{bottom:276.966347pt;}
.y1c5{bottom:285.282413pt;}
.y184{bottom:287.246793pt;}
.y20c{bottom:288.456873pt;}
.y61{bottom:289.290519pt;}
.ya1{bottom:289.294305pt;}
.y14f{bottom:289.303543pt;}
.yfc{bottom:292.386067pt;}
.yd5{bottom:292.400487pt;}
.y1e{bottom:292.988933pt;}
.y25{bottom:292.991143pt;}
.y1c4{bottom:297.301253pt;}
.y20b{bottom:300.475712pt;}
.y183{bottom:303.271589pt;}
.y60{bottom:305.239530pt;}
.ya0{bottom:305.243316pt;}
.y14e{bottom:305.252554pt;}
.yfb{bottom:308.410863pt;}
.yd4{bottom:308.425284pt;}
.y1c3{bottom:309.244094pt;}
.y20a{bottom:312.494552pt;}
.y182{bottom:319.296386pt;}
.y1c2{bottom:321.262933pt;}
.y5f{bottom:321.264326pt;}
.y9f{bottom:321.268112pt;}
.y14d{bottom:321.277350pt;}
.yfa{bottom:324.435660pt;}
.y209{bottom:324.437393pt;}
.yd3{bottom:324.450080pt;}
.y1c1{bottom:333.281773pt;}
.y1d{bottom:333.576800pt;}
.y181{bottom:335.245396pt;}
.y208{bottom:336.456233pt;}
.y5e{bottom:337.289123pt;}
.y9e{bottom:337.292909pt;}
.y14c{bottom:337.302147pt;}
.yf9{bottom:340.384670pt;}
.yd2{bottom:340.399091pt;}
.y1c0{bottom:345.300613pt;}
.y207{bottom:348.853067pt;}
.y180{bottom:351.270193pt;}
.y5d{bottom:353.238133pt;}
.y9d{bottom:353.241919pt;}
.y14b{bottom:353.251157pt;}
.y1c{bottom:356.254360pt;}
.yf8{bottom:356.409467pt;}
.yd1{bottom:356.423887pt;}
.y1bf{bottom:357.243454pt;}
.y206{bottom:360.871907pt;}
.y17f{bottom:367.294989pt;}
.y1be{bottom:369.262293pt;}
.y5c{bottom:369.262930pt;}
.y9c{bottom:369.266716pt;}
.y14a{bottom:369.275954pt;}
.y1b{bottom:372.279854pt;}
.yf7{bottom:372.434533pt;}
.yd0{bottom:372.448684pt;}
.y205{bottom:372.890747pt;}
.y1bd{bottom:381.281133pt;}
.y17e{bottom:383.244000pt;}
.y204{bottom:384.833587pt;}
.y5b{bottom:385.287726pt;}
.y9b{bottom:385.291512pt;}
.y149{bottom:385.300750pt;}
.y1a{bottom:388.229346pt;}
.ycf{bottom:388.397694pt;}
.y1bc{bottom:393.299973pt;}
.y203{bottom:396.852427pt;}
.y17d{bottom:399.269200pt;}
.y5a{bottom:401.236737pt;}
.y9a{bottom:401.240523pt;}
.y148{bottom:401.249761pt;}
.y19{bottom:404.254840pt;}
.yce{bottom:404.422491pt;}
.y1bb{bottom:405.242814pt;}
.y202{bottom:408.871267pt;}
.y59{bottom:417.261533pt;}
.y1ba{bottom:417.261653pt;}
.y99{bottom:417.265319pt;}
.y147{bottom:417.274557pt;}
.yf6{bottom:417.289106pt;}
.y18{bottom:420.280334pt;}
.ycd{bottom:420.447287pt;}
.y201{bottom:420.890107pt;}
.y1b9{bottom:429.280493pt;}
.y58{bottom:433.286330pt;}
.y200{bottom:433.286941pt;}
.y98{bottom:433.290116pt;}
.y146{bottom:433.299354pt;}
.yf5{bottom:433.313903pt;}
.y17c{bottom:433.320260pt;}
.ycc{bottom:436.396298pt;}
.y17{bottom:440.236533pt;}
.y1b8{bottom:441.299333pt;}
.y1ff{bottom:445.305781pt;}
.y57{bottom:449.235340pt;}
.y97{bottom:449.239126pt;}
.y12e{bottom:449.242323pt;}
.y145{bottom:449.248365pt;}
.yf4{bottom:449.262913pt;}
.y17b{bottom:449.269271pt;}
.ycb{bottom:452.421094pt;}
.y1b7{bottom:453.242174pt;}
.y16{bottom:456.262027pt;}
.y1fe{bottom:457.248622pt;}
.y56{bottom:465.260137pt;}
.y1b6{bottom:465.261013pt;}
.y96{bottom:465.263923pt;}
.y12d{bottom:465.267119pt;}
.y144{bottom:465.273161pt;}
.yf3{bottom:465.287710pt;}
.y17a{bottom:465.294067pt;}
.yca{bottom:468.445891pt;}
.y1fd{bottom:469.645457pt;}
.y15{bottom:472.287520pt;}
.y1b5{bottom:477.279853pt;}
.y55{bottom:481.284933pt;}
.y95{bottom:481.288719pt;}
.y12c{bottom:481.291916pt;}
.y143{bottom:481.297957pt;}
.yf2{bottom:481.312506pt;}
.y179{bottom:481.318864pt;}
.y1fc{bottom:481.664296pt;}
.yc9{bottom:484.394901pt;}
.y14{bottom:488.237013pt;}
.y1b4{bottom:489.298693pt;}
.y1fb{bottom:493.683136pt;}
.y54{bottom:497.234533pt;}
.y94{bottom:497.237730pt;}
.y12b{bottom:497.240926pt;}
.y142{bottom:497.246968pt;}
.yf1{bottom:497.261517pt;}
.y178{bottom:497.267875pt;}
.yc8{bottom:500.419698pt;}
.y1b3{bottom:501.241534pt;}
.y13{bottom:504.262507pt;}
.y1fa{bottom:505.701976pt;}
.y53{bottom:513.259733pt;}
.y1b2{bottom:513.260373pt;}
.y93{bottom:513.262526pt;}
.y12a{bottom:513.265723pt;}
.y141{bottom:513.271765pt;}
.yf0{bottom:513.286313pt;}
.y177{bottom:513.292671pt;}
.yc7{bottom:516.444494pt;}
.y1f9{bottom:518.098811pt;}
.y12{bottom:520.288000pt;}
.y1b1{bottom:525.279213pt;}
.y92{bottom:529.287323pt;}
.y129{bottom:529.290519pt;}
.y140{bottom:529.296561pt;}
.yef{bottom:529.311110pt;}
.y176{bottom:529.317467pt;}
.y1f8{bottom:530.041651pt;}
.yc6{bottom:532.393505pt;}
.y11{bottom:536.237493pt;}
.y1b0{bottom:537.298053pt;}
.y1f7{bottom:542.060491pt;}
.y91{bottom:545.236333pt;}
.y128{bottom:545.239530pt;}
.y52{bottom:545.245572pt;}
.yee{bottom:545.260120pt;}
.y175{bottom:545.266478pt;}
.yc5{bottom:548.418301pt;}
.y1af{bottom:549.240894pt;}
.y10{bottom:552.262987pt;}
.y1f6{bottom:554.079331pt;}
.y1ae{bottom:561.259733pt;}
.y90{bottom:561.261130pt;}
.y127{bottom:561.264326pt;}
.y51{bottom:561.270368pt;}
.yed{bottom:561.284917pt;}
.y174{bottom:561.291275pt;}
.yc4{bottom:564.443098pt;}
.y1f5{bottom:566.476166pt;}
.yf{bottom:572.295187pt;}
.y1ad{bottom:573.279449pt;}
.y8f{bottom:577.285926pt;}
.y126{bottom:577.289123pt;}
.y50{bottom:577.295165pt;}
.yec{bottom:577.309713pt;}
.y173{bottom:577.316071pt;}
.y1f4{bottom:578.495005pt;}
.yc3{bottom:580.392109pt;}
.ye{bottom:588.244680pt;}
.y1f3{bottom:590.437846pt;}
.y8e{bottom:593.234937pt;}
.y125{bottom:593.238133pt;}
.y4f{bottom:593.244175pt;}
.yeb{bottom:593.258724pt;}
.y172{bottom:593.265082pt;}
.yc2{bottom:596.416905pt;}
.y1f2{bottom:602.456686pt;}
.y1ac{bottom:603.969040pt;}
.yd{bottom:608.276880pt;}
.y8d{bottom:609.259733pt;}
.y124{bottom:609.262930pt;}
.y4e{bottom:609.268972pt;}
.yea{bottom:609.283520pt;}
.y171{bottom:609.289878pt;}
.yc1{bottom:612.441701pt;}
.y1f1{bottom:614.475526pt;}
.y1ab{bottom:615.911881pt;}
.yc{bottom:624.302374pt;}
.y8c{bottom:625.285240pt;}
.y123{bottom:625.287726pt;}
.y4d{bottom:625.293768pt;}
.ye9{bottom:625.308317pt;}
.y170{bottom:625.314675pt;}
.y1f0{bottom:626.872360pt;}
.yc0{bottom:628.390712pt;}
.y1ef{bottom:638.893218pt;}
.y1aa{bottom:639.949560pt;}
.yb{bottom:640.251867pt;}
.y8b{bottom:641.234533pt;}
.y122{bottom:641.236737pt;}
.y4c{bottom:641.242779pt;}
.ye8{bottom:641.257327pt;}
.y16f{bottom:641.263685pt;}
.ybf{bottom:644.415509pt;}
.y1ee{bottom:650.836059pt;}
.y1a7{bottom:651.967946pt;}
.y1a9{bottom:651.968400pt;}
.y1a8{bottom:656.352667pt;}
.y121{bottom:657.261533pt;}
.y4b{bottom:657.267575pt;}
.ye7{bottom:657.282124pt;}
.y16e{bottom:657.288482pt;}
.ybe{bottom:660.440305pt;}
.y1ed{bottom:663.232894pt;}
.y1a6{bottom:663.911787pt;}
.ya{bottom:664.289600pt;}
.y120{bottom:673.286330pt;}
.y8a{bottom:673.291379pt;}
.y4a{bottom:673.292372pt;}
.ye6{bottom:673.306920pt;}
.y16d{bottom:673.313278pt;}
.y1ec{bottom:675.251733pt;}
.y1a5{bottom:675.930627pt;}
.ybd{bottom:676.389316pt;}
.y1eb{bottom:687.270573pt;}
.y1a4{bottom:687.949467pt;}
.y1a2{bottom:687.949560pt;}
.y11f{bottom:689.235340pt;}
.y89{bottom:689.240389pt;}
.y49{bottom:689.241382pt;}
.ye5{bottom:689.255931pt;}
.y16c{bottom:689.262289pt;}
.y1a3{bottom:692.409333pt;}
.ybc{bottom:692.414112pt;}
.y1ea{bottom:699.289413pt;}
.y1a1{bottom:699.968400pt;}
.y1a0{bottom:704.352667pt;}
.y11e{bottom:705.260137pt;}
.y88{bottom:705.265186pt;}
.y48{bottom:705.266179pt;}
.ye4{bottom:705.280727pt;}
.y16b{bottom:705.287085pt;}
.ybb{bottom:708.363123pt;}
.y1e9{bottom:711.232254pt;}
.y19f{bottom:711.913298pt;}
.y8{bottom:715.615600pt;}
.y11d{bottom:721.284933pt;}
.y87{bottom:721.289982pt;}
.y47{bottom:721.290975pt;}
.ye3{bottom:721.305524pt;}
.y16a{bottom:721.311882pt;}
.y9{bottom:722.116400pt;}
.y1e8{bottom:723.251093pt;}
.yba{bottom:724.387919pt;}
.y6{bottom:734.286400pt;}
.y1e7{bottom:735.647928pt;}
.y19e{bottom:735.950977pt;}
.y11c{bottom:737.234386pt;}
.y132{bottom:737.234400pt;}
.y86{bottom:737.238993pt;}
.y46{bottom:737.239986pt;}
.ye2{bottom:737.254535pt;}
.y169{bottom:737.260892pt;}
.yb9{bottom:740.412716pt;}
.y7{bottom:740.787333pt;}
.y1e6{bottom:747.666768pt;}
.y19d{bottom:747.969817pt;}
.y11b{bottom:753.259733pt;}
.y85{bottom:753.263789pt;}
.y45{bottom:753.264782pt;}
.ye1{bottom:753.279331pt;}
.y168{bottom:753.285689pt;}
.yb8{bottom:756.361726pt;}
.y1e5{bottom:759.685608pt;}
.y19c{bottom:759.912658pt;}
.y5{bottom:766.263700pt;}
.y84{bottom:769.288586pt;}
.y44{bottom:769.289579pt;}
.y131{bottom:769.292683pt;}
.ye0{bottom:769.304128pt;}
.y167{bottom:769.310485pt;}
.y1e4{bottom:771.704447pt;}
.y19b{bottom:771.931497pt;}
.yb7{bottom:772.386523pt;}
.y19a{bottom:783.950337pt;}
.y1e3{bottom:784.101282pt;}
.y11a{bottom:785.234937pt;}
.y83{bottom:785.237596pt;}
.y43{bottom:785.238589pt;}
.y130{bottom:785.241694pt;}
.ydf{bottom:785.253138pt;}
.y166{bottom:785.259496pt;}
.y227{bottom:786.217405pt;}
.yb6{bottom:788.411319pt;}
.y1e2{bottom:796.045123pt;}
.y226{bottom:797.555921pt;}
.y4{bottom:800.958245pt;}
.y119{bottom:801.259733pt;}
.y82{bottom:801.262393pt;}
.y42{bottom:801.263386pt;}
.y12f{bottom:801.266491pt;}
.yde{bottom:801.277935pt;}
.y165{bottom:801.284292pt;}
.yb5{bottom:804.360330pt;}
.y1e1{bottom:808.063963pt;}
.y225{bottom:808.894436pt;}
.y199{bottom:814.564929pt;}
.y81{bottom:817.287189pt;}
.y41{bottom:817.288182pt;}
.ydd{bottom:817.302731pt;}
.y164{bottom:817.309089pt;}
.y1e0{bottom:820.082802pt;}
.y224{bottom:820.232951pt;}
.yb4{bottom:820.385126pt;}
.y198{bottom:826.583769pt;}
.y223{bottom:831.571467pt;}
.y1df{bottom:832.101642pt;}
.y80{bottom:833.236200pt;}
.y40{bottom:833.237193pt;}
.ydc{bottom:833.251742pt;}
.y163{bottom:833.258099pt;}
.y3{bottom:835.579189pt;}
.yb3{bottom:836.409923pt;}
.y197{bottom:838.602608pt;}
.y134{bottom:844.345900pt;}
.y1de{bottom:844.498477pt;}
.y7f{bottom:849.260996pt;}
.y3f{bottom:849.261989pt;}
.ydb{bottom:849.276538pt;}
.y162{bottom:849.282896pt;}
.y196{bottom:850.621448pt;}
.yb2{bottom:852.358933pt;}
.y1dd{bottom:856.441317pt;}
.y222{bottom:857.273359pt;}
.y133{bottom:857.650267pt;}
.y195{bottom:862.564289pt;}
.y7e{bottom:865.285793pt;}
.y3e{bottom:865.286786pt;}
.yda{bottom:865.301335pt;}
.y161{bottom:865.307692pt;}
.yb1{bottom:868.384000pt;}
.y1dc{bottom:868.460157pt;}
.y221{bottom:869.292199pt;}
.y2{bottom:870.273733pt;}
.y194{bottom:874.583129pt;}
.y1db{bottom:880.856992pt;}
.y7d{bottom:881.234804pt;}
.y220{bottom:881.235040pt;}
.y3d{bottom:881.235796pt;}
.yd9{bottom:881.250345pt;}
.y160{bottom:881.256703pt;}
.y193{bottom:886.601968pt;}
.y1da{bottom:892.875832pt;}
.y21f{bottom:893.253880pt;}
.y7c{bottom:897.259600pt;}
.y7a{bottom:897.260004pt;}
.y3c{bottom:897.260593pt;}
.yd8{bottom:897.275142pt;}
.y15f{bottom:897.281499pt;}
.y7b{bottom:903.080133pt;}
.y1d9{bottom:904.894671pt;}
.y21e{bottom:905.272719pt;}
.y79{bottom:913.284800pt;}
.y3b{bottom:913.285389pt;}
.yd7{bottom:913.299938pt;}
.y15e{bottom:913.306296pt;}
.y1d8{bottom:917.291506pt;}
.y192{bottom:917.291559pt;}
.y78{bottom:919.105333pt;}
.y1{bottom:920.919467pt;}
.y76{bottom:929.230840pt;}
.y1d7{bottom:929.234347pt;}
.y3a{bottom:929.234400pt;}
.yd6{bottom:929.248949pt;}
.y15d{bottom:929.255306pt;}
.y77{bottom:935.054800pt;}
.y13f{bottom:991.062598pt;}
.y118{bottom:991.062818pt;}
.y39{bottom:991.067100pt;}
.y13e{bottom:1004.366965pt;}
.y117{bottom:1004.367185pt;}
.y38{bottom:1004.371467pt;}
.ha{height:19.223590pt;}
.he{height:19.440422pt;}
.h14{height:25.200000pt;}
.hf{height:25.223774pt;}
.hb{height:26.916949pt;}
.h13{height:27.635200pt;}
.h11{height:28.071318pt;}
.h5{height:28.196676pt;}
.h9{height:28.839615pt;}
.hc{height:30.762282pt;}
.h10{height:34.608000pt;}
.hd{height:35.377451pt;}
.h12{height:36.135056pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x11{left:79.143333pt;}
.x1{left:80.957467pt;}
.x42{left:82.922800pt;}
.xf{left:84.283467pt;}
.x13{left:86.248905pt;}
.x40{left:95.621952pt;}
.x18{left:112.478667pt;}
.x3f{left:114.217333pt;}
.x19{left:115.124400pt;}
.x3d{left:117.543076pt;}
.x21{left:152.088133pt;}
.x14{left:153.297600pt;}
.x22{left:154.733867pt;}
.x15{left:155.943333pt;}
.xe{left:171.741733pt;}
.x3{left:173.555867pt;}
.x4{left:182.551200pt;}
.x23{left:200.466133pt;}
.x24{left:203.111733pt;}
.x1e{left:226.544800pt;}
.x1f{left:229.190533pt;}
.x12{left:240.604667pt;}
.x36{left:257.006932pt;}
.x5{left:272.050400pt;}
.x6{left:277.039333pt;}
.x20{left:280.138533pt;}
.x1a{left:289.738533pt;}
.x1b{left:292.384133pt;}
.x37{left:321.787989pt;}
.x3e{left:325.266133pt;}
.x1c{left:335.546400pt;}
.x1d{left:338.267600pt;}
.x7{left:371.754267pt;}
.x8{left:376.743200pt;}
.x16{left:381.883333pt;}
.x17{left:384.529067pt;}
.x38{left:389.138614pt;}
.x10{left:406.297959pt;}
.x33{left:416.958745pt;}
.x25{left:417.864400pt;}
.x26{left:420.510133pt;}
.x41{left:426.330361pt;}
.x44{left:429.528133pt;}
.x43{left:430.473467pt;}
.x27{left:456.944800pt;}
.x28{left:459.666000pt;}
.x39{left:464.653403pt;}
.x9{left:476.976267pt;}
.xa{left:482.040800pt;}
.x3a{left:528.451006pt;}
.x31{left:548.636133pt;}
.x32{left:551.357333pt;}
.xb{left:571.766800pt;}
.xc{left:576.831333pt;}
.x3b{left:582.422598pt;}
.x2d{left:619.464400pt;}
.x2e{left:622.110133pt;}
.x34{left:636.850267pt;}
.x35{left:647.130533pt;}
.x2f{left:658.695867pt;}
.x30{left:661.417200pt;}
.x29{left:666.784133pt;}
.x2a{left:669.429867pt;}
.xd{left:670.941600pt;}
.x3c{left:674.793710pt;}
.x2b{left:710.702267pt;}
.x2c{left:713.347867pt;}
}




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