
    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_c7b999e8ac74430612a8ce58.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_24632b11d104e3be002d10bb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_059b4af0a355840d5cf9156f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_e134eb9298d898ac0858df7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_95049d746f67e4f66379135c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_7de5c67804facf52a854e0d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9c6468e72f8d9c6cef609123.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_8638ad998ff71ff4eaf8d417.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_5aad499bf14da297b2fa4eb8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922363;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_097262faceb814a9362d8ba4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.697266;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_2a4131612dfb084a8c8c53f2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.691406;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_b7722e83c193fc213cefb144.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b7eeb143e32bf98bc389ea93.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002930;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_f82e07eb6b7d0ebcd653e47a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e3e17f915b18888a999338d2.woff2')format("woff");}.fff{font-family:fff;line-height:0.863770;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;}
.m2{transform:matrix(0.000000,-0.249605,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249605,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249605,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250385,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250385,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250385,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249777,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249777,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249777,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250657,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250657,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250657,0.250000,0.000000,0,0);}
.mb{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);}
.m8{transform:matrix(0.234467,0.000001,-0.078148,0.237472,0,0);-ms-transform:matrix(0.234467,0.000001,-0.078148,0.237472,0,0);-webkit-transform:matrix(0.234467,0.000001,-0.078148,0.237472,0,0);}
.m5{transform:matrix(0.234612,0.000000,-0.078196,0.237456,0,0);-ms-transform:matrix(0.234612,0.000000,-0.078196,0.237456,0,0);-webkit-transform:matrix(0.234612,0.000000,-0.078196,0.237456,0,0);}
.m7{transform:matrix(0.234655,0.000000,-0.078210,0.237451,0,0);-ms-transform:matrix(0.234655,0.000000,-0.078210,0.237451,0,0);-webkit-transform:matrix(0.234655,0.000000,-0.078210,0.237451,0,0);}
.m4{transform:matrix(0.234800,0.000000,-0.078258,0.237436,0,0);-ms-transform:matrix(0.234800,0.000000,-0.078258,0.237436,0,0);-webkit-transform:matrix(0.234800,0.000000,-0.078258,0.237436,0,0);}
.me{transform:matrix(0.236419,0.000000,-0.078798,0.237257,0,0);-ms-transform:matrix(0.236419,0.000000,-0.078798,0.237257,0,0);-webkit-transform:matrix(0.236419,0.000000,-0.078798,0.237257,0,0);}
.m6{transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247362,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,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);}
.mf{transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252596,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253834,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-35.280000px;}
.v9{vertical-align:-27.202063px;}
.v4{vertical-align:-22.440000px;}
.v19{vertical-align:-20.160000px;}
.vf{vertical-align:-17.280000px;}
.v8{vertical-align:-15.890159px;}
.v1{vertical-align:-10.160414px;}
.v6{vertical-align:-7.630423px;}
.vc{vertical-align:-5.480645px;}
.v17{vertical-align:-4.012871px;}
.va{vertical-align:-2.631795px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.848850px;}
.v14{vertical-align:5.073745px;}
.v7{vertical-align:8.299068px;}
.v16{vertical-align:10.470364px;}
.v10{vertical-align:17.280000px;}
.vd{vertical-align:22.320000px;}
.ve{vertical-align:25.200000px;}
.v11{vertical-align:30.960000px;}
.v15{vertical-align:32.287467px;}
.v3{vertical-align:35.280000px;}
.v13{vertical-align:40.543834px;}
.v18{vertical-align:44.003205px;}
.v12{vertical-align:55.440000px;}
.v5{vertical-align:82.080000px;}
.ls4e{letter-spacing:-0.306000px;}
.ls4d{letter-spacing:-0.294000px;}
.ls47{letter-spacing:-0.291000px;}
.lsb{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.254400px;}
.ls55{letter-spacing:-0.229800px;}
.ls4b{letter-spacing:-0.216000px;}
.ls54{letter-spacing:-0.191400px;}
.ls20{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.094200px;}
.ls5{letter-spacing:-0.087000px;}
.ls49{letter-spacing:-0.043080px;}
.ls53{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.002356px;}
.ls18{letter-spacing:0.002713px;}
.ls16{letter-spacing:0.003027px;}
.ls29{letter-spacing:0.005034px;}
.ls23{letter-spacing:0.005296px;}
.ls24{letter-spacing:0.005329px;}
.ls6{letter-spacing:0.005847px;}
.ls12{letter-spacing:0.006831px;}
.ls11{letter-spacing:0.007866px;}
.ls13{letter-spacing:0.008381px;}
.ls15{letter-spacing:0.008437px;}
.ls3f{letter-spacing:0.008528px;}
.lsf{letter-spacing:0.008775px;}
.ls25{letter-spacing:0.015039px;}
.lsc{letter-spacing:0.024299px;}
.lse{letter-spacing:0.024463px;}
.ls27{letter-spacing:0.029553px;}
.ls0{letter-spacing:0.037440px;}
.ls48{letter-spacing:0.141600px;}
.ls4c{letter-spacing:0.142800px;}
.ls4f{letter-spacing:0.182160px;}
.ls4a{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.231600px;}
.ls45{letter-spacing:0.244200px;}
.ls50{letter-spacing:0.277200px;}
.ls43{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.309000px;}
.ls41{letter-spacing:0.316800px;}
.ls35{letter-spacing:4.785696px;}
.ls32{letter-spacing:4.870800px;}
.ls36{letter-spacing:4.989024px;}
.ls30{letter-spacing:5.040000px;}
.ls38{letter-spacing:5.709024px;}
.ls2e{letter-spacing:5.785200px;}
.ls1a{letter-spacing:5.868000px;}
.ls3b{letter-spacing:7.063200px;}
.ls1b{letter-spacing:17.460000px;}
.ls34{letter-spacing:21.978000px;}
.ls31{letter-spacing:23.040000px;}
.ls2f{letter-spacing:23.065200px;}
.ls2c{letter-spacing:23.760000px;}
.ls40{letter-spacing:23.846047px;}
.ls2b{letter-spacing:27.385200px;}
.ls2a{letter-spacing:27.825696px;}
.ls33{letter-spacing:28.029024px;}
.ls8{letter-spacing:30.096432px;}
.ls3a{letter-spacing:30.204000px;}
.ls3e{letter-spacing:34.759211px;}
.ls7{letter-spacing:35.992800px;}
.ls39{letter-spacing:36.712800px;}
.ls2d{letter-spacing:46.940400px;}
.ls37{letter-spacing:54.850800px;}
.ls51{letter-spacing:59.979456px;}
.ls52{letter-spacing:60.092640px;}
.ls4{letter-spacing:65.793600px;}
.ls3{letter-spacing:65.844000px;}
.ls1c{letter-spacing:97.509600px;}
.ls1d{letter-spacing:97.560000px;}
.lsa{letter-spacing:124.269600px;}
.ls9{letter-spacing:124.320000px;}
.ls1e{letter-spacing:176.097761px;}
.ls1f{letter-spacing:217.966373px;}
.ls42{letter-spacing:246.456000px;}
.ls44{letter-spacing:277.342992px;}
.ls46{letter-spacing:277.416000px;}
.ls17{letter-spacing:290.312157px;}
.ls3d{letter-spacing:303.533924px;}
.ls14{letter-spacing:329.137912px;}
.ls28{letter-spacing:481.734075px;}
.ls10{letter-spacing:841.708690px;}
.lsd{letter-spacing:954.277090px;}
.ls26{letter-spacing:1085.513995px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-144.000000px;}
.ws11{word-spacing:-108.144000px;}
.ws13{word-spacing:-108.000000px;}
.ws86{word-spacing:-95.760000px;}
.ws12{word-spacing:-84.535776px;}
.ws38{word-spacing:-84.384000px;}
.ws4e{word-spacing:-84.276000px;}
.ws3d{word-spacing:-84.240000px;}
.ws24{word-spacing:-83.736000px;}
.ws4d{word-spacing:-79.200000px;}
.ws4a{word-spacing:-71.269200px;}
.ws48{word-spacing:-70.549200px;}
.ws49{word-spacing:-69.829200px;}
.ws3c{word-spacing:-66.058848px;}
.ws5d{word-spacing:-65.949000px;}
.ws3f{word-spacing:-65.807280px;}
.ws46{word-spacing:-65.515680px;}
.ws43{word-spacing:-65.338848px;}
.ws3e{word-spacing:-65.167920px;}
.ws41{word-spacing:-65.087280px;}
.ws45{word-spacing:-64.795680px;}
.ws39{word-spacing:-63.756288px;}
.wsc{word-spacing:-62.465739px;}
.ws47{word-spacing:-61.599600px;}
.ws4c{word-spacing:-61.200000px;}
.ws44{word-spacing:-61.089600px;}
.ws3a{word-spacing:-61.018848px;}
.ws87{word-spacing:-60.994848px;}
.ws40{word-spacing:-60.767280px;}
.ws15{word-spacing:-55.063647px;}
.ws89{word-spacing:-47.735280px;}
.ws8a{word-spacing:-47.555280px;}
.ws4b{word-spacing:-46.255680px;}
.ws9{word-spacing:-37.946304px;}
.ws2{word-spacing:-37.913760px;}
.ws3b{word-spacing:-37.126080px;}
.ws42{word-spacing:-35.978688px;}
.ws95{word-spacing:-32.544000px;}
.ws0{word-spacing:-26.621280px;}
.ws96{word-spacing:-26.602560px;}
.ws16{word-spacing:-26.242098px;}
.ws36{word-spacing:-24.440544px;}
.ws37{word-spacing:-24.408000px;}
.ws10{word-spacing:-21.641760px;}
.ws88{word-spacing:-21.460416px;}
.ws14{word-spacing:-19.681771px;}
.ws31{word-spacing:-19.038240px;}
.ws1b{word-spacing:-18.991899px;}
.ws8c{word-spacing:-18.207171px;}
.ws8d{word-spacing:-16.806541px;}
.ws33{word-spacing:-16.358901px;}
.ws6a{word-spacing:-16.304544px;}
.ws61{word-spacing:-16.272000px;}
.ws93{word-spacing:-15.405912px;}
.ws5c{word-spacing:-15.002784px;}
.ws58{word-spacing:-14.999507px;}
.ws5b{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.690553px;}
.ws50{word-spacing:-13.837763px;}
.ws32{word-spacing:-12.269298px;}
.wse{word-spacing:-11.745637px;}
.wsd{word-spacing:-10.686847px;}
.ws34{word-spacing:-10.631592px;}
.ws51{word-spacing:-9.224898px;}
.ws1c{word-spacing:-9.051113px;}
.ws1a{word-spacing:-6.788402px;}
.ws2f{word-spacing:-1.095120px;}
.ws27{word-spacing:-0.995160px;}
.ws2a{word-spacing:-0.933264px;}
.ws97{word-spacing:-0.624960px;}
.ws25{word-spacing:-0.601920px;}
.ws2b{word-spacing:-0.489312px;}
.ws2e{word-spacing:-0.404640px;}
.ws2d{word-spacing:-0.242640px;}
.ws29{word-spacing:-0.130656px;}
.ws35{word-spacing:-0.108000px;}
.ws20{word-spacing:-0.074200px;}
.ws18{word-spacing:-0.070798px;}
.ws19{word-spacing:-0.052843px;}
.ws21{word-spacing:-0.048222px;}
.ws5{word-spacing:-0.042336px;}
.ws1e{word-spacing:-0.024419px;}
.ws1f{word-spacing:-0.018226px;}
.ws1{word-spacing:0.000000px;}
.ws30{word-spacing:0.087360px;}
.ws6{word-spacing:0.502560px;}
.ws26{word-spacing:0.565200px;}
.ws3{word-spacing:0.814320px;}
.ws7{word-spacing:0.996840px;}
.ws4{word-spacing:1.116840px;}
.ws8{word-spacing:1.366320px;}
.ws54{word-spacing:33.033502px;}
.ws8b{word-spacing:33.555381px;}
.ws8e{word-spacing:48.581523px;}
.ws5a{word-spacing:52.669479px;}
.ws94{word-spacing:57.644567px;}
.ws91{word-spacing:72.712764px;}
.ws53{word-spacing:73.752084px;}
.ws23{word-spacing:76.945006px;}
.ws57{word-spacing:86.068332px;}
.ws4f{word-spacing:87.544330px;}
.ws8f{word-spacing:106.325175px;}
.ws80{word-spacing:106.577760px;}
.ws65{word-spacing:106.644000px;}
.ws66{word-spacing:115.284000px;}
.wsa{word-spacing:119.274540px;}
.ws64{word-spacing:122.484000px;}
.ws92{word-spacing:130.657577px;}
.ws84{word-spacing:155.400000px;}
.ws90{word-spacing:157.665049px;}
.ws62{word-spacing:160.080000px;}
.ws59{word-spacing:162.077867px;}
.ws82{word-spacing:162.600000px;}
.ws5f{word-spacing:167.280000px;}
.ws5e{word-spacing:167.382120px;}
.ws75{word-spacing:169.934880px;}
.ws6c{word-spacing:170.148000px;}
.ws68{word-spacing:177.336000px;}
.ws71{word-spacing:177.420000px;}
.ws74{word-spacing:179.520144px;}
.ws77{word-spacing:180.240000px;}
.ws2c{word-spacing:182.055840px;}
.ws60{word-spacing:185.880000px;}
.ws7b{word-spacing:186.648000px;}
.ws70{word-spacing:186.720000px;}
.ws7a{word-spacing:187.320000px;}
.ws7d{word-spacing:187.368000px;}
.ws7f{word-spacing:187.398240px;}
.ws6b{word-spacing:190.320000px;}
.ws6d{word-spacing:191.040000px;}
.ws72{word-spacing:191.640000px;}
.ws76{word-spacing:191.650464px;}
.ws79{word-spacing:193.848000px;}
.ws67{word-spacing:197.558016px;}
.ws83{word-spacing:200.280000px;}
.ws85{word-spacing:205.200000px;}
.ws63{word-spacing:205.920000px;}
.ws69{word-spacing:206.050464px;}
.ws81{word-spacing:207.432000px;}
.ws7c{word-spacing:207.480000px;}
.ws6f{word-spacing:230.472000px;}
.ws73{word-spacing:230.513040px;}
.ws78{word-spacing:238.392000px;}
.ws7e{word-spacing:238.433040px;}
.ws6e{word-spacing:242.712000px;}
.ws56{word-spacing:257.138423px;}
.ws55{word-spacing:263.991964px;}
.ws52{word-spacing:492.290357px;}
.ws28{word-spacing:610.900080px;}
.ws22{word-spacing:823.297924px;}
.ws1d{word-spacing:1233.438260px;}
.ws17{word-spacing:3576.135814px;}
._35{margin-left:-1479.384189px;}
._31{margin-left:-826.004919px;}
._33{margin-left:-480.781007px;}
._d{margin-left:-340.539733px;}
._4f{margin-left:-246.141157px;}
._21{margin-left:-46.800000px;}
._19{margin-left:-38.880000px;}
._4b{margin-left:-14.375641px;}
._43{margin-left:-11.261520px;}
._16{margin-left:-10.224000px;}
._8{margin-left:-8.520960px;}
._b{margin-left:-6.270336px;}
._2{margin-left:-4.891104px;}
._4{margin-left:-3.572160px;}
._5{margin-left:-2.562480px;}
._0{margin-left:-1.296000px;}
._1{width:1.152000px;}
._3{width:2.300544px;}
._55{width:3.458080px;}
._1e{width:4.787712px;}
._22{width:5.963520px;}
._49{width:8.756335px;}
._4c{width:9.944058px;}
._4a{width:11.465379px;}
._20{width:19.873152px;}
._17{width:23.784480px;}
._23{width:25.477200px;}
._e{width:26.634096px;}
._57{width:28.023888px;}
._a{width:30.816432px;}
._9{width:32.117472px;}
._44{width:37.345536px;}
._28{width:39.135899px;}
._1b{width:41.051808px;}
._1d{width:42.502752px;}
._f{width:47.880000px;}
._24{width:53.757936px;}
._46{width:55.962535px;}
._1a{width:60.061152px;}
._1f{width:61.201584px;}
._1c{width:62.922528px;}
._2e{width:73.401986px;}
._18{width:78.669216px;}
._47{width:84.083463px;}
._45{width:87.760884px;}
._2d{width:92.156549px;}
._2f{width:93.982700px;}
._54{width:95.108960px;}
._2c{width:103.485391px;}
._c{width:105.156108px;}
._26{width:106.839803px;}
._48{width:110.135993px;}
._2b{width:115.242641px;}
._27{width:116.740872px;}
._2a{width:122.189357px;}
._25{width:127.576454px;}
._29{width:132.193562px;}
._3d{width:140.520000px;}
._51{width:145.539385px;}
._3c{width:148.584000px;}
._6{width:152.856708px;}
._7{width:154.874202px;}
._3f{width:156.000000px;}
._42{width:158.400000px;}
._39{width:160.320000px;}
._3e{width:161.544000px;}
._40{width:166.464000px;}
._3a{width:168.744000px;}
._41{width:172.680000px;}
._3b{width:176.160000px;}
._38{width:177.360000px;}
._37{width:186.996000px;}
._50{width:190.147946px;}
._36{width:193.980000px;}
._52{width:207.736648px;}
._53{width:216.867547px;}
._4e{width:230.144922px;}
._4d{width:257.819016px;}
._32{width:273.208284px;}
._11{width:308.441280px;}
._15{width:387.880080px;}
._12{width:393.924720px;}
._34{width:442.652645px;}
._30{width:450.020378px;}
._14{width:688.987200px;}
._10{width:720.400080px;}
._13{width:749.130240px;}
._56{width:1282.802496px;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(38,38,38);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs1c{font-size:12.343171px;}
.fs1f{font-size:15.870210px;}
.fs1b{font-size:18.991899px;}
.fs1a{font-size:24.418714px;}
.fs20{font-size:25.752642px;}
.fs1d{font-size:26.712547px;}
.fs1e{font-size:32.557959px;}
.fs15{font-size:35.786840px;}
.fs24{font-size:35.846907px;}
.fs34{font-size:36.899593px;}
.fs2e{font-size:38.243138px;}
.fs2c{font-size:44.134167px;}
.fs3b{font-size:44.816099px;}
.fs18{font-size:46.012865px;}
.fsb{font-size:47.286932px;}
.fs22{font-size:48.221576px;}
.fsc{font-size:51.971844px;}
.fs7{font-size:52.843717px;}
.fs14{font-size:55.063647px;}
.fs32{font-size:55.351050px;}
.fs2a{font-size:56.160000px;}
.fs29{font-size:56.304000px;}
.fs2b{font-size:58.690717px;}
.fs2d{font-size:58.844967px;}
.fs26{font-size:59.760000px;}
.fs27{font-size:59.904000px;}
.fs33{font-size:59.963915px;}
.fs35{font-size:60.017444px;}
.fs31{font-size:61.200000px;}
.fs30{font-size:61.344000px;}
.fs3c{font-size:61.623649px;}
.fs23{font-size:62.002422px;}
.fs8{font-size:62.366962px;}
.fs9{font-size:62.465739px;}
.fs25{font-size:66.240000px;}
.fs36{font-size:66.384000px;}
.fs38{font-size:67.226166px;}
.fs2f{font-size:69.961496px;}
.fs13{font-size:70.797736px;}
.fs37{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs3a{font-size:72.716777px;}
.fsa{font-size:72.758337px;}
.fs39{font-size:72.828682px;}
.fs21{font-size:74.199742px;}
.fs19{font-size:74.353178px;}
.fs16{font-size:77.124631px;}
.fsf{font-size:79.200000px;}
.fs10{font-size:79.344000px;}
.fs5{font-size:84.240000px;}
.fs28{font-size:84.384000px;}
.fs17{font-size:94.396037px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:95.904000px;}
.fs11{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs12{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs4{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fs3d{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y66{bottom:1.016128px;}
.y60{bottom:1.355350px;}
.y48{bottom:2.944118px;}
.y76{bottom:3.393879px;}
.y42{bottom:3.925879px;}
.y99{bottom:4.982553px;}
.y1c{bottom:5.675150px;}
.ycd{bottom:6.651495px;}
.yd5{bottom:8.031061px;}
.y6c{bottom:9.903522px;}
.y77{bottom:10.336378px;}
.y12c{bottom:15.229224px;}
.y24{bottom:15.817504px;}
.y69{bottom:17.576395px;}
.y12a{bottom:18.028861px;}
.y6f{bottom:20.205499px;}
.y97{bottom:21.748337px;}
.y11b{bottom:22.230417px;}
.y62{bottom:22.453046px;}
.y13{bottom:23.665190px;}
.yd4{bottom:23.948101px;}
.ycc{bottom:23.948132px;}
.y78{bottom:25.282427px;}
.y68{bottom:27.343880px;}
.y12f{bottom:27.833880px;}
.y4e{bottom:28.707499px;}
.y55{bottom:30.204000px;}
.y7{bottom:31.392000px;}
.y96{bottom:31.856287px;}
.y61{bottom:32.220532px;}
.y6d{bottom:32.323275px;}
.y1e{bottom:32.810862px;}
.y14{bottom:34.844244px;}
.y12e{bottom:41.839050px;}
.y3a{bottom:46.980000px;}
.y4b{bottom:50.953721px;}
.yd6{bottom:51.623074px;}
.yce{bottom:51.623105px;}
.y70{bottom:51.659177px;}
.y12b{bottom:53.043189px;}
.y11c{bottom:55.842828px;}
.y129{bottom:55.844220px;}
.y74{bottom:56.476986px;}
.ydd{bottom:57.622779px;}
.y51{bottom:58.576277px;}
.y44{bottom:65.091635px;}
.yfd{bottom:66.276000px;}
.y122{bottom:66.527373px;}
.y83{bottom:69.765000px;}
.y71{bottom:73.079796px;}
.y73{bottom:73.620000px;}
.y9a{bottom:74.923878px;}
.y94{bottom:75.297792px;}
.y8a{bottom:76.860000px;}
.y125{bottom:78.252498px;}
.y4a{bottom:79.272815px;}
.yd7{bottom:79.298047px;}
.ycf{bottom:79.298078px;}
.yfc{bottom:87.876000px;}
.y11d{bottom:89.455239px;}
.y1d{bottom:92.810577px;}
.y43{bottom:93.410729px;}
.y4f{bottom:93.708670px;}
.y75{bottom:99.360845px;}
.y15{bottom:99.882589px;}
.y6e{bottom:100.048918px;}
.y12{bottom:101.340000px;}
.y37{bottom:104.724000px;}
.y124{bottom:104.862323px;}
.yd8{bottom:106.973018px;}
.yd0{bottom:106.973049px;}
.yfb{bottom:109.476000px;}
.y8f{bottom:110.047319px;}
.y91{bottom:115.968653px;}
.y11e{bottom:123.067649px;}
.y106{bottom:124.379990px;}
.y6b{bottom:125.169668px;}
.y5e{bottom:126.031109px;}
.y101{bottom:127.116000px;}
.y126{bottom:130.071631px;}
.yfa{bottom:131.076000px;}
.yd9{bottom:133.497173px;}
.yd1{bottom:133.497203px;}
.y36{bottom:137.160000px;}
.y72{bottom:138.454139px;}
.ydf{bottom:142.920000px;}
.y95{bottom:144.796845px;}
.y90{bottom:147.401987px;}
.y8b{bottom:148.793439px;}
.y52{bottom:149.766711px;}
.ya7{bottom:149.832000px;}
.y8e{bottom:150.877553px;}
.yf9{bottom:152.670000px;}
.y127{bottom:153.874819px;}
.y67{bottom:154.882507px;}
.y11f{bottom:155.275341px;}
.y5d{bottom:159.925641px;}
.yda{bottom:161.172144px;}
.yd2{bottom:161.172175px;}
.y100{bottom:161.310000px;}
.y6{bottom:162.690000px;}
.y143{bottom:162.900000px;}
.y5a{bottom:163.076329px;}
.y16{bottom:164.918336px;}
.y6a{bottom:167.695523px;}
.y35{bottom:169.560000px;}
.y5b{bottom:170.768225px;}
.yf8{bottom:174.270000px;}
.y5c{bottom:178.029400px;}
.y128{bottom:179.084127px;}
.ya6{bottom:181.155000px;}
.y64{bottom:183.638935px;}
.y11{bottom:184.350000px;}
.ya5{bottom:185.475000px;}
.ydb{bottom:188.847115px;}
.yd3{bottom:188.847146px;}
.y120{bottom:188.887752px;}
.y5{bottom:190.770000px;}
.yf7{bottom:195.915000px;}
.y63{bottom:197.564385px;}
.y59{bottom:197.744121px;}
.y9d{bottom:200.955000px;}
.y12d{bottom:204.293435px;}
.y142{bottom:205.770000px;}
.y13b{bottom:206.820000px;}
.y53{bottom:211.881891px;}
.y34{bottom:217.080000px;}
.yf6{bottom:217.515000px;}
.yb4{bottom:217.799939px;}
.ya4{bottom:218.415000px;}
.y104{bottom:219.420000px;}
.y4{bottom:219.570000px;}
.ye4{bottom:222.120000px;}
.y121{bottom:222.500162px;}
.ya3{bottom:222.735000px;}
.y17{bottom:229.960579px;}
.y9c{bottom:233.385000px;}
.y123{bottom:233.844351px;}
.y10{bottom:234.795000px;}
.y13a{bottom:235.650000px;}
.yc1{bottom:236.125183px;}
.yb6{bottom:236.125218px;}
.yff{bottom:237.270000px;}
.yf5{bottom:239.115000px;}
.y88{bottom:242.025000px;}
.y93{bottom:243.914828px;}
.y3{bottom:248.370000px;}
.y141{bottom:248.610000px;}
.yc0{bottom:253.422048px;}
.yb5{bottom:253.422079px;}
.y92{bottom:257.737404px;}
.y102{bottom:257.865000px;}
.ya2{bottom:258.300000px;}
.yf4{bottom:260.715000px;}
.ya1{bottom:262.620000px;}
.y8d{bottom:264.835649px;}
.y9b{bottom:265.785000px;}
.y87{bottom:266.610000px;}
.y33{bottom:266.790000px;}
.yfe{bottom:269.715000px;}
.y139{bottom:273.450000px;}
.y103{bottom:276.450000px;}
.y2{bottom:277.200000px;}
.y8c{bottom:278.075899px;}
.y105{bottom:279.435000px;}
.y112{bottom:279.921357px;}
.y108{bottom:279.921362px;}
.yc2{bottom:281.097021px;}
.yb7{bottom:281.097052px;}
.ya9{bottom:281.130000px;}
.yf3{bottom:282.315000px;}
.y98{bottom:283.876588px;}
.yf{bottom:285.195000px;}
.yc8{bottom:287.669828px;}
.ydc{bottom:288.673077px;}
.y50{bottom:290.064224px;}
.y86{bottom:291.210000px;}
.y140{bottom:291.450000px;}
.y18{bottom:295.002822px;}
.ya0{bottom:297.645000px;}
.y32{bottom:299.190000px;}
.y111{bottom:300.929115px;}
.y107{bottom:300.929120px;}
.y82{bottom:301.500000px;}
.y9f{bottom:301.965000px;}
.y138{bottom:302.250000px;}
.yf2{bottom:303.915000px;}
.yc3{bottom:308.771994px;}
.yb8{bottom:308.772024px;}
.y85{bottom:315.795000px;}
.y9e{bottom:319.890000px;}
.yf1{bottom:325.515000px;}
.y31{bottom:331.590000px;}
.y13f{bottom:334.290000px;}
.y113{bottom:334.541526px;}
.y109{bottom:334.541531px;}
.ye{bottom:335.595000px;}
.yc4{bottom:336.446965px;}
.yb9{bottom:336.446996px;}
.y137{bottom:340.050000px;}
.y84{bottom:340.380000px;}
.yab{bottom:346.035000px;}
.y26{bottom:346.415557px;}
.y119{bottom:346.627989px;}
.y10f{bottom:346.627994px;}
.yf0{bottom:347.145000px;}
.yaa{bottom:350.355000px;}
.y19{bottom:360.045065px;}
.y25{bottom:362.006986px;}
.y4d{bottom:362.907228px;}
.yc5{bottom:364.121937px;}
.yba{bottom:364.121968px;}
.y81{bottom:364.965000px;}
.y40{bottom:365.394982px;}
.y13e{bottom:366.915000px;}
.y114{bottom:368.153936px;}
.y10a{bottom:368.153941px;}
.yef{bottom:368.745000px;}
.y136{bottom:377.895000px;}
.y30{bottom:379.110000px;}
.yd{bottom:386.025000px;}
.yb1{bottom:386.175000px;}
.y27{bottom:387.797808px;}
.y80{bottom:389.520000px;}
.yee{bottom:390.345000px;}
.yc6{bottom:391.796909px;}
.ybb{bottom:391.796940px;}
.y54{bottom:401.413330px;}
.y115{bottom:401.766347px;}
.y10b{bottom:401.766352px;}
.y135{bottom:406.695000px;}
.yed{bottom:411.945000px;}
.yca{bottom:412.091885px;}
.ybd{bottom:413.694757px;}
.y7f{bottom:414.105000px;}
.ya8{bottom:414.930000px;}
.y23{bottom:417.759336px;}
.yc7{bottom:419.471880px;}
.ybc{bottom:419.471910px;}
.ye3{bottom:423.540000px;}
.y1a{bottom:425.074315px;}
.y89{bottom:428.070000px;}
.ybf{bottom:428.339431px;}
.ybe{bottom:429.607863px;}
.yc9{bottom:429.688555px;}
.y79{bottom:429.915000px;}
.ycb{bottom:429.976824px;}
.yec{bottom:433.545000px;}
.y116{bottom:435.378758px;}
.y10c{bottom:435.378763px;}
.y22{bottom:436.170215px;}
.yc{bottom:436.425000px;}
.y7e{bottom:436.530000px;}
.y29{bottom:440.483843px;}
.y134{bottom:444.495000px;}
.y49{bottom:449.044473px;}
.y1{bottom:449.640000px;}
.y21{bottom:454.594086px;}
.yeb{bottom:455.145000px;}
.y28{bottom:456.075272px;}
.y3f{bottom:463.666172px;}
.yb3{bottom:467.565000px;}
.yb0{bottom:467.925000px;}
.y117{bottom:468.991168px;}
.y10d{bottom:468.991173px;}
.y20{bottom:470.445372px;}
.y58{bottom:470.519959px;}
.y3c{bottom:472.801047px;}
.yea{bottom:476.790000px;}
.y133{bottom:482.295000px;}
.yb2{bottom:485.565000px;}
.yae{bottom:485.925000px;}
.y4c{bottom:486.203452px;}
.yb{bottom:486.825000px;}
.y1f{bottom:489.103115px;}
.y1b{bottom:490.116558px;}
.y7d{bottom:490.935000px;}
.y2f{bottom:493.200000px;}
.y3d{bottom:495.102334px;}
.y13d{bottom:496.080000px;}
.ye9{bottom:498.390000px;}
.y2e{bottom:498.780000px;}
.y39{bottom:500.835000px;}
.yaf{bottom:500.865000px;}
.y118{bottom:502.603578px;}
.y10e{bottom:502.603584px;}
.yde{bottom:502.740000px;}
.y11a{bottom:514.942134px;}
.y110{bottom:514.942139px;}
.y3e{bottom:516.154827px;}
.y2c{bottom:516.810000px;}
.y38{bottom:518.835000px;}
.ye8{bottom:519.990000px;}
.y132{bottom:520.095000px;}
.y47{bottom:531.403944px;}
.y2d{bottom:531.750000px;}
.y46{bottom:532.418640px;}
.y41{bottom:532.558018px;}
.ye7{bottom:541.590000px;}
.yad{bottom:542.490000px;}
.y7c{bottom:545.730000px;}
.y131{bottom:548.925000px;}
.ye6{bottom:563.190000px;}
.y45{bottom:572.793016px;}
.y3b{bottom:573.314166px;}
.y2b{bottom:573.330000px;}
.y7b{bottom:578.160000px;}
.ye5{bottom:584.790000px;}
.y13c{bottom:585.900000px;}
.yac{bottom:586.050000px;}
.ye2{bottom:606.030000px;}
.ya{bottom:608.970000px;}
.y2a{bottom:616.935000px;}
.y7a{bottom:625.680000px;}
.ye0{bottom:625.860000px;}
.y130{bottom:628.950000px;}
.y65{bottom:637.591456px;}
.y5f{bottom:637.988246px;}
.ye1{bottom:645.660000px;}
.y9{bottom:709.740000px;}
.y57{bottom:716.940000px;}
.y8{bottom:740.520000px;}
.y56{bottom:746.100000px;}
.h2d{height:7.460389px;}
.h2a{height:8.139737px;}
.h29{height:13.186758px;}
.h28{height:16.035608px;}
.h2f{height:16.954790px;}
.h2e{height:17.880985px;}
.h2b{height:18.547482px;}
.h27{height:19.807957px;}
.h22{height:21.590423px;}
.h1f{height:23.556460px;}
.h34{height:24.277178px;}
.h41{height:24.910189px;}
.h26{height:25.467955px;}
.h2c{height:33.956934px;}
.h4f{height:37.187871px;}
.h1e{height:38.232669px;}
.h32{height:40.060113px;}
.h35{height:41.990898px;}
.h50{height:42.261616px;}
.he{height:42.861545px;}
.h33{height:43.050510px;}
.h5e{height:45.166225px;}
.h3e{height:46.030557px;}
.h3a{height:46.434305px;}
.h1d{height:46.531737px;}
.h42{height:48.576781px;}
.h24{height:49.157412px;}
.h31{height:50.251485px;}
.h23{height:51.626084px;}
.h20{height:53.550403px;}
.h37{height:54.628594px;}
.h56{height:54.747352px;}
.ha{height:55.114346px;}
.h4c{height:55.783481px;}
.h14{height:55.880859px;}
.h12{height:55.982461px;}
.h1c{height:57.429663px;}
.h58{height:59.378906px;}
.h48{height:59.436914px;}
.h4{height:59.497664px;}
.h45{height:59.538516px;}
.hd{height:60.004312px;}
.h51{height:60.432383px;}
.h52{height:60.486330px;}
.h3d{height:61.212584px;}
.h3f{height:61.373462px;}
.h40{height:61.476442px;}
.h5f{height:62.105084px;}
.h4d{height:62.646381px;}
.hb{height:65.046792px;}
.hc{height:65.149813px;}
.h59{height:67.565039px;}
.h5b{height:67.751370px;}
.h6{height:69.473320px;}
.h38{height:69.592078px;}
.h3b{height:71.515547px;}
.h5d{height:73.284877px;}
.h5c{height:73.397656px;}
.h1b{height:73.839826px;}
.h54{height:75.932832px;}
.h13{height:76.201172px;}
.h19{height:76.302773px;}
.h47{height:76.716914px;}
.h44{height:76.818516px;}
.h4e{height:77.731705px;}
.h53{height:79.945703px;}
.h62{height:82.430156px;}
.h36{height:89.068359px;}
.h43{height:89.187117px;}
.h46{height:91.522266px;}
.h60{height:94.588359px;}
.h16{height:96.820312px;}
.h17{height:96.949406px;}
.h21{height:98.452117px;}
.h49{height:98.620664px;}
.h15{height:99.162773px;}
.h3{height:99.874688px;}
.h2{height:100.024875px;}
.h30{height:108.726335px;}
.h4a{height:115.900664px;}
.h10{height:118.757812px;}
.hf{height:118.876570px;}
.h39{height:136.800000px;}
.h5{height:138.352852px;}
.h1{height:150.187500px;}
.h7{height:150.394219px;}
.h8{height:150.523313px;}
.h18{height:158.281172px;}
.h11{height:158.382773px;}
.h25{height:207.355617px;}
.h61{height:217.920586px;}
.h55{height:277.380000px;}
.h3c{height:312.476030px;}
.h57{height:386.460000px;}
.h4b{height:457.559594px;}
.h9{height:503.473215px;}
.h5a{height:533.148862px;}
.h1a{height:601.190774px;}
.h0{height:810.000000px;}
.w8{width:4.353462px;}
.w7{width:6.463373px;}
.w5{width:12.610543px;}
.wd{width:17.329904px;}
.w4{width:18.735205px;}
.w10{width:64.620000px;}
.wf{width:77.400000px;}
.wb{width:124.740000px;}
.wa{width:132.825839px;}
.w9{width:386.448746px;}
.w6{width:397.441620px;}
.wc{width:419.227114px;}
.we{width:561.761026px;}
.w2{width:578.681522px;}
.w11{width:688.121583px;}
.w3{width:1153.121162px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6a{left:1.575386px;}
.x57{left:3.372966px;}
.x43{left:8.790607px;}
.x92{left:10.650000px;}
.x44{left:13.712728px;}
.x8f{left:14.802030px;}
.x12{left:16.713221px;}
.xa4{left:17.936858px;}
.x86{left:23.340453px;}
.x2a{left:25.504272px;}
.x10{left:26.715347px;}
.x4d{left:28.482108px;}
.x54{left:30.452811px;}
.xa3{left:31.709353px;}
.x85{left:32.943010px;}
.x6f{left:34.559979px;}
.xf{left:37.088366px;}
.x2b{left:39.784874px;}
.x83{left:42.171622px;}
.x88{left:43.785112px;}
.xaa{left:46.316728px;}
.xe{left:47.918149px;}
.x13{left:50.498712px;}
.xa2{left:52.150665px;}
.x45{left:55.683207px;}
.x46{left:58.972893px;}
.xa{left:60.515979px;}
.x56{left:62.847055px;}
.x3b{left:64.799995px;}
.xa5{left:69.632993px;}
.x9f{left:71.207979px;}
.x48{left:74.650039px;}
.x84{left:78.590927px;}
.x52{left:80.337405px;}
.x34{left:82.635437px;}
.x87{left:85.533142px;}
.x19{left:88.398990px;}
.x50{left:93.412315px;}
.x18{left:94.612903px;}
.x75{left:97.235979px;}
.x5b{left:104.687979px;}
.x76{left:110.735979px;}
.x5d{left:111.885000px;}
.x1f{left:113.399979px;}
.xb3{left:115.811979px;}
.x17{left:117.982486px;}
.x47{left:128.883465px;}
.x63{left:134.439779px;}
.x61{left:136.885242px;}
.x23{left:144.180000px;}
.x1a{left:147.077864px;}
.x67{left:148.996450px;}
.x72{left:156.419979px;}
.x40{left:158.951161px;}
.x2c{left:161.554297px;}
.xb{left:162.719979px;}
.x41{left:164.531220px;}
.x70{left:166.889979px;}
.x1b{left:169.559979px;}
.x2d{left:171.098698px;}
.x60{left:179.784925px;}
.x3c{left:181.942071px;}
.x4f{left:183.907165px;}
.x20{left:186.224979px;}
.x3e{left:187.968131px;}
.x66{left:194.255993px;}
.x3f{left:197.374418px;}
.x4c{left:199.131601px;}
.x4e{left:201.086635px;}
.x3d{left:203.480960px;}
.x2f{left:216.582970px;}
.x65{left:231.647244px;}
.x39{left:233.083788px;}
.x71{left:235.469979px;}
.x68{left:237.791497px;}
.x37{left:253.709811px;}
.x74{left:258.329979px;}
.x73{left:266.969979px;}
.x11{left:270.757615px;}
.x42{left:272.402265px;}
.x51{left:273.707865px;}
.x21{left:293.144979px;}
.x90{left:298.579467px;}
.x5c{left:301.320000px;}
.x8b{left:307.120179px;}
.x1{left:309.989979px;}
.x62{left:315.545250px;}
.x4a{left:317.067328px;}
.x4b{left:321.453572px;}
.x49{left:323.328126px;}
.x89{left:325.955964px;}
.x2e{left:330.106071px;}
.x9d{left:334.079979px;}
.x9e{left:335.519979px;}
.x8c{left:337.809103px;}
.x9{left:354.524979px;}
.xa8{left:361.771074px;}
.xab{left:365.994174px;}
.x3a{left:367.484979px;}
.xb5{left:373.289979px;}
.x2{left:374.864979px;}
.x5f{left:377.744979px;}
.x6b{left:381.670788px;}
.xac{left:384.130962px;}
.x64{left:385.461265px;}
.xa6{left:387.766689px;}
.x9c{left:389.984979px;}
.x8a{left:392.712186px;}
.x4{left:397.904979px;}
.xb4{left:405.149979px;}
.xa9{left:408.098885px;}
.x1c{left:420.944979px;}
.x8e{left:422.962562px;}
.x22{left:436.964979px;}
.xae{left:440.037616px;}
.xc{left:443.444979px;}
.x8d{left:444.902976px;}
.x27{left:461.166739px;}
.xb2{left:465.044979px;}
.x82{left:467.819959px;}
.x5e{left:472.709979px;}
.xb0{left:475.402274px;}
.x28{left:477.356221px;}
.x8{left:481.784979px;}
.x1e{left:484.844979px;}
.x69{left:488.756749px;}
.x1d{left:495.464979px;}
.xa0{left:504.209979px;}
.xa7{left:514.164917px;}
.x15{left:523.725709px;}
.x16{left:525.964022px;}
.x24{left:527.870519px;}
.x36{left:533.571863px;}
.x25{left:545.353992px;}
.x3{left:559.949979px;}
.x14{left:569.819294px;}
.x26{left:572.644555px;}
.x33{left:577.742685px;}
.x35{left:583.414842px;}
.x53{left:588.599959px;}
.x5{left:590.729979px;}
.xaf{left:601.856436px;}
.x59{left:622.724979px;}
.xad{left:638.507580px;}
.x6{left:643.829979px;}
.x55{left:716.337098px;}
.x6e{left:721.979979px;}
.xa1{left:730.079919px;}
.x29{left:746.498734px;}
.x38{left:794.111612px;}
.xd{left:822.599919px;}
.x7b{left:852.044979px;}
.x77{left:853.379979px;}
.x80{left:867.524979px;}
.x31{left:919.910893px;}
.x32{left:932.636760px;}
.x30{left:938.075414px;}
.x6c{left:976.319979px;}
.x81{left:979.889979px;}
.x6d{left:994.139979px;}
.x5a{left:1022.114979px;}
.x91{left:1032.480000px;}
.x93{left:1043.669979px;}
.x9b{left:1062.029979px;}
.x9a{left:1066.709979px;}
.x78{left:1094.039979px;}
.x7c{left:1103.474979px;}
.x58{left:1119.884979px;}
.x7f{left:1125.749979px;}
.x95{left:1129.139979px;}
.x94{left:1140.149979px;}
.x7e{left:1171.874979px;}
.x7d{left:1178.174979px;}
.x79{left:1179.209979px;}
.x96{left:1199.520000px;}
.x97{left:1211.759979px;}
.x98{left:1227.599979px;}
.x7a{left:1252.289979px;}
.x99{left:1282.214979px;}
.xb1{left:1311.839979px;}
.x7{left:1321.019979px;}
@media print{
.v2{vertical-align:-31.360000pt;}
.v9{vertical-align:-24.179612pt;}
.v4{vertical-align:-19.946667pt;}
.v19{vertical-align:-17.920000pt;}
.vf{vertical-align:-15.360000pt;}
.v8{vertical-align:-14.124585pt;}
.v1{vertical-align:-9.031479pt;}
.v6{vertical-align:-6.782598pt;}
.vc{vertical-align:-4.871684pt;}
.v17{vertical-align:-3.566996pt;}
.va{vertical-align:-2.339373pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.532311pt;}
.v14{vertical-align:4.509995pt;}
.v7{vertical-align:7.376949pt;}
.v16{vertical-align:9.306990pt;}
.v10{vertical-align:15.360000pt;}
.vd{vertical-align:19.840000pt;}
.ve{vertical-align:22.400000pt;}
.v11{vertical-align:27.520000pt;}
.v15{vertical-align:28.699971pt;}
.v3{vertical-align:31.360000pt;}
.v13{vertical-align:36.038963pt;}
.v18{vertical-align:39.113960pt;}
.v12{vertical-align:49.280000pt;}
.v5{vertical-align:72.960000pt;}
.ls4e{letter-spacing:-0.272000pt;}
.ls4d{letter-spacing:-0.261333pt;}
.ls47{letter-spacing:-0.258667pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.226133pt;}
.ls55{letter-spacing:-0.204267pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls54{letter-spacing:-0.170133pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.083733pt;}
.ls5{letter-spacing:-0.077333pt;}
.ls49{letter-spacing:-0.038293pt;}
.ls53{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.002094pt;}
.ls18{letter-spacing:0.002412pt;}
.ls16{letter-spacing:0.002690pt;}
.ls29{letter-spacing:0.004475pt;}
.ls23{letter-spacing:0.004708pt;}
.ls24{letter-spacing:0.004737pt;}
.ls6{letter-spacing:0.005198pt;}
.ls12{letter-spacing:0.006072pt;}
.ls11{letter-spacing:0.006992pt;}
.ls13{letter-spacing:0.007450pt;}
.ls15{letter-spacing:0.007500pt;}
.ls3f{letter-spacing:0.007581pt;}
.lsf{letter-spacing:0.007800pt;}
.ls25{letter-spacing:0.013368pt;}
.lsc{letter-spacing:0.021599pt;}
.lse{letter-spacing:0.021745pt;}
.ls27{letter-spacing:0.026270pt;}
.ls0{letter-spacing:0.033280pt;}
.ls48{letter-spacing:0.125867pt;}
.ls4c{letter-spacing:0.126933pt;}
.ls4f{letter-spacing:0.161920pt;}
.ls4a{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.205867pt;}
.ls45{letter-spacing:0.217067pt;}
.ls50{letter-spacing:0.246400pt;}
.ls43{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.274667pt;}
.ls41{letter-spacing:0.281600pt;}
.ls35{letter-spacing:4.253952pt;}
.ls32{letter-spacing:4.329600pt;}
.ls36{letter-spacing:4.434688pt;}
.ls30{letter-spacing:4.480000pt;}
.ls38{letter-spacing:5.074688pt;}
.ls2e{letter-spacing:5.142400pt;}
.ls1a{letter-spacing:5.216000pt;}
.ls3b{letter-spacing:6.278400pt;}
.ls1b{letter-spacing:15.520000pt;}
.ls34{letter-spacing:19.536000pt;}
.ls31{letter-spacing:20.480000pt;}
.ls2f{letter-spacing:20.502400pt;}
.ls2c{letter-spacing:21.120000pt;}
.ls40{letter-spacing:21.196486pt;}
.ls2b{letter-spacing:24.342400pt;}
.ls2a{letter-spacing:24.733952pt;}
.ls33{letter-spacing:24.914688pt;}
.ls8{letter-spacing:26.752384pt;}
.ls3a{letter-spacing:26.848000pt;}
.ls3e{letter-spacing:30.897076pt;}
.ls7{letter-spacing:31.993600pt;}
.ls39{letter-spacing:32.633600pt;}
.ls2d{letter-spacing:41.724800pt;}
.ls37{letter-spacing:48.756267pt;}
.ls51{letter-spacing:53.315072pt;}
.ls52{letter-spacing:53.415680pt;}
.ls4{letter-spacing:58.483200pt;}
.ls3{letter-spacing:58.528000pt;}
.ls1c{letter-spacing:86.675200pt;}
.ls1d{letter-spacing:86.720000pt;}
.lsa{letter-spacing:110.461867pt;}
.ls9{letter-spacing:110.506667pt;}
.ls1e{letter-spacing:156.531343pt;}
.ls1f{letter-spacing:193.747887pt;}
.ls42{letter-spacing:219.072000pt;}
.ls44{letter-spacing:246.527104pt;}
.ls46{letter-spacing:246.592000pt;}
.ls17{letter-spacing:258.055251pt;}
.ls3d{letter-spacing:269.807932pt;}
.ls14{letter-spacing:292.567033pt;}
.ls28{letter-spacing:428.208067pt;}
.ls10{letter-spacing:748.185502pt;}
.lsd{letter-spacing:848.246302pt;}
.ls26{letter-spacing:964.901329pt;}
.wsf{word-spacing:-128.000000pt;}
.ws11{word-spacing:-96.128000pt;}
.ws13{word-spacing:-96.000000pt;}
.ws86{word-spacing:-85.120000pt;}
.ws12{word-spacing:-75.142912pt;}
.ws38{word-spacing:-75.008000pt;}
.ws4e{word-spacing:-74.912000pt;}
.ws3d{word-spacing:-74.880000pt;}
.ws24{word-spacing:-74.432000pt;}
.ws4d{word-spacing:-70.400000pt;}
.ws4a{word-spacing:-63.350400pt;}
.ws48{word-spacing:-62.710400pt;}
.ws49{word-spacing:-62.070400pt;}
.ws3c{word-spacing:-58.718976pt;}
.ws5d{word-spacing:-58.621333pt;}
.ws3f{word-spacing:-58.495360pt;}
.ws46{word-spacing:-58.236160pt;}
.ws43{word-spacing:-58.078976pt;}
.ws3e{word-spacing:-57.927040pt;}
.ws41{word-spacing:-57.855360pt;}
.ws45{word-spacing:-57.596160pt;}
.ws39{word-spacing:-56.672256pt;}
.wsc{word-spacing:-55.525101pt;}
.ws47{word-spacing:-54.755200pt;}
.ws4c{word-spacing:-54.400000pt;}
.ws44{word-spacing:-54.301867pt;}
.ws3a{word-spacing:-54.238976pt;}
.ws87{word-spacing:-54.217643pt;}
.ws40{word-spacing:-54.015360pt;}
.ws15{word-spacing:-48.945464pt;}
.ws89{word-spacing:-42.431360pt;}
.ws8a{word-spacing:-42.271360pt;}
.ws4b{word-spacing:-41.116160pt;}
.ws9{word-spacing:-33.730048pt;}
.ws2{word-spacing:-33.701120pt;}
.ws3b{word-spacing:-33.000960pt;}
.ws42{word-spacing:-31.981056pt;}
.ws95{word-spacing:-28.928000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws96{word-spacing:-23.646720pt;}
.ws16{word-spacing:-23.326310pt;}
.ws36{word-spacing:-21.724928pt;}
.ws37{word-spacing:-21.696000pt;}
.ws10{word-spacing:-19.237120pt;}
.ws88{word-spacing:-19.075925pt;}
.ws14{word-spacing:-17.494907pt;}
.ws31{word-spacing:-16.922880pt;}
.ws1b{word-spacing:-16.881688pt;}
.ws8c{word-spacing:-16.184152pt;}
.ws8d{word-spacing:-14.939148pt;}
.ws33{word-spacing:-14.541245pt;}
.ws6a{word-spacing:-14.492928pt;}
.ws61{word-spacing:-14.464000pt;}
.ws93{word-spacing:-13.694144pt;}
.ws5c{word-spacing:-13.335808pt;}
.ws58{word-spacing:-13.332895pt;}
.ws5b{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.058270pt;}
.ws50{word-spacing:-12.300233pt;}
.ws32{word-spacing:-10.906043pt;}
.wse{word-spacing:-10.440566pt;}
.wsd{word-spacing:-9.499419pt;}
.ws34{word-spacing:-9.450304pt;}
.ws51{word-spacing:-8.199910pt;}
.ws1c{word-spacing:-8.045433pt;}
.ws1a{word-spacing:-6.034135pt;}
.ws2f{word-spacing:-0.973440pt;}
.ws27{word-spacing:-0.884587pt;}
.ws2a{word-spacing:-0.829568pt;}
.ws97{word-spacing:-0.555520pt;}
.ws25{word-spacing:-0.535040pt;}
.ws2b{word-spacing:-0.434944pt;}
.ws2e{word-spacing:-0.359680pt;}
.ws2d{word-spacing:-0.215680pt;}
.ws29{word-spacing:-0.116139pt;}
.ws35{word-spacing:-0.096000pt;}
.ws20{word-spacing:-0.065955pt;}
.ws18{word-spacing:-0.062931pt;}
.ws19{word-spacing:-0.046972pt;}
.ws21{word-spacing:-0.042864pt;}
.ws5{word-spacing:-0.037632pt;}
.ws1e{word-spacing:-0.021706pt;}
.ws1f{word-spacing:-0.016201pt;}
.ws1{word-spacing:0.000000pt;}
.ws30{word-spacing:0.077653pt;}
.ws6{word-spacing:0.446720pt;}
.ws26{word-spacing:0.502400pt;}
.ws3{word-spacing:0.723840pt;}
.ws7{word-spacing:0.886080pt;}
.ws4{word-spacing:0.992747pt;}
.ws8{word-spacing:1.214507pt;}
.ws54{word-spacing:29.363113pt;}
.ws8b{word-spacing:29.827006pt;}
.ws8e{word-spacing:43.183576pt;}
.ws5a{word-spacing:46.817315pt;}
.ws94{word-spacing:51.239615pt;}
.ws91{word-spacing:64.633568pt;}
.ws53{word-spacing:65.557408pt;}
.ws23{word-spacing:68.395561pt;}
.ws57{word-spacing:76.505184pt;}
.ws4f{word-spacing:77.817183pt;}
.ws8f{word-spacing:94.511266pt;}
.ws80{word-spacing:94.735787pt;}
.ws65{word-spacing:94.794667pt;}
.ws66{word-spacing:102.474667pt;}
.wsa{word-spacing:106.021813pt;}
.ws64{word-spacing:108.874667pt;}
.ws92{word-spacing:116.140068pt;}
.ws84{word-spacing:138.133333pt;}
.ws90{word-spacing:140.146711pt;}
.ws62{word-spacing:142.293333pt;}
.ws59{word-spacing:144.069215pt;}
.ws82{word-spacing:144.533333pt;}
.ws5f{word-spacing:148.693333pt;}
.ws5e{word-spacing:148.784107pt;}
.ws75{word-spacing:151.053227pt;}
.ws6c{word-spacing:151.242667pt;}
.ws68{word-spacing:157.632000pt;}
.ws71{word-spacing:157.706667pt;}
.ws74{word-spacing:159.573461pt;}
.ws77{word-spacing:160.213333pt;}
.ws2c{word-spacing:161.827413pt;}
.ws60{word-spacing:165.226667pt;}
.ws7b{word-spacing:165.909333pt;}
.ws70{word-spacing:165.973333pt;}
.ws7a{word-spacing:166.506667pt;}
.ws7d{word-spacing:166.549333pt;}
.ws7f{word-spacing:166.576213pt;}
.ws6b{word-spacing:169.173333pt;}
.ws6d{word-spacing:169.813333pt;}
.ws72{word-spacing:170.346667pt;}
.ws76{word-spacing:170.355968pt;}
.ws79{word-spacing:172.309333pt;}
.ws67{word-spacing:175.607125pt;}
.ws83{word-spacing:178.026667pt;}
.ws85{word-spacing:182.400000pt;}
.ws63{word-spacing:183.040000pt;}
.ws69{word-spacing:183.155968pt;}
.ws81{word-spacing:184.384000pt;}
.ws7c{word-spacing:184.426667pt;}
.ws6f{word-spacing:204.864000pt;}
.ws73{word-spacing:204.900480pt;}
.ws78{word-spacing:211.904000pt;}
.ws7e{word-spacing:211.940480pt;}
.ws6e{word-spacing:215.744000pt;}
.ws56{word-spacing:228.567487pt;}
.ws55{word-spacing:234.659523pt;}
.ws52{word-spacing:437.591429pt;}
.ws28{word-spacing:543.022293pt;}
.ws22{word-spacing:731.820377pt;}
.ws1d{word-spacing:1096.389565pt;}
.ws17{word-spacing:3178.787391pt;}
._35{margin-left:-1315.008168pt;}
._31{margin-left:-734.226594pt;}
._33{margin-left:-427.360895pt;}
._d{margin-left:-302.701985pt;}
._4f{margin-left:-218.792139pt;}
._21{margin-left:-41.600000pt;}
._19{margin-left:-34.560000pt;}
._4b{margin-left:-12.778348pt;}
._43{margin-left:-10.010240pt;}
._16{margin-left:-9.088000pt;}
._8{margin-left:-7.574187pt;}
._b{margin-left:-5.573632pt;}
._2{margin-left:-4.347648pt;}
._4{margin-left:-3.175253pt;}
._5{margin-left:-2.277760pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.024000pt;}
._3{width:2.044928pt;}
._55{width:3.073849pt;}
._1e{width:4.255744pt;}
._22{width:5.300907pt;}
._49{width:7.783409pt;}
._4c{width:8.839163pt;}
._4a{width:10.191448pt;}
._20{width:17.665024pt;}
._17{width:21.141760pt;}
._23{width:22.646400pt;}
._e{width:23.674752pt;}
._57{width:24.910123pt;}
._a{width:27.392384pt;}
._9{width:28.548864pt;}
._44{width:33.196032pt;}
._28{width:34.787466pt;}
._1b{width:36.490496pt;}
._1d{width:37.780224pt;}
._f{width:42.560000pt;}
._24{width:47.784832pt;}
._46{width:49.744476pt;}
._1a{width:53.387691pt;}
._1f{width:54.401408pt;}
._1c{width:55.931136pt;}
._2e{width:65.246210pt;}
._18{width:69.928192pt;}
._47{width:74.740856pt;}
._45{width:78.009675pt;}
._2d{width:81.916932pt;}
._2f{width:83.540178pt;}
._54{width:84.541298pt;}
._2c{width:91.987014pt;}
._c{width:93.472096pt;}
._26{width:94.968714pt;}
._48{width:97.898660pt;}
._2b{width:102.437903pt;}
._27{width:103.769664pt;}
._2a{width:108.612762pt;}
._25{width:113.401292pt;}
._29{width:117.505388pt;}
._3d{width:124.906667pt;}
._51{width:129.368342pt;}
._3c{width:132.074667pt;}
._6{width:135.872629pt;}
._7{width:137.665957pt;}
._3f{width:138.666667pt;}
._42{width:140.800000pt;}
._39{width:142.506667pt;}
._3e{width:143.594667pt;}
._40{width:147.968000pt;}
._3a{width:149.994667pt;}
._41{width:153.493333pt;}
._3b{width:156.586667pt;}
._38{width:157.653333pt;}
._37{width:166.218667pt;}
._50{width:169.020397pt;}
._36{width:172.426667pt;}
._52{width:184.654798pt;}
._53{width:192.771153pt;}
._4e{width:204.573264pt;}
._4d{width:229.172458pt;}
._32{width:242.851808pt;}
._11{width:274.170027pt;}
._15{width:344.782293pt;}
._12{width:350.155307pt;}
._34{width:393.469018pt;}
._30{width:400.018114pt;}
._14{width:612.433067pt;}
._10{width:640.355627pt;}
._13{width:665.893547pt;}
._56{width:1140.268885pt;}
.fs1c{font-size:10.971708pt;}
.fs1f{font-size:14.106854pt;}
.fs1b{font-size:16.881688pt;}
.fs1a{font-size:21.705523pt;}
.fs20{font-size:22.891238pt;}
.fs1d{font-size:23.744487pt;}
.fs1e{font-size:28.940408pt;}
.fs15{font-size:31.810524pt;}
.fs24{font-size:31.863917pt;}
.fs34{font-size:32.799639pt;}
.fs2e{font-size:33.993901pt;}
.fs2c{font-size:39.230370pt;}
.fs3b{font-size:39.836533pt;}
.fs18{font-size:40.900324pt;}
.fsb{font-size:42.032828pt;}
.fs22{font-size:42.863623pt;}
.fsc{font-size:46.197195pt;}
.fs7{font-size:46.972193pt;}
.fs14{font-size:48.945464pt;}
.fs32{font-size:49.200934pt;}
.fs2a{font-size:49.920000pt;}
.fs29{font-size:50.048000pt;}
.fs2b{font-size:52.169526pt;}
.fs2d{font-size:52.306638pt;}
.fs26{font-size:53.120000pt;}
.fs27{font-size:53.248000pt;}
.fs33{font-size:53.301258pt;}
.fs35{font-size:53.348839pt;}
.fs31{font-size:54.400000pt;}
.fs30{font-size:54.528000pt;}
.fs3c{font-size:54.776577pt;}
.fs23{font-size:55.113264pt;}
.fs8{font-size:55.437299pt;}
.fs9{font-size:55.525101pt;}
.fs25{font-size:58.880000pt;}
.fs36{font-size:59.008000pt;}
.fs38{font-size:59.756592pt;}
.fs2f{font-size:62.187996pt;}
.fs13{font-size:62.931321pt;}
.fs37{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs3a{font-size:64.637135pt;}
.fsa{font-size:64.674077pt;}
.fs39{font-size:64.736606pt;}
.fs21{font-size:65.955326pt;}
.fs19{font-size:66.091714pt;}
.fs16{font-size:68.555228pt;}
.fsf{font-size:70.400000pt;}
.fs10{font-size:70.528000pt;}
.fs5{font-size:74.880000pt;}
.fs28{font-size:75.008000pt;}
.fs17{font-size:83.907589pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:85.248000pt;}
.fs11{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs12{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs4{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fs3d{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:0.903225pt;}
.y60{bottom:1.204755pt;}
.y48{bottom:2.616994pt;}
.y76{bottom:3.016781pt;}
.y42{bottom:3.489671pt;}
.y99{bottom:4.428936pt;}
.y1c{bottom:5.044578pt;}
.ycd{bottom:5.912440pt;}
.yd5{bottom:7.138721pt;}
.y6c{bottom:8.803131pt;}
.y77{bottom:9.187892pt;}
.y12c{bottom:13.537088pt;}
.y24{bottom:14.060004pt;}
.y69{bottom:15.623462pt;}
.y12a{bottom:16.025654pt;}
.y6f{bottom:17.960444pt;}
.y97{bottom:19.331855pt;}
.y11b{bottom:19.760371pt;}
.y62{bottom:19.958264pt;}
.y13{bottom:21.035724pt;}
.yd4{bottom:21.287201pt;}
.ycc{bottom:21.287228pt;}
.y78{bottom:22.473268pt;}
.y68{bottom:24.305671pt;}
.y12f{bottom:24.741227pt;}
.y4e{bottom:25.517777pt;}
.y55{bottom:26.848000pt;}
.y7{bottom:27.904000pt;}
.y96{bottom:28.316699pt;}
.y61{bottom:28.640473pt;}
.y6d{bottom:28.731800pt;}
.y1e{bottom:29.165211pt;}
.y14{bottom:30.972662pt;}
.y12e{bottom:37.190266pt;}
.y3a{bottom:41.760000pt;}
.y4b{bottom:45.292196pt;}
.yd6{bottom:45.887177pt;}
.yce{bottom:45.887204pt;}
.y70{bottom:45.919268pt;}
.y12b{bottom:47.149501pt;}
.y11c{bottom:49.638069pt;}
.y129{bottom:49.639307pt;}
.y74{bottom:50.201766pt;}
.ydd{bottom:51.220248pt;}
.y51{bottom:52.067802pt;}
.y44{bottom:57.859231pt;}
.yfd{bottom:58.912000pt;}
.y122{bottom:59.135443pt;}
.y83{bottom:62.013333pt;}
.y71{bottom:64.959819pt;}
.y73{bottom:65.440000pt;}
.y9a{bottom:66.599002pt;}
.y94{bottom:66.931371pt;}
.y8a{bottom:68.320000pt;}
.y125{bottom:69.557776pt;}
.y4a{bottom:70.464724pt;}
.yd7{bottom:70.487153pt;}
.ycf{bottom:70.487180pt;}
.yfc{bottom:78.112000pt;}
.y11d{bottom:79.515768pt;}
.y1d{bottom:82.498291pt;}
.y43{bottom:83.031760pt;}
.y4f{bottom:83.296595pt;}
.y75{bottom:88.320751pt;}
.y15{bottom:88.784524pt;}
.y6e{bottom:88.932371pt;}
.y12{bottom:90.080000pt;}
.y37{bottom:93.088000pt;}
.y124{bottom:93.210953pt;}
.yd8{bottom:95.087127pt;}
.yd0{bottom:95.087155pt;}
.yfb{bottom:97.312000pt;}
.y8f{bottom:97.819839pt;}
.y91{bottom:103.083247pt;}
.y11e{bottom:109.393466pt;}
.y106{bottom:110.559991pt;}
.y6b{bottom:111.261927pt;}
.y5e{bottom:112.027653pt;}
.y101{bottom:112.992000pt;}
.y126{bottom:115.619227pt;}
.yfa{bottom:116.512000pt;}
.yd9{bottom:118.664153pt;}
.yd1{bottom:118.664181pt;}
.y36{bottom:121.920000pt;}
.y72{bottom:123.070345pt;}
.ydf{bottom:127.040000pt;}
.y95{bottom:128.708307pt;}
.y90{bottom:131.023989pt;}
.y8b{bottom:132.260835pt;}
.y52{bottom:133.125965pt;}
.ya7{bottom:133.184000pt;}
.y8e{bottom:134.113380pt;}
.yf9{bottom:135.706667pt;}
.y127{bottom:136.777617pt;}
.y67{bottom:137.673340pt;}
.y11f{bottom:138.022526pt;}
.y5d{bottom:142.156125pt;}
.yda{bottom:143.264128pt;}
.yd2{bottom:143.264156pt;}
.y100{bottom:143.386667pt;}
.y6{bottom:144.613333pt;}
.y143{bottom:144.800000pt;}
.y5a{bottom:144.956737pt;}
.y16{bottom:146.594076pt;}
.y6a{bottom:149.062687pt;}
.y35{bottom:150.720000pt;}
.y5b{bottom:151.793978pt;}
.yf8{bottom:154.906667pt;}
.y5c{bottom:158.248356pt;}
.y128{bottom:159.185891pt;}
.ya6{bottom:161.026667pt;}
.y64{bottom:163.234609pt;}
.y11{bottom:163.866667pt;}
.ya5{bottom:164.866667pt;}
.ydb{bottom:167.864102pt;}
.yd3{bottom:167.864130pt;}
.y120{bottom:167.900224pt;}
.y5{bottom:169.573333pt;}
.yf7{bottom:174.146667pt;}
.y63{bottom:175.612787pt;}
.y59{bottom:175.772552pt;}
.y9d{bottom:178.626667pt;}
.y12d{bottom:181.594165pt;}
.y142{bottom:182.906667pt;}
.y13b{bottom:183.840000pt;}
.y53{bottom:188.339459pt;}
.y34{bottom:192.960000pt;}
.yf6{bottom:193.346667pt;}
.yb4{bottom:193.599946pt;}
.ya4{bottom:194.146667pt;}
.y104{bottom:195.040000pt;}
.y4{bottom:195.173333pt;}
.ye4{bottom:197.440000pt;}
.y121{bottom:197.777922pt;}
.ya3{bottom:197.986667pt;}
.y17{bottom:204.409403pt;}
.y9c{bottom:207.453333pt;}
.y123{bottom:207.861645pt;}
.y10{bottom:208.706667pt;}
.y13a{bottom:209.466667pt;}
.yc1{bottom:209.889052pt;}
.yb6{bottom:209.889082pt;}
.yff{bottom:210.906667pt;}
.yf5{bottom:212.546667pt;}
.y88{bottom:215.133333pt;}
.y93{bottom:216.813181pt;}
.y3{bottom:220.773333pt;}
.y141{bottom:220.986667pt;}
.yc0{bottom:225.264043pt;}
.yb5{bottom:225.264070pt;}
.y92{bottom:229.099915pt;}
.y102{bottom:229.213333pt;}
.ya2{bottom:229.600000pt;}
.yf4{bottom:231.746667pt;}
.ya1{bottom:233.440000pt;}
.y8d{bottom:235.409466pt;}
.y9b{bottom:236.253333pt;}
.y87{bottom:236.986667pt;}
.y33{bottom:237.146667pt;}
.yfe{bottom:239.746667pt;}
.y139{bottom:243.066667pt;}
.y103{bottom:245.733333pt;}
.y2{bottom:246.400000pt;}
.y8c{bottom:247.178577pt;}
.y105{bottom:248.386667pt;}
.y112{bottom:248.818984pt;}
.y108{bottom:248.818988pt;}
.yc2{bottom:249.864019pt;}
.yb7{bottom:249.864046pt;}
.ya9{bottom:249.893333pt;}
.yf3{bottom:250.946667pt;}
.y98{bottom:252.334745pt;}
.yf{bottom:253.506667pt;}
.yc8{bottom:255.706514pt;}
.ydc{bottom:256.598291pt;}
.y50{bottom:257.834866pt;}
.y86{bottom:258.853333pt;}
.y140{bottom:259.066667pt;}
.y18{bottom:262.224730pt;}
.ya0{bottom:264.573333pt;}
.y32{bottom:265.946667pt;}
.y111{bottom:267.492547pt;}
.y107{bottom:267.492551pt;}
.y82{bottom:268.000000pt;}
.y9f{bottom:268.413333pt;}
.y138{bottom:268.666667pt;}
.yf2{bottom:270.146667pt;}
.yc3{bottom:274.463994pt;}
.yb8{bottom:274.464022pt;}
.y85{bottom:280.706667pt;}
.y9e{bottom:284.346667pt;}
.yf1{bottom:289.346667pt;}
.y31{bottom:294.746667pt;}
.y13f{bottom:297.146667pt;}
.y113{bottom:297.370245pt;}
.y109{bottom:297.370250pt;}
.ye{bottom:298.306667pt;}
.yc4{bottom:299.063969pt;}
.yb9{bottom:299.063997pt;}
.y137{bottom:302.266667pt;}
.y84{bottom:302.560000pt;}
.yab{bottom:307.586667pt;}
.y26{bottom:307.924940pt;}
.y119{bottom:308.113768pt;}
.y10f{bottom:308.113772pt;}
.yf0{bottom:308.573333pt;}
.yaa{bottom:311.426667pt;}
.y19{bottom:320.040057pt;}
.y25{bottom:321.783988pt;}
.y4d{bottom:322.584202pt;}
.yc5{bottom:323.663944pt;}
.yba{bottom:323.663971pt;}
.y81{bottom:324.413333pt;}
.y40{bottom:324.795539pt;}
.y13e{bottom:326.146667pt;}
.y114{bottom:327.247943pt;}
.y10a{bottom:327.247948pt;}
.yef{bottom:327.773333pt;}
.y136{bottom:335.906667pt;}
.y30{bottom:336.986667pt;}
.yd{bottom:343.133333pt;}
.yb1{bottom:343.266667pt;}
.y27{bottom:344.709162pt;}
.y80{bottom:346.240000pt;}
.yee{bottom:346.973333pt;}
.yc6{bottom:348.263919pt;}
.ybb{bottom:348.263946pt;}
.y54{bottom:356.811849pt;}
.y115{bottom:357.125642pt;}
.y10b{bottom:357.125646pt;}
.y135{bottom:361.506667pt;}
.yed{bottom:366.173333pt;}
.yca{bottom:366.303898pt;}
.ybd{bottom:367.728673pt;}
.y7f{bottom:368.093333pt;}
.ya8{bottom:368.826667pt;}
.y23{bottom:371.341632pt;}
.yc7{bottom:372.863893pt;}
.ybc{bottom:372.863920pt;}
.ye3{bottom:376.480000pt;}
.y1a{bottom:377.843835pt;}
.y89{bottom:380.506667pt;}
.ybf{bottom:380.746161pt;}
.ybe{bottom:381.873656pt;}
.yc9{bottom:381.945382pt;}
.y79{bottom:382.146667pt;}
.ycb{bottom:382.201621pt;}
.yec{bottom:385.373333pt;}
.y116{bottom:387.003340pt;}
.y10c{bottom:387.003345pt;}
.y22{bottom:387.706858pt;}
.yc{bottom:387.933333pt;}
.y7e{bottom:388.026667pt;}
.y29{bottom:391.541194pt;}
.y134{bottom:395.106667pt;}
.y49{bottom:399.150643pt;}
.y1{bottom:399.680000pt;}
.y21{bottom:404.083632pt;}
.yeb{bottom:404.573333pt;}
.y28{bottom:405.400242pt;}
.y3f{bottom:412.147709pt;}
.yb3{bottom:415.613333pt;}
.yb0{bottom:415.933333pt;}
.y117{bottom:416.881038pt;}
.y10d{bottom:416.881043pt;}
.y20{bottom:418.173664pt;}
.y58{bottom:418.239964pt;}
.y3c{bottom:420.267597pt;}
.yea{bottom:423.813333pt;}
.y133{bottom:428.706667pt;}
.yb2{bottom:431.613333pt;}
.yae{bottom:431.933333pt;}
.y4c{bottom:432.180846pt;}
.yb{bottom:432.733333pt;}
.y1f{bottom:434.758324pt;}
.y1b{bottom:435.659162pt;}
.y7d{bottom:436.386667pt;}
.y2f{bottom:438.400000pt;}
.y3d{bottom:440.090963pt;}
.y13d{bottom:440.960000pt;}
.ye9{bottom:443.013333pt;}
.y2e{bottom:443.360000pt;}
.y39{bottom:445.186667pt;}
.yaf{bottom:445.213333pt;}
.y118{bottom:446.758736pt;}
.y10e{bottom:446.758741pt;}
.yde{bottom:446.880000pt;}
.y11a{bottom:457.726341pt;}
.y110{bottom:457.726346pt;}
.y3e{bottom:458.804291pt;}
.y2c{bottom:459.386667pt;}
.y38{bottom:461.186667pt;}
.ye8{bottom:462.213333pt;}
.y132{bottom:462.306667pt;}
.y47{bottom:472.359061pt;}
.y2d{bottom:472.666667pt;}
.y46{bottom:473.261014pt;}
.y41{bottom:473.384905pt;}
.ye7{bottom:481.413333pt;}
.yad{bottom:482.213333pt;}
.y7c{bottom:485.093333pt;}
.y131{bottom:487.933333pt;}
.ye6{bottom:500.613333pt;}
.y45{bottom:509.149347pt;}
.y3b{bottom:509.612592pt;}
.y2b{bottom:509.626667pt;}
.y7b{bottom:513.920000pt;}
.ye5{bottom:519.813333pt;}
.y13c{bottom:520.800000pt;}
.yac{bottom:520.933333pt;}
.ye2{bottom:538.693333pt;}
.ya{bottom:541.306667pt;}
.y2a{bottom:548.386667pt;}
.y7a{bottom:556.160000pt;}
.ye0{bottom:556.320000pt;}
.y130{bottom:559.066667pt;}
.y65{bottom:566.747961pt;}
.y5f{bottom:567.100663pt;}
.ye1{bottom:573.920000pt;}
.y9{bottom:630.880000pt;}
.y57{bottom:637.280000pt;}
.y8{bottom:658.240000pt;}
.y56{bottom:663.200000pt;}
.h2d{height:6.631457pt;}
.h2a{height:7.235322pt;}
.h29{height:11.721562pt;}
.h28{height:14.253874pt;}
.h2f{height:15.070925pt;}
.h2e{height:15.894209pt;}
.h2b{height:16.486650pt;}
.h27{height:17.607073pt;}
.h22{height:19.191487pt;}
.h1f{height:20.939075pt;}
.h34{height:21.579713pt;}
.h41{height:22.142390pt;}
.h26{height:22.638182pt;}
.h2c{height:30.183941pt;}
.h4f{height:33.055886pt;}
.h1e{height:33.984595pt;}
.h32{height:35.608989pt;}
.h35{height:37.325243pt;}
.h50{height:37.565881pt;}
.he{height:38.099152pt;}
.h33{height:38.267120pt;}
.h5e{height:40.147756pt;}
.h3e{height:40.916050pt;}
.h3a{height:41.274938pt;}
.h1d{height:41.361544pt;}
.h42{height:43.179361pt;}
.h24{height:43.695478pt;}
.h31{height:44.667987pt;}
.h23{height:45.889852pt;}
.h20{height:47.600358pt;}
.h37{height:48.558750pt;}
.h56{height:48.664313pt;}
.ha{height:48.990529pt;}
.h4c{height:49.585316pt;}
.h14{height:49.671875pt;}
.h12{height:49.762187pt;}
.h1c{height:51.048590pt;}
.h58{height:52.781250pt;}
.h48{height:52.832812pt;}
.h4{height:52.886812pt;}
.h45{height:52.923125pt;}
.hd{height:53.337166pt;}
.h51{height:53.717674pt;}
.h52{height:53.765626pt;}
.h3d{height:54.411186pt;}
.h3f{height:54.554188pt;}
.h40{height:54.645726pt;}
.h5f{height:55.204519pt;}
.h4d{height:55.685672pt;}
.hb{height:57.819371pt;}
.hc{height:57.910945pt;}
.h59{height:60.057813pt;}
.h5b{height:60.223440pt;}
.h6{height:61.754062pt;}
.h38{height:61.859625pt;}
.h3b{height:63.569375pt;}
.h5d{height:65.142113pt;}
.h5c{height:65.242361pt;}
.h1b{height:65.635401pt;}
.h54{height:67.495851pt;}
.h13{height:67.734375pt;}
.h19{height:67.824688pt;}
.h47{height:68.192812pt;}
.h44{height:68.283125pt;}
.h4e{height:69.094849pt;}
.h53{height:71.062847pt;}
.h62{height:73.271250pt;}
.h36{height:79.171875pt;}
.h43{height:79.277438pt;}
.h46{height:81.353125pt;}
.h60{height:84.078542pt;}
.h16{height:86.062500pt;}
.h17{height:86.177250pt;}
.h21{height:87.512993pt;}
.h49{height:87.662813pt;}
.h15{height:88.144687pt;}
.h3{height:88.777500pt;}
.h2{height:88.911000pt;}
.h30{height:96.645632pt;}
.h4a{height:103.022813pt;}
.h10{height:105.562500pt;}
.hf{height:105.668063pt;}
.h39{height:121.600000pt;}
.h5{height:122.980312pt;}
.h1{height:133.500000pt;}
.h7{height:133.683750pt;}
.h8{height:133.798500pt;}
.h18{height:140.694375pt;}
.h11{height:140.784687pt;}
.h25{height:184.316104pt;}
.h61{height:193.707188pt;}
.h55{height:246.560000pt;}
.h3c{height:277.756471pt;}
.h57{height:343.520000pt;}
.h4b{height:406.719639pt;}
.h9{height:447.531746pt;}
.h5a{height:473.910100pt;}
.h1a{height:534.391799pt;}
.h0{height:720.000000pt;}
.w8{width:3.869744pt;}
.w7{width:5.745220pt;}
.w5{width:11.209372pt;}
.wd{width:15.404359pt;}
.w4{width:16.653515pt;}
.w10{width:57.440000pt;}
.wf{width:68.800000pt;}
.wb{width:110.880000pt;}
.wa{width:118.067413pt;}
.w9{width:343.509996pt;}
.w6{width:353.281440pt;}
.wc{width:372.646323pt;}
.we{width:499.343134pt;}
.w2{width:514.383575pt;}
.w11{width:611.663630pt;}
.w3{width:1024.996588pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6a{left:1.400343pt;}
.x57{left:2.998192pt;}
.x43{left:7.813873pt;}
.x92{left:9.466667pt;}
.x44{left:12.189091pt;}
.x8f{left:13.157360pt;}
.x12{left:14.856197pt;}
.xa4{left:15.943874pt;}
.x86{left:20.747070pt;}
.x2a{left:22.670464pt;}
.x10{left:23.746975pt;}
.x4d{left:25.317429pt;}
.x54{left:27.069166pt;}
.xa3{left:28.186092pt;}
.x85{left:29.282676pt;}
.x6f{left:30.719981pt;}
.xf{left:32.967437pt;}
.x2b{left:35.364332pt;}
.x83{left:37.485886pt;}
.x88{left:38.920100pt;}
.xaa{left:41.170425pt;}
.xe{left:42.593910pt;}
.x13{left:44.887744pt;}
.xa2{left:46.356147pt;}
.x45{left:49.496184pt;}
.x46{left:52.420349pt;}
.xa{left:53.791981pt;}
.x56{left:55.864049pt;}
.x3b{left:57.599995pt;}
.xa5{left:61.895994pt;}
.x9f{left:63.295981pt;}
.x48{left:66.355590pt;}
.x84{left:69.858602pt;}
.x52{left:71.411027pt;}
.x34{left:73.453721pt;}
.x87{left:76.029459pt;}
.x19{left:78.576880pt;}
.x50{left:83.033169pt;}
.x18{left:84.100358pt;}
.x75{left:86.431981pt;}
.x5b{left:93.055981pt;}
.x76{left:98.431981pt;}
.x5d{left:99.453333pt;}
.x1f{left:100.799981pt;}
.xb3{left:102.943981pt;}
.x17{left:104.873321pt;}
.x47{left:114.563080pt;}
.x63{left:119.502026pt;}
.x61{left:121.675771pt;}
.x23{left:128.160000pt;}
.x1a{left:130.735879pt;}
.x67{left:132.441289pt;}
.x72{left:139.039981pt;}
.x40{left:141.289921pt;}
.x2c{left:143.603820pt;}
.xb{left:144.639981pt;}
.x41{left:146.249973pt;}
.x70{left:148.346648pt;}
.x1b{left:150.719981pt;}
.x2d{left:152.087731pt;}
.x60{left:159.808822pt;}
.x3c{left:161.726285pt;}
.x4f{left:163.473036pt;}
.x20{left:165.533314pt;}
.x3e{left:167.082783pt;}
.x66{left:172.671994pt;}
.x3f{left:175.443927pt;}
.x4c{left:177.005867pt;}
.x4e{left:178.743676pt;}
.x3d{left:180.871964pt;}
.x2f{left:192.518195pt;}
.x65{left:205.908661pt;}
.x39{left:207.185590pt;}
.x71{left:209.306648pt;}
.x68{left:211.370220pt;}
.x37{left:225.519832pt;}
.x74{left:229.626648pt;}
.x73{left:237.306648pt;}
.x11{left:240.673436pt;}
.x42{left:242.135346pt;}
.x51{left:243.295880pt;}
.x21{left:260.573314pt;}
.x90{left:265.403971pt;}
.x5c{left:267.840000pt;}
.x8b{left:272.995714pt;}
.x1{left:275.546648pt;}
.x62{left:280.484667pt;}
.x4a{left:281.837625pt;}
.x4b{left:285.736508pt;}
.x49{left:287.402778pt;}
.x89{left:289.738634pt;}
.x2e{left:293.427618pt;}
.x9d{left:296.959981pt;}
.x9e{left:298.239981pt;}
.x8c{left:300.274758pt;}
.x9{left:315.133314pt;}
.xa8{left:321.574288pt;}
.xab{left:325.328154pt;}
.x3a{left:326.653314pt;}
.xb5{left:331.813314pt;}
.x2{left:333.213314pt;}
.x5f{left:335.773314pt;}
.x6b{left:339.262923pt;}
.xac{left:341.449744pt;}
.x64{left:342.632236pt;}
.xa6{left:344.681501pt;}
.x9c{left:346.653314pt;}
.x8a{left:349.077499pt;}
.x4{left:353.693314pt;}
.xb4{left:360.133314pt;}
.xa9{left:362.754565pt;}
.x1c{left:374.173314pt;}
.x8e{left:375.966722pt;}
.x22{left:388.413314pt;}
.xae{left:391.144547pt;}
.xc{left:394.173314pt;}
.x8d{left:395.469312pt;}
.x27{left:409.925990pt;}
.xb2{left:413.373314pt;}
.x82{left:415.839964pt;}
.x5e{left:420.186648pt;}
.xb0{left:422.579799pt;}
.x28{left:424.316641pt;}
.x8{left:428.253314pt;}
.x1e{left:430.973314pt;}
.x69{left:434.450443pt;}
.x1d{left:440.413314pt;}
.xa0{left:448.186648pt;}
.xa7{left:457.035482pt;}
.x15{left:465.533963pt;}
.x16{left:467.523575pt;}
.x24{left:469.218239pt;}
.x36{left:474.286100pt;}
.x25{left:484.759104pt;}
.x3{left:497.733314pt;}
.x14{left:506.506039pt;}
.x26{left:509.017382pt;}
.x33{left:513.549054pt;}
.x35{left:518.590970pt;}
.x53{left:523.199964pt;}
.x5{left:525.093314pt;}
.xaf{left:534.983498pt;}
.x59{left:553.533314pt;}
.xad{left:567.562293pt;}
.x6{left:572.293314pt;}
.x55{left:636.744087pt;}
.x6e{left:641.759981pt;}
.xa1{left:648.959928pt;}
.x29{left:663.554430pt;}
.x38{left:705.876988pt;}
.xd{left:731.199928pt;}
.x7b{left:757.373314pt;}
.x77{left:758.559981pt;}
.x80{left:771.133314pt;}
.x31{left:817.698572pt;}
.x32{left:829.010453pt;}
.x30{left:833.844813pt;}
.x6c{left:867.839981pt;}
.x81{left:871.013314pt;}
.x6d{left:883.679981pt;}
.x5a{left:908.546648pt;}
.x91{left:917.760000pt;}
.x93{left:927.706648pt;}
.x9b{left:944.026648pt;}
.x9a{left:948.186648pt;}
.x78{left:972.479981pt;}
.x7c{left:980.866648pt;}
.x58{left:995.453314pt;}
.x7f{left:1000.666648pt;}
.x95{left:1003.679981pt;}
.x94{left:1013.466648pt;}
.x7e{left:1041.666648pt;}
.x7d{left:1047.266648pt;}
.x79{left:1048.186648pt;}
.x96{left:1066.240000pt;}
.x97{left:1077.119981pt;}
.x98{left:1091.199981pt;}
.x7a{left:1113.146648pt;}
.x99{left:1139.746648pt;}
.xb1{left:1166.079981pt;}
.x7{left:1174.239981pt;}
}




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