
    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_dce38dd08289e0b46783e103.woff')format("woff");}.ff1{font-family:ff1;line-height:1.079590;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_6696af83106a15cd31a17002.woff')format("woff");}.ff2{font-family:ff2;line-height:1.070312;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_445a60e789c6e82425bfa78a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_5175c73dd9cff8ad23439bd7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e7bbd3a38a7764c936399cfe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_21e9a3d74b73e1c5142fb45d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.728027;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_0e2e6665d530a9d5da4d2100.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_647adf673c10104b92d13b89.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_28346f72796ebf1f5c160dd1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1f9a429b4f4ad926824f7fc9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_aa838493cbb8621b3d7ed57c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_89cb0c94333687cf620ab6e8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3caa5173d1bdbe54cd07370e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_367383a04d46414973705006.woff')format("woff");}.ffe{font-family:ffe;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_074a75eac43333c7881daaae.woff')format("woff");}.fff{font-family:fff;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3d44484d30844ae52ebaa88a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.728027;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:ff11;src:url('chunks/assets/font_54895b75c39dea8edf532ffd.woff')format("woff");}.ff11{font-family:ff11;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1e7ebce10afdbca744ac212c.woff')format("woff");}.ff12{font-family:ff12;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.799400px;}
.v3{vertical-align:-4.368000px;}
.v6{vertical-align:-1.032000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.032000px;}
.v8{vertical-align:15.840000px;}
.v1{vertical-align:19.800000px;}
.v4{vertical-align:30.000000px;}
.v5{vertical-align:60.007200px;}
.ls48{letter-spacing:-7.854000px;}
.ls46{letter-spacing:-1.800000px;}
.ls47{letter-spacing:-1.782000px;}
.ls19{letter-spacing:-0.604800px;}
.ls1c{letter-spacing:-0.570000px;}
.ls32{letter-spacing:-0.028500px;}
.ls31{letter-spacing:-0.022800px;}
.ls33{letter-spacing:-0.017100px;}
.ls18{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001200px;}
.ls5{letter-spacing:0.002280px;}
.ls9{letter-spacing:0.003000px;}
.ls4a{letter-spacing:0.004800px;}
.ls11{letter-spacing:0.005700px;}
.ls3{letter-spacing:0.007200px;}
.ls4{letter-spacing:0.007800px;}
.ls49{letter-spacing:0.009600px;}
.ls10{letter-spacing:0.011400px;}
.ls8{letter-spacing:0.012000px;}
.ls1d{letter-spacing:0.014400px;}
.ls13{letter-spacing:0.017100px;}
.ls2b{letter-spacing:0.022800px;}
.ls12{letter-spacing:0.028500px;}
.ls2c{letter-spacing:0.033900px;}
.ls25{letter-spacing:0.039900px;}
.ls24{letter-spacing:0.125400px;}
.ls23{letter-spacing:0.131100px;}
.ls35{letter-spacing:0.480000px;}
.ls34{letter-spacing:0.600000px;}
.ls15{letter-spacing:1.003200px;}
.ls16{letter-spacing:1.111500px;}
.lsf{letter-spacing:1.134300px;}
.ls14{letter-spacing:1.140000px;}
.ls17{letter-spacing:1.151400px;}
.lse{letter-spacing:1.157100px;}
.ls1e{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.212000px;}
.ls20{letter-spacing:1.225500px;}
.ls21{letter-spacing:1.231200px;}
.ls22{letter-spacing:1.236900px;}
.ls7{letter-spacing:1.245600px;}
.ls6{letter-spacing:1.252800px;}
.ls1b{letter-spacing:1.267200px;}
.ls28{letter-spacing:1.382100px;}
.ls26{letter-spacing:1.425000px;}
.ls27{letter-spacing:1.430700px;}
.lsd{letter-spacing:1.470600px;}
.ls1{letter-spacing:2.534400px;}
.ls29{letter-spacing:2.673300px;}
.ls0{letter-spacing:3.769200px;}
.ls1a{letter-spacing:3.780000px;}
.lsc{letter-spacing:5.278200px;}
.lsb{letter-spacing:5.546100px;}
.ls2a{letter-spacing:7.273200px;}
.ls30{letter-spacing:9.678600px;}
.ls2e{letter-spacing:9.684300px;}
.ls2f{letter-spacing:9.690000px;}
.ls2d{letter-spacing:163.634100px;}
.ls42{letter-spacing:177.139200px;}
.ls45{letter-spacing:177.144000px;}
.ls3c{letter-spacing:184.804800px;}
.ls3b{letter-spacing:188.001600px;}
.ls3f{letter-spacing:190.449600px;}
.ls38{letter-spacing:190.492800px;}
.ls40{letter-spacing:190.497600px;}
.ls36{letter-spacing:190.536000px;}
.ls37{letter-spacing:190.540800px;}
.ls3a{letter-spacing:190.617600px;}
.ls39{letter-spacing:201.316800px;}
.ls3d{letter-spacing:201.460800px;}
.ls3e{letter-spacing:201.484800px;}
.ls43{letter-spacing:212.337600px;}
.ls41{letter-spacing:212.342400px;}
.ls44{letter-spacing:212.347200px;}
.lsa{letter-spacing:311.209500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsba{word-spacing:-238.536000px;}
.wsc3{word-spacing:-238.449600px;}
.wsc2{word-spacing:-227.966400px;}
.wsc1{word-spacing:-227.952000px;}
.wsbc{word-spacing:-227.822400px;}
.wsc5{word-spacing:-227.548800px;}
.wsbe{word-spacing:-227.520000px;}
.wsc6{word-spacing:-217.502400px;}
.wsbf{word-spacing:-217.492800px;}
.ws7{word-spacing:-74.534400px;}
.ws6{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.ws8{word-spacing:-60.000000px;}
.wsf{word-spacing:-58.140000px;}
.ws4{word-spacing:-57.780000px;}
.wse{word-spacing:-57.000000px;}
.wsd{word-spacing:-56.430000px;}
.ws2{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.395200px;}
.wsc{word-spacing:-51.000000px;}
.wsb2{word-spacing:-48.000000px;}
.ws3{word-spacing:-30.000000px;}
.ws2f{word-spacing:-20.016000px;}
.ws6d{word-spacing:-17.280000px;}
.wsfb{word-spacing:-16.680000px;}
.wse5{word-spacing:-14.880000px;}
.wsb0{word-spacing:-13.344000px;}
.wsa{word-spacing:-12.996000px;}
.wsb8{word-spacing:-7.334400px;}
.wsa2{word-spacing:-4.212000px;}
.ws147{word-spacing:-4.190400px;}
.ws12e{word-spacing:-4.104000px;}
.ws47{word-spacing:-3.918000px;}
.ws46{word-spacing:-3.444000px;}
.wsec{word-spacing:-3.132000px;}
.wsc8{word-spacing:-2.988000px;}
.ws9c{word-spacing:-2.784000px;}
.wsdc{word-spacing:-2.688000px;}
.wsca{word-spacing:-2.634000px;}
.ws187{word-spacing:-2.630400px;}
.ws195{word-spacing:-2.620800px;}
.ws194{word-spacing:-2.616000px;}
.ws1aa{word-spacing:-2.596800px;}
.ws82{word-spacing:-2.556000px;}
.ws39{word-spacing:-2.394000px;}
.wsee{word-spacing:-2.364000px;}
.ws10e{word-spacing:-2.358000px;}
.ws161{word-spacing:-2.270400px;}
.ws43{word-spacing:-2.268000px;}
.ws2b{word-spacing:-2.257200px;}
.ws137{word-spacing:-2.244000px;}
.ws81{word-spacing:-2.226000px;}
.ws12a{word-spacing:-2.142000px;}
.wsf5{word-spacing:-2.136000px;}
.wsf4{word-spacing:-2.112000px;}
.ws162{word-spacing:-2.073600px;}
.ws12c{word-spacing:-2.022000px;}
.ws11{word-spacing:-2.003400px;}
.wsdb{word-spacing:-1.974000px;}
.wsda{word-spacing:-1.968000px;}
.ws53{word-spacing:-1.950000px;}
.wsaa{word-spacing:-1.926000px;}
.ws2a{word-spacing:-1.909500px;}
.ws1a9{word-spacing:-1.718400px;}
.ws126{word-spacing:-1.686000px;}
.ws3d{word-spacing:-1.668000px;}
.wscf{word-spacing:-1.644000px;}
.wsed{word-spacing:-1.632000px;}
.ws20{word-spacing:-1.607400px;}
.wsad{word-spacing:-1.574400px;}
.ws172{word-spacing:-1.430400px;}
.ws67{word-spacing:-1.390800px;}
.ws181{word-spacing:-1.382400px;}
.ws1ab{word-spacing:-1.348800px;}
.wsb9{word-spacing:-1.334400px;}
.ws22{word-spacing:-1.305300px;}
.wsd0{word-spacing:-1.278000px;}
.ws12{word-spacing:-1.267200px;}
.ws91{word-spacing:-1.248000px;}
.ws1ac{word-spacing:-1.224000px;}
.ws85{word-spacing:-1.218000px;}
.ws12f{word-spacing:-1.212000px;}
.ws57{word-spacing:-1.044000px;}
.ws130{word-spacing:-0.972000px;}
.ws178{word-spacing:-0.940800px;}
.wsd5{word-spacing:-0.868800px;}
.ws149{word-spacing:-0.854400px;}
.ws190{word-spacing:-0.849600px;}
.ws42{word-spacing:-0.846000px;}
.ws8f{word-spacing:-0.792000px;}
.ws1a4{word-spacing:-0.715200px;}
.ws180{word-spacing:-0.672000px;}
.ws140{word-spacing:-0.642000px;}
.wsf1{word-spacing:-0.630000px;}
.ws10b{word-spacing:-0.618000px;}
.ws110{word-spacing:-0.588000px;}
.ws4a{word-spacing:-0.486000px;}
.ws14f{word-spacing:-0.451200px;}
.ws18{word-spacing:-0.450300px;}
.ws19{word-spacing:-0.444600px;}
.ws17e{word-spacing:-0.427200px;}
.ws13c{word-spacing:-0.402000px;}
.ws87{word-spacing:-0.366000px;}
.ws13b{word-spacing:-0.348000px;}
.ws14d{word-spacing:-0.321600px;}
.ws10a{word-spacing:-0.300000px;}
.ws6c{word-spacing:-0.267900px;}
.ws6a{word-spacing:-0.262200px;}
.ws6b{word-spacing:-0.256500px;}
.ws2d{word-spacing:-0.240000px;}
.ws3e{word-spacing:-0.228000px;}
.ws80{word-spacing:-0.198000px;}
.ws8e{word-spacing:-0.150000px;}
.ws2c{word-spacing:-0.114000px;}
.ws93{word-spacing:-0.102000px;}
.ws23{word-spacing:-0.085500px;}
.ws176{word-spacing:-0.062400px;}
.ws5{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.057000px;}
.ws2e{word-spacing:-0.054000px;}
.ws6e{word-spacing:-0.048000px;}
.wsa3{word-spacing:-0.036000px;}
.ws171{word-spacing:-0.028800px;}
.ws10{word-spacing:0.000000px;}
.ws69{word-spacing:0.017100px;}
.ws1ad{word-spacing:0.019200px;}
.ws68{word-spacing:0.022800px;}
.ws165{word-spacing:0.028800px;}
.wsea{word-spacing:0.030000px;}
.ws63{word-spacing:0.085500px;}
.ws14e{word-spacing:0.134400px;}
.wse3{word-spacing:0.156000px;}
.wsd9{word-spacing:0.186000px;}
.ws37{word-spacing:0.192000px;}
.ws38{word-spacing:0.198000px;}
.ws8d{word-spacing:0.204000px;}
.ws3f{word-spacing:0.234000px;}
.ws13e{word-spacing:0.246000px;}
.ws34{word-spacing:0.282000px;}
.ws1b{word-spacing:0.290700px;}
.wsa8{word-spacing:0.318000px;}
.ws1a5{word-spacing:0.388800px;}
.ws123{word-spacing:0.390000px;}
.ws24{word-spacing:0.416100px;}
.ws1a8{word-spacing:0.432000px;}
.ws146{word-spacing:0.618000px;}
.ws75{word-spacing:0.624000px;}
.ws17d{word-spacing:0.667200px;}
.ws45{word-spacing:0.684000px;}
.ws184{word-spacing:0.705600px;}
.ws58{word-spacing:0.708000px;}
.ws1a7{word-spacing:0.758400px;}
.ws107{word-spacing:0.774000px;}
.ws122{word-spacing:0.780000px;}
.ws1ba{word-spacing:0.835200px;}
.ws179{word-spacing:0.840000px;}
.ws1ae{word-spacing:0.844800px;}
.ws10d{word-spacing:0.846000px;}
.wsa5{word-spacing:0.858000px;}
.ws5f{word-spacing:0.870000px;}
.ws1b0{word-spacing:0.907200px;}
.ws79{word-spacing:0.930000px;}
.ws111{word-spacing:0.984000px;}
.ws115{word-spacing:0.996000px;}
.wse9{word-spacing:1.020000px;}
.ws17{word-spacing:1.048800px;}
.ws188{word-spacing:1.056000px;}
.ws17a{word-spacing:1.075200px;}
.ws1a3{word-spacing:1.099200px;}
.ws102{word-spacing:1.116000px;}
.ws129{word-spacing:1.158000px;}
.ws182{word-spacing:1.209600px;}
.ws51{word-spacing:1.218000px;}
.ws62{word-spacing:1.219800px;}
.wsa0{word-spacing:1.224000px;}
.ws61{word-spacing:1.225500px;}
.ws150{word-spacing:1.267200px;}
.wsdd{word-spacing:1.284000px;}
.ws92{word-spacing:1.290000px;}
.ws94{word-spacing:1.326000px;}
.ws104{word-spacing:1.398000px;}
.ws64{word-spacing:1.425000px;}
.ws174{word-spacing:1.435200px;}
.ws13d{word-spacing:1.506000px;}
.ws86{word-spacing:1.542000px;}
.ws18e{word-spacing:1.569600px;}
.ws13{word-spacing:1.656000px;}
.wsf7{word-spacing:1.689600px;}
.wsf6{word-spacing:1.694400px;}
.ws29{word-spacing:1.704300px;}
.ws28{word-spacing:1.721400px;}
.ws74{word-spacing:1.740000px;}
.ws134{word-spacing:1.746000px;}
.ws1c{word-spacing:1.749900px;}
.wsd8{word-spacing:1.771200px;}
.wsa9{word-spacing:1.902000px;}
.wsde{word-spacing:1.926000px;}
.ws36{word-spacing:1.944000px;}
.ws1b1{word-spacing:1.948800px;}
.ws83{word-spacing:1.968000px;}
.ws27{word-spacing:2.040600px;}
.ws33{word-spacing:2.046000px;}
.wsab{word-spacing:2.094000px;}
.ws15b{word-spacing:2.174400px;}
.ws16e{word-spacing:2.208000px;}
.ws9a{word-spacing:2.232000px;}
.ws1a{word-spacing:2.251500px;}
.ws175{word-spacing:2.299200px;}
.ws166{word-spacing:2.313600px;}
.ws109{word-spacing:2.346000px;}
.ws15{word-spacing:2.365500px;}
.ws44{word-spacing:2.406000px;}
.ws21{word-spacing:2.485200px;}
.ws103{word-spacing:2.520000px;}
.ws131{word-spacing:2.574000px;}
.ws193{word-spacing:2.601600px;}
.wscb{word-spacing:2.604000px;}
.ws15d{word-spacing:2.630400px;}
.ws41{word-spacing:2.646000px;}
.ws65{word-spacing:2.673300px;}
.ws14c{word-spacing:2.707200px;}
.ws13a{word-spacing:2.790000px;}
.ws59{word-spacing:2.802000px;}
.wsf0{word-spacing:2.820000px;}
.wsef{word-spacing:2.832000px;}
.ws9b{word-spacing:2.850000px;}
.ws133{word-spacing:2.940000px;}
.ws114{word-spacing:2.958000px;}
.ws1af{word-spacing:2.985600px;}
.wscc{word-spacing:3.072000px;}
.wsd7{word-spacing:3.091200px;}
.ws10f{word-spacing:3.102000px;}
.ws11e{word-spacing:3.180000px;}
.ws4f{word-spacing:3.186000px;}
.wsfa{word-spacing:3.259200px;}
.ws96{word-spacing:3.330000px;}
.ws15c{word-spacing:3.374400px;}
.ws1d{word-spacing:3.425700px;}
.ws1e{word-spacing:3.431400px;}
.ws142{word-spacing:3.528000px;}
.ws4b{word-spacing:3.534000px;}
.ws139{word-spacing:3.546000px;}
.ws168{word-spacing:3.672000px;}
.ws157{word-spacing:3.696000px;}
.ws25{word-spacing:3.716400px;}
.wseb{word-spacing:3.750000px;}
.wsce{word-spacing:3.780000px;}
.ws125{word-spacing:3.792000px;}
.ws90{word-spacing:3.822000px;}
.ws15a{word-spacing:3.854400px;}
.wsd1{word-spacing:3.876000px;}
.ws19b{word-spacing:3.955200px;}
.ws54{word-spacing:3.960000px;}
.ws160{word-spacing:3.984000px;}
.wsc9{word-spacing:4.032000px;}
.ws192{word-spacing:4.108800px;}
.ws7e{word-spacing:4.248000px;}
.ws50{word-spacing:4.260000px;}
.ws70{word-spacing:4.272000px;}
.wsa7{word-spacing:4.284000px;}
.wsd6{word-spacing:4.296000px;}
.ws15f{word-spacing:4.300800px;}
.ws95{word-spacing:4.362000px;}
.ws16f{word-spacing:4.377600px;}
.ws185{word-spacing:4.430400px;}
.ws11c{word-spacing:4.536000px;}
.ws164{word-spacing:4.598400px;}
.ws167{word-spacing:4.608000px;}
.ws173{word-spacing:4.617600px;}
.ws197{word-spacing:4.699200px;}
.ws191{word-spacing:4.771200px;}
.ws159{word-spacing:4.804800px;}
.ws6f{word-spacing:4.806000px;}
.ws1b5{word-spacing:4.814400px;}
.ws1b6{word-spacing:4.819200px;}
.ws183{word-spacing:4.891200px;}
.ws1b2{word-spacing:4.939200px;}
.ws138{word-spacing:4.992000px;}
.ws52{word-spacing:5.004000px;}
.ws128{word-spacing:5.010000px;}
.ws9e{word-spacing:5.046000px;}
.ws189{word-spacing:5.092800px;}
.wsac{word-spacing:5.131200px;}
.ws18c{word-spacing:5.179200px;}
.ws148{word-spacing:5.265600px;}
.ws3a{word-spacing:5.274000px;}
.ws113{word-spacing:5.292000px;}
.ws1a6{word-spacing:5.361600px;}
.wsdf{word-spacing:5.448000px;}
.ws49{word-spacing:5.520000px;}
.ws170{word-spacing:5.582400px;}
.wsa1{word-spacing:5.694000px;}
.ws78{word-spacing:5.718000px;}
.ws101{word-spacing:5.766000px;}
.ws19d{word-spacing:5.769600px;}
.ws1f{word-spacing:5.853900px;}
.ws9d{word-spacing:5.892000px;}
.ws124{word-spacing:5.946000px;}
.ws26{word-spacing:5.990700px;}
.wse8{word-spacing:6.018000px;}
.ws4e{word-spacing:6.048000px;}
.ws48{word-spacing:6.180000px;}
.ws14b{word-spacing:6.273600px;}
.ws15e{word-spacing:6.307200px;}
.ws35{word-spacing:6.432000px;}
.ws145{word-spacing:6.468000px;}
.ws16c{word-spacing:6.513600px;}
.ws4c{word-spacing:6.576000px;}
.wse1{word-spacing:6.588000px;}
.ws30{word-spacing:6.636000px;}
.ws169{word-spacing:6.758400px;}
.ws98{word-spacing:6.768000px;}
.ws151{word-spacing:6.868800px;}
.ws12d{word-spacing:6.900000px;}
.ws8b{word-spacing:6.906000px;}
.ws40{word-spacing:7.020000px;}
.wsf3{word-spacing:7.050000px;}
.ws156{word-spacing:7.060800px;}
.ws18b{word-spacing:7.080000px;}
.ws10c{word-spacing:7.092000px;}
.ws1b9{word-spacing:7.161600px;}
.ws11b{word-spacing:7.224000px;}
.ws66{word-spacing:7.267500px;}
.ws17b{word-spacing:7.334400px;}
.wsd2{word-spacing:7.464000px;}
.wsf2{word-spacing:7.482000px;}
.wsa6{word-spacing:7.554000px;}
.ws163{word-spacing:7.632000px;}
.ws12b{word-spacing:7.656000px;}
.ws8c{word-spacing:7.668000px;}
.ws99{word-spacing:7.776000px;}
.wsfc{word-spacing:7.806000px;}
.ws196{word-spacing:7.958400px;}
.wse6{word-spacing:8.028000px;}
.ws76{word-spacing:8.058000px;}
.ws8a{word-spacing:8.118000px;}
.wsa4{word-spacing:8.160000px;}
.ws144{word-spacing:8.280000px;}
.ws19c{word-spacing:8.342400px;}
.wsd3{word-spacing:8.352000px;}
.ws1b3{word-spacing:8.419200px;}
.ws17c{word-spacing:8.553600px;}
.wsd4{word-spacing:8.559000px;}
.wsfd{word-spacing:8.568000px;}
.ws132{word-spacing:8.610000px;}
.wse0{word-spacing:8.622000px;}
.ws154{word-spacing:8.726400px;}
.ws105{word-spacing:8.838000px;}
.ws16a{word-spacing:8.860800px;}
.ws88{word-spacing:8.940000px;}
.ws9f{word-spacing:9.144000px;}
.ws1b4{word-spacing:9.283200px;}
.ws112{word-spacing:9.306000px;}
.ws13f{word-spacing:9.348000px;}
.ws60{word-spacing:9.354000px;}
.ws127{word-spacing:9.366000px;}
.ws73{word-spacing:9.480000px;}
.ws14a{word-spacing:9.609600px;}
.ws5b{word-spacing:9.648000px;}
.ws18f{word-spacing:9.672000px;}
.ws7b{word-spacing:9.732000px;}
.ws31{word-spacing:9.792000px;}
.ws14{word-spacing:9.872400px;}
.ws158{word-spacing:9.931200px;}
.ws18d{word-spacing:10.051200px;}
.wsfe{word-spacing:10.074000px;}
.wse2{word-spacing:10.266000px;}
.ws5e{word-spacing:10.344000px;}
.ws71{word-spacing:10.434000px;}
.ws135{word-spacing:10.500000px;}
.ws3b{word-spacing:10.536000px;}
.ws116{word-spacing:10.710000px;}
.ws121{word-spacing:10.830000px;}
.ws117{word-spacing:10.902000px;}
.wscd{word-spacing:11.004000px;}
.ws1a0{word-spacing:11.064000px;}
.ws89{word-spacing:11.076000px;}
.ws120{word-spacing:11.436000px;}
.ws18a{word-spacing:11.620800px;}
.ws5a{word-spacing:11.712000px;}
.wsff{word-spacing:11.832000px;}
.ws143{word-spacing:11.844000px;}
.ws198{word-spacing:11.865600px;}
.ws11f{word-spacing:11.958000px;}
.wse4{word-spacing:12.042000px;}
.ws1b8{word-spacing:12.196800px;}
.ws32{word-spacing:12.276000px;}
.ws11d{word-spacing:12.294000px;}
.ws108{word-spacing:12.312000px;}
.ws5d{word-spacing:12.336000px;}
.ws7a{word-spacing:12.492000px;}
.ws16{word-spacing:12.585600px;}
.ws7c{word-spacing:12.786000px;}
.ws153{word-spacing:12.888000px;}
.ws7f{word-spacing:13.038000px;}
.ws72{word-spacing:13.524000px;}
.ws77{word-spacing:13.590000px;}
.ws11a{word-spacing:13.722000px;}
.ws19a{word-spacing:13.752000px;}
.ws136{word-spacing:13.932000px;}
.ws118{word-spacing:14.028000px;}
.ws97{word-spacing:14.430000px;}
.ws141{word-spacing:14.694000px;}
.ws1a1{word-spacing:15.067200px;}
.ws19f{word-spacing:15.187200px;}
.ws84{word-spacing:15.246000px;}
.ws56{word-spacing:15.630000px;}
.ws177{word-spacing:16.305600px;}
.ws7d{word-spacing:16.368000px;}
.ws4d{word-spacing:16.446000px;}
.ws100{word-spacing:16.770000px;}
.ws19e{word-spacing:17.472000px;}
.ws119{word-spacing:17.988000px;}
.ws16d{word-spacing:18.172800px;}
.ws16b{word-spacing:18.211200px;}
.ws55{word-spacing:18.294000px;}
.wse7{word-spacing:18.300000px;}
.ws3c{word-spacing:18.768000px;}
.ws17f{word-spacing:20.150400px;}
.ws199{word-spacing:20.529600px;}
.ws5c{word-spacing:23.604000px;}
.ws1a2{word-spacing:23.649600px;}
.ws186{word-spacing:23.755200px;}
.ws1b7{word-spacing:24.768000px;}
.ws106{word-spacing:24.918000px;}
.wsf9{word-spacing:25.156800px;}
.wsf8{word-spacing:26.572800px;}
.ws155{word-spacing:29.875200px;}
.ws152{word-spacing:35.227200px;}
.wsaf{word-spacing:85.531200px;}
.wsb3{word-spacing:111.086400px;}
.wsae{word-spacing:116.452800px;}
.wsb1{word-spacing:130.891200px;}
.wsbd{word-spacing:134.505600px;}
.wsc7{word-spacing:198.532800px;}
.wsbb{word-spacing:198.542400px;}
.wsb4{word-spacing:204.552000px;}
.wsc4{word-spacing:211.881600px;}
.wsc0{word-spacing:211.886400px;}
.wsb7{word-spacing:213.552000px;}
.wsb5{word-spacing:215.956800px;}
.wsb6{word-spacing:246.139200px;}
.ws9{word-spacing:291.844800px;}
._48{margin-left:-32.035200px;}
._9{margin-left:-22.038000px;}
._6{margin-left:-18.851400px;}
._3f{margin-left:-16.002000px;}
._f{margin-left:-14.556900px;}
._e{margin-left:-12.753000px;}
._b{margin-left:-11.280300px;}
._15{margin-left:-10.139100px;}
._11{margin-left:-9.131100px;}
._7{margin-left:-7.745400px;}
._5{margin-left:-6.186000px;}
._1{margin-left:-4.415400px;}
._2{margin-left:-2.547600px;}
._0{margin-left:-1.452000px;}
._3{width:1.188000px;}
._4{width:2.541600px;}
._8{width:4.428000px;}
._c{width:6.024900px;}
._13{width:7.273200px;}
._2f{width:8.282400px;}
._a{width:9.855300px;}
._14{width:12.996000px;}
._10{width:20.136900px;}
._18{width:38.054400px;}
._44{width:55.491600px;}
._23{width:69.858000px;}
._47{width:72.536400px;}
._45{width:87.696000px;}
._28{width:90.225600px;}
._1d{width:93.868800px;}
._43{width:94.924800px;}
._24{width:100.890000px;}
._41{width:103.636800px;}
._42{width:106.329600px;}
._46{width:110.107200px;}
._30{width:112.790400px;}
._2e{width:117.205800px;}
._31{width:118.233600px;}
._2d{width:119.441400px;}
._21{width:124.204800px;}
._35{width:130.924800px;}
._29{width:139.171200px;}
._16{width:143.640000px;}
._22{width:144.926400px;}
._2b{width:149.587200px;}
._34{width:151.732800px;}
._20{width:164.125200px;}
._1f{width:166.180800px;}
._33{width:177.595200px;}
._32{width:180.416400px;}
._1a{width:188.136000px;}
._25{width:193.406400px;}
._37{width:198.332400px;}
._40{width:200.923200px;}
._2a{width:205.771200px;}
._2c{width:210.316800px;}
._1e{width:232.771200px;}
._27{width:259.468800px;}
._3b{width:261.508800px;}
._1c{width:279.436800px;}
._3d{width:281.086800px;}
._d{width:282.562800px;}
._1b{width:288.100800px;}
._3e{width:293.572800px;}
._19{width:300.686400px;}
._3a{width:309.556800px;}
._38{width:312.196800px;}
._39{width:314.884800px;}
._3c{width:333.556800px;}
._12{width:337.809600px;}
._26{width:360.100800px;}
._36{width:464.635200px;}
._17{width:681.667200px;}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc6{color:rgb(8,19,25);}
.fc5{color:rgb(8,19,25);}
.fc2{color:rgb(205,30,37);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(27,40,73);}
.fs9{font-size:27.840000px;}
.fs2{font-size:30.000000px;}
.fs5{font-size:34.800000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.045000px;}
.ye7{bottom:71.006400px;}
.y3c{bottom:71.469750px;}
.y11a{bottom:72.141750px;}
.y12c{bottom:74.621400px;}
.ye8{bottom:75.632250px;}
.y13e{bottom:81.068550px;}
.y63{bottom:87.282600px;}
.y1dc{bottom:87.497400px;}
.y1d9{bottom:87.499650px;}
.y3b{bottom:87.969750px;}
.y86{bottom:95.307750px;}
.y13d{bottom:98.308950px;}
.yca{bottom:100.154550px;}
.ye6{bottom:101.261400px;}
.y172{bottom:103.375500px;}
.y19f{bottom:104.294700px;}
.y1db{bottom:105.497400px;}
.y1d8{bottom:105.499650px;}
.y62{bottom:106.032600px;}
.y85{bottom:110.307750px;}
.y13c{bottom:115.548150px;}
.ye5{bottom:117.761400px;}
.yc9{bottom:118.904550px;}
.y19e{bottom:122.294700px;}
.y171{bottom:122.875500px;}
.y1da{bottom:123.497400px;}
.y1d7{bottom:123.499650px;}
.y61{bottom:124.782600px;}
.y84{bottom:125.307750px;}
.y3a{bottom:127.813275px;}
.y13b{bottom:132.788550px;}
.yc8{bottom:137.654550px;}
.y19d{bottom:140.294700px;}
.y83{bottom:140.307750px;}
.y1d6{bottom:141.499650px;}
.y170{bottom:142.375500px;}
.y60{bottom:143.532600px;}
.y39{bottom:145.064550px;}
.y13a{bottom:150.027750px;}
.y82{bottom:155.307750px;}
.yc7{bottom:156.404550px;}
.y19c{bottom:158.294700px;}
.y1d5{bottom:159.499650px;}
.ye9{bottom:160.214250px;}
.y16f{bottom:161.875500px;}
.y5f{bottom:162.282600px;}
.y38{bottom:162.314175px;}
.y139{bottom:167.268150px;}
.yc6{bottom:175.154550px;}
.y19b{bottom:176.294700px;}
.y1d4{bottom:177.499650px;}
.y81{bottom:177.987750px;}
.y37{bottom:179.563800px;}
.y5e{bottom:181.032600px;}
.y16e{bottom:181.375500px;}
.y138{bottom:184.507350px;}
.y80{bottom:192.987750px;}
.yc5{bottom:193.904550px;}
.y19a{bottom:194.294700px;}
.y1d3{bottom:195.499650px;}
.y36{bottom:196.813425px;}
.y5d{bottom:199.782600px;}
.y16d{bottom:200.875500px;}
.y137{bottom:201.748950px;}
.y7f{bottom:207.987750px;}
.y199{bottom:212.294700px;}
.yc4{bottom:212.654550px;}
.y1d2{bottom:213.499650px;}
.y35{bottom:214.064325px;}
.y5c{bottom:218.532600px;}
.y136{bottom:218.990550px;}
.y16c{bottom:220.375500px;}
.y7e{bottom:222.987750px;}
.y198{bottom:230.294700px;}
.y34{bottom:231.313950px;}
.yc3{bottom:231.404550px;}
.y1d1{bottom:231.499650px;}
.y135{bottom:236.230050px;}
.y5b{bottom:237.282600px;}
.y7d{bottom:237.987750px;}
.y16b{bottom:239.875500px;}
.yea{bottom:244.088250px;}
.y197{bottom:248.294700px;}
.y33{bottom:248.563575px;}
.y1d0{bottom:249.499650px;}
.y7c{bottom:252.987750px;}
.y5a{bottom:256.032600px;}
.yc2{bottom:256.532700px;}
.y16a{bottom:259.375500px;}
.y134{bottom:259.846200px;}
.y196{bottom:266.294700px;}
.y32{bottom:266.905200px;}
.y1cf{bottom:267.499650px;}
.y7b{bottom:267.987750px;}
.y59{bottom:274.782600px;}
.y169{bottom:278.875500px;}
.y7a{bottom:282.987750px;}
.y195{bottom:284.294700px;}
.y1ce{bottom:285.499650px;}
.yc1{bottom:285.912000px;}
.y133{bottom:289.874700px;}
.y58{bottom:293.532600px;}
.y79{bottom:297.987750px;}
.y168{bottom:298.375500px;}
.y1cd{bottom:303.499650px;}
.yc0{bottom:304.662000px;}
.y132{bottom:304.874700px;}
.y194{bottom:306.545700px;}
.y57{bottom:312.282600px;}
.y78{bottom:312.987750px;}
.y31{bottom:313.680075px;}
.y2f{bottom:314.772375px;}
.yeb{bottom:316.159050px;}
.y167{bottom:317.875500px;}
.y131{bottom:319.874700px;}
.y1cc{bottom:321.499650px;}
.ybf{bottom:323.412000px;}
.y77{bottom:327.987750px;}
.y30{bottom:330.929700px;}
.y56{bottom:331.032600px;}
.y2e{bottom:332.021850px;}
.y166{bottom:337.375500px;}
.y1cb{bottom:339.499650px;}
.ybe{bottom:342.162000px;}
.y76{bottom:348.961350px;}
.y55{bottom:349.782600px;}
.y2d{bottom:354.397350px;}
.y165{bottom:356.875500px;}
.y1ca{bottom:357.499650px;}
.ybd{bottom:360.912000px;}
.y54{bottom:368.532600px;}
.y119{bottom:368.740350px;}
.y75{bottom:374.323350px;}
.y1c9{bottom:375.499650px;}
.y2c{bottom:375.685950px;}
.y164{bottom:376.375500px;}
.y1a0{bottom:378.061350px;}
.ybc{bottom:379.662000px;}
.y53{bottom:387.282600px;}
.yec{bottom:390.620250px;}
.y2b{bottom:392.935575px;}
.y1c8{bottom:393.499650px;}
.y163{bottom:395.875500px;}
.ybb{bottom:398.412000px;}
.y52{bottom:406.032600px;}
.y74{bottom:409.573650px;}
.y2a{bottom:410.185200px;}
.y1c7{bottom:411.499650px;}
.y162{bottom:415.375500px;}
.yba{bottom:423.540000px;}
.y51{bottom:424.782600px;}
.y29{bottom:427.434825px;}
.y73{bottom:428.323650px;}
.y1c6{bottom:429.499650px;}
.y193{bottom:434.796150px;}
.y161{bottom:434.875500px;}
.y50{bottom:443.532600px;}
.y28{bottom:444.684450px;}
.y72{bottom:447.073650px;}
.y1c5{bottom:447.499650px;}
.y12b{bottom:450.666000px;}
.yb9{bottom:452.920800px;}
.y192{bottom:453.546150px;}
.y160{bottom:454.375500px;}
.y27{bottom:461.934075px;}
.y4f{bottom:462.282600px;}
.y1c4{bottom:465.499650px;}
.y71{bottom:465.823650px;}
.yed{bottom:468.835050px;}
.yf4{bottom:468.835650px;}
.y130{bottom:469.135650px;}
.yb8{bottom:471.670800px;}
.y191{bottom:472.296150px;}
.y15f{bottom:473.875500px;}
.y26{bottom:479.183700px;}
.y4e{bottom:481.032600px;}
.y1c3{bottom:483.499650px;}
.y12f{bottom:484.135650px;}
.y70{bottom:484.573650px;}
.yb7{bottom:490.420800px;}
.y190{bottom:491.046150px;}
.y15e{bottom:493.375500px;}
.y25{bottom:496.433325px;}
.y12e{bottom:499.135650px;}
.y4d{bottom:499.782600px;}
.y1c2{bottom:501.499650px;}
.y6f{bottom:503.323650px;}
.yb6{bottom:509.170800px;}
.y15d{bottom:512.875500px;}
.y24{bottom:513.682950px;}
.y12d{bottom:514.135650px;}
.y4c{bottom:518.532600px;}
.y1c1{bottom:519.499650px;}
.y6e{bottom:522.073650px;}
.y18f{bottom:522.552150px;}
.yb5{bottom:527.920800px;}
.y23{bottom:530.932575px;}
.y15c{bottom:532.375500px;}
.y4b{bottom:537.282600px;}
.y1c0{bottom:537.499650px;}
.y6d{bottom:540.823650px;}
.yb4{bottom:546.670800px;}
.y22{bottom:548.182200px;}
.y15b{bottom:551.875500px;}
.y1bf{bottom:555.499650px;}
.y4a{bottom:556.032600px;}
.y6c{bottom:559.573650px;}
.yb3{bottom:565.420800px;}
.y21{bottom:565.431825px;}
.yee{bottom:566.677050px;}
.y18e{bottom:566.815500px;}
.y15a{bottom:571.375500px;}
.y1be{bottom:573.499650px;}
.y49{bottom:574.782600px;}
.ye4{bottom:577.746600px;}
.y20{bottom:582.681450px;}
.yb2{bottom:584.170800px;}
.y6b{bottom:584.701800px;}
.y18d{bottom:586.315500px;}
.y118{bottom:587.090100px;}
.y159{bottom:590.875500px;}
.y1bd{bottom:591.499650px;}
.y48{bottom:593.532600px;}
.ye3{bottom:596.796600px;}
.y1f{bottom:599.931075px;}
.yb1{bottom:602.920800px;}
.y117{bottom:603.590100px;}
.y18c{bottom:605.815500px;}
.y1bc{bottom:609.499650px;}
.y158{bottom:610.375500px;}
.y47{bottom:612.282600px;}
.ye2{bottom:615.846600px;}
.y1e{bottom:617.180700px;}
.y116{bottom:620.090100px;}
.y6a{bottom:620.460300px;}
.y18b{bottom:625.315500px;}
.y1bb{bottom:627.499650px;}
.yb0{bottom:628.048950px;}
.y157{bottom:629.875500px;}
.y46{bottom:631.032600px;}
.y1d{bottom:634.430325px;}
.ye1{bottom:634.896600px;}
.y115{bottom:636.590100px;}
.y13f{bottom:640.770450px;}
.y18a{bottom:644.815500px;}
.y1ba{bottom:645.499650px;}
.y156{bottom:649.375500px;}
.y45{bottom:649.782600px;}
.y1c{bottom:652.771950px;}
.ye0{bottom:653.946600px;}
.yaf{bottom:657.429600px;}
.y114{bottom:658.845300px;}
.y1b9{bottom:663.499650px;}
.y189{bottom:664.315500px;}
.y69{bottom:664.722600px;}
.y44{bottom:668.532600px;}
.y155{bottom:668.875500px;}
.ydf{bottom:672.996600px;}
.yef{bottom:673.065450px;}
.yf5{bottom:673.066050px;}
.yae{bottom:676.179600px;}
.y113{bottom:677.328900px;}
.y112{bottom:677.586900px;}
.y1b8{bottom:681.499650px;}
.y68{bottom:683.472600px;}
.y188{bottom:683.815500px;}
.y43{bottom:687.282600px;}
.y154{bottom:688.375500px;}
.yde{bottom:692.046600px;}
.yad{bottom:694.929600px;}
.y111{bottom:696.070500px;}
.y110{bottom:696.327300px;}
.y1b7{bottom:699.499650px;}
.y67{bottom:702.222600px;}
.y187{bottom:703.315500px;}
.y42{bottom:706.032600px;}
.y12a{bottom:706.755450px;}
.y153{bottom:707.875500px;}
.ydd{bottom:711.096600px;}
.y1b{bottom:713.019450px;}
.yac{bottom:713.679600px;}
.y10f{bottom:715.070100px;}
.y1b6{bottom:717.499650px;}
.y66{bottom:720.972600px;}
.y186{bottom:722.815500px;}
.y41{bottom:724.782600px;}
.y1a{bottom:726.819600px;}
.y152{bottom:727.375500px;}
.ydc{bottom:730.146600px;}
.yab{bottom:732.429600px;}
.y10e{bottom:733.810500px;}
.y1b5{bottom:735.499650px;}
.y65{bottom:739.722600px;}
.y185{bottom:742.315500px;}
.y151{bottom:746.875500px;}
.ydb{bottom:749.196600px;}
.y19{bottom:750.519450px;}
.yaa{bottom:751.179600px;}
.y10d{bottom:752.553300px;}
.y1b4{bottom:753.499650px;}
.y40{bottom:756.288600px;}
.y64{bottom:758.472600px;}
.y184{bottom:761.815500px;}
.y150{bottom:766.375500px;}
.yf0{bottom:767.086650px;}
.yda{bottom:768.246600px;}
.y18{bottom:768.572100px;}
.y10c{bottom:771.035700px;}
.y10b{bottom:771.293700px;}
.y1b3{bottom:771.499650px;}
.ya9{bottom:776.307750px;}
.y183{bottom:781.315500px;}
.y1ed{bottom:783.119250px;}
.y200{bottom:784.994850px;}
.y14f{bottom:785.875500px;}
.y1b2{bottom:789.499650px;}
.y10a{bottom:789.778500px;}
.y109{bottom:790.035300px;}
.y16{bottom:800.033250px;}
.yd9{bottom:800.052750px;}
.y17{bottom:800.078250px;}
.y182{bottom:800.815500px;}
.y1ec{bottom:801.494850px;}
.y1ff{bottom:802.244850px;}
.y14e{bottom:805.375500px;}
.ya8{bottom:805.687650px;}
.y1b1{bottom:807.499650px;}
.y108{bottom:808.778100px;}
.y98{bottom:818.863275px;}
.y1fe{bottom:819.494850px;}
.y1eb{bottom:819.870450px;}
.y96{bottom:819.955275px;}
.y181{bottom:820.315500px;}
.y14{bottom:824.033250px;}
.y15{bottom:824.078250px;}
.ya7{bottom:824.437650px;}
.y14d{bottom:824.875500px;}
.y1b0{bottom:825.499650px;}
.y107{bottom:827.292900px;}
.y97{bottom:836.112900px;}
.y1fd{bottom:836.744850px;}
.y95{bottom:837.204750px;}
.y1ea{bottom:838.246050px;}
.y180{bottom:839.815500px;}
.ya6{bottom:843.187650px;}
.y1af{bottom:843.499650px;}
.y14c{bottom:844.375500px;}
.yf1{bottom:845.301450px;}
.yf6{bottom:845.302050px;}
.y12{bottom:848.033400px;}
.y13{bottom:848.078400px;}
.yd8{bottom:849.563550px;}
.y106{bottom:851.431200px;}
.y1fc{bottom:853.994850px;}
.y1e9{bottom:856.620450px;}
.y94{bottom:858.487275px;}
.y17f{bottom:859.315500px;}
.y1ae{bottom:861.499650px;}
.ya5{bottom:861.937650px;}
.y14b{bottom:863.875500px;}
.y105{bottom:867.930900px;}
.yd7{bottom:868.313550px;}
.y1fb{bottom:871.244850px;}
.y1e8{bottom:874.994850px;}
.y93{bottom:876.828900px;}
.y17e{bottom:878.815500px;}
.y1ad{bottom:879.499650px;}
.ya4{bottom:880.687650px;}
.y14a{bottom:883.375500px;}
.yd6{bottom:887.063550px;}
.y1fa{bottom:888.494850px;}
.y1e7{bottom:893.369250px;}
.y1ac{bottom:897.499650px;}
.y92{bottom:898.112550px;}
.y17d{bottom:898.315500px;}
.ya3{bottom:899.437650px;}
.y149{bottom:902.875500px;}
.y1f9{bottom:905.744850px;}
.yd5{bottom:905.813550px;}
.y11{bottom:911.044050px;}
.y1e6{bottom:911.744850px;}
.y91{bottom:915.362175px;}
.y1ab{bottom:915.499650px;}
.y17c{bottom:917.815500px;}
.ya2{bottom:918.187650px;}
.y148{bottom:922.375500px;}
.y1f8{bottom:922.994850px;}
.yd4{bottom:924.563550px;}
.y104{bottom:927.937200px;}
.yfc{bottom:929.437650px;}
.y10{bottom:929.793750px;}
.y1e5{bottom:930.120450px;}
.y90{bottom:932.611800px;}
.y1aa{bottom:933.499650px;}
.ya1{bottom:936.937650px;}
.y17b{bottom:937.315500px;}
.yf2{bottom:937.831050px;}
.y1f7{bottom:940.244850px;}
.y147{bottom:941.875500px;}
.y120{bottom:942.808050px;}
.yd3{bottom:943.313550px;}
.y129{bottom:943.315050px;}
.yf{bottom:947.846550px;}
.y103{bottom:948.187200px;}
.y1e4{bottom:948.496050px;}
.y8f{bottom:949.861425px;}
.y1a9{bottom:951.499650px;}
.yfb{bottom:951.937650px;}
.ya0{bottom:955.687650px;}
.y17a{bottom:956.815500px;}
.y1f6{bottom:957.494850px;}
.y146{bottom:961.375500px;}
.y11f{bottom:961.558050px;}
.yd2{bottom:962.063550px;}
.y128{bottom:962.065050px;}
.y1e3{bottom:966.871650px;}
.y8e{bottom:967.112700px;}
.y102{bottom:968.437200px;}
.y1a8{bottom:969.499650px;}
.y9f{bottom:974.437650px;}
.y1f5{bottom:974.744850px;}
.y179{bottom:976.315500px;}
.yd{bottom:979.306050px;}
.ye{bottom:979.351050px;}
.y11e{bottom:980.308050px;}
.yd1{bottom:980.813550px;}
.y127{bottom:980.815050px;}
.y145{bottom:980.875500px;}
.y8d{bottom:984.362325px;}
.y1e2{bottom:985.247250px;}
.y1a7{bottom:987.499650px;}
.y101{bottom:988.687200px;}
.y1f4{bottom:991.994850px;}
.y9e{bottom:993.187650px;}
.y178{bottom:995.815500px;}
.yfa{bottom:996.937650px;}
.yd0{bottom:999.563550px;}
.y126{bottom:999.565050px;}
.y144{bottom:1000.375500px;}
.y8c{bottom:1001.611950px;}
.yb{bottom:1003.306200px;}
.yc{bottom:1003.351200px;}
.y1e1{bottom:1003.622850px;}
.y11d{bottom:1005.435600px;}
.y1a6{bottom:1005.499650px;}
.y100{bottom:1008.937200px;}
.y1f3{bottom:1009.244850px;}
.y9d{bottom:1011.937650px;}
.y177{bottom:1015.315500px;}
.ycf{bottom:1018.313550px;}
.y125{bottom:1018.315050px;}
.y8b{bottom:1018.861575px;}
.yf9{bottom:1019.437650px;}
.y143{bottom:1019.875500px;}
.yf3{bottom:1020.653850px;}
.y1e0{bottom:1021.998450px;}
.y1a5{bottom:1023.499650px;}
.y11c{bottom:1024.185600px;}
.y1f2{bottom:1026.494850px;}
.y9{bottom:1027.306200px;}
.ya{bottom:1027.351200px;}
.yff{bottom:1029.187200px;}
.y9c{bottom:1030.687650px;}
.y176{bottom:1034.815500px;}
.y8a{bottom:1036.112775px;}
.yce{bottom:1037.063550px;}
.y124{bottom:1037.065050px;}
.y142{bottom:1039.375500px;}
.y1df{bottom:1040.374050px;}
.y1a4{bottom:1041.499650px;}
.yf8{bottom:1041.937650px;}
.y11b{bottom:1042.935600px;}
.y1f1{bottom:1043.744850px;}
.y9b{bottom:1049.437650px;}
.y89{bottom:1053.362400px;}
.y175{bottom:1054.315500px;}
.ycd{bottom:1055.813550px;}
.y123{bottom:1055.815050px;}
.yfe{bottom:1055.815650px;}
.y1de{bottom:1058.749650px;}
.y141{bottom:1058.875500px;}
.y1a3{bottom:1059.499650px;}
.y1f0{bottom:1060.994850px;}
.yf7{bottom:1064.437650px;}
.y9a{bottom:1068.187650px;}
.y88{bottom:1070.612025px;}
.y174{bottom:1073.815500px;}
.ycc{bottom:1074.563550px;}
.y122{bottom:1074.565050px;}
.yfd{bottom:1074.565650px;}
.y3d{bottom:1075.302750px;}
.y1dd{bottom:1077.125250px;}
.y1a2{bottom:1077.499650px;}
.y1ef{bottom:1078.244850px;}
.y87{bottom:1087.861650px;}
.y140{bottom:1091.131500px;}
.ycb{bottom:1093.313550px;}
.y121{bottom:1093.315050px;}
.y173{bottom:1093.315500px;}
.y99{bottom:1093.315650px;}
.y1ee{bottom:1095.494850px;}
.y1a1{bottom:1095.499650px;}
.y5{bottom:1096.482600px;}
.y7{bottom:1100.682600px;}
.y4{bottom:1105.482600px;}
.y2{bottom:1105.729650px;}
.y3{bottom:1114.482600px;}
.y1{bottom:1121.929650px;}
.y6{bottom:1123.260000px;}
.y3f{bottom:1135.835400px;}
.y3e{bottom:1136.927550px;}
.h8{height:25.335352px;}
.h3{height:26.074219px;}
.h12{height:34.945312px;}
.h1b{height:36.750000px;}
.he{height:37.129395px;}
.hd{height:37.179223px;}
.hb{height:37.185223px;}
.hf{height:37.380047px;}
.h4{height:39.313477px;}
.h11{height:41.273438px;}
.hc{height:41.553223px;}
.h18{height:41.718750px;}
.h10{height:41.748047px;}
.h1d{height:42.300637px;}
.h1c{height:42.305438px;}
.ha{height:43.681641px;}
.h7{height:45.135352px;}
.h9{height:45.135952px;}
.h15{height:46.432617px;}
.h2{height:46.933594px;}
.h1e{height:47.988281px;}
.h13{height:51.591797px;}
.h14{height:52.148438px;}
.h6{height:52.417969px;}
.h1{height:57.363281px;}
.h16{height:64.945312px;}
.h17{height:71.273438px;}
.h1a{height:101.273438px;}
.h19{height:101.280638px;}
.h5{height:1187.955000px;}
.h0{height:1188.000000px;}
.w1{width:914.175000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:1.913400px;}
.x3{left:57.879000px;}
.x1b{left:59.315100px;}
.x19{left:65.315100px;}
.x2{left:70.833750px;}
.x12{left:73.741350px;}
.x7{left:76.222500px;}
.x8{left:78.135900px;}
.x61{left:80.900700px;}
.x24{left:84.826950px;}
.x60{left:87.575100px;}
.x9{left:91.510950px;}
.xa{left:93.424350px;}
.x1d{left:102.543450px;}
.x13{left:105.709650px;}
.x14{left:107.623050px;}
.x10{left:116.129100px;}
.x11{left:118.042500px;}
.xe{left:124.200180px;}
.x1e{left:127.346700px;}
.x1{left:140.996550px;}
.x18{left:171.601800px;}
.x27{left:173.919300px;}
.x5b{left:178.114800px;}
.x5c{left:179.445300px;}
.x1a{left:186.496800px;}
.x16{left:188.345850px;}
.x5a{left:191.941800px;}
.x2b{left:205.262250px;}
.x2a{left:212.643450px;}
.x28{left:220.143450px;}
.x15{left:222.802950px;}
.x29{left:227.643450px;}
.xf{left:229.381950px;}
.x2c{left:236.491050px;}
.xd{left:249.546450px;}
.x5d{left:255.468450px;}
.x17{left:258.012300px;}
.x2f{left:264.245850px;}
.x2d{left:271.745850px;}
.x30{left:279.245850px;}
.x2e{left:286.745850px;}
.x31{left:294.245850px;}
.x32{left:319.990650px;}
.xb{left:325.418700px;}
.xc{left:327.332100px;}
.x33{left:334.990650px;}
.x5e{left:348.948600px;}
.x3b{left:360.734250px;}
.x39{left:368.234250px;}
.x36{left:375.734250px;}
.x34{left:383.234250px;}
.x37{left:390.734250px;}
.x35{left:398.234250px;}
.x38{left:405.734250px;}
.x3a{left:413.234250px;}
.x3c{left:420.734250px;}
.x5f{left:434.028750px;}
.x3e{left:446.479050px;}
.x25{left:454.747950px;}
.x3f{left:461.479050px;}
.x3d{left:468.979050px;}
.x40{left:476.479050px;}
.x26{left:480.260400px;}
.x1f{left:497.272200px;}
.x43{left:502.223850px;}
.x21{left:503.643900px;}
.x41{left:509.723850px;}
.x44{left:517.223850px;}
.x62{left:518.852700px;}
.x20{left:522.781050px;}
.x42{left:524.723850px;}
.x45{left:532.223850px;}
.x1c{left:550.885050px;}
.x48{left:557.968650px;}
.x46{left:565.468650px;}
.x49{left:572.968650px;}
.x47{left:580.468650px;}
.x4a{left:587.968650px;}
.x4c{left:613.713450px;}
.x4b{left:628.713450px;}
.x4e{left:636.213450px;}
.x22{left:641.457900px;}
.x4d{left:643.713450px;}
.x51{left:669.455850px;}
.x4{left:672.439200px;}
.x4f{left:676.955850px;}
.x5{left:680.211150px;}
.x59{left:682.850250px;}
.x52{left:684.455850px;}
.x50{left:691.955850px;}
.x53{left:699.455850px;}
.x56{left:725.200650px;}
.x54{left:732.700650px;}
.x57{left:740.200650px;}
.x55{left:747.700650px;}
.x58{left:755.200650px;}
.x23{left:791.625150px;}
@media print{
.v2{vertical-align:-17.599467pt;}
.v3{vertical-align:-3.882667pt;}
.v6{vertical-align:-0.917333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.917333pt;}
.v8{vertical-align:14.080000pt;}
.v1{vertical-align:17.600000pt;}
.v4{vertical-align:26.666667pt;}
.v5{vertical-align:53.339733pt;}
.ls48{letter-spacing:-6.981333pt;}
.ls46{letter-spacing:-1.600000pt;}
.ls47{letter-spacing:-1.584000pt;}
.ls19{letter-spacing:-0.537600pt;}
.ls1c{letter-spacing:-0.506667pt;}
.ls32{letter-spacing:-0.025333pt;}
.ls31{letter-spacing:-0.020267pt;}
.ls33{letter-spacing:-0.015200pt;}
.ls18{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001067pt;}
.ls5{letter-spacing:0.002027pt;}
.ls9{letter-spacing:0.002667pt;}
.ls4a{letter-spacing:0.004267pt;}
.ls11{letter-spacing:0.005067pt;}
.ls3{letter-spacing:0.006400pt;}
.ls4{letter-spacing:0.006933pt;}
.ls49{letter-spacing:0.008533pt;}
.ls10{letter-spacing:0.010133pt;}
.ls8{letter-spacing:0.010667pt;}
.ls1d{letter-spacing:0.012800pt;}
.ls13{letter-spacing:0.015200pt;}
.ls2b{letter-spacing:0.020267pt;}
.ls12{letter-spacing:0.025333pt;}
.ls2c{letter-spacing:0.030133pt;}
.ls25{letter-spacing:0.035467pt;}
.ls24{letter-spacing:0.111467pt;}
.ls23{letter-spacing:0.116533pt;}
.ls35{letter-spacing:0.426667pt;}
.ls34{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.891733pt;}
.ls16{letter-spacing:0.988000pt;}
.lsf{letter-spacing:1.008267pt;}
.ls14{letter-spacing:1.013333pt;}
.ls17{letter-spacing:1.023467pt;}
.lse{letter-spacing:1.028533pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.077333pt;}
.ls20{letter-spacing:1.089333pt;}
.ls21{letter-spacing:1.094400pt;}
.ls22{letter-spacing:1.099467pt;}
.ls7{letter-spacing:1.107200pt;}
.ls6{letter-spacing:1.113600pt;}
.ls1b{letter-spacing:1.126400pt;}
.ls28{letter-spacing:1.228533pt;}
.ls26{letter-spacing:1.266667pt;}
.ls27{letter-spacing:1.271733pt;}
.lsd{letter-spacing:1.307200pt;}
.ls1{letter-spacing:2.252800pt;}
.ls29{letter-spacing:2.376267pt;}
.ls0{letter-spacing:3.350400pt;}
.ls1a{letter-spacing:3.360000pt;}
.lsc{letter-spacing:4.691733pt;}
.lsb{letter-spacing:4.929867pt;}
.ls2a{letter-spacing:6.465067pt;}
.ls30{letter-spacing:8.603200pt;}
.ls2e{letter-spacing:8.608267pt;}
.ls2f{letter-spacing:8.613333pt;}
.ls2d{letter-spacing:145.452533pt;}
.ls42{letter-spacing:157.457067pt;}
.ls45{letter-spacing:157.461333pt;}
.ls3c{letter-spacing:164.270933pt;}
.ls3b{letter-spacing:167.112533pt;}
.ls3f{letter-spacing:169.288533pt;}
.ls38{letter-spacing:169.326933pt;}
.ls40{letter-spacing:169.331200pt;}
.ls36{letter-spacing:169.365333pt;}
.ls37{letter-spacing:169.369600pt;}
.ls3a{letter-spacing:169.437867pt;}
.ls39{letter-spacing:178.948267pt;}
.ls3d{letter-spacing:179.076267pt;}
.ls3e{letter-spacing:179.097600pt;}
.ls43{letter-spacing:188.744533pt;}
.ls41{letter-spacing:188.748800pt;}
.ls44{letter-spacing:188.753067pt;}
.lsa{letter-spacing:276.630667pt;}
.wsba{word-spacing:-212.032000pt;}
.wsc3{word-spacing:-211.955200pt;}
.wsc2{word-spacing:-202.636800pt;}
.wsc1{word-spacing:-202.624000pt;}
.wsbc{word-spacing:-202.508800pt;}
.wsc5{word-spacing:-202.265600pt;}
.wsbe{word-spacing:-202.240000pt;}
.wsc6{word-spacing:-193.335467pt;}
.wsbf{word-spacing:-193.326933pt;}
.ws7{word-spacing:-66.252800pt;}
.ws6{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.ws8{word-spacing:-53.333333pt;}
.wsf{word-spacing:-51.680000pt;}
.ws4{word-spacing:-51.360000pt;}
.wse{word-spacing:-50.666667pt;}
.wsd{word-spacing:-50.160000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.462400pt;}
.wsc{word-spacing:-45.333333pt;}
.wsb2{word-spacing:-42.666667pt;}
.ws3{word-spacing:-26.666667pt;}
.ws2f{word-spacing:-17.792000pt;}
.ws6d{word-spacing:-15.360000pt;}
.wsfb{word-spacing:-14.826667pt;}
.wse5{word-spacing:-13.226667pt;}
.wsb0{word-spacing:-11.861333pt;}
.wsa{word-spacing:-11.552000pt;}
.wsb8{word-spacing:-6.519467pt;}
.wsa2{word-spacing:-3.744000pt;}
.ws147{word-spacing:-3.724800pt;}
.ws12e{word-spacing:-3.648000pt;}
.ws47{word-spacing:-3.482667pt;}
.ws46{word-spacing:-3.061333pt;}
.wsec{word-spacing:-2.784000pt;}
.wsc8{word-spacing:-2.656000pt;}
.ws9c{word-spacing:-2.474667pt;}
.wsdc{word-spacing:-2.389333pt;}
.wsca{word-spacing:-2.341333pt;}
.ws187{word-spacing:-2.338133pt;}
.ws195{word-spacing:-2.329600pt;}
.ws194{word-spacing:-2.325333pt;}
.ws1aa{word-spacing:-2.308267pt;}
.ws82{word-spacing:-2.272000pt;}
.ws39{word-spacing:-2.128000pt;}
.wsee{word-spacing:-2.101333pt;}
.ws10e{word-spacing:-2.096000pt;}
.ws161{word-spacing:-2.018133pt;}
.ws43{word-spacing:-2.016000pt;}
.ws2b{word-spacing:-2.006400pt;}
.ws137{word-spacing:-1.994667pt;}
.ws81{word-spacing:-1.978667pt;}
.ws12a{word-spacing:-1.904000pt;}
.wsf5{word-spacing:-1.898667pt;}
.wsf4{word-spacing:-1.877333pt;}
.ws162{word-spacing:-1.843200pt;}
.ws12c{word-spacing:-1.797333pt;}
.ws11{word-spacing:-1.780800pt;}
.wsdb{word-spacing:-1.754667pt;}
.wsda{word-spacing:-1.749333pt;}
.ws53{word-spacing:-1.733333pt;}
.wsaa{word-spacing:-1.712000pt;}
.ws2a{word-spacing:-1.697333pt;}
.ws1a9{word-spacing:-1.527467pt;}
.ws126{word-spacing:-1.498667pt;}
.ws3d{word-spacing:-1.482667pt;}
.wscf{word-spacing:-1.461333pt;}
.wsed{word-spacing:-1.450667pt;}
.ws20{word-spacing:-1.428800pt;}
.wsad{word-spacing:-1.399467pt;}
.ws172{word-spacing:-1.271467pt;}
.ws67{word-spacing:-1.236267pt;}
.ws181{word-spacing:-1.228800pt;}
.ws1ab{word-spacing:-1.198933pt;}
.wsb9{word-spacing:-1.186133pt;}
.ws22{word-spacing:-1.160267pt;}
.wsd0{word-spacing:-1.136000pt;}
.ws12{word-spacing:-1.126400pt;}
.ws91{word-spacing:-1.109333pt;}
.ws1ac{word-spacing:-1.088000pt;}
.ws85{word-spacing:-1.082667pt;}
.ws12f{word-spacing:-1.077333pt;}
.ws57{word-spacing:-0.928000pt;}
.ws130{word-spacing:-0.864000pt;}
.ws178{word-spacing:-0.836267pt;}
.wsd5{word-spacing:-0.772267pt;}
.ws149{word-spacing:-0.759467pt;}
.ws190{word-spacing:-0.755200pt;}
.ws42{word-spacing:-0.752000pt;}
.ws8f{word-spacing:-0.704000pt;}
.ws1a4{word-spacing:-0.635733pt;}
.ws180{word-spacing:-0.597333pt;}
.ws140{word-spacing:-0.570667pt;}
.wsf1{word-spacing:-0.560000pt;}
.ws10b{word-spacing:-0.549333pt;}
.ws110{word-spacing:-0.522667pt;}
.ws4a{word-spacing:-0.432000pt;}
.ws14f{word-spacing:-0.401067pt;}
.ws18{word-spacing:-0.400267pt;}
.ws19{word-spacing:-0.395200pt;}
.ws17e{word-spacing:-0.379733pt;}
.ws13c{word-spacing:-0.357333pt;}
.ws87{word-spacing:-0.325333pt;}
.ws13b{word-spacing:-0.309333pt;}
.ws14d{word-spacing:-0.285867pt;}
.ws10a{word-spacing:-0.266667pt;}
.ws6c{word-spacing:-0.238133pt;}
.ws6a{word-spacing:-0.233067pt;}
.ws6b{word-spacing:-0.228000pt;}
.ws2d{word-spacing:-0.213333pt;}
.ws3e{word-spacing:-0.202667pt;}
.ws80{word-spacing:-0.176000pt;}
.ws8e{word-spacing:-0.133333pt;}
.ws2c{word-spacing:-0.101333pt;}
.ws93{word-spacing:-0.090667pt;}
.ws23{word-spacing:-0.076000pt;}
.ws176{word-spacing:-0.055467pt;}
.ws5{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.050667pt;}
.ws2e{word-spacing:-0.048000pt;}
.ws6e{word-spacing:-0.042667pt;}
.wsa3{word-spacing:-0.032000pt;}
.ws171{word-spacing:-0.025600pt;}
.ws10{word-spacing:0.000000pt;}
.ws69{word-spacing:0.015200pt;}
.ws1ad{word-spacing:0.017067pt;}
.ws68{word-spacing:0.020267pt;}
.ws165{word-spacing:0.025600pt;}
.wsea{word-spacing:0.026667pt;}
.ws63{word-spacing:0.076000pt;}
.ws14e{word-spacing:0.119467pt;}
.wse3{word-spacing:0.138667pt;}
.wsd9{word-spacing:0.165333pt;}
.ws37{word-spacing:0.170667pt;}
.ws38{word-spacing:0.176000pt;}
.ws8d{word-spacing:0.181333pt;}
.ws3f{word-spacing:0.208000pt;}
.ws13e{word-spacing:0.218667pt;}
.ws34{word-spacing:0.250667pt;}
.ws1b{word-spacing:0.258400pt;}
.wsa8{word-spacing:0.282667pt;}
.ws1a5{word-spacing:0.345600pt;}
.ws123{word-spacing:0.346667pt;}
.ws24{word-spacing:0.369867pt;}
.ws1a8{word-spacing:0.384000pt;}
.ws146{word-spacing:0.549333pt;}
.ws75{word-spacing:0.554667pt;}
.ws17d{word-spacing:0.593067pt;}
.ws45{word-spacing:0.608000pt;}
.ws184{word-spacing:0.627200pt;}
.ws58{word-spacing:0.629333pt;}
.ws1a7{word-spacing:0.674133pt;}
.ws107{word-spacing:0.688000pt;}
.ws122{word-spacing:0.693333pt;}
.ws1ba{word-spacing:0.742400pt;}
.ws179{word-spacing:0.746667pt;}
.ws1ae{word-spacing:0.750933pt;}
.ws10d{word-spacing:0.752000pt;}
.wsa5{word-spacing:0.762667pt;}
.ws5f{word-spacing:0.773333pt;}
.ws1b0{word-spacing:0.806400pt;}
.ws79{word-spacing:0.826667pt;}
.ws111{word-spacing:0.874667pt;}
.ws115{word-spacing:0.885333pt;}
.wse9{word-spacing:0.906667pt;}
.ws17{word-spacing:0.932267pt;}
.ws188{word-spacing:0.938667pt;}
.ws17a{word-spacing:0.955733pt;}
.ws1a3{word-spacing:0.977067pt;}
.ws102{word-spacing:0.992000pt;}
.ws129{word-spacing:1.029333pt;}
.ws182{word-spacing:1.075200pt;}
.ws51{word-spacing:1.082667pt;}
.ws62{word-spacing:1.084267pt;}
.wsa0{word-spacing:1.088000pt;}
.ws61{word-spacing:1.089333pt;}
.ws150{word-spacing:1.126400pt;}
.wsdd{word-spacing:1.141333pt;}
.ws92{word-spacing:1.146667pt;}
.ws94{word-spacing:1.178667pt;}
.ws104{word-spacing:1.242667pt;}
.ws64{word-spacing:1.266667pt;}
.ws174{word-spacing:1.275733pt;}
.ws13d{word-spacing:1.338667pt;}
.ws86{word-spacing:1.370667pt;}
.ws18e{word-spacing:1.395200pt;}
.ws13{word-spacing:1.472000pt;}
.wsf7{word-spacing:1.501867pt;}
.wsf6{word-spacing:1.506133pt;}
.ws29{word-spacing:1.514933pt;}
.ws28{word-spacing:1.530133pt;}
.ws74{word-spacing:1.546667pt;}
.ws134{word-spacing:1.552000pt;}
.ws1c{word-spacing:1.555467pt;}
.wsd8{word-spacing:1.574400pt;}
.wsa9{word-spacing:1.690667pt;}
.wsde{word-spacing:1.712000pt;}
.ws36{word-spacing:1.728000pt;}
.ws1b1{word-spacing:1.732267pt;}
.ws83{word-spacing:1.749333pt;}
.ws27{word-spacing:1.813867pt;}
.ws33{word-spacing:1.818667pt;}
.wsab{word-spacing:1.861333pt;}
.ws15b{word-spacing:1.932800pt;}
.ws16e{word-spacing:1.962667pt;}
.ws9a{word-spacing:1.984000pt;}
.ws1a{word-spacing:2.001333pt;}
.ws175{word-spacing:2.043733pt;}
.ws166{word-spacing:2.056533pt;}
.ws109{word-spacing:2.085333pt;}
.ws15{word-spacing:2.102667pt;}
.ws44{word-spacing:2.138667pt;}
.ws21{word-spacing:2.209067pt;}
.ws103{word-spacing:2.240000pt;}
.ws131{word-spacing:2.288000pt;}
.ws193{word-spacing:2.312533pt;}
.wscb{word-spacing:2.314667pt;}
.ws15d{word-spacing:2.338133pt;}
.ws41{word-spacing:2.352000pt;}
.ws65{word-spacing:2.376267pt;}
.ws14c{word-spacing:2.406400pt;}
.ws13a{word-spacing:2.480000pt;}
.ws59{word-spacing:2.490667pt;}
.wsf0{word-spacing:2.506667pt;}
.wsef{word-spacing:2.517333pt;}
.ws9b{word-spacing:2.533333pt;}
.ws133{word-spacing:2.613333pt;}
.ws114{word-spacing:2.629333pt;}
.ws1af{word-spacing:2.653867pt;}
.wscc{word-spacing:2.730667pt;}
.wsd7{word-spacing:2.747733pt;}
.ws10f{word-spacing:2.757333pt;}
.ws11e{word-spacing:2.826667pt;}
.ws4f{word-spacing:2.832000pt;}
.wsfa{word-spacing:2.897067pt;}
.ws96{word-spacing:2.960000pt;}
.ws15c{word-spacing:2.999467pt;}
.ws1d{word-spacing:3.045067pt;}
.ws1e{word-spacing:3.050133pt;}
.ws142{word-spacing:3.136000pt;}
.ws4b{word-spacing:3.141333pt;}
.ws139{word-spacing:3.152000pt;}
.ws168{word-spacing:3.264000pt;}
.ws157{word-spacing:3.285333pt;}
.ws25{word-spacing:3.303467pt;}
.wseb{word-spacing:3.333333pt;}
.wsce{word-spacing:3.360000pt;}
.ws125{word-spacing:3.370667pt;}
.ws90{word-spacing:3.397333pt;}
.ws15a{word-spacing:3.426133pt;}
.wsd1{word-spacing:3.445333pt;}
.ws19b{word-spacing:3.515733pt;}
.ws54{word-spacing:3.520000pt;}
.ws160{word-spacing:3.541333pt;}
.wsc9{word-spacing:3.584000pt;}
.ws192{word-spacing:3.652267pt;}
.ws7e{word-spacing:3.776000pt;}
.ws50{word-spacing:3.786667pt;}
.ws70{word-spacing:3.797333pt;}
.wsa7{word-spacing:3.808000pt;}
.wsd6{word-spacing:3.818667pt;}
.ws15f{word-spacing:3.822933pt;}
.ws95{word-spacing:3.877333pt;}
.ws16f{word-spacing:3.891200pt;}
.ws185{word-spacing:3.938133pt;}
.ws11c{word-spacing:4.032000pt;}
.ws164{word-spacing:4.087467pt;}
.ws167{word-spacing:4.096000pt;}
.ws173{word-spacing:4.104533pt;}
.ws197{word-spacing:4.177067pt;}
.ws191{word-spacing:4.241067pt;}
.ws159{word-spacing:4.270933pt;}
.ws6f{word-spacing:4.272000pt;}
.ws1b5{word-spacing:4.279467pt;}
.ws1b6{word-spacing:4.283733pt;}
.ws183{word-spacing:4.347733pt;}
.ws1b2{word-spacing:4.390400pt;}
.ws138{word-spacing:4.437333pt;}
.ws52{word-spacing:4.448000pt;}
.ws128{word-spacing:4.453333pt;}
.ws9e{word-spacing:4.485333pt;}
.ws189{word-spacing:4.526933pt;}
.wsac{word-spacing:4.561067pt;}
.ws18c{word-spacing:4.603733pt;}
.ws148{word-spacing:4.680533pt;}
.ws3a{word-spacing:4.688000pt;}
.ws113{word-spacing:4.704000pt;}
.ws1a6{word-spacing:4.765867pt;}
.wsdf{word-spacing:4.842667pt;}
.ws49{word-spacing:4.906667pt;}
.ws170{word-spacing:4.962133pt;}
.wsa1{word-spacing:5.061333pt;}
.ws78{word-spacing:5.082667pt;}
.ws101{word-spacing:5.125333pt;}
.ws19d{word-spacing:5.128533pt;}
.ws1f{word-spacing:5.203467pt;}
.ws9d{word-spacing:5.237333pt;}
.ws124{word-spacing:5.285333pt;}
.ws26{word-spacing:5.325067pt;}
.wse8{word-spacing:5.349333pt;}
.ws4e{word-spacing:5.376000pt;}
.ws48{word-spacing:5.493333pt;}
.ws14b{word-spacing:5.576533pt;}
.ws15e{word-spacing:5.606400pt;}
.ws35{word-spacing:5.717333pt;}
.ws145{word-spacing:5.749333pt;}
.ws16c{word-spacing:5.789867pt;}
.ws4c{word-spacing:5.845333pt;}
.wse1{word-spacing:5.856000pt;}
.ws30{word-spacing:5.898667pt;}
.ws169{word-spacing:6.007467pt;}
.ws98{word-spacing:6.016000pt;}
.ws151{word-spacing:6.105600pt;}
.ws12d{word-spacing:6.133333pt;}
.ws8b{word-spacing:6.138667pt;}
.ws40{word-spacing:6.240000pt;}
.wsf3{word-spacing:6.266667pt;}
.ws156{word-spacing:6.276267pt;}
.ws18b{word-spacing:6.293333pt;}
.ws10c{word-spacing:6.304000pt;}
.ws1b9{word-spacing:6.365867pt;}
.ws11b{word-spacing:6.421333pt;}
.ws66{word-spacing:6.460000pt;}
.ws17b{word-spacing:6.519467pt;}
.wsd2{word-spacing:6.634667pt;}
.wsf2{word-spacing:6.650667pt;}
.wsa6{word-spacing:6.714667pt;}
.ws163{word-spacing:6.784000pt;}
.ws12b{word-spacing:6.805333pt;}
.ws8c{word-spacing:6.816000pt;}
.ws99{word-spacing:6.912000pt;}
.wsfc{word-spacing:6.938667pt;}
.ws196{word-spacing:7.074133pt;}
.wse6{word-spacing:7.136000pt;}
.ws76{word-spacing:7.162667pt;}
.ws8a{word-spacing:7.216000pt;}
.wsa4{word-spacing:7.253333pt;}
.ws144{word-spacing:7.360000pt;}
.ws19c{word-spacing:7.415467pt;}
.wsd3{word-spacing:7.424000pt;}
.ws1b3{word-spacing:7.483733pt;}
.ws17c{word-spacing:7.603200pt;}
.wsd4{word-spacing:7.608000pt;}
.wsfd{word-spacing:7.616000pt;}
.ws132{word-spacing:7.653333pt;}
.wse0{word-spacing:7.664000pt;}
.ws154{word-spacing:7.756800pt;}
.ws105{word-spacing:7.856000pt;}
.ws16a{word-spacing:7.876267pt;}
.ws88{word-spacing:7.946667pt;}
.ws9f{word-spacing:8.128000pt;}
.ws1b4{word-spacing:8.251733pt;}
.ws112{word-spacing:8.272000pt;}
.ws13f{word-spacing:8.309333pt;}
.ws60{word-spacing:8.314667pt;}
.ws127{word-spacing:8.325333pt;}
.ws73{word-spacing:8.426667pt;}
.ws14a{word-spacing:8.541867pt;}
.ws5b{word-spacing:8.576000pt;}
.ws18f{word-spacing:8.597333pt;}
.ws7b{word-spacing:8.650667pt;}
.ws31{word-spacing:8.704000pt;}
.ws14{word-spacing:8.775467pt;}
.ws158{word-spacing:8.827733pt;}
.ws18d{word-spacing:8.934400pt;}
.wsfe{word-spacing:8.954667pt;}
.wse2{word-spacing:9.125333pt;}
.ws5e{word-spacing:9.194667pt;}
.ws71{word-spacing:9.274667pt;}
.ws135{word-spacing:9.333333pt;}
.ws3b{word-spacing:9.365333pt;}
.ws116{word-spacing:9.520000pt;}
.ws121{word-spacing:9.626667pt;}
.ws117{word-spacing:9.690667pt;}
.wscd{word-spacing:9.781333pt;}
.ws1a0{word-spacing:9.834667pt;}
.ws89{word-spacing:9.845333pt;}
.ws120{word-spacing:10.165333pt;}
.ws18a{word-spacing:10.329600pt;}
.ws5a{word-spacing:10.410667pt;}
.wsff{word-spacing:10.517333pt;}
.ws143{word-spacing:10.528000pt;}
.ws198{word-spacing:10.547200pt;}
.ws11f{word-spacing:10.629333pt;}
.wse4{word-spacing:10.704000pt;}
.ws1b8{word-spacing:10.841600pt;}
.ws32{word-spacing:10.912000pt;}
.ws11d{word-spacing:10.928000pt;}
.ws108{word-spacing:10.944000pt;}
.ws5d{word-spacing:10.965333pt;}
.ws7a{word-spacing:11.104000pt;}
.ws16{word-spacing:11.187200pt;}
.ws7c{word-spacing:11.365333pt;}
.ws153{word-spacing:11.456000pt;}
.ws7f{word-spacing:11.589333pt;}
.ws72{word-spacing:12.021333pt;}
.ws77{word-spacing:12.080000pt;}
.ws11a{word-spacing:12.197333pt;}
.ws19a{word-spacing:12.224000pt;}
.ws136{word-spacing:12.384000pt;}
.ws118{word-spacing:12.469333pt;}
.ws97{word-spacing:12.826667pt;}
.ws141{word-spacing:13.061333pt;}
.ws1a1{word-spacing:13.393067pt;}
.ws19f{word-spacing:13.499733pt;}
.ws84{word-spacing:13.552000pt;}
.ws56{word-spacing:13.893333pt;}
.ws177{word-spacing:14.493867pt;}
.ws7d{word-spacing:14.549333pt;}
.ws4d{word-spacing:14.618667pt;}
.ws100{word-spacing:14.906667pt;}
.ws19e{word-spacing:15.530667pt;}
.ws119{word-spacing:15.989333pt;}
.ws16d{word-spacing:16.153600pt;}
.ws16b{word-spacing:16.187733pt;}
.ws55{word-spacing:16.261333pt;}
.wse7{word-spacing:16.266667pt;}
.ws3c{word-spacing:16.682667pt;}
.ws17f{word-spacing:17.911467pt;}
.ws199{word-spacing:18.248533pt;}
.ws5c{word-spacing:20.981333pt;}
.ws1a2{word-spacing:21.021867pt;}
.ws186{word-spacing:21.115733pt;}
.ws1b7{word-spacing:22.016000pt;}
.ws106{word-spacing:22.149333pt;}
.wsf9{word-spacing:22.361600pt;}
.wsf8{word-spacing:23.620267pt;}
.ws155{word-spacing:26.555733pt;}
.ws152{word-spacing:31.313067pt;}
.wsaf{word-spacing:76.027733pt;}
.wsb3{word-spacing:98.743467pt;}
.wsae{word-spacing:103.513600pt;}
.wsb1{word-spacing:116.347733pt;}
.wsbd{word-spacing:119.560533pt;}
.wsc7{word-spacing:176.473600pt;}
.wsbb{word-spacing:176.482133pt;}
.wsb4{word-spacing:181.824000pt;}
.wsc4{word-spacing:188.339200pt;}
.wsc0{word-spacing:188.343467pt;}
.wsb7{word-spacing:189.824000pt;}
.wsb5{word-spacing:191.961600pt;}
.wsb6{word-spacing:218.790400pt;}
.ws9{word-spacing:259.417600pt;}
._48{margin-left:-28.475733pt;}
._9{margin-left:-19.589333pt;}
._6{margin-left:-16.756800pt;}
._3f{margin-left:-14.224000pt;}
._f{margin-left:-12.939467pt;}
._e{margin-left:-11.336000pt;}
._b{margin-left:-10.026933pt;}
._15{margin-left:-9.012533pt;}
._11{margin-left:-8.116533pt;}
._7{margin-left:-6.884800pt;}
._5{margin-left:-5.498667pt;}
._1{margin-left:-3.924800pt;}
._2{margin-left:-2.264533pt;}
._0{margin-left:-1.290667pt;}
._3{width:1.056000pt;}
._4{width:2.259200pt;}
._8{width:3.936000pt;}
._c{width:5.355467pt;}
._13{width:6.465067pt;}
._2f{width:7.362133pt;}
._a{width:8.760267pt;}
._14{width:11.552000pt;}
._10{width:17.899467pt;}
._18{width:33.826133pt;}
._44{width:49.325867pt;}
._23{width:62.096000pt;}
._47{width:64.476800pt;}
._45{width:77.952000pt;}
._28{width:80.200533pt;}
._1d{width:83.438933pt;}
._43{width:84.377600pt;}
._24{width:89.680000pt;}
._41{width:92.121600pt;}
._42{width:94.515200pt;}
._46{width:97.873067pt;}
._30{width:100.258133pt;}
._2e{width:104.182933pt;}
._31{width:105.096533pt;}
._2d{width:106.170133pt;}
._21{width:110.404267pt;}
._35{width:116.377600pt;}
._29{width:123.707733pt;}
._16{width:127.680000pt;}
._22{width:128.823467pt;}
._2b{width:132.966400pt;}
._34{width:134.873600pt;}
._20{width:145.889067pt;}
._1f{width:147.716267pt;}
._33{width:157.862400pt;}
._32{width:160.370133pt;}
._1a{width:167.232000pt;}
._25{width:171.916800pt;}
._37{width:176.295467pt;}
._40{width:178.598400pt;}
._2a{width:182.907733pt;}
._2c{width:186.948267pt;}
._1e{width:206.907733pt;}
._27{width:230.638933pt;}
._3b{width:232.452267pt;}
._1c{width:248.388267pt;}
._3d{width:249.854933pt;}
._d{width:251.166933pt;}
._1b{width:256.089600pt;}
._3e{width:260.953600pt;}
._19{width:267.276800pt;}
._3a{width:275.161600pt;}
._38{width:277.508267pt;}
._39{width:279.897600pt;}
._3c{width:296.494933pt;}
._12{width:300.275200pt;}
._26{width:320.089600pt;}
._36{width:413.009067pt;}
._17{width:605.926400pt;}
.fs9{font-size:24.746667pt;}
.fs2{font-size:26.666667pt;}
.fs5{font-size:30.933333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.040000pt;}
.ye7{bottom:63.116800pt;}
.y3c{bottom:63.528667pt;}
.y11a{bottom:64.126000pt;}
.y12c{bottom:66.330133pt;}
.ye8{bottom:67.228667pt;}
.y13e{bottom:72.060933pt;}
.y63{bottom:77.584533pt;}
.y1dc{bottom:77.775467pt;}
.y1d9{bottom:77.777467pt;}
.y3b{bottom:78.195333pt;}
.y86{bottom:84.718000pt;}
.y13d{bottom:87.385733pt;}
.yca{bottom:89.026267pt;}
.ye6{bottom:90.010133pt;}
.y172{bottom:91.889333pt;}
.y19f{bottom:92.706400pt;}
.y1db{bottom:93.775467pt;}
.y1d8{bottom:93.777467pt;}
.y62{bottom:94.251200pt;}
.y85{bottom:98.051333pt;}
.y13c{bottom:102.709467pt;}
.ye5{bottom:104.676800pt;}
.yc9{bottom:105.692933pt;}
.y19e{bottom:108.706400pt;}
.y171{bottom:109.222667pt;}
.y1da{bottom:109.775467pt;}
.y1d7{bottom:109.777467pt;}
.y61{bottom:110.917867pt;}
.y84{bottom:111.384667pt;}
.y3a{bottom:113.611800pt;}
.y13b{bottom:118.034267pt;}
.yc8{bottom:122.359600pt;}
.y19d{bottom:124.706400pt;}
.y83{bottom:124.718000pt;}
.y1d6{bottom:125.777467pt;}
.y170{bottom:126.556000pt;}
.y60{bottom:127.584533pt;}
.y39{bottom:128.946267pt;}
.y13a{bottom:133.358000pt;}
.y82{bottom:138.051333pt;}
.yc7{bottom:139.026267pt;}
.y19c{bottom:140.706400pt;}
.y1d5{bottom:141.777467pt;}
.ye9{bottom:142.412667pt;}
.y16f{bottom:143.889333pt;}
.y5f{bottom:144.251200pt;}
.y38{bottom:144.279267pt;}
.y139{bottom:148.682800pt;}
.yc6{bottom:155.692933pt;}
.y19b{bottom:156.706400pt;}
.y1d4{bottom:157.777467pt;}
.y81{bottom:158.211333pt;}
.y37{bottom:159.612267pt;}
.y5e{bottom:160.917867pt;}
.y16e{bottom:161.222667pt;}
.y138{bottom:164.006533pt;}
.y80{bottom:171.544667pt;}
.yc5{bottom:172.359600pt;}
.y19a{bottom:172.706400pt;}
.y1d3{bottom:173.777467pt;}
.y36{bottom:174.945267pt;}
.y5d{bottom:177.584533pt;}
.y16d{bottom:178.556000pt;}
.y137{bottom:179.332400pt;}
.y7f{bottom:184.878000pt;}
.y199{bottom:188.706400pt;}
.yc4{bottom:189.026267pt;}
.y1d2{bottom:189.777467pt;}
.y35{bottom:190.279400pt;}
.y5c{bottom:194.251200pt;}
.y136{bottom:194.658267pt;}
.y16c{bottom:195.889333pt;}
.y7e{bottom:198.211333pt;}
.y198{bottom:204.706400pt;}
.y34{bottom:205.612400pt;}
.yc3{bottom:205.692933pt;}
.y1d1{bottom:205.777467pt;}
.y135{bottom:209.982267pt;}
.y5b{bottom:210.917867pt;}
.y7d{bottom:211.544667pt;}
.y16b{bottom:213.222667pt;}
.yea{bottom:216.967333pt;}
.y197{bottom:220.706400pt;}
.y33{bottom:220.945400pt;}
.y1d0{bottom:221.777467pt;}
.y7c{bottom:224.878000pt;}
.y5a{bottom:227.584533pt;}
.yc2{bottom:228.029067pt;}
.y16a{bottom:230.556000pt;}
.y134{bottom:230.974400pt;}
.y196{bottom:236.706400pt;}
.y32{bottom:237.249067pt;}
.y1cf{bottom:237.777467pt;}
.y7b{bottom:238.211333pt;}
.y59{bottom:244.251200pt;}
.y169{bottom:247.889333pt;}
.y7a{bottom:251.544667pt;}
.y195{bottom:252.706400pt;}
.y1ce{bottom:253.777467pt;}
.yc1{bottom:254.144000pt;}
.y133{bottom:257.666400pt;}
.y58{bottom:260.917867pt;}
.y79{bottom:264.878000pt;}
.y168{bottom:265.222667pt;}
.y1cd{bottom:269.777467pt;}
.yc0{bottom:270.810667pt;}
.y132{bottom:270.999733pt;}
.y194{bottom:272.485067pt;}
.y57{bottom:277.584533pt;}
.y78{bottom:278.211333pt;}
.y31{bottom:278.826733pt;}
.y2f{bottom:279.797667pt;}
.yeb{bottom:281.030267pt;}
.y167{bottom:282.556000pt;}
.y131{bottom:284.333067pt;}
.y1cc{bottom:285.777467pt;}
.ybf{bottom:287.477333pt;}
.y77{bottom:291.544667pt;}
.y30{bottom:294.159733pt;}
.y56{bottom:294.251200pt;}
.y2e{bottom:295.130533pt;}
.y166{bottom:299.889333pt;}
.y1cb{bottom:301.777467pt;}
.ybe{bottom:304.144000pt;}
.y76{bottom:310.187867pt;}
.y55{bottom:310.917867pt;}
.y2d{bottom:315.019867pt;}
.y165{bottom:317.222667pt;}
.y1ca{bottom:317.777467pt;}
.ybd{bottom:320.810667pt;}
.y54{bottom:327.584533pt;}
.y119{bottom:327.769200pt;}
.y75{bottom:332.731867pt;}
.y1c9{bottom:333.777467pt;}
.y2c{bottom:333.943067pt;}
.y164{bottom:334.556000pt;}
.y1a0{bottom:336.054533pt;}
.ybc{bottom:337.477333pt;}
.y53{bottom:344.251200pt;}
.yec{bottom:347.218000pt;}
.y2b{bottom:349.276067pt;}
.y1c8{bottom:349.777467pt;}
.y163{bottom:351.889333pt;}
.ybb{bottom:354.144000pt;}
.y52{bottom:360.917867pt;}
.y74{bottom:364.065467pt;}
.y2a{bottom:364.609067pt;}
.y1c7{bottom:365.777467pt;}
.y162{bottom:369.222667pt;}
.yba{bottom:376.480000pt;}
.y51{bottom:377.584533pt;}
.y29{bottom:379.942067pt;}
.y73{bottom:380.732133pt;}
.y1c6{bottom:381.777467pt;}
.y193{bottom:386.485467pt;}
.y161{bottom:386.556000pt;}
.y50{bottom:394.251200pt;}
.y28{bottom:395.275067pt;}
.y72{bottom:397.398800pt;}
.y1c5{bottom:397.777467pt;}
.y12b{bottom:400.592000pt;}
.yb9{bottom:402.596267pt;}
.y192{bottom:403.152133pt;}
.y160{bottom:403.889333pt;}
.y27{bottom:410.608067pt;}
.y4f{bottom:410.917867pt;}
.y1c4{bottom:413.777467pt;}
.y71{bottom:414.065467pt;}
.yed{bottom:416.742267pt;}
.yf4{bottom:416.742800pt;}
.y130{bottom:417.009467pt;}
.yb8{bottom:419.262933pt;}
.y191{bottom:419.818800pt;}
.y15f{bottom:421.222667pt;}
.y26{bottom:425.941067pt;}
.y4e{bottom:427.584533pt;}
.y1c3{bottom:429.777467pt;}
.y12f{bottom:430.342800pt;}
.y70{bottom:430.732133pt;}
.yb7{bottom:435.929600pt;}
.y190{bottom:436.485467pt;}
.y15e{bottom:438.556000pt;}
.y25{bottom:441.274067pt;}
.y12e{bottom:443.676133pt;}
.y4d{bottom:444.251200pt;}
.y1c2{bottom:445.777467pt;}
.y6f{bottom:447.398800pt;}
.yb6{bottom:452.596267pt;}
.y15d{bottom:455.889333pt;}
.y24{bottom:456.607067pt;}
.y12d{bottom:457.009467pt;}
.y4c{bottom:460.917867pt;}
.y1c1{bottom:461.777467pt;}
.y6e{bottom:464.065467pt;}
.y18f{bottom:464.490800pt;}
.yb5{bottom:469.262933pt;}
.y23{bottom:471.940067pt;}
.y15c{bottom:473.222667pt;}
.y4b{bottom:477.584533pt;}
.y1c0{bottom:477.777467pt;}
.y6d{bottom:480.732133pt;}
.yb4{bottom:485.929600pt;}
.y22{bottom:487.273067pt;}
.y15b{bottom:490.556000pt;}
.y1bf{bottom:493.777467pt;}
.y4a{bottom:494.251200pt;}
.y6c{bottom:497.398800pt;}
.yb3{bottom:502.596267pt;}
.y21{bottom:502.606067pt;}
.yee{bottom:503.712933pt;}
.y18e{bottom:503.836000pt;}
.y15a{bottom:507.889333pt;}
.y1be{bottom:509.777467pt;}
.y49{bottom:510.917867pt;}
.ye4{bottom:513.552533pt;}
.y20{bottom:517.939067pt;}
.yb2{bottom:519.262933pt;}
.y6b{bottom:519.734933pt;}
.y18d{bottom:521.169333pt;}
.y118{bottom:521.857867pt;}
.y159{bottom:525.222667pt;}
.y1bd{bottom:525.777467pt;}
.y48{bottom:527.584533pt;}
.ye3{bottom:530.485867pt;}
.y1f{bottom:533.272067pt;}
.yb1{bottom:535.929600pt;}
.y117{bottom:536.524533pt;}
.y18c{bottom:538.502667pt;}
.y1bc{bottom:541.777467pt;}
.y158{bottom:542.556000pt;}
.y47{bottom:544.251200pt;}
.ye2{bottom:547.419200pt;}
.y1e{bottom:548.605067pt;}
.y116{bottom:551.191200pt;}
.y6a{bottom:551.520267pt;}
.y18b{bottom:555.836000pt;}
.y1bb{bottom:557.777467pt;}
.yb0{bottom:558.265733pt;}
.y157{bottom:559.889333pt;}
.y46{bottom:560.917867pt;}
.y1d{bottom:563.938067pt;}
.ye1{bottom:564.352533pt;}
.y115{bottom:565.857867pt;}
.y13f{bottom:569.573733pt;}
.y18a{bottom:573.169333pt;}
.y1ba{bottom:573.777467pt;}
.y156{bottom:577.222667pt;}
.y45{bottom:577.584533pt;}
.y1c{bottom:580.241733pt;}
.ye0{bottom:581.285867pt;}
.yaf{bottom:584.381867pt;}
.y114{bottom:585.640267pt;}
.y1b9{bottom:589.777467pt;}
.y189{bottom:590.502667pt;}
.y69{bottom:590.864533pt;}
.y44{bottom:594.251200pt;}
.y155{bottom:594.556000pt;}
.ydf{bottom:598.219200pt;}
.yef{bottom:598.280400pt;}
.yf5{bottom:598.280933pt;}
.yae{bottom:601.048533pt;}
.y113{bottom:602.070133pt;}
.y112{bottom:602.299467pt;}
.y1b8{bottom:605.777467pt;}
.y68{bottom:607.531200pt;}
.y188{bottom:607.836000pt;}
.y43{bottom:610.917867pt;}
.y154{bottom:611.889333pt;}
.yde{bottom:615.152533pt;}
.yad{bottom:617.715200pt;}
.y111{bottom:618.729333pt;}
.y110{bottom:618.957600pt;}
.y1b7{bottom:621.777467pt;}
.y67{bottom:624.197867pt;}
.y187{bottom:625.169333pt;}
.y42{bottom:627.584533pt;}
.y12a{bottom:628.227067pt;}
.y153{bottom:629.222667pt;}
.ydd{bottom:632.085867pt;}
.y1b{bottom:633.795067pt;}
.yac{bottom:634.381867pt;}
.y10f{bottom:635.617867pt;}
.y1b6{bottom:637.777467pt;}
.y66{bottom:640.864533pt;}
.y186{bottom:642.502667pt;}
.y41{bottom:644.251200pt;}
.y1a{bottom:646.061867pt;}
.y152{bottom:646.556000pt;}
.ydc{bottom:649.019200pt;}
.yab{bottom:651.048533pt;}
.y10e{bottom:652.276000pt;}
.y1b5{bottom:653.777467pt;}
.y65{bottom:657.531200pt;}
.y185{bottom:659.836000pt;}
.y151{bottom:663.889333pt;}
.ydb{bottom:665.952533pt;}
.y19{bottom:667.128400pt;}
.yaa{bottom:667.715200pt;}
.y10d{bottom:668.936267pt;}
.y1b4{bottom:669.777467pt;}
.y40{bottom:672.256533pt;}
.y64{bottom:674.197867pt;}
.y184{bottom:677.169333pt;}
.y150{bottom:681.222667pt;}
.yf0{bottom:681.854800pt;}
.yda{bottom:682.885867pt;}
.y18{bottom:683.175200pt;}
.y10c{bottom:685.365067pt;}
.y10b{bottom:685.594400pt;}
.y1b3{bottom:685.777467pt;}
.ya9{bottom:690.051333pt;}
.y183{bottom:694.502667pt;}
.y1ed{bottom:696.106000pt;}
.y200{bottom:697.773200pt;}
.y14f{bottom:698.556000pt;}
.y1b2{bottom:701.777467pt;}
.y10a{bottom:702.025333pt;}
.y109{bottom:702.253600pt;}
.y16{bottom:711.140667pt;}
.yd9{bottom:711.158000pt;}
.y17{bottom:711.180667pt;}
.y182{bottom:711.836000pt;}
.y1ec{bottom:712.439867pt;}
.y1ff{bottom:713.106533pt;}
.y14e{bottom:715.889333pt;}
.ya8{bottom:716.166800pt;}
.y1b1{bottom:717.777467pt;}
.y108{bottom:718.913867pt;}
.y98{bottom:727.878467pt;}
.y1fe{bottom:728.439867pt;}
.y1eb{bottom:728.773733pt;}
.y96{bottom:728.849133pt;}
.y181{bottom:729.169333pt;}
.y14{bottom:732.474000pt;}
.y15{bottom:732.514000pt;}
.ya7{bottom:732.833467pt;}
.y14d{bottom:733.222667pt;}
.y1b0{bottom:733.777467pt;}
.y107{bottom:735.371467pt;}
.y97{bottom:743.211467pt;}
.y1fd{bottom:743.773200pt;}
.y95{bottom:744.182000pt;}
.y1ea{bottom:745.107600pt;}
.y180{bottom:746.502667pt;}
.ya6{bottom:749.500133pt;}
.y1af{bottom:749.777467pt;}
.y14c{bottom:750.556000pt;}
.yf1{bottom:751.379067pt;}
.yf6{bottom:751.379600pt;}
.y12{bottom:753.807467pt;}
.y13{bottom:753.847467pt;}
.yd8{bottom:755.167600pt;}
.y106{bottom:756.827733pt;}
.y1fc{bottom:759.106533pt;}
.y1e9{bottom:761.440400pt;}
.y94{bottom:763.099800pt;}
.y17f{bottom:763.836000pt;}
.y1ae{bottom:765.777467pt;}
.ya5{bottom:766.166800pt;}
.y14b{bottom:767.889333pt;}
.y105{bottom:771.494133pt;}
.yd7{bottom:771.834267pt;}
.y1fb{bottom:774.439867pt;}
.y1e8{bottom:777.773200pt;}
.y93{bottom:779.403467pt;}
.y17e{bottom:781.169333pt;}
.y1ad{bottom:781.777467pt;}
.ya4{bottom:782.833467pt;}
.y14a{bottom:785.222667pt;}
.yd6{bottom:788.500933pt;}
.y1fa{bottom:789.773200pt;}
.y1e7{bottom:794.106000pt;}
.y1ac{bottom:797.777467pt;}
.y92{bottom:798.322267pt;}
.y17d{bottom:798.502667pt;}
.ya3{bottom:799.500133pt;}
.y149{bottom:802.556000pt;}
.y1f9{bottom:805.106533pt;}
.yd5{bottom:805.167600pt;}
.y11{bottom:809.816933pt;}
.y1e6{bottom:810.439867pt;}
.y91{bottom:813.655267pt;}
.y1ab{bottom:813.777467pt;}
.y17c{bottom:815.836000pt;}
.ya2{bottom:816.166800pt;}
.y148{bottom:819.889333pt;}
.y1f8{bottom:820.439867pt;}
.yd4{bottom:821.834267pt;}
.y104{bottom:824.833067pt;}
.yfc{bottom:826.166800pt;}
.y10{bottom:826.483333pt;}
.y1e5{bottom:826.773733pt;}
.y90{bottom:828.988267pt;}
.y1aa{bottom:829.777467pt;}
.ya1{bottom:832.833467pt;}
.y17b{bottom:833.169333pt;}
.yf2{bottom:833.627600pt;}
.y1f7{bottom:835.773200pt;}
.y147{bottom:837.222667pt;}
.y120{bottom:838.051600pt;}
.yd3{bottom:838.500933pt;}
.y129{bottom:838.502267pt;}
.yf{bottom:842.530267pt;}
.y103{bottom:842.833067pt;}
.y1e4{bottom:843.107600pt;}
.y8f{bottom:844.321267pt;}
.y1a9{bottom:845.777467pt;}
.yfb{bottom:846.166800pt;}
.ya0{bottom:849.500133pt;}
.y17a{bottom:850.502667pt;}
.y1f6{bottom:851.106533pt;}
.y146{bottom:854.556000pt;}
.y11f{bottom:854.718267pt;}
.yd2{bottom:855.167600pt;}
.y128{bottom:855.168933pt;}
.y1e3{bottom:859.441467pt;}
.y8e{bottom:859.655733pt;}
.y102{bottom:860.833067pt;}
.y1a8{bottom:861.777467pt;}
.y9f{bottom:866.166800pt;}
.y1f5{bottom:866.439867pt;}
.y179{bottom:867.836000pt;}
.yd{bottom:870.494267pt;}
.ye{bottom:870.534267pt;}
.y11e{bottom:871.384933pt;}
.yd1{bottom:871.834267pt;}
.y127{bottom:871.835600pt;}
.y145{bottom:871.889333pt;}
.y8d{bottom:874.988733pt;}
.y1e2{bottom:875.775333pt;}
.y1a7{bottom:877.777467pt;}
.y101{bottom:878.833067pt;}
.y1f4{bottom:881.773200pt;}
.y9e{bottom:882.833467pt;}
.y178{bottom:885.169333pt;}
.yfa{bottom:886.166800pt;}
.yd0{bottom:888.500933pt;}
.y126{bottom:888.502267pt;}
.y144{bottom:889.222667pt;}
.y8c{bottom:890.321733pt;}
.yb{bottom:891.827733pt;}
.yc{bottom:891.867733pt;}
.y1e1{bottom:892.109200pt;}
.y11d{bottom:893.720533pt;}
.y1a6{bottom:893.777467pt;}
.y100{bottom:896.833067pt;}
.y1f3{bottom:897.106533pt;}
.y9d{bottom:899.500133pt;}
.y177{bottom:902.502667pt;}
.ycf{bottom:905.167600pt;}
.y125{bottom:905.168933pt;}
.y8b{bottom:905.654733pt;}
.yf9{bottom:906.166800pt;}
.y143{bottom:906.556000pt;}
.yf3{bottom:907.247867pt;}
.y1e0{bottom:908.443067pt;}
.y1a5{bottom:909.777467pt;}
.y11c{bottom:910.387200pt;}
.y1f2{bottom:912.439867pt;}
.y9{bottom:913.161067pt;}
.ya{bottom:913.201067pt;}
.yff{bottom:914.833067pt;}
.y9c{bottom:916.166800pt;}
.y176{bottom:919.836000pt;}
.y8a{bottom:920.989133pt;}
.yce{bottom:921.834267pt;}
.y124{bottom:921.835600pt;}
.y142{bottom:923.889333pt;}
.y1df{bottom:924.776933pt;}
.y1a4{bottom:925.777467pt;}
.yf8{bottom:926.166800pt;}
.y11b{bottom:927.053867pt;}
.y1f1{bottom:927.773200pt;}
.y9b{bottom:932.833467pt;}
.y89{bottom:936.322133pt;}
.y175{bottom:937.169333pt;}
.ycd{bottom:938.500933pt;}
.y123{bottom:938.502267pt;}
.yfe{bottom:938.502800pt;}
.y1de{bottom:941.110800pt;}
.y141{bottom:941.222667pt;}
.y1a3{bottom:941.777467pt;}
.y1f0{bottom:943.106533pt;}
.yf7{bottom:946.166800pt;}
.y9a{bottom:949.500133pt;}
.y88{bottom:951.655133pt;}
.y174{bottom:954.502667pt;}
.ycc{bottom:955.167600pt;}
.y122{bottom:955.168933pt;}
.yfd{bottom:955.169467pt;}
.y3d{bottom:955.824667pt;}
.y1dd{bottom:957.444667pt;}
.y1a2{bottom:957.777467pt;}
.y1ef{bottom:958.439867pt;}
.y87{bottom:966.988133pt;}
.y140{bottom:969.894667pt;}
.ycb{bottom:971.834267pt;}
.y121{bottom:971.835600pt;}
.y173{bottom:971.836000pt;}
.y99{bottom:971.836133pt;}
.y1ee{bottom:973.773200pt;}
.y1a1{bottom:973.777467pt;}
.y5{bottom:974.651200pt;}
.y7{bottom:978.384533pt;}
.y4{bottom:982.651200pt;}
.y2{bottom:982.870800pt;}
.y3{bottom:990.651200pt;}
.y1{bottom:997.270800pt;}
.y6{bottom:998.453333pt;}
.y3f{bottom:1009.631467pt;}
.y3e{bottom:1010.602267pt;}
.h8{height:22.520312pt;}
.h3{height:23.177083pt;}
.h12{height:31.062500pt;}
.h1b{height:32.666667pt;}
.he{height:33.003906pt;}
.hd{height:33.048198pt;}
.hb{height:33.053531pt;}
.hf{height:33.226708pt;}
.h4{height:34.945312pt;}
.h11{height:36.687500pt;}
.hc{height:36.936198pt;}
.h18{height:37.083333pt;}
.h10{height:37.109375pt;}
.h1d{height:37.600567pt;}
.h1c{height:37.604833pt;}
.ha{height:38.828125pt;}
.h7{height:40.120313pt;}
.h9{height:40.120846pt;}
.h15{height:41.273438pt;}
.h2{height:41.718750pt;}
.h1e{height:42.656250pt;}
.h13{height:45.859375pt;}
.h14{height:46.354167pt;}
.h6{height:46.593750pt;}
.h1{height:50.989583pt;}
.h16{height:57.729167pt;}
.h17{height:63.354167pt;}
.h1a{height:90.020833pt;}
.h19{height:90.027233pt;}
.h5{height:1055.960000pt;}
.h0{height:1056.000000pt;}
.w1{width:812.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.700800pt;}
.x3{left:51.448000pt;}
.x1b{left:52.724533pt;}
.x19{left:58.057867pt;}
.x2{left:62.963333pt;}
.x12{left:65.547867pt;}
.x7{left:67.753333pt;}
.x8{left:69.454133pt;}
.x61{left:71.911733pt;}
.x24{left:75.401733pt;}
.x60{left:77.844533pt;}
.x9{left:81.343067pt;}
.xa{left:83.043867pt;}
.x1d{left:91.149733pt;}
.x13{left:93.964133pt;}
.x14{left:95.664933pt;}
.x10{left:103.225867pt;}
.x11{left:104.926667pt;}
.xe{left:110.400160pt;}
.x1e{left:113.197067pt;}
.x1{left:125.330267pt;}
.x18{left:152.534933pt;}
.x27{left:154.594933pt;}
.x5b{left:158.324267pt;}
.x5c{left:159.506933pt;}
.x1a{left:165.774933pt;}
.x16{left:167.418533pt;}
.x5a{left:170.614933pt;}
.x2b{left:182.455333pt;}
.x2a{left:189.016400pt;}
.x28{left:195.683067pt;}
.x15{left:198.047067pt;}
.x29{left:202.349733pt;}
.xf{left:203.895067pt;}
.x2c{left:210.214267pt;}
.xd{left:221.819067pt;}
.x5d{left:227.083067pt;}
.x17{left:229.344267pt;}
.x2f{left:234.885200pt;}
.x2d{left:241.551867pt;}
.x30{left:248.218533pt;}
.x2e{left:254.885200pt;}
.x31{left:261.551867pt;}
.x32{left:284.436133pt;}
.xb{left:289.261067pt;}
.xc{left:290.961867pt;}
.x33{left:297.769467pt;}
.x5e{left:310.176533pt;}
.x3b{left:320.652667pt;}
.x39{left:327.319333pt;}
.x36{left:333.986000pt;}
.x34{left:340.652667pt;}
.x37{left:347.319333pt;}
.x35{left:353.986000pt;}
.x38{left:360.652667pt;}
.x3a{left:367.319333pt;}
.x3c{left:373.986000pt;}
.x5f{left:385.803333pt;}
.x3e{left:396.870267pt;}
.x25{left:404.220400pt;}
.x3f{left:410.203600pt;}
.x3d{left:416.870267pt;}
.x40{left:423.536933pt;}
.x26{left:426.898133pt;}
.x1f{left:442.019733pt;}
.x43{left:446.421200pt;}
.x21{left:447.683467pt;}
.x41{left:453.087867pt;}
.x44{left:459.754533pt;}
.x62{left:461.202400pt;}
.x20{left:464.694267pt;}
.x42{left:466.421200pt;}
.x45{left:473.087867pt;}
.x1c{left:489.675600pt;}
.x48{left:495.972133pt;}
.x46{left:502.638800pt;}
.x49{left:509.305467pt;}
.x47{left:515.972133pt;}
.x4a{left:522.638800pt;}
.x4c{left:545.523067pt;}
.x4b{left:558.856400pt;}
.x4e{left:565.523067pt;}
.x22{left:570.184800pt;}
.x4d{left:572.189733pt;}
.x51{left:595.071867pt;}
.x4{left:597.723733pt;}
.x4f{left:601.738533pt;}
.x5{left:604.632133pt;}
.x59{left:606.978000pt;}
.x52{left:608.405200pt;}
.x50{left:615.071867pt;}
.x53{left:621.738533pt;}
.x56{left:644.622800pt;}
.x54{left:651.289467pt;}
.x57{left:657.956133pt;}
.x55{left:664.622800pt;}
.x58{left:671.289467pt;}
.x23{left:703.666800pt;}
}




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