
    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_17c8cdcbe7633842324cc677.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bbbc4b61486d7938e5a36fc6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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_9db286f1076075fd14aeb106.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8d1685eade14823aa86d44f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_7437970e4dd678d7d37c3752.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e8508ba49a16e66b7185f067.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.127930;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_cdc3c4e530cdc9a010ac586c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_312a3a3e234ee9e56fa80627.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_69ed3074b09fd160f7b6e148.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_324511e022acb116c648b01c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5fcad7c30693a9c2c7ab8926.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.027832;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_c5732196033471a3779c9569.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_07029b35059a66ad30e00b5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.766602;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_f88baacd246d605cc95919e0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_cc91748ba9260b373675a3f3.woff2')format("woff");}.fff{font-family:fff;line-height:0.941406;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.000000,-0.248850,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248850,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248850,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-43.200000px;}
.va{vertical-align:-35.280000px;}
.v1a{vertical-align:-28.275996px;}
.v1{vertical-align:-26.640000px;}
.v11{vertical-align:-22.308000px;}
.vd{vertical-align:-20.160000px;}
.v1c{vertical-align:-18.432000px;}
.v8{vertical-align:-16.440000px;}
.v7{vertical-align:-14.400000px;}
.v3{vertical-align:-12.240000px;}
.v9{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:4.320000px;}
.vf{vertical-align:7.920000px;}
.v14{vertical-align:16.560000px;}
.v1e{vertical-align:19.440000px;}
.v16{vertical-align:22.320000px;}
.v10{vertical-align:23.760000px;}
.v1b{vertical-align:26.640000px;}
.v4{vertical-align:42.480000px;}
.ve{vertical-align:45.360000px;}
.v2{vertical-align:49.680000px;}
.v13{vertical-align:54.000000px;}
.v18{vertical-align:56.160000px;}
.v12{vertical-align:63.480000px;}
.v17{vertical-align:66.960000px;}
.v1d{vertical-align:76.896000px;}
.vb{vertical-align:78.480000px;}
.v6{vertical-align:79.920000px;}
.v5{vertical-align:92.160000px;}
.v19{vertical-align:120.240000px;}
.ls1e{letter-spacing:-1.770000px;}
.ls29{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.648000px;}
.ls37{letter-spacing:-0.582600px;}
.ls12{letter-spacing:-0.504000px;}
.ls46{letter-spacing:-0.477600px;}
.ls7d{letter-spacing:-0.426600px;}
.ls53{letter-spacing:-0.360000px;}
.ls7e{letter-spacing:-0.314400px;}
.ls2d{letter-spacing:-0.302400px;}
.ls64{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.282000px;}
.ls56{letter-spacing:-0.261450px;}
.ls9{letter-spacing:-0.216000px;}
.ls61{letter-spacing:-0.196200px;}
.ls17{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.154800px;}
.ls2b{letter-spacing:-0.135600px;}
.ls4a{letter-spacing:-0.117600px;}
.ls57{letter-spacing:-0.116849px;}
.ls21{letter-spacing:-0.106800px;}
.ls5f{letter-spacing:-0.105600px;}
.ls6d{letter-spacing:-0.100800px;}
.ls1f{letter-spacing:-0.094800px;}
.ls2a{letter-spacing:-0.092400px;}
.ls59{letter-spacing:-0.082800px;}
.ls1d{letter-spacing:-0.080400px;}
.ls43{letter-spacing:-0.072000px;}
.ls7a{letter-spacing:-0.060600px;}
.ls4e{letter-spacing:-0.050400px;}
.ls1c{letter-spacing:-0.040320px;}
.ls50{letter-spacing:-0.037440px;}
.ls78{letter-spacing:-0.028080px;}
.ls47{letter-spacing:-0.013680px;}
.ls28{letter-spacing:-0.000011px;}
.lsa{letter-spacing:-0.000006px;}
.ls34{letter-spacing:-0.000003px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000003px;}
.ls13{letter-spacing:0.000006px;}
.ls49{letter-spacing:0.016980px;}
.ls62{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.036000px;}
.ls19{letter-spacing:0.038880px;}
.ls31{letter-spacing:0.040320px;}
.ls58{letter-spacing:0.046678px;}
.ls48{letter-spacing:0.050100px;}
.ls4b{letter-spacing:0.051240px;}
.ls79{letter-spacing:0.051840px;}
.ls4c{letter-spacing:0.068400px;}
.ls32{letter-spacing:0.069120px;}
.ls36{letter-spacing:0.080400px;}
.ls72{letter-spacing:0.085200px;}
.ls18{letter-spacing:0.107400px;}
.ls39{letter-spacing:0.107712px;}
.ls41{letter-spacing:0.111000px;}
.ls44{letter-spacing:0.111600px;}
.ls63{letter-spacing:0.114000px;}
.ls54{letter-spacing:0.115083px;}
.ls5a{letter-spacing:0.115800px;}
.lsd{letter-spacing:0.144000px;}
.ls52{letter-spacing:0.148200px;}
.ls15{letter-spacing:0.166800px;}
.ls5e{letter-spacing:0.168600px;}
.ls4d{letter-spacing:0.180000px;}
.ls6c{letter-spacing:0.202176px;}
.ls5b{letter-spacing:0.211800px;}
.ls42{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.216600px;}
.ls16{letter-spacing:0.219000px;}
.ls6f{letter-spacing:0.219600px;}
.ls24{letter-spacing:0.230400px;}
.ls76{letter-spacing:0.259200px;}
.ls2e{letter-spacing:0.259800px;}
.ls45{letter-spacing:0.262800px;}
.lse{letter-spacing:0.276000px;}
.ls2f{letter-spacing:0.285000px;}
.ls11{letter-spacing:0.288000px;}
.ls70{letter-spacing:0.289200px;}
.ls6a{letter-spacing:0.289440px;}
.ls27{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.334200px;}
.ls1b{letter-spacing:0.360000px;}
.ls71{letter-spacing:0.363600px;}
.ls33{letter-spacing:0.396000px;}
.ls5d{letter-spacing:0.406800px;}
.ls1a{letter-spacing:0.540000px;}
.ls6e{letter-spacing:0.696000px;}
.ls55{letter-spacing:0.707760px;}
.ls26{letter-spacing:0.720000px;}
.ls60{letter-spacing:1.122000px;}
.ls51{letter-spacing:1.152000px;}
.ls6b{letter-spacing:4.119264px;}
.ls69{letter-spacing:4.202640px;}
.ls2{letter-spacing:17.880000px;}
.ls0{letter-spacing:17.928000px;}
.ls3c{letter-spacing:18.325152px;}
.ls4f{letter-spacing:21.221280px;}
.ls6{letter-spacing:28.512000px;}
.ls30{letter-spacing:30.096000px;}
.ls5c{letter-spacing:30.240000px;}
.ls5{letter-spacing:30.888000px;}
.ls4{letter-spacing:30.960000px;}
.ls65{letter-spacing:48.888000px;}
.lsc{letter-spacing:48.960000px;}
.ls75{letter-spacing:51.840000px;}
.ls40{letter-spacing:53.966880px;}
.ls38{letter-spacing:57.600000px;}
.ls3{letter-spacing:67.467600px;}
.ls23{letter-spacing:70.482240px;}
.ls22{letter-spacing:70.520400px;}
.ls77{letter-spacing:72.475200px;}
.ls80{letter-spacing:73.764000px;}
.ls7f{letter-spacing:77.007600px;}
.ls3b{letter-spacing:78.602400px;}
.ls3a{letter-spacing:79.322400px;}
.ls7{letter-spacing:79.878240px;}
.ls8{letter-spacing:79.916400px;}
.ls2c{letter-spacing:80.060400px;}
.ls74{letter-spacing:81.595440px;}
.ls73{letter-spacing:81.633600px;}
.ls3f{letter-spacing:87.732720px;}
.ls3e{letter-spacing:89.113200px;}
.ls3d{letter-spacing:89.833200px;}
.ls7c{letter-spacing:97.509600px;}
.ls7b{letter-spacing:97.560000px;}
.ls66{letter-spacing:190.394640px;}
.ls68{letter-spacing:906.782640px;}
.ls67{letter-spacing:1452.264864px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,187,221),0 0.015em rgb(0,187,221),0.015em 0 rgb(0,187,221),0 -0.015em  rgb(0,187,221);}
.sc1{text-shadow:-0.015em 0 rgb(36,42,117),0 0.015em rgb(36,42,117),0.015em 0 rgb(36,42,117),0 -0.015em  rgb(36,42,117);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,187,221);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(36,42,117);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws77{word-spacing:-108.180000px;}
.wse9{word-spacing:-95.904000px;}
.wse5{word-spacing:-95.760000px;}
.ws17{word-spacing:-84.491400px;}
.ws61{word-spacing:-84.384000px;}
.ws19{word-spacing:-84.278880px;}
.ws57{word-spacing:-84.240000px;}
.ws51{word-spacing:-79.200000px;}
.ws78{word-spacing:-79.149600px;}
.wsf{word-spacing:-72.288000px;}
.ws13{word-spacing:-72.000000px;}
.wsed{word-spacing:-70.203600px;}
.wseb{word-spacing:-70.069200px;}
.wsec{word-spacing:-69.984000px;}
.wsee{word-spacing:-69.840000px;}
.ws66{word-spacing:-67.155192px;}
.ws63{word-spacing:-65.589504px;}
.ws67{word-spacing:-64.980288px;}
.ws69{word-spacing:-64.146960px;}
.ws6a{word-spacing:-63.838080px;}
.ws18{word-spacing:-61.344000px;}
.ws59{word-spacing:-61.311600px;}
.ws9{word-spacing:-61.236000px;}
.ws8{word-spacing:-61.200000px;}
.ws7{word-spacing:-61.045200px;}
.ws65{word-spacing:-61.018848px;}
.wse4{word-spacing:-59.760000px;}
.ws6{word-spacing:-58.464000px;}
.wsc{word-spacing:-58.386240px;}
.ws14{word-spacing:-52.836000px;}
.ws11{word-spacing:-52.560000px;}
.wsd{word-spacing:-50.400000px;}
.ws4e{word-spacing:-50.399784px;}
.ws68{word-spacing:-45.779292px;}
.ws28{word-spacing:-40.320006px;}
.ws10{word-spacing:-36.635040px;}
.wsa{word-spacing:-36.057600px;}
.wsf0{word-spacing:-33.667200px;}
.ws1b{word-spacing:-30.280320px;}
.ws55{word-spacing:-30.240000px;}
.ws7e{word-spacing:-30.239994px;}
.ws4f{word-spacing:-30.239989px;}
.ws4{word-spacing:-29.916000px;}
.wsad{word-spacing:-27.000000px;}
.wse7{word-spacing:-26.814720px;}
.wsea{word-spacing:-26.565408px;}
.ws3e{word-spacing:-26.525520px;}
.ws64{word-spacing:-25.449504px;}
.wsb{word-spacing:-24.285600px;}
.ws1a{word-spacing:-23.940000px;}
.wscf{word-spacing:-23.644800px;}
.wsd0{word-spacing:-23.627520px;}
.wscd{word-spacing:-23.425608px;}
.ws7b{word-spacing:-23.381280px;}
.wscb{word-spacing:-23.374368px;}
.ws3{word-spacing:-23.334480px;}
.wscc{word-spacing:-23.178168px;}
.ws4c{word-spacing:-21.539520px;}
.ws1e{word-spacing:-21.060000px;}
.wse{word-spacing:-20.232000px;}
.ws62{word-spacing:-19.859292px;}
.ws96{word-spacing:-19.854430px;}
.ws12{word-spacing:-19.728000px;}
.ws4a{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.348480px;}
.ws1c{word-spacing:-18.036000px;}
.wsf8{word-spacing:-17.750160px;}
.wsd9{word-spacing:-16.272000px;}
.ws95{word-spacing:-16.242053px;}
.wsd5{word-spacing:-15.984000px;}
.wse8{word-spacing:-14.716560px;}
.wse6{word-spacing:-14.656560px;}
.ws1d{word-spacing:-14.040000px;}
.ws2{word-spacing:-13.505760px;}
.ws16{word-spacing:-13.410720px;}
.ws15{word-spacing:-13.229520px;}
.ws93{word-spacing:-13.140946px;}
.ws97{word-spacing:-12.040382px;}
.wsc9{word-spacing:-4.358160px;}
.ws81{word-spacing:-4.347600px;}
.ws84{word-spacing:-2.752560px;}
.ws52{word-spacing:-2.728800px;}
.wsd1{word-spacing:-2.572800px;}
.wsc8{word-spacing:-2.492064px;}
.wsd3{word-spacing:-2.433120px;}
.wsf4{word-spacing:-2.397600px;}
.wsce{word-spacing:-2.108736px;}
.ws5f{word-spacing:-2.038752px;}
.wsb7{word-spacing:-2.027920px;}
.wsca{word-spacing:-1.897056px;}
.ws7f{word-spacing:-1.836000px;}
.wsc4{word-spacing:-1.830912px;}
.ws83{word-spacing:-1.806480px;}
.wsdf{word-spacing:-1.728000px;}
.ws82{word-spacing:-1.710720px;}
.wsb8{word-spacing:-1.440000px;}
.ws86{word-spacing:-1.346760px;}
.ws8f{word-spacing:-1.319948px;}
.wsba{word-spacing:-1.319937px;}
.wsd4{word-spacing:-1.296000px;}
.ws48{word-spacing:-1.295971px;}
.wsc5{word-spacing:-1.248264px;}
.wsf6{word-spacing:-1.188000px;}
.wsd8{word-spacing:-1.080000px;}
.wsde{word-spacing:-1.044000px;}
.ws60{word-spacing:-1.036380px;}
.wse0{word-spacing:-1.008000px;}
.ws3b{word-spacing:-0.988560px;}
.wsdc{word-spacing:-0.936000px;}
.ws89{word-spacing:-0.888000px;}
.wsf1{word-spacing:-0.828000px;}
.wsdb{word-spacing:-0.816000px;}
.ws37{word-spacing:-0.806496px;}
.ws34{word-spacing:-0.794304px;}
.wsd2{word-spacing:-0.743760px;}
.ws70{word-spacing:-0.732000px;}
.ws56{word-spacing:-0.731983px;}
.ws49{word-spacing:-0.720000px;}
.ws91{word-spacing:-0.719983px;}
.wsb9{word-spacing:-0.719971px;}
.ws35{word-spacing:-0.621600px;}
.ws72{word-spacing:-0.599980px;}
.wsf3{word-spacing:-0.594240px;}
.wsef{word-spacing:-0.565440px;}
.ws8d{word-spacing:-0.552000px;}
.ws71{word-spacing:-0.540029px;}
.ws80{word-spacing:-0.525600px;}
.ws36{word-spacing:-0.525120px;}
.ws22{word-spacing:-0.511920px;}
.ws8a{word-spacing:-0.504000px;}
.wsa3{word-spacing:-0.491040px;}
.wsda{word-spacing:-0.432000px;}
.ws20{word-spacing:-0.376560px;}
.wsac{word-spacing:-0.361440px;}
.wsa4{word-spacing:-0.336600px;}
.wsf9{word-spacing:-0.252000px;}
.wsd6{word-spacing:-0.108000px;}
.ws87{word-spacing:-0.072000px;}
.ws8c{word-spacing:-0.048240px;}
.ws8b{word-spacing:-0.036000px;}
.ws2c{word-spacing:-0.012052px;}
.ws76{word-spacing:-0.012000px;}
.ws8e{word-spacing:-0.000029px;}
.ws1{word-spacing:0.000000px;}
.ws90{word-spacing:0.000009px;}
.wse2{word-spacing:0.000011px;}
.ws7c{word-spacing:0.000023px;}
.wsd7{word-spacing:0.072000px;}
.wse1{word-spacing:0.144000px;}
.ws1f{word-spacing:0.157200px;}
.ws26{word-spacing:0.180000px;}
.wsc7{word-spacing:0.192864px;}
.wse3{word-spacing:0.207360px;}
.wsc6{word-spacing:0.219456px;}
.ws21{word-spacing:0.483840px;}
.ws88{word-spacing:0.504000px;}
.ws7d{word-spacing:0.720000px;}
.ws85{word-spacing:0.923760px;}
.wsf7{word-spacing:1.179504px;}
.wsdd{word-spacing:1.224000px;}
.wsbc{word-spacing:2.656560px;}
.wsbf{word-spacing:2.863440px;}
.wsbe{word-spacing:2.968560px;}
.wsc1{word-spacing:3.011040px;}
.wsbd{word-spacing:3.066480px;}
.wsc0{word-spacing:3.233520px;}
.wsbb{word-spacing:3.272880px;}
.wsc3{word-spacing:3.720240px;}
.wsc2{word-spacing:5.243760px;}
.ws4d{word-spacing:7.320960px;}
.ws4b{word-spacing:8.040960px;}
.wsae{word-spacing:8.928000px;}
.wsa5{word-spacing:9.602400px;}
.wsa7{word-spacing:9.760320px;}
.wsa6{word-spacing:10.531440px;}
.ws23{word-spacing:10.788000px;}
.ws5b{word-spacing:21.688560px;}
.ws5a{word-spacing:21.731040px;}
.ws5e{word-spacing:21.922560px;}
.ws5c{word-spacing:22.003920px;}
.ws3d{word-spacing:22.501800px;}
.ws3c{word-spacing:22.548960px;}
.ws5d{word-spacing:23.243760px;}
.wsa2{word-spacing:26.084880px;}
.ws9f{word-spacing:26.446560px;}
.wsa1{word-spacing:26.512560px;}
.ws54{word-spacing:26.640017px;}
.ws46{word-spacing:26.640023px;}
.ws53{word-spacing:26.760000px;}
.wsa0{word-spacing:27.091440px;}
.ws45{word-spacing:27.324000px;}
.ws47{word-spacing:27.480000px;}
.ws44{word-spacing:28.080020px;}
.ws39{word-spacing:34.068960px;}
.ws38{word-spacing:35.196480px;}
.ws99{word-spacing:38.473920px;}
.ws9b{word-spacing:38.790000px;}
.ws9a{word-spacing:39.331440px;}
.ws98{word-spacing:39.528480px;}
.ws58{word-spacing:40.197600px;}
.ws73{word-spacing:41.760000px;}
.ws74{word-spacing:41.880029px;}
.ws75{word-spacing:42.480000px;}
.wsa9{word-spacing:43.596720px;}
.wsab{word-spacing:44.365680px;}
.wsfb{word-spacing:46.260017px;}
.wsfa{word-spacing:46.800000px;}
.wsfc{word-spacing:46.836000px;}
.wsb6{word-spacing:48.960000px;}
.wsaf{word-spacing:48.972000px;}
.wsb0{word-spacing:49.224000px;}
.wsb3{word-spacing:49.680000px;}
.wsb2{word-spacing:49.680017px;}
.wsb1{word-spacing:49.716000px;}
.wsb5{word-spacing:49.872000px;}
.wsb4{word-spacing:51.120000px;}
.ws50{word-spacing:51.840046px;}
.wsaa{word-spacing:52.524000px;}
.ws6f{word-spacing:55.440000px;}
.ws6d{word-spacing:55.560000px;}
.ws3f{word-spacing:55.798560px;}
.ws6c{word-spacing:56.159971px;}
.ws6b{word-spacing:56.364000px;}
.ws6e{word-spacing:56.879971px;}
.ws5{word-spacing:57.180000px;}
.ws40{word-spacing:61.920000px;}
.ws41{word-spacing:62.639966px;}
.ws43{word-spacing:62.640000px;}
.ws42{word-spacing:62.760017px;}
.ws33{word-spacing:68.400000px;}
.ws30{word-spacing:68.555943px;}
.ws31{word-spacing:69.120000px;}
.ws32{word-spacing:70.560000px;}
.wsa8{word-spacing:83.401200px;}
.ws29{word-spacing:86.387977px;}
.ws2a{word-spacing:86.400000px;}
.ws2b{word-spacing:87.239991px;}
.ws2f{word-spacing:88.560000px;}
.ws2e{word-spacing:88.560017px;}
.ws2d{word-spacing:88.716000px;}
.ws3a{word-spacing:103.041360px;}
.ws92{word-spacing:107.017880px;}
.ws9d{word-spacing:111.420360px;}
.ws9e{word-spacing:112.025520px;}
.ws9c{word-spacing:112.980480px;}
.ws94{word-spacing:125.376541px;}
.ws25{word-spacing:221.364000px;}
.ws24{word-spacing:223.187983px;}
.wsf2{word-spacing:233.640000px;}
.ws27{word-spacing:526.500000px;}
.ws7a{word-spacing:641.496000px;}
.wsf5{word-spacing:655.788000px;}
.ws79{word-spacing:671.736000px;}
._15{margin-left:-372.576240px;}
._2{margin-left:-18.223200px;}
._16{margin-left:-11.610000px;}
._19{margin-left:-9.642816px;}
._1a{margin-left:-6.979680px;}
._c{margin-left:-4.296240px;}
._6{margin-left:-2.335680px;}
._0{margin-left:-1.324800px;}
._4{width:1.020240px;}
._1{width:2.157840px;}
._7{width:3.369600px;}
._a{width:5.543280px;}
._1d{width:7.183200px;}
._17{width:9.817200px;}
._25{width:13.276800px;}
._24{width:16.571760px;}
._2b{width:17.843520px;}
._21{width:19.953120px;}
._20{width:21.293520px;}
._23{width:22.332960px;}
._22{width:23.569200px;}
._2a{width:24.664368px;}
._e{width:27.522000px;}
._30{width:28.920000px;}
._5{width:30.948960px;}
._2f{width:32.059440px;}
._2d{width:33.153600px;}
._28{width:37.216080px;}
._2c{width:48.960000px;}
._f{width:52.164000px;}
._18{width:55.991952px;}
._12{width:61.776000px;}
._26{width:66.472320px;}
._31{width:75.720000px;}
._13{width:80.040000px;}
._1c{width:86.880000px;}
._29{width:110.939760px;}
._9{width:117.614880px;}
._10{width:120.535680px;}
._8{width:129.312720px;}
._27{width:142.823520px;}
._1b{width:163.009920px;}
._3{width:259.149600px;}
._d{width:291.228000px;}
._14{width:326.977440px;}
._b{width:451.432080px;}
._1f{width:716.700000px;}
._11{width:729.700560px;}
._1e{width:731.748000px;}
._2e{width:1851.528480px;}
.fc1a{color:rgb(51,51,102);}
.fc16{color:rgb(253,105,37);}
.fc17{color:rgb(0,176,240);}
.fc15{color:rgb(63,126,68);}
.fc14{color:rgb(192,0,0);}
.fc11{color:rgb(255,192,0);}
.fcf{color:rgb(255,58,33);}
.fc18{color:transparent;}
.fce{color:rgb(0,32,96);}
.fcd{color:rgb(250,186,6);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc8{color:rgb(0,176,80);}
.fc5{color:rgb(0,171,142);}
.fc4{color:rgb(0,187,221);}
.fc6{color:rgb(24,26,34);}
.fc7{color:rgb(124,127,171);}
.fc3{color:rgb(36,42,117);}
.fc9{color:rgb(255,0,0);}
.fc19{color:rgb(69,134,255);}
.fca{color:rgb(153,0,153);}
.fc12{color:rgb(162,25,66);}
.fc10{color:rgb(34,34,34);}
.fc1{color:rgb(150,150,150);}
.fcb{color:rgb(191,122,0);}
.fc13{color:rgb(0,104,157);}
.fcc{color:rgb(0,87,130);}
.fs6{font-size:41.760000px;}
.fs24{font-size:43.142820px;}
.fs28{font-size:43.920000px;}
.fs1f{font-size:47.269591px;}
.fs11{font-size:48.240000px;}
.fs12{font-size:48.384000px;}
.fse{font-size:50.400000px;}
.fs1a{font-size:51.840000px;}
.fsf{font-size:52.560000px;}
.fs5{font-size:54.000000px;}
.fs16{font-size:56.160000px;}
.fs20{font-size:57.540948px;}
.fs21{font-size:57.541346px;}
.fs22{font-size:58.424651px;}
.fs7{font-size:59.760000px;}
.fsd{font-size:61.200000px;}
.fs13{font-size:61.344000px;}
.fs10{font-size:63.360000px;}
.fs26{font-size:64.080000px;}
.fs1e{font-size:64.800000px;}
.fs1c{font-size:64.944000px;}
.fs0{font-size:66.240000px;}
.fs29{font-size:69.840000px;}
.fs2b{font-size:69.984000px;}
.fs25{font-size:71.090379px;}
.fs23{font-size:71.418814px;}
.fsa{font-size:72.000000px;}
.fs15{font-size:72.144000px;}
.fs19{font-size:77.760000px;}
.fs2d{font-size:77.904000px;}
.fs1d{font-size:79.200000px;}
.fs1b{font-size:79.344000px;}
.fsc{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.fs14{font-size:95.760000px;}
.fs2a{font-size:95.904000px;}
.fs2c{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs2f{font-size:112.320000px;}
.fs17{font-size:120.240000px;}
.fs18{font-size:120.384000px;}
.fs2e{font-size:128.160000px;}
.fs9{font-size:131.760000px;}
.fs8{font-size:144.000000px;}
.fs27{font-size:144.144000px;}
.fs1{font-size:239.760000px;}
.fs2{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:8.060847px;}
.yd1{bottom:10.052942px;}
.ya{bottom:10.296000px;}
.y2b{bottom:28.080000px;}
.yb5{bottom:30.856899px;}
.yc6{bottom:32.421079px;}
.y114{bottom:37.548000px;}
.y8{bottom:39.456000px;}
.yb6{bottom:43.197421px;}
.y9{bottom:44.424000px;}
.yc7{bottom:47.742599px;}
.yc4{bottom:60.164798px;}
.y102{bottom:62.244000px;}
.yb7{bottom:77.644778px;}
.yc3{bottom:77.814900px;}
.y48{bottom:83.520000px;}
.y43{bottom:84.816000px;}
.yc8{bottom:85.081472px;}
.yc2{bottom:95.473955px;}
.yad{bottom:102.276000px;}
.ya0{bottom:103.035000px;}
.y113{bottom:106.056000px;}
.yb8{bottom:112.096613px;}
.y1{bottom:112.176000px;}
.ya7{bottom:112.536000px;}
.y8d{bottom:112.572000px;}
.yc1{bottom:113.124057px;}
.yde{bottom:113.328000px;}
.yd0{bottom:121.359960px;}
.yc9{bottom:122.238629px;}
.y47{bottom:123.336000px;}
.ybf{bottom:126.492022px;}
.yac{bottom:127.656000px;}
.yf8{bottom:131.364000px;}
.yfa{bottom:132.120000px;}
.y10b{bottom:134.388000px;}
.yf9{bottom:134.532000px;}
.ya6{bottom:138.996000px;}
.yf7{bottom:140.832000px;}
.yfe{bottom:142.020000px;}
.y106{bottom:145.800000px;}
.yb9{bottom:146.548447px;}
.y133{bottom:149.976000px;}
.y8c{bottom:151.485000px;}
.yab{bottom:152.850000px;}
.y56{bottom:153.210000px;}
.yca{bottom:159.577501px;}
.y10a{bottom:161.970000px;}
.y39{bottom:166.530000px;}
.y7{bottom:169.890000px;}
.ydd{bottom:174.165000px;}
.yb2{bottom:176.370000px;}
.yba{bottom:180.993567px;}
.yff{bottom:182.130000px;}
.y46{bottom:182.190000px;}
.y132{bottom:182.370000px;}
.ya5{bottom:182.805000px;}
.y100{bottom:183.135000px;}
.y9e{bottom:183.315000px;}
.y60{bottom:186.195000px;}
.yc5{bottom:187.920000px;}
.y13f{bottom:188.925000px;}
.y1f{bottom:189.465000px;}
.y13d{bottom:189.870000px;}
.y55{bottom:191.010000px;}
.y111{bottom:194.115000px;}
.ycb{bottom:196.916374px;}
.yb1{bottom:197.970000px;}
.ye6{bottom:198.180000px;}
.yb4{bottom:199.260000px;}
.y38{bottom:204.330000px;}
.y6{bottom:206.790000px;}
.ybb{bottom:215.447640px;}
.ye5{bottom:219.780000px;}
.y9d{bottom:220.245000px;}
.ya4{bottom:226.620000px;}
.y1e{bottom:227.085000px;}
.y8b{bottom:227.370000px;}
.yf6{bottom:228.240000px;}
.y54{bottom:230.835000px;}
.y51{bottom:231.090000px;}
.ycc{bottom:234.255246px;}
.y13c{bottom:235.770000px;}
.y110{bottom:238.395000px;}
.yf4{bottom:240.015000px;}
.y9f{bottom:243.000000px;}
.y5{bottom:243.690000px;}
.y37{bottom:244.110000px;}
.yf5{bottom:246.240000px;}
.y131{bottom:247.170000px;}
.ybc{bottom:249.899474px;}
.y42{bottom:254.850000px;}
.y89{bottom:256.320000px;}
.ydb{bottom:257.910000px;}
.y1d{bottom:264.885000px;}
.y104{bottom:265.935000px;}
.yaa{bottom:267.450000px;}
.ya3{bottom:270.435000px;}
.ycd{bottom:271.412404px;}
.y50{bottom:276.990000px;}
.y130{bottom:279.615000px;}
.y9c{bottom:281.265000px;}
.y88{bottom:281.520000px;}
.yd4{bottom:281.629803px;}
.y13b{bottom:281.670000px;}
.y10f{bottom:282.705000px;}
.ybd{bottom:284.344593px;}
.yf3{bottom:301.755000px;}
.yfb{bottom:302.400000px;}
.y1c{bottom:302.505000px;}
.yfd{bottom:303.150000px;}
.yd3{bottom:303.470042px;}
.yfc{bottom:305.565000px;}
.y87{bottom:306.720000px;}
.yce{bottom:308.751276px;}
.y12f{bottom:312.015000px;}
.ya2{bottom:313.635000px;}
.y4f{bottom:313.890000px;}
.y9b{bottom:318.165000px;}
.yd5{bottom:318.439640px;}
.ybe{bottom:318.796428px;}
.y4{bottom:321.480000px;}
.yd2{bottom:325.310280px;}
.y13a{bottom:327.570000px;}
.ya9{bottom:328.470000px;}
.y28{bottom:329.970000px;}
.y1b{bottom:331.305000px;}
.y86{bottom:331.920000px;}
.yf2{bottom:335.415000px;}
.y8a{bottom:339.585000px;}
.y36{bottom:339.735000px;}
.ya1{bottom:346.035000px;}
.ycf{bottom:346.090149px;}
.y44{bottom:346.650000px;}
.y82{bottom:350.460000px;}
.y61{bottom:355.530000px;}
.y85{bottom:357.120000px;}
.y126{bottom:357.945000px;}
.y4e{bottom:360.900000px;}
.ya8{bottom:365.370000px;}
.y12{bottom:366.270000px;}
.y27{bottom:367.770000px;}
.yf1{bottom:369.075000px;}
.y1a{bottom:369.150000px;}
.y21{bottom:369.510000px;}
.y45{bottom:371.850000px;}
.y35{bottom:373.215000px;}
.y139{bottom:374.580000px;}
.y81{bottom:375.660000px;}
.y98{bottom:380.085000px;}
.y84{bottom:382.350000px;}
.y11d{bottom:382.755000px;}
.y3{bottom:386.280000px;}
.y67{bottom:387.285000px;}
.y5a{bottom:390.525000px;}
.y97{bottom:390.705000px;}
.y80{bottom:400.860000px;}
.y9a{bottom:400.965000px;}
.yf0{bottom:403.635000px;}
.y76{bottom:404.565000px;}
.y26{bottom:405.435000px;}
.y34{bottom:406.875000px;}
.y11c{bottom:407.955000px;}
.y19{bottom:408.930000px;}
.y4d{bottom:410.940000px;}
.y11{bottom:414.330000px;}
.y99{bottom:415.005000px;}
.y7f{bottom:426.060000px;}
.y96{bottom:428.505000px;}
.y75{bottom:433.365000px;}
.y66{bottom:436.425000px;}
.y95{bottom:439.125000px;}
.y138{bottom:439.560000px;}
.yef{bottom:440.385000px;}
.y33{bottom:440.535000px;}
.y6d{bottom:450.150000px;}
.y2{bottom:451.080000px;}
.y7e{bottom:451.290000px;}
.y12c{bottom:451.650000px;}
.y125{bottom:451.950000px;}
.y5d{bottom:460.335000px;}
.y4c{bottom:460.980000px;}
.y74{bottom:462.165000px;}
.y5c{bottom:464.970000px;}
.y10{bottom:466.380000px;}
.y119{bottom:467.970000px;}
.y18{bottom:469.770000px;}
.yee{bottom:474.045000px;}
.ydc{bottom:474.090000px;}
.y32{bottom:474.195000px;}
.y25{bottom:474.630000px;}
.y129{bottom:475.890000px;}
.y7d{bottom:476.490000px;}
.y124{bottom:477.150000px;}
.y12b{bottom:484.050000px;}
.y65{bottom:485.745000px;}
.y6c{bottom:487.230000px;}
.y94{bottom:490.830000px;}
.y118{bottom:493.200000px;}
.y71{bottom:494.820000px;}
.y137{bottom:504.720000px;}
.ye4{bottom:504.795000px;}
.y31{bottom:507.885000px;}
.y103{bottom:507.930000px;}
.yed{bottom:508.605000px;}
.y4b{bottom:512.100000px;}
.yf{bottom:514.440000px;}
.y112{bottom:516.210000px;}
.y79{bottom:523.080000px;}
.y6b{bottom:524.130000px;}
.y11b{bottom:532.005000px;}
.y142{bottom:532.335000px;}
.y117{bottom:534.315000px;}
.y70{bottom:534.630000px;}
.y30{bottom:538.485000px;}
.ye3{bottom:542.595000px;}
.yec{bottom:546.405000px;}
.y120{bottom:546.915000px;}
.y2f{bottom:549.105000px;}
.y78{bottom:551.880000px;}
.y3a{bottom:552.495000px;}
.yd9{bottom:553.395000px;}
.y24{bottom:554.040000px;}
.y41{bottom:554.070000px;}
.y93{bottom:557.610000px;}
.y64{bottom:559.050000px;}
.y11a{bottom:559.725000px;}
.y141{bottom:561.135000px;}
.y15{bottom:565.230000px;}
.ye{bottom:566.460000px;}
.y136{bottom:567.750000px;}
.y91{bottom:568.230000px;}
.y40{bottom:568.515000px;}
.y116{bottom:569.670000px;}
.y12a{bottom:570.390000px;}
.y83{bottom:572.865000px;}
.y92{bottom:576.510000px;}
.y145{bottom:579.135000px;}
.y11f{bottom:579.315000px;}
.ye2{bottom:580.245000px;}
.y77{bottom:580.680000px;}
.y4a{bottom:581.250000px;}
.yda{bottom:582.015000px;}
.yd8{bottom:582.195000px;}
.y3f{bottom:582.915000px;}
.yeb{bottom:583.125000px;}
.y6a{bottom:584.970000px;}
.y140{bottom:589.935000px;}
.yb0{bottom:591.045000px;}
.y115{bottom:594.870000px;}
.y6f{bottom:595.650000px;}
.y2e{bottom:597.165000px;}
.y3e{bottom:597.315000px;}
.y14{bottom:597.630000px;}
.y10e{bottom:599.550000px;}
.y122{bottom:600.450000px;}
.y5b{bottom:601.275000px;}
.y109{bottom:602.490000px;}
.y12e{bottom:606.675000px;}
.y5e{bottom:607.755000px;}
.y63{bottom:608.190000px;}
.ye1{bottom:609.045000px;}
.y135{bottom:609.510000px;}
.yd7{bottom:610.995000px;}
.yd{bottom:614.520000px;}
.y7c{bottom:615.420000px;}
.y23{bottom:615.960000px;}
.y144{bottom:616.215000px;}
.yea{bottom:616.785000px;}
.y90{bottom:618.450000px;}
.y121{bottom:618.870000px;}
.y128{bottom:623.265000px;}
.yaf{bottom:628.845000px;}
.y108{bottom:632.730000px;}
.y2d{bottom:634.965000px;}
.y73{bottom:636.810000px;}
.y12d{bottom:639.075000px;}
.yd6{bottom:639.795000px;}
.y13e{bottom:641.520000px;}
.y11e{bottom:644.145000px;}
.y69{bottom:646.020000px;}
.y5f{bottom:646.710000px;}
.ye0{bottom:648.825000px;}
.y13{bottom:650.010000px;}
.y8f{bottom:650.310000px;}
.y49{bottom:650.370000px;}
.ye9{bottom:651.390000px;}
.y7b{bottom:652.320000px;}
.y134{bottom:653.430000px;}
.y127{bottom:655.665000px;}
.y53{bottom:656.490000px;}
.y62{bottom:657.510000px;}
.y8e{bottom:663.810000px;}
.y107{bottom:664.950000px;}
.y123{bottom:665.820000px;}
.y10d{bottom:667.440000px;}
.y58{bottom:668.160000px;}
.yae{bottom:668.625000px;}
.yc{bottom:668.730000px;}
.y3b{bottom:671.910000px;}
.y3d{bottom:672.840000px;}
.y2c{bottom:674.790000px;}
.y72{bottom:676.590000px;}
.y143{bottom:677.055000px;}
.y16{bottom:678.780000px;}
.y22{bottom:679.170000px;}
.y105{bottom:680.040000px;}
.y68{bottom:682.920000px;}
.y29{bottom:684.870000px;}
.yb3{bottom:685.545000px;}
.ydf{bottom:685.725000px;}
.y7a{bottom:689.220000px;}
.y20{bottom:690.015000px;}
.ye8{bottom:691.170000px;}
.y57{bottom:693.180000px;}
.y3c{bottom:697.575000px;}
.y59{bottom:702.825000px;}
.y6e{bottom:713.520000px;}
.y17{bottom:715.830000px;}
.y52{bottom:728.430000px;}
.yb{bottom:732.165000px;}
.y10c{bottom:740.370000px;}
.y2a{bottom:742.110000px;}
.ye7{bottom:743.835000px;}
.y101{bottom:751.245000px;}
.h7{height:31.320000px;}
.h2f{height:34.436636px;}
.h6{height:40.500000px;}
.h30{height:41.919479px;}
.h31{height:41.919770px;}
.h33{height:42.563271px;}
.h1{height:49.680000px;}
.h16{height:50.312812px;}
.h17{height:50.463000px;}
.h3a{height:50.772656px;}
.h35{height:51.790452px;}
.h12{height:51.996094px;}
.h34{height:52.029722px;}
.h13{height:54.000000px;}
.h39{height:54.108000px;}
.h42{height:58.320000px;}
.h43{height:58.428000px;}
.h8{height:59.439023px;}
.h1d{height:60.876562px;}
.h14{height:61.171875px;}
.h23{height:62.640000px;}
.hf{height:63.180000px;}
.he{height:63.288000px;}
.h18{height:63.344531px;}
.h1c{height:64.193906px;}
.h15{height:66.082500px;}
.h27{height:68.556094px;}
.h20{height:69.061992px;}
.h37{height:69.180047px;}
.h1b{height:71.571094px;}
.h2d{height:71.613281px;}
.h1a{height:71.693438px;}
.h22{height:71.820000px;}
.h21{height:77.100047px;}
.hc{height:81.000000px;}
.hd{height:81.108000px;}
.h3c{height:81.358594px;}
.h3e{height:81.480937px;}
.h47{height:83.787539px;}
.h41{height:83.818828px;}
.h48{height:83.930766px;}
.h19{height:87.859687px;}
.h4{height:88.541016px;}
.h5{height:88.659070px;}
.h1e{height:90.180000px;}
.h1f{height:90.288000px;}
.h24{height:91.757812px;}
.h45{height:92.082656px;}
.h40{height:98.575664px;}
.h3f{height:98.693719px;}
.hb{height:98.820000px;}
.h3b{height:100.942594px;}
.h10{height:101.676094px;}
.h44{height:105.068672px;}
.h36{height:107.419922px;}
.ha{height:108.020039px;}
.h28{height:114.051094px;}
.h9{height:118.054688px;}
.h38{height:118.172742px;}
.h29{height:121.251094px;}
.h25{height:130.891406px;}
.h2a{height:135.651094px;}
.h3d{height:138.838594px;}
.h26{height:142.541016px;}
.h11{height:144.156094px;}
.h46{height:163.339922px;}
.h2b{height:191.811094px;}
.h2{height:196.561055px;}
.h3{height:196.679109px;}
.h2c{height:226.800000px;}
.h2e{height:347.578293px;}
.h32{height:366.300000px;}
.h0{height:810.000000px;}
.w2{width:202.140000px;}
.w3{width:466.200000px;}
.w4{width:500.040000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7a{left:10.799979px;}
.x59{left:12.220453px;}
.x5e{left:14.821738px;}
.x4c{left:16.050000px;}
.x52{left:24.083979px;}
.x2{left:28.691979px;}
.x42{left:31.787979px;}
.x58{left:34.480694px;}
.x36{left:35.927979px;}
.x1a{left:41.579979px;}
.x5d{left:42.749947px;}
.x37{left:44.315979px;}
.x3a{left:45.683979px;}
.xf{left:47.735979px;}
.x51{left:49.895979px;}
.x54{left:53.135979px;}
.x3{left:56.195979px;}
.x40{left:57.347979px;}
.x18{left:59.867979px;}
.x78{left:64.043979px;}
.x10{left:66.563979px;}
.x7{left:69.443979px;}
.xa{left:73.295979px;}
.x11{left:76.967979px;}
.x53{left:78.695979px;}
.x1e{left:84.059979px;}
.x63{left:86.435979px;}
.x77{left:90.647979px;}
.x56{left:92.087979px;}
.x8{left:95.039979px;}
.x29{left:109.367979px;}
.x9{left:111.959979px;}
.x1{left:127.511979px;}
.x28{left:133.199979px;}
.x60{left:145.871979px;}
.x57{left:148.860000px;}
.x47{left:157.244979px;}
.x17{left:184.754979px;}
.x1b{left:186.869979px;}
.x5a{left:200.410648px;}
.x5f{left:207.330479px;}
.x48{left:220.244979px;}
.x1c{left:227.549979px;}
.x81{left:247.214979px;}
.x83{left:253.619979px;}
.x65{left:273.884979px;}
.x43{left:275.009979px;}
.x82{left:283.394979px;}
.x7f{left:289.289979px;}
.x49{left:292.469979px;}
.x44{left:298.949979px;}
.x61{left:313.049979px;}
.x66{left:318.884979px;}
.x55{left:320.399979px;}
.x69{left:331.349979px;}
.x89{left:358.169979px;}
.x41{left:361.229979px;}
.x45{left:368.249979px;}
.x5b{left:377.814762px;}
.x46{left:392.009979px;}
.x39{left:410.729979px;}
.x1d{left:412.409979px;}
.x68{left:424.829979px;}
.x5{left:511.589979px;}
.xc{left:534.419979px;}
.xe{left:539.819979px;}
.xb{left:555.479979px;}
.x4a{left:560.159979px;}
.x2c{left:570.059979px;}
.x75{left:571.859979px;}
.x80{left:572.969979px;}
.x79{left:575.849979px;}
.x33{left:592.274979px;}
.x3d{left:593.489979px;}
.x34{left:603.329979px;}
.x87{left:616.169979px;}
.x7d{left:625.889979px;}
.xd{left:645.479979px;}
.x88{left:650.009979px;}
.x6c{left:651.344979px;}
.x84{left:659.774979px;}
.x7c{left:660.854979px;}
.x30{left:665.894979px;}
.x64{left:668.339979px;}
.x31{left:674.309979px;}
.x2d{left:679.604979px;}
.x25{left:686.804979px;}
.x6{left:698.039979px;}
.x71{left:720.104979px;}
.x3f{left:721.979979px;}
.x23{left:732.704979px;}
.x3b{left:745.664979px;}
.x20{left:763.484979px;}
.x24{left:773.849979px;}
.x15{left:776.264979px;}
.x16{left:784.949979px;}
.x14{left:787.394979px;}
.x5c{left:789.300000px;}
.x12{left:795.269979px;}
.x13{left:796.574979px;}
.x73{left:799.559979px;}
.x2a{left:803.669979px;}
.x76{left:804.884979px;}
.x38{left:808.484979px;}
.x26{left:820.469979px;}
.x7e{left:823.889979px;}
.x21{left:835.274979px;}
.x4b{left:845.280000px;}
.x6a{left:848.444979px;}
.x62{left:874.469979px;}
.x2b{left:876.929979px;}
.x2f{left:894.929979px;}
.x3c{left:907.094979px;}
.x6b{left:912.929979px;}
.x74{left:925.349979px;}
.x4f{left:931.529979px;}
.x4e{left:938.909979px;}
.x8a{left:960.149979px;}
.x67{left:990.644979px;}
.x72{left:1020.959979px;}
.x35{left:1040.294979px;}
.x50{left:1070.354979px;}
.x2e{left:1077.944979px;}
.x70{left:1093.319979px;}
.x4d{left:1102.934979px;}
.x3e{left:1109.879979px;}
.x27{left:1132.589979px;}
.x1f{left:1141.049979px;}
.x19{left:1152.509979px;}
.x6e{left:1202.909979px;}
.x7b{left:1208.339979px;}
.x6f{left:1248.584979px;}
.x85{left:1252.514979px;}
.x86{left:1264.169979px;}
.x22{left:1288.469979px;}
.x32{left:1381.649979px;}
.x4{left:1385.429979px;}
.x6d{left:1386.929979px;}
@media print{
.vc{vertical-align:-38.400000pt;}
.va{vertical-align:-31.360000pt;}
.v1a{vertical-align:-25.134218pt;}
.v1{vertical-align:-23.680000pt;}
.v11{vertical-align:-19.829333pt;}
.vd{vertical-align:-17.920000pt;}
.v1c{vertical-align:-16.384000pt;}
.v8{vertical-align:-14.613333pt;}
.v7{vertical-align:-12.800000pt;}
.v3{vertical-align:-10.880000pt;}
.v9{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:3.840000pt;}
.vf{vertical-align:7.040000pt;}
.v14{vertical-align:14.720000pt;}
.v1e{vertical-align:17.280000pt;}
.v16{vertical-align:19.840000pt;}
.v10{vertical-align:21.120000pt;}
.v1b{vertical-align:23.680000pt;}
.v4{vertical-align:37.760000pt;}
.ve{vertical-align:40.320000pt;}
.v2{vertical-align:44.160000pt;}
.v13{vertical-align:48.000000pt;}
.v18{vertical-align:49.920000pt;}
.v12{vertical-align:56.426667pt;}
.v17{vertical-align:59.520000pt;}
.v1d{vertical-align:68.352000pt;}
.vb{vertical-align:69.760000pt;}
.v6{vertical-align:71.040000pt;}
.v5{vertical-align:81.920000pt;}
.v19{vertical-align:106.880000pt;}
.ls1e{letter-spacing:-1.573333pt;}
.ls29{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls37{letter-spacing:-0.517867pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls46{letter-spacing:-0.424533pt;}
.ls7d{letter-spacing:-0.379200pt;}
.ls53{letter-spacing:-0.320000pt;}
.ls7e{letter-spacing:-0.279467pt;}
.ls2d{letter-spacing:-0.268800pt;}
.ls64{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.250667pt;}
.ls56{letter-spacing:-0.232400pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls61{letter-spacing:-0.174400pt;}
.ls17{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.137600pt;}
.ls2b{letter-spacing:-0.120533pt;}
.ls4a{letter-spacing:-0.104533pt;}
.ls57{letter-spacing:-0.103866pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls5f{letter-spacing:-0.093867pt;}
.ls6d{letter-spacing:-0.089600pt;}
.ls1f{letter-spacing:-0.084267pt;}
.ls2a{letter-spacing:-0.082133pt;}
.ls59{letter-spacing:-0.073600pt;}
.ls1d{letter-spacing:-0.071467pt;}
.ls43{letter-spacing:-0.064000pt;}
.ls7a{letter-spacing:-0.053867pt;}
.ls4e{letter-spacing:-0.044800pt;}
.ls1c{letter-spacing:-0.035840pt;}
.ls50{letter-spacing:-0.033280pt;}
.ls78{letter-spacing:-0.024960pt;}
.ls47{letter-spacing:-0.012160pt;}
.ls28{letter-spacing:-0.000010pt;}
.lsa{letter-spacing:-0.000005pt;}
.ls34{letter-spacing:-0.000003pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000003pt;}
.ls13{letter-spacing:0.000005pt;}
.ls49{letter-spacing:0.015093pt;}
.ls62{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.032000pt;}
.ls19{letter-spacing:0.034560pt;}
.ls31{letter-spacing:0.035840pt;}
.ls58{letter-spacing:0.041492pt;}
.ls48{letter-spacing:0.044533pt;}
.ls4b{letter-spacing:0.045547pt;}
.ls79{letter-spacing:0.046080pt;}
.ls4c{letter-spacing:0.060800pt;}
.ls32{letter-spacing:0.061440pt;}
.ls36{letter-spacing:0.071467pt;}
.ls72{letter-spacing:0.075733pt;}
.ls18{letter-spacing:0.095467pt;}
.ls39{letter-spacing:0.095744pt;}
.ls41{letter-spacing:0.098667pt;}
.ls44{letter-spacing:0.099200pt;}
.ls63{letter-spacing:0.101333pt;}
.ls54{letter-spacing:0.102296pt;}
.ls5a{letter-spacing:0.102933pt;}
.lsd{letter-spacing:0.128000pt;}
.ls52{letter-spacing:0.131733pt;}
.ls15{letter-spacing:0.148267pt;}
.ls5e{letter-spacing:0.149867pt;}
.ls4d{letter-spacing:0.160000pt;}
.ls6c{letter-spacing:0.179712pt;}
.ls5b{letter-spacing:0.188267pt;}
.ls42{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.192533pt;}
.ls16{letter-spacing:0.194667pt;}
.ls6f{letter-spacing:0.195200pt;}
.ls24{letter-spacing:0.204800pt;}
.ls76{letter-spacing:0.230400pt;}
.ls2e{letter-spacing:0.230933pt;}
.ls45{letter-spacing:0.233600pt;}
.lse{letter-spacing:0.245333pt;}
.ls2f{letter-spacing:0.253333pt;}
.ls11{letter-spacing:0.256000pt;}
.ls70{letter-spacing:0.257067pt;}
.ls6a{letter-spacing:0.257280pt;}
.ls27{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.297067pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls71{letter-spacing:0.323200pt;}
.ls33{letter-spacing:0.352000pt;}
.ls5d{letter-spacing:0.361600pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls6e{letter-spacing:0.618667pt;}
.ls55{letter-spacing:0.629120pt;}
.ls26{letter-spacing:0.640000pt;}
.ls60{letter-spacing:0.997333pt;}
.ls51{letter-spacing:1.024000pt;}
.ls6b{letter-spacing:3.661568pt;}
.ls69{letter-spacing:3.735680pt;}
.ls2{letter-spacing:15.893333pt;}
.ls0{letter-spacing:15.936000pt;}
.ls3c{letter-spacing:16.289024pt;}
.ls4f{letter-spacing:18.863360pt;}
.ls6{letter-spacing:25.344000pt;}
.ls30{letter-spacing:26.752000pt;}
.ls5c{letter-spacing:26.880000pt;}
.ls5{letter-spacing:27.456000pt;}
.ls4{letter-spacing:27.520000pt;}
.ls65{letter-spacing:43.456000pt;}
.lsc{letter-spacing:43.520000pt;}
.ls75{letter-spacing:46.080000pt;}
.ls40{letter-spacing:47.970560pt;}
.ls38{letter-spacing:51.200000pt;}
.ls3{letter-spacing:59.971200pt;}
.ls23{letter-spacing:62.650880pt;}
.ls22{letter-spacing:62.684800pt;}
.ls77{letter-spacing:64.422400pt;}
.ls80{letter-spacing:65.568000pt;}
.ls7f{letter-spacing:68.451200pt;}
.ls3b{letter-spacing:69.868800pt;}
.ls3a{letter-spacing:70.508800pt;}
.ls7{letter-spacing:71.002880pt;}
.ls8{letter-spacing:71.036800pt;}
.ls2c{letter-spacing:71.164800pt;}
.ls74{letter-spacing:72.529280pt;}
.ls73{letter-spacing:72.563200pt;}
.ls3f{letter-spacing:77.984640pt;}
.ls3e{letter-spacing:79.211733pt;}
.ls3d{letter-spacing:79.851733pt;}
.ls7c{letter-spacing:86.675200pt;}
.ls7b{letter-spacing:86.720000pt;}
.ls66{letter-spacing:169.239680pt;}
.ls68{letter-spacing:806.029013pt;}
.ls67{letter-spacing:1290.902101pt;}
.ws77{word-spacing:-96.160000pt;}
.wse9{word-spacing:-85.248000pt;}
.wse5{word-spacing:-85.120000pt;}
.ws17{word-spacing:-75.103467pt;}
.ws61{word-spacing:-75.008000pt;}
.ws19{word-spacing:-74.914560pt;}
.ws57{word-spacing:-74.880000pt;}
.ws51{word-spacing:-70.400000pt;}
.ws78{word-spacing:-70.355200pt;}
.wsf{word-spacing:-64.256000pt;}
.ws13{word-spacing:-64.000000pt;}
.wsed{word-spacing:-62.403200pt;}
.wseb{word-spacing:-62.283733pt;}
.wsec{word-spacing:-62.208000pt;}
.wsee{word-spacing:-62.080000pt;}
.ws66{word-spacing:-59.693504pt;}
.ws63{word-spacing:-58.301781pt;}
.ws67{word-spacing:-57.760256pt;}
.ws69{word-spacing:-57.019520pt;}
.ws6a{word-spacing:-56.744960pt;}
.ws18{word-spacing:-54.528000pt;}
.ws59{word-spacing:-54.499200pt;}
.ws9{word-spacing:-54.432000pt;}
.ws8{word-spacing:-54.400000pt;}
.ws7{word-spacing:-54.262400pt;}
.ws65{word-spacing:-54.238976pt;}
.wse4{word-spacing:-53.120000pt;}
.ws6{word-spacing:-51.968000pt;}
.wsc{word-spacing:-51.898880pt;}
.ws14{word-spacing:-46.965333pt;}
.ws11{word-spacing:-46.720000pt;}
.wsd{word-spacing:-44.800000pt;}
.ws4e{word-spacing:-44.799808pt;}
.ws68{word-spacing:-40.692704pt;}
.ws28{word-spacing:-35.840005pt;}
.ws10{word-spacing:-32.564480pt;}
.wsa{word-spacing:-32.051200pt;}
.wsf0{word-spacing:-29.926400pt;}
.ws1b{word-spacing:-26.915840pt;}
.ws55{word-spacing:-26.880000pt;}
.ws7e{word-spacing:-26.879995pt;}
.ws4f{word-spacing:-26.879990pt;}
.ws4{word-spacing:-26.592000pt;}
.wsad{word-spacing:-24.000000pt;}
.wse7{word-spacing:-23.835307pt;}
.wsea{word-spacing:-23.613696pt;}
.ws3e{word-spacing:-23.578240pt;}
.ws64{word-spacing:-22.621781pt;}
.wsb{word-spacing:-21.587200pt;}
.ws1a{word-spacing:-21.280000pt;}
.wscf{word-spacing:-21.017600pt;}
.wsd0{word-spacing:-21.002240pt;}
.wscd{word-spacing:-20.822763pt;}
.ws7b{word-spacing:-20.783360pt;}
.wscb{word-spacing:-20.777216pt;}
.ws3{word-spacing:-20.741760pt;}
.wscc{word-spacing:-20.602816pt;}
.ws4c{word-spacing:-19.146240pt;}
.ws1e{word-spacing:-18.720000pt;}
.wse{word-spacing:-17.984000pt;}
.ws62{word-spacing:-17.652704pt;}
.ws96{word-spacing:-17.648382pt;}
.ws12{word-spacing:-17.536000pt;}
.ws4a{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.309760pt;}
.ws1c{word-spacing:-16.032000pt;}
.wsf8{word-spacing:-15.777920pt;}
.wsd9{word-spacing:-14.464000pt;}
.ws95{word-spacing:-14.437380pt;}
.wsd5{word-spacing:-14.208000pt;}
.wse8{word-spacing:-13.081387pt;}
.wse6{word-spacing:-13.028053pt;}
.ws1d{word-spacing:-12.480000pt;}
.ws2{word-spacing:-12.005120pt;}
.ws16{word-spacing:-11.920640pt;}
.ws15{word-spacing:-11.759573pt;}
.ws93{word-spacing:-11.680841pt;}
.ws97{word-spacing:-10.702562pt;}
.wsc9{word-spacing:-3.873920pt;}
.ws81{word-spacing:-3.864533pt;}
.ws84{word-spacing:-2.446720pt;}
.ws52{word-spacing:-2.425600pt;}
.wsd1{word-spacing:-2.286933pt;}
.wsc8{word-spacing:-2.215168pt;}
.wsd3{word-spacing:-2.162773pt;}
.wsf4{word-spacing:-2.131200pt;}
.wsce{word-spacing:-1.874432pt;}
.ws5f{word-spacing:-1.812224pt;}
.wsb7{word-spacing:-1.802595pt;}
.wsca{word-spacing:-1.686272pt;}
.ws7f{word-spacing:-1.632000pt;}
.wsc4{word-spacing:-1.627477pt;}
.ws83{word-spacing:-1.605760pt;}
.wsdf{word-spacing:-1.536000pt;}
.ws82{word-spacing:-1.520640pt;}
.wsb8{word-spacing:-1.280000pt;}
.ws86{word-spacing:-1.197120pt;}
.ws8f{word-spacing:-1.173288pt;}
.wsba{word-spacing:-1.173277pt;}
.wsd4{word-spacing:-1.152000pt;}
.ws48{word-spacing:-1.151975pt;}
.wsc5{word-spacing:-1.109568pt;}
.wsf6{word-spacing:-1.056000pt;}
.wsd8{word-spacing:-0.960000pt;}
.wsde{word-spacing:-0.928000pt;}
.ws60{word-spacing:-0.921227pt;}
.wse0{word-spacing:-0.896000pt;}
.ws3b{word-spacing:-0.878720pt;}
.wsdc{word-spacing:-0.832000pt;}
.ws89{word-spacing:-0.789333pt;}
.wsf1{word-spacing:-0.736000pt;}
.wsdb{word-spacing:-0.725333pt;}
.ws37{word-spacing:-0.716885pt;}
.ws34{word-spacing:-0.706048pt;}
.wsd2{word-spacing:-0.661120pt;}
.ws70{word-spacing:-0.650667pt;}
.ws56{word-spacing:-0.650651pt;}
.ws49{word-spacing:-0.640000pt;}
.ws91{word-spacing:-0.639985pt;}
.wsb9{word-spacing:-0.639975pt;}
.ws35{word-spacing:-0.552533pt;}
.ws72{word-spacing:-0.533316pt;}
.wsf3{word-spacing:-0.528213pt;}
.wsef{word-spacing:-0.502613pt;}
.ws8d{word-spacing:-0.490667pt;}
.ws71{word-spacing:-0.480025pt;}
.ws80{word-spacing:-0.467200pt;}
.ws36{word-spacing:-0.466773pt;}
.ws22{word-spacing:-0.455040pt;}
.ws8a{word-spacing:-0.448000pt;}
.wsa3{word-spacing:-0.436480pt;}
.wsda{word-spacing:-0.384000pt;}
.ws20{word-spacing:-0.334720pt;}
.wsac{word-spacing:-0.321280pt;}
.wsa4{word-spacing:-0.299200pt;}
.wsf9{word-spacing:-0.224000pt;}
.wsd6{word-spacing:-0.096000pt;}
.ws87{word-spacing:-0.064000pt;}
.ws8c{word-spacing:-0.042880pt;}
.ws8b{word-spacing:-0.032000pt;}
.ws2c{word-spacing:-0.010712pt;}
.ws76{word-spacing:-0.010667pt;}
.ws8e{word-spacing:-0.000025pt;}
.ws1{word-spacing:0.000000pt;}
.ws90{word-spacing:0.000008pt;}
.wse2{word-spacing:0.000010pt;}
.ws7c{word-spacing:0.000020pt;}
.wsd7{word-spacing:0.064000pt;}
.wse1{word-spacing:0.128000pt;}
.ws1f{word-spacing:0.139733pt;}
.ws26{word-spacing:0.160000pt;}
.wsc7{word-spacing:0.171435pt;}
.wse3{word-spacing:0.184320pt;}
.wsc6{word-spacing:0.195072pt;}
.ws21{word-spacing:0.430080pt;}
.ws88{word-spacing:0.448000pt;}
.ws7d{word-spacing:0.640000pt;}
.ws85{word-spacing:0.821120pt;}
.wsf7{word-spacing:1.048448pt;}
.wsdd{word-spacing:1.088000pt;}
.wsbc{word-spacing:2.361387pt;}
.wsbf{word-spacing:2.545280pt;}
.wsbe{word-spacing:2.638720pt;}
.wsc1{word-spacing:2.676480pt;}
.wsbd{word-spacing:2.725760pt;}
.wsc0{word-spacing:2.874240pt;}
.wsbb{word-spacing:2.909227pt;}
.wsc3{word-spacing:3.306880pt;}
.wsc2{word-spacing:4.661120pt;}
.ws4d{word-spacing:6.507520pt;}
.ws4b{word-spacing:7.147520pt;}
.wsae{word-spacing:7.936000pt;}
.wsa5{word-spacing:8.535467pt;}
.wsa7{word-spacing:8.675840pt;}
.wsa6{word-spacing:9.361280pt;}
.ws23{word-spacing:9.589333pt;}
.ws5b{word-spacing:19.278720pt;}
.ws5a{word-spacing:19.316480pt;}
.ws5e{word-spacing:19.486720pt;}
.ws5c{word-spacing:19.559040pt;}
.ws3d{word-spacing:20.001600pt;}
.ws3c{word-spacing:20.043520pt;}
.ws5d{word-spacing:20.661120pt;}
.wsa2{word-spacing:23.186560pt;}
.ws9f{word-spacing:23.508053pt;}
.wsa1{word-spacing:23.566720pt;}
.ws54{word-spacing:23.680015pt;}
.ws46{word-spacing:23.680020pt;}
.ws53{word-spacing:23.786667pt;}
.wsa0{word-spacing:24.081280pt;}
.ws45{word-spacing:24.288000pt;}
.ws47{word-spacing:24.426667pt;}
.ws44{word-spacing:24.960018pt;}
.ws39{word-spacing:30.283520pt;}
.ws38{word-spacing:31.285760pt;}
.ws99{word-spacing:34.199040pt;}
.ws9b{word-spacing:34.480000pt;}
.ws9a{word-spacing:34.961280pt;}
.ws98{word-spacing:35.136427pt;}
.ws58{word-spacing:35.731200pt;}
.ws73{word-spacing:37.120000pt;}
.ws74{word-spacing:37.226692pt;}
.ws75{word-spacing:37.760000pt;}
.wsa9{word-spacing:38.752640pt;}
.wsab{word-spacing:39.436160pt;}
.wsfb{word-spacing:41.120015pt;}
.wsfa{word-spacing:41.600000pt;}
.wsfc{word-spacing:41.632000pt;}
.wsb6{word-spacing:43.520000pt;}
.wsaf{word-spacing:43.530667pt;}
.wsb0{word-spacing:43.754667pt;}
.wsb3{word-spacing:44.160000pt;}
.wsb2{word-spacing:44.160015pt;}
.wsb1{word-spacing:44.192000pt;}
.wsb5{word-spacing:44.330667pt;}
.wsb4{word-spacing:45.440000pt;}
.ws50{word-spacing:46.080041pt;}
.wsaa{word-spacing:46.688000pt;}
.ws6f{word-spacing:49.280000pt;}
.ws6d{word-spacing:49.386667pt;}
.ws3f{word-spacing:49.598720pt;}
.ws6c{word-spacing:49.919975pt;}
.ws6b{word-spacing:50.101333pt;}
.ws6e{word-spacing:50.559975pt;}
.ws5{word-spacing:50.826667pt;}
.ws40{word-spacing:55.040000pt;}
.ws41{word-spacing:55.679969pt;}
.ws43{word-spacing:55.680000pt;}
.ws42{word-spacing:55.786682pt;}
.ws33{word-spacing:60.800000pt;}
.ws30{word-spacing:60.938616pt;}
.ws31{word-spacing:61.440000pt;}
.ws32{word-spacing:62.720000pt;}
.wsa8{word-spacing:74.134400pt;}
.ws29{word-spacing:76.789313pt;}
.ws2a{word-spacing:76.800000pt;}
.ws2b{word-spacing:77.546659pt;}
.ws2f{word-spacing:78.720000pt;}
.ws2e{word-spacing:78.720015pt;}
.ws2d{word-spacing:78.858667pt;}
.ws3a{word-spacing:91.592320pt;}
.ws92{word-spacing:95.127005pt;}
.ws9d{word-spacing:99.040320pt;}
.ws9e{word-spacing:99.578240pt;}
.ws9c{word-spacing:100.427093pt;}
.ws94{word-spacing:111.445814pt;}
.ws25{word-spacing:196.768000pt;}
.ws24{word-spacing:198.389318pt;}
.wsf2{word-spacing:207.680000pt;}
.ws27{word-spacing:468.000000pt;}
.ws7a{word-spacing:570.218667pt;}
.wsf5{word-spacing:582.922667pt;}
.ws79{word-spacing:597.098667pt;}
._15{margin-left:-331.178880pt;}
._2{margin-left:-16.198400pt;}
._16{margin-left:-10.320000pt;}
._19{margin-left:-8.571392pt;}
._1a{margin-left:-6.204160pt;}
._c{margin-left:-3.818880pt;}
._6{margin-left:-2.076160pt;}
._0{margin-left:-1.177600pt;}
._4{width:0.906880pt;}
._1{width:1.918080pt;}
._7{width:2.995200pt;}
._a{width:4.927360pt;}
._1d{width:6.385067pt;}
._17{width:8.726400pt;}
._25{width:11.801600pt;}
._24{width:14.730453pt;}
._2b{width:15.860907pt;}
._21{width:17.736107pt;}
._20{width:18.927573pt;}
._23{width:19.851520pt;}
._22{width:20.950400pt;}
._2a{width:21.923883pt;}
._e{width:24.464000pt;}
._30{width:25.706667pt;}
._5{width:27.510187pt;}
._2f{width:28.497280pt;}
._2d{width:29.469867pt;}
._28{width:33.080960pt;}
._2c{width:43.520000pt;}
._f{width:46.368000pt;}
._18{width:49.770624pt;}
._12{width:54.912000pt;}
._26{width:59.086507pt;}
._31{width:67.306667pt;}
._13{width:71.146667pt;}
._1c{width:77.226667pt;}
._29{width:98.613120pt;}
._9{width:104.546560pt;}
._10{width:107.142827pt;}
._8{width:114.944640pt;}
._27{width:126.954240pt;}
._1b{width:144.897707pt;}
._3{width:230.355200pt;}
._d{width:258.869333pt;}
._14{width:290.646613pt;}
._b{width:401.272960pt;}
._1f{width:637.066667pt;}
._11{width:648.622720pt;}
._1e{width:650.442667pt;}
._2e{width:1645.803093pt;}
.fs6{font-size:37.120000pt;}
.fs24{font-size:38.349173pt;}
.fs28{font-size:39.040000pt;}
.fs1f{font-size:42.017414pt;}
.fs11{font-size:42.880000pt;}
.fs12{font-size:43.008000pt;}
.fse{font-size:44.800000pt;}
.fs1a{font-size:46.080000pt;}
.fsf{font-size:46.720000pt;}
.fs5{font-size:48.000000pt;}
.fs16{font-size:49.920000pt;}
.fs20{font-size:51.147509pt;}
.fs21{font-size:51.147863pt;}
.fs22{font-size:51.933023pt;}
.fs7{font-size:53.120000pt;}
.fsd{font-size:54.400000pt;}
.fs13{font-size:54.528000pt;}
.fs10{font-size:56.320000pt;}
.fs26{font-size:56.960000pt;}
.fs1e{font-size:57.600000pt;}
.fs1c{font-size:57.728000pt;}
.fs0{font-size:58.880000pt;}
.fs29{font-size:62.080000pt;}
.fs2b{font-size:62.208000pt;}
.fs25{font-size:63.191448pt;}
.fs23{font-size:63.483390pt;}
.fsa{font-size:64.000000pt;}
.fs15{font-size:64.128000pt;}
.fs19{font-size:69.120000pt;}
.fs2d{font-size:69.248000pt;}
.fs1d{font-size:70.400000pt;}
.fs1b{font-size:70.528000pt;}
.fsc{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.fs14{font-size:85.120000pt;}
.fs2a{font-size:85.248000pt;}
.fs2c{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs2f{font-size:99.840000pt;}
.fs17{font-size:106.880000pt;}
.fs18{font-size:107.008000pt;}
.fs2e{font-size:113.920000pt;}
.fs9{font-size:117.120000pt;}
.fs8{font-size:128.000000pt;}
.fs27{font-size:128.128000pt;}
.fs1{font-size:213.120000pt;}
.fs2{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:7.165198pt;}
.yd1{bottom:8.935948pt;}
.ya{bottom:9.152000pt;}
.y2b{bottom:24.960000pt;}
.yb5{bottom:27.428355pt;}
.yc6{bottom:28.818737pt;}
.y114{bottom:33.376000pt;}
.y8{bottom:35.072000pt;}
.yb6{bottom:38.397707pt;}
.y9{bottom:39.488000pt;}
.yc7{bottom:42.437866pt;}
.yc4{bottom:53.479821pt;}
.y102{bottom:55.328000pt;}
.yb7{bottom:69.017581pt;}
.yc3{bottom:69.168800pt;}
.y48{bottom:74.240000pt;}
.y43{bottom:75.392000pt;}
.yc8{bottom:75.627975pt;}
.yc2{bottom:84.865738pt;}
.yad{bottom:90.912000pt;}
.ya0{bottom:91.586667pt;}
.y113{bottom:94.272000pt;}
.yb8{bottom:99.641434pt;}
.y1{bottom:99.712000pt;}
.ya7{bottom:100.032000pt;}
.y8d{bottom:100.064000pt;}
.yc1{bottom:100.554717pt;}
.yde{bottom:100.736000pt;}
.yd0{bottom:107.875520pt;}
.yc9{bottom:108.656559pt;}
.y47{bottom:109.632000pt;}
.ybf{bottom:112.437353pt;}
.yac{bottom:113.472000pt;}
.yf8{bottom:116.768000pt;}
.yfa{bottom:117.440000pt;}
.y10b{bottom:119.456000pt;}
.yf9{bottom:119.584000pt;}
.ya6{bottom:123.552000pt;}
.yf7{bottom:125.184000pt;}
.yfe{bottom:126.240000pt;}
.y106{bottom:129.600000pt;}
.yb9{bottom:130.265287pt;}
.y133{bottom:133.312000pt;}
.y8c{bottom:134.653333pt;}
.yab{bottom:135.866667pt;}
.y56{bottom:136.186667pt;}
.yca{bottom:141.846668pt;}
.y10a{bottom:143.973333pt;}
.y39{bottom:148.026667pt;}
.y7{bottom:151.013333pt;}
.ydd{bottom:154.813333pt;}
.yb2{bottom:156.773333pt;}
.yba{bottom:160.883170pt;}
.yff{bottom:161.893333pt;}
.y46{bottom:161.946667pt;}
.y132{bottom:162.106667pt;}
.ya5{bottom:162.493333pt;}
.y100{bottom:162.786667pt;}
.y9e{bottom:162.946667pt;}
.y60{bottom:165.506667pt;}
.yc5{bottom:167.040000pt;}
.y13f{bottom:167.933333pt;}
.y1f{bottom:168.413333pt;}
.y13d{bottom:168.773333pt;}
.y55{bottom:169.786667pt;}
.y111{bottom:172.546667pt;}
.ycb{bottom:175.036777pt;}
.yb1{bottom:175.973333pt;}
.ye6{bottom:176.160000pt;}
.yb4{bottom:177.120000pt;}
.y38{bottom:181.626667pt;}
.y6{bottom:183.813333pt;}
.ybb{bottom:191.509013pt;}
.ye5{bottom:195.360000pt;}
.y9d{bottom:195.773333pt;}
.ya4{bottom:201.440000pt;}
.y1e{bottom:201.853333pt;}
.y8b{bottom:202.106667pt;}
.yf6{bottom:202.880000pt;}
.y54{bottom:205.186667pt;}
.y51{bottom:205.413333pt;}
.ycc{bottom:208.226885pt;}
.y13c{bottom:209.573333pt;}
.y110{bottom:211.906667pt;}
.yf4{bottom:213.346667pt;}
.y9f{bottom:216.000000pt;}
.y5{bottom:216.613333pt;}
.y37{bottom:216.986667pt;}
.yf5{bottom:218.880000pt;}
.y131{bottom:219.706667pt;}
.ybc{bottom:222.132866pt;}
.y42{bottom:226.533333pt;}
.y89{bottom:227.840000pt;}
.ydb{bottom:229.253333pt;}
.y1d{bottom:235.453333pt;}
.y104{bottom:236.386667pt;}
.yaa{bottom:237.733333pt;}
.ya3{bottom:240.386667pt;}
.ycd{bottom:241.255470pt;}
.y50{bottom:246.213333pt;}
.y130{bottom:248.546667pt;}
.y9c{bottom:250.013333pt;}
.y88{bottom:250.240000pt;}
.yd4{bottom:250.337603pt;}
.y13b{bottom:250.373333pt;}
.y10f{bottom:251.293333pt;}
.ybd{bottom:252.750750pt;}
.yf3{bottom:268.226667pt;}
.yfb{bottom:268.800000pt;}
.y1c{bottom:268.893333pt;}
.yfd{bottom:269.466667pt;}
.yd3{bottom:269.751148pt;}
.yfc{bottom:271.613333pt;}
.y87{bottom:272.640000pt;}
.yce{bottom:274.445579pt;}
.y12f{bottom:277.346667pt;}
.ya2{bottom:278.786667pt;}
.y4f{bottom:279.013333pt;}
.y9b{bottom:282.813333pt;}
.yd5{bottom:283.057458pt;}
.ybe{bottom:283.374602pt;}
.y4{bottom:285.760000pt;}
.yd2{bottom:289.164694pt;}
.y13a{bottom:291.173333pt;}
.ya9{bottom:291.973333pt;}
.y28{bottom:293.306667pt;}
.y1b{bottom:294.493333pt;}
.y86{bottom:295.040000pt;}
.yf2{bottom:298.146667pt;}
.y8a{bottom:301.853333pt;}
.y36{bottom:301.986667pt;}
.ya1{bottom:307.586667pt;}
.ycf{bottom:307.635688pt;}
.y44{bottom:308.133333pt;}
.y82{bottom:311.520000pt;}
.y61{bottom:316.026667pt;}
.y85{bottom:317.440000pt;}
.y126{bottom:318.173333pt;}
.y4e{bottom:320.800000pt;}
.ya8{bottom:324.773333pt;}
.y12{bottom:325.573333pt;}
.y27{bottom:326.906667pt;}
.yf1{bottom:328.066667pt;}
.y1a{bottom:328.133333pt;}
.y21{bottom:328.453333pt;}
.y45{bottom:330.533333pt;}
.y35{bottom:331.746667pt;}
.y139{bottom:332.960000pt;}
.y81{bottom:333.920000pt;}
.y98{bottom:337.853333pt;}
.y84{bottom:339.866667pt;}
.y11d{bottom:340.226667pt;}
.y3{bottom:343.360000pt;}
.y67{bottom:344.253333pt;}
.y5a{bottom:347.133333pt;}
.y97{bottom:347.293333pt;}
.y80{bottom:356.320000pt;}
.y9a{bottom:356.413333pt;}
.yf0{bottom:358.786667pt;}
.y76{bottom:359.613333pt;}
.y26{bottom:360.386667pt;}
.y34{bottom:361.666667pt;}
.y11c{bottom:362.626667pt;}
.y19{bottom:363.493333pt;}
.y4d{bottom:365.280000pt;}
.y11{bottom:368.293333pt;}
.y99{bottom:368.893333pt;}
.y7f{bottom:378.720000pt;}
.y96{bottom:380.893333pt;}
.y75{bottom:385.213333pt;}
.y66{bottom:387.933333pt;}
.y95{bottom:390.333333pt;}
.y138{bottom:390.720000pt;}
.yef{bottom:391.453333pt;}
.y33{bottom:391.586667pt;}
.y6d{bottom:400.133333pt;}
.y2{bottom:400.960000pt;}
.y7e{bottom:401.146667pt;}
.y12c{bottom:401.466667pt;}
.y125{bottom:401.733333pt;}
.y5d{bottom:409.186667pt;}
.y4c{bottom:409.760000pt;}
.y74{bottom:410.813333pt;}
.y5c{bottom:413.306667pt;}
.y10{bottom:414.560000pt;}
.y119{bottom:415.973333pt;}
.y18{bottom:417.573333pt;}
.yee{bottom:421.373333pt;}
.ydc{bottom:421.413333pt;}
.y32{bottom:421.506667pt;}
.y25{bottom:421.893333pt;}
.y129{bottom:423.013333pt;}
.y7d{bottom:423.546667pt;}
.y124{bottom:424.133333pt;}
.y12b{bottom:430.266667pt;}
.y65{bottom:431.773333pt;}
.y6c{bottom:433.093333pt;}
.y94{bottom:436.293333pt;}
.y118{bottom:438.400000pt;}
.y71{bottom:439.840000pt;}
.y137{bottom:448.640000pt;}
.ye4{bottom:448.706667pt;}
.y31{bottom:451.453333pt;}
.y103{bottom:451.493333pt;}
.yed{bottom:452.093333pt;}
.y4b{bottom:455.200000pt;}
.yf{bottom:457.280000pt;}
.y112{bottom:458.853333pt;}
.y79{bottom:464.960000pt;}
.y6b{bottom:465.893333pt;}
.y11b{bottom:472.893333pt;}
.y142{bottom:473.186667pt;}
.y117{bottom:474.946667pt;}
.y70{bottom:475.226667pt;}
.y30{bottom:478.653333pt;}
.ye3{bottom:482.306667pt;}
.yec{bottom:485.693333pt;}
.y120{bottom:486.146667pt;}
.y2f{bottom:488.093333pt;}
.y78{bottom:490.560000pt;}
.y3a{bottom:491.106667pt;}
.yd9{bottom:491.906667pt;}
.y24{bottom:492.480000pt;}
.y41{bottom:492.506667pt;}
.y93{bottom:495.653333pt;}
.y64{bottom:496.933333pt;}
.y11a{bottom:497.533333pt;}
.y141{bottom:498.786667pt;}
.y15{bottom:502.426667pt;}
.ye{bottom:503.520000pt;}
.y136{bottom:504.666667pt;}
.y91{bottom:505.093333pt;}
.y40{bottom:505.346667pt;}
.y116{bottom:506.373333pt;}
.y12a{bottom:507.013333pt;}
.y83{bottom:509.213333pt;}
.y92{bottom:512.453333pt;}
.y145{bottom:514.786667pt;}
.y11f{bottom:514.946667pt;}
.ye2{bottom:515.773333pt;}
.y77{bottom:516.160000pt;}
.y4a{bottom:516.666667pt;}
.yda{bottom:517.346667pt;}
.yd8{bottom:517.506667pt;}
.y3f{bottom:518.146667pt;}
.yeb{bottom:518.333333pt;}
.y6a{bottom:519.973333pt;}
.y140{bottom:524.386667pt;}
.yb0{bottom:525.373333pt;}
.y115{bottom:528.773333pt;}
.y6f{bottom:529.466667pt;}
.y2e{bottom:530.813333pt;}
.y3e{bottom:530.946667pt;}
.y14{bottom:531.226667pt;}
.y10e{bottom:532.933333pt;}
.y122{bottom:533.733333pt;}
.y5b{bottom:534.466667pt;}
.y109{bottom:535.546667pt;}
.y12e{bottom:539.266667pt;}
.y5e{bottom:540.226667pt;}
.y63{bottom:540.613333pt;}
.ye1{bottom:541.373333pt;}
.y135{bottom:541.786667pt;}
.yd7{bottom:543.106667pt;}
.yd{bottom:546.240000pt;}
.y7c{bottom:547.040000pt;}
.y23{bottom:547.520000pt;}
.y144{bottom:547.746667pt;}
.yea{bottom:548.253333pt;}
.y90{bottom:549.733333pt;}
.y121{bottom:550.106667pt;}
.y128{bottom:554.013333pt;}
.yaf{bottom:558.973333pt;}
.y108{bottom:562.426667pt;}
.y2d{bottom:564.413333pt;}
.y73{bottom:566.053333pt;}
.y12d{bottom:568.066667pt;}
.yd6{bottom:568.706667pt;}
.y13e{bottom:570.240000pt;}
.y11e{bottom:572.573333pt;}
.y69{bottom:574.240000pt;}
.y5f{bottom:574.853333pt;}
.ye0{bottom:576.733333pt;}
.y13{bottom:577.786667pt;}
.y8f{bottom:578.053333pt;}
.y49{bottom:578.106667pt;}
.ye9{bottom:579.013333pt;}
.y7b{bottom:579.840000pt;}
.y134{bottom:580.826667pt;}
.y127{bottom:582.813333pt;}
.y53{bottom:583.546667pt;}
.y62{bottom:584.453333pt;}
.y8e{bottom:590.053333pt;}
.y107{bottom:591.066667pt;}
.y123{bottom:591.840000pt;}
.y10d{bottom:593.280000pt;}
.y58{bottom:593.920000pt;}
.yae{bottom:594.333333pt;}
.yc{bottom:594.426667pt;}
.y3b{bottom:597.253333pt;}
.y3d{bottom:598.080000pt;}
.y2c{bottom:599.813333pt;}
.y72{bottom:601.413333pt;}
.y143{bottom:601.826667pt;}
.y16{bottom:603.360000pt;}
.y22{bottom:603.706667pt;}
.y105{bottom:604.480000pt;}
.y68{bottom:607.040000pt;}
.y29{bottom:608.773333pt;}
.yb3{bottom:609.373333pt;}
.ydf{bottom:609.533333pt;}
.y7a{bottom:612.640000pt;}
.y20{bottom:613.346667pt;}
.ye8{bottom:614.373333pt;}
.y57{bottom:616.160000pt;}
.y3c{bottom:620.066667pt;}
.y59{bottom:624.733333pt;}
.y6e{bottom:634.240000pt;}
.y17{bottom:636.293333pt;}
.y52{bottom:647.493333pt;}
.yb{bottom:650.813333pt;}
.y10c{bottom:658.106667pt;}
.y2a{bottom:659.653333pt;}
.ye7{bottom:661.186667pt;}
.y101{bottom:667.773333pt;}
.h7{height:27.840000pt;}
.h2f{height:30.610343pt;}
.h6{height:36.000000pt;}
.h30{height:37.261759pt;}
.h31{height:37.262018pt;}
.h33{height:37.834019pt;}
.h1{height:44.160000pt;}
.h16{height:44.722500pt;}
.h17{height:44.856000pt;}
.h3a{height:45.131250pt;}
.h35{height:46.035957pt;}
.h12{height:46.218750pt;}
.h34{height:46.248641pt;}
.h13{height:48.000000pt;}
.h39{height:48.096000pt;}
.h42{height:51.840000pt;}
.h43{height:51.936000pt;}
.h8{height:52.834688pt;}
.h1d{height:54.112500pt;}
.h14{height:54.375000pt;}
.h23{height:55.680000pt;}
.hf{height:56.160000pt;}
.he{height:56.256000pt;}
.h18{height:56.306250pt;}
.h1c{height:57.061250pt;}
.h15{height:58.740000pt;}
.h27{height:60.938750pt;}
.h20{height:61.388437pt;}
.h37{height:61.493375pt;}
.h1b{height:63.618750pt;}
.h2d{height:63.656250pt;}
.h1a{height:63.727500pt;}
.h22{height:63.840000pt;}
.h21{height:68.533375pt;}
.hc{height:72.000000pt;}
.hd{height:72.096000pt;}
.h3c{height:72.318750pt;}
.h3e{height:72.427500pt;}
.h47{height:74.477812pt;}
.h41{height:74.505625pt;}
.h48{height:74.605125pt;}
.h19{height:78.097500pt;}
.h4{height:78.703125pt;}
.h5{height:78.808063pt;}
.h1e{height:80.160000pt;}
.h1f{height:80.256000pt;}
.h24{height:81.562500pt;}
.h45{height:81.851250pt;}
.h40{height:87.622812pt;}
.h3f{height:87.727750pt;}
.hb{height:87.840000pt;}
.h3b{height:89.726750pt;}
.h10{height:90.378750pt;}
.h44{height:93.394375pt;}
.h36{height:95.484375pt;}
.ha{height:96.017812pt;}
.h28{height:101.378750pt;}
.h9{height:104.937500pt;}
.h38{height:105.042438pt;}
.h29{height:107.778750pt;}
.h25{height:116.347917pt;}
.h2a{height:120.578750pt;}
.h3d{height:123.412083pt;}
.h26{height:126.703125pt;}
.h11{height:128.138750pt;}
.h46{height:145.191042pt;}
.h2b{height:170.498750pt;}
.h2{height:174.720937pt;}
.h3{height:174.825875pt;}
.h2c{height:201.600000pt;}
.h2e{height:308.958483pt;}
.h32{height:325.600000pt;}
.h0{height:720.000000pt;}
.w2{width:179.680000pt;}
.w3{width:414.400000pt;}
.w4{width:444.480000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7a{left:9.599981pt;}
.x59{left:10.862625pt;}
.x5e{left:13.174879pt;}
.x4c{left:14.266667pt;}
.x52{left:21.407981pt;}
.x2{left:25.503981pt;}
.x42{left:28.255981pt;}
.x58{left:30.649506pt;}
.x36{left:31.935981pt;}
.x1a{left:36.959981pt;}
.x5d{left:37.999953pt;}
.x37{left:39.391981pt;}
.x3a{left:40.607981pt;}
.xf{left:42.431981pt;}
.x51{left:44.351981pt;}
.x54{left:47.231981pt;}
.x3{left:49.951981pt;}
.x40{left:50.975981pt;}
.x18{left:53.215981pt;}
.x78{left:56.927981pt;}
.x10{left:59.167981pt;}
.x7{left:61.727981pt;}
.xa{left:65.151981pt;}
.x11{left:68.415981pt;}
.x53{left:69.951981pt;}
.x1e{left:74.719981pt;}
.x63{left:76.831981pt;}
.x77{left:80.575981pt;}
.x56{left:81.855981pt;}
.x8{left:84.479981pt;}
.x29{left:97.215981pt;}
.x9{left:99.519981pt;}
.x1{left:113.343981pt;}
.x28{left:118.399981pt;}
.x60{left:129.663981pt;}
.x57{left:132.320000pt;}
.x47{left:139.773314pt;}
.x17{left:164.226648pt;}
.x1b{left:166.106648pt;}
.x5a{left:178.142798pt;}
.x5f{left:184.293759pt;}
.x48{left:195.773314pt;}
.x1c{left:202.266648pt;}
.x81{left:219.746648pt;}
.x83{left:225.439981pt;}
.x65{left:243.453314pt;}
.x43{left:244.453314pt;}
.x82{left:251.906648pt;}
.x7f{left:257.146648pt;}
.x49{left:259.973314pt;}
.x44{left:265.733314pt;}
.x61{left:278.266648pt;}
.x66{left:283.453314pt;}
.x55{left:284.799981pt;}
.x69{left:294.533314pt;}
.x89{left:318.373314pt;}
.x41{left:321.093314pt;}
.x45{left:327.333314pt;}
.x5b{left:335.835344pt;}
.x46{left:348.453314pt;}
.x39{left:365.093314pt;}
.x1d{left:366.586648pt;}
.x68{left:377.626648pt;}
.x5{left:454.746648pt;}
.xc{left:475.039981pt;}
.xe{left:479.839981pt;}
.xb{left:493.759981pt;}
.x4a{left:497.919981pt;}
.x2c{left:506.719981pt;}
.x75{left:508.319981pt;}
.x80{left:509.306648pt;}
.x79{left:511.866648pt;}
.x33{left:526.466648pt;}
.x3d{left:527.546648pt;}
.x34{left:536.293314pt;}
.x87{left:547.706648pt;}
.x7d{left:556.346648pt;}
.xd{left:573.759981pt;}
.x88{left:577.786648pt;}
.x6c{left:578.973314pt;}
.x84{left:586.466648pt;}
.x7c{left:587.426648pt;}
.x30{left:591.906648pt;}
.x64{left:594.079981pt;}
.x31{left:599.386648pt;}
.x2d{left:604.093314pt;}
.x25{left:610.493314pt;}
.x6{left:620.479981pt;}
.x71{left:640.093314pt;}
.x3f{left:641.759981pt;}
.x23{left:651.293314pt;}
.x3b{left:662.813314pt;}
.x20{left:678.653314pt;}
.x24{left:687.866648pt;}
.x15{left:690.013314pt;}
.x16{left:697.733314pt;}
.x14{left:699.906648pt;}
.x5c{left:701.600000pt;}
.x12{left:706.906648pt;}
.x13{left:708.066648pt;}
.x73{left:710.719981pt;}
.x2a{left:714.373314pt;}
.x76{left:715.453314pt;}
.x38{left:718.653314pt;}
.x26{left:729.306648pt;}
.x7e{left:732.346648pt;}
.x21{left:742.466648pt;}
.x4b{left:751.360000pt;}
.x6a{left:754.173314pt;}
.x62{left:777.306648pt;}
.x2b{left:779.493314pt;}
.x2f{left:795.493314pt;}
.x3c{left:806.306648pt;}
.x6b{left:811.493314pt;}
.x74{left:822.533314pt;}
.x4f{left:828.026648pt;}
.x4e{left:834.586648pt;}
.x8a{left:853.466648pt;}
.x67{left:880.573314pt;}
.x72{left:907.519981pt;}
.x35{left:924.706648pt;}
.x50{left:951.426648pt;}
.x2e{left:958.173314pt;}
.x70{left:971.839981pt;}
.x4d{left:980.386648pt;}
.x3e{left:986.559981pt;}
.x27{left:1006.746648pt;}
.x1f{left:1014.266648pt;}
.x19{left:1024.453314pt;}
.x6e{left:1069.253314pt;}
.x7b{left:1074.079981pt;}
.x6f{left:1109.853314pt;}
.x85{left:1113.346648pt;}
.x86{left:1123.706648pt;}
.x22{left:1145.306648pt;}
.x32{left:1228.133314pt;}
.x4{left:1231.493314pt;}
.x6d{left:1232.826648pt;}
}




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