
    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_0d94311d05da4877731bdbbd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.086000;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_0d94311d05da4877731bdbbd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.086000;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_10ec6bea47f1eedc99cfea0d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_f7b518fb4e8d9c113368a905.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_d214c93267bec128dce1ca28.woff')format("woff");}.ff5{font-family:ff5;line-height:1.184000;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_bf235f92541ba092ab9e8ca9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172444;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_6516887c109a6a7a3afa2b5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_0d94311d05da4877731bdbbd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.086000;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_7fc71548ef3d047a50f3aa10.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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_86e4cee5282937035a163795.woff')format("woff");}.ffa{font-family:ffa;line-height:0.902832;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_c90d9ca55e06c82cbe9a0632.woff')format("woff");}.ffb{font-family:ffb;line-height:0.937500;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_0d94311d05da4877731bdbbd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.086000;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_22f828489fefc867bc46e839.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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_2c2896059105fd7ae4f8f5f5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.004000;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_3fb2a3b28f3f19dfda623c1f.woff')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5cc503ca0bf3aed176dc7bcf.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_729cc7806e5e333b25f34f3d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8d2b2866339a332aeb2d5cf4.woff')format("woff");}.ff12{font-family:ff12;line-height:1.004000;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;}
.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);}
.m1{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);}
.v3{vertical-align:-54.000000px;}
.v4{vertical-align:-19.980000px;}
.v1{vertical-align:-4.411800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.971000px;}
.ls15{letter-spacing:-3.432000px;}
.ls3{letter-spacing:-1.404000px;}
.ls24{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-1.170000px;}
.ls1d{letter-spacing:-1.092000px;}
.ls5{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-1.014000px;}
.ls22{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.780000px;}
.ls23{letter-spacing:-0.750000px;}
.lsf{letter-spacing:-0.702000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.031800px;}
.ls14{letter-spacing:0.032400px;}
.ls13{letter-spacing:0.078000px;}
.ls16{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.591000px;}
.ls11{letter-spacing:1.440600px;}
.ls6{letter-spacing:1.810200px;}
.ls1e{letter-spacing:2.040000px;}
.ls8{letter-spacing:2.238000px;}
.ls20{letter-spacing:2.332800px;}
.lsc{letter-spacing:2.379000px;}
.ls18{letter-spacing:2.485800px;}
.ls1c{letter-spacing:3.008400px;}
.lsa{letter-spacing:3.291000px;}
.ls9{letter-spacing:3.291600px;}
.ls21{letter-spacing:3.294000px;}
.ls1{letter-spacing:3.427200px;}
.ls7{letter-spacing:3.666600px;}
.ls1f{letter-spacing:3.679200px;}
.ls1b{letter-spacing:5.352600px;}
.lsd{letter-spacing:5.370000px;}
.lse{letter-spacing:6.673800px;}
.ls1a{letter-spacing:6.942000px;}
.ls17{letter-spacing:6.985800px;}
.ls19{letter-spacing:8.668200px;}
.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;}
}
.ws35{word-spacing:-78.000000px;}
.wsd8{word-spacing:-75.000000px;}
.ws37{word-spacing:-39.000000px;}
.wsd2{word-spacing:-38.220000px;}
.wsd9{word-spacing:-37.500000px;}
.ws2{word-spacing:-19.500000px;}
.ws3{word-spacing:-18.000000px;}
.ws36{word-spacing:-14.508000px;}
.wsd7{word-spacing:-13.950000px;}
.wsc3{word-spacing:-13.806000px;}
.wscb{word-spacing:-13.728000px;}
.wsc4{word-spacing:-13.494000px;}
.wsec{word-spacing:-13.200000px;}
.ws38{word-spacing:-13.104000px;}
.wsda{word-spacing:-13.050000px;}
.wseb{word-spacing:-12.750000px;}
.ws34{word-spacing:-11.778000px;}
.ws68{word-spacing:-10.872000px;}
.ws9{word-spacing:-7.704000px;}
.wsa1{word-spacing:-7.416000px;}
.ws1{word-spacing:-6.506280px;}
.ws10{word-spacing:-5.832000px;}
.ws15{word-spacing:-5.616000px;}
.ws7{word-spacing:-5.184000px;}
.ws25{word-spacing:-4.176000px;}
.ws8{word-spacing:-3.960000px;}
.ws2c{word-spacing:-3.528000px;}
.ws7e{word-spacing:-3.510000px;}
.wsc{word-spacing:-3.384000px;}
.wsbe{word-spacing:-3.120000px;}
.ws87{word-spacing:-2.964000px;}
.ws26{word-spacing:-2.952000px;}
.ws9f{word-spacing:-2.886000px;}
.ws20{word-spacing:-2.880000px;}
.ws88{word-spacing:-2.808000px;}
.wsdb{word-spacing:-2.775000px;}
.ws8e{word-spacing:-2.730000px;}
.wse4{word-spacing:-2.625000px;}
.ws90{word-spacing:-2.574000px;}
.wsbc{word-spacing:-2.496000px;}
.ws4f{word-spacing:-2.418000px;}
.wsf5{word-spacing:-2.400000px;}
.ws3f{word-spacing:-2.340000px;}
.wsd4{word-spacing:-2.262000px;}
.wsa0{word-spacing:-2.184000px;}
.wsac{word-spacing:-2.106000px;}
.wsf3{word-spacing:-2.100000px;}
.wscf{word-spacing:-2.028000px;}
.wsb8{word-spacing:-1.950000px;}
.ws57{word-spacing:-1.872000px;}
.ws3d{word-spacing:-1.794000px;}
.ws44{word-spacing:-1.716000px;}
.ws76{word-spacing:-1.638000px;}
.ws5f{word-spacing:-1.560000px;}
.ws73{word-spacing:-1.482000px;}
.wsae{word-spacing:-1.404000px;}
.ws5{word-spacing:-1.380000px;}
.ws91{word-spacing:-1.326000px;}
.wsdd{word-spacing:-1.275000px;}
.ws43{word-spacing:-1.248000px;}
.wsb0{word-spacing:-1.170000px;}
.ws72{word-spacing:-1.092000px;}
.ws74{word-spacing:-1.014000px;}
.ws79{word-spacing:-1.008000px;}
.ws75{word-spacing:-0.936000px;}
.ws98{word-spacing:-0.858000px;}
.ws2d{word-spacing:-0.792000px;}
.ws6f{word-spacing:-0.780000px;}
.ws6{word-spacing:-0.720000px;}
.ws7c{word-spacing:-0.702000px;}
.ws52{word-spacing:-0.624000px;}
.ws6e{word-spacing:-0.546000px;}
.wsed{word-spacing:-0.525000px;}
.wsf{word-spacing:-0.504000px;}
.ws85{word-spacing:-0.468000px;}
.wsb3{word-spacing:-0.390000px;}
.wsf7{word-spacing:-0.375000px;}
.ws70{word-spacing:-0.312000px;}
.ws4d{word-spacing:-0.234000px;}
.ws64{word-spacing:-0.156000px;}
.wsb4{word-spacing:-0.078000px;}
.wse5{word-spacing:-0.075000px;}
.ws4{word-spacing:0.000000px;}
.ws5d{word-spacing:0.078000px;}
.ws5a{word-spacing:0.156000px;}
.ws59{word-spacing:0.234000px;}
.ws6d{word-spacing:0.312000px;}
.ws47{word-spacing:0.390000px;}
.ws4c{word-spacing:0.468000px;}
.ws56{word-spacing:0.546000px;}
.wsc5{word-spacing:0.624000px;}
.ws92{word-spacing:0.702000px;}
.wse3{word-spacing:0.750000px;}
.ws8c{word-spacing:0.780000px;}
.wsde{word-spacing:0.825000px;}
.ws82{word-spacing:0.858000px;}
.wse6{word-spacing:0.900000px;}
.wsaa{word-spacing:0.936000px;}
.ws77{word-spacing:1.014000px;}
.ws78{word-spacing:1.080000px;}
.ws6a{word-spacing:1.092000px;}
.ws39{word-spacing:1.170000px;}
.ws4e{word-spacing:1.248000px;}
.wsa3{word-spacing:1.296000px;}
.ws9c{word-spacing:1.326000px;}
.ws7f{word-spacing:1.404000px;}
.ws40{word-spacing:1.482000px;}
.wsef{word-spacing:1.500000px;}
.ws51{word-spacing:1.560000px;}
.ws7b{word-spacing:1.638000px;}
.ws3a{word-spacing:1.716000px;}
.wsb5{word-spacing:1.794000px;}
.ws28{word-spacing:1.872000px;}
.ws7d{word-spacing:1.950000px;}
.wsa4{word-spacing:2.016000px;}
.wsf0{word-spacing:2.025000px;}
.ws4b{word-spacing:2.028000px;}
.ws24{word-spacing:2.088000px;}
.ws63{word-spacing:2.106000px;}
.wse7{word-spacing:2.175000px;}
.ws42{word-spacing:2.184000px;}
.wsa9{word-spacing:2.262000px;}
.ws9e{word-spacing:2.340000px;}
.ws71{word-spacing:2.418000px;}
.ws65{word-spacing:2.496000px;}
.wsa6{word-spacing:2.574000px;}
.ws8f{word-spacing:2.652000px;}
.ws93{word-spacing:2.730000px;}
.ws86{word-spacing:2.808000px;}
.ws2e{word-spacing:2.880000px;}
.wscc{word-spacing:2.886000px;}
.ws5e{word-spacing:2.964000px;}
.ws69{word-spacing:3.042000px;}
.wsb9{word-spacing:3.120000px;}
.ws67{word-spacing:3.198000px;}
.ws1f{word-spacing:3.240000px;}
.wsab{word-spacing:3.276000px;}
.ws94{word-spacing:3.354000px;}
.ws45{word-spacing:3.432000px;}
.wsdf{word-spacing:3.450000px;}
.ws48{word-spacing:3.510000px;}
.ws5b{word-spacing:3.588000px;}
.ws14{word-spacing:3.600000px;}
.ws60{word-spacing:3.666000px;}
.ws54{word-spacing:3.744000px;}
.ws3b{word-spacing:3.822000px;}
.ws8b{word-spacing:3.900000px;}
.ws89{word-spacing:3.978000px;}
.wsb2{word-spacing:4.056000px;}
.wse8{word-spacing:4.125000px;}
.wsad{word-spacing:4.134000px;}
.wsf6{word-spacing:4.200000px;}
.wsaf{word-spacing:4.212000px;}
.ws3c{word-spacing:4.290000px;}
.wsb6{word-spacing:4.368000px;}
.wsea{word-spacing:4.425000px;}
.ws84{word-spacing:4.446000px;}
.ws19{word-spacing:4.464000px;}
.ws41{word-spacing:4.524000px;}
.wsbf{word-spacing:4.602000px;}
.wscd{word-spacing:4.680000px;}
.wsd0{word-spacing:4.758000px;}
.wsf4{word-spacing:4.800000px;}
.ws97{word-spacing:4.836000px;}
.wsd3{word-spacing:4.914000px;}
.wsd6{word-spacing:4.992000px;}
.wsc6{word-spacing:5.070000px;}
.ws3e{word-spacing:5.148000px;}
.ws95{word-spacing:5.226000px;}
.wsc7{word-spacing:5.382000px;}
.wsba{word-spacing:5.460000px;}
.wsbb{word-spacing:5.538000px;}
.wsa7{word-spacing:5.616000px;}
.ws49{word-spacing:5.694000px;}
.ws58{word-spacing:5.772000px;}
.wsd1{word-spacing:5.850000px;}
.ws53{word-spacing:5.928000px;}
.wsca{word-spacing:6.006000px;}
.wsa2{word-spacing:6.048000px;}
.ws96{word-spacing:6.084000px;}
.ws55{word-spacing:6.162000px;}
.wsc0{word-spacing:6.240000px;}
.ws83{word-spacing:6.318000px;}
.wsce{word-spacing:6.396000px;}
.wse9{word-spacing:6.450000px;}
.ws6c{word-spacing:6.474000px;}
.ws7a{word-spacing:6.552000px;}
.wsc8{word-spacing:6.708000px;}
.ws66{word-spacing:6.786000px;}
.ws8d{word-spacing:6.864000px;}
.wsb1{word-spacing:6.942000px;}
.ws46{word-spacing:7.020000px;}
.wsbd{word-spacing:7.098000px;}
.ws99{word-spacing:7.176000px;}
.wse2{word-spacing:7.200000px;}
.ws9b{word-spacing:7.332000px;}
.ws4a{word-spacing:7.488000px;}
.wsc2{word-spacing:7.566000px;}
.ws62{word-spacing:7.644000px;}
.ws80{word-spacing:7.722000px;}
.ws5c{word-spacing:7.800000px;}
.ws9a{word-spacing:7.878000px;}
.wsb7{word-spacing:7.956000px;}
.wsa8{word-spacing:8.112000px;}
.wsa5{word-spacing:8.268000px;}
.wsc9{word-spacing:8.346000px;}
.ws29{word-spacing:8.496000px;}
.wsc1{word-spacing:8.502000px;}
.ws6b{word-spacing:8.658000px;}
.wsd5{word-spacing:8.814000px;}
.ws16{word-spacing:10.080000px;}
.ws61{word-spacing:10.296000px;}
.ws22{word-spacing:10.440000px;}
.ws9d{word-spacing:10.608000px;}
.ws50{word-spacing:10.920000px;}
.wse{word-spacing:11.448000px;}
.ws17{word-spacing:11.520000px;}
.ws1b{word-spacing:11.880000px;}
.ws8a{word-spacing:12.012000px;}
.wse0{word-spacing:12.525000px;}
.ws18{word-spacing:13.176000px;}
.wsee{word-spacing:13.425000px;}
.wsa{word-spacing:13.464000px;}
.ws2b{word-spacing:13.680000px;}
.wsdc{word-spacing:14.025000px;}
.wse1{word-spacing:14.100000px;}
.wsf2{word-spacing:14.175000px;}
.ws27{word-spacing:14.328000px;}
.ws81{word-spacing:16.146000px;}
.ws11{word-spacing:19.224000px;}
.wsb{word-spacing:20.088000px;}
.wsf1{word-spacing:21.375000px;}
.ws30{word-spacing:24.984000px;}
.ws12{word-spacing:26.280000px;}
.ws2a{word-spacing:27.072000px;}
.ws1d{word-spacing:28.584000px;}
.ws32{word-spacing:28.872000px;}
.wsd{word-spacing:30.528000px;}
.ws1c{word-spacing:30.966000px;}
.ws13{word-spacing:33.624000px;}
.ws31{word-spacing:42.192000px;}
.ws1e{word-spacing:44.712000px;}
.ws1a{word-spacing:46.728000px;}
.ws23{word-spacing:47.160000px;}
.ws2f{word-spacing:49.464000px;}
.ws21{word-spacing:53.568000px;}
.ws33{word-spacing:78.336000px;}
.ws0{word-spacing:652.128600px;}
._15{margin-left:-22.163100px;}
._7{margin-left:-7.778400px;}
._2{margin-left:-6.090000px;}
._1d{margin-left:-5.070000px;}
._5{margin-left:-4.063800px;}
._3{margin-left:-2.847900px;}
._0{margin-left:-1.510800px;}
._4{width:1.731300px;}
._a{width:3.120000px;}
._f{width:4.836000px;}
._c{width:6.084000px;}
._13{width:8.088000px;}
._19{width:9.549600px;}
._14{width:23.254500px;}
._1a{width:27.966600px;}
._1c{width:28.980600px;}
._1b{width:31.164600px;}
._12{width:34.011300px;}
._11{width:36.266700px;}
._18{width:39.253500px;}
._16{width:43.629000px;}
._b{width:46.359000px;}
._e{width:47.373000px;}
._d{width:49.557000px;}
._10{width:50.727000px;}
._17{width:54.549000px;}
._9{width:56.561700px;}
._6{width:64.139760px;}
._1{width:1572.294600px;}
._8{width:1577.964000px;}
.fc2{color:rgb(139,149,156);}
.fc1{color:rgb(144,56,183);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:34.980000px;}
.fs5{font-size:50.721000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:75.000000px;}
.fs6{font-size:78.000000px;}
.fs4{font-size:87.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:42.999750px;}
.y1c6{bottom:80.205000px;}
.yc7{bottom:84.636450px;}
.y73{bottom:85.039350px;}
.y4f{bottom:85.039500px;}
.yd{bottom:85.039650px;}
.y1a3{bottom:85.968600px;}
.ybe{bottom:88.940400px;}
.yc0{bottom:91.340400px;}
.ybc{bottom:94.160850px;}
.yc{bottom:103.534650px;}
.y24a{bottom:103.891500px;}
.y1c5{bottom:104.205000px;}
.yee{bottom:106.839450px;}
.y4e{bottom:109.146450px;}
.y72{bottom:109.179300px;}
.y117{bottom:109.274250px;}
.y98{bottom:109.287750px;}
.y182{bottom:109.428900px;}
.y20f{bottom:109.429200px;}
.y1ee{bottom:109.558200px;}
.y15c{bottom:109.563600px;}
.y1a2{bottom:109.968600px;}
.y135{bottom:110.025450px;}
.yc6{bottom:112.940400px;}
.ybd{bottom:117.244200px;}
.ybb{bottom:118.160850px;}
.ybf{bottom:119.644350px;}
.y249{bottom:126.391500px;}
.y1c4{bottom:128.205000px;}
.yed{bottom:128.639400px;}
.y4d{bottom:133.253550px;}
.y116{bottom:133.509300px;}
.y181{bottom:133.818600px;}
.y20e{bottom:133.818750px;}
.y1a1{bottom:133.968600px;}
.y1ed{bottom:134.076750px;}
.y15b{bottom:134.087550px;}
.y134{bottom:135.011850px;}
.y97{bottom:137.787900px;}
.y28{bottom:146.844600px;}
.y2b{bottom:147.524850px;}
.yec{bottom:150.439200px;}
.y1c3{bottom:152.205000px;}
.y4c{bottom:157.360500px;}
.y115{bottom:157.744200px;}
.y1a0{bottom:157.968600px;}
.y180{bottom:158.208300px;}
.y20d{bottom:158.208450px;}
.y1ec{bottom:158.595450px;}
.y15a{bottom:158.611500px;}
.y71{bottom:158.831100px;}
.y96{bottom:162.036150px;}
.yba{bottom:163.420650px;}
.y133{bottom:164.250000px;}
.y248{bottom:165.899550px;}
.y27{bottom:168.444600px;}
.y2a{bottom:169.124850px;}
.yeb{bottom:172.239150px;}
.y1c2{bottom:176.205000px;}
.y4b{bottom:181.467750px;}
.y19f{bottom:181.968600px;}
.y114{bottom:181.979100px;}
.y17f{bottom:182.598000px;}
.y20c{bottom:182.598150px;}
.y70{bottom:182.971050px;}
.y1eb{bottom:183.114000px;}
.y159{bottom:183.135600px;}
.y247{bottom:188.399550px;}
.y26{bottom:190.044600px;}
.y29{bottom:190.724850px;}
.yb9{bottom:191.724600px;}
.yea{bottom:194.039100px;}
.y1c1{bottom:200.205000px;}
.y19e{bottom:205.968600px;}
.y113{bottom:206.214000px;}
.y17e{bottom:206.987700px;}
.y20b{bottom:206.987850px;}
.y1ea{bottom:207.632700px;}
.y158{bottom:207.659550px;}
.y246{bottom:210.899550px;}
.y95{bottom:211.796250px;}
.y132{bottom:214.748100px;}
.ye9{bottom:215.839050px;}
.y1c0{bottom:224.205000px;}
.y19d{bottom:229.968600px;}
.y112{bottom:230.448900px;}
.y4a{bottom:231.086550px;}
.y17d{bottom:231.377250px;}
.y20a{bottom:231.377400px;}
.y1e9{bottom:232.151400px;}
.y157{bottom:232.183650px;}
.y94{bottom:236.044500px;}
.y25{bottom:238.956300px;}
.y131{bottom:239.734350px;}
.ye8{bottom:241.890900px;}
.y1bf{bottom:248.205000px;}
.y6f{bottom:249.630600px;}
.y245{bottom:250.407300px;}
.y19c{bottom:253.968600px;}
.y111{bottom:254.683800px;}
.y17c{bottom:255.766950px;}
.y209{bottom:255.767100px;}
.y1e8{bottom:256.670100px;}
.y156{bottom:256.707600px;}
.y93{bottom:260.292750px;}
.y24{bottom:260.556300px;}
.y130{bottom:264.720600px;}
.y1be{bottom:272.205000px;}
.y244{bottom:272.907300px;}
.y6e{bottom:273.770550px;}
.y19b{bottom:277.968600px;}
.y110{bottom:278.918850px;}
.y17b{bottom:280.156650px;}
.y208{bottom:280.156800px;}
.y1e7{bottom:281.188800px;}
.y155{bottom:281.231550px;}
.y23{bottom:282.156300px;}
.y92{bottom:284.541000px;}
.y12f{bottom:289.706850px;}
.ye7{bottom:291.602700px;}
.y1bd{bottom:296.205000px;}
.y49{bottom:297.713250px;}
.y6d{bottom:297.910500px;}
.y19a{bottom:301.968600px;}
.y10f{bottom:303.153750px;}
.y22{bottom:303.756300px;}
.y17a{bottom:304.546350px;}
.y207{bottom:304.546500px;}
.y1e6{bottom:305.707350px;}
.y154{bottom:305.755650px;}
.y91{bottom:308.789250px;}
.y243{bottom:312.415200px;}
.y12e{bottom:314.693100px;}
.ye6{bottom:315.802500px;}
.y1bc{bottom:320.205000px;}
.y48{bottom:321.820200px;}
.y6c{bottom:322.050450px;}
.y21{bottom:325.356300px;}
.y1{bottom:325.698450px;}
.y199{bottom:325.968600px;}
.y22a{bottom:325.968750px;}
.y2c{bottom:326.938650px;}
.y10e{bottom:327.388650px;}
.y179{bottom:328.935900px;}
.y206{bottom:328.936200px;}
.y1e5{bottom:330.226050px;}
.y153{bottom:330.279750px;}
.y90{bottom:333.037500px;}
.y264{bottom:333.917250px;}
.y242{bottom:334.915200px;}
.y12d{bottom:339.679350px;}
.ye5{bottom:340.002450px;}
.y1bb{bottom:344.205000px;}
.y47{bottom:345.927300px;}
.yb6{bottom:346.000200px;}
.y6b{bottom:346.190400px;}
.y20{bottom:346.956300px;}
.y198{bottom:349.968600px;}
.y229{bottom:349.968750px;}
.y10d{bottom:351.623550px;}
.y178{bottom:353.325600px;}
.y205{bottom:353.325750px;}
.y1e4{bottom:354.744750px;}
.y152{bottom:354.803700px;}
.y263{bottom:356.417250px;}
.y8f{bottom:357.285750px;}
.y241{bottom:357.415200px;}
.ye4{bottom:364.202400px;}
.y12c{bottom:364.665600px;}
.y1ba{bottom:368.205000px;}
.y1f{bottom:368.556300px;}
.yb5{bottom:370.000200px;}
.y46{bottom:370.034400px;}
.y6a{bottom:370.330350px;}
.y197{bottom:373.968600px;}
.y228{bottom:373.968750px;}
.y10c{bottom:375.858600px;}
.y177{bottom:377.715300px;}
.y204{bottom:377.715450px;}
.y1e3{bottom:379.263450px;}
.y151{bottom:379.327650px;}
.y240{bottom:379.915200px;}
.y8e{bottom:385.785900px;}
.ye3{bottom:388.402350px;}
.y12b{bottom:389.651850px;}
.y1e{bottom:390.156300px;}
.y1b9{bottom:392.205000px;}
.yb4{bottom:394.000200px;}
.y45{bottom:394.141500px;}
.y69{bottom:394.470300px;}
.y262{bottom:395.925000px;}
.y196{bottom:397.968600px;}
.y227{bottom:397.968750px;}
.yc5{bottom:397.992300px;}
.y10b{bottom:400.093500px;}
.y176{bottom:402.105000px;}
.y203{bottom:402.105150px;}
.y1e2{bottom:403.782000px;}
.y150{bottom:403.851750px;}
.y1d{bottom:411.756300px;}
.ye2{bottom:412.602300px;}
.y12a{bottom:414.638100px;}
.y1b8{bottom:416.205000px;}
.yb3{bottom:418.000200px;}
.y44{bottom:418.248450px;}
.y68{bottom:418.610250px;}
.y23f{bottom:419.423100px;}
.y195{bottom:421.968600px;}
.y226{bottom:421.968750px;}
.yc4{bottom:422.044350px;}
.y10a{bottom:424.328400px;}
.y175{bottom:426.494550px;}
.y202{bottom:426.494850px;}
.y1e1{bottom:428.300700px;}
.y14f{bottom:428.375700px;}
.y1c{bottom:433.356300px;}
.y261{bottom:435.432900px;}
.y8d{bottom:435.546000px;}
.ye1{bottom:436.802250px;}
.y129{bottom:439.624350px;}
.y1b7{bottom:440.205000px;}
.yb2{bottom:442.000200px;}
.y43{bottom:442.355550px;}
.y67{bottom:442.750050px;}
.yc3{bottom:443.644200px;}
.y194{bottom:445.968600px;}
.y225{bottom:445.968750px;}
.y109{bottom:448.563300px;}
.y174{bottom:450.884250px;}
.y201{bottom:450.884550px;}
.y1e0{bottom:452.819250px;}
.y14e{bottom:452.899800px;}
.y1b{bottom:454.956300px;}
.y223{bottom:455.136450px;}
.y260{bottom:457.932900px;}
.y23e{bottom:458.931000px;}
.y8c{bottom:459.794250px;}
.ye0{bottom:461.002050px;}
.y1b6{bottom:464.205000px;}
.y128{bottom:464.610600px;}
.yc2{bottom:465.244200px;}
.yb1{bottom:466.000200px;}
.y42{bottom:466.462500px;}
.y66{bottom:466.890000px;}
.y193{bottom:469.968600px;}
.y108{bottom:472.798350px;}
.y173{bottom:475.273950px;}
.y222{bottom:475.274100px;}
.y1a{bottom:476.556300px;}
.y1df{bottom:477.337950px;}
.y14d{bottom:477.423750px;}
.y200{bottom:479.526150px;}
.y25f{bottom:480.432900px;}
.y23d{bottom:481.431000px;}
.y8b{bottom:484.042500px;}
.ydf{bottom:485.202000px;}
.yc1{bottom:486.844350px;}
.y1b5{bottom:488.205000px;}
.y127{bottom:489.596850px;}
.yb0{bottom:490.000200px;}
.y65{bottom:491.029950px;}
.y192{bottom:493.968600px;}
.y224{bottom:495.480450px;}
.y107{bottom:497.033250px;}
.y19{bottom:498.156300px;}
.y172{bottom:499.663650px;}
.y221{bottom:499.663800px;}
.y1de{bottom:501.856650px;}
.y14c{bottom:501.947850px;}
.y23c{bottom:503.931000px;}
.y8a{bottom:508.290600px;}
.yde{bottom:509.401950px;}
.y1b4{bottom:512.205000px;}
.yaf{bottom:514.000200px;}
.y64{bottom:515.169900px;}
.y41{bottom:516.081450px;}
.y191{bottom:517.968600px;}
.y126{bottom:518.835150px;}
.y18{bottom:519.756300px;}
.y25e{bottom:519.940800px;}
.y106{bottom:521.268150px;}
.y171{bottom:524.053350px;}
.y220{bottom:524.053500px;}
.y1dd{bottom:526.375350px;}
.y14b{bottom:526.471800px;}
.y1ff{bottom:529.427550px;}
.y89{bottom:532.538850px;}
.ydd{bottom:533.601900px;}
.y1b3{bottom:536.205000px;}
.yae{bottom:538.000200px;}
.y63{bottom:539.309850px;}
.y17{bottom:541.356300px;}
.y190{bottom:541.968600px;}
.y25d{bottom:542.440800px;}
.y23b{bottom:543.438750px;}
.y125{bottom:543.821400px;}
.y105{bottom:545.503050px;}
.y170{bottom:548.443050px;}
.y21f{bottom:548.443200px;}
.y1dc{bottom:550.893900px;}
.y14a{bottom:550.995900px;}
.y1fe{bottom:553.817250px;}
.y88{bottom:556.787100px;}
.ydc{bottom:557.801850px;}
.y1b2{bottom:560.205000px;}
.yad{bottom:562.000200px;}
.y16{bottom:562.956300px;}
.y62{bottom:563.449800px;}
.y25c{bottom:564.940800px;}
.y23a{bottom:565.938750px;}
.y18f{bottom:565.968600px;}
.y104{bottom:569.737950px;}
.y16f{bottom:572.832600px;}
.y21e{bottom:572.832750px;}
.y1db{bottom:575.412600px;}
.y149{bottom:575.519850px;}
.y1fd{bottom:578.206950px;}
.y87{bottom:581.035350px;}
.ydb{bottom:582.001800px;}
.y40{bottom:582.708150px;}
.y1b1{bottom:584.205000px;}
.y15{bottom:584.556300px;}
.yac{bottom:586.000200px;}
.y61{bottom:587.589750px;}
.y18e{bottom:589.968600px;}
.y103{bottom:593.972850px;}
.y16e{bottom:597.222300px;}
.y21d{bottom:597.222450px;}
.y1da{bottom:599.931300px;}
.y148{bottom:600.043950px;}
.y1fc{bottom:602.596650px;}
.y25b{bottom:604.448700px;}
.y86{bottom:605.283600px;}
.y239{bottom:605.446650px;}
.y14{bottom:606.156300px;}
.yda{bottom:606.201750px;}
.y3f{bottom:606.815250px;}
.y1b0{bottom:608.205000px;}
.yab{bottom:610.000200px;}
.y60{bottom:611.729700px;}
.y18d{bottom:613.968600px;}
.y102{bottom:618.207750px;}
.y16d{bottom:621.612000px;}
.y21c{bottom:621.612150px;}
.y1d9{bottom:624.450000px;}
.y147{bottom:624.567900px;}
.y25a{bottom:626.948700px;}
.y1fb{bottom:626.986200px;}
.y13{bottom:627.756300px;}
.y238{bottom:627.946650px;}
.y85{bottom:629.531850px;}
.yd9{bottom:630.401700px;}
.y3e{bottom:630.922200px;}
.y1af{bottom:632.205000px;}
.yaa{bottom:634.000200px;}
.y5f{bottom:635.869650px;}
.y18c{bottom:637.968600px;}
.y101{bottom:642.442800px;}
.y16c{bottom:646.001700px;}
.y21b{bottom:646.001850px;}
.y1d8{bottom:648.968550px;}
.y146{bottom:649.092000px;}
.y12{bottom:649.356300px;}
.y237{bottom:650.446650px;}
.y1fa{bottom:651.375900px;}
.y84{bottom:653.780100px;}
.yd8{bottom:654.601500px;}
.y3d{bottom:655.029300px;}
.y1ae{bottom:656.205000px;}
.ya9{bottom:658.000200px;}
.y5e{bottom:660.009600px;}
.y18b{bottom:661.968600px;}
.y259{bottom:666.456600px;}
.y100{bottom:666.677700px;}
.y16b{bottom:670.391400px;}
.y21a{bottom:670.391550px;}
.y11{bottom:670.956300px;}
.y236{bottom:672.946650px;}
.y1d7{bottom:673.487250px;}
.y145{bottom:673.615950px;}
.y1f9{bottom:675.765600px;}
.y83{bottom:678.028350px;}
.yd7{bottom:678.801450px;}
.y3c{bottom:679.136250px;}
.y1ad{bottom:680.205000px;}
.ya8{bottom:682.000200px;}
.y5d{bottom:684.149550px;}
.y18a{bottom:685.968600px;}
.y258{bottom:688.956600px;}
.yff{bottom:690.912600px;}
.y10{bottom:692.556300px;}
.y16a{bottom:694.780950px;}
.y219{bottom:694.781100px;}
.y1d6{bottom:698.005950px;}
.y144{bottom:698.140050px;}
.y1f8{bottom:700.155300px;}
.yb8{bottom:700.940400px;}
.y82{bottom:702.276600px;}
.yd6{bottom:703.001400px;}
.y3b{bottom:703.243350px;}
.y1ac{bottom:704.205000px;}
.ya7{bottom:706.000200px;}
.y5c{bottom:708.289500px;}
.y189{bottom:709.968600px;}
.y257{bottom:711.456600px;}
.y235{bottom:712.454550px;}
.yf{bottom:714.156300px;}
.yfe{bottom:715.147500px;}
.y169{bottom:719.170650px;}
.y218{bottom:719.170800px;}
.y1d5{bottom:722.524500px;}
.y143{bottom:722.664000px;}
.y1f7{bottom:724.545000px;}
.y81{bottom:726.524850px;}
.yd5{bottom:727.201350px;}
.y3a{bottom:727.350450px;}
.y1ab{bottom:728.205000px;}
.yb7{bottom:729.244200px;}
.ya6{bottom:730.000200px;}
.y5b{bottom:732.429450px;}
.y188{bottom:733.968600px;}
.y234{bottom:734.954550px;}
.ye{bottom:735.756300px;}
.yfd{bottom:739.382550px;}
.y168{bottom:743.560350px;}
.y217{bottom:743.560500px;}
.y1d4{bottom:747.043200px;}
.y142{bottom:747.188100px;}
.y1f6{bottom:748.934550px;}
.y80{bottom:750.773100px;}
.y256{bottom:750.964350px;}
.yd4{bottom:751.401150px;}
.y39{bottom:751.457400px;}
.ya5{bottom:754.000200px;}
.y1aa{bottom:756.457050px;}
.y5a{bottom:756.569250px;}
.y187{bottom:757.968600px;}
.yfc{bottom:763.617450px;}
.y167{bottom:767.950050px;}
.y216{bottom:767.950200px;}
.y1d3{bottom:771.561900px;}
.y141{bottom:771.712050px;}
.y1f5{bottom:773.324250px;}
.y255{bottom:773.464350px;}
.y233{bottom:774.462450px;}
.y7f{bottom:775.021350px;}
.y38{bottom:775.564500px;}
.yd3{bottom:775.601100px;}
.ya4{bottom:778.000200px;}
.y1a9{bottom:780.457050px;}
.y186{bottom:781.968600px;}
.yfb{bottom:787.852350px;}
.y166{bottom:792.339600px;}
.y215{bottom:792.339900px;}
.y1d2{bottom:796.080450px;}
.y140{bottom:796.236000px;}
.y232{bottom:796.962450px;}
.y1f4{bottom:797.713950px;}
.y7e{bottom:799.269600px;}
.y37{bottom:799.671600px;}
.yd2{bottom:799.801050px;}
.ya3{bottom:802.000200px;}
.y185{bottom:805.968600px;}
.y59{bottom:806.221050px;}
.yfa{bottom:812.087250px;}
.y254{bottom:812.972250px;}
.y165{bottom:816.729300px;}
.y214{bottom:816.729450px;}
.yb{bottom:820.303050px;}
.y1d1{bottom:820.599150px;}
.y13f{bottom:820.760100px;}
.y1f3{bottom:822.103650px;}
.y7d{bottom:823.517850px;}
.y36{bottom:823.778550px;}
.y124{bottom:823.952400px;}
.yd1{bottom:824.001000px;}
.ya2{bottom:826.000200px;}
.y184{bottom:829.968600px;}
.y1a8{bottom:829.968750px;}
.y122{bottom:832.052400px;}
.y253{bottom:835.472250px;}
.yf9{bottom:836.322300px;}
.y231{bottom:836.470350px;}
.y11f{bottom:840.152400px;}
.y164{bottom:841.119000px;}
.y213{bottom:841.119150px;}
.y1d0{bottom:845.117850px;}
.y13e{bottom:845.284050px;}
.y1f2{bottom:846.493350px;}
.y7c{bottom:847.766100px;}
.y35{bottom:847.885650px;}
.yd0{bottom:848.200800px;}
.y121{bottom:848.252400px;}
.ya1{bottom:850.000200px;}
.ya{bottom:851.554950px;}
.y1a7{bottom:853.968750px;}
.y11e{bottom:856.352400px;}
.y252{bottom:857.972250px;}
.y230{bottom:858.970350px;}
.yf8{bottom:860.557200px;}
.y120{bottom:864.452400px;}
.y163{bottom:865.508550px;}
.y212{bottom:865.508850px;}
.y1cf{bottom:869.636550px;}
.y13d{bottom:869.808000px;}
.y1f1{bottom:870.882900px;}
.y34{bottom:871.992600px;}
.y7b{bottom:872.014200px;}
.ycf{bottom:872.400750px;}
.y123{bottom:872.552400px;}
.y58{bottom:872.880750px;}
.ya0{bottom:874.000200px;}
.y1a6{bottom:877.968750px;}
.y9{bottom:878.554950px;}
.y183{bottom:879.480450px;}
.y22f{bottom:881.470350px;}
.yf7{bottom:884.792100px;}
.y211{bottom:889.898400px;}
.y162{bottom:894.150300px;}
.y1ce{bottom:894.155250px;}
.y13c{bottom:894.332100px;}
.y1f0{bottom:895.272600px;}
.y33{bottom:896.099700px;}
.y7a{bottom:896.262450px;}
.yce{bottom:896.600700px;}
.y57{bottom:897.020550px;}
.y251{bottom:897.480150px;}
.y9f{bottom:898.000200px;}
.y1a5{bottom:901.968600px;}
.y11d{bottom:902.196150px;}
.y8{bottom:905.554950px;}
.yf6{bottom:909.027000px;}
.y11c{bottom:918.396150px;}
.y210{bottom:918.540000px;}
.y1cd{bottom:918.673800px;}
.y13b{bottom:918.856050px;}
.y1ef{bottom:919.662300px;}
.y250{bottom:919.980150px;}
.y32{bottom:920.206800px;}
.y79{bottom:920.510700px;}
.ycd{bottom:920.800650px;}
.y22e{bottom:920.978100px;}
.y56{bottom:921.160650px;}
.y9e{bottom:922.000200px;}
.y7{bottom:932.554950px;}
.y11b{bottom:934.596150px;}
.yf5{bottom:940.761900px;}
.y24f{bottom:942.480150px;}
.y1cc{bottom:943.192500px;}
.y13a{bottom:943.380000px;}
.y22d{bottom:943.478100px;}
.y161{bottom:944.051850px;}
.y31{bottom:944.313750px;}
.y78{bottom:944.758950px;}
.ycc{bottom:945.000600px;}
.y55{bottom:945.300450px;}
.y9d{bottom:946.000200px;}
.y1a4{bottom:951.480450px;}
.yf4{bottom:962.596950px;}
.y1cb{bottom:967.711050px;}
.y139{bottom:967.904100px;}
.y30{bottom:968.420850px;}
.y160{bottom:968.441550px;}
.y77{bottom:969.007200px;}
.ycb{bottom:969.200550px;}
.y54{bottom:969.440400px;}
.y9c{bottom:970.000200px;}
.y11a{bottom:973.929600px;}
.y6{bottom:976.562850px;}
.y24e{bottom:981.988050px;}
.y22c{bottom:982.986000px;}
.yf3{bottom:984.431700px;}
.y1ca{bottom:992.229750px;}
.y138{bottom:992.428200px;}
.y2f{bottom:992.527800px;}
.y15f{bottom:992.831250px;}
.y76{bottom:993.255450px;}
.yca{bottom:993.400500px;}
.y53{bottom:993.580350px;}
.y9b{bottom:994.000200px;}
.y119{bottom:994.715850px;}
.y5{bottom:1003.562850px;}
.y24d{bottom:1004.488050px;}
.yf2{bottom:1006.266750px;}
.y2e{bottom:1016.634900px;}
.y1c9{bottom:1016.748450px;}
.y137{bottom:1016.952150px;}
.y15e{bottom:1017.220800px;}
.y75{bottom:1017.503700px;}
.yc9{bottom:1017.600300px;}
.y52{bottom:1017.720300px;}
.y9a{bottom:1018.000200px;}
.y22b{bottom:1022.493900px;}
.yf1{bottom:1028.101650px;}
.y118{bottom:1041.013950px;}
.y1c8{bottom:1041.267000px;}
.y136{bottom:1041.476100px;}
.y15d{bottom:1041.610500px;}
.y74{bottom:1041.751950px;}
.yc8{bottom:1041.800250px;}
.y51{bottom:1041.860250px;}
.y99{bottom:1042.000200px;}
.y4{bottom:1043.318700px;}
.y24c{bottom:1043.995950px;}
.yf0{bottom:1049.936550px;}
.y1c7{bottom:1065.785700px;}
.y50{bottom:1066.000200px;}
.y2d{bottom:1066.253700px;}
.y24b{bottom:1066.495950px;}
.y3{bottom:1069.418700px;}
.yef{bottom:1071.771450px;}
.ha{height:35.100000px;}
.h12{height:40.230000px;}
.h13{height:40.284000px;}
.h11{height:49.170000px;}
.hf{height:49.236000px;}
.hc{height:49.752000px;}
.h10{height:50.027344px;}
.he{height:53.640000px;}
.h9{height:55.080000px;}
.hd{height:58.110000px;}
.h4{height:60.204000px;}
.h3{height:61.632000px;}
.h6{height:62.190000px;}
.h5{height:64.069932px;}
.hb{height:66.768000px;}
.h14{height:68.850000px;}
.h8{height:70.858667px;}
.h7{height:71.604000px;}
.h2{height:77.040000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:23.651550px;}
.x2{left:85.039350px;}
.x5{left:93.875700px;}
.x3{left:106.443150px;}
.xe{left:127.559100px;}
.x19{left:130.843200px;}
.x1d{left:135.025950px;}
.x18{left:137.935350px;}
.x4{left:139.657200px;}
.x1f{left:141.366750px;}
.x15{left:145.710750px;}
.x2f{left:151.707450px;}
.x10{left:157.322850px;}
.x1b{left:168.139350px;}
.xf{left:181.559100px;}
.x11{left:182.834700px;}
.x6{left:191.378700px;}
.x17{left:210.283050px;}
.x21{left:218.073900px;}
.x20{left:221.091150px;}
.x30{left:225.903750px;}
.x12{left:229.606350px;}
.x31{left:233.585100px;}
.x13{left:247.426200px;}
.x16{left:248.551050px;}
.x14{left:251.636550px;}
.x1c{left:255.535200px;}
.x22{left:301.564800px;}
.x24{left:303.083400px;}
.x23{left:304.852050px;}
.x1e{left:309.427350px;}
.x7{left:314.648400px;}
.x32{left:317.001750px;}
.x1a{left:332.959950px;}
.x8{left:366.420750px;}
.x25{left:381.289200px;}
.xa{left:383.862750px;}
.x27{left:384.913950px;}
.x26{left:391.353300px;}
.x33{left:395.808000px;}
.x9{left:418.474500px;}
.x28{left:461.013750px;}
.x29{left:466.035450px;}
.x34{left:468.046800px;}
.xc{left:471.968550px;}
.x35{left:475.532550px;}
.x2a{left:540.738150px;}
.x37{left:544.801350px;}
.x36{left:547.771350px;}
.x38{left:555.256950px;}
.x2b{left:620.462550px;}
.x3a{left:626.145750px;}
.x39{left:629.473350px;}
.x3b{left:634.981350px;}
.xb{left:671.286300px;}
.x2c{left:700.186950px;}
.x2d{left:702.481800px;}
.x3c{left:707.031300px;}
.x2e{left:713.207250px;}
.x1{left:836.574900px;}
@media print{
.v3{vertical-align:-48.000000pt;}
.v4{vertical-align:-17.760000pt;}
.v1{vertical-align:-3.921600pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.752000pt;}
.ls15{letter-spacing:-3.050667pt;}
.ls3{letter-spacing:-1.248000pt;}
.ls24{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-1.040000pt;}
.ls1d{letter-spacing:-0.970667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.901333pt;}
.ls22{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls23{letter-spacing:-0.666667pt;}
.lsf{letter-spacing:-0.624000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.028267pt;}
.ls14{letter-spacing:0.028800pt;}
.ls13{letter-spacing:0.069333pt;}
.ls16{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.525333pt;}
.ls11{letter-spacing:1.280533pt;}
.ls6{letter-spacing:1.609067pt;}
.ls1e{letter-spacing:1.813333pt;}
.ls8{letter-spacing:1.989333pt;}
.ls20{letter-spacing:2.073600pt;}
.lsc{letter-spacing:2.114667pt;}
.ls18{letter-spacing:2.209600pt;}
.ls1c{letter-spacing:2.674133pt;}
.lsa{letter-spacing:2.925333pt;}
.ls9{letter-spacing:2.925867pt;}
.ls21{letter-spacing:2.928000pt;}
.ls1{letter-spacing:3.046400pt;}
.ls7{letter-spacing:3.259200pt;}
.ls1f{letter-spacing:3.270400pt;}
.ls1b{letter-spacing:4.757867pt;}
.lsd{letter-spacing:4.773333pt;}
.lse{letter-spacing:5.932267pt;}
.ls1a{letter-spacing:6.170667pt;}
.ls17{letter-spacing:6.209600pt;}
.ls19{letter-spacing:7.705067pt;}
.ws35{word-spacing:-69.333333pt;}
.wsd8{word-spacing:-66.666667pt;}
.ws37{word-spacing:-34.666667pt;}
.wsd2{word-spacing:-33.973333pt;}
.wsd9{word-spacing:-33.333333pt;}
.ws2{word-spacing:-17.333333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws36{word-spacing:-12.896000pt;}
.wsd7{word-spacing:-12.400000pt;}
.wsc3{word-spacing:-12.272000pt;}
.wscb{word-spacing:-12.202667pt;}
.wsc4{word-spacing:-11.994667pt;}
.wsec{word-spacing:-11.733333pt;}
.ws38{word-spacing:-11.648000pt;}
.wsda{word-spacing:-11.600000pt;}
.wseb{word-spacing:-11.333333pt;}
.ws34{word-spacing:-10.469333pt;}
.ws68{word-spacing:-9.664000pt;}
.ws9{word-spacing:-6.848000pt;}
.wsa1{word-spacing:-6.592000pt;}
.ws1{word-spacing:-5.783360pt;}
.ws10{word-spacing:-5.184000pt;}
.ws15{word-spacing:-4.992000pt;}
.ws7{word-spacing:-4.608000pt;}
.ws25{word-spacing:-3.712000pt;}
.ws8{word-spacing:-3.520000pt;}
.ws2c{word-spacing:-3.136000pt;}
.ws7e{word-spacing:-3.120000pt;}
.wsc{word-spacing:-3.008000pt;}
.wsbe{word-spacing:-2.773333pt;}
.ws87{word-spacing:-2.634667pt;}
.ws26{word-spacing:-2.624000pt;}
.ws9f{word-spacing:-2.565333pt;}
.ws20{word-spacing:-2.560000pt;}
.ws88{word-spacing:-2.496000pt;}
.wsdb{word-spacing:-2.466667pt;}
.ws8e{word-spacing:-2.426667pt;}
.wse4{word-spacing:-2.333333pt;}
.ws90{word-spacing:-2.288000pt;}
.wsbc{word-spacing:-2.218667pt;}
.ws4f{word-spacing:-2.149333pt;}
.wsf5{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-2.080000pt;}
.wsd4{word-spacing:-2.010667pt;}
.wsa0{word-spacing:-1.941333pt;}
.wsac{word-spacing:-1.872000pt;}
.wsf3{word-spacing:-1.866667pt;}
.wscf{word-spacing:-1.802667pt;}
.wsb8{word-spacing:-1.733333pt;}
.ws57{word-spacing:-1.664000pt;}
.ws3d{word-spacing:-1.594667pt;}
.ws44{word-spacing:-1.525333pt;}
.ws76{word-spacing:-1.456000pt;}
.ws5f{word-spacing:-1.386667pt;}
.ws73{word-spacing:-1.317333pt;}
.wsae{word-spacing:-1.248000pt;}
.ws5{word-spacing:-1.226667pt;}
.ws91{word-spacing:-1.178667pt;}
.wsdd{word-spacing:-1.133333pt;}
.ws43{word-spacing:-1.109333pt;}
.wsb0{word-spacing:-1.040000pt;}
.ws72{word-spacing:-0.970667pt;}
.ws74{word-spacing:-0.901333pt;}
.ws79{word-spacing:-0.896000pt;}
.ws75{word-spacing:-0.832000pt;}
.ws98{word-spacing:-0.762667pt;}
.ws2d{word-spacing:-0.704000pt;}
.ws6f{word-spacing:-0.693333pt;}
.ws6{word-spacing:-0.640000pt;}
.ws7c{word-spacing:-0.624000pt;}
.ws52{word-spacing:-0.554667pt;}
.ws6e{word-spacing:-0.485333pt;}
.wsed{word-spacing:-0.466667pt;}
.wsf{word-spacing:-0.448000pt;}
.ws85{word-spacing:-0.416000pt;}
.wsb3{word-spacing:-0.346667pt;}
.wsf7{word-spacing:-0.333333pt;}
.ws70{word-spacing:-0.277333pt;}
.ws4d{word-spacing:-0.208000pt;}
.ws64{word-spacing:-0.138667pt;}
.wsb4{word-spacing:-0.069333pt;}
.wse5{word-spacing:-0.066667pt;}
.ws4{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.069333pt;}
.ws5a{word-spacing:0.138667pt;}
.ws59{word-spacing:0.208000pt;}
.ws6d{word-spacing:0.277333pt;}
.ws47{word-spacing:0.346667pt;}
.ws4c{word-spacing:0.416000pt;}
.ws56{word-spacing:0.485333pt;}
.wsc5{word-spacing:0.554667pt;}
.ws92{word-spacing:0.624000pt;}
.wse3{word-spacing:0.666667pt;}
.ws8c{word-spacing:0.693333pt;}
.wsde{word-spacing:0.733333pt;}
.ws82{word-spacing:0.762667pt;}
.wse6{word-spacing:0.800000pt;}
.wsaa{word-spacing:0.832000pt;}
.ws77{word-spacing:0.901333pt;}
.ws78{word-spacing:0.960000pt;}
.ws6a{word-spacing:0.970667pt;}
.ws39{word-spacing:1.040000pt;}
.ws4e{word-spacing:1.109333pt;}
.wsa3{word-spacing:1.152000pt;}
.ws9c{word-spacing:1.178667pt;}
.ws7f{word-spacing:1.248000pt;}
.ws40{word-spacing:1.317333pt;}
.wsef{word-spacing:1.333333pt;}
.ws51{word-spacing:1.386667pt;}
.ws7b{word-spacing:1.456000pt;}
.ws3a{word-spacing:1.525333pt;}
.wsb5{word-spacing:1.594667pt;}
.ws28{word-spacing:1.664000pt;}
.ws7d{word-spacing:1.733333pt;}
.wsa4{word-spacing:1.792000pt;}
.wsf0{word-spacing:1.800000pt;}
.ws4b{word-spacing:1.802667pt;}
.ws24{word-spacing:1.856000pt;}
.ws63{word-spacing:1.872000pt;}
.wse7{word-spacing:1.933333pt;}
.ws42{word-spacing:1.941333pt;}
.wsa9{word-spacing:2.010667pt;}
.ws9e{word-spacing:2.080000pt;}
.ws71{word-spacing:2.149333pt;}
.ws65{word-spacing:2.218667pt;}
.wsa6{word-spacing:2.288000pt;}
.ws8f{word-spacing:2.357333pt;}
.ws93{word-spacing:2.426667pt;}
.ws86{word-spacing:2.496000pt;}
.ws2e{word-spacing:2.560000pt;}
.wscc{word-spacing:2.565333pt;}
.ws5e{word-spacing:2.634667pt;}
.ws69{word-spacing:2.704000pt;}
.wsb9{word-spacing:2.773333pt;}
.ws67{word-spacing:2.842667pt;}
.ws1f{word-spacing:2.880000pt;}
.wsab{word-spacing:2.912000pt;}
.ws94{word-spacing:2.981333pt;}
.ws45{word-spacing:3.050667pt;}
.wsdf{word-spacing:3.066667pt;}
.ws48{word-spacing:3.120000pt;}
.ws5b{word-spacing:3.189333pt;}
.ws14{word-spacing:3.200000pt;}
.ws60{word-spacing:3.258667pt;}
.ws54{word-spacing:3.328000pt;}
.ws3b{word-spacing:3.397333pt;}
.ws8b{word-spacing:3.466667pt;}
.ws89{word-spacing:3.536000pt;}
.wsb2{word-spacing:3.605333pt;}
.wse8{word-spacing:3.666667pt;}
.wsad{word-spacing:3.674667pt;}
.wsf6{word-spacing:3.733333pt;}
.wsaf{word-spacing:3.744000pt;}
.ws3c{word-spacing:3.813333pt;}
.wsb6{word-spacing:3.882667pt;}
.wsea{word-spacing:3.933333pt;}
.ws84{word-spacing:3.952000pt;}
.ws19{word-spacing:3.968000pt;}
.ws41{word-spacing:4.021333pt;}
.wsbf{word-spacing:4.090667pt;}
.wscd{word-spacing:4.160000pt;}
.wsd0{word-spacing:4.229333pt;}
.wsf4{word-spacing:4.266667pt;}
.ws97{word-spacing:4.298667pt;}
.wsd3{word-spacing:4.368000pt;}
.wsd6{word-spacing:4.437333pt;}
.wsc6{word-spacing:4.506667pt;}
.ws3e{word-spacing:4.576000pt;}
.ws95{word-spacing:4.645333pt;}
.wsc7{word-spacing:4.784000pt;}
.wsba{word-spacing:4.853333pt;}
.wsbb{word-spacing:4.922667pt;}
.wsa7{word-spacing:4.992000pt;}
.ws49{word-spacing:5.061333pt;}
.ws58{word-spacing:5.130667pt;}
.wsd1{word-spacing:5.200000pt;}
.ws53{word-spacing:5.269333pt;}
.wsca{word-spacing:5.338667pt;}
.wsa2{word-spacing:5.376000pt;}
.ws96{word-spacing:5.408000pt;}
.ws55{word-spacing:5.477333pt;}
.wsc0{word-spacing:5.546667pt;}
.ws83{word-spacing:5.616000pt;}
.wsce{word-spacing:5.685333pt;}
.wse9{word-spacing:5.733333pt;}
.ws6c{word-spacing:5.754667pt;}
.ws7a{word-spacing:5.824000pt;}
.wsc8{word-spacing:5.962667pt;}
.ws66{word-spacing:6.032000pt;}
.ws8d{word-spacing:6.101333pt;}
.wsb1{word-spacing:6.170667pt;}
.ws46{word-spacing:6.240000pt;}
.wsbd{word-spacing:6.309333pt;}
.ws99{word-spacing:6.378667pt;}
.wse2{word-spacing:6.400000pt;}
.ws9b{word-spacing:6.517333pt;}
.ws4a{word-spacing:6.656000pt;}
.wsc2{word-spacing:6.725333pt;}
.ws62{word-spacing:6.794667pt;}
.ws80{word-spacing:6.864000pt;}
.ws5c{word-spacing:6.933333pt;}
.ws9a{word-spacing:7.002667pt;}
.wsb7{word-spacing:7.072000pt;}
.wsa8{word-spacing:7.210667pt;}
.wsa5{word-spacing:7.349333pt;}
.wsc9{word-spacing:7.418667pt;}
.ws29{word-spacing:7.552000pt;}
.wsc1{word-spacing:7.557333pt;}
.ws6b{word-spacing:7.696000pt;}
.wsd5{word-spacing:7.834667pt;}
.ws16{word-spacing:8.960000pt;}
.ws61{word-spacing:9.152000pt;}
.ws22{word-spacing:9.280000pt;}
.ws9d{word-spacing:9.429333pt;}
.ws50{word-spacing:9.706667pt;}
.wse{word-spacing:10.176000pt;}
.ws17{word-spacing:10.240000pt;}
.ws1b{word-spacing:10.560000pt;}
.ws8a{word-spacing:10.677333pt;}
.wse0{word-spacing:11.133333pt;}
.ws18{word-spacing:11.712000pt;}
.wsee{word-spacing:11.933333pt;}
.wsa{word-spacing:11.968000pt;}
.ws2b{word-spacing:12.160000pt;}
.wsdc{word-spacing:12.466667pt;}
.wse1{word-spacing:12.533333pt;}
.wsf2{word-spacing:12.600000pt;}
.ws27{word-spacing:12.736000pt;}
.ws81{word-spacing:14.352000pt;}
.ws11{word-spacing:17.088000pt;}
.wsb{word-spacing:17.856000pt;}
.wsf1{word-spacing:19.000000pt;}
.ws30{word-spacing:22.208000pt;}
.ws12{word-spacing:23.360000pt;}
.ws2a{word-spacing:24.064000pt;}
.ws1d{word-spacing:25.408000pt;}
.ws32{word-spacing:25.664000pt;}
.wsd{word-spacing:27.136000pt;}
.ws1c{word-spacing:27.525333pt;}
.ws13{word-spacing:29.888000pt;}
.ws31{word-spacing:37.504000pt;}
.ws1e{word-spacing:39.744000pt;}
.ws1a{word-spacing:41.536000pt;}
.ws23{word-spacing:41.920000pt;}
.ws2f{word-spacing:43.968000pt;}
.ws21{word-spacing:47.616000pt;}
.ws33{word-spacing:69.632000pt;}
.ws0{word-spacing:579.669867pt;}
._15{margin-left:-19.700533pt;}
._7{margin-left:-6.914133pt;}
._2{margin-left:-5.413333pt;}
._1d{margin-left:-4.506667pt;}
._5{margin-left:-3.612267pt;}
._3{margin-left:-2.531467pt;}
._0{margin-left:-1.342933pt;}
._4{width:1.538933pt;}
._a{width:2.773333pt;}
._f{width:4.298667pt;}
._c{width:5.408000pt;}
._13{width:7.189333pt;}
._19{width:8.488533pt;}
._14{width:20.670667pt;}
._1a{width:24.859200pt;}
._1c{width:25.760533pt;}
._1b{width:27.701867pt;}
._12{width:30.232267pt;}
._11{width:32.237067pt;}
._18{width:34.892000pt;}
._16{width:38.781333pt;}
._b{width:41.208000pt;}
._e{width:42.109333pt;}
._d{width:44.050667pt;}
._10{width:45.090667pt;}
._17{width:48.488000pt;}
._9{width:50.277067pt;}
._6{width:57.013120pt;}
._1{width:1397.595200pt;}
._8{width:1402.634667pt;}
.fs7{font-size:31.093333pt;}
.fs5{font-size:45.085333pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:66.666667pt;}
.fs6{font-size:69.333333pt;}
.fs4{font-size:77.333333pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:38.222000pt;}
.y1c6{bottom:71.293333pt;}
.yc7{bottom:75.232400pt;}
.y73{bottom:75.590533pt;}
.y4f{bottom:75.590667pt;}
.yd{bottom:75.590800pt;}
.y1a3{bottom:76.416533pt;}
.ybe{bottom:79.058133pt;}
.yc0{bottom:81.191467pt;}
.ybc{bottom:83.698533pt;}
.yc{bottom:92.030800pt;}
.y24a{bottom:92.348000pt;}
.y1c5{bottom:92.626667pt;}
.yee{bottom:94.968400pt;}
.y4e{bottom:97.019067pt;}
.y72{bottom:97.048267pt;}
.y117{bottom:97.132667pt;}
.y98{bottom:97.144667pt;}
.y182{bottom:97.270133pt;}
.y20f{bottom:97.270400pt;}
.y1ee{bottom:97.385067pt;}
.y15c{bottom:97.389867pt;}
.y1a2{bottom:97.749867pt;}
.y135{bottom:97.800400pt;}
.yc6{bottom:100.391467pt;}
.ybd{bottom:104.217067pt;}
.ybb{bottom:105.031867pt;}
.ybf{bottom:106.350533pt;}
.y249{bottom:112.348000pt;}
.y1c4{bottom:113.960000pt;}
.yed{bottom:114.346133pt;}
.y4d{bottom:118.447600pt;}
.y116{bottom:118.674933pt;}
.y181{bottom:118.949867pt;}
.y20e{bottom:118.950000pt;}
.y1a1{bottom:119.083200pt;}
.y1ed{bottom:119.179333pt;}
.y15b{bottom:119.188933pt;}
.y134{bottom:120.010533pt;}
.y97{bottom:122.478133pt;}
.y28{bottom:130.528533pt;}
.y2b{bottom:131.133200pt;}
.yec{bottom:133.723733pt;}
.y1c3{bottom:135.293333pt;}
.y4c{bottom:139.876000pt;}
.y115{bottom:140.217067pt;}
.y1a0{bottom:140.416533pt;}
.y180{bottom:140.629600pt;}
.y20d{bottom:140.629733pt;}
.y1ec{bottom:140.973733pt;}
.y15a{bottom:140.988000pt;}
.y71{bottom:141.183200pt;}
.y96{bottom:144.032133pt;}
.yba{bottom:145.262800pt;}
.y133{bottom:146.000000pt;}
.y248{bottom:147.466267pt;}
.y27{bottom:149.728533pt;}
.y2a{bottom:150.333200pt;}
.yeb{bottom:153.101467pt;}
.y1c2{bottom:156.626667pt;}
.y4b{bottom:161.304667pt;}
.y19f{bottom:161.749867pt;}
.y114{bottom:161.759200pt;}
.y17f{bottom:162.309333pt;}
.y20c{bottom:162.309467pt;}
.y70{bottom:162.640933pt;}
.y1eb{bottom:162.768000pt;}
.y159{bottom:162.787200pt;}
.y247{bottom:167.466267pt;}
.y26{bottom:168.928533pt;}
.y29{bottom:169.533200pt;}
.yb9{bottom:170.421867pt;}
.yea{bottom:172.479200pt;}
.y1c1{bottom:177.960000pt;}
.y19e{bottom:183.083200pt;}
.y113{bottom:183.301333pt;}
.y17e{bottom:183.989067pt;}
.y20b{bottom:183.989200pt;}
.y1ea{bottom:184.562400pt;}
.y158{bottom:184.586267pt;}
.y246{bottom:187.466267pt;}
.y95{bottom:188.263333pt;}
.y132{bottom:190.887200pt;}
.ye9{bottom:191.856933pt;}
.y1c0{bottom:199.293333pt;}
.y19d{bottom:204.416533pt;}
.y112{bottom:204.843467pt;}
.y4a{bottom:205.410267pt;}
.y17d{bottom:205.668667pt;}
.y20a{bottom:205.668800pt;}
.y1e9{bottom:206.356800pt;}
.y157{bottom:206.385467pt;}
.y94{bottom:209.817333pt;}
.y25{bottom:212.405600pt;}
.y131{bottom:213.097200pt;}
.ye8{bottom:215.014133pt;}
.y1bf{bottom:220.626667pt;}
.y6f{bottom:221.893867pt;}
.y245{bottom:222.584267pt;}
.y19c{bottom:225.749867pt;}
.y111{bottom:226.385600pt;}
.y17c{bottom:227.348400pt;}
.y209{bottom:227.348533pt;}
.y1e8{bottom:228.151200pt;}
.y156{bottom:228.184533pt;}
.y93{bottom:231.371333pt;}
.y24{bottom:231.605600pt;}
.y130{bottom:235.307200pt;}
.y1be{bottom:241.960000pt;}
.y244{bottom:242.584267pt;}
.y6e{bottom:243.351600pt;}
.y19b{bottom:247.083200pt;}
.y110{bottom:247.927867pt;}
.y17b{bottom:249.028133pt;}
.y208{bottom:249.028267pt;}
.y1e7{bottom:249.945600pt;}
.y155{bottom:249.983600pt;}
.y23{bottom:250.805600pt;}
.y92{bottom:252.925333pt;}
.y12f{bottom:257.517200pt;}
.ye7{bottom:259.202400pt;}
.y1bd{bottom:263.293333pt;}
.y49{bottom:264.634000pt;}
.y6d{bottom:264.809333pt;}
.y19a{bottom:268.416533pt;}
.y10f{bottom:269.470000pt;}
.y22{bottom:270.005600pt;}
.y17a{bottom:270.707867pt;}
.y207{bottom:270.708000pt;}
.y1e6{bottom:271.739867pt;}
.y154{bottom:271.782800pt;}
.y91{bottom:274.479333pt;}
.y243{bottom:277.702400pt;}
.y12e{bottom:279.727200pt;}
.ye6{bottom:280.713333pt;}
.y1bc{bottom:284.626667pt;}
.y48{bottom:286.062400pt;}
.y6c{bottom:286.267067pt;}
.y21{bottom:289.205600pt;}
.y1{bottom:289.509733pt;}
.y199{bottom:289.749867pt;}
.y22a{bottom:289.750000pt;}
.y2c{bottom:290.612133pt;}
.y10e{bottom:291.012133pt;}
.y179{bottom:292.387467pt;}
.y206{bottom:292.387733pt;}
.y1e5{bottom:293.534267pt;}
.y153{bottom:293.582000pt;}
.y90{bottom:296.033333pt;}
.y264{bottom:296.815333pt;}
.y242{bottom:297.702400pt;}
.y12d{bottom:301.937200pt;}
.ye5{bottom:302.224400pt;}
.y1bb{bottom:305.960000pt;}
.y47{bottom:307.490933pt;}
.yb6{bottom:307.555733pt;}
.y6b{bottom:307.724800pt;}
.y20{bottom:308.405600pt;}
.y198{bottom:311.083200pt;}
.y229{bottom:311.083333pt;}
.y10d{bottom:312.554267pt;}
.y178{bottom:314.067200pt;}
.y205{bottom:314.067333pt;}
.y1e4{bottom:315.328667pt;}
.y152{bottom:315.381067pt;}
.y263{bottom:316.815333pt;}
.y8f{bottom:317.587333pt;}
.y241{bottom:317.702400pt;}
.ye4{bottom:323.735467pt;}
.y12c{bottom:324.147200pt;}
.y1ba{bottom:327.293333pt;}
.y1f{bottom:327.605600pt;}
.yb5{bottom:328.889067pt;}
.y46{bottom:328.919467pt;}
.y6a{bottom:329.182533pt;}
.y197{bottom:332.416533pt;}
.y228{bottom:332.416667pt;}
.y10c{bottom:334.096533pt;}
.y177{bottom:335.746933pt;}
.y204{bottom:335.747067pt;}
.y1e3{bottom:337.123067pt;}
.y151{bottom:337.180133pt;}
.y240{bottom:337.702400pt;}
.y8e{bottom:342.920800pt;}
.ye3{bottom:345.246533pt;}
.y12b{bottom:346.357200pt;}
.y1e{bottom:346.805600pt;}
.y1b9{bottom:348.626667pt;}
.yb4{bottom:350.222400pt;}
.y45{bottom:350.348000pt;}
.y69{bottom:350.640267pt;}
.y262{bottom:351.933333pt;}
.y196{bottom:353.749867pt;}
.y227{bottom:353.750000pt;}
.yc5{bottom:353.770933pt;}
.y10b{bottom:355.638667pt;}
.y176{bottom:357.426667pt;}
.y203{bottom:357.426800pt;}
.y1e2{bottom:358.917333pt;}
.y150{bottom:358.979333pt;}
.y1d{bottom:366.005600pt;}
.ye2{bottom:366.757600pt;}
.y12a{bottom:368.567200pt;}
.y1b8{bottom:369.960000pt;}
.yb3{bottom:371.555733pt;}
.y44{bottom:371.776400pt;}
.y68{bottom:372.098000pt;}
.y23f{bottom:372.820533pt;}
.y195{bottom:375.083200pt;}
.y226{bottom:375.083333pt;}
.yc4{bottom:375.150533pt;}
.y10a{bottom:377.180800pt;}
.y175{bottom:379.106267pt;}
.y202{bottom:379.106533pt;}
.y1e1{bottom:380.711733pt;}
.y14f{bottom:380.778400pt;}
.y1c{bottom:385.205600pt;}
.y261{bottom:387.051467pt;}
.y8d{bottom:387.152000pt;}
.ye1{bottom:388.268667pt;}
.y129{bottom:390.777200pt;}
.y1b7{bottom:391.293333pt;}
.yb2{bottom:392.889067pt;}
.y43{bottom:393.204933pt;}
.y67{bottom:393.555600pt;}
.yc3{bottom:394.350400pt;}
.y194{bottom:396.416533pt;}
.y225{bottom:396.416667pt;}
.y109{bottom:398.722933pt;}
.y174{bottom:400.786000pt;}
.y201{bottom:400.786267pt;}
.y1e0{bottom:402.506000pt;}
.y14e{bottom:402.577600pt;}
.y1b{bottom:404.405600pt;}
.y223{bottom:404.565733pt;}
.y260{bottom:407.051467pt;}
.y23e{bottom:407.938667pt;}
.y8c{bottom:408.706000pt;}
.ye0{bottom:409.779600pt;}
.y1b6{bottom:412.626667pt;}
.y128{bottom:412.987200pt;}
.yc2{bottom:413.550400pt;}
.yb1{bottom:414.222400pt;}
.y42{bottom:414.633333pt;}
.y66{bottom:415.013333pt;}
.y193{bottom:417.749867pt;}
.y108{bottom:420.265200pt;}
.y173{bottom:422.465733pt;}
.y222{bottom:422.465867pt;}
.y1a{bottom:423.605600pt;}
.y1df{bottom:424.300400pt;}
.y14d{bottom:424.376667pt;}
.y200{bottom:426.245467pt;}
.y25f{bottom:427.051467pt;}
.y23d{bottom:427.938667pt;}
.y8b{bottom:430.260000pt;}
.ydf{bottom:431.290667pt;}
.yc1{bottom:432.750533pt;}
.y1b5{bottom:433.960000pt;}
.y127{bottom:435.197200pt;}
.yb0{bottom:435.555733pt;}
.y65{bottom:436.471067pt;}
.y192{bottom:439.083200pt;}
.y224{bottom:440.427067pt;}
.y107{bottom:441.807333pt;}
.y19{bottom:442.805600pt;}
.y172{bottom:444.145467pt;}
.y221{bottom:444.145600pt;}
.y1de{bottom:446.094800pt;}
.y14c{bottom:446.175867pt;}
.y23c{bottom:447.938667pt;}
.y8a{bottom:451.813867pt;}
.yde{bottom:452.801733pt;}
.y1b4{bottom:455.293333pt;}
.yaf{bottom:456.889067pt;}
.y64{bottom:457.928800pt;}
.y41{bottom:458.739067pt;}
.y191{bottom:460.416533pt;}
.y126{bottom:461.186800pt;}
.y18{bottom:462.005600pt;}
.y25e{bottom:462.169600pt;}
.y106{bottom:463.349467pt;}
.y171{bottom:465.825200pt;}
.y220{bottom:465.825333pt;}
.y1dd{bottom:467.889200pt;}
.y14b{bottom:467.974933pt;}
.y1ff{bottom:470.602267pt;}
.y89{bottom:473.367867pt;}
.ydd{bottom:474.312800pt;}
.y1b3{bottom:476.626667pt;}
.yae{bottom:478.222400pt;}
.y63{bottom:479.386533pt;}
.y17{bottom:481.205600pt;}
.y190{bottom:481.749867pt;}
.y25d{bottom:482.169600pt;}
.y23b{bottom:483.056667pt;}
.y125{bottom:483.396800pt;}
.y105{bottom:484.891600pt;}
.y170{bottom:487.504933pt;}
.y21f{bottom:487.505067pt;}
.y1dc{bottom:489.683467pt;}
.y14a{bottom:489.774133pt;}
.y1fe{bottom:492.282000pt;}
.y88{bottom:494.921867pt;}
.ydc{bottom:495.823867pt;}
.y1b2{bottom:497.960000pt;}
.yad{bottom:499.555733pt;}
.y16{bottom:500.405600pt;}
.y62{bottom:500.844267pt;}
.y25c{bottom:502.169600pt;}
.y23a{bottom:503.056667pt;}
.y18f{bottom:503.083200pt;}
.y104{bottom:506.433733pt;}
.y16f{bottom:509.184533pt;}
.y21e{bottom:509.184667pt;}
.y1db{bottom:511.477867pt;}
.y149{bottom:511.573200pt;}
.y1fd{bottom:513.961733pt;}
.y87{bottom:516.475867pt;}
.ydb{bottom:517.334933pt;}
.y40{bottom:517.962800pt;}
.y1b1{bottom:519.293333pt;}
.y15{bottom:519.605600pt;}
.yac{bottom:520.889067pt;}
.y61{bottom:522.302000pt;}
.y18e{bottom:524.416533pt;}
.y103{bottom:527.975867pt;}
.y16e{bottom:530.864267pt;}
.y21d{bottom:530.864400pt;}
.y1da{bottom:533.272267pt;}
.y148{bottom:533.372400pt;}
.y1fc{bottom:535.641467pt;}
.y25b{bottom:537.287733pt;}
.y86{bottom:538.029867pt;}
.y239{bottom:538.174800pt;}
.y14{bottom:538.805600pt;}
.yda{bottom:538.846000pt;}
.y3f{bottom:539.391333pt;}
.y1b0{bottom:540.626667pt;}
.yab{bottom:542.222400pt;}
.y60{bottom:543.759733pt;}
.y18d{bottom:545.749867pt;}
.y102{bottom:549.518000pt;}
.y16d{bottom:552.544000pt;}
.y21c{bottom:552.544133pt;}
.y1d9{bottom:555.066667pt;}
.y147{bottom:555.171467pt;}
.y25a{bottom:557.287733pt;}
.y1fb{bottom:557.321067pt;}
.y13{bottom:558.005600pt;}
.y238{bottom:558.174800pt;}
.y85{bottom:559.583867pt;}
.yd9{bottom:560.357067pt;}
.y3e{bottom:560.819733pt;}
.y1af{bottom:561.960000pt;}
.yaa{bottom:563.555733pt;}
.y5f{bottom:565.217467pt;}
.y18c{bottom:567.083200pt;}
.y101{bottom:571.060267pt;}
.y16c{bottom:574.223733pt;}
.y21b{bottom:574.223867pt;}
.y1d8{bottom:576.860933pt;}
.y146{bottom:576.970667pt;}
.y12{bottom:577.205600pt;}
.y237{bottom:578.174800pt;}
.y1fa{bottom:579.000800pt;}
.y84{bottom:581.137867pt;}
.yd8{bottom:581.868000pt;}
.y3d{bottom:582.248267pt;}
.y1ae{bottom:583.293333pt;}
.ya9{bottom:584.889067pt;}
.y5e{bottom:586.675200pt;}
.y18b{bottom:588.416533pt;}
.y259{bottom:592.405867pt;}
.y100{bottom:592.602400pt;}
.y16b{bottom:595.903467pt;}
.y21a{bottom:595.903600pt;}
.y11{bottom:596.405600pt;}
.y236{bottom:598.174800pt;}
.y1d7{bottom:598.655333pt;}
.y145{bottom:598.769733pt;}
.y1f9{bottom:600.680533pt;}
.y83{bottom:602.691867pt;}
.yd7{bottom:603.379067pt;}
.y3c{bottom:603.676667pt;}
.y1ad{bottom:604.626667pt;}
.ya8{bottom:606.222400pt;}
.y5d{bottom:608.132933pt;}
.y18a{bottom:609.749867pt;}
.y258{bottom:612.405867pt;}
.yff{bottom:614.144533pt;}
.y10{bottom:615.605600pt;}
.y16a{bottom:617.583067pt;}
.y219{bottom:617.583200pt;}
.y1d6{bottom:620.449733pt;}
.y144{bottom:620.568933pt;}
.y1f8{bottom:622.360267pt;}
.yb8{bottom:623.058133pt;}
.y82{bottom:624.245867pt;}
.yd6{bottom:624.890133pt;}
.y3b{bottom:625.105200pt;}
.y1ac{bottom:625.960000pt;}
.ya7{bottom:627.555733pt;}
.y5c{bottom:629.590667pt;}
.y189{bottom:631.083200pt;}
.y257{bottom:632.405867pt;}
.y235{bottom:633.292933pt;}
.yf{bottom:634.805600pt;}
.yfe{bottom:635.686667pt;}
.y169{bottom:639.262800pt;}
.y218{bottom:639.262933pt;}
.y1d5{bottom:642.244000pt;}
.y143{bottom:642.368000pt;}
.y1f7{bottom:644.040000pt;}
.y81{bottom:645.799867pt;}
.yd5{bottom:646.401200pt;}
.y3a{bottom:646.533733pt;}
.y1ab{bottom:647.293333pt;}
.yb7{bottom:648.217067pt;}
.ya6{bottom:648.889067pt;}
.y5b{bottom:651.048400pt;}
.y188{bottom:652.416533pt;}
.y234{bottom:653.292933pt;}
.ye{bottom:654.005600pt;}
.yfd{bottom:657.228933pt;}
.y168{bottom:660.942533pt;}
.y217{bottom:660.942667pt;}
.y1d4{bottom:664.038400pt;}
.y142{bottom:664.167200pt;}
.y1f6{bottom:665.719600pt;}
.y80{bottom:667.353867pt;}
.y256{bottom:667.523867pt;}
.yd4{bottom:667.912133pt;}
.y39{bottom:667.962133pt;}
.ya5{bottom:670.222400pt;}
.y1aa{bottom:672.406267pt;}
.y5a{bottom:672.506000pt;}
.y187{bottom:673.749867pt;}
.yfc{bottom:678.771067pt;}
.y167{bottom:682.622267pt;}
.y216{bottom:682.622400pt;}
.y1d3{bottom:685.832800pt;}
.y141{bottom:685.966267pt;}
.y1f5{bottom:687.399333pt;}
.y255{bottom:687.523867pt;}
.y233{bottom:688.411067pt;}
.y7f{bottom:688.907867pt;}
.y38{bottom:689.390667pt;}
.yd3{bottom:689.423200pt;}
.ya4{bottom:691.555733pt;}
.y1a9{bottom:693.739600pt;}
.y186{bottom:695.083200pt;}
.yfb{bottom:700.313200pt;}
.y166{bottom:704.301867pt;}
.y215{bottom:704.302133pt;}
.y1d2{bottom:707.627067pt;}
.y140{bottom:707.765333pt;}
.y232{bottom:708.411067pt;}
.y1f4{bottom:709.079067pt;}
.y7e{bottom:710.461867pt;}
.y37{bottom:710.819200pt;}
.yd2{bottom:710.934267pt;}
.ya3{bottom:712.889067pt;}
.y185{bottom:716.416533pt;}
.y59{bottom:716.640933pt;}
.yfa{bottom:721.855333pt;}
.y254{bottom:722.642000pt;}
.y165{bottom:725.981600pt;}
.y214{bottom:725.981733pt;}
.yb{bottom:729.158267pt;}
.y1d1{bottom:729.421467pt;}
.y13f{bottom:729.564533pt;}
.y1f3{bottom:730.758800pt;}
.y7d{bottom:732.015867pt;}
.y36{bottom:732.247600pt;}
.y124{bottom:732.402133pt;}
.yd1{bottom:732.445333pt;}
.ya2{bottom:734.222400pt;}
.y184{bottom:737.749867pt;}
.y1a8{bottom:737.750000pt;}
.y122{bottom:739.602133pt;}
.y253{bottom:742.642000pt;}
.yf9{bottom:743.397600pt;}
.y231{bottom:743.529200pt;}
.y11f{bottom:746.802133pt;}
.y164{bottom:747.661333pt;}
.y213{bottom:747.661467pt;}
.y1d0{bottom:751.215867pt;}
.y13e{bottom:751.363600pt;}
.y1f2{bottom:752.438533pt;}
.y7c{bottom:753.569867pt;}
.y35{bottom:753.676133pt;}
.yd0{bottom:753.956267pt;}
.y121{bottom:754.002133pt;}
.ya1{bottom:755.555733pt;}
.ya{bottom:756.937733pt;}
.y1a7{bottom:759.083333pt;}
.y11e{bottom:761.202133pt;}
.y252{bottom:762.642000pt;}
.y230{bottom:763.529200pt;}
.yf8{bottom:764.939733pt;}
.y120{bottom:768.402133pt;}
.y163{bottom:769.340933pt;}
.y212{bottom:769.341200pt;}
.y1cf{bottom:773.010267pt;}
.y13d{bottom:773.162667pt;}
.y1f1{bottom:774.118133pt;}
.y34{bottom:775.104533pt;}
.y7b{bottom:775.123733pt;}
.ycf{bottom:775.467333pt;}
.y123{bottom:775.602133pt;}
.y58{bottom:775.894000pt;}
.ya0{bottom:776.889067pt;}
.y1a6{bottom:780.416667pt;}
.y9{bottom:780.937733pt;}
.y183{bottom:781.760400pt;}
.y22f{bottom:783.529200pt;}
.yf7{bottom:786.481867pt;}
.y211{bottom:791.020800pt;}
.y162{bottom:794.800267pt;}
.y1ce{bottom:794.804667pt;}
.y13c{bottom:794.961867pt;}
.y1f0{bottom:795.797867pt;}
.y33{bottom:796.533067pt;}
.y7a{bottom:796.677733pt;}
.yce{bottom:796.978400pt;}
.y57{bottom:797.351600pt;}
.y251{bottom:797.760133pt;}
.y9f{bottom:798.222400pt;}
.y1a5{bottom:801.749867pt;}
.y11d{bottom:801.952133pt;}
.y8{bottom:804.937733pt;}
.yf6{bottom:808.024000pt;}
.y11c{bottom:816.352133pt;}
.y210{bottom:816.480000pt;}
.y1cd{bottom:816.598933pt;}
.y13b{bottom:816.760933pt;}
.y1ef{bottom:817.477600pt;}
.y250{bottom:817.760133pt;}
.y32{bottom:817.961600pt;}
.y79{bottom:818.231733pt;}
.ycd{bottom:818.489467pt;}
.y22e{bottom:818.647200pt;}
.y56{bottom:818.809467pt;}
.y9e{bottom:819.555733pt;}
.y7{bottom:828.937733pt;}
.y11b{bottom:830.752133pt;}
.yf5{bottom:836.232800pt;}
.y24f{bottom:837.760133pt;}
.y1cc{bottom:838.393333pt;}
.y13a{bottom:838.560000pt;}
.y22d{bottom:838.647200pt;}
.y161{bottom:839.157200pt;}
.y31{bottom:839.390000pt;}
.y78{bottom:839.785733pt;}
.ycc{bottom:840.000533pt;}
.y55{bottom:840.267067pt;}
.y9d{bottom:840.889067pt;}
.y1a4{bottom:845.760400pt;}
.yf4{bottom:855.641733pt;}
.y1cb{bottom:860.187600pt;}
.y139{bottom:860.359200pt;}
.y30{bottom:860.818533pt;}
.y160{bottom:860.836933pt;}
.y77{bottom:861.339733pt;}
.ycb{bottom:861.511600pt;}
.y54{bottom:861.724800pt;}
.y9c{bottom:862.222400pt;}
.y11a{bottom:865.715200pt;}
.y6{bottom:868.055867pt;}
.y24e{bottom:872.878267pt;}
.y22c{bottom:873.765333pt;}
.yf3{bottom:875.050400pt;}
.y1ca{bottom:881.982000pt;}
.y138{bottom:882.158400pt;}
.y2f{bottom:882.246933pt;}
.y15f{bottom:882.516667pt;}
.y76{bottom:882.893733pt;}
.yca{bottom:883.022667pt;}
.y53{bottom:883.182533pt;}
.y9b{bottom:883.555733pt;}
.y119{bottom:884.191867pt;}
.y5{bottom:892.055867pt;}
.y24d{bottom:892.878267pt;}
.yf2{bottom:894.459333pt;}
.y2e{bottom:903.675467pt;}
.y1c9{bottom:903.776400pt;}
.y137{bottom:903.957467pt;}
.y15e{bottom:904.196267pt;}
.y75{bottom:904.447733pt;}
.yc9{bottom:904.533600pt;}
.y52{bottom:904.640267pt;}
.y9a{bottom:904.889067pt;}
.y22b{bottom:908.883467pt;}
.yf1{bottom:913.868133pt;}
.y118{bottom:925.345733pt;}
.y1c8{bottom:925.570667pt;}
.y136{bottom:925.756533pt;}
.y15d{bottom:925.876000pt;}
.y74{bottom:926.001733pt;}
.yc8{bottom:926.044667pt;}
.y51{bottom:926.098000pt;}
.y99{bottom:926.222400pt;}
.y4{bottom:927.394400pt;}
.y24c{bottom:927.996400pt;}
.yf0{bottom:933.276933pt;}
.y1c7{bottom:947.365067pt;}
.y50{bottom:947.555733pt;}
.y2d{bottom:947.781067pt;}
.y24b{bottom:947.996400pt;}
.y3{bottom:950.594400pt;}
.yef{bottom:952.685733pt;}
.ha{height:31.200000pt;}
.h12{height:35.760000pt;}
.h13{height:35.808000pt;}
.h11{height:43.706667pt;}
.hf{height:43.765333pt;}
.hc{height:44.224000pt;}
.h10{height:44.468750pt;}
.he{height:47.680000pt;}
.h9{height:48.960000pt;}
.hd{height:51.653333pt;}
.h4{height:53.514667pt;}
.h3{height:54.784000pt;}
.h6{height:55.280000pt;}
.h5{height:56.951051pt;}
.hb{height:59.349333pt;}
.h14{height:61.200000pt;}
.h8{height:62.985481pt;}
.h7{height:63.648000pt;}
.h2{height:68.480000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:21.023600pt;}
.x2{left:75.590533pt;}
.x5{left:83.445067pt;}
.x3{left:94.616133pt;}
.xe{left:113.385867pt;}
.x19{left:116.305067pt;}
.x1d{left:120.023067pt;}
.x18{left:122.609200pt;}
.x4{left:124.139733pt;}
.x1f{left:125.659333pt;}
.x15{left:129.520667pt;}
.x2f{left:134.851067pt;}
.x10{left:139.842533pt;}
.x1b{left:149.457200pt;}
.xf{left:161.385867pt;}
.x11{left:162.519733pt;}
.x6{left:170.114400pt;}
.x17{left:186.918267pt;}
.x21{left:193.843467pt;}
.x20{left:196.525467pt;}
.x30{left:200.803333pt;}
.x12{left:204.094533pt;}
.x31{left:207.631200pt;}
.x13{left:219.934400pt;}
.x16{left:220.934267pt;}
.x14{left:223.676933pt;}
.x1c{left:227.142400pt;}
.x22{left:268.057600pt;}
.x24{left:269.407467pt;}
.x23{left:270.979600pt;}
.x1e{left:275.046533pt;}
.x7{left:279.687467pt;}
.x32{left:281.779333pt;}
.x1a{left:295.964400pt;}
.x8{left:325.707333pt;}
.x25{left:338.923733pt;}
.xa{left:341.211333pt;}
.x27{left:342.145733pt;}
.x26{left:347.869600pt;}
.x33{left:351.829333pt;}
.x9{left:371.977333pt;}
.x28{left:409.790000pt;}
.x29{left:414.253733pt;}
.x34{left:416.041600pt;}
.xc{left:419.527600pt;}
.x35{left:422.695600pt;}
.x2a{left:480.656133pt;}
.x37{left:484.267867pt;}
.x36{left:486.907867pt;}
.x38{left:493.561733pt;}
.x2b{left:551.522267pt;}
.x3a{left:556.574000pt;}
.x39{left:559.531867pt;}
.x3b{left:564.427867pt;}
.xb{left:596.698933pt;}
.x2c{left:622.388400pt;}
.x2d{left:624.428267pt;}
.x3c{left:628.472267pt;}
.x2e{left:633.962000pt;}
.x1{left:743.622133pt;}
}




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