
    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_27d1f458cb644760e9110379.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_d5fa478d4d694a6938773af2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_eeb8eabf58fea6c4a6b8b66b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_c174119398b4bd2319c570ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2796a7d117cc363a48e55d8e.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_18e5d7945c564a1a330bb185.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_2cded6e414b8902edeba5533.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_8ff0abe4899c8e7cab0a7b5b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_301584738b8b4b5a3ba10c58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.518000;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_8f3311c7523e4fa54f8a416a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.794000;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_46e9e3b5f14564ebc204fccb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.800000;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_b7ba3290cd65c723d697dd52.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.106000;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_f44cb0d217e5dd462c6e76f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_02e4516bd2c4f7734c9ba6a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.723000;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_27d25271ec52c34a72a56918.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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_81bcec13993adf6e48496991.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.vd{vertical-align:-68.592573px;}
.v11{vertical-align:-16.061994px;}
.v10{vertical-align:-14.700954px;}
.v1{vertical-align:-8.400957px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:6.299997px;}
.v6{vertical-align:9.095576px;}
.v14{vertical-align:11.129036px;}
.ve{vertical-align:14.698134px;}
.v13{vertical-align:16.365953px;}
.v5{vertical-align:17.496533px;}
.v12{vertical-align:20.953132px;}
.v2{vertical-align:23.796530px;}
.v9{vertical-align:28.698709px;}
.va{vertical-align:34.295626px;}
.v7{vertical-align:38.497485px;}
.vc{vertical-align:39.898124px;}
.v8{vertical-align:43.399663px;}
.vb{vertical-align:67.896573px;}
.v4{vertical-align:69.305792px;}
.v3{vertical-align:83.297967px;}
.ls0{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.022460px;}
.ls81{letter-spacing:0.025280px;}
.ls84{letter-spacing:0.028040px;}
.ls7d{letter-spacing:0.030860px;}
.ls1c{letter-spacing:0.053183px;}
.ls1a{letter-spacing:0.056003px;}
.lsc{letter-spacing:0.068522px;}
.ls88{letter-spacing:0.070738px;}
.ls17{letter-spacing:0.071282px;}
.ls8{letter-spacing:0.076922px;}
.ls2c{letter-spacing:0.126054px;}
.ls28{letter-spacing:0.128874px;}
.ls6d{letter-spacing:0.169076px;}
.ls6a{letter-spacing:0.171896px;}
.ls7b{letter-spacing:0.192633px;}
.ls83{letter-spacing:0.198273px;}
.ls19{letter-spacing:0.231109px;}
.ls15{letter-spacing:0.247909px;}
.ls41{letter-spacing:0.264629px;}
.ls9{letter-spacing:0.270269px;}
.ls3{letter-spacing:0.278729px;}
.ls58{letter-spacing:0.482219px;}
.ls75{letter-spacing:0.610853px;}
.lse{letter-spacing:0.796229px;}
.ls3d{letter-spacing:1.341323px;}
.ls87{letter-spacing:1.484698px;}
.ls7c{letter-spacing:1.490278px;}
.ls89{letter-spacing:1.493098px;}
.ls27{letter-spacing:1.511678px;}
.ls48{letter-spacing:1.644838px;}
.ls3f{letter-spacing:2.199143px;}
.ls5a{letter-spacing:2.200678px;}
.ls22{letter-spacing:2.349475px;}
.ls2d{letter-spacing:2.352295px;}
.ls32{letter-spacing:2.355115px;}
.ls20{letter-spacing:2.357935px;}
.ls85{letter-spacing:2.440902px;}
.ls82{letter-spacing:2.449302px;}
.ls77{letter-spacing:2.638607px;}
.ls35{letter-spacing:2.749022px;}
.ls38{letter-spacing:2.751842px;}
.ls42{letter-spacing:2.754662px;}
.ls36{letter-spacing:2.757482px;}
.lsa{letter-spacing:2.775846px;}
.ls1d{letter-spacing:2.778666px;}
.ls18{letter-spacing:2.781486px;}
.ls78{letter-spacing:2.794174px;}
.ls8d{letter-spacing:2.799814px;}
.ls8c{letter-spacing:2.800177px;}
.ls73{letter-spacing:2.800782px;}
.ls8b{letter-spacing:2.802113px;}
.ls8e{letter-spacing:2.802928px;}
.ls39{letter-spacing:2.852730px;}
.ls7a{letter-spacing:2.875711px;}
.ls2{letter-spacing:3.072043px;}
.ls6{letter-spacing:3.074803px;}
.lsb{letter-spacing:3.080443px;}
.ls7e{letter-spacing:3.096222px;}
.ls86{letter-spacing:3.099042px;}
.ls8a{letter-spacing:3.101802px;}
.ls80{letter-spacing:3.104622px;}
.ls29{letter-spacing:3.160856px;}
.ls6e{letter-spacing:3.163676px;}
.ls31{letter-spacing:3.166496px;}
.ls6b{letter-spacing:3.169316px;}
.ls4c{letter-spacing:3.748524px;}
.ls69{letter-spacing:3.942628px;}
.ls63{letter-spacing:4.191692px;}
.ls56{letter-spacing:4.194512px;}
.ls10{letter-spacing:4.404368px;}
.ls1e{letter-spacing:4.410008px;}
.ls7{letter-spacing:4.476927px;}
.ls16{letter-spacing:4.485387px;}
.ls79{letter-spacing:4.588328px;}
.ls71{letter-spacing:4.892217px;}
.ls14{letter-spacing:4.899541px;}
.ls1{letter-spacing:4.902361px;}
.ls12{letter-spacing:4.905181px;}
.ls5{letter-spacing:4.908001px;}
.ls3b{letter-spacing:4.908087px;}
.ls21{letter-spacing:5.542608px;}
.ls24{letter-spacing:5.548248px;}
.ls30{letter-spacing:6.386692px;}
.ls1f{letter-spacing:6.529840px;}
.ls45{letter-spacing:6.632075px;}
.ls76{letter-spacing:7.895753px;}
.ls67{letter-spacing:9.739746px;}
.ls54{letter-spacing:9.742566px;}
.ls68{letter-spacing:9.745386px;}
.ls61{letter-spacing:9.748206px;}
.ls37{letter-spacing:9.769719px;}
.ls53{letter-spacing:12.543845px;}
.ls6c{letter-spacing:12.553378px;}
.ls2b{letter-spacing:12.881615px;}
.ls4b{letter-spacing:12.887255px;}
.ls2a{letter-spacing:13.096575px;}
.ls60{letter-spacing:13.246924px;}
.ls5e{letter-spacing:13.587574px;}
.ls66{letter-spacing:14.447303px;}
.ls47{letter-spacing:15.640792px;}
.ls50{letter-spacing:15.682833px;}
.ls49{letter-spacing:16.052157px;}
.ls46{letter-spacing:16.383033px;}
.ls5c{letter-spacing:16.386033px;}
.ls5f{letter-spacing:16.542622px;}
.ls55{letter-spacing:16.679428px;}
.ls5d{letter-spacing:16.794507px;}
.ls2f{letter-spacing:16.931057px;}
.ls4a{letter-spacing:17.043199px;}
.ls40{letter-spacing:17.190471px;}
.ls52{letter-spacing:17.242942px;}
.ls13{letter-spacing:17.295673px;}
.ls51{letter-spacing:17.497647px;}
.ls34{letter-spacing:17.887971px;}
.ls62{letter-spacing:17.938109px;}
.ls74{letter-spacing:18.448249px;}
.ls4d{letter-spacing:18.558172px;}
.lsf{letter-spacing:20.275259px;}
.ls4f{letter-spacing:20.298926px;}
.ls33{letter-spacing:21.489071px;}
.ls3c{letter-spacing:21.747322px;}
.ls70{letter-spacing:22.536375px;}
.ls65{letter-spacing:24.938427px;}
.ls59{letter-spacing:25.772244px;}
.ls26{letter-spacing:26.182229px;}
.ls72{letter-spacing:26.259946px;}
.ls4e{letter-spacing:27.530247px;}
.ls44{letter-spacing:29.631446px;}
.ls25{letter-spacing:30.590348px;}
.ls11{letter-spacing:31.029446px;}
.ls4{letter-spacing:32.177874px;}
.ls5b{letter-spacing:33.596540px;}
.ls3e{letter-spacing:34.276074px;}
.ls64{letter-spacing:285.524956px;}
.ls57{letter-spacing:287.623155px;}
.ls3a{letter-spacing:304.416548px;}
.ls2e{letter-spacing:347.125604px;}
.ls6f{letter-spacing:354.666178px;}
.ls1b{letter-spacing:404.552725px;}
.ls43{letter-spacing:482.906277px;}
.lsd{letter-spacing:489.945891px;}
.ls23{letter-spacing:514.255914px;}
.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;}
}
.wsc{word-spacing:-40.637472px;}
.ws4{word-spacing:-32.309848px;}
.ws1{word-spacing:-29.247028px;}
.ws0{word-spacing:-29.246470px;}
.wsaf{word-spacing:-29.120761px;}
.ws5f{word-spacing:-29.055618px;}
.ws17{word-spacing:-28.046341px;}
.ws18{word-spacing:-27.337617px;}
.ws10{word-spacing:-27.329406px;}
.ws1d{word-spacing:-25.847952px;}
.wsf{word-spacing:-24.547334px;}
.ws165{word-spacing:-23.244561px;}
.ws15{word-spacing:-23.145629px;}
.ws1b{word-spacing:-22.445012px;}
.ws68{word-spacing:-21.828731px;}
.ws16{word-spacing:-21.744133px;}
.ws13{word-spacing:-21.048485px;}
.ws129{word-spacing:-20.678421px;}
.ws14e{word-spacing:-20.437083px;}
.ws1f{word-spacing:-20.408724px;}
.ws114{word-spacing:-20.408666px;}
.ws3f{word-spacing:-19.745579px;}
.ws41{word-spacing:-19.712319px;}
.ws8f{word-spacing:-19.712203px;}
.ws61{word-spacing:-19.711332px;}
.wsb1{word-spacing:-19.711099px;}
.ws5b{word-spacing:-19.702615px;}
.ws14d{word-spacing:-19.702382px;}
.ws14{word-spacing:-19.630933px;}
.ws75{word-spacing:-19.351042px;}
.ws57{word-spacing:-19.008302px;}
.wsbc{word-spacing:-19.008244px;}
.ws42{word-spacing:-19.008127px;}
.ws49{word-spacing:-18.999353px;}
.ws123{word-spacing:-18.319567px;}
.wsd9{word-spacing:-18.310967px;}
.ws2d{word-spacing:-18.310909px;}
.ws50{word-spacing:-18.310793px;}
.ws118{word-spacing:-18.310734px;}
.wse1{word-spacing:-18.310618px;}
.ws69{word-spacing:-18.301146px;}
.ws140{word-spacing:-18.101893px;}
.ws40{word-spacing:-17.886116px;}
.wsef{word-spacing:-17.632809px;}
.wsbf{word-spacing:-17.614388px;}
.ws90{word-spacing:-17.613458px;}
.wsed{word-spacing:-17.604857px;}
.ws11{word-spacing:-17.544300px;}
.wsa1{word-spacing:-16.910893px;}
.ws11f{word-spacing:-16.910719px;}
.ws117{word-spacing:-16.910544px;}
.ws20{word-spacing:-16.910370px;}
.ws67{word-spacing:-16.910254px;}
.ws120{word-spacing:-16.901537px;}
.ws7c{word-spacing:-16.249042px;}
.wsa0{word-spacing:-16.217983px;}
.ws88{word-spacing:-16.214023px;}
.ws7d{word-spacing:-16.213907px;}
.ws121{word-spacing:-16.213209px;}
.ws102{word-spacing:-16.213035px;}
.ws4a{word-spacing:-16.212861px;}
.ws3e{word-spacing:-16.204260px;}
.wse{word-spacing:-16.139980px;}
.ws7b{word-spacing:-15.620261px;}
.wsd8{word-spacing:-15.559701px;}
.ws55{word-spacing:-15.538189px;}
.ws86{word-spacing:-15.537877px;}
.ws47{word-spacing:-15.510063px;}
.wsbd{word-spacing:-15.509947px;}
.ws34{word-spacing:-15.509889px;}
.ws87{word-spacing:-15.509831px;}
.wsf0{word-spacing:-15.509715px;}
.wsb9{word-spacing:-15.500998px;}
.wse4{word-spacing:-15.500940px;}
.ws33{word-spacing:-15.500068px;}
.wsd4{word-spacing:-15.499894px;}
.wsbb{word-spacing:-14.885059px;}
.ws103{word-spacing:-14.882623px;}
.wsd7{word-spacing:-14.841029px;}
.wsca{word-spacing:-14.833140px;}
.wsc6{word-spacing:-14.821445px;}
.wsd2{word-spacing:-14.813310px;}
.ws58{word-spacing:-14.813135px;}
.wsa7{word-spacing:-14.812729px;}
.ws5e{word-spacing:-14.812554px;}
.ws62{word-spacing:-14.812496px;}
.wse5{word-spacing:-14.812380px;}
.wsf3{word-spacing:-14.803721px;}
.ws24{word-spacing:-14.803605px;}
.wscd{word-spacing:-14.802908px;}
.ws12{word-spacing:-14.746486px;}
.ws142{word-spacing:-14.611870px;}
.ws6d{word-spacing:-14.137650px;}
.ws21{word-spacing:-14.118357px;}
.ws106{word-spacing:-14.118241px;}
.wsa5{word-spacing:-14.109815px;}
.ws95{word-spacing:-14.109641px;}
.ws38{word-spacing:-14.109466px;}
.ws63{word-spacing:-14.109408px;}
.ws29{word-spacing:-14.109350px;}
.wsb{word-spacing:-14.109292px;}
.wsd5{word-spacing:-14.100692px;}
.ws155{word-spacing:-14.099936px;}
.wsd{word-spacing:-14.045451px;}
.ws135{word-spacing:-13.943292px;}
.ws148{word-spacing:-13.939324px;}
.ws9{word-spacing:-13.849317px;}
.ws5{word-spacing:-13.845801px;}
.ws2{word-spacing:-13.834998px;}
.ws7a{word-spacing:-13.545695px;}
.wsf6{word-spacing:-13.440606px;}
.ws85{word-spacing:-13.440548px;}
.ws30{word-spacing:-13.440432px;}
.ws71{word-spacing:-13.431599px;}
.wsaa{word-spacing:-13.425497px;}
.wsd3{word-spacing:-13.422124px;}
.wsbe{word-spacing:-13.421081px;}
.ws2a{word-spacing:-13.421023px;}
.ws59{word-spacing:-13.420906px;}
.ws14b{word-spacing:-13.412945px;}
.wsa6{word-spacing:-13.412655px;}
.ws8{word-spacing:-13.412480px;}
.ws6{word-spacing:-13.412306px;}
.wsa{word-spacing:-13.412132px;}
.ws3{word-spacing:-13.412073px;}
.ws7{word-spacing:-13.411957px;}
.wsd1{word-spacing:-13.408009px;}
.ws45{word-spacing:-13.403357px;}
.ws35{word-spacing:-13.403299px;}
.ws31{word-spacing:-13.403241px;}
.ws3a{word-spacing:-13.403182px;}
.wsf7{word-spacing:-13.402369px;}
.ws22{word-spacing:-13.402311px;}
.ws127{word-spacing:-13.257256px;}
.ws10d{word-spacing:-13.250993px;}
.ws171{word-spacing:-13.249400px;}
.ws125{word-spacing:-13.239955px;}
.ws10b{word-spacing:-13.234432px;}
.ws43{word-spacing:-12.727465px;}
.ws66{word-spacing:-12.717993px;}
.wsdb{word-spacing:-12.717818px;}
.ws78{word-spacing:-12.717702px;}
.ws3c{word-spacing:-12.709160px;}
.ws2e{word-spacing:-12.709044px;}
.ws56{word-spacing:-12.708986px;}
.wsc3{word-spacing:-12.708927px;}
.ws3d{word-spacing:-12.708811px;}
.ws82{word-spacing:-12.700095px;}
.ws6a{word-spacing:-12.700036px;}
.wsb8{word-spacing:-12.699978px;}
.ws109{word-spacing:-12.548804px;}
.ws16d{word-spacing:-12.539557px;}
.wscc{word-spacing:-12.093337px;}
.wsa2{word-spacing:-12.020484px;}
.ws115{word-spacing:-12.012581px;}
.ws36{word-spacing:-12.012406px;}
.wse3{word-spacing:-12.011709px;}
.ws32{word-spacing:-12.011651px;}
.wsc4{word-spacing:-12.011593px;}
.wsac{word-spacing:-12.011535px;}
.ws12f{word-spacing:-12.011302px;}
.wsc2{word-spacing:-12.002818px;}
.ws23{word-spacing:-12.002702px;}
.ws1a{word-spacing:-11.948411px;}
.ws184{word-spacing:-11.850821px;}
.wsba{word-spacing:-11.397362px;}
.wsde{word-spacing:-11.342500px;}
.wsa9{word-spacing:-11.317338px;}
.ws133{word-spacing:-11.314548px;}
.ws13e{word-spacing:-11.314374px;}
.wsf5{word-spacing:-11.314258px;}
.ws8d{word-spacing:-11.308563px;}
.ws101{word-spacing:-11.308389px;}
.ws7e{word-spacing:-11.299788px;}
.ws16b{word-spacing:-11.218693px;}
.ws119{word-spacing:-11.162635px;}
.ws134{word-spacing:-10.866473px;}
.wsc0{word-spacing:-10.855237px;}
.ws39{word-spacing:-10.620003px;}
.ws131{word-spacing:-10.612100px;}
.wsa4{word-spacing:-10.611925px;}
.wsea{word-spacing:-10.611751px;}
.ws60{word-spacing:-10.611228px;}
.ws9a{word-spacing:-10.611054px;}
.wsce{word-spacing:-10.606786px;}
.ws14a{word-spacing:-10.602279px;}
.ws19{word-spacing:-10.513024px;}
.ws175{word-spacing:-10.451638px;}
.ws167{word-spacing:-10.450894px;}
.ws124{word-spacing:-10.443688px;}
.wsf8{word-spacing:-10.443642px;}
.wsf9{word-spacing:-10.173374px;}
.ws13c{word-spacing:-10.157902px;}
.wscb{word-spacing:-10.157786px;}
.ws10a{word-spacing:-10.139111px;}
.wsab{word-spacing:-10.129428px;}
.wse0{word-spacing:-9.942193px;}
.wscf{word-spacing:-9.933419px;}
.wsb7{word-spacing:-9.933302px;}
.wsa3{word-spacing:-9.922726px;}
.wse9{word-spacing:-9.917986px;}
.ws54{word-spacing:-9.913893px;}
.ws46{word-spacing:-9.913545px;}
.ws122{word-spacing:-9.905118px;}
.wsdc{word-spacing:-9.904944px;}
.wsfd{word-spacing:-9.749559px;}
.ws178{word-spacing:-9.749001px;}
.ws15b{word-spacing:-9.748862px;}
.ws162{word-spacing:-9.748676px;}
.wse8{word-spacing:-9.744092px;}
.ws108{word-spacing:-9.741563px;}
.ws11b{word-spacing:-9.674363px;}
.wsae{word-spacing:-9.581323px;}
.ws128{word-spacing:-9.486412px;}
.ws126{word-spacing:-9.485556px;}
.ws10e{word-spacing:-9.479568px;}
.wsb5{word-spacing:-9.474224px;}
.ws73{word-spacing:-9.473294px;}
.ws145{word-spacing:-9.465501px;}
.ws81{word-spacing:-9.459583px;}
.ws11e{word-spacing:-9.445982px;}
.wsff{word-spacing:-9.445807px;}
.ws16c{word-spacing:-9.246733px;}
.ws70{word-spacing:-9.228994px;}
.wsa8{word-spacing:-9.219580px;}
.wse2{word-spacing:-9.210805px;}
.ws5d{word-spacing:-9.210689px;}
.ws37{word-spacing:-9.210631px;}
.ws6c{word-spacing:-9.201798px;}
.ws8e{word-spacing:-9.201740px;}
.wsf4{word-spacing:-9.201624px;}
.wseb{word-spacing:-9.201275px;}
.ws16f{word-spacing:-9.069284px;}
.wsfe{word-spacing:-9.061706px;}
.wsfc{word-spacing:-9.052036px;}
.ws13b{word-spacing:-9.051525px;}
.ws173{word-spacing:-9.051339px;}
.ws17d{word-spacing:-9.047666px;}
.ws164{word-spacing:-9.047480px;}
.ws11d{word-spacing:-9.046783px;}
.wsfb{word-spacing:-9.046690px;}
.ws52{word-spacing:-9.039763px;}
.ws10c{word-spacing:-8.786469px;}
.ws97{word-spacing:-8.766080px;}
.wsdf{word-spacing:-8.720172px;}
.ws153{word-spacing:-8.532822px;}
.ws156{word-spacing:-8.522245px;}
.ws80{word-spacing:-8.514168px;}
.ws116{word-spacing:-8.513354px;}
.ws100{word-spacing:-8.513296px;}
.ws4c{word-spacing:-8.513122px;}
.ws93{word-spacing:-8.504521px;}
.ws16e{word-spacing:-8.393897px;}
.ws11c{word-spacing:-8.349632px;}
.wsb4{word-spacing:-8.349446px;}
.ws15a{word-spacing:-8.349260px;}
.ws72{word-spacing:-8.342333px;}
.ws96{word-spacing:-8.334523px;}
.ws147{word-spacing:-8.075090px;}
.ws3b{word-spacing:-8.036738px;}
.ws166{word-spacing:-7.870004px;}
.ws7f{word-spacing:-7.846545px;}
.wsb0{word-spacing:-7.838625px;}
.ws158{word-spacing:-7.838450px;}
.ws113{word-spacing:-7.819041px;}
.ws48{word-spacing:-7.810150px;}
.wsf2{word-spacing:-7.810092px;}
.ws76{word-spacing:-7.801201px;}
.ws179{word-spacing:-7.647553px;}
.ws136{word-spacing:-7.384800px;}
.ws146{word-spacing:-7.362768px;}
.ws144{word-spacing:-7.141232px;}
.ws107{word-spacing:-7.141116px;}
.wsda{word-spacing:-7.113513px;}
.ws65{word-spacing:-7.112815px;}
.ws9c{word-spacing:-7.107004px;}
.wsc7{word-spacing:-7.103982px;}
.ws176{word-spacing:-7.011917px;}
.ws17a{word-spacing:-6.950774px;}
.ws17c{word-spacing:-6.950217px;}
.ws17f{word-spacing:-6.470960px;}
.ws8b{word-spacing:-6.467215px;}
.ws185{word-spacing:-6.447948px;}
.wsc9{word-spacing:-6.437330px;}
.wsc1{word-spacing:-6.429195px;}
.ws99{word-spacing:-6.410425px;}
.ws151{word-spacing:-6.409902px;}
.ws92{word-spacing:-6.409728px;}
.ws6f{word-spacing:-6.409669px;}
.ws4d{word-spacing:-6.409553px;}
.ws83{word-spacing:-6.400720px;}
.ws163{word-spacing:-6.248184px;}
.ws17e{word-spacing:-5.767859px;}
.ws159{word-spacing:-5.746055px;}
.ws14f{word-spacing:-5.740519px;}
.ws5a{word-spacing:-5.721167px;}
.ws161{word-spacing:-5.716163px;}
.ws4f{word-spacing:-5.712393px;}
.ws25{word-spacing:-5.712276px;}
.wsd0{word-spacing:-5.712218px;}
.ws44{word-spacing:-5.702688px;}
.ws13a{word-spacing:-5.550848px;}
.ws172{word-spacing:-5.066849px;}
.ws177{word-spacing:-5.044349px;}
.ws13f{word-spacing:-5.037663px;}
.ws27{word-spacing:-5.018138px;}
.ws2b{word-spacing:-5.018022px;}
.ws182{word-spacing:-5.014270px;}
.wsf1{word-spacing:-5.008898px;}
.ws150{word-spacing:-5.000123px;}
.ws174{word-spacing:-4.848955px;}
.ws91{word-spacing:-4.320745px;}
.ws4e{word-spacing:-4.311738px;}
.ws94{word-spacing:-4.302963px;}
.ws79{word-spacing:-4.147980px;}
.wse7{word-spacing:-3.670870px;}
.ws9e{word-spacing:-3.642935px;}
.ws104{word-spacing:-3.642064px;}
.wsad{word-spacing:-3.642006px;}
.ws157{word-spacing:-3.623759px;}
.wsc8{word-spacing:-3.618200px;}
.ws98{word-spacing:-3.614635px;}
.ws6b{word-spacing:-3.604756px;}
.ws169{word-spacing:-3.472412px;}
.ws15f{word-spacing:-3.449725px;}
.ws170{word-spacing:-3.449353px;}
.ws89{word-spacing:-3.444834px;}
.ws9b{word-spacing:-3.444776px;}
.ws141{word-spacing:-3.222409px;}
.wsb3{word-spacing:-2.938860px;}
.ws9d{word-spacing:-2.914789px;}
.wsdd{word-spacing:-2.911489px;}
.ws77{word-spacing:-2.911315px;}
.wse6{word-spacing:-2.902714px;}
.ws84{word-spacing:-2.902540px;}
.ws154{word-spacing:-2.901262px;}
.ws183{word-spacing:-2.747647px;}
.ws28{word-spacing:-2.223045px;}
.ws17b{word-spacing:-2.222180px;}
.wsb6{word-spacing:-2.213980px;}
.ws2f{word-spacing:-2.204334px;}
.ws180{word-spacing:-2.050310px;}
.ws15e{word-spacing:-2.050170px;}
.wsd6{word-spacing:-1.904382px;}
.ws74{word-spacing:-1.539192px;}
.ws4b{word-spacing:-1.520016px;}
.ws105{word-spacing:-1.516371px;}
.ws26{word-spacing:-1.510892px;}
.ws160{word-spacing:-0.868649px;}
.ws51{word-spacing:-0.813732px;}
.ws1c{word-spacing:-0.813615px;}
.ws2c{word-spacing:-0.813557px;}
.ws13d{word-spacing:-0.813499px;}
.wsb2{word-spacing:-0.813383px;}
.wsc5{word-spacing:-0.803853px;}
.ws16a{word-spacing:-0.650755px;}
.ws9f{word-spacing:-0.595315px;}
.ws168{word-spacing:-0.159737px;}
.wsee{word-spacing:-0.110586px;}
.ws14c{word-spacing:-0.110469px;}
.wsec{word-spacing:-0.110237px;}
.ws5c{word-spacing:0.000000px;}
.ws143{word-spacing:0.586807px;}
.ws64{word-spacing:0.586923px;}
.ws152{word-spacing:1.959046px;}
.ws132{word-spacing:1.987346px;}
.ws6e{word-spacing:1.996005px;}
.ws181{word-spacing:2.147844px;}
.ws130{word-spacing:2.693804px;}
.ws1e{word-spacing:3.397648px;}
.ws15c{word-spacing:3.532290px;}
.ws53{word-spacing:4.084987px;}
.ws8a{word-spacing:9.527762px;}
.ws8c{word-spacing:10.230185px;}
.ws15d{word-spacing:12.439048px;}
.ws149{word-spacing:46.239029px;}
.ws10f{word-spacing:46.256192px;}
.ws12b{word-spacing:48.342726px;}
.ws112{word-spacing:51.146883px;}
.ws111{word-spacing:51.152883px;}
.ws12a{word-spacing:52.559101px;}
.ws12c{word-spacing:56.032225px;}
.ws11a{word-spacing:58.128304px;}
.ws110{word-spacing:60.249069px;}
.ws12d{word-spacing:83.342870px;}
.ws12e{word-spacing:83.348870px;}
.ws138{word-spacing:176.440828px;}
.wsfa{word-spacing:181.306151px;}
.ws137{word-spacing:187.637393px;}
.ws139{word-spacing:188.338823px;}
._5{margin-left:-24.494504px;}
._4a{margin-left:-19.602092px;}
._1f{margin-left:-9.894526px;}
._21{margin-left:-7.662838px;}
._6{margin-left:-6.219815px;}
._f{margin-left:-4.863400px;}
._3{margin-left:-3.524331px;}
._0{margin-left:-1.456438px;}
._19{width:1.002253px;}
._13{width:2.049328px;}
._4{width:3.533511px;}
._49{width:4.841895px;}
._1e{width:6.610967px;}
._3e{width:10.831730px;}
._a{width:11.880854px;}
._20{width:12.942445px;}
._10{width:14.016862px;}
._1a{width:15.037275px;}
._11{width:16.098746px;}
._9{width:17.500624px;}
._e{width:18.936990px;}
._7{width:20.332724px;}
._b{width:21.716128px;}
._18{width:23.021730px;}
._c{width:24.520277px;}
._8{width:25.899197px;}
._d{width:27.422063px;}
._15{width:28.746583px;}
._12{width:30.053482px;}
._17{width:31.502218px;}
._14{width:32.996043px;}
._16{width:34.211776px;}
._1b{width:35.826558px;}
._42{width:40.599675px;}
._48{width:47.637040px;}
._2{width:49.758238px;}
._1{width:51.289801px;}
._3f{width:70.704232px;}
._25{width:73.487334px;}
._1c{width:75.661215px;}
._27{width:79.096021px;}
._26{width:80.485246px;}
._33{width:82.101584px;}
._45{width:86.788873px;}
._34{width:88.893998px;}
._2f{width:95.888827px;}
._28{width:100.092675px;}
._35{width:105.001427px;}
._32{width:107.793392px;}
._2b{width:111.992792px;}
._24{width:114.117580px;}
._36{width:115.608266px;}
._1d{width:119.043900px;}
._3b{width:120.393387px;}
._29{width:123.889865px;}
._43{width:127.393086px;}
._2e{width:130.191383px;}
._37{width:132.993353px;}
._2a{width:138.590781px;}
._31{width:141.388608px;}
._44{width:148.389917px;}
._38{width:149.789370px;}
._39{width:152.588804px;}
._46{width:154.685368px;}
._3a{width:160.989371px;}
._2d{width:163.091365px;}
._30{width:165.191169px;}
._47{width:172.206759px;}
._2c{width:174.287360px;}
._22{width:176.385204px;}
._3c{width:179.884788px;}
._23{width:182.020535px;}
._3d{width:192.490783px;}
._40{width:227.487344px;}
._41{width:250.581905px;}
.fc2{color:transparent;}
.fc3{color:rgb(68,64,65);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:27.179749px;}
.fsa{font-size:29.445828px;}
.fs9{font-size:34.799866px;}
.fs7{font-size:37.191405px;}
.fsc{font-size:38.051745px;}
.fs8{font-size:40.153364px;}
.fs6{font-size:40.677764px;}
.fs4{font-size:46.489121px;}
.fs3{font-size:52.300479px;}
.fsb{font-size:54.360038px;}
.fs2{font-size:58.111237px;}
.fs1{font-size:63.922774px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:139.468144px;}
.y0{bottom:0.000000px;}
.y61{bottom:10.329150px;}
.y5c{bottom:25.495350px;}
.y60{bottom:34.779150px;}
.y1{bottom:54.099900px;}
.y5f{bottom:59.229150px;}
.y5e{bottom:83.679150px;}
.y5d{bottom:108.129150px;}
.y32{bottom:110.217219px;}
.y152{bottom:110.217984px;}
.y9a{bottom:110.219649px;}
.yed{bottom:110.220894px;}
.y5b{bottom:110.221110px;}
.y1a2{bottom:110.221584px;}
.y124{bottom:110.222604px;}
.yca{bottom:113.722268px;}
.y31{bottom:127.540862px;}
.y151{bottom:127.542977px;}
.y1a1{bottom:127.544477px;}
.y99{bottom:127.544642px;}
.yec{bottom:127.545887px;}
.y5a{bottom:127.546103px;}
.y123{bottom:127.547597px;}
.y180{bottom:136.469024px;}
.y30{bottom:145.040305px;}
.y98{bottom:145.041925px;}
.y150{bottom:145.042420px;}
.y1a0{bottom:145.043170px;}
.y122{bottom:145.045540px;}
.y59{bottom:145.218496px;}
.yc9{bottom:148.369404px;}
.yeb{bottom:149.242929px;}
.y17f{bottom:150.119018px;}
.y2f{bottom:162.538998px;}
.y97{bottom:162.540618px;}
.y14f{bottom:162.541113px;}
.y19f{bottom:162.541863px;}
.y58{bottom:162.542139px;}
.y121{bottom:162.542733px;}
.y17e{bottom:163.767513px;}
.yc8{bottom:165.868097px;}
.yea{bottom:174.265769px;}
.y1df{bottom:174.622240px;}
.y17d{bottom:177.414507px;}
.y2e{bottom:179.863991px;}
.y14e{bottom:179.864756px;}
.y19e{bottom:179.866856px;}
.y57{bottom:180.040832px;}
.y96{bottom:181.265561px;}
.yc7{bottom:183.191740px;}
.y95{bottom:185.639004px;}
.y120{bottom:185.641074px;}
.y1de{bottom:187.745360px;}
.ye9{bottom:191.590762px;}
.y17c{bottom:194.565501px;}
.y2d{bottom:197.361184px;}
.y14d{bottom:197.364199px;}
.y19d{bottom:197.366299px;}
.y56{bottom:197.539525px;}
.y93{bottom:198.236423px;}
.yc6{bottom:200.690433px;}
.y1dd{bottom:200.869184px;}
.y94{bottom:203.838966px;}
.y1dc{bottom:213.818634px;}
.y2c{bottom:214.686177px;}
.y11f{bottom:214.690662px;}
.y55{bottom:214.863168px;}
.y14c{bottom:215.212392px;}
.ye8{bottom:218.013791px;}
.yc5{bottom:218.189126px;}
.y19c{bottom:219.063341px;}
.y17b{bottom:219.762910px;}
.y1db{bottom:226.942459px;}
.y11e{bottom:232.188605px;}
.y54{bottom:232.362611px;}
.y14b{bottom:232.711085px;}
.y17a{bottom:232.886030px;}
.y2b{bottom:233.409620px;}
.y92{bottom:234.458558px;}
.y1da{bottom:240.066989px;}
.y19b{bottom:244.612831px;}
.y179{bottom:245.835480px;}
.ye7{bottom:247.760129px;}
.y11d{bottom:249.512249px;}
.y53{bottom:249.861304px;}
.y14a{bottom:250.209778px;}
.y2a{bottom:250.908313px;}
.y91{bottom:251.957251px;}
.yc4{bottom:252.661962px;}
.y1d9{bottom:253.190813px;}
.y19a{bottom:262.110774px;}
.ye6{bottom:265.085122px;}
.y1d8{bottom:266.140263px;}
.y11c{bottom:267.185241px;}
.y149{bottom:267.533421px;}
.y29{bottom:268.233306px;}
.y90{bottom:269.282244px;}
.y52{bottom:272.775454px;}
.y178{bottom:276.282918px;}
.y1d7{bottom:279.263383px;}
.y199{bottom:279.609467px;}
.ye5{bottom:282.582315px;}
.y11b{bottom:284.683934px;}
.y148{bottom:285.032864px;}
.y28{bottom:285.732749px;}
.y8f{bottom:286.780187px;}
.yc3{bottom:287.309098px;}
.y1d6{bottom:292.387208px;}
.y177{bottom:293.607911px;}
.ye4{bottom:299.907308px;}
.y51{bottom:301.473443px;}
.y147{bottom:302.532307px;}
.y27{bottom:303.055642px;}
.yc2{bottom:304.807791px;}
.y1d5{bottom:305.336657px;}
.y119{bottom:306.732426px;}
.y8e{bottom:308.478579px;}
.y176{bottom:311.106604px;}
.ye3{bottom:317.406001px;}
.y1d4{bottom:318.461892px;}
.y50{bottom:318.797086px;}
.y146{bottom:319.857300px;}
.y26{bottom:320.554335px;}
.y198{bottom:323.356949px;}
.y116{bottom:323.878784px;}
.y11a{bottom:323.882369px;}
.y175{bottom:328.603797px;}
.y1d3{bottom:331.585012px;}
.yc1{bottom:332.456080px;}
.y8d{bottom:334.551868px;}
.ye2{bottom:334.904694px;}
.y4f{bottom:336.295779px;}
.y197{bottom:337.005444px;}
.y145{bottom:337.355993px;}
.y118{bottom:337.705763px;}
.y25{bottom:338.053028px;}
.y117{bottom:341.906227px;}
.y1d2{bottom:344.708837px;}
.y174{bottom:345.928790px;}
.y196{bottom:350.653938px;}
.y8c{bottom:351.876861px;}
.ye1{bottom:352.228337px;}
.y4e{bottom:353.794472px;}
.y144{bottom:354.853936px;}
.y24{bottom:356.602171px;}
.y1d1{bottom:357.658287px;}
.y173{bottom:363.428233px;}
.y115{bottom:363.777568px;}
.y195{bottom:364.303933px;}
.y8b{bottom:369.375554px;}
.ye0{bottom:369.727780px;}
.y1d0{bottom:370.781406px;}
.y4d{bottom:371.119465px;}
.yc0{bottom:373.751964px;}
.y23{bottom:374.100864px;}
.y194{bottom:377.952427px;}
.y172{bottom:380.926926px;}
.y114{bottom:381.275511px;}
.y1cf{bottom:383.906641px;}
.ydf{bottom:386.701174px;}
.y8a{bottom:386.874247px;}
.y4c{bottom:388.618908px;}
.ybf{bottom:391.250657px;}
.y22{bottom:391.424507px;}
.y193{bottom:395.100420px;}
.y1ce{bottom:396.856091px;}
.y143{bottom:398.599919px;}
.y113{bottom:398.773454px;}
.y89{bottom:404.197890px;}
.yde{bottom:404.199867px;}
.y4b{bottom:405.942551px;}
.ybe{bottom:408.749350px;}
.y21{bottom:408.923200px;}
.y1cd{bottom:409.979211px;}
.y142{bottom:412.251413px;}
.y112{bottom:416.098447px;}
.y192{bottom:420.299375px;}
.y171{bottom:420.999410px;}
.y88{bottom:421.522884px;}
.ydd{bottom:421.698560px;}
.y1cc{bottom:423.103035px;}
.y4a{bottom:423.441244px;}
.y141{bottom:425.899908px;}
.ybd{bottom:426.072993px;}
.y20{bottom:426.421893px;}
.y191{bottom:433.423200px;}
.y111{bottom:433.597140px;}
.y170{bottom:434.824904px;}
.y1cb{bottom:436.228270px;}
.y87{bottom:438.846527px;}
.ydc{bottom:439.023553px;}
.y140{bottom:439.548403px;}
.y49{bottom:440.940687px;}
.ybc{bottom:443.571686px;}
.y1f{bottom:443.746886px;}
.y190{bottom:446.372650px;}
.y16f{bottom:448.471899px;}
.y1ca{bottom:449.177720px;}
.y110{bottom:451.095833px;}
.y13f{bottom:453.196897px;}
.y86{bottom:456.345220px;}
.y48{bottom:458.439380px;}
.ydb{bottom:460.721344px;}
.ybb{bottom:461.070379px;}
.y1e{bottom:461.246329px;}
.y16e{bottom:462.120394px;}
.y1c9{bottom:462.300840px;}
.y10f{bottom:468.419476px;}
.y13e{bottom:470.346390px;}
.y85{bottom:473.670213px;}
.y1c8{bottom:475.424664px;}
.y47{bottom:475.936573px;}
.y18f{bottom:477.519687px;}
.yba{bottom:478.394022px;}
.y1d{bottom:478.743522px;}
.y16d{bottom:479.271387px;}
.y13d{bottom:483.469885px;}
.yda{bottom:485.744184px;}
.y10e{bottom:485.918919px;}
.y1c7{bottom:488.547784px;}
.y16c{bottom:492.220881px;}
.y46{bottom:493.436016px;}
.y83{bottom:494.143854px;}
.y18e{bottom:494.843330px;}
.yb9{bottom:495.892715px;}
.y1c{bottom:497.292664px;}
.y1c6{bottom:501.497234px;}
.yd9{bottom:503.069177px;}
.y10d{bottom:503.591912px;}
.y16b{bottom:505.342876px;}
.y13c{bottom:508.492155px;}
.y45{bottom:510.761009px;}
.y84{bottom:511.117998px;}
.y80{bottom:511.118043px;}
.y18d{bottom:512.342773px;}
.y1c5{bottom:514.622469px;}
.y1b{bottom:514.791357px;}
.yb8{bottom:514.967157px;}
.yd8{bottom:520.567870px;}
.y10c{bottom:520.916905px;}
.y13b{bottom:521.615980px;}
.y82{bottom:524.942142px;}
.y1c4{bottom:527.745589px;}
.y44{bottom:528.259702px;}
.y81{bottom:529.315585px;}
.y18c{bottom:529.842216px;}
.y1a{bottom:532.116351px;}
.yb7{bottom:532.292150px;}
.y16a{bottom:532.466615px;}
.y13a{bottom:534.741214px;}
.yd7{bottom:538.066563px;}
.y10b{bottom:538.416348px;}
.y1c3{bottom:540.695743px;}
.y169{bottom:545.416065px;}
.y43{bottom:545.583345px;}
.y7f{bottom:546.640578px;}
.y18b{bottom:547.167209px;}
.y19{bottom:549.615794px;}
.yb6{bottom:549.789343px;}
.y1c2{bottom:553.818863px;}
.yd6{bottom:555.390206px;}
.y10a{bottom:555.739991px;}
.y168{bottom:558.539890px;}
.y42{bottom:563.082788px;}
.y7e{bottom:564.138521px;}
.y18a{bottom:564.664402px;}
.y1c1{bottom:566.942688px;}
.y139{bottom:571.486550px;}
.yd5{bottom:572.888899px;}
.y109{bottom:578.487482px;}
.y18{bottom:578.838332px;}
.yb4{bottom:579.363482px;}
.y1c0{bottom:580.067218px;}
.y41{bottom:580.581481px;}
.y7d{bottom:581.463515px;}
.y189{bottom:581.814346px;}
.yb1{bottom:586.362344px;}
.y138{bottom:588.985993px;}
.yd4{bottom:590.213892px;}
.y167{bottom:591.787077px;}
.y1bf{bottom:593.016667px;}
.y188{bottom:594.564341px;}
.yb5{bottom:596.337625px;}
.yb0{bottom:596.338825px;}
.y40{bottom:598.080924px;}
.y7c{bottom:598.960708px;}
.y187{bottom:599.311839px;}
.y1be{bottom:606.140492px;}
.y137{bottom:606.310986px;}
.y108{bottom:607.536320px;}
.yd3{bottom:607.711835px;}
.y166{bottom:609.285770px;}
.yb3{bottom:610.161769px;}
.yb2{bottom:614.360133px;}
.y3f{bottom:615.579617px;}
.y1bd{bottom:619.263612px;}
.y17{bottom:620.312115px;}
.y7b{bottom:620.659849px;}
.y136{bottom:623.810429px;}
.y107{bottom:625.035763px;}
.y186{bottom:625.210153px;}
.yd2{bottom:625.210528px;}
.y165{bottom:626.784463px;}
.y1bc{bottom:632.213062px;}
.y3e{bottom:632.903260px;}
.y16{bottom:634.836564px;}
.y135{bottom:641.307622px;}
.y106{bottom:642.358656px;}
.y7a{bottom:642.529821px;}
.yd1{bottom:642.535521px;}
.y185{bottom:642.708846px;}
.yaf{bottom:642.709956px;}
.y164{bottom:644.108106px;}
.y1bb{bottom:645.338296px;}
.y3d{bottom:650.401953px;}
.y15{bottom:650.585208px;}
.y1ba{bottom:658.462121px;}
.y134{bottom:658.632615px;}
.y105{bottom:659.858099px;}
.yd0{bottom:660.034964px;}
.y184{bottom:660.207539px;}
.yae{bottom:660.208649px;}
.y163{bottom:661.606799px;}
.y14{bottom:665.109657px;}
.y3c{bottom:667.901396px;}
.y79{bottom:668.428661px;}
.y1b9{bottom:671.585241px;}
.y133{bottom:676.131308px;}
.ycf{bottom:677.008358px;}
.y104{bottom:677.183092px;}
.y183{bottom:677.531182px;}
.yad{bottom:677.532292px;}
.y162{bottom:678.930382px;}
.y13{bottom:679.632697px;}
.y3b{bottom:685.225039px;}
.y78{bottom:685.927354px;}
.y1b8{bottom:693.101551px;}
.y12{bottom:694.157146px;}
.yce{bottom:694.507801px;}
.y103{bottom:694.681785px;}
.y182{bottom:695.029875px;}
.y161{bottom:696.429825px;}
.y132{bottom:700.104298px;}
.y3a{bottom:702.723732px;}
.y77{bottom:703.250997px;}
.y11{bottom:708.680185px;}
.yac{bottom:709.380295px;}
.ycd{bottom:712.004994px;}
.y102{bottom:712.179728px;}
.y181{bottom:716.729017px;}
.y160{bottom:718.128216px;}
.yab{bottom:719.355868px;}
.y39{bottom:720.396725px;}
.y1b7{bottom:720.399740px;}
.y76{bottom:720.749690px;}
.y10{bottom:723.204634px;}
.y101{bottom:729.678421px;}
.ycc{bottom:733.528335px;}
.y38{bottom:737.721718px;}
.y1b6{bottom:737.723383px;}
.yf{bottom:737.729083px;}
.y75{bottom:738.248383px;}
.y100{bottom:747.177114px;}
.ye{bottom:752.252122px;}
.y37{bottom:755.220411px;}
.y1b5{bottom:755.222076px;}
.y74{bottom:755.573376px;}
.yaa{bottom:758.725902px;}
.y15f{bottom:760.826149px;}
.yff{bottom:764.676557px;}
.yd{bottom:766.776572px;}
.y36{bottom:772.544054px;}
.y1b4{bottom:772.547069px;}
.y73{bottom:773.070569px;}
.y15e{bottom:773.949269px;}
.ya9{bottom:776.225345px;}
.ycb{bottom:776.575768px;}
.yc{bottom:781.299611px;}
.y131{bottom:781.300766px;}
.yfe{bottom:782.001551px;}
.y35{bottom:790.042747px;}
.y1b3{bottom:790.046512px;}
.y72{bottom:790.220512px;}
.ya8{bottom:793.550338px;}
.y130{bottom:794.949260px;}
.yb{bottom:795.824060px;}
.yfd{bottom:799.498744px;}
.y153{bottom:804.037757px;}
.y34{bottom:807.541440px;}
.y1b2{bottom:807.543705px;}
.y71{bottom:807.719205px;}
.y12f{bottom:808.597755px;}
.ya{bottom:810.347099px;}
.ya7{bottom:811.049031px;}
.yfc{bottom:816.998187px;}
.y154{bottom:817.869251px;}
.y12e{bottom:822.246249px;}
.y33{bottom:824.866433px;}
.y1b1{bottom:824.868698px;}
.y9{bottom:824.871548px;}
.y70{bottom:825.216398px;}
.y156{bottom:827.127248px;}
.ya6{bottom:828.547724px;}
.yfb{bottom:834.323180px;}
.y12d{bottom:839.397243px;}
.y1b0{bottom:842.368141px;}
.y6f{bottom:842.541391px;}
.yfa{bottom:851.821873px;}
.ya5{bottom:856.370313px;}
.y15d{bottom:856.906736px;}
.y1af{bottom:859.866084px;}
.y6e{bottom:860.040834px;}
.y12c{bottom:864.594608px;}
.y157{bottom:865.385032px;}
.yf9{bottom:869.319066px;}
.y1ae{bottom:877.189727px;}
.y6d{bottom:877.364477px;}
.y12b{bottom:877.717727px;}
.ya4{bottom:888.213388px;}
.y8{bottom:892.417871px;}
.yf8{bottom:893.818751px;}
.y1ad{bottom:894.688420px;}
.y6c{bottom:894.863920px;}
.yf7{bottom:897.318204px;}
.y158{bottom:903.640567px;}
.y7{bottom:910.441714px;}
.y12a{bottom:911.491564px;}
.y1ac{bottom:912.013414px;}
.y6b{bottom:912.363363px;}
.y155{bottom:923.160209px;}
.yf6{bottom:925.491043px;}
.y6{bottom:928.464207px;}
.y129{bottom:928.991007px;}
.ya3{bottom:929.510022px;}
.y1ab{bottom:929.511357px;}
.y6a{bottom:929.688356px;}
.y159{bottom:941.898352px;}
.yf5{bottom:942.988986px;}
.y5{bottom:946.312400px;}
.y128{bottom:946.488200px;}
.ya2{bottom:947.008715px;}
.y1aa{bottom:947.010050px;}
.y69{bottom:947.012000px;}
.yf4{bottom:960.313979px;}
.y127{bottom:963.813193px;}
.ya1{bottom:964.332358px;}
.y1a9{bottom:964.335043px;}
.y68{bottom:964.336243px;}
.y4{bottom:964.512043px;}
.yf3{bottom:977.812672px;}
.y15a{bottom:980.156136px;}
.y126{bottom:981.311886px;}
.ya0{bottom:981.831051px;}
.y1a8{bottom:981.834486px;}
.y67{bottom:981.835686px;}
.y125{bottom:998.634029px;}
.y9f{bottom:999.329744px;}
.y1a7{bottom:999.331679px;}
.y66{bottom:999.332879px;}
.yf2{bottom:1002.310977px;}
.yf1{bottom:1005.979886px;}
.y3{bottom:1010.356524px;}
.y9e{bottom:1016.653387px;}
.y1a6{bottom:1016.656672px;}
.y65{bottom:1016.657872px;}
.y15b{bottom:1018.413171px;}
.y9d{bottom:1034.152080px;}
.yf0{bottom:1034.154075px;}
.y1a5{bottom:1034.155365px;}
.y64{bottom:1034.157315px;}
.y2{bottom:1050.955658px;}
.y9c{bottom:1051.477073px;}
.y1a4{bottom:1051.478258px;}
.yef{bottom:1051.479068px;}
.y63{bottom:1051.480958px;}
.y15c{bottom:1056.670956px;}
.y9b{bottom:1068.975766px;}
.yee{bottom:1068.977011px;}
.y1a3{bottom:1068.977701px;}
.y62{bottom:1068.979651px;}
.hc{height:2.324449px;}
.h1f{height:24.742705px;}
.h1e{height:25.335254px;}
.hb{height:28.230368px;}
.h1d{height:29.232747px;}
.h21{height:29.529726px;}
.h17{height:32.301767px;}
.h5{height:35.445833px;}
.h8{height:40.348720px;}
.h4{height:40.377095px;}
.ha{height:40.968422px;}
.h12{height:40.974062px;}
.h9{height:43.583428px;}
.h3{height:44.415092px;}
.h19{height:46.557900px;}
.h1b{height:47.238540px;}
.h16{height:51.294699px;}
.hd{height:52.026899px;}
.h20{height:55.719775px;}
.h10{height:56.929077px;}
.h1c{height:57.581242px;}
.h1a{height:58.281562px;}
.hf{height:66.727853px;}
.h7{height:70.628906px;}
.h18{height:70.915822px;}
.h14{height:80.275219px;}
.h13{height:82.772772px;}
.h15{height:82.775592px;}
.h2{height:96.905844px;}
.he{height:97.536160px;}
.h11{height:108.273668px;}
.h6{height:119.901000px;}
.h1{height:1154.922300px;}
.h0{height:1263.000000px;}
.w2{width:766.804350px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:71.394976px;}
.x1{left:76.644869px;}
.x32{left:78.044770px;}
.x4a{left:83.994716px;}
.x10{left:85.918721px;}
.x3{left:91.168614px;}
.x4{left:92.743613px;}
.x34{left:99.392960px;}
.x35{left:101.493259px;}
.x5{left:103.592809px;}
.x37{left:107.792507px;}
.x36{left:110.767456px;}
.x2{left:115.841954px;}
.x47{left:117.571603px;}
.x4c{left:122.141951px;}
.x48{left:132.942547px;}
.x16{left:153.113642px;}
.x1b{left:158.187201px;}
.x33{left:159.762188px;}
.x2f{left:173.407431px;}
.x17{left:181.287876px;}
.x2e{left:190.205924px;}
.x30{left:191.437423px;}
.x2d{left:194.411922px;}
.x12{left:197.735186px;}
.x2c{left:206.660917px;}
.x1d{left:211.210416px;}
.x4b{left:219.784907px;}
.x31{left:230.284210px;}
.x18{left:232.559745px;}
.x19{left:234.657869px;}
.x1c{left:239.908639px;}
.x1e{left:251.632429px;}
.x46{left:257.440397px;}
.x1a{left:260.032267px;}
.x7{left:268.256443px;}
.x6{left:299.404230px;}
.x8{left:319.527622px;}
.xa{left:328.101469px;}
.x9{left:343.325563px;}
.x49{left:413.321835px;}
.x14{left:454.967893px;}
.x4d{left:460.742511px;}
.x41{left:465.118314px;}
.x13{left:469.490932px;}
.x43{left:471.943311px;}
.x42{left:474.917810px;}
.x3f{left:477.543934px;}
.x3a{left:482.183807px;}
.x3c{left:487.536885px;}
.x3b{left:494.899302px;}
.x39{left:501.145300px;}
.x27{left:514.813687px;}
.x25{left:519.015376px;}
.x28{left:523.039549px;}
.x21{left:528.987223px;}
.x29{left:531.437781px;}
.x44{left:539.488284px;}
.xc{left:544.561582px;}
.x45{left:547.187781px;}
.x1f{left:549.636687px;}
.x15{left:560.660846px;}
.x26{left:563.637298px;}
.x20{left:569.585959px;}
.x40{left:579.212393px;}
.xb{left:584.809866px;}
.x22{left:587.084765px;}
.xd{left:596.008562px;}
.x2a{left:597.409194px;}
.x2b{left:598.984198px;}
.x23{left:600.034215px;}
.x3d{left:610.898756px;}
.x3e{left:611.935030px;}
.xf{left:615.607509px;}
.xe{left:619.632202px;}
.x24{left:622.257825px;}
.x38{left:641.014244px;}
@media print{
.vd{vertical-align:-60.971176pt;}
.v11{vertical-align:-14.277328pt;}
.v10{vertical-align:-13.067515pt;}
.v1{vertical-align:-7.467517pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:5.599998pt;}
.v6{vertical-align:8.084957pt;}
.v14{vertical-align:9.892476pt;}
.ve{vertical-align:13.065008pt;}
.v13{vertical-align:14.547514pt;}
.v5{vertical-align:15.552474pt;}
.v12{vertical-align:18.625006pt;}
.v2{vertical-align:21.152472pt;}
.v9{vertical-align:25.509963pt;}
.va{vertical-align:30.485001pt;}
.v7{vertical-align:34.219986pt;}
.vc{vertical-align:35.464999pt;}
.v8{vertical-align:38.577478pt;}
.vb{vertical-align:60.352509pt;}
.v4{vertical-align:61.605149pt;}
.v3{vertical-align:74.042637pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.019964pt;}
.ls81{letter-spacing:0.022471pt;}
.ls84{letter-spacing:0.024924pt;}
.ls7d{letter-spacing:0.027431pt;}
.ls1c{letter-spacing:0.047274pt;}
.ls1a{letter-spacing:0.049781pt;}
.lsc{letter-spacing:0.060909pt;}
.ls88{letter-spacing:0.062878pt;}
.ls17{letter-spacing:0.063362pt;}
.ls8{letter-spacing:0.068375pt;}
.ls2c{letter-spacing:0.112048pt;}
.ls28{letter-spacing:0.114555pt;}
.ls6d{letter-spacing:0.150290pt;}
.ls6a{letter-spacing:0.152797pt;}
.ls7b{letter-spacing:0.171230pt;}
.ls83{letter-spacing:0.176243pt;}
.ls19{letter-spacing:0.205431pt;}
.ls15{letter-spacing:0.220364pt;}
.ls41{letter-spacing:0.235226pt;}
.ls9{letter-spacing:0.240239pt;}
.ls3{letter-spacing:0.247759pt;}
.ls58{letter-spacing:0.428639pt;}
.ls75{letter-spacing:0.542980pt;}
.lse{letter-spacing:0.707759pt;}
.ls3d{letter-spacing:1.192287pt;}
.ls87{letter-spacing:1.319732pt;}
.ls7c{letter-spacing:1.324692pt;}
.ls89{letter-spacing:1.327199pt;}
.ls27{letter-spacing:1.343714pt;}
.ls48{letter-spacing:1.462078pt;}
.ls3f{letter-spacing:1.954793pt;}
.ls5a{letter-spacing:1.956159pt;}
.ls22{letter-spacing:2.088423pt;}
.ls2d{letter-spacing:2.090929pt;}
.ls32{letter-spacing:2.093436pt;}
.ls20{letter-spacing:2.095943pt;}
.ls85{letter-spacing:2.169691pt;}
.ls82{letter-spacing:2.177158pt;}
.ls77{letter-spacing:2.345428pt;}
.ls35{letter-spacing:2.443575pt;}
.ls38{letter-spacing:2.446082pt;}
.ls42{letter-spacing:2.448589pt;}
.ls36{letter-spacing:2.451095pt;}
.lsa{letter-spacing:2.467419pt;}
.ls1d{letter-spacing:2.469926pt;}
.ls18{letter-spacing:2.472432pt;}
.ls78{letter-spacing:2.483711pt;}
.ls8d{letter-spacing:2.488724pt;}
.ls8c{letter-spacing:2.489046pt;}
.ls73{letter-spacing:2.489584pt;}
.ls8b{letter-spacing:2.490767pt;}
.ls8e{letter-spacing:2.491492pt;}
.ls39{letter-spacing:2.535760pt;}
.ls7a{letter-spacing:2.556188pt;}
.ls2{letter-spacing:2.730705pt;}
.ls6{letter-spacing:2.733158pt;}
.lsb{letter-spacing:2.738171pt;}
.ls7e{letter-spacing:2.752198pt;}
.ls86{letter-spacing:2.754704pt;}
.ls8a{letter-spacing:2.757158pt;}
.ls80{letter-spacing:2.759664pt;}
.ls29{letter-spacing:2.809649pt;}
.ls6e{letter-spacing:2.812156pt;}
.ls31{letter-spacing:2.814663pt;}
.ls6b{letter-spacing:2.817169pt;}
.ls4c{letter-spacing:3.332021pt;}
.ls69{letter-spacing:3.504558pt;}
.ls63{letter-spacing:3.725948pt;}
.ls56{letter-spacing:3.728455pt;}
.ls10{letter-spacing:3.914993pt;}
.ls1e{letter-spacing:3.920007pt;}
.ls7{letter-spacing:3.979491pt;}
.ls16{letter-spacing:3.987011pt;}
.ls79{letter-spacing:4.078514pt;}
.ls71{letter-spacing:4.348638pt;}
.ls14{letter-spacing:4.355148pt;}
.ls1{letter-spacing:4.357654pt;}
.ls12{letter-spacing:4.360161pt;}
.ls5{letter-spacing:4.362668pt;}
.ls3b{letter-spacing:4.362744pt;}
.ls21{letter-spacing:4.926763pt;}
.ls24{letter-spacing:4.931776pt;}
.ls30{letter-spacing:5.677059pt;}
.ls1f{letter-spacing:5.804302pt;}
.ls45{letter-spacing:5.895178pt;}
.ls76{letter-spacing:7.018447pt;}
.ls67{letter-spacing:8.657552pt;}
.ls54{letter-spacing:8.660059pt;}
.ls68{letter-spacing:8.662565pt;}
.ls61{letter-spacing:8.665072pt;}
.ls37{letter-spacing:8.684195pt;}
.ls53{letter-spacing:11.150084pt;}
.ls6c{letter-spacing:11.158558pt;}
.ls2b{letter-spacing:11.450324pt;}
.ls4b{letter-spacing:11.455337pt;}
.ls2a{letter-spacing:11.641400pt;}
.ls60{letter-spacing:11.775044pt;}
.ls5e{letter-spacing:12.077844pt;}
.ls66{letter-spacing:12.842047pt;}
.ls47{letter-spacing:13.902926pt;}
.ls50{letter-spacing:13.940296pt;}
.ls49{letter-spacing:14.268584pt;}
.ls46{letter-spacing:14.562696pt;}
.ls5c{letter-spacing:14.565363pt;}
.ls5f{letter-spacing:14.704553pt;}
.ls55{letter-spacing:14.826158pt;}
.ls5d{letter-spacing:14.928451pt;}
.ls2f{letter-spacing:15.049829pt;}
.ls4a{letter-spacing:15.149510pt;}
.ls40{letter-spacing:15.280419pt;}
.ls52{letter-spacing:15.327060pt;}
.ls13{letter-spacing:15.373932pt;}
.ls51{letter-spacing:15.553464pt;}
.ls34{letter-spacing:15.900418pt;}
.ls62{letter-spacing:15.944986pt;}
.ls74{letter-spacing:16.398443pt;}
.ls4d{letter-spacing:16.496153pt;}
.lsf{letter-spacing:18.022453pt;}
.ls4f{letter-spacing:18.043489pt;}
.ls33{letter-spacing:19.101397pt;}
.ls3c{letter-spacing:19.330953pt;}
.ls70{letter-spacing:20.032333pt;}
.ls65{letter-spacing:22.167490pt;}
.ls59{letter-spacing:22.908661pt;}
.ls26{letter-spacing:23.273093pt;}
.ls72{letter-spacing:23.342175pt;}
.ls4e{letter-spacing:24.471331pt;}
.ls44{letter-spacing:26.339063pt;}
.ls25{letter-spacing:27.191420pt;}
.ls11{letter-spacing:27.581730pt;}
.ls4{letter-spacing:28.602555pt;}
.ls5b{letter-spacing:29.863591pt;}
.ls3e{letter-spacing:30.467621pt;}
.ls64{letter-spacing:253.799960pt;}
.ls57{letter-spacing:255.665026pt;}
.ls3a{letter-spacing:270.592487pt;}
.ls2e{letter-spacing:308.556093pt;}
.ls6f{letter-spacing:315.258825pt;}
.ls1b{letter-spacing:359.602423pt;}
.ls43{letter-spacing:429.250024pt;}
.lsd{letter-spacing:435.507459pt;}
.ls23{letter-spacing:457.116368pt;}
.wsc{word-spacing:-36.122198pt;}
.ws4{word-spacing:-28.719865pt;}
.ws1{word-spacing:-25.997358pt;}
.ws0{word-spacing:-25.996862pt;}
.wsaf{word-spacing:-25.885121pt;}
.ws5f{word-spacing:-25.827216pt;}
.ws17{word-spacing:-24.930081pt;}
.ws18{word-spacing:-24.300104pt;}
.ws10{word-spacing:-24.292805pt;}
.ws1d{word-spacing:-22.975957pt;}
.wsf{word-spacing:-21.819853pt;}
.ws165{word-spacing:-20.661832pt;}
.ws15{word-spacing:-20.573893pt;}
.ws1b{word-spacing:-19.951122pt;}
.ws68{word-spacing:-19.403316pt;}
.ws16{word-spacing:-19.328119pt;}
.ws13{word-spacing:-18.709764pt;}
.ws129{word-spacing:-18.380819pt;}
.ws14e{word-spacing:-18.166296pt;}
.ws1f{word-spacing:-18.141088pt;}
.ws114{word-spacing:-18.141037pt;}
.ws3f{word-spacing:-17.551626pt;}
.ws41{word-spacing:-17.522062pt;}
.ws8f{word-spacing:-17.521958pt;}
.ws61{word-spacing:-17.521184pt;}
.wsb1{word-spacing:-17.520977pt;}
.ws5b{word-spacing:-17.513435pt;}
.ws14d{word-spacing:-17.513229pt;}
.ws14{word-spacing:-17.449718pt;}
.ws75{word-spacing:-17.200926pt;}
.ws57{word-spacing:-16.896268pt;}
.wsbc{word-spacing:-16.896217pt;}
.ws42{word-spacing:-16.896113pt;}
.ws49{word-spacing:-16.888313pt;}
.ws123{word-spacing:-16.284060pt;}
.wsd9{word-spacing:-16.276415pt;}
.ws2d{word-spacing:-16.276363pt;}
.ws50{word-spacing:-16.276260pt;}
.ws118{word-spacing:-16.276208pt;}
.wse1{word-spacing:-16.276105pt;}
.ws69{word-spacing:-16.267685pt;}
.ws140{word-spacing:-16.090571pt;}
.ws40{word-spacing:-15.898769pt;}
.wsef{word-spacing:-15.673608pt;}
.wsbf{word-spacing:-15.657233pt;}
.ws90{word-spacing:-15.656407pt;}
.wsed{word-spacing:-15.648762pt;}
.ws11{word-spacing:-15.594934pt;}
.wsa1{word-spacing:-15.031905pt;}
.ws11f{word-spacing:-15.031750pt;}
.ws117{word-spacing:-15.031595pt;}
.ws20{word-spacing:-15.031440pt;}
.ws67{word-spacing:-15.031337pt;}
.ws120{word-spacing:-15.023588pt;}
.ws7c{word-spacing:-14.443593pt;}
.wsa0{word-spacing:-14.415985pt;}
.ws88{word-spacing:-14.412465pt;}
.ws7d{word-spacing:-14.412362pt;}
.ws121{word-spacing:-14.411742pt;}
.ws102{word-spacing:-14.411587pt;}
.ws4a{word-spacing:-14.411432pt;}
.ws3e{word-spacing:-14.403787pt;}
.wse{word-spacing:-14.346649pt;}
.ws7b{word-spacing:-13.884677pt;}
.wsd8{word-spacing:-13.830846pt;}
.ws55{word-spacing:-13.811724pt;}
.ws86{word-spacing:-13.811446pt;}
.ws47{word-spacing:-13.786723pt;}
.wsbd{word-spacing:-13.786620pt;}
.ws34{word-spacing:-13.786568pt;}
.ws87{word-spacing:-13.786516pt;}
.wsf0{word-spacing:-13.786413pt;}
.wsb9{word-spacing:-13.778665pt;}
.wse4{word-spacing:-13.778613pt;}
.ws33{word-spacing:-13.777838pt;}
.wsd4{word-spacing:-13.777684pt;}
.wsbb{word-spacing:-13.231164pt;}
.ws103{word-spacing:-13.228999pt;}
.wsd7{word-spacing:-13.192026pt;}
.wsca{word-spacing:-13.185013pt;}
.wsc6{word-spacing:-13.174618pt;}
.wsd2{word-spacing:-13.167386pt;}
.ws58{word-spacing:-13.167231pt;}
.wsa7{word-spacing:-13.166870pt;}
.ws5e{word-spacing:-13.166715pt;}
.ws62{word-spacing:-13.166663pt;}
.wse5{word-spacing:-13.166560pt;}
.wsf3{word-spacing:-13.158863pt;}
.ws24{word-spacing:-13.158760pt;}
.wscd{word-spacing:-13.158140pt;}
.ws12{word-spacing:-13.107988pt;}
.ws142{word-spacing:-12.988329pt;}
.ws6d{word-spacing:-12.566800pt;}
.ws21{word-spacing:-12.549651pt;}
.ws106{word-spacing:-12.549548pt;}
.wsa5{word-spacing:-12.542058pt;}
.ws95{word-spacing:-12.541903pt;}
.ws38{word-spacing:-12.541748pt;}
.ws63{word-spacing:-12.541696pt;}
.ws29{word-spacing:-12.541645pt;}
.wsb{word-spacing:-12.541593pt;}
.wsd5{word-spacing:-12.533948pt;}
.ws155{word-spacing:-12.533277pt;}
.wsd{word-spacing:-12.484845pt;}
.ws135{word-spacing:-12.394037pt;}
.ws148{word-spacing:-12.390510pt;}
.ws9{word-spacing:-12.310504pt;}
.ws5{word-spacing:-12.307378pt;}
.ws2{word-spacing:-12.297776pt;}
.ws7a{word-spacing:-12.040618pt;}
.wsf6{word-spacing:-11.947205pt;}
.ws85{word-spacing:-11.947154pt;}
.ws30{word-spacing:-11.947050pt;}
.ws71{word-spacing:-11.939199pt;}
.wsaa{word-spacing:-11.933775pt;}
.wsd3{word-spacing:-11.930777pt;}
.wsbe{word-spacing:-11.929849pt;}
.ws2a{word-spacing:-11.929798pt;}
.ws59{word-spacing:-11.929695pt;}
.ws14b{word-spacing:-11.922618pt;}
.wsa6{word-spacing:-11.922360pt;}
.ws8{word-spacing:-11.922205pt;}
.ws6{word-spacing:-11.922050pt;}
.wsa{word-spacing:-11.921895pt;}
.ws3{word-spacing:-11.921843pt;}
.ws7{word-spacing:-11.921740pt;}
.wsd1{word-spacing:-11.918230pt;}
.ws45{word-spacing:-11.914095pt;}
.ws35{word-spacing:-11.914043pt;}
.ws31{word-spacing:-11.913992pt;}
.ws3a{word-spacing:-11.913940pt;}
.wsf7{word-spacing:-11.913217pt;}
.ws22{word-spacing:-11.913165pt;}
.ws127{word-spacing:-11.784228pt;}
.ws10d{word-spacing:-11.778661pt;}
.ws171{word-spacing:-11.777244pt;}
.ws125{word-spacing:-11.768849pt;}
.ws10b{word-spacing:-11.763940pt;}
.ws43{word-spacing:-11.313302pt;}
.ws66{word-spacing:-11.304883pt;}
.wsdb{word-spacing:-11.304728pt;}
.ws78{word-spacing:-11.304624pt;}
.ws3c{word-spacing:-11.297031pt;}
.ws2e{word-spacing:-11.296928pt;}
.ws56{word-spacing:-11.296876pt;}
.wsc3{word-spacing:-11.296824pt;}
.ws3d{word-spacing:-11.296721pt;}
.ws82{word-spacing:-11.288973pt;}
.ws6a{word-spacing:-11.288921pt;}
.wsb8{word-spacing:-11.288870pt;}
.ws109{word-spacing:-11.154492pt;}
.ws16d{word-spacing:-11.146273pt;}
.wscc{word-spacing:-10.749632pt;}
.wsa2{word-spacing:-10.684874pt;}
.ws115{word-spacing:-10.677849pt;}
.ws36{word-spacing:-10.677694pt;}
.wse3{word-spacing:-10.677075pt;}
.ws32{word-spacing:-10.677023pt;}
.wsc4{word-spacing:-10.676971pt;}
.wsac{word-spacing:-10.676920pt;}
.ws12f{word-spacing:-10.676713pt;}
.wsc2{word-spacing:-10.669171pt;}
.ws23{word-spacing:-10.669068pt;}
.ws1a{word-spacing:-10.620809pt;}
.ws184{word-spacing:-10.534063pt;}
.wsba{word-spacing:-10.130988pt;}
.wsde{word-spacing:-10.082222pt;}
.wsa9{word-spacing:-10.059856pt;}
.ws133{word-spacing:-10.057376pt;}
.ws13e{word-spacing:-10.057221pt;}
.wsf5{word-spacing:-10.057118pt;}
.ws8d{word-spacing:-10.052056pt;}
.ws101{word-spacing:-10.051901pt;}
.ws7e{word-spacing:-10.044256pt;}
.ws16b{word-spacing:-9.972172pt;}
.ws119{word-spacing:-9.922342pt;}
.ws134{word-spacing:-9.659087pt;}
.wsc0{word-spacing:-9.649100pt;}
.ws39{word-spacing:-9.440003pt;}
.ws131{word-spacing:-9.432978pt;}
.wsa4{word-spacing:-9.432823pt;}
.wsea{word-spacing:-9.432668pt;}
.ws60{word-spacing:-9.432203pt;}
.ws9a{word-spacing:-9.432048pt;}
.wsce{word-spacing:-9.428254pt;}
.ws14a{word-spacing:-9.424248pt;}
.ws19{word-spacing:-9.344910pt;}
.ws175{word-spacing:-9.290345pt;}
.ws167{word-spacing:-9.289684pt;}
.ws124{word-spacing:-9.283278pt;}
.wsf8{word-spacing:-9.283237pt;}
.wsf9{word-spacing:-9.042999pt;}
.ws13c{word-spacing:-9.029246pt;}
.wscb{word-spacing:-9.029143pt;}
.ws10a{word-spacing:-9.012543pt;}
.wsab{word-spacing:-9.003936pt;}
.wse0{word-spacing:-8.837505pt;}
.wscf{word-spacing:-8.829705pt;}
.wsb7{word-spacing:-8.829602pt;}
.wsa3{word-spacing:-8.820201pt;}
.wse9{word-spacing:-8.815987pt;}
.ws54{word-spacing:-8.812350pt;}
.ws46{word-spacing:-8.812040pt;}
.ws122{word-spacing:-8.804550pt;}
.wsdc{word-spacing:-8.804395pt;}
.wsfd{word-spacing:-8.666275pt;}
.ws178{word-spacing:-8.665779pt;}
.ws15b{word-spacing:-8.665655pt;}
.ws162{word-spacing:-8.665490pt;}
.wse8{word-spacing:-8.661415pt;}
.ws108{word-spacing:-8.659167pt;}
.ws11b{word-spacing:-8.599434pt;}
.wsae{word-spacing:-8.516731pt;}
.ws128{word-spacing:-8.432366pt;}
.ws126{word-spacing:-8.431606pt;}
.ws10e{word-spacing:-8.426283pt;}
.wsb5{word-spacing:-8.421532pt;}
.ws73{word-spacing:-8.420706pt;}
.ws145{word-spacing:-8.413778pt;}
.ws81{word-spacing:-8.408518pt;}
.ws11e{word-spacing:-8.396428pt;}
.wsff{word-spacing:-8.396273pt;}
.ws16c{word-spacing:-8.219318pt;}
.ws70{word-spacing:-8.203550pt;}
.wsa8{word-spacing:-8.195182pt;}
.wse2{word-spacing:-8.187383pt;}
.ws5d{word-spacing:-8.187279pt;}
.ws37{word-spacing:-8.187228pt;}
.ws6c{word-spacing:-8.179376pt;}
.ws8e{word-spacing:-8.179324pt;}
.wsf4{word-spacing:-8.179221pt;}
.wseb{word-spacing:-8.178911pt;}
.ws16f{word-spacing:-8.061586pt;}
.wsfe{word-spacing:-8.054850pt;}
.wsfc{word-spacing:-8.046254pt;}
.ws13b{word-spacing:-8.045800pt;}
.ws173{word-spacing:-8.045635pt;}
.ws17d{word-spacing:-8.042370pt;}
.ws164{word-spacing:-8.042205pt;}
.ws11d{word-spacing:-8.041585pt;}
.wsfb{word-spacing:-8.041502pt;}
.ws52{word-spacing:-8.035345pt;}
.ws10c{word-spacing:-7.810195pt;}
.ws97{word-spacing:-7.792071pt;}
.wsdf{word-spacing:-7.751264pt;}
.ws153{word-spacing:-7.584730pt;}
.ws156{word-spacing:-7.575329pt;}
.ws80{word-spacing:-7.568149pt;}
.ws116{word-spacing:-7.567426pt;}
.ws100{word-spacing:-7.567374pt;}
.ws4c{word-spacing:-7.567219pt;}
.ws93{word-spacing:-7.559575pt;}
.ws16e{word-spacing:-7.461242pt;}
.ws11c{word-spacing:-7.421895pt;}
.wsb4{word-spacing:-7.421730pt;}
.ws15a{word-spacing:-7.421565pt;}
.ws72{word-spacing:-7.415407pt;}
.ws96{word-spacing:-7.408465pt;}
.ws147{word-spacing:-7.177857pt;}
.ws3b{word-spacing:-7.143767pt;}
.ws166{word-spacing:-6.995559pt;}
.ws7f{word-spacing:-6.974706pt;}
.wsb0{word-spacing:-6.967666pt;}
.ws158{word-spacing:-6.967511pt;}
.ws113{word-spacing:-6.950259pt;}
.ws48{word-spacing:-6.942356pt;}
.wsf2{word-spacing:-6.942304pt;}
.ws76{word-spacing:-6.934401pt;}
.ws179{word-spacing:-6.797825pt;}
.ws136{word-spacing:-6.564266pt;}
.ws146{word-spacing:-6.544682pt;}
.ws144{word-spacing:-6.347762pt;}
.ws107{word-spacing:-6.347658pt;}
.wsda{word-spacing:-6.323122pt;}
.ws65{word-spacing:-6.322503pt;}
.ws9c{word-spacing:-6.317337pt;}
.wsc7{word-spacing:-6.314651pt;}
.ws176{word-spacing:-6.232816pt;}
.ws17a{word-spacing:-6.178466pt;}
.ws17c{word-spacing:-6.177970pt;}
.ws17f{word-spacing:-5.751965pt;}
.ws8b{word-spacing:-5.748635pt;}
.ws185{word-spacing:-5.731509pt;}
.wsc9{word-spacing:-5.722071pt;}
.wsc1{word-spacing:-5.714840pt;}
.ws99{word-spacing:-5.698155pt;}
.ws151{word-spacing:-5.697691pt;}
.ws92{word-spacing:-5.697536pt;}
.ws6f{word-spacing:-5.697484pt;}
.ws4d{word-spacing:-5.697381pt;}
.ws83{word-spacing:-5.689529pt;}
.ws163{word-spacing:-5.553942pt;}
.ws17e{word-spacing:-5.126986pt;}
.ws159{word-spacing:-5.107605pt;}
.ws14f{word-spacing:-5.102683pt;}
.ws5a{word-spacing:-5.085482pt;}
.ws161{word-spacing:-5.081034pt;}
.ws4f{word-spacing:-5.077682pt;}
.ws25{word-spacing:-5.077579pt;}
.wsd0{word-spacing:-5.077527pt;}
.ws44{word-spacing:-5.069056pt;}
.ws13a{word-spacing:-4.934087pt;}
.ws172{word-spacing:-4.503866pt;}
.ws177{word-spacing:-4.483865pt;}
.ws13f{word-spacing:-4.477923pt;}
.ws27{word-spacing:-4.460567pt;}
.ws2b{word-spacing:-4.460464pt;}
.ws182{word-spacing:-4.457129pt;}
.wsf1{word-spacing:-4.452354pt;}
.ws150{word-spacing:-4.444554pt;}
.ws174{word-spacing:-4.310182pt;}
.ws91{word-spacing:-3.840662pt;}
.ws4e{word-spacing:-3.832656pt;}
.ws94{word-spacing:-3.824856pt;}
.ws79{word-spacing:-3.687093pt;}
.wse7{word-spacing:-3.262996pt;}
.ws9e{word-spacing:-3.238165pt;}
.ws104{word-spacing:-3.237390pt;}
.wsad{word-spacing:-3.237338pt;}
.ws157{word-spacing:-3.221119pt;}
.wsc8{word-spacing:-3.216178pt;}
.ws98{word-spacing:-3.213009pt;}
.ws6b{word-spacing:-3.204228pt;}
.ws169{word-spacing:-3.086588pt;}
.ws15f{word-spacing:-3.066422pt;}
.ws170{word-spacing:-3.066092pt;}
.ws89{word-spacing:-3.062075pt;}
.ws9b{word-spacing:-3.062023pt;}
.ws141{word-spacing:-2.864363pt;}
.wsb3{word-spacing:-2.612320pt;}
.ws9d{word-spacing:-2.590923pt;}
.wsdd{word-spacing:-2.587990pt;}
.ws77{word-spacing:-2.587835pt;}
.wse6{word-spacing:-2.580191pt;}
.ws84{word-spacing:-2.580036pt;}
.ws154{word-spacing:-2.578899pt;}
.ws183{word-spacing:-2.442352pt;}
.ws28{word-spacing:-1.976040pt;}
.ws17b{word-spacing:-1.975271pt;}
.wsb6{word-spacing:-1.967982pt;}
.ws2f{word-spacing:-1.959408pt;}
.ws180{word-spacing:-1.822498pt;}
.ws15e{word-spacing:-1.822374pt;}
.wsd6{word-spacing:-1.692784pt;}
.ws74{word-spacing:-1.368171pt;}
.ws4b{word-spacing:-1.351125pt;}
.ws105{word-spacing:-1.347885pt;}
.ws26{word-spacing:-1.343015pt;}
.ws160{word-spacing:-0.772133pt;}
.ws51{word-spacing:-0.723317pt;}
.ws1c{word-spacing:-0.723214pt;}
.ws2c{word-spacing:-0.723162pt;}
.ws13d{word-spacing:-0.723110pt;}
.wsb2{word-spacing:-0.723007pt;}
.wsc5{word-spacing:-0.714536pt;}
.ws16a{word-spacing:-0.578449pt;}
.ws9f{word-spacing:-0.529169pt;}
.ws168{word-spacing:-0.141988pt;}
.wsee{word-spacing:-0.098298pt;}
.ws14c{word-spacing:-0.098195pt;}
.wsec{word-spacing:-0.097988pt;}
.ws5c{word-spacing:0.000000pt;}
.ws143{word-spacing:0.521606pt;}
.ws64{word-spacing:0.521710pt;}
.ws152{word-spacing:1.741374pt;}
.ws132{word-spacing:1.766530pt;}
.ws6e{word-spacing:1.774226pt;}
.ws181{word-spacing:1.909195pt;}
.ws130{word-spacing:2.394493pt;}
.ws1e{word-spacing:3.020131pt;}
.ws15c{word-spacing:3.139813pt;}
.ws53{word-spacing:3.631100pt;}
.ws8a{word-spacing:8.469121pt;}
.ws8c{word-spacing:9.093498pt;}
.ws15d{word-spacing:11.056931pt;}
.ws149{word-spacing:41.101359pt;}
.ws10f{word-spacing:41.116615pt;}
.ws12b{word-spacing:42.971312pt;}
.ws112{word-spacing:45.463896pt;}
.ws111{word-spacing:45.469229pt;}
.ws12a{word-spacing:46.719201pt;}
.ws12c{word-spacing:49.806422pt;}
.ws11a{word-spacing:51.669604pt;}
.ws110{word-spacing:53.554728pt;}
.ws12d{word-spacing:74.082551pt;}
.ws12e{word-spacing:74.087884pt;}
.ws138{word-spacing:156.836291pt;}
.wsfa{word-spacing:161.161023pt;}
.ws137{word-spacing:166.788794pt;}
.ws139{word-spacing:167.412287pt;}
._5{margin-left:-21.772892pt;}
._4a{margin-left:-17.424081pt;}
._1f{margin-left:-8.795134pt;}
._21{margin-left:-6.811412pt;}
._6{margin-left:-5.528724pt;}
._f{margin-left:-4.323022pt;}
._3{margin-left:-3.132739pt;}
._0{margin-left:-1.294612pt;}
._19{width:0.890892pt;}
._13{width:1.821625pt;}
._4{width:3.140899pt;}
._49{width:4.303906pt;}
._1e{width:5.876415pt;}
._3e{width:9.628205pt;}
._a{width:10.560759pt;}
._20{width:11.504395pt;}
._10{width:12.459432pt;}
._1a{width:13.366467pt;}
._11{width:14.309996pt;}
._9{width:15.556110pt;}
._e{width:16.832880pt;}
._7{width:18.073532pt;}
._b{width:19.303225pt;}
._18{width:20.463760pt;}
._c{width:21.795802pt;}
._8{width:23.021509pt;}
._d{width:24.375168pt;}
._15{width:25.552518pt;}
._12{width:26.714206pt;}
._17{width:28.001971pt;}
._14{width:29.329816pt;}
._16{width:30.410468pt;}
._1b{width:31.845829pt;}
._42{width:36.088600pt;}
._48{width:42.344036pt;}
._2{width:44.229545pt;}
._1{width:45.590934pt;}
._3f{width:62.848206pt;}
._25{width:65.322075pt;}
._1c{width:67.254413pt;}
._27{width:70.307574pt;}
._26{width:71.542441pt;}
._33{width:72.979186pt;}
._45{width:77.145665pt;}
._34{width:79.016887pt;}
._2f{width:85.234513pt;}
._28{width:88.971266pt;}
._35{width:93.334602pt;}
._32{width:95.816348pt;}
._2b{width:99.549148pt;}
._24{width:101.437849pt;}
._36{width:102.762904pt;}
._1d{width:105.816800pt;}
._3b{width:107.016344pt;}
._29{width:110.124324pt;}
._43{width:113.238299pt;}
._2e{width:115.725674pt;}
._37{width:118.216314pt;}
._2a{width:123.191805pt;}
._31{width:125.678763pt;}
._44{width:131.902148pt;}
._38{width:133.146107pt;}
._39{width:135.634492pt;}
._46{width:137.498105pt;}
._3a{width:143.101663pt;}
._2d{width:144.970102pt;}
._30{width:146.836595pt;}
._47{width:153.072675pt;}
._2c{width:154.922098pt;}
._22{width:156.786848pt;}
._3c{width:159.897589pt;}
._23{width:161.796031pt;}
._3d{width:171.102918pt;}
._40{width:202.210972pt;}
._41{width:222.739471pt;}
.fsd{font-size:24.159777pt;}
.fsa{font-size:26.174070pt;}
.fs9{font-size:30.933214pt;}
.fs7{font-size:33.059027pt;}
.fsc{font-size:33.823773pt;}
.fs8{font-size:35.691879pt;}
.fs6{font-size:36.158012pt;}
.fs4{font-size:41.323663pt;}
.fs3{font-size:46.489315pt;}
.fsb{font-size:48.320034pt;}
.fs2{font-size:51.654433pt;}
.fs1{font-size:56.820244pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:123.971684pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:9.181467pt;}
.y5c{bottom:22.662533pt;}
.y60{bottom:30.914800pt;}
.y1{bottom:48.088800pt;}
.y5f{bottom:52.648133pt;}
.y5e{bottom:74.381467pt;}
.y5d{bottom:96.114800pt;}
.y32{bottom:97.970862pt;}
.y152{bottom:97.971542pt;}
.y9a{bottom:97.973022pt;}
.yed{bottom:97.974128pt;}
.y5b{bottom:97.974320pt;}
.y1a2{bottom:97.974742pt;}
.y124{bottom:97.975648pt;}
.yca{bottom:101.086460pt;}
.y31{bottom:113.369655pt;}
.y151{bottom:113.371535pt;}
.y1a1{bottom:113.372869pt;}
.y99{bottom:113.373015pt;}
.yec{bottom:113.374122pt;}
.y5a{bottom:113.374314pt;}
.y123{bottom:113.375642pt;}
.y180{bottom:121.305799pt;}
.y30{bottom:128.924716pt;}
.y98{bottom:128.926156pt;}
.y150{bottom:128.926596pt;}
.y1a0{bottom:128.927263pt;}
.y122{bottom:128.929369pt;}
.y59{bottom:129.083107pt;}
.yc9{bottom:131.883915pt;}
.yeb{bottom:132.660381pt;}
.y17f{bottom:133.439127pt;}
.y2f{bottom:144.479110pt;}
.y97{bottom:144.480550pt;}
.y14f{bottom:144.480990pt;}
.y19f{bottom:144.481656pt;}
.y58{bottom:144.481901pt;}
.y121{bottom:144.482430pt;}
.y17e{bottom:145.571123pt;}
.yc8{bottom:147.438308pt;}
.yea{bottom:154.902905pt;}
.y1df{bottom:155.219769pt;}
.y17d{bottom:157.701784pt;}
.y2e{bottom:159.879103pt;}
.y14e{bottom:159.879783pt;}
.y19e{bottom:159.881650pt;}
.y57{bottom:160.036295pt;}
.y96{bottom:161.124943pt;}
.yc7{bottom:162.837102pt;}
.y95{bottom:165.012448pt;}
.y120{bottom:165.014288pt;}
.y1de{bottom:166.884764pt;}
.ye9{bottom:170.302899pt;}
.y17c{bottom:172.947112pt;}
.y2d{bottom:175.432164pt;}
.y14d{bottom:175.434844pt;}
.y19d{bottom:175.436711pt;}
.y56{bottom:175.590689pt;}
.y93{bottom:176.210154pt;}
.yc6{bottom:178.391496pt;}
.y1dd{bottom:178.550386pt;}
.y94{bottom:181.190192pt;}
.y1dc{bottom:190.061008pt;}
.y2c{bottom:190.832158pt;}
.y11f{bottom:190.836144pt;}
.y55{bottom:190.989483pt;}
.y14c{bottom:191.299904pt;}
.ye8{bottom:193.790037pt;}
.yc5{bottom:193.945890pt;}
.y19c{bottom:194.722970pt;}
.y17b{bottom:195.344809pt;}
.y1db{bottom:201.726630pt;}
.y11e{bottom:206.389872pt;}
.y54{bottom:206.544543pt;}
.y14b{bottom:206.854298pt;}
.y17a{bottom:207.009805pt;}
.y2b{bottom:207.475218pt;}
.y92{bottom:208.407607pt;}
.y1da{bottom:213.392879pt;}
.y19b{bottom:217.433627pt;}
.y179{bottom:218.520427pt;}
.ye7{bottom:220.231226pt;}
.y11d{bottom:221.788665pt;}
.y53{bottom:222.098937pt;}
.y14a{bottom:222.408692pt;}
.y2a{bottom:223.029612pt;}
.y91{bottom:223.962001pt;}
.yc4{bottom:224.588411pt;}
.y1d9{bottom:225.058501pt;}
.y19a{bottom:232.987354pt;}
.ye6{bottom:235.631220pt;}
.y1d8{bottom:236.569123pt;}
.y11c{bottom:237.497992pt;}
.y149{bottom:237.807486pt;}
.y29{bottom:238.429605pt;}
.y90{bottom:239.361995pt;}
.y52{bottom:242.467070pt;}
.y178{bottom:245.584816pt;}
.y1d7{bottom:248.234118pt;}
.y199{bottom:248.541748pt;}
.ye5{bottom:251.184280pt;}
.y11b{bottom:253.052386pt;}
.y148{bottom:253.362546pt;}
.y28{bottom:253.984666pt;}
.y8f{bottom:254.915722pt;}
.yc3{bottom:255.385865pt;}
.y1d6{bottom:259.899740pt;}
.y177{bottom:260.984810pt;}
.ye4{bottom:266.584274pt;}
.y51{bottom:267.976394pt;}
.y147{bottom:268.917607pt;}
.y27{bottom:269.382793pt;}
.yc2{bottom:270.940259pt;}
.y1d5{bottom:271.410362pt;}
.y119{bottom:272.651045pt;}
.y8e{bottom:274.203181pt;}
.y176{bottom:276.539203pt;}
.ye3{bottom:282.138668pt;}
.y1d4{bottom:283.077238pt;}
.y50{bottom:283.375187pt;}
.y146{bottom:284.317600pt;}
.y26{bottom:284.937187pt;}
.y198{bottom:287.428399pt;}
.y116{bottom:287.892252pt;}
.y11a{bottom:287.895439pt;}
.y175{bottom:292.092264pt;}
.y1d3{bottom:294.742233pt;}
.yc1{bottom:295.516516pt;}
.y8d{bottom:297.379438pt;}
.ye2{bottom:297.693062pt;}
.y4f{bottom:298.929581pt;}
.y197{bottom:299.560394pt;}
.y145{bottom:299.871994pt;}
.y118{bottom:300.182901pt;}
.y25{bottom:300.491581pt;}
.y117{bottom:303.916646pt;}
.y1d2{bottom:306.407855pt;}
.y174{bottom:307.492258pt;}
.y196{bottom:311.692389pt;}
.y8c{bottom:312.779432pt;}
.ye1{bottom:313.091856pt;}
.y4e{bottom:314.483975pt;}
.y144{bottom:315.425721pt;}
.y24{bottom:316.979707pt;}
.y1d1{bottom:317.918477pt;}
.y173{bottom:323.047318pt;}
.y115{bottom:323.357838pt;}
.y195{bottom:323.825718pt;}
.y8b{bottom:328.333826pt;}
.ye0{bottom:328.646916pt;}
.y1d0{bottom:329.583472pt;}
.y4d{bottom:329.883969pt;}
.yc0{bottom:332.223968pt;}
.y23{bottom:332.534101pt;}
.y194{bottom:335.957713pt;}
.y172{bottom:338.601712pt;}
.y114{bottom:338.911565pt;}
.y1cf{bottom:341.250348pt;}
.ydf{bottom:343.734377pt;}
.y8a{bottom:343.888220pt;}
.y4c{bottom:345.439029pt;}
.ybf{bottom:347.778362pt;}
.y22{bottom:347.932895pt;}
.y193{bottom:351.200374pt;}
.y1ce{bottom:352.760970pt;}
.y143{bottom:354.311039pt;}
.y113{bottom:354.465292pt;}
.y89{bottom:359.287014pt;}
.yde{bottom:359.288770pt;}
.y4b{bottom:360.837823pt;}
.ybe{bottom:363.332755pt;}
.y21{bottom:363.487289pt;}
.y1cd{bottom:364.425965pt;}
.y142{bottom:366.445701pt;}
.y112{bottom:369.865286pt;}
.y192{bottom:373.599445pt;}
.y171{bottom:374.221698pt;}
.y88{bottom:374.687008pt;}
.ydd{bottom:374.843164pt;}
.y1cc{bottom:376.091587pt;}
.y4a{bottom:376.392217pt;}
.y141{bottom:378.577696pt;}
.ybd{bottom:378.731549pt;}
.y20{bottom:379.041682pt;}
.y191{bottom:385.265067pt;}
.y111{bottom:385.419680pt;}
.y170{bottom:386.511026pt;}
.y1cb{bottom:387.758462pt;}
.y87{bottom:390.085801pt;}
.ydc{bottom:390.243158pt;}
.y140{bottom:390.709691pt;}
.y49{bottom:391.947277pt;}
.ybc{bottom:394.285943pt;}
.y1f{bottom:394.441676pt;}
.y190{bottom:396.775689pt;}
.y16f{bottom:398.641688pt;}
.y1ca{bottom:399.269084pt;}
.y110{bottom:400.974074pt;}
.y13f{bottom:402.841686pt;}
.y86{bottom:405.640195pt;}
.y48{bottom:407.501671pt;}
.ydb{bottom:409.530084pt;}
.ybb{bottom:409.840337pt;}
.y1e{bottom:409.996737pt;}
.y16e{bottom:410.773683pt;}
.y1c9{bottom:410.934080pt;}
.y10f{bottom:416.372868pt;}
.y13e{bottom:418.085680pt;}
.y85{bottom:421.040189pt;}
.y1c8{bottom:422.599702pt;}
.y47{bottom:423.054732pt;}
.y18f{bottom:424.461944pt;}
.yba{bottom:425.239131pt;}
.y1d{bottom:425.549797pt;}
.y16d{bottom:426.019010pt;}
.y13d{bottom:429.751009pt;}
.yda{bottom:431.772608pt;}
.y10e{bottom:431.927928pt;}
.y1c7{bottom:434.264697pt;}
.y16c{bottom:437.529672pt;}
.y46{bottom:438.609792pt;}
.y83{bottom:439.238982pt;}
.y18e{bottom:439.860738pt;}
.yb9{bottom:440.793524pt;}
.y1c{bottom:442.037924pt;}
.y1c6{bottom:445.775319pt;}
.yd9{bottom:447.172602pt;}
.y10d{bottom:447.637255pt;}
.y16b{bottom:449.193668pt;}
.y13c{bottom:451.993027pt;}
.y45{bottom:454.009786pt;}
.y84{bottom:454.327109pt;}
.y80{bottom:454.327149pt;}
.y18d{bottom:455.415799pt;}
.y1c5{bottom:457.442194pt;}
.y1b{bottom:457.592318pt;}
.yb8{bottom:457.748584pt;}
.yd8{bottom:462.726996pt;}
.y10c{bottom:463.037249pt;}
.y13b{bottom:463.658649pt;}
.y82{bottom:466.615237pt;}
.y1c4{bottom:469.107190pt;}
.y44{bottom:469.564180pt;}
.y81{bottom:470.502743pt;}
.y18c{bottom:470.970859pt;}
.y1a{bottom:472.992312pt;}
.yb7{bottom:473.148578pt;}
.y16a{bottom:473.303658pt;}
.y13a{bottom:475.325524pt;}
.yd7{bottom:478.281389pt;}
.y10b{bottom:478.592309pt;}
.y1c3{bottom:480.618439pt;}
.y169{bottom:484.814280pt;}
.y43{bottom:484.962973pt;}
.y7f{bottom:485.902736pt;}
.y18b{bottom:486.370853pt;}
.y19{bottom:488.547372pt;}
.yb6{bottom:488.701639pt;}
.y1c2{bottom:492.283434pt;}
.yd6{bottom:493.680183pt;}
.y10a{bottom:493.991103pt;}
.y168{bottom:496.479902pt;}
.y42{bottom:500.518034pt;}
.y7e{bottom:501.456464pt;}
.y18a{bottom:501.923913pt;}
.y1c1{bottom:503.949056pt;}
.y139{bottom:507.988044pt;}
.yd5{bottom:509.234577pt;}
.y109{bottom:514.211095pt;}
.y18{bottom:514.522962pt;}
.yb4{bottom:514.989761pt;}
.y1c0{bottom:515.615305pt;}
.y41{bottom:516.072428pt;}
.y7d{bottom:516.856457pt;}
.y189{bottom:517.168307pt;}
.yb1{bottom:521.210972pt;}
.y138{bottom:523.543105pt;}
.yd4{bottom:524.634571pt;}
.y167{bottom:526.032957pt;}
.y1bf{bottom:527.125927pt;}
.y188{bottom:528.501636pt;}
.yb5{bottom:530.077889pt;}
.yb0{bottom:530.078955pt;}
.y40{bottom:531.627488pt;}
.y7c{bottom:532.409518pt;}
.y187{bottom:532.721634pt;}
.y1be{bottom:538.791549pt;}
.y137{bottom:538.943099pt;}
.y108{bottom:540.032285pt;}
.yd3{bottom:540.188298pt;}
.y166{bottom:541.587351pt;}
.yb3{bottom:542.366017pt;}
.yb2{bottom:546.097896pt;}
.y3f{bottom:547.181882pt;}
.y1bd{bottom:550.456544pt;}
.y17{bottom:551.388547pt;}
.y7b{bottom:551.697643pt;}
.y136{bottom:554.498159pt;}
.y107{bottom:555.587345pt;}
.y186{bottom:555.742358pt;}
.yd2{bottom:555.742692pt;}
.y165{bottom:557.141745pt;}
.y1bc{bottom:561.967166pt;}
.y3e{bottom:562.580676pt;}
.y16{bottom:564.299168pt;}
.y135{bottom:570.051219pt;}
.y106{bottom:570.985472pt;}
.y7a{bottom:571.137619pt;}
.yd1{bottom:571.142686pt;}
.y185{bottom:571.296752pt;}
.yaf{bottom:571.297739pt;}
.y164{bottom:572.540538pt;}
.y1bb{bottom:573.634041pt;}
.y3d{bottom:578.135070pt;}
.y15{bottom:578.297963pt;}
.y1ba{bottom:585.299663pt;}
.y134{bottom:585.451213pt;}
.y105{bottom:586.540533pt;}
.yd0{bottom:586.697746pt;}
.y184{bottom:586.851146pt;}
.yae{bottom:586.852133pt;}
.y163{bottom:588.094932pt;}
.y14{bottom:591.208584pt;}
.y3c{bottom:593.690130pt;}
.y79{bottom:594.158810pt;}
.y1b9{bottom:596.964659pt;}
.y133{bottom:601.005607pt;}
.ycf{bottom:601.785207pt;}
.y104{bottom:601.940527pt;}
.y183{bottom:602.249940pt;}
.yad{bottom:602.250927pt;}
.y162{bottom:603.493673pt;}
.y13{bottom:604.117952pt;}
.y3b{bottom:609.088924pt;}
.y78{bottom:609.713204pt;}
.y1b8{bottom:616.090268pt;}
.y12{bottom:617.028574pt;}
.yce{bottom:617.340267pt;}
.y103{bottom:617.494920pt;}
.y182{bottom:617.804334pt;}
.y161{bottom:619.048733pt;}
.y132{bottom:622.314932pt;}
.y3a{bottom:624.643318pt;}
.y77{bottom:625.111997pt;}
.y11{bottom:629.937942pt;}
.yac{bottom:630.560262pt;}
.ycd{bottom:632.893328pt;}
.y102{bottom:633.048648pt;}
.y181{bottom:637.092459pt;}
.y160{bottom:638.336192pt;}
.yab{bottom:639.427438pt;}
.y39{bottom:640.352645pt;}
.y1b7{bottom:640.355325pt;}
.y76{bottom:640.666391pt;}
.y10{bottom:642.848564pt;}
.y101{bottom:648.603041pt;}
.ycc{bottom:652.025187pt;}
.y38{bottom:655.752638pt;}
.y1b6{bottom:655.754118pt;}
.yf{bottom:655.759185pt;}
.y75{bottom:656.220785pt;}
.y100{bottom:664.157435pt;}
.ye{bottom:668.668553pt;}
.y37{bottom:671.307032pt;}
.y1b5{bottom:671.308512pt;}
.y74{bottom:671.620779pt;}
.yaa{bottom:674.423024pt;}
.y15f{bottom:676.289910pt;}
.yff{bottom:679.712496pt;}
.yd{bottom:681.579175pt;}
.y36{bottom:686.705826pt;}
.y1b4{bottom:686.708506pt;}
.y73{bottom:687.173839pt;}
.y15e{bottom:687.954906pt;}
.ya9{bottom:689.978085pt;}
.ycb{bottom:690.289571pt;}
.yc{bottom:694.488543pt;}
.y131{bottom:694.489570pt;}
.yfe{bottom:695.112489pt;}
.y35{bottom:702.260220pt;}
.y1b3{bottom:702.263567pt;}
.y72{bottom:702.418233pt;}
.ya8{bottom:705.378079pt;}
.y130{bottom:706.621565pt;}
.yb{bottom:707.399164pt;}
.yfd{bottom:710.665550pt;}
.y153{bottom:714.700228pt;}
.y34{bottom:717.814614pt;}
.y1b2{bottom:717.816627pt;}
.y71{bottom:717.972627pt;}
.y12f{bottom:718.753560pt;}
.ya{bottom:720.308533pt;}
.ya7{bottom:720.932472pt;}
.yfc{bottom:726.220610pt;}
.y154{bottom:726.994890pt;}
.y12e{bottom:730.885555pt;}
.y33{bottom:733.214607pt;}
.y1b1{bottom:733.216621pt;}
.y9{bottom:733.219154pt;}
.y70{bottom:733.525687pt;}
.y156{bottom:735.224220pt;}
.ya6{bottom:736.486866pt;}
.yfb{bottom:741.620604pt;}
.y12d{bottom:746.130882pt;}
.y1b0{bottom:748.771681pt;}
.y6f{bottom:748.925681pt;}
.yfa{bottom:757.174998pt;}
.ya5{bottom:761.218056pt;}
.y15d{bottom:761.694876pt;}
.y1af{bottom:764.325408pt;}
.y6e{bottom:764.480742pt;}
.y12c{bottom:768.528540pt;}
.y157{bottom:769.231140pt;}
.yf9{bottom:772.728058pt;}
.y1ae{bottom:779.724202pt;}
.y6d{bottom:779.879535pt;}
.y12b{bottom:780.193535pt;}
.ya4{bottom:789.523012pt;}
.y8{bottom:793.260330pt;}
.yf8{bottom:794.505556pt;}
.y1ad{bottom:795.278596pt;}
.y6c{bottom:795.434596pt;}
.yf7{bottom:797.616182pt;}
.y158{bottom:803.236059pt;}
.y7{bottom:809.281524pt;}
.y12a{bottom:810.214723pt;}
.y1ac{bottom:810.678590pt;}
.y6b{bottom:810.989656pt;}
.y155{bottom:820.586853pt;}
.yf6{bottom:822.658705pt;}
.y6{bottom:825.301517pt;}
.y129{bottom:825.769784pt;}
.ya3{bottom:826.231130pt;}
.y1ab{bottom:826.232317pt;}
.y6a{bottom:826.389650pt;}
.y159{bottom:837.242979pt;}
.yf5{bottom:838.212432pt;}
.y5{bottom:841.166578pt;}
.y128{bottom:841.322844pt;}
.ya2{bottom:841.785524pt;}
.y1aa{bottom:841.786711pt;}
.y69{bottom:841.788444pt;}
.yf4{bottom:853.612426pt;}
.y127{bottom:856.722838pt;}
.ya1{bottom:857.184318pt;}
.y1a9{bottom:857.186705pt;}
.y68{bottom:857.187771pt;}
.y4{bottom:857.344038pt;}
.yf3{bottom:869.166820pt;}
.y15a{bottom:871.249899pt;}
.y126{bottom:872.277232pt;}
.ya0{bottom:872.738712pt;}
.y1a8{bottom:872.741765pt;}
.y67{bottom:872.742832pt;}
.y125{bottom:887.674692pt;}
.y9f{bottom:888.293105pt;}
.y1a7{bottom:888.294825pt;}
.y66{bottom:888.295892pt;}
.yf2{bottom:890.943091pt;}
.yf1{bottom:894.204343pt;}
.y3{bottom:898.094688pt;}
.y9e{bottom:903.691899pt;}
.y1a6{bottom:903.694819pt;}
.y65{bottom:903.695886pt;}
.y15b{bottom:905.256152pt;}
.y9d{bottom:919.246293pt;}
.yf0{bottom:919.248066pt;}
.y1a5{bottom:919.249213pt;}
.y64{bottom:919.250946pt;}
.y2{bottom:934.182807pt;}
.y9c{bottom:934.646287pt;}
.y1a4{bottom:934.647340pt;}
.yef{bottom:934.648060pt;}
.y63{bottom:934.649740pt;}
.y15c{bottom:939.263072pt;}
.y9b{bottom:950.200681pt;}
.yee{bottom:950.201787pt;}
.y1a3{bottom:950.202401pt;}
.y62{bottom:950.204134pt;}
.hc{height:2.066177pt;}
.h1f{height:21.993515pt;}
.h1e{height:22.520226pt;}
.hb{height:25.093660pt;}
.h1d{height:25.984664pt;}
.h21{height:26.248645pt;}
.h17{height:28.712682pt;}
.h5{height:31.507407pt;}
.h8{height:35.865529pt;}
.h4{height:35.890751pt;}
.ha{height:36.416375pt;}
.h12{height:36.421388pt;}
.h9{height:38.740825pt;}
.h3{height:39.480082pt;}
.h19{height:41.384800pt;}
.h1b{height:41.989813pt;}
.h16{height:45.595288pt;}
.hd{height:46.246132pt;}
.h20{height:49.528689pt;}
.h10{height:50.603624pt;}
.h1c{height:51.183326pt;}
.h1a{height:51.805833pt;}
.hf{height:59.313647pt;}
.h7{height:62.781250pt;}
.h18{height:63.036286pt;}
.h14{height:71.355750pt;}
.h13{height:73.575797pt;}
.h15{height:73.578304pt;}
.h2{height:86.138528pt;}
.he{height:86.698809pt;}
.h11{height:96.243260pt;}
.h6{height:106.578667pt;}
.h1{height:1026.597600pt;}
.h0{height:1122.666667pt;}
.w2{width:681.603867pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:63.462201pt;}
.x1{left:68.128773pt;}
.x32{left:69.373129pt;}
.x4a{left:74.661970pt;}
.x10{left:76.372196pt;}
.x3{left:81.038768pt;}
.x4{left:82.438767pt;}
.x34{left:88.349298pt;}
.x35{left:90.216231pt;}
.x5{left:92.082497pt;}
.x37{left:95.815562pt;}
.x36{left:98.459961pt;}
.x2{left:102.970625pt;}
.x47{left:104.508092pt;}
.x4c{left:108.570623pt;}
.x48{left:118.171153pt;}
.x16{left:136.101015pt;}
.x1b{left:140.610846pt;}
.x33{left:142.010834pt;}
.x2f{left:154.139938pt;}
.x17{left:161.144779pt;}
.x2e{left:169.071932pt;}
.x30{left:170.166599pt;}
.x2d{left:172.810598pt;}
.x12{left:175.764610pt;}
.x2c{left:183.698593pt;}
.x1d{left:187.742592pt;}
.x4b{left:195.364362pt;}
.x31{left:204.697075pt;}
.x18{left:206.719774pt;}
.x19{left:208.584773pt;}
.x1c{left:213.252123pt;}
.x1e{left:223.673271pt;}
.x46{left:228.835908pt;}
.x1a{left:231.139793pt;}
.x7{left:238.450171pt;}
.x6{left:266.137094pt;}
.x8{left:284.024553pt;}
.xa{left:291.645750pt;}
.x9{left:305.178278pt;}
.x49{left:367.397186pt;}
.x14{left:404.415905pt;}
.x4d{left:409.548899pt;}
.x41{left:413.438501pt;}
.x13{left:417.325273pt;}
.x43{left:419.505166pt;}
.x42{left:422.149164pt;}
.x3f{left:424.483497pt;}
.x3a{left:428.607829pt;}
.x3c{left:433.366120pt;}
.x3b{left:439.910491pt;}
.x39{left:445.462488pt;}
.x27{left:457.612167pt;}
.x25{left:461.347001pt;}
.x28{left:464.924044pt;}
.x21{left:470.210865pt;}
.x29{left:472.389138pt;}
.x44{left:479.545142pt;}
.xc{left:484.054740pt;}
.x45{left:486.389139pt;}
.x1f{left:488.565944pt;}
.x15{left:498.365196pt;}
.x26{left:501.010932pt;}
.x20{left:506.298630pt;}
.x40{left:514.855461pt;}
.xb{left:519.830992pt;}
.x22{left:521.853125pt;}
.xd{left:529.785388pt;}
.x2a{left:531.030395pt;}
.x2b{left:532.430398pt;}
.x23{left:533.363747pt;}
.x3d{left:543.021116pt;}
.x3e{left:543.942249pt;}
.xf{left:547.206674pt;}
.xe{left:550.784180pt;}
.x24{left:553.118067pt;}
.x38{left:569.790439pt;}
}




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