
    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_f27effbe48a43f7939f487e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0c5b10059522d5d79e339362.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.076000;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_098f717954a6d9e0f5c207bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d04cd3c9688192f9cef2c95f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_221131afc0c3b03c3a5a332b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107000;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_0c5b10059522d5d79e339362.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_221131afc0c3b03c3a5a332b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107000;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_33485da68399a19ff64b49f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936000;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_c2f5d254e29560e00c533fae.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_33485da68399a19ff64b49f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_0c5b10059522d5d79e339362.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.076000;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_f27effbe48a43f7939f487e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_221131afc0c3b03c3a5a332b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.107000;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_098f717954a6d9e0f5c207bd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.m3{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);}
.v2{vertical-align:-22.009453px;}
.v3{vertical-align:-18.973666px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.855520px;}
.v1{vertical-align:22.009453px;}
.ls48{letter-spacing:-0.853815px;}
.ls41{letter-spacing:-0.792000px;}
.ls6d{letter-spacing:-0.717120px;}
.ls23{letter-spacing:-0.589680px;}
.ls21{letter-spacing:-0.540000px;}
.ls72{letter-spacing:-0.537840px;}
.ls20{letter-spacing:-0.432000px;}
.ls4c{letter-spacing:-0.418320px;}
.ls5c{letter-spacing:-0.397440px;}
.lsd{letter-spacing:-0.383040px;}
.ls46{letter-spacing:-0.377955px;}
.ls4a{letter-spacing:-0.358560px;}
.ls2a{letter-spacing:-0.336960px;}
.ls63{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.324000px;}
.ls3a{letter-spacing:-0.314963px;}
.ls2e{letter-spacing:-0.298800px;}
.ls40{letter-spacing:-0.287280px;}
.ls35{letter-spacing:-0.279292px;}
.ls22{letter-spacing:-0.270000px;}
.ls51{letter-spacing:-0.265631px;}
.lse{letter-spacing:-0.264960px;}
.ls4{letter-spacing:-0.252720px;}
.ls52{letter-spacing:-0.227684px;}
.lsc{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.191520px;}
.ls3b{letter-spacing:-0.188978px;}
.ls34{letter-spacing:-0.179280px;}
.ls10{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.132480px;}
.ls30{letter-spacing:-0.125985px;}
.ls2f{letter-spacing:-0.119520px;}
.ls47{letter-spacing:-0.113842px;}
.ls1b{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.095760px;}
.lsb{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.066240px;}
.ls39{letter-spacing:-0.062993px;}
.ls2d{letter-spacing:-0.059760px;}
.ls53{letter-spacing:-0.056921px;}
.ls2{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.047520px;}
.ls1e{letter-spacing:0.054000px;}
.ls44{letter-spacing:0.056921px;}
.ls45{letter-spacing:0.059520px;}
.ls3e{letter-spacing:0.059760px;}
.ls3d{letter-spacing:0.062993px;}
.ls36{letter-spacing:0.066240px;}
.ls1d{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.119520px;}
.ls38{letter-spacing:0.125985px;}
.ls29{letter-spacing:0.179280px;}
.ls5d{letter-spacing:0.198720px;}
.ls1f{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.239040px;}
.ls57{letter-spacing:0.252000px;}
.ls26{letter-spacing:0.252720px;}
.ls3c{letter-spacing:0.263520px;}
.ls4e{letter-spacing:0.264960px;}
.ls4f{letter-spacing:0.265631px;}
.ls3{letter-spacing:0.270000px;}
.ls5a{letter-spacing:0.286848px;}
.ls6{letter-spacing:0.287280px;}
.ls3f{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.289766px;}
.ls27{letter-spacing:0.290880px;}
.ls28{letter-spacing:0.298800px;}
.ls31{letter-spacing:0.314963px;}
.ls1a{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.336960px;}
.ls6c{letter-spacing:0.340160px;}
.ls49{letter-spacing:0.341526px;}
.ls4b{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls56{letter-spacing:0.376438px;}
.ls4d{letter-spacing:0.377955px;}
.ls14{letter-spacing:0.378000px;}
.ls69{letter-spacing:0.398447px;}
.ls37{letter-spacing:0.408240px;}
.ls9{letter-spacing:0.574560px;}
.ls19{letter-spacing:0.648000px;}
.ls6a{letter-spacing:1.070874px;}
.ls55{letter-spacing:1.733040px;}
.ls6f{letter-spacing:2.456136px;}
.ls6e{letter-spacing:3.167280px;}
.ls6b{letter-spacing:5.318640px;}
.ls43{letter-spacing:6.629652px;}
.ls58{letter-spacing:6.752880px;}
.ls42{letter-spacing:7.602115px;}
.ls59{letter-spacing:8.187120px;}
.ls62{letter-spacing:8.361062px;}
.ls60{letter-spacing:8.629982px;}
.ls71{letter-spacing:10.398240px;}
.ls50{letter-spacing:11.832480px;}
.ls32{letter-spacing:13.159440px;}
.ls66{letter-spacing:15.418080px;}
.ls5f{letter-spacing:16.852320px;}
.ls5e{letter-spacing:17.569440px;}
.ls73{letter-spacing:19.720800px;}
.ls68{letter-spacing:24.740640px;}
.ls74{letter-spacing:26.945784px;}
.ls54{letter-spacing:26.951760px;}
.ls70{letter-spacing:34.840080px;}
.ls65{letter-spacing:37.200600px;}
.ls64{letter-spacing:37.708560px;}
.ls67{letter-spacing:43.505280px;}
.ls17{letter-spacing:497.610000px;}
.ls11{letter-spacing:549.234000px;}
.ls15{letter-spacing:553.554000px;}
.ls18{letter-spacing:587.574000px;}
.ls13{letter-spacing:646.434000px;}
.ls12{letter-spacing:683.154000px;}
.ls7{letter-spacing:843.984000px;}
.ls0{letter-spacing:845.553600px;}
.ls5b{letter-spacing:845.585280px;}
.ls75{letter-spacing:847.396800px;}
.ls16{letter-spacing:848.232000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-20.109600px;}
.ws45{word-spacing:-20.013840px;}
.ws25{word-spacing:-16.763760px;}
.ws26{word-spacing:-16.679520px;}
.ws1f{word-spacing:-16.426800px;}
.wsd2{word-spacing:-15.192000px;}
.ws6{word-spacing:-15.048000px;}
.ws46{word-spacing:-14.472000px;}
.wsc7{word-spacing:-14.425299px;}
.ws21{word-spacing:-13.910400px;}
.ws47{word-spacing:-13.711680px;}
.ws6e{word-spacing:-13.669388px;}
.ws8b{word-spacing:-13.480410px;}
.wsd3{word-spacing:-13.417418px;}
.ws8a{word-spacing:-13.354425px;}
.ws20{word-spacing:-13.314240px;}
.wsbd{word-spacing:-13.248000px;}
.ws94{word-spacing:-13.228440px;}
.ws2c{word-spacing:-12.967920px;}
.ws93{word-spacing:-12.848400px;}
.wsbe{word-spacing:-12.728880px;}
.ws37{word-spacing:-12.669120px;}
.ws4a{word-spacing:-12.609360px;}
.ws38{word-spacing:-12.549600px;}
.ws88{word-spacing:-12.489840px;}
.wsc2{word-spacing:-12.465699px;}
.ws89{word-spacing:-12.370320px;}
.ws4b{word-spacing:-12.310560px;}
.ws66{word-spacing:-12.250800px;}
.ws28{word-spacing:-12.191040px;}
.wsc1{word-spacing:-12.124173px;}
.ws27{word-spacing:-12.071520px;}
.ws29{word-spacing:-12.011760px;}
.ws7a{word-spacing:-12.010331px;}
.ws79{word-spacing:-11.953410px;}
.ws42{word-spacing:-11.892240px;}
.ws2a{word-spacing:-11.772720px;}
.wsd{word-spacing:-11.772000px;}
.ws10{word-spacing:-11.232000px;}
.ws48{word-spacing:-11.213437px;}
.ws14{word-spacing:-11.178000px;}
.wse{word-spacing:-11.124000px;}
.ws12{word-spacing:-11.016000px;}
.ws11{word-spacing:-10.908000px;}
.wsf{word-spacing:-10.476000px;}
.ws13{word-spacing:-10.368000px;}
.ws53{word-spacing:-2.868480px;}
.wsdf{word-spacing:-2.509920px;}
.wsad{word-spacing:-2.450160px;}
.ws6c{word-spacing:-2.151360px;}
.wse8{word-spacing:-1.792800px;}
.ws84{word-spacing:-1.733040px;}
.wse5{word-spacing:-1.553760px;}
.ws75{word-spacing:-1.434240px;}
.wsf9{word-spacing:-1.195200px;}
.wsa1{word-spacing:-1.024578px;}
.ws18{word-spacing:-0.972000px;}
.wse4{word-spacing:-0.956160px;}
.ws24{word-spacing:-0.728640px;}
.ws2f{word-spacing:-0.717120px;}
.ws7{word-spacing:-0.670320px;}
.wsf1{word-spacing:-0.597600px;}
.ws96{word-spacing:-0.596160px;}
.ws4{word-spacing:-0.540000px;}
.ws1{word-spacing:-0.450000px;}
.ws19{word-spacing:-0.432000px;}
.wsc5{word-spacing:-0.418320px;}
.wscc{word-spacing:-0.397440px;}
.ws15{word-spacing:-0.378000px;}
.ws6f{word-spacing:-0.331200px;}
.ws77{word-spacing:-0.314963px;}
.ws34{word-spacing:-0.298800px;}
.ws4e{word-spacing:-0.284605px;}
.ws16{word-spacing:-0.270000px;}
.wsb0{word-spacing:-0.264960px;}
.ws99{word-spacing:-0.252000px;}
.wsb3{word-spacing:-0.239040px;}
.ws1a{word-spacing:-0.216000px;}
.ws97{word-spacing:-0.179280px;}
.ws8{word-spacing:-0.072000px;}
.ws2e{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws2d{word-spacing:0.004920px;}
.ws30{word-spacing:0.059760px;}
.ws3e{word-spacing:0.062993px;}
.ws36{word-spacing:0.066240px;}
.ws9{word-spacing:0.072000px;}
.ws78{word-spacing:0.088544px;}
.ws1c{word-spacing:0.108000px;}
.wsa0{word-spacing:0.113842px;}
.ws44{word-spacing:0.119520px;}
.ws92{word-spacing:0.125985px;}
.wsaf{word-spacing:0.132480px;}
.wsc{word-spacing:0.144000px;}
.ws17{word-spacing:0.162000px;}
.ws2{word-spacing:0.168480px;}
.ws4d{word-spacing:0.170763px;}
.ws31{word-spacing:0.179280px;}
.ws3d{word-spacing:0.188978px;}
.ws41{word-spacing:0.239040px;}
.ws43{word-spacing:0.251970px;}
.ws3c{word-spacing:0.264960px;}
.wsc3{word-spacing:0.265631px;}
.ws1d{word-spacing:0.270000px;}
.ws7b{word-spacing:0.284605px;}
.ws3a{word-spacing:0.298800px;}
.ws35{word-spacing:0.314963px;}
.ws1e{word-spacing:0.324000px;}
.ws67{word-spacing:0.331200px;}
.ws80{word-spacing:0.358560px;}
.wsac{word-spacing:0.377955px;}
.ws1b{word-spacing:0.378000px;}
.ws22{word-spacing:0.397440px;}
.ws39{word-spacing:0.418320px;}
.ws3{word-spacing:0.421200px;}
.ws32{word-spacing:0.440948px;}
.ws23{word-spacing:0.463680px;}
.ws33{word-spacing:0.478080px;}
.ws40{word-spacing:0.503941px;}
.wsf3{word-spacing:0.537840px;}
.wsb{word-spacing:0.596160px;}
.ws87{word-spacing:0.597600px;}
.ws3b{word-spacing:0.628408px;}
.ws3f{word-spacing:0.629926px;}
.wsfb{word-spacing:0.657360px;}
.wsa7{word-spacing:0.662400px;}
.ws4c{word-spacing:0.692918px;}
.ws71{word-spacing:0.717120px;}
.ws2b{word-spacing:0.717528px;}
.ws95{word-spacing:0.728640px;}
.wsa{word-spacing:0.957600px;}
.wsd9{word-spacing:1.135440px;}
.wse1{word-spacing:1.196859px;}
.ws5c{word-spacing:1.434240px;}
.wseb{word-spacing:1.494000px;}
.ws8f{word-spacing:1.511822px;}
.wscf{word-spacing:1.733040px;}
.ws5b{word-spacing:1.792800px;}
.ws5f{word-spacing:1.852560px;}
.ws7d{word-spacing:2.151360px;}
.wsb7{word-spacing:2.509920px;}
.wsb6{word-spacing:2.569680px;}
.ws57{word-spacing:2.868480px;}
.wsec{word-spacing:3.525840px;}
.ws61{word-spacing:3.585600px;}
.ws9f{word-spacing:3.779554px;}
.ws6a{word-spacing:3.884400px;}
.ws54{word-spacing:3.944160px;}
.ws55{word-spacing:4.003920px;}
.wsbf{word-spacing:4.183200px;}
.ws59{word-spacing:4.302720px;}
.wsc9{word-spacing:4.721040px;}
.wsae{word-spacing:5.019840px;}
.wsd5{word-spacing:5.438160px;}
.ws8c{word-spacing:5.736960px;}
.ws49{word-spacing:6.030840px;}
.wsce{word-spacing:6.035760px;}
.wse2{word-spacing:6.215040px;}
.wsda{word-spacing:6.334560px;}
.ws4f{word-spacing:6.454080px;}
.wsc4{word-spacing:6.633360px;}
.wsd4{word-spacing:6.812640px;}
.ws8e{word-spacing:6.872400px;}
.wse3{word-spacing:6.932160px;}
.ws5e{word-spacing:7.171200px;}
.ws6d{word-spacing:7.888320px;}
.wsf0{word-spacing:7.948080px;}
.wsd6{word-spacing:8.127360px;}
.ws9e{word-spacing:8.315019px;}
.ws9a{word-spacing:8.485920px;}
.ws76{word-spacing:8.605440px;}
.ws51{word-spacing:8.665200px;}
.wsbb{word-spacing:8.964000px;}
.wsf5{word-spacing:9.143280px;}
.wsc8{word-spacing:9.262800px;}
.ws60{word-spacing:9.382320px;}
.ws5d{word-spacing:9.740880px;}
.wsd7{word-spacing:9.800640px;}
.wsed{word-spacing:9.860400px;}
.ws74{word-spacing:10.099440px;}
.wsd1{word-spacing:10.517760px;}
.wsa9{word-spacing:10.577520px;}
.wsb4{word-spacing:10.816560px;}
.wsa6{word-spacing:11.175120px;}
.wsd0{word-spacing:11.234880px;}
.ws5a{word-spacing:11.533680px;}
.wsdc{word-spacing:11.832480px;}
.wsa8{word-spacing:11.892240px;}
.wsdb{word-spacing:11.952000px;}
.ws50{word-spacing:12.250800px;}
.wsf6{word-spacing:12.430080px;}
.ws58{word-spacing:12.609360px;}
.ws65{word-spacing:12.848400px;}
.ws8d{word-spacing:12.967920px;}
.wsa4{word-spacing:13.386240px;}
.wse7{word-spacing:13.669388px;}
.ws52{word-spacing:13.685040px;}
.wscb{word-spacing:13.864320px;}
.wsa5{word-spacing:14.043600px;}
.wsca{word-spacing:14.103360px;}
.ws72{word-spacing:14.402160px;}
.wsc6{word-spacing:14.760720px;}
.ws73{word-spacing:14.820480px;}
.ws62{word-spacing:15.119280px;}
.ws85{word-spacing:15.836400px;}
.wse0{word-spacing:16.075440px;}
.ws98{word-spacing:16.254720px;}
.ws86{word-spacing:16.314480px;}
.ws9d{word-spacing:16.553520px;}
.wscd{word-spacing:16.971840px;}
.wsbc{word-spacing:17.270640px;}
.wsf2{word-spacing:17.987760px;}
.wsaa{word-spacing:18.346320px;}
.ws6b{word-spacing:18.704880px;}
.wsf7{word-spacing:18.884160px;}
.wsa2{word-spacing:19.003680px;}
.wsd8{word-spacing:19.063440px;}
.wsa3{word-spacing:19.123200px;}
.ws63{word-spacing:19.422000px;}
.ws7f{word-spacing:20.139120px;}
.ws9c{word-spacing:20.856240px;}
.wsf8{word-spacing:22.290480px;}
.wsb8{word-spacing:23.007600px;}
.ws90{word-spacing:23.784480px;}
.ws70{word-spacing:24.501600px;}
.ws81{word-spacing:25.218720px;}
.ws9b{word-spacing:25.577280px;}
.ws82{word-spacing:25.637040px;}
.wsfc{word-spacing:25.826954px;}
.wsab{word-spacing:25.935840px;}
.ws68{word-spacing:26.652960px;}
.wsea{word-spacing:26.712720px;}
.wsfa{word-spacing:27.131040px;}
.wse9{word-spacing:27.788400px;}
.wsb1{word-spacing:28.087200px;}
.ws64{word-spacing:28.804320px;}
.ws56{word-spacing:29.162880px;}
.ws7e{word-spacing:29.521440px;}
.wsde{word-spacing:30.238560px;}
.wsb2{word-spacing:30.955680px;}
.ws91{word-spacing:33.107040px;}
.ws83{word-spacing:33.824160px;}
.ws7c{word-spacing:34.541280px;}
.wsc0{word-spacing:35.258400px;}
.wse6{word-spacing:35.437680px;}
.ws69{word-spacing:36.692640px;}
.wsdd{word-spacing:38.126880px;}
.wsb5{word-spacing:38.903760px;}
.wsb9{word-spacing:43.206480px;}
.wsba{word-spacing:44.043120px;}
.wsee{word-spacing:44.640720px;}
.wsef{word-spacing:44.760240px;}
.wsf4{word-spacing:46.074960px;}
._9{margin-left:-7.727045px;}
._6{margin-left:-6.406132px;}
._c{margin-left:-2.733840px;}
._0{margin-left:-1.260000px;}
._1{width:1.019304px;}
._4{width:2.069712px;}
._a{width:11.658240px;}
._5{width:13.315200px;}
._d{width:17.286408px;}
._b{width:19.119816px;}
._e{width:21.154968px;}
._8{width:26.055360px;}
._7{width:27.370080px;}
._3{width:634.182696px;}
._2{width:752.658696px;}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(231,230,230);}
.fc3{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.911545px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:37.947332px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:56.920998px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:62.992571px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:69.823091px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.780000px;}
.y47{bottom:3.960000px;}
.y3d{bottom:4.140000px;}
.y3f{bottom:4.860000px;}
.yc{bottom:7.380000px;}
.y7{bottom:12.420000px;}
.y2{bottom:12.966480px;}
.y42{bottom:24.480000px;}
.ya5{bottom:26.646480px;}
.y1{bottom:33.120000px;}
.ya4{bottom:46.800000px;}
.y39{bottom:64.836000px;}
.y3a{bottom:66.240000px;}
.y9{bottom:67.860000px;}
.y23{bottom:87.660000px;}
.y62{bottom:89.100000px;}
.y1ee{bottom:89.820000px;}
.y38{bottom:91.471500px;}
.y7c{bottom:114.661440px;}
.y37{bottom:117.931500px;}
.y22{bottom:122.397840px;}
.y61{bottom:123.840000px;}
.y7b{bottom:136.620000px;}
.y12d{bottom:138.600000px;}
.y36{bottom:144.931500px;}
.y21{bottom:155.700000px;}
.y1d5{bottom:156.960000px;}
.y7a{bottom:158.760000px;}
.y60{bottom:158.763060px;}
.y12c{bottom:170.100000px;}
.y35{bottom:171.931500px;}
.yb{bottom:177.840000px;}
.y5f{bottom:178.200000px;}
.yc9{bottom:179.724780px;}
.y79{bottom:185.580000px;}
.y20{bottom:189.900000px;}
.y1d4{bottom:190.123560px;}
.y116{bottom:195.300000px;}
.y115{bottom:195.303060px;}
.y5e{bottom:198.180000px;}
.y34{bottom:199.107000px;}
.yc8{bottom:199.341000px;}
.y1d3{bottom:209.560500px;}
.ya3{bottom:211.517640px;}
.y1e0{bottom:214.740000px;}
.y114{bottom:214.746120px;}
.y166{bottom:215.100000px;}
.y12b{bottom:216.540000px;}
.yc7{bottom:218.777940px;}
.y94{bottom:221.760000px;}
.y1f{bottom:225.180000px;}
.y33{bottom:226.107000px;}
.y5d{bottom:226.634940px;}
.y78{bottom:227.880000px;}
.y1d2{bottom:229.535280px;}
.y19b{bottom:230.940000px;}
.y113{bottom:234.183060px;}
.yc6{bottom:238.214880px;}
.y105{bottom:238.860000px;}
.ya2{bottom:242.831880px;}
.y1b3{bottom:243.360000px;}
.y32{bottom:243.562500px;}
.y1df{bottom:246.243060px;}
.y5c{bottom:246.251160px;}
.y12a{bottom:248.040000px;}
.y165{bottom:248.294520px;}
.y1d1{bottom:249.151500px;}
.y112{bottom:253.620000px;}
.y1b9{bottom:256.500000px;}
.y93{bottom:256.685220px;}
.y1e{bottom:260.460000px;}
.y76{bottom:262.794240px;}
.y77{bottom:262.800000px;}
.y19a{bottom:264.075300px;}
.y1de{bottom:265.680000px;}
.y5b{bottom:266.225940px;}
.y129{bottom:267.480000px;}
.y164{bottom:267.731460px;}
.y1d0{bottom:269.126280px;}
.yc5{bottom:269.529120px;}
.y31{bottom:270.562500px;}
.y104{bottom:271.863000px;}
.ya1{bottom:274.325400px;}
.y1b2{bottom:276.303060px;}
.y92{bottom:276.660000px;}
.y111{bottom:285.151680px;}
.y5a{bottom:286.380000px;}
.y163{bottom:287.168400px;}
.y30{bottom:288.207000px;}
.y1cf{bottom:289.101060px;}
.yc4{bottom:289.145340px;}
.y1b8{bottom:289.692180px;}
.y75{bottom:291.240000px;}
.y103{bottom:291.479220px;}
.y199{bottom:295.568820px;}
.y1b1{bottom:295.740000px;}
.y1d{bottom:295.920000px;}
.y1dd{bottom:297.251820px;}
.y91{bottom:302.040000px;}
.y2f{bottom:305.662500px;}
.ya0{bottom:305.818920px;}
.y59{bottom:306.360000px;}
.y162{bottom:306.605340px;}
.yc3{bottom:308.582280px;}
.y1ce{bottom:308.717280px;}
.y1b7{bottom:309.129120px;}
.y102{bottom:310.916160px;}
.y128{bottom:313.920000px;}
.y198{bottom:315.005760px;}
.yeb{bottom:315.180000px;}
.y110{bottom:316.645200px;}
.y74{bottom:319.674240px;}
.y2e{bottom:323.118000px;}
.y9f{bottom:325.972980px;}
.y161{bottom:326.042280px;}
.y1b0{bottom:327.293820px;}
.yc2{bottom:328.019250px;}
.y1cd{bottom:328.154220px;}
.y1b6{bottom:328.566060px;}
.y101{bottom:330.353100px;}
.y1c{bottom:331.200000px;}
.y58{bottom:331.560000px;}
.y10f{bottom:336.082140px;}
.y181{bottom:339.899580px;}
.y2d{bottom:340.762500px;}
.y90{bottom:344.160000px;}
.y127{bottom:345.420000px;}
.y160{bottom:345.479220px;}
.y197{bottom:346.320000px;}
.yc1{bottom:347.456160px;}
.y73{bottom:348.120000px;}
.y1cc{bottom:348.129000px;}
.y1b5{bottom:348.182280px;}
.yea{bottom:348.303060px;}
.y100{bottom:349.790040px;}
.y16d{bottom:353.880000px;}
.y10e{bottom:355.519080px;}
.y9e{bottom:357.840000px;}
.y2c{bottom:358.218000px;}
.y1af{bottom:358.787340px;}
.y180{bottom:359.515800px;}
.y142{bottom:362.160000px;}
.y126{bottom:364.860000px;}
.y15f{bottom:364.916160px;}
.y1b{bottom:366.480000px;}
.yc0{bottom:366.893100px;}
.y1b4{bottom:367.619220px;}
.y14f{bottom:367.735680px;}
.ye9{bottom:367.740000px;}
.y1cb{bottom:368.103780px;}
.yff{bottom:369.226980px;}
.y56{bottom:373.860000px;}
.y72{bottom:374.040000px;}
.y10d{bottom:374.956020px;}
.y2b{bottom:375.673500px;}
.y196{bottom:377.883000px;}
.y1ae{bottom:378.224280px;}
.y17f{bottom:378.952740px;}
.y8f{bottom:379.089000px;}
.y141{bottom:379.800000px;}
.y9d{bottom:383.220000px;}
.y15e{bottom:384.353100px;}
.ybf{bottom:386.330100px;}
.y16c{bottom:387.056160px;}
.y1ca{bottom:387.720000px;}
.y1c9{bottom:387.769140px;}
.yfe{bottom:388.663920px;}
.y2a{bottom:393.129000px;}
.y10c{bottom:394.392960px;}
.y140{bottom:397.260000px;}
.y1ad{bottom:397.661220px;}
.y17e{bottom:398.389680px;}
.y8e{bottom:398.705220px;}
.ye8{bottom:399.268260px;}
.y14e{bottom:401.220000px;}
.y1a{bottom:401.940000px;}
.y15d{bottom:403.790040px;}
.ybe{bottom:405.766980px;}
.y16b{bottom:406.493100px;}
.y1c8{bottom:407.206080px;}
.yfd{bottom:408.100860px;}
.y55{bottom:408.789000px;}
.y195{bottom:409.376520px;}
.y125{bottom:411.300000px;}
.y10b{bottom:413.829900px;}
.y71{bottom:416.340000px;}
.y1ac{bottom:417.098160px;}
.y17d{bottom:417.826620px;}
.y8d{bottom:418.680000px;}
.y29{bottom:420.304500px;}
.y13f{bottom:422.826120px;}
.y15c{bottom:423.226980px;}
.ybd{bottom:425.203920px;}
.y9c{bottom:425.520000px;}
.y16a{bottom:425.930040px;}
.y1c7{bottom:427.180860px;}
.yfc{bottom:427.537800px;}
.y54{bottom:428.405220px;}
.y194{bottom:428.813460px;}
.ye7{bottom:430.761780px;}
.y10a{bottom:433.266840px;}
.yaa{bottom:435.240000px;}
.y19c{bottom:436.500000px;}
.y19{bottom:437.220000px;}
.y17c{bottom:437.263560px;}
.y8c{bottom:438.660000px;}
.y13e{bottom:442.263060px;}
.y124{bottom:442.800000px;}
.y15b{bottom:442.843200px;}
.ybc{bottom:444.640860px;}
.y169{bottom:445.366980px;}
.y1c6{bottom:446.617800px;}
.yfb{bottom:446.974740px;}
.y28{bottom:447.304500px;}
.y193{bottom:448.250400px;}
.y53{bottom:448.380000px;}
.y1ab{bottom:448.591680px;}
.ye6{bottom:450.198720px;}
.y146{bottom:450.540000px;}
.y70{bottom:451.260000px;}
.y109{bottom:452.703780px;}
.y1ed{bottom:453.283560px;}
.y17b{bottom:456.700500px;}
.y13d{bottom:461.700000px;}
.y15a{bottom:462.280140px;}
.ybb{bottom:464.077800px;}
.y168{bottom:464.803920px;}
.y1c5{bottom:466.054740px;}
.yfa{bottom:466.411680px;}
.y8b{bottom:467.283060px;}
.y192{bottom:467.687340px;}
.y1aa{bottom:468.028620px;}
.y52{bottom:468.360000px;}
.ye5{bottom:469.635660px;}
.ya9{bottom:470.700000px;}
.y108{bottom:472.320000px;}
.y107{bottom:472.363560px;}
.y18{bottom:472.680000px;}
.y27{bottom:474.304500px;}
.y17a{bottom:476.137440px;}
.y154{bottom:478.080000px;}
.y6f{bottom:479.700000px;}
.y159{bottom:481.717080px;}
.yba{bottom:483.694020px;}
.y167{bottom:484.240860px;}
.y1ec{bottom:484.597800px;}
.y1c4{bottom:485.491680px;}
.yf9{bottom:486.027900px;}
.y8a{bottom:486.720000px;}
.y191{bottom:487.124280px;}
.y1a9{bottom:487.465560px;}
.ye4{bottom:489.072600px;}
.y123{bottom:489.267900px;}
.yd8{bottom:490.140000px;}
.y26{bottom:491.949000px;}
.y179{bottom:495.574380px;}
.y51{bottom:496.803780px;}
.y1dc{bottom:501.123060px;}
.y158{bottom:501.154020px;}
.yb9{bottom:503.130900px;}
.y145{bottom:503.130960px;}
.y106{bottom:503.677800px;}
.y1eb{bottom:504.214020px;}
.y1c3{bottom:504.928620px;}
.yf8{bottom:505.464840px;}
.y89{bottom:506.700000px;}
.y1a8{bottom:506.902500px;}
.ya8{bottom:507.780000px;}
.y17{bottom:507.960000px;}
.y6e{bottom:508.140000px;}
.y13c{bottom:508.146120px;}
.y25{bottom:509.404500px;}
.y153{bottom:511.237440px;}
.y9b{bottom:512.460000px;}
.y178{bottom:515.011320px;}
.y50{bottom:516.420000px;}
.y190{bottom:518.617800px;}
.ye3{bottom:520.566120px;}
.y1db{bottom:520.579080px;}
.y122{bottom:520.582140px;}
.y157{bottom:520.590960px;}
.yb8{bottom:522.567900px;}
.yd7{bottom:523.114740px;}
.y1ea{bottom:523.650960px;}
.y6{bottom:523.980000px;}
.y1c2{bottom:524.544840px;}
.yf7{bottom:524.901780px;}
.y45{bottom:525.240000px;}
.y1a7{bottom:526.339440px;}
.y24{bottom:526.860000px;}
.y6d{bottom:527.580000px;}
.y13b{bottom:527.583060px;}
.y155{bottom:528.300000px;}
.y152{bottom:530.674380px;}
.y18a{bottom:531.000000px;}
.y88{bottom:535.149000px;}
.y4f{bottom:536.400000px;}
.y18f{bottom:538.054740px;}
.ye2{bottom:540.003060px;}
.y1da{bottom:540.016020px;}
.y156{bottom:540.027900px;}
.y121{bottom:540.198360px;}
.yb7{bottom:542.004840px;}
.yd6{bottom:542.730960px;}
.y1e9{bottom:543.087900px;}
.y16{bottom:543.240000px;}
.y1c1{bottom:543.981780px;}
.yf6{bottom:544.338720px;}
.y1a6{bottom:545.776380px;}
.y177{bottom:546.504840px;}
.y13a{bottom:547.020000px;}
.y9a{bottom:547.385220px;}
.y14d{bottom:550.111320px;}
.y87{bottom:554.765220px;}
.y8{bottom:556.020000px;}
.y6c{bottom:556.023060px;}
.y18e{bottom:557.491680px;}
.ye1{bottom:559.440000px;}
.y1d9{bottom:559.452960px;}
.ye0{bottom:559.464840px;}
.y120{bottom:559.635300px;}
.yb6{bottom:561.441780px;}
.yd5{bottom:562.167900px;}
.y44{bottom:562.500000px;}
.y1e8{bottom:562.524840px;}
.y1c0{bottom:563.418720px;}
.yf5{bottom:563.775660px;}
.y189{bottom:563.965560px;}
.y4e{bottom:564.849000px;}
.y1a5{bottom:565.392600px;}
.y176{bottom:565.941780px;}
.y99{bottom:567.360000px;}
.y151{bottom:569.548260px;}
.y86{bottom:574.740000px;}
.y6b{bottom:575.460000px;}
.y18d{bottom:576.928620px;}
.y138{bottom:578.514600px;}
.y139{bottom:578.520000px;}
.y1d8{bottom:578.889900px;}
.ydf{bottom:578.901780px;}
.y11f{bottom:579.072240px;}
.y15{bottom:580.488300px;}
.y144{bottom:580.878720px;}
.yb5{bottom:580.878750px;}
.yd4{bottom:581.604840px;}
.y1e7{bottom:581.961780px;}
.y1bf{bottom:582.855660px;}
.yf4{bottom:583.212600px;}
.y188{bottom:583.581780px;}
.ya{bottom:584.100000px;}
.y4d{bottom:584.285940px;}
.y1a4{bottom:584.829540px;}
.y175{bottom:585.378720px;}
.y150{bottom:588.985200px;}
.y14c{bottom:589.346100px;}
.y98{bottom:592.740000px;}
.y85{bottom:594.720000px;}
.y1d7{bottom:598.326840px;}
.yde{bottom:598.338720px;}
.y11e{bottom:598.509180px;}
.y43{bottom:599.940000px;}
.yb4{bottom:600.315600px;}
.y143{bottom:600.315660px;}
.yd3{bottom:601.041780px;}
.y1e6{bottom:601.398720px;}
.y1be{bottom:602.292600px;}
.yf3{bottom:602.649540px;}
.y187{bottom:603.018720px;}
.y6a{bottom:603.900000px;}
.y1a3{bottom:604.266480px;}
.y4c{bottom:604.440000px;}
.y174{bottom:604.815660px;}
.y18c{bottom:608.422140px;}
.y1d6{bottom:617.763780px;}
.ydd{bottom:617.775660px;}
.y11d{bottom:617.946120px;}
.yb3{bottom:619.752600px;}
.yd2{bottom:620.478720px;}
.y1e5{bottom:620.835660px;}
.y1bd{bottom:621.729540px;}
.yf2{bottom:622.086480px;}
.y186{bottom:622.455660px;}
.y84{bottom:623.169000px;}
.y14{bottom:623.700000px;}
.y4b{bottom:624.420000px;}
.y173{bottom:624.431880px;}
.y137{bottom:624.963060px;}
.y18b{bottom:627.859080px;}
.y14b{bottom:628.580880px;}
.y69{bottom:632.340000px;}
.y97{bottom:634.860000px;}
.y1a2{bottom:635.760000px;}
.y41{bottom:637.380000px;}
.y11c{bottom:637.383060px;}
.ydc{bottom:637.391880px;}
.yb2{bottom:639.189540px;}
.yd1{bottom:639.915660px;}
.y1e4{bottom:640.272600px;}
.y1bc{bottom:641.166480px;}
.y185{bottom:641.892600px;}
.y83{bottom:642.785220px;}
.y172{bottom:643.868820px;}
.y136{bottom:644.400000px;}
.y4a{bottom:649.620000px;}
.yf1{bottom:653.580000px;}
.y11b{bottom:656.826120px;}
.ydb{bottom:656.828820px;}
.yb1{bottom:658.626480px;}
.yd0{bottom:659.352600px;}
.y1e3{bottom:659.709540px;}
.y68{bottom:660.774960px;}
.y184{bottom:661.329540px;}
.y82{bottom:662.760000px;}
.y171{bottom:663.305760px;}
.y13{bottom:664.920000px;}
.y14a{bottom:667.815660px;}
.y96{bottom:669.965220px;}
.y1a1{bottom:671.040000px;}
.y1bb{bottom:672.660000px;}
.y135{bottom:675.900000px;}
.y134{bottom:675.906300px;}
.y11a{bottom:676.263060px;}
.yda{bottom:676.265760px;}
.ycf{bottom:678.789540px;}
.y1e2{bottom:679.146480px;}
.y183{bottom:680.766480px;}
.y81{bottom:682.740000px;}
.yf0{bottom:685.980000px;}
.y1a0{bottom:688.680000px;}
.y67{bottom:689.400000px;}
.y95{bottom:689.940000px;}
.yb0{bottom:690.120000px;}
.y49{bottom:692.460000px;}
.y170{bottom:694.620000px;}
.y40{bottom:695.160000px;}
.y119{bottom:695.700000px;}
.yce{bottom:698.226480px;}
.y12{bottom:700.200000px;}
.yef{bottom:703.620000px;}
.y19f{bottom:706.140000px;}
.y149{bottom:707.050440px;}
.y133{bottom:707.399820px;}
.yd9{bottom:707.580000px;}
.y1ba{bottom:708.120000px;}
.y1e1{bottom:710.640000px;}
.y80{bottom:711.183780px;}
.y182{bottom:712.260000px;}
.y66{bottom:715.140000px;}
.yee{bottom:721.080000px;}
.y19e{bottom:723.600000px;}
.yaf{bottom:725.580000px;}
.y118{bottom:727.200000px;}
.ycd{bottom:729.720000px;}
.y16f{bottom:730.080000px;}
.y7f{bottom:730.800000px;}
.y3e{bottom:732.600000px;}
.y48{bottom:735.300000px;}
.y11{bottom:735.660000px;}
.yae{bottom:743.040000px;}
.y148{bottom:746.285220px;}
.yed{bottom:746.640000px;}
.y16e{bottom:747.720000px;}
.y19d{bottom:749.163060px;}
.y65{bottom:750.060000px;}
.y7e{bottom:750.780000px;}
.y132{bottom:754.386120px;}
.y5{bottom:756.361440px;}
.y117{bottom:758.693700px;}
.ycc{bottom:765.180000px;}
.yad{bottom:768.600000px;}
.y3c{bottom:770.040000px;}
.y10{bottom:772.728300px;}
.y131{bottom:773.823060px;}
.y64{bottom:775.440000px;}
.y7d{bottom:775.980000px;}
.y46{bottom:778.140000px;}
.yec{bottom:778.503600px;}
.y147{bottom:785.520000px;}
.ye{bottom:789.655680px;}
.y4{bottom:789.663600px;}
.ya7{bottom:789.665040px;}
.ycb{bottom:790.740000px;}
.y130{bottom:793.260000px;}
.yac{bottom:800.462160px;}
.yf{bottom:815.940000px;}
.y3b{bottom:818.100000px;}
.y63{bottom:818.280000px;}
.yab{bottom:822.602850px;}
.yca{bottom:822.602880px;}
.yd{bottom:823.140000px;}
.y3{bottom:823.147920px;}
.ya6{bottom:823.149360px;}
.y12e{bottom:824.758740px;}
.y12f{bottom:824.760000px;}
.h1b{height:18.540000px;}
.h1a{height:18.541500px;}
.h18{height:18.718500px;}
.h16{height:18.720000px;}
.h15{height:20.338500px;}
.h11{height:20.340000px;}
.h13{height:20.520000px;}
.h9{height:29.700000px;}
.h21{height:29.884283px;}
.h4{height:37.981500px;}
.h14{height:40.860000px;}
.h1d{height:42.429600px;}
.h2{height:44.149219px;}
.he{height:46.224000px;}
.hd{height:47.844000px;}
.hf{height:51.154560px;}
.h22{height:51.154800px;}
.h1c{height:51.177600px;}
.h29{height:51.619680px;}
.h28{height:51.648480px;}
.h24{height:51.671520px;}
.h25{height:51.696000px;}
.h17{height:52.947360px;}
.h19{height:53.921641px;}
.h27{height:54.479467px;}
.h20{height:54.492369px;}
.h3{height:56.701440px;}
.h12{height:58.688640px;}
.h1f{height:58.688760px;}
.h23{height:59.742761px;}
.h1e{height:59.768566px;}
.hb{height:61.632000px;}
.hc{height:61.640640px;}
.h26{height:72.109440px;}
.h10{height:74.636640px;}
.h5{height:78.626953px;}
.h7{height:79.740000px;}
.ha{height:81.970560px;}
.h8{height:84.843360px;}
.h6{height:90.180000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w2{width:56.160000px;}
.w7{width:114.300000px;}
.w9{width:114.660000px;}
.wb{width:117.000000px;}
.w5{width:260.280000px;}
.w4{width:266.940000px;}
.wc{width:404.278500px;}
.wa{width:406.620000px;}
.w8{width:406.978500px;}
.w3{width:516.780000px;}
.w6{width:521.280000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x15{left:8.460000px;}
.x4{left:14.760000px;}
.x9{left:24.300000px;}
.x6{left:40.680000px;}
.x2{left:54.004320px;}
.x2a{left:86.061240px;}
.x8{left:92.340000px;}
.xa{left:98.648100px;}
.x5{left:102.240000px;}
.x18{left:107.100000px;}
.x7{left:113.040000px;}
.x2b{left:120.960000px;}
.x3d{left:125.280000px;}
.x2c{left:151.740000px;}
.xb{left:167.040000px;}
.x16{left:168.300000px;}
.x17{left:171.000000px;}
.xe{left:177.840000px;}
.xf{left:187.378560px;}
.x25{left:209.520000px;}
.xd{left:226.445040px;}
.x32{left:228.420000px;}
.x3e{left:239.220000px;}
.x14{left:241.920000px;}
.x39{left:244.080000px;}
.x2d{left:247.680000px;}
.x13{left:251.100000px;}
.x36{left:260.640000px;}
.x10{left:272.880000px;}
.x23{left:281.520000px;}
.x1d{left:293.220000px;}
.x3{left:299.160000px;}
.x11{left:309.244500px;}
.xc{left:314.640000px;}
.x37{left:334.440000px;}
.x34{left:346.680000px;}
.x38{left:358.560000px;}
.x2e{left:364.860000px;}
.x29{left:369.000000px;}
.x24{left:376.920000px;}
.x31{left:380.700000px;}
.x3b{left:384.840000px;}
.x30{left:391.860000px;}
.x28{left:392.940000px;}
.x21{left:395.100000px;}
.x1e{left:399.780000px;}
.x35{left:401.760000px;}
.x1a{left:433.800000px;}
.x20{left:439.560000px;}
.x19{left:444.960000px;}
.x1f{left:458.100000px;}
.x27{left:479.520000px;}
.x33{left:480.960000px;}
.x3c{left:483.840000px;}
.x22{left:488.880000px;}
.x1b{left:501.480000px;}
.x1c{left:505.800000px;}
.x3a{left:519.300000px;}
.x26{left:559.800000px;}
.x12{left:567.540000px;}
.x1{left:575.280000px;}
.x2f{left:696.420000px;}
@media print{
.v2{vertical-align:-19.563958pt;}
.v3{vertical-align:-16.865481pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.538240pt;}
.v1{vertical-align:19.563958pt;}
.ls48{letter-spacing:-0.758947pt;}
.ls41{letter-spacing:-0.704000pt;}
.ls6d{letter-spacing:-0.637440pt;}
.ls23{letter-spacing:-0.524160pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls72{letter-spacing:-0.478080pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls4c{letter-spacing:-0.371840pt;}
.ls5c{letter-spacing:-0.353280pt;}
.lsd{letter-spacing:-0.340480pt;}
.ls46{letter-spacing:-0.335960pt;}
.ls4a{letter-spacing:-0.318720pt;}
.ls2a{letter-spacing:-0.299520pt;}
.ls63{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls3a{letter-spacing:-0.279967pt;}
.ls2e{letter-spacing:-0.265600pt;}
.ls40{letter-spacing:-0.255360pt;}
.ls35{letter-spacing:-0.248260pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls51{letter-spacing:-0.236117pt;}
.lse{letter-spacing:-0.235520pt;}
.ls4{letter-spacing:-0.224640pt;}
.ls52{letter-spacing:-0.202386pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.170240pt;}
.ls3b{letter-spacing:-0.167980pt;}
.ls34{letter-spacing:-0.159360pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.117760pt;}
.ls30{letter-spacing:-0.111987pt;}
.ls2f{letter-spacing:-0.106240pt;}
.ls47{letter-spacing:-0.101193pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.085120pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.058880pt;}
.ls39{letter-spacing:-0.055993pt;}
.ls2d{letter-spacing:-0.053120pt;}
.ls53{letter-spacing:-0.050596pt;}
.ls2{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.042240pt;}
.ls1e{letter-spacing:0.048000pt;}
.ls44{letter-spacing:0.050596pt;}
.ls45{letter-spacing:0.052907pt;}
.ls3e{letter-spacing:0.053120pt;}
.ls3d{letter-spacing:0.055993pt;}
.ls36{letter-spacing:0.058880pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.106240pt;}
.ls38{letter-spacing:0.111987pt;}
.ls29{letter-spacing:0.159360pt;}
.ls5d{letter-spacing:0.176640pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.212480pt;}
.ls57{letter-spacing:0.224000pt;}
.ls26{letter-spacing:0.224640pt;}
.ls3c{letter-spacing:0.234240pt;}
.ls4e{letter-spacing:0.235520pt;}
.ls4f{letter-spacing:0.236117pt;}
.ls3{letter-spacing:0.240000pt;}
.ls5a{letter-spacing:0.254976pt;}
.ls6{letter-spacing:0.255360pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.257570pt;}
.ls27{letter-spacing:0.258560pt;}
.ls28{letter-spacing:0.265600pt;}
.ls31{letter-spacing:0.279967pt;}
.ls1a{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.299520pt;}
.ls6c{letter-spacing:0.302364pt;}
.ls49{letter-spacing:0.303579pt;}
.ls4b{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls56{letter-spacing:0.334611pt;}
.ls4d{letter-spacing:0.335960pt;}
.ls14{letter-spacing:0.336000pt;}
.ls69{letter-spacing:0.354175pt;}
.ls37{letter-spacing:0.362880pt;}
.ls9{letter-spacing:0.510720pt;}
.ls19{letter-spacing:0.576000pt;}
.ls6a{letter-spacing:0.951888pt;}
.ls55{letter-spacing:1.540480pt;}
.ls6f{letter-spacing:2.183232pt;}
.ls6e{letter-spacing:2.815360pt;}
.ls6b{letter-spacing:4.727680pt;}
.ls43{letter-spacing:5.893024pt;}
.ls58{letter-spacing:6.002560pt;}
.ls42{letter-spacing:6.757436pt;}
.ls59{letter-spacing:7.277440pt;}
.ls62{letter-spacing:7.432055pt;}
.ls60{letter-spacing:7.671095pt;}
.ls71{letter-spacing:9.242880pt;}
.ls50{letter-spacing:10.517760pt;}
.ls32{letter-spacing:11.697280pt;}
.ls66{letter-spacing:13.704960pt;}
.ls5f{letter-spacing:14.979840pt;}
.ls5e{letter-spacing:15.617280pt;}
.ls73{letter-spacing:17.529600pt;}
.ls68{letter-spacing:21.991680pt;}
.ls74{letter-spacing:23.951808pt;}
.ls54{letter-spacing:23.957120pt;}
.ls70{letter-spacing:30.968960pt;}
.ls65{letter-spacing:33.067200pt;}
.ls64{letter-spacing:33.518720pt;}
.ls67{letter-spacing:38.671360pt;}
.ls17{letter-spacing:442.320000pt;}
.ls11{letter-spacing:488.208000pt;}
.ls15{letter-spacing:492.048000pt;}
.ls18{letter-spacing:522.288000pt;}
.ls13{letter-spacing:574.608000pt;}
.ls12{letter-spacing:607.248000pt;}
.ls7{letter-spacing:750.208000pt;}
.ls0{letter-spacing:751.603200pt;}
.ls5b{letter-spacing:751.631360pt;}
.ls75{letter-spacing:753.241600pt;}
.ls16{letter-spacing:753.984000pt;}
.ws5{word-spacing:-17.875200pt;}
.ws45{word-spacing:-17.790080pt;}
.ws25{word-spacing:-14.901120pt;}
.ws26{word-spacing:-14.826240pt;}
.ws1f{word-spacing:-14.601600pt;}
.wsd2{word-spacing:-13.504000pt;}
.ws6{word-spacing:-13.376000pt;}
.ws46{word-spacing:-12.864000pt;}
.wsc7{word-spacing:-12.822488pt;}
.ws21{word-spacing:-12.364800pt;}
.ws47{word-spacing:-12.188160pt;}
.ws6e{word-spacing:-12.150567pt;}
.ws8b{word-spacing:-11.982587pt;}
.wsd3{word-spacing:-11.926593pt;}
.ws8a{word-spacing:-11.870600pt;}
.ws20{word-spacing:-11.834880pt;}
.wsbd{word-spacing:-11.776000pt;}
.ws94{word-spacing:-11.758613pt;}
.ws2c{word-spacing:-11.527040pt;}
.ws93{word-spacing:-11.420800pt;}
.wsbe{word-spacing:-11.314560pt;}
.ws37{word-spacing:-11.261440pt;}
.ws4a{word-spacing:-11.208320pt;}
.ws38{word-spacing:-11.155200pt;}
.ws88{word-spacing:-11.102080pt;}
.wsc2{word-spacing:-11.080621pt;}
.ws89{word-spacing:-10.995840pt;}
.ws4b{word-spacing:-10.942720pt;}
.ws66{word-spacing:-10.889600pt;}
.ws28{word-spacing:-10.836480pt;}
.wsc1{word-spacing:-10.777042pt;}
.ws27{word-spacing:-10.730240pt;}
.ws29{word-spacing:-10.677120pt;}
.ws7a{word-spacing:-10.675849pt;}
.ws79{word-spacing:-10.625253pt;}
.ws42{word-spacing:-10.570880pt;}
.ws2a{word-spacing:-10.464640pt;}
.wsd{word-spacing:-10.464000pt;}
.ws10{word-spacing:-9.984000pt;}
.ws48{word-spacing:-9.967499pt;}
.ws14{word-spacing:-9.936000pt;}
.wse{word-spacing:-9.888000pt;}
.ws12{word-spacing:-9.792000pt;}
.ws11{word-spacing:-9.696000pt;}
.wsf{word-spacing:-9.312000pt;}
.ws13{word-spacing:-9.216000pt;}
.ws53{word-spacing:-2.549760pt;}
.wsdf{word-spacing:-2.231040pt;}
.wsad{word-spacing:-2.177920pt;}
.ws6c{word-spacing:-1.912320pt;}
.wse8{word-spacing:-1.593600pt;}
.ws84{word-spacing:-1.540480pt;}
.wse5{word-spacing:-1.381120pt;}
.ws75{word-spacing:-1.274880pt;}
.wsf9{word-spacing:-1.062400pt;}
.wsa1{word-spacing:-0.910736pt;}
.ws18{word-spacing:-0.864000pt;}
.wse4{word-spacing:-0.849920pt;}
.ws24{word-spacing:-0.647680pt;}
.ws2f{word-spacing:-0.637440pt;}
.ws7{word-spacing:-0.595840pt;}
.wsf1{word-spacing:-0.531200pt;}
.ws96{word-spacing:-0.529920pt;}
.ws4{word-spacing:-0.480000pt;}
.ws1{word-spacing:-0.400000pt;}
.ws19{word-spacing:-0.384000pt;}
.wsc5{word-spacing:-0.371840pt;}
.wscc{word-spacing:-0.353280pt;}
.ws15{word-spacing:-0.336000pt;}
.ws6f{word-spacing:-0.294400pt;}
.ws77{word-spacing:-0.279967pt;}
.ws34{word-spacing:-0.265600pt;}
.ws4e{word-spacing:-0.252982pt;}
.ws16{word-spacing:-0.240000pt;}
.wsb0{word-spacing:-0.235520pt;}
.ws99{word-spacing:-0.224000pt;}
.wsb3{word-spacing:-0.212480pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws97{word-spacing:-0.159360pt;}
.ws8{word-spacing:-0.064000pt;}
.ws2e{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.004373pt;}
.ws30{word-spacing:0.053120pt;}
.ws3e{word-spacing:0.055993pt;}
.ws36{word-spacing:0.058880pt;}
.ws9{word-spacing:0.064000pt;}
.ws78{word-spacing:0.078706pt;}
.ws1c{word-spacing:0.096000pt;}
.wsa0{word-spacing:0.101193pt;}
.ws44{word-spacing:0.106240pt;}
.ws92{word-spacing:0.111987pt;}
.wsaf{word-spacing:0.117760pt;}
.wsc{word-spacing:0.128000pt;}
.ws17{word-spacing:0.144000pt;}
.ws2{word-spacing:0.149760pt;}
.ws4d{word-spacing:0.151789pt;}
.ws31{word-spacing:0.159360pt;}
.ws3d{word-spacing:0.167980pt;}
.ws41{word-spacing:0.212480pt;}
.ws43{word-spacing:0.223974pt;}
.ws3c{word-spacing:0.235520pt;}
.wsc3{word-spacing:0.236117pt;}
.ws1d{word-spacing:0.240000pt;}
.ws7b{word-spacing:0.252982pt;}
.ws3a{word-spacing:0.265600pt;}
.ws35{word-spacing:0.279967pt;}
.ws1e{word-spacing:0.288000pt;}
.ws67{word-spacing:0.294400pt;}
.ws80{word-spacing:0.318720pt;}
.wsac{word-spacing:0.335960pt;}
.ws1b{word-spacing:0.336000pt;}
.ws22{word-spacing:0.353280pt;}
.ws39{word-spacing:0.371840pt;}
.ws3{word-spacing:0.374400pt;}
.ws32{word-spacing:0.391954pt;}
.ws23{word-spacing:0.412160pt;}
.ws33{word-spacing:0.424960pt;}
.ws40{word-spacing:0.447947pt;}
.wsf3{word-spacing:0.478080pt;}
.wsb{word-spacing:0.529920pt;}
.ws87{word-spacing:0.531200pt;}
.ws3b{word-spacing:0.558585pt;}
.ws3f{word-spacing:0.559934pt;}
.wsfb{word-spacing:0.584320pt;}
.wsa7{word-spacing:0.588800pt;}
.ws4c{word-spacing:0.615927pt;}
.ws71{word-spacing:0.637440pt;}
.ws2b{word-spacing:0.637803pt;}
.ws95{word-spacing:0.647680pt;}
.wsa{word-spacing:0.851200pt;}
.wsd9{word-spacing:1.009280pt;}
.wse1{word-spacing:1.063875pt;}
.ws5c{word-spacing:1.274880pt;}
.wseb{word-spacing:1.328000pt;}
.ws8f{word-spacing:1.343842pt;}
.wscf{word-spacing:1.540480pt;}
.ws5b{word-spacing:1.593600pt;}
.ws5f{word-spacing:1.646720pt;}
.ws7d{word-spacing:1.912320pt;}
.wsb7{word-spacing:2.231040pt;}
.wsb6{word-spacing:2.284160pt;}
.ws57{word-spacing:2.549760pt;}
.wsec{word-spacing:3.134080pt;}
.ws61{word-spacing:3.187200pt;}
.ws9f{word-spacing:3.359604pt;}
.ws6a{word-spacing:3.452800pt;}
.ws54{word-spacing:3.505920pt;}
.ws55{word-spacing:3.559040pt;}
.wsbf{word-spacing:3.718400pt;}
.ws59{word-spacing:3.824640pt;}
.wsc9{word-spacing:4.196480pt;}
.wsae{word-spacing:4.462080pt;}
.wsd5{word-spacing:4.833920pt;}
.ws8c{word-spacing:5.099520pt;}
.ws49{word-spacing:5.360747pt;}
.wsce{word-spacing:5.365120pt;}
.wse2{word-spacing:5.524480pt;}
.wsda{word-spacing:5.630720pt;}
.ws4f{word-spacing:5.736960pt;}
.wsc4{word-spacing:5.896320pt;}
.wsd4{word-spacing:6.055680pt;}
.ws8e{word-spacing:6.108800pt;}
.wse3{word-spacing:6.161920pt;}
.ws5e{word-spacing:6.374400pt;}
.ws6d{word-spacing:7.011840pt;}
.wsf0{word-spacing:7.064960pt;}
.wsd6{word-spacing:7.224320pt;}
.ws9e{word-spacing:7.391128pt;}
.ws9a{word-spacing:7.543040pt;}
.ws76{word-spacing:7.649280pt;}
.ws51{word-spacing:7.702400pt;}
.wsbb{word-spacing:7.968000pt;}
.wsf5{word-spacing:8.127360pt;}
.wsc8{word-spacing:8.233600pt;}
.ws60{word-spacing:8.339840pt;}
.ws5d{word-spacing:8.658560pt;}
.wsd7{word-spacing:8.711680pt;}
.wsed{word-spacing:8.764800pt;}
.ws74{word-spacing:8.977280pt;}
.wsd1{word-spacing:9.349120pt;}
.wsa9{word-spacing:9.402240pt;}
.wsb4{word-spacing:9.614720pt;}
.wsa6{word-spacing:9.933440pt;}
.wsd0{word-spacing:9.986560pt;}
.ws5a{word-spacing:10.252160pt;}
.wsdc{word-spacing:10.517760pt;}
.wsa8{word-spacing:10.570880pt;}
.wsdb{word-spacing:10.624000pt;}
.ws50{word-spacing:10.889600pt;}
.wsf6{word-spacing:11.048960pt;}
.ws58{word-spacing:11.208320pt;}
.ws65{word-spacing:11.420800pt;}
.ws8d{word-spacing:11.527040pt;}
.wsa4{word-spacing:11.898880pt;}
.wse7{word-spacing:12.150567pt;}
.ws52{word-spacing:12.164480pt;}
.wscb{word-spacing:12.323840pt;}
.wsa5{word-spacing:12.483200pt;}
.wsca{word-spacing:12.536320pt;}
.ws72{word-spacing:12.801920pt;}
.wsc6{word-spacing:13.120640pt;}
.ws73{word-spacing:13.173760pt;}
.ws62{word-spacing:13.439360pt;}
.ws85{word-spacing:14.076800pt;}
.wse0{word-spacing:14.289280pt;}
.ws98{word-spacing:14.448640pt;}
.ws86{word-spacing:14.501760pt;}
.ws9d{word-spacing:14.714240pt;}
.wscd{word-spacing:15.086080pt;}
.wsbc{word-spacing:15.351680pt;}
.wsf2{word-spacing:15.989120pt;}
.wsaa{word-spacing:16.307840pt;}
.ws6b{word-spacing:16.626560pt;}
.wsf7{word-spacing:16.785920pt;}
.wsa2{word-spacing:16.892160pt;}
.wsd8{word-spacing:16.945280pt;}
.wsa3{word-spacing:16.998400pt;}
.ws63{word-spacing:17.264000pt;}
.ws7f{word-spacing:17.901440pt;}
.ws9c{word-spacing:18.538880pt;}
.wsf8{word-spacing:19.813760pt;}
.wsb8{word-spacing:20.451200pt;}
.ws90{word-spacing:21.141760pt;}
.ws70{word-spacing:21.779200pt;}
.ws81{word-spacing:22.416640pt;}
.ws9b{word-spacing:22.735360pt;}
.ws82{word-spacing:22.788480pt;}
.wsfc{word-spacing:22.957293pt;}
.wsab{word-spacing:23.054080pt;}
.ws68{word-spacing:23.691520pt;}
.wsea{word-spacing:23.744640pt;}
.wsfa{word-spacing:24.116480pt;}
.wse9{word-spacing:24.700800pt;}
.wsb1{word-spacing:24.966400pt;}
.ws64{word-spacing:25.603840pt;}
.ws56{word-spacing:25.922560pt;}
.ws7e{word-spacing:26.241280pt;}
.wsde{word-spacing:26.878720pt;}
.wsb2{word-spacing:27.516160pt;}
.ws91{word-spacing:29.428480pt;}
.ws83{word-spacing:30.065920pt;}
.ws7c{word-spacing:30.703360pt;}
.wsc0{word-spacing:31.340800pt;}
.wse6{word-spacing:31.500160pt;}
.ws69{word-spacing:32.615680pt;}
.wsdd{word-spacing:33.890560pt;}
.wsb5{word-spacing:34.581120pt;}
.wsb9{word-spacing:38.405760pt;}
.wsba{word-spacing:39.149440pt;}
.wsee{word-spacing:39.680640pt;}
.wsef{word-spacing:39.786880pt;}
.wsf4{word-spacing:40.955520pt;}
._9{margin-left:-6.868484pt;}
._6{margin-left:-5.694339pt;}
._c{margin-left:-2.430080pt;}
._0{margin-left:-1.120000pt;}
._1{width:0.906048pt;}
._4{width:1.839744pt;}
._a{width:10.362880pt;}
._5{width:11.835733pt;}
._d{width:15.365696pt;}
._b{width:16.995392pt;}
._e{width:18.804416pt;}
._8{width:23.160320pt;}
._7{width:24.328960pt;}
._3{width:563.717952pt;}
._2{width:669.029952pt;}
.fsb{font-size:31.032485pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:33.730962pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:50.596443pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:55.993396pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:62.064970pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.360000pt;}
.y47{bottom:3.520000pt;}
.y3d{bottom:3.680000pt;}
.y3f{bottom:4.320000pt;}
.yc{bottom:6.560000pt;}
.y7{bottom:11.040000pt;}
.y2{bottom:11.525760pt;}
.y42{bottom:21.760000pt;}
.ya5{bottom:23.685760pt;}
.y1{bottom:29.440000pt;}
.ya4{bottom:41.600000pt;}
.y39{bottom:57.632000pt;}
.y3a{bottom:58.880000pt;}
.y9{bottom:60.320000pt;}
.y23{bottom:77.920000pt;}
.y62{bottom:79.200000pt;}
.y1ee{bottom:79.840000pt;}
.y38{bottom:81.308000pt;}
.y7c{bottom:101.921280pt;}
.y37{bottom:104.828000pt;}
.y22{bottom:108.798080pt;}
.y61{bottom:110.080000pt;}
.y7b{bottom:121.440000pt;}
.y12d{bottom:123.200000pt;}
.y36{bottom:128.828000pt;}
.y21{bottom:138.400000pt;}
.y1d5{bottom:139.520000pt;}
.y7a{bottom:141.120000pt;}
.y60{bottom:141.122720pt;}
.y12c{bottom:151.200000pt;}
.y35{bottom:152.828000pt;}
.yb{bottom:158.080000pt;}
.y5f{bottom:158.400000pt;}
.yc9{bottom:159.755360pt;}
.y79{bottom:164.960000pt;}
.y20{bottom:168.800000pt;}
.y1d4{bottom:168.998720pt;}
.y116{bottom:173.600000pt;}
.y115{bottom:173.602720pt;}
.y5e{bottom:176.160000pt;}
.y34{bottom:176.984000pt;}
.yc8{bottom:177.192000pt;}
.y1d3{bottom:186.276000pt;}
.ya3{bottom:188.015680pt;}
.y1e0{bottom:190.880000pt;}
.y114{bottom:190.885440pt;}
.y166{bottom:191.200000pt;}
.y12b{bottom:192.480000pt;}
.yc7{bottom:194.469280pt;}
.y94{bottom:197.120000pt;}
.y1f{bottom:200.160000pt;}
.y33{bottom:200.984000pt;}
.y5d{bottom:201.453280pt;}
.y78{bottom:202.560000pt;}
.y1d2{bottom:204.031360pt;}
.y19b{bottom:205.280000pt;}
.y113{bottom:208.162720pt;}
.yc6{bottom:211.746560pt;}
.y105{bottom:212.320000pt;}
.ya2{bottom:215.850560pt;}
.y1b3{bottom:216.320000pt;}
.y32{bottom:216.500000pt;}
.y1df{bottom:218.882720pt;}
.y5c{bottom:218.889920pt;}
.y12a{bottom:220.480000pt;}
.y165{bottom:220.706240pt;}
.y1d1{bottom:221.468000pt;}
.y112{bottom:225.440000pt;}
.y1b9{bottom:228.000000pt;}
.y93{bottom:228.164640pt;}
.y1e{bottom:231.520000pt;}
.y76{bottom:233.594880pt;}
.y77{bottom:233.600000pt;}
.y19a{bottom:234.733600pt;}
.y1de{bottom:236.160000pt;}
.y5b{bottom:236.645280pt;}
.y129{bottom:237.760000pt;}
.y164{bottom:237.983520pt;}
.y1d0{bottom:239.223360pt;}
.yc5{bottom:239.581440pt;}
.y31{bottom:240.500000pt;}
.y104{bottom:241.656000pt;}
.ya1{bottom:243.844800pt;}
.y1b2{bottom:245.602720pt;}
.y92{bottom:245.920000pt;}
.y111{bottom:253.468160pt;}
.y5a{bottom:254.560000pt;}
.y163{bottom:255.260800pt;}
.y30{bottom:256.184000pt;}
.y1cf{bottom:256.978720pt;}
.yc4{bottom:257.018080pt;}
.y1b8{bottom:257.504160pt;}
.y75{bottom:258.880000pt;}
.y103{bottom:259.092640pt;}
.y199{bottom:262.727840pt;}
.y1b1{bottom:262.880000pt;}
.y1d{bottom:263.040000pt;}
.y1dd{bottom:264.223840pt;}
.y91{bottom:268.480000pt;}
.y2f{bottom:271.700000pt;}
.ya0{bottom:271.839040pt;}
.y59{bottom:272.320000pt;}
.y162{bottom:272.538080pt;}
.yc3{bottom:274.295360pt;}
.y1ce{bottom:274.415360pt;}
.y1b7{bottom:274.781440pt;}
.y102{bottom:276.369920pt;}
.y128{bottom:279.040000pt;}
.y198{bottom:280.005120pt;}
.yeb{bottom:280.160000pt;}
.y110{bottom:281.462400pt;}
.y74{bottom:284.154880pt;}
.y2e{bottom:287.216000pt;}
.y9f{bottom:289.753760pt;}
.y161{bottom:289.815360pt;}
.y1b0{bottom:290.927840pt;}
.yc2{bottom:291.572667pt;}
.y1cd{bottom:291.692640pt;}
.y1b6{bottom:292.058720pt;}
.y101{bottom:293.647200pt;}
.y1c{bottom:294.400000pt;}
.y58{bottom:294.720000pt;}
.y10f{bottom:298.739680pt;}
.y181{bottom:302.132960pt;}
.y2d{bottom:302.900000pt;}
.y90{bottom:305.920000pt;}
.y127{bottom:307.040000pt;}
.y160{bottom:307.092640pt;}
.y197{bottom:307.840000pt;}
.yc1{bottom:308.849920pt;}
.y73{bottom:309.440000pt;}
.y1cc{bottom:309.448000pt;}
.y1b5{bottom:309.495360pt;}
.yea{bottom:309.602720pt;}
.y100{bottom:310.924480pt;}
.y16d{bottom:314.560000pt;}
.y10e{bottom:316.016960pt;}
.y9e{bottom:318.080000pt;}
.y2c{bottom:318.416000pt;}
.y1af{bottom:318.922080pt;}
.y180{bottom:319.569600pt;}
.y142{bottom:321.920000pt;}
.y126{bottom:324.320000pt;}
.y15f{bottom:324.369920pt;}
.y1b{bottom:325.760000pt;}
.yc0{bottom:326.127200pt;}
.y1b4{bottom:326.772640pt;}
.y14f{bottom:326.876160pt;}
.ye9{bottom:326.880000pt;}
.y1cb{bottom:327.203360pt;}
.yff{bottom:328.201760pt;}
.y56{bottom:332.320000pt;}
.y72{bottom:332.480000pt;}
.y10d{bottom:333.294240pt;}
.y2b{bottom:333.932000pt;}
.y196{bottom:335.896000pt;}
.y1ae{bottom:336.199360pt;}
.y17f{bottom:336.846880pt;}
.y8f{bottom:336.968000pt;}
.y141{bottom:337.600000pt;}
.y9d{bottom:340.640000pt;}
.y15e{bottom:341.647200pt;}
.ybf{bottom:343.404533pt;}
.y16c{bottom:344.049920pt;}
.y1ca{bottom:344.640000pt;}
.y1c9{bottom:344.683680pt;}
.yfe{bottom:345.479040pt;}
.y2a{bottom:349.448000pt;}
.y10c{bottom:350.571520pt;}
.y140{bottom:353.120000pt;}
.y1ad{bottom:353.476640pt;}
.y17e{bottom:354.124160pt;}
.y8e{bottom:354.404640pt;}
.ye8{bottom:354.905120pt;}
.y14e{bottom:356.640000pt;}
.y1a{bottom:357.280000pt;}
.y15d{bottom:358.924480pt;}
.ybe{bottom:360.681760pt;}
.y16b{bottom:361.327200pt;}
.y1c8{bottom:361.960960pt;}
.yfd{bottom:362.756320pt;}
.y55{bottom:363.368000pt;}
.y195{bottom:363.890240pt;}
.y125{bottom:365.600000pt;}
.y10b{bottom:367.848800pt;}
.y71{bottom:370.080000pt;}
.y1ac{bottom:370.753920pt;}
.y17d{bottom:371.401440pt;}
.y8d{bottom:372.160000pt;}
.y29{bottom:373.604000pt;}
.y13f{bottom:375.845440pt;}
.y15c{bottom:376.201760pt;}
.ybd{bottom:377.959040pt;}
.y9c{bottom:378.240000pt;}
.y16a{bottom:378.604480pt;}
.y1c7{bottom:379.716320pt;}
.yfc{bottom:380.033600pt;}
.y54{bottom:380.804640pt;}
.y194{bottom:381.167520pt;}
.ye7{bottom:382.899360pt;}
.y10a{bottom:385.126080pt;}
.yaa{bottom:386.880000pt;}
.y19c{bottom:388.000000pt;}
.y19{bottom:388.640000pt;}
.y17c{bottom:388.678720pt;}
.y8c{bottom:389.920000pt;}
.y13e{bottom:393.122720pt;}
.y124{bottom:393.600000pt;}
.y15b{bottom:393.638400pt;}
.ybc{bottom:395.236320pt;}
.y169{bottom:395.881760pt;}
.y1c6{bottom:396.993600pt;}
.yfb{bottom:397.310880pt;}
.y28{bottom:397.604000pt;}
.y193{bottom:398.444800pt;}
.y53{bottom:398.560000pt;}
.y1ab{bottom:398.748160pt;}
.ye6{bottom:400.176640pt;}
.y146{bottom:400.480000pt;}
.y70{bottom:401.120000pt;}
.y109{bottom:402.403360pt;}
.y1ed{bottom:402.918720pt;}
.y17b{bottom:405.956000pt;}
.y13d{bottom:410.400000pt;}
.y15a{bottom:410.915680pt;}
.ybb{bottom:412.513600pt;}
.y168{bottom:413.159040pt;}
.y1c5{bottom:414.270880pt;}
.yfa{bottom:414.588160pt;}
.y8b{bottom:415.362720pt;}
.y192{bottom:415.722080pt;}
.y1aa{bottom:416.025440pt;}
.y52{bottom:416.320000pt;}
.ye5{bottom:417.453920pt;}
.ya9{bottom:418.400000pt;}
.y108{bottom:419.840000pt;}
.y107{bottom:419.878720pt;}
.y18{bottom:420.160000pt;}
.y27{bottom:421.604000pt;}
.y17a{bottom:423.233280pt;}
.y154{bottom:424.960000pt;}
.y6f{bottom:426.400000pt;}
.y159{bottom:428.192960pt;}
.yba{bottom:429.950240pt;}
.y167{bottom:430.436320pt;}
.y1ec{bottom:430.753600pt;}
.y1c4{bottom:431.548160pt;}
.yf9{bottom:432.024800pt;}
.y8a{bottom:432.640000pt;}
.y191{bottom:432.999360pt;}
.y1a9{bottom:433.302720pt;}
.ye4{bottom:434.731200pt;}
.y123{bottom:434.904800pt;}
.yd8{bottom:435.680000pt;}
.y26{bottom:437.288000pt;}
.y179{bottom:440.510560pt;}
.y51{bottom:441.603360pt;}
.y1dc{bottom:445.442720pt;}
.y158{bottom:445.470240pt;}
.yb9{bottom:447.227467pt;}
.y145{bottom:447.227520pt;}
.y106{bottom:447.713600pt;}
.y1eb{bottom:448.190240pt;}
.y1c3{bottom:448.825440pt;}
.yf8{bottom:449.302080pt;}
.y89{bottom:450.400000pt;}
.y1a8{bottom:450.580000pt;}
.ya8{bottom:451.360000pt;}
.y17{bottom:451.520000pt;}
.y6e{bottom:451.680000pt;}
.y13c{bottom:451.685440pt;}
.y25{bottom:452.804000pt;}
.y153{bottom:454.433280pt;}
.y9b{bottom:455.520000pt;}
.y178{bottom:457.787840pt;}
.y50{bottom:459.040000pt;}
.y190{bottom:460.993600pt;}
.ye3{bottom:462.725440pt;}
.y1db{bottom:462.736960pt;}
.y122{bottom:462.739680pt;}
.y157{bottom:462.747520pt;}
.yb8{bottom:464.504800pt;}
.yd7{bottom:464.990880pt;}
.y1ea{bottom:465.467520pt;}
.y6{bottom:465.760000pt;}
.y1c2{bottom:466.262080pt;}
.yf7{bottom:466.579360pt;}
.y45{bottom:466.880000pt;}
.y1a7{bottom:467.857280pt;}
.y24{bottom:468.320000pt;}
.y6d{bottom:468.960000pt;}
.y13b{bottom:468.962720pt;}
.y155{bottom:469.600000pt;}
.y152{bottom:471.710560pt;}
.y18a{bottom:472.000000pt;}
.y88{bottom:475.688000pt;}
.y4f{bottom:476.800000pt;}
.y18f{bottom:478.270880pt;}
.ye2{bottom:480.002720pt;}
.y1da{bottom:480.014240pt;}
.y156{bottom:480.024800pt;}
.y121{bottom:480.176320pt;}
.yb7{bottom:481.782080pt;}
.yd6{bottom:482.427520pt;}
.y1e9{bottom:482.744800pt;}
.y16{bottom:482.880000pt;}
.y1c1{bottom:483.539360pt;}
.yf6{bottom:483.856640pt;}
.y1a6{bottom:485.134560pt;}
.y177{bottom:485.782080pt;}
.y13a{bottom:486.240000pt;}
.y9a{bottom:486.564640pt;}
.y14d{bottom:488.987840pt;}
.y87{bottom:493.124640pt;}
.y8{bottom:494.240000pt;}
.y6c{bottom:494.242720pt;}
.y18e{bottom:495.548160pt;}
.ye1{bottom:497.280000pt;}
.y1d9{bottom:497.291520pt;}
.ye0{bottom:497.302080pt;}
.y120{bottom:497.453600pt;}
.yb6{bottom:499.059360pt;}
.yd5{bottom:499.704800pt;}
.y44{bottom:500.000000pt;}
.y1e8{bottom:500.022080pt;}
.y1c0{bottom:500.816640pt;}
.yf5{bottom:501.133920pt;}
.y189{bottom:501.302720pt;}
.y4e{bottom:502.088000pt;}
.y1a5{bottom:502.571200pt;}
.y176{bottom:503.059360pt;}
.y99{bottom:504.320000pt;}
.y151{bottom:506.265120pt;}
.y86{bottom:510.880000pt;}
.y6b{bottom:511.520000pt;}
.y18d{bottom:512.825440pt;}
.y138{bottom:514.235200pt;}
.y139{bottom:514.240000pt;}
.y1d8{bottom:514.568800pt;}
.ydf{bottom:514.579360pt;}
.y11f{bottom:514.730880pt;}
.y15{bottom:515.989600pt;}
.y144{bottom:516.336640pt;}
.yb5{bottom:516.336667pt;}
.yd4{bottom:516.982080pt;}
.y1e7{bottom:517.299360pt;}
.y1bf{bottom:518.093920pt;}
.yf4{bottom:518.411200pt;}
.y188{bottom:518.739360pt;}
.ya{bottom:519.200000pt;}
.y4d{bottom:519.365280pt;}
.y1a4{bottom:519.848480pt;}
.y175{bottom:520.336640pt;}
.y150{bottom:523.542400pt;}
.y14c{bottom:523.863200pt;}
.y98{bottom:526.880000pt;}
.y85{bottom:528.640000pt;}
.y1d7{bottom:531.846080pt;}
.yde{bottom:531.856640pt;}
.y11e{bottom:532.008160pt;}
.y43{bottom:533.280000pt;}
.yb4{bottom:533.613867pt;}
.y143{bottom:533.613920pt;}
.yd3{bottom:534.259360pt;}
.y1e6{bottom:534.576640pt;}
.y1be{bottom:535.371200pt;}
.yf3{bottom:535.688480pt;}
.y187{bottom:536.016640pt;}
.y6a{bottom:536.800000pt;}
.y1a3{bottom:537.125760pt;}
.y4c{bottom:537.280000pt;}
.y174{bottom:537.613920pt;}
.y18c{bottom:540.819680pt;}
.y1d6{bottom:549.123360pt;}
.ydd{bottom:549.133920pt;}
.y11d{bottom:549.285440pt;}
.yb3{bottom:550.891200pt;}
.yd2{bottom:551.536640pt;}
.y1e5{bottom:551.853920pt;}
.y1bd{bottom:552.648480pt;}
.yf2{bottom:552.965760pt;}
.y186{bottom:553.293920pt;}
.y84{bottom:553.928000pt;}
.y14{bottom:554.400000pt;}
.y4b{bottom:555.040000pt;}
.y173{bottom:555.050560pt;}
.y137{bottom:555.522720pt;}
.y18b{bottom:558.096960pt;}
.y14b{bottom:558.738560pt;}
.y69{bottom:562.080000pt;}
.y97{bottom:564.320000pt;}
.y1a2{bottom:565.120000pt;}
.y41{bottom:566.560000pt;}
.y11c{bottom:566.562720pt;}
.ydc{bottom:566.570560pt;}
.yb2{bottom:568.168480pt;}
.yd1{bottom:568.813920pt;}
.y1e4{bottom:569.131200pt;}
.y1bc{bottom:569.925760pt;}
.y185{bottom:570.571200pt;}
.y83{bottom:571.364640pt;}
.y172{bottom:572.327840pt;}
.y136{bottom:572.800000pt;}
.y4a{bottom:577.440000pt;}
.yf1{bottom:580.960000pt;}
.y11b{bottom:583.845440pt;}
.ydb{bottom:583.847840pt;}
.yb1{bottom:585.445760pt;}
.yd0{bottom:586.091200pt;}
.y1e3{bottom:586.408480pt;}
.y68{bottom:587.355520pt;}
.y184{bottom:587.848480pt;}
.y82{bottom:589.120000pt;}
.y171{bottom:589.605120pt;}
.y13{bottom:591.040000pt;}
.y14a{bottom:593.613920pt;}
.y96{bottom:595.524640pt;}
.y1a1{bottom:596.480000pt;}
.y1bb{bottom:597.920000pt;}
.y135{bottom:600.800000pt;}
.y134{bottom:600.805600pt;}
.y11a{bottom:601.122720pt;}
.yda{bottom:601.125120pt;}
.ycf{bottom:603.368480pt;}
.y1e2{bottom:603.685760pt;}
.y183{bottom:605.125760pt;}
.y81{bottom:606.880000pt;}
.yf0{bottom:609.760000pt;}
.y1a0{bottom:612.160000pt;}
.y67{bottom:612.800000pt;}
.y95{bottom:613.280000pt;}
.yb0{bottom:613.440000pt;}
.y49{bottom:615.520000pt;}
.y170{bottom:617.440000pt;}
.y40{bottom:617.920000pt;}
.y119{bottom:618.400000pt;}
.yce{bottom:620.645760pt;}
.y12{bottom:622.400000pt;}
.yef{bottom:625.440000pt;}
.y19f{bottom:627.680000pt;}
.y149{bottom:628.489280pt;}
.y133{bottom:628.799840pt;}
.yd9{bottom:628.960000pt;}
.y1ba{bottom:629.440000pt;}
.y1e1{bottom:631.680000pt;}
.y80{bottom:632.163360pt;}
.y182{bottom:633.120000pt;}
.y66{bottom:635.680000pt;}
.yee{bottom:640.960000pt;}
.y19e{bottom:643.200000pt;}
.yaf{bottom:644.960000pt;}
.y118{bottom:646.400000pt;}
.ycd{bottom:648.640000pt;}
.y16f{bottom:648.960000pt;}
.y7f{bottom:649.600000pt;}
.y3e{bottom:651.200000pt;}
.y48{bottom:653.600000pt;}
.y11{bottom:653.920000pt;}
.yae{bottom:660.480000pt;}
.y148{bottom:663.364640pt;}
.yed{bottom:663.680000pt;}
.y16e{bottom:664.640000pt;}
.y19d{bottom:665.922720pt;}
.y65{bottom:666.720000pt;}
.y7e{bottom:667.360000pt;}
.y132{bottom:670.565440pt;}
.y5{bottom:672.321280pt;}
.y117{bottom:674.394400pt;}
.ycc{bottom:680.160000pt;}
.yad{bottom:683.200000pt;}
.y3c{bottom:684.480000pt;}
.y10{bottom:686.869600pt;}
.y131{bottom:687.842720pt;}
.y64{bottom:689.280000pt;}
.y7d{bottom:689.760000pt;}
.y46{bottom:691.680000pt;}
.yec{bottom:692.003200pt;}
.y147{bottom:698.240000pt;}
.ye{bottom:701.916160pt;}
.y4{bottom:701.923200pt;}
.ya7{bottom:701.924480pt;}
.ycb{bottom:702.880000pt;}
.y130{bottom:705.120000pt;}
.yac{bottom:711.521920pt;}
.yf{bottom:725.280000pt;}
.y3b{bottom:727.200000pt;}
.y63{bottom:727.360000pt;}
.yab{bottom:731.202533pt;}
.yca{bottom:731.202560pt;}
.yd{bottom:731.680000pt;}
.y3{bottom:731.687040pt;}
.ya6{bottom:731.688320pt;}
.y12e{bottom:733.118880pt;}
.y12f{bottom:733.120000pt;}
.h1b{height:16.480000pt;}
.h1a{height:16.481333pt;}
.h18{height:16.638667pt;}
.h16{height:16.640000pt;}
.h15{height:18.078667pt;}
.h11{height:18.080000pt;}
.h13{height:18.240000pt;}
.h9{height:26.400000pt;}
.h21{height:26.563807pt;}
.h4{height:33.761333pt;}
.h14{height:36.320000pt;}
.h1d{height:37.715200pt;}
.h2{height:39.243750pt;}
.he{height:41.088000pt;}
.hd{height:42.528000pt;}
.hf{height:45.470720pt;}
.h22{height:45.470933pt;}
.h1c{height:45.491200pt;}
.h29{height:45.884160pt;}
.h28{height:45.909760pt;}
.h24{height:45.930240pt;}
.h25{height:45.952000pt;}
.h17{height:47.064320pt;}
.h19{height:47.930347pt;}
.h27{height:48.426192pt;}
.h20{height:48.437661pt;}
.h3{height:50.401280pt;}
.h12{height:52.167680pt;}
.h1f{height:52.167787pt;}
.h23{height:53.104677pt;}
.h1e{height:53.127614pt;}
.hb{height:54.784000pt;}
.hc{height:54.791680pt;}
.h26{height:64.097280pt;}
.h10{height:66.343680pt;}
.h5{height:69.890625pt;}
.h7{height:70.880000pt;}
.ha{height:72.862720pt;}
.h8{height:75.416320pt;}
.h6{height:80.160000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w2{width:49.920000pt;}
.w7{width:101.600000pt;}
.w9{width:101.920000pt;}
.wb{width:104.000000pt;}
.w5{width:231.360000pt;}
.w4{width:237.280000pt;}
.wc{width:359.358667pt;}
.wa{width:361.440000pt;}
.w8{width:361.758667pt;}
.w3{width:459.360000pt;}
.w6{width:463.360000pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x15{left:7.520000pt;}
.x4{left:13.120000pt;}
.x9{left:21.600000pt;}
.x6{left:36.160000pt;}
.x2{left:48.003840pt;}
.x2a{left:76.498880pt;}
.x8{left:82.080000pt;}
.xa{left:87.687200pt;}
.x5{left:90.880000pt;}
.x18{left:95.200000pt;}
.x7{left:100.480000pt;}
.x2b{left:107.520000pt;}
.x3d{left:111.360000pt;}
.x2c{left:134.880000pt;}
.xb{left:148.480000pt;}
.x16{left:149.600000pt;}
.x17{left:152.000000pt;}
.xe{left:158.080000pt;}
.xf{left:166.558720pt;}
.x25{left:186.240000pt;}
.xd{left:201.284480pt;}
.x32{left:203.040000pt;}
.x3e{left:212.640000pt;}
.x14{left:215.040000pt;}
.x39{left:216.960000pt;}
.x2d{left:220.160000pt;}
.x13{left:223.200000pt;}
.x36{left:231.680000pt;}
.x10{left:242.560000pt;}
.x23{left:250.240000pt;}
.x1d{left:260.640000pt;}
.x3{left:265.920000pt;}
.x11{left:274.884000pt;}
.xc{left:279.680000pt;}
.x37{left:297.280000pt;}
.x34{left:308.160000pt;}
.x38{left:318.720000pt;}
.x2e{left:324.320000pt;}
.x29{left:328.000000pt;}
.x24{left:335.040000pt;}
.x31{left:338.400000pt;}
.x3b{left:342.080000pt;}
.x30{left:348.320000pt;}
.x28{left:349.280000pt;}
.x21{left:351.200000pt;}
.x1e{left:355.360000pt;}
.x35{left:357.120000pt;}
.x1a{left:385.600000pt;}
.x20{left:390.720000pt;}
.x19{left:395.520000pt;}
.x1f{left:407.200000pt;}
.x27{left:426.240000pt;}
.x33{left:427.520000pt;}
.x3c{left:430.080000pt;}
.x22{left:434.560000pt;}
.x1b{left:445.760000pt;}
.x1c{left:449.600000pt;}
.x3a{left:461.600000pt;}
.x26{left:497.600000pt;}
.x12{left:504.480000pt;}
.x1{left:511.360000pt;}
.x2f{left:619.040000pt;}
}




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