
    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_43a892261c8fd6c609c67a57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120117;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_a983dd75833aaff640233405.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_08863147c811bc984164aafd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930664;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_1e552451bfcd343449373fc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930664;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_e6d0f66eff1bf33e1d046e4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202637;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_fa134bb466bff637fd27db31.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.199707;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_c2e0dfbf9e8da2e497e86450.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.213867;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_43a892261c8fd6c609c67a57.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120117;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_80e9220d1d28badb27f81413.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.977000;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_a59bcc78e3435f0a9ab22586.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.120117;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_ce923c9400b589b4b47ef89f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107422;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_b2ab0fa15120873cf195c929.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.111816;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_06060d1bc1091c428b1ca8df.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_43a892261c8fd6c609c67a57.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.120117;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_75fcc6004700f54d6c5b1ca9.woff2')format("woff");}.fff{font-family:fff;line-height:0.972656;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_4b7f205a79d4a40a656743dc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.953125;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_a8117901565adfc2191b40bb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.199707;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);}
.v5{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:27.000000px;}
.ls44{letter-spacing:-1.674000px;}
.ls3c{letter-spacing:-1.512000px;}
.ls4e{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-1.080000px;}
.ls51{letter-spacing:-1.026000px;}
.ls50{letter-spacing:-0.918000px;}
.ls26{letter-spacing:-0.840000px;}
.ls14{letter-spacing:-0.810000px;}
.ls40{letter-spacing:-0.702000px;}
.ls42{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.594000px;}
.lse{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.486000px;}
.ls69{letter-spacing:-0.462000px;}
.ls12{letter-spacing:-0.432000px;}
.ls78{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.378000px;}
.ls43{letter-spacing:-0.377784px;}
.ls67{letter-spacing:-0.336000px;}
.ls13{letter-spacing:-0.324000px;}
.ls4f{letter-spacing:-0.314820px;}
.ls68{letter-spacing:-0.294000px;}
.ls3e{letter-spacing:-0.283338px;}
.ls10{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.216000px;}
.ls66{letter-spacing:-0.168000px;}
.lsc{letter-spacing:-0.162000px;}
.ls6a{letter-spacing:-0.126000px;}
.ls52{letter-spacing:-0.125928px;}
.ls15{letter-spacing:-0.108000px;}
.ls41{letter-spacing:-0.094446px;}
.ls6b{letter-spacing:-0.084000px;}
.ls47{letter-spacing:-0.062964px;}
.ls3f{letter-spacing:-0.054000px;}
.ls65{letter-spacing:-0.042000px;}
.lsa{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.003600px;}
.ls38{letter-spacing:0.005400px;}
.ls75{letter-spacing:0.042000px;}
.ls4{letter-spacing:0.054000px;}
.ls71{letter-spacing:0.084000px;}
.ls3b{letter-spacing:0.108000px;}
.ls5f{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.162000px;}
.ls53{letter-spacing:0.168000px;}
.ls5b{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.270000px;}
.ls58{letter-spacing:0.294000px;}
.ls17{letter-spacing:0.324000px;}
.ls5a{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.378000px;}
.ls54{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.486000px;}
.ls70{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.588000px;}
.ls2{letter-spacing:0.594000px;}
.ls72{letter-spacing:0.630000px;}
.ls49{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.702000px;}
.ls46{letter-spacing:0.724086px;}
.ls2d{letter-spacing:0.756000px;}
.ls56{letter-spacing:0.798000px;}
.ls1c{letter-spacing:0.810000px;}
.ls19{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.918000px;}
.ls57{letter-spacing:0.924000px;}
.ls59{letter-spacing:0.966000px;}
.ls2b{letter-spacing:0.972000px;}
.ls34{letter-spacing:0.978000px;}
.ls35{letter-spacing:0.984000px;}
.ls37{letter-spacing:0.996000px;}
.ls73{letter-spacing:1.008000px;}
.ls64{letter-spacing:1.026000px;}
.ls61{letter-spacing:1.050000px;}
.ls36{letter-spacing:1.073400px;}
.ls1f{letter-spacing:1.080000px;}
.ls74{letter-spacing:1.092000px;}
.ls27{letter-spacing:1.134000px;}
.ls62{letter-spacing:1.176000px;}
.ls48{letter-spacing:1.188000px;}
.ls55{letter-spacing:1.218000px;}
.ls20{letter-spacing:1.242000px;}
.ls2e{letter-spacing:1.296000px;}
.ls23{letter-spacing:1.350000px;}
.ls4c{letter-spacing:1.404000px;}
.ls3d{letter-spacing:1.416690px;}
.ls22{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.512000px;}
.ls2c{letter-spacing:1.566000px;}
.ls77{letter-spacing:1.596000px;}
.lsb{letter-spacing:1.620000px;}
.ls4d{letter-spacing:1.782000px;}
.ls45{letter-spacing:1.836000px;}
.ls2a{letter-spacing:1.890000px;}
.ls60{letter-spacing:1.932000px;}
.ls4b{letter-spacing:1.944000px;}
.ls76{letter-spacing:1.974000px;}
.ls3a{letter-spacing:1.998000px;}
.ls5d{letter-spacing:2.016000px;}
.ls1e{letter-spacing:2.130582px;}
.ls5e{letter-spacing:2.184000px;}
.ls6d{letter-spacing:2.268000px;}
.ls33{letter-spacing:2.322000px;}
.ls0{letter-spacing:2.376000px;}
.ls32{letter-spacing:2.430000px;}
.ls6f{letter-spacing:2.604000px;}
.ls2f{letter-spacing:2.700000px;}
.ls1a{letter-spacing:2.808000px;}
.ls4a{letter-spacing:2.916000px;}
.ls28{letter-spacing:2.970000px;}
.ls63{letter-spacing:3.348000px;}
.ls29{letter-spacing:3.456000px;}
.ls6e{letter-spacing:3.654000px;}
.ls1d{letter-spacing:3.672000px;}
.ls21{letter-spacing:3.726000px;}
.ls31{letter-spacing:4.158000px;}
.ls24{letter-spacing:609.704640px;}
.ls25{letter-spacing:673.128240px;}
.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;}
}
.ws6f{word-spacing:-54.000000px;}
.wsb0{word-spacing:-42.000000px;}
.ws0{word-spacing:-24.000000px;}
.ws6{word-spacing:-18.000000px;}
.ws48{word-spacing:-15.552000px;}
.ws73{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.958000px;}
.ws5{word-spacing:-14.796000px;}
.ws70{word-spacing:-14.418000px;}
.ws6a{word-spacing:-14.310000px;}
.ws6e{word-spacing:-13.122000px;}
.wsaf{word-spacing:-11.508000px;}
.ws2c{word-spacing:-10.260000px;}
.ws69{word-spacing:-10.042758px;}
.ws1{word-spacing:-9.584520px;}
.ws71{word-spacing:-9.350154px;}
.ws3{word-spacing:-8.626068px;}
.ws72{word-spacing:-8.563104px;}
.ws6c{word-spacing:-8.531622px;}
.ws92{word-spacing:-8.500140px;}
.ws6b{word-spacing:-8.342730px;}
.ws91{word-spacing:-8.311248px;}
.ws6d{word-spacing:-8.248284px;}
.ws2{word-spacing:-7.667616px;}
.ws9d{word-spacing:-5.130000px;}
.wsb4{word-spacing:-4.620000px;}
.wsb1{word-spacing:-4.578000px;}
.wsc2{word-spacing:-4.410000px;}
.wsc6{word-spacing:-4.368000px;}
.ws21{word-spacing:-4.050000px;}
.wsc4{word-spacing:-3.990000px;}
.wsc5{word-spacing:-3.948000px;}
.ws98{word-spacing:-3.834000px;}
.wsc3{word-spacing:-3.738000px;}
.wsf{word-spacing:-3.726000px;}
.wse{word-spacing:-3.672000px;}
.ws10{word-spacing:-3.618000px;}
.ws12{word-spacing:-3.564000px;}
.wsb6{word-spacing:-3.528000px;}
.wsc9{word-spacing:-3.486000px;}
.ws74{word-spacing:-3.456000px;}
.wsb3{word-spacing:-3.444000px;}
.wsb5{word-spacing:-3.402000px;}
.ws7e{word-spacing:-3.294000px;}
.ws3f{word-spacing:-3.240000px;}
.wsc7{word-spacing:-3.234000px;}
.wsae{word-spacing:-3.186000px;}
.ws28{word-spacing:-3.132000px;}
.ws77{word-spacing:-3.078000px;}
.wsb9{word-spacing:-2.982000px;}
.ws14{word-spacing:-2.970000px;}
.ws22{word-spacing:-2.916000px;}
.ws62{word-spacing:-2.862000px;}
.ws7a{word-spacing:-2.808000px;}
.wsb7{word-spacing:-2.772000px;}
.ws24{word-spacing:-2.700000px;}
.wsb8{word-spacing:-2.688000px;}
.ws99{word-spacing:-2.484000px;}
.ws59{word-spacing:-2.322000px;}
.wsb2{word-spacing:-2.310000px;}
.ws85{word-spacing:-2.268000px;}
.ws52{word-spacing:-2.214000px;}
.ws35{word-spacing:-2.160000px;}
.ws97{word-spacing:-2.106000px;}
.wsc8{word-spacing:-2.016000px;}
.ws5b{word-spacing:-1.944000px;}
.ws20{word-spacing:-1.782000px;}
.wsbd{word-spacing:-1.620000px;}
.wsa9{word-spacing:-1.566000px;}
.ws54{word-spacing:-1.404000px;}
.ws9{word-spacing:-1.350000px;}
.ws46{word-spacing:-1.296000px;}
.ws95{word-spacing:-1.242000px;}
.ws3c{word-spacing:-1.188000px;}
.wsa3{word-spacing:-1.134000px;}
.ws15{word-spacing:-1.080000px;}
.ws94{word-spacing:-1.026000px;}
.ws81{word-spacing:-0.918000px;}
.wsa0{word-spacing:-0.864000px;}
.ws47{word-spacing:-0.702000px;}
.ws75{word-spacing:-0.648000px;}
.ws11{word-spacing:-0.594000px;}
.wsa5{word-spacing:-0.540000px;}
.ws3a{word-spacing:-0.486000px;}
.ws18{word-spacing:-0.432000px;}
.ws78{word-spacing:-0.378000px;}
.ws89{word-spacing:-0.216000px;}
.wsa1{word-spacing:-0.162000px;}
.ws1f{word-spacing:-0.108000px;}
.ws17{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.wsba{word-spacing:0.084000px;}
.ws2b{word-spacing:0.108000px;}
.wsd{word-spacing:0.162000px;}
.ws45{word-spacing:0.216000px;}
.ws27{word-spacing:0.270000px;}
.ws1c{word-spacing:0.324000px;}
.ws56{word-spacing:0.432000px;}
.ws9a{word-spacing:0.540000px;}
.ws16{word-spacing:0.594000px;}
.ws9f{word-spacing:0.648000px;}
.ws5d{word-spacing:0.756000px;}
.ws8b{word-spacing:0.810000px;}
.ws7b{word-spacing:0.864000px;}
.wsbf{word-spacing:0.918000px;}
.ws23{word-spacing:1.026000px;}
.ws93{word-spacing:1.188000px;}
.ws25{word-spacing:1.242000px;}
.ws8f{word-spacing:1.296000px;}
.ws1a{word-spacing:1.350000px;}
.ws7c{word-spacing:1.404000px;}
.ws8e{word-spacing:1.458000px;}
.wsa4{word-spacing:1.620000px;}
.wsa{word-spacing:1.674000px;}
.ws29{word-spacing:1.728000px;}
.ws2a{word-spacing:1.782000px;}
.ws1b{word-spacing:1.836000px;}
.wsc0{word-spacing:1.890000px;}
.wsaa{word-spacing:1.944000px;}
.ws5e{word-spacing:1.998000px;}
.ws68{word-spacing:2.052000px;}
.ws30{word-spacing:2.214000px;}
.wsb{word-spacing:2.322000px;}
.ws66{word-spacing:2.376000px;}
.ws79{word-spacing:2.430000px;}
.ws8c{word-spacing:2.484000px;}
.ws41{word-spacing:2.646000px;}
.ws7d{word-spacing:2.862000px;}
.wsc{word-spacing:2.916000px;}
.ws8d{word-spacing:2.970000px;}
.wsad{word-spacing:3.024000px;}
.wsac{word-spacing:3.078000px;}
.ws8a{word-spacing:3.132000px;}
.ws33{word-spacing:3.186000px;}
.wsab{word-spacing:3.240000px;}
.wsbe{word-spacing:3.348000px;}
.ws31{word-spacing:3.402000px;}
.ws84{word-spacing:3.456000px;}
.ws19{word-spacing:3.510000px;}
.ws82{word-spacing:3.564000px;}
.ws26{word-spacing:3.672000px;}
.wsc1{word-spacing:3.726000px;}
.ws44{word-spacing:3.780000px;}
.ws34{word-spacing:3.888000px;}
.ws38{word-spacing:3.942000px;}
.ws50{word-spacing:3.996000px;}
.ws43{word-spacing:4.050000px;}
.ws9e{word-spacing:4.104000px;}
.ws83{word-spacing:4.212000px;}
.ws76{word-spacing:4.266000px;}
.ws88{word-spacing:4.320000px;}
.ws1e{word-spacing:4.374000px;}
.wsa6{word-spacing:4.536000px;}
.ws61{word-spacing:4.590000px;}
.ws5f{word-spacing:4.644000px;}
.ws86{word-spacing:4.698000px;}
.ws36{word-spacing:4.806000px;}
.ws58{word-spacing:4.860000px;}
.ws63{word-spacing:4.914000px;}
.ws96{word-spacing:5.076000px;}
.ws32{word-spacing:5.130000px;}
.ws42{word-spacing:5.184000px;}
.ws55{word-spacing:5.292000px;}
.ws3e{word-spacing:5.346000px;}
.ws57{word-spacing:5.400000px;}
.ws65{word-spacing:5.508000px;}
.wsa7{word-spacing:5.562000px;}
.ws9b{word-spacing:5.670000px;}
.ws3b{word-spacing:5.724000px;}
.ws7f{word-spacing:5.778000px;}
.ws51{word-spacing:5.886000px;}
.wsa2{word-spacing:5.940000px;}
.ws67{word-spacing:5.994000px;}
.wsbc{word-spacing:6.048000px;}
.ws90{word-spacing:6.210000px;}
.ws1d{word-spacing:6.318000px;}
.ws80{word-spacing:6.480000px;}
.ws3d{word-spacing:6.588000px;}
.ws5a{word-spacing:6.642000px;}
.ws39{word-spacing:6.750000px;}
.wsa8{word-spacing:6.804000px;}
.ws40{word-spacing:6.858000px;}
.ws53{word-spacing:6.912000px;}
.ws37{word-spacing:6.966000px;}
.wsbb{word-spacing:7.020000px;}
.ws13{word-spacing:7.074000px;}
.ws87{word-spacing:7.128000px;}
.ws64{word-spacing:7.182000px;}
.ws9c{word-spacing:7.236000px;}
.ws60{word-spacing:7.290000px;}
.ws5c{word-spacing:7.344000px;}
.ws8{word-spacing:7.398000px;}
.ws4c{word-spacing:181.947900px;}
.ws4a{word-spacing:284.285100px;}
.ws49{word-spacing:287.328300px;}
.ws2f{word-spacing:437.489700px;}
.ws4b{word-spacing:614.765100px;}
.ws2d{word-spacing:617.632500px;}
.ws2e{word-spacing:636.748500px;}
.ws4e{word-spacing:696.536100px;}
.ws4d{word-spacing:701.117700px;}
.ws4f{word-spacing:767.442300px;}
._8{margin-left:-24.696000px;}
._d{margin-left:-20.743800px;}
._7{margin-left:-10.290000px;}
._6{margin-left:-8.575200px;}
._b{margin-left:-7.441200px;}
._5{margin-left:-6.204600px;}
._0{margin-left:-4.957800px;}
._3{margin-left:-3.116400px;}
._1{margin-left:-1.680000px;}
._2{width:1.927200px;}
._c{width:9.039600px;}
._14{width:16.758000px;}
._13{width:18.438000px;}
._15{width:20.160000px;}
._4{width:37.615200px;}
._f{width:38.850000px;}
._12{width:40.068000px;}
._10{width:41.118000px;}
._e{width:43.554000px;}
._11{width:44.856000px;}
._a{width:1086.715800px;}
._9{width:1409.740200px;}
.fc1{color:rgb(0,94,138);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:26.235000px;}
.fs5{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fs3{font-size:34.980000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:26.800350px;}
.y60{bottom:29.531850px;}
.y4f{bottom:85.039350px;}
.y134{bottom:85.039500px;}
.y5b{bottom:91.226850px;}
.y213{bottom:97.995300px;}
.y1f7{bottom:98.779650px;}
.y133{bottom:101.182500px;}
.y7c{bottom:101.253300px;}
.y16d{bottom:101.391150px;}
.y4e{bottom:101.439900px;}
.y1a4{bottom:101.492400px;}
.y97{bottom:101.558550px;}
.y1db{bottom:101.567400px;}
.yd0{bottom:101.765250px;}
.yec{bottom:102.036900px;}
.y212{bottom:110.951400px;}
.y5a{bottom:116.872500px;}
.y132{bottom:117.325500px;}
.y7b{bottom:117.467100px;}
.y16c{bottom:117.742650px;}
.y4d{bottom:117.840300px;}
.y1a3{bottom:117.945300px;}
.y96{bottom:118.077900px;}
.y1da{bottom:118.095300px;}
.ycf{bottom:118.491150px;}
.yeb{bottom:119.034300px;}
.y1f6{bottom:120.994800px;}
.y211{bottom:123.907350px;}
.y59{bottom:129.472500px;}
.y131{bottom:133.468650px;}
.y7a{bottom:133.681050px;}
.y16b{bottom:134.094150px;}
.y4c{bottom:134.240850px;}
.y1a2{bottom:134.398200px;}
.y95{bottom:134.597100px;}
.y1d9{bottom:134.623200px;}
.y1f5{bottom:134.734950px;}
.yce{bottom:135.217200px;}
.yea{bottom:136.031850px;}
.y58{bottom:142.072500px;}
.y210{bottom:145.338450px;}
.y1f4{bottom:148.475100px;}
.y130{bottom:149.611650px;}
.y79{bottom:149.895000px;}
.y16a{bottom:150.445800px;}
.y4b{bottom:150.641250px;}
.y1a1{bottom:150.851100px;}
.y94{bottom:151.116450px;}
.y1d8{bottom:151.151250px;}
.ye9{bottom:153.029250px;}
.y57{bottom:154.672500px;}
.ycd{bottom:156.218100px;}
.y20f{bottom:158.294400px;}
.y1f3{bottom:162.215250px;}
.y12f{bottom:165.754650px;}
.y78{bottom:166.108800px;}
.y169{bottom:166.797300px;}
.y4a{bottom:167.041650px;}
.y56{bottom:167.272500px;}
.y1a0{bottom:167.304150px;}
.y93{bottom:167.635650px;}
.y1d7{bottom:167.679150px;}
.ye8{bottom:170.026650px;}
.ycc{bottom:172.944000px;}
.y20e{bottom:179.725500px;}
.y55{bottom:179.872500px;}
.y12e{bottom:181.897650px;}
.y168{bottom:183.148950px;}
.y49{bottom:183.442200px;}
.y19f{bottom:183.757050px;}
.y92{bottom:184.154850px;}
.y1d6{bottom:184.207050px;}
.y1f2{bottom:184.430400px;}
.y77{bottom:186.597750px;}
.ye7{bottom:187.024200px;}
.ycb{bottom:189.669900px;}
.y20d{bottom:192.681450px;}
.y12d{bottom:198.040800px;}
.y1f1{bottom:198.170550px;}
.y167{bottom:199.500600px;}
.y48{bottom:199.842600px;}
.y19e{bottom:200.209950px;}
.y91{bottom:200.674200px;}
.y1d5{bottom:200.734950px;}
.y54{bottom:201.257850px;}
.y76{bottom:202.811550px;}
.ye6{bottom:204.021600px;}
.y20c{bottom:205.637550px;}
.yca{bottom:206.395800px;}
.y1f0{bottom:211.910700px;}
.y12c{bottom:214.183800px;}
.y166{bottom:215.852100px;}
.y47{bottom:216.243000px;}
.y19d{bottom:216.663000px;}
.y90{bottom:217.193400px;}
.y1d4{bottom:217.262850px;}
.y53{bottom:217.457850px;}
.y75{bottom:219.025500px;}
.ye5{bottom:221.019150px;}
.yc9{bottom:223.121700px;}
.y1ef{bottom:225.650850px;}
.y20b{bottom:227.068500px;}
.y12b{bottom:230.326800px;}
.y165{bottom:232.203750px;}
.y46{bottom:232.643550px;}
.y19c{bottom:233.115750px;}
.y52{bottom:233.657850px;}
.y8f{bottom:233.712600px;}
.y1d3{bottom:233.790750px;}
.y74{bottom:235.239450px;}
.ye4{bottom:238.016550px;}
.yc8{bottom:239.847600px;}
.y20a{bottom:240.024450px;}
.y12a{bottom:246.469800px;}
.y1ee{bottom:247.866000px;}
.y164{bottom:248.555400px;}
.y45{bottom:249.043950px;}
.y51{bottom:249.857850px;}
.y8e{bottom:250.231950px;}
.y1d2{bottom:250.318800px;}
.y73{bottom:251.453250px;}
.y209{bottom:252.980550px;}
.y19b{bottom:253.843800px;}
.ye3{bottom:255.014100px;}
.yc7{bottom:256.573500px;}
.y1ed{bottom:261.606150px;}
.y163{bottom:264.906900px;}
.y44{bottom:265.444500px;}
.y208{bottom:265.936500px;}
.y8d{bottom:266.751150px;}
.y1d1{bottom:266.846700px;}
.y129{bottom:266.887800px;}
.y19a{bottom:270.296700px;}
.y50{bottom:270.332850px;}
.y72{bottom:271.942200px;}
.ye2{bottom:272.011500px;}
.yc6{bottom:273.299400px;}
.y1ec{bottom:275.346300px;}
.y162{bottom:281.258550px;}
.y43{bottom:281.844900px;}
.y128{bottom:283.030950px;}
.y8c{bottom:283.270350px;}
.y1d0{bottom:283.374600px;}
.y199{bottom:286.749600px;}
.y207{bottom:287.367600px;}
.y71{bottom:288.156000px;}
.ye1{bottom:289.008900px;}
.yc5{bottom:290.025300px;}
.y1eb{bottom:297.561450px;}
.y161{bottom:297.610050px;}
.y42{bottom:298.245300px;}
.y127{bottom:299.173950px;}
.y8b{bottom:299.789700px;}
.y1cf{bottom:299.902500px;}
.y206{bottom:300.323550px;}
.y198{bottom:303.202500px;}
.y70{bottom:304.369950px;}
.ye0{bottom:306.006450px;}
.yc4{bottom:306.751200px;}
.y1ea{bottom:311.301750px;}
.y205{bottom:313.879650px;}
.y160{bottom:313.961700px;}
.y41{bottom:314.645850px;}
.y126{bottom:315.316950px;}
.y8a{bottom:316.308900px;}
.y1ce{bottom:316.430400px;}
.y197{bottom:319.655400px;}
.y6f{bottom:320.583900px;}
.ydf{bottom:323.003850px;}
.yc3{bottom:323.477100px;}
.y1e9{bottom:325.041900px;}
.y29{bottom:325.709250px;}
.y204{bottom:327.435600px;}
.y15f{bottom:330.313200px;}
.y40{bottom:331.046250px;}
.y125{bottom:331.460100px;}
.y1cd{bottom:332.958450px;}
.y196{bottom:336.108450px;}
.y6e{bottom:336.797700px;}
.y89{bottom:337.103100px;}
.y1e8{bottom:338.782050px;}
.yde{bottom:340.001400px;}
.yc2{bottom:340.203000px;}
.y203{bottom:340.991700px;}
.y28{bottom:342.053850px;}
.y15e{bottom:346.664850px;}
.y3f{bottom:347.446650px;}
.y124{bottom:347.603100px;}
.y1cc{bottom:349.486350px;}
.y1e7{bottom:352.522200px;}
.y195{bottom:352.561350px;}
.y6d{bottom:353.011650px;}
.y88{bottom:353.622450px;}
.y202{bottom:354.547650px;}
.yc1{bottom:356.929050px;}
.ydd{bottom:356.998800px;}
.y27{bottom:362.673450px;}
.y15d{bottom:363.016500px;}
.y123{bottom:363.746100px;}
.y3e{bottom:363.847200px;}
.y1cb{bottom:366.014250px;}
.y1e6{bottom:366.262350px;}
.y201{bottom:368.103600px;}
.y194{bottom:369.014250px;}
.y6c{bottom:369.225600px;}
.y87{bottom:370.141650px;}
.yc0{bottom:373.654950px;}
.ydc{bottom:378.271200px;}
.y26{bottom:379.018050px;}
.y15c{bottom:379.368000px;}
.y122{bottom:379.889100px;}
.y1ca{bottom:382.542150px;}
.y3d{bottom:384.522600px;}
.y6b{bottom:385.439400px;}
.y193{bottom:385.467150px;}
.y86{bottom:386.660850px;}
.y1e5{bottom:388.477500px;}
.y200{bottom:390.134700px;}
.ybf{bottom:390.380850px;}
.ydb{bottom:394.968750px;}
.y25{bottom:395.362650px;}
.y121{bottom:396.032250px;}
.y1c9{bottom:399.070200px;}
.y15b{bottom:399.994650px;}
.y6a{bottom:401.653350px;}
.y192{bottom:401.920050px;}
.y1e4{bottom:402.217650px;}
.y85{bottom:403.180200px;}
.y1ff{bottom:403.690650px;}
.ybe{bottom:407.106750px;}
.yda{bottom:411.666300px;}
.y24{bottom:411.707250px;}
.y120{bottom:412.175250px;}
.y1c8{bottom:415.598100px;}
.y15a{bottom:416.346150px;}
.y1fe{bottom:417.246750px;}
.y69{bottom:417.867300px;}
.y191{bottom:418.373100px;}
.y84{bottom:419.699400px;}
.y3c{bottom:421.598550px;}
.y1e3{bottom:424.432800px;}
.y23{bottom:428.051850px;}
.ybd{bottom:428.107650px;}
.y11f{bottom:428.318250px;}
.yd9{bottom:428.363700px;}
.y1fd{bottom:430.802700px;}
.y1c7{bottom:432.126000px;}
.y159{bottom:432.697800px;}
.y68{bottom:434.081100px;}
.y190{bottom:434.826000px;}
.y83{bottom:436.218600px;}
.y3b{bottom:437.998950px;}
.y1e2{bottom:438.172950px;}
.y1fc{bottom:444.358800px;}
.y22{bottom:444.396450px;}
.ybc{bottom:444.833550px;}
.yd8{bottom:445.061100px;}
.y1c6{bottom:448.653900px;}
.y11e{bottom:448.736250px;}
.y158{bottom:449.049300px;}
.y67{bottom:450.295050px;}
.y18f{bottom:451.278900px;}
.y1e1{bottom:451.913100px;}
.y82{bottom:452.737950px;}
.y3a{bottom:454.399500px;}
.y21{bottom:460.741050px;}
.ybb{bottom:461.559450px;}
.yd7{bottom:461.758650px;}
.y11d{bottom:464.879400px;}
.y1c5{bottom:465.181800px;}
.y157{bottom:465.400950px;}
.y1e0{bottom:465.653250px;}
.y1fb{bottom:466.389750px;}
.y66{bottom:466.509000px;}
.y81{bottom:469.257150px;}
.y39{bottom:470.799900px;}
.y18e{bottom:472.006800px;}
.yba{bottom:478.285350px;}
.yd6{bottom:478.456050px;}
.y1fa{bottom:479.945850px;}
.y11c{bottom:481.022400px;}
.y20{bottom:481.360650px;}
.y1c4{bottom:481.709850px;}
.y156{bottom:481.752450px;}
.y80{bottom:485.776500px;}
.y65{bottom:486.997800px;}
.y38{bottom:487.200450px;}
.y1df{bottom:487.868400px;}
.y18d{bottom:488.459850px;}
.y1f9{bottom:493.501800px;}
.yb9{bottom:495.011250px;}
.yd5{bottom:495.153600px;}
.y11b{bottom:497.165400px;}
.y1f{bottom:497.705250px;}
.y155{bottom:498.104100px;}
.y1c3{bottom:498.237750px;}
.y1de{bottom:501.608550px;}
.y7f{bottom:502.295700px;}
.y64{bottom:503.211750px;}
.y18c{bottom:504.912750px;}
.y37{bottom:507.875850px;}
.yb8{bottom:511.737150px;}
.yd4{bottom:511.851000px;}
.y11a{bottom:513.308400px;}
.y1e{bottom:514.049850px;}
.y154{bottom:514.455750px;}
.y1c2{bottom:514.765650px;}
.y1dd{bottom:515.348700px;}
.y1f8{bottom:515.532900px;}
.y7e{bottom:518.814900px;}
.y63{bottom:519.425550px;}
.y18b{bottom:521.365650px;}
.y36{bottom:524.276250px;}
.yb7{bottom:528.463050px;}
.yd3{bottom:528.548400px;}
.y1dc{bottom:529.088850px;}
.y119{bottom:529.451550px;}
.y1d{bottom:530.394450px;}
.y153{bottom:530.807250px;}
.y7d{bottom:535.334100px;}
.y1c1{bottom:535.568550px;}
.y62{bottom:535.639500px;}
.y18a{bottom:537.818550px;}
.y35{bottom:540.676800px;}
.yb6{bottom:545.189100px;}
.yd2{bottom:545.245950px;}
.y118{bottom:545.594550px;}
.y1c{bottom:546.739050px;}
.y152{bottom:551.654400px;}
.y61{bottom:551.853450px;}
.y1c0{bottom:552.096450px;}
.y189{bottom:554.271450px;}
.y34{bottom:557.077200px;}
.y214{bottom:557.160300px;}
.y117{bottom:561.737550px;}
.yb5{bottom:561.915000px;}
.yd1{bottom:561.943350px;}
.y1b{bottom:563.083650px;}
.y151{bottom:563.510400px;}
.y188{bottom:570.724350px;}
.y1bf{bottom:572.899500px;}
.y33{bottom:573.477750px;}
.y116{bottom:577.880550px;}
.yb4{bottom:578.640900px;}
.y1a{bottom:579.428250px;}
.y150{bottom:579.862050px;}
.y187{bottom:587.177400px;}
.y1be{bottom:589.427400px;}
.y32{bottom:589.878150px;}
.y115{bottom:594.023550px;}
.y19{bottom:595.772850px;}
.y14f{bottom:596.213550px;}
.yb2{bottom:598.816050px;}
.y186{bottom:603.630300px;}
.yb1{bottom:605.566050px;}
.y1bd{bottom:605.955300px;}
.y31{bottom:606.278550px;}
.y114{bottom:610.166700px;}
.y14e{bottom:612.565200px;}
.y18{bottom:616.392450px;}
.y185{bottom:620.083200px;}
.y1bc{bottom:622.483200px;}
.y30{bottom:622.679100px;}
.yf9{bottom:625.816050px;}
.y113{bottom:626.309700px;}
.y14d{bottom:628.916850px;}
.yf8{bottom:632.566050px;}
.y17{bottom:632.737050px;}
.yb0{bottom:633.262200px;}
.y184{bottom:636.536100px;}
.y1bb{bottom:639.011100px;}
.y2f{bottom:639.079500px;}
.yaf{bottom:640.012200px;}
.y112{bottom:642.452700px;}
.y23c{bottom:644.881800px;}
.y22c{bottom:644.881950px;}
.y16{bottom:649.081650px;}
.y14c{bottom:649.543350px;}
.y2e{bottom:655.479900px;}
.y1ba{bottom:655.539000px;}
.y183{bottom:657.264150px;}
.yf7{bottom:660.262200px;}
.y22b{bottom:661.771200px;}
.y23b{bottom:662.110800px;}
.y111{bottom:662.870700px;}
.y15{bottom:665.426250px;}
.y256{bottom:665.433150px;}
.yf6{bottom:667.012200px;}
.yae{bottom:667.708500px;}
.y2d{bottom:671.880450px;}
.y1b9{bottom:672.067050px;}
.y182{bottom:673.717050px;}
.y26e{bottom:678.297300px;}
.y255{bottom:678.642300px;}
.y22a{bottom:678.660450px;}
.y110{bottom:679.013850px;}
.yac{bottom:681.208500px;}
.y14{bottom:681.770850px;}
.y23a{bottom:683.614650px;}
.y14b{bottom:686.521500px;}
.y2c{bottom:688.280850px;}
.y1b8{bottom:688.594950px;}
.y181{bottom:690.169950px;}
.y26d{bottom:691.161300px;}
.y254{bottom:691.851450px;}
.yad{bottom:694.708500px;}
.y10f{bottom:695.456850px;}
.y229{bottom:695.549700px;}
.y13{bottom:698.115450px;}
.yf5{bottom:701.458500px;}
.y14a{bottom:702.873150px;}
.y2b{bottom:704.681400px;}
.y1b7{bottom:705.122850px;}
.y180{bottom:706.622850px;}
.y10e{bottom:711.899850px;}
.y228{bottom:712.438950px;}
.y26c{bottom:712.500450px;}
.y253{bottom:713.535450px;}
.yab{bottom:715.654650px;}
.y12{bottom:718.735050px;}
.y149{bottom:718.924650px;}
.y2a{bottom:721.081800px;}
.y1b6{bottom:721.650750px;}
.y17f{bottom:723.075750px;}
.y26b{bottom:725.364600px;}
.y239{bottom:726.622500px;}
.y252{bottom:726.744600px;}
.y10d{bottom:728.343000px;}
.ya9{bottom:729.154650px;}
.y227{bottom:729.328200px;}
.y148{bottom:734.976300px;}
.yf4{bottom:735.904650px;}
.y1b5{bottom:738.178650px;}
.y26a{bottom:738.228750px;}
.y17e{bottom:739.528800px;}
.y251{bottom:739.953750px;}
.yaa{bottom:742.654650px;}
.y238{bottom:743.851500px;}
.y10c{bottom:744.786000px;}
.y226{bottom:746.217450px;}
.y11{bottom:749.371650px;}
.y147{bottom:751.027950px;}
.y269{bottom:751.092750px;}
.y1b4{bottom:754.706700px;}
.y17d{bottom:755.981700px;}
.y10b{bottom:761.229000px;}
.y250{bottom:761.637750px;}
.y225{bottom:763.106700px;}
.ya8{bottom:763.600950px;}
.y237{bottom:765.355350px;}
.y10{bottom:765.871650px;}
.y146{bottom:767.079450px;}
.y1b3{bottom:771.234600px;}
.y268{bottom:772.431900px;}
.y17c{bottom:772.434600px;}
.y24f{bottom:774.846900px;}
.ya6{bottom:777.100950px;}
.y10a{bottom:777.672000px;}
.y224{bottom:779.995950px;}
.yf{bottom:782.371650px;}
.y145{bottom:783.131100px;}
.y267{bottom:785.295900px;}
.y1b2{bottom:787.762500px;}
.y24e{bottom:788.056050px;}
.y17b{bottom:788.887500px;}
.ya7{bottom:790.600950px;}
.y109{bottom:794.115000px;}
.y223{bottom:796.885200px;}
.y266{bottom:798.160200px;}
.ye{bottom:798.871650px;}
.y144{bottom:799.182750px;}
.y24d{bottom:801.265200px;}
.y1b1{bottom:804.290400px;}
.y17a{bottom:805.340400px;}
.y236{bottom:808.363200px;}
.y108{bottom:810.558150px;}
.y265{bottom:811.024200px;}
.ya5{bottom:811.547100px;}
.y222{bottom:813.774600px;}
.y24c{bottom:814.474200px;}
.y143{bottom:815.234250px;}
.yd{bottom:815.371650px;}
.yf3{bottom:818.297100px;}
.y1b0{bottom:820.818300px;}
.y179{bottom:821.793300px;}
.ya3{bottom:825.047100px;}
.y235{bottom:825.592200px;}
.y107{bottom:827.001150px;}
.y24b{bottom:827.683350px;}
.y221{bottom:830.663700px;}
.y142{bottom:831.285900px;}
.yc{bottom:831.871650px;}
.y264{bottom:832.363350px;}
.y1af{bottom:837.346200px;}
.y178{bottom:838.246350px;}
.ya4{bottom:838.547100px;}
.y106{bottom:843.444150px;}
.y263{bottom:845.227350px;}
.yf2{bottom:845.993250px;}
.y234{bottom:847.096200px;}
.y141{bottom:847.337400px;}
.y220{bottom:847.552950px;}
.yb{bottom:848.371650px;}
.y24a{bottom:849.367350px;}
.yf1{bottom:852.743250px;}
.y177{bottom:854.699250px;}
.y1ae{bottom:858.149250px;}
.ya2{bottom:859.493250px;}
.y105{bottom:859.887300px;}
.y249{bottom:862.576500px;}
.y140{bottom:863.389050px;}
.y21f{bottom:864.442200px;}
.ya{bottom:864.871650px;}
.ya1{bottom:866.243250px;}
.y262{bottom:866.566500px;}
.y176{bottom:871.152150px;}
.y248{bottom:875.785650px;}
.y104{bottom:876.330300px;}
.y261{bottom:879.430500px;}
.y13f{bottom:879.440550px;}
.yf0{bottom:880.439550px;}
.y21e{bottom:881.331450px;}
.y9{bottom:881.371650px;}
.yef{bottom:887.189550px;}
.y175{bottom:887.604900px;}
.y247{bottom:888.994650px;}
.y233{bottom:890.103900px;}
.y260{bottom:892.294800px;}
.y103{bottom:892.773300px;}
.ya0{bottom:893.939550px;}
.y1ad{bottom:895.480050px;}
.y13e{bottom:895.492200px;}
.y8{bottom:897.871650px;}
.y9f{bottom:900.689550px;}
.y246{bottom:902.203800px;}
.y21d{bottom:902.495700px;}
.y174{bottom:904.057950px;}
.y25f{bottom:905.158800px;}
.y102{bottom:909.216300px;}
.y13d{bottom:911.543700px;}
.y232{bottom:911.607900px;}
.y1ac{bottom:912.008100px;}
.y7{bottom:914.371650px;}
.yee{bottom:914.885700px;}
.y21c{bottom:919.384950px;}
.y173{bottom:920.510850px;}
.y245{bottom:923.887950px;}
.y101{bottom:925.659450px;}
.y25e{bottom:926.497950px;}
.y13c{bottom:927.595350px;}
.y9e{bottom:928.385700px;}
.y1ab{bottom:928.535850px;}
.y6{bottom:930.871650px;}
.y9d{bottom:935.135700px;}
.y21b{bottom:936.274200px;}
.y172{bottom:936.963750px;}
.y244{bottom:937.096950px;}
.y25d{bottom:939.361950px;}
.yed{bottom:941.885700px;}
.y100{bottom:942.102450px;}
.y13b{bottom:943.646850px;}
.y1aa{bottom:945.063750px;}
.y243{bottom:950.306100px;}
.y25c{bottom:952.226100px;}
.y21a{bottom:953.163450px;}
.y171{bottom:953.416650px;}
.y231{bottom:954.615900px;}
.yff{bottom:958.545450px;}
.y13a{bottom:959.698500px;}
.y1a9{bottom:961.591800px;}
.y9c{bottom:962.831850px;}
.y5{bottom:964.379550px;}
.y25b{bottom:965.090100px;}
.y170{bottom:969.869700px;}
.y219{bottom:970.052700px;}
.y230{bottom:971.844750px;}
.y242{bottom:971.990250px;}
.yfe{bottom:974.988300px;}
.y139{bottom:975.750000px;}
.y9a{bottom:976.331850px;}
.y1a8{bottom:978.119700px;}
.y4{bottom:982.379550px;}
.y241{bottom:985.199400px;}
.y25a{bottom:986.429250px;}
.y218{bottom:986.941950px;}
.y22f{bottom:989.073750px;}
.y9b{bottom:989.831850px;}
.y16f{bottom:990.597600px;}
.yfd{bottom:991.431450px;}
.y1a7{bottom:994.647600px;}
.y138{bottom:996.076650px;}
.y240{bottom:998.408400px;}
.y259{bottom:999.293400px;}
.y217{bottom:1003.831200px;}
.y22e{bottom:1006.302750px;}
.yfc{bottom:1007.874450px;}
.y3{bottom:1008.883500px;}
.y99{bottom:1010.778150px;}
.y1a6{bottom:1011.175500px;}
.y137{bottom:1012.128150px;}
.y258{bottom:1012.157400px;}
.y23f{bottom:1020.092400px;}
.y216{bottom:1020.720450px;}
.y22d{bottom:1023.531600px;}
.yfb{bottom:1024.317600px;}
.y1a5{bottom:1027.703400px;}
.y16e{bottom:1027.778400px;}
.y136{bottom:1028.179800px;}
.y23e{bottom:1033.301550px;}
.y257{bottom:1033.496550px;}
.y2{bottom:1037.683500px;}
.y215{bottom:1041.884700px;}
.y98{bottom:1042.560000px;}
.y135{bottom:1044.231300px;}
.yfa{bottom:1045.035600px;}
.y23d{bottom:1046.510700px;}
.y1{bottom:1097.157900px;}
.y5d{bottom:1098.271200px;}
.yb3{bottom:1098.951600px;}
.y5f{bottom:1137.109350px;}
.y5e{bottom:1147.909350px;}
.h11{height:27.216000px;}
.h18{height:31.957453px;}
.h15{height:32.783203px;}
.h10{height:33.873047px;}
.hc{height:38.841797px;}
.hb{height:39.518555px;}
.h19{height:40.500000px;}
.h14{height:40.561523px;}
.h13{height:40.935059px;}
.h6{height:44.531250px;}
.h4{height:45.000000px;}
.h12{height:46.393066px;}
.ha{height:47.460938px;}
.h8{height:49.939453px;}
.h9{height:50.097656px;}
.hd{height:50.809570px;}
.h5{height:55.664062px;}
.he{height:56.455078px;}
.h17{height:59.783203px;}
.h7{height:63.281250px;}
.h16{height:67.561523px;}
.hf{height:76.412109px;}
.h3{height:84.375000px;}
.h2{height:98.244141px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:20.391600px;}
.x2{left:63.779550px;}
.x20{left:65.480250px;}
.x6{left:69.779550px;}
.x3{left:80.804550px;}
.x1{left:85.753950px;}
.x1f{left:87.000000px;}
.xc{left:123.307050px;}
.x10{left:129.685050px;}
.xd{left:140.332050px;}
.x31{left:144.669600px;}
.x34{left:154.766700px;}
.x2c{left:216.502350px;}
.x2f{left:237.527400px;}
.x29{left:239.845500px;}
.x26{left:256.506300px;}
.x2d{left:259.071600px;}
.x27{left:268.047450px;}
.x23{left:277.789500px;}
.x21{left:286.383600px;}
.x22{left:290.786400px;}
.x24{left:292.816050px;}
.x28{left:295.474800px;}
.x25{left:302.566500px;}
.x14{left:308.604300px;}
.x13{left:309.886950px;}
.x30{left:311.797650px;}
.x2e{left:314.110350px;}
.x2b{left:317.667150px;}
.x2a{left:326.140350px;}
.x15{left:345.271200px;}
.x12{left:356.436150px;}
.x17{left:357.479850px;}
.x18{left:358.507050px;}
.x1a{left:368.229900px;}
.x16{left:369.257100px;}
.x1c{left:373.885050px;}
.x11{left:378.496650px;}
.x1d{left:383.923800px;}
.x1b{left:390.532200px;}
.x19{left:407.989500px;}
.x4{left:429.448800px;}
.x5{left:446.473800px;}
.x33{left:450.673800px;}
.xe{left:488.976450px;}
.xf{left:506.001450px;}
.x32{left:510.338850px;}
.xa{left:520.423800px;}
.x8{left:664.734300px;}
.xb{left:667.864050px;}
.x9{left:774.634350px;}
.x1e{left:847.824600px;}
@media print{
.v5{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:24.000000pt;}
.ls44{letter-spacing:-1.488000pt;}
.ls3c{letter-spacing:-1.344000pt;}
.ls4e{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls51{letter-spacing:-0.912000pt;}
.ls50{letter-spacing:-0.816000pt;}
.ls26{letter-spacing:-0.746667pt;}
.ls14{letter-spacing:-0.720000pt;}
.ls40{letter-spacing:-0.624000pt;}
.ls42{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.528000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.432000pt;}
.ls69{letter-spacing:-0.410667pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls78{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls43{letter-spacing:-0.335808pt;}
.ls67{letter-spacing:-0.298667pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls4f{letter-spacing:-0.279840pt;}
.ls68{letter-spacing:-0.261333pt;}
.ls3e{letter-spacing:-0.251856pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls66{letter-spacing:-0.149333pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls6a{letter-spacing:-0.112000pt;}
.ls52{letter-spacing:-0.111936pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls41{letter-spacing:-0.083952pt;}
.ls6b{letter-spacing:-0.074667pt;}
.ls47{letter-spacing:-0.055968pt;}
.ls3f{letter-spacing:-0.048000pt;}
.ls65{letter-spacing:-0.037333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.003200pt;}
.ls38{letter-spacing:0.004800pt;}
.ls75{letter-spacing:0.037333pt;}
.ls4{letter-spacing:0.048000pt;}
.ls71{letter-spacing:0.074667pt;}
.ls3b{letter-spacing:0.096000pt;}
.ls5f{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.144000pt;}
.ls53{letter-spacing:0.149333pt;}
.ls5b{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.240000pt;}
.ls58{letter-spacing:0.261333pt;}
.ls17{letter-spacing:0.288000pt;}
.ls5a{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.336000pt;}
.ls54{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.432000pt;}
.ls70{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.522667pt;}
.ls2{letter-spacing:0.528000pt;}
.ls72{letter-spacing:0.560000pt;}
.ls49{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.624000pt;}
.ls46{letter-spacing:0.643632pt;}
.ls2d{letter-spacing:0.672000pt;}
.ls56{letter-spacing:0.709333pt;}
.ls1c{letter-spacing:0.720000pt;}
.ls19{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.816000pt;}
.ls57{letter-spacing:0.821333pt;}
.ls59{letter-spacing:0.858667pt;}
.ls2b{letter-spacing:0.864000pt;}
.ls34{letter-spacing:0.869333pt;}
.ls35{letter-spacing:0.874667pt;}
.ls37{letter-spacing:0.885333pt;}
.ls73{letter-spacing:0.896000pt;}
.ls64{letter-spacing:0.912000pt;}
.ls61{letter-spacing:0.933333pt;}
.ls36{letter-spacing:0.954133pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls74{letter-spacing:0.970667pt;}
.ls27{letter-spacing:1.008000pt;}
.ls62{letter-spacing:1.045333pt;}
.ls48{letter-spacing:1.056000pt;}
.ls55{letter-spacing:1.082667pt;}
.ls20{letter-spacing:1.104000pt;}
.ls2e{letter-spacing:1.152000pt;}
.ls23{letter-spacing:1.200000pt;}
.ls4c{letter-spacing:1.248000pt;}
.ls3d{letter-spacing:1.259280pt;}
.ls22{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.344000pt;}
.ls2c{letter-spacing:1.392000pt;}
.ls77{letter-spacing:1.418667pt;}
.lsb{letter-spacing:1.440000pt;}
.ls4d{letter-spacing:1.584000pt;}
.ls45{letter-spacing:1.632000pt;}
.ls2a{letter-spacing:1.680000pt;}
.ls60{letter-spacing:1.717333pt;}
.ls4b{letter-spacing:1.728000pt;}
.ls76{letter-spacing:1.754667pt;}
.ls3a{letter-spacing:1.776000pt;}
.ls5d{letter-spacing:1.792000pt;}
.ls1e{letter-spacing:1.893851pt;}
.ls5e{letter-spacing:1.941333pt;}
.ls6d{letter-spacing:2.016000pt;}
.ls33{letter-spacing:2.064000pt;}
.ls0{letter-spacing:2.112000pt;}
.ls32{letter-spacing:2.160000pt;}
.ls6f{letter-spacing:2.314667pt;}
.ls2f{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:2.496000pt;}
.ls4a{letter-spacing:2.592000pt;}
.ls28{letter-spacing:2.640000pt;}
.ls63{letter-spacing:2.976000pt;}
.ls29{letter-spacing:3.072000pt;}
.ls6e{letter-spacing:3.248000pt;}
.ls1d{letter-spacing:3.264000pt;}
.ls21{letter-spacing:3.312000pt;}
.ls31{letter-spacing:3.696000pt;}
.ls24{letter-spacing:541.959680pt;}
.ls25{letter-spacing:598.336213pt;}
.ws6f{word-spacing:-48.000000pt;}
.wsb0{word-spacing:-37.333333pt;}
.ws0{word-spacing:-21.333333pt;}
.ws6{word-spacing:-16.000000pt;}
.ws48{word-spacing:-13.824000pt;}
.ws73{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.296000pt;}
.ws5{word-spacing:-13.152000pt;}
.ws70{word-spacing:-12.816000pt;}
.ws6a{word-spacing:-12.720000pt;}
.ws6e{word-spacing:-11.664000pt;}
.wsaf{word-spacing:-10.229333pt;}
.ws2c{word-spacing:-9.120000pt;}
.ws69{word-spacing:-8.926896pt;}
.ws1{word-spacing:-8.519573pt;}
.ws71{word-spacing:-8.311248pt;}
.ws3{word-spacing:-7.667616pt;}
.ws72{word-spacing:-7.611648pt;}
.ws6c{word-spacing:-7.583664pt;}
.ws92{word-spacing:-7.555680pt;}
.ws6b{word-spacing:-7.415760pt;}
.ws91{word-spacing:-7.387776pt;}
.ws6d{word-spacing:-7.331808pt;}
.ws2{word-spacing:-6.815659pt;}
.ws9d{word-spacing:-4.560000pt;}
.wsb4{word-spacing:-4.106667pt;}
.wsb1{word-spacing:-4.069333pt;}
.wsc2{word-spacing:-3.920000pt;}
.wsc6{word-spacing:-3.882667pt;}
.ws21{word-spacing:-3.600000pt;}
.wsc4{word-spacing:-3.546667pt;}
.wsc5{word-spacing:-3.509333pt;}
.ws98{word-spacing:-3.408000pt;}
.wsc3{word-spacing:-3.322667pt;}
.wsf{word-spacing:-3.312000pt;}
.wse{word-spacing:-3.264000pt;}
.ws10{word-spacing:-3.216000pt;}
.ws12{word-spacing:-3.168000pt;}
.wsb6{word-spacing:-3.136000pt;}
.wsc9{word-spacing:-3.098667pt;}
.ws74{word-spacing:-3.072000pt;}
.wsb3{word-spacing:-3.061333pt;}
.wsb5{word-spacing:-3.024000pt;}
.ws7e{word-spacing:-2.928000pt;}
.ws3f{word-spacing:-2.880000pt;}
.wsc7{word-spacing:-2.874667pt;}
.wsae{word-spacing:-2.832000pt;}
.ws28{word-spacing:-2.784000pt;}
.ws77{word-spacing:-2.736000pt;}
.wsb9{word-spacing:-2.650667pt;}
.ws14{word-spacing:-2.640000pt;}
.ws22{word-spacing:-2.592000pt;}
.ws62{word-spacing:-2.544000pt;}
.ws7a{word-spacing:-2.496000pt;}
.wsb7{word-spacing:-2.464000pt;}
.ws24{word-spacing:-2.400000pt;}
.wsb8{word-spacing:-2.389333pt;}
.ws99{word-spacing:-2.208000pt;}
.ws59{word-spacing:-2.064000pt;}
.wsb2{word-spacing:-2.053333pt;}
.ws85{word-spacing:-2.016000pt;}
.ws52{word-spacing:-1.968000pt;}
.ws35{word-spacing:-1.920000pt;}
.ws97{word-spacing:-1.872000pt;}
.wsc8{word-spacing:-1.792000pt;}
.ws5b{word-spacing:-1.728000pt;}
.ws20{word-spacing:-1.584000pt;}
.wsbd{word-spacing:-1.440000pt;}
.wsa9{word-spacing:-1.392000pt;}
.ws54{word-spacing:-1.248000pt;}
.ws9{word-spacing:-1.200000pt;}
.ws46{word-spacing:-1.152000pt;}
.ws95{word-spacing:-1.104000pt;}
.ws3c{word-spacing:-1.056000pt;}
.wsa3{word-spacing:-1.008000pt;}
.ws15{word-spacing:-0.960000pt;}
.ws94{word-spacing:-0.912000pt;}
.ws81{word-spacing:-0.816000pt;}
.wsa0{word-spacing:-0.768000pt;}
.ws47{word-spacing:-0.624000pt;}
.ws75{word-spacing:-0.576000pt;}
.ws11{word-spacing:-0.528000pt;}
.wsa5{word-spacing:-0.480000pt;}
.ws3a{word-spacing:-0.432000pt;}
.ws18{word-spacing:-0.384000pt;}
.ws78{word-spacing:-0.336000pt;}
.ws89{word-spacing:-0.192000pt;}
.wsa1{word-spacing:-0.144000pt;}
.ws1f{word-spacing:-0.096000pt;}
.ws17{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.wsba{word-spacing:0.074667pt;}
.ws2b{word-spacing:0.096000pt;}
.wsd{word-spacing:0.144000pt;}
.ws45{word-spacing:0.192000pt;}
.ws27{word-spacing:0.240000pt;}
.ws1c{word-spacing:0.288000pt;}
.ws56{word-spacing:0.384000pt;}
.ws9a{word-spacing:0.480000pt;}
.ws16{word-spacing:0.528000pt;}
.ws9f{word-spacing:0.576000pt;}
.ws5d{word-spacing:0.672000pt;}
.ws8b{word-spacing:0.720000pt;}
.ws7b{word-spacing:0.768000pt;}
.wsbf{word-spacing:0.816000pt;}
.ws23{word-spacing:0.912000pt;}
.ws93{word-spacing:1.056000pt;}
.ws25{word-spacing:1.104000pt;}
.ws8f{word-spacing:1.152000pt;}
.ws1a{word-spacing:1.200000pt;}
.ws7c{word-spacing:1.248000pt;}
.ws8e{word-spacing:1.296000pt;}
.wsa4{word-spacing:1.440000pt;}
.wsa{word-spacing:1.488000pt;}
.ws29{word-spacing:1.536000pt;}
.ws2a{word-spacing:1.584000pt;}
.ws1b{word-spacing:1.632000pt;}
.wsc0{word-spacing:1.680000pt;}
.wsaa{word-spacing:1.728000pt;}
.ws5e{word-spacing:1.776000pt;}
.ws68{word-spacing:1.824000pt;}
.ws30{word-spacing:1.968000pt;}
.wsb{word-spacing:2.064000pt;}
.ws66{word-spacing:2.112000pt;}
.ws79{word-spacing:2.160000pt;}
.ws8c{word-spacing:2.208000pt;}
.ws41{word-spacing:2.352000pt;}
.ws7d{word-spacing:2.544000pt;}
.wsc{word-spacing:2.592000pt;}
.ws8d{word-spacing:2.640000pt;}
.wsad{word-spacing:2.688000pt;}
.wsac{word-spacing:2.736000pt;}
.ws8a{word-spacing:2.784000pt;}
.ws33{word-spacing:2.832000pt;}
.wsab{word-spacing:2.880000pt;}
.wsbe{word-spacing:2.976000pt;}
.ws31{word-spacing:3.024000pt;}
.ws84{word-spacing:3.072000pt;}
.ws19{word-spacing:3.120000pt;}
.ws82{word-spacing:3.168000pt;}
.ws26{word-spacing:3.264000pt;}
.wsc1{word-spacing:3.312000pt;}
.ws44{word-spacing:3.360000pt;}
.ws34{word-spacing:3.456000pt;}
.ws38{word-spacing:3.504000pt;}
.ws50{word-spacing:3.552000pt;}
.ws43{word-spacing:3.600000pt;}
.ws9e{word-spacing:3.648000pt;}
.ws83{word-spacing:3.744000pt;}
.ws76{word-spacing:3.792000pt;}
.ws88{word-spacing:3.840000pt;}
.ws1e{word-spacing:3.888000pt;}
.wsa6{word-spacing:4.032000pt;}
.ws61{word-spacing:4.080000pt;}
.ws5f{word-spacing:4.128000pt;}
.ws86{word-spacing:4.176000pt;}
.ws36{word-spacing:4.272000pt;}
.ws58{word-spacing:4.320000pt;}
.ws63{word-spacing:4.368000pt;}
.ws96{word-spacing:4.512000pt;}
.ws32{word-spacing:4.560000pt;}
.ws42{word-spacing:4.608000pt;}
.ws55{word-spacing:4.704000pt;}
.ws3e{word-spacing:4.752000pt;}
.ws57{word-spacing:4.800000pt;}
.ws65{word-spacing:4.896000pt;}
.wsa7{word-spacing:4.944000pt;}
.ws9b{word-spacing:5.040000pt;}
.ws3b{word-spacing:5.088000pt;}
.ws7f{word-spacing:5.136000pt;}
.ws51{word-spacing:5.232000pt;}
.wsa2{word-spacing:5.280000pt;}
.ws67{word-spacing:5.328000pt;}
.wsbc{word-spacing:5.376000pt;}
.ws90{word-spacing:5.520000pt;}
.ws1d{word-spacing:5.616000pt;}
.ws80{word-spacing:5.760000pt;}
.ws3d{word-spacing:5.856000pt;}
.ws5a{word-spacing:5.904000pt;}
.ws39{word-spacing:6.000000pt;}
.wsa8{word-spacing:6.048000pt;}
.ws40{word-spacing:6.096000pt;}
.ws53{word-spacing:6.144000pt;}
.ws37{word-spacing:6.192000pt;}
.wsbb{word-spacing:6.240000pt;}
.ws13{word-spacing:6.288000pt;}
.ws87{word-spacing:6.336000pt;}
.ws64{word-spacing:6.384000pt;}
.ws9c{word-spacing:6.432000pt;}
.ws60{word-spacing:6.480000pt;}
.ws5c{word-spacing:6.528000pt;}
.ws8{word-spacing:6.576000pt;}
.ws4c{word-spacing:161.731467pt;}
.ws4a{word-spacing:252.697867pt;}
.ws49{word-spacing:255.402933pt;}
.ws2f{word-spacing:388.879733pt;}
.ws4b{word-spacing:546.457867pt;}
.ws2d{word-spacing:549.006667pt;}
.ws2e{word-spacing:565.998667pt;}
.ws4e{word-spacing:619.143200pt;}
.ws4d{word-spacing:623.215733pt;}
.ws4f{word-spacing:682.170933pt;}
._8{margin-left:-21.952000pt;}
._d{margin-left:-18.438933pt;}
._7{margin-left:-9.146667pt;}
._6{margin-left:-7.622400pt;}
._b{margin-left:-6.614400pt;}
._5{margin-left:-5.515200pt;}
._0{margin-left:-4.406933pt;}
._3{margin-left:-2.770133pt;}
._1{margin-left:-1.493333pt;}
._2{width:1.713067pt;}
._c{width:8.035200pt;}
._14{width:14.896000pt;}
._13{width:16.389333pt;}
._15{width:17.920000pt;}
._4{width:33.435733pt;}
._f{width:34.533333pt;}
._12{width:35.616000pt;}
._10{width:36.549333pt;}
._e{width:38.714667pt;}
._11{width:39.872000pt;}
._a{width:965.969600pt;}
._9{width:1253.102400pt;}
.fse{font-size:23.320000pt;}
.fs5{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fs3{font-size:31.093333pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:23.822533pt;}
.y60{bottom:26.250533pt;}
.y4f{bottom:75.590533pt;}
.y134{bottom:75.590667pt;}
.y5b{bottom:81.090533pt;}
.y213{bottom:87.106933pt;}
.y1f7{bottom:87.804133pt;}
.y133{bottom:89.940000pt;}
.y7c{bottom:90.002933pt;}
.y16d{bottom:90.125467pt;}
.y4e{bottom:90.168800pt;}
.y1a4{bottom:90.215467pt;}
.y97{bottom:90.274267pt;}
.y1db{bottom:90.282133pt;}
.yd0{bottom:90.458000pt;}
.yec{bottom:90.699467pt;}
.y212{bottom:98.623467pt;}
.y5a{bottom:103.886667pt;}
.y132{bottom:104.289333pt;}
.y7b{bottom:104.415200pt;}
.y16c{bottom:104.660133pt;}
.y4d{bottom:104.746933pt;}
.y1a3{bottom:104.840267pt;}
.y96{bottom:104.958133pt;}
.y1da{bottom:104.973600pt;}
.ycf{bottom:105.325467pt;}
.yeb{bottom:105.808267pt;}
.y1f6{bottom:107.550933pt;}
.y211{bottom:110.139867pt;}
.y59{bottom:115.086667pt;}
.y131{bottom:118.638800pt;}
.y7a{bottom:118.827600pt;}
.y16b{bottom:119.194800pt;}
.y4c{bottom:119.325200pt;}
.y1a2{bottom:119.465067pt;}
.y95{bottom:119.641867pt;}
.y1d9{bottom:119.665067pt;}
.y1f5{bottom:119.764400pt;}
.yce{bottom:120.193067pt;}
.yea{bottom:120.917200pt;}
.y58{bottom:126.286667pt;}
.y210{bottom:129.189733pt;}
.y1f4{bottom:131.977867pt;}
.y130{bottom:132.988133pt;}
.y79{bottom:133.240000pt;}
.y16a{bottom:133.729600pt;}
.y4b{bottom:133.903333pt;}
.y1a1{bottom:134.089867pt;}
.y94{bottom:134.325733pt;}
.y1d8{bottom:134.356667pt;}
.ye9{bottom:136.026000pt;}
.y57{bottom:137.486667pt;}
.ycd{bottom:138.860533pt;}
.y20f{bottom:140.706133pt;}
.y1f3{bottom:144.191333pt;}
.y12f{bottom:147.337467pt;}
.y78{bottom:147.652267pt;}
.y169{bottom:148.264267pt;}
.y4a{bottom:148.481467pt;}
.y56{bottom:148.686667pt;}
.y1a0{bottom:148.714800pt;}
.y93{bottom:149.009467pt;}
.y1d7{bottom:149.048133pt;}
.ye8{bottom:151.134800pt;}
.ycc{bottom:153.728000pt;}
.y20e{bottom:159.756000pt;}
.y55{bottom:159.886667pt;}
.y12e{bottom:161.686800pt;}
.y168{bottom:162.799067pt;}
.y49{bottom:163.059733pt;}
.y19f{bottom:163.339600pt;}
.y92{bottom:163.693200pt;}
.y1d6{bottom:163.739600pt;}
.y1f2{bottom:163.938133pt;}
.y77{bottom:165.864667pt;}
.ye7{bottom:166.243733pt;}
.ycb{bottom:168.595467pt;}
.y20d{bottom:171.272400pt;}
.y12d{bottom:176.036267pt;}
.y1f1{bottom:176.151600pt;}
.y167{bottom:177.333867pt;}
.y48{bottom:177.637867pt;}
.y19e{bottom:177.964400pt;}
.y91{bottom:178.377067pt;}
.y1d5{bottom:178.431067pt;}
.y54{bottom:178.895867pt;}
.y76{bottom:180.276933pt;}
.ye6{bottom:181.352533pt;}
.y20c{bottom:182.788933pt;}
.yca{bottom:183.462933pt;}
.y1f0{bottom:188.365067pt;}
.y12c{bottom:190.385600pt;}
.y166{bottom:191.868533pt;}
.y47{bottom:192.216000pt;}
.y19d{bottom:192.589333pt;}
.y90{bottom:193.060800pt;}
.y1d4{bottom:193.122533pt;}
.y53{bottom:193.295867pt;}
.y75{bottom:194.689333pt;}
.ye5{bottom:196.461467pt;}
.yc9{bottom:198.330400pt;}
.y1ef{bottom:200.578533pt;}
.y20b{bottom:201.838667pt;}
.y12b{bottom:204.734933pt;}
.y165{bottom:206.403333pt;}
.y46{bottom:206.794267pt;}
.y19c{bottom:207.214000pt;}
.y52{bottom:207.695867pt;}
.y8f{bottom:207.744533pt;}
.y1d3{bottom:207.814000pt;}
.y74{bottom:209.101733pt;}
.ye4{bottom:211.570267pt;}
.yc8{bottom:213.197867pt;}
.y20a{bottom:213.355067pt;}
.y12a{bottom:219.084267pt;}
.y1ee{bottom:220.325333pt;}
.y164{bottom:220.938133pt;}
.y45{bottom:221.372400pt;}
.y51{bottom:222.095867pt;}
.y8e{bottom:222.428400pt;}
.y1d2{bottom:222.505600pt;}
.y73{bottom:223.514000pt;}
.y209{bottom:224.871600pt;}
.y19b{bottom:225.638933pt;}
.ye3{bottom:226.679200pt;}
.yc7{bottom:228.065333pt;}
.y1ed{bottom:232.538800pt;}
.y163{bottom:235.472800pt;}
.y44{bottom:235.950667pt;}
.y208{bottom:236.388000pt;}
.y8d{bottom:237.112133pt;}
.y1d1{bottom:237.197067pt;}
.y129{bottom:237.233600pt;}
.y19a{bottom:240.263733pt;}
.y50{bottom:240.295867pt;}
.y72{bottom:241.726400pt;}
.ye2{bottom:241.788000pt;}
.yc6{bottom:242.932800pt;}
.y1ec{bottom:244.752267pt;}
.y162{bottom:250.007600pt;}
.y43{bottom:250.528800pt;}
.y128{bottom:251.583067pt;}
.y8c{bottom:251.795867pt;}
.y1d0{bottom:251.888533pt;}
.y199{bottom:254.888533pt;}
.y207{bottom:255.437867pt;}
.y71{bottom:256.138667pt;}
.ye1{bottom:256.896800pt;}
.yc5{bottom:257.800267pt;}
.y1eb{bottom:264.499067pt;}
.y161{bottom:264.542267pt;}
.y42{bottom:265.106933pt;}
.y127{bottom:265.932400pt;}
.y8b{bottom:266.479733pt;}
.y1cf{bottom:266.580000pt;}
.y206{bottom:266.954267pt;}
.y198{bottom:269.513333pt;}
.y70{bottom:270.551067pt;}
.ye0{bottom:272.005733pt;}
.yc4{bottom:272.667733pt;}
.y1ea{bottom:276.712667pt;}
.y205{bottom:279.004133pt;}
.y160{bottom:279.077067pt;}
.y41{bottom:279.685200pt;}
.y126{bottom:280.281733pt;}
.y8a{bottom:281.163467pt;}
.y1ce{bottom:281.271467pt;}
.y197{bottom:284.138133pt;}
.y6f{bottom:284.963467pt;}
.ydf{bottom:287.114533pt;}
.yc3{bottom:287.535200pt;}
.y1e9{bottom:288.926133pt;}
.y29{bottom:289.519333pt;}
.y204{bottom:291.053867pt;}
.y15f{bottom:293.611733pt;}
.y40{bottom:294.263333pt;}
.y125{bottom:294.631200pt;}
.y1cd{bottom:295.963067pt;}
.y196{bottom:298.763067pt;}
.y6e{bottom:299.375733pt;}
.y89{bottom:299.647200pt;}
.y1e8{bottom:301.139600pt;}
.yde{bottom:302.223467pt;}
.yc2{bottom:302.402667pt;}
.y203{bottom:303.103733pt;}
.y28{bottom:304.047867pt;}
.y15e{bottom:308.146533pt;}
.y3f{bottom:308.841467pt;}
.y124{bottom:308.980533pt;}
.y1cc{bottom:310.654533pt;}
.y1e7{bottom:313.353067pt;}
.y195{bottom:313.387867pt;}
.y6d{bottom:313.788133pt;}
.y88{bottom:314.331067pt;}
.y202{bottom:315.153467pt;}
.yc1{bottom:317.270267pt;}
.ydd{bottom:317.332267pt;}
.y27{bottom:322.376400pt;}
.y15d{bottom:322.681333pt;}
.y123{bottom:323.329867pt;}
.y3e{bottom:323.419733pt;}
.y1cb{bottom:325.346000pt;}
.y1e6{bottom:325.566533pt;}
.y201{bottom:327.203200pt;}
.y194{bottom:328.012667pt;}
.y6c{bottom:328.200533pt;}
.y87{bottom:329.014800pt;}
.yc0{bottom:332.137733pt;}
.ydc{bottom:336.241067pt;}
.y26{bottom:336.904933pt;}
.y15c{bottom:337.216000pt;}
.y122{bottom:337.679200pt;}
.y1ca{bottom:340.037467pt;}
.y3d{bottom:341.797867pt;}
.y6b{bottom:342.612800pt;}
.y193{bottom:342.637467pt;}
.y86{bottom:343.698533pt;}
.y1e5{bottom:345.313333pt;}
.y200{bottom:346.786400pt;}
.ybf{bottom:347.005200pt;}
.ydb{bottom:351.083333pt;}
.y25{bottom:351.433467pt;}
.y121{bottom:352.028667pt;}
.y1c9{bottom:354.729067pt;}
.y15b{bottom:355.550800pt;}
.y6a{bottom:357.025200pt;}
.y192{bottom:357.262267pt;}
.y1e4{bottom:357.526800pt;}
.y85{bottom:358.382400pt;}
.y1ff{bottom:358.836133pt;}
.ybe{bottom:361.872667pt;}
.yda{bottom:365.925600pt;}
.y24{bottom:365.962000pt;}
.y120{bottom:366.378000pt;}
.y1c8{bottom:369.420533pt;}
.y15a{bottom:370.085467pt;}
.y1fe{bottom:370.886000pt;}
.y69{bottom:371.437600pt;}
.y191{bottom:371.887200pt;}
.y84{bottom:373.066133pt;}
.y3c{bottom:374.754267pt;}
.y1e3{bottom:377.273600pt;}
.y23{bottom:380.490533pt;}
.ybd{bottom:380.540133pt;}
.y11f{bottom:380.727333pt;}
.yd9{bottom:380.767733pt;}
.y1fd{bottom:382.935733pt;}
.y1c7{bottom:384.112000pt;}
.y159{bottom:384.620267pt;}
.y68{bottom:385.849867pt;}
.y190{bottom:386.512000pt;}
.y83{bottom:387.749867pt;}
.y3b{bottom:389.332400pt;}
.y1e2{bottom:389.487067pt;}
.y1fc{bottom:394.985600pt;}
.y22{bottom:395.019067pt;}
.ybc{bottom:395.407600pt;}
.yd8{bottom:395.609867pt;}
.y1c6{bottom:398.803467pt;}
.y11e{bottom:398.876667pt;}
.y158{bottom:399.154933pt;}
.y67{bottom:400.262267pt;}
.y18f{bottom:401.136800pt;}
.y1e1{bottom:401.700533pt;}
.y82{bottom:402.433733pt;}
.y3a{bottom:403.910667pt;}
.y21{bottom:409.547600pt;}
.ybb{bottom:410.275067pt;}
.yd7{bottom:410.452133pt;}
.y11d{bottom:413.226133pt;}
.y1c5{bottom:413.494933pt;}
.y157{bottom:413.689733pt;}
.y1e0{bottom:413.914000pt;}
.y1fb{bottom:414.568667pt;}
.y66{bottom:414.674667pt;}
.y81{bottom:417.117467pt;}
.y39{bottom:418.488800pt;}
.y18e{bottom:419.561600pt;}
.yba{bottom:425.142533pt;}
.yd6{bottom:425.294267pt;}
.y1fa{bottom:426.618533pt;}
.y11c{bottom:427.575467pt;}
.y20{bottom:427.876133pt;}
.y1c4{bottom:428.186533pt;}
.y156{bottom:428.224400pt;}
.y80{bottom:431.801333pt;}
.y65{bottom:432.886933pt;}
.y38{bottom:433.067067pt;}
.y1df{bottom:433.660800pt;}
.y18d{bottom:434.186533pt;}
.y1f9{bottom:438.668267pt;}
.yb9{bottom:440.010000pt;}
.yd5{bottom:440.136533pt;}
.y11b{bottom:441.924800pt;}
.y1f{bottom:442.404667pt;}
.y155{bottom:442.759200pt;}
.y1c3{bottom:442.878000pt;}
.y1de{bottom:445.874267pt;}
.y7f{bottom:446.485067pt;}
.y64{bottom:447.299333pt;}
.y18c{bottom:448.811333pt;}
.y37{bottom:451.445200pt;}
.yb8{bottom:454.877467pt;}
.yd4{bottom:454.978667pt;}
.y11a{bottom:456.274133pt;}
.y1e{bottom:456.933200pt;}
.y154{bottom:457.294000pt;}
.y1c2{bottom:457.569467pt;}
.y1dd{bottom:458.087733pt;}
.y1f8{bottom:458.251467pt;}
.y7e{bottom:461.168800pt;}
.y63{bottom:461.711600pt;}
.y18b{bottom:463.436133pt;}
.y36{bottom:466.023333pt;}
.yb7{bottom:469.744933pt;}
.yd3{bottom:469.820800pt;}
.y1dc{bottom:470.301200pt;}
.y119{bottom:470.623600pt;}
.y1d{bottom:471.461733pt;}
.y153{bottom:471.828667pt;}
.y7d{bottom:475.852533pt;}
.y1c1{bottom:476.060933pt;}
.y62{bottom:476.124000pt;}
.y18a{bottom:478.060933pt;}
.y35{bottom:480.601600pt;}
.yb6{bottom:484.612533pt;}
.yd2{bottom:484.663067pt;}
.y118{bottom:484.972933pt;}
.y1c{bottom:485.990267pt;}
.y152{bottom:490.359467pt;}
.y61{bottom:490.536400pt;}
.y1c0{bottom:490.752400pt;}
.y189{bottom:492.685733pt;}
.y34{bottom:495.179733pt;}
.y214{bottom:495.253600pt;}
.y117{bottom:499.322267pt;}
.yb5{bottom:499.480000pt;}
.yd1{bottom:499.505200pt;}
.y1b{bottom:500.518800pt;}
.y151{bottom:500.898133pt;}
.y188{bottom:507.310533pt;}
.y1bf{bottom:509.244000pt;}
.y33{bottom:509.758000pt;}
.y116{bottom:513.671600pt;}
.yb4{bottom:514.347467pt;}
.y1a{bottom:515.047333pt;}
.y150{bottom:515.432933pt;}
.y187{bottom:521.935467pt;}
.y1be{bottom:523.935467pt;}
.y32{bottom:524.336133pt;}
.y115{bottom:528.020933pt;}
.y19{bottom:529.575867pt;}
.y14f{bottom:529.967600pt;}
.yb2{bottom:532.280933pt;}
.y186{bottom:536.560267pt;}
.yb1{bottom:538.280933pt;}
.y1bd{bottom:538.626933pt;}
.y31{bottom:538.914267pt;}
.y114{bottom:542.370400pt;}
.y14e{bottom:544.502400pt;}
.y18{bottom:547.904400pt;}
.y185{bottom:551.185067pt;}
.y1bc{bottom:553.318400pt;}
.y30{bottom:553.492533pt;}
.yf9{bottom:556.280933pt;}
.y113{bottom:556.719733pt;}
.y14d{bottom:559.037200pt;}
.yf8{bottom:562.280933pt;}
.y17{bottom:562.432933pt;}
.yb0{bottom:562.899733pt;}
.y184{bottom:565.809867pt;}
.y1bb{bottom:568.009867pt;}
.y2f{bottom:568.070667pt;}
.yaf{bottom:568.899733pt;}
.y112{bottom:571.069067pt;}
.y23c{bottom:573.228267pt;}
.y22c{bottom:573.228400pt;}
.y16{bottom:576.961467pt;}
.y14c{bottom:577.371867pt;}
.y2e{bottom:582.648800pt;}
.y1ba{bottom:582.701333pt;}
.y183{bottom:584.234800pt;}
.yf7{bottom:586.899733pt;}
.y22b{bottom:588.241067pt;}
.y23b{bottom:588.542933pt;}
.y111{bottom:589.218400pt;}
.y15{bottom:591.490000pt;}
.y256{bottom:591.496133pt;}
.yf6{bottom:592.899733pt;}
.yae{bottom:593.518667pt;}
.y2d{bottom:597.227067pt;}
.y1b9{bottom:597.392933pt;}
.y182{bottom:598.859600pt;}
.y26e{bottom:602.930933pt;}
.y255{bottom:603.237600pt;}
.y22a{bottom:603.253733pt;}
.y110{bottom:603.567867pt;}
.yac{bottom:605.518667pt;}
.y14{bottom:606.018533pt;}
.y23a{bottom:607.657467pt;}
.y14b{bottom:610.241333pt;}
.y2c{bottom:611.805200pt;}
.y1b8{bottom:612.084400pt;}
.y181{bottom:613.484400pt;}
.y26d{bottom:614.365600pt;}
.y254{bottom:614.979067pt;}
.yad{bottom:617.518667pt;}
.y10f{bottom:618.183867pt;}
.y229{bottom:618.266400pt;}
.y13{bottom:620.547067pt;}
.yf5{bottom:623.518667pt;}
.y14a{bottom:624.776133pt;}
.y2b{bottom:626.383467pt;}
.y1b7{bottom:626.775867pt;}
.y180{bottom:628.109200pt;}
.y10e{bottom:632.799867pt;}
.y228{bottom:633.279067pt;}
.y26c{bottom:633.333733pt;}
.y253{bottom:634.253733pt;}
.yab{bottom:636.137467pt;}
.y12{bottom:638.875600pt;}
.y149{bottom:639.044133pt;}
.y2a{bottom:640.961600pt;}
.y1b6{bottom:641.467333pt;}
.y17f{bottom:642.734000pt;}
.y26b{bottom:644.768533pt;}
.y239{bottom:645.886667pt;}
.y252{bottom:645.995200pt;}
.y10d{bottom:647.416000pt;}
.ya9{bottom:648.137467pt;}
.y227{bottom:648.291733pt;}
.y148{bottom:653.312267pt;}
.yf4{bottom:654.137467pt;}
.y1b5{bottom:656.158800pt;}
.y26a{bottom:656.203333pt;}
.y17e{bottom:657.358933pt;}
.y251{bottom:657.736667pt;}
.yaa{bottom:660.137467pt;}
.y238{bottom:661.201333pt;}
.y10c{bottom:662.032000pt;}
.y226{bottom:663.304400pt;}
.y11{bottom:666.108133pt;}
.y147{bottom:667.580400pt;}
.y269{bottom:667.638000pt;}
.y1b4{bottom:670.850400pt;}
.y17d{bottom:671.983733pt;}
.y10b{bottom:676.648000pt;}
.y250{bottom:677.011333pt;}
.y225{bottom:678.317067pt;}
.ya8{bottom:678.756400pt;}
.y237{bottom:680.315867pt;}
.y10{bottom:680.774800pt;}
.y146{bottom:681.848400pt;}
.y1b3{bottom:685.541867pt;}
.y268{bottom:686.606133pt;}
.y17c{bottom:686.608533pt;}
.y24f{bottom:688.752800pt;}
.ya6{bottom:690.756400pt;}
.y10a{bottom:691.264000pt;}
.y224{bottom:693.329733pt;}
.yf{bottom:695.441467pt;}
.y145{bottom:696.116533pt;}
.y267{bottom:698.040800pt;}
.y1b2{bottom:700.233333pt;}
.y24e{bottom:700.494267pt;}
.y17b{bottom:701.233333pt;}
.ya7{bottom:702.756400pt;}
.y109{bottom:705.880000pt;}
.y223{bottom:708.342400pt;}
.y266{bottom:709.475733pt;}
.ye{bottom:710.108133pt;}
.y144{bottom:710.384667pt;}
.y24d{bottom:712.235733pt;}
.y1b1{bottom:714.924800pt;}
.y17a{bottom:715.858133pt;}
.y236{bottom:718.545067pt;}
.y108{bottom:720.496133pt;}
.y265{bottom:720.910400pt;}
.ya5{bottom:721.375200pt;}
.y222{bottom:723.355200pt;}
.y24c{bottom:723.977067pt;}
.y143{bottom:724.652667pt;}
.yd{bottom:724.774800pt;}
.yf3{bottom:727.375200pt;}
.y1b0{bottom:729.616267pt;}
.y179{bottom:730.482933pt;}
.ya3{bottom:733.375200pt;}
.y235{bottom:733.859733pt;}
.y107{bottom:735.112133pt;}
.y24b{bottom:735.718533pt;}
.y221{bottom:738.367733pt;}
.y142{bottom:738.920800pt;}
.yc{bottom:739.441467pt;}
.y264{bottom:739.878533pt;}
.y1af{bottom:744.307733pt;}
.y178{bottom:745.107867pt;}
.ya4{bottom:745.375200pt;}
.y106{bottom:749.728133pt;}
.y263{bottom:751.313200pt;}
.yf2{bottom:751.994000pt;}
.y234{bottom:752.974400pt;}
.y141{bottom:753.188800pt;}
.y220{bottom:753.380400pt;}
.yb{bottom:754.108133pt;}
.y24a{bottom:754.993200pt;}
.yf1{bottom:757.994000pt;}
.y177{bottom:759.732667pt;}
.y1ae{bottom:762.799333pt;}
.ya2{bottom:763.994000pt;}
.y105{bottom:764.344267pt;}
.y249{bottom:766.734667pt;}
.y140{bottom:767.456933pt;}
.y21f{bottom:768.393067pt;}
.ya{bottom:768.774800pt;}
.ya1{bottom:769.994000pt;}
.y262{bottom:770.281333pt;}
.y176{bottom:774.357467pt;}
.y248{bottom:778.476133pt;}
.y104{bottom:778.960267pt;}
.y261{bottom:781.716000pt;}
.y13f{bottom:781.724933pt;}
.yf0{bottom:782.612933pt;}
.y21e{bottom:783.405733pt;}
.y9{bottom:783.441467pt;}
.yef{bottom:788.612933pt;}
.y175{bottom:788.982133pt;}
.y247{bottom:790.217467pt;}
.y233{bottom:791.203467pt;}
.y260{bottom:793.150933pt;}
.y103{bottom:793.576267pt;}
.ya0{bottom:794.612933pt;}
.y1ad{bottom:795.982267pt;}
.y13e{bottom:795.993067pt;}
.y8{bottom:798.108133pt;}
.y9f{bottom:800.612933pt;}
.y246{bottom:801.958933pt;}
.y21d{bottom:802.218400pt;}
.y174{bottom:803.607067pt;}
.y25f{bottom:804.585600pt;}
.y102{bottom:808.192267pt;}
.y13d{bottom:810.261067pt;}
.y232{bottom:810.318133pt;}
.y1ac{bottom:810.673867pt;}
.y7{bottom:812.774800pt;}
.yee{bottom:813.231733pt;}
.y21c{bottom:817.231067pt;}
.y173{bottom:818.231867pt;}
.y245{bottom:821.233733pt;}
.y101{bottom:822.808400pt;}
.y25e{bottom:823.553733pt;}
.y13c{bottom:824.529200pt;}
.y9e{bottom:825.231733pt;}
.y1ab{bottom:825.365200pt;}
.y6{bottom:827.441467pt;}
.y9d{bottom:831.231733pt;}
.y21b{bottom:832.243733pt;}
.y172{bottom:832.856667pt;}
.y244{bottom:832.975067pt;}
.y25d{bottom:834.988400pt;}
.yed{bottom:837.231733pt;}
.y100{bottom:837.424400pt;}
.y13b{bottom:838.797200pt;}
.y1aa{bottom:840.056667pt;}
.y243{bottom:844.716533pt;}
.y25c{bottom:846.423200pt;}
.y21a{bottom:847.256400pt;}
.y171{bottom:847.481467pt;}
.y231{bottom:848.547467pt;}
.yff{bottom:852.040400pt;}
.y13a{bottom:853.065333pt;}
.y1a9{bottom:854.748267pt;}
.y9c{bottom:855.850533pt;}
.y5{bottom:857.226267pt;}
.y25b{bottom:857.857867pt;}
.y170{bottom:862.106400pt;}
.y219{bottom:862.269067pt;}
.y230{bottom:863.862000pt;}
.y242{bottom:863.991333pt;}
.yfe{bottom:866.656267pt;}
.y139{bottom:867.333333pt;}
.y9a{bottom:867.850533pt;}
.y1a8{bottom:869.439733pt;}
.y4{bottom:873.226267pt;}
.y241{bottom:875.732800pt;}
.y25a{bottom:876.826000pt;}
.y218{bottom:877.281733pt;}
.y22f{bottom:879.176667pt;}
.y9b{bottom:879.850533pt;}
.y16f{bottom:880.531200pt;}
.yfd{bottom:881.272400pt;}
.y1a7{bottom:884.131200pt;}
.y138{bottom:885.401467pt;}
.y240{bottom:887.474133pt;}
.y259{bottom:888.260800pt;}
.y217{bottom:892.294400pt;}
.y22e{bottom:894.491333pt;}
.yfc{bottom:895.888400pt;}
.y3{bottom:896.785333pt;}
.y99{bottom:898.469467pt;}
.y1a6{bottom:898.822667pt;}
.y137{bottom:899.669467pt;}
.y258{bottom:899.695467pt;}
.y23f{bottom:906.748800pt;}
.y216{bottom:907.307067pt;}
.y22d{bottom:909.805867pt;}
.yfb{bottom:910.504533pt;}
.y1a5{bottom:913.514133pt;}
.y16e{bottom:913.580800pt;}
.y136{bottom:913.937600pt;}
.y23e{bottom:918.490267pt;}
.y257{bottom:918.663600pt;}
.y2{bottom:922.385333pt;}
.y215{bottom:926.119733pt;}
.y98{bottom:926.720000pt;}
.y135{bottom:928.205600pt;}
.yfa{bottom:928.920533pt;}
.y23d{bottom:930.231733pt;}
.y1{bottom:975.251467pt;}
.y5d{bottom:976.241067pt;}
.yb3{bottom:976.845867pt;}
.y5f{bottom:1010.763867pt;}
.y5e{bottom:1020.363867pt;}
.h11{height:24.192000pt;}
.h18{height:28.406625pt;}
.h15{height:29.140625pt;}
.h10{height:30.109375pt;}
.hc{height:34.526042pt;}
.hb{height:35.127604pt;}
.h19{height:36.000000pt;}
.h14{height:36.054688pt;}
.h13{height:36.386719pt;}
.h6{height:39.583333pt;}
.h4{height:40.000000pt;}
.h12{height:41.238281pt;}
.ha{height:42.187500pt;}
.h8{height:44.390625pt;}
.h9{height:44.531250pt;}
.hd{height:45.164062pt;}
.h5{height:49.479167pt;}
.he{height:50.182292pt;}
.h17{height:53.140625pt;}
.h7{height:56.250000pt;}
.h16{height:60.054688pt;}
.hf{height:67.921875pt;}
.h3{height:75.000000pt;}
.h2{height:87.328125pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:18.125867pt;}
.x2{left:56.692933pt;}
.x20{left:58.204667pt;}
.x6{left:62.026267pt;}
.x3{left:71.826267pt;}
.x1{left:76.225733pt;}
.x1f{left:77.333333pt;}
.xc{left:109.606267pt;}
.x10{left:115.275600pt;}
.xd{left:124.739600pt;}
.x31{left:128.595200pt;}
.x34{left:137.570400pt;}
.x2c{left:192.446533pt;}
.x2f{left:211.135467pt;}
.x29{left:213.196000pt;}
.x26{left:228.005600pt;}
.x2d{left:230.285867pt;}
.x27{left:238.264400pt;}
.x23{left:246.924000pt;}
.x21{left:254.563200pt;}
.x22{left:258.476800pt;}
.x24{left:260.280933pt;}
.x28{left:262.644267pt;}
.x25{left:268.948000pt;}
.x14{left:274.314933pt;}
.x13{left:275.455067pt;}
.x30{left:277.153467pt;}
.x2e{left:279.209200pt;}
.x2b{left:282.370800pt;}
.x2a{left:289.902533pt;}
.x15{left:306.907733pt;}
.x12{left:316.832133pt;}
.x17{left:317.759867pt;}
.x18{left:318.672933pt;}
.x1a{left:327.315467pt;}
.x16{left:328.228533pt;}
.x1c{left:332.342267pt;}
.x11{left:336.441467pt;}
.x1d{left:341.265600pt;}
.x1b{left:347.139733pt;}
.x19{left:362.657333pt;}
.x4{left:381.732267pt;}
.x5{left:396.865600pt;}
.x33{left:400.598933pt;}
.xe{left:434.645733pt;}
.xf{left:449.779067pt;}
.x32{left:453.634533pt;}
.xa{left:462.598933pt;}
.x8{left:590.874933pt;}
.xb{left:593.656933pt;}
.x9{left:688.563867pt;}
.x1e{left:753.621867pt;}
}




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