
    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_3affa002a4f0a8ca7b77fa92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_2f90862386621d09a5788e18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112000;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_1a4b3c85653378a8a326a00f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_593b469f8bb0416ac5c745ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929688;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_bbd7d990c6308b10f9c92cc2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_8da8427f55b9e91d984bd010.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.929688;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_1606efc48750456ad8ab561c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.949219;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_06fdf59b5503b897422dfdf5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.076000;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_e8013c3d4616a801b7dfb6b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.150879;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_160ff14854f2717eb4d7f055.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.816406;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_4683e415d8a835e054dec622.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952000;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_c04039bb745b13f06ccc0603.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.197000;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_a6f9add787852e16732bbee2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.952000;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_fb2ed4f095342b101077fad0.woff2')format("woff");}.fff{font-family:fff;line-height:0.950000;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_e5e16e0e36e2b1624173c1ba.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112000;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.vf{vertical-align:-161.280000px;}
.v14{vertical-align:-125.280000px;}
.v8{vertical-align:-38.880000px;}
.v1c{vertical-align:-26.640000px;}
.v17{vertical-align:-24.480000px;}
.ve{vertical-align:-22.320000px;}
.v1{vertical-align:-20.304000px;}
.vd{vertical-align:-18.720000px;}
.v5{vertical-align:-17.280000px;}
.va{vertical-align:-15.840000px;}
.v3{vertical-align:-14.400000px;}
.vb{vertical-align:-12.960000px;}
.v11{vertical-align:-10.080000px;}
.vc{vertical-align:-2.160000px;}
.v1a{vertical-align:-1.140000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.184000px;}
.v13{vertical-align:10.080000px;}
.v21{vertical-align:11.520000px;}
.v4{vertical-align:14.400000px;}
.v16{vertical-align:15.840000px;}
.v6{vertical-align:17.280000px;}
.v1b{vertical-align:18.720000px;}
.v2{vertical-align:20.304000px;}
.v7{vertical-align:21.600000px;}
.v12{vertical-align:23.760000px;}
.v15{vertical-align:30.240000px;}
.v27{vertical-align:32.400000px;}
.v10{vertical-align:39.600000px;}
.v22{vertical-align:50.400000px;}
.v23{vertical-align:52.560000px;}
.v19{vertical-align:60.480000px;}
.v20{vertical-align:72.000000px;}
.v1d{vertical-align:82.080000px;}
.v24{vertical-align:90.000000px;}
.v18{vertical-align:95.040000px;}
.v25{vertical-align:118.080000px;}
.v26{vertical-align:136.080000px;}
.v1e{vertical-align:154.080000px;}
.v1f{vertical-align:185.040000px;}
.ls69{letter-spacing:-0.360000px;}
.ls92{letter-spacing:-0.345600px;}
.ls74{letter-spacing:-0.342000px;}
.ls5e{letter-spacing:-0.327000px;}
.ls7c{letter-spacing:-0.298200px;}
.ls5d{letter-spacing:-0.295200px;}
.ls15{letter-spacing:-0.292200px;}
.lsa{letter-spacing:-0.277200px;}
.ls6e{letter-spacing:-0.269400px;}
.ls72{letter-spacing:-0.252000px;}
.ls6b{letter-spacing:-0.231600px;}
.ls5a{letter-spacing:-0.230400px;}
.ls20{letter-spacing:-0.216000px;}
.ls79{letter-spacing:-0.212400px;}
.ls63{letter-spacing:-0.211800px;}
.ls5f{letter-spacing:-0.198000px;}
.lsa2{letter-spacing:-0.196200px;}
.ls94{letter-spacing:-0.184200px;}
.ls40{letter-spacing:-0.181800px;}
.ls6a{letter-spacing:-0.170400px;}
.ls3f{letter-spacing:-0.152400px;}
.ls17{letter-spacing:-0.145200px;}
.ls16{letter-spacing:-0.144000px;}
.ls36{letter-spacing:-0.140400px;}
.lsd{letter-spacing:-0.120000px;}
.ls5c{letter-spacing:-0.115200px;}
.lsa1{letter-spacing:-0.114000px;}
.ls61{letter-spacing:-0.107400px;}
.ls3{letter-spacing:-0.106800px;}
.ls8e{letter-spacing:-0.099600px;}
.ls9{letter-spacing:-0.097800px;}
.lsb{letter-spacing:-0.075000px;}
.ls39{letter-spacing:-0.072000px;}
.ls93{letter-spacing:-0.057600px;}
.ls80{letter-spacing:-0.056160px;}
.ls37{letter-spacing:-0.055140px;}
.ls3b{letter-spacing:-0.054000px;}
.ls4a{letter-spacing:-0.043920px;}
.ls73{letter-spacing:-0.036000px;}
.ls6f{letter-spacing:-0.033120px;}
.ls81{letter-spacing:-0.020160px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.003600px;}
.ls7b{letter-spacing:0.011220px;}
.ls8f{letter-spacing:0.023040px;}
.ls3a{letter-spacing:0.056160px;}
.ls91{letter-spacing:0.059328px;}
.ls7a{letter-spacing:0.069000px;}
.ls55{letter-spacing:0.070272px;}
.ls11{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.088800px;}
.ls1e{letter-spacing:0.090000px;}
.ls76{letter-spacing:0.097800px;}
.ls1f{letter-spacing:0.103800px;}
.ls52{letter-spacing:0.110400px;}
.ls70{letter-spacing:0.120000px;}
.ls2d{letter-spacing:0.138240px;}
.lsc{letter-spacing:0.140400px;}
.ls50{letter-spacing:0.141000px;}
.ls35{letter-spacing:0.141840px;}
.ls12{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.144432px;}
.ls5b{letter-spacing:0.150600px;}
.ls34{letter-spacing:0.156000px;}
.ls4e{letter-spacing:0.166752px;}
.ls51{letter-spacing:0.166800px;}
.ls82{letter-spacing:0.168600px;}
.ls53{letter-spacing:0.175680px;}
.ls66{letter-spacing:0.177000px;}
.ls21{letter-spacing:0.183000px;}
.ls78{letter-spacing:0.188928px;}
.ls9c{letter-spacing:0.198000px;}
.ls4f{letter-spacing:0.211392px;}
.ls2b{letter-spacing:0.212544px;}
.ls68{letter-spacing:0.216000px;}
.ls7d{letter-spacing:0.219000px;}
.ls60{letter-spacing:0.226200px;}
.ls2a{letter-spacing:0.240912px;}
.ls25{letter-spacing:0.242784px;}
.ls58{letter-spacing:0.256320px;}
.ls22{letter-spacing:0.262080px;}
.ls4d{letter-spacing:0.270864px;}
.ls14{letter-spacing:0.277200px;}
.ls57{letter-spacing:0.277632px;}
.ls75{letter-spacing:0.278400px;}
.ls71{letter-spacing:0.288000px;}
.ls59{letter-spacing:0.292320px;}
.ls7f{letter-spacing:0.294600px;}
.ls62{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.352200px;}
.ls90{letter-spacing:0.357000px;}
.ls7e{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.364320px;}
.ls54{letter-spacing:0.367920px;}
.ls77{letter-spacing:0.653328px;}
.ls6{letter-spacing:0.666720px;}
.ls7{letter-spacing:0.902880px;}
.ls86{letter-spacing:1.480320px;}
.ls3d{letter-spacing:2.025360px;}
.ls87{letter-spacing:2.436480px;}
.ls3e{letter-spacing:2.650320px;}
.ls89{letter-spacing:3.864960px;}
.ls2e{letter-spacing:3.974400px;}
.ls33{letter-spacing:4.220640px;}
.ls32{letter-spacing:4.667760px;}
.ls46{letter-spacing:4.752000px;}
.ls47{letter-spacing:5.743200px;}
.ls27{letter-spacing:6.128640px;}
.ls28{letter-spacing:6.722784px;}
.ls8d{letter-spacing:9.509040px;}
.ls45{letter-spacing:13.577760px;}
.ls8c{letter-spacing:15.989040px;}
.ls42{letter-spacing:23.472720px;}
.ls41{letter-spacing:27.025200px;}
.ls44{letter-spacing:29.340000px;}
.ls8a{letter-spacing:31.121280px;}
.ls43{letter-spacing:31.147200px;}
.ls30{letter-spacing:32.027760px;}
.ls23{letter-spacing:34.332624px;}
.ls26{letter-spacing:37.566000px;}
.ls24{letter-spacing:39.326400px;}
.ls48{letter-spacing:40.438800px;}
.ls49{letter-spacing:41.158800px;}
.ls19{letter-spacing:48.277440px;}
.ls2c{letter-spacing:51.350256px;}
.ls6d{letter-spacing:51.876000px;}
.ls29{letter-spacing:52.070256px;}
.ls4c{letter-spacing:54.602496px;}
.ls4b{letter-spacing:54.682560px;}
.ls85{letter-spacing:59.181408px;}
.ls67{letter-spacing:61.488000px;}
.ls8b{letter-spacing:64.690560px;}
.ls65{letter-spacing:69.913152px;}
.ls5{letter-spacing:74.595456px;}
.ls4{letter-spacing:74.708640px;}
.lsa0{letter-spacing:83.829600px;}
.ls83{letter-spacing:83.880000px;}
.ls2f{letter-spacing:84.067200px;}
.ls18{letter-spacing:88.113600px;}
.lse{letter-spacing:88.164000px;}
.ls2{letter-spacing:92.145600px;}
.ls1{letter-spacing:92.196000px;}
.lsf{letter-spacing:96.429600px;}
.ls10{letter-spacing:96.480000px;}
.ls88{letter-spacing:98.445600px;}
.ls3c{letter-spacing:98.496000px;}
.ls64{letter-spacing:136.910880px;}
.ls84{letter-spacing:137.661408px;}
.ls31{letter-spacing:154.005120px;}
.ls95{letter-spacing:259.854000px;}
.ls98{letter-spacing:294.534000px;}
.ls1a{letter-spacing:307.914000px;}
.ls9a{letter-spacing:334.134000px;}
.ls9d{letter-spacing:347.094000px;}
.ls9e{letter-spacing:366.240000px;}
.ls99{letter-spacing:393.600000px;}
.ls97{letter-spacing:401.460000px;}
.ls9f{letter-spacing:401.520000px;}
.ls1b{letter-spacing:402.480000px;}
.ls9b{letter-spacing:407.940000px;}
.ls1d{letter-spacing:410.400000px;}
.ls96{letter-spacing:455.520000px;}
.ls1c{letter-spacing:642.714000px;}
.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;}
}
.ws54{word-spacing:-46.341504px;}
.ws55{word-spacing:-43.953120px;}
.ws1{word-spacing:-34.027920px;}
.ws4f{word-spacing:-33.186240px;}
.ws38{word-spacing:-29.808000px;}
.ws42{word-spacing:-26.484480px;}
.ws6a{word-spacing:-25.089120px;}
.ws69{word-spacing:-25.032960px;}
.ws5d{word-spacing:-24.118320px;}
.ws61{word-spacing:-24.117120px;}
.ws33{word-spacing:-23.880672px;}
.ws21{word-spacing:-23.880480px;}
.wsb{word-spacing:-23.843520px;}
.wsa{word-spacing:-23.839920px;}
.ws1f{word-spacing:-23.791680px;}
.ws1e{word-spacing:-23.736540px;}
.ws68{word-spacing:-22.365480px;}
.ws3{word-spacing:-22.108608px;}
.ws1c{word-spacing:-22.070880px;}
.ws92{word-spacing:-21.956880px;}
.ws93{word-spacing:-21.912408px;}
.ws48{word-spacing:-21.900480px;}
.ws3c{word-spacing:-21.743880px;}
.wsd{word-spacing:-20.376000px;}
.ws70{word-spacing:-20.056032px;}
.ws80{word-spacing:-19.831680px;}
.ws1a{word-spacing:-19.800000px;}
.ws46{word-spacing:-19.356480px;}
.ws44{word-spacing:-19.324800px;}
.wsc{word-spacing:-19.178928px;}
.ws26{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.849720px;}
.ws25{word-spacing:-18.792000px;}
.ws64{word-spacing:-18.786672px;}
.ws28{word-spacing:-18.745920px;}
.ws2e{word-spacing:-18.532800px;}
.ws2d{word-spacing:-18.488880px;}
.ws14{word-spacing:-17.971632px;}
.ws89{word-spacing:-17.930880px;}
.ws20{word-spacing:-17.424000px;}
.ws63{word-spacing:-17.423880px;}
.ws71{word-spacing:-17.392608px;}
.ws3e{word-spacing:-17.354880px;}
.ws6b{word-spacing:-17.334720px;}
.ws9{word-spacing:-16.912080px;}
.ws5{word-spacing:-16.814280px;}
.ws49{word-spacing:-16.638048px;}
.ws6{word-spacing:-16.634880px;}
.ws4e{word-spacing:-16.519560px;}
.ws3d{word-spacing:-16.119480px;}
.ws8{word-spacing:-15.797520px;}
.ws29{word-spacing:-15.694848px;}
.ws41{word-spacing:-15.657120px;}
.ws45{word-spacing:-15.624000px;}
.ws3b{word-spacing:-15.598080px;}
.ws2a{word-spacing:-15.513048px;}
.ws32{word-spacing:-14.751648px;}
.ws1d{word-spacing:-14.713920px;}
.ws31{word-spacing:-14.607120px;}
.ws75{word-spacing:-14.595840px;}
.ws82{word-spacing:-14.586480px;}
.ws24{word-spacing:-14.572800px;}
.ws74{word-spacing:-14.457600px;}
.ws81{word-spacing:-14.446080px;}
.ws1b{word-spacing:-14.414400px;}
.ws86{word-spacing:-14.356800px;}
.ws88{word-spacing:-14.261880px;}
.ws11{word-spacing:-13.651920px;}
.ws2f{word-spacing:-13.464000px;}
.wse{word-spacing:-13.359720px;}
.ws2c{word-spacing:-13.147200px;}
.ws27{word-spacing:-12.695040px;}
.ws10{word-spacing:-12.638880px;}
.wsf{word-spacing:-12.493680px;}
.ws65{word-spacing:-12.481332px;}
.ws13{word-spacing:-12.429360px;}
.ws62{word-spacing:-12.216960px;}
.ws66{word-spacing:-12.171912px;}
.ws83{word-spacing:-11.880000px;}
.ws40{word-spacing:-11.848440px;}
.ws6c{word-spacing:-11.675640px;}
.ws3a{word-spacing:-11.410560px;}
.ws3f{word-spacing:-11.399640px;}
.ws39{word-spacing:-11.180160px;}
.ws67{word-spacing:-10.782840px;}
.ws4a{word-spacing:-10.709520px;}
.ws77{word-spacing:-10.612800px;}
.ws7c{word-spacing:-10.563840px;}
.ws7{word-spacing:-10.488840px;}
.ws79{word-spacing:-10.218240px;}
.ws52{word-spacing:-9.469728px;}
.ws50{word-spacing:-9.432000px;}
.ws51{word-spacing:-9.396000px;}
.ws15{word-spacing:-9.216000px;}
.ws53{word-spacing:-9.127728px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.022752px;}
.ws2{word-spacing:5.922000px;}
.ws85{word-spacing:10.843200px;}
.ws76{word-spacing:11.271600px;}
.ws2b{word-spacing:11.332080px;}
.ws72{word-spacing:12.484800px;}
.ws78{word-spacing:14.322240px;}
.ws23{word-spacing:14.515200px;}
.ws84{word-spacing:16.498080px;}
.ws87{word-spacing:17.253504px;}
.ws30{word-spacing:18.655200px;}
.ws43{word-spacing:20.655072px;}
.ws73{word-spacing:21.315600px;}
.ws22{word-spacing:23.289120px;}
.ws6d{word-spacing:25.391520px;}
.ws6e{word-spacing:48.064752px;}
.ws47{word-spacing:120.867312px;}
.ws34{word-spacing:195.110880px;}
.ws35{word-spacing:218.784000px;}
.ws7b{word-spacing:252.081840px;}
.ws36{word-spacing:272.689680px;}
.ws7a{word-spacing:272.961840px;}
.ws8f{word-spacing:285.162000px;}
.ws17{word-spacing:295.302000px;}
.ws8d{word-spacing:297.384000px;}
.ws57{word-spacing:304.389840px;}
.ws7e{word-spacing:306.081840px;}
.ws8b{word-spacing:313.044000px;}
.ws8c{word-spacing:313.260000px;}
.ws8a{word-spacing:315.906000px;}
.ws4d{word-spacing:316.776000px;}
.ws91{word-spacing:318.948000px;}
.ws8e{word-spacing:321.900000px;}
.ws16{word-spacing:322.284000px;}
.ws19{word-spacing:327.588000px;}
.ws4b{word-spacing:328.244160px;}
.ws56{word-spacing:369.431280px;}
.ws7d{word-spacing:373.041840px;}
.ws4c{word-spacing:378.879120px;}
.ws5a{word-spacing:410.089680px;}
.ws5e{word-spacing:422.039760px;}
.ws5b{word-spacing:425.822160px;}
.ws59{word-spacing:430.594080px;}
.ws90{word-spacing:451.404000px;}
.ws5f{word-spacing:452.569680px;}
.ws18{word-spacing:462.072000px;}
.ws7f{word-spacing:467.993040px;}
.ws58{word-spacing:470.017200px;}
.ws5c{word-spacing:516.165360px;}
.ws60{word-spacing:521.583000px;}
.ws6f{word-spacing:576.528000px;}
.ws37{word-spacing:2510.220000px;}
._13{margin-left:-20.969280px;}
._21{margin-left:-15.603840px;}
._51{margin-left:-12.988800px;}
._27{margin-left:-9.338016px;}
._15{margin-left:-8.000640px;}
._22{margin-left:-6.372288px;}
._1c{margin-left:-5.068800px;}
._1e{margin-left:-3.847680px;}
._28{margin-left:-2.785248px;}
._0{margin-left:-1.729728px;}
._1{width:1.008000px;}
._3{width:2.208960px;}
._2{width:3.453408px;}
._12{width:4.465128px;}
._59{width:5.969952px;}
._30{width:7.380000px;}
._50{width:10.941984px;}
._55{width:12.058560px;}
._20{width:13.372560px;}
._11{width:16.054608px;}
._16{width:17.881056px;}
._46{width:18.886368px;}
._10{width:20.831184px;}
._48{width:22.220640px;}
._58{width:26.465760px;}
._53{width:28.602720px;}
._14{width:30.096432px;}
._52{width:35.800560px;}
._54{width:47.621952px;}
._1f{width:66.165120px;}
._56{width:69.241056px;}
._1a{width:77.993280px;}
._49{width:79.664112px;}
._18{width:83.433600px;}
._47{width:92.209536px;}
._1d{width:100.664640px;}
._1b{width:135.794880px;}
._5b{width:137.041056px;}
._42{width:140.112000px;}
._19{width:143.254080px;}
._17{width:144.645120px;}
._8{width:145.975584px;}
._7{width:153.308880px;}
._29{width:159.299424px;}
._41{width:161.804160px;}
._5c{width:171.578400px;}
._9{width:180.083760px;}
._32{width:192.375312px;}
._43{width:204.067008px;}
._33{width:207.112128px;}
._23{width:218.071200px;}
._45{width:241.360848px;}
._44{width:261.629568px;}
._2b{width:263.489808px;}
._2a{width:273.571680px;}
._31{width:300.678240px;}
._4b{width:308.566752px;}
._5a{width:310.664160px;}
._34{width:315.377280px;}
._2e{width:318.054096px;}
._6{width:320.850624px;}
._d{width:325.146000px;}
._c{width:327.018000px;}
._5d{width:335.431728px;}
._5e{width:337.884000px;}
._2f{width:344.723760px;}
._a{width:345.943728px;}
._f{width:347.370000px;}
._39{width:348.923280px;}
._b{width:353.418000px;}
._25{width:358.915920px;}
._e{width:362.712000px;}
._40{width:365.514720px;}
._2d{width:381.414720px;}
._24{width:384.699840px;}
._2c{width:399.506400px;}
._3f{width:441.233520px;}
._3c{width:442.259088px;}
._26{width:452.045280px;}
._36{width:466.048080px;}
._3e{width:476.530800px;}
._37{width:480.278640px;}
._57{width:484.849008px;}
._3d{width:491.245680px;}
._3b{width:499.512288px;}
._5{width:524.333088px;}
._38{width:530.265120px;}
._3a{width:538.955088px;}
._35{width:555.840960px;}
._4a{width:603.144816px;}
._4c{width:663.734496px;}
._4e{width:686.347728px;}
._4f{width:808.369728px;}
._4d{width:831.443712px;}
._4{width:2154.601728px;}
.fcc{color:rgb(31,119,180);}
.fca{color:rgb(116,132,147);}
.fc6{color:transparent;}
.fc9{color:rgb(255,255,255);}
.fc8{color:rgb(0,176,80);}
.fc5{color:rgb(0,0,0);}
.fcb{color:rgb(140,86,75);}
.fc4{color:rgb(233,237,244);}
.fc3{color:rgb(58,146,58);}
.fc2{color:rgb(192,61,62);}
.fc7{color:rgb(255,0,0);}
.fc1{color:rgb(47,115,161);}
.fc0{color:rgb(0,32,96);}
.fs15{font-size:36.000000px;}
.fs28{font-size:36.144000px;}
.fs2f{font-size:39.600000px;}
.fsa{font-size:40.320000px;}
.fs22{font-size:40.464000px;}
.fs1d{font-size:41.760000px;}
.fs13{font-size:43.920000px;}
.fs2a{font-size:44.064000px;}
.fs10{font-size:48.240000px;}
.fse{font-size:48.384000px;}
.fs20{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fs2c{font-size:54.144000px;}
.fs7{font-size:56.160000px;}
.fs21{font-size:56.304000px;}
.fs8{font-size:59.760000px;}
.fsb{font-size:59.904000px;}
.fs1f{font-size:61.200000px;}
.fs1c{font-size:63.143729px;}
.fs2b{font-size:63.360000px;}
.fs14{font-size:63.504000px;}
.fs27{font-size:64.080000px;}
.fs1a{font-size:64.800000px;}
.fs1b{font-size:64.944000px;}
.fs17{font-size:65.520000px;}
.fs31{font-size:65.664000px;}
.fs12{font-size:66.240000px;}
.fs26{font-size:66.384000px;}
.fs2e{font-size:69.974180px;}
.fsf{font-size:72.000000px;}
.fsd{font-size:72.144000px;}
.fs2d{font-size:77.760000px;}
.fs19{font-size:79.200000px;}
.fs18{font-size:79.344000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fs25{font-size:87.840000px;}
.fs24{font-size:87.984000px;}
.fs16{font-size:90.000000px;}
.fs30{font-size:90.144000px;}
.fs9{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs23{font-size:120.384000px;}
.fs3{font-size:144.000000px;}
.fs0{font-size:144.144000px;}
.fs1e{font-size:167.760000px;}
.fs29{font-size:167.904000px;}
.y0{bottom:0.000000px;}
.y6{bottom:8.172000px;}
.ye3{bottom:30.600000px;}
.y27{bottom:31.068000px;}
.y39{bottom:32.004000px;}
.y68{bottom:33.588000px;}
.y45{bottom:40.140000px;}
.yc8{bottom:41.292000px;}
.y94{bottom:41.832000px;}
.y122{bottom:43.344000px;}
.yc7{bottom:52.092000px;}
.ye2{bottom:52.200000px;}
.y71{bottom:52.956000px;}
.y105{bottom:56.988000px;}
.y119{bottom:57.780000px;}
.y44{bottom:58.140000px;}
.yf2{bottom:58.176000px;}
.y127{bottom:60.660000px;}
.y3e{bottom:60.810000px;}
.y49{bottom:61.740000px;}
.y13{bottom:64.260000px;}
.yc6{bottom:65.052000px;}
.y57{bottom:66.384000px;}
.ye1{bottom:73.800000px;}
.y88{bottom:74.268000px;}
.ya3{bottom:77.076000px;}
.y33{bottom:77.148000px;}
.yc5{bottom:78.012000px;}
.yd5{bottom:80.850000px;}
.yf1{bottom:83.736000px;}
.y3a{bottom:84.024000px;}
.y72{bottom:84.276000px;}
.y3b{bottom:85.680000px;}
.y56{bottom:87.984000px;}
.ycd{bottom:89.352000px;}
.yc4{bottom:90.972000px;}
.y93{bottom:93.672000px;}
.y48{bottom:94.212000px;}
.ye0{bottom:95.436000px;}
.y87{bottom:95.868000px;}
.y32{bottom:98.748000px;}
.y103{bottom:101.340000px;}
.yc3{bottom:101.772000px;}
.yd4{bottom:104.400000px;}
.ya2{bottom:107.316000px;}
.y20{bottom:109.116000px;}
.y12{bottom:109.872000px;}
.y104{bottom:111.744000px;}
.yc2{bottom:114.732000px;}
.y86{bottom:117.504000px;}
.y47{bottom:119.412000px;}
.y92{bottom:119.592000px;}
.y31{bottom:120.384000px;}
.yc1{bottom:125.532000px;}
.y102{bottom:126.540000px;}
.y1f{bottom:127.116000px;}
.yd8{bottom:127.476000px;}
.y121{bottom:127.908000px;}
.yf7{bottom:128.412000px;}
.y12c{bottom:133.236000px;}
.ya1{bottom:137.556000px;}
.yc0{bottom:138.528000px;}
.y55{bottom:139.824000px;}
.y11{bottom:140.148000px;}
.y136{bottom:143.424000px;}
.y1e{bottom:145.116000px;}
.y91{bottom:145.548000px;}
.y30{bottom:147.024000px;}
.ybf{bottom:151.485000px;}
.ydf{bottom:154.335000px;}
.y101{bottom:156.780000px;}
.yf6{bottom:160.845000px;}
.y54{bottom:161.430000px;}
.y1d{bottom:163.155000px;}
.ybe{bottom:164.445000px;}
.y6b{bottom:164.595000px;}
.y6a{bottom:164.910000px;}
.yd7{bottom:165.990000px;}
.y12b{bottom:166.245000px;}
.y6f{bottom:166.290000px;}
.ya0{bottom:167.790000px;}
.ycc{bottom:168.840000px;}
.y112{bottom:169.590000px;}
.y10{bottom:170.385000px;}
.yf0{bottom:170.820000px;}
.y114{bottom:174.630000px;}
.y113{bottom:175.710000px;}
.yde{bottom:175.935000px;}
.ybd{bottom:177.405000px;}
.y124{bottom:178.845000px;}
.y135{bottom:182.310000px;}
.y84{bottom:184.890000px;}
.y7e{bottom:188.025000px;}
.ybc{bottom:188.205000px;}
.y100{bottom:188.670000px;}
.y90{bottom:190.185000px;}
.y67{bottom:190.515000px;}
.yf5{bottom:193.245000px;}
.yef{bottom:194.580000px;}
.y12a{bottom:195.915000px;}
.ydd{bottom:197.925000px;}
.y3{bottom:199.110000px;}
.yf{bottom:200.625000px;}
.ybb{bottom:201.165000px;}
.yd6{bottom:204.510000px;}
.y123{bottom:205.845000px;}
.y7d{bottom:206.070000px;}
.y1c{bottom:206.355000px;}
.y2f{bottom:206.790000px;}
.y83{bottom:208.650000px;}
.y111{bottom:209.415000px;}
.y53{bottom:212.940000px;}
.y66{bottom:213.765000px;}
.yba{bottom:214.125000px;}
.y134{bottom:214.710000px;}
.ycb{bottom:219.270000px;}
.yee{bottom:220.140000px;}
.y126{bottom:222.120000px;}
.y129{bottom:222.225000px;}
.y9f{bottom:223.995000px;}
.y1b{bottom:224.355000px;}
.yb9{bottom:224.925000px;}
.y2{bottom:230.790000px;}
.y65{bottom:231.765000px;}
.y2e{bottom:232.710000px;}
.ye{bottom:233.025000px;}
.y110{bottom:233.175000px;}
.y82{bottom:233.490000px;}
.yf8{bottom:234.975000px;}
.yb8{bottom:237.885000px;}
.y26{bottom:238.470000px;}
.y52{bottom:238.680000px;}
.yd3{bottom:243.030000px;}
.y8f{bottom:247.785000px;}
.y120{bottom:248.040000px;}
.y128{bottom:248.580000px;}
.yb7{bottom:248.685000px;}
.y133{bottom:252.180000px;}
.y9e{bottom:254.235000px;}
.y10f{bottom:256.935000px;}
.y2d{bottom:259.380000px;}
.yb6{bottom:261.645000px;}
.y51{bottom:262.800000px;}
.yff{bottom:264.450000px;}
.y69{bottom:266.430000px;}
.y25{bottom:267.270000px;}
.y1a{bottom:267.375000px;}
.yf4{bottom:271.050000px;}
.y1{bottom:271.875000px;}
.yb5{bottom:274.650000px;}
.y43{bottom:276.555000px;}
.y8e{bottom:278.070000px;}
.y10e{bottom:281.415000px;}
.yd2{bottom:281.550000px;}
.y132{bottom:282.420000px;}
.y125{bottom:282.780000px;}
.y9d{bottom:284.475000px;}
.yb4{bottom:285.450000px;}
.y19{bottom:285.585000px;}
.y50{bottom:286.560000px;}
.y42{bottom:287.355000px;}
.ye7{bottom:292.065000px;}
.yfe{bottom:296.535000px;}
.yb3{bottom:298.410000px;}
.yf3{bottom:303.450000px;}
.y8d{bottom:308.310000px;}
.y10d{bottom:309.495000px;}
.y4f{bottom:310.320000px;}
.yb2{bottom:311.370000px;}
.y131{bottom:312.660000px;}
.yfd{bottom:314.535000px;}
.y9c{bottom:314.745000px;}
.y2c{bottom:314.820000px;}
.ye6{bottom:315.825000px;}
.yd{bottom:317.310000px;}
.y7a{bottom:318.240000px;}
.yca{bottom:320.115000px;}
.yd1{bottom:321.450000px;}
.y63{bottom:324.105000px;}
.yb1{bottom:324.330000px;}
.y62{bottom:326.805000px;}
.y18{bottom:328.785000px;}
.y64{bottom:329.505000px;}
.y46{bottom:333.150000px;}
.y8c{bottom:333.510000px;}
.y4e{bottom:334.110000px;}
.y5d{bottom:334.365000px;}
.y24{bottom:336.420000px;}
.y10c{bottom:336.885000px;}
.y11e{bottom:337.140000px;}
.yb0{bottom:337.290000px;}
.ye5{bottom:339.630000px;}
.y2b{bottom:340.740000px;}
.y130{bottom:344.340000px;}
.y9b{bottom:344.985000px;}
.yc{bottom:347.550000px;}
.yaf{bottom:350.250000px;}
.y81{bottom:354.495000px;}
.y10a{bottom:357.225000px;}
.y4d{bottom:357.870000px;}
.y5c{bottom:358.125000px;}
.y7c{bottom:358.170000px;}
.yae{bottom:363.210000px;}
.ydc{bottom:364.290000px;}
.ye4{bottom:364.470000px;}
.y38{bottom:364.605000px;}
.y23{bottom:365.220000px;}
.y61{bottom:365.370000px;}
.y2a{bottom:366.690000px;}
.y11d{bottom:366.810000px;}
.y109{bottom:370.365000px;}
.yc9{bottom:370.515000px;}
.y17{bottom:371.985000px;}
.y10b{bottom:372.525000px;}
.y41{bottom:373.425000px;}
.y9a{bottom:375.945000px;}
.y7b{bottom:376.170000px;}
.y12f{bottom:376.770000px;}
.y70{bottom:377.175000px;}
.yb{bottom:377.790000px;}
.y5b{bottom:377.925000px;}
.yd0{bottom:378.750000px;}
.y76{bottom:380.415000px;}
.y4c{bottom:381.630000px;}
.y60{bottom:383.730000px;}
.y80{bottom:384.735000px;}
.y97{bottom:386.175000px;}
.ydb{bottom:388.050000px;}
.yad{bottom:389.130000px;}
.y16{bottom:389.985000px;}
.y11c{bottom:393.120000px;}
.y29{bottom:393.330000px;}
.yfc{bottom:396.075000px;}
.y37{bottom:399.165000px;}
.y5a{bottom:401.685000px;}
.y5f{bottom:401.730000px;}
.yac{bottom:402.120000px;}
.y3d{bottom:402.840000px;}
.y40{bottom:403.095000px;}
.y5{bottom:404.175000px;}
.y8b{bottom:406.260000px;}
.ya{bottom:408.060000px;}
.ycf{bottom:408.990000px;}
.ya4{bottom:409.245000px;}
.y75{bottom:410.685000px;}
.yda{bottom:411.810000px;}
.y7f{bottom:414.975000px;}
.yab{bottom:415.080000px;}
.y12e{bottom:415.650000px;}
.y96{bottom:417.060000px;}
.y116{bottom:418.245000px;}
.y11b{bottom:419.475000px;}
.y118{bottom:420.660000px;}
.yfb{bottom:421.305000px;}
.y8a{bottom:421.380000px;}
.y59{bottom:421.485000px;}
.y108{bottom:422.565000px;}
.yea{bottom:424.980000px;}
.yaa{bottom:428.040000px;}
.yed{bottom:428.550000px;}
.y3f{bottom:429.405000px;}
.y6c{bottom:433.080000px;}
.y36{bottom:433.725000px;}
.y22{bottom:434.370000px;}
.y15{bottom:437.190000px;}
.y9{bottom:438.300000px;}
.yce{bottom:440.715000px;}
.y74{bottom:440.925000px;}
.ya9{bottom:441.000000px;}
.y4a{bottom:441.435000px;}
.y99{bottom:445.110000px;}
.y6e{bottom:445.650000px;}
.y11a{bottom:445.785000px;}
.y4{bottom:447.375000px;}
.y11f{bottom:447.585000px;}
.y12d{bottom:448.050000px;}
.ye9{bottom:452.010000px;}
.yec{bottom:452.310000px;}
.yfa{bottom:452.985000px;}
.y28{bottom:453.810000px;}
.ya8{bottom:453.960000px;}
.y107{bottom:455.370000px;}
.y115{bottom:463.065000px;}
.y21{bottom:463.170000px;}
.y3c{bottom:463.650000px;}
.y58{bottom:465.090000px;}
.ya7{bottom:466.920000px;}
.y5e{bottom:467.355000px;}
.y14{bottom:468.150000px;}
.y35{bottom:468.330000px;}
.yd9{bottom:469.110000px;}
.y8{bottom:470.700000px;}
.y6d{bottom:470.850000px;}
.y73{bottom:471.885000px;}
.y34{bottom:472.575000px;}
.y89{bottom:476.460000px;}
.y85{bottom:477.150000px;}
.yeb{bottom:477.180000px;}
.y95{bottom:478.005000px;}
.y117{bottom:478.440000px;}
.ye8{bottom:479.550000px;}
.y98{bottom:479.670000px;}
.ya6{bottom:479.880000px;}
.y106{bottom:480.210000px;}
.yf9{bottom:481.110000px;}
.y4b{bottom:481.755000px;}
.ya5{bottom:490.680000px;}
.y79{bottom:531.690000px;}
.y7{bottom:547.230000px;}
.y78{bottom:566.640000px;}
.y77{bottom:586.440000px;}
.h1f{height:26.314453px;}
.h2f{height:31.401562px;}
.h3e{height:35.928000px;}
.h3f{height:36.071712px;}
.h32{height:36.274219px;}
.h31{height:39.471680px;}
.h38{height:44.820000px;}
.h5{height:47.304000px;}
.h47{height:47.430144px;}
.h5e{height:50.189760px;}
.h1e{height:50.274000px;}
.h50{height:50.408064px;}
.h2a{height:50.564314px;}
.h28{height:52.349760px;}
.hf{height:52.475904px;}
.hd{height:55.636560px;}
.he{height:55.770624px;}
.h54{height:56.034012px;}
.h21{height:58.026240px;}
.h45{height:58.152384px;}
.h51{height:58.568906px;}
.h48{height:58.633920px;}
.h46{height:58.988160px;}
.h1c{height:59.122224px;}
.hb{height:59.640480px;}
.h2e{height:59.660859px;}
.h29{height:59.784192px;}
.h1b{height:61.669440px;}
.h4f{height:61.794000px;}
.h3b{height:61.803504px;}
.h14{height:63.072000px;}
.h13{height:63.198144px;}
.h3c{height:63.376992px;}
.h59{height:65.529141px;}
.h27{height:66.107520px;}
.h53{height:66.251232px;}
.h15{height:67.032000px;}
.h58{height:68.117760px;}
.h57{height:68.192578px;}
.h5a{height:69.820313px;}
.h16{height:71.856000px;}
.h25{height:71.999712px;}
.h19{height:72.216000px;}
.h52{height:72.394560px;}
.h3{height:73.794240px;}
.h8{height:73.920384px;}
.h12{height:78.427440px;}
.h2b{height:81.177891px;}
.h2d{height:81.260859px;}
.h17{height:81.319219px;}
.h1a{height:82.117440px;}
.h34{height:83.133984px;}
.h10{height:83.885760px;}
.h11{height:84.011904px;}
.h9{height:84.071520px;}
.ha{height:84.215232px;}
.hc{height:89.152560px;}
.h24{height:89.980312px;}
.h2c{height:91.977891px;}
.h2{height:94.608000px;}
.h4a{height:94.734144px;}
.h3d{height:95.568480px;}
.h18{height:95.712192px;}
.h43{height:98.388000px;}
.h5b{height:98.519184px;}
.h26{height:100.548000px;}
.h36{height:101.269440px;}
.h4e{height:105.629063px;}
.h23{height:107.585156px;}
.h49{height:107.784000px;}
.h37{height:108.048000px;}
.h6{height:109.538640px;}
.h7{height:111.943440px;}
.h33{height:114.431484px;}
.h20{height:122.255859px;}
.h5d{height:122.451469px;}
.h5c{height:126.180000px;}
.h1{height:126.270144px;}
.h4{height:131.184000px;}
.h1d{height:132.480000px;}
.h55{height:140.380313px;}
.h35{height:140.869440px;}
.h22{height:146.902641px;}
.h42{height:146.957760px;}
.h41{height:147.083904px;}
.h30{height:152.829360px;}
.h40{height:152.960544px;}
.h44{height:176.580000px;}
.h56{height:189.872578px;}
.h39{height:189.881719px;}
.h3a{height:224.009437px;}
.h4b{height:228.787031px;}
.h4d{height:292.625156px;}
.h4c{height:300.787031px;}
.h0{height:607.500000px;}
.w5{width:117.180000px;}
.w2{width:119.520000px;}
.w3{width:135.000000px;}
.w4{width:136.260000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6b{left:8.280000px;}
.x15{left:9.510000px;}
.x4e{left:14.145000px;}
.x57{left:16.703984px;}
.x32{left:21.203984px;}
.xb{left:24.983984px;}
.x45{left:29.699984px;}
.x21{left:32.255984px;}
.x8{left:35.135984px;}
.x56{left:36.143984px;}
.x4{left:38.231984px;}
.x78{left:44.495984px;}
.x2{left:47.159984px;}
.x1{left:49.031984px;}
.x39{left:51.515984px;}
.x3a{left:52.595984px;}
.xc{left:55.403984px;}
.x3b{left:60.335984px;}
.x22{left:62.675984px;}
.x9{left:65.555984px;}
.x20{left:68.651984px;}
.x46{left:70.235984px;}
.x79{left:74.915984px;}
.x4a{left:75.995984px;}
.xe{left:79.055984px;}
.x17{left:82.367984px;}
.x38{left:84.743984px;}
.x3f{left:87.191984px;}
.xf{left:92.951984px;}
.x4f{left:94.355984px;}
.x4c{left:96.335984px;}
.x12{left:106.991984px;}
.x47{left:110.735984px;}
.x5e{left:112.499984px;}
.x76{left:115.631984px;}
.x4b{left:122.795984px;}
.x77{left:125.531984px;}
.x13{left:128.267984px;}
.x18{left:134.747984px;}
.xa{left:137.771984px;}
.x50{left:151.739984px;}
.x41{left:154.724984px;}
.x5f{left:158.219984px;}
.x2c{left:176.609984px;}
.x62{left:180.464984px;}
.x1e{left:190.799984px;}
.x3d{left:195.869984px;}
.x5{left:219.854984px;}
.x61{left:250.049984px;}
.x2e{left:253.184984px;}
.x65{left:267.584984px;}
.x68{left:278.669984px;}
.x1f{left:290.699984px;}
.x67{left:318.884984px;}
.x59{left:321.119984px;}
.x30{left:326.489984px;}
.x40{left:338.144984px;}
.x11{left:346.679984px;}
.x58{left:352.949984px;}
.x53{left:375.734984px;}
.x31{left:404.069984px;}
.x6c{left:406.049984px;}
.x10{left:412.529984px;}
.x1a{left:413.819984px;}
.x6d{left:416.669984px;}
.x66{left:426.704984px;}
.x69{left:449.249984px;}
.x6e{left:451.949984px;}
.x54{left:477.794984px;}
.x2f{left:495.974984px;}
.x34{left:509.729984px;}
.x5a{left:515.159984px;}
.x2b{left:519.119984px;}
.x33{left:523.589984px;}
.x64{left:532.409984px;}
.x37{left:534.569984px;}
.x6{left:537.299984px;}
.x23{left:540.074984px;}
.x60{left:548.894984px;}
.x43{left:557.744984px;}
.x6a{left:564.660000px;}
.x44{left:566.564984px;}
.x7{left:567.719984px;}
.x3c{left:574.409984px;}
.x3e{left:578.054984px;}
.x52{left:596.804984px;}
.xd{left:610.409984px;}
.x55{left:634.424984px;}
.x5b{left:640.109984px;}
.x1d{left:665.204984px;}
.x42{left:666.824984px;}
.x1c{left:678.164984px;}
.x14{left:707.940000px;}
.x74{left:721.080000px;}
.x49{left:724.784984px;}
.x71{left:755.744984px;}
.x35{left:764.969984px;}
.x48{left:767.909984px;}
.x63{left:772.409984px;}
.x1b{left:777.704984px;}
.x72{left:793.904984px;}
.x6f{left:795.599984px;}
.x24{left:799.559984px;}
.x19{left:810.689984px;}
.x5d{left:811.694984px;}
.x51{left:816.764984px;}
.x73{left:820.589984px;}
.x16{left:837.074984px;}
.x75{left:838.080000px;}
.x70{left:842.294984px;}
.x5c{left:843.509984px;}
.x25{left:853.199984px;}
.x26{left:860.759984px;}
.x2d{left:869.039984px;}
.x4d{left:871.740000px;}
.x28{left:881.459984px;}
.x27{left:883.979984px;}
.x36{left:887.294984px;}
.x29{left:910.799984px;}
.x3{left:973.364984px;}
.x2a{left:975.449984px;}
@media print{
.vf{vertical-align:-143.360000pt;}
.v14{vertical-align:-111.360000pt;}
.v8{vertical-align:-34.560000pt;}
.v1c{vertical-align:-23.680000pt;}
.v17{vertical-align:-21.760000pt;}
.ve{vertical-align:-19.840000pt;}
.v1{vertical-align:-18.048000pt;}
.vd{vertical-align:-16.640000pt;}
.v5{vertical-align:-15.360000pt;}
.va{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.800000pt;}
.vb{vertical-align:-11.520000pt;}
.v11{vertical-align:-8.960000pt;}
.vc{vertical-align:-1.920000pt;}
.v1a{vertical-align:-1.013333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:4.608000pt;}
.v13{vertical-align:8.960000pt;}
.v21{vertical-align:10.240000pt;}
.v4{vertical-align:12.800000pt;}
.v16{vertical-align:14.080000pt;}
.v6{vertical-align:15.360000pt;}
.v1b{vertical-align:16.640000pt;}
.v2{vertical-align:18.048000pt;}
.v7{vertical-align:19.200000pt;}
.v12{vertical-align:21.120000pt;}
.v15{vertical-align:26.880000pt;}
.v27{vertical-align:28.800000pt;}
.v10{vertical-align:35.200000pt;}
.v22{vertical-align:44.800000pt;}
.v23{vertical-align:46.720000pt;}
.v19{vertical-align:53.760000pt;}
.v20{vertical-align:64.000000pt;}
.v1d{vertical-align:72.960000pt;}
.v24{vertical-align:80.000000pt;}
.v18{vertical-align:84.480000pt;}
.v25{vertical-align:104.960000pt;}
.v26{vertical-align:120.960000pt;}
.v1e{vertical-align:136.960000pt;}
.v1f{vertical-align:164.480000pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls92{letter-spacing:-0.307200pt;}
.ls74{letter-spacing:-0.304000pt;}
.ls5e{letter-spacing:-0.290667pt;}
.ls7c{letter-spacing:-0.265067pt;}
.ls5d{letter-spacing:-0.262400pt;}
.ls15{letter-spacing:-0.259733pt;}
.lsa{letter-spacing:-0.246400pt;}
.ls6e{letter-spacing:-0.239467pt;}
.ls72{letter-spacing:-0.224000pt;}
.ls6b{letter-spacing:-0.205867pt;}
.ls5a{letter-spacing:-0.204800pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls79{letter-spacing:-0.188800pt;}
.ls63{letter-spacing:-0.188267pt;}
.ls5f{letter-spacing:-0.176000pt;}
.lsa2{letter-spacing:-0.174400pt;}
.ls94{letter-spacing:-0.163733pt;}
.ls40{letter-spacing:-0.161600pt;}
.ls6a{letter-spacing:-0.151467pt;}
.ls3f{letter-spacing:-0.135467pt;}
.ls17{letter-spacing:-0.129067pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls36{letter-spacing:-0.124800pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls5c{letter-spacing:-0.102400pt;}
.lsa1{letter-spacing:-0.101333pt;}
.ls61{letter-spacing:-0.095467pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls8e{letter-spacing:-0.088533pt;}
.ls9{letter-spacing:-0.086933pt;}
.lsb{letter-spacing:-0.066667pt;}
.ls39{letter-spacing:-0.064000pt;}
.ls93{letter-spacing:-0.051200pt;}
.ls80{letter-spacing:-0.049920pt;}
.ls37{letter-spacing:-0.049013pt;}
.ls3b{letter-spacing:-0.048000pt;}
.ls4a{letter-spacing:-0.039040pt;}
.ls73{letter-spacing:-0.032000pt;}
.ls6f{letter-spacing:-0.029440pt;}
.ls81{letter-spacing:-0.017920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.003200pt;}
.ls7b{letter-spacing:0.009973pt;}
.ls8f{letter-spacing:0.020480pt;}
.ls3a{letter-spacing:0.049920pt;}
.ls91{letter-spacing:0.052736pt;}
.ls7a{letter-spacing:0.061333pt;}
.ls55{letter-spacing:0.062464pt;}
.ls11{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.078933pt;}
.ls1e{letter-spacing:0.080000pt;}
.ls76{letter-spacing:0.086933pt;}
.ls1f{letter-spacing:0.092267pt;}
.ls52{letter-spacing:0.098133pt;}
.ls70{letter-spacing:0.106667pt;}
.ls2d{letter-spacing:0.122880pt;}
.lsc{letter-spacing:0.124800pt;}
.ls50{letter-spacing:0.125333pt;}
.ls35{letter-spacing:0.126080pt;}
.ls12{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.128384pt;}
.ls5b{letter-spacing:0.133867pt;}
.ls34{letter-spacing:0.138667pt;}
.ls4e{letter-spacing:0.148224pt;}
.ls51{letter-spacing:0.148267pt;}
.ls82{letter-spacing:0.149867pt;}
.ls53{letter-spacing:0.156160pt;}
.ls66{letter-spacing:0.157333pt;}
.ls21{letter-spacing:0.162667pt;}
.ls78{letter-spacing:0.167936pt;}
.ls9c{letter-spacing:0.176000pt;}
.ls4f{letter-spacing:0.187904pt;}
.ls2b{letter-spacing:0.188928pt;}
.ls68{letter-spacing:0.192000pt;}
.ls7d{letter-spacing:0.194667pt;}
.ls60{letter-spacing:0.201067pt;}
.ls2a{letter-spacing:0.214144pt;}
.ls25{letter-spacing:0.215808pt;}
.ls58{letter-spacing:0.227840pt;}
.ls22{letter-spacing:0.232960pt;}
.ls4d{letter-spacing:0.240768pt;}
.ls14{letter-spacing:0.246400pt;}
.ls57{letter-spacing:0.246784pt;}
.ls75{letter-spacing:0.247467pt;}
.ls71{letter-spacing:0.256000pt;}
.ls59{letter-spacing:0.259840pt;}
.ls7f{letter-spacing:0.261867pt;}
.ls62{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.313067pt;}
.ls90{letter-spacing:0.317333pt;}
.ls7e{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.323840pt;}
.ls54{letter-spacing:0.327040pt;}
.ls77{letter-spacing:0.580736pt;}
.ls6{letter-spacing:0.592640pt;}
.ls7{letter-spacing:0.802560pt;}
.ls86{letter-spacing:1.315840pt;}
.ls3d{letter-spacing:1.800320pt;}
.ls87{letter-spacing:2.165760pt;}
.ls3e{letter-spacing:2.355840pt;}
.ls89{letter-spacing:3.435520pt;}
.ls2e{letter-spacing:3.532800pt;}
.ls33{letter-spacing:3.751680pt;}
.ls32{letter-spacing:4.149120pt;}
.ls46{letter-spacing:4.224000pt;}
.ls47{letter-spacing:5.105067pt;}
.ls27{letter-spacing:5.447680pt;}
.ls28{letter-spacing:5.975808pt;}
.ls8d{letter-spacing:8.452480pt;}
.ls45{letter-spacing:12.069120pt;}
.ls8c{letter-spacing:14.212480pt;}
.ls42{letter-spacing:20.864640pt;}
.ls41{letter-spacing:24.022400pt;}
.ls44{letter-spacing:26.080000pt;}
.ls8a{letter-spacing:27.663360pt;}
.ls43{letter-spacing:27.686400pt;}
.ls30{letter-spacing:28.469120pt;}
.ls23{letter-spacing:30.517888pt;}
.ls26{letter-spacing:33.392000pt;}
.ls24{letter-spacing:34.956800pt;}
.ls48{letter-spacing:35.945600pt;}
.ls49{letter-spacing:36.585600pt;}
.ls19{letter-spacing:42.913280pt;}
.ls2c{letter-spacing:45.644672pt;}
.ls6d{letter-spacing:46.112000pt;}
.ls29{letter-spacing:46.284672pt;}
.ls4c{letter-spacing:48.535552pt;}
.ls4b{letter-spacing:48.606720pt;}
.ls85{letter-spacing:52.605696pt;}
.ls67{letter-spacing:54.656000pt;}
.ls8b{letter-spacing:57.502720pt;}
.ls65{letter-spacing:62.145024pt;}
.ls5{letter-spacing:66.307072pt;}
.ls4{letter-spacing:66.407680pt;}
.lsa0{letter-spacing:74.515200pt;}
.ls83{letter-spacing:74.560000pt;}
.ls2f{letter-spacing:74.726400pt;}
.ls18{letter-spacing:78.323200pt;}
.lse{letter-spacing:78.368000pt;}
.ls2{letter-spacing:81.907200pt;}
.ls1{letter-spacing:81.952000pt;}
.lsf{letter-spacing:85.715200pt;}
.ls10{letter-spacing:85.760000pt;}
.ls88{letter-spacing:87.507200pt;}
.ls3c{letter-spacing:87.552000pt;}
.ls64{letter-spacing:121.698560pt;}
.ls84{letter-spacing:122.365696pt;}
.ls31{letter-spacing:136.893440pt;}
.ls95{letter-spacing:230.981333pt;}
.ls98{letter-spacing:261.808000pt;}
.ls1a{letter-spacing:273.701333pt;}
.ls9a{letter-spacing:297.008000pt;}
.ls9d{letter-spacing:308.528000pt;}
.ls9e{letter-spacing:325.546667pt;}
.ls99{letter-spacing:349.866667pt;}
.ls97{letter-spacing:356.853333pt;}
.ls9f{letter-spacing:356.906667pt;}
.ls1b{letter-spacing:357.760000pt;}
.ls9b{letter-spacing:362.613333pt;}
.ls1d{letter-spacing:364.800000pt;}
.ls96{letter-spacing:404.906667pt;}
.ls1c{letter-spacing:571.301333pt;}
.ws54{word-spacing:-41.192448pt;}
.ws55{word-spacing:-39.069440pt;}
.ws1{word-spacing:-30.247040pt;}
.ws4f{word-spacing:-29.498880pt;}
.ws38{word-spacing:-26.496000pt;}
.ws42{word-spacing:-23.541760pt;}
.ws6a{word-spacing:-22.301440pt;}
.ws69{word-spacing:-22.251520pt;}
.ws5d{word-spacing:-21.438507pt;}
.ws61{word-spacing:-21.437440pt;}
.ws33{word-spacing:-21.227264pt;}
.ws21{word-spacing:-21.227093pt;}
.wsb{word-spacing:-21.194240pt;}
.wsa{word-spacing:-21.191040pt;}
.ws1f{word-spacing:-21.148160pt;}
.ws1e{word-spacing:-21.099147pt;}
.ws68{word-spacing:-19.880427pt;}
.ws3{word-spacing:-19.652096pt;}
.ws1c{word-spacing:-19.618560pt;}
.ws92{word-spacing:-19.517227pt;}
.ws93{word-spacing:-19.477696pt;}
.ws48{word-spacing:-19.467093pt;}
.ws3c{word-spacing:-19.327893pt;}
.wsd{word-spacing:-18.112000pt;}
.ws70{word-spacing:-17.827584pt;}
.ws80{word-spacing:-17.628160pt;}
.ws1a{word-spacing:-17.600000pt;}
.ws46{word-spacing:-17.205760pt;}
.ws44{word-spacing:-17.177600pt;}
.wsc{word-spacing:-17.047936pt;}
.ws26{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.755307pt;}
.ws25{word-spacing:-16.704000pt;}
.ws64{word-spacing:-16.699264pt;}
.ws28{word-spacing:-16.663040pt;}
.ws2e{word-spacing:-16.473600pt;}
.ws2d{word-spacing:-16.434560pt;}
.ws14{word-spacing:-15.974784pt;}
.ws89{word-spacing:-15.938560pt;}
.ws20{word-spacing:-15.488000pt;}
.ws63{word-spacing:-15.487893pt;}
.ws71{word-spacing:-15.460096pt;}
.ws3e{word-spacing:-15.426560pt;}
.ws6b{word-spacing:-15.408640pt;}
.ws9{word-spacing:-15.032960pt;}
.ws5{word-spacing:-14.946027pt;}
.ws49{word-spacing:-14.789376pt;}
.ws6{word-spacing:-14.786560pt;}
.ws4e{word-spacing:-14.684053pt;}
.ws3d{word-spacing:-14.328427pt;}
.ws8{word-spacing:-14.042240pt;}
.ws29{word-spacing:-13.950976pt;}
.ws41{word-spacing:-13.917440pt;}
.ws45{word-spacing:-13.888000pt;}
.ws3b{word-spacing:-13.864960pt;}
.ws2a{word-spacing:-13.789376pt;}
.ws32{word-spacing:-13.112576pt;}
.ws1d{word-spacing:-13.079040pt;}
.ws31{word-spacing:-12.984107pt;}
.ws75{word-spacing:-12.974080pt;}
.ws82{word-spacing:-12.965760pt;}
.ws24{word-spacing:-12.953600pt;}
.ws74{word-spacing:-12.851200pt;}
.ws81{word-spacing:-12.840960pt;}
.ws1b{word-spacing:-12.812800pt;}
.ws86{word-spacing:-12.761600pt;}
.ws88{word-spacing:-12.677227pt;}
.ws11{word-spacing:-12.135040pt;}
.ws2f{word-spacing:-11.968000pt;}
.wse{word-spacing:-11.875307pt;}
.ws2c{word-spacing:-11.686400pt;}
.ws27{word-spacing:-11.284480pt;}
.ws10{word-spacing:-11.234560pt;}
.wsf{word-spacing:-11.105493pt;}
.ws65{word-spacing:-11.094517pt;}
.ws13{word-spacing:-11.048320pt;}
.ws62{word-spacing:-10.859520pt;}
.ws66{word-spacing:-10.819477pt;}
.ws83{word-spacing:-10.560000pt;}
.ws40{word-spacing:-10.531947pt;}
.ws6c{word-spacing:-10.378347pt;}
.ws3a{word-spacing:-10.142720pt;}
.ws3f{word-spacing:-10.133013pt;}
.ws39{word-spacing:-9.937920pt;}
.ws67{word-spacing:-9.584747pt;}
.ws4a{word-spacing:-9.519573pt;}
.ws77{word-spacing:-9.433600pt;}
.ws7c{word-spacing:-9.390080pt;}
.ws7{word-spacing:-9.323413pt;}
.ws79{word-spacing:-9.082880pt;}
.ws52{word-spacing:-8.417536pt;}
.ws50{word-spacing:-8.384000pt;}
.ws51{word-spacing:-8.352000pt;}
.ws15{word-spacing:-8.192000pt;}
.ws53{word-spacing:-8.113536pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.020224pt;}
.ws2{word-spacing:5.264000pt;}
.ws85{word-spacing:9.638400pt;}
.ws76{word-spacing:10.019200pt;}
.ws2b{word-spacing:10.072960pt;}
.ws72{word-spacing:11.097600pt;}
.ws78{word-spacing:12.730880pt;}
.ws23{word-spacing:12.902400pt;}
.ws84{word-spacing:14.664960pt;}
.ws87{word-spacing:15.336448pt;}
.ws30{word-spacing:16.582400pt;}
.ws43{word-spacing:18.360064pt;}
.ws73{word-spacing:18.947200pt;}
.ws22{word-spacing:20.701440pt;}
.ws6d{word-spacing:22.570240pt;}
.ws6e{word-spacing:42.724224pt;}
.ws47{word-spacing:107.437611pt;}
.ws34{word-spacing:173.431893pt;}
.ws35{word-spacing:194.474667pt;}
.ws7b{word-spacing:224.072747pt;}
.ws36{word-spacing:242.390827pt;}
.ws7a{word-spacing:242.632747pt;}
.ws8f{word-spacing:253.477333pt;}
.ws17{word-spacing:262.490667pt;}
.ws8d{word-spacing:264.341333pt;}
.ws57{word-spacing:270.568747pt;}
.ws7e{word-spacing:272.072747pt;}
.ws8b{word-spacing:278.261333pt;}
.ws8c{word-spacing:278.453333pt;}
.ws8a{word-spacing:280.805333pt;}
.ws4d{word-spacing:281.578667pt;}
.ws91{word-spacing:283.509333pt;}
.ws8e{word-spacing:286.133333pt;}
.ws16{word-spacing:286.474667pt;}
.ws19{word-spacing:291.189333pt;}
.ws4b{word-spacing:291.772587pt;}
.ws56{word-spacing:328.383360pt;}
.ws7d{word-spacing:331.592747pt;}
.ws4c{word-spacing:336.781440pt;}
.ws5a{word-spacing:364.524160pt;}
.ws5e{word-spacing:375.146453pt;}
.ws5b{word-spacing:378.508587pt;}
.ws59{word-spacing:382.750293pt;}
.ws90{word-spacing:401.248000pt;}
.ws5f{word-spacing:402.284160pt;}
.ws18{word-spacing:410.730667pt;}
.ws7f{word-spacing:415.993813pt;}
.ws58{word-spacing:417.793067pt;}
.ws5c{word-spacing:458.813653pt;}
.ws60{word-spacing:463.629333pt;}
.ws6f{word-spacing:512.469333pt;}
.ws37{word-spacing:2231.306667pt;}
._13{margin-left:-18.639360pt;}
._21{margin-left:-13.870080pt;}
._51{margin-left:-11.545600pt;}
._27{margin-left:-8.300459pt;}
._15{margin-left:-7.111680pt;}
._22{margin-left:-5.664256pt;}
._1c{margin-left:-4.505600pt;}
._1e{margin-left:-3.420160pt;}
._28{margin-left:-2.475776pt;}
._0{margin-left:-1.537536pt;}
._1{width:0.896000pt;}
._3{width:1.963520pt;}
._2{width:3.069696pt;}
._12{width:3.969003pt;}
._59{width:5.306624pt;}
._30{width:6.560000pt;}
._50{width:9.726208pt;}
._55{width:10.718720pt;}
._20{width:11.886720pt;}
._11{width:14.270763pt;}
._16{width:15.894272pt;}
._46{width:16.787883pt;}
._10{width:18.516608pt;}
._48{width:19.751680pt;}
._58{width:23.525120pt;}
._53{width:25.424640pt;}
._14{width:26.752384pt;}
._52{width:31.822720pt;}
._54{width:42.330624pt;}
._1f{width:58.813440pt;}
._56{width:61.547605pt;}
._1a{width:69.327360pt;}
._49{width:70.812544pt;}
._18{width:74.163200pt;}
._47{width:81.964032pt;}
._1d{width:89.479680pt;}
._1b{width:120.706560pt;}
._5b{width:121.814272pt;}
._42{width:124.544000pt;}
._19{width:127.336960pt;}
._17{width:128.573440pt;}
._8{width:129.756075pt;}
._7{width:136.274560pt;}
._29{width:141.599488pt;}
._41{width:143.825920pt;}
._5c{width:152.514133pt;}
._9{width:160.074453pt;}
._32{width:171.000277pt;}
._43{width:181.392896pt;}
._33{width:184.099669pt;}
._23{width:193.841067pt;}
._45{width:214.542976pt;}
._44{width:232.559616pt;}
._2b{width:234.213163pt;}
._2a{width:243.174827pt;}
._31{width:267.269547pt;}
._4b{width:274.281557pt;}
._5a{width:276.145920pt;}
._34{width:280.335360pt;}
._2e{width:282.714752pt;}
._6{width:285.200555pt;}
._d{width:289.018667pt;}
._c{width:290.682667pt;}
._5d{width:298.161536pt;}
._5e{width:300.341333pt;}
._2f{width:306.421120pt;}
._a{width:307.505536pt;}
._f{width:308.773333pt;}
._39{width:310.154027pt;}
._b{width:314.149333pt;}
._25{width:319.036373pt;}
._e{width:322.410667pt;}
._40{width:324.901973pt;}
._2d{width:339.035307pt;}
._24{width:341.955413pt;}
._2c{width:355.116800pt;}
._3f{width:392.207573pt;}
._3c{width:393.119189pt;}
._26{width:401.818027pt;}
._36{width:414.264960pt;}
._3e{width:423.582933pt;}
._37{width:426.914347pt;}
._57{width:430.976896pt;}
._3d{width:436.662827pt;}
._3b{width:444.010923pt;}
._5{width:466.073856pt;}
._38{width:471.346773pt;}
._3a{width:479.071189pt;}
._35{width:494.080853pt;}
._4a{width:536.128725pt;}
._4c{width:589.986219pt;}
._4e{width:610.086869pt;}
._4f{width:718.550869pt;}
._4d{width:739.061077pt;}
._4{width:1915.201536pt;}
.fs15{font-size:32.000000pt;}
.fs28{font-size:32.128000pt;}
.fs2f{font-size:35.200000pt;}
.fsa{font-size:35.840000pt;}
.fs22{font-size:35.968000pt;}
.fs1d{font-size:37.120000pt;}
.fs13{font-size:39.040000pt;}
.fs2a{font-size:39.168000pt;}
.fs10{font-size:42.880000pt;}
.fse{font-size:43.008000pt;}
.fs20{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fs2c{font-size:48.128000pt;}
.fs7{font-size:49.920000pt;}
.fs21{font-size:50.048000pt;}
.fs8{font-size:53.120000pt;}
.fsb{font-size:53.248000pt;}
.fs1f{font-size:54.400000pt;}
.fs1c{font-size:56.127759pt;}
.fs2b{font-size:56.320000pt;}
.fs14{font-size:56.448000pt;}
.fs27{font-size:56.960000pt;}
.fs1a{font-size:57.600000pt;}
.fs1b{font-size:57.728000pt;}
.fs17{font-size:58.240000pt;}
.fs31{font-size:58.368000pt;}
.fs12{font-size:58.880000pt;}
.fs26{font-size:59.008000pt;}
.fs2e{font-size:62.199271pt;}
.fsf{font-size:64.000000pt;}
.fsd{font-size:64.128000pt;}
.fs2d{font-size:69.120000pt;}
.fs19{font-size:70.400000pt;}
.fs18{font-size:70.528000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fs25{font-size:78.080000pt;}
.fs24{font-size:78.208000pt;}
.fs16{font-size:80.000000pt;}
.fs30{font-size:80.128000pt;}
.fs9{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs23{font-size:107.008000pt;}
.fs3{font-size:128.000000pt;}
.fs0{font-size:128.128000pt;}
.fs1e{font-size:149.120000pt;}
.fs29{font-size:149.248000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:7.264000pt;}
.ye3{bottom:27.200000pt;}
.y27{bottom:27.616000pt;}
.y39{bottom:28.448000pt;}
.y68{bottom:29.856000pt;}
.y45{bottom:35.680000pt;}
.yc8{bottom:36.704000pt;}
.y94{bottom:37.184000pt;}
.y122{bottom:38.528000pt;}
.yc7{bottom:46.304000pt;}
.ye2{bottom:46.400000pt;}
.y71{bottom:47.072000pt;}
.y105{bottom:50.656000pt;}
.y119{bottom:51.360000pt;}
.y44{bottom:51.680000pt;}
.yf2{bottom:51.712000pt;}
.y127{bottom:53.920000pt;}
.y3e{bottom:54.053333pt;}
.y49{bottom:54.880000pt;}
.y13{bottom:57.120000pt;}
.yc6{bottom:57.824000pt;}
.y57{bottom:59.008000pt;}
.ye1{bottom:65.600000pt;}
.y88{bottom:66.016000pt;}
.ya3{bottom:68.512000pt;}
.y33{bottom:68.576000pt;}
.yc5{bottom:69.344000pt;}
.yd5{bottom:71.866667pt;}
.yf1{bottom:74.432000pt;}
.y3a{bottom:74.688000pt;}
.y72{bottom:74.912000pt;}
.y3b{bottom:76.160000pt;}
.y56{bottom:78.208000pt;}
.ycd{bottom:79.424000pt;}
.yc4{bottom:80.864000pt;}
.y93{bottom:83.264000pt;}
.y48{bottom:83.744000pt;}
.ye0{bottom:84.832000pt;}
.y87{bottom:85.216000pt;}
.y32{bottom:87.776000pt;}
.y103{bottom:90.080000pt;}
.yc3{bottom:90.464000pt;}
.yd4{bottom:92.800000pt;}
.ya2{bottom:95.392000pt;}
.y20{bottom:96.992000pt;}
.y12{bottom:97.664000pt;}
.y104{bottom:99.328000pt;}
.yc2{bottom:101.984000pt;}
.y86{bottom:104.448000pt;}
.y47{bottom:106.144000pt;}
.y92{bottom:106.304000pt;}
.y31{bottom:107.008000pt;}
.yc1{bottom:111.584000pt;}
.y102{bottom:112.480000pt;}
.y1f{bottom:112.992000pt;}
.yd8{bottom:113.312000pt;}
.y121{bottom:113.696000pt;}
.yf7{bottom:114.144000pt;}
.y12c{bottom:118.432000pt;}
.ya1{bottom:122.272000pt;}
.yc0{bottom:123.136000pt;}
.y55{bottom:124.288000pt;}
.y11{bottom:124.576000pt;}
.y136{bottom:127.488000pt;}
.y1e{bottom:128.992000pt;}
.y91{bottom:129.376000pt;}
.y30{bottom:130.688000pt;}
.ybf{bottom:134.653333pt;}
.ydf{bottom:137.186667pt;}
.y101{bottom:139.360000pt;}
.yf6{bottom:142.973333pt;}
.y54{bottom:143.493333pt;}
.y1d{bottom:145.026667pt;}
.ybe{bottom:146.173333pt;}
.y6b{bottom:146.306667pt;}
.y6a{bottom:146.586667pt;}
.yd7{bottom:147.546667pt;}
.y12b{bottom:147.773333pt;}
.y6f{bottom:147.813333pt;}
.ya0{bottom:149.146667pt;}
.ycc{bottom:150.080000pt;}
.y112{bottom:150.746667pt;}
.y10{bottom:151.453333pt;}
.yf0{bottom:151.840000pt;}
.y114{bottom:155.226667pt;}
.y113{bottom:156.186667pt;}
.yde{bottom:156.386667pt;}
.ybd{bottom:157.693333pt;}
.y124{bottom:158.973333pt;}
.y135{bottom:162.053333pt;}
.y84{bottom:164.346667pt;}
.y7e{bottom:167.133333pt;}
.ybc{bottom:167.293333pt;}
.y100{bottom:167.706667pt;}
.y90{bottom:169.053333pt;}
.y67{bottom:169.346667pt;}
.yf5{bottom:171.773333pt;}
.yef{bottom:172.960000pt;}
.y12a{bottom:174.146667pt;}
.ydd{bottom:175.933333pt;}
.y3{bottom:176.986667pt;}
.yf{bottom:178.333333pt;}
.ybb{bottom:178.813333pt;}
.yd6{bottom:181.786667pt;}
.y123{bottom:182.973333pt;}
.y7d{bottom:183.173333pt;}
.y1c{bottom:183.426667pt;}
.y2f{bottom:183.813333pt;}
.y83{bottom:185.466667pt;}
.y111{bottom:186.146667pt;}
.y53{bottom:189.280000pt;}
.y66{bottom:190.013333pt;}
.yba{bottom:190.333333pt;}
.y134{bottom:190.853333pt;}
.ycb{bottom:194.906667pt;}
.yee{bottom:195.680000pt;}
.y126{bottom:197.440000pt;}
.y129{bottom:197.533333pt;}
.y9f{bottom:199.106667pt;}
.y1b{bottom:199.426667pt;}
.yb9{bottom:199.933333pt;}
.y2{bottom:205.146667pt;}
.y65{bottom:206.013333pt;}
.y2e{bottom:206.853333pt;}
.ye{bottom:207.133333pt;}
.y110{bottom:207.266667pt;}
.y82{bottom:207.546667pt;}
.yf8{bottom:208.866667pt;}
.yb8{bottom:211.453333pt;}
.y26{bottom:211.973333pt;}
.y52{bottom:212.160000pt;}
.yd3{bottom:216.026667pt;}
.y8f{bottom:220.253333pt;}
.y120{bottom:220.480000pt;}
.y128{bottom:220.960000pt;}
.yb7{bottom:221.053333pt;}
.y133{bottom:224.160000pt;}
.y9e{bottom:225.986667pt;}
.y10f{bottom:228.386667pt;}
.y2d{bottom:230.560000pt;}
.yb6{bottom:232.573333pt;}
.y51{bottom:233.600000pt;}
.yff{bottom:235.066667pt;}
.y69{bottom:236.826667pt;}
.y25{bottom:237.573333pt;}
.y1a{bottom:237.666667pt;}
.yf4{bottom:240.933333pt;}
.y1{bottom:241.666667pt;}
.yb5{bottom:244.133333pt;}
.y43{bottom:245.826667pt;}
.y8e{bottom:247.173333pt;}
.y10e{bottom:250.146667pt;}
.yd2{bottom:250.266667pt;}
.y132{bottom:251.040000pt;}
.y125{bottom:251.360000pt;}
.y9d{bottom:252.866667pt;}
.yb4{bottom:253.733333pt;}
.y19{bottom:253.853333pt;}
.y50{bottom:254.720000pt;}
.y42{bottom:255.426667pt;}
.ye7{bottom:259.613333pt;}
.yfe{bottom:263.586667pt;}
.yb3{bottom:265.253333pt;}
.yf3{bottom:269.733333pt;}
.y8d{bottom:274.053333pt;}
.y10d{bottom:275.106667pt;}
.y4f{bottom:275.840000pt;}
.yb2{bottom:276.773333pt;}
.y131{bottom:277.920000pt;}
.yfd{bottom:279.586667pt;}
.y9c{bottom:279.773333pt;}
.y2c{bottom:279.840000pt;}
.ye6{bottom:280.733333pt;}
.yd{bottom:282.053333pt;}
.y7a{bottom:282.880000pt;}
.yca{bottom:284.546667pt;}
.yd1{bottom:285.733333pt;}
.y63{bottom:288.093333pt;}
.yb1{bottom:288.293333pt;}
.y62{bottom:290.493333pt;}
.y18{bottom:292.253333pt;}
.y64{bottom:292.893333pt;}
.y46{bottom:296.133333pt;}
.y8c{bottom:296.453333pt;}
.y4e{bottom:296.986667pt;}
.y5d{bottom:297.213333pt;}
.y24{bottom:299.040000pt;}
.y10c{bottom:299.453333pt;}
.y11e{bottom:299.680000pt;}
.yb0{bottom:299.813333pt;}
.ye5{bottom:301.893333pt;}
.y2b{bottom:302.880000pt;}
.y130{bottom:306.080000pt;}
.y9b{bottom:306.653333pt;}
.yc{bottom:308.933333pt;}
.yaf{bottom:311.333333pt;}
.y81{bottom:315.106667pt;}
.y10a{bottom:317.533333pt;}
.y4d{bottom:318.106667pt;}
.y5c{bottom:318.333333pt;}
.y7c{bottom:318.373333pt;}
.yae{bottom:322.853333pt;}
.ydc{bottom:323.813333pt;}
.ye4{bottom:323.973333pt;}
.y38{bottom:324.093333pt;}
.y23{bottom:324.640000pt;}
.y61{bottom:324.773333pt;}
.y2a{bottom:325.946667pt;}
.y11d{bottom:326.053333pt;}
.y109{bottom:329.213333pt;}
.yc9{bottom:329.346667pt;}
.y17{bottom:330.653333pt;}
.y10b{bottom:331.133333pt;}
.y41{bottom:331.933333pt;}
.y9a{bottom:334.173333pt;}
.y7b{bottom:334.373333pt;}
.y12f{bottom:334.906667pt;}
.y70{bottom:335.266667pt;}
.yb{bottom:335.813333pt;}
.y5b{bottom:335.933333pt;}
.yd0{bottom:336.666667pt;}
.y76{bottom:338.146667pt;}
.y4c{bottom:339.226667pt;}
.y60{bottom:341.093333pt;}
.y80{bottom:341.986667pt;}
.y97{bottom:343.266667pt;}
.ydb{bottom:344.933333pt;}
.yad{bottom:345.893333pt;}
.y16{bottom:346.653333pt;}
.y11c{bottom:349.440000pt;}
.y29{bottom:349.626667pt;}
.yfc{bottom:352.066667pt;}
.y37{bottom:354.813333pt;}
.y5a{bottom:357.053333pt;}
.y5f{bottom:357.093333pt;}
.yac{bottom:357.440000pt;}
.y3d{bottom:358.080000pt;}
.y40{bottom:358.306667pt;}
.y5{bottom:359.266667pt;}
.y8b{bottom:361.120000pt;}
.ya{bottom:362.720000pt;}
.ycf{bottom:363.546667pt;}
.ya4{bottom:363.773333pt;}
.y75{bottom:365.053333pt;}
.yda{bottom:366.053333pt;}
.y7f{bottom:368.866667pt;}
.yab{bottom:368.960000pt;}
.y12e{bottom:369.466667pt;}
.y96{bottom:370.720000pt;}
.y116{bottom:371.773333pt;}
.y11b{bottom:372.866667pt;}
.y118{bottom:373.920000pt;}
.yfb{bottom:374.493333pt;}
.y8a{bottom:374.560000pt;}
.y59{bottom:374.653333pt;}
.y108{bottom:375.613333pt;}
.yea{bottom:377.760000pt;}
.yaa{bottom:380.480000pt;}
.yed{bottom:380.933333pt;}
.y3f{bottom:381.693333pt;}
.y6c{bottom:384.960000pt;}
.y36{bottom:385.533333pt;}
.y22{bottom:386.106667pt;}
.y15{bottom:388.613333pt;}
.y9{bottom:389.600000pt;}
.yce{bottom:391.746667pt;}
.y74{bottom:391.933333pt;}
.ya9{bottom:392.000000pt;}
.y4a{bottom:392.386667pt;}
.y99{bottom:395.653333pt;}
.y6e{bottom:396.133333pt;}
.y11a{bottom:396.253333pt;}
.y4{bottom:397.666667pt;}
.y11f{bottom:397.853333pt;}
.y12d{bottom:398.266667pt;}
.ye9{bottom:401.786667pt;}
.yec{bottom:402.053333pt;}
.yfa{bottom:402.653333pt;}
.y28{bottom:403.386667pt;}
.ya8{bottom:403.520000pt;}
.y107{bottom:404.773333pt;}
.y115{bottom:411.613333pt;}
.y21{bottom:411.706667pt;}
.y3c{bottom:412.133333pt;}
.y58{bottom:413.413333pt;}
.ya7{bottom:415.040000pt;}
.y5e{bottom:415.426667pt;}
.y14{bottom:416.133333pt;}
.y35{bottom:416.293333pt;}
.yd9{bottom:416.986667pt;}
.y8{bottom:418.400000pt;}
.y6d{bottom:418.533333pt;}
.y73{bottom:419.453333pt;}
.y34{bottom:420.066667pt;}
.y89{bottom:423.520000pt;}
.y85{bottom:424.133333pt;}
.yeb{bottom:424.160000pt;}
.y95{bottom:424.893333pt;}
.y117{bottom:425.280000pt;}
.ye8{bottom:426.266667pt;}
.y98{bottom:426.373333pt;}
.ya6{bottom:426.560000pt;}
.y106{bottom:426.853333pt;}
.yf9{bottom:427.653333pt;}
.y4b{bottom:428.226667pt;}
.ya5{bottom:436.160000pt;}
.y79{bottom:472.613333pt;}
.y7{bottom:486.426667pt;}
.y78{bottom:503.680000pt;}
.y77{bottom:521.280000pt;}
.h1f{height:23.390625pt;}
.h2f{height:27.912500pt;}
.h3e{height:31.936000pt;}
.h3f{height:32.063744pt;}
.h32{height:32.243750pt;}
.h31{height:35.085938pt;}
.h38{height:39.840000pt;}
.h5{height:42.048000pt;}
.h47{height:42.160128pt;}
.h5e{height:44.613120pt;}
.h1e{height:44.688000pt;}
.h50{height:44.807168pt;}
.h2a{height:44.946057pt;}
.h28{height:46.533120pt;}
.hf{height:46.645248pt;}
.hd{height:49.454720pt;}
.he{height:49.573888pt;}
.h54{height:49.808010pt;}
.h21{height:51.578880pt;}
.h45{height:51.691008pt;}
.h51{height:52.061250pt;}
.h48{height:52.119040pt;}
.h46{height:52.433920pt;}
.h1c{height:52.553088pt;}
.hb{height:53.013760pt;}
.h2e{height:53.031875pt;}
.h29{height:53.141504pt;}
.h1b{height:54.817280pt;}
.h4f{height:54.928000pt;}
.h3b{height:54.936448pt;}
.h14{height:56.064000pt;}
.h13{height:56.176128pt;}
.h3c{height:56.335104pt;}
.h59{height:58.248125pt;}
.h27{height:58.762240pt;}
.h53{height:58.889984pt;}
.h15{height:59.584000pt;}
.h58{height:60.549120pt;}
.h57{height:60.615625pt;}
.h5a{height:62.062500pt;}
.h16{height:63.872000pt;}
.h25{height:63.999744pt;}
.h19{height:64.192000pt;}
.h52{height:64.350720pt;}
.h3{height:65.594880pt;}
.h8{height:65.707008pt;}
.h12{height:69.713280pt;}
.h2b{height:72.158125pt;}
.h2d{height:72.231875pt;}
.h17{height:72.283750pt;}
.h1a{height:72.993280pt;}
.h34{height:73.896875pt;}
.h10{height:74.565120pt;}
.h11{height:74.677248pt;}
.h9{height:74.730240pt;}
.ha{height:74.857984pt;}
.hc{height:79.246720pt;}
.h24{height:79.982500pt;}
.h2c{height:81.758125pt;}
.h2{height:84.096000pt;}
.h4a{height:84.208128pt;}
.h3d{height:84.949760pt;}
.h18{height:85.077504pt;}
.h43{height:87.456000pt;}
.h5b{height:87.572608pt;}
.h26{height:89.376000pt;}
.h36{height:90.017280pt;}
.h4e{height:93.892500pt;}
.h23{height:95.631250pt;}
.h49{height:95.808000pt;}
.h37{height:96.042667pt;}
.h6{height:97.367680pt;}
.h7{height:99.505280pt;}
.h33{height:101.716875pt;}
.h20{height:108.671875pt;}
.h5d{height:108.845750pt;}
.h5c{height:112.160000pt;}
.h1{height:112.240128pt;}
.h4{height:116.608000pt;}
.h1d{height:117.760000pt;}
.h55{height:124.782500pt;}
.h35{height:125.217280pt;}
.h22{height:130.580125pt;}
.h42{height:130.629120pt;}
.h41{height:130.741248pt;}
.h30{height:135.848320pt;}
.h40{height:135.964928pt;}
.h44{height:156.960000pt;}
.h56{height:168.775625pt;}
.h39{height:168.783750pt;}
.h3a{height:199.119500pt;}
.h4b{height:203.366250pt;}
.h4d{height:260.111250pt;}
.h4c{height:267.366250pt;}
.h0{height:540.000000pt;}
.w5{width:104.160000pt;}
.w2{width:106.240000pt;}
.w3{width:120.000000pt;}
.w4{width:121.120000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:7.360000pt;}
.x15{left:8.453333pt;}
.x4e{left:12.573333pt;}
.x57{left:14.847986pt;}
.x32{left:18.847986pt;}
.xb{left:22.207986pt;}
.x45{left:26.399986pt;}
.x21{left:28.671986pt;}
.x8{left:31.231986pt;}
.x56{left:32.127986pt;}
.x4{left:33.983986pt;}
.x78{left:39.551986pt;}
.x2{left:41.919986pt;}
.x1{left:43.583986pt;}
.x39{left:45.791986pt;}
.x3a{left:46.751986pt;}
.xc{left:49.247986pt;}
.x3b{left:53.631986pt;}
.x22{left:55.711986pt;}
.x9{left:58.271986pt;}
.x20{left:61.023986pt;}
.x46{left:62.431986pt;}
.x79{left:66.591986pt;}
.x4a{left:67.551986pt;}
.xe{left:70.271986pt;}
.x17{left:73.215986pt;}
.x38{left:75.327986pt;}
.x3f{left:77.503986pt;}
.xf{left:82.623986pt;}
.x4f{left:83.871986pt;}
.x4c{left:85.631986pt;}
.x12{left:95.103986pt;}
.x47{left:98.431986pt;}
.x5e{left:99.999986pt;}
.x76{left:102.783986pt;}
.x4b{left:109.151986pt;}
.x77{left:111.583986pt;}
.x13{left:114.015986pt;}
.x18{left:119.775986pt;}
.xa{left:122.463986pt;}
.x50{left:134.879986pt;}
.x41{left:137.533319pt;}
.x5f{left:140.639986pt;}
.x2c{left:156.986652pt;}
.x62{left:160.413319pt;}
.x1e{left:169.599986pt;}
.x3d{left:174.106652pt;}
.x5{left:195.426652pt;}
.x61{left:222.266652pt;}
.x2e{left:225.053319pt;}
.x65{left:237.853319pt;}
.x68{left:247.706652pt;}
.x1f{left:258.399986pt;}
.x67{left:283.453319pt;}
.x59{left:285.439986pt;}
.x30{left:290.213319pt;}
.x40{left:300.573319pt;}
.x11{left:308.159986pt;}
.x58{left:313.733319pt;}
.x53{left:333.986652pt;}
.x31{left:359.173319pt;}
.x6c{left:360.933319pt;}
.x10{left:366.693319pt;}
.x1a{left:367.839986pt;}
.x6d{left:370.373319pt;}
.x66{left:379.293319pt;}
.x69{left:399.333319pt;}
.x6e{left:401.733319pt;}
.x54{left:424.706652pt;}
.x2f{left:440.866652pt;}
.x34{left:453.093319pt;}
.x5a{left:457.919986pt;}
.x2b{left:461.439986pt;}
.x33{left:465.413319pt;}
.x64{left:473.253319pt;}
.x37{left:475.173319pt;}
.x6{left:477.599986pt;}
.x23{left:480.066652pt;}
.x60{left:487.906652pt;}
.x43{left:495.773319pt;}
.x6a{left:501.920000pt;}
.x44{left:503.613319pt;}
.x7{left:504.639986pt;}
.x3c{left:510.586652pt;}
.x3e{left:513.826652pt;}
.x52{left:530.493319pt;}
.xd{left:542.586652pt;}
.x55{left:563.933319pt;}
.x5b{left:568.986652pt;}
.x1d{left:591.293319pt;}
.x42{left:592.733319pt;}
.x1c{left:602.813319pt;}
.x14{left:629.280000pt;}
.x74{left:640.960000pt;}
.x49{left:644.253319pt;}
.x71{left:671.773319pt;}
.x35{left:679.973319pt;}
.x48{left:682.586652pt;}
.x63{left:686.586652pt;}
.x1b{left:691.293319pt;}
.x72{left:705.693319pt;}
.x6f{left:707.199986pt;}
.x24{left:710.719986pt;}
.x19{left:720.613319pt;}
.x5d{left:721.506652pt;}
.x51{left:726.013319pt;}
.x73{left:729.413319pt;}
.x16{left:744.066652pt;}
.x75{left:744.960000pt;}
.x70{left:748.706652pt;}
.x5c{left:749.786652pt;}
.x25{left:758.399986pt;}
.x26{left:765.119986pt;}
.x2d{left:772.479986pt;}
.x4d{left:774.880000pt;}
.x28{left:783.519986pt;}
.x27{left:785.759986pt;}
.x36{left:788.706652pt;}
.x29{left:809.599986pt;}
.x3{left:865.213319pt;}
.x2a{left:867.066652pt;}
}




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