
    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_03f6fdf475fff59f8ca4fe38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_ea645de971d0699e6f102bc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_57a5b186d9355000fb8268fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2464c5310b500aea39c83b81.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.281250;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_4944855169e81157463f6b73.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b02026821c1b38f9014f2cbb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_95784b55a389cec55c68e61f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765625;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_ea9323e0f9c6d848d9551d03.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_170c9ca293bf9447b60cacae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987793;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v17{vertical-align:-137.520000px;}
.v19{vertical-align:-126.720000px;}
.v18{vertical-align:-100.835280px;}
.v11{vertical-align:-80.640000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:7.164600px;}
.v9{vertical-align:11.520000px;}
.v8{vertical-align:23.061000px;}
.v7{vertical-align:25.210800px;}
.v1{vertical-align:29.441280px;}
.v15{vertical-align:32.400000px;}
.va{vertical-align:34.581000px;}
.vd{vertical-align:38.903040px;}
.vc{vertical-align:40.349400px;}
.v6{vertical-align:46.800000px;}
.vb{vertical-align:51.840000px;}
.ve{vertical-align:63.360000px;}
.v16{vertical-align:64.800000px;}
.vf{vertical-align:77.795280px;}
.v5{vertical-align:91.881000px;}
.v3{vertical-align:93.778200px;}
.v4{vertical-align:101.509200px;}
.v14{vertical-align:113.760000px;}
.v12{vertical-align:129.600000px;}
.v2{vertical-align:144.047520px;}
.v10{vertical-align:172.800000px;}
.ls8b{letter-spacing:-12.985920px;}
.ls9b{letter-spacing:-11.232000px;}
.ls2a{letter-spacing:-6.132240px;}
.ls53{letter-spacing:-5.652635px;}
.ls6b{letter-spacing:-5.112000px;}
.ls54{letter-spacing:-3.255840px;}
.ls9a{letter-spacing:-2.872800px;}
.ls1a{letter-spacing:-2.376000px;}
.ls2e{letter-spacing:-1.532160px;}
.ls1c{letter-spacing:-1.296000px;}
.ls29{letter-spacing:-0.920160px;}
.ls30{letter-spacing:-0.766080px;}
.ls1b{letter-spacing:-0.756000px;}
.ls6c{letter-spacing:-0.673920px;}
.ls19{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls3c{letter-spacing:-0.504000px;}
.ls26{letter-spacing:-0.408960px;}
.ls6a{letter-spacing:-0.397440px;}
.ls0{letter-spacing:-0.384480px;}
.ls68{letter-spacing:-0.358560px;}
.ls37{letter-spacing:-0.336960px;}
.ls44{letter-spacing:-0.335520px;}
.ls42{letter-spacing:-0.331200px;}
.ls8{letter-spacing:-0.324000px;}
.ls73{letter-spacing:-0.303579px;}
.ls3e{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.287280px;}
.ls40{letter-spacing:-0.264960px;}
.ls70{letter-spacing:-0.253488px;}
.ls39{letter-spacing:-0.252720px;}
.ls17{letter-spacing:-0.240480px;}
.ls66{letter-spacing:-0.227684px;}
.ls3b{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.198720px;}
.ls2f{letter-spacing:-0.191520px;}
.ls16{letter-spacing:-0.185760px;}
.ls7{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.168480px;}
.ls87{letter-spacing:-0.167760px;}
.ls90{letter-spacing:-0.144000px;}
.ls71{letter-spacing:-0.126744px;}
.ls18{letter-spacing:-0.120240px;}
.ls48{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.102240px;}
.ls2d{letter-spacing:-0.095760px;}
.lsf{letter-spacing:-0.084240px;}
.ls3d{letter-spacing:-0.072000px;}
.ls67{letter-spacing:-0.059760px;}
.ls1{letter-spacing:0.000000px;}
.ls85{letter-spacing:0.025200px;}
.ls3a{letter-spacing:0.072000px;}
.ls35{letter-spacing:0.084240px;}
.lsb{letter-spacing:0.095760px;}
.ls27{letter-spacing:0.102240px;}
.lse{letter-spacing:0.105840px;}
.ls6{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.120240px;}
.lsd{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.147600px;}
.ls74{letter-spacing:0.151789px;}
.ls34{letter-spacing:0.168480px;}
.ls2c{letter-spacing:0.191520px;}
.ls45{letter-spacing:0.201880px;}
.ls9{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.227684px;}
.ls10{letter-spacing:0.240480px;}
.ls36{letter-spacing:0.252720px;}
.ls2b{letter-spacing:0.253488px;}
.ls3f{letter-spacing:0.264960px;}
.ls4{letter-spacing:0.287280px;}
.ls24{letter-spacing:0.288000px;}
.ls75{letter-spacing:0.303579px;}
.ls1e{letter-spacing:0.306720px;}
.lsa{letter-spacing:0.324000px;}
.ls69{letter-spacing:0.331200px;}
.ls60{letter-spacing:0.336960px;}
.ls4c{letter-spacing:0.341526px;}
.ls22{letter-spacing:0.360720px;}
.ls23{letter-spacing:0.380232px;}
.ls31{letter-spacing:0.383040px;}
.ls2{letter-spacing:0.384480px;}
.ls86{letter-spacing:0.480960px;}
.ls20{letter-spacing:0.864000px;}
.ls89{letter-spacing:0.972000px;}
.ls46{letter-spacing:1.080000px;}
.ls84{letter-spacing:1.404000px;}
.ls92{letter-spacing:1.769040px;}
.ls8d{letter-spacing:3.132000px;}
.ls4b{letter-spacing:6.375152px;}
.ls63{letter-spacing:10.614240px;}
.ls8e{letter-spacing:32.749920px;}
.ls8a{letter-spacing:43.200000px;}
.ls5a{letter-spacing:48.108120px;}
.ls14{letter-spacing:49.680000px;}
.ls13{letter-spacing:49.788000px;}
.ls91{letter-spacing:50.436000px;}
.ls94{letter-spacing:51.408000px;}
.ls98{letter-spacing:57.451680px;}
.ls99{letter-spacing:57.456000px;}
.ls43{letter-spacing:59.326560px;}
.ls8c{letter-spacing:69.012000px;}
.ls88{letter-spacing:70.200000px;}
.ls8f{letter-spacing:75.600000px;}
.ls96{letter-spacing:77.585040px;}
.ls97{letter-spacing:77.589360px;}
.ls93{letter-spacing:78.511680px;}
.ls95{letter-spacing:78.516000px;}
.ls4f{letter-spacing:78.714720px;}
.ls58{letter-spacing:89.680920px;}
.ls59{letter-spacing:93.744000px;}
.ls62{letter-spacing:93.805200px;}
.ls5e{letter-spacing:93.913200px;}
.ls15{letter-spacing:109.188000px;}
.ls76{letter-spacing:114.480000px;}
.ls4e{letter-spacing:117.689040px;}
.ls6d{letter-spacing:135.510480px;}
.ls6f{letter-spacing:171.342000px;}
.ls64{letter-spacing:174.978960px;}
.ls7d{letter-spacing:179.280600px;}
.ls1f{letter-spacing:183.015360px;}
.ls7e{letter-spacing:186.732000px;}
.ls77{letter-spacing:194.400000px;}
.ls49{letter-spacing:207.252000px;}
.ls51{letter-spacing:224.940240px;}
.ls4a{letter-spacing:230.580000px;}
.ls52{letter-spacing:233.654400px;}
.ls79{letter-spacing:246.960000px;}
.ls55{letter-spacing:258.436800px;}
.ls7a{letter-spacing:267.828600px;}
.ls72{letter-spacing:287.856000px;}
.ls81{letter-spacing:288.360000px;}
.ls7c{letter-spacing:289.008000px;}
.ls5c{letter-spacing:293.328000px;}
.ls5d{letter-spacing:309.744000px;}
.ls5b{letter-spacing:321.300000px;}
.ls82{letter-spacing:332.316000px;}
.ls56{letter-spacing:348.643800px;}
.ls57{letter-spacing:351.540000px;}
.ls78{letter-spacing:352.800000px;}
.ls11{letter-spacing:360.828000px;}
.ls61{letter-spacing:376.056000px;}
.ls47{letter-spacing:397.872000px;}
.ls50{letter-spacing:404.873280px;}
.ls5f{letter-spacing:467.712960px;}
.ls7f{letter-spacing:469.260000px;}
.ls6e{letter-spacing:469.416960px;}
.ls4d{letter-spacing:481.864320px;}
.ls7b{letter-spacing:565.056000px;}
.ls83{letter-spacing:586.692600px;}
.ls80{letter-spacing:706.428600px;}
.ls33{letter-spacing:768.846840px;}
.ls32{letter-spacing:887.681760px;}
.ls12{letter-spacing:1042.092000px;}
.ls25{letter-spacing:1569.043200px;}
.ls21{letter-spacing:2077.306320px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(60,71,67),0 0.015em rgb(60,71,67),0.015em 0 rgb(60,71,67),0 -0.015em  rgb(60,71,67);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(60,71,67);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc1{word-spacing:-120.240000px;}
.wscc{word-spacing:-86.400000px;}
.wsc2{word-spacing:-72.144000px;}
.ws9{word-spacing:-64.800000px;}
.ws12{word-spacing:-50.544000px;}
.ws0{word-spacing:-43.830720px;}
.wscd{word-spacing:-39.888000px;}
.wsce{word-spacing:-39.744000px;}
.wsab{word-spacing:-38.250911px;}
.wsac{word-spacing:-37.947332px;}
.wsaa{word-spacing:-37.643753px;}
.wsae{word-spacing:-36.288000px;}
.wsad{word-spacing:-36.144000px;}
.ws92{word-spacing:-34.835651px;}
.ws76{word-spacing:-34.236000px;}
.wsc3{word-spacing:-33.546960px;}
.ws1{word-spacing:-33.426720px;}
.wscb{word-spacing:-33.306480px;}
.wsa2{word-spacing:-32.066254px;}
.wsa3{word-spacing:-31.432534px;}
.ws6b{word-spacing:-30.451680px;}
.wsa4{word-spacing:-30.420720px;}
.wsc{word-spacing:-30.348000px;}
.wsa6{word-spacing:-30.300480px;}
.wsa{word-spacing:-30.240000px;}
.ws30{word-spacing:-30.060000px;}
.ws75{word-spacing:-30.024000px;}
.ws31{word-spacing:-29.939760px;}
.wsa5{word-spacing:-29.819520px;}
.wsc8{word-spacing:-29.808000px;}
.wsb{word-spacing:-29.700000px;}
.ws91{word-spacing:-28.802025px;}
.ws90{word-spacing:-28.688183px;}
.ws7d{word-spacing:-28.460499px;}
.ws7e{word-spacing:-27.324000px;}
.ws7f{word-spacing:-27.216000px;}
.ws1b{word-spacing:-27.054000px;}
.ws96{word-spacing:-26.784000px;}
.ws98{word-spacing:-26.676000px;}
.wsbf{word-spacing:-26.621280px;}
.ws8a{word-spacing:-25.234976px;}
.ws1c{word-spacing:-24.732000px;}
.ws23{word-spacing:-24.624000px;}
.ws20{word-spacing:-24.516000px;}
.ws25{word-spacing:-24.408000px;}
.ws8b{word-spacing:-24.323040px;}
.ws1d{word-spacing:-24.084000px;}
.ws48{word-spacing:-23.940000px;}
.ws24{word-spacing:-23.868000px;}
.ws1e{word-spacing:-23.760000px;}
.wsd1{word-spacing:-23.748480px;}
.ws21{word-spacing:-23.652000px;}
.ws2d{word-spacing:-23.412960px;}
.ws18{word-spacing:-23.334480px;}
.ws22{word-spacing:-23.112000px;}
.ws2c{word-spacing:-22.697280px;}
.ws2f{word-spacing:-22.186080px;}
.ws1f{word-spacing:-22.032000px;}
.ws44{word-spacing:-22.024800px;}
.ws3e{word-spacing:-21.929040px;}
.ws40{word-spacing:-21.833280px;}
.ws3f{word-spacing:-21.737520px;}
.ws41{word-spacing:-21.546000px;}
.ws43{word-spacing:-21.450240px;}
.ws9c{word-spacing:-21.396960px;}
.ws95{word-spacing:-21.144240px;}
.ws8c{word-spacing:-20.684160px;}
.wsc9{word-spacing:-20.440800px;}
.ws9d{word-spacing:-20.386080px;}
.wscf{word-spacing:-20.304000px;}
.ws42{word-spacing:-20.109600px;}
.wsd0{word-spacing:-19.872000px;}
.ws89{word-spacing:-19.582341px;}
.ws5c{word-spacing:-19.206720px;}
.ws4d{word-spacing:-19.122480px;}
.ws4f{word-spacing:-18.869760px;}
.wsd2{word-spacing:-18.792000px;}
.ws5b{word-spacing:-18.785520px;}
.ws4e{word-spacing:-18.701280px;}
.ws97{word-spacing:-17.712000px;}
.ws99{word-spacing:-16.891200px;}
.ws62{word-spacing:-16.560000px;}
.ws5f{word-spacing:-16.488000px;}
.ws5d{word-spacing:-16.416000px;}
.ws60{word-spacing:-16.344000px;}
.ws61{word-spacing:-16.200000px;}
.ws9a{word-spacing:-16.162560px;}
.ws5e{word-spacing:-16.056000px;}
.ws63{word-spacing:-15.984000px;}
.ws64{word-spacing:-15.235200px;}
.ws93{word-spacing:-14.880240px;}
.ws66{word-spacing:-14.771520px;}
.ws65{word-spacing:-14.705280px;}
.ws67{word-spacing:-14.639040px;}
.ws94{word-spacing:-14.581440px;}
.ws9b{word-spacing:-12.888000px;}
.ws3b{word-spacing:-8.657280px;}
.ws83{word-spacing:-6.804000px;}
.ws80{word-spacing:-6.033626px;}
.ws8e{word-spacing:-5.937120px;}
.ws4a{word-spacing:-5.171040px;}
.ws3d{word-spacing:-4.562787px;}
.ws3a{word-spacing:-3.727440px;}
.wsd5{word-spacing:-3.538080px;}
.ws4{word-spacing:-3.460320px;}
.ws50{word-spacing:-3.369600px;}
.ws35{word-spacing:-3.271680px;}
.ws3c{word-spacing:-3.168602px;}
.ws1a{word-spacing:-3.116880px;}
.wsb4{word-spacing:-3.024000px;}
.ws37{word-spacing:-2.885760px;}
.wsb0{word-spacing:-2.880000px;}
.ws36{word-spacing:-2.862720px;}
.wsbd{word-spacing:-2.808000px;}
.ws51{word-spacing:-2.611440px;}
.ws6e{word-spacing:-2.585520px;}
.ws8{word-spacing:-2.525040px;}
.wsbc{word-spacing:-2.484000px;}
.wsba{word-spacing:-2.448000px;}
.wsd4{word-spacing:-2.442960px;}
.wsa9{word-spacing:-2.408138px;}
.wse{word-spacing:-2.404800px;}
.wsb7{word-spacing:-2.304000px;}
.ws28{word-spacing:-2.164320px;}
.wsb3{word-spacing:-2.160000px;}
.ws57{word-spacing:-2.106000px;}
.ws84{word-spacing:-2.052000px;}
.ws53{word-spacing:-1.937520px;}
.ws34{word-spacing:-1.840320px;}
.ws85{word-spacing:-1.836000px;}
.ws13{word-spacing:-1.803600px;}
.wsa7{word-spacing:-1.774417px;}
.ws59{word-spacing:-1.769040px;}
.wsbb{word-spacing:-1.584000px;}
.ws81{word-spacing:-1.479946px;}
.ws29{word-spacing:-1.442880px;}
.wsb6{word-spacing:-1.440000px;}
.ws19{word-spacing:-1.436400px;}
.ws58{word-spacing:-1.432080px;}
.ws88{word-spacing:-1.404000px;}
.ws2{word-spacing:-1.345680px;}
.ws86{word-spacing:-1.296000px;}
.ws52{word-spacing:-1.179360px;}
.wsa0{word-spacing:-1.138420px;}
.ws55{word-spacing:-1.095120px;}
.wsc5{word-spacing:-1.082160px;}
.ws82{word-spacing:-1.080000px;}
.wsa1{word-spacing:-1.010880px;}
.ws6d{word-spacing:-1.008000px;}
.wsca{word-spacing:-0.961920px;}
.ws11{word-spacing:-0.864000px;}
.ws49{word-spacing:-0.861840px;}
.wsb5{word-spacing:-0.758947px;}
.ws17{word-spacing:-0.756000px;}
.wsb9{word-spacing:-0.720000px;}
.ws56{word-spacing:-0.673920px;}
.ws15{word-spacing:-0.670320px;}
.ws87{word-spacing:-0.648000px;}
.ws8d{word-spacing:-0.574560px;}
.ws46{word-spacing:-0.478800px;}
.wsa8{word-spacing:-0.380232px;}
.wsb2{word-spacing:-0.360720px;}
.wsbe{word-spacing:-0.341526px;}
.ws2a{word-spacing:-0.324000px;}
.ws33{word-spacing:-0.306720px;}
.ws6f{word-spacing:-0.302820px;}
.ws26{word-spacing:-0.276480px;}
.ws54{word-spacing:-0.252720px;}
.ws39{word-spacing:-0.240480px;}
.ws9f{word-spacing:-0.227684px;}
.ws7b{word-spacing:-0.216000px;}
.ws4b{word-spacing:-0.191520px;}
.wsd{word-spacing:-0.180000px;}
.wsaf{word-spacing:-0.151789px;}
.wsb8{word-spacing:-0.144000px;}
.wsc4{word-spacing:-0.120240px;}
.wsf{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.102240px;}
.ws68{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.wsd3{word-spacing:0.084240px;}
.ws5{word-spacing:0.108000px;}
.wsb1{word-spacing:0.120240px;}
.wsc7{word-spacing:0.167760px;}
.ws72{word-spacing:0.191520px;}
.wsc6{word-spacing:0.240480px;}
.ws6a{word-spacing:0.264960px;}
.ws45{word-spacing:0.287280px;}
.ws7c{word-spacing:0.324000px;}
.ws5a{word-spacing:0.336960px;}
.ws7{word-spacing:0.383040px;}
.ws71{word-spacing:0.478800px;}
.ws27{word-spacing:0.480960px;}
.ws6c{word-spacing:0.503280px;}
.ws69{word-spacing:0.504000px;}
.ws7a{word-spacing:0.540000px;}
.ws9e{word-spacing:0.569210px;}
.ws4c{word-spacing:0.574560px;}
.ws77{word-spacing:0.648000px;}
.ws79{word-spacing:0.756000px;}
.ws16{word-spacing:0.766080px;}
.ws6{word-spacing:0.957600px;}
.ws74{word-spacing:1.149120px;}
.ws78{word-spacing:1.296000px;}
.ws10{word-spacing:1.436400px;}
.ws47{word-spacing:1.532160px;}
.ws73{word-spacing:1.627920px;}
.ws70{word-spacing:1.915200px;}
.ws8f{word-spacing:2.010960px;}
.ws14{word-spacing:2.052000px;}
.wsc0{word-spacing:2.700000px;}
.ws38{word-spacing:6.132240px;}
.ws2e{word-spacing:113.793120px;}
.ws2b{word-spacing:115.326720px;}
._12{margin-left:-23.565293px;}
._3c{margin-left:-20.036191px;}
._3e{margin-left:-17.417825px;}
._6{margin-left:-15.480000px;}
._0{margin-left:-14.225760px;}
._14{margin-left:-12.639488px;}
._45{margin-left:-10.908000px;}
._a{margin-left:-9.815040px;}
._37{margin-left:-8.803781px;}
._5{margin-left:-7.573680px;}
._f{margin-left:-5.904000px;}
._13{margin-left:-4.781364px;}
._4{margin-left:-3.268080px;}
._8{margin-left:-2.160000px;}
._3{margin-left:-1.153440px;}
._1{width:1.537920px;}
._2{width:3.460320px;}
._d{width:4.835731px;}
._c{width:6.463949px;}
._19{width:7.948080px;}
._b{width:9.497520px;}
._e{width:11.539229px;}
._46{width:13.127760px;}
._47{width:53.568000px;}
._27{width:71.307480px;}
._1f{width:76.695360px;}
._7{width:85.838400px;}
._2a{width:96.781200px;}
._22{width:97.848000px;}
._2b{width:101.333400px;}
._25{width:106.080600px;}
._20{width:116.154600px;}
._3a{width:144.622080px;}
._24{width:148.335000px;}
._29{width:149.898360px;}
._16{width:163.352160px;}
._3d{width:164.404800px;}
._26{width:165.862080px;}
._15{width:176.243760px;}
._30{width:177.374880px;}
._32{width:192.070080px;}
._9{width:207.809280px;}
._33{width:234.942480px;}
._2f{width:241.489440px;}
._31{width:243.093600px;}
._2d{width:283.527600px;}
._2e{width:292.025400px;}
._2c{width:293.086080px;}
._23{width:294.204840px;}
._39{width:300.674160px;}
._11{width:306.404640px;}
._21{width:309.962160px;}
._10{width:311.359680px;}
._36{width:322.318800px;}
._40{width:345.492000px;}
._1a{width:382.965840px;}
._28{width:390.085920px;}
._17{width:404.920800px;}
._1c{width:457.924320px;}
._44{width:469.248120px;}
._38{width:479.232000px;}
._3b{width:482.832000px;}
._34{width:484.253280px;}
._35{width:490.265280px;}
._41{width:507.612600px;}
._3f{width:569.484000px;}
._42{width:589.792320px;}
._1d{width:604.718640px;}
._1e{width:615.258000px;}
._18{width:622.774800px;}
._1b{width:654.232320px;}
._43{width:678.414960px;}
.fc7{color:rgb(163,167,124);}
.fc6{color:rgb(130,134,90);}
.fc4{color:rgb(229,230,218);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(112,48,160);}
.fc5{color:transparent;}
.fc0{color:rgb(60,71,67);}
.fs12{font-size:59.760000px;}
.fsd{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs10{font-size:100.939903px;}
.fs8{font-size:102.240000px;}
.fs1{font-size:108.000000px;}
.fs11{font-size:113.841996px;}
.fs4{font-size:120.240000px;}
.fsb{font-size:126.744089px;}
.fs7{font-size:138.240000px;}
.fsa{font-size:144.000000px;}
.fs13{font-size:151.789328px;}
.fse{font-size:167.760000px;}
.fs5{font-size:180.000000px;}
.fs6{font-size:185.760000px;}
.fs0{font-size:192.240000px;}
.fs9{font-size:216.000000px;}
.fsf{font-size:264.240000px;}
.y17b{bottom:-31.830000px;}
.y16c{bottom:-31.290000px;}
.y19a{bottom:-25.440000px;}
.y187{bottom:-19.950000px;}
.y1ae{bottom:-16.590000px;}
.yb1{bottom:-12.120000px;}
.y162{bottom:-7.710000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:5.171700px;}
.y26{bottom:7.470000px;}
.y6a{bottom:7.560210px;}
.y199{bottom:7.860000px;}
.y186{bottom:9.570000px;}
.y16b{bottom:13.350000px;}
.y2b{bottom:13.923630px;}
.y1ad{bottom:16.710000px;}
.y1bf{bottom:22.537500px;}
.y106{bottom:24.255600px;}
.yfb{bottom:25.249050px;}
.y138{bottom:27.181830px;}
.y161{bottom:27.570000px;}
.yb0{bottom:31.080000px;}
.y198{bottom:33.060000px;}
.y17a{bottom:34.950000px;}
.y69{bottom:36.360030px;}
.y133{bottom:36.844200px;}
.y121{bottom:37.260000px;}
.y2a{bottom:39.132450px;}
.y25{bottom:39.150000px;}
.y1ac{bottom:41.910000px;}
.y157{bottom:42.015000px;}
.ye1{bottom:42.513180px;}
.y3f{bottom:44.521500px;}
.y185{bottom:46.614900px;}
.y1be{bottom:50.797500px;}
.y7a{bottom:52.338000px;}
.y137{bottom:52.390650px;}
.y88{bottom:54.275400px;}
.y4e{bottom:56.479680px;}
.y197{bottom:57.540000px;}
.yfa{bottom:58.342230px;}
.y16a{bottom:60.510000px;}
.ybe{bottom:60.523500px;}
.y83{bottom:62.027400px;}
.yce{bottom:63.150000px;}
.y68{bottom:65.159850px;}
.y1ab{bottom:67.057080px;}
.y160{bottom:67.374480px;}
.y24{bottom:67.950360px;}
.y146{bottom:70.020000px;}
.ye0{bottom:71.313000px;}
.yaf{bottom:74.174700px;}
.y1bd{bottom:75.997500px;}
.y179{bottom:76.890000px;}
.y3e{bottom:76.921500px;}
.y156{bottom:77.295000px;}
.y105{bottom:77.582040px;}
.yea{bottom:77.610000px;}
.yf9{bottom:77.788650px;}
.y87{bottom:79.652700px;}
.y120{bottom:80.460000px;}
.y4d{bottom:80.966160px;}
.y196{bottom:81.120000px;}
.y59{bottom:84.876270px;}
.y5a{bottom:84.888150px;}
.y116{bottom:86.247750px;}
.y184{bottom:89.826600px;}
.y1aa{bottom:92.265900px;}
.y99{bottom:93.275700px;}
.ycd{bottom:95.550000px;}
.y23{bottom:96.750180px;}
.ydf{bottom:100.112820px;}
.y1bc{bottom:101.188680px;}
.y145{bottom:101.700000px;}
.y169{bottom:109.110000px;}
.ybd{bottom:109.123500px;}
.ye9{bottom:110.010000px;}
.yf8{bottom:110.881830px;}
.y195{bottom:111.540000px;}
.y178{bottom:112.170000px;}
.y91{bottom:114.690900px;}
.y98{bottom:114.875700px;}
.y5f{bottom:115.280250px;}
.y155{bottom:117.119460px;}
.yae{bottom:117.386400px;}
.y1a9{bottom:117.474720px;}
.y72{bottom:120.771600px;}
.y58{bottom:120.888150px;}
.y15f{bottom:121.362240px;}
.y132{bottom:121.804200px;}
.y11f{bottom:123.660000px;}
.y22{bottom:125.550360px;}
.y1bb{bottom:126.362220px;}
.y3d{bottom:127.114500px;}
.y4c{bottom:127.945440px;}
.ycc{bottom:127.950000px;}
.yde{bottom:128.912640px;}
.y115{bottom:129.447750px;}
.yf7{bottom:130.325400px;}
.y104{bottom:130.908480px;}
.y183{bottom:133.038300px;}
.y194{bottom:133.851180px;}
.y90{bottom:136.290900px;}
.y97{bottom:136.475700px;}
.y144{bottom:137.160000px;}
.y63{bottom:137.472900px;}
.ye8{bottom:142.410000px;}
.y1a8{bottom:142.683540px;}
.y177{bottom:144.570000px;}
.y71{bottom:149.571600px;}
.y1ba{bottom:151.571040px;}
.y4b{bottom:152.431920px;}
.y21{bottom:154.350180px;}
.y168{bottom:157.710000px;}
.ydd{bottom:157.712460px;}
.ybc{bottom:157.723500px;}
.y193{bottom:159.060000px;}
.y3c{bottom:159.514500px;}
.ycb{bottom:160.350000px;}
.yad{bottom:160.598100px;}
.ya{bottom:161.565000px;}
.y4f{bottom:162.169200px;}
.y15{bottom:166.410000px;}
.y82{bottom:166.514400px;}
.y11e{bottom:166.860000px;}
.y1a7{bottom:167.892360px;}
.y131{bottom:170.404200px;}
.y154{bottom:171.107220px;}
.yf6{bottom:171.932400px;}
.y114{bottom:172.647750px;}
.y15e{bottom:175.350000px;}
.y182{bottom:176.250000px;}
.y1b9{bottom:176.779860px;}
.y176{bottom:176.970000px;}
.y29{bottom:178.408500px;}
.y20{bottom:183.150000px;}
.y103{bottom:184.234920px;}
.y143{bottom:184.503420px;}
.y51{bottom:185.643750px;}
.ydc{bottom:186.512280px;}
.y136{bottom:186.743700px;}
.y192{bottom:187.500000px;}
.y57{bottom:189.988140px;}
.y3b{bottom:191.914500px;}
.yca{bottom:192.750000px;}
.y1a6{bottom:193.101180px;}
.y86{bottom:193.653450px;}
.y14e{bottom:199.290000px;}
.y4a{bottom:199.411200px;}
.y1b8{bottom:201.988680px;}
.yac{bottom:203.809800px;}
.yf5{bottom:204.006450px;}
.y167{bottom:206.310000px;}
.ybb{bottom:206.323500px;}
.y14{bottom:209.070000px;}
.y175{bottom:209.370000px;}
.y11d{bottom:210.060000px;}
.y1f{bottom:212.670000px;}
.y79{bottom:214.359000px;}
.ydb{bottom:215.312100px;}
.y113{bottom:215.847750px;}
.yf4{bottom:216.966450px;}
.y1a5{bottom:218.310000px;}
.y12e{bottom:219.004200px;}
.y85{bottom:219.030750px;}
.y191{bottom:219.900000px;}
.y181{bottom:220.710000px;}
.y49{bottom:223.897680px;}
.y3a{bottom:224.314500px;}
.y153{bottom:225.094980px;}
.yc9{bottom:225.150000px;}
.y56{bottom:226.000020px;}
.y1b7{bottom:227.197500px;}
.y64{bottom:227.834700px;}
.y15d{bottom:227.910000px;}
.y142{bottom:228.960000px;}
.y14d{bottom:234.570000px;}
.y8f{bottom:235.562250px;}
.y96{bottom:235.747050px;}
.y102{bottom:237.561360px;}
.y13{bottom:241.470000px;}
.y174{bottom:242.490000px;}
.yda{bottom:244.111920px;}
.y1e{bottom:244.350000px;}
.y1a4{bottom:244.770000px;}
.y130{bottom:245.653200px;}
.yab{bottom:247.021500px;}
.yf3{bottom:250.057230px;}
.y190{bottom:252.300000px;}
.y11c{bottom:253.260000px;}
.y1b6{bottom:253.657500px;}
.yba{bottom:254.923500px;}
.y5c{bottom:256.251900px;}
.y166{bottom:256.394460px;}
.y39{bottom:256.714500px;}
.y8e{bottom:257.162250px;}
.y95{bottom:257.347050px;}
.yc8{bottom:257.550000px;}
.y112{bottom:257.553930px;}
.y10f{bottom:257.583990px;}
.yf2{bottom:259.780290px;}
.y55{bottom:262.011900px;}
.y12d{bottom:267.604200px;}
.y180{bottom:269.310000px;}
.yf1{bottom:269.498700px;}
.y48{bottom:270.876960px;}
.y81{bottom:271.187100px;}
.yd9{bottom:272.911740px;}
.y1d{bottom:273.150180px;}
.y14c{bottom:274.370340px;}
.y1a3{bottom:275.848260px;}
.y15c{bottom:276.510000px;}
.y141{bottom:277.560000px;}
.y173{bottom:277.770000px;}
.y12f{bottom:278.053200px;}
.y8d{bottom:278.762250px;}
.y94{bottom:278.947050px;}
.y152{bottom:279.082740px;}
.y12{bottom:279.810000px;}
.y10c{bottom:280.644000px;}
.y13c{bottom:284.479890px;}
.y18f{bottom:284.700000px;}
.y1b5{bottom:286.057500px;}
.y38{bottom:289.114500px;}
.yc7{bottom:289.950000px;}
.yaa{bottom:290.233200px;}
.y101{bottom:290.887800px;}
.y111{bottom:293.565810px;}
.y10e{bottom:293.595870px;}
.y74{bottom:295.317150px;}
.y47{bottom:295.363440px;}
.y11b{bottom:296.460000px;}
.y1a2{bottom:301.057080px;}
.yd8{bottom:301.711560px;}
.y1c{bottom:301.950000px;}
.y50{bottom:303.141000px;}
.yb9{bottom:303.523500px;}
.y2e{bottom:307.706160px;}
.y13b{bottom:309.688710px;}
.y172{bottom:310.170000px;}
.y165{bottom:310.382220px;}
.yf0{bottom:311.105700px;}
.y12a{bottom:316.204200px;}
.y129{bottom:316.204350px;}
.y17f{bottom:317.910000px;}
.y65{bottom:318.313800px;}
.y18e{bottom:318.358560px;}
.y1b4{bottom:318.457500px;}
.y46{bottom:319.849920px;}
.yc6{bottom:322.350000px;}
.y5e{bottom:322.931850px;}
.y10b{bottom:323.844000px;}
.y15b{bottom:325.110000px;}
.y140{bottom:326.160000px;}
.y1a1{bottom:326.265900px;}
.y14b{bottom:328.358100px;}
.y11{bottom:328.410000px;}
.y110{bottom:329.577690px;}
.y10d{bottom:329.607750px;}
.yd7{bottom:330.511380px;}
.y1b{bottom:330.750000px;}
.y2d{bottom:332.914980px;}
.y151{bottom:333.070500px;}
.ya9{bottom:333.444900px;}
.y13a{bottom:334.897530px;}
.y11a{bottom:339.660000px;}
.y9{bottom:340.912500px;}
.y171{bottom:342.570000px;}
.y12c{bottom:342.853200px;}
.yef{bottom:343.181700px;}
.y77{bottom:343.933800px;}
.y100{bottom:344.214240px;}
.y80{bottom:350.476800px;}
.y1b3{bottom:350.857500px;}
.y1a0{bottom:351.474720px;}
.yb8{bottom:352.123500px;}
.yc5{bottom:354.750000px;}
.yee{bottom:356.136450px;}
.y18d{bottom:356.161260px;}
.y37{bottom:356.938500px;}
.y2c{bottom:358.123800px;}
.y1a{bottom:359.550180px;}
.y139{bottom:360.106350px;}
.y17e{bottom:360.570000px;}
.y164{bottom:364.369980px;}
.y128{bottom:364.804350px;}
.y54{bottom:366.819420px;}
.y45{bottom:366.829200px;}
.y10a{bottom:367.044000px;}
.y8{bottom:372.402960px;}
.y15a{bottom:373.710000px;}
.y13f{bottom:374.760000px;}
.y170{bottom:374.970000px;}
.y12b{bottom:375.253200px;}
.y84{bottom:375.674100px;}
.y10{bottom:375.750000px;}
.y7f{bottom:375.854100px;}
.y76{bottom:376.380000px;}
.ya8{bottom:376.656600px;}
.y19f{bottom:376.683540px;}
.yd6{bottom:378.199860px;}
.y150{bottom:380.415000px;}
.y14a{bottom:382.345860px;}
.y119{bottom:382.860000px;}
.y9f{bottom:383.064570px;}
.y1b2{bottom:383.257500px;}
.yc4{bottom:387.150000px;}
.y19{bottom:388.352160px;}
.y36{bottom:389.338500px;}
.y44{bottom:391.315680px;}
.y18c{bottom:393.963960px;}
.y6d{bottom:396.196800px;}
.y5d{bottom:397.071300px;}
.yff{bottom:397.540680px;}
.yed{bottom:397.738200px;}
.y8c{bottom:399.818250px;}
.yb7{bottom:400.723500px;}
.y19e{bottom:401.892360px;}
.y7{bottom:402.112500px;}
.y53{bottom:402.831300px;}
.y9e{bottom:403.052490px;}
.y17d{bottom:405.750000px;}
.y188{bottom:406.875000px;}
.yd5{bottom:406.999680px;}
.y16f{bottom:407.370000px;}
.y66{bottom:408.675600px;}
.y109{bottom:410.244000px;}
.y125{bottom:413.404200px;}
.y124{bottom:413.404350px;}
.y1b1{bottom:415.657500px;}
.y18{bottom:417.151980px;}
.y13e{bottom:417.420000px;}
.y163{bottom:418.357740px;}
.y14f{bottom:419.115000px;}
.yc3{bottom:419.550000px;}
.ya7{bottom:419.868300px;}
.yf{bottom:420.210000px;}
.y8b{bottom:421.418250px;}
.y35{bottom:421.738500px;}
.ye7{bottom:421.740000px;}
.y159{bottom:422.310000px;}
.y9d{bottom:422.858250px;}
.y6c{bottom:424.996800px;}
.y118{bottom:426.060000px;}
.y19d{bottom:427.101180px;}
.yec{bottom:433.042500px;}
.y6{bottom:434.512500px;}
.y149{bottom:436.333620px;}
.y43{bottom:438.294960px;}
.yeb{bottom:439.345200px;}
.y127{bottom:440.053200px;}
.y16e{bottom:440.490000px;}
.y17{bottom:446.670000px;}
.y1b0{bottom:448.057500px;}
.yb6{bottom:449.323500px;}
.y13d{bottom:449.820000px;}
.yfe{bottom:450.867120px;}
.yc2{bottom:451.950000px;}
.y19c{bottom:452.310000px;}
.y18b{bottom:452.468640px;}
.y108{bottom:454.560000px;}
.yd4{bottom:454.688160px;}
.y135{bottom:456.322050px;}
.y75{bottom:457.338000px;}
.y28{bottom:457.865100px;}
.y123{bottom:462.004350px;}
.ya6{bottom:463.080000px;}
.ye{bottom:468.810000px;}
.y117{bottom:469.260000px;}
.y17c{bottom:471.984780px;}
.y158{bottom:472.345500px;}
.y5{bottom:472.360920px;}
.y126{bottom:472.453200px;}
.y16d{bottom:477.756300px;}
.y34{bottom:477.763500px;}
.y18a{bottom:478.920000px;}
.y16{bottom:479.070000px;}
.yd3{bottom:483.487980px;}
.y148{bottom:483.678120px;}
.yc1{bottom:484.350000px;}
.y42{bottom:485.274240px;}
.y78{bottom:489.784200px;}
.y52{bottom:496.761600px;}
.y107{bottom:497.760000px;}
.yb5{bottom:497.923500px;}
.y67{bottom:499.154700px;}
.ye6{bottom:499.350000px;}
.yfd{bottom:504.193560px;}
.ya5{bottom:506.280000px;}
.y41{bottom:509.760720px;}
.y33{bottom:510.163500px;}
.y19b{bottom:510.450000px;}
.y189{bottom:511.320000px;}
.y7e{bottom:511.998600px;}
.y1af{bottom:512.137500px;}
.ye3{bottom:513.750000px;}
.yc0{bottom:516.750000px;}
.yd{bottom:518.850000px;}
.y147{bottom:519.690000px;}
.y73{bottom:522.125400px;}
.y9c{bottom:525.508770px;}
.y5b{bottom:525.741600px;}
.y4{bottom:529.936800px;}
.ye5{bottom:531.750000px;}
.yd2{bottom:534.480180px;}
.y8a{bottom:535.785300px;}
.y7d{bottom:537.375900px;}
.y62{bottom:537.745230px;}
.y122{bottom:538.522500px;}
.y93{bottom:542.289600px;}
.y9b{bottom:545.496690px;}
.yb4{bottom:545.632500px;}
.y134{bottom:549.103800px;}
.ybf{bottom:549.150000px;}
.ya4{bottom:549.480000px;}
.ye2{bottom:549.750000px;}
.y27{bottom:554.158650px;}
.y32{bottom:554.362500px;}
.y40{bottom:556.740000px;}
.yfc{bottom:557.520000px;}
.y1c0{bottom:558.007500px;}
.y89{bottom:561.162600px;}
.yd1{bottom:563.280000px;}
.y92{bottom:563.889600px;}
.ye4{bottom:564.150000px;}
.y9a{bottom:565.302450px;}
.y61{bottom:566.545050px;}
.ya2{bottom:571.942500px;}
.y3{bottom:587.560740px;}
.ya3{bottom:589.080000px;}
.yb3{bottom:591.172500px;}
.y31{bottom:622.575000px;}
.yb2{bottom:626.632500px;}
.yc{bottom:635.017500px;}
.ya1{bottom:639.262500px;}
.y70{bottom:642.822000px;}
.y2{bottom:645.136620px;}
.y30{bottom:654.435000px;}
.y6f{bottom:671.622000px;}
.ya0{bottom:681.922500px;}
.yb{bottom:686.317500px;}
.y2f{bottom:692.595000px;}
.y6e{bottom:700.422000px;}
.y1{bottom:702.712500px;}
.y7b{bottom:769.320000px;}
.yd0{bottom:774.945000px;}
.y60{bottom:775.507350px;}
.y7c{bottom:775.695000px;}
.y6b{bottom:775.882350px;}
.h2a{height:44.820000px;}
.h1e{height:48.095156px;}
.h1c{height:52.277344px;}
.h1b{height:60.465234px;}
.h18{height:61.164492px;}
.h16{height:68.733984px;}
.h1f{height:69.086250px;}
.h3{height:69.528867px;}
.h24{height:73.316250px;}
.he{height:73.385156px;}
.hf{height:74.233828px;}
.h23{height:74.999531px;}
.h1d{height:75.093750px;}
.h2{height:78.416016px;}
.h25{height:79.056447px;}
.h33{height:82.676953px;}
.h27{height:84.585938px;}
.hd{height:86.305078px;}
.ha{height:87.859687px;}
.h44{height:88.000807px;}
.h43{height:88.071367px;}
.h17{height:93.983203px;}
.h2b{height:99.066995px;}
.hc{height:99.225000px;}
.h8{height:99.866047px;}
.h9{height:99.873248px;}
.h7{height:99.874688px;}
.h21{height:103.359375px;}
.h29{height:105.996094px;}
.h30{height:106.017094px;}
.h28{height:111.729693px;}
.h6{height:112.640625px;}
.h26{height:112.781250px;}
.h12{height:118.008984px;}
.h20{height:120.413672px;}
.h14{height:124.392392px;}
.h3f{height:125.228723px;}
.h40{height:125.308642px;}
.h3d{height:125.325203px;}
.h4{height:125.406562px;}
.h5{height:129.199219px;}
.h2f{height:131.206894px;}
.hb{height:133.333594px;}
.h1{height:139.580508px;}
.h36{height:141.328125px;}
.h32{height:144.899134px;}
.h35{height:148.972924px;}
.h41{height:150.162300px;}
.h11{height:150.187500px;}
.h31{height:157.836094px;}
.h19{height:162.673692px;}
.h2c{height:164.647266px;}
.h3a{height:171.811266px;}
.h39{height:171.811866px;}
.h3e{height:174.968437px;}
.h42{height:174.989318px;}
.h1a{height:179.740688px;}
.h34{height:183.791374px;}
.h22{height:189.664453px;}
.h10{height:194.816280px;}
.h3c{height:229.447266px;}
.h38{height:235.596094px;}
.h2e{height:239.760000px;}
.h15{height:243.965700px;}
.h13{height:269.454083px;}
.h3b{height:278.407266px;}
.h2d{height:308.647266px;}
.h37{height:314.128125px;}
.h0{height:810.000000px;}
.w5{width:162.720000px;}
.w1{width:232.740000px;}
.w3{width:255.420000px;}
.w2{width:287.460000px;}
.w4{width:303.840000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6a{left:8.127450px;}
.x16{left:10.800000px;}
.x2e{left:11.829390px;}
.x78{left:21.453450px;}
.xad{left:25.545900px;}
.xa4{left:29.535750px;}
.xb1{left:30.937050px;}
.xc9{left:32.175000px;}
.x31{left:33.714600px;}
.x66{left:39.129300px;}
.x63{left:42.558300px;}
.xb3{left:44.634900px;}
.x2d{left:50.348850px;}
.x67{left:56.058300px;}
.x3b{left:59.673750px;}
.x33{left:61.012500px;}
.xa5{left:62.475750px;}
.x17{left:64.808280px;}
.x9e{left:69.679350px;}
.xb6{left:71.455050px;}
.x32{left:72.532500px;}
.x77{left:86.793450px;}
.x2f{left:89.663100px;}
.x30{left:93.083100px;}
.x56{left:95.175000px;}
.x94{left:96.679350px;}
.x74{left:99.054720px;}
.x68{left:102.853350px;}
.xb7{left:108.371250px;}
.xbc{left:111.112500px;}
.x75{left:112.221720px;}
.x5a{left:115.425000px;}
.x73{left:118.302480px;}
.x9b{left:120.611850px;}
.x9c{left:121.691850px;}
.x3{left:124.237500px;}
.x45{left:126.635400px;}
.x57{left:128.115000px;}
.x55{left:133.612500px;}
.x49{left:134.849850px;}
.xb2{left:140.754900px;}
.x48{left:144.937020px;}
.x15{left:146.113950px;}
.x79{left:151.953450px;}
.x34{left:156.349200px;}
.x1d{left:158.251350px;}
.x46{left:159.404760px;}
.x22{left:163.291350px;}
.x6e{left:165.638550px;}
.xca{left:167.173920px;}
.x58{left:168.615000px;}
.x23{left:171.377490px;}
.xb8{left:175.927500px;}
.xb9{left:178.091250px;}
.x12{left:179.431950px;}
.x5c{left:181.693350px;}
.x7a{left:184.252650px;}
.x8d{left:188.535300px;}
.xae{left:192.351900px;}
.x1b{left:196.074600px;}
.x9f{left:197.659350px;}
.x51{left:201.881100px;}
.xa7{left:206.458200px;}
.x59{left:211.635000px;}
.x76{left:215.362500px;}
.x1f{left:216.928470px;}
.xbd{left:219.112500px;}
.x1e{left:221.978550px;}
.x5b{left:223.398000px;}
.x1c{left:228.659640px;}
.x69{left:232.920000px;}
.x64{left:241.062300px;}
.xbe{left:246.112500px;}
.xba{left:249.379350px;}
.x8e{left:251.046000px;}
.x7b{left:262.192650px;}
.x18{left:266.316750px;}
.xb{left:270.528450px;}
.xbf{left:273.112500px;}
.x5d{left:275.498400px;}
.x3e{left:277.781250px;}
.x11{left:282.487500px;}
.x7e{left:283.747950px;}
.x7d{left:292.738950px;}
.x13{left:293.857950px;}
.x41{left:300.157500px;}
.xa0{left:309.515850px;}
.x7c{left:313.069950px;}
.x95{left:319.052100px;}
.x8c{left:327.112500px;}
.x6f{left:331.908750px;}
.xc{left:333.735150px;}
.x96{left:338.672100px;}
.xd{left:341.651400px;}
.xe{left:343.815150px;}
.x1{left:350.737500px;}
.x26{left:356.615250px;}
.x35{left:362.659950px;}
.x10{left:371.894550px;}
.xa8{left:373.138200px;}
.x2b{left:383.740950px;}
.xc6{left:385.050000px;}
.xaf{left:403.545900px;}
.x7f{left:412.609950px;}
.xf{left:415.103250px;}
.xa9{left:422.988450px;}
.x38{left:429.112500px;}
.x81{left:434.213400px;}
.xc8{left:439.050000px;}
.x70{left:444.048750px;}
.x14{left:457.180950px;}
.x3d{left:460.920000px;}
.x4a{left:468.110550px;}
.x4{left:473.362500px;}
.x47{left:478.074840px;}
.x20{left:486.925800px;}
.x1a{left:488.722050px;}
.x8f{left:491.706000px;}
.xc7{left:493.050000px;}
.x43{left:495.112500px;}
.x24{left:497.185800px;}
.x80{left:500.273400px;}
.xa1{left:502.655850px;}
.x4b{left:511.150200px;}
.x3c{left:515.103750px;}
.x6b{left:520.560000px;}
.x5{left:527.362500px;}
.x21{left:528.498780px;}
.x2c{left:532.800000px;}
.x44{left:540.300000px;}
.x6{left:541.762500px;}
.x5e{left:553.613850px;}
.x52{left:555.680700px;}
.x19{left:561.877800px;}
.x42{left:566.741250px;}
.x36{left:568.041300px;}
.x2a{left:570.761400px;}
.xaa{left:572.028450px;}
.x6d{left:576.675000px;}
.x25{left:579.805800px;}
.xa2{left:581.766000px;}
.x82{left:585.184350px;}
.x97{left:590.589600px;}
.xbb{left:593.362500px;}
.xa6{left:595.237500px;}
.x3f{left:599.531250px;}
.xb0{left:607.638900px;}
.x8{left:644.550000px;}
.xab{left:647.259900px;}
.xa{left:658.950000px;}
.x29{left:665.497950px;}
.xb4{left:669.054900px;}
.xc1{left:680.550000px;}
.x9d{left:688.237500px;}
.x71{left:696.357750px;}
.x2{left:698.175000px;}
.x9{left:712.950000px;}
.x40{left:720.277350px;}
.xb5{left:727.023900px;}
.xc0{left:731.737500px;}
.xc2{left:734.523000px;}
.x28{left:736.013850px;}
.x5f{left:743.153850px;}
.x93{left:745.987500px;}
.x8b{left:751.808550px;}
.x86{left:753.153750px;}
.x27{left:755.949750px;}
.x98{left:767.889750px;}
.x83{left:770.253750px;}
.x6c{left:776.160000px;}
.x90{left:782.755950px;}
.x65{left:784.275300px;}
.xc3{left:788.554680px;}
.x85{left:795.273750px;}
.xac{left:806.739900px;}
.x91{left:812.082750px;}
.xc5{left:815.550000px;}
.x4c{left:820.620000px;}
.x60{left:829.626300px;}
.xc4{left:842.550000px;}
.x50{left:845.651070px;}
.x4e{left:847.443690px;}
.x39{left:856.061250px;}
.x7{left:860.947500px;}
.x61{left:862.026300px;}
.x4d{left:864.733950px;}
.x4f{left:871.933950px;}
.x3a{left:875.501250px;}
.x99{left:884.171850px;}
.x37{left:887.265150px;}
.x84{left:890.673750px;}
.x87{left:907.773750px;}
.x88{left:917.280000px;}
.x8a{left:925.303950px;}
.x53{left:954.751950px;}
.x54{left:955.815600px;}
.x62{left:994.146300px;}
.x72{left:999.366300px;}
.x9a{left:1021.331850px;}
.xa3{left:1036.095750px;}
.x92{left:1060.662750px;}
.x89{left:1069.904550px;}
@media print{
.v17{vertical-align:-122.240000pt;}
.v19{vertical-align:-112.640000pt;}
.v18{vertical-align:-89.631360pt;}
.v11{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:6.368533pt;}
.v9{vertical-align:10.240000pt;}
.v8{vertical-align:20.498667pt;}
.v7{vertical-align:22.409600pt;}
.v1{vertical-align:26.170027pt;}
.v15{vertical-align:28.800000pt;}
.va{vertical-align:30.738667pt;}
.vd{vertical-align:34.580480pt;}
.vc{vertical-align:35.866133pt;}
.v6{vertical-align:41.600000pt;}
.vb{vertical-align:46.080000pt;}
.ve{vertical-align:56.320000pt;}
.v16{vertical-align:57.600000pt;}
.vf{vertical-align:69.151360pt;}
.v5{vertical-align:81.672000pt;}
.v3{vertical-align:83.358400pt;}
.v4{vertical-align:90.230400pt;}
.v14{vertical-align:101.120000pt;}
.v12{vertical-align:115.200000pt;}
.v2{vertical-align:128.042240pt;}
.v10{vertical-align:153.600000pt;}
.ls8b{letter-spacing:-11.543040pt;}
.ls9b{letter-spacing:-9.984000pt;}
.ls2a{letter-spacing:-5.450880pt;}
.ls53{letter-spacing:-5.024564pt;}
.ls6b{letter-spacing:-4.544000pt;}
.ls54{letter-spacing:-2.894080pt;}
.ls9a{letter-spacing:-2.553600pt;}
.ls1a{letter-spacing:-2.112000pt;}
.ls2e{letter-spacing:-1.361920pt;}
.ls1c{letter-spacing:-1.152000pt;}
.ls29{letter-spacing:-0.817920pt;}
.ls30{letter-spacing:-0.680960pt;}
.ls1b{letter-spacing:-0.672000pt;}
.ls6c{letter-spacing:-0.599040pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls3c{letter-spacing:-0.448000pt;}
.ls26{letter-spacing:-0.363520pt;}
.ls6a{letter-spacing:-0.353280pt;}
.ls0{letter-spacing:-0.341760pt;}
.ls68{letter-spacing:-0.318720pt;}
.ls37{letter-spacing:-0.299520pt;}
.ls44{letter-spacing:-0.298240pt;}
.ls42{letter-spacing:-0.294400pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls73{letter-spacing:-0.269848pt;}
.ls3e{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.255360pt;}
.ls40{letter-spacing:-0.235520pt;}
.ls70{letter-spacing:-0.225323pt;}
.ls39{letter-spacing:-0.224640pt;}
.ls17{letter-spacing:-0.213760pt;}
.ls66{letter-spacing:-0.202386pt;}
.ls3b{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.176640pt;}
.ls2f{letter-spacing:-0.170240pt;}
.ls16{letter-spacing:-0.165120pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.149760pt;}
.ls87{letter-spacing:-0.149120pt;}
.ls90{letter-spacing:-0.128000pt;}
.ls71{letter-spacing:-0.112661pt;}
.ls18{letter-spacing:-0.106880pt;}
.ls48{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.090880pt;}
.ls2d{letter-spacing:-0.085120pt;}
.lsf{letter-spacing:-0.074880pt;}
.ls3d{letter-spacing:-0.064000pt;}
.ls67{letter-spacing:-0.053120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls85{letter-spacing:0.022400pt;}
.ls3a{letter-spacing:0.064000pt;}
.ls35{letter-spacing:0.074880pt;}
.lsb{letter-spacing:0.085120pt;}
.ls27{letter-spacing:0.090880pt;}
.lse{letter-spacing:0.094080pt;}
.ls6{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.106880pt;}
.lsd{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.131200pt;}
.ls74{letter-spacing:0.134924pt;}
.ls34{letter-spacing:0.149760pt;}
.ls2c{letter-spacing:0.170240pt;}
.ls45{letter-spacing:0.179449pt;}
.ls9{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.202386pt;}
.ls10{letter-spacing:0.213760pt;}
.ls36{letter-spacing:0.224640pt;}
.ls2b{letter-spacing:0.225323pt;}
.ls3f{letter-spacing:0.235520pt;}
.ls4{letter-spacing:0.255360pt;}
.ls24{letter-spacing:0.256000pt;}
.ls75{letter-spacing:0.269848pt;}
.ls1e{letter-spacing:0.272640pt;}
.lsa{letter-spacing:0.288000pt;}
.ls69{letter-spacing:0.294400pt;}
.ls60{letter-spacing:0.299520pt;}
.ls4c{letter-spacing:0.303579pt;}
.ls22{letter-spacing:0.320640pt;}
.ls23{letter-spacing:0.337984pt;}
.ls31{letter-spacing:0.340480pt;}
.ls2{letter-spacing:0.341760pt;}
.ls86{letter-spacing:0.427520pt;}
.ls20{letter-spacing:0.768000pt;}
.ls89{letter-spacing:0.864000pt;}
.ls46{letter-spacing:0.960000pt;}
.ls84{letter-spacing:1.248000pt;}
.ls92{letter-spacing:1.572480pt;}
.ls8d{letter-spacing:2.784000pt;}
.ls4b{letter-spacing:5.666802pt;}
.ls63{letter-spacing:9.434880pt;}
.ls8e{letter-spacing:29.111040pt;}
.ls8a{letter-spacing:38.400000pt;}
.ls5a{letter-spacing:42.762773pt;}
.ls14{letter-spacing:44.160000pt;}
.ls13{letter-spacing:44.256000pt;}
.ls91{letter-spacing:44.832000pt;}
.ls94{letter-spacing:45.696000pt;}
.ls98{letter-spacing:51.068160pt;}
.ls99{letter-spacing:51.072000pt;}
.ls43{letter-spacing:52.734720pt;}
.ls8c{letter-spacing:61.344000pt;}
.ls88{letter-spacing:62.400000pt;}
.ls8f{letter-spacing:67.200000pt;}
.ls96{letter-spacing:68.964480pt;}
.ls97{letter-spacing:68.968320pt;}
.ls93{letter-spacing:69.788160pt;}
.ls95{letter-spacing:69.792000pt;}
.ls4f{letter-spacing:69.968640pt;}
.ls58{letter-spacing:79.716373pt;}
.ls59{letter-spacing:83.328000pt;}
.ls62{letter-spacing:83.382400pt;}
.ls5e{letter-spacing:83.478400pt;}
.ls15{letter-spacing:97.056000pt;}
.ls76{letter-spacing:101.760000pt;}
.ls4e{letter-spacing:104.612480pt;}
.ls6d{letter-spacing:120.453760pt;}
.ls6f{letter-spacing:152.304000pt;}
.ls64{letter-spacing:155.536853pt;}
.ls7d{letter-spacing:159.360533pt;}
.ls1f{letter-spacing:162.680320pt;}
.ls7e{letter-spacing:165.984000pt;}
.ls77{letter-spacing:172.800000pt;}
.ls49{letter-spacing:184.224000pt;}
.ls51{letter-spacing:199.946880pt;}
.ls4a{letter-spacing:204.960000pt;}
.ls52{letter-spacing:207.692800pt;}
.ls79{letter-spacing:219.520000pt;}
.ls55{letter-spacing:229.721600pt;}
.ls7a{letter-spacing:238.069867pt;}
.ls72{letter-spacing:255.872000pt;}
.ls81{letter-spacing:256.320000pt;}
.ls7c{letter-spacing:256.896000pt;}
.ls5c{letter-spacing:260.736000pt;}
.ls5d{letter-spacing:275.328000pt;}
.ls5b{letter-spacing:285.600000pt;}
.ls82{letter-spacing:295.392000pt;}
.ls56{letter-spacing:309.905600pt;}
.ls57{letter-spacing:312.480000pt;}
.ls78{letter-spacing:313.600000pt;}
.ls11{letter-spacing:320.736000pt;}
.ls61{letter-spacing:334.272000pt;}
.ls47{letter-spacing:353.664000pt;}
.ls50{letter-spacing:359.887360pt;}
.ls5f{letter-spacing:415.744853pt;}
.ls7f{letter-spacing:417.120000pt;}
.ls6e{letter-spacing:417.259520pt;}
.ls4d{letter-spacing:428.323840pt;}
.ls7b{letter-spacing:502.272000pt;}
.ls83{letter-spacing:521.504533pt;}
.ls80{letter-spacing:627.936533pt;}
.ls33{letter-spacing:683.419413pt;}
.ls32{letter-spacing:789.050453pt;}
.ls12{letter-spacing:926.304000pt;}
.ls25{letter-spacing:1394.705067pt;}
.ls21{letter-spacing:1846.494507pt;}
.wsc1{word-spacing:-106.880000pt;}
.wscc{word-spacing:-76.800000pt;}
.wsc2{word-spacing:-64.128000pt;}
.ws9{word-spacing:-57.600000pt;}
.ws12{word-spacing:-44.928000pt;}
.ws0{word-spacing:-38.960640pt;}
.wscd{word-spacing:-35.456000pt;}
.wsce{word-spacing:-35.328000pt;}
.wsab{word-spacing:-34.000809pt;}
.wsac{word-spacing:-33.730962pt;}
.wsaa{word-spacing:-33.461114pt;}
.wsae{word-spacing:-32.256000pt;}
.wsad{word-spacing:-32.128000pt;}
.ws92{word-spacing:-30.965023pt;}
.ws76{word-spacing:-30.432000pt;}
.wsc3{word-spacing:-29.819520pt;}
.ws1{word-spacing:-29.712640pt;}
.wscb{word-spacing:-29.605760pt;}
.wsa2{word-spacing:-28.503337pt;}
.wsa3{word-spacing:-27.940030pt;}
.ws6b{word-spacing:-27.068160pt;}
.wsa4{word-spacing:-27.040640pt;}
.wsc{word-spacing:-26.976000pt;}
.wsa6{word-spacing:-26.933760pt;}
.wsa{word-spacing:-26.880000pt;}
.ws30{word-spacing:-26.720000pt;}
.ws75{word-spacing:-26.688000pt;}
.ws31{word-spacing:-26.613120pt;}
.wsa5{word-spacing:-26.506240pt;}
.wsc8{word-spacing:-26.496000pt;}
.wsb{word-spacing:-26.400000pt;}
.ws91{word-spacing:-25.601800pt;}
.ws90{word-spacing:-25.500607pt;}
.ws7d{word-spacing:-25.298221pt;}
.ws7e{word-spacing:-24.288000pt;}
.ws7f{word-spacing:-24.192000pt;}
.ws1b{word-spacing:-24.048000pt;}
.ws96{word-spacing:-23.808000pt;}
.ws98{word-spacing:-23.712000pt;}
.wsbf{word-spacing:-23.663360pt;}
.ws8a{word-spacing:-22.431090pt;}
.ws1c{word-spacing:-21.984000pt;}
.ws23{word-spacing:-21.888000pt;}
.ws20{word-spacing:-21.792000pt;}
.ws25{word-spacing:-21.696000pt;}
.ws8b{word-spacing:-21.620480pt;}
.ws1d{word-spacing:-21.408000pt;}
.ws48{word-spacing:-21.280000pt;}
.ws24{word-spacing:-21.216000pt;}
.ws1e{word-spacing:-21.120000pt;}
.wsd1{word-spacing:-21.109760pt;}
.ws21{word-spacing:-21.024000pt;}
.ws2d{word-spacing:-20.811520pt;}
.ws18{word-spacing:-20.741760pt;}
.ws22{word-spacing:-20.544000pt;}
.ws2c{word-spacing:-20.175360pt;}
.ws2f{word-spacing:-19.720960pt;}
.ws1f{word-spacing:-19.584000pt;}
.ws44{word-spacing:-19.577600pt;}
.ws3e{word-spacing:-19.492480pt;}
.ws40{word-spacing:-19.407360pt;}
.ws3f{word-spacing:-19.322240pt;}
.ws41{word-spacing:-19.152000pt;}
.ws43{word-spacing:-19.066880pt;}
.ws9c{word-spacing:-19.019520pt;}
.ws95{word-spacing:-18.794880pt;}
.ws8c{word-spacing:-18.385920pt;}
.wsc9{word-spacing:-18.169600pt;}
.ws9d{word-spacing:-18.120960pt;}
.wscf{word-spacing:-18.048000pt;}
.ws42{word-spacing:-17.875200pt;}
.wsd0{word-spacing:-17.664000pt;}
.ws89{word-spacing:-17.406525pt;}
.ws5c{word-spacing:-17.072640pt;}
.ws4d{word-spacing:-16.997760pt;}
.ws4f{word-spacing:-16.773120pt;}
.wsd2{word-spacing:-16.704000pt;}
.ws5b{word-spacing:-16.698240pt;}
.ws4e{word-spacing:-16.623360pt;}
.ws97{word-spacing:-15.744000pt;}
.ws99{word-spacing:-15.014400pt;}
.ws62{word-spacing:-14.720000pt;}
.ws5f{word-spacing:-14.656000pt;}
.ws5d{word-spacing:-14.592000pt;}
.ws60{word-spacing:-14.528000pt;}
.ws61{word-spacing:-14.400000pt;}
.ws9a{word-spacing:-14.366720pt;}
.ws5e{word-spacing:-14.272000pt;}
.ws63{word-spacing:-14.208000pt;}
.ws64{word-spacing:-13.542400pt;}
.ws93{word-spacing:-13.226880pt;}
.ws66{word-spacing:-13.130240pt;}
.ws65{word-spacing:-13.071360pt;}
.ws67{word-spacing:-13.012480pt;}
.ws94{word-spacing:-12.961280pt;}
.ws9b{word-spacing:-11.456000pt;}
.ws3b{word-spacing:-7.695360pt;}
.ws83{word-spacing:-6.048000pt;}
.ws80{word-spacing:-5.363223pt;}
.ws8e{word-spacing:-5.277440pt;}
.ws4a{word-spacing:-4.596480pt;}
.ws3d{word-spacing:-4.055811pt;}
.ws3a{word-spacing:-3.313280pt;}
.wsd5{word-spacing:-3.144960pt;}
.ws4{word-spacing:-3.075840pt;}
.ws50{word-spacing:-2.995200pt;}
.ws35{word-spacing:-2.908160pt;}
.ws3c{word-spacing:-2.816535pt;}
.ws1a{word-spacing:-2.770560pt;}
.wsb4{word-spacing:-2.688000pt;}
.ws37{word-spacing:-2.565120pt;}
.wsb0{word-spacing:-2.560000pt;}
.ws36{word-spacing:-2.544640pt;}
.wsbd{word-spacing:-2.496000pt;}
.ws51{word-spacing:-2.321280pt;}
.ws6e{word-spacing:-2.298240pt;}
.ws8{word-spacing:-2.244480pt;}
.wsbc{word-spacing:-2.208000pt;}
.wsba{word-spacing:-2.176000pt;}
.wsd4{word-spacing:-2.171520pt;}
.wsa9{word-spacing:-2.140567pt;}
.wse{word-spacing:-2.137600pt;}
.wsb7{word-spacing:-2.048000pt;}
.ws28{word-spacing:-1.923840pt;}
.wsb3{word-spacing:-1.920000pt;}
.ws57{word-spacing:-1.872000pt;}
.ws84{word-spacing:-1.824000pt;}
.ws53{word-spacing:-1.722240pt;}
.ws34{word-spacing:-1.635840pt;}
.ws85{word-spacing:-1.632000pt;}
.ws13{word-spacing:-1.603200pt;}
.wsa7{word-spacing:-1.577260pt;}
.ws59{word-spacing:-1.572480pt;}
.wsbb{word-spacing:-1.408000pt;}
.ws81{word-spacing:-1.315508pt;}
.ws29{word-spacing:-1.282560pt;}
.wsb6{word-spacing:-1.280000pt;}
.ws19{word-spacing:-1.276800pt;}
.ws58{word-spacing:-1.272960pt;}
.ws88{word-spacing:-1.248000pt;}
.ws2{word-spacing:-1.196160pt;}
.ws86{word-spacing:-1.152000pt;}
.ws52{word-spacing:-1.048320pt;}
.wsa0{word-spacing:-1.011929pt;}
.ws55{word-spacing:-0.973440pt;}
.wsc5{word-spacing:-0.961920pt;}
.ws82{word-spacing:-0.960000pt;}
.wsa1{word-spacing:-0.898560pt;}
.ws6d{word-spacing:-0.896000pt;}
.wsca{word-spacing:-0.855040pt;}
.ws11{word-spacing:-0.768000pt;}
.ws49{word-spacing:-0.766080pt;}
.wsb5{word-spacing:-0.674619pt;}
.ws17{word-spacing:-0.672000pt;}
.wsb9{word-spacing:-0.640000pt;}
.ws56{word-spacing:-0.599040pt;}
.ws15{word-spacing:-0.595840pt;}
.ws87{word-spacing:-0.576000pt;}
.ws8d{word-spacing:-0.510720pt;}
.ws46{word-spacing:-0.425600pt;}
.wsa8{word-spacing:-0.337984pt;}
.wsb2{word-spacing:-0.320640pt;}
.wsbe{word-spacing:-0.303579pt;}
.ws2a{word-spacing:-0.288000pt;}
.ws33{word-spacing:-0.272640pt;}
.ws6f{word-spacing:-0.269173pt;}
.ws26{word-spacing:-0.245760pt;}
.ws54{word-spacing:-0.224640pt;}
.ws39{word-spacing:-0.213760pt;}
.ws9f{word-spacing:-0.202386pt;}
.ws7b{word-spacing:-0.192000pt;}
.ws4b{word-spacing:-0.170240pt;}
.wsd{word-spacing:-0.160000pt;}
.wsaf{word-spacing:-0.134924pt;}
.wsb8{word-spacing:-0.128000pt;}
.wsc4{word-spacing:-0.106880pt;}
.wsf{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.090880pt;}
.ws68{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.074880pt;}
.ws5{word-spacing:0.096000pt;}
.wsb1{word-spacing:0.106880pt;}
.wsc7{word-spacing:0.149120pt;}
.ws72{word-spacing:0.170240pt;}
.wsc6{word-spacing:0.213760pt;}
.ws6a{word-spacing:0.235520pt;}
.ws45{word-spacing:0.255360pt;}
.ws7c{word-spacing:0.288000pt;}
.ws5a{word-spacing:0.299520pt;}
.ws7{word-spacing:0.340480pt;}
.ws71{word-spacing:0.425600pt;}
.ws27{word-spacing:0.427520pt;}
.ws6c{word-spacing:0.447360pt;}
.ws69{word-spacing:0.448000pt;}
.ws7a{word-spacing:0.480000pt;}
.ws9e{word-spacing:0.505964pt;}
.ws4c{word-spacing:0.510720pt;}
.ws77{word-spacing:0.576000pt;}
.ws79{word-spacing:0.672000pt;}
.ws16{word-spacing:0.680960pt;}
.ws6{word-spacing:0.851200pt;}
.ws74{word-spacing:1.021440pt;}
.ws78{word-spacing:1.152000pt;}
.ws10{word-spacing:1.276800pt;}
.ws47{word-spacing:1.361920pt;}
.ws73{word-spacing:1.447040pt;}
.ws70{word-spacing:1.702400pt;}
.ws8f{word-spacing:1.787520pt;}
.ws14{word-spacing:1.824000pt;}
.wsc0{word-spacing:2.400000pt;}
.ws38{word-spacing:5.450880pt;}
.ws2e{word-spacing:101.149440pt;}
.ws2b{word-spacing:102.512640pt;}
._12{margin-left:-20.946927pt;}
._3c{margin-left:-17.809948pt;}
._3e{margin-left:-15.482511pt;}
._6{margin-left:-13.760000pt;}
._0{margin-left:-12.645120pt;}
._14{margin-left:-11.235101pt;}
._45{margin-left:-9.696000pt;}
._a{margin-left:-8.724480pt;}
._37{margin-left:-7.825583pt;}
._5{margin-left:-6.732160pt;}
._f{margin-left:-5.248000pt;}
._13{margin-left:-4.250101pt;}
._4{margin-left:-2.904960pt;}
._8{margin-left:-1.920000pt;}
._3{margin-left:-1.025280pt;}
._1{width:1.367040pt;}
._2{width:3.075840pt;}
._d{width:4.298428pt;}
._c{width:5.745732pt;}
._19{width:7.064960pt;}
._b{width:8.442240pt;}
._e{width:10.257092pt;}
._46{width:11.669120pt;}
._47{width:47.616000pt;}
._27{width:63.384427pt;}
._1f{width:68.173653pt;}
._7{width:76.300800pt;}
._2a{width:86.027733pt;}
._22{width:86.976000pt;}
._2b{width:90.074133pt;}
._25{width:94.293867pt;}
._20{width:103.248533pt;}
._3a{width:128.552960pt;}
._24{width:131.853333pt;}
._29{width:133.242987pt;}
._16{width:145.201920pt;}
._3d{width:146.137600pt;}
._26{width:147.432960pt;}
._15{width:156.661120pt;}
._30{width:157.666560pt;}
._32{width:170.728960pt;}
._9{width:184.719360pt;}
._33{width:208.837760pt;}
._2f{width:214.657280pt;}
._31{width:216.083200pt;}
._2d{width:252.024533pt;}
._2e{width:259.578133pt;}
._2c{width:260.520960pt;}
._23{width:261.515413pt;}
._39{width:267.265920pt;}
._11{width:272.359680pt;}
._21{width:275.521920pt;}
._10{width:276.764160pt;}
._36{width:286.505600pt;}
._40{width:307.104000pt;}
._1a{width:340.414080pt;}
._28{width:346.743040pt;}
._17{width:359.929600pt;}
._1c{width:407.043840pt;}
._44{width:417.109440pt;}
._38{width:425.984000pt;}
._3b{width:429.184000pt;}
._34{width:430.447360pt;}
._35{width:435.791360pt;}
._41{width:451.211200pt;}
._3f{width:506.208000pt;}
._42{width:524.259840pt;}
._1d{width:537.527680pt;}
._1e{width:546.896000pt;}
._18{width:553.577600pt;}
._1b{width:581.539840pt;}
._43{width:603.035520pt;}
.fs12{font-size:53.120000pt;}
.fsd{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs10{font-size:89.724358pt;}
.fs8{font-size:90.880000pt;}
.fs1{font-size:96.000000pt;}
.fs11{font-size:101.192885pt;}
.fs4{font-size:106.880000pt;}
.fsb{font-size:112.661412pt;}
.fs7{font-size:122.880000pt;}
.fsa{font-size:128.000000pt;}
.fs13{font-size:134.923847pt;}
.fse{font-size:149.120000pt;}
.fs5{font-size:160.000000pt;}
.fs6{font-size:165.120000pt;}
.fs0{font-size:170.880000pt;}
.fs9{font-size:192.000000pt;}
.fsf{font-size:234.880000pt;}
.y17b{bottom:-28.293333pt;}
.y16c{bottom:-27.813333pt;}
.y19a{bottom:-22.613333pt;}
.y187{bottom:-17.733333pt;}
.y1ae{bottom:-14.746667pt;}
.yb1{bottom:-10.773333pt;}
.y162{bottom:-6.853333pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:4.597067pt;}
.y26{bottom:6.640000pt;}
.y6a{bottom:6.720187pt;}
.y199{bottom:6.986667pt;}
.y186{bottom:8.506667pt;}
.y16b{bottom:11.866667pt;}
.y2b{bottom:12.376560pt;}
.y1ad{bottom:14.853333pt;}
.y1bf{bottom:20.033333pt;}
.y106{bottom:21.560533pt;}
.yfb{bottom:22.443600pt;}
.y138{bottom:24.161627pt;}
.y161{bottom:24.506667pt;}
.yb0{bottom:27.626667pt;}
.y198{bottom:29.386667pt;}
.y17a{bottom:31.066667pt;}
.y69{bottom:32.320027pt;}
.y133{bottom:32.750400pt;}
.y121{bottom:33.120000pt;}
.y2a{bottom:34.784400pt;}
.y25{bottom:34.800000pt;}
.y1ac{bottom:37.253333pt;}
.y157{bottom:37.346667pt;}
.ye1{bottom:37.789493pt;}
.y3f{bottom:39.574667pt;}
.y185{bottom:41.435467pt;}
.y1be{bottom:45.153333pt;}
.y7a{bottom:46.522667pt;}
.y137{bottom:46.569467pt;}
.y88{bottom:48.244800pt;}
.y4e{bottom:50.204160pt;}
.y197{bottom:51.146667pt;}
.yfa{bottom:51.859760pt;}
.y16a{bottom:53.786667pt;}
.ybe{bottom:53.798667pt;}
.y83{bottom:55.135467pt;}
.yce{bottom:56.133333pt;}
.y68{bottom:57.919867pt;}
.y1ab{bottom:59.606293pt;}
.y160{bottom:59.888427pt;}
.y24{bottom:60.400320pt;}
.y146{bottom:62.240000pt;}
.ye0{bottom:63.389333pt;}
.yaf{bottom:65.933067pt;}
.y1bd{bottom:67.553333pt;}
.y179{bottom:68.346667pt;}
.y3e{bottom:68.374667pt;}
.y156{bottom:68.706667pt;}
.y105{bottom:68.961813pt;}
.yea{bottom:68.986667pt;}
.yf9{bottom:69.145467pt;}
.y87{bottom:70.802400pt;}
.y120{bottom:71.520000pt;}
.y4d{bottom:71.969920pt;}
.y196{bottom:72.106667pt;}
.y59{bottom:75.445573pt;}
.y5a{bottom:75.456133pt;}
.y116{bottom:76.664667pt;}
.y184{bottom:79.845867pt;}
.y1aa{bottom:82.014133pt;}
.y99{bottom:82.911733pt;}
.ycd{bottom:84.933333pt;}
.y23{bottom:86.000160pt;}
.ydf{bottom:88.989173pt;}
.y1bc{bottom:89.945493pt;}
.y145{bottom:90.400000pt;}
.y169{bottom:96.986667pt;}
.ybd{bottom:96.998667pt;}
.ye9{bottom:97.786667pt;}
.yf8{bottom:98.561627pt;}
.y195{bottom:99.146667pt;}
.y178{bottom:99.706667pt;}
.y91{bottom:101.947467pt;}
.y98{bottom:102.111733pt;}
.y5f{bottom:102.471333pt;}
.y155{bottom:104.106187pt;}
.yae{bottom:104.343467pt;}
.y1a9{bottom:104.421973pt;}
.y72{bottom:107.352533pt;}
.y58{bottom:107.456133pt;}
.y15f{bottom:107.877547pt;}
.y132{bottom:108.270400pt;}
.y11f{bottom:109.920000pt;}
.y22{bottom:111.600320pt;}
.y1bb{bottom:112.321973pt;}
.y3d{bottom:112.990667pt;}
.y4c{bottom:113.729280pt;}
.ycc{bottom:113.733333pt;}
.yde{bottom:114.589013pt;}
.y115{bottom:115.064667pt;}
.yf7{bottom:115.844800pt;}
.y104{bottom:116.363093pt;}
.y183{bottom:118.256267pt;}
.y194{bottom:118.978827pt;}
.y90{bottom:121.147467pt;}
.y97{bottom:121.311733pt;}
.y144{bottom:121.920000pt;}
.y63{bottom:122.198133pt;}
.ye8{bottom:126.586667pt;}
.y1a8{bottom:126.829813pt;}
.y177{bottom:128.506667pt;}
.y71{bottom:132.952533pt;}
.y1ba{bottom:134.729813pt;}
.y4b{bottom:135.495040pt;}
.y21{bottom:137.200160pt;}
.y168{bottom:140.186667pt;}
.ydd{bottom:140.188853pt;}
.ybc{bottom:140.198667pt;}
.y193{bottom:141.386667pt;}
.y3c{bottom:141.790667pt;}
.ycb{bottom:142.533333pt;}
.yad{bottom:142.753867pt;}
.ya{bottom:143.613333pt;}
.y4f{bottom:144.150400pt;}
.y15{bottom:147.920000pt;}
.y82{bottom:148.012800pt;}
.y11e{bottom:148.320000pt;}
.y1a7{bottom:149.237653pt;}
.y131{bottom:151.470400pt;}
.y154{bottom:152.095307pt;}
.yf6{bottom:152.828800pt;}
.y114{bottom:153.464667pt;}
.y15e{bottom:155.866667pt;}
.y182{bottom:156.666667pt;}
.y1b9{bottom:157.137653pt;}
.y176{bottom:157.306667pt;}
.y29{bottom:158.585333pt;}
.y20{bottom:162.800000pt;}
.y103{bottom:163.764373pt;}
.y143{bottom:164.003040pt;}
.y51{bottom:165.016667pt;}
.ydc{bottom:165.788693pt;}
.y136{bottom:165.994400pt;}
.y192{bottom:166.666667pt;}
.y57{bottom:168.878347pt;}
.y3b{bottom:170.590667pt;}
.yca{bottom:171.333333pt;}
.y1a6{bottom:171.645493pt;}
.y86{bottom:172.136400pt;}
.y14e{bottom:177.146667pt;}
.y4a{bottom:177.254400pt;}
.y1b8{bottom:179.545493pt;}
.yac{bottom:181.164267pt;}
.yf5{bottom:181.339067pt;}
.y167{bottom:183.386667pt;}
.ybb{bottom:183.398667pt;}
.y14{bottom:185.840000pt;}
.y175{bottom:186.106667pt;}
.y11d{bottom:186.720000pt;}
.y1f{bottom:189.040000pt;}
.y79{bottom:190.541333pt;}
.ydb{bottom:191.388533pt;}
.y113{bottom:191.864667pt;}
.yf4{bottom:192.859067pt;}
.y1a5{bottom:194.053333pt;}
.y12e{bottom:194.670400pt;}
.y85{bottom:194.694000pt;}
.y191{bottom:195.466667pt;}
.y181{bottom:196.186667pt;}
.y49{bottom:199.020160pt;}
.y3a{bottom:199.390667pt;}
.y153{bottom:200.084427pt;}
.yc9{bottom:200.133333pt;}
.y56{bottom:200.888907pt;}
.y1b7{bottom:201.953333pt;}
.y64{bottom:202.519733pt;}
.y15d{bottom:202.586667pt;}
.y142{bottom:203.520000pt;}
.y14d{bottom:208.506667pt;}
.y8f{bottom:209.388667pt;}
.y96{bottom:209.552933pt;}
.y102{bottom:211.165653pt;}
.y13{bottom:214.640000pt;}
.y174{bottom:215.546667pt;}
.yda{bottom:216.988373pt;}
.y1e{bottom:217.200000pt;}
.y1a4{bottom:217.573333pt;}
.y130{bottom:218.358400pt;}
.yab{bottom:219.574667pt;}
.yf3{bottom:222.273093pt;}
.y190{bottom:224.266667pt;}
.y11c{bottom:225.120000pt;}
.y1b6{bottom:225.473333pt;}
.yba{bottom:226.598667pt;}
.y5c{bottom:227.779467pt;}
.y166{bottom:227.906187pt;}
.y39{bottom:228.190667pt;}
.y8e{bottom:228.588667pt;}
.y95{bottom:228.752933pt;}
.yc8{bottom:228.933333pt;}
.y112{bottom:228.936827pt;}
.y10f{bottom:228.963547pt;}
.yf2{bottom:230.915813pt;}
.y55{bottom:232.899467pt;}
.y12d{bottom:237.870400pt;}
.y180{bottom:239.386667pt;}
.yf1{bottom:239.554400pt;}
.y48{bottom:240.779520pt;}
.y81{bottom:241.055200pt;}
.yd9{bottom:242.588213pt;}
.y1d{bottom:242.800160pt;}
.y14c{bottom:243.884747pt;}
.y1a3{bottom:245.198453pt;}
.y15c{bottom:245.786667pt;}
.y141{bottom:246.720000pt;}
.y173{bottom:246.906667pt;}
.y12f{bottom:247.158400pt;}
.y8d{bottom:247.788667pt;}
.y94{bottom:247.952933pt;}
.y152{bottom:248.073547pt;}
.y12{bottom:248.720000pt;}
.y10c{bottom:249.461333pt;}
.y13c{bottom:252.871013pt;}
.y18f{bottom:253.066667pt;}
.y1b5{bottom:254.273333pt;}
.y38{bottom:256.990667pt;}
.yc7{bottom:257.733333pt;}
.yaa{bottom:257.985067pt;}
.y101{bottom:258.566933pt;}
.y111{bottom:260.947387pt;}
.y10e{bottom:260.974107pt;}
.y74{bottom:262.504133pt;}
.y47{bottom:262.545280pt;}
.y11b{bottom:263.520000pt;}
.y1a2{bottom:267.606293pt;}
.yd8{bottom:268.188053pt;}
.y1c{bottom:268.400000pt;}
.y50{bottom:269.458667pt;}
.yb9{bottom:269.798667pt;}
.y2e{bottom:273.516587pt;}
.y13b{bottom:275.278853pt;}
.y172{bottom:275.706667pt;}
.y165{bottom:275.895307pt;}
.yf0{bottom:276.538400pt;}
.y12a{bottom:281.070400pt;}
.y129{bottom:281.070533pt;}
.y17f{bottom:282.586667pt;}
.y65{bottom:282.945600pt;}
.y18e{bottom:282.985387pt;}
.y1b4{bottom:283.073333pt;}
.y46{bottom:284.311040pt;}
.yc6{bottom:286.533333pt;}
.y5e{bottom:287.050533pt;}
.y10b{bottom:287.861333pt;}
.y15b{bottom:288.986667pt;}
.y140{bottom:289.920000pt;}
.y1a1{bottom:290.014133pt;}
.y14b{bottom:291.873867pt;}
.y11{bottom:291.920000pt;}
.y110{bottom:292.957947pt;}
.y10d{bottom:292.984667pt;}
.yd7{bottom:293.787893pt;}
.y1b{bottom:294.000000pt;}
.y2d{bottom:295.924427pt;}
.y151{bottom:296.062667pt;}
.ya9{bottom:296.395467pt;}
.y13a{bottom:297.686693pt;}
.y11a{bottom:301.920000pt;}
.y9{bottom:303.033333pt;}
.y171{bottom:304.506667pt;}
.y12c{bottom:304.758400pt;}
.yef{bottom:305.050400pt;}
.y77{bottom:305.718933pt;}
.y100{bottom:305.968213pt;}
.y80{bottom:311.534933pt;}
.y1b3{bottom:311.873333pt;}
.y1a0{bottom:312.421973pt;}
.yb8{bottom:312.998667pt;}
.yc5{bottom:315.333333pt;}
.yee{bottom:316.565733pt;}
.y18d{bottom:316.587787pt;}
.y37{bottom:317.278667pt;}
.y2c{bottom:318.332267pt;}
.y1a{bottom:319.600160pt;}
.y139{bottom:320.094533pt;}
.y17e{bottom:320.506667pt;}
.y164{bottom:323.884427pt;}
.y128{bottom:324.270533pt;}
.y54{bottom:326.061707pt;}
.y45{bottom:326.070400pt;}
.y10a{bottom:326.261333pt;}
.y8{bottom:331.024853pt;}
.y15a{bottom:332.186667pt;}
.y13f{bottom:333.120000pt;}
.y170{bottom:333.306667pt;}
.y12b{bottom:333.558400pt;}
.y84{bottom:333.932533pt;}
.y10{bottom:334.000000pt;}
.y7f{bottom:334.092533pt;}
.y76{bottom:334.560000pt;}
.ya8{bottom:334.805867pt;}
.y19f{bottom:334.829813pt;}
.yd6{bottom:336.177653pt;}
.y150{bottom:338.146667pt;}
.y14a{bottom:339.862987pt;}
.y119{bottom:340.320000pt;}
.y9f{bottom:340.501840pt;}
.y1b2{bottom:340.673333pt;}
.yc4{bottom:344.133333pt;}
.y19{bottom:345.201920pt;}
.y36{bottom:346.078667pt;}
.y44{bottom:347.836160pt;}
.y18c{bottom:350.190187pt;}
.y6d{bottom:352.174933pt;}
.y5d{bottom:352.952267pt;}
.yff{bottom:353.369493pt;}
.yed{bottom:353.545067pt;}
.y8c{bottom:355.394000pt;}
.yb7{bottom:356.198667pt;}
.y19e{bottom:357.237653pt;}
.y7{bottom:357.433333pt;}
.y53{bottom:358.072267pt;}
.y9e{bottom:358.268880pt;}
.y17d{bottom:360.666667pt;}
.y188{bottom:361.666667pt;}
.yd5{bottom:361.777493pt;}
.y16f{bottom:362.106667pt;}
.y66{bottom:363.267200pt;}
.y109{bottom:364.661333pt;}
.y125{bottom:367.470400pt;}
.y124{bottom:367.470533pt;}
.y1b1{bottom:369.473333pt;}
.y18{bottom:370.801760pt;}
.y13e{bottom:371.040000pt;}
.y163{bottom:371.873547pt;}
.y14f{bottom:372.546667pt;}
.yc3{bottom:372.933333pt;}
.ya7{bottom:373.216267pt;}
.yf{bottom:373.520000pt;}
.y8b{bottom:374.594000pt;}
.y35{bottom:374.878667pt;}
.ye7{bottom:374.880000pt;}
.y159{bottom:375.386667pt;}
.y9d{bottom:375.874000pt;}
.y6c{bottom:377.774933pt;}
.y118{bottom:378.720000pt;}
.y19d{bottom:379.645493pt;}
.yec{bottom:384.926667pt;}
.y6{bottom:386.233333pt;}
.y149{bottom:387.852107pt;}
.y43{bottom:389.595520pt;}
.yeb{bottom:390.529067pt;}
.y127{bottom:391.158400pt;}
.y16e{bottom:391.546667pt;}
.y17{bottom:397.040000pt;}
.y1b0{bottom:398.273333pt;}
.yb6{bottom:399.398667pt;}
.y13d{bottom:399.840000pt;}
.yfe{bottom:400.770773pt;}
.yc2{bottom:401.733333pt;}
.y19c{bottom:402.053333pt;}
.y18b{bottom:402.194347pt;}
.y108{bottom:404.053333pt;}
.yd4{bottom:404.167253pt;}
.y135{bottom:405.619600pt;}
.y75{bottom:406.522667pt;}
.y28{bottom:406.991200pt;}
.y123{bottom:410.670533pt;}
.ya6{bottom:411.626667pt;}
.ye{bottom:416.720000pt;}
.y117{bottom:417.120000pt;}
.y17c{bottom:419.542027pt;}
.y158{bottom:419.862667pt;}
.y5{bottom:419.876373pt;}
.y126{bottom:419.958400pt;}
.y16d{bottom:424.672267pt;}
.y34{bottom:424.678667pt;}
.y18a{bottom:425.706667pt;}
.y16{bottom:425.840000pt;}
.yd3{bottom:429.767093pt;}
.y148{bottom:429.936107pt;}
.yc1{bottom:430.533333pt;}
.y42{bottom:431.354880pt;}
.y78{bottom:435.363733pt;}
.y52{bottom:441.565867pt;}
.y107{bottom:442.453333pt;}
.yb5{bottom:442.598667pt;}
.y67{bottom:443.693067pt;}
.ye6{bottom:443.866667pt;}
.yfd{bottom:448.172053pt;}
.ya5{bottom:450.026667pt;}
.y41{bottom:453.120640pt;}
.y33{bottom:453.478667pt;}
.y19b{bottom:453.733333pt;}
.y189{bottom:454.506667pt;}
.y7e{bottom:455.109867pt;}
.y1af{bottom:455.233333pt;}
.ye3{bottom:456.666667pt;}
.yc0{bottom:459.333333pt;}
.yd{bottom:461.200000pt;}
.y147{bottom:461.946667pt;}
.y73{bottom:464.111467pt;}
.y9c{bottom:467.118907pt;}
.y5b{bottom:467.325867pt;}
.y4{bottom:471.054933pt;}
.ye5{bottom:472.666667pt;}
.yd2{bottom:475.093493pt;}
.y8a{bottom:476.253600pt;}
.y7d{bottom:477.667467pt;}
.y62{bottom:477.995760pt;}
.y122{bottom:478.686667pt;}
.y93{bottom:482.035200pt;}
.y9b{bottom:484.885947pt;}
.yb4{bottom:485.006667pt;}
.y134{bottom:488.092267pt;}
.ybf{bottom:488.133333pt;}
.ya4{bottom:488.426667pt;}
.ye2{bottom:488.666667pt;}
.y27{bottom:492.585467pt;}
.y32{bottom:492.766667pt;}
.y40{bottom:494.880000pt;}
.yfc{bottom:495.573333pt;}
.y1c0{bottom:496.006667pt;}
.y89{bottom:498.811200pt;}
.yd1{bottom:500.693333pt;}
.y92{bottom:501.235200pt;}
.ye4{bottom:501.466667pt;}
.y9a{bottom:502.491067pt;}
.y61{bottom:503.595600pt;}
.ya2{bottom:508.393333pt;}
.y3{bottom:522.276213pt;}
.ya3{bottom:523.626667pt;}
.yb3{bottom:525.486667pt;}
.y31{bottom:553.400000pt;}
.yb2{bottom:557.006667pt;}
.yc{bottom:564.460000pt;}
.ya1{bottom:568.233333pt;}
.y70{bottom:571.397333pt;}
.y2{bottom:573.454773pt;}
.y30{bottom:581.720000pt;}
.y6f{bottom:596.997333pt;}
.ya0{bottom:606.153333pt;}
.yb{bottom:610.060000pt;}
.y2f{bottom:615.640000pt;}
.y6e{bottom:622.597333pt;}
.y1{bottom:624.633333pt;}
.y7b{bottom:683.840000pt;}
.yd0{bottom:688.840000pt;}
.y60{bottom:689.339867pt;}
.y7c{bottom:689.506667pt;}
.y6b{bottom:689.673200pt;}
.h2a{height:39.840000pt;}
.h1e{height:42.751250pt;}
.h1c{height:46.468750pt;}
.h1b{height:53.746875pt;}
.h18{height:54.368437pt;}
.h16{height:61.096875pt;}
.h1f{height:61.410000pt;}
.h3{height:61.803437pt;}
.h24{height:65.170000pt;}
.he{height:65.231250pt;}
.hf{height:65.985625pt;}
.h23{height:66.666250pt;}
.h1d{height:66.750000pt;}
.h2{height:69.703125pt;}
.h25{height:70.272398pt;}
.h33{height:73.490625pt;}
.h27{height:75.187500pt;}
.hd{height:76.715625pt;}
.ha{height:78.097500pt;}
.h44{height:78.222940pt;}
.h43{height:78.285660pt;}
.h17{height:83.540625pt;}
.h2b{height:88.059551pt;}
.hc{height:88.200000pt;}
.h8{height:88.769820pt;}
.h9{height:88.776220pt;}
.h7{height:88.777500pt;}
.h21{height:91.875000pt;}
.h29{height:94.218750pt;}
.h30{height:94.237417pt;}
.h28{height:99.315283pt;}
.h6{height:100.125000pt;}
.h26{height:100.250000pt;}
.h12{height:104.896875pt;}
.h20{height:107.034375pt;}
.h14{height:110.571015pt;}
.h3f{height:111.314420pt;}
.h40{height:111.385460pt;}
.h3d{height:111.400180pt;}
.h4{height:111.472500pt;}
.h5{height:114.843750pt;}
.h2f{height:116.628350pt;}
.hb{height:118.518750pt;}
.h1{height:124.071562pt;}
.h36{height:125.625000pt;}
.h32{height:128.799230pt;}
.h35{height:132.420377pt;}
.h41{height:133.477600pt;}
.h11{height:133.500000pt;}
.h31{height:140.298750pt;}
.h19{height:144.598837pt;}
.h2c{height:146.353125pt;}
.h3a{height:152.721125pt;}
.h39{height:152.721658pt;}
.h3e{height:155.527500pt;}
.h42{height:155.546060pt;}
.h1a{height:159.769500pt;}
.h34{height:163.370110pt;}
.h22{height:168.590625pt;}
.h10{height:173.170027pt;}
.h3c{height:203.953125pt;}
.h38{height:209.418750pt;}
.h2e{height:213.120000pt;}
.h15{height:216.858400pt;}
.h13{height:239.514740pt;}
.h3b{height:247.473125pt;}
.h2d{height:274.353125pt;}
.h37{height:279.225000pt;}
.h0{height:720.000000pt;}
.w5{width:144.640000pt;}
.w1{width:206.880000pt;}
.w3{width:227.040000pt;}
.w2{width:255.520000pt;}
.w4{width:270.080000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6a{left:7.224400pt;}
.x16{left:9.600000pt;}
.x2e{left:10.515013pt;}
.x78{left:19.069733pt;}
.xad{left:22.707467pt;}
.xa4{left:26.254000pt;}
.xb1{left:27.499600pt;}
.xc9{left:28.600000pt;}
.x31{left:29.968533pt;}
.x66{left:34.781600pt;}
.x63{left:37.829600pt;}
.xb3{left:39.675467pt;}
.x2d{left:44.754533pt;}
.x67{left:49.829600pt;}
.x3b{left:53.043333pt;}
.x33{left:54.233333pt;}
.xa5{left:55.534000pt;}
.x17{left:57.607360pt;}
.x9e{left:61.937200pt;}
.xb6{left:63.515600pt;}
.x32{left:64.473333pt;}
.x77{left:77.149733pt;}
.x2f{left:79.700533pt;}
.x30{left:82.740533pt;}
.x56{left:84.600000pt;}
.x94{left:85.937200pt;}
.x74{left:88.048640pt;}
.x68{left:91.425200pt;}
.xb7{left:96.330000pt;}
.xbc{left:98.766667pt;}
.x75{left:99.752640pt;}
.x5a{left:102.600000pt;}
.x73{left:105.157760pt;}
.x9b{left:107.210533pt;}
.x9c{left:108.170533pt;}
.x3{left:110.433333pt;}
.x45{left:112.564800pt;}
.x57{left:113.880000pt;}
.x55{left:118.766667pt;}
.x49{left:119.866533pt;}
.xb2{left:125.115467pt;}
.x48{left:128.832907pt;}
.x15{left:129.879067pt;}
.x79{left:135.069733pt;}
.x34{left:138.977067pt;}
.x1d{left:140.667867pt;}
.x46{left:141.693120pt;}
.x22{left:145.147867pt;}
.x6e{left:147.234267pt;}
.xca{left:148.599040pt;}
.x58{left:149.880000pt;}
.x23{left:152.335547pt;}
.xb8{left:156.380000pt;}
.xb9{left:158.303333pt;}
.x12{left:159.495067pt;}
.x5c{left:161.505200pt;}
.x7a{left:163.780133pt;}
.x8d{left:167.586933pt;}
.xae{left:170.979467pt;}
.x1b{left:174.288533pt;}
.x9f{left:175.697200pt;}
.x51{left:179.449867pt;}
.xa7{left:183.518400pt;}
.x59{left:188.120000pt;}
.x76{left:191.433333pt;}
.x1f{left:192.825307pt;}
.xbd{left:194.766667pt;}
.x1e{left:197.314267pt;}
.x5b{left:198.576000pt;}
.x1c{left:203.253013pt;}
.x69{left:207.040000pt;}
.x64{left:214.277600pt;}
.xbe{left:218.766667pt;}
.xba{left:221.670533pt;}
.x8e{left:223.152000pt;}
.x7b{left:233.060133pt;}
.x18{left:236.726000pt;}
.xb{left:240.469733pt;}
.xbf{left:242.766667pt;}
.x5d{left:244.887467pt;}
.x3e{left:246.916667pt;}
.x11{left:251.100000pt;}
.x7e{left:252.220400pt;}
.x7d{left:260.212400pt;}
.x13{left:261.207067pt;}
.x41{left:266.806667pt;}
.xa0{left:275.125200pt;}
.x7c{left:278.284400pt;}
.x95{left:283.601867pt;}
.x8c{left:290.766667pt;}
.x6f{left:295.030000pt;}
.xc{left:296.653467pt;}
.x96{left:301.041867pt;}
.xd{left:303.690133pt;}
.xe{left:305.613467pt;}
.x1{left:311.766667pt;}
.x26{left:316.991333pt;}
.x35{left:322.364400pt;}
.x10{left:330.572933pt;}
.xa8{left:331.678400pt;}
.x2b{left:341.103067pt;}
.xc6{left:342.266667pt;}
.xaf{left:358.707467pt;}
.x7f{left:366.764400pt;}
.xf{left:368.980667pt;}
.xa9{left:375.989733pt;}
.x38{left:381.433333pt;}
.x81{left:385.967467pt;}
.xc8{left:390.266667pt;}
.x70{left:394.710000pt;}
.x14{left:406.383067pt;}
.x3d{left:409.706667pt;}
.x4a{left:416.098267pt;}
.x4{left:420.766667pt;}
.x47{left:424.955413pt;}
.x20{left:432.822933pt;}
.x1a{left:434.419600pt;}
.x8f{left:437.072000pt;}
.xc7{left:438.266667pt;}
.x43{left:440.100000pt;}
.x24{left:441.942933pt;}
.x80{left:444.687467pt;}
.xa1{left:446.805200pt;}
.x4b{left:454.355733pt;}
.x3c{left:457.870000pt;}
.x6b{left:462.720000pt;}
.x5{left:468.766667pt;}
.x21{left:469.776693pt;}
.x2c{left:473.600000pt;}
.x44{left:480.266667pt;}
.x6{left:481.566667pt;}
.x5e{left:492.101200pt;}
.x52{left:493.938400pt;}
.x19{left:499.446933pt;}
.x42{left:503.770000pt;}
.x36{left:504.925600pt;}
.x2a{left:507.343467pt;}
.xaa{left:508.469733pt;}
.x6d{left:512.600000pt;}
.x25{left:515.382933pt;}
.xa2{left:517.125333pt;}
.x82{left:520.163867pt;}
.x97{left:524.968533pt;}
.xbb{left:527.433333pt;}
.xa6{left:529.100000pt;}
.x3f{left:532.916667pt;}
.xb0{left:540.123467pt;}
.x8{left:572.933333pt;}
.xab{left:575.342133pt;}
.xa{left:585.733333pt;}
.x29{left:591.553733pt;}
.xb4{left:594.715467pt;}
.xc1{left:604.933333pt;}
.x9d{left:611.766667pt;}
.x71{left:618.984667pt;}
.x2{left:620.600000pt;}
.x9{left:633.733333pt;}
.x40{left:640.246533pt;}
.xb5{left:646.243467pt;}
.xc0{left:650.433333pt;}
.xc2{left:652.909333pt;}
.x28{left:654.234533pt;}
.x5f{left:660.581200pt;}
.x93{left:663.100000pt;}
.x8b{left:668.274267pt;}
.x86{left:669.470000pt;}
.x27{left:671.955333pt;}
.x98{left:682.568667pt;}
.x83{left:684.670000pt;}
.x6c{left:689.920000pt;}
.x90{left:695.783067pt;}
.x65{left:697.133600pt;}
.xc3{left:700.937493pt;}
.x85{left:706.910000pt;}
.xac{left:717.102133pt;}
.x91{left:721.851333pt;}
.xc5{left:724.933333pt;}
.x4c{left:729.440000pt;}
.x60{left:737.445600pt;}
.xc4{left:748.933333pt;}
.x50{left:751.689840pt;}
.x4e{left:753.283280pt;}
.x39{left:760.943333pt;}
.x7{left:765.286667pt;}
.x61{left:766.245600pt;}
.x4d{left:768.652400pt;}
.x4f{left:775.052400pt;}
.x3a{left:778.223333pt;}
.x99{left:785.930533pt;}
.x37{left:788.680133pt;}
.x84{left:791.710000pt;}
.x87{left:806.910000pt;}
.x88{left:815.360000pt;}
.x8a{left:822.492400pt;}
.x53{left:848.668400pt;}
.x54{left:849.613867pt;}
.x62{left:883.685600pt;}
.x72{left:888.325600pt;}
.x9a{left:907.850533pt;}
.xa3{left:920.974000pt;}
.x92{left:942.811333pt;}
.x89{left:951.026267pt;}
}




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