
    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_601a997c1299b2ca11ceda2b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_1bc5afcf8ce0b7e2153b3e87.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_d0673c0472e034ab05af0d30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_ff8cb94508097a53b7aa1f27.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_ef7d74337fc1164131357fe2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_df39a91d53b0e7da1678a61f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_71b06d07c91d580a693dc5ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_a3601925bf5d59210d250dfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_65df028542320134c75b5b9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.157000;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_065d4cb952472c7484b7c88a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.161000;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_36c24fab892e3241bf0e41ad.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744000;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_65df028542320134c75b5b9f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.157000;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_3133171dd8785de701a32dc8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904785;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.888672;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_065d4cb952472c7484b7c88a.woff2')format("woff");}.fff{font-family:fff;line-height:1.161000;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_65df028542320134c75b5b9f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.157000;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_a3601925bf5d59210d250dfd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;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_65df028542320134c75b5b9f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.157000;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:ff13;src:url('chunks/assets/font_db4c9c937872a5b774533375.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.904785;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:ff14;src:url('chunks/assets/font_a3601925bf5d59210d250dfd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.984000;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:ff15;src:url('chunks/assets/font_065d4cb952472c7484b7c88a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.161000;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:ff16;src:url('chunks/assets/font_59a62ea2845b789e6edd3a97.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.719000;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:ff17;src:url('chunks/assets/font_d30c27eaa9252a0cf78a532c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.096400px;}
.ls30{letter-spacing:-0.660000px;}
.ls19{letter-spacing:-0.330000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.026400px;}
.ls2f{letter-spacing:0.033000px;}
.ls1c{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.066000px;}
.ls15{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.120000px;}
.lse{letter-spacing:0.132000px;}
.ls2a{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.214200px;}
.ls20{letter-spacing:0.264000px;}
.ls1f{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.297000px;}
.ls25{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.330000px;}
.ls21{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.363000px;}
.ls3{letter-spacing:0.378000px;}
.ls18{letter-spacing:0.396000px;}
.ls2b{letter-spacing:0.420000px;}
.ls32{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.528000px;}
.ls27{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.594000px;}
.ls16{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.693000px;}
.ls2c{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.726000px;}
.ls5{letter-spacing:0.756000px;}
.ls2e{letter-spacing:0.780000px;}
.ls12{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.858000px;}
.ls6{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.891000px;}
.ls10{letter-spacing:0.924000px;}
.ls17{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.056000px;}
.ls28{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.188000px;}
.ls33{letter-spacing:1.584000px;}
.ls3d{letter-spacing:2.310000px;}
.ls39{letter-spacing:2.442000px;}
.ls31{letter-spacing:2.772000px;}
.ls2{letter-spacing:3.618000px;}
.ls3b{letter-spacing:4.092000px;}
.ls38{letter-spacing:4.818000px;}
.ls29{letter-spacing:5.214000px;}
.ls36{letter-spacing:5.544000px;}
.ls35{letter-spacing:6.798000px;}
.ls3e{letter-spacing:6.930000px;}
.ls1b{letter-spacing:6.966000px;}
.ls3a{letter-spacing:7.062000px;}
.ls3c{letter-spacing:9.372000px;}
.ls24{letter-spacing:2038.568400px;}
.lsf{letter-spacing:2071.568400px;}
.ls23{letter-spacing:2134.018800px;}
.ls8{letter-spacing:2167.018800px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws1{word-spacing:-22.680000px;}
.ws2{word-spacing:-17.010000px;}
.ws1d{word-spacing:-16.500000px;}
.ws3e{word-spacing:-14.190000px;}
.wsc1{word-spacing:-13.860000px;}
.ws3d{word-spacing:-12.750000px;}
.ws0{word-spacing:-10.656000px;}
.ws58{word-spacing:-9.009000px;}
.ws3f{word-spacing:-7.371000px;}
.wsc8{word-spacing:-2.310000px;}
.wsc5{word-spacing:-1.188000px;}
.wsc2{word-spacing:-0.660000px;}
.ws2e{word-spacing:-0.528000px;}
.wsc3{word-spacing:-0.462000px;}
.ws3{word-spacing:-0.432000px;}
.ws7e{word-spacing:-0.396000px;}
.ws6b{word-spacing:-0.330000px;}
.wsa{word-spacing:-0.324000px;}
.ws72{word-spacing:-0.270000px;}
.ws8c{word-spacing:-0.264000px;}
.ws50{word-spacing:-0.198000px;}
.ws71{word-spacing:-0.132000px;}
.wsb5{word-spacing:-0.120000px;}
.ws2d{word-spacing:-0.066000px;}
.wsc6{word-spacing:-0.049500px;}
.ws4{word-spacing:0.000000px;}
.ws78{word-spacing:0.066000px;}
.ws99{word-spacing:0.120000px;}
.ws75{word-spacing:0.132000px;}
.wsbc{word-spacing:0.180000px;}
.wsad{word-spacing:0.198000px;}
.ws64{word-spacing:0.264000px;}
.ws5d{word-spacing:0.330000px;}
.wsb3{word-spacing:0.360000px;}
.ws30{word-spacing:0.396000px;}
.ws93{word-spacing:0.420000px;}
.ws2b{word-spacing:0.462000px;}
.ws94{word-spacing:0.480000px;}
.ws48{word-spacing:0.528000px;}
.ws12{word-spacing:0.540000px;}
.ws6a{word-spacing:0.594000px;}
.ws8d{word-spacing:0.600000px;}
.ws7{word-spacing:0.624000px;}
.ws15{word-spacing:0.648000px;}
.ws9e{word-spacing:0.660000px;}
.ws9d{word-spacing:0.720000px;}
.ws96{word-spacing:0.780000px;}
.ws63{word-spacing:0.792000px;}
.ws14{word-spacing:0.810000px;}
.ws87{word-spacing:0.840000px;}
.wsb8{word-spacing:0.858000px;}
.ws5e{word-spacing:0.924000px;}
.wsb6{word-spacing:0.960000px;}
.ws55{word-spacing:0.972000px;}
.ws59{word-spacing:0.990000px;}
.ws24{word-spacing:1.056000px;}
.ws88{word-spacing:1.122000px;}
.ws5a{word-spacing:1.188000px;}
.ws97{word-spacing:1.200000px;}
.ws7a{word-spacing:1.254000px;}
.ws49{word-spacing:1.320000px;}
.ws9c{word-spacing:1.380000px;}
.ws82{word-spacing:1.386000px;}
.wsbe{word-spacing:1.452000px;}
.ws57{word-spacing:1.458000px;}
.wsaa{word-spacing:1.518000px;}
.ws8f{word-spacing:1.560000px;}
.ws4c{word-spacing:1.584000px;}
.ws18{word-spacing:1.620000px;}
.ws70{word-spacing:1.650000px;}
.wsb1{word-spacing:1.680000px;}
.ws7c{word-spacing:1.716000px;}
.ws9b{word-spacing:1.740000px;}
.ws74{word-spacing:1.782000px;}
.ws53{word-spacing:1.836000px;}
.ws26{word-spacing:1.848000px;}
.ws68{word-spacing:1.914000px;}
.ws8a{word-spacing:1.920000px;}
.ws51{word-spacing:1.980000px;}
.wsb9{word-spacing:2.040000px;}
.ws2c{word-spacing:2.046000px;}
.ws16{word-spacing:2.052000px;}
.ws86{word-spacing:2.100000px;}
.ws47{word-spacing:2.112000px;}
.ws80{word-spacing:2.178000px;}
.wsbb{word-spacing:2.220000px;}
.ws39{word-spacing:2.244000px;}
.ws6{word-spacing:2.304000px;}
.ws89{word-spacing:2.310000px;}
.ws1c{word-spacing:2.322000px;}
.ws4f{word-spacing:2.376000px;}
.ws35{word-spacing:2.442000px;}
.wsa1{word-spacing:2.460000px;}
.ws10{word-spacing:2.484000px;}
.ws6c{word-spacing:2.508000px;}
.ws3c{word-spacing:2.574000px;}
.ws62{word-spacing:2.640000px;}
.ws54{word-spacing:2.700000px;}
.ws4d{word-spacing:2.706000px;}
.ws11{word-spacing:2.754000px;}
.wsb4{word-spacing:2.760000px;}
.wsb2{word-spacing:2.772000px;}
.wsbd{word-spacing:2.820000px;}
.ws4e{word-spacing:2.838000px;}
.ws13{word-spacing:2.862000px;}
.ws92{word-spacing:2.880000px;}
.ws23{word-spacing:2.904000px;}
.wsc{word-spacing:2.970000px;}
.ws7d{word-spacing:3.036000px;}
.ws25{word-spacing:3.102000px;}
.wsaf{word-spacing:3.168000px;}
.wsae{word-spacing:3.180000px;}
.ws73{word-spacing:3.186000px;}
.wsb7{word-spacing:3.234000px;}
.wsa2{word-spacing:3.300000px;}
.wsd{word-spacing:3.348000px;}
.ws61{word-spacing:3.366000px;}
.ws7f{word-spacing:3.432000px;}
.wsab{word-spacing:3.480000px;}
.ws98{word-spacing:3.498000px;}
.ws5f{word-spacing:3.564000px;}
.wsa6{word-spacing:3.630000px;}
.wse{word-spacing:3.672000px;}
.ws20{word-spacing:3.696000px;}
.wsf{word-spacing:3.726000px;}
.ws34{word-spacing:3.762000px;}
.ws9a{word-spacing:3.780000px;}
.ws37{word-spacing:3.828000px;}
.ws95{word-spacing:3.894000px;}
.ws8e{word-spacing:3.900000px;}
.ws31{word-spacing:3.960000px;}
.ws8b{word-spacing:4.020000px;}
.ws6e{word-spacing:4.026000px;}
.ws45{word-spacing:4.092000px;}
.wsa5{word-spacing:4.140000px;}
.ws5c{word-spacing:4.158000px;}
.wsa8{word-spacing:4.200000px;}
.ws1b{word-spacing:4.212000px;}
.ws22{word-spacing:4.224000px;}
.ws9f{word-spacing:4.260000px;}
.ws5{word-spacing:4.272000px;}
.ws5b{word-spacing:4.290000px;}
.wsac{word-spacing:4.320000px;}
.ws3b{word-spacing:4.356000px;}
.wsa0{word-spacing:4.422000px;}
.ws1a{word-spacing:4.428000px;}
.ws17{word-spacing:4.482000px;}
.ws32{word-spacing:4.488000px;}
.ws3a{word-spacing:4.554000px;}
.ws79{word-spacing:4.620000px;}
.ws91{word-spacing:4.680000px;}
.ws46{word-spacing:4.686000px;}
.ws4a{word-spacing:4.752000px;}
.ws65{word-spacing:4.818000px;}
.ws52{word-spacing:4.884000px;}
.wsa9{word-spacing:4.920000px;}
.ws69{word-spacing:4.950000px;}
.ws6d{word-spacing:5.016000px;}
.ws56{word-spacing:5.022000px;}
.ws42{word-spacing:5.082000px;}
.wsa7{word-spacing:5.148000px;}
.wsa4{word-spacing:5.160000px;}
.ws76{word-spacing:5.214000px;}
.wsb0{word-spacing:5.220000px;}
.ws28{word-spacing:5.280000px;}
.ws19{word-spacing:5.346000px;}
.ws60{word-spacing:5.412000px;}
.ws77{word-spacing:5.478000px;}
.wsba{word-spacing:5.520000px;}
.ws2a{word-spacing:5.544000px;}
.ws90{word-spacing:5.580000px;}
.ws83{word-spacing:5.610000px;}
.wsb{word-spacing:5.670000px;}
.ws67{word-spacing:5.676000px;}
.ws6f{word-spacing:5.742000px;}
.ws4b{word-spacing:5.874000px;}
.ws43{word-spacing:5.940000px;}
.ws36{word-spacing:6.006000px;}
.ws29{word-spacing:6.072000px;}
.ws38{word-spacing:6.138000px;}
.wsa3{word-spacing:6.180000px;}
.wsbf{word-spacing:6.204000px;}
.ws85{word-spacing:6.240000px;}
.ws33{word-spacing:6.270000px;}
.ws84{word-spacing:6.300000px;}
.ws81{word-spacing:6.336000px;}
.ws41{word-spacing:6.402000px;}
.ws2f{word-spacing:6.468000px;}
.ws27{word-spacing:6.534000px;}
.ws66{word-spacing:6.600000px;}
.wsc0{word-spacing:6.666000px;}
.ws40{word-spacing:6.732000px;}
.ws7b{word-spacing:6.798000px;}
.ws44{word-spacing:6.864000px;}
.ws21{word-spacing:6.930000px;}
.wsc4{word-spacing:6.996000px;}
.wsc7{word-spacing:7.722000px;}
.ws8{word-spacing:10.656000px;}
.ws1e{word-spacing:12.750000px;}
.ws9{word-spacing:13.344000px;}
.ws1f{word-spacing:84.708000px;}
._3{margin-left:-24.000000px;}
._4{margin-left:-17.640000px;}
._c{margin-left:-12.408000px;}
._b{margin-left:-10.032000px;}
._6{margin-left:-1.737000px;}
._2{width:1.968000px;}
._9{width:5.676000px;}
._e{width:6.996000px;}
._1{width:8.976000px;}
._5{width:10.152000px;}
._0{width:13.344000px;}
._d{width:27.504000px;}
._7{width:51.948000px;}
._a{width:54.108000px;}
._8{width:84.708000px;}
.fc4{color:rgb(0,125,60);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.100000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:49.500000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y27a{bottom:137.938350px;}
.yc4{bottom:138.192000px;}
.yda{bottom:138.200700px;}
.y9c{bottom:138.206550px;}
.y1af{bottom:138.317700px;}
.y21f{bottom:138.522450px;}
.y1fe{bottom:138.662550px;}
.y125{bottom:138.757650px;}
.y186{bottom:138.807150px;}
.y102{bottom:138.827850px;}
.y233{bottom:138.829350px;}
.y16b{bottom:139.956300px;}
.y1d4{bottom:139.969650px;}
.y254{bottom:140.232450px;}
.y6e{bottom:140.304150px;}
.ya{bottom:140.316450px;}
.y14e{bottom:142.238700px;}
.y9{bottom:153.108450px;}
.yd9{bottom:154.184700px;}
.y9b{bottom:154.190550px;}
.y1ae{bottom:155.912700px;}
.y124{bottom:156.352650px;}
.y16a{bottom:157.551300px;}
.y1d3{bottom:157.564650px;}
.yc3{bottom:158.226000px;}
.y279{bottom:159.025350px;}
.y21e{bottom:159.312450px;}
.y1fd{bottom:159.452550px;}
.y101{bottom:159.617850px;}
.y232{bottom:159.619350px;}
.y28a{bottom:159.726000px;}
.y253{bottom:161.022450px;}
.y6d{bottom:161.094150px;}
.y185{bottom:165.207150px;}
.yd8{bottom:170.168700px;}
.y9a{bottom:170.174550px;}
.y8{bottom:172.270800px;}
.y169{bottom:175.146300px;}
.y21d{bottom:180.102450px;}
.y1fc{bottom:180.242550px;}
.y231{bottom:180.409350px;}
.y289{bottom:180.516000px;}
.y252{bottom:181.812450px;}
.y6c{bottom:181.884150px;}
.y184{bottom:182.802150px;}
.yd7{bottom:186.152700px;}
.y99{bottom:186.158550px;}
.y1ad{bottom:190.039200px;}
.y278{bottom:190.507350px;}
.y100{bottom:190.802850px;}
.y7{bottom:191.446800px;}
.y168{bottom:192.741300px;}
.y123{bottom:194.646900px;}
.y1d2{bottom:195.939150px;}
.y21c{bottom:200.892450px;}
.y230{bottom:201.199350px;}
.y14d{bottom:201.569100px;}
.y98{bottom:202.142550px;}
.y6b{bottom:202.674150px;}
.yd6{bottom:206.186550px;}
.y6{bottom:210.622800px;}
.y1ac{bottom:210.829200px;}
.yff{bottom:211.592850px;}
.y277{bottom:211.594350px;}
.y288{bottom:211.701000px;}
.y251{bottom:212.997450px;}
.y122{bottom:215.436900px;}
.yc2{bottom:215.559450px;}
.y1d1{bottom:216.729150px;}
.y97{bottom:218.126550px;}
.y14c{bottom:219.164100px;}
.y21b{bottom:221.682450px;}
.y22f{bottom:221.989350px;}
.y5{bottom:223.414800px;}
.y6a{bottom:223.464150px;}
.y1fb{bottom:226.081950px;}
.y183{bottom:227.962650px;}
.y1ab{bottom:231.619200px;}
.yfe{bottom:232.382850px;}
.y287{bottom:232.491000px;}
.y250{bottom:233.787450px;}
.y167{bottom:235.365600px;}
.y121{bottom:236.226900px;}
.yc1{bottom:236.349450px;}
.y14b{bottom:236.759100px;}
.y1d0{bottom:237.519150px;}
.y96{bottom:238.160550px;}
.y4{bottom:242.590800px;}
.y276{bottom:243.076350px;}
.y1fa{bottom:243.676950px;}
.y69{bottom:244.254150px;}
.y182{bottom:248.752650px;}
.yfd{bottom:253.172850px;}
.y22e{bottom:253.174350px;}
.y14a{bottom:254.354100px;}
.y3{bottom:255.382800px;}
.y166{bottom:256.155600px;}
.y120{bottom:257.016900px;}
.yd5{bottom:257.203200px;}
.y1cf{bottom:258.309150px;}
.y1f9{bottom:261.271950px;}
.y286{bottom:263.676000px;}
.y275{bottom:264.163350px;}
.y24f{bottom:264.972450px;}
.yc0{bottom:267.534450px;}
.y2{bottom:268.174800px;}
.y181{bottom:269.542650px;}
.y21a{bottom:271.382850px;}
.y149{bottom:271.949100px;}
.y1aa{bottom:273.196800px;}
.yfc{bottom:273.962850px;}
.y22d{bottom:273.964350px;}
.y68{bottom:275.439150px;}
.y165{bottom:276.945600px;}
.y11f{bottom:277.806900px;}
.yd4{bottom:277.993200px;}
.y1f8{bottom:278.866950px;}
.y285{bottom:284.466000px;}
.ybf{bottom:288.324450px;}
.y148{bottom:289.544100px;}
.y180{bottom:290.332650px;}
.y1a9{bottom:290.791800px;}
.yfb{bottom:294.752850px;}
.y22c{bottom:294.754350px;}
.y95{bottom:294.828600px;}
.y274{bottom:295.645350px;}
.y24e{bottom:296.157450px;}
.y67{bottom:296.229150px;}
.y1f7{bottom:296.461950px;}
.y164{bottom:297.735600px;}
.y11e{bottom:298.596900px;}
.yd3{bottom:298.783200px;}
.y1ce{bottom:299.888550px;}
.y147{bottom:307.139100px;}
.y1a8{bottom:308.386800px;}
.ybe{bottom:309.114450px;}
.y17f{bottom:311.122650px;}
.y34{bottom:312.583350px;}
.y41{bottom:312.601200px;}
.y1f6{bottom:314.056950px;}
.yfa{bottom:315.542850px;}
.y22b{bottom:315.544350px;}
.y94{bottom:315.618600px;}
.y273{bottom:316.732350px;}
.y24d{bottom:316.947450px;}
.y66{bottom:317.019150px;}
.y1cd{bottom:317.483550px;}
.y163{bottom:318.525600px;}
.y11d{bottom:319.386900px;}
.yd2{bottom:319.573200px;}
.y1a7{bottom:325.981800px;}
.y33{bottom:327.770850px;}
.y40{bottom:327.788700px;}
.ybd{bottom:329.904450px;}
.y1f5{bottom:331.651950px;}
.y17e{bottom:331.912650px;}
.y1cc{bottom:335.078550px;}
.yf9{bottom:336.332850px;}
.y22a{bottom:336.334350px;}
.y93{bottom:336.408600px;}
.y65{bottom:337.809150px;}
.y11c{bottom:340.176900px;}
.yd1{bottom:340.363200px;}
.y32{bottom:342.958350px;}
.y3f{bottom:342.976200px;}
.y1a6{bottom:343.576800px;}
.y146{bottom:345.510600px;}
.y24c{bottom:348.132450px;}
.y272{bottom:348.214350px;}
.y1f4{bottom:349.246950px;}
.ybc{bottom:350.694450px;}
.y1cb{bottom:352.673550px;}
.y17d{bottom:352.702650px;}
.yf8{bottom:357.122850px;}
.y229{bottom:357.124350px;}
.y92{bottom:357.198600px;}
.y31{bottom:358.145850px;}
.y3e{bottom:358.163700px;}
.y64{bottom:358.599150px;}
.y11b{bottom:360.966900px;}
.yd0{bottom:361.153200px;}
.y162{bottom:364.356150px;}
.y145{bottom:366.300600px;}
.y219{bottom:366.696150px;}
.y284{bottom:367.517850px;}
.y24b{bottom:368.922450px;}
.y271{bottom:369.301350px;}
.y1a5{bottom:369.976800px;}
.ybb{bottom:371.484450px;}
.y30{bottom:373.346850px;}
.y3d{bottom:373.351200px;}
.y17c{bottom:373.492650px;}
.yf7{bottom:377.912850px;}
.y228{bottom:377.914350px;}
.y91{bottom:377.988600px;}
.y63{bottom:379.389150px;}
.y11a{bottom:381.756900px;}
.ycf{bottom:381.943200px;}
.y161{bottom:381.951150px;}
.y144{bottom:387.090600px;}
.y218{bottom:387.486150px;}
.y1a4{bottom:387.571800px;}
.y1f3{bottom:387.615450px;}
.y283{bottom:388.307850px;}
.y2f{bottom:388.534350px;}
.y3c{bottom:388.552200px;}
.y1ca{bottom:388.916850px;}
.y24a{bottom:389.712450px;}
.yba{bottom:392.274450px;}
.y17b{bottom:394.282650px;}
.y227{bottom:398.704350px;}
.y90{bottom:398.778600px;}
.y270{bottom:400.783350px;}
.y119{bottom:402.546900px;}
.yce{bottom:402.733200px;}
.y3b{bottom:403.739700px;}
.y1a3{bottom:405.166800px;}
.y143{bottom:407.880600px;}
.y217{bottom:408.276150px;}
.y1f2{bottom:408.405450px;}
.y1c9{bottom:409.706850px;}
.y62{bottom:410.574150px;}
.y2e{bottom:411.713850px;}
.yb9{bottom:413.064450px;}
.y17a{bottom:415.072650px;}
.y3a{bottom:418.927200px;}
.yf6{bottom:419.492850px;}
.y226{bottom:419.494350px;}
.y8f{bottom:419.568600px;}
.y249{bottom:420.897450px;}
.y26f{bottom:421.870350px;}
.y118{bottom:423.336900px;}
.ycd{bottom:423.523200px;}
.y160{bottom:424.569450px;}
.y142{bottom:428.651550px;}
.y1f1{bottom:429.195450px;}
.y1c8{bottom:430.496850px;}
.y61{bottom:431.364150px;}
.yb8{bottom:433.854450px;}
.y39{bottom:434.114700px;}
.y1a2{bottom:439.278300px;}
.yf5{bottom:440.282850px;}
.y225{bottom:440.284350px;}
.y8e{bottom:440.358600px;}
.y248{bottom:441.687450px;}
.y117{bottom:444.126900px;}
.ycc{bottom:444.313200px;}
.y15f{bottom:445.359450px;}
.y38{bottom:449.302200px;}
.y141{bottom:449.441550px;}
.y216{bottom:449.858550px;}
.y1f0{bottom:449.985450px;}
.y282{bottom:450.677850px;}
.y1c7{bottom:451.286850px;}
.y60{bottom:452.154150px;}
.y26e{bottom:453.352350px;}
.yb7{bottom:454.644450px;}
.y1a1{bottom:460.068300px;}
.yf4{bottom:461.072850px;}
.y224{bottom:461.074350px;}
.y179{bottom:461.135400px;}
.y8d{bottom:461.148600px;}
.y37{bottom:464.489700px;}
.ycb{bottom:465.103200px;}
.y15e{bottom:466.149450px;}
.y215{bottom:467.453550px;}
.y1ef{bottom:470.775450px;}
.y1c6{bottom:472.076850px;}
.y247{bottom:472.872450px;}
.y5f{bottom:472.944150px;}
.y26d{bottom:474.439350px;}
.y116{bottom:475.311900px;}
.yb6{bottom:475.434450px;}
.y36{bottom:479.677200px;}
.y140{bottom:480.626550px;}
.y1a0{bottom:480.858300px;}
.yf3{bottom:481.862850px;}
.y223{bottom:481.864350px;}
.y8c{bottom:481.938600px;}
.y214{bottom:485.048550px;}
.y15d{bottom:486.939450px;}
.y1ee{bottom:491.565450px;}
.y1c5{bottom:492.866850px;}
.y246{bottom:493.662450px;}
.y5e{bottom:493.734150px;}
.y35{bottom:494.887350px;}
.y26c{bottom:495.526350px;}
.y115{bottom:496.101900px;}
.yb5{bottom:496.224450px;}
.y13f{bottom:501.416550px;}
.y19f{bottom:501.648300px;}
.y213{bottom:502.643550px;}
.yf2{bottom:502.652850px;}
.y15c{bottom:507.729450px;}
.yca{bottom:511.166100px;}
.y222{bottom:513.049350px;}
.y8b{bottom:513.123600px;}
.y245{bottom:514.452450px;}
.y5d{bottom:514.524150px;}
.y114{bottom:516.891900px;}
.yb4{bottom:517.014450px;}
.y212{bottom:520.238550px;}
.y13e{bottom:522.206550px;}
.y19e{bottom:522.438300px;}
.yf1{bottom:523.442850px;}
.y26b{bottom:527.008350px;}
.y15b{bottom:528.519450px;}
.y1ed{bottom:533.144550px;}
.y221{bottom:533.839350px;}
.y8a{bottom:533.913600px;}
.y1c4{bottom:534.447750px;}
.y244{bottom:535.242450px;}
.y5c{bottom:535.314150px;}
.y178{bottom:537.325200px;}
.y113{bottom:537.681900px;}
.y211{bottom:537.833550px;}
.y2d{bottom:539.288850px;}
.y1f{bottom:539.290500px;}
.y13d{bottom:542.996550px;}
.y19d{bottom:543.228300px;}
.y26a{bottom:548.095350px;}
.yb3{bottom:548.199450px;}
.y15a{bottom:549.309450px;}
.y1ec{bottom:550.739550px;}
.y1c3{bottom:552.042750px;}
.y2c{bottom:554.476350px;}
.y1e{bottom:554.478000px;}
.yf0{bottom:554.627850px;}
.y220{bottom:554.629350px;}
.y89{bottom:554.703600px;}
.y243{bottom:556.032450px;}
.y5b{bottom:556.104150px;}
.y177{bottom:558.115200px;}
.y112{bottom:558.471900px;}
.y13c{bottom:563.786550px;}
.y19c{bottom:564.018300px;}
.y1eb{bottom:568.334550px;}
.yb2{bottom:568.989450px;}
.y1c2{bottom:569.637750px;}
.y1d{bottom:569.665500px;}
.y2b{bottom:569.704350px;}
.yef{bottom:575.417850px;}
.y88{bottom:575.419350px;}
.y210{bottom:576.211050px;}
.y5a{bottom:576.894150px;}
.y176{bottom:578.905200px;}
.y111{bottom:579.261900px;}
.y269{bottom:579.577350px;}
.y19b{bottom:584.808300px;}
.y1c{bottom:584.853000px;}
.y2a{bottom:584.891850px;}
.y1ea{bottom:585.929550px;}
.y242{bottom:587.217450px;}
.y1c1{bottom:587.232750px;}
.yb1{bottom:589.779450px;}
.y159{bottom:595.372350px;}
.yee{bottom:596.207850px;}
.y87{bottom:596.209350px;}
.y20f{bottom:597.001050px;}
.y59{bottom:597.684150px;}
.y175{bottom:599.695200px;}
.y110{bottom:600.051900px;}
.y1b{bottom:600.054000px;}
.y29{bottom:600.079350px;}
.y268{bottom:600.664350px;}
.y1c0{bottom:604.827750px;}
.y13b{bottom:605.365800px;}
.y281{bottom:606.602850px;}
.y241{bottom:608.007450px;}
.yb0{bottom:610.569450px;}
.y1e9{bottom:612.329550px;}
.y1a{bottom:615.241500px;}
.y28{bottom:615.266850px;}
.yed{bottom:616.997850px;}
.y86{bottom:616.999350px;}
.y20e{bottom:617.791050px;}
.y174{bottom:620.485200px;}
.y10f{bottom:620.841900px;}
.y267{bottom:621.751350px;}
.y13a{bottom:622.960800px;}
.y19a{bottom:626.386200px;}
.y280{bottom:627.392850px;}
.y240{bottom:628.797450px;}
.y58{bottom:628.869150px;}
.y1e8{bottom:629.924550px;}
.y27{bottom:630.454350px;}
.yaf{bottom:631.359450px;}
.yec{bottom:637.787850px;}
.y85{bottom:637.789350px;}
.y19{bottom:638.421000px;}
.y139{bottom:640.555800px;}
.y1bf{bottom:641.058150px;}
.y173{bottom:641.275200px;}
.y10e{bottom:641.631900px;}
.y199{bottom:643.981200px;}
.y26{bottom:645.641850px;}
.y1e7{bottom:647.519550px;}
.y27f{bottom:648.182850px;}
.y23f{bottom:649.587450px;}
.y57{bottom:649.659150px;}
.yae{bottom:652.149450px;}
.y266{bottom:653.233350px;}
.y138{bottom:658.150800px;}
.yeb{bottom:658.577850px;}
.y84{bottom:658.579350px;}
.y20d{bottom:659.371950px;}
.y25{bottom:660.829350px;}
.y198{bottom:661.576200px;}
.y1be{bottom:661.848150px;}
.y172{bottom:662.065200px;}
.y10d{bottom:662.421900px;}
.y1e6{bottom:665.114550px;}
.y56{bottom:670.449150px;}
.yad{bottom:672.939450px;}
.y158{bottom:673.274850px;}
.y265{bottom:674.320350px;}
.y24{bottom:676.016850px;}
.y20c{bottom:676.966950px;}
.yea{bottom:679.367850px;}
.y83{bottom:679.369350px;}
.y1e5{bottom:682.709550px;}
.y171{bottom:682.855200px;}
.y23{bottom:691.204350px;}
.y55{bottom:691.239150px;}
.y1bd{bottom:693.033150px;}
.y10c{bottom:693.606900px;}
.yac{bottom:693.729450px;}
.y157{bottom:694.064850px;}
.y20b{bottom:694.561950px;}
.y264{bottom:695.407350px;}
.y197{bottom:695.699550px;}
.y137{bottom:696.531300px;}
.y23e{bottom:697.776300px;}
.y27e{bottom:700.157850px;}
.y82{bottom:700.159350px;}
.y170{bottom:703.645200px;}
.y22{bottom:706.391850px;}
.ye9{bottom:710.552850px;}
.y54{bottom:712.029150px;}
.y20a{bottom:712.156950px;}
.y1bc{bottom:713.823150px;}
.y10b{bottom:714.396900px;}
.yab{bottom:714.519450px;}
.y156{bottom:714.854850px;}
.y196{bottom:716.489550px;}
.y136{bottom:717.321300px;}
.y81{bottom:720.949350px;}
.y1e4{bottom:721.047300px;}
.y21{bottom:721.579350px;}
.y16f{bottom:724.435200px;}
.y263{bottom:726.889350px;}
.y209{bottom:729.751950px;}
.ye8{bottom:731.342850px;}
.y53{bottom:732.819150px;}
.y1bb{bottom:734.613150px;}
.y10a{bottom:735.186900px;}
.y155{bottom:735.644850px;}
.y20{bottom:736.782000px;}
.y195{bottom:737.279550px;}
.y80{bottom:741.739350px;}
.y1e3{bottom:741.837300px;}
.yaa{bottom:745.704450px;}
.y262{bottom:747.976350px;}
.ye7{bottom:752.132850px;}
.y52{bottom:753.609150px;}
.y1ba{bottom:755.403150px;}
.y109{bottom:755.976900px;}
.y154{bottom:756.434850px;}
.y194{bottom:758.069550px;}
.y135{bottom:758.899350px;}
.y7f{bottom:762.529350px;}
.y1e2{bottom:762.627300px;}
.ya9{bottom:766.494450px;}
.y208{bottom:768.123300px;}
.y16e{bottom:770.273250px;}
.ye6{bottom:772.922850px;}
.y51{bottom:774.399150px;}
.y1b9{bottom:776.193150px;}
.y134{bottom:776.494350px;}
.y108{bottom:776.766900px;}
.y153{bottom:777.224850px;}
.y261{bottom:779.458350px;}
.y27d{bottom:783.317850px;}
.y7e{bottom:783.319350px;}
.y1e1{bottom:783.417300px;}
.ya8{bottom:787.284450px;}
.y16d{bottom:787.868250px;}
.y207{bottom:788.913300px;}
.y18{bottom:792.045450px;}
.ye5{bottom:793.712850px;}
.y133{bottom:794.089350px;}
.y50{bottom:795.189150px;}
.y1b8{bottom:796.983150px;}
.y107{bottom:797.556900px;}
.y193{bottom:799.647450px;}
.y260{bottom:800.545350px;}
.y23d{bottom:804.107850px;}
.yc9{bottom:804.109350px;}
.y1e0{bottom:804.207300px;}
.y16c{bottom:805.463250px;}
.ya7{bottom:808.074450px;}
.y206{bottom:809.703300px;}
.y17{bottom:812.835450px;}
.y7d{bottom:814.504350px;}
.y4f{bottom:815.979150px;}
.y192{bottom:817.242450px;}
.y1b7{bottom:817.773150px;}
.y106{bottom:818.346900px;}
.y25f{bottom:821.632350px;}
.y152{bottom:823.058250px;}
.y23c{bottom:824.897850px;}
.yc8{bottom:824.899350px;}
.y1df{bottom:824.997300px;}
.ya6{bottom:828.864450px;}
.y205{bottom:830.493300px;}
.y132{bottom:832.444950px;}
.y16{bottom:833.622450px;}
.y191{bottom:834.837450px;}
.ye4{bottom:835.292850px;}
.y7c{bottom:835.294350px;}
.y4e{bottom:836.769150px;}
.y1b6{bottom:838.563150px;}
.y151{bottom:840.653250px;}
.y23b{bottom:845.687850px;}
.yc7{bottom:845.689350px;}
.y1de{bottom:845.787300px;}
.ya5{bottom:849.654450px;}
.y204{bottom:851.283300px;}
.y25e{bottom:853.114350px;}
.y131{bottom:853.234950px;}
.ye3{bottom:856.082850px;}
.y7b{bottom:856.084350px;}
.y4d{bottom:857.559150px;}
.y150{bottom:858.248250px;}
.y105{bottom:864.409800px;}
.y23a{bottom:866.477850px;}
.yc6{bottom:866.479350px;}
.y1dd{bottom:866.577300px;}
.y190{bottom:868.949250px;}
.ya4{bottom:870.444450px;}
.y15{bottom:871.578300px;}
.y130{bottom:874.024950px;}
.y25d{bottom:874.201350px;}
.y14f{bottom:875.843250px;}
.ye2{bottom:876.872850px;}
.y7a{bottom:876.874350px;}
.y4c{bottom:878.349150px;}
.y1b5{bottom:884.619900px;}
.y239{bottom:887.267850px;}
.yc5{bottom:887.269350px;}
.y18f{bottom:889.739250px;}
.ya3{bottom:891.234450px;}
.y14{bottom:892.365450px;}
.y203{bottom:892.864200px;}
.y12f{bottom:894.814950px;}
.ye1{bottom:897.662850px;}
.y79{bottom:897.664350px;}
.y1dc{bottom:897.762300px;}
.y4b{bottom:899.139150px;}
.y1b4{bottom:903.015900px;}
.y104{bottom:904.062750px;}
.y25c{bottom:905.683350px;}
.y238{bottom:908.057850px;}
.y202{bottom:910.459200px;}
.y18e{bottom:910.529250px;}
.ya2{bottom:912.024450px;}
.ye0{bottom:918.452850px;}
.y78{bottom:918.454350px;}
.y1db{bottom:918.552300px;}
.y12e{bottom:925.999950px;}
.y25b{bottom:926.770350px;}
.y201{bottom:928.054200px;}
.y237{bottom:928.847850px;}
.y103{bottom:929.646750px;}
.y13{bottom:930.321300px;}
.y4a{bottom:930.324150px;}
.y18d{bottom:931.319250px;}
.ydf{bottom:939.242850px;}
.y77{bottom:939.244350px;}
.y1da{bottom:939.342300px;}
.y200{bottom:945.649200px;}
.y12d{bottom:946.789950px;}
.y236{bottom:949.637850px;}
.y12{bottom:951.099150px;}
.y49{bottom:951.114150px;}
.y18c{bottom:952.109250px;}
.ya1{bottom:958.087350px;}
.y25a{bottom:958.252350px;}
.yde{bottom:960.032850px;}
.y76{bottom:960.034350px;}
.y1d9{bottom:960.132300px;}
.y1ff{bottom:963.244200px;}
.y12c{bottom:967.579950px;}
.y235{bottom:970.427850px;}
.y48{bottom:971.904150px;}
.y18b{bottom:972.899250px;}
.y259{bottom:979.339350px;}
.ydd{bottom:980.822850px;}
.y75{bottom:980.824350px;}
.y1d8{bottom:980.922300px;}
.y1b3{bottom:985.176450px;}
.y12b{bottom:988.369950px;}
.y234{bottom:991.217850px;}
.y47{bottom:992.694150px;}
.y18a{bottom:993.689250px;}
.y11{bottom:995.493150px;}
.y258{bottom:1000.426350px;}
.ydc{bottom:1001.612850px;}
.y74{bottom:1001.614350px;}
.y1d7{bottom:1001.712300px;}
.y1b2{bottom:1005.966450px;}
.y12a{bottom:1009.159950px;}
.y46{bottom:1013.484150px;}
.y189{bottom:1014.479250px;}
.y10{bottom:1020.693150px;}
.y257{bottom:1021.513350px;}
.ydb{bottom:1022.402850px;}
.y73{bottom:1022.404350px;}
.y1d6{bottom:1022.502300px;}
.y1b1{bottom:1026.756450px;}
.y129{bottom:1029.949950px;}
.y27c{bottom:1032.797850px;}
.y45{bottom:1034.274150px;}
.ya0{bottom:1043.192850px;}
.y72{bottom:1043.194350px;}
.y1d5{bottom:1043.292300px;}
.y1b0{bottom:1047.546450px;}
.y256{bottom:1052.995350px;}
.y27b{bottom:1053.587850px;}
.y188{bottom:1053.917850px;}
.y44{bottom:1055.064150px;}
.y9f{bottom:1063.982850px;}
.y71{bottom:1063.984350px;}
.yf{bottom:1065.078000px;}
.y128{bottom:1071.527850px;}
.y187{bottom:1080.317850px;}
.y255{bottom:1084.477350px;}
.y9e{bottom:1084.772850px;}
.y70{bottom:1084.774350px;}
.y127{bottom:1089.122850px;}
.ye{bottom:1097.478000px;}
.y43{bottom:1103.253000px;}
.y9d{bottom:1105.562850px;}
.y6f{bottom:1105.564350px;}
.y126{bottom:1106.717850px;}
.yd{bottom:1162.740450px;}
.y42{bottom:1172.229900px;}
.yc{bottom:1193.880450px;}
.yb{bottom:1207.380450px;}
.h10{height:34.614000px;}
.h12{height:34.614600px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.h2{height:45.342773px;}
.hc{height:47.991000px;}
.h15{height:50.688000px;}
.hb{height:50.723400px;}
.ha{height:50.814000px;}
.h9{height:50.976000px;}
.h8{height:56.460000px;}
.he{height:62.106000px;}
.h14{height:62.182200px;}
.h16{height:62.304000px;}
.hf{height:62.403000px;}
.h11{height:62.503200px;}
.h17{height:62.538600px;}
.h6{height:64.512000px;}
.h13{height:67.968000px;}
.hd{height:73.632000px;}
.h7{height:79.044000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x14{left:86.972550px;}
.x11{left:93.730800px;}
.x17{left:104.179350px;}
.x16{left:106.300500px;}
.x15{left:108.245700px;}
.x2{left:110.563350px;}
.x6{left:121.084650px;}
.x1b{left:127.555350px;}
.x18{left:129.510000px;}
.x1c{left:136.057350px;}
.x1d{left:137.990550px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x1a{left:153.070800px;}
.x19{left:155.011950px;}
.xb{left:231.656700px;}
.x12{left:242.552100px;}
.x10{left:259.401150px;}
.x8{left:295.166250px;}
.x7{left:342.840450px;}
.x13{left:359.182800px;}
.x9{left:465.602250px;}
.xe{left:521.291400px;}
.xc{left:573.054750px;}
.xa{left:600.842250px;}
.xd{left:637.746150px;}
.xf{left:642.801150px;}
.x5{left:733.915650px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.863467pt;}
.ls30{letter-spacing:-0.586667pt;}
.ls19{letter-spacing:-0.293333pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.023467pt;}
.ls2f{letter-spacing:0.029333pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.058667pt;}
.ls15{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.117333pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.190400pt;}
.ls20{letter-spacing:0.234667pt;}
.ls1f{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.264000pt;}
.ls25{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.293333pt;}
.ls21{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.322667pt;}
.ls3{letter-spacing:0.336000pt;}
.ls18{letter-spacing:0.352000pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls32{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.469333pt;}
.ls27{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.528000pt;}
.ls16{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.616000pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.645333pt;}
.ls5{letter-spacing:0.672000pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.762667pt;}
.ls6{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.792000pt;}
.ls10{letter-spacing:0.821333pt;}
.ls17{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.938667pt;}
.ls28{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.056000pt;}
.ls33{letter-spacing:1.408000pt;}
.ls3d{letter-spacing:2.053333pt;}
.ls39{letter-spacing:2.170667pt;}
.ls31{letter-spacing:2.464000pt;}
.ls2{letter-spacing:3.216000pt;}
.ls3b{letter-spacing:3.637333pt;}
.ls38{letter-spacing:4.282667pt;}
.ls29{letter-spacing:4.634667pt;}
.ls36{letter-spacing:4.928000pt;}
.ls35{letter-spacing:6.042667pt;}
.ls3e{letter-spacing:6.160000pt;}
.ls1b{letter-spacing:6.192000pt;}
.ls3a{letter-spacing:6.277333pt;}
.ls3c{letter-spacing:8.330667pt;}
.ls24{letter-spacing:1812.060800pt;}
.lsf{letter-spacing:1841.394133pt;}
.ls23{letter-spacing:1896.905600pt;}
.ls8{letter-spacing:1926.238933pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws1{word-spacing:-20.160000pt;}
.ws2{word-spacing:-15.120000pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws3e{word-spacing:-12.613333pt;}
.wsc1{word-spacing:-12.320000pt;}
.ws3d{word-spacing:-11.333333pt;}
.ws0{word-spacing:-9.472000pt;}
.ws58{word-spacing:-8.008000pt;}
.ws3f{word-spacing:-6.552000pt;}
.wsc8{word-spacing:-2.053333pt;}
.wsc5{word-spacing:-1.056000pt;}
.wsc2{word-spacing:-0.586667pt;}
.ws2e{word-spacing:-0.469333pt;}
.wsc3{word-spacing:-0.410667pt;}
.ws3{word-spacing:-0.384000pt;}
.ws7e{word-spacing:-0.352000pt;}
.ws6b{word-spacing:-0.293333pt;}
.wsa{word-spacing:-0.288000pt;}
.ws72{word-spacing:-0.240000pt;}
.ws8c{word-spacing:-0.234667pt;}
.ws50{word-spacing:-0.176000pt;}
.ws71{word-spacing:-0.117333pt;}
.wsb5{word-spacing:-0.106667pt;}
.ws2d{word-spacing:-0.058667pt;}
.wsc6{word-spacing:-0.044000pt;}
.ws4{word-spacing:0.000000pt;}
.ws78{word-spacing:0.058667pt;}
.ws99{word-spacing:0.106667pt;}
.ws75{word-spacing:0.117333pt;}
.wsbc{word-spacing:0.160000pt;}
.wsad{word-spacing:0.176000pt;}
.ws64{word-spacing:0.234667pt;}
.ws5d{word-spacing:0.293333pt;}
.wsb3{word-spacing:0.320000pt;}
.ws30{word-spacing:0.352000pt;}
.ws93{word-spacing:0.373333pt;}
.ws2b{word-spacing:0.410667pt;}
.ws94{word-spacing:0.426667pt;}
.ws48{word-spacing:0.469333pt;}
.ws12{word-spacing:0.480000pt;}
.ws6a{word-spacing:0.528000pt;}
.ws8d{word-spacing:0.533333pt;}
.ws7{word-spacing:0.554667pt;}
.ws15{word-spacing:0.576000pt;}
.ws9e{word-spacing:0.586667pt;}
.ws9d{word-spacing:0.640000pt;}
.ws96{word-spacing:0.693333pt;}
.ws63{word-spacing:0.704000pt;}
.ws14{word-spacing:0.720000pt;}
.ws87{word-spacing:0.746667pt;}
.wsb8{word-spacing:0.762667pt;}
.ws5e{word-spacing:0.821333pt;}
.wsb6{word-spacing:0.853333pt;}
.ws55{word-spacing:0.864000pt;}
.ws59{word-spacing:0.880000pt;}
.ws24{word-spacing:0.938667pt;}
.ws88{word-spacing:0.997333pt;}
.ws5a{word-spacing:1.056000pt;}
.ws97{word-spacing:1.066667pt;}
.ws7a{word-spacing:1.114667pt;}
.ws49{word-spacing:1.173333pt;}
.ws9c{word-spacing:1.226667pt;}
.ws82{word-spacing:1.232000pt;}
.wsbe{word-spacing:1.290667pt;}
.ws57{word-spacing:1.296000pt;}
.wsaa{word-spacing:1.349333pt;}
.ws8f{word-spacing:1.386667pt;}
.ws4c{word-spacing:1.408000pt;}
.ws18{word-spacing:1.440000pt;}
.ws70{word-spacing:1.466667pt;}
.wsb1{word-spacing:1.493333pt;}
.ws7c{word-spacing:1.525333pt;}
.ws9b{word-spacing:1.546667pt;}
.ws74{word-spacing:1.584000pt;}
.ws53{word-spacing:1.632000pt;}
.ws26{word-spacing:1.642667pt;}
.ws68{word-spacing:1.701333pt;}
.ws8a{word-spacing:1.706667pt;}
.ws51{word-spacing:1.760000pt;}
.wsb9{word-spacing:1.813333pt;}
.ws2c{word-spacing:1.818667pt;}
.ws16{word-spacing:1.824000pt;}
.ws86{word-spacing:1.866667pt;}
.ws47{word-spacing:1.877333pt;}
.ws80{word-spacing:1.936000pt;}
.wsbb{word-spacing:1.973333pt;}
.ws39{word-spacing:1.994667pt;}
.ws6{word-spacing:2.048000pt;}
.ws89{word-spacing:2.053333pt;}
.ws1c{word-spacing:2.064000pt;}
.ws4f{word-spacing:2.112000pt;}
.ws35{word-spacing:2.170667pt;}
.wsa1{word-spacing:2.186667pt;}
.ws10{word-spacing:2.208000pt;}
.ws6c{word-spacing:2.229333pt;}
.ws3c{word-spacing:2.288000pt;}
.ws62{word-spacing:2.346667pt;}
.ws54{word-spacing:2.400000pt;}
.ws4d{word-spacing:2.405333pt;}
.ws11{word-spacing:2.448000pt;}
.wsb4{word-spacing:2.453333pt;}
.wsb2{word-spacing:2.464000pt;}
.wsbd{word-spacing:2.506667pt;}
.ws4e{word-spacing:2.522667pt;}
.ws13{word-spacing:2.544000pt;}
.ws92{word-spacing:2.560000pt;}
.ws23{word-spacing:2.581333pt;}
.wsc{word-spacing:2.640000pt;}
.ws7d{word-spacing:2.698667pt;}
.ws25{word-spacing:2.757333pt;}
.wsaf{word-spacing:2.816000pt;}
.wsae{word-spacing:2.826667pt;}
.ws73{word-spacing:2.832000pt;}
.wsb7{word-spacing:2.874667pt;}
.wsa2{word-spacing:2.933333pt;}
.wsd{word-spacing:2.976000pt;}
.ws61{word-spacing:2.992000pt;}
.ws7f{word-spacing:3.050667pt;}
.wsab{word-spacing:3.093333pt;}
.ws98{word-spacing:3.109333pt;}
.ws5f{word-spacing:3.168000pt;}
.wsa6{word-spacing:3.226667pt;}
.wse{word-spacing:3.264000pt;}
.ws20{word-spacing:3.285333pt;}
.wsf{word-spacing:3.312000pt;}
.ws34{word-spacing:3.344000pt;}
.ws9a{word-spacing:3.360000pt;}
.ws37{word-spacing:3.402667pt;}
.ws95{word-spacing:3.461333pt;}
.ws8e{word-spacing:3.466667pt;}
.ws31{word-spacing:3.520000pt;}
.ws8b{word-spacing:3.573333pt;}
.ws6e{word-spacing:3.578667pt;}
.ws45{word-spacing:3.637333pt;}
.wsa5{word-spacing:3.680000pt;}
.ws5c{word-spacing:3.696000pt;}
.wsa8{word-spacing:3.733333pt;}
.ws1b{word-spacing:3.744000pt;}
.ws22{word-spacing:3.754667pt;}
.ws9f{word-spacing:3.786667pt;}
.ws5{word-spacing:3.797333pt;}
.ws5b{word-spacing:3.813333pt;}
.wsac{word-spacing:3.840000pt;}
.ws3b{word-spacing:3.872000pt;}
.wsa0{word-spacing:3.930667pt;}
.ws1a{word-spacing:3.936000pt;}
.ws17{word-spacing:3.984000pt;}
.ws32{word-spacing:3.989333pt;}
.ws3a{word-spacing:4.048000pt;}
.ws79{word-spacing:4.106667pt;}
.ws91{word-spacing:4.160000pt;}
.ws46{word-spacing:4.165333pt;}
.ws4a{word-spacing:4.224000pt;}
.ws65{word-spacing:4.282667pt;}
.ws52{word-spacing:4.341333pt;}
.wsa9{word-spacing:4.373333pt;}
.ws69{word-spacing:4.400000pt;}
.ws6d{word-spacing:4.458667pt;}
.ws56{word-spacing:4.464000pt;}
.ws42{word-spacing:4.517333pt;}
.wsa7{word-spacing:4.576000pt;}
.wsa4{word-spacing:4.586667pt;}
.ws76{word-spacing:4.634667pt;}
.wsb0{word-spacing:4.640000pt;}
.ws28{word-spacing:4.693333pt;}
.ws19{word-spacing:4.752000pt;}
.ws60{word-spacing:4.810667pt;}
.ws77{word-spacing:4.869333pt;}
.wsba{word-spacing:4.906667pt;}
.ws2a{word-spacing:4.928000pt;}
.ws90{word-spacing:4.960000pt;}
.ws83{word-spacing:4.986667pt;}
.wsb{word-spacing:5.040000pt;}
.ws67{word-spacing:5.045333pt;}
.ws6f{word-spacing:5.104000pt;}
.ws4b{word-spacing:5.221333pt;}
.ws43{word-spacing:5.280000pt;}
.ws36{word-spacing:5.338667pt;}
.ws29{word-spacing:5.397333pt;}
.ws38{word-spacing:5.456000pt;}
.wsa3{word-spacing:5.493333pt;}
.wsbf{word-spacing:5.514667pt;}
.ws85{word-spacing:5.546667pt;}
.ws33{word-spacing:5.573333pt;}
.ws84{word-spacing:5.600000pt;}
.ws81{word-spacing:5.632000pt;}
.ws41{word-spacing:5.690667pt;}
.ws2f{word-spacing:5.749333pt;}
.ws27{word-spacing:5.808000pt;}
.ws66{word-spacing:5.866667pt;}
.wsc0{word-spacing:5.925333pt;}
.ws40{word-spacing:5.984000pt;}
.ws7b{word-spacing:6.042667pt;}
.ws44{word-spacing:6.101333pt;}
.ws21{word-spacing:6.160000pt;}
.wsc4{word-spacing:6.218667pt;}
.wsc7{word-spacing:6.864000pt;}
.ws8{word-spacing:9.472000pt;}
.ws1e{word-spacing:11.333333pt;}
.ws9{word-spacing:11.861333pt;}
.ws1f{word-spacing:75.296000pt;}
._3{margin-left:-21.333333pt;}
._4{margin-left:-15.680000pt;}
._c{margin-left:-11.029333pt;}
._b{margin-left:-8.917333pt;}
._6{margin-left:-1.544000pt;}
._2{width:1.749333pt;}
._9{width:5.045333pt;}
._e{width:6.218667pt;}
._1{width:7.978667pt;}
._5{width:9.024000pt;}
._0{width:11.861333pt;}
._d{width:24.448000pt;}
._7{width:46.176000pt;}
._a{width:48.096000pt;}
._8{width:75.296000pt;}
.fsb{font-size:31.200000pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:44.000000pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y27a{bottom:122.611867pt;}
.yc4{bottom:122.837333pt;}
.yda{bottom:122.845067pt;}
.y9c{bottom:122.850267pt;}
.y1af{bottom:122.949067pt;}
.y21f{bottom:123.131067pt;}
.y1fe{bottom:123.255600pt;}
.y125{bottom:123.340133pt;}
.y186{bottom:123.384133pt;}
.y102{bottom:123.402533pt;}
.y233{bottom:123.403867pt;}
.y16b{bottom:124.405600pt;}
.y1d4{bottom:124.417467pt;}
.y254{bottom:124.651067pt;}
.y6e{bottom:124.714800pt;}
.ya{bottom:124.725733pt;}
.y14e{bottom:126.434400pt;}
.y9{bottom:136.096400pt;}
.yd9{bottom:137.053067pt;}
.y9b{bottom:137.058267pt;}
.y1ae{bottom:138.589067pt;}
.y124{bottom:138.980133pt;}
.y16a{bottom:140.045600pt;}
.y1d3{bottom:140.057467pt;}
.yc3{bottom:140.645333pt;}
.y279{bottom:141.355867pt;}
.y21e{bottom:141.611067pt;}
.y1fd{bottom:141.735600pt;}
.y101{bottom:141.882533pt;}
.y232{bottom:141.883867pt;}
.y28a{bottom:141.978667pt;}
.y253{bottom:143.131067pt;}
.y6d{bottom:143.194800pt;}
.y185{bottom:146.850800pt;}
.yd8{bottom:151.261067pt;}
.y9a{bottom:151.266267pt;}
.y8{bottom:153.129600pt;}
.y169{bottom:155.685600pt;}
.y21d{bottom:160.091067pt;}
.y1fc{bottom:160.215600pt;}
.y231{bottom:160.363867pt;}
.y289{bottom:160.458667pt;}
.y252{bottom:161.611067pt;}
.y6c{bottom:161.674800pt;}
.y184{bottom:162.490800pt;}
.yd7{bottom:165.469067pt;}
.y99{bottom:165.474267pt;}
.y1ad{bottom:168.923733pt;}
.y278{bottom:169.339867pt;}
.y100{bottom:169.602533pt;}
.y7{bottom:170.174933pt;}
.y168{bottom:171.325600pt;}
.y123{bottom:173.019467pt;}
.y1d2{bottom:174.168133pt;}
.y21c{bottom:178.571067pt;}
.y230{bottom:178.843867pt;}
.y14d{bottom:179.172533pt;}
.y98{bottom:179.682267pt;}
.y6b{bottom:180.154800pt;}
.yd6{bottom:183.276933pt;}
.y6{bottom:187.220267pt;}
.y1ac{bottom:187.403733pt;}
.yff{bottom:188.082533pt;}
.y277{bottom:188.083867pt;}
.y288{bottom:188.178667pt;}
.y251{bottom:189.331067pt;}
.y122{bottom:191.499467pt;}
.yc2{bottom:191.608400pt;}
.y1d1{bottom:192.648133pt;}
.y97{bottom:193.890267pt;}
.y14c{bottom:194.812533pt;}
.y21b{bottom:197.051067pt;}
.y22f{bottom:197.323867pt;}
.y5{bottom:198.590933pt;}
.y6a{bottom:198.634800pt;}
.y1fb{bottom:200.961733pt;}
.y183{bottom:202.633467pt;}
.y1ab{bottom:205.883733pt;}
.yfe{bottom:206.562533pt;}
.y287{bottom:206.658667pt;}
.y250{bottom:207.811067pt;}
.y167{bottom:209.213867pt;}
.y121{bottom:209.979467pt;}
.yc1{bottom:210.088400pt;}
.y14b{bottom:210.452533pt;}
.y1d0{bottom:211.128133pt;}
.y96{bottom:211.698267pt;}
.y4{bottom:215.636267pt;}
.y276{bottom:216.067867pt;}
.y1fa{bottom:216.601733pt;}
.y69{bottom:217.114800pt;}
.y182{bottom:221.113467pt;}
.yfd{bottom:225.042533pt;}
.y22e{bottom:225.043867pt;}
.y14a{bottom:226.092533pt;}
.y3{bottom:227.006933pt;}
.y166{bottom:227.693867pt;}
.y120{bottom:228.459467pt;}
.yd5{bottom:228.625067pt;}
.y1cf{bottom:229.608133pt;}
.y1f9{bottom:232.241733pt;}
.y286{bottom:234.378667pt;}
.y275{bottom:234.811867pt;}
.y24f{bottom:235.531067pt;}
.yc0{bottom:237.808400pt;}
.y2{bottom:238.377600pt;}
.y181{bottom:239.593467pt;}
.y21a{bottom:241.229200pt;}
.y149{bottom:241.732533pt;}
.y1aa{bottom:242.841600pt;}
.yfc{bottom:243.522533pt;}
.y22d{bottom:243.523867pt;}
.y68{bottom:244.834800pt;}
.y165{bottom:246.173867pt;}
.y11f{bottom:246.939467pt;}
.yd4{bottom:247.105067pt;}
.y1f8{bottom:247.881733pt;}
.y285{bottom:252.858667pt;}
.ybf{bottom:256.288400pt;}
.y148{bottom:257.372533pt;}
.y180{bottom:258.073467pt;}
.y1a9{bottom:258.481600pt;}
.yfb{bottom:262.002533pt;}
.y22c{bottom:262.003867pt;}
.y95{bottom:262.069867pt;}
.y274{bottom:262.795867pt;}
.y24e{bottom:263.251067pt;}
.y67{bottom:263.314800pt;}
.y1f7{bottom:263.521733pt;}
.y164{bottom:264.653867pt;}
.y11e{bottom:265.419467pt;}
.yd3{bottom:265.585067pt;}
.y1ce{bottom:266.567600pt;}
.y147{bottom:273.012533pt;}
.y1a8{bottom:274.121600pt;}
.ybe{bottom:274.768400pt;}
.y17f{bottom:276.553467pt;}
.y34{bottom:277.851867pt;}
.y41{bottom:277.867733pt;}
.y1f6{bottom:279.161733pt;}
.yfa{bottom:280.482533pt;}
.y22b{bottom:280.483867pt;}
.y94{bottom:280.549867pt;}
.y273{bottom:281.539867pt;}
.y24d{bottom:281.731067pt;}
.y66{bottom:281.794800pt;}
.y1cd{bottom:282.207600pt;}
.y163{bottom:283.133867pt;}
.y11d{bottom:283.899467pt;}
.yd2{bottom:284.065067pt;}
.y1a7{bottom:289.761600pt;}
.y33{bottom:291.351867pt;}
.y40{bottom:291.367733pt;}
.ybd{bottom:293.248400pt;}
.y1f5{bottom:294.801733pt;}
.y17e{bottom:295.033467pt;}
.y1cc{bottom:297.847600pt;}
.yf9{bottom:298.962533pt;}
.y22a{bottom:298.963867pt;}
.y93{bottom:299.029867pt;}
.y65{bottom:300.274800pt;}
.y11c{bottom:302.379467pt;}
.yd1{bottom:302.545067pt;}
.y32{bottom:304.851867pt;}
.y3f{bottom:304.867733pt;}
.y1a6{bottom:305.401600pt;}
.y146{bottom:307.120533pt;}
.y24c{bottom:309.451067pt;}
.y272{bottom:309.523867pt;}
.y1f4{bottom:310.441733pt;}
.ybc{bottom:311.728400pt;}
.y1cb{bottom:313.487600pt;}
.y17d{bottom:313.513467pt;}
.yf8{bottom:317.442533pt;}
.y229{bottom:317.443867pt;}
.y92{bottom:317.509867pt;}
.y31{bottom:318.351867pt;}
.y3e{bottom:318.367733pt;}
.y64{bottom:318.754800pt;}
.y11b{bottom:320.859467pt;}
.yd0{bottom:321.025067pt;}
.y162{bottom:323.872133pt;}
.y145{bottom:325.600533pt;}
.y219{bottom:325.952133pt;}
.y284{bottom:326.682533pt;}
.y24b{bottom:327.931067pt;}
.y271{bottom:328.267867pt;}
.y1a5{bottom:328.868267pt;}
.ybb{bottom:330.208400pt;}
.y30{bottom:331.863867pt;}
.y3d{bottom:331.867733pt;}
.y17c{bottom:331.993467pt;}
.yf7{bottom:335.922533pt;}
.y228{bottom:335.923867pt;}
.y91{bottom:335.989867pt;}
.y63{bottom:337.234800pt;}
.y11a{bottom:339.339467pt;}
.ycf{bottom:339.505067pt;}
.y161{bottom:339.512133pt;}
.y144{bottom:344.080533pt;}
.y218{bottom:344.432133pt;}
.y1a4{bottom:344.508267pt;}
.y1f3{bottom:344.547067pt;}
.y283{bottom:345.162533pt;}
.y2f{bottom:345.363867pt;}
.y3c{bottom:345.379733pt;}
.y1ca{bottom:345.703867pt;}
.y24a{bottom:346.411067pt;}
.yba{bottom:348.688400pt;}
.y17b{bottom:350.473467pt;}
.y227{bottom:354.403867pt;}
.y90{bottom:354.469867pt;}
.y270{bottom:356.251867pt;}
.y119{bottom:357.819467pt;}
.yce{bottom:357.985067pt;}
.y3b{bottom:358.879733pt;}
.y1a3{bottom:360.148267pt;}
.y143{bottom:362.560533pt;}
.y217{bottom:362.912133pt;}
.y1f2{bottom:363.027067pt;}
.y1c9{bottom:364.183867pt;}
.y62{bottom:364.954800pt;}
.y2e{bottom:365.967867pt;}
.yb9{bottom:367.168400pt;}
.y17a{bottom:368.953467pt;}
.y3a{bottom:372.379733pt;}
.yf6{bottom:372.882533pt;}
.y226{bottom:372.883867pt;}
.y8f{bottom:372.949867pt;}
.y249{bottom:374.131067pt;}
.y26f{bottom:374.995867pt;}
.y118{bottom:376.299467pt;}
.ycd{bottom:376.465067pt;}
.y160{bottom:377.395067pt;}
.y142{bottom:381.023600pt;}
.y1f1{bottom:381.507067pt;}
.y1c8{bottom:382.663867pt;}
.y61{bottom:383.434800pt;}
.yb8{bottom:385.648400pt;}
.y39{bottom:385.879733pt;}
.y1a2{bottom:390.469600pt;}
.yf5{bottom:391.362533pt;}
.y225{bottom:391.363867pt;}
.y8e{bottom:391.429867pt;}
.y248{bottom:392.611067pt;}
.y117{bottom:394.779467pt;}
.ycc{bottom:394.945067pt;}
.y15f{bottom:395.875067pt;}
.y38{bottom:399.379733pt;}
.y141{bottom:399.503600pt;}
.y216{bottom:399.874267pt;}
.y1f0{bottom:399.987067pt;}
.y282{bottom:400.602533pt;}
.y1c7{bottom:401.143867pt;}
.y60{bottom:401.914800pt;}
.y26e{bottom:402.979867pt;}
.yb7{bottom:404.128400pt;}
.y1a1{bottom:408.949600pt;}
.yf4{bottom:409.842533pt;}
.y224{bottom:409.843867pt;}
.y179{bottom:409.898133pt;}
.y8d{bottom:409.909867pt;}
.y37{bottom:412.879733pt;}
.ycb{bottom:413.425067pt;}
.y15e{bottom:414.355067pt;}
.y215{bottom:415.514267pt;}
.y1ef{bottom:418.467067pt;}
.y1c6{bottom:419.623867pt;}
.y247{bottom:420.331067pt;}
.y5f{bottom:420.394800pt;}
.y26d{bottom:421.723867pt;}
.y116{bottom:422.499467pt;}
.yb6{bottom:422.608400pt;}
.y36{bottom:426.379733pt;}
.y140{bottom:427.223600pt;}
.y1a0{bottom:427.429600pt;}
.yf3{bottom:428.322533pt;}
.y223{bottom:428.323867pt;}
.y8c{bottom:428.389867pt;}
.y214{bottom:431.154267pt;}
.y15d{bottom:432.835067pt;}
.y1ee{bottom:436.947067pt;}
.y1c5{bottom:438.103867pt;}
.y246{bottom:438.811067pt;}
.y5e{bottom:438.874800pt;}
.y35{bottom:439.899867pt;}
.y26c{bottom:440.467867pt;}
.y115{bottom:440.979467pt;}
.yb5{bottom:441.088400pt;}
.y13f{bottom:445.703600pt;}
.y19f{bottom:445.909600pt;}
.y213{bottom:446.794267pt;}
.yf2{bottom:446.802533pt;}
.y15c{bottom:451.315067pt;}
.yca{bottom:454.369867pt;}
.y222{bottom:456.043867pt;}
.y8b{bottom:456.109867pt;}
.y245{bottom:457.291067pt;}
.y5d{bottom:457.354800pt;}
.y114{bottom:459.459467pt;}
.yb4{bottom:459.568400pt;}
.y212{bottom:462.434267pt;}
.y13e{bottom:464.183600pt;}
.y19e{bottom:464.389600pt;}
.yf1{bottom:465.282533pt;}
.y26b{bottom:468.451867pt;}
.y15b{bottom:469.795067pt;}
.y1ed{bottom:473.906267pt;}
.y221{bottom:474.523867pt;}
.y8a{bottom:474.589867pt;}
.y1c4{bottom:475.064667pt;}
.y244{bottom:475.771067pt;}
.y5c{bottom:475.834800pt;}
.y178{bottom:477.622400pt;}
.y113{bottom:477.939467pt;}
.y211{bottom:478.074267pt;}
.y2d{bottom:479.367867pt;}
.y1f{bottom:479.369333pt;}
.y13d{bottom:482.663600pt;}
.y19d{bottom:482.869600pt;}
.y26a{bottom:487.195867pt;}
.yb3{bottom:487.288400pt;}
.y15a{bottom:488.275067pt;}
.y1ec{bottom:489.546267pt;}
.y1c3{bottom:490.704667pt;}
.y2c{bottom:492.867867pt;}
.y1e{bottom:492.869333pt;}
.yf0{bottom:493.002533pt;}
.y220{bottom:493.003867pt;}
.y89{bottom:493.069867pt;}
.y243{bottom:494.251067pt;}
.y5b{bottom:494.314800pt;}
.y177{bottom:496.102400pt;}
.y112{bottom:496.419467pt;}
.y13c{bottom:501.143600pt;}
.y19c{bottom:501.349600pt;}
.y1eb{bottom:505.186267pt;}
.yb2{bottom:505.768400pt;}
.y1c2{bottom:506.344667pt;}
.y1d{bottom:506.369333pt;}
.y2b{bottom:506.403867pt;}
.yef{bottom:511.482533pt;}
.y88{bottom:511.483867pt;}
.y210{bottom:512.187600pt;}
.y5a{bottom:512.794800pt;}
.y176{bottom:514.582400pt;}
.y111{bottom:514.899467pt;}
.y269{bottom:515.179867pt;}
.y19b{bottom:519.829600pt;}
.y1c{bottom:519.869333pt;}
.y2a{bottom:519.903867pt;}
.y1ea{bottom:520.826267pt;}
.y242{bottom:521.971067pt;}
.y1c1{bottom:521.984667pt;}
.yb1{bottom:524.248400pt;}
.y159{bottom:529.219867pt;}
.yee{bottom:529.962533pt;}
.y87{bottom:529.963867pt;}
.y20f{bottom:530.667600pt;}
.y59{bottom:531.274800pt;}
.y175{bottom:533.062400pt;}
.y110{bottom:533.379467pt;}
.y1b{bottom:533.381333pt;}
.y29{bottom:533.403867pt;}
.y268{bottom:533.923867pt;}
.y1c0{bottom:537.624667pt;}
.y13b{bottom:538.102933pt;}
.y281{bottom:539.202533pt;}
.y241{bottom:540.451067pt;}
.yb0{bottom:542.728400pt;}
.y1e9{bottom:544.292933pt;}
.y1a{bottom:546.881333pt;}
.y28{bottom:546.903867pt;}
.yed{bottom:548.442533pt;}
.y86{bottom:548.443867pt;}
.y20e{bottom:549.147600pt;}
.y174{bottom:551.542400pt;}
.y10f{bottom:551.859467pt;}
.y267{bottom:552.667867pt;}
.y13a{bottom:553.742933pt;}
.y19a{bottom:556.787733pt;}
.y280{bottom:557.682533pt;}
.y240{bottom:558.931067pt;}
.y58{bottom:558.994800pt;}
.y1e8{bottom:559.932933pt;}
.y27{bottom:560.403867pt;}
.yaf{bottom:561.208400pt;}
.yec{bottom:566.922533pt;}
.y85{bottom:566.923867pt;}
.y19{bottom:567.485333pt;}
.y139{bottom:569.382933pt;}
.y1bf{bottom:569.829467pt;}
.y173{bottom:570.022400pt;}
.y10e{bottom:570.339467pt;}
.y199{bottom:572.427733pt;}
.y26{bottom:573.903867pt;}
.y1e7{bottom:575.572933pt;}
.y27f{bottom:576.162533pt;}
.y23f{bottom:577.411067pt;}
.y57{bottom:577.474800pt;}
.yae{bottom:579.688400pt;}
.y266{bottom:580.651867pt;}
.y138{bottom:585.022933pt;}
.yeb{bottom:585.402533pt;}
.y84{bottom:585.403867pt;}
.y20d{bottom:586.108400pt;}
.y25{bottom:587.403867pt;}
.y198{bottom:588.067733pt;}
.y1be{bottom:588.309467pt;}
.y172{bottom:588.502400pt;}
.y10d{bottom:588.819467pt;}
.y1e6{bottom:591.212933pt;}
.y56{bottom:595.954800pt;}
.yad{bottom:598.168400pt;}
.y158{bottom:598.466533pt;}
.y265{bottom:599.395867pt;}
.y24{bottom:600.903867pt;}
.y20c{bottom:601.748400pt;}
.yea{bottom:603.882533pt;}
.y83{bottom:603.883867pt;}
.y1e5{bottom:606.852933pt;}
.y171{bottom:606.982400pt;}
.y23{bottom:614.403867pt;}
.y55{bottom:614.434800pt;}
.y1bd{bottom:616.029467pt;}
.y10c{bottom:616.539467pt;}
.yac{bottom:616.648400pt;}
.y157{bottom:616.946533pt;}
.y20b{bottom:617.388400pt;}
.y264{bottom:618.139867pt;}
.y197{bottom:618.399600pt;}
.y137{bottom:619.138933pt;}
.y23e{bottom:620.245600pt;}
.y27e{bottom:622.362533pt;}
.y82{bottom:622.363867pt;}
.y170{bottom:625.462400pt;}
.y22{bottom:627.903867pt;}
.ye9{bottom:631.602533pt;}
.y54{bottom:632.914800pt;}
.y20a{bottom:633.028400pt;}
.y1bc{bottom:634.509467pt;}
.y10b{bottom:635.019467pt;}
.yab{bottom:635.128400pt;}
.y156{bottom:635.426533pt;}
.y196{bottom:636.879600pt;}
.y136{bottom:637.618933pt;}
.y81{bottom:640.843867pt;}
.y1e4{bottom:640.930933pt;}
.y21{bottom:641.403867pt;}
.y16f{bottom:643.942400pt;}
.y263{bottom:646.123867pt;}
.y209{bottom:648.668400pt;}
.ye8{bottom:650.082533pt;}
.y53{bottom:651.394800pt;}
.y1bb{bottom:652.989467pt;}
.y10a{bottom:653.499467pt;}
.y155{bottom:653.906533pt;}
.y20{bottom:654.917333pt;}
.y195{bottom:655.359600pt;}
.y80{bottom:659.323867pt;}
.y1e3{bottom:659.410933pt;}
.yaa{bottom:662.848400pt;}
.y262{bottom:664.867867pt;}
.ye7{bottom:668.562533pt;}
.y52{bottom:669.874800pt;}
.y1ba{bottom:671.469467pt;}
.y109{bottom:671.979467pt;}
.y154{bottom:672.386533pt;}
.y194{bottom:673.839600pt;}
.y135{bottom:674.577200pt;}
.y7f{bottom:677.803867pt;}
.y1e2{bottom:677.890933pt;}
.ya9{bottom:681.328400pt;}
.y208{bottom:682.776267pt;}
.y16e{bottom:684.687333pt;}
.ye6{bottom:687.042533pt;}
.y51{bottom:688.354800pt;}
.y1b9{bottom:689.949467pt;}
.y134{bottom:690.217200pt;}
.y108{bottom:690.459467pt;}
.y153{bottom:690.866533pt;}
.y261{bottom:692.851867pt;}
.y27d{bottom:696.282533pt;}
.y7e{bottom:696.283867pt;}
.y1e1{bottom:696.370933pt;}
.ya8{bottom:699.808400pt;}
.y16d{bottom:700.327333pt;}
.y207{bottom:701.256267pt;}
.y18{bottom:704.040400pt;}
.ye5{bottom:705.522533pt;}
.y133{bottom:705.857200pt;}
.y50{bottom:706.834800pt;}
.y1b8{bottom:708.429467pt;}
.y107{bottom:708.939467pt;}
.y193{bottom:710.797733pt;}
.y260{bottom:711.595867pt;}
.y23d{bottom:714.762533pt;}
.yc9{bottom:714.763867pt;}
.y1e0{bottom:714.850933pt;}
.y16c{bottom:715.967333pt;}
.ya7{bottom:718.288400pt;}
.y206{bottom:719.736267pt;}
.y17{bottom:722.520400pt;}
.y7d{bottom:724.003867pt;}
.y4f{bottom:725.314800pt;}
.y192{bottom:726.437733pt;}
.y1b7{bottom:726.909467pt;}
.y106{bottom:727.419467pt;}
.y25f{bottom:730.339867pt;}
.y152{bottom:731.607333pt;}
.y23c{bottom:733.242533pt;}
.yc8{bottom:733.243867pt;}
.y1df{bottom:733.330933pt;}
.ya6{bottom:736.768400pt;}
.y205{bottom:738.216267pt;}
.y132{bottom:739.951067pt;}
.y16{bottom:740.997733pt;}
.y191{bottom:742.077733pt;}
.ye4{bottom:742.482533pt;}
.y7c{bottom:742.483867pt;}
.y4e{bottom:743.794800pt;}
.y1b6{bottom:745.389467pt;}
.y151{bottom:747.247333pt;}
.y23b{bottom:751.722533pt;}
.yc7{bottom:751.723867pt;}
.y1de{bottom:751.810933pt;}
.ya5{bottom:755.248400pt;}
.y204{bottom:756.696267pt;}
.y25e{bottom:758.323867pt;}
.y131{bottom:758.431067pt;}
.ye3{bottom:760.962533pt;}
.y7b{bottom:760.963867pt;}
.y4d{bottom:762.274800pt;}
.y150{bottom:762.887333pt;}
.y105{bottom:768.364267pt;}
.y23a{bottom:770.202533pt;}
.yc6{bottom:770.203867pt;}
.y1dd{bottom:770.290933pt;}
.y190{bottom:772.399333pt;}
.ya4{bottom:773.728400pt;}
.y15{bottom:774.736267pt;}
.y130{bottom:776.911067pt;}
.y25d{bottom:777.067867pt;}
.y14f{bottom:778.527333pt;}
.ye2{bottom:779.442533pt;}
.y7a{bottom:779.443867pt;}
.y4c{bottom:780.754800pt;}
.y1b5{bottom:786.328800pt;}
.y239{bottom:788.682533pt;}
.yc5{bottom:788.683867pt;}
.y18f{bottom:790.879333pt;}
.ya3{bottom:792.208400pt;}
.y14{bottom:793.213733pt;}
.y203{bottom:793.657067pt;}
.y12f{bottom:795.391067pt;}
.ye1{bottom:797.922533pt;}
.y79{bottom:797.923867pt;}
.y1dc{bottom:798.010933pt;}
.y4b{bottom:799.234800pt;}
.y1b4{bottom:802.680800pt;}
.y104{bottom:803.611333pt;}
.y25c{bottom:805.051867pt;}
.y238{bottom:807.162533pt;}
.y202{bottom:809.297067pt;}
.y18e{bottom:809.359333pt;}
.ya2{bottom:810.688400pt;}
.ye0{bottom:816.402533pt;}
.y78{bottom:816.403867pt;}
.y1db{bottom:816.490933pt;}
.y12e{bottom:823.111067pt;}
.y25b{bottom:823.795867pt;}
.y201{bottom:824.937067pt;}
.y237{bottom:825.642533pt;}
.y103{bottom:826.352667pt;}
.y13{bottom:826.952267pt;}
.y4a{bottom:826.954800pt;}
.y18d{bottom:827.839333pt;}
.ydf{bottom:834.882533pt;}
.y77{bottom:834.883867pt;}
.y1da{bottom:834.970933pt;}
.y200{bottom:840.577067pt;}
.y12d{bottom:841.591067pt;}
.y236{bottom:844.122533pt;}
.y12{bottom:845.421467pt;}
.y49{bottom:845.434800pt;}
.y18c{bottom:846.319333pt;}
.ya1{bottom:851.633200pt;}
.y25a{bottom:851.779867pt;}
.yde{bottom:853.362533pt;}
.y76{bottom:853.363867pt;}
.y1d9{bottom:853.450933pt;}
.y1ff{bottom:856.217067pt;}
.y12c{bottom:860.071067pt;}
.y235{bottom:862.602533pt;}
.y48{bottom:863.914800pt;}
.y18b{bottom:864.799333pt;}
.y259{bottom:870.523867pt;}
.ydd{bottom:871.842533pt;}
.y75{bottom:871.843867pt;}
.y1d8{bottom:871.930933pt;}
.y1b3{bottom:875.712400pt;}
.y12b{bottom:878.551067pt;}
.y234{bottom:881.082533pt;}
.y47{bottom:882.394800pt;}
.y18a{bottom:883.279333pt;}
.y11{bottom:884.882800pt;}
.y258{bottom:889.267867pt;}
.ydc{bottom:890.322533pt;}
.y74{bottom:890.323867pt;}
.y1d7{bottom:890.410933pt;}
.y1b2{bottom:894.192400pt;}
.y12a{bottom:897.031067pt;}
.y46{bottom:900.874800pt;}
.y189{bottom:901.759333pt;}
.y10{bottom:907.282800pt;}
.y257{bottom:908.011867pt;}
.ydb{bottom:908.802533pt;}
.y73{bottom:908.803867pt;}
.y1d6{bottom:908.890933pt;}
.y1b1{bottom:912.672400pt;}
.y129{bottom:915.511067pt;}
.y27c{bottom:918.042533pt;}
.y45{bottom:919.354800pt;}
.ya0{bottom:927.282533pt;}
.y72{bottom:927.283867pt;}
.y1d5{bottom:927.370933pt;}
.y1b0{bottom:931.152400pt;}
.y256{bottom:935.995867pt;}
.y27b{bottom:936.522533pt;}
.y188{bottom:936.815867pt;}
.y44{bottom:937.834800pt;}
.y9f{bottom:945.762533pt;}
.y71{bottom:945.763867pt;}
.yf{bottom:946.736000pt;}
.y128{bottom:952.469200pt;}
.y187{bottom:960.282533pt;}
.y255{bottom:963.979867pt;}
.y9e{bottom:964.242533pt;}
.y70{bottom:964.243867pt;}
.y127{bottom:968.109200pt;}
.ye{bottom:975.536000pt;}
.y43{bottom:980.669333pt;}
.y9d{bottom:982.722533pt;}
.y6f{bottom:982.723867pt;}
.y126{bottom:983.749200pt;}
.yd{bottom:1033.547067pt;}
.y42{bottom:1041.982133pt;}
.yc{bottom:1061.227067pt;}
.yb{bottom:1073.227067pt;}
.h10{height:30.768000pt;}
.h12{height:30.768533pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.h2{height:40.304688pt;}
.hc{height:42.658667pt;}
.h15{height:45.056000pt;}
.hb{height:45.087467pt;}
.ha{height:45.168000pt;}
.h9{height:45.312000pt;}
.h8{height:50.186667pt;}
.he{height:55.205333pt;}
.h14{height:55.273067pt;}
.h16{height:55.381333pt;}
.hf{height:55.469333pt;}
.h11{height:55.558400pt;}
.h17{height:55.589867pt;}
.h6{height:57.344000pt;}
.h13{height:60.416000pt;}
.hd{height:65.450667pt;}
.h7{height:70.261333pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x14{left:77.308933pt;}
.x11{left:83.316267pt;}
.x17{left:92.603867pt;}
.x16{left:94.489333pt;}
.x15{left:96.218400pt;}
.x2{left:98.278533pt;}
.x6{left:107.630800pt;}
.x1b{left:113.382533pt;}
.x18{left:115.120000pt;}
.x1c{left:120.939867pt;}
.x1d{left:122.658267pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x1a{left:136.062933pt;}
.x19{left:137.788400pt;}
.xb{left:205.917067pt;}
.x12{left:215.601867pt;}
.x10{left:230.578800pt;}
.x8{left:262.370000pt;}
.x7{left:304.747067pt;}
.x13{left:319.273600pt;}
.x9{left:413.868667pt;}
.xe{left:463.370133pt;}
.xc{left:509.382000pt;}
.xa{left:534.082000pt;}
.xd{left:566.885467pt;}
.xf{left:571.378800pt;}
.x5{left:652.369467pt;}
}




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