
    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_42512d496a3744b5233fa32e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb884ac39775a623f830ca8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_580eb5c4203380de55f07bf1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_49316a0cda1e3d63cc36afb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.142090;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;}
.m4{transform:matrix(0.159491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159491,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.159744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159744,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);}
.m7{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m2{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m5{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m8{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m3{transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080899,0.236549,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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-79.920000px;}
.vf{vertical-align:-59.002497px;}
.v7{vertical-align:-55.760508px;}
.v2{vertical-align:-48.210142px;}
.v1{vertical-align:-44.651415px;}
.v11{vertical-align:-33.119400px;}
.v5{vertical-align:-18.720600px;}
.v4{vertical-align:-9.000600px;}
.v8{vertical-align:-3.241890px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:5.762832px;}
.v6{vertical-align:18.720600px;}
.ve{vertical-align:20.538029px;}
.v3{vertical-align:25.920000px;}
.v9{vertical-align:33.127830px;}
.vb{vertical-align:45.360000px;}
.vc{vertical-align:77.815733px;}
.vd{vertical-align:82.425047px;}
.lsd5{letter-spacing:-0.187292px;}
.lsd3{letter-spacing:-0.180900px;}
.ls5c{letter-spacing:-0.151835px;}
.ls5f{letter-spacing:-0.130144px;}
.ls5b{letter-spacing:-0.122914px;}
.lsc6{letter-spacing:-0.122644px;}
.ls5d{letter-spacing:-0.115684px;}
.ls58{letter-spacing:-0.093993px;}
.ls60{letter-spacing:-0.086763px;}
.lsbb{letter-spacing:-0.086602px;}
.lsd6{letter-spacing:-0.086442px;}
.ls59{letter-spacing:-0.079533px;}
.ls5e{letter-spacing:-0.072302px;}
.lsbd{letter-spacing:-0.072169px;}
.ls5a{letter-spacing:-0.065072px;}
.lsb7{letter-spacing:-0.064952px;}
.ls1e{letter-spacing:-0.064800px;}
.lsba{letter-spacing:-0.057735px;}
.lsd7{letter-spacing:-0.057628px;}
.lsc7{letter-spacing:-0.050500px;}
.ls8b{letter-spacing:-0.050463px;}
.ls57{letter-spacing:-0.043381px;}
.lsbc{letter-spacing:-0.043301px;}
.lsca{letter-spacing:-0.043286px;}
.ls8c{letter-spacing:-0.043254px;}
.ls32{letter-spacing:-0.043200px;}
.lsc9{letter-spacing:-0.036072px;}
.ls86{letter-spacing:-0.036045px;}
.lsd4{letter-spacing:-0.036018px;}
.ls89{letter-spacing:-0.028836px;}
.ls56{letter-spacing:-0.028830px;}
.lsdb{letter-spacing:-0.028814px;}
.ls33{letter-spacing:-0.028800px;}
.lsb4{letter-spacing:-0.021638px;}
.ls87{letter-spacing:-0.021627px;}
.ls83{letter-spacing:-0.021613px;}
.lsd9{letter-spacing:-0.021611px;}
.ls8a{letter-spacing:-0.014418px;}
.ls54{letter-spacing:-0.014415px;}
.ls82{letter-spacing:-0.014408px;}
.lsd2{letter-spacing:-0.014407px;}
.ls1f{letter-spacing:-0.014400px;}
.ls7{letter-spacing:-0.008388px;}
.lsc8{letter-spacing:-0.007214px;}
.ls88{letter-spacing:-0.007209px;}
.ls55{letter-spacing:-0.007207px;}
.ls81{letter-spacing:-0.007204px;}
.ls20{letter-spacing:-0.007200px;}
.ls8{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.007200px;}
.ls85{letter-spacing:0.007204px;}
.ls3c{letter-spacing:0.007207px;}
.ls7a{letter-spacing:0.007209px;}
.ls18{letter-spacing:0.009360px;}
.lsa{letter-spacing:0.014400px;}
.lsab{letter-spacing:0.014407px;}
.ls69{letter-spacing:0.014408px;}
.ls7b{letter-spacing:0.014418px;}
.ls9c{letter-spacing:0.014429px;}
.ls6{letter-spacing:0.021600px;}
.lsa6{letter-spacing:0.021611px;}
.ls6a{letter-spacing:0.021613px;}
.ls75{letter-spacing:0.021627px;}
.ls3{letter-spacing:0.028800px;}
.lsaf{letter-spacing:0.028814px;}
.ls6b{letter-spacing:0.028817px;}
.ls1{letter-spacing:0.036000px;}
.lsaa{letter-spacing:0.036018px;}
.ls67{letter-spacing:0.036021px;}
.ls74{letter-spacing:0.036045px;}
.ls17{letter-spacing:0.043200px;}
.lsb0{letter-spacing:0.043221px;}
.ls68{letter-spacing:0.043225px;}
.ls5{letter-spacing:0.050400px;}
.lsdc{letter-spacing:0.050425px;}
.lsc5{letter-spacing:0.050500px;}
.lsb{letter-spacing:0.057600px;}
.lsa7{letter-spacing:0.057628px;}
.ls66{letter-spacing:0.057634px;}
.ls79{letter-spacing:0.057672px;}
.ls97{letter-spacing:0.057700px;}
.ls0{letter-spacing:0.058716px;}
.ls2{letter-spacing:0.064800px;}
.lsa3{letter-spacing:0.064832px;}
.ls78{letter-spacing:0.064881px;}
.lsd{letter-spacing:0.072000px;}
.lsdd{letter-spacing:0.072035px;}
.ls4{letter-spacing:0.079200px;}
.ls73{letter-spacing:0.079246px;}
.ls77{letter-spacing:0.079299px;}
.ls9{letter-spacing:0.084168px;}
.lsb2{letter-spacing:0.086442px;}
.lsd0{letter-spacing:0.093646px;}
.ls63{letter-spacing:0.093655px;}
.lsc{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.115200px;}
.ls19{letter-spacing:0.129600px;}
.lse8{letter-spacing:0.180000px;}
.lsd8{letter-spacing:0.180089px;}
.ls80{letter-spacing:0.207605px;}
.ls76{letter-spacing:3.420000px;}
.ls35{letter-spacing:3.536238px;}
.ls70{letter-spacing:3.546384px;}
.ls84{letter-spacing:11.215800px;}
.ls3e{letter-spacing:12.537734px;}
.ls37{letter-spacing:12.638966px;}
.ls6c{letter-spacing:12.653352px;}
.lsac{letter-spacing:12.656282px;}
.ls9b{letter-spacing:15.082744px;}
.ls9e{letter-spacing:15.117331px;}
.ls98{letter-spacing:17.326984px;}
.ls96{letter-spacing:18.016925px;}
.lsa5{letter-spacing:19.136282px;}
.ls1b{letter-spacing:27.883829px;}
.lsbf{letter-spacing:34.657689px;}
.ls8f{letter-spacing:34.670680px;}
.lsad{letter-spacing:40.052349px;}
.ls38{letter-spacing:40.160063px;}
.lsb6{letter-spacing:46.122952px;}
.ls99{letter-spacing:46.242910px;}
.ls31{letter-spacing:49.161600px;}
.ls27{letter-spacing:49.273496px;}
.ls62{letter-spacing:49.492854px;}
.lscd{letter-spacing:49.495523px;}
.ls48{letter-spacing:49.553171px;}
.ls26{letter-spacing:49.632737px;}
.lsbe{letter-spacing:54.093121px;}
.ls7d{letter-spacing:54.101263px;}
.ls61{letter-spacing:54.132359px;}
.lscb{letter-spacing:54.134603px;}
.ls45{letter-spacing:54.158752px;}
.ls24{letter-spacing:54.195097px;}
.lsa8{letter-spacing:54.488986px;}
.ls2c{letter-spacing:54.554338px;}
.lsa4{letter-spacing:54.777600px;}
.ls64{letter-spacing:64.018298px;}
.lsae{letter-spacing:64.471683px;}
.ls6e{letter-spacing:64.477590px;}
.ls39{letter-spacing:64.506588px;}
.ls3b{letter-spacing:64.794886px;}
.lsd1{letter-spacing:73.726474px;}
.ls3d{letter-spacing:76.300500px;}
.ls36{letter-spacing:76.398600px;}
.ls6f{letter-spacing:76.399200px;}
.lse5{letter-spacing:76.501595px;}
.ls3a{letter-spacing:76.758600px;}
.lse3{letter-spacing:76.861772px;}
.lsa9{letter-spacing:80.514360px;}
.ls65{letter-spacing:83.098298px;}
.ls30{letter-spacing:89.810250px;}
.ls23{letter-spacing:94.875548px;}
.ls44{letter-spacing:95.198794px;}
.ls6d{letter-spacing:95.960063px;}
.ls2b{letter-spacing:102.678263px;}
.lsb8{letter-spacing:104.362182px;}
.ls40{letter-spacing:116.852124px;}
.lse1{letter-spacing:117.059368px;}
.lsa0{letter-spacing:117.201596px;}
.ls93{letter-spacing:120.247974px;}
.lsb5{letter-spacing:121.705127px;}
.ls95{letter-spacing:121.718825px;}
.ls15{letter-spacing:121.908747px;}
.ls14{letter-spacing:123.944021px;}
.lscc{letter-spacing:138.189940px;}
.ls28{letter-spacing:148.562527px;}
.ls11{letter-spacing:149.987218px;}
.lsc3{letter-spacing:150.123201px;}
.ls22{letter-spacing:150.589493px;}
.lse{letter-spacing:151.690202px;}
.ls72{letter-spacing:151.942590px;}
.lsb1{letter-spacing:151.994694px;}
.ls25{letter-spacing:152.562463px;}
.ls9f{letter-spacing:158.225530px;}
.ls71{letter-spacing:169.942590px;}
.lse4{letter-spacing:176.544358px;}
.lse2{letter-spacing:176.904535px;}
.lsa2{letter-spacing:178.758532px;}
.ls7e{letter-spacing:187.237538px;}
.ls2a{letter-spacing:198.171705px;}
.ls7c{letter-spacing:205.951800px;}
.lsc2{letter-spacing:255.993641px;}
.lscf{letter-spacing:256.035422px;}
.ls8d{letter-spacing:260.221231px;}
.lsa1{letter-spacing:271.148449px;}
.ls16{letter-spacing:273.885338px;}
.ls3f{letter-spacing:277.091669px;}
.ls12{letter-spacing:301.546895px;}
.lsdf{letter-spacing:324.735583px;}
.lsb9{letter-spacing:325.902411px;}
.lse7{letter-spacing:327.616999px;}
.ls10{letter-spacing:327.994218px;}
.lsf{letter-spacing:357.456384px;}
.ls2e{letter-spacing:360.031330px;}
.ls2d{letter-spacing:389.497408px;}
.lsc1{letter-spacing:417.630928px;}
.lsce{letter-spacing:417.675656px;}
.ls49{letter-spacing:431.377408px;}
.ls4c{letter-spacing:431.384604px;}
.lsde{letter-spacing:437.038772px;}
.ls21{letter-spacing:447.074734px;}
.ls42{letter-spacing:448.348746px;}
.ls4a{letter-spacing:452.010262px;}
.ls43{letter-spacing:454.040478px;}
.ls46{letter-spacing:458.537741px;}
.ls47{letter-spacing:463.284621px;}
.ls50{letter-spacing:463.422176px;}
.ls53{letter-spacing:463.781987px;}
.lse0{letter-spacing:474.590826px;}
.ls51{letter-spacing:484.410522px;}
.ls4d{letter-spacing:486.078795px;}
.ls4e{letter-spacing:488.242140px;}
.ls4f{letter-spacing:495.684881px;}
.ls52{letter-spacing:504.102407px;}
.ls2f{letter-spacing:504.144450px;}
.ls13{letter-spacing:548.280000px;}
.lsc4{letter-spacing:550.397665px;}
.ls4b{letter-spacing:580.418320px;}
.ls29{letter-spacing:580.828034px;}
.ls34{letter-spacing:636.840000px;}
.lse6{letter-spacing:647.274087px;}
.lsc0{letter-spacing:691.595490px;}
.ls94{letter-spacing:746.317576px;}
.ls90{letter-spacing:783.029405px;}
.ls8e{letter-spacing:803.810690px;}
.ls92{letter-spacing:824.104531px;}
.ls91{letter-spacing:837.581124px;}
.ls9d{letter-spacing:884.890670px;}
.ls9a{letter-spacing:950.639022px;}
.ls1d{letter-spacing:1368.000000px;}
.lsb3{letter-spacing:1368.002462px;}
.ls7f{letter-spacing:1368.005538px;}
.lsda{letter-spacing:1368.024281px;}
.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;}
}
.wsf{word-spacing:-367.840434px;}
.ws10{word-spacing:-345.956268px;}
.wsaa{word-spacing:-310.695884px;}
.wsa4{word-spacing:-90.749183px;}
.wsfb{word-spacing:-39.547435px;}
.wsa1{word-spacing:-33.217752px;}
.ws6a{word-spacing:-29.484864px;}
.ws61{word-spacing:-29.305800px;}
.ws3c{word-spacing:-28.619367px;}
.ws11{word-spacing:-27.913026px;}
.ws64{word-spacing:-18.101799px;}
.ws0{word-spacing:-18.079200px;}
.ws3b{word-spacing:-18.072000px;}
.wsab{word-spacing:-18.066478px;}
.wsfa{word-spacing:-18.059275px;}
.ws63{word-spacing:-18.058545px;}
.wsa7{word-spacing:-18.050279px;}
.ws62{word-spacing:-18.010500px;}
.ws65{word-spacing:-18.008082px;}
.ws12{word-spacing:-18.000000px;}
.wsa5{word-spacing:-17.913206px;}
.wsa6{word-spacing:-17.896950px;}
.ws68{word-spacing:-11.091018px;}
.ws107{word-spacing:-0.288142px;}
.wsb{word-spacing:-0.259200px;}
.wsa{word-spacing:-0.252000px;}
.wsfc{word-spacing:-0.237717px;}
.ws102{word-spacing:-0.180089px;}
.ws25{word-spacing:-0.180000px;}
.ws9f{word-spacing:-0.158598px;}
.ws2{word-spacing:-0.150984px;}
.wsbe{word-spacing:-0.115429px;}
.ws106{word-spacing:-0.115257px;}
.ws55{word-spacing:-0.115200px;}
.ws2b{word-spacing:-0.108000px;}
.wsee{word-spacing:-0.093646px;}
.ws2c{word-spacing:-0.093600px;}
.wsf7{word-spacing:-0.079239px;}
.ws9{word-spacing:-0.079200px;}
.ws5f{word-spacing:-0.072302px;}
.wsaf{word-spacing:-0.072169px;}
.wsef{word-spacing:-0.072035px;}
.ws5d{word-spacing:-0.065072px;}
.wsf4{word-spacing:-0.064832px;}
.wsd0{word-spacing:-0.057628px;}
.wsf8{word-spacing:-0.050425px;}
.wsc{word-spacing:-0.050400px;}
.wsb0{word-spacing:-0.043301px;}
.wsb6{word-spacing:-0.036084px;}
.wsf5{word-spacing:-0.036018px;}
.ws5e{word-spacing:-0.028921px;}
.ws93{word-spacing:-0.028836px;}
.ws26{word-spacing:-0.028800px;}
.wsf0{word-spacing:-0.021611px;}
.wsd{word-spacing:-0.021600px;}
.wsed{word-spacing:-0.014407px;}
.ws9e{word-spacing:-0.007209px;}
.wsde{word-spacing:-0.007204px;}
.wsdf{word-spacing:-0.007200px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.006012px;}
.wsf9{word-spacing:0.007204px;}
.wsf2{word-spacing:0.014407px;}
.wsbd{word-spacing:0.014429px;}
.ws101{word-spacing:0.021611px;}
.ws54{word-spacing:0.050612px;}
.ws1{word-spacing:0.058716px;}
.wsf6{word-spacing:0.064832px;}
.wsf1{word-spacing:0.108053px;}
.ws20{word-spacing:0.208800px;}
.ws21{word-spacing:0.280800px;}
.ws92{word-spacing:0.281151px;}
.wsf3{word-spacing:0.331363px;}
.ws91{word-spacing:0.353241px;}
.wseb{word-spacing:0.633912px;}
.ws3e{word-spacing:0.655200px;}
.wsec{word-spacing:0.669929px;}
.ws3f{word-spacing:0.698400px;}
.ws40{word-spacing:0.712800px;}
.wsea{word-spacing:0.741965px;}
.wsa9{word-spacing:0.785186px;}
.ws7b{word-spacing:0.965363px;}
.ws7c{word-spacing:0.986975px;}
.ws6b{word-spacing:1.066222px;}
.ws6c{word-spacing:1.073426px;}
.ws6e{word-spacing:1.080630px;}
.ws7a{word-spacing:1.102243px;}
.ws6d{word-spacing:1.188693px;}
.ws7f{word-spacing:1.397615px;}
.ws7e{word-spacing:1.426432px;}
.ws7d{word-spacing:1.448044px;}
.ws3a{word-spacing:1.648800px;}
.ws38{word-spacing:1.692000px;}
.ws37{word-spacing:1.800000px;}
.ws39{word-spacing:1.843200px;}
.ws79{word-spacing:1.909113px;}
.ws78{word-spacing:2.082014px;}
.ws51{word-spacing:2.147381px;}
.ws50{word-spacing:2.161842px;}
.ws77{word-spacing:2.168464px;}
.wsce{word-spacing:2.470814px;}
.wsd7{word-spacing:2.485221px;}
.wscd{word-spacing:2.506832px;}
.wscf{word-spacing:2.521239px;}
.wsd8{word-spacing:2.535646px;}
.ws44{word-spacing:2.721600px;}
.ws45{word-spacing:2.728800px;}
.ws46{word-spacing:2.750400px;}
.ws6{word-spacing:2.757600px;}
.ws5{word-spacing:2.793600px;}
.wsda{word-spacing:2.838195px;}
.wsdb{word-spacing:2.867009px;}
.ws47{word-spacing:2.880000px;}
.wsd9{word-spacing:2.888620px;}
.ws36{word-spacing:3.031200px;}
.wse2{word-spacing:3.111929px;}
.ws34{word-spacing:3.160800px;}
.wse3{word-spacing:3.176761px;}
.ws33{word-spacing:3.211200px;}
.ws35{word-spacing:3.225600px;}
.ws30{word-spacing:3.484800px;}
.ws32{word-spacing:3.492000px;}
.ws2f{word-spacing:3.535200px;}
.ws8a{word-spacing:3.964950px;}
.ws8b{word-spacing:3.972159px;}
.ws52{word-spacing:4.251381px;}
.ws53{word-spacing:4.338144px;}
.ws4c{word-spacing:4.526130px;}
.ws87{word-spacing:4.635387px;}
.ws4b{word-spacing:4.656006px;}
.ws88{word-spacing:4.657014px;}
.ws89{word-spacing:4.750731px;}
.wsd3{word-spacing:4.847982px;}
.wsc3{word-spacing:5.366637px;}
.wsc4{word-spacing:5.381044px;}
.wsd2{word-spacing:5.445876px;}
.wsae{word-spacing:5.470380px;}
.wsd1{word-spacing:5.474690px;}
.wsad{word-spacing:5.506464px;}
.wsc9{word-spacing:5.640372px;}
.ws104{word-spacing:5.683593px;}
.ws105{word-spacing:5.726814px;}
.wsc8{word-spacing:5.741221px;}
.wsca{word-spacing:5.784443px;}
.ws29{word-spacing:6.372000px;}
.ws2a{word-spacing:6.436800px;}
.ws8c{word-spacing:6.473682px;}
.ws8d{word-spacing:6.480891px;}
.ws22{word-spacing:6.732000px;}
.ws27{word-spacing:6.746400px;}
.ws43{word-spacing:6.796800px;}
.ws24{word-spacing:6.811200px;}
.ws23{word-spacing:6.847200px;}
.wsb1{word-spacing:6.863234px;}
.ws28{word-spacing:6.868800px;}
.wsb2{word-spacing:6.935402px;}
.ws1f{word-spacing:7.077600px;}
.ws1e{word-spacing:7.142400px;}
.wsd6{word-spacing:7.160319px;}
.wsd5{word-spacing:7.217947px;}
.wsd4{word-spacing:7.232354px;}
.ws84{word-spacing:7.470755px;}
.ws8e{word-spacing:7.475733px;}
.ws83{word-spacing:7.506776px;}
.ws90{word-spacing:7.518987px;}
.ws86{word-spacing:7.521185px;}
.ws85{word-spacing:7.550002px;}
.ws8f{word-spacing:7.562241px;}
.ws99{word-spacing:7.908273px;}
.ws9a{word-spacing:7.922691px;}
.ws74{word-spacing:8.234401px;}
.ws59{word-spacing:8.322006px;}
.wsc6{word-spacing:8.449752px;}
.ws5b{word-spacing:8.452151px;}
.ws5c{word-spacing:8.538913px;}
.wsc7{word-spacing:8.572213px;}
.ws5a{word-spacing:8.575065px;}
.ws72{word-spacing:8.587406px;}
.wsc5{word-spacing:8.622637px;}
.ws73{word-spacing:8.652244px;}
.ws1a{word-spacing:8.841600px;}
.ws19{word-spacing:8.942400px;}
.ws82{word-spacing:9.199763px;}
.ws81{word-spacing:9.235784px;}
.ws80{word-spacing:9.242989px;}
.ws7{word-spacing:10.764000px;}
.ws8{word-spacing:10.800000px;}
.wse0{word-spacing:11.475239px;}
.wse4{word-spacing:11.489646px;}
.wse1{word-spacing:11.496850px;}
.ws75{word-spacing:11.497903px;}
.ws76{word-spacing:11.505107px;}
.ws1c{word-spacing:12.031200px;}
.ws4a{word-spacing:12.137329px;}
.ws49{word-spacing:12.151744px;}
.ws48{word-spacing:12.238233px;}
.ws1b{word-spacing:12.254400px;}
.ws17{word-spacing:12.384000px;}
.ws15{word-spacing:12.477600px;}
.ws14{word-spacing:12.492000px;}
.ws18{word-spacing:12.556800px;}
.ws16{word-spacing:12.664800px;}
.ws9d{word-spacing:12.795975px;}
.ws9c{word-spacing:12.911319px;}
.ws9b{word-spacing:12.925737px;}
.ws4f{word-spacing:13.108425px;}
.ws4d{word-spacing:13.245800px;}
.ws4e{word-spacing:13.339793px;}
.wscb{word-spacing:14.003682px;}
.wscc{word-spacing:14.061310px;}
.ws70{word-spacing:14.278724px;}
.wsb4{word-spacing:14.325467px;}
.ws71{word-spacing:14.372379px;}
.wsb3{word-spacing:14.397636px;}
.ws6f{word-spacing:14.408400px;}
.wsb5{word-spacing:14.426503px;}
.wsdc{word-spacing:14.688018px;}
.wsdd{word-spacing:14.709629px;}
.wsbc{word-spacing:14.948112px;}
.wsba{word-spacing:15.092399px;}
.wsbb{word-spacing:15.121257px;}
.wsb9{word-spacing:15.135685px;}
.wsb8{word-spacing:15.207829px;}
.wse5{word-spacing:17.792744px;}
.wse7{word-spacing:17.864779px;}
.wse6{word-spacing:18.008850px;}
.wse9{word-spacing:18.325806px;}
.ws97{word-spacing:18.346905px;}
.wse8{word-spacing:18.347416px;}
.ws98{word-spacing:18.397368px;}
.ws56{word-spacing:19.210748px;}
.ws57{word-spacing:19.449346px;}
.ws58{word-spacing:19.478267px;}
.ws69{word-spacing:20.483614px;}
.ws1d{word-spacing:21.902400px;}
.wsc0{word-spacing:22.964886px;}
.wsc1{word-spacing:23.008107px;}
.wsc2{word-spacing:23.044124px;}
.ws96{word-spacing:28.836000px;}
.ws94{word-spacing:29.174823px;}
.ws95{word-spacing:29.189241px;}
.ws13{word-spacing:36.144000px;}
.wsa2{word-spacing:36.951849px;}
.ws3d{word-spacing:48.700392px;}
.wsa8{word-spacing:52.045576px;}
.wsac{word-spacing:58.597058px;}
.ws31{word-spacing:82.800000px;}
.wse{word-spacing:246.834491px;}
.ws67{word-spacing:285.609371px;}
.wsa3{word-spacing:562.457991px;}
.ws100{word-spacing:593.276351px;}
.wsfe{word-spacing:602.280776px;}
.wsfd{word-spacing:611.277997px;}
.wsff{word-spacing:629.279644px;}
.ws103{word-spacing:629.286847px;}
.ws66{word-spacing:894.131371px;}
.wsa0{word-spacing:1025.551063px;}
.wsb7{word-spacing:1433.799575px;}
.wsbf{word-spacing:1529.542055px;}
.ws2d{word-spacing:1649.772000px;}
.ws41{word-spacing:1667.772000px;}
.ws2e{word-spacing:1727.532000px;}
.ws42{word-spacing:1745.532000px;}
.ws60{word-spacing:2099.772153px;}
._3e{margin-left:-629.272440px;}
._2f{margin-left:-364.657602px;}
._3d{margin-left:-358.606628px;}
._2a{margin-left:-346.655955px;}
._2d{margin-left:-337.658734px;}
._39{margin-left:-328.654309px;}
._3f{margin-left:-301.331282px;}
._2b{margin-left:-265.327989px;}
._40{margin-left:-256.662130px;}
._28{margin-left:-247.311935px;}
._2e{margin-left:-232.523068px;}
._37{margin-left:-229.310289px;}
._29{margin-left:-214.535828px;}
._2c{margin-left:-205.538607px;}
._3{margin-left:-200.528326px;}
._2{margin-left:-197.629240px;}
._38{margin-left:-196.534182px;}
._35{margin-left:-193.343014px;}
._36{margin-left:-124.585224px;}
._e{margin-left:-91.853550px;}
._1c{margin-left:-53.746833px;}
._22{margin-left:-21.970797px;}
._13{margin-left:-16.007654px;}
._c{margin-left:-11.551395px;}
._17{margin-left:-3.966897px;}
._1{margin-left:-1.202400px;}
._0{width:1.006560px;}
._4{width:3.484800px;}
._10{width:4.700268px;}
._1b{width:5.915759px;}
._26{width:8.212035px;}
._d{width:11.189595px;}
._1e{width:12.264378px;}
._11{width:50.765175px;}
._27{width:51.857589px;}
._b{width:64.138993px;}
._8{width:76.287541px;}
._18{width:80.636197px;}
._7{width:88.516800px;}
._6{width:90.453600px;}
._16{width:95.421904px;}
._14{width:99.028174px;}
._5{width:112.629600px;}
._25{width:121.685075px;}
._20{width:122.780852px;}
._24{width:124.259947px;}
._a{width:125.297909px;}
._9{width:127.668528px;}
._1f{width:129.977424px;}
._f{width:134.174441px;}
._1a{width:159.382696px;}
._19{width:164.456124px;}
._30{width:172.719279px;}
._23{width:193.798184px;}
._15{width:233.614171px;}
._12{width:240.419721px;}
._34{width:252.692980px;}
._3c{width:270.709033px;}
._1d{width:325.943881px;}
._3a{width:345.935601px;}
._32{width:363.944451px;}
._21{width:369.638928px;}
._3b{width:378.704505px;}
._33{width:396.706151px;}
._31{width:629.308458px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.536200px;}
.fsd{font-size:41.602800px;}
.fs8{font-size:41.625000px;}
.fs2b{font-size:41.644800px;}
.fs12{font-size:41.649000px;}
.fs9{font-size:41.668800px;}
.fs1f{font-size:41.696400px;}
.fs27{font-size:41.707800px;}
.fsf{font-size:41.799000px;}
.fs25{font-size:43.968629px;}
.fs2d{font-size:44.013029px;}
.fs13{font-size:44.017391px;}
.fs17{font-size:44.038456px;}
.fs21{font-size:44.067677px;}
.fs29{font-size:44.079823px;}
.fs1a{font-size:44.212067px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:60.120000px;}
.fs15{font-size:71.587800px;}
.fs5{font-size:71.848200px;}
.fs1e{font-size:71.896200px;}
.fse{font-size:71.962200px;}
.fs2{font-size:72.000000px;}
.fs2c{font-size:72.035400px;}
.fs11{font-size:72.042000px;}
.fsa{font-size:72.074400px;}
.fs1c{font-size:72.090000px;}
.fs20{font-size:72.125400px;}
.fs28{font-size:72.143400px;}
.fs23{font-size:72.168600px;}
.fs10{font-size:72.302400px;}
.fs19{font-size:72.360000px;}
.fs31{font-size:75.540637px;}
.fs16{font-size:75.659032px;}
.fs6{font-size:75.934157px;}
.fs2f{font-size:75.955027px;}
.fs1b{font-size:75.985011px;}
.fs26{font-size:76.054643px;}
.fs2e{font-size:76.132254px;}
.fs14{font-size:76.138887px;}
.fs18{font-size:76.173233px;}
.fs1d{font-size:76.189741px;}
.fs30{font-size:76.210805px;}
.fs22{font-size:76.226925px;}
.fs2a{font-size:76.246092px;}
.fs24{font-size:76.272849px;}
.fsb{font-size:76.474725px;}
.fs32{font-size:76.562584px;}
.fs0{font-size:83.880000px;}
.fs3{font-size:112.449000px;}
.fsc{font-size:112.627800px;}
.y0{bottom:0.000000px;}
.y56{bottom:2.250000px;}
.ya8{bottom:2.250150px;}
.yad{bottom:3.870000px;}
.y159{bottom:3.870150px;}
.y5a{bottom:3.960000px;}
.y54{bottom:3.960150px;}
.y152{bottom:58.137900px;}
.y5c{bottom:58.140000px;}
.y187{bottom:58.141434px;}
.yee{bottom:58.141650px;}
.y150{bottom:126.540000px;}
.y14f{bottom:130.497300px;}
.y151{bottom:130.500150px;}
.ya4{bottom:150.394437px;}
.yaa{bottom:151.110000px;}
.ya7{bottom:160.830000px;}
.yeb{bottom:162.877118px;}
.yea{bottom:164.319626px;}
.ya3{bottom:164.430150px;}
.ydd{bottom:164.524950px;}
.ye9{bottom:167.024328px;}
.y14d{bottom:168.840000px;}
.ya5{bottom:169.020150px;}
.ya2{bottom:169.033759px;}
.ye1{bottom:169.102016px;}
.ya6{bottom:169.848633px;}
.y14c{bottom:172.616078px;}
.y14e{bottom:172.620000px;}
.ya9{bottom:176.310000px;}
.ye0{bottom:177.207158px;}
.yec{bottom:177.210300px;}
.ye8{bottom:178.366048px;}
.ydc{bottom:178.472396px;}
.ye7{bottom:178.636518px;}
.ye6{bottom:179.988869px;}
.yed{bottom:183.036167px;}
.yd8{bottom:183.067193px;}
.ye5{bottom:183.144355px;}
.yda{bottom:183.148438px;}
.y59{bottom:185.940000px;}
.ydb{bottom:189.720000px;}
.y5b{bottom:189.900000px;}
.y58{bottom:189.900150px;}
.ye4{bottom:192.682940px;}
.yde{bottom:194.400000px;}
.ye3{bottom:195.387642px;}
.ye2{bottom:196.830150px;}
.ydf{bottom:199.890000px;}
.y14a{bottom:213.570000px;}
.yd9{bottom:214.380000px;}
.y149{bottom:217.523688px;}
.y14b{bottom:217.530150px;}
.ya1{bottom:222.320628px;}
.y55{bottom:229.590000px;}
.y51{bottom:231.840000px;}
.y53{bottom:232.560000px;}
.y4d{bottom:236.520000px;}
.y57{bottom:236.520150px;}
.y52{bottom:244.621904px;}
.yd7{bottom:251.381137px;}
.y148{bottom:259.196167px;}
.ya0{bottom:263.713752px;}
.y4f{bottom:281.070150px;}
.y4e{bottom:285.750000px;}
.y4c{bottom:285.750150px;}
.y50{bottom:286.560000px;}
.yd6{bottom:292.778820px;}
.y146{bottom:299.970000px;}
.y145{bottom:303.927344px;}
.y147{bottom:303.930150px;}
.y9f{bottom:305.106876px;}
.y47{bottom:329.573426px;}
.y40{bottom:329.758134px;}
.yd5{bottom:334.176502px;}
.y3c{bottom:334.349394px;}
.y46{bottom:335.249434px;}
.y143{bottom:342.090000px;}
.y3f{bottom:343.703913px;}
.y45{bottom:343.799369px;}
.y4a{bottom:343.809937px;}
.y142{bottom:345.952935px;}
.y144{bottom:345.960000px;}
.y9e{bottom:346.500000px;}
.y48{bottom:348.300150px;}
.y49{bottom:348.300450px;}
.y41{bottom:348.305907px;}
.y3a{bottom:348.390000px;}
.y4b{bottom:348.390150px;}
.y3e{bottom:354.866767px;}
.y42{bottom:354.870000px;}
.y3d{bottom:356.310150px;}
.y3b{bottom:359.550150px;}
.y44{bottom:360.360380px;}
.y43{bottom:360.540000px;}
.yd4{bottom:375.574185px;}
.y141{bottom:387.535370px;}
.y9d{bottom:387.720000px;}
.y39{bottom:406.170000px;}
.y1b{bottom:414.090000px;}
.yd3{bottom:416.971868px;}
.y140{bottom:429.304153px;}
.y9c{bottom:429.318292px;}
.y13d{bottom:429.930000px;}
.y13c{bottom:433.882254px;}
.y13e{bottom:433.890150px;}
.y13f{bottom:441.990150px;}
.y38{bottom:448.823426px;}
.y32{bottom:449.007984px;}
.y2e{bottom:453.599244px;}
.y37{bottom:454.499434px;}
.yd1{bottom:454.770000px;}
.y1a{bottom:455.490000px;}
.yd2{bottom:458.730000px;}
.yd0{bottom:458.731530px;}
.y31{bottom:462.953763px;}
.y36{bottom:463.049369px;}
.y2b{bottom:465.300000px;}
.y2a{bottom:467.550000px;}
.y33{bottom:467.555757px;}
.y9b{bottom:470.711416px;}
.y30{bottom:474.116617px;}
.y2c{bottom:474.120000px;}
.y2f{bottom:475.560000px;}
.y13b{bottom:478.166017px;}
.y2d{bottom:478.800000px;}
.y35{bottom:479.610380px;}
.y34{bottom:479.790000px;}
.yce{bottom:496.890000px;}
.y19{bottom:497.070000px;}
.ycf{bottom:500.760000px;}
.ycd{bottom:500.761530px;}
.y9a{bottom:512.104540px;}
.y139{bottom:518.940000px;}
.y138{bottom:522.895087px;}
.y13a{bottom:522.900000px;}
.y29{bottom:525.330000px;}
.y18{bottom:538.470000px;}
.ycb{bottom:538.830000px;}
.ycc{bottom:542.790000px;}
.yca{bottom:542.793847px;}
.y97{bottom:553.677540px;}
.y99{bottom:554.400000px;}
.y95{bottom:558.358942px;}
.y98{bottom:558.360000px;}
.y164{bottom:562.483621px;}
.y135{bottom:564.840000px;}
.y96{bottom:566.460000px;}
.y28{bottom:566.640000px;}
.y134{bottom:569.517213px;}
.y136{bottom:569.520000px;}
.y137{bottom:575.370000px;}
.y17{bottom:579.870000px;}
.yc9{bottom:584.371755px;}
.y94{bottom:602.644162px;}
.y163{bottom:603.885967px;}
.y16e{bottom:608.016538px;}
.y27{bottom:608.040000px;}
.y12e{bottom:615.493849px;}
.y12d{bottom:616.844512px;}
.y12c{bottom:621.166636px;}
.y123{bottom:621.173141px;}
.y16{bottom:621.270000px;}
.yc7{bottom:622.440000px;}
.yc8{bottom:626.220000px;}
.yc6{bottom:626.222205px;}
.y132{bottom:630.171020px;}
.y12b{bottom:630.171061px;}
.y124{bottom:630.535493px;}
.y131{bottom:631.611727px;}
.y12a{bottom:631.611770px;}
.y133{bottom:635.123453px;}
.y126{bottom:635.124424px;}
.y122{bottom:635.130000px;}
.y121{bottom:635.139217px;}
.y129{bottom:636.023938px;}
.y15{bottom:641.970000px;}
.y127{bottom:643.225493px;}
.y91{bottom:644.404004px;}
.y93{bottom:645.030000px;}
.y162{bottom:645.288313px;}
.y125{bottom:646.470000px;}
.y130{bottom:646.919250px;}
.y128{bottom:646.919292px;}
.y92{bottom:648.990000px;}
.y8f{bottom:648.993185px;}
.y26{bottom:649.260000px;}
.y16d{bottom:649.418885px;}
.y12f{bottom:654.480000px;}
.y90{bottom:657.090000px;}
.y14{bottom:662.670000px;}
.yc5{bottom:667.708042px;}
.y161{bottom:686.690660px;}
.y13{bottom:687.060000px;}
.y16c{bottom:690.821231px;}
.y25{bottom:690.840000px;}
.y8e{bottom:693.537540px;}
.y120{bottom:694.441092px;}
.y8c{bottom:698.220000px;}
.y186{bottom:702.267654px;}
.y8d{bottom:706.320000px;}
.y12{bottom:707.850000px;}
.yc4{bottom:708.570000px;}
.yc3{bottom:712.530000px;}
.y160{bottom:728.093006px;}
.y11{bottom:728.550000px;}
.y16b{bottom:732.223577px;}
.y24{bottom:732.240000px;}
.y11f{bottom:735.210000px;}
.y11d{bottom:735.390000px;}
.y11c{bottom:739.155934px;}
.y11e{bottom:739.170000px;}
.y8b{bottom:742.500000px;}
.y185{bottom:743.670000px;}
.y10{bottom:749.250150px;}
.yc2{bottom:754.100973px;}
.y184{bottom:765.168463px;}
.y15f{bottom:769.405308px;}
.yf{bottom:769.950150px;}
.y16a{bottom:773.625923px;}
.y23{bottom:773.640000px;}
.y113{bottom:781.183095px;}
.y112{bottom:782.625963px;}
.y8a{bottom:783.810000px;}
.y111{bottom:783.978652px;}
.y183{bottom:785.860632px;}
.y110{bottom:788.289220px;}
.y106{bottom:788.313738px;}
.y116{bottom:788.318109px;}
.ye{bottom:790.560150px;}
.y10f{bottom:792.509609px;}
.y11a{bottom:792.524014px;}
.yc0{bottom:795.784169px;}
.yc1{bottom:796.500000px;}
.ybd{bottom:796.590000px;}
.y10e{bottom:797.379289px;}
.y119{bottom:797.393693px;}
.y107{bottom:797.669321px;}
.y10d{bottom:798.731977px;}
.y118{bottom:798.746382px;}
.y10c{bottom:800.174845px;}
.y117{bottom:800.189250px;}
.ybc{bottom:800.445928px;}
.ybe{bottom:800.460000px;}
.y11b{bottom:802.245337px;}
.y103{bottom:802.246067px;}
.y10b{bottom:802.339147px;}
.y105{bottom:802.345630px;}
.y115{bottom:802.350000px;}
.y182{bottom:806.552801px;}
.ybf{bottom:808.560000px;}
.y15e{bottom:810.807654px;}
.yd{bottom:811.350150px;}
.y104{bottom:813.600000px;}
.y10a{bottom:814.134593px;}
.y169{bottom:815.028269px;}
.y22{bottom:815.040000px;}
.y109{bottom:815.577461px;}
.y108{bottom:816.930150px;}
.y114{bottom:821.700000px;}
.y83{bottom:826.396404px;}
.y7b{bottom:826.557013px;}
.y181{bottom:827.244969px;}
.y77{bottom:831.163230px;}
.yc{bottom:832.050150px;}
.y82{bottom:832.063427px;}
.y87{bottom:840.499599px;}
.y7a{bottom:840.504352px;}
.y85{bottom:840.510000px;}
.y75{bottom:840.510049px;}
.y89{bottom:840.601762px;}
.y81{bottom:840.608938px;}
.ybb{bottom:844.733748px;}
.y88{bottom:845.099400px;}
.y84{bottom:845.100000px;}
.y7c{bottom:845.105906px;}
.y80{bottom:845.106576px;}
.y74{bottom:845.190000px;}
.y180{bottom:847.937138px;}
.y79{bottom:851.664303px;}
.y7d{bottom:851.670000px;}
.y15d{bottom:852.210000px;}
.yb{bottom:852.750000px;}
.y86{bottom:853.105248px;}
.y78{bottom:853.110000px;}
.y76{bottom:856.350000px;}
.y168{bottom:856.430615px;}
.y21{bottom:856.440000px;}
.y7f{bottom:857.160244px;}
.y7e{bottom:857.340150px;}
.y102{bottom:861.550614px;}
.y17f{bottom:868.629307px;}
.ya{bottom:873.270000px;}
.yb9{bottom:882.630000px;}
.yb8{bottom:886.583546px;}
.yba{bottom:886.590150px;}
.y17e{bottom:889.321475px;}
.y15c{bottom:893.430000px;}
.y9{bottom:894.060000px;}
.y167{bottom:897.832962px;}
.y20{bottom:897.840000px;}
.y101{bottom:902.957348px;}
.y73{bottom:902.970000px;}
.y17d{bottom:910.013644px;}
.y8{bottom:918.450000px;}
.yb7{bottom:924.570000px;}
.y18c{bottom:926.820000px;}
.yb5{bottom:928.440000px;}
.yb3{bottom:928.507014px;}
.yb6{bottom:928.530000px;}
.y17c{bottom:930.705813px;}
.yb4{bottom:934.290000px;}
.y15b{bottom:935.007583px;}
.y166{bottom:939.235308px;}
.y7{bottom:939.240000px;}
.y100{bottom:944.364082px;}
.y6f{bottom:945.466404px;}
.y67{bottom:945.623557px;}
.y63{bottom:950.215239px;}
.y69{bottom:950.233230px;}
.y6e{bottom:951.133427px;}
.y17b{bottom:951.397981px;}
.y6{bottom:959.301180px;}
.y66{bottom:959.570895px;}
.y61{bottom:959.576443px;}
.y71{bottom:959.581296px;}
.y72{bottom:959.759850px;}
.y6d{bottom:959.768891px;}
.y18b{bottom:959.937804px;}
.y5f{bottom:962.010000px;}
.y68{bottom:964.175906px;}
.y6c{bottom:964.176576px;}
.y5e{bottom:964.260000px;}
.y65{bottom:970.824453px;}
.y60{bottom:970.830000px;}
.y17a{bottom:972.090150px;}
.y70{bottom:972.265297px;}
.y64{bottom:972.270150px;}
.yb2{bottom:972.794834px;}
.y158{bottom:972.990000px;}
.y62{bottom:975.420000px;}
.y6b{bottom:976.320197px;}
.y6a{bottom:976.410150px;}
.y5{bottom:976.495500px;}
.y157{bottom:976.853582px;}
.y15a{bottom:976.860150px;}
.y165{bottom:980.637654px;}
.y1f{bottom:980.640000px;}
.yff{bottom:985.770816px;}
.y172{bottom:992.800749px;}
.y177{bottom:992.965046px;}
.y174{bottom:992.970000px;}
.y178{bottom:993.690000px;}
.y4{bottom:993.780000px;}
.y175{bottom:997.650000px;}
.y176{bottom:1005.750000px;}
.y18a{bottom:1009.620000px;}
.y3{bottom:1012.314150px;}
.y171{bottom:1013.500109px;}
.yb1{bottom:1014.200973px;}
.y156{bottom:1018.436017px;}
.y173{bottom:1019.886060px;}
.y179{bottom:1021.313629px;}
.y1e{bottom:1022.040000px;}
.y188{bottom:1022.047122px;}
.yfe{bottom:1028.266254px;}
.yf7{bottom:1028.430000px;}
.yf6{bottom:1029.150000px;}
.yf3{bottom:1031.048101px;}
.yf8{bottom:1033.020150px;}
.y2{bottom:1036.534500px;}
.yf9{bottom:1041.120000px;}
.yf2{bottom:1042.378571px;}
.yf5{bottom:1042.396613px;}
.yfd{bottom:1042.568741px;}
.y170{bottom:1042.746481px;}
.yfc{bottom:1046.976426px;}
.yef{bottom:1047.060000px;}
.yf1{bottom:1047.141698px;}
.yfa{bottom:1054.260000px;}
.yaf{bottom:1055.880000px;}
.yf0{bottom:1056.685996px;}
.yac{bottom:1056.690000px;}
.yf4{bottom:1056.704038px;}
.yfb{bottom:1059.210000px;}
.y154{bottom:1059.390000px;}
.yab{bottom:1060.559250px;}
.yae{bottom:1060.560000px;}
.y1{bottom:1060.650000px;}
.y155{bottom:1063.170000px;}
.y153{bottom:1063.170300px;}
.y1d{bottom:1063.260000px;}
.y16f{bottom:1063.438650px;}
.y5d{bottom:1063.440000px;}
.y189{bottom:1063.449468px;}
.yb0{bottom:1066.410000px;}
.y1c{bottom:1117.440000px;}
.h17{height:12.690000px;}
.h67{height:15.750000px;}
.h63{height:15.930000px;}
.h65{height:16.020000px;}
.h15{height:20.070000px;}
.h33{height:20.250000px;}
.h39{height:20.430000px;}
.h1a{height:20.520000px;}
.h30{height:21.240000px;}
.h2b{height:22.050000px;}
.h27{height:22.140000px;}
.he{height:38.473717px;}
.h21{height:38.535406px;}
.h6d{height:38.574309px;}
.h18{height:38.596540px;}
.h49{height:40.726801px;}
.hc{height:40.745227px;}
.ha{height:40.765509px;}
.h5e{height:40.767928px;}
.h2f{height:40.771968px;}
.h35{height:40.791480px;}
.h1f{height:40.810559px;}
.h42{height:40.818547px;}
.h53{height:40.829797px;}
.h1d{height:40.830873px;}
.h11{height:40.832336px;}
.h59{height:40.851759px;}
.h2c{height:40.855879px;}
.h6c{height:40.872094px;}
.h14{height:40.875302px;}
.h13{height:40.895648px;}
.h40{height:40.902377px;}
.h4f{height:40.913560px;}
.h3e{height:40.922736px;}
.h38{height:40.952291px;}
.h25{height:41.003023px;}
.h6e{height:46.991602px;}
.h4{height:58.975137px;}
.h3{height:59.004492px;}
.hf{height:66.550799px;}
.h22{height:66.656393px;}
.h12{height:66.691406px;}
.h5d{height:66.724196px;}
.h2e{height:66.730310px;}
.h44{height:66.807560px;}
.h52{height:66.824233px;}
.h46{height:66.847575px;}
.h28{height:66.971510px;}
.h68{height:69.970991px;}
.h34{height:70.080656px;}
.h10{height:70.335496px;}
.h64{height:70.354827px;}
.h3a{height:70.382600px;}
.h4a{height:70.447099px;}
.hd{height:70.479997px;}
.hb{height:70.515079px;}
.h5f{height:70.518987px;}
.h31{height:70.525131px;}
.h36{height:70.556944px;}
.h3c{height:70.572235px;}
.h66{height:70.591747px;}
.h20{height:70.591826px;}
.h43{height:70.606678px;}
.h54{height:70.624432px;}
.h1e{height:70.626964px;}
.h8{height:70.628906px;}
.h47{height:70.649216px;}
.h5a{height:70.663632px;}
.h5{height:70.664062px;}
.h7{height:70.664663px;}
.h2d{height:70.670106px;}
.h57{height:70.698806px;}
.h16{height:70.701889px;}
.h32{height:70.705283px;}
.h23{height:70.737082px;}
.h37{height:70.749327px;}
.h41{height:70.751918px;}
.h3b{height:70.752393px;}
.h50{height:70.769575px;}
.h3f{height:70.787136px;}
.h4d{height:70.804802px;}
.h4b{height:70.829534px;}
.h1b{height:70.836208px;}
.h55{height:70.863454px;}
.h6a{height:70.917589px;}
.h26{height:70.925548px;}
.h24{height:70.948112px;}
.h29{height:70.960852px;}
.h2a{height:70.965085px;}
.h61{height:70.974309px;}
.h62{height:71.017383px;}
.h6{height:72.562500px;}
.h60{height:73.283243px;}
.h6b{height:76.461638px;}
.h3d{height:80.119432px;}
.h69{height:80.127289px;}
.h1{height:82.323633px;}
.h2{height:84.535312px;}
.h5c{height:87.262225px;}
.h19{height:89.384662px;}
.h9{height:104.158083px;}
.h1c{height:104.323700px;}
.h48{height:115.202188px;}
.h5b{height:115.996611px;}
.h51{height:116.050146px;}
.h45{height:116.189534px;}
.h56{height:118.235225px;}
.h4c{height:118.749658px;}
.h58{height:123.319194px;}
.h4e{height:123.338606px;}
.h0{height:1188.000000px;}
.w2{width:12.600000px;}
.wb{width:12.870000px;}
.w6{width:12.960000px;}
.w16{width:13.410000px;}
.w17{width:13.500000px;}
.wf{width:14.040000px;}
.wa{width:14.130000px;}
.we{width:14.760000px;}
.wc{width:14.850000px;}
.w4{width:15.120000px;}
.w13{width:16.110000px;}
.w15{width:16.560000px;}
.w18{width:17.280000px;}
.w10{width:17.910000px;}
.w11{width:24.300000px;}
.w7{width:24.840000px;}
.w5{width:26.010000px;}
.w19{width:26.100000px;}
.w3{width:27.000000px;}
.w1{width:27.090000px;}
.w8{width:32.490000px;}
.w12{width:33.120000px;}
.w9{width:36.000000px;}
.wd{width:36.090000px;}
.w14{width:36.180000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:107.989380px;}
.x6e{left:110.880000px;}
.xbe{left:112.232080px;}
.xbf{left:116.194027px;}
.x6f{left:127.620000px;}
.x6{left:135.000000px;}
.x5b{left:136.170000px;}
.x6d{left:141.570000px;}
.x5c{left:151.470000px;}
.x88{left:160.653592px;}
.x57{left:162.000000px;}
.x10{left:165.243229px;}
.x35{left:171.988327px;}
.x33{left:173.070000px;}
.xd{left:176.301260px;}
.x59{left:177.938715px;}
.x74{left:179.280000px;}
.x30{left:181.170918px;}
.x13{left:183.240000px;}
.x1{left:184.590000px;}
.xf{left:192.330000px;}
.x75{left:193.410000px;}
.x7a{left:194.670000px;}
.x58{left:196.020000px;}
.x11{left:197.467146px;}
.xa5{left:198.810000px;}
.x67{left:200.970000px;}
.xcf{left:203.757832px;}
.x3a{left:205.470000px;}
.x14{left:207.273223px;}
.x4b{left:208.710000px;}
.x9{left:211.140000px;}
.x15{left:212.302597px;}
.x37{left:214.470000px;}
.xa{left:216.277146px;}
.x38{left:219.615297px;}
.x89{left:220.860000px;}
.x1c{left:222.217838px;}
.x90{left:223.830000px;}
.xc{left:225.355513px;}
.x1d{left:227.354985px;}
.x12{left:229.140000px;}
.xe{left:230.485233px;}
.x31{left:233.280000px;}
.x8{left:234.540000px;}
.x81{left:236.070000px;}
.x32{left:238.407307px;}
.x19{left:240.388587px;}
.xad{left:241.830000px;}
.x1b{left:244.170000px;}
.x1a{left:245.518308px;}
.x34{left:247.497409px;}
.x7{left:250.290000px;}
.x39{left:251.370000px;}
.x36{left:252.624954px;}
.x4{left:253.705230px;}
.x2d{left:255.600000px;}
.x2f{left:256.680000px;}
.xae{left:258.390000px;}
.x5a{left:259.470000px;}
.x42{left:262.530027px;}
.xb8{left:264.870000px;}
.x44{left:266.400000px;}
.x43{left:267.657572px;}
.xb{left:270.090000px;}
.x2e{left:272.430000px;}
.xb1{left:276.480000px;}
.x18{left:278.010000px;}
.x99{left:279.990000px;}
.x78{left:283.500000px;}
.x96{left:287.730000px;}
.x80{left:293.578470px;}
.x4e{left:294.750000px;}
.x91{left:296.542771px;}
.x79{left:297.630000px;}
.x47{left:298.810189px;}
.x46{left:300.245485px;}
.x4d{left:302.132194px;}
.x4c{left:305.190000px;}
.x45{left:307.890000px;}
.x98{left:311.667567px;}
.x7f{left:314.730000px;}
.x1f{left:316.260294px;}
.x48{left:317.342250px;}
.x70{left:318.960000px;}
.x97{left:320.666242px;}
.x3e{left:323.186894px;}
.x82{left:324.990000px;}
.x92{left:328.213724px;}
.xa3{left:330.570000px;}
.x9a{left:331.639382px;}
.x3d{left:333.542400px;}
.x16{left:335.342639px;}
.x3f{left:337.321385px;}
.x49{left:338.409184px;}
.x1e{left:341.461050px;}
.x3c{left:342.724991px;}
.x9b{left:344.070000px;}
.xa1{left:346.860000px;}
.x4a{left:348.030000px;}
.x3b{left:349.919250px;}
.x20{left:352.530000px;}
.x55{left:355.862194px;}
.x40{left:357.482850px;}
.x54{left:358.920000px;}
.x93{left:360.630000px;}
.x66{left:364.050000px;}
.x41{left:367.470000px;}
.xa0{left:369.720000px;}
.x17{left:371.970000px;}
.xc0{left:374.044741px;}
.x56{left:375.390000px;}
.x9f{left:377.460000px;}
.x9c{left:382.593750px;}
.x3{left:385.293870px;}
.xa2{left:387.990000px;}
.x9d{left:391.328042px;}
.x62{left:392.490000px;}
.x27{left:396.636202px;}
.x26{left:398.250868px;}
.x28{left:400.410000px;}
.x9e{left:402.025299px;}
.xa4{left:404.100000px;}
.x25{left:405.720000px;}
.x95{left:407.885149px;}
.x29{left:413.010000px;}
.x94{left:416.614500px;}
.x8e{left:425.070000px;}
.x61{left:436.500000px;}
.xbc{left:445.230000px;}
.x8d{left:448.020000px;}
.x63{left:449.370000px;}
.x7b{left:456.300000px;}
.x2{left:459.003420px;}
.xbd{left:462.420000px;}
.x7c{left:470.340000px;}
.xaf{left:481.770000px;}
.x84{left:486.538050px;}
.x8c{left:490.230000px;}
.x8b{left:493.380000px;}
.xb0{left:495.180000px;}
.x83{left:498.420450px;}
.x8a{left:501.120000px;}
.x7d{left:506.970000px;}
.x85{left:509.775275px;}
.x5f{left:513.990000px;}
.x86{left:518.502448px;}
.x8f{left:523.350000px;}
.x7e{left:524.880000px;}
.x87{left:528.041032px;}
.xb6{left:529.470000px;}
.x5e{left:536.130000px;}
.x5d{left:543.780000px;}
.xb7{left:546.030000px;}
.x51{left:558.810000px;}
.xb2{left:562.500000px;}
.x50{left:566.194625px;}
.x4f{left:569.340000px;}
.xb3{left:579.060000px;}
.xc5{left:584.190000px;}
.x52{left:585.720000px;}
.x71{left:592.290000px;}
.x76{left:595.260000px;}
.xc1{left:598.410000px;}
.x72{left:606.420000px;}
.xc2{left:608.040000px;}
.x77{left:610.110000px;}
.x53{left:611.730000px;}
.xb4{left:618.210000px;}
.xc4{left:623.785406px;}
.xc3{left:626.940000px;}
.xb5{left:631.710000px;}
.xb9{left:633.600000px;}
.xc6{left:643.320000px;}
.x73{left:646.830000px;}
.xba{left:650.160000px;}
.x23{left:654.300000px;}
.xa7{left:661.054625px;}
.x2b{left:662.490000px;}
.xa6{left:664.200000px;}
.x68{left:665.910000px;}
.x24{left:669.150000px;}
.x21{left:673.020000px;}
.x2a{left:674.643775px;}
.x2c{left:676.890000px;}
.x22{left:687.240000px;}
.x60{left:689.760000px;}
.xbb{left:701.640000px;}
.xcc{left:707.400000px;}
.xc7{left:715.414603px;}
.xc8{left:721.620000px;}
.xc9{left:731.250000px;}
.xaa{left:735.210000px;}
.xa9{left:742.588073px;}
.xa8{left:745.649850px;}
.xcb{left:746.908957px;}
.xca{left:749.969850px;}
.x6b{left:757.080000px;}
.xab{left:762.120000px;}
.x6a{left:764.458649px;}
.xcd{left:766.440000px;}
.x69{left:767.519850px;}
.x6c{left:783.990000px;}
.xac{left:788.129850px;}
.xce{left:792.629850px;}
.x64{left:795.870000px;}
.x65{left:809.999850px;}
@media print{
.va{vertical-align:-71.040000pt;}
.vf{vertical-align:-52.446664pt;}
.v7{vertical-align:-49.564896pt;}
.v2{vertical-align:-42.853460pt;}
.v1{vertical-align:-39.690147pt;}
.v11{vertical-align:-29.439467pt;}
.v5{vertical-align:-16.640533pt;}
.v4{vertical-align:-8.000533pt;}
.v8{vertical-align:-2.881680pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:5.122517pt;}
.v6{vertical-align:16.640533pt;}
.ve{vertical-align:18.256026pt;}
.v3{vertical-align:23.040000pt;}
.v9{vertical-align:29.446960pt;}
.vb{vertical-align:40.320000pt;}
.vc{vertical-align:69.169541pt;}
.vd{vertical-align:73.266708pt;}
.lsd5{letter-spacing:-0.166482pt;}
.lsd3{letter-spacing:-0.160800pt;}
.ls5c{letter-spacing:-0.134964pt;}
.ls5f{letter-spacing:-0.115684pt;}
.ls5b{letter-spacing:-0.109257pt;}
.lsc6{letter-spacing:-0.109017pt;}
.ls5d{letter-spacing:-0.102830pt;}
.ls58{letter-spacing:-0.083549pt;}
.ls60{letter-spacing:-0.077123pt;}
.lsbb{letter-spacing:-0.076980pt;}
.lsd6{letter-spacing:-0.076838pt;}
.ls59{letter-spacing:-0.070696pt;}
.ls5e{letter-spacing:-0.064269pt;}
.lsbd{letter-spacing:-0.064150pt;}
.ls5a{letter-spacing:-0.057842pt;}
.lsb7{letter-spacing:-0.057735pt;}
.ls1e{letter-spacing:-0.057600pt;}
.lsba{letter-spacing:-0.051320pt;}
.lsd7{letter-spacing:-0.051225pt;}
.lsc7{letter-spacing:-0.044889pt;}
.ls8b{letter-spacing:-0.044856pt;}
.ls57{letter-spacing:-0.038561pt;}
.lsbc{letter-spacing:-0.038490pt;}
.lsca{letter-spacing:-0.038476pt;}
.ls8c{letter-spacing:-0.038448pt;}
.ls32{letter-spacing:-0.038400pt;}
.lsc9{letter-spacing:-0.032064pt;}
.ls86{letter-spacing:-0.032040pt;}
.lsd4{letter-spacing:-0.032016pt;}
.ls89{letter-spacing:-0.025632pt;}
.ls56{letter-spacing:-0.025626pt;}
.lsdb{letter-spacing:-0.025613pt;}
.ls33{letter-spacing:-0.025600pt;}
.lsb4{letter-spacing:-0.019233pt;}
.ls87{letter-spacing:-0.019224pt;}
.ls83{letter-spacing:-0.019211pt;}
.lsd9{letter-spacing:-0.019209pt;}
.ls8a{letter-spacing:-0.012816pt;}
.ls54{letter-spacing:-0.012813pt;}
.ls82{letter-spacing:-0.012807pt;}
.lsd2{letter-spacing:-0.012806pt;}
.ls1f{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:-0.007456pt;}
.lsc8{letter-spacing:-0.006413pt;}
.ls88{letter-spacing:-0.006408pt;}
.ls55{letter-spacing:-0.006407pt;}
.ls81{letter-spacing:-0.006404pt;}
.ls20{letter-spacing:-0.006400pt;}
.ls8{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.006400pt;}
.ls85{letter-spacing:0.006404pt;}
.ls3c{letter-spacing:0.006407pt;}
.ls7a{letter-spacing:0.006408pt;}
.ls18{letter-spacing:0.008320pt;}
.lsa{letter-spacing:0.012800pt;}
.lsab{letter-spacing:0.012806pt;}
.ls69{letter-spacing:0.012807pt;}
.ls7b{letter-spacing:0.012816pt;}
.ls9c{letter-spacing:0.012825pt;}
.ls6{letter-spacing:0.019200pt;}
.lsa6{letter-spacing:0.019209pt;}
.ls6a{letter-spacing:0.019211pt;}
.ls75{letter-spacing:0.019224pt;}
.ls3{letter-spacing:0.025600pt;}
.lsaf{letter-spacing:0.025613pt;}
.ls6b{letter-spacing:0.025615pt;}
.ls1{letter-spacing:0.032000pt;}
.lsaa{letter-spacing:0.032016pt;}
.ls67{letter-spacing:0.032019pt;}
.ls74{letter-spacing:0.032040pt;}
.ls17{letter-spacing:0.038400pt;}
.lsb0{letter-spacing:0.038419pt;}
.ls68{letter-spacing:0.038422pt;}
.ls5{letter-spacing:0.044800pt;}
.lsdc{letter-spacing:0.044822pt;}
.lsc5{letter-spacing:0.044889pt;}
.lsb{letter-spacing:0.051200pt;}
.lsa7{letter-spacing:0.051225pt;}
.ls66{letter-spacing:0.051230pt;}
.ls79{letter-spacing:0.051264pt;}
.ls97{letter-spacing:0.051289pt;}
.ls0{letter-spacing:0.052192pt;}
.ls2{letter-spacing:0.057600pt;}
.lsa3{letter-spacing:0.057628pt;}
.ls78{letter-spacing:0.057672pt;}
.lsd{letter-spacing:0.064000pt;}
.lsdd{letter-spacing:0.064031pt;}
.ls4{letter-spacing:0.070400pt;}
.ls73{letter-spacing:0.070441pt;}
.ls77{letter-spacing:0.070488pt;}
.ls9{letter-spacing:0.074816pt;}
.lsb2{letter-spacing:0.076838pt;}
.lsd0{letter-spacing:0.083241pt;}
.ls63{letter-spacing:0.083249pt;}
.lsc{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.102400pt;}
.ls19{letter-spacing:0.115200pt;}
.lse8{letter-spacing:0.160000pt;}
.lsd8{letter-spacing:0.160079pt;}
.ls80{letter-spacing:0.184537pt;}
.ls76{letter-spacing:3.040000pt;}
.ls35{letter-spacing:3.143323pt;}
.ls70{letter-spacing:3.152341pt;}
.ls84{letter-spacing:9.969600pt;}
.ls3e{letter-spacing:11.144653pt;}
.ls37{letter-spacing:11.234637pt;}
.ls6c{letter-spacing:11.247424pt;}
.lsac{letter-spacing:11.250029pt;}
.ls9b{letter-spacing:13.406884pt;}
.ls9e{letter-spacing:13.437627pt;}
.ls98{letter-spacing:15.401764pt;}
.ls96{letter-spacing:16.015044pt;}
.lsa5{letter-spacing:17.010029pt;}
.ls1b{letter-spacing:24.785626pt;}
.lsbf{letter-spacing:30.806835pt;}
.ls8f{letter-spacing:30.818382pt;}
.lsad{letter-spacing:35.602088pt;}
.ls38{letter-spacing:35.697834pt;}
.lsb6{letter-spacing:40.998180pt;}
.ls99{letter-spacing:41.104809pt;}
.ls31{letter-spacing:43.699200pt;}
.ls27{letter-spacing:43.798663pt;}
.ls62{letter-spacing:43.993648pt;}
.lscd{letter-spacing:43.996021pt;}
.ls48{letter-spacing:44.047263pt;}
.ls26{letter-spacing:44.117988pt;}
.lsbe{letter-spacing:48.082775pt;}
.ls7d{letter-spacing:48.090011pt;}
.ls61{letter-spacing:48.117652pt;}
.lscb{letter-spacing:48.119647pt;}
.ls45{letter-spacing:48.141113pt;}
.ls24{letter-spacing:48.173420pt;}
.lsa8{letter-spacing:48.434654pt;}
.ls2c{letter-spacing:48.492745pt;}
.lsa4{letter-spacing:48.691200pt;}
.ls64{letter-spacing:56.905154pt;}
.lsae{letter-spacing:57.308163pt;}
.ls6e{letter-spacing:57.313413pt;}
.ls39{letter-spacing:57.339189pt;}
.ls3b{letter-spacing:57.595454pt;}
.lsd1{letter-spacing:65.534644pt;}
.ls3d{letter-spacing:67.822667pt;}
.ls36{letter-spacing:67.909867pt;}
.ls6f{letter-spacing:67.910400pt;}
.lse5{letter-spacing:68.001418pt;}
.ls3a{letter-spacing:68.229867pt;}
.lse3{letter-spacing:68.321575pt;}
.lsa9{letter-spacing:71.568320pt;}
.ls65{letter-spacing:73.865154pt;}
.ls30{letter-spacing:79.831333pt;}
.ls23{letter-spacing:84.333821pt;}
.ls44{letter-spacing:84.621151pt;}
.ls6d{letter-spacing:85.297834pt;}
.ls2b{letter-spacing:91.269567pt;}
.lsb8{letter-spacing:92.766384pt;}
.ls40{letter-spacing:103.868555pt;}
.lse1{letter-spacing:104.052772pt;}
.lsa0{letter-spacing:104.179196pt;}
.ls93{letter-spacing:106.887088pt;}
.lsb5{letter-spacing:108.182335pt;}
.ls95{letter-spacing:108.194511pt;}
.ls15{letter-spacing:108.363331pt;}
.ls14{letter-spacing:110.172463pt;}
.lscc{letter-spacing:122.835502pt;}
.ls28{letter-spacing:132.055579pt;}
.ls11{letter-spacing:133.321972pt;}
.lsc3{letter-spacing:133.442845pt;}
.ls22{letter-spacing:133.857327pt;}
.lse{letter-spacing:134.835735pt;}
.ls72{letter-spacing:135.060080pt;}
.lsb1{letter-spacing:135.106395pt;}
.ls25{letter-spacing:135.611078pt;}
.ls9f{letter-spacing:140.644915pt;}
.ls71{letter-spacing:151.060080pt;}
.lse4{letter-spacing:156.928319pt;}
.lse2{letter-spacing:157.248476pt;}
.lsa2{letter-spacing:158.896472pt;}
.ls7e{letter-spacing:166.433367pt;}
.ls2a{letter-spacing:176.152627pt;}
.ls7c{letter-spacing:183.068267pt;}
.lsc2{letter-spacing:227.549903pt;}
.lscf{letter-spacing:227.587042pt;}
.ls8d{letter-spacing:231.307761pt;}
.lsa1{letter-spacing:241.020844pt;}
.ls16{letter-spacing:243.453634pt;}
.ls3f{letter-spacing:246.303706pt;}
.ls12{letter-spacing:268.041685pt;}
.lsdf{letter-spacing:288.653852pt;}
.lsb9{letter-spacing:289.691032pt;}
.lse7{letter-spacing:291.215110pt;}
.ls10{letter-spacing:291.550416pt;}
.lsf{letter-spacing:317.739008pt;}
.ls2e{letter-spacing:320.027849pt;}
.ls2d{letter-spacing:346.219918pt;}
.lsc1{letter-spacing:371.227492pt;}
.lsce{letter-spacing:371.267250pt;}
.ls49{letter-spacing:383.446585pt;}
.ls4c{letter-spacing:383.452981pt;}
.lsde{letter-spacing:388.478908pt;}
.ls21{letter-spacing:397.399764pt;}
.ls42{letter-spacing:398.532219pt;}
.ls4a{letter-spacing:401.786899pt;}
.ls43{letter-spacing:403.591536pt;}
.ls46{letter-spacing:407.589103pt;}
.ls47{letter-spacing:411.808552pt;}
.ls50{letter-spacing:411.930823pt;}
.ls53{letter-spacing:412.250655pt;}
.lse0{letter-spacing:421.858512pt;}
.ls51{letter-spacing:430.587131pt;}
.ls4d{letter-spacing:432.070040pt;}
.ls4e{letter-spacing:433.993014pt;}
.ls4f{letter-spacing:440.608783pt;}
.ls52{letter-spacing:448.091029pt;}
.ls2f{letter-spacing:448.128400pt;}
.ls13{letter-spacing:487.360000pt;}
.lsc4{letter-spacing:489.242369pt;}
.ls4b{letter-spacing:515.927396pt;}
.ls29{letter-spacing:516.291585pt;}
.ls34{letter-spacing:566.080000pt;}
.lse6{letter-spacing:575.354744pt;}
.lsc0{letter-spacing:614.751546pt;}
.ls94{letter-spacing:663.393401pt;}
.ls90{letter-spacing:696.026138pt;}
.ls8e{letter-spacing:714.498391pt;}
.ls92{letter-spacing:732.537361pt;}
.ls91{letter-spacing:744.516554pt;}
.ls9d{letter-spacing:786.569485pt;}
.ls9a{letter-spacing:845.012464pt;}
.ls1d{letter-spacing:1216.000000pt;}
.lsb3{letter-spacing:1216.002188pt;}
.ls7f{letter-spacing:1216.004923pt;}
.lsda{letter-spacing:1216.021583pt;}
.wsf{word-spacing:-326.969274pt;}
.ws10{word-spacing:-307.516683pt;}
.wsaa{word-spacing:-276.174119pt;}
.wsa4{word-spacing:-80.665940pt;}
.wsfb{word-spacing:-35.153275pt;}
.wsa1{word-spacing:-29.526890pt;}
.ws6a{word-spacing:-26.208768pt;}
.ws61{word-spacing:-26.049600pt;}
.ws3c{word-spacing:-25.439437pt;}
.ws11{word-spacing:-24.811578pt;}
.ws64{word-spacing:-16.090488pt;}
.ws0{word-spacing:-16.070400pt;}
.ws3b{word-spacing:-16.064000pt;}
.wsab{word-spacing:-16.059092pt;}
.wsfa{word-spacing:-16.052689pt;}
.ws63{word-spacing:-16.052040pt;}
.wsa7{word-spacing:-16.044692pt;}
.ws62{word-spacing:-16.009333pt;}
.ws65{word-spacing:-16.007184pt;}
.ws12{word-spacing:-16.000000pt;}
.wsa5{word-spacing:-15.922850pt;}
.wsa6{word-spacing:-15.908400pt;}
.ws68{word-spacing:-9.858682pt;}
.ws107{word-spacing:-0.256126pt;}
.wsb{word-spacing:-0.230400pt;}
.wsa{word-spacing:-0.224000pt;}
.wsfc{word-spacing:-0.211304pt;}
.ws102{word-spacing:-0.160079pt;}
.ws25{word-spacing:-0.160000pt;}
.ws9f{word-spacing:-0.140976pt;}
.ws2{word-spacing:-0.134208pt;}
.wsbe{word-spacing:-0.102604pt;}
.ws106{word-spacing:-0.102450pt;}
.ws55{word-spacing:-0.102400pt;}
.ws2b{word-spacing:-0.096000pt;}
.wsee{word-spacing:-0.083241pt;}
.ws2c{word-spacing:-0.083200pt;}
.wsf7{word-spacing:-0.070435pt;}
.ws9{word-spacing:-0.070400pt;}
.ws5f{word-spacing:-0.064269pt;}
.wsaf{word-spacing:-0.064150pt;}
.wsef{word-spacing:-0.064031pt;}
.ws5d{word-spacing:-0.057842pt;}
.wsf4{word-spacing:-0.057628pt;}
.wsd0{word-spacing:-0.051225pt;}
.wsf8{word-spacing:-0.044822pt;}
.wsc{word-spacing:-0.044800pt;}
.wsb0{word-spacing:-0.038490pt;}
.wsb6{word-spacing:-0.032075pt;}
.wsf5{word-spacing:-0.032016pt;}
.ws5e{word-spacing:-0.025708pt;}
.ws93{word-spacing:-0.025632pt;}
.ws26{word-spacing:-0.025600pt;}
.wsf0{word-spacing:-0.019209pt;}
.wsd{word-spacing:-0.019200pt;}
.wsed{word-spacing:-0.012806pt;}
.ws9e{word-spacing:-0.006408pt;}
.wsde{word-spacing:-0.006403pt;}
.wsdf{word-spacing:-0.006400pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.005344pt;}
.wsf9{word-spacing:0.006403pt;}
.wsf2{word-spacing:0.012806pt;}
.wsbd{word-spacing:0.012825pt;}
.ws101{word-spacing:0.019209pt;}
.ws54{word-spacing:0.044988pt;}
.ws1{word-spacing:0.052192pt;}
.wsf6{word-spacing:0.057628pt;}
.wsf1{word-spacing:0.096047pt;}
.ws20{word-spacing:0.185600pt;}
.ws21{word-spacing:0.249600pt;}
.ws92{word-spacing:0.249912pt;}
.wsf3{word-spacing:0.294545pt;}
.ws91{word-spacing:0.313992pt;}
.wseb{word-spacing:0.563477pt;}
.ws3e{word-spacing:0.582400pt;}
.wsec{word-spacing:0.595493pt;}
.ws3f{word-spacing:0.620800pt;}
.ws40{word-spacing:0.633600pt;}
.wsea{word-spacing:0.659524pt;}
.wsa9{word-spacing:0.697943pt;}
.ws7b{word-spacing:0.858100pt;}
.ws7c{word-spacing:0.877311pt;}
.ws6b{word-spacing:0.947753pt;}
.ws6c{word-spacing:0.954156pt;}
.ws6e{word-spacing:0.960560pt;}
.ws7a{word-spacing:0.979771pt;}
.ws6d{word-spacing:1.056616pt;}
.ws7f{word-spacing:1.242324pt;}
.ws7e{word-spacing:1.267939pt;}
.ws7d{word-spacing:1.287150pt;}
.ws3a{word-spacing:1.465600pt;}
.ws38{word-spacing:1.504000pt;}
.ws37{word-spacing:1.600000pt;}
.ws39{word-spacing:1.638400pt;}
.ws79{word-spacing:1.696989pt;}
.ws78{word-spacing:1.850679pt;}
.ws51{word-spacing:1.908783pt;}
.ws50{word-spacing:1.921637pt;}
.ws77{word-spacing:1.927524pt;}
.wsce{word-spacing:2.196279pt;}
.wsd7{word-spacing:2.209086pt;}
.wscd{word-spacing:2.228295pt;}
.wscf{word-spacing:2.241101pt;}
.wsd8{word-spacing:2.253908pt;}
.ws44{word-spacing:2.419200pt;}
.ws45{word-spacing:2.425600pt;}
.ws46{word-spacing:2.444800pt;}
.ws6{word-spacing:2.451200pt;}
.ws5{word-spacing:2.483200pt;}
.wsda{word-spacing:2.522840pt;}
.wsdb{word-spacing:2.548452pt;}
.ws47{word-spacing:2.560000pt;}
.wsd9{word-spacing:2.567662pt;}
.ws36{word-spacing:2.694400pt;}
.wse2{word-spacing:2.766159pt;}
.ws34{word-spacing:2.809600pt;}
.wse3{word-spacing:2.823788pt;}
.ws33{word-spacing:2.854400pt;}
.ws35{word-spacing:2.867200pt;}
.ws30{word-spacing:3.097600pt;}
.ws32{word-spacing:3.104000pt;}
.ws2f{word-spacing:3.142400pt;}
.ws8a{word-spacing:3.524400pt;}
.ws8b{word-spacing:3.530808pt;}
.ws52{word-spacing:3.779005pt;}
.ws53{word-spacing:3.856128pt;}
.ws4c{word-spacing:4.023227pt;}
.ws87{word-spacing:4.120344pt;}
.ws4b{word-spacing:4.138672pt;}
.ws88{word-spacing:4.139568pt;}
.ws89{word-spacing:4.222872pt;}
.wsd3{word-spacing:4.309318pt;}
.wsc3{word-spacing:4.770344pt;}
.wsc4{word-spacing:4.783151pt;}
.wsd2{word-spacing:4.840779pt;}
.wsae{word-spacing:4.862560pt;}
.wsd1{word-spacing:4.866391pt;}
.wsad{word-spacing:4.894635pt;}
.wsc9{word-spacing:5.013664pt;}
.ws104{word-spacing:5.052083pt;}
.ws105{word-spacing:5.090502pt;}
.wsc8{word-spacing:5.103308pt;}
.wsca{word-spacing:5.141727pt;}
.ws29{word-spacing:5.664000pt;}
.ws2a{word-spacing:5.721600pt;}
.ws8c{word-spacing:5.754384pt;}
.ws8d{word-spacing:5.760792pt;}
.ws22{word-spacing:5.984000pt;}
.ws27{word-spacing:5.996800pt;}
.ws43{word-spacing:6.041600pt;}
.ws24{word-spacing:6.054400pt;}
.ws23{word-spacing:6.086400pt;}
.wsb1{word-spacing:6.100652pt;}
.ws28{word-spacing:6.105600pt;}
.wsb2{word-spacing:6.164802pt;}
.ws1f{word-spacing:6.291200pt;}
.ws1e{word-spacing:6.348800pt;}
.wsd6{word-spacing:6.364728pt;}
.wsd5{word-spacing:6.415953pt;}
.wsd4{word-spacing:6.428759pt;}
.ws84{word-spacing:6.640671pt;}
.ws8e{word-spacing:6.645096pt;}
.ws83{word-spacing:6.672690pt;}
.ws90{word-spacing:6.683544pt;}
.ws86{word-spacing:6.685498pt;}
.ws85{word-spacing:6.711113pt;}
.ws8f{word-spacing:6.721992pt;}
.ws99{word-spacing:7.029576pt;}
.ws9a{word-spacing:7.042392pt;}
.ws74{word-spacing:7.319467pt;}
.ws59{word-spacing:7.397339pt;}
.wsc6{word-spacing:7.510891pt;}
.ws5b{word-spacing:7.513023pt;}
.ws5c{word-spacing:7.590145pt;}
.wsc7{word-spacing:7.619745pt;}
.ws5a{word-spacing:7.622280pt;}
.ws72{word-spacing:7.633250pt;}
.wsc5{word-spacing:7.664567pt;}
.ws73{word-spacing:7.690884pt;}
.ws1a{word-spacing:7.859200pt;}
.ws19{word-spacing:7.948800pt;}
.ws82{word-spacing:8.177567pt;}
.ws81{word-spacing:8.209586pt;}
.ws80{word-spacing:8.215990pt;}
.ws7{word-spacing:9.568000pt;}
.ws8{word-spacing:9.600000pt;}
.wse0{word-spacing:10.200213pt;}
.wse4{word-spacing:10.213019pt;}
.wse1{word-spacing:10.219422pt;}
.ws75{word-spacing:10.220358pt;}
.ws76{word-spacing:10.226762pt;}
.ws1c{word-spacing:10.694400pt;}
.ws4a{word-spacing:10.788737pt;}
.ws49{word-spacing:10.801550pt;}
.ws48{word-spacing:10.878429pt;}
.ws1b{word-spacing:10.892800pt;}
.ws17{word-spacing:11.008000pt;}
.ws15{word-spacing:11.091200pt;}
.ws14{word-spacing:11.104000pt;}
.ws18{word-spacing:11.161600pt;}
.ws16{word-spacing:11.257600pt;}
.ws9d{word-spacing:11.374200pt;}
.ws9c{word-spacing:11.476728pt;}
.ws9b{word-spacing:11.489544pt;}
.ws4f{word-spacing:11.651933pt;}
.ws4d{word-spacing:11.774044pt;}
.ws4e{word-spacing:11.857594pt;}
.wscb{word-spacing:12.447717pt;}
.wscc{word-spacing:12.498942pt;}
.ws70{word-spacing:12.692199pt;}
.wsb4{word-spacing:12.733749pt;}
.ws71{word-spacing:12.775448pt;}
.wsb3{word-spacing:12.797898pt;}
.ws6f{word-spacing:12.807467pt;}
.wsb5{word-spacing:12.823558pt;}
.wsdc{word-spacing:13.056016pt;}
.wsdd{word-spacing:13.075225pt;}
.wsbc{word-spacing:13.287211pt;}
.wsba{word-spacing:13.415466pt;}
.wsbb{word-spacing:13.441117pt;}
.wsb9{word-spacing:13.453943pt;}
.wsb8{word-spacing:13.518070pt;}
.wse5{word-spacing:15.815772pt;}
.wse7{word-spacing:15.879804pt;}
.wse6{word-spacing:16.007867pt;}
.wse9{word-spacing:16.289605pt;}
.ws97{word-spacing:16.308360pt;}
.wse8{word-spacing:16.308815pt;}
.ws98{word-spacing:16.353216pt;}
.ws56{word-spacing:17.076220pt;}
.ws57{word-spacing:17.288307pt;}
.ws58{word-spacing:17.314015pt;}
.ws69{word-spacing:18.207657pt;}
.ws1d{word-spacing:19.468800pt;}
.wsc0{word-spacing:20.413232pt;}
.wsc1{word-spacing:20.451650pt;}
.wsc2{word-spacing:20.483666pt;}
.ws96{word-spacing:25.632000pt;}
.ws94{word-spacing:25.933176pt;}
.ws95{word-spacing:25.945992pt;}
.ws13{word-spacing:32.128000pt;}
.wsa2{word-spacing:32.846088pt;}
.ws3d{word-spacing:43.289237pt;}
.wsa8{word-spacing:46.262735pt;}
.wsac{word-spacing:52.086274pt;}
.ws31{word-spacing:73.600000pt;}
.wse{word-spacing:219.408437pt;}
.ws67{word-spacing:253.874997pt;}
.wsa3{word-spacing:499.962658pt;}
.ws100{word-spacing:527.356756pt;}
.wsfe{word-spacing:535.360690pt;}
.wsfd{word-spacing:543.358220pt;}
.wsff{word-spacing:559.359683pt;}
.ws103{word-spacing:559.366087pt;}
.ws66{word-spacing:794.783441pt;}
.wsa0{word-spacing:911.600945pt;}
.wsb7{word-spacing:1274.488511pt;}
.wsbf{word-spacing:1359.592938pt;}
.ws2d{word-spacing:1466.464000pt;}
.ws41{word-spacing:1482.464000pt;}
.ws2e{word-spacing:1535.584000pt;}
.ws42{word-spacing:1551.584000pt;}
.ws60{word-spacing:1866.464136pt;}
._3e{margin-left:-559.353280pt;}
._2f{margin-left:-324.140091pt;}
._3d{margin-left:-318.761447pt;}
._2a{margin-left:-308.138627pt;}
._2d{margin-left:-300.141097pt;}
._39{margin-left:-292.137164pt;}
._3f{margin-left:-267.850028pt;}
._2b{margin-left:-235.847101pt;}
._40{margin-left:-228.144116pt;}
._28{margin-left:-219.832831pt;}
._2e{margin-left:-206.687171pt;}
._37{margin-left:-203.831368pt;}
._29{margin-left:-190.698514pt;}
._2c{margin-left:-182.700984pt;}
._3{margin-left:-178.247401pt;}
._2{margin-left:-175.670435pt;}
._38{margin-left:-174.697051pt;}
._35{margin-left:-171.860457pt;}
._36{margin-left:-110.742422pt;}
._e{margin-left:-81.647600pt;}
._1c{margin-left:-47.774963pt;}
._22{margin-left:-19.529597pt;}
._13{margin-left:-14.229026pt;}
._c{margin-left:-10.267907pt;}
._17{margin-left:-3.526131pt;}
._1{margin-left:-1.068800pt;}
._0{width:0.894720pt;}
._4{width:3.097600pt;}
._10{width:4.178016pt;}
._1b{width:5.258452pt;}
._26{width:7.299587pt;}
._d{width:9.946307pt;}
._1e{width:10.901669pt;}
._11{width:45.124600pt;}
._27{width:46.095635pt;}
._b{width:57.012438pt;}
._8{width:67.811148pt;}
._18{width:71.676620pt;}
._7{width:78.681600pt;}
._6{width:80.403200pt;}
._16{width:84.819470pt;}
._14{width:88.025044pt;}
._5{width:100.115200pt;}
._25{width:108.164511pt;}
._20{width:109.138536pt;}
._24{width:110.453287pt;}
._a{width:111.375919pt;}
._9{width:113.483136pt;}
._1f{width:115.535488pt;}
._f{width:119.266170pt;}
._1a{width:141.673507pt;}
._19{width:146.183221pt;}
._30{width:153.528248pt;}
._23{width:172.265052pt;}
._15{width:207.657041pt;}
._12{width:213.706419pt;}
._34{width:224.615982pt;}
._3c{width:240.630252pt;}
._1d{width:289.727894pt;}
._3a{width:307.498312pt;}
._32{width:323.506179pt;}
._21{width:328.567936pt;}
._3b{width:336.626227pt;}
._33{width:352.627690pt;}
._31{width:559.385296pt;}
.fs4{font-size:36.921067pt;}
.fsd{font-size:36.980267pt;}
.fs8{font-size:37.000000pt;}
.fs2b{font-size:37.017600pt;}
.fs12{font-size:37.021333pt;}
.fs9{font-size:37.038933pt;}
.fs1f{font-size:37.063467pt;}
.fs27{font-size:37.073600pt;}
.fsf{font-size:37.154667pt;}
.fs25{font-size:39.083226pt;}
.fs2d{font-size:39.122692pt;}
.fs13{font-size:39.126570pt;}
.fs17{font-size:39.145294pt;}
.fs21{font-size:39.171269pt;}
.fs29{font-size:39.182065pt;}
.fs1a{font-size:39.299615pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:53.440000pt;}
.fs15{font-size:63.633600pt;}
.fs5{font-size:63.865067pt;}
.fs1e{font-size:63.907733pt;}
.fse{font-size:63.966400pt;}
.fs2{font-size:64.000000pt;}
.fs2c{font-size:64.031467pt;}
.fs11{font-size:64.037333pt;}
.fsa{font-size:64.066133pt;}
.fs1c{font-size:64.080000pt;}
.fs20{font-size:64.111467pt;}
.fs28{font-size:64.127467pt;}
.fs23{font-size:64.149867pt;}
.fs10{font-size:64.268800pt;}
.fs19{font-size:64.320000pt;}
.fs31{font-size:67.147233pt;}
.fs16{font-size:67.252473pt;}
.fs6{font-size:67.497028pt;}
.fs2f{font-size:67.515580pt;}
.fs1b{font-size:67.542232pt;}
.fs26{font-size:67.604127pt;}
.fs2e{font-size:67.673114pt;}
.fs14{font-size:67.679010pt;}
.fs18{font-size:67.709540pt;}
.fs1d{font-size:67.724214pt;}
.fs30{font-size:67.742938pt;}
.fs22{font-size:67.757267pt;}
.fs2a{font-size:67.774304pt;}
.fs24{font-size:67.798088pt;}
.fsb{font-size:67.977534pt;}
.fs32{font-size:68.055630pt;}
.fs0{font-size:74.560000pt;}
.fs3{font-size:99.954667pt;}
.fsc{font-size:100.113600pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:2.000000pt;}
.ya8{bottom:2.000133pt;}
.yad{bottom:3.440000pt;}
.y159{bottom:3.440133pt;}
.y5a{bottom:3.520000pt;}
.y54{bottom:3.520133pt;}
.y152{bottom:51.678133pt;}
.y5c{bottom:51.680000pt;}
.y187{bottom:51.681275pt;}
.yee{bottom:51.681467pt;}
.y150{bottom:112.480000pt;}
.y14f{bottom:115.997600pt;}
.y151{bottom:116.000133pt;}
.ya4{bottom:133.683944pt;}
.yaa{bottom:134.320000pt;}
.ya7{bottom:142.960000pt;}
.yeb{bottom:144.779660pt;}
.yea{bottom:146.061890pt;}
.ya3{bottom:146.160133pt;}
.ydd{bottom:146.244400pt;}
.ye9{bottom:148.466070pt;}
.y14d{bottom:150.080000pt;}
.ya5{bottom:150.240133pt;}
.ya2{bottom:150.252230pt;}
.ye1{bottom:150.312903pt;}
.ya6{bottom:150.976563pt;}
.y14c{bottom:153.436514pt;}
.y14e{bottom:153.440000pt;}
.ya9{bottom:156.720000pt;}
.ye0{bottom:157.517474pt;}
.yec{bottom:157.520267pt;}
.ye8{bottom:158.547598pt;}
.ydc{bottom:158.642130pt;}
.ye7{bottom:158.788016pt;}
.ye6{bottom:159.990106pt;}
.yed{bottom:162.698815pt;}
.yd8{bottom:162.726393pt;}
.ye5{bottom:162.794983pt;}
.yda{bottom:162.798611pt;}
.y59{bottom:165.280000pt;}
.ydb{bottom:168.640000pt;}
.y5b{bottom:168.800000pt;}
.y58{bottom:168.800133pt;}
.ye4{bottom:171.273724pt;}
.yde{bottom:172.800000pt;}
.ye3{bottom:173.677904pt;}
.ye2{bottom:174.960133pt;}
.ydf{bottom:177.680000pt;}
.y14a{bottom:189.840000pt;}
.yd9{bottom:190.560000pt;}
.y149{bottom:193.354389pt;}
.y14b{bottom:193.360133pt;}
.ya1{bottom:197.618336pt;}
.y55{bottom:204.080000pt;}
.y51{bottom:206.080000pt;}
.y53{bottom:206.720000pt;}
.y4d{bottom:210.240000pt;}
.y57{bottom:210.240133pt;}
.y52{bottom:217.441693pt;}
.yd7{bottom:223.449900pt;}
.y148{bottom:230.396593pt;}
.ya0{bottom:234.412224pt;}
.y4f{bottom:249.840133pt;}
.y4e{bottom:254.000000pt;}
.y4c{bottom:254.000133pt;}
.y50{bottom:254.720000pt;}
.yd6{bottom:260.247840pt;}
.y146{bottom:266.640000pt;}
.y145{bottom:270.157639pt;}
.y147{bottom:270.160133pt;}
.y9f{bottom:271.206112pt;}
.y47{bottom:292.954156pt;}
.y40{bottom:293.118341pt;}
.yd5{bottom:297.045780pt;}
.y3c{bottom:297.199461pt;}
.y46{bottom:297.999497pt;}
.y143{bottom:304.080000pt;}
.y3f{bottom:305.514590pt;}
.y45{bottom:305.599439pt;}
.y4a{bottom:305.608833pt;}
.y142{bottom:307.513720pt;}
.y144{bottom:307.520000pt;}
.y9e{bottom:308.000000pt;}
.y48{bottom:309.600133pt;}
.y49{bottom:309.600400pt;}
.y41{bottom:309.605250pt;}
.y3a{bottom:309.680000pt;}
.y4b{bottom:309.680133pt;}
.y3e{bottom:315.437126pt;}
.y42{bottom:315.440000pt;}
.y3d{bottom:316.720133pt;}
.y3b{bottom:319.600133pt;}
.y44{bottom:320.320337pt;}
.y43{bottom:320.480000pt;}
.yd4{bottom:333.843720pt;}
.y141{bottom:344.475885pt;}
.y9d{bottom:344.640000pt;}
.y39{bottom:361.040000pt;}
.y1b{bottom:368.080000pt;}
.yd3{bottom:370.641660pt;}
.y140{bottom:381.603692pt;}
.y9c{bottom:381.616259pt;}
.y13d{bottom:382.160000pt;}
.y13c{bottom:385.673115pt;}
.y13e{bottom:385.680133pt;}
.y13f{bottom:392.880133pt;}
.y38{bottom:398.954156pt;}
.y32{bottom:399.118208pt;}
.y2e{bottom:403.199328pt;}
.y37{bottom:403.999497pt;}
.yd1{bottom:404.240000pt;}
.y1a{bottom:404.880000pt;}
.yd2{bottom:407.760000pt;}
.yd0{bottom:407.761360pt;}
.y31{bottom:411.514456pt;}
.y36{bottom:411.599439pt;}
.y2b{bottom:413.600000pt;}
.y2a{bottom:415.600000pt;}
.y33{bottom:415.605117pt;}
.y9b{bottom:418.410147pt;}
.y30{bottom:421.436993pt;}
.y2c{bottom:421.440000pt;}
.y2f{bottom:422.720000pt;}
.y13b{bottom:425.036459pt;}
.y2d{bottom:425.600000pt;}
.y35{bottom:426.320337pt;}
.y34{bottom:426.480000pt;}
.yce{bottom:441.680000pt;}
.y19{bottom:441.840000pt;}
.ycf{bottom:445.120000pt;}
.ycd{bottom:445.121360pt;}
.y9a{bottom:455.204035pt;}
.y139{bottom:461.280000pt;}
.y138{bottom:464.795633pt;}
.y13a{bottom:464.800000pt;}
.y29{bottom:466.960000pt;}
.y18{bottom:478.640000pt;}
.ycb{bottom:478.960000pt;}
.ycc{bottom:482.480000pt;}
.yca{bottom:482.483420pt;}
.y97{bottom:492.157813pt;}
.y99{bottom:492.800000pt;}
.y95{bottom:496.319059pt;}
.y98{bottom:496.320000pt;}
.y164{bottom:499.985441pt;}
.y135{bottom:502.080000pt;}
.y96{bottom:503.520000pt;}
.y28{bottom:503.680000pt;}
.y134{bottom:506.237522pt;}
.y136{bottom:506.240000pt;}
.y137{bottom:511.440000pt;}
.y17{bottom:515.440000pt;}
.yc9{bottom:519.441560pt;}
.y94{bottom:535.683699pt;}
.y163{bottom:536.787527pt;}
.y16e{bottom:540.459145pt;}
.y27{bottom:540.480000pt;}
.y12e{bottom:547.105643pt;}
.y12d{bottom:548.306233pt;}
.y12c{bottom:552.148121pt;}
.y123{bottom:552.153903pt;}
.y16{bottom:552.240000pt;}
.yc7{bottom:553.280000pt;}
.yc8{bottom:556.640000pt;}
.yc6{bottom:556.641960pt;}
.y132{bottom:560.152017pt;}
.y12b{bottom:560.152055pt;}
.y124{bottom:560.475994pt;}
.y131{bottom:561.432647pt;}
.y12a{bottom:561.432684pt;}
.y133{bottom:564.554181pt;}
.y126{bottom:564.555044pt;}
.y122{bottom:564.560000pt;}
.y121{bottom:564.568193pt;}
.y129{bottom:565.354611pt;}
.y15{bottom:570.640000pt;}
.y127{bottom:571.755994pt;}
.y91{bottom:572.803559pt;}
.y93{bottom:573.360000pt;}
.y162{bottom:573.589612pt;}
.y125{bottom:574.640000pt;}
.y130{bottom:575.039333pt;}
.y128{bottom:575.039371pt;}
.y92{bottom:576.880000pt;}
.y8f{bottom:576.882831pt;}
.y26{bottom:577.120000pt;}
.y16d{bottom:577.261231pt;}
.y12f{bottom:581.760000pt;}
.y90{bottom:584.080000pt;}
.y14{bottom:589.040000pt;}
.yc5{bottom:593.518260pt;}
.y161{bottom:610.391697pt;}
.y13{bottom:610.720000pt;}
.y16c{bottom:614.063316pt;}
.y25{bottom:614.080000pt;}
.y8e{bottom:616.477813pt;}
.y120{bottom:617.280971pt;}
.y8c{bottom:620.640000pt;}
.y186{bottom:624.237915pt;}
.y8d{bottom:627.840000pt;}
.y12{bottom:629.200000pt;}
.yc4{bottom:629.840000pt;}
.yc3{bottom:633.360000pt;}
.y160{bottom:647.193783pt;}
.y11{bottom:647.600000pt;}
.y16b{bottom:650.865402pt;}
.y24{bottom:650.880000pt;}
.y11f{bottom:653.520000pt;}
.y11d{bottom:653.680000pt;}
.y11c{bottom:657.027497pt;}
.y11e{bottom:657.040000pt;}
.y8b{bottom:660.000000pt;}
.y185{bottom:661.040000pt;}
.y10{bottom:666.000133pt;}
.yc2{bottom:670.311976pt;}
.y184{bottom:680.149745pt;}
.y15f{bottom:683.915829pt;}
.yf{bottom:684.400133pt;}
.y16a{bottom:687.667487pt;}
.y23{bottom:687.680000pt;}
.y113{bottom:694.384974pt;}
.y112{bottom:695.667523pt;}
.y8a{bottom:696.720000pt;}
.y111{bottom:696.869913pt;}
.y183{bottom:698.542784pt;}
.y110{bottom:700.701529pt;}
.y106{bottom:700.723323pt;}
.y116{bottom:700.727208pt;}
.ye{bottom:702.720133pt;}
.y10f{bottom:704.452986pt;}
.y11a{bottom:704.465790pt;}
.yc0{bottom:707.363706pt;}
.yc1{bottom:708.000000pt;}
.ybd{bottom:708.080000pt;}
.y10e{bottom:708.781590pt;}
.y119{bottom:708.794394pt;}
.y107{bottom:709.039396pt;}
.y10d{bottom:709.983980pt;}
.y118{bottom:709.996784pt;}
.y10c{bottom:711.266529pt;}
.y117{bottom:711.279333pt;}
.ybc{bottom:711.507492pt;}
.ybe{bottom:711.520000pt;}
.y11b{bottom:713.106966pt;}
.y103{bottom:713.107615pt;}
.y10b{bottom:713.190353pt;}
.y105{bottom:713.196115pt;}
.y115{bottom:713.200000pt;}
.y182{bottom:716.935823pt;}
.ybf{bottom:718.720000pt;}
.y15e{bottom:720.717915pt;}
.yd{bottom:721.200133pt;}
.y104{bottom:723.200000pt;}
.y10a{bottom:723.675194pt;}
.y169{bottom:724.469573pt;}
.y22{bottom:724.480000pt;}
.y109{bottom:724.957743pt;}
.y108{bottom:726.160133pt;}
.y114{bottom:730.400000pt;}
.y83{bottom:734.574581pt;}
.y7b{bottom:734.717345pt;}
.y181{bottom:735.328862pt;}
.y77{bottom:738.811760pt;}
.yc{bottom:739.600133pt;}
.y82{bottom:739.611935pt;}
.y87{bottom:747.110755pt;}
.y7a{bottom:747.114979pt;}
.y85{bottom:747.120000pt;}
.y75{bottom:747.120043pt;}
.y89{bottom:747.201567pt;}
.y81{bottom:747.207945pt;}
.ybb{bottom:750.874443pt;}
.y88{bottom:751.199467pt;}
.y84{bottom:751.200000pt;}
.y7c{bottom:751.205250pt;}
.y80{bottom:751.205845pt;}
.y74{bottom:751.280000pt;}
.y180{bottom:753.721901pt;}
.y79{bottom:757.034936pt;}
.y7d{bottom:757.040000pt;}
.y15d{bottom:757.520000pt;}
.yb{bottom:758.000000pt;}
.y86{bottom:758.315776pt;}
.y78{bottom:758.320000pt;}
.y76{bottom:761.200000pt;}
.y168{bottom:761.271658pt;}
.y21{bottom:761.280000pt;}
.y7f{bottom:761.920217pt;}
.y7e{bottom:762.080133pt;}
.y102{bottom:765.822768pt;}
.y17f{bottom:772.114939pt;}
.ya{bottom:776.240000pt;}
.yb9{bottom:784.560000pt;}
.yb8{bottom:788.074263pt;}
.yba{bottom:788.080133pt;}
.y17e{bottom:790.507978pt;}
.y15c{bottom:794.160000pt;}
.y9{bottom:794.720000pt;}
.y167{bottom:798.073744pt;}
.y20{bottom:798.080000pt;}
.y101{bottom:802.628754pt;}
.y73{bottom:802.640000pt;}
.y17d{bottom:808.901017pt;}
.y8{bottom:816.400000pt;}
.yb7{bottom:821.840000pt;}
.y18c{bottom:823.840000pt;}
.yb5{bottom:825.280000pt;}
.yb3{bottom:825.339568pt;}
.yb6{bottom:825.360000pt;}
.y17c{bottom:827.294056pt;}
.yb4{bottom:830.480000pt;}
.y15b{bottom:831.117851pt;}
.y166{bottom:834.875829pt;}
.y7{bottom:834.880000pt;}
.y100{bottom:839.434740pt;}
.y6f{bottom:840.414581pt;}
.y67{bottom:840.554273pt;}
.y63{bottom:844.635768pt;}
.y69{bottom:844.651760pt;}
.y6e{bottom:845.451935pt;}
.y17b{bottom:845.687095pt;}
.y6{bottom:852.712160pt;}
.y66{bottom:852.951907pt;}
.y61{bottom:852.956838pt;}
.y71{bottom:852.961152pt;}
.y72{bottom:853.119867pt;}
.y6d{bottom:853.127903pt;}
.y18b{bottom:853.278048pt;}
.y5f{bottom:855.120000pt;}
.y68{bottom:857.045250pt;}
.y6c{bottom:857.045845pt;}
.y5e{bottom:857.120000pt;}
.y65{bottom:862.955069pt;}
.y60{bottom:862.960000pt;}
.y17a{bottom:864.080133pt;}
.y70{bottom:864.235819pt;}
.y64{bottom:864.240133pt;}
.yb2{bottom:864.706519pt;}
.y158{bottom:864.880000pt;}
.y62{bottom:867.040000pt;}
.y6b{bottom:867.840175pt;}
.y6a{bottom:867.920133pt;}
.y5{bottom:867.996000pt;}
.y157{bottom:868.314295pt;}
.y15a{bottom:868.320133pt;}
.y165{bottom:871.677915pt;}
.y1f{bottom:871.680000pt;}
.yff{bottom:876.240726pt;}
.y172{bottom:882.489555pt;}
.y177{bottom:882.635597pt;}
.y174{bottom:882.640000pt;}
.y178{bottom:883.280000pt;}
.y4{bottom:883.360000pt;}
.y175{bottom:886.800000pt;}
.y176{bottom:894.000000pt;}
.y18a{bottom:897.440000pt;}
.y3{bottom:899.834800pt;}
.y171{bottom:900.888986pt;}
.yb1{bottom:901.511976pt;}
.y156{bottom:905.276459pt;}
.y173{bottom:906.565386pt;}
.y179{bottom:907.834337pt;}
.y1e{bottom:908.480000pt;}
.y188{bottom:908.486330pt;}
.yfe{bottom:914.014448pt;}
.yf7{bottom:914.160000pt;}
.yf6{bottom:914.800000pt;}
.yf3{bottom:916.487201pt;}
.yf8{bottom:918.240133pt;}
.y2{bottom:921.364000pt;}
.yf9{bottom:925.440000pt;}
.yf2{bottom:926.558730pt;}
.yf5{bottom:926.574767pt;}
.yfd{bottom:926.727770pt;}
.y170{bottom:926.885761pt;}
.yfc{bottom:930.645712pt;}
.yef{bottom:930.720000pt;}
.yf1{bottom:930.792621pt;}
.yfa{bottom:937.120000pt;}
.yaf{bottom:938.560000pt;}
.yf0{bottom:939.276441pt;}
.yac{bottom:939.280000pt;}
.yf4{bottom:939.292478pt;}
.yfb{bottom:941.520000pt;}
.y154{bottom:941.680000pt;}
.yab{bottom:942.719333pt;}
.yae{bottom:942.720000pt;}
.y1{bottom:942.800000pt;}
.y155{bottom:945.040000pt;}
.y153{bottom:945.040267pt;}
.y1d{bottom:945.120000pt;}
.y16f{bottom:945.278800pt;}
.y5d{bottom:945.280000pt;}
.y189{bottom:945.288416pt;}
.yb0{bottom:947.920000pt;}
.y1c{bottom:993.280000pt;}
.h17{height:11.280000pt;}
.h67{height:14.000000pt;}
.h63{height:14.160000pt;}
.h65{height:14.240000pt;}
.h15{height:17.840000pt;}
.h33{height:18.000000pt;}
.h39{height:18.160000pt;}
.h1a{height:18.240000pt;}
.h30{height:18.880000pt;}
.h2b{height:19.600000pt;}
.h27{height:19.680000pt;}
.he{height:34.198859pt;}
.h21{height:34.253694pt;}
.h6d{height:34.288275pt;}
.h18{height:34.308035pt;}
.h49{height:36.201601pt;}
.hc{height:36.217980pt;}
.ha{height:36.236008pt;}
.h5e{height:36.238158pt;}
.h2f{height:36.241750pt;}
.h35{height:36.259093pt;}
.h1f{height:36.276053pt;}
.h42{height:36.283153pt;}
.h53{height:36.293153pt;}
.h1d{height:36.294109pt;}
.h11{height:36.295410pt;}
.h59{height:36.312675pt;}
.h2c{height:36.316337pt;}
.h6c{height:36.330750pt;}
.h14{height:36.333602pt;}
.h13{height:36.351687pt;}
.h40{height:36.357668pt;}
.h4f{height:36.367609pt;}
.h3e{height:36.375766pt;}
.h38{height:36.402036pt;}
.h25{height:36.447132pt;}
.h6e{height:41.770312pt;}
.h4{height:52.422344pt;}
.h3{height:52.448437pt;}
.hf{height:59.156265pt;}
.h22{height:59.250127pt;}
.h12{height:59.281250pt;}
.h5d{height:59.310397pt;}
.h2e{height:59.315831pt;}
.h44{height:59.384498pt;}
.h52{height:59.399318pt;}
.h46{height:59.420067pt;}
.h28{height:59.530231pt;}
.h68{height:62.196436pt;}
.h34{height:62.293917pt;}
.h10{height:62.520441pt;}
.h64{height:62.537624pt;}
.h3a{height:62.562311pt;}
.h4a{height:62.619643pt;}
.hd{height:62.648886pt;}
.hb{height:62.680070pt;}
.h5f{height:62.683544pt;}
.h31{height:62.689005pt;}
.h36{height:62.717284pt;}
.h3c{height:62.730876pt;}
.h66{height:62.748219pt;}
.h20{height:62.748290pt;}
.h43{height:62.761492pt;}
.h54{height:62.777273pt;}
.h1e{height:62.779523pt;}
.h8{height:62.781250pt;}
.h47{height:62.799303pt;}
.h5a{height:62.812117pt;}
.h5{height:62.812500pt;}
.h7{height:62.813033pt;}
.h2d{height:62.817872pt;}
.h57{height:62.843383pt;}
.h16{height:62.846124pt;}
.h32{height:62.849141pt;}
.h23{height:62.877406pt;}
.h37{height:62.888290pt;}
.h41{height:62.890594pt;}
.h3b{height:62.891016pt;}
.h50{height:62.906289pt;}
.h3f{height:62.921898pt;}
.h4d{height:62.937602pt;}
.h4b{height:62.959586pt;}
.h1b{height:62.965518pt;}
.h55{height:62.989737pt;}
.h6a{height:63.037857pt;}
.h26{height:63.044931pt;}
.h24{height:63.064989pt;}
.h29{height:63.076313pt;}
.h2a{height:63.080076pt;}
.h61{height:63.088275pt;}
.h62{height:63.126562pt;}
.h6{height:64.500000pt;}
.h60{height:65.140660pt;}
.h6b{height:67.965900pt;}
.h3d{height:71.217273pt;}
.h69{height:71.224257pt;}
.h1{height:73.176562pt;}
.h2{height:75.142500pt;}
.h5c{height:77.566422pt;}
.h19{height:79.453033pt;}
.h9{height:92.584962pt;}
.h1c{height:92.732177pt;}
.h48{height:102.401945pt;}
.h5b{height:103.108099pt;}
.h51{height:103.155685pt;}
.h45{height:103.279586pt;}
.h56{height:105.097978pt;}
.h4c{height:105.555252pt;}
.h58{height:109.617062pt;}
.h4e{height:109.634317pt;}
.h0{height:1056.000000pt;}
.w2{width:11.200000pt;}
.wb{width:11.440000pt;}
.w6{width:11.520000pt;}
.w16{width:11.920000pt;}
.w17{width:12.000000pt;}
.wf{width:12.480000pt;}
.wa{width:12.560000pt;}
.we{width:13.120000pt;}
.wc{width:13.200000pt;}
.w4{width:13.440000pt;}
.w13{width:14.320000pt;}
.w15{width:14.720000pt;}
.w18{width:15.360000pt;}
.w10{width:15.920000pt;}
.w11{width:21.600000pt;}
.w7{width:22.080000pt;}
.w5{width:23.120000pt;}
.w19{width:23.200000pt;}
.w3{width:24.000000pt;}
.w1{width:24.080000pt;}
.w8{width:28.880000pt;}
.w12{width:29.440000pt;}
.w9{width:32.000000pt;}
.wd{width:32.080000pt;}
.w14{width:32.160000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:95.990560pt;}
.x6e{left:98.560000pt;}
.xbe{left:99.761849pt;}
.xbf{left:103.283579pt;}
.x6f{left:113.440000pt;}
.x6{left:120.000000pt;}
.x5b{left:121.040000pt;}
.x6d{left:125.840000pt;}
.x5c{left:134.640000pt;}
.x88{left:142.803193pt;}
.x57{left:144.000000pt;}
.x10{left:146.882870pt;}
.x35{left:152.878513pt;}
.x33{left:153.840000pt;}
.xd{left:156.712231pt;}
.x59{left:158.167747pt;}
.x74{left:159.360000pt;}
.x30{left:161.040816pt;}
.x13{left:162.880000pt;}
.x1{left:164.080000pt;}
.xf{left:170.960000pt;}
.x75{left:171.920000pt;}
.x7a{left:173.040000pt;}
.x58{left:174.240000pt;}
.x11{left:175.526352pt;}
.xa5{left:176.720000pt;}
.x67{left:178.640000pt;}
.xcf{left:181.118073pt;}
.x3a{left:182.640000pt;}
.x14{left:184.242865pt;}
.x4b{left:185.520000pt;}
.x9{left:187.680000pt;}
.x15{left:188.713419pt;}
.x37{left:190.640000pt;}
.xa{left:192.246352pt;}
.x38{left:195.213598pt;}
.x89{left:196.320000pt;}
.x1c{left:197.526967pt;}
.x90{left:198.960000pt;}
.xc{left:200.316011pt;}
.x1d{left:202.093320pt;}
.x12{left:203.680000pt;}
.xe{left:204.875763pt;}
.x31{left:207.360000pt;}
.x8{left:208.480000pt;}
.x81{left:209.840000pt;}
.x32{left:211.917606pt;}
.x19{left:213.678744pt;}
.xad{left:214.960000pt;}
.x1b{left:217.040000pt;}
.x1a{left:218.238496pt;}
.x34{left:219.997697pt;}
.x7{left:222.480000pt;}
.x39{left:223.440000pt;}
.x36{left:224.555515pt;}
.x4{left:225.515760pt;}
.x2d{left:227.200000pt;}
.x2f{left:228.160000pt;}
.xae{left:229.680000pt;}
.x5a{left:230.640000pt;}
.x42{left:233.360024pt;}
.xb8{left:235.440000pt;}
.x44{left:236.800000pt;}
.x43{left:237.917842pt;}
.xb{left:240.080000pt;}
.x2e{left:242.160000pt;}
.xb1{left:245.760000pt;}
.x18{left:247.120000pt;}
.x99{left:248.880000pt;}
.x78{left:252.000000pt;}
.x96{left:255.760000pt;}
.x80{left:260.958640pt;}
.x4e{left:262.000000pt;}
.x91{left:263.593574pt;}
.x79{left:264.560000pt;}
.x47{left:265.609057pt;}
.x46{left:266.884876pt;}
.x4d{left:268.561950pt;}
.x4c{left:271.280000pt;}
.x45{left:273.680000pt;}
.x98{left:277.037837pt;}
.x7f{left:279.760000pt;}
.x1f{left:281.120261pt;}
.x48{left:282.082000pt;}
.x70{left:283.520000pt;}
.x97{left:285.036660pt;}
.x3e{left:287.277239pt;}
.x82{left:288.880000pt;}
.x92{left:291.745532pt;}
.xa3{left:293.840000pt;}
.x9a{left:294.790562pt;}
.x3d{left:296.482134pt;}
.x16{left:298.082346pt;}
.x3f{left:299.841231pt;}
.x49{left:300.808164pt;}
.x1e{left:303.520933pt;}
.x3c{left:304.644437pt;}
.x9b{left:305.840000pt;}
.xa1{left:308.320000pt;}
.x4a{left:309.360000pt;}
.x3b{left:311.039333pt;}
.x20{left:313.360000pt;}
.x55{left:316.321950pt;}
.x40{left:317.762533pt;}
.x54{left:319.040000pt;}
.x93{left:320.560000pt;}
.x66{left:323.600000pt;}
.x41{left:326.640000pt;}
.xa0{left:328.640000pt;}
.x17{left:330.640000pt;}
.xc0{left:332.484214pt;}
.x56{left:333.680000pt;}
.x9f{left:335.520000pt;}
.x9c{left:340.083333pt;}
.x3{left:342.483440pt;}
.xa2{left:344.880000pt;}
.x9d{left:347.847149pt;}
.x62{left:348.880000pt;}
.x27{left:352.565513pt;}
.x26{left:354.000771pt;}
.x28{left:355.920000pt;}
.x9e{left:357.355821pt;}
.xa4{left:359.200000pt;}
.x25{left:360.640000pt;}
.x95{left:362.564577pt;}
.x29{left:367.120000pt;}
.x94{left:370.324000pt;}
.x8e{left:377.840000pt;}
.x61{left:388.000000pt;}
.xbc{left:395.760000pt;}
.x8d{left:398.240000pt;}
.x63{left:399.440000pt;}
.x7b{left:405.600000pt;}
.x2{left:408.003040pt;}
.xbd{left:411.040000pt;}
.x7c{left:418.080000pt;}
.xaf{left:428.240000pt;}
.x84{left:432.478267pt;}
.x8c{left:435.760000pt;}
.x8b{left:438.560000pt;}
.xb0{left:440.160000pt;}
.x83{left:443.040400pt;}
.x8a{left:445.440000pt;}
.x7d{left:450.640000pt;}
.x85{left:453.133578pt;}
.x5f{left:456.880000pt;}
.x86{left:460.891065pt;}
.x8f{left:465.200000pt;}
.x7e{left:466.560000pt;}
.x87{left:469.369807pt;}
.xb6{left:470.640000pt;}
.x5e{left:476.560000pt;}
.x5d{left:483.360000pt;}
.xb7{left:485.360000pt;}
.x51{left:496.720000pt;}
.xb2{left:500.000000pt;}
.x50{left:503.284111pt;}
.x4f{left:506.080000pt;}
.xb3{left:514.720000pt;}
.xc5{left:519.280000pt;}
.x52{left:520.640000pt;}
.x71{left:526.480000pt;}
.x76{left:529.120000pt;}
.xc1{left:531.920000pt;}
.x72{left:539.040000pt;}
.xc2{left:540.480000pt;}
.x77{left:542.320000pt;}
.x53{left:543.760000pt;}
.xb4{left:549.520000pt;}
.xc4{left:554.475917pt;}
.xc3{left:557.280000pt;}
.xb5{left:561.520000pt;}
.xb9{left:563.200000pt;}
.xc6{left:571.840000pt;}
.x73{left:574.960000pt;}
.xba{left:577.920000pt;}
.x23{left:581.600000pt;}
.xa7{left:587.604111pt;}
.x2b{left:588.880000pt;}
.xa6{left:590.400000pt;}
.x68{left:591.920000pt;}
.x24{left:594.800000pt;}
.x21{left:598.240000pt;}
.x2a{left:599.683356pt;}
.x2c{left:601.680000pt;}
.x22{left:610.880000pt;}
.x60{left:613.120000pt;}
.xbb{left:623.680000pt;}
.xcc{left:628.800000pt;}
.xc7{left:635.924091pt;}
.xc8{left:641.440000pt;}
.xc9{left:650.000000pt;}
.xaa{left:653.520000pt;}
.xa9{left:660.078287pt;}
.xa8{left:662.799867pt;}
.xcb{left:663.919073pt;}
.xca{left:666.639867pt;}
.x6b{left:672.960000pt;}
.xab{left:677.440000pt;}
.x6a{left:679.518799pt;}
.xcd{left:681.280000pt;}
.x69{left:682.239867pt;}
.x6c{left:696.880000pt;}
.xac{left:700.559867pt;}
.xce{left:704.559867pt;}
.x64{left:707.440000pt;}
.x65{left:719.999867pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  