
    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_706963b363da61398c3b1ab3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.908203;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_56825699812a70ddc7685b01.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952637;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_1a2a5c21562dcfcc3b50dea3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_dc9e13268f7b5efd5dd2df81.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e1b7f63ce0b0d914899fd3eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.950684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e1513d5771b831e6a054fbe4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6447117029b928fa5f8c3b9c.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_296d9bad938c9a632255d122.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_553ad20e2ba701b99cc1c695.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.m5{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);}
.m1{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);}
.m6{transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080903,0.236548,0,0);}
.m3{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);}
.m2{transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080900,0.236548,0,0);}
.m4{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);}
.v5{vertical-align:-35.280619px;}
.v6{vertical-align:-34.198867px;}
.v11{vertical-align:-31.681366px;}
.v9{vertical-align:-27.360000px;}
.vc{vertical-align:-15.120000px;}
.ve{vertical-align:-13.680000px;}
.vb{vertical-align:-12.240000px;}
.v1{vertical-align:-6.113424px;}
.v7{vertical-align:-2.520000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.520000px;}
.vd{vertical-align:4.320000px;}
.v2{vertical-align:6.119400px;}
.v12{vertical-align:10.437366px;}
.v13{vertical-align:12.240600px;}
.v3{vertical-align:14.749997px;}
.vf{vertical-align:16.560000px;}
.va{vertical-align:23.400000px;}
.v4{vertical-align:40.680000px;}
.v10{vertical-align:51.120000px;}
.ls9f{letter-spacing:-0.485271px;}
.ls98{letter-spacing:-0.480506px;}
.ls7a{letter-spacing:-0.467692px;}
.ls81{letter-spacing:-0.458768px;}
.ls94{letter-spacing:-0.416438px;}
.lsa2{letter-spacing:-0.403625px;}
.ls4f{letter-spacing:-0.397218px;}
.ls8f{letter-spacing:-0.358777px;}
.ls85{letter-spacing:-0.357102px;}
.ls80{letter-spacing:-0.333150px;}
.ls1d{letter-spacing:-0.309975px;}
.ls9c{letter-spacing:-0.309872px;}
.ls1c{letter-spacing:-0.294084px;}
.lsb2{letter-spacing:-0.288303px;}
.ls2f{letter-spacing:-0.252072px;}
.ls20{letter-spacing:-0.238068px;}
.lsa9{letter-spacing:-0.198786px;}
.ls92{letter-spacing:-0.198609px;}
.ls56{letter-spacing:-0.173300px;}
.lsb4{letter-spacing:-0.160169px;}
.ls3e{letter-spacing:-0.158312px;}
.ls3f{letter-spacing:-0.153762px;}
.ls4a{letter-spacing:-0.134542px;}
.ls5c{letter-spacing:-0.128626px;}
.ls7c{letter-spacing:-0.121728px;}
.ls93{letter-spacing:-0.121692px;}
.ls26{letter-spacing:-0.119034px;}
.ls95{letter-spacing:-0.115533px;}
.lsaa{letter-spacing:-0.115321px;}
.ls2d{letter-spacing:-0.108915px;}
.ls83{letter-spacing:-0.105098px;}
.ls47{letter-spacing:-0.102508px;}
.ls8e{letter-spacing:-0.099393px;}
.ls99{letter-spacing:-0.096101px;}
.ls24{letter-spacing:-0.091026px;}
.ls50{letter-spacing:-0.089694px;}
.lsb0{letter-spacing:-0.083288px;}
.ls9b{letter-spacing:-0.081853px;}
.ls27{letter-spacing:-0.077022px;}
.ls7d{letter-spacing:-0.076881px;}
.ls45{letter-spacing:-0.070474px;}
.ls90{letter-spacing:-0.064067px;}
.ls55{letter-spacing:-0.058466px;}
.ls7e{letter-spacing:-0.057661px;}
.ls21{letter-spacing:-0.056016px;}
.ls42{letter-spacing:-0.051254px;}
.ls23{letter-spacing:-0.049014px;}
.ls18{letter-spacing:-0.046773px;}
.ls40{letter-spacing:-0.044847px;}
.ls41{letter-spacing:-0.038440px;}
.ls2e{letter-spacing:-0.032034px;}
.lsa0{letter-spacing:-0.029233px;}
.ls25{letter-spacing:-0.028008px;}
.ls29{letter-spacing:-0.027657px;}
.ls43{letter-spacing:-0.025627px;}
.ls16{letter-spacing:-0.023387px;}
.ls1a{letter-spacing:-0.021006px;}
.ls2c{letter-spacing:-0.019220px;}
.ls9e{letter-spacing:-0.017540px;}
.ls1e{letter-spacing:-0.014004px;}
.ls2b{letter-spacing:-0.012813px;}
.ls9d{letter-spacing:-0.011693px;}
.ls1f{letter-spacing:-0.011063px;}
.ls22{letter-spacing:-0.007002px;}
.ls49{letter-spacing:-0.006407px;}
.ls3d{letter-spacing:-0.005847px;}
.ls15{letter-spacing:0.000000px;}
.lsa7{letter-spacing:0.005531px;}
.ls96{letter-spacing:0.005847px;}
.ls34{letter-spacing:0.006407px;}
.lsa{letter-spacing:0.007002px;}
.ls2{letter-spacing:0.010503px;}
.lsd{letter-spacing:0.012813px;}
.lsb{letter-spacing:0.014004px;}
.ls59{letter-spacing:0.017540px;}
.ls13{letter-spacing:0.019220px;}
.ls10{letter-spacing:0.021006px;}
.ls87{letter-spacing:0.023387px;}
.ls1b{letter-spacing:0.024472px;}
.ls32{letter-spacing:0.025627px;}
.ls8{letter-spacing:0.028008px;}
.ls33{letter-spacing:0.032034px;}
.ls79{letter-spacing:0.034380px;}
.ls4{letter-spacing:0.035010px;}
.ls97{letter-spacing:0.035080px;}
.ls31{letter-spacing:0.038440px;}
.ls37{letter-spacing:0.040961px;}
.lsc{letter-spacing:0.042012px;}
.ls12{letter-spacing:0.044847px;}
.ls3{letter-spacing:0.048943px;}
.ls5b{letter-spacing:0.051254px;}
.lse{letter-spacing:0.056016px;}
.ls1{letter-spacing:0.057661px;}
.ls57{letter-spacing:0.058466px;}
.ls36{letter-spacing:0.060846px;}
.ls5{letter-spacing:0.063018px;}
.ls11{letter-spacing:0.064067px;}
.lsa5{letter-spacing:0.066378px;}
.ls89{letter-spacing:0.070474px;}
.ls35{letter-spacing:0.076881px;}
.ls14{letter-spacing:0.083288px;}
.ls78{letter-spacing:0.086040px;}
.ls66{letter-spacing:0.089694px;}
.ls86{letter-spacing:0.096101px;}
.ls4e{letter-spacing:0.098307px;}
.ls9{letter-spacing:0.112032px;}
.lsf{letter-spacing:0.113418px;}
.ls5a{letter-spacing:0.115321px;}
.ls8c{letter-spacing:0.116460px;}
.lsa4{letter-spacing:0.128626px;}
.ls17{letter-spacing:0.130375px;}
.ls58{letter-spacing:0.134473px;}
.ls3c{letter-spacing:0.135000px;}
.ls30{letter-spacing:0.140319px;}
.ls76{letter-spacing:0.140948px;}
.ls0{letter-spacing:0.146166px;}
.ls6{letter-spacing:0.146880px;}
.lsab{letter-spacing:0.147355px;}
.ls7{letter-spacing:0.154044px;}
.ls3b{letter-spacing:0.154097px;}
.lsac{letter-spacing:0.160169px;}
.lsae{letter-spacing:0.166575px;}
.lsa1{letter-spacing:0.169553px;}
.ls67{letter-spacing:0.179389px;}
.ls3a{letter-spacing:0.192202px;}
.lsa3{letter-spacing:0.205016px;}
.lsaf{letter-spacing:0.224236px;}
.ls8a{letter-spacing:0.229103px;}
.lsad{letter-spacing:0.230643px;}
.ls91{letter-spacing:0.256270px;}
.lsb1{letter-spacing:0.262676px;}
.ls68{letter-spacing:0.269083px;}
.ls38{letter-spacing:0.275490px;}
.ls39{letter-spacing:0.281897px;}
.ls52{letter-spacing:0.301117px;}
.ls9a{letter-spacing:0.313930px;}
.ls82{letter-spacing:0.320337px;}
.ls53{letter-spacing:0.326744px;}
.ls46{letter-spacing:0.333150px;}
.ls44{letter-spacing:0.339557px;}
.ls4c{letter-spacing:0.345964px;}
.ls4d{letter-spacing:0.365184px;}
.ls48{letter-spacing:0.371591px;}
.ls4b{letter-spacing:0.377998px;}
.ls84{letter-spacing:0.384404px;}
.ls51{letter-spacing:0.390811px;}
.ls8d{letter-spacing:0.397218px;}
.lsb3{letter-spacing:0.416438px;}
.ls54{letter-spacing:0.420958px;}
.ls77{letter-spacing:0.435658px;}
.ls2a{letter-spacing:0.464643px;}
.lsa6{letter-spacing:0.497142px;}
.ls8b{letter-spacing:0.506132px;}
.ls88{letter-spacing:0.589420px;}
.ls6d{letter-spacing:1.082592px;}
.ls6f{letter-spacing:5.529781px;}
.ls64{letter-spacing:14.918516px;}
.ls65{letter-spacing:16.675901px;}
.lsa8{letter-spacing:22.506878px;}
.ls70{letter-spacing:26.814717px;}
.ls6b{letter-spacing:26.816315px;}
.ls6e{letter-spacing:104.672448px;}
.ls28{letter-spacing:192.372948px;}
.ls75{letter-spacing:193.861546px;}
.ls7f{letter-spacing:194.220323px;}
.ls6c{letter-spacing:196.241652px;}
.ls61{letter-spacing:228.289370px;}
.ls63{letter-spacing:228.645675px;}
.ls5f{letter-spacing:233.144739px;}
.ls71{letter-spacing:307.838358px;}
.ls73{letter-spacing:819.570992px;}
.ls62{letter-spacing:846.967562px;}
.ls7b{letter-spacing:861.003413px;}
.ls5e{letter-spacing:864.632060px;}
.ls60{letter-spacing:879.036958px;}
.ls6a{letter-spacing:948.131188px;}
.ls69{letter-spacing:953.965606px;}
.ls19{letter-spacing:1040.059575px;}
.ls72{letter-spacing:1129.143150px;}
.ls74{letter-spacing:1452.929440px;}
.ls5d{letter-spacing:1882.583400px;}
.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;}
}
.wsb6{word-spacing:-64.067400px;}
.wsdc{word-spacing:-58.466400px;}
.ws98{word-spacing:-37.733822px;}
.ws9b{word-spacing:-36.916928px;}
.ws96{word-spacing:-35.703337px;}
.wsa0{word-spacing:-35.565862px;}
.wsa5{word-spacing:-35.430443px;}
.wsb3{word-spacing:-35.378256px;}
.ws99{word-spacing:-34.930564px;}
.wsb4{word-spacing:-33.474616px;}
.ws3{word-spacing:-17.505000px;}
.ws3a{word-spacing:-16.382034px;}
.ws97{word-spacing:-16.258350px;}
.ws9c{word-spacing:-16.065000px;}
.wsb5{word-spacing:-16.016850px;}
.ws13c{word-spacing:-15.972003px;}
.wsdd{word-spacing:-15.939969px;}
.ws9a{word-spacing:-15.906450px;}
.ws12e{word-spacing:-15.895122px;}
.ws11b{word-spacing:-15.536344px;}
.wsa1{word-spacing:-15.324300px;}
.wsa6{word-spacing:-15.265950px;}
.wsb2{word-spacing:-15.243450px;}
.wsaa{word-spacing:-15.063000px;}
.ws11c{word-spacing:-14.622447px;}
.ws88{word-spacing:-14.569827px;}
.ws87{word-spacing:-14.487974px;}
.ws11d{word-spacing:-14.306728px;}
.wsab{word-spacing:-14.210550px;}
.ws11e{word-spacing:-14.131329px;}
.ws12c{word-spacing:-13.895028px;}
.ws12d{word-spacing:-13.834181px;}
.ws0{word-spacing:-13.817587px;}
.ws2{word-spacing:-13.800993px;}
.wsb7{word-spacing:-13.723552px;}
.wsde{word-spacing:-13.706958px;}
.ws3b{word-spacing:-10.338657px;}
.ws39{word-spacing:-10.281311px;}
.ws1{word-spacing:-10.240350px;}
.wsaf{word-spacing:-9.781582px;}
.wsb1{word-spacing:-8.891700px;}
.ws9e{word-spacing:-5.911564px;}
.ws16b{word-spacing:-0.621454px;}
.wsd1{word-spacing:-0.615047px;}
.ws2c{word-spacing:-0.609174px;}
.wsbe{word-spacing:-0.602234px;}
.ws83{word-spacing:-0.506132px;}
.ws144{word-spacing:-0.454879px;}
.ws152{word-spacing:-0.410031px;}
.ws159{word-spacing:-0.403625px;}
.ws84{word-spacing:-0.371591px;}
.ws142{word-spacing:-0.339557px;}
.ws14f{word-spacing:-0.326744px;}
.ws108{word-spacing:-0.320337px;}
.ws10{word-spacing:-0.287082px;}
.ws85{word-spacing:-0.274792px;}
.ws82{word-spacing:-0.262676px;}
.wsd{word-spacing:-0.259074px;}
.ws6{word-spacing:-0.251437px;}
.ws12a{word-spacing:-0.251406px;}
.ws160{word-spacing:-0.249863px;}
.ws100{word-spacing:-0.243456px;}
.ws7{word-spacing:-0.237049px;}
.ws139{word-spacing:-0.230643px;}
.wsce{word-spacing:-0.224236px;}
.wsbf{word-spacing:-0.217829px;}
.ws158{word-spacing:-0.211422px;}
.wsd3{word-spacing:-0.210195px;}
.ws50{word-spacing:-0.205016px;}
.ws6b{word-spacing:-0.198609px;}
.ws130{word-spacing:-0.192939px;}
.ws112{word-spacing:-0.185795px;}
.ws95{word-spacing:-0.172982px;}
.ws9{word-spacing:-0.168048px;}
.wscb{word-spacing:-0.166575px;}
.wsc7{word-spacing:-0.160169px;}
.wsd0{word-spacing:-0.153762px;}
.ws16c{word-spacing:-0.147355px;}
.wsed{word-spacing:-0.140948px;}
.wsd2{word-spacing:-0.134542px;}
.wsee{word-spacing:-0.128135px;}
.ws13d{word-spacing:-0.115321px;}
.wscf{word-spacing:-0.108915px;}
.wsbd{word-spacing:-0.102508px;}
.ws146{word-spacing:-0.096101px;}
.ws107{word-spacing:-0.076881px;}
.wsc{word-spacing:-0.073415px;}
.ws165{word-spacing:-0.019220px;}
.ws131{word-spacing:-0.017540px;}
.ws3f{word-spacing:-0.005847px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.010503px;}
.ws8a{word-spacing:0.011693px;}
.ws12f{word-spacing:0.017540px;}
.ws168{word-spacing:0.019220px;}
.ws3e{word-spacing:0.037250px;}
.ws140{word-spacing:0.038440px;}
.wsa{word-spacing:0.042012px;}
.wse{word-spacing:0.070020px;}
.ws89{word-spacing:0.087700px;}
.wsec{word-spacing:0.089694px;}
.ws65{word-spacing:0.108915px;}
.ws1e{word-spacing:0.119034px;}
.ws8b{word-spacing:0.122779px;}
.ws81{word-spacing:0.128135px;}
.ws3d{word-spacing:0.146166px;}
.ws6c{word-spacing:0.149349px;}
.ws3c{word-spacing:0.152013px;}
.wsc2{word-spacing:0.153762px;}
.ws129{word-spacing:0.163706px;}
.ws56{word-spacing:0.166575px;}
.ws5{word-spacing:0.169553px;}
.ws12b{word-spacing:0.175399px;}
.ws15d{word-spacing:0.179389px;}
.wsb{word-spacing:0.195774px;}
.ws86{word-spacing:0.204632px;}
.ws8f{word-spacing:0.205016px;}
.ws116{word-spacing:0.211422px;}
.ws8e{word-spacing:0.217829px;}
.wseb{word-spacing:0.230643px;}
.wsbc{word-spacing:0.237049px;}
.wsef{word-spacing:0.245559px;}
.ws117{word-spacing:0.249863px;}
.ws5d{word-spacing:0.256270px;}
.ws15c{word-spacing:0.262676px;}
.wsc5{word-spacing:0.493319px;}
.ws5e{word-spacing:0.512539px;}
.ws1f{word-spacing:0.525150px;}
.ws150{word-spacing:0.525353px;}
.ws57{word-spacing:0.538166px;}
.wsc6{word-spacing:0.544573px;}
.wsf4{word-spacing:0.557386px;}
.ws5a{word-spacing:0.570200px;}
.ws15e{word-spacing:0.576607px;}
.ws5f{word-spacing:0.589420px;}
.wsf{word-spacing:0.619950px;}
.ws137{word-spacing:0.845690px;}
.ws102{word-spacing:0.858503px;}
.ws151{word-spacing:0.877723px;}
.ws138{word-spacing:0.884130px;}
.ws21{word-spacing:0.890537px;}
.ws101{word-spacing:0.896944px;}
.wsd5{word-spacing:0.909757px;}
.ws4d{word-spacing:0.916164px;}
.ws5b{word-spacing:0.922571px;}
.ws4e{word-spacing:0.948198px;}
.wsd4{word-spacing:0.973824px;}
.ws20{word-spacing:1.176336px;}
.wsba{word-spacing:1.217281px;}
.wse3{word-spacing:1.242908px;}
.wsbb{word-spacing:1.249314px;}
.ws66{word-spacing:1.281348px;}
.wsc8{word-spacing:1.287755px;}
.ws10b{word-spacing:1.294161px;}
.ws22{word-spacing:1.337382px;}
.ws13f{word-spacing:1.582465px;}
.ws13e{word-spacing:1.595278px;}
.ws61{word-spacing:1.601685px;}
.ws10e{word-spacing:1.614498px;}
.wse4{word-spacing:1.620905px;}
.wsc9{word-spacing:1.627312px;}
.ws51{word-spacing:1.659346px;}
.wsca{word-spacing:1.729820px;}
.wse0{word-spacing:1.947649px;}
.ws60{word-spacing:2.088597px;}
.ws36{word-spacing:2.261579px;}
.ws8c{word-spacing:2.287206px;}
.ws69{word-spacing:2.312833px;}
.ws6a{word-spacing:2.319240px;}
.ws35{word-spacing:2.325647px;}
.ws8d{word-spacing:2.357680px;}
.wsdf{word-spacing:2.383307px;}
.ws156{word-spacing:2.440968px;}
.ws75{word-spacing:2.658797px;}
.wse6{word-spacing:2.671611px;}
.ws38{word-spacing:2.703644px;}
.wsf7{word-spacing:2.710051px;}
.ws37{word-spacing:2.716458px;}
.ws110{word-spacing:2.722865px;}
.ws11a{word-spacing:2.729271px;}
.ws74{word-spacing:2.742085px;}
.ws114{word-spacing:2.754898px;}
.wse5{word-spacing:2.806152px;}
.ws157{word-spacing:2.895846px;}
.ws115{word-spacing:3.004761px;}
.ws141{word-spacing:3.011168px;}
.wsd8{word-spacing:3.036795px;}
.wsf6{word-spacing:3.043201px;}
.ws111{word-spacing:3.049608px;}
.wsd7{word-spacing:3.056015px;}
.ws49{word-spacing:3.062422px;}
.ws43{word-spacing:3.075235px;}
.ws4f{word-spacing:3.081642px;}
.ws155{word-spacing:3.088049px;}
.ws45{word-spacing:3.094455px;}
.ws76{word-spacing:3.100862px;}
.ws118{word-spacing:3.113676px;}
.wsf1{word-spacing:3.190557px;}
.ws44{word-spacing:3.216183px;}
.ws10f{word-spacing:3.261031px;}
.ws93{word-spacing:3.389165px;}
.ws154{word-spacing:3.395572px;}
.wsf5{word-spacing:3.421199px;}
.ws92{word-spacing:3.427606px;}
.ws19{word-spacing:3.430980px;}
.ws72{word-spacing:3.434013px;}
.ws48{word-spacing:3.466046px;}
.ws119{word-spacing:3.478860px;}
.ws73{word-spacing:3.735129px;}
.ws18{word-spacing:3.739068px;}
.ws62{word-spacing:3.773570px;}
.ws30{word-spacing:3.792790px;}
.ws7f{word-spacing:3.812010px;}
.wsb8{word-spacing:3.831231px;}
.ws153{word-spacing:3.850451px;}
.ws7c{word-spacing:4.068280px;}
.ws126{word-spacing:4.080955px;}
.ws2f{word-spacing:4.100314px;}
.wsf0{word-spacing:4.138754px;}
.ws7d{word-spacing:4.145161px;}
.ws10a{word-spacing:4.151568px;}
.ws94{word-spacing:4.157974px;}
.wsb9{word-spacing:4.164381px;}
.ws47{word-spacing:4.177194px;}
.ws80{word-spacing:4.183601px;}
.ws7e{word-spacing:4.234855px;}
.ws7a{word-spacing:4.279702px;}
.wsf2{word-spacing:4.433464px;}
.wsdb{word-spacing:4.459091px;}
.ws127{word-spacing:4.466833px;}
.ws128{word-spacing:4.472680px;}
.ws46{word-spacing:4.484718px;}
.ws7b{word-spacing:4.503938px;}
.ws4a{word-spacing:4.516752px;}
.ws125{word-spacing:4.542839px;}
.ws67{word-spacing:4.548785px;}
.ws109{word-spacing:4.555192px;}
.wsf3{word-spacing:4.561599px;}
.ws68{word-spacing:4.638480px;}
.ws1a{word-spacing:4.803372px;}
.wsd6{word-spacing:4.862716px;}
.ws1b{word-spacing:4.866390px;}
.wsff{word-spacing:5.163832px;}
.wse9{word-spacing:5.170239px;}
.wsea{word-spacing:5.195866px;}
.ws14b{word-spacing:5.202273px;}
.ws14c{word-spacing:5.221493px;}
.ws124{word-spacing:5.298374px;}
.ws123{word-spacing:5.317594px;}
.ws2b{word-spacing:5.475564px;}
.ws2a{word-spacing:5.517576px;}
.ws10d{word-spacing:5.522610px;}
.ws10c{word-spacing:5.535423px;}
.ws32{word-spacing:5.561050px;}
.ws29{word-spacing:5.608602px;}
.ws34{word-spacing:5.612304px;}
.ws33{word-spacing:5.689185px;}
.wsf8{word-spacing:6.342673px;}
.wsfa{word-spacing:6.406740px;}
.ws71{word-spacing:6.695043px;}
.wsf9{word-spacing:6.727077px;}
.ws2e{word-spacing:6.957720px;}
.ws2d{word-spacing:6.964126px;}
.ws105{word-spacing:6.976940px;}
.ws79{word-spacing:6.989753px;}
.ws106{word-spacing:7.002567px;}
.wsfc{word-spacing:7.008974px;}
.wsfe{word-spacing:7.034601px;}
.ws53{word-spacing:7.342124px;}
.ws15f{word-spacing:7.367751px;}
.wsfb{word-spacing:7.374158px;}
.wsfd{word-spacing:7.425412px;}
.ws52{word-spacing:7.431818px;}
.ws162{word-spacing:7.688088px;}
.ws169{word-spacing:7.771376px;}
.wsae{word-spacing:7.771680px;}
.ws136{word-spacing:7.777782px;}
.ws16a{word-spacing:7.809816px;}
.ws16{word-spacing:8.045298px;}
.ws161{word-spacing:8.078899px;}
.ws77{word-spacing:8.098119px;}
.ws17{word-spacing:8.108316px;}
.ws78{word-spacing:8.123746px;}
.wsda{word-spacing:8.450490px;}
.wsd9{word-spacing:8.456897px;}
.ws121{word-spacing:8.745200px;}
.ws122{word-spacing:8.783641px;}
.ws120{word-spacing:8.841301px;}
.ws11f{word-spacing:8.866928px;}
.ws64{word-spacing:9.136011px;}
.ws143{word-spacing:9.168045px;}
.ws63{word-spacing:9.187265px;}
.ws14a{word-spacing:9.193672px;}
.ws41{word-spacing:9.507602px;}
.ws42{word-spacing:9.520416px;}
.ws40{word-spacing:9.526822px;}
.ws149{word-spacing:9.546043px;}
.ws24{word-spacing:9.844812px;}
.ws145{word-spacing:9.866380px;}
.ws23{word-spacing:9.872820px;}
.wse2{word-spacing:9.892007px;}
.ws15a{word-spacing:9.911227px;}
.wse1{word-spacing:9.924040px;}
.ws13{word-spacing:10.236924px;}
.ws13a{word-spacing:10.609561px;}
.ws13b{word-spacing:10.737696px;}
.wsc4{word-spacing:11.000373px;}
.wsc3{word-spacing:11.102880px;}
.ws26{word-spacing:11.287224px;}
.ws4c{word-spacing:11.307896px;}
.ws4b{word-spacing:11.314303px;}
.ws25{word-spacing:11.343240px;}
.wscc{word-spacing:11.397590px;}
.ws1c{word-spacing:11.672334px;}
.ws104{word-spacing:11.698707px;}
.ws103{word-spacing:11.724334px;}
.wscd{word-spacing:11.737148px;}
.wsb0{word-spacing:11.989262px;}
.ws134{word-spacing:12.070298px;}
.ws1d{word-spacing:12.106458px;}
.ws135{word-spacing:12.493143px;}
.ws15{word-spacing:13.149756px;}
.ws14{word-spacing:13.331808px;}
.ws113{word-spacing:13.486188px;}
.ws6e{word-spacing:13.857779px;}
.ws147{word-spacing:13.876999px;}
.ws148{word-spacing:13.883406px;}
.ws6d{word-spacing:13.915439px;}
.ws132{word-spacing:14.235776px;}
.ws31{word-spacing:14.242183px;}
.ws58{word-spacing:14.549707px;}
.ws133{word-spacing:14.620181px;}
.ws59{word-spacing:14.972551px;}
.wse7{word-spacing:14.998178px;}
.wse8{word-spacing:15.344142px;}
.ws90{word-spacing:15.549158px;}
.ws28{word-spacing:15.621462px;}
.ws5c{word-spacing:15.683700px;}
.ws164{word-spacing:15.696513px;}
.ws163{word-spacing:15.702920px;}
.ws91{word-spacing:15.972003px;}
.ws27{word-spacing:15.978564px;}
.ws166{word-spacing:18.156701px;}
.ws167{word-spacing:18.195142px;}
.ws14e{word-spacing:18.848629px;}
.ws14d{word-spacing:18.880663px;}
.ws70{word-spacing:19.207407px;}
.ws6f{word-spacing:19.239440px;}
.ws54{word-spacing:21.001294px;}
.ws55{word-spacing:21.065361px;}
.ws15b{word-spacing:21.353664px;}
.ws12{word-spacing:23.785794px;}
.ws11{word-spacing:23.869818px;}
.wsac{word-spacing:63.228554px;}
.wsc0{word-spacing:91.680449px;}
.wsc1{word-spacing:99.240403px;}
.ws9f{word-spacing:145.842972px;}
.wsad{word-spacing:180.227342px;}
.ws9d{word-spacing:349.201710px;}
.wsa2{word-spacing:1163.698141px;}
.wsa7{word-spacing:1164.165500px;}
.wsa8{word-spacing:1744.116468px;}
.wsa3{word-spacing:1747.454448px;}
.wsa9{word-spacing:2018.271860px;}
.wsa4{word-spacing:2023.229887px;}
._4e{margin-left:-864.530750px;}
._3f{margin-left:-862.433641px;}
._47{margin-left:-857.209631px;}
._54{margin-left:-852.081490px;}
._53{margin-left:-726.231773px;}
._46{margin-left:-723.123068px;}
._51{margin-left:-522.996968px;}
._43{margin-left:-520.014796px;}
._45{margin-left:-516.772174px;}
._52{margin-left:-506.076189px;}
._1b{margin-left:-492.759730px;}
._1a{margin-left:-485.151107px;}
._2e{margin-left:-482.468612px;}
._2f{margin-left:-475.239888px;}
._6b{margin-left:-450.051366px;}
._c{margin-left:-442.142577px;}
._20{margin-left:-427.692628px;}
._21{margin-left:-412.925079px;}
._19{margin-left:-410.874518px;}
._17{margin-left:-403.675320px;}
._2b{margin-left:-402.255033px;}
._2d{margin-left:-395.058955px;}
._13{margin-left:-357.599157px;}
._28{margin-left:-345.010901px;}
._69{margin-left:-316.123080px;}
._41{margin-left:-312.652498px;}
._50{margin-left:-311.443699px;}
._44{margin-left:-305.811731px;}
._6d{margin-left:-293.753476px;}
._6c{margin-left:-292.314495px;}
._6a{margin-left:-286.447877px;}
._38{margin-left:-280.678790px;}
._49{margin-left:-277.886970px;}
._40{margin-left:-267.292570px;}
._4f{margin-left:-265.725232px;}
._68{margin-left:-254.111249px;}
._64{margin-left:-244.200069px;}
._6e{margin-left:-240.834315px;}
._60{margin-left:-220.101585px;}
._62{margin-left:-216.487477px;}
._57{margin-left:-207.053253px;}
._18{margin-left:-203.157838px;}
._29{margin-left:-198.493408px;}
._59{margin-left:-197.259487px;}
._15{margin-left:-195.594454px;}
._1c{margin-left:-193.675750px;}
._2c{margin-left:-191.653635px;}
._16{margin-left:-180.474188px;}
._65{margin-left:-179.397114px;}
._2a{margin-left:-176.892449px;}
._14{margin-left:-175.252006px;}
._26{margin-left:-171.573332px;}
._39{margin-left:-170.256181px;}
._3d{margin-left:-168.886045px;}
._5c{margin-left:-165.957120px;}
._10{margin-left:-164.456462px;}
._4d{margin-left:-162.649538px;}
._f{margin-left:-160.313834px;}
._25{margin-left:-157.092100px;}
._e{margin-left:-152.399270px;}
._24{margin-left:-149.170688px;}
._35{margin-left:-147.399588px;}
._33{margin-left:-145.600308px;}
._b{margin-left:-142.982433px;}
._1f{margin-left:-140.053111px;}
._37{margin-left:-126.335835px;}
._36{margin-left:-120.703958px;}
._4c{margin-left:-119.196538px;}
._3e{margin-left:-115.508444px;}
._3c{margin-left:-114.052058px;}
._42{margin-left:-112.854275px;}
._3a{margin-left:-109.072238px;}
._a{margin-left:-108.066001px;}
._66{margin-left:-106.941948px;}
._1e{margin-left:-105.491576px;}
._4a{margin-left:-98.624143px;}
._12{margin-left:-92.640078px;}
._27{margin-left:-89.662305px;}
._22{margin-left:-86.772866px;}
._5d{margin-left:-85.090447px;}
._5a{margin-left:-77.944184px;}
._63{margin-left:-76.814793px;}
._34{margin-left:-71.393862px;}
._1d{margin-left:-66.598062px;}
._30{margin-left:-62.638697px;}
._d{margin-left:-55.493000px;}
._23{margin-left:-54.304620px;}
._67{margin-left:-53.255721px;}
._11{margin-left:-50.817099px;}
._4b{margin-left:-49.492210px;}
._3b{margin-left:-48.130561px;}
._61{margin-left:-45.968148px;}
._5e{margin-left:-33.262071px;}
._5f{margin-left:-30.768839px;}
._6f{margin-left:-20.214499px;}
._75{margin-left:-7.329311px;}
._0{margin-left:-1.087475px;}
._1{width:1.092312px;}
._58{width:5.942378px;}
._31{width:7.085081px;}
._70{width:12.377822px;}
._56{width:27.824472px;}
._55{width:94.678804px;}
._2{width:100.042817px;}
._48{width:102.238757px;}
._5b{width:174.230006px;}
._3{width:181.787315px;}
._6{width:321.855397px;}
._7{width:328.697796px;}
._4{width:347.061605px;}
._5{width:365.929228px;}
._8{width:395.295858px;}
._9{width:442.814649px;}
._32{width:454.219720px;}
._71{width:1098.988724px;}
._73{width:1192.629615px;}
._74{width:1242.554293px;}
._72{width:2171.432131px;}
.fc4{color:rgb(126,53,53);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(99,36,35);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs32{font-size:17.505000px;}
.fs9{font-size:23.456400px;}
.fs26{font-size:33.156600px;}
.fsb{font-size:35.010000px;}
.fs23{font-size:35.146200px;}
.fs2a{font-size:35.151000px;}
.fs27{font-size:35.280000px;}
.fs2e{font-size:35.566800px;}
.fs20{font-size:35.620200px;}
.fs1d{font-size:35.756400px;}
.fs12{font-size:37.115400px;}
.fse{font-size:37.936200px;}
.fs7{font-size:40.961400px;}
.fs2{font-size:46.562400px;}
.fs6{font-size:55.314600px;}
.fs2c{font-size:56.716800px;}
.fs25{font-size:56.842200px;}
.fs1{font-size:58.466400px;}
.fs2d{font-size:59.942287px;}
.fs24{font-size:60.074531px;}
.fs22{font-size:60.252000px;}
.fs29{font-size:60.258000px;}
.fs28{font-size:60.480000px;}
.fs2f{font-size:60.973800px;}
.fs1f{font-size:61.063800px;}
.fs1c{font-size:61.297200px;}
.fs19{font-size:63.565200px;}
.fs10{font-size:63.625800px;}
.fs21{font-size:63.678505px;}
.fs2b{font-size:63.684764px;}
.fs3{font-size:64.067400px;}
.fs16{font-size:64.260000px;}
.fs30{font-size:64.441267px;}
.fs1e{font-size:64.536327px;}
.fs14{font-size:64.546800px;}
.fs1b{font-size:64.782992px;}
.fsc{font-size:65.033400px;}
.fs18{font-size:67.180397px;}
.fs13{font-size:67.243949px;}
.fs1a{font-size:67.343566px;}
.fs15{font-size:67.660057px;}
.fs17{font-size:67.914117px;}
.fsf{font-size:68.731917px;}
.fs0{font-size:70.020000px;}
.fs5{font-size:81.572400px;}
.fs11{font-size:95.437800px;}
.fsd{font-size:97.551600px;}
.fs4{font-size:105.030000px;}
.fs8{font-size:280.080000px;}
.fsa{font-size:288.832800px;}
.fs31{font-size:297.585000px;}
.y0{bottom:0.000000px;}
.y13e{bottom:3.060600px;}
.y110{bottom:3.510450px;}
.y117{bottom:3.510600px;}
.y5{bottom:58.170450px;}
.y4{bottom:78.057190px;}
.y38{bottom:78.060450px;}
.y15c{bottom:141.512573px;}
.y81{bottom:143.222951px;}
.y194{bottom:151.410450px;}
.y6c{bottom:153.120600px;}
.y184{bottom:154.111698px;}
.y33{bottom:155.732951px;}
.y15b{bottom:159.602003px;}
.y80{bottom:161.222687px;}
.y6b{bottom:167.070450px;}
.y193{bottom:168.601982px;}
.y1ae{bottom:170.222117px;}
.y183{bottom:172.111434px;}
.y185{bottom:172.740450px;}
.y32{bottom:173.732687px;}
.y15a{bottom:177.691434px;}
.y15d{bottom:178.410450px;}
.y7f{bottom:179.312117px;}
.y192{bottom:185.881726px;}
.y1ad{bottom:188.221853px;}
.y182{bottom:190.111170px;}
.y31{bottom:191.822117px;}
.y6a{bottom:192.270450px;}
.y159{bottom:195.691170px;}
.y7e{bottom:197.401548px;}
.y191{bottom:202.261088px;}
.y1ac{bottom:206.311284px;}
.y181{bottom:208.200600px;}
.y30{bottom:209.911548px;}
.y34{bottom:212.610450px;}
.y158{bottom:213.780600px;}
.y7d{bottom:215.401284px;}
.y190{bottom:218.640450px;}
.y1ab{bottom:224.311020px;}
.y180{bottom:225.840450px;}
.y2f{bottom:227.911284px;}
.y157{bottom:232.049820px;}
.y7c{bottom:233.490714px;}
.y69{bottom:233.850450px;}
.y18f{bottom:239.970617px;}
.y1aa{bottom:242.400450px;}
.y17f{bottom:242.940450px;}
.y2e{bottom:246.000714px;}
.y7b{bottom:251.491853px;}
.y156{bottom:251.760216px;}
.y18e{bottom:254.640450px;}
.y1a9{bottom:260.670450px;}
.y68{bottom:261.120252px;}
.y17e{bottom:262.382752px;}
.y2d{bottom:264.000450px;}
.y7a{bottom:269.581284px;}
.y155{bottom:271.470846px;}
.y67{bottom:279.119988px;}
.y1a8{bottom:279.570450px;}
.y17d{bottom:280.382488px;}
.y2c{bottom:282.267930px;}
.y79{bottom:287.670714px;}
.y154{bottom:291.090450px;}
.y66{bottom:297.300714px;}
.y1a7{bottom:298.290365px;}
.y17c{bottom:298.471919px;}
.y2b{bottom:301.978560px;}
.y78{bottom:305.670450px;}
.y153{bottom:310.530450px;}
.y65{bottom:315.302951px;}
.y17b{bottom:316.561349px;}
.y1a6{bottom:318.721853px;}
.y77{bottom:320.880450px;}
.y2a{bottom:321.689190px;}
.y152{bottom:325.830450px;}
.y76{bottom:329.970450px;}
.y64{bottom:333.302687px;}
.y17a{bottom:334.561085px;}
.y151{bottom:335.280450px;}
.y1bc{bottom:336.631085px;}
.y1a5{bottom:336.721589px;}
.y1af{bottom:337.530450px;}
.y29{bottom:341.399820px;}
.y75{bottom:345.000600px;}
.y150{bottom:350.490450px;}
.y63{bottom:351.392117px;}
.y74{bottom:352.380450px;}
.y179{bottom:352.560821px;}
.y1bb{bottom:354.720515px;}
.y1a4{bottom:354.811020px;}
.y14f{bottom:359.850714px;}
.y28{bottom:361.109586px;}
.y62{bottom:369.481548px;}
.y178{bottom:370.741548px;}
.y1ba{bottom:372.720252px;}
.y1a3{bottom:372.900450px;}
.y14e{bottom:377.850450px;}
.y27{bottom:380.729190px;}
.y61{bottom:387.481284px;}
.y177{bottom:388.741284px;}
.y1b9{bottom:390.719988px;}
.y1a2{bottom:391.169820px;}
.y14d{bottom:393.060450px;}
.y147{bottom:398.280450px;}
.y26{bottom:400.439820px;}
.y14c{bottom:404.220450px;}
.y60{bottom:405.570714px;}
.y176{bottom:406.741020px;}
.y1b8{bottom:408.900714px;}
.y1a1{bottom:410.879190px;}
.y149{bottom:412.140792px;}
.y14b{bottom:416.011259px;}
.y25{bottom:420.148956px;}
.y5f{bottom:423.571541px;}
.y175{bottom:424.832951px;}
.y14a{bottom:425.550610px;}
.y1b7{bottom:426.900450px;}
.y1a0{bottom:430.589820px;}
.y148{bottom:432.390749px;}
.y24{bottom:439.859586px;}
.y5e{bottom:441.660971px;}
.y174{bottom:442.922381px;}
.y146{bottom:444.090600px;}
.y1b6{bottom:444.913432px;}
.y13d{bottom:449.130000px;}
.y138{bottom:449.220450px;}
.y19f{bottom:450.300450px;}
.y13c{bottom:452.190541px;}
.y13a{bottom:456.870345px;}
.y23{bottom:459.570216px;}
.y5d{bottom:459.750402px;}
.y173{bottom:460.922117px;}
.y1b5{bottom:463.002862px;}
.y141{bottom:463.890450px;}
.y198{bottom:466.050450px;}
.y197{bottom:468.210600px;}
.y19e{bottom:469.290600px;}
.y13b{bottom:469.470221px;}
.y139{bottom:474.240450px;}
.y140{bottom:474.240639px;}
.y144{bottom:474.870600px;}
.y143{bottom:474.870822px;}
.y5c{bottom:477.750138px;}
.y145{bottom:478.380450px;}
.y172{bottom:478.921853px;}
.y22{bottom:479.189820px;}
.y6d{bottom:480.540600px;}
.y1b4{bottom:481.092293px;}
.y19d{bottom:481.890450px;}
.y13f{bottom:483.690600px;}
.y142{bottom:483.781032px;}
.y5b{bottom:495.749874px;}
.y171{bottom:497.011284px;}
.y18d{bottom:498.271073px;}
.y21{bottom:498.896436px;}
.y1b3{bottom:499.092029px;}
.y137{bottom:499.620600px;}
.y136{bottom:508.980714px;}
.y18c{bottom:513.030600px;}
.y5a{bottom:513.930600px;}
.y170{bottom:515.100714px;}
.y1b2{bottom:517.091765px;}
.y20{bottom:518.607066px;}
.y135{bottom:526.981853px;}
.y59{bottom:532.199820px;}
.y16f{bottom:533.101020px;}
.y1b1{bottom:535.181195px;}
.y1f{bottom:538.317696px;}
.y134{bottom:545.071284px;}
.y16e{bottom:551.190714px;}
.y58{bottom:551.910450px;}
.y1b0{bottom:553.270626px;}
.y1e{bottom:558.028326px;}
.y133{bottom:563.160714px;}
.y16d{bottom:569.192117px;}
.y57{bottom:571.270362px;}
.y1d{bottom:577.647930px;}
.y132{bottom:581.160450px;}
.y16c{bottom:587.281548px;}
.y56{bottom:589.359792px;}
.y131{bottom:596.460450px;}
.y1c{bottom:597.358560px;}
.y12c{bottom:601.500450px;}
.y130{bottom:603.750450px;}
.y12e{bottom:603.930450px;}
.y16b{bottom:605.370978px;}
.y12f{bottom:607.350450px;}
.y55{bottom:607.359528px;}
.y12d{bottom:607.710450px;}
.y1b{bottom:617.069190px;}
.y16a{bottom:623.370714px;}
.y54{bottom:625.448958px;}
.y12b{bottom:626.970450px;}
.y1a{bottom:636.779820px;}
.y12a{bottom:638.490450px;}
.y169{bottom:641.370450px;}
.y53{bottom:643.538389px;}
.y129{bottom:653.790450px;}
.y19{bottom:656.488956px;}
.y123{bottom:658.920450px;}
.y168{bottom:659.100450px;}
.y52{bottom:661.538125px;}
.y125{bottom:666.120557px;}
.y167{bottom:671.610450px;}
.y73{bottom:675.210450px;}
.y18{bottom:676.199586px;}
.y124{bottom:677.910450px;}
.y51{bottom:679.537861px;}
.y127{bottom:684.750450px;}
.y126{bottom:687.540211px;}
.y128{bottom:687.630280px;}
.y17{bottom:695.819190px;}
.y50{bottom:697.718587px;}
.y122{bottom:707.340450px;}
.y196{bottom:712.020450px;}
.y11c{bottom:712.470450px;}
.y16{bottom:715.529820px;}
.y4f{bottom:715.718323px;}
.y11e{bottom:719.759934px;}
.y11d{bottom:731.550450px;}
.y4e{bottom:733.718059px;}
.y15{bottom:735.240450px;}
.y120{bottom:738.390450px;}
.y11f{bottom:741.180240px;}
.y121{bottom:741.270653px;}
.y4d{bottom:751.807490px;}
.y14{bottom:755.850450px;}
.y11b{bottom:761.070450px;}
.y4c{bottom:769.896920px;}
.y11a{bottom:770.430293px;}
.y13{bottom:777.990216px;}
.y19c{bottom:778.620450px;}
.y4b{bottom:787.896656px;}
.y119{bottom:788.430029px;}
.y19b{bottom:796.440450px;}
.y12{bottom:797.609820px;}
.y114{bottom:802.650000px;}
.y116{bottom:803.100000px;}
.y4a{bottom:805.986087px;}
.y115{bottom:806.160450px;}
.y118{bottom:806.700450px;}
.y113{bottom:806.700811px;}
.y19a{bottom:816.330450px;}
.y11{bottom:817.320450px;}
.y72{bottom:818.040600px;}
.y111{bottom:823.890000px;}
.y49{bottom:823.985823px;}
.y10f{bottom:824.520000px;}
.y112{bottom:827.400450px;}
.y10e{bottom:828.030450px;}
.y199{bottom:828.930600px;}
.y10{bottom:837.839661px;}
.y71{bottom:838.110600px;}
.y48{bottom:842.075253px;}
.y10d{bottom:843.690450px;}
.y70{bottom:852.060450px;}
.ycf{bottom:854.040772px;}
.yd8{bottom:854.042363px;}
.yfe{bottom:855.390450px;}
.yf1{bottom:855.390605px;}
.ye1{bottom:855.391230px;}
.yde{bottom:855.392821px;}
.ye6{bottom:856.741688px;}
.y6f{bottom:857.190450px;}
.yf7{bottom:858.360600px;}
.y10b{bottom:858.361186px;}
.ycc{bottom:858.720450px;}
.yd5{bottom:858.722041px;}
.y47{bottom:860.164683px;}
.yf{bottom:860.879785px;}
.ye5{bottom:863.761204px;}
.y100{bottom:866.641056px;}
.yee{bottom:867.000600px;}
.ye2{bottom:867.990729px;}
.ydf{bottom:867.992320px;}
.yf9{bottom:870.600613px;}
.ye4{bottom:870.600978px;}
.y107{bottom:870.601199px;}
.ycd{bottom:872.310921px;}
.yd6{bottom:872.312512px;}
.yff{bottom:877.710724px;}
.y46{bottom:878.164419px;}
.ye7{bottom:879.241361px;}
.yf8{bottom:880.589864px;}
.ye3{bottom:880.590228px;}
.y106{bottom:880.590450px;}
.ye0{bottom:880.591819px;}
.ye{bottom:883.740450px;}
.yf4{bottom:885.540372px;}
.yf0{bottom:886.980450px;}
.yce{bottom:887.791078px;}
.yd7{bottom:887.792669px;}
.y45{bottom:896.164155px;}
.y101{bottom:898.860934px;}
.yd3{bottom:903.182159px;}
.ydc{bottom:903.183750px;}
.y10a{bottom:905.791039px;}
.yd{bottom:908.403834px;}
.ycb{bottom:911.640450px;}
.y44{bottom:914.344882px;}
.yf5{bottom:915.150111px;}
.y102{bottom:915.150883px;}
.yf3{bottom:915.151039px;}
.yd0{bottom:915.240839px;}
.yd9{bottom:915.242429px;}
.yec{bottom:916.500630px;}
.yfd{bottom:918.119542px;}
.y10c{bottom:918.120128px;}
.yfa{bottom:918.121133px;}
.yd1{bottom:921.361641px;}
.yda{bottom:921.363231px;}
.yeb{bottom:923.610813px;}
.y104{bottom:926.401489px;}
.yef{bottom:926.849644px;}
.ye8{bottom:927.751262px;}
.yfc{bottom:930.450222px;}
.yea{bottom:930.450586px;}
.y109{bottom:930.450808px;}
.y195{bottom:931.980450px;}
.y43{bottom:932.344618px;}
.yd2{bottom:936.841798px;}
.ydb{bottom:936.843389px;}
.y103{bottom:937.561162px;}
.yc{bottom:937.833240px;}
.yed{bottom:939.000303px;}
.ye9{bottom:940.350761px;}
.yfb{bottom:940.441063px;}
.y108{bottom:940.441649px;}
.yf6{bottom:945.299878px;}
.yf2{bottom:946.830888px;}
.y42{bottom:950.344354px;}
.yd4{bottom:952.321955px;}
.ydd{bottom:952.323546px;}
.y105{bottom:958.711373px;}
.y166{bottom:960.060450px;}
.y18b{bottom:961.138803px;}
.yb{bottom:967.443823px;}
.y165{bottom:968.070714px;}
.y41{bottom:968.433784px;}
.yca{bottom:972.210450px;}
.yc9{bottom:981.660450px;}
.y18a{bottom:981.749190px;}
.y164{bottom:986.073520px;}
.y40{bottom:986.523215px;}
.yc8{bottom:996.870450px;}
.ya{bottom:996.962504px;}
.y189{bottom:1001.459820px;}
.y82{bottom:1001.910450px;}
.y163{bottom:1004.162951px;}
.y3f{bottom:1004.522951px;}
.y85{bottom:1007.310250px;}
.y8e{bottom:1007.313502px;}
.yab{bottom:1008.570090px;}
.yb6{bottom:1008.570450px;}
.ya8{bottom:1008.571038px;}
.y94{bottom:1008.666197px;}
.y99{bottom:1010.015640px;}
.y9c{bottom:1010.017265px;}
.yb1{bottom:1011.628824px;}
.yc3{bottom:1011.629005px;}
.yae{bottom:1011.630450px;}
.y8b{bottom:1012.083702px;}
.y98{bottom:1017.214837px;}
.y9b{bottom:1017.216463px;}
.yb8{bottom:1020.089777px;}
.ya5{bottom:1020.450450px;}
.y188{bottom:1021.170450px;}
.y95{bottom:1021.446885px;}
.y162{bottom:1022.252381px;}
.y3e{bottom:1022.612381px;}
.yb0{bottom:1024.139624px;}
.ybf{bottom:1024.139805px;}
.y97{bottom:1024.145772px;}
.y83{bottom:1025.940693px;}
.y8c{bottom:1025.943945px;}
.y9{bottom:1026.481186px;}
.yb7{bottom:1031.429856px;}
.y9a{bottom:1032.965926px;}
.y9d{bottom:1032.967552px;}
.y96{bottom:1034.316995px;}
.yaf{bottom:1034.400269px;}
.ybe{bottom:1034.400450px;}
.yac{bottom:1039.439724px;}
.y161{bottom:1040.252117px;}
.y187{bottom:1040.611589px;}
.y3d{bottom:1040.612117px;}
.ya7{bottom:1040.970450px;}
.y84{bottom:1041.690157px;}
.y8d{bottom:1041.693409px;}
.yb9{bottom:1053.029780px;}
.y8{bottom:1055.999867px;}
.y89{bottom:1057.442872px;}
.y92{bottom:1057.446124px;}
.y160{bottom:1058.251853px;}
.y186{bottom:1058.701020px;}
.y3c{bottom:1058.701548px;}
.yc2{bottom:1060.139044px;}
.yc7{bottom:1064.640450px;}
.yba{bottom:1069.769128px;}
.yaa{bottom:1069.769716px;}
.y9e{bottom:1069.778082px;}
.y86{bottom:1069.861000px;}
.y8f{bottom:1069.864252px;}
.ya3{bottom:1071.127526px;}
.yb5{bottom:1072.737458px;}
.yc6{bottom:1072.737639px;}
.yb2{bottom:1072.739084px;}
.y87{bottom:1076.071690px;}
.y90{bottom:1076.074941px;}
.y15f{bottom:1076.430978px;}
.y3b{bottom:1076.790978px;}
.ya2{bottom:1078.326723px;}
.ybc{bottom:1081.288455px;}
.ya6{bottom:1081.649446px;}
.y9f{bottom:1082.648192px;}
.yb4{bottom:1085.337680px;}
.yc5{bottom:1085.337861px;}
.yc1{bottom:1085.339486px;}
.ya1{bottom:1085.347078px;}
.y7{bottom:1085.610450px;}
.y88{bottom:1091.912200px;}
.y91{bottom:1091.915452px;}
.ybb{bottom:1092.628534px;}
.ya4{bottom:1094.167233px;}
.y15e{bottom:1094.430714px;}
.y3a{bottom:1094.790714px;}
.ya0{bottom:1095.518302px;}
.yb3{bottom:1095.598324px;}
.yc4{bottom:1095.598505px;}
.yc0{bottom:1095.600131px;}
.yad{bottom:1100.549252px;}
.ya9{bottom:1102.079978px;}
.y8a{bottom:1107.663290px;}
.y93{bottom:1107.666541px;}
.y6{bottom:1112.430450px;}
.y39{bottom:1112.790450px;}
.y6e{bottom:1113.690450px;}
.ybd{bottom:1114.228457px;}
.y3{bottom:1129.620705px;}
.y37{bottom:1130.610450px;}
.y2{bottom:1146.900450px;}
.y36{bottom:1150.500588px;}
.y1{bottom:1193.340450px;}
.y35{bottom:1196.940450px;}
.h4d{height:12.188540px;}
.h22{height:13.680000px;}
.h2a{height:15.120000px;}
.h12{height:16.286621px;}
.hf{height:16.332435px;}
.h40{height:16.560000px;}
.h27{height:18.090000px;}
.h24{height:18.270000px;}
.h3a{height:23.021819px;}
.h11{height:24.377080px;}
.h36{height:24.403270px;}
.h3e{height:24.406603px;}
.h46{height:24.695307px;}
.h1f{height:25.770556px;}
.h18{height:26.340467px;}
.h32{height:29.201537px;}
.h2e{height:29.417729px;}
.h1e{height:34.378864px;}
.h17{height:35.139146px;}
.h51{height:38.968084px;}
.h42{height:39.380513px;}
.h39{height:39.467582px;}
.h3{height:40.595323px;}
.h2{height:40.709515px;}
.h35{height:41.835129px;}
.h3d{height:41.839295px;}
.h47{height:42.336301px;}
.h31{height:42.398791px;}
.h2d{height:42.560849px;}
.h20{height:44.177679px;}
.h52{height:44.484298px;}
.h4{height:44.609430px;}
.h19{height:45.155027px;}
.h53{height:46.283630px;}
.hb{height:46.668604px;}
.h4b{height:46.669540px;}
.h56{height:46.673644px;}
.hc{height:46.678684px;}
.h55{height:48.209430px;}
.h57{height:48.611790px;}
.h1{height:48.617402px;}
.h7{height:48.754160px;}
.ha{height:48.757616px;}
.h8{height:48.760136px;}
.h9{height:48.770216px;}
.h43{height:52.535044px;}
.h3b{height:52.651198px;}
.h4e{height:53.356300px;}
.h44{height:55.522714px;}
.h38{height:55.645208px;}
.h2f{height:55.769430px;}
.h37{height:55.809592px;}
.h3c{height:56.020781px;}
.h33{height:56.129430px;}
.h49{height:56.478173px;}
.h6{height:56.797970px;}
.h54{height:56.850030px;}
.h50{height:58.457756px;}
.he{height:58.463396px;}
.h4f{height:58.465481px;}
.h4a{height:58.467759px;}
.h29{height:58.878508px;}
.h1b{height:58.934640px;}
.h34{height:58.983459px;}
.h3f{height:58.989257px;}
.h1c{height:59.297307px;}
.h26{height:59.522080px;}
.h48{height:59.689982px;}
.h30{height:59.778033px;}
.h2c{height:60.006511px;}
.h14{height:60.238457px;}
.h15{height:60.596141px;}
.h41{height:61.168673px;}
.h28{height:62.227155px;}
.h21{height:62.286021px;}
.h2b{height:62.378293px;}
.h23{height:62.671450px;}
.h25{height:62.906778px;}
.h1a{height:63.664280px;}
.h5{height:70.002905px;}
.h45{height:75.815307px;}
.h1d{height:88.401126px;}
.h16{height:90.359075px;}
.h13{height:100.918457px;}
.hd{height:195.016641px;}
.h10{height:201.111120px;}
.h4c{height:207.205181px;}
.h0{height:1263.000000px;}
.w5{width:8.820000px;}
.w6{width:10.170000px;}
.w3{width:10.260000px;}
.w4{width:10.440000px;}
.w7{width:10.530000px;}
.w2{width:13.050000px;}
.w8{width:14.490000px;}
.w9{width:18.360000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x8f{left:4.185450px;}
.x3{left:62.097655px;}
.x10{left:82.710000px;}
.x9f{left:84.870000px;}
.x2{left:87.210000px;}
.x6{left:99.810072px;}
.xf{left:108.000000px;}
.x8{left:110.250000px;}
.x7{left:113.580000px;}
.x7b{left:116.546448px;}
.x32{left:117.632670px;}
.x93{left:124.381402px;}
.x98{left:134.549166px;}
.x9{left:136.620000px;}
.x7a{left:142.737210px;}
.x95{left:146.246906px;}
.x9c{left:147.870000px;}
.x89{left:151.110000px;}
.x9a{left:155.159338px;}
.x88{left:158.490000px;}
.x90{left:160.560000px;}
.x12{left:162.358774px;}
.x38{left:166.588647px;}
.x30{left:170.551973px;}
.x8d{left:171.630023px;}
.x58{left:174.689659px;}
.x2c{left:178.559931px;}
.x79{left:180.897781px;}
.x53{left:182.519440px;}
.x8e{left:187.290000px;}
.x76{left:195.928647px;}
.x1a{left:201.960000px;}
.x29{left:203.760000px;}
.x1b{left:207.180000px;}
.x1c{left:208.889974px;}
.x50{left:210.150000px;}
.x1d{left:213.569404px;}
.x41{left:215.280092px;}
.x40{left:218.160340px;}
.x43{left:219.780334px;}
.x68{left:221.940000px;}
.x42{left:223.200518px;}
.x2f{left:224.731299px;}
.x45{left:229.500858px;}
.x34{left:231.658422px;}
.x1e{left:233.279157px;}
.x6e{left:235.979638px;}
.x5e{left:237.509414px;}
.x44{left:239.130448px;}
.x5b{left:240.389661px;}
.x2e{left:246.151675px;}
.x61{left:247.227781px;}
.x46{left:248.850971px;}
.x57{left:251.369883px;}
.x2b{left:254.969128px;}
.x8b{left:256.590000px;}
.x52{left:259.019847px;}
.x5a{left:260.999648px;}
.x14{left:262.349252px;}
.xa{left:266.220000px;}
.x55{left:268.649438px;}
.x17{left:270.899519px;}
.x92{left:273.330000px;}
.x3b{left:274.590261px;}
.x33{left:276.298696px;}
.x8a{left:277.740000px;}
.x5d{left:279.899644px;}
.x3f{left:284.218436px;}
.x85{left:286.917274px;}
.x60{left:289.618797px;}
.x91{left:298.890000px;}
.xc{left:302.670000px;}
.x24{left:304.288574px;}
.x4a{left:307.353505px;}
.x99{left:311.580000px;}
.x4f{left:316.984861px;}
.x75{left:319.318378px;}
.x96{left:322.110000px;}
.x84{left:327.507908px;}
.x74{left:329.128995px;}
.x8c{left:340.740000px;}
.x87{left:349.288870px;}
.x78{left:351.087925px;}
.x2a{left:357.748726px;}
.x51{left:359.640624px;}
.x16{left:364.949196px;}
.x3a{left:366.750642px;}
.x54{left:369.360220px;}
.x23{left:373.680838px;}
.x49{left:375.302678px;}
.x3e{left:376.378816px;}
.x4e{left:384.934034px;}
.x73{left:386.368320px;}
.x7e{left:391.229508px;}
.x6d{left:393.209419px;}
.x83{left:404.999397px;}
.x69{left:406.440000px;}
.x15{left:420.299123px;}
.x19{left:422.640325px;}
.x6c{left:427.769635px;}
.x72{left:429.388228px;}
.x3d{left:430.648442px;}
.x22{left:434.070853px;}
.x28{left:436.316131px;}
.x1{left:442.260000px;}
.x4d{left:444.064671px;}
.x21{left:445.770362px;}
.x27{left:448.106687px;}
.x4c{left:455.584122px;}
.x94{left:458.909882px;}
.x97{left:465.750149px;}
.x9d{left:469.620000px;}
.x2d{left:474.840000px;}
.x56{left:477.900000px;}
.x31{left:478.982628px;}
.x59{left:484.020802px;}
.x1f{left:491.310000px;}
.x47{left:494.100000px;}
.x25{left:495.447750px;}
.x82{left:498.509447px;}
.x4b{left:500.223983px;}
.x20{left:507.150510px;}
.x48{left:509.580157px;}
.x26{left:511.288260px;}
.x5c{left:513.810000px;}
.x35{left:515.518172px;}
.x5f{left:519.930068px;}
.x13{left:523.799779px;}
.x39{left:525.869224px;}
.x18{left:527.939155px;}
.x81{left:529.380251px;}
.x71{left:530.458116px;}
.x3c{left:531.990026px;}
.x11{left:536.400000px;}
.x80{left:539.100082px;}
.x37{left:540.360000px;}
.x36{left:547.380000px;}
.x62{left:550.440000px;}
.x7f{left:559.350364px;}
.x70{left:560.608676px;}
.x86{left:563.039648px;}
.x77{left:564.297976px;}
.x7d{left:567.270337px;}
.x6b{left:568.619019px;}
.x5{left:576.990000px;}
.xe{left:600.570000px;}
.xb{left:624.330000px;}
.x6f{left:630.630000px;}
.x7c{left:649.710000px;}
.x6a{left:651.780000px;}
.xd{left:654.750000px;}
.x9b{left:669.510000px;}
.x65{left:673.920000px;}
.x9e{left:679.950000px;}
.x67{left:717.390000px;}
.x64{left:727.020000px;}
.x66{left:765.090000px;}
.x63{left:774.720000px;}
.x4{left:801.989947px;}
@media print{
.v5{vertical-align:-31.360551pt;}
.v6{vertical-align:-30.398993pt;}
.v11{vertical-align:-28.161214pt;}
.v9{vertical-align:-24.320000pt;}
.vc{vertical-align:-13.440000pt;}
.ve{vertical-align:-12.160000pt;}
.vb{vertical-align:-10.880000pt;}
.v1{vertical-align:-5.434155pt;}
.v7{vertical-align:-2.240000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.240000pt;}
.vd{vertical-align:3.840000pt;}
.v2{vertical-align:5.439467pt;}
.v12{vertical-align:9.277658pt;}
.v13{vertical-align:10.880533pt;}
.v3{vertical-align:13.111108pt;}
.vf{vertical-align:14.720000pt;}
.va{vertical-align:20.800000pt;}
.v4{vertical-align:36.160000pt;}
.v10{vertical-align:45.440000pt;}
.ls9f{letter-spacing:-0.431352pt;}
.ls98{letter-spacing:-0.427116pt;}
.ls7a{letter-spacing:-0.415726pt;}
.ls81{letter-spacing:-0.407793pt;}
.ls94{letter-spacing:-0.370167pt;}
.lsa2{letter-spacing:-0.358777pt;}
.ls4f{letter-spacing:-0.353083pt;}
.ls8f{letter-spacing:-0.318913pt;}
.ls85{letter-spacing:-0.317424pt;}
.ls80{letter-spacing:-0.296134pt;}
.ls1d{letter-spacing:-0.275533pt;}
.ls9c{letter-spacing:-0.275442pt;}
.ls1c{letter-spacing:-0.261408pt;}
.lsb2{letter-spacing:-0.256270pt;}
.ls2f{letter-spacing:-0.224064pt;}
.ls20{letter-spacing:-0.211616pt;}
.lsa9{letter-spacing:-0.176698pt;}
.ls92{letter-spacing:-0.176541pt;}
.ls56{letter-spacing:-0.154044pt;}
.lsb4{letter-spacing:-0.142372pt;}
.ls3e{letter-spacing:-0.140722pt;}
.ls3f{letter-spacing:-0.136677pt;}
.ls4a{letter-spacing:-0.119592pt;}
.ls5c{letter-spacing:-0.114334pt;}
.ls7c{letter-spacing:-0.108203pt;}
.ls93{letter-spacing:-0.108171pt;}
.ls26{letter-spacing:-0.105808pt;}
.ls95{letter-spacing:-0.102696pt;}
.lsaa{letter-spacing:-0.102508pt;}
.ls2d{letter-spacing:-0.096813pt;}
.ls83{letter-spacing:-0.093420pt;}
.ls47{letter-spacing:-0.091118pt;}
.ls8e{letter-spacing:-0.088349pt;}
.ls99{letter-spacing:-0.085423pt;}
.ls24{letter-spacing:-0.080912pt;}
.ls50{letter-spacing:-0.079728pt;}
.lsb0{letter-spacing:-0.074033pt;}
.ls9b{letter-spacing:-0.072758pt;}
.ls27{letter-spacing:-0.068464pt;}
.ls7d{letter-spacing:-0.068339pt;}
.ls45{letter-spacing:-0.062644pt;}
.ls90{letter-spacing:-0.056949pt;}
.ls55{letter-spacing:-0.051970pt;}
.ls7e{letter-spacing:-0.051254pt;}
.ls21{letter-spacing:-0.049792pt;}
.ls42{letter-spacing:-0.045559pt;}
.ls23{letter-spacing:-0.043568pt;}
.ls18{letter-spacing:-0.041576pt;}
.ls40{letter-spacing:-0.039864pt;}
.ls41{letter-spacing:-0.034169pt;}
.ls2e{letter-spacing:-0.028474pt;}
.lsa0{letter-spacing:-0.025985pt;}
.ls25{letter-spacing:-0.024896pt;}
.ls29{letter-spacing:-0.024584pt;}
.ls43{letter-spacing:-0.022780pt;}
.ls16{letter-spacing:-0.020788pt;}
.ls1a{letter-spacing:-0.018672pt;}
.ls2c{letter-spacing:-0.017085pt;}
.ls9e{letter-spacing:-0.015591pt;}
.ls1e{letter-spacing:-0.012448pt;}
.ls2b{letter-spacing:-0.011390pt;}
.ls9d{letter-spacing:-0.010394pt;}
.ls1f{letter-spacing:-0.009834pt;}
.ls22{letter-spacing:-0.006224pt;}
.ls49{letter-spacing:-0.005695pt;}
.ls3d{letter-spacing:-0.005197pt;}
.ls15{letter-spacing:0.000000pt;}
.lsa7{letter-spacing:0.004917pt;}
.ls96{letter-spacing:0.005197pt;}
.ls34{letter-spacing:0.005695pt;}
.lsa{letter-spacing:0.006224pt;}
.ls2{letter-spacing:0.009336pt;}
.lsd{letter-spacing:0.011390pt;}
.lsb{letter-spacing:0.012448pt;}
.ls59{letter-spacing:0.015591pt;}
.ls13{letter-spacing:0.017085pt;}
.ls10{letter-spacing:0.018672pt;}
.ls87{letter-spacing:0.020788pt;}
.ls1b{letter-spacing:0.021753pt;}
.ls32{letter-spacing:0.022780pt;}
.ls8{letter-spacing:0.024896pt;}
.ls33{letter-spacing:0.028474pt;}
.ls79{letter-spacing:0.030560pt;}
.ls4{letter-spacing:0.031120pt;}
.ls97{letter-spacing:0.031182pt;}
.ls31{letter-spacing:0.034169pt;}
.ls37{letter-spacing:0.036410pt;}
.lsc{letter-spacing:0.037344pt;}
.ls12{letter-spacing:0.039864pt;}
.ls3{letter-spacing:0.043505pt;}
.ls5b{letter-spacing:0.045559pt;}
.lse{letter-spacing:0.049792pt;}
.ls1{letter-spacing:0.051254pt;}
.ls57{letter-spacing:0.051970pt;}
.ls36{letter-spacing:0.054085pt;}
.ls5{letter-spacing:0.056016pt;}
.ls11{letter-spacing:0.056949pt;}
.lsa5{letter-spacing:0.059002pt;}
.ls89{letter-spacing:0.062644pt;}
.ls35{letter-spacing:0.068339pt;}
.ls14{letter-spacing:0.074033pt;}
.ls78{letter-spacing:0.076480pt;}
.ls66{letter-spacing:0.079728pt;}
.ls86{letter-spacing:0.085423pt;}
.ls4e{letter-spacing:0.087384pt;}
.ls9{letter-spacing:0.099584pt;}
.lsf{letter-spacing:0.100816pt;}
.ls5a{letter-spacing:0.102508pt;}
.ls8c{letter-spacing:0.103520pt;}
.lsa4{letter-spacing:0.114334pt;}
.ls17{letter-spacing:0.115889pt;}
.ls58{letter-spacing:0.119531pt;}
.ls3c{letter-spacing:0.120000pt;}
.ls30{letter-spacing:0.124728pt;}
.ls76{letter-spacing:0.125287pt;}
.ls0{letter-spacing:0.129925pt;}
.ls6{letter-spacing:0.130560pt;}
.lsab{letter-spacing:0.130982pt;}
.ls7{letter-spacing:0.136928pt;}
.ls3b{letter-spacing:0.136975pt;}
.lsac{letter-spacing:0.142372pt;}
.lsae{letter-spacing:0.148067pt;}
.lsa1{letter-spacing:0.150713pt;}
.ls67{letter-spacing:0.159457pt;}
.ls3a{letter-spacing:0.170846pt;}
.lsa3{letter-spacing:0.182236pt;}
.lsaf{letter-spacing:0.199321pt;}
.ls8a{letter-spacing:0.203647pt;}
.lsad{letter-spacing:0.205016pt;}
.ls91{letter-spacing:0.227795pt;}
.lsb1{letter-spacing:0.233490pt;}
.ls68{letter-spacing:0.239185pt;}
.ls38{letter-spacing:0.244880pt;}
.ls39{letter-spacing:0.250575pt;}
.ls52{letter-spacing:0.267659pt;}
.ls9a{letter-spacing:0.279049pt;}
.ls82{letter-spacing:0.284744pt;}
.ls53{letter-spacing:0.290439pt;}
.ls46{letter-spacing:0.296134pt;}
.ls44{letter-spacing:0.301829pt;}
.ls4c{letter-spacing:0.307524pt;}
.ls4d{letter-spacing:0.324608pt;}
.ls48{letter-spacing:0.330303pt;}
.ls4b{letter-spacing:0.335998pt;}
.ls84{letter-spacing:0.341693pt;}
.ls51{letter-spacing:0.347388pt;}
.ls8d{letter-spacing:0.353083pt;}
.lsb3{letter-spacing:0.370167pt;}
.ls54{letter-spacing:0.374185pt;}
.ls77{letter-spacing:0.387252pt;}
.ls2a{letter-spacing:0.413016pt;}
.lsa6{letter-spacing:0.441904pt;}
.ls8b{letter-spacing:0.449896pt;}
.ls88{letter-spacing:0.523929pt;}
.ls6d{letter-spacing:0.962304pt;}
.ls6f{letter-spacing:4.915361pt;}
.ls64{letter-spacing:13.260903pt;}
.ls65{letter-spacing:14.823023pt;}
.lsa8{letter-spacing:20.006113pt;}
.ls70{letter-spacing:23.835304pt;}
.ls6b{letter-spacing:23.836725pt;}
.ls6e{letter-spacing:93.042176pt;}
.ls28{letter-spacing:170.998176pt;}
.ls75{letter-spacing:172.321374pt;}
.ls7f{letter-spacing:172.640287pt;}
.ls6c{letter-spacing:174.437024pt;}
.ls61{letter-spacing:202.923885pt;}
.ls63{letter-spacing:203.240600pt;}
.ls5f{letter-spacing:207.239768pt;}
.ls71{letter-spacing:273.634096pt;}
.ls73{letter-spacing:728.507549pt;}
.ls62{letter-spacing:752.860055pt;}
.ls7b{letter-spacing:765.336367pt;}
.ls5e{letter-spacing:768.561831pt;}
.ls60{letter-spacing:781.366185pt;}
.ls6a{letter-spacing:842.783278pt;}
.ls69{letter-spacing:847.969428pt;}
.ls19{letter-spacing:924.497400pt;}
.ls72{letter-spacing:1003.682800pt;}
.ls74{letter-spacing:1291.492836pt;}
.ls5d{letter-spacing:1673.407467pt;}
.wsb6{word-spacing:-56.948800pt;}
.wsdc{word-spacing:-51.970133pt;}
.ws98{word-spacing:-33.541175pt;}
.ws9b{word-spacing:-32.815047pt;}
.ws96{word-spacing:-31.736299pt;}
.wsa0{word-spacing:-31.614100pt;}
.wsa5{word-spacing:-31.493727pt;}
.wsb3{word-spacing:-31.447338pt;}
.ws99{word-spacing:-31.049390pt;}
.wsb4{word-spacing:-29.755214pt;}
.ws3{word-spacing:-15.560000pt;}
.ws3a{word-spacing:-14.561808pt;}
.ws97{word-spacing:-14.451867pt;}
.ws9c{word-spacing:-14.280000pt;}
.wsb5{word-spacing:-14.237200pt;}
.ws13c{word-spacing:-14.197336pt;}
.wsdd{word-spacing:-14.168861pt;}
.ws9a{word-spacing:-14.139067pt;}
.ws12e{word-spacing:-14.128997pt;}
.ws11b{word-spacing:-13.810084pt;}
.wsa1{word-spacing:-13.621600pt;}
.wsa6{word-spacing:-13.569733pt;}
.wsb2{word-spacing:-13.549733pt;}
.wsaa{word-spacing:-13.389333pt;}
.ws11c{word-spacing:-12.997730pt;}
.ws88{word-spacing:-12.950957pt;}
.ws87{word-spacing:-12.878199pt;}
.ws11d{word-spacing:-12.717092pt;}
.wsab{word-spacing:-12.631600pt;}
.ws11e{word-spacing:-12.561181pt;}
.ws12c{word-spacing:-12.351136pt;}
.ws12d{word-spacing:-12.297050pt;}
.ws0{word-spacing:-12.282300pt;}
.ws2{word-spacing:-12.267549pt;}
.wsb7{word-spacing:-12.198713pt;}
.wsde{word-spacing:-12.183963pt;}
.ws3b{word-spacing:-9.189918pt;}
.ws39{word-spacing:-9.138943pt;}
.ws1{word-spacing:-9.102533pt;}
.wsaf{word-spacing:-8.694740pt;}
.wsb1{word-spacing:-7.903733pt;}
.ws9e{word-spacing:-5.254723pt;}
.ws16b{word-spacing:-0.552403pt;}
.wsd1{word-spacing:-0.546708pt;}
.ws2c{word-spacing:-0.541488pt;}
.wsbe{word-spacing:-0.535319pt;}
.ws83{word-spacing:-0.449896pt;}
.ws144{word-spacing:-0.404336pt;}
.ws152{word-spacing:-0.364472pt;}
.ws159{word-spacing:-0.358777pt;}
.ws84{word-spacing:-0.330303pt;}
.ws142{word-spacing:-0.301829pt;}
.ws14f{word-spacing:-0.290439pt;}
.ws108{word-spacing:-0.284744pt;}
.ws10{word-spacing:-0.255184pt;}
.ws85{word-spacing:-0.244260pt;}
.ws82{word-spacing:-0.233490pt;}
.wsd{word-spacing:-0.230288pt;}
.ws6{word-spacing:-0.223500pt;}
.ws12a{word-spacing:-0.223472pt;}
.ws160{word-spacing:-0.222100pt;}
.ws100{word-spacing:-0.216405pt;}
.ws7{word-spacing:-0.210711pt;}
.ws139{word-spacing:-0.205016pt;}
.wsce{word-spacing:-0.199321pt;}
.wsbf{word-spacing:-0.193626pt;}
.ws158{word-spacing:-0.187931pt;}
.wsd3{word-spacing:-0.186840pt;}
.ws50{word-spacing:-0.182236pt;}
.ws6b{word-spacing:-0.176541pt;}
.ws130{word-spacing:-0.171501pt;}
.ws112{word-spacing:-0.165152pt;}
.ws95{word-spacing:-0.153762pt;}
.ws9{word-spacing:-0.149376pt;}
.wscb{word-spacing:-0.148067pt;}
.wsc7{word-spacing:-0.142372pt;}
.wsd0{word-spacing:-0.136677pt;}
.ws16c{word-spacing:-0.130982pt;}
.wsed{word-spacing:-0.125287pt;}
.wsd2{word-spacing:-0.119592pt;}
.wsee{word-spacing:-0.113898pt;}
.ws13d{word-spacing:-0.102508pt;}
.wscf{word-spacing:-0.096813pt;}
.wsbd{word-spacing:-0.091118pt;}
.ws146{word-spacing:-0.085423pt;}
.ws107{word-spacing:-0.068339pt;}
.wsc{word-spacing:-0.065258pt;}
.ws165{word-spacing:-0.017085pt;}
.ws131{word-spacing:-0.015591pt;}
.ws3f{word-spacing:-0.005197pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.009336pt;}
.ws8a{word-spacing:0.010394pt;}
.ws12f{word-spacing:0.015591pt;}
.ws168{word-spacing:0.017085pt;}
.ws3e{word-spacing:0.033111pt;}
.ws140{word-spacing:0.034169pt;}
.wsa{word-spacing:0.037344pt;}
.wse{word-spacing:0.062240pt;}
.ws89{word-spacing:0.077955pt;}
.wsec{word-spacing:0.079728pt;}
.ws65{word-spacing:0.096813pt;}
.ws1e{word-spacing:0.105808pt;}
.ws8b{word-spacing:0.109137pt;}
.ws81{word-spacing:0.113898pt;}
.ws3d{word-spacing:0.129925pt;}
.ws6c{word-spacing:0.132755pt;}
.ws3c{word-spacing:0.135122pt;}
.wsc2{word-spacing:0.136677pt;}
.ws129{word-spacing:0.145516pt;}
.ws56{word-spacing:0.148067pt;}
.ws5{word-spacing:0.150713pt;}
.ws12b{word-spacing:0.155910pt;}
.ws15d{word-spacing:0.159457pt;}
.wsb{word-spacing:0.174021pt;}
.ws86{word-spacing:0.181895pt;}
.ws8f{word-spacing:0.182236pt;}
.ws116{word-spacing:0.187931pt;}
.ws8e{word-spacing:0.193626pt;}
.wseb{word-spacing:0.205016pt;}
.wsbc{word-spacing:0.210711pt;}
.wsef{word-spacing:0.218275pt;}
.ws117{word-spacing:0.222100pt;}
.ws5d{word-spacing:0.227795pt;}
.ws15c{word-spacing:0.233490pt;}
.wsc5{word-spacing:0.438506pt;}
.ws5e{word-spacing:0.455590pt;}
.ws1f{word-spacing:0.466800pt;}
.ws150{word-spacing:0.466980pt;}
.ws57{word-spacing:0.478370pt;}
.wsc6{word-spacing:0.484065pt;}
.wsf4{word-spacing:0.495455pt;}
.ws5a{word-spacing:0.506844pt;}
.ws15e{word-spacing:0.512539pt;}
.ws5f{word-spacing:0.523929pt;}
.wsf{word-spacing:0.551067pt;}
.ws137{word-spacing:0.751724pt;}
.ws102{word-spacing:0.763114pt;}
.ws151{word-spacing:0.780199pt;}
.ws138{word-spacing:0.785893pt;}
.ws21{word-spacing:0.791588pt;}
.ws101{word-spacing:0.797283pt;}
.wsd5{word-spacing:0.808673pt;}
.ws4d{word-spacing:0.814368pt;}
.ws5b{word-spacing:0.820063pt;}
.ws4e{word-spacing:0.842842pt;}
.wsd4{word-spacing:0.865622pt;}
.ws20{word-spacing:1.045632pt;}
.wsba{word-spacing:1.082027pt;}
.wse3{word-spacing:1.104807pt;}
.wsbb{word-spacing:1.110502pt;}
.ws66{word-spacing:1.138976pt;}
.wsc8{word-spacing:1.144671pt;}
.ws10b{word-spacing:1.150366pt;}
.ws22{word-spacing:1.188784pt;}
.ws13f{word-spacing:1.406635pt;}
.ws13e{word-spacing:1.418025pt;}
.ws61{word-spacing:1.423720pt;}
.ws10e{word-spacing:1.435110pt;}
.wse4{word-spacing:1.440805pt;}
.wsc9{word-spacing:1.446500pt;}
.ws51{word-spacing:1.474974pt;}
.wsca{word-spacing:1.537618pt;}
.wse0{word-spacing:1.731244pt;}
.ws60{word-spacing:1.856531pt;}
.ws36{word-spacing:2.010293pt;}
.ws8c{word-spacing:2.033072pt;}
.ws69{word-spacing:2.055852pt;}
.ws6a{word-spacing:2.061547pt;}
.ws35{word-spacing:2.067241pt;}
.ws8d{word-spacing:2.095716pt;}
.wsdf{word-spacing:2.118495pt;}
.ws156{word-spacing:2.169749pt;}
.ws75{word-spacing:2.363375pt;}
.wse6{word-spacing:2.374765pt;}
.ws38{word-spacing:2.403239pt;}
.wsf7{word-spacing:2.408934pt;}
.ws37{word-spacing:2.414629pt;}
.ws110{word-spacing:2.420324pt;}
.ws11a{word-spacing:2.426019pt;}
.ws74{word-spacing:2.437409pt;}
.ws114{word-spacing:2.448798pt;}
.wse5{word-spacing:2.494357pt;}
.ws157{word-spacing:2.574086pt;}
.ws115{word-spacing:2.670899pt;}
.ws141{word-spacing:2.676594pt;}
.wsd8{word-spacing:2.699373pt;}
.wsf6{word-spacing:2.705068pt;}
.ws111{word-spacing:2.710763pt;}
.wsd7{word-spacing:2.716458pt;}
.ws49{word-spacing:2.722153pt;}
.ws43{word-spacing:2.733542pt;}
.ws4f{word-spacing:2.739237pt;}
.ws155{word-spacing:2.744932pt;}
.ws45{word-spacing:2.750627pt;}
.ws76{word-spacing:2.756322pt;}
.ws118{word-spacing:2.767712pt;}
.wsf1{word-spacing:2.836050pt;}
.ws44{word-spacing:2.858830pt;}
.ws10f{word-spacing:2.898694pt;}
.ws93{word-spacing:3.012592pt;}
.ws154{word-spacing:3.018286pt;}
.wsf5{word-spacing:3.041066pt;}
.ws92{word-spacing:3.046761pt;}
.ws19{word-spacing:3.049760pt;}
.ws72{word-spacing:3.052456pt;}
.ws48{word-spacing:3.080930pt;}
.ws119{word-spacing:3.092320pt;}
.ws73{word-spacing:3.320115pt;}
.ws18{word-spacing:3.323616pt;}
.ws62{word-spacing:3.354284pt;}
.ws30{word-spacing:3.371369pt;}
.ws7f{word-spacing:3.388454pt;}
.wsb8{word-spacing:3.405538pt;}
.ws153{word-spacing:3.422623pt;}
.ws7c{word-spacing:3.616249pt;}
.ws126{word-spacing:3.627515pt;}
.ws2f{word-spacing:3.644723pt;}
.wsf0{word-spacing:3.678892pt;}
.ws7d{word-spacing:3.684587pt;}
.ws10a{word-spacing:3.690282pt;}
.ws94{word-spacing:3.695977pt;}
.wsb9{word-spacing:3.701672pt;}
.ws47{word-spacing:3.713062pt;}
.ws80{word-spacing:3.718757pt;}
.ws7e{word-spacing:3.764316pt;}
.ws7a{word-spacing:3.804180pt;}
.wsf2{word-spacing:3.940857pt;}
.wsdb{word-spacing:3.963636pt;}
.ws127{word-spacing:3.970518pt;}
.ws128{word-spacing:3.975715pt;}
.ws46{word-spacing:3.986416pt;}
.ws7b{word-spacing:4.003501pt;}
.ws4a{word-spacing:4.014890pt;}
.ws125{word-spacing:4.038079pt;}
.ws67{word-spacing:4.043365pt;}
.ws109{word-spacing:4.049060pt;}
.wsf3{word-spacing:4.054755pt;}
.ws68{word-spacing:4.123093pt;}
.ws1a{word-spacing:4.269664pt;}
.wsd6{word-spacing:4.322414pt;}
.ws1b{word-spacing:4.325680pt;}
.wsff{word-spacing:4.590073pt;}
.wse9{word-spacing:4.595768pt;}
.wsea{word-spacing:4.618548pt;}
.ws14b{word-spacing:4.624243pt;}
.ws14c{word-spacing:4.641327pt;}
.ws124{word-spacing:4.709666pt;}
.ws123{word-spacing:4.726750pt;}
.ws2b{word-spacing:4.867168pt;}
.ws2a{word-spacing:4.904512pt;}
.ws10d{word-spacing:4.908987pt;}
.ws10c{word-spacing:4.920376pt;}
.ws32{word-spacing:4.943156pt;}
.ws29{word-spacing:4.985424pt;}
.ws34{word-spacing:4.988715pt;}
.ws33{word-spacing:5.057053pt;}
.wsf8{word-spacing:5.637931pt;}
.wsfa{word-spacing:5.694880pt;}
.ws71{word-spacing:5.951150pt;}
.wsf9{word-spacing:5.979624pt;}
.ws2e{word-spacing:6.184640pt;}
.ws2d{word-spacing:6.190335pt;}
.ws105{word-spacing:6.201724pt;}
.ws79{word-spacing:6.213114pt;}
.ws106{word-spacing:6.224504pt;}
.wsfc{word-spacing:6.230199pt;}
.wsfe{word-spacing:6.252978pt;}
.ws53{word-spacing:6.526332pt;}
.ws15f{word-spacing:6.549112pt;}
.wsfb{word-spacing:6.554807pt;}
.wsfd{word-spacing:6.600366pt;}
.ws52{word-spacing:6.606061pt;}
.ws162{word-spacing:6.833856pt;}
.ws169{word-spacing:6.907889pt;}
.wsae{word-spacing:6.908160pt;}
.ws136{word-spacing:6.913584pt;}
.ws16a{word-spacing:6.942059pt;}
.ws16{word-spacing:7.151376pt;}
.ws161{word-spacing:7.181244pt;}
.ws77{word-spacing:7.198328pt;}
.ws17{word-spacing:7.207392pt;}
.ws78{word-spacing:7.221108pt;}
.wsda{word-spacing:7.511547pt;}
.wsd9{word-spacing:7.517242pt;}
.ws121{word-spacing:7.773511pt;}
.ws122{word-spacing:7.807680pt;}
.ws120{word-spacing:7.858934pt;}
.ws11f{word-spacing:7.881714pt;}
.ws64{word-spacing:8.120899pt;}
.ws143{word-spacing:8.149373pt;}
.ws63{word-spacing:8.166458pt;}
.ws14a{word-spacing:8.172153pt;}
.ws41{word-spacing:8.451202pt;}
.ws42{word-spacing:8.462592pt;}
.ws40{word-spacing:8.468287pt;}
.ws149{word-spacing:8.485371pt;}
.ws24{word-spacing:8.750944pt;}
.ws145{word-spacing:8.770115pt;}
.ws23{word-spacing:8.775840pt;}
.wse2{word-spacing:8.792895pt;}
.ws15a{word-spacing:8.809979pt;}
.wse1{word-spacing:8.821369pt;}
.ws13{word-spacing:9.099488pt;}
.ws13a{word-spacing:9.430721pt;}
.ws13b{word-spacing:9.544619pt;}
.wsc4{word-spacing:9.778109pt;}
.wsc3{word-spacing:9.869227pt;}
.ws26{word-spacing:10.033088pt;}
.ws4c{word-spacing:10.051463pt;}
.ws4b{word-spacing:10.057158pt;}
.ws25{word-spacing:10.082880pt;}
.wscc{word-spacing:10.131192pt;}
.ws1c{word-spacing:10.375408pt;}
.ws104{word-spacing:10.398851pt;}
.ws103{word-spacing:10.421630pt;}
.wscd{word-spacing:10.433020pt;}
.wsb0{word-spacing:10.657122pt;}
.ws134{word-spacing:10.729154pt;}
.ws1d{word-spacing:10.761296pt;}
.ws135{word-spacing:11.105016pt;}
.ws15{word-spacing:11.688672pt;}
.ws14{word-spacing:11.850496pt;}
.ws113{word-spacing:11.987722pt;}
.ws6e{word-spacing:12.318025pt;}
.ws147{word-spacing:12.335110pt;}
.ws148{word-spacing:12.340805pt;}
.ws6d{word-spacing:12.369279pt;}
.ws132{word-spacing:12.654023pt;}
.ws31{word-spacing:12.659718pt;}
.ws58{word-spacing:12.933072pt;}
.ws133{word-spacing:12.995716pt;}
.ws59{word-spacing:13.308935pt;}
.wse7{word-spacing:13.331714pt;}
.wse8{word-spacing:13.639238pt;}
.ws90{word-spacing:13.821474pt;}
.ws28{word-spacing:13.885744pt;}
.ws5c{word-spacing:13.941066pt;}
.ws164{word-spacing:13.952456pt;}
.ws163{word-spacing:13.958151pt;}
.ws91{word-spacing:14.197336pt;}
.ws27{word-spacing:14.203168pt;}
.ws166{word-spacing:16.139290pt;}
.ws167{word-spacing:16.173459pt;}
.ws14e{word-spacing:16.754337pt;}
.ws14d{word-spacing:16.782811pt;}
.ws70{word-spacing:17.073250pt;}
.ws6f{word-spacing:17.101725pt;}
.ws54{word-spacing:18.667817pt;}
.ws55{word-spacing:18.724765pt;}
.ws15b{word-spacing:18.981035pt;}
.ws12{word-spacing:21.142928pt;}
.ws11{word-spacing:21.217616pt;}
.wsac{word-spacing:56.203159pt;}
.wsc0{word-spacing:81.493733pt;}
.wsc1{word-spacing:88.213691pt;}
.ws9f{word-spacing:129.638198pt;}
.wsad{word-spacing:160.202082pt;}
.ws9d{word-spacing:310.401520pt;}
.wsa2{word-spacing:1034.398348pt;}
.wsa7{word-spacing:1034.813778pt;}
.wsa8{word-spacing:1550.325750pt;}
.wsa3{word-spacing:1553.292843pt;}
.wsa9{word-spacing:1794.019432pt;}
.wsa4{word-spacing:1798.426567pt;}
._4e{margin-left:-768.471778pt;}
._3f{margin-left:-766.607681pt;}
._47{margin-left:-761.964116pt;}
._54{margin-left:-757.405769pt;}
._53{margin-left:-645.539354pt;}
._46{margin-left:-642.776061pt;}
._51{margin-left:-464.886194pt;}
._43{margin-left:-462.235374pt;}
._45{margin-left:-459.353044pt;}
._52{margin-left:-449.845501pt;}
._1b{margin-left:-438.008649pt;}
._1a{margin-left:-431.245429pt;}
._2e{margin-left:-428.860989pt;}
._2f{margin-left:-422.435456pt;}
._6b{margin-left:-400.045659pt;}
._c{margin-left:-393.015624pt;}
._20{margin-left:-380.171225pt;}
._21{margin-left:-367.044515pt;}
._19{margin-left:-365.221794pt;}
._17{margin-left:-358.822507pt;}
._2b{margin-left:-357.560029pt;}
._2d{margin-left:-351.163515pt;}
._13{margin-left:-317.865917pt;}
._28{margin-left:-306.676356pt;}
._69{margin-left:-280.998294pt;}
._41{margin-left:-277.913332pt;}
._50{margin-left:-276.838844pt;}
._44{margin-left:-271.832650pt;}
._6d{margin-left:-261.114201pt;}
._6c{margin-left:-259.835106pt;}
._6a{margin-left:-254.620335pt;}
._38{margin-left:-249.492258pt;}
._49{margin-left:-247.010640pt;}
._40{margin-left:-237.593396pt;}
._4f{margin-left:-236.200206pt;}
._68{margin-left:-225.876666pt;}
._64{margin-left:-217.066728pt;}
._6e{margin-left:-214.074947pt;}
._60{margin-left:-195.645853pt;}
._62{margin-left:-192.433313pt;}
._57{margin-left:-184.047336pt;}
._18{margin-left:-180.584745pt;}
._29{margin-left:-176.438585pt;}
._59{margin-left:-175.341766pt;}
._15{margin-left:-173.861737pt;}
._1c{margin-left:-172.156222pt;}
._2c{margin-left:-170.358786pt;}
._16{margin-left:-160.421501pt;}
._65{margin-left:-159.464102pt;}
._2a{margin-left:-157.237733pt;}
._14{margin-left:-155.779561pt;}
._26{margin-left:-152.509629pt;}
._39{margin-left:-151.338827pt;}
._3d{margin-left:-150.120929pt;}
._5c{margin-left:-147.517440pt;}
._10{margin-left:-146.183522pt;}
._4d{margin-left:-144.577367pt;}
._f{margin-left:-142.501186pt;}
._25{margin-left:-139.637422pt;}
._e{margin-left:-135.466017pt;}
._24{margin-left:-132.596167pt;}
._35{margin-left:-131.021856pt;}
._33{margin-left:-129.422496pt;}
._b{margin-left:-127.095496pt;}
._1f{margin-left:-124.491654pt;}
._37{margin-left:-112.298520pt;}
._36{margin-left:-107.292407pt;}
._4c{margin-left:-105.952478pt;}
._3e{margin-left:-102.674172pt;}
._3c{margin-left:-101.379607pt;}
._42{margin-left:-100.314911pt;}
._3a{margin-left:-96.953100pt;}
._a{margin-left:-96.058667pt;}
._66{margin-left:-95.059509pt;}
._1e{margin-left:-93.770290pt;}
._4a{margin-left:-87.665905pt;}
._12{margin-left:-82.346736pt;}
._27{margin-left:-79.699827pt;}
._22{margin-left:-77.131436pt;}
._5d{margin-left:-75.635953pt;}
._5a{margin-left:-69.283719pt;}
._63{margin-left:-68.279816pt;}
._34{margin-left:-63.461210pt;}
._1d{margin-left:-59.198278pt;}
._30{margin-left:-55.678842pt;}
._d{margin-left:-49.327111pt;}
._23{margin-left:-48.270774pt;}
._67{margin-left:-47.338419pt;}
._11{margin-left:-45.170754pt;}
._4b{margin-left:-43.993075pt;}
._3b{margin-left:-42.782721pt;}
._61{margin-left:-40.860576pt;}
._5e{margin-left:-29.566286pt;}
._5f{margin-left:-27.350079pt;}
._6f{margin-left:-17.968444pt;}
._75{margin-left:-6.514943pt;}
._0{margin-left:-0.966644pt;}
._1{width:0.970944pt;}
._58{width:5.282114pt;}
._31{width:6.297850pt;}
._70{width:11.002508pt;}
._56{width:24.732864pt;}
._55{width:84.158937pt;}
._2{width:88.926948pt;}
._48{width:90.878895pt;}
._5b{width:154.871116pt;}
._3{width:161.588725pt;}
._6{width:286.093687pt;}
._7{width:292.175818pt;}
._4{width:308.499204pt;}
._5{width:325.270425pt;}
._8{width:351.374096pt;}
._9{width:393.613021pt;}
._32{width:403.750862pt;}
._71{width:976.878865pt;}
._73{width:1060.115213pt;}
._74{width:1104.492705pt;}
._72{width:1930.161894pt;}
.fs32{font-size:15.560000pt;}
.fs9{font-size:20.850133pt;}
.fs26{font-size:29.472533pt;}
.fsb{font-size:31.120000pt;}
.fs23{font-size:31.241067pt;}
.fs2a{font-size:31.245333pt;}
.fs27{font-size:31.360000pt;}
.fs2e{font-size:31.614933pt;}
.fs20{font-size:31.662400pt;}
.fs1d{font-size:31.783467pt;}
.fs12{font-size:32.991467pt;}
.fse{font-size:33.721067pt;}
.fs7{font-size:36.410133pt;}
.fs2{font-size:41.388800pt;}
.fs6{font-size:49.168533pt;}
.fs2c{font-size:50.414933pt;}
.fs25{font-size:50.526400pt;}
.fs1{font-size:51.970133pt;}
.fs2d{font-size:53.282033pt;}
.fs24{font-size:53.399583pt;}
.fs22{font-size:53.557333pt;}
.fs29{font-size:53.562667pt;}
.fs28{font-size:53.760000pt;}
.fs2f{font-size:54.198933pt;}
.fs1f{font-size:54.278933pt;}
.fs1c{font-size:54.486400pt;}
.fs19{font-size:56.502400pt;}
.fs10{font-size:56.556267pt;}
.fs21{font-size:56.603115pt;}
.fs2b{font-size:56.608679pt;}
.fs3{font-size:56.948800pt;}
.fs16{font-size:57.120000pt;}
.fs30{font-size:57.281126pt;}
.fs1e{font-size:57.365624pt;}
.fs14{font-size:57.374933pt;}
.fs1b{font-size:57.584882pt;}
.fsc{font-size:57.807467pt;}
.fs18{font-size:59.715908pt;}
.fs13{font-size:59.772399pt;}
.fs1a{font-size:59.860947pt;}
.fs15{font-size:60.142273pt;}
.fs17{font-size:60.368104pt;}
.fsf{font-size:61.095037pt;}
.fs0{font-size:62.240000pt;}
.fs5{font-size:72.508800pt;}
.fs11{font-size:84.833600pt;}
.fsd{font-size:86.712533pt;}
.fs4{font-size:93.360000pt;}
.fs8{font-size:248.960000pt;}
.fsa{font-size:256.740267pt;}
.fs31{font-size:264.520000pt;}
.y0{bottom:0.000000pt;}
.y13e{bottom:2.720533pt;}
.y110{bottom:3.120400pt;}
.y117{bottom:3.120533pt;}
.y5{bottom:51.707067pt;}
.y4{bottom:69.384169pt;}
.y38{bottom:69.387067pt;}
.y15c{bottom:125.788954pt;}
.y81{bottom:127.309290pt;}
.y194{bottom:134.587067pt;}
.y6c{bottom:136.107200pt;}
.y184{bottom:136.988176pt;}
.y33{bottom:138.429290pt;}
.y15b{bottom:141.868447pt;}
.y80{bottom:143.309055pt;}
.y6b{bottom:148.507067pt;}
.y193{bottom:149.868428pt;}
.y1ae{bottom:151.308549pt;}
.y183{bottom:152.987941pt;}
.y185{bottom:153.547067pt;}
.y32{bottom:154.429055pt;}
.y15a{bottom:157.947941pt;}
.y15d{bottom:158.587067pt;}
.y7f{bottom:159.388549pt;}
.y192{bottom:165.228201pt;}
.y1ad{bottom:167.308314pt;}
.y182{bottom:168.987706pt;}
.y31{bottom:170.508549pt;}
.y6a{bottom:170.907067pt;}
.y159{bottom:173.947706pt;}
.y7e{bottom:175.468042pt;}
.y191{bottom:179.787634pt;}
.y1ac{bottom:183.387808pt;}
.y181{bottom:185.067200pt;}
.y30{bottom:186.588042pt;}
.y34{bottom:188.987067pt;}
.y158{bottom:190.027200pt;}
.y7d{bottom:191.467808pt;}
.y190{bottom:194.347067pt;}
.y1ab{bottom:199.387573pt;}
.y180{bottom:200.747067pt;}
.y2f{bottom:202.587808pt;}
.y157{bottom:206.266507pt;}
.y7c{bottom:207.547301pt;}
.y69{bottom:207.867067pt;}
.y18f{bottom:213.307215pt;}
.y1aa{bottom:215.467067pt;}
.y17f{bottom:215.947067pt;}
.y2e{bottom:218.667301pt;}
.y7b{bottom:223.548314pt;}
.y156{bottom:223.786859pt;}
.y18e{bottom:226.347067pt;}
.y1a9{bottom:231.707067pt;}
.y68{bottom:232.106890pt;}
.y17e{bottom:233.229113pt;}
.y2d{bottom:234.667067pt;}
.y7a{bottom:239.627808pt;}
.y155{bottom:241.307419pt;}
.y67{bottom:248.106656pt;}
.y1a8{bottom:248.507067pt;}
.y17d{bottom:249.228878pt;}
.y2c{bottom:250.904827pt;}
.y79{bottom:255.707301pt;}
.y154{bottom:258.747067pt;}
.y66{bottom:264.267301pt;}
.y1a7{bottom:265.146991pt;}
.y17c{bottom:265.308372pt;}
.y2b{bottom:268.425387pt;}
.y78{bottom:271.707067pt;}
.y153{bottom:276.027067pt;}
.y65{bottom:280.269290pt;}
.y17b{bottom:281.387866pt;}
.y1a6{bottom:283.308314pt;}
.y77{bottom:285.227067pt;}
.y2a{bottom:285.945947pt;}
.y152{bottom:289.627067pt;}
.y76{bottom:293.307067pt;}
.y64{bottom:296.269055pt;}
.y17a{bottom:297.387631pt;}
.y151{bottom:298.027067pt;}
.y1bc{bottom:299.227631pt;}
.y1a5{bottom:299.308079pt;}
.y1af{bottom:300.027067pt;}
.y29{bottom:303.466507pt;}
.y75{bottom:306.667200pt;}
.y150{bottom:311.547067pt;}
.y63{bottom:312.348549pt;}
.y74{bottom:313.227067pt;}
.y179{bottom:313.387397pt;}
.y1bb{bottom:315.307125pt;}
.y1a4{bottom:315.387573pt;}
.y14f{bottom:319.867301pt;}
.y28{bottom:320.986299pt;}
.y62{bottom:328.428042pt;}
.y178{bottom:329.548042pt;}
.y1ba{bottom:331.306890pt;}
.y1a3{bottom:331.467067pt;}
.y14e{bottom:335.867067pt;}
.y27{bottom:338.425947pt;}
.y61{bottom:344.427808pt;}
.y177{bottom:345.547808pt;}
.y1b9{bottom:347.306656pt;}
.y1a2{bottom:347.706507pt;}
.y14d{bottom:349.387067pt;}
.y147{bottom:354.027067pt;}
.y26{bottom:355.946507pt;}
.y14c{bottom:359.307067pt;}
.y60{bottom:360.507301pt;}
.y176{bottom:361.547573pt;}
.y1b8{bottom:363.467301pt;}
.y1a1{bottom:365.225947pt;}
.y149{bottom:366.347370pt;}
.y14b{bottom:369.787785pt;}
.y25{bottom:373.465739pt;}
.y5f{bottom:376.508036pt;}
.y175{bottom:377.629290pt;}
.y14a{bottom:378.267209pt;}
.y1b7{bottom:379.467067pt;}
.y1a0{bottom:382.746507pt;}
.y148{bottom:384.347333pt;}
.y24{bottom:390.986299pt;}
.y5e{bottom:392.587530pt;}
.y174{bottom:393.708783pt;}
.y146{bottom:394.747200pt;}
.y1b6{bottom:395.478606pt;}
.y13d{bottom:399.226667pt;}
.y138{bottom:399.307067pt;}
.y19f{bottom:400.267067pt;}
.y13c{bottom:401.947148pt;}
.y13a{bottom:406.106973pt;}
.y23{bottom:408.506859pt;}
.y5d{bottom:408.667024pt;}
.y173{bottom:409.708549pt;}
.y1b5{bottom:411.558100pt;}
.y141{bottom:412.347067pt;}
.y198{bottom:414.267067pt;}
.y197{bottom:416.187200pt;}
.y19e{bottom:417.147200pt;}
.y13b{bottom:417.306863pt;}
.y139{bottom:421.547067pt;}
.y140{bottom:421.547235pt;}
.y144{bottom:422.107200pt;}
.y143{bottom:422.107398pt;}
.y5c{bottom:424.666789pt;}
.y145{bottom:425.227067pt;}
.y172{bottom:425.708314pt;}
.y22{bottom:425.946507pt;}
.y6d{bottom:427.147200pt;}
.y1b4{bottom:427.637594pt;}
.y19d{bottom:428.347067pt;}
.y13f{bottom:429.947200pt;}
.y142{bottom:430.027584pt;}
.y5b{bottom:440.666554pt;}
.y171{bottom:441.787808pt;}
.y18d{bottom:442.907620pt;}
.y21{bottom:443.463499pt;}
.y1b3{bottom:443.637359pt;}
.y137{bottom:444.107200pt;}
.y136{bottom:452.427301pt;}
.y18c{bottom:456.027200pt;}
.y5a{bottom:456.827200pt;}
.y170{bottom:457.867301pt;}
.y1b2{bottom:459.637124pt;}
.y20{bottom:460.984059pt;}
.y135{bottom:468.428314pt;}
.y59{bottom:473.066507pt;}
.y16f{bottom:473.867573pt;}
.y1b1{bottom:475.716618pt;}
.y1f{bottom:478.504619pt;}
.y134{bottom:484.507808pt;}
.y16e{bottom:489.947301pt;}
.y58{bottom:490.587067pt;}
.y1b0{bottom:491.796112pt;}
.y1e{bottom:496.025179pt;}
.y133{bottom:500.587301pt;}
.y16d{bottom:505.948549pt;}
.y57{bottom:507.795877pt;}
.y1d{bottom:513.464827pt;}
.y132{bottom:516.587067pt;}
.y16c{bottom:522.028042pt;}
.y56{bottom:523.875371pt;}
.y131{bottom:530.187067pt;}
.y1c{bottom:530.985387pt;}
.y12c{bottom:534.667067pt;}
.y130{bottom:536.667067pt;}
.y12e{bottom:536.827067pt;}
.y16b{bottom:538.107536pt;}
.y12f{bottom:539.867067pt;}
.y55{bottom:539.875136pt;}
.y12d{bottom:540.187067pt;}
.y1b{bottom:548.505947pt;}
.y16a{bottom:554.107301pt;}
.y54{bottom:555.954630pt;}
.y12b{bottom:557.307067pt;}
.y1a{bottom:566.026507pt;}
.y12a{bottom:567.547067pt;}
.y169{bottom:570.107067pt;}
.y53{bottom:572.034123pt;}
.y129{bottom:581.147067pt;}
.y19{bottom:583.545739pt;}
.y123{bottom:585.707067pt;}
.y168{bottom:585.867067pt;}
.y52{bottom:588.033889pt;}
.y125{bottom:592.107162pt;}
.y167{bottom:596.987067pt;}
.y73{bottom:600.187067pt;}
.y18{bottom:601.066299pt;}
.y124{bottom:602.587067pt;}
.y51{bottom:604.033654pt;}
.y127{bottom:608.667067pt;}
.y126{bottom:611.146854pt;}
.y128{bottom:611.226916pt;}
.y17{bottom:618.505947pt;}
.y50{bottom:620.194300pt;}
.y122{bottom:628.747067pt;}
.y196{bottom:632.907067pt;}
.y11c{bottom:633.307067pt;}
.y16{bottom:636.026507pt;}
.y4f{bottom:636.194065pt;}
.y11e{bottom:639.786608pt;}
.y11d{bottom:650.267067pt;}
.y4e{bottom:652.193831pt;}
.y15{bottom:653.547067pt;}
.y120{bottom:656.347067pt;}
.y11f{bottom:658.826880pt;}
.y121{bottom:658.907248pt;}
.y4d{bottom:668.273324pt;}
.y14{bottom:671.867067pt;}
.y11b{bottom:676.507067pt;}
.y4c{bottom:684.352818pt;}
.y11a{bottom:684.826927pt;}
.y13{bottom:691.546859pt;}
.y19c{bottom:692.107067pt;}
.y4b{bottom:700.352583pt;}
.y119{bottom:700.826693pt;}
.y19b{bottom:707.947067pt;}
.y12{bottom:708.986507pt;}
.y114{bottom:713.466667pt;}
.y116{bottom:713.866667pt;}
.y4a{bottom:716.432077pt;}
.y115{bottom:716.587067pt;}
.y118{bottom:717.067067pt;}
.y113{bottom:717.067387pt;}
.y19a{bottom:725.627067pt;}
.y11{bottom:726.507067pt;}
.y72{bottom:727.147200pt;}
.y111{bottom:732.346667pt;}
.y49{bottom:732.431842pt;}
.y10f{bottom:732.906667pt;}
.y112{bottom:735.467067pt;}
.y10e{bottom:736.027067pt;}
.y199{bottom:736.827200pt;}
.y10{bottom:744.746365pt;}
.y71{bottom:744.987200pt;}
.y48{bottom:748.511336pt;}
.y10d{bottom:749.947067pt;}
.y70{bottom:757.387067pt;}
.ycf{bottom:759.147353pt;}
.yd8{bottom:759.148767pt;}
.yfe{bottom:760.347067pt;}
.yf1{bottom:760.347205pt;}
.ye1{bottom:760.347760pt;}
.yde{bottom:760.349174pt;}
.ye6{bottom:761.548167pt;}
.y6f{bottom:761.947067pt;}
.yf7{bottom:762.987200pt;}
.y10b{bottom:762.987721pt;}
.ycc{bottom:763.307067pt;}
.yd5{bottom:763.308481pt;}
.y47{bottom:764.590830pt;}
.yf{bottom:765.226475pt;}
.ye5{bottom:767.787737pt;}
.y100{bottom:770.347605pt;}
.yee{bottom:770.667200pt;}
.ye2{bottom:771.547315pt;}
.ydf{bottom:771.548729pt;}
.yf9{bottom:773.867212pt;}
.ye4{bottom:773.867536pt;}
.y107{bottom:773.867733pt;}
.ycd{bottom:775.387485pt;}
.yd6{bottom:775.388899pt;}
.yff{bottom:780.187310pt;}
.y46{bottom:780.590595pt;}
.ye7{bottom:781.547877pt;}
.yf8{bottom:782.746546pt;}
.ye3{bottom:782.746869pt;}
.y106{bottom:782.747067pt;}
.ye0{bottom:782.748283pt;}
.ye{bottom:785.547067pt;}
.yf4{bottom:787.146998pt;}
.yf0{bottom:788.427067pt;}
.yce{bottom:789.147625pt;}
.yd7{bottom:789.149039pt;}
.y45{bottom:796.590360pt;}
.y101{bottom:798.987497pt;}
.yd3{bottom:802.828586pt;}
.ydc{bottom:802.830000pt;}
.y10a{bottom:805.147590pt;}
.yd{bottom:807.470075pt;}
.ycb{bottom:810.347067pt;}
.y44{bottom:812.751006pt;}
.yf5{bottom:813.466765pt;}
.y102{bottom:813.467452pt;}
.yf3{bottom:813.467590pt;}
.yd0{bottom:813.547412pt;}
.yd9{bottom:813.548826pt;}
.yec{bottom:814.667226pt;}
.yfd{bottom:816.106260pt;}
.y10c{bottom:816.106781pt;}
.yfa{bottom:816.107673pt;}
.yd1{bottom:818.988125pt;}
.yda{bottom:818.989539pt;}
.yeb{bottom:820.987389pt;}
.y104{bottom:823.467990pt;}
.yef{bottom:823.866351pt;}
.ye8{bottom:824.667788pt;}
.yfc{bottom:827.066864pt;}
.yea{bottom:827.067188pt;}
.y109{bottom:827.067385pt;}
.y195{bottom:828.427067pt;}
.y43{bottom:828.750771pt;}
.yd2{bottom:832.748265pt;}
.ydb{bottom:832.749679pt;}
.y103{bottom:833.387700pt;}
.yc{bottom:833.629547pt;}
.yed{bottom:834.666936pt;}
.ye9{bottom:835.867343pt;}
.yfb{bottom:835.947612pt;}
.y108{bottom:835.948133pt;}
.yf6{bottom:840.266558pt;}
.yf2{bottom:841.627456pt;}
.y42{bottom:844.750537pt;}
.yd4{bottom:846.508404pt;}
.ydd{bottom:846.509818pt;}
.y105{bottom:852.187887pt;}
.y166{bottom:853.387067pt;}
.y18b{bottom:854.345603pt;}
.yb{bottom:859.950065pt;}
.y165{bottom:860.507301pt;}
.y41{bottom:860.830031pt;}
.yca{bottom:864.187067pt;}
.yc9{bottom:872.587067pt;}
.y18a{bottom:872.665947pt;}
.y164{bottom:876.509796pt;}
.y40{bottom:876.909524pt;}
.yc8{bottom:886.107067pt;}
.ya{bottom:886.188893pt;}
.y189{bottom:890.186507pt;}
.y82{bottom:890.587067pt;}
.y163{bottom:892.589290pt;}
.y3f{bottom:892.909290pt;}
.y85{bottom:895.386889pt;}
.y8e{bottom:895.389779pt;}
.yab{bottom:896.506747pt;}
.yb6{bottom:896.507067pt;}
.ya8{bottom:896.507590pt;}
.y94{bottom:896.592175pt;}
.y99{bottom:897.791680pt;}
.y9c{bottom:897.793125pt;}
.yb1{bottom:899.225621pt;}
.yc3{bottom:899.225782pt;}
.yae{bottom:899.227067pt;}
.y8b{bottom:899.629957pt;}
.y98{bottom:904.190966pt;}
.y9b{bottom:904.192411pt;}
.yb8{bottom:906.746469pt;}
.ya5{bottom:907.067067pt;}
.y188{bottom:907.707067pt;}
.y95{bottom:907.952787pt;}
.y162{bottom:908.668783pt;}
.y3e{bottom:908.988783pt;}
.yb0{bottom:910.346333pt;}
.ybf{bottom:910.346494pt;}
.y97{bottom:910.351797pt;}
.y83{bottom:911.947283pt;}
.y8c{bottom:911.950173pt;}
.y9{bottom:912.427721pt;}
.yb7{bottom:916.826538pt;}
.y9a{bottom:918.191935pt;}
.y9d{bottom:918.193380pt;}
.y96{bottom:919.392885pt;}
.yaf{bottom:919.466906pt;}
.ybe{bottom:919.467067pt;}
.yac{bottom:923.946422pt;}
.y161{bottom:924.668549pt;}
.y187{bottom:924.988079pt;}
.y3d{bottom:924.988549pt;}
.ya7{bottom:925.307067pt;}
.y84{bottom:925.946806pt;}
.y8d{bottom:925.949697pt;}
.yb9{bottom:936.026471pt;}
.y8{bottom:938.666549pt;}
.y89{bottom:939.949220pt;}
.y92{bottom:939.952110pt;}
.y160{bottom:940.668314pt;}
.y186{bottom:941.067573pt;}
.y3c{bottom:941.068042pt;}
.yc2{bottom:942.345817pt;}
.yc7{bottom:946.347067pt;}
.yba{bottom:950.905891pt;}
.yaa{bottom:950.906414pt;}
.y9e{bottom:950.913851pt;}
.y86{bottom:950.987556pt;}
.y8f{bottom:950.990446pt;}
.ya3{bottom:952.113356pt;}
.yb5{bottom:953.544408pt;}
.yc6{bottom:953.544568pt;}
.yb2{bottom:953.545853pt;}
.y87{bottom:956.508169pt;}
.y90{bottom:956.511059pt;}
.y15f{bottom:956.827536pt;}
.y3b{bottom:957.147536pt;}
.ya2{bottom:958.512643pt;}
.ybc{bottom:961.145293pt;}
.ya6{bottom:961.466174pt;}
.y9f{bottom:962.353949pt;}
.yb4{bottom:964.744604pt;}
.yc5{bottom:964.744765pt;}
.yc1{bottom:964.746210pt;}
.ya1{bottom:964.752959pt;}
.y7{bottom:964.987067pt;}
.y88{bottom:970.588622pt;}
.y91{bottom:970.591513pt;}
.ybb{bottom:971.225363pt;}
.ya4{bottom:972.593096pt;}
.y15e{bottom:972.827301pt;}
.y3a{bottom:973.147301pt;}
.ya0{bottom:973.794046pt;}
.yb3{bottom:973.865177pt;}
.yc4{bottom:973.865338pt;}
.yc0{bottom:973.866783pt;}
.yad{bottom:978.266002pt;}
.ya9{bottom:979.626647pt;}
.y8a{bottom:984.589591pt;}
.y93{bottom:984.592481pt;}
.y6{bottom:988.827067pt;}
.y39{bottom:989.147067pt;}
.y6e{bottom:989.947067pt;}
.ybd{bottom:990.425295pt;}
.y3{bottom:1004.107294pt;}
.y37{bottom:1004.987067pt;}
.y2{bottom:1019.467067pt;}
.y36{bottom:1022.667190pt;}
.y1{bottom:1060.747067pt;}
.y35{bottom:1063.947067pt;}
.h4d{height:10.834258pt;}
.h22{height:12.160000pt;}
.h2a{height:13.440000pt;}
.h12{height:14.476997pt;}
.hf{height:14.517720pt;}
.h40{height:14.720000pt;}
.h27{height:16.080000pt;}
.h24{height:16.240000pt;}
.h3a{height:20.463839pt;}
.h11{height:21.668516pt;}
.h36{height:21.691795pt;}
.h3e{height:21.694758pt;}
.h46{height:21.951384pt;}
.h1f{height:22.907161pt;}
.h18{height:23.413748pt;}
.h32{height:25.956922pt;}
.h2e{height:26.149092pt;}
.h1e{height:30.558990pt;}
.h17{height:31.234797pt;}
.h51{height:34.638297pt;}
.h42{height:35.004900pt;}
.h39{height:35.082295pt;}
.h3{height:36.084731pt;}
.h2{height:36.186235pt;}
.h35{height:37.186781pt;}
.h3d{height:37.190484pt;}
.h47{height:37.632267pt;}
.h31{height:37.687814pt;}
.h2d{height:37.831866pt;}
.h20{height:39.269048pt;}
.h52{height:39.541598pt;}
.h4{height:39.652827pt;}
.h19{height:40.137802pt;}
.h53{height:41.141004pt;}
.hb{height:41.483203pt;}
.h4b{height:41.484035pt;}
.h56{height:41.487683pt;}
.hc{height:41.492163pt;}
.h55{height:42.852827pt;}
.h57{height:43.210480pt;}
.h1{height:43.215469pt;}
.h7{height:43.337031pt;}
.ha{height:43.340103pt;}
.h8{height:43.342343pt;}
.h9{height:43.351303pt;}
.h43{height:46.697817pt;}
.h3b{height:46.801065pt;}
.h4e{height:47.427822pt;}
.h44{height:49.353524pt;}
.h38{height:49.462407pt;}
.h2f{height:49.572827pt;}
.h37{height:49.608526pt;}
.h3c{height:49.796250pt;}
.h33{height:49.892827pt;}
.h49{height:50.202821pt;}
.h6{height:50.487084pt;}
.h54{height:50.533360pt;}
.h50{height:51.962450pt;}
.he{height:51.967463pt;}
.h4f{height:51.969316pt;}
.h4a{height:51.971341pt;}
.h29{height:52.336452pt;}
.h1b{height:52.386347pt;}
.h34{height:52.429741pt;}
.h3f{height:52.434895pt;}
.h1c{height:52.708717pt;}
.h26{height:52.908516pt;}
.h48{height:53.057762pt;}
.h30{height:53.136030pt;}
.h2c{height:53.339121pt;}
.h14{height:53.545295pt;}
.h15{height:53.863236pt;}
.h41{height:54.372154pt;}
.h28{height:55.313026pt;}
.h21{height:55.365352pt;}
.h2b{height:55.447371pt;}
.h23{height:55.707955pt;}
.h25{height:55.917136pt;}
.h1a{height:56.590471pt;}
.h5{height:62.224805pt;}
.h45{height:67.391384pt;}
.h1d{height:78.578779pt;}
.h16{height:80.319178pt;}
.h13{height:89.705295pt;}
.hd{height:173.348125pt;}
.h10{height:178.765440pt;}
.h4c{height:184.182383pt;}
.h0{height:1122.666667pt;}
.w5{width:7.840000pt;}
.w6{width:9.040000pt;}
.w3{width:9.120000pt;}
.w4{width:9.280000pt;}
.w7{width:9.360000pt;}
.w2{width:11.600000pt;}
.w8{width:12.880000pt;}
.w9{width:16.320000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x8f{left:3.720400pt;}
.x3{left:55.197915pt;}
.x10{left:73.520000pt;}
.x9f{left:75.440000pt;}
.x2{left:77.520000pt;}
.x6{left:88.720064pt;}
.xf{left:96.000000pt;}
.x8{left:98.000000pt;}
.x7{left:100.960000pt;}
.x7b{left:103.596843pt;}
.x32{left:104.562373pt;}
.x93{left:110.561246pt;}
.x98{left:119.599259pt;}
.x9{left:121.440000pt;}
.x7a{left:126.877520pt;}
.x95{left:129.997250pt;}
.x9c{left:131.440000pt;}
.x89{left:134.320000pt;}
.x9a{left:137.919411pt;}
.x88{left:140.880000pt;}
.x90{left:142.720000pt;}
.x12{left:144.318910pt;}
.x38{left:148.078798pt;}
.x30{left:151.601754pt;}
.x8d{left:152.560020pt;}
.x58{left:155.279697pt;}
.x2c{left:158.719938pt;}
.x79{left:160.798028pt;}
.x53{left:162.239503pt;}
.x8e{left:166.480000pt;}
.x76{left:174.158797pt;}
.x1a{left:179.520000pt;}
.x29{left:181.120000pt;}
.x1b{left:184.160000pt;}
.x1c{left:185.679977pt;}
.x50{left:186.800000pt;}
.x1d{left:189.839471pt;}
.x41{left:191.360082pt;}
.x40{left:193.920302pt;}
.x43{left:195.360297pt;}
.x68{left:197.280000pt;}
.x42{left:198.400461pt;}
.x2f{left:199.761154pt;}
.x45{left:204.000762pt;}
.x34{left:205.918598pt;}
.x1e{left:207.359251pt;}
.x6e{left:209.759679pt;}
.x5e{left:211.119479pt;}
.x44{left:212.560398pt;}
.x5b{left:213.679698pt;}
.x2e{left:218.801489pt;}
.x61{left:219.758028pt;}
.x46{left:221.200863pt;}
.x57{left:223.439896pt;}
.x2b{left:226.639225pt;}
.x8b{left:228.080000pt;}
.x52{left:230.239864pt;}
.x5a{left:231.999687pt;}
.x14{left:233.199335pt;}
.xa{left:236.640000pt;}
.x55{left:238.799500pt;}
.x17{left:240.799572pt;}
.x92{left:242.960000pt;}
.x3b{left:244.080232pt;}
.x33{left:245.598841pt;}
.x8a{left:246.880000pt;}
.x5d{left:248.799684pt;}
.x3f{left:252.638609pt;}
.x85{left:255.037577pt;}
.x60{left:257.438931pt;}
.x91{left:265.680000pt;}
.xc{left:269.040000pt;}
.x24{left:270.478733pt;}
.x4a{left:273.203116pt;}
.x99{left:276.960000pt;}
.x4f{left:281.764320pt;}
.x75{left:283.838558pt;}
.x96{left:286.320000pt;}
.x84{left:291.118141pt;}
.x74{left:292.559106pt;}
.x8c{left:302.880000pt;}
.x87{left:310.478995pt;}
.x78{left:312.078155pt;}
.x2a{left:317.998868pt;}
.x51{left:319.680555pt;}
.x16{left:324.399285pt;}
.x3a{left:326.000571pt;}
.x54{left:328.320195pt;}
.x23{left:332.160745pt;}
.x49{left:333.602381pt;}
.x3e{left:334.558948pt;}
.x4e{left:342.163585pt;}
.x73{left:343.438507pt;}
.x7e{left:347.759563pt;}
.x6d{left:349.519484pt;}
.x83{left:359.999464pt;}
.x69{left:361.280000pt;}
.x15{left:373.599220pt;}
.x19{left:375.680289pt;}
.x6c{left:380.239675pt;}
.x72{left:381.678424pt;}
.x3d{left:382.798615pt;}
.x22{left:385.840758pt;}
.x28{left:387.836561pt;}
.x1{left:393.120000pt;}
.x4d{left:394.724152pt;}
.x21{left:396.240321pt;}
.x27{left:398.317055pt;}
.x4c{left:404.963664pt;}
.x94{left:407.919895pt;}
.x97{left:414.000133pt;}
.x9d{left:417.440000pt;}
.x2d{left:422.080000pt;}
.x56{left:424.800000pt;}
.x31{left:425.762336pt;}
.x59{left:430.240713pt;}
.x1f{left:436.720000pt;}
.x47{left:439.200000pt;}
.x25{left:440.398000pt;}
.x82{left:443.119509pt;}
.x4b{left:444.643541pt;}
.x20{left:450.800454pt;}
.x48{left:452.960140pt;}
.x26{left:454.478454pt;}
.x5c{left:456.720000pt;}
.x35{left:458.238375pt;}
.x5f{left:462.160060pt;}
.x13{left:465.599803pt;}
.x39{left:467.439310pt;}
.x18{left:469.279249pt;}
.x81{left:470.560223pt;}
.x71{left:471.518325pt;}
.x3c{left:472.880023pt;}
.x11{left:476.800000pt;}
.x80{left:479.200073pt;}
.x37{left:480.320000pt;}
.x36{left:486.560000pt;}
.x62{left:489.280000pt;}
.x7f{left:497.200324pt;}
.x70{left:498.318823pt;}
.x86{left:500.479687pt;}
.x77{left:501.598200pt;}
.x7d{left:504.240300pt;}
.x6b{left:505.439128pt;}
.x5{left:512.880000pt;}
.xe{left:533.840000pt;}
.xb{left:554.960000pt;}
.x6f{left:560.560000pt;}
.x7c{left:577.520000pt;}
.x6a{left:579.360000pt;}
.xd{left:582.000000pt;}
.x9b{left:595.120000pt;}
.x65{left:599.040000pt;}
.x9e{left:604.400000pt;}
.x67{left:637.680000pt;}
.x64{left:646.240000pt;}
.x66{left:680.080000pt;}
.x63{left:688.640000pt;}
.x4{left:712.879952pt;}
}




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