
    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_f8317d552d56319540fea421.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.053000;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_a67680c880e970778339afd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_ce39afb3fdf8eb99385b35dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.054000;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_ce39afb3fdf8eb99385b35dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.054000;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_05d93321964ecb2e67795ecf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.071000;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_a67680c880e970778339afd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_cd3a195458b6c586b50b6760.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.745000;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_3b1077f0891ccc9370bbe482.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_722f38047b04bb5354b2a6e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f8317d552d56319540fea421.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053000;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_bd25d8c0e21c22caa715fbc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b079938f629e385830e725b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_094da503307c2d9d7dfcad3f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_0b4bd68203735de704b8f014.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.882324;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_fee3edb787fc4e12f9537bf4.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_83cbab88af0ddf419ecc5ce4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.239771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239771,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-73.719845px;}
.v9{vertical-align:-24.480000px;}
.v4{vertical-align:-21.595680px;}
.v5{vertical-align:-18.720000px;}
.v8{vertical-align:-14.400000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v7{vertical-align:21.600000px;}
.v2{vertical-align:24.475680px;}
.ls2f{letter-spacing:-2.016000px;}
.ls76{letter-spacing:-1.958400px;}
.ls50{letter-spacing:-1.900800px;}
.ls8c{letter-spacing:-1.843200px;}
.ls84{letter-spacing:-1.728000px;}
.ls8a{letter-spacing:-1.620000px;}
.ls35{letter-spacing:-1.612800px;}
.ls86{letter-spacing:-1.555200px;}
.ls11{letter-spacing:-1.500000px;}
.ls4e{letter-spacing:-1.440000px;}
.ls63{letter-spacing:-1.382400px;}
.ls4d{letter-spacing:-1.324800px;}
.ls2d{letter-spacing:-1.267200px;}
.ls13{letter-spacing:-1.212000px;}
.ls41{letter-spacing:-1.209600px;}
.ls3f{letter-spacing:-1.152000px;}
.ls1d{letter-spacing:-1.094400px;}
.ls1f{letter-spacing:-1.036800px;}
.ls83{letter-spacing:-0.921600px;}
.ls43{letter-spacing:-0.828000px;}
.ls1b{letter-spacing:-0.806400px;}
.ls24{letter-spacing:-0.691200px;}
.ls78{letter-spacing:-0.668160px;}
.ls6c{letter-spacing:-0.665280px;}
.ls8b{letter-spacing:-0.648000px;}
.ls70{letter-spacing:-0.633600px;}
.ls34{letter-spacing:-0.584640px;}
.lsc{letter-spacing:-0.576000px;}
.ls7e{letter-spacing:-0.570240px;}
.ls1{letter-spacing:-0.528000px;}
.ls1c{letter-spacing:-0.518400px;}
.ls12{letter-spacing:-0.516000px;}
.ls66{letter-spacing:-0.504000px;}
.ls32{letter-spacing:-0.501120px;}
.ls6d{letter-spacing:-0.475200px;}
.ls8{letter-spacing:-0.466560px;}
.ls40{letter-spacing:-0.463680px;}
.ls42{letter-spacing:-0.460800px;}
.ls64{letter-spacing:-0.453600px;}
.ls1a{letter-spacing:-0.432000px;}
.ls51{letter-spacing:-0.403200px;}
.ls3d{letter-spacing:-0.401760px;}
.ls5{letter-spacing:-0.388800px;}
.ls18{letter-spacing:-0.357120px;}
.ls14{letter-spacing:-0.348000px;}
.ls88{letter-spacing:-0.345600px;}
.ls6e{letter-spacing:-0.332640px;}
.ls7{letter-spacing:-0.311040px;}
.ls2c{letter-spacing:-0.288000px;}
.ls79{letter-spacing:-0.250560px;}
.ls52{letter-spacing:-0.237600px;}
.lsf{letter-spacing:-0.228000px;}
.ls67{letter-spacing:-0.201600px;}
.lse{letter-spacing:-0.174000px;}
.lsd{letter-spacing:-0.172800px;}
.ls69{letter-spacing:-0.151200px;}
.ls20{letter-spacing:-0.115200px;}
.ls6a{letter-spacing:-0.100800px;}
.ls33{letter-spacing:-0.083520px;}
.ls22{letter-spacing:-0.057600px;}
.ls0{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.036000px;}
.ls53{letter-spacing:0.047520px;}
.ls68{letter-spacing:0.050400px;}
.ls62{letter-spacing:0.057600px;}
.ls25{letter-spacing:0.083520px;}
.ls4b{letter-spacing:0.095040px;}
.ls85{letter-spacing:0.103680px;}
.ls58{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.115200px;}
.ls82{letter-spacing:0.120960px;}
.ls15{letter-spacing:0.126720px;}
.ls72{letter-spacing:0.132480px;}
.ls31{letter-spacing:0.144000px;}
.ls59{letter-spacing:0.151200px;}
.ls2e{letter-spacing:0.172800px;}
.ls3e{letter-spacing:0.178560px;}
.ls6f{letter-spacing:0.223200px;}
.ls10{letter-spacing:0.228000px;}
.ls9{letter-spacing:0.230400px;}
.ls4c{letter-spacing:0.237600px;}
.ls56{letter-spacing:0.241920px;}
.ls3{letter-spacing:0.264960px;}
.ls19{letter-spacing:0.267840px;}
.ls21{letter-spacing:0.288000px;}
.ls48{letter-spacing:0.299520px;}
.ls65{letter-spacing:0.302400px;}
.ls2{letter-spacing:0.311040px;}
.ls36{letter-spacing:0.334080px;}
.ls77{letter-spacing:0.345600px;}
.ls6b{letter-spacing:0.352800px;}
.ls61{letter-spacing:0.401760px;}
.ls7d{letter-spacing:0.403200px;}
.ls3a{letter-spacing:0.417600px;}
.ls1e{letter-spacing:0.432000px;}
.ls87{letter-spacing:0.460800px;}
.ls4{letter-spacing:0.466560px;}
.ls2b{letter-spacing:0.501120px;}
.lsb{letter-spacing:0.516000px;}
.ls23{letter-spacing:0.518400px;}
.ls5c{letter-spacing:0.554400px;}
.ls4f{letter-spacing:0.596160px;}
.ls46{letter-spacing:0.604800px;}
.ls17{letter-spacing:0.633600px;}
.ls7f{letter-spacing:0.665280px;}
.ls6{letter-spacing:0.699840px;}
.ls7a{letter-spacing:0.760320px;}
.ls80{letter-spacing:1.188000px;}
.ls57{letter-spacing:1.670400px;}
.ls81{letter-spacing:1.681920px;}
.ls71{letter-spacing:1.687680px;}
.ls28{letter-spacing:3.110400px;}
.ls3b{letter-spacing:4.550400px;}
.ls29{letter-spacing:5.990400px;}
.ls2a{letter-spacing:6.013440px;}
.ls4a{letter-spacing:6.510240px;}
.ls47{letter-spacing:7.430400px;}
.ls73{letter-spacing:7.436160px;}
.ls60{letter-spacing:7.983360px;}
.ls37{letter-spacing:8.870400px;}
.ls39{letter-spacing:10.310400px;}
.ls7c{letter-spacing:10.834560px;}
.ls30{letter-spacing:11.750400px;}
.ls7b{letter-spacing:12.307680px;}
.ls45{letter-spacing:13.190400px;}
.ls27{letter-spacing:14.630400px;}
.ls55{letter-spacing:17.510400px;}
.ls38{letter-spacing:18.950400px;}
.ls54{letter-spacing:20.407680px;}
.ls89{letter-spacing:21.830400px;}
.ls16{letter-spacing:69.989760px;}
.ls26{letter-spacing:171.216000px;}
.ls75{letter-spacing:193.190400px;}
.ls74{letter-spacing:194.630400px;}
.ls44{letter-spacing:209.030400px;}
.ls5f{letter-spacing:404.863200px;}
.ls5d{letter-spacing:473.911200px;}
.ls5e{letter-spacing:485.452800px;}
.ls5a{letter-spacing:498.456000px;}
.ls5b{letter-spacing:509.947200px;}
.ls3c{letter-spacing:695.968535px;}
.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;}
}
.ws7a{word-spacing:-52.154890px;}
.ws0{word-spacing:-25.344000px;}
.ws1{word-spacing:-24.816000px;}
.ws3f{word-spacing:-21.600000px;}
.ws3c{word-spacing:-20.736000px;}
.wse1{word-spacing:-20.520000px;}
.wse0{word-spacing:-19.548000px;}
.ws52{word-spacing:-16.536960px;}
.ws3{word-spacing:-16.251840px;}
.wsd2{word-spacing:-15.785280px;}
.wsb1{word-spacing:-15.367680px;}
.ws4{word-spacing:-15.240960px;}
.wsb8{word-spacing:-11.462400px;}
.ws95{word-spacing:-11.347200px;}
.ws11{word-spacing:-11.289600px;}
.wsa{word-spacing:-11.116800px;}
.wsd{word-spacing:-11.114400px;}
.ws10{word-spacing:-11.061600px;}
.wsc9{word-spacing:-11.001600px;}
.ws40{word-spacing:-10.886400px;}
.wsb7{word-spacing:-10.828800px;}
.wsf{word-spacing:-10.773600px;}
.ws3d{word-spacing:-10.771200px;}
.wsb{word-spacing:-10.713600px;}
.wsc{word-spacing:-10.658400px;}
.wsad{word-spacing:-10.656000px;}
.wsd4{word-spacing:-10.483200px;}
.ws9d{word-spacing:-10.432800px;}
.wsca{word-spacing:-10.368000px;}
.wsd3{word-spacing:-10.252800px;}
.ws9c{word-spacing:-10.231200px;}
.ws3e{word-spacing:-10.195200px;}
.ws53{word-spacing:-10.022400px;}
.wsbb{word-spacing:-9.979200px;}
.ws94{word-spacing:-9.964800px;}
.ws99{word-spacing:-9.928800px;}
.ws96{word-spacing:-9.907200px;}
.ws41{word-spacing:-9.849600px;}
.wse{word-spacing:-9.789600px;}
.ws9a{word-spacing:-9.727200px;}
.ws83{word-spacing:-9.361440px;}
.ws93{word-spacing:-9.331200px;}
.ws98{word-spacing:-9.324000px;}
.wsb9{word-spacing:-9.313920px;}
.ws54{word-spacing:-9.273600px;}
.wsba{word-spacing:-9.076320px;}
.wscf{word-spacing:-8.812800px;}
.ws9b{word-spacing:-8.517600px;}
.ws75{word-spacing:-8.347680px;}
.wse3{word-spacing:-8.294400px;}
.ws81{word-spacing:-8.125920px;}
.wse2{word-spacing:-8.121600px;}
.wse4{word-spacing:-8.006400px;}
.wsb0{word-spacing:-7.891200px;}
.ws82{word-spacing:-7.888320px;}
.ws76{word-spacing:-5.663520px;}
.wscb{word-spacing:-5.362560px;}
.ws77{word-spacing:-5.199840px;}
.ws7b{word-spacing:-4.835520px;}
.ws21{word-spacing:-2.244000px;}
.ws24{word-spacing:-1.902000px;}
.wsc8{word-spacing:-1.853280px;}
.ws2c{word-spacing:-1.788000px;}
.wsdd{word-spacing:-1.728000px;}
.ws1d{word-spacing:-1.500000px;}
.wsb6{word-spacing:-1.440000px;}
.ws61{word-spacing:-1.382400px;}
.ws1e{word-spacing:-1.326000px;}
.ws30{word-spacing:-1.212000px;}
.wsd9{word-spacing:-1.209600px;}
.ws1f{word-spacing:-1.152000px;}
.ws2a{word-spacing:-1.104000px;}
.ws23{word-spacing:-1.092000px;}
.ws2b{word-spacing:-0.978000px;}
.ws91{word-spacing:-0.902880px;}
.ws5{word-spacing:-0.794880px;}
.wsdc{word-spacing:-0.748800px;}
.ws92{word-spacing:-0.665280px;}
.ws4e{word-spacing:-0.633600px;}
.ws88{word-spacing:-0.596160px;}
.ws71{word-spacing:-0.584640px;}
.ws1c{word-spacing:-0.576000px;}
.ws50{word-spacing:-0.518400px;}
.ws20{word-spacing:-0.516000px;}
.ws1b{word-spacing:-0.462000px;}
.wsa9{word-spacing:-0.427680px;}
.ws6b{word-spacing:-0.403200px;}
.ws9e{word-spacing:-0.401760px;}
.ws44{word-spacing:-0.357120px;}
.ws97{word-spacing:-0.352800px;}
.wsae{word-spacing:-0.312480px;}
.ws7c{word-spacing:-0.267840px;}
.ws80{word-spacing:-0.230400px;}
.ws18{word-spacing:-0.228000px;}
.wsda{word-spacing:-0.172800px;}
.ws5c{word-spacing:-0.167040px;}
.ws6{word-spacing:-0.155520px;}
.wsb3{word-spacing:-0.115200px;}
.ws79{word-spacing:-0.095000px;}
.ws78{word-spacing:-0.055417px;}
.ws2{word-spacing:0.000000px;}
.wsaf{word-spacing:0.057600px;}
.ws67{word-spacing:0.083520px;}
.ws4b{word-spacing:0.115200px;}
.ws4f{word-spacing:0.172800px;}
.ws27{word-spacing:0.228000px;}
.ws8e{word-spacing:0.230400px;}
.ws8f{word-spacing:0.237600px;}
.ws6d{word-spacing:0.250560px;}
.ws43{word-spacing:0.267840px;}
.ws1a{word-spacing:0.288000px;}
.wsc4{word-spacing:0.332640px;}
.ws65{word-spacing:0.334080px;}
.ws4c{word-spacing:0.345600px;}
.ws2f{word-spacing:0.348000px;}
.wsa8{word-spacing:0.352800px;}
.ws16{word-spacing:0.402000px;}
.wsd6{word-spacing:0.403200px;}
.ws7f{word-spacing:0.460800px;}
.ws31{word-spacing:0.462000px;}
.wsc7{word-spacing:0.475200px;}
.wsd8{word-spacing:0.518400px;}
.wsc2{word-spacing:0.570240px;}
.ws26{word-spacing:0.576000px;}
.ws8{word-spacing:0.622080px;}
.wsdf{word-spacing:0.633600px;}
.ws4d{word-spacing:0.691200px;}
.ws7{word-spacing:0.699840px;}
.ws17{word-spacing:0.750000px;}
.ws9{word-spacing:0.777600px;}
.ws15{word-spacing:0.804000px;}
.ws12{word-spacing:0.806400px;}
.ws22{word-spacing:0.864000px;}
.ws19{word-spacing:0.924000px;}
.wsc0{word-spacing:0.997920px;}
.wsa5{word-spacing:1.008000px;}
.wsd7{word-spacing:1.036800px;}
.wsa7{word-spacing:1.058400px;}
.wsa1{word-spacing:1.094400px;}
.wsd0{word-spacing:1.152000px;}
.ws68{word-spacing:1.169280px;}
.ws7e{word-spacing:1.209600px;}
.ws25{word-spacing:1.212000px;}
.ws62{word-spacing:1.267200px;}
.ws51{word-spacing:1.324800px;}
.ws2e{word-spacing:1.440000px;}
.ws3b{word-spacing:1.500000px;}
.ws29{word-spacing:1.554000px;}
.ws6c{word-spacing:1.612800px;}
.wsd5{word-spacing:1.670400px;}
.wsd1{word-spacing:1.728000px;}
.wsdb{word-spacing:1.785600px;}
.wsde{word-spacing:1.843200px;}
.ws8a{word-spacing:1.900800px;}
.ws2d{word-spacing:2.016000px;}
.ws4a{word-spacing:2.246400px;}
.wsa6{word-spacing:2.469600px;}
.wsb2{word-spacing:2.476800px;}
.wsbd{word-spacing:3.110400px;}
.wsbe{word-spacing:3.283200px;}
.ws28{word-spacing:3.456000px;}
.ws49{word-spacing:3.686400px;}
.ws6f{word-spacing:4.377600px;}
.ws8c{word-spacing:4.550400px;}
.ws8d{word-spacing:4.953600px;}
.ws8b{word-spacing:5.011200px;}
.ws45{word-spacing:5.126400px;}
.wsa4{word-spacing:5.356800px;}
.wsbc{word-spacing:5.587200px;}
.ws7d{word-spacing:5.702400px;}
.wse6{word-spacing:6.163200px;}
.ws63{word-spacing:6.566400px;}
.ws90{word-spacing:6.747840px;}
.wsac{word-spacing:6.842880px;}
.wsab{word-spacing:6.985440px;}
.wsce{word-spacing:7.084800px;}
.wsaa{word-spacing:7.175520px;}
.wsa3{word-spacing:7.257600px;}
.wse5{word-spacing:7.660800px;}
.wscd{word-spacing:7.891200px;}
.ws14{word-spacing:8.004000px;}
.ws48{word-spacing:8.006400px;}
.ws87{word-spacing:8.870400px;}
.ws89{word-spacing:9.043200px;}
.ws5a{word-spacing:9.446400px;}
.ws3a{word-spacing:9.852000px;}
.ws39{word-spacing:10.308000px;}
.ws59{word-spacing:10.598400px;}
.ws33{word-spacing:10.656000px;}
.wsc3{word-spacing:10.834560px;}
.ws32{word-spacing:10.884000px;}
.ws57{word-spacing:10.886400px;}
.ws34{word-spacing:10.944000px;}
.ws36{word-spacing:11.004000px;}
.wsc1{word-spacing:11.072160px;}
.ws73{word-spacing:11.116800px;}
.wsc5{word-spacing:11.167200px;}
.ws72{word-spacing:11.232000px;}
.ws37{word-spacing:11.286000px;}
.ws38{word-spacing:11.292000px;}
.ws35{word-spacing:12.096000px;}
.ws58{word-spacing:12.326400px;}
.wsc6{word-spacing:12.545280px;}
.ws13{word-spacing:13.764000px;}
.ws47{word-spacing:13.766400px;}
.ws55{word-spacing:15.206400px;}
.ws46{word-spacing:16.646400px;}
.ws66{word-spacing:18.086400px;}
.ws86{word-spacing:18.950400px;}
.ws84{word-spacing:19.411200px;}
.ws70{word-spacing:19.526400px;}
.ws85{word-spacing:20.390400px;}
.wsa2{word-spacing:20.966400px;}
.wsea{word-spacing:21.657600px;}
.wse7{word-spacing:21.945600px;}
.wse9{word-spacing:22.291200px;}
.ws6a{word-spacing:22.406400px;}
.wse8{word-spacing:23.097600px;}
.wsbf{word-spacing:23.846400px;}
.ws5f{word-spacing:25.286400px;}
.ws5e{word-spacing:26.726400px;}
.ws5b{word-spacing:28.166400px;}
.wsb4{word-spacing:28.396800px;}
.ws56{word-spacing:29.606400px;}
.wsa0{word-spacing:30.297600px;}
.ws9f{word-spacing:31.046400px;}
.ws69{word-spacing:32.486400px;}
.wscc{word-spacing:33.926400px;}
.ws74{word-spacing:36.806400px;}
.ws64{word-spacing:38.246400px;}
.ws60{word-spacing:39.686400px;}
.ws5d{word-spacing:44.006400px;}
.wsb5{word-spacing:45.446400px;}
.ws6e{word-spacing:46.886400px;}
.ws42{word-spacing:63.936000px;}
._16{margin-left:-450.014053px;}
._18{margin-left:-448.969055px;}
._1b{margin-left:-330.409304px;}
._1c{margin-left:-307.704352px;}
._19{margin-left:-293.549382px;}
._15{margin-left:-269.901009px;}
._1a{margin-left:-265.049442px;}
._13{margin-left:-232.300846px;}
._14{margin-left:-204.598087px;}
._17{margin-left:-153.804676px;}
._11{margin-left:-73.227495px;}
._12{margin-left:-43.790197px;}
._c{margin-left:-10.992480px;}
._0{margin-left:-9.108000px;}
._9{margin-left:-7.917360px;}
._a{margin-left:-6.158400px;}
._8{margin-left:-5.110800px;}
._7{margin-left:-3.360000px;}
._4{margin-left:-1.716000px;}
._2{width:1.050000px;}
._5{width:2.159760px;}
._1{width:3.432000px;}
._3{width:4.488000px;}
._23{width:6.469680px;}
._f{width:7.694400px;}
._10{width:9.038160px;}
._1f{width:10.254960px;}
._25{width:11.624160px;}
._d{width:12.656400px;}
._b{width:14.072400px;}
._21{width:17.559600px;}
._1d{width:18.914160px;}
._28{width:22.305600px;}
._24{width:25.155600px;}
._20{width:30.584880px;}
._26{width:32.330400px;}
._27{width:33.744000px;}
._e{width:39.108000px;}
._6{width:118.980720px;}
._1e{width:179.300400px;}
._22{width:485.866800px;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(179,25,147);}
.fc2{color:rgb(200,66,22);}
.fc1{color:rgb(134,132,132);}
.fc0{color:rgb(207,24,31);}
.fs10{font-size:27.360000px;}
.fsc{font-size:30.240000px;}
.fs9{font-size:33.120000px;}
.fs5{font-size:44.640000px;}
.fsd{font-size:47.520000px;}
.fsf{font-size:50.400000px;}
.fsa{font-size:55.416600px;}
.fs3{font-size:57.600000px;}
.fse{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs1{font-size:79.500000px;}
.fs8{font-size:83.520000px;}
.fsb{font-size:94.999800px;}
.fs6{font-size:108.000000px;}
.fs0{font-size:132.000000px;}
.fs2{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y122{bottom:4.680000px;}
.yc8{bottom:7.298550px;}
.ycc{bottom:13.241375px;}
.y108{bottom:20.520000px;}
.y10a{bottom:20.880000px;}
.yca{bottom:25.724569px;}
.ycd{bottom:31.671336px;}
.y11b{bottom:33.120000px;}
.y43{bottom:41.760000px;}
.yc9{bottom:43.042257px;}
.ycb{bottom:48.985050px;}
.y42{bottom:61.564320px;}
.y27{bottom:61.567560px;}
.y41{bottom:78.840000px;}
.y3{bottom:85.039350px;}
.y118{bottom:91.436760px;}
.y15f{bottom:98.640000px;}
.ye8{bottom:99.000000px;}
.y9c{bottom:99.360000px;}
.y1aa{bottom:102.600000px;}
.y117{bottom:105.122520px;}
.y1a9{bottom:112.320000px;}
.y15e{bottom:118.440000px;}
.y9b{bottom:119.160000px;}
.y2{bottom:121.339350px;}
.ye7{bottom:121.680000px;}
.y116{bottom:122.040000px;}
.y75{bottom:130.320000px;}
.y18b{bottom:130.680000px;}
.y115{bottom:132.840000px;}
.y15d{bottom:138.240000px;}
.y9a{bottom:138.960000px;}
.y18a{bottom:147.956760px;}
.y74{bottom:150.120000px;}
.y1{bottom:157.639350px;}
.y15c{bottom:158.040000px;}
.y99{bottom:158.760000px;}
.y189{bottom:161.274240px;}
.ye6{bottom:165.962520px;}
.y73{bottom:169.920000px;}
.y15b{bottom:177.480000px;}
.y98{bottom:178.200000px;}
.y188{bottom:178.560000px;}
.ye5{bottom:182.880000px;}
.y146{bottom:186.483960px;}
.y187{bottom:189.000000px;}
.y72{bottom:189.720000px;}
.y25{bottom:192.600000px;}
.ye4{bottom:193.680000px;}
.y15a{bottom:197.280000px;}
.y97{bottom:198.000000px;}
.y145{bottom:202.320000px;}
.y186{bottom:207.360000px;}
.y71{bottom:209.160000px;}
.y24{bottom:212.400000px;}
.y1a8{bottom:216.360000px;}
.y159{bottom:217.080000px;}
.y96{bottom:217.800000px;}
.y144{bottom:221.040000px;}
.ye3{bottom:226.800000px;}
.y185{bottom:227.160000px;}
.y70{bottom:228.960000px;}
.y1a7{bottom:236.160000px;}
.y95{bottom:237.600000px;}
.y158{bottom:239.400000px;}
.y23{bottom:241.200000px;}
.ye2{bottom:246.600000px;}
.y184{bottom:246.960000px;}
.y6f{bottom:248.760000px;}
.y143{bottom:253.080000px;}
.y1a6{bottom:255.960000px;}
.y94{bottom:257.400000px;}
.y157{bottom:264.600000px;}
.y183{bottom:266.760000px;}
.y6e{bottom:268.560000px;}
.y22{bottom:270.360000px;}
.ye1{bottom:275.400000px;}
.y1a5{bottom:275.760000px;}
.y93{bottom:276.840000px;}
.y141{bottom:282.600000px;}
.y182{bottom:286.560000px;}
.y156{bottom:287.280000px;}
.y6d{bottom:288.000000px;}
.y114{bottom:292.685040px;}
.yd1{bottom:294.480000px;}
.ye0{bottom:295.200000px;}
.y1a4{bottom:295.560000px;}
.y142{bottom:298.080000px;}
.y21{bottom:299.160000px;}
.y181{bottom:306.000000px;}
.y155{bottom:307.080000px;}
.y6c{bottom:307.800000px;}
.y113{bottom:308.521080px;}
.y92{bottom:308.880000px;}
.yd0{bottom:314.280000px;}
.ydf{bottom:314.640000px;}
.y1a3{bottom:315.000000px;}
.y112{bottom:324.000000px;}
.yb9{bottom:326.880000px;}
.y13f{bottom:327.600000px;}
.y20{bottom:327.960000px;}
.ycf{bottom:334.080000px;}
.yde{bottom:334.440000px;}
.y180{bottom:334.800000px;}
.y154{bottom:335.880000px;}
.y6b{bottom:336.600000px;}
.y140{bottom:343.080000px;}
.y111{bottom:347.400000px;}
.ydd{bottom:354.240000px;}
.y17f{bottom:354.600000px;}
.y91{bottom:355.680000px;}
.y6a{bottom:356.400000px;}
.y1f{bottom:356.760000px;}
.yc7{bottom:359.100000px;}
.y13d{bottom:372.600000px;}
.ydc{bottom:374.040000px;}
.y17e{bottom:374.400000px;}
.y110{bottom:374.760000px;}
.yb8{bottom:375.120000px;}
.y90{bottom:375.480000px;}
.y69{bottom:376.200000px;}
.y13e{bottom:376.920000px;}
.yce{bottom:383.400000px;}
.y1e{bottom:385.560000px;}
.y10f{bottom:392.400000px;}
.ydb{bottom:393.840000px;}
.y17d{bottom:394.200000px;}
.yb7{bottom:394.920000px;}
.y8f{bottom:395.280000px;}
.y68{bottom:395.640000px;}
.yda{bottom:413.280000px;}
.y17c{bottom:413.640000px;}
.y13c{bottom:414.005040px;}
.y1d{bottom:414.360000px;}
.y8e{bottom:414.720000px;}
.y67{bottom:415.440000px;}
.y10e{bottom:419.760000px;}
.y13b{bottom:429.841080px;}
.y17b{bottom:433.440000px;}
.y1b5{bottom:434.160000px;}
.y8d{bottom:434.520000px;}
.y66{bottom:435.240000px;}
.y10d{bottom:437.400000px;}
.yd9{bottom:442.080000px;}
.y1c{bottom:443.160000px;}
.y13a{bottom:445.320000px;}
.yc6{bottom:446.400000px;}
.y17a{bottom:453.240000px;}
.y1b4{bottom:453.960000px;}
.y8c{bottom:454.320000px;}
.y65{bottom:455.040000px;}
.yd8{bottom:461.880000px;}
.y1b{bottom:462.840000px;}
.y139{bottom:464.040000px;}
.y10c{bottom:464.760000px;}
.yc5{bottom:466.200000px;}
.y179{bottom:473.040000px;}
.y153{bottom:473.760000px;}
.y8b{bottom:474.120000px;}
.y137{bottom:480.600000px;}
.y10b{bottom:482.400000px;}
.y1a{bottom:482.520000px;}
.yb6{bottom:482.760000px;}
.y3f{bottom:483.120000px;}
.y64{bottom:483.840000px;}
.yc4{bottom:486.000000px;}
.y178{bottom:492.480000px;}
.y1b3{bottom:493.560000px;}
.y107{bottom:494.280000px;}
.y138{bottom:496.080000px;}
.y109{bottom:498.600000px;}
.y1a2{bottom:501.480000px;}
.y19{bottom:502.200000px;}
.yb5{bottom:502.560000px;}
.y8a{bottom:502.920000px;}
.y63{bottom:503.280000px;}
.yc3{bottom:505.800000px;}
.y3e{bottom:511.920000px;}
.y177{bottom:512.280000px;}
.y1b2{bottom:513.000000px;}
.y1a1{bottom:521.280000px;}
.yd7{bottom:522.000000px;}
.y89{bottom:522.360000px;}
.y62{bottom:523.080000px;}
.yc2{bottom:525.240000px;}
.y136{bottom:525.600000px;}
.y176{bottom:532.080000px;}
.y3d{bottom:541.080000px;}
.yd6{bottom:541.800000px;}
.y88{bottom:542.160000px;}
.y106{bottom:542.520000px;}
.y61{bottom:542.880000px;}
.yc1{bottom:545.040000px;}
.y175{bottom:560.880000px;}
.yb4{bottom:561.600000px;}
.y87{bottom:561.960000px;}
.y60{bottom:562.680000px;}
.yc0{bottom:564.840000px;}
.y3c{bottom:569.880000px;}
.y134{bottom:570.600000px;}
.y174{bottom:580.680000px;}
.yb3{bottom:581.400000px;}
.y105{bottom:581.760000px;}
.y5f{bottom:582.120000px;}
.ybf{bottom:584.640000px;}
.y135{bottom:586.080000px;}
.y86{bottom:590.760000px;}
.y3b{bottom:598.680000px;}
.y1c3{bottom:599.400000px;}
.y173{bottom:600.120000px;}
.yd5{bottom:600.840000px;}
.yb2{bottom:601.200000px;}
.y104{bottom:601.560000px;}
.y5e{bottom:601.920000px;}
.ybe{bottom:604.440000px;}
.y1a0{bottom:609.120000px;}
.y85{bottom:610.200000px;}
.y132{bottom:615.600000px;}
.y1c2{bottom:619.200000px;}
.y133{bottom:619.920000px;}
.yd4{bottom:620.640000px;}
.y152{bottom:621.000000px;}
.y103{bottom:621.360000px;}
.y5d{bottom:621.720000px;}
.ybd{bottom:623.880000px;}
.y3a{bottom:627.120000px;}
.y19f{bottom:628.920000px;}
.y84{bottom:630.000000px;}
.yb1{bottom:633.240000px;}
.y1c1{bottom:638.640000px;}
.y172{bottom:639.720000px;}
.y1b1{bottom:640.440000px;}
.y151{bottom:640.800000px;}
.y102{bottom:641.160000px;}
.y5c{bottom:641.520000px;}
.ybc{bottom:643.680000px;}
.y19e{bottom:648.720000px;}
.yd3{bottom:649.440000px;}
.y83{bottom:649.800000px;}
.y39{bottom:656.280000px;}
.y1c0{bottom:658.440000px;}
.y171{bottom:659.520000px;}
.y150{bottom:660.240000px;}
.y101{bottom:660.600000px;}
.y5b{bottom:661.320000px;}
.y131{bottom:663.840000px;}
.ybb{bottom:665.643960px;}
.yd2{bottom:667.800000px;}
.y19d{bottom:668.520000px;}
.y1bf{bottom:678.240000px;}
.y170{bottom:679.320000px;}
.yb0{bottom:680.040000px;}
.y100{bottom:680.400000px;}
.y15{bottom:681.457680px;}
.yba{bottom:681.480000px;}
.y82{bottom:681.840000px;}
.y38{bottom:685.080000px;}
.y19c{bottom:688.320000px;}
.y130{bottom:692.280000px;}
.y5a{bottom:693.360000px;}
.y1be{bottom:698.040000px;}
.y16f{bottom:698.760000px;}
.yaf{bottom:699.840000px;}
.yff{bottom:700.200000px;}
.y19b{bottom:707.760000px;}
.y12f{bottom:712.080000px;}
.y37{bottom:713.880000px;}
.y14{bottom:717.460560px;}
.y1bd{bottom:717.840000px;}
.y16e{bottom:718.560000px;}
.yae{bottom:719.280000px;}
.yfe{bottom:720.000000px;}
.y19a{bottom:727.560000px;}
.y59{bottom:728.280000px;}
.y81{bottom:728.640000px;}
.y12e{bottom:731.880000px;}
.y1bc{bottom:737.280000px;}
.y16d{bottom:738.360000px;}
.yad{bottom:739.080000px;}
.yfd{bottom:739.440000px;}
.y36{bottom:742.680000px;}
.y199{bottom:747.360000px;}
.y58{bottom:748.080000px;}
.y80{bottom:748.440000px;}
.y13{bottom:753.463440px;}
.y1bb{bottom:757.080000px;}
.y16c{bottom:758.160000px;}
.yac{bottom:758.880000px;}
.y12d{bottom:760.680000px;}
.y198{bottom:767.160000px;}
.y57{bottom:767.880000px;}
.yfc{bottom:768.240000px;}
.y35{bottom:771.479850px;}
.y1ba{bottom:776.880000px;}
.y16b{bottom:777.600000px;}
.yab{bottom:778.680000px;}
.y12c{bottom:780.480000px;}
.y197{bottom:786.600000px;}
.y56{bottom:787.680000px;}
.yfb{bottom:788.040000px;}
.y12{bottom:789.466320px;}
.y7f{bottom:796.680000px;}
.y16a{bottom:797.400000px;}
.yaa{bottom:798.120000px;}
.y12b{bottom:799.920000px;}
.y34{bottom:800.280000px;}
.y55{bottom:807.120000px;}
.yfa{bottom:807.840000px;}
.y196{bottom:815.400000px;}
.y1b9{bottom:816.120000px;}
.y7e{bottom:816.480000px;}
.y169{bottom:817.200000px;}
.ya9{bottom:817.920000px;}
.y12a{bottom:819.720000px;}
.y11{bottom:825.469200px;}
.y7{bottom:825.542550px;}
.y54{bottom:826.920000px;}
.yf9{bottom:827.640000px;}
.y33{bottom:829.080000px;}
.y195{bottom:835.200000px;}
.y1b8{bottom:835.920000px;}
.y7d{bottom:836.280000px;}
.ya8{bottom:837.720000px;}
.y129{bottom:839.520000px;}
.y53{bottom:846.720000px;}
.yf8{bottom:847.080000px;}
.y168{bottom:849.240000px;}
.y14f{bottom:849.960000px;}
.y194{bottom:855.000000px;}
.y7c{bottom:855.720000px;}
.ya7{bottom:857.520000px;}
.y32{bottom:857.880000px;}
.y128{bottom:859.320000px;}
.y10{bottom:861.472080px;}
.y6{bottom:861.542550px;}
.y52{bottom:866.520000px;}
.yf7{bottom:866.880000px;}
.y193{bottom:874.800000px;}
.y7b{bottom:875.520000px;}
.ya6{bottom:877.320000px;}
.y127{bottom:879.120000px;}
.y14e{bottom:885.240000px;}
.y51{bottom:886.320000px;}
.yf6{bottom:886.680000px;}
.y31{bottom:887.040000px;}
.y192{bottom:894.240000px;}
.y7a{bottom:895.320000px;}
.y167{bottom:896.040000px;}
.ya5{bottom:896.760000px;}
.yf{bottom:897.474960px;}
.y5{bottom:897.542550px;}
.y126{bottom:898.560000px;}
.y14d{bottom:905.040000px;}
.y50{bottom:905.760000px;}
.yf5{bottom:906.480000px;}
.y1b7{bottom:914.760000px;}
.y79{bottom:915.120000px;}
.y166{bottom:915.840000px;}
.y125{bottom:920.525040px;}
.y14c{bottom:924.840000px;}
.y4f{bottom:925.560000px;}
.yf4{bottom:925.920000px;}
.y191{bottom:926.280000px;}
.ya4{bottom:928.800000px;}
.y30{bottom:932.400000px;}
.ye{bottom:933.477840px;}
.y1b6{bottom:934.560000px;}
.y78{bottom:934.920000px;}
.y165{bottom:935.280000px;}
.y124{bottom:936.361080px;}
.y1c7{bottom:937.080000px;}
.y14b{bottom:944.280000px;}
.y1b0{bottom:945.360000px;}
.y4{bottom:945.542550px;}
.yf3{bottom:945.720000px;}
.y123{bottom:951.840000px;}
.y4e{bottom:954.360000px;}
.y164{bottom:955.080000px;}
.ya3{bottom:964.080000px;}
.y1af{bottom:965.160000px;}
.yf2{bottom:965.520000px;}
.yd{bottom:969.111360px;}
.y121{bottom:970.560000px;}
.y190{bottom:973.080000px;}
.y4d{bottom:974.160000px;}
.y163{bottom:974.880000px;}
.y2f{bottom:983.880000px;}
.y1ae{bottom:984.960000px;}
.yf1{bottom:985.320000px;}
.y11f{bottom:987.120000px;}
.y18f{bottom:992.880000px;}
.y4c{bottom:993.960000px;}
.y120{bottom:1002.600000px;}
.y2e{bottom:1003.680000px;}
.y1ad{bottom:1004.400000px;}
.yc{bottom:1005.114240px;}
.yf0{bottom:1005.120000px;}
.y18e{bottom:1012.680000px;}
.y4b{bottom:1013.400000px;}
.y77{bottom:1013.760000px;}
.ya2{bottom:1023.120000px;}
.y2d{bottom:1023.480000px;}
.y1ac{bottom:1024.200000px;}
.yef{bottom:1024.560000px;}
.y1c6{bottom:1025.280000px;}
.y11d{bottom:1032.120000px;}
.y4a{bottom:1033.200000px;}
.yb{bottom:1041.117120px;}
.ya1{bottom:1042.920000px;}
.y2c{bottom:1043.280000px;}
.y1ab{bottom:1044.000000px;}
.y76{bottom:1045.800000px;}
.y11e{bottom:1047.600000px;}
.y18d{bottom:1051.920000px;}
.y49{bottom:1053.000000px;}
.yee{bottom:1053.360000px;}
.y1c5{bottom:1053.720000px;}
.ya0{bottom:1062.720000px;}
.y2b{bottom:1063.080000px;}
.y18c{bottom:1071.720000px;}
.y48{bottom:1072.800000px;}
.yed{bottom:1073.160000px;}
.ya{bottom:1077.120000px;}
.y2a{bottom:1082.520000px;}
.y162{bottom:1091.520000px;}
.y47{bottom:1092.240000px;}
.y11c{bottom:1092.600000px;}
.yec{bottom:1092.960000px;}
.y29{bottom:1102.320000px;}
.y14a{bottom:1105.920000px;}
.y9{bottom:1110.240000px;}
.y161{bottom:1111.320000px;}
.y46{bottom:1112.040000px;}
.yeb{bottom:1112.760000px;}
.y9f{bottom:1121.760000px;}
.y119{bottom:1122.120000px;}
.y149{bottom:1125.720000px;}
.y11a{bottom:1126.800000px;}
.y160{bottom:1130.760000px;}
.y45{bottom:1131.840000px;}
.yea{bottom:1132.200000px;}
.y18{bottom:1134.360000px;}
.y1c4{bottom:1138.320000px;}
.y148{bottom:1145.520000px;}
.y28{bottom:1147.320000px;}
.y9e{bottom:1150.560000px;}
.y17{bottom:1154.160000px;}
.y8{bottom:1157.400000px;}
.y44{bottom:1163.880000px;}
.ye9{bottom:1164.240000px;}
.y147{bottom:1165.320000px;}
.y9d{bottom:1170.360000px;}
.y16{bottom:1173.600000px;}
.y40{bottom:1199.160000px;}
.y26{bottom:1218.960000px;}
.h1e{height:15.841500px;}
.h1f{height:22.462560px;}
.h16{height:24.827040px;}
.h1c{height:32.040000px;}
.h19{height:32.041500px;}
.hc{height:36.649440px;}
.h1a{height:37.800000px;}
.h12{height:38.477737px;}
.h17{height:39.013920px;}
.h18{height:40.310156px;}
.h1b{height:41.378400px;}
.hb{height:43.200000px;}
.he{height:44.149219px;}
.h1d{height:44.280000px;}
.h8{height:47.289600px;}
.h15{height:48.791520px;}
.h9{height:62.519040px;}
.h14{height:63.317738px;}
.ha{height:63.840960px;}
.h5{height:63.918000px;}
.h13{height:65.961775px;}
.h4{height:66.382500px;}
.h10{height:67.150080px;}
.hf{height:69.739200px;}
.h11{height:71.250000px;}
.hd{height:88.668000px;}
.h3{height:99.000000px;}
.h7{height:106.513920px;}
.h2{height:110.220000px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:140.758500px;}
.w7{width:141.120000px;}
.w5{width:141.480000px;}
.w8{width:144.000000px;}
.w4{width:313.200000px;}
.w3{width:892.500000px;}
.w2{width:892.800000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:4.507234px;}
.x16{left:8.280000px;}
.xa{left:28.704272px;}
.x10{left:50.314295px;}
.x2{left:111.614100px;}
.x15{left:131.400000px;}
.x3{left:139.680000px;}
.x13{left:146.143080px;}
.x5{left:154.080000px;}
.x21{left:160.920000px;}
.xc{left:201.151867px;}
.x8{left:222.858300px;}
.xf{left:244.043311px;}
.xd{left:262.425359px;}
.x17{left:273.600000px;}
.x18{left:281.160000px;}
.x9{left:284.139328px;}
.xb{left:300.032250px;}
.x12{left:320.760000px;}
.x1f{left:322.559640px;}
.x1d{left:324.356400px;}
.x20{left:327.603960px;}
.x1e{left:329.400720px;}
.x7{left:331.560000px;}
.x19{left:415.080000px;}
.x1a{left:423.000000px;}
.x14{left:483.118560px;}
.x4{left:485.997120px;}
.x6{left:488.520000px;}
.x1b{left:556.920000px;}
.x1{left:639.908400px;}
.x11{left:645.120000px;}
.x1c{left:701.640000px;}
@media print{
.v3{vertical-align:-65.528751pt;}
.v9{vertical-align:-21.760000pt;}
.v4{vertical-align:-19.196160pt;}
.v5{vertical-align:-16.640000pt;}
.v8{vertical-align:-12.800000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v7{vertical-align:19.200000pt;}
.v2{vertical-align:21.756160pt;}
.ls2f{letter-spacing:-1.792000pt;}
.ls76{letter-spacing:-1.740800pt;}
.ls50{letter-spacing:-1.689600pt;}
.ls8c{letter-spacing:-1.638400pt;}
.ls84{letter-spacing:-1.536000pt;}
.ls8a{letter-spacing:-1.440000pt;}
.ls35{letter-spacing:-1.433600pt;}
.ls86{letter-spacing:-1.382400pt;}
.ls11{letter-spacing:-1.333333pt;}
.ls4e{letter-spacing:-1.280000pt;}
.ls63{letter-spacing:-1.228800pt;}
.ls4d{letter-spacing:-1.177600pt;}
.ls2d{letter-spacing:-1.126400pt;}
.ls13{letter-spacing:-1.077333pt;}
.ls41{letter-spacing:-1.075200pt;}
.ls3f{letter-spacing:-1.024000pt;}
.ls1d{letter-spacing:-0.972800pt;}
.ls1f{letter-spacing:-0.921600pt;}
.ls83{letter-spacing:-0.819200pt;}
.ls43{letter-spacing:-0.736000pt;}
.ls1b{letter-spacing:-0.716800pt;}
.ls24{letter-spacing:-0.614400pt;}
.ls78{letter-spacing:-0.593920pt;}
.ls6c{letter-spacing:-0.591360pt;}
.ls8b{letter-spacing:-0.576000pt;}
.ls70{letter-spacing:-0.563200pt;}
.ls34{letter-spacing:-0.519680pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls7e{letter-spacing:-0.506880pt;}
.ls1{letter-spacing:-0.469333pt;}
.ls1c{letter-spacing:-0.460800pt;}
.ls12{letter-spacing:-0.458667pt;}
.ls66{letter-spacing:-0.448000pt;}
.ls32{letter-spacing:-0.445440pt;}
.ls6d{letter-spacing:-0.422400pt;}
.ls8{letter-spacing:-0.414720pt;}
.ls40{letter-spacing:-0.412160pt;}
.ls42{letter-spacing:-0.409600pt;}
.ls64{letter-spacing:-0.403200pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls51{letter-spacing:-0.358400pt;}
.ls3d{letter-spacing:-0.357120pt;}
.ls5{letter-spacing:-0.345600pt;}
.ls18{letter-spacing:-0.317440pt;}
.ls14{letter-spacing:-0.309333pt;}
.ls88{letter-spacing:-0.307200pt;}
.ls6e{letter-spacing:-0.295680pt;}
.ls7{letter-spacing:-0.276480pt;}
.ls2c{letter-spacing:-0.256000pt;}
.ls79{letter-spacing:-0.222720pt;}
.ls52{letter-spacing:-0.211200pt;}
.lsf{letter-spacing:-0.202667pt;}
.ls67{letter-spacing:-0.179200pt;}
.lse{letter-spacing:-0.154667pt;}
.lsd{letter-spacing:-0.153600pt;}
.ls69{letter-spacing:-0.134400pt;}
.ls20{letter-spacing:-0.102400pt;}
.ls6a{letter-spacing:-0.089600pt;}
.ls33{letter-spacing:-0.074240pt;}
.ls22{letter-spacing:-0.051200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.032000pt;}
.ls53{letter-spacing:0.042240pt;}
.ls68{letter-spacing:0.044800pt;}
.ls62{letter-spacing:0.051200pt;}
.ls25{letter-spacing:0.074240pt;}
.ls4b{letter-spacing:0.084480pt;}
.ls85{letter-spacing:0.092160pt;}
.ls58{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.102400pt;}
.ls82{letter-spacing:0.107520pt;}
.ls15{letter-spacing:0.112640pt;}
.ls72{letter-spacing:0.117760pt;}
.ls31{letter-spacing:0.128000pt;}
.ls59{letter-spacing:0.134400pt;}
.ls2e{letter-spacing:0.153600pt;}
.ls3e{letter-spacing:0.158720pt;}
.ls6f{letter-spacing:0.198400pt;}
.ls10{letter-spacing:0.202667pt;}
.ls9{letter-spacing:0.204800pt;}
.ls4c{letter-spacing:0.211200pt;}
.ls56{letter-spacing:0.215040pt;}
.ls3{letter-spacing:0.235520pt;}
.ls19{letter-spacing:0.238080pt;}
.ls21{letter-spacing:0.256000pt;}
.ls48{letter-spacing:0.266240pt;}
.ls65{letter-spacing:0.268800pt;}
.ls2{letter-spacing:0.276480pt;}
.ls36{letter-spacing:0.296960pt;}
.ls77{letter-spacing:0.307200pt;}
.ls6b{letter-spacing:0.313600pt;}
.ls61{letter-spacing:0.357120pt;}
.ls7d{letter-spacing:0.358400pt;}
.ls3a{letter-spacing:0.371200pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls87{letter-spacing:0.409600pt;}
.ls4{letter-spacing:0.414720pt;}
.ls2b{letter-spacing:0.445440pt;}
.lsb{letter-spacing:0.458667pt;}
.ls23{letter-spacing:0.460800pt;}
.ls5c{letter-spacing:0.492800pt;}
.ls4f{letter-spacing:0.529920pt;}
.ls46{letter-spacing:0.537600pt;}
.ls17{letter-spacing:0.563200pt;}
.ls7f{letter-spacing:0.591360pt;}
.ls6{letter-spacing:0.622080pt;}
.ls7a{letter-spacing:0.675840pt;}
.ls80{letter-spacing:1.056000pt;}
.ls57{letter-spacing:1.484800pt;}
.ls81{letter-spacing:1.495040pt;}
.ls71{letter-spacing:1.500160pt;}
.ls28{letter-spacing:2.764800pt;}
.ls3b{letter-spacing:4.044800pt;}
.ls29{letter-spacing:5.324800pt;}
.ls2a{letter-spacing:5.345280pt;}
.ls4a{letter-spacing:5.786880pt;}
.ls47{letter-spacing:6.604800pt;}
.ls73{letter-spacing:6.609920pt;}
.ls60{letter-spacing:7.096320pt;}
.ls37{letter-spacing:7.884800pt;}
.ls39{letter-spacing:9.164800pt;}
.ls7c{letter-spacing:9.630720pt;}
.ls30{letter-spacing:10.444800pt;}
.ls7b{letter-spacing:10.940160pt;}
.ls45{letter-spacing:11.724800pt;}
.ls27{letter-spacing:13.004800pt;}
.ls55{letter-spacing:15.564800pt;}
.ls38{letter-spacing:16.844800pt;}
.ls54{letter-spacing:18.140160pt;}
.ls89{letter-spacing:19.404800pt;}
.ls16{letter-spacing:62.213120pt;}
.ls26{letter-spacing:152.192000pt;}
.ls75{letter-spacing:171.724800pt;}
.ls74{letter-spacing:173.004800pt;}
.ls44{letter-spacing:185.804800pt;}
.ls5f{letter-spacing:359.878400pt;}
.ls5d{letter-spacing:421.254400pt;}
.ls5e{letter-spacing:431.513600pt;}
.ls5a{letter-spacing:443.072000pt;}
.ls5b{letter-spacing:453.286400pt;}
.ls3c{letter-spacing:618.638698pt;}
.ws7a{word-spacing:-46.359902pt;}
.ws0{word-spacing:-22.528000pt;}
.ws1{word-spacing:-22.058667pt;}
.ws3f{word-spacing:-19.200000pt;}
.ws3c{word-spacing:-18.432000pt;}
.wse1{word-spacing:-18.240000pt;}
.wse0{word-spacing:-17.376000pt;}
.ws52{word-spacing:-14.699520pt;}
.ws3{word-spacing:-14.446080pt;}
.wsd2{word-spacing:-14.031360pt;}
.wsb1{word-spacing:-13.660160pt;}
.ws4{word-spacing:-13.547520pt;}
.wsb8{word-spacing:-10.188800pt;}
.ws95{word-spacing:-10.086400pt;}
.ws11{word-spacing:-10.035200pt;}
.wsa{word-spacing:-9.881600pt;}
.wsd{word-spacing:-9.879467pt;}
.ws10{word-spacing:-9.832533pt;}
.wsc9{word-spacing:-9.779200pt;}
.ws40{word-spacing:-9.676800pt;}
.wsb7{word-spacing:-9.625600pt;}
.wsf{word-spacing:-9.576533pt;}
.ws3d{word-spacing:-9.574400pt;}
.wsb{word-spacing:-9.523200pt;}
.wsc{word-spacing:-9.474133pt;}
.wsad{word-spacing:-9.472000pt;}
.wsd4{word-spacing:-9.318400pt;}
.ws9d{word-spacing:-9.273600pt;}
.wsca{word-spacing:-9.216000pt;}
.wsd3{word-spacing:-9.113600pt;}
.ws9c{word-spacing:-9.094400pt;}
.ws3e{word-spacing:-9.062400pt;}
.ws53{word-spacing:-8.908800pt;}
.wsbb{word-spacing:-8.870400pt;}
.ws94{word-spacing:-8.857600pt;}
.ws99{word-spacing:-8.825600pt;}
.ws96{word-spacing:-8.806400pt;}
.ws41{word-spacing:-8.755200pt;}
.wse{word-spacing:-8.701867pt;}
.ws9a{word-spacing:-8.646400pt;}
.ws83{word-spacing:-8.321280pt;}
.ws93{word-spacing:-8.294400pt;}
.ws98{word-spacing:-8.288000pt;}
.wsb9{word-spacing:-8.279040pt;}
.ws54{word-spacing:-8.243200pt;}
.wsba{word-spacing:-8.067840pt;}
.wscf{word-spacing:-7.833600pt;}
.ws9b{word-spacing:-7.571200pt;}
.ws75{word-spacing:-7.420160pt;}
.wse3{word-spacing:-7.372800pt;}
.ws81{word-spacing:-7.223040pt;}
.wse2{word-spacing:-7.219200pt;}
.wse4{word-spacing:-7.116800pt;}
.wsb0{word-spacing:-7.014400pt;}
.ws82{word-spacing:-7.011840pt;}
.ws76{word-spacing:-5.034240pt;}
.wscb{word-spacing:-4.766720pt;}
.ws77{word-spacing:-4.622080pt;}
.ws7b{word-spacing:-4.298240pt;}
.ws21{word-spacing:-1.994667pt;}
.ws24{word-spacing:-1.690667pt;}
.wsc8{word-spacing:-1.647360pt;}
.ws2c{word-spacing:-1.589333pt;}
.wsdd{word-spacing:-1.536000pt;}
.ws1d{word-spacing:-1.333333pt;}
.wsb6{word-spacing:-1.280000pt;}
.ws61{word-spacing:-1.228800pt;}
.ws1e{word-spacing:-1.178667pt;}
.ws30{word-spacing:-1.077333pt;}
.wsd9{word-spacing:-1.075200pt;}
.ws1f{word-spacing:-1.024000pt;}
.ws2a{word-spacing:-0.981333pt;}
.ws23{word-spacing:-0.970667pt;}
.ws2b{word-spacing:-0.869333pt;}
.ws91{word-spacing:-0.802560pt;}
.ws5{word-spacing:-0.706560pt;}
.wsdc{word-spacing:-0.665600pt;}
.ws92{word-spacing:-0.591360pt;}
.ws4e{word-spacing:-0.563200pt;}
.ws88{word-spacing:-0.529920pt;}
.ws71{word-spacing:-0.519680pt;}
.ws1c{word-spacing:-0.512000pt;}
.ws50{word-spacing:-0.460800pt;}
.ws20{word-spacing:-0.458667pt;}
.ws1b{word-spacing:-0.410667pt;}
.wsa9{word-spacing:-0.380160pt;}
.ws6b{word-spacing:-0.358400pt;}
.ws9e{word-spacing:-0.357120pt;}
.ws44{word-spacing:-0.317440pt;}
.ws97{word-spacing:-0.313600pt;}
.wsae{word-spacing:-0.277760pt;}
.ws7c{word-spacing:-0.238080pt;}
.ws80{word-spacing:-0.204800pt;}
.ws18{word-spacing:-0.202667pt;}
.wsda{word-spacing:-0.153600pt;}
.ws5c{word-spacing:-0.148480pt;}
.ws6{word-spacing:-0.138240pt;}
.wsb3{word-spacing:-0.102400pt;}
.ws79{word-spacing:-0.084444pt;}
.ws78{word-spacing:-0.049259pt;}
.ws2{word-spacing:0.000000pt;}
.wsaf{word-spacing:0.051200pt;}
.ws67{word-spacing:0.074240pt;}
.ws4b{word-spacing:0.102400pt;}
.ws4f{word-spacing:0.153600pt;}
.ws27{word-spacing:0.202667pt;}
.ws8e{word-spacing:0.204800pt;}
.ws8f{word-spacing:0.211200pt;}
.ws6d{word-spacing:0.222720pt;}
.ws43{word-spacing:0.238080pt;}
.ws1a{word-spacing:0.256000pt;}
.wsc4{word-spacing:0.295680pt;}
.ws65{word-spacing:0.296960pt;}
.ws4c{word-spacing:0.307200pt;}
.ws2f{word-spacing:0.309333pt;}
.wsa8{word-spacing:0.313600pt;}
.ws16{word-spacing:0.357333pt;}
.wsd6{word-spacing:0.358400pt;}
.ws7f{word-spacing:0.409600pt;}
.ws31{word-spacing:0.410667pt;}
.wsc7{word-spacing:0.422400pt;}
.wsd8{word-spacing:0.460800pt;}
.wsc2{word-spacing:0.506880pt;}
.ws26{word-spacing:0.512000pt;}
.ws8{word-spacing:0.552960pt;}
.wsdf{word-spacing:0.563200pt;}
.ws4d{word-spacing:0.614400pt;}
.ws7{word-spacing:0.622080pt;}
.ws17{word-spacing:0.666667pt;}
.ws9{word-spacing:0.691200pt;}
.ws15{word-spacing:0.714667pt;}
.ws12{word-spacing:0.716800pt;}
.ws22{word-spacing:0.768000pt;}
.ws19{word-spacing:0.821333pt;}
.wsc0{word-spacing:0.887040pt;}
.wsa5{word-spacing:0.896000pt;}
.wsd7{word-spacing:0.921600pt;}
.wsa7{word-spacing:0.940800pt;}
.wsa1{word-spacing:0.972800pt;}
.wsd0{word-spacing:1.024000pt;}
.ws68{word-spacing:1.039360pt;}
.ws7e{word-spacing:1.075200pt;}
.ws25{word-spacing:1.077333pt;}
.ws62{word-spacing:1.126400pt;}
.ws51{word-spacing:1.177600pt;}
.ws2e{word-spacing:1.280000pt;}
.ws3b{word-spacing:1.333333pt;}
.ws29{word-spacing:1.381333pt;}
.ws6c{word-spacing:1.433600pt;}
.wsd5{word-spacing:1.484800pt;}
.wsd1{word-spacing:1.536000pt;}
.wsdb{word-spacing:1.587200pt;}
.wsde{word-spacing:1.638400pt;}
.ws8a{word-spacing:1.689600pt;}
.ws2d{word-spacing:1.792000pt;}
.ws4a{word-spacing:1.996800pt;}
.wsa6{word-spacing:2.195200pt;}
.wsb2{word-spacing:2.201600pt;}
.wsbd{word-spacing:2.764800pt;}
.wsbe{word-spacing:2.918400pt;}
.ws28{word-spacing:3.072000pt;}
.ws49{word-spacing:3.276800pt;}
.ws6f{word-spacing:3.891200pt;}
.ws8c{word-spacing:4.044800pt;}
.ws8d{word-spacing:4.403200pt;}
.ws8b{word-spacing:4.454400pt;}
.ws45{word-spacing:4.556800pt;}
.wsa4{word-spacing:4.761600pt;}
.wsbc{word-spacing:4.966400pt;}
.ws7d{word-spacing:5.068800pt;}
.wse6{word-spacing:5.478400pt;}
.ws63{word-spacing:5.836800pt;}
.ws90{word-spacing:5.998080pt;}
.wsac{word-spacing:6.082560pt;}
.wsab{word-spacing:6.209280pt;}
.wsce{word-spacing:6.297600pt;}
.wsaa{word-spacing:6.378240pt;}
.wsa3{word-spacing:6.451200pt;}
.wse5{word-spacing:6.809600pt;}
.wscd{word-spacing:7.014400pt;}
.ws14{word-spacing:7.114667pt;}
.ws48{word-spacing:7.116800pt;}
.ws87{word-spacing:7.884800pt;}
.ws89{word-spacing:8.038400pt;}
.ws5a{word-spacing:8.396800pt;}
.ws3a{word-spacing:8.757333pt;}
.ws39{word-spacing:9.162667pt;}
.ws59{word-spacing:9.420800pt;}
.ws33{word-spacing:9.472000pt;}
.wsc3{word-spacing:9.630720pt;}
.ws32{word-spacing:9.674667pt;}
.ws57{word-spacing:9.676800pt;}
.ws34{word-spacing:9.728000pt;}
.ws36{word-spacing:9.781333pt;}
.wsc1{word-spacing:9.841920pt;}
.ws73{word-spacing:9.881600pt;}
.wsc5{word-spacing:9.926400pt;}
.ws72{word-spacing:9.984000pt;}
.ws37{word-spacing:10.032000pt;}
.ws38{word-spacing:10.037333pt;}
.ws35{word-spacing:10.752000pt;}
.ws58{word-spacing:10.956800pt;}
.wsc6{word-spacing:11.151360pt;}
.ws13{word-spacing:12.234667pt;}
.ws47{word-spacing:12.236800pt;}
.ws55{word-spacing:13.516800pt;}
.ws46{word-spacing:14.796800pt;}
.ws66{word-spacing:16.076800pt;}
.ws86{word-spacing:16.844800pt;}
.ws84{word-spacing:17.254400pt;}
.ws70{word-spacing:17.356800pt;}
.ws85{word-spacing:18.124800pt;}
.wsa2{word-spacing:18.636800pt;}
.wsea{word-spacing:19.251200pt;}
.wse7{word-spacing:19.507200pt;}
.wse9{word-spacing:19.814400pt;}
.ws6a{word-spacing:19.916800pt;}
.wse8{word-spacing:20.531200pt;}
.wsbf{word-spacing:21.196800pt;}
.ws5f{word-spacing:22.476800pt;}
.ws5e{word-spacing:23.756800pt;}
.ws5b{word-spacing:25.036800pt;}
.wsb4{word-spacing:25.241600pt;}
.ws56{word-spacing:26.316800pt;}
.wsa0{word-spacing:26.931200pt;}
.ws9f{word-spacing:27.596800pt;}
.ws69{word-spacing:28.876800pt;}
.wscc{word-spacing:30.156800pt;}
.ws74{word-spacing:32.716800pt;}
.ws64{word-spacing:33.996800pt;}
.ws60{word-spacing:35.276800pt;}
.ws5d{word-spacing:39.116800pt;}
.wsb5{word-spacing:40.396800pt;}
.ws6e{word-spacing:41.676800pt;}
.ws42{word-spacing:56.832000pt;}
._16{margin-left:-400.012491pt;}
._18{margin-left:-399.083604pt;}
._1b{margin-left:-293.697159pt;}
._1c{margin-left:-273.514980pt;}
._19{margin-left:-260.932784pt;}
._15{margin-left:-239.912008pt;}
._1a{margin-left:-235.599504pt;}
._13{margin-left:-206.489640pt;}
._14{margin-left:-181.864966pt;}
._17{margin-left:-136.715268pt;}
._11{margin-left:-65.091107pt;}
._12{margin-left:-38.924620pt;}
._c{margin-left:-9.771093pt;}
._0{margin-left:-8.096000pt;}
._9{margin-left:-7.037653pt;}
._a{margin-left:-5.474133pt;}
._8{margin-left:-4.542933pt;}
._7{margin-left:-2.986667pt;}
._4{margin-left:-1.525333pt;}
._2{width:0.933333pt;}
._5{width:1.919787pt;}
._1{width:3.050667pt;}
._3{width:3.989333pt;}
._23{width:5.750827pt;}
._f{width:6.839467pt;}
._10{width:8.033920pt;}
._1f{width:9.115520pt;}
._25{width:10.332587pt;}
._d{width:11.250133pt;}
._b{width:12.508800pt;}
._21{width:15.608533pt;}
._1d{width:16.812587pt;}
._28{width:19.827200pt;}
._24{width:22.360533pt;}
._20{width:27.186560pt;}
._26{width:28.738133pt;}
._27{width:29.994667pt;}
._e{width:34.762667pt;}
._6{width:105.760640pt;}
._1e{width:159.378133pt;}
._22{width:431.881600pt;}
.fs10{font-size:24.320000pt;}
.fsc{font-size:26.880000pt;}
.fs9{font-size:29.440000pt;}
.fs5{font-size:39.680000pt;}
.fsd{font-size:42.240000pt;}
.fsf{font-size:44.800000pt;}
.fsa{font-size:49.259200pt;}
.fs3{font-size:51.200000pt;}
.fse{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs1{font-size:70.666667pt;}
.fs8{font-size:74.240000pt;}
.fsb{font-size:84.444267pt;}
.fs6{font-size:96.000000pt;}
.fs0{font-size:117.333333pt;}
.fs2{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y122{bottom:4.160000pt;}
.yc8{bottom:6.487600pt;}
.ycc{bottom:11.770111pt;}
.y108{bottom:18.240000pt;}
.y10a{bottom:18.560000pt;}
.yca{bottom:22.866284pt;}
.ycd{bottom:28.152299pt;}
.y11b{bottom:29.440000pt;}
.y43{bottom:37.120000pt;}
.yc9{bottom:38.259784pt;}
.ycb{bottom:43.542267pt;}
.y42{bottom:54.723840pt;}
.y27{bottom:54.726720pt;}
.y41{bottom:70.080000pt;}
.y3{bottom:75.590533pt;}
.y118{bottom:81.277120pt;}
.y15f{bottom:87.680000pt;}
.ye8{bottom:88.000000pt;}
.y9c{bottom:88.320000pt;}
.y1aa{bottom:91.200000pt;}
.y117{bottom:93.442240pt;}
.y1a9{bottom:99.840000pt;}
.y15e{bottom:105.280000pt;}
.y9b{bottom:105.920000pt;}
.y2{bottom:107.857200pt;}
.ye7{bottom:108.160000pt;}
.y116{bottom:108.480000pt;}
.y75{bottom:115.840000pt;}
.y18b{bottom:116.160000pt;}
.y115{bottom:118.080000pt;}
.y15d{bottom:122.880000pt;}
.y9a{bottom:123.520000pt;}
.y18a{bottom:131.517120pt;}
.y74{bottom:133.440000pt;}
.y1{bottom:140.123867pt;}
.y15c{bottom:140.480000pt;}
.y99{bottom:141.120000pt;}
.y189{bottom:143.354880pt;}
.ye6{bottom:147.522240pt;}
.y73{bottom:151.040000pt;}
.y15b{bottom:157.760000pt;}
.y98{bottom:158.400000pt;}
.y188{bottom:158.720000pt;}
.ye5{bottom:162.560000pt;}
.y146{bottom:165.763520pt;}
.y187{bottom:168.000000pt;}
.y72{bottom:168.640000pt;}
.y25{bottom:171.200000pt;}
.ye4{bottom:172.160000pt;}
.y15a{bottom:175.360000pt;}
.y97{bottom:176.000000pt;}
.y145{bottom:179.840000pt;}
.y186{bottom:184.320000pt;}
.y71{bottom:185.920000pt;}
.y24{bottom:188.800000pt;}
.y1a8{bottom:192.320000pt;}
.y159{bottom:192.960000pt;}
.y96{bottom:193.600000pt;}
.y144{bottom:196.480000pt;}
.ye3{bottom:201.600000pt;}
.y185{bottom:201.920000pt;}
.y70{bottom:203.520000pt;}
.y1a7{bottom:209.920000pt;}
.y95{bottom:211.200000pt;}
.y158{bottom:212.800000pt;}
.y23{bottom:214.400000pt;}
.ye2{bottom:219.200000pt;}
.y184{bottom:219.520000pt;}
.y6f{bottom:221.120000pt;}
.y143{bottom:224.960000pt;}
.y1a6{bottom:227.520000pt;}
.y94{bottom:228.800000pt;}
.y157{bottom:235.200000pt;}
.y183{bottom:237.120000pt;}
.y6e{bottom:238.720000pt;}
.y22{bottom:240.320000pt;}
.ye1{bottom:244.800000pt;}
.y1a5{bottom:245.120000pt;}
.y93{bottom:246.080000pt;}
.y141{bottom:251.200000pt;}
.y182{bottom:254.720000pt;}
.y156{bottom:255.360000pt;}
.y6d{bottom:256.000000pt;}
.y114{bottom:260.164480pt;}
.yd1{bottom:261.760000pt;}
.ye0{bottom:262.400000pt;}
.y1a4{bottom:262.720000pt;}
.y142{bottom:264.960000pt;}
.y21{bottom:265.920000pt;}
.y181{bottom:272.000000pt;}
.y155{bottom:272.960000pt;}
.y6c{bottom:273.600000pt;}
.y113{bottom:274.240960pt;}
.y92{bottom:274.560000pt;}
.yd0{bottom:279.360000pt;}
.ydf{bottom:279.680000pt;}
.y1a3{bottom:280.000000pt;}
.y112{bottom:288.000000pt;}
.yb9{bottom:290.560000pt;}
.y13f{bottom:291.200000pt;}
.y20{bottom:291.520000pt;}
.ycf{bottom:296.960000pt;}
.yde{bottom:297.280000pt;}
.y180{bottom:297.600000pt;}
.y154{bottom:298.560000pt;}
.y6b{bottom:299.200000pt;}
.y140{bottom:304.960000pt;}
.y111{bottom:308.800000pt;}
.ydd{bottom:314.880000pt;}
.y17f{bottom:315.200000pt;}
.y91{bottom:316.160000pt;}
.y6a{bottom:316.800000pt;}
.y1f{bottom:317.120000pt;}
.yc7{bottom:319.200000pt;}
.y13d{bottom:331.200000pt;}
.ydc{bottom:332.480000pt;}
.y17e{bottom:332.800000pt;}
.y110{bottom:333.120000pt;}
.yb8{bottom:333.440000pt;}
.y90{bottom:333.760000pt;}
.y69{bottom:334.400000pt;}
.y13e{bottom:335.040000pt;}
.yce{bottom:340.800000pt;}
.y1e{bottom:342.720000pt;}
.y10f{bottom:348.800000pt;}
.ydb{bottom:350.080000pt;}
.y17d{bottom:350.400000pt;}
.yb7{bottom:351.040000pt;}
.y8f{bottom:351.360000pt;}
.y68{bottom:351.680000pt;}
.yda{bottom:367.360000pt;}
.y17c{bottom:367.680000pt;}
.y13c{bottom:368.004480pt;}
.y1d{bottom:368.320000pt;}
.y8e{bottom:368.640000pt;}
.y67{bottom:369.280000pt;}
.y10e{bottom:373.120000pt;}
.y13b{bottom:382.080960pt;}
.y17b{bottom:385.280000pt;}
.y1b5{bottom:385.920000pt;}
.y8d{bottom:386.240000pt;}
.y66{bottom:386.880000pt;}
.y10d{bottom:388.800000pt;}
.yd9{bottom:392.960000pt;}
.y1c{bottom:393.920000pt;}
.y13a{bottom:395.840000pt;}
.yc6{bottom:396.800000pt;}
.y17a{bottom:402.880000pt;}
.y1b4{bottom:403.520000pt;}
.y8c{bottom:403.840000pt;}
.y65{bottom:404.480000pt;}
.yd8{bottom:410.560000pt;}
.y1b{bottom:411.413333pt;}
.y139{bottom:412.480000pt;}
.y10c{bottom:413.120000pt;}
.yc5{bottom:414.400000pt;}
.y179{bottom:420.480000pt;}
.y153{bottom:421.120000pt;}
.y8b{bottom:421.440000pt;}
.y137{bottom:427.200000pt;}
.y10b{bottom:428.800000pt;}
.y1a{bottom:428.906667pt;}
.yb6{bottom:429.120000pt;}
.y3f{bottom:429.440000pt;}
.y64{bottom:430.080000pt;}
.yc4{bottom:432.000000pt;}
.y178{bottom:437.760000pt;}
.y1b3{bottom:438.720000pt;}
.y107{bottom:439.360000pt;}
.y138{bottom:440.960000pt;}
.y109{bottom:443.200000pt;}
.y1a2{bottom:445.760000pt;}
.y19{bottom:446.400000pt;}
.yb5{bottom:446.720000pt;}
.y8a{bottom:447.040000pt;}
.y63{bottom:447.360000pt;}
.yc3{bottom:449.600000pt;}
.y3e{bottom:455.040000pt;}
.y177{bottom:455.360000pt;}
.y1b2{bottom:456.000000pt;}
.y1a1{bottom:463.360000pt;}
.yd7{bottom:464.000000pt;}
.y89{bottom:464.320000pt;}
.y62{bottom:464.960000pt;}
.yc2{bottom:466.880000pt;}
.y136{bottom:467.200000pt;}
.y176{bottom:472.960000pt;}
.y3d{bottom:480.960000pt;}
.yd6{bottom:481.600000pt;}
.y88{bottom:481.920000pt;}
.y106{bottom:482.240000pt;}
.y61{bottom:482.560000pt;}
.yc1{bottom:484.480000pt;}
.y175{bottom:498.560000pt;}
.yb4{bottom:499.200000pt;}
.y87{bottom:499.520000pt;}
.y60{bottom:500.160000pt;}
.yc0{bottom:502.080000pt;}
.y3c{bottom:506.560000pt;}
.y134{bottom:507.200000pt;}
.y174{bottom:516.160000pt;}
.yb3{bottom:516.800000pt;}
.y105{bottom:517.120000pt;}
.y5f{bottom:517.440000pt;}
.ybf{bottom:519.680000pt;}
.y135{bottom:520.960000pt;}
.y86{bottom:525.120000pt;}
.y3b{bottom:532.160000pt;}
.y1c3{bottom:532.800000pt;}
.y173{bottom:533.440000pt;}
.yd5{bottom:534.080000pt;}
.yb2{bottom:534.400000pt;}
.y104{bottom:534.720000pt;}
.y5e{bottom:535.040000pt;}
.ybe{bottom:537.280000pt;}
.y1a0{bottom:541.440000pt;}
.y85{bottom:542.400000pt;}
.y132{bottom:547.200000pt;}
.y1c2{bottom:550.400000pt;}
.y133{bottom:551.040000pt;}
.yd4{bottom:551.680000pt;}
.y152{bottom:552.000000pt;}
.y103{bottom:552.320000pt;}
.y5d{bottom:552.640000pt;}
.ybd{bottom:554.560000pt;}
.y3a{bottom:557.440000pt;}
.y19f{bottom:559.040000pt;}
.y84{bottom:560.000000pt;}
.yb1{bottom:562.880000pt;}
.y1c1{bottom:567.680000pt;}
.y172{bottom:568.640000pt;}
.y1b1{bottom:569.280000pt;}
.y151{bottom:569.600000pt;}
.y102{bottom:569.920000pt;}
.y5c{bottom:570.240000pt;}
.ybc{bottom:572.160000pt;}
.y19e{bottom:576.640000pt;}
.yd3{bottom:577.280000pt;}
.y83{bottom:577.600000pt;}
.y39{bottom:583.360000pt;}
.y1c0{bottom:585.280000pt;}
.y171{bottom:586.240000pt;}
.y150{bottom:586.880000pt;}
.y101{bottom:587.200000pt;}
.y5b{bottom:587.840000pt;}
.y131{bottom:590.080000pt;}
.ybb{bottom:591.683520pt;}
.yd2{bottom:593.600000pt;}
.y19d{bottom:594.240000pt;}
.y1bf{bottom:602.880000pt;}
.y170{bottom:603.840000pt;}
.yb0{bottom:604.480000pt;}
.y100{bottom:604.800000pt;}
.y15{bottom:605.740160pt;}
.yba{bottom:605.760000pt;}
.y82{bottom:606.080000pt;}
.y38{bottom:608.960000pt;}
.y19c{bottom:611.840000pt;}
.y130{bottom:615.360000pt;}
.y5a{bottom:616.320000pt;}
.y1be{bottom:620.480000pt;}
.y16f{bottom:621.120000pt;}
.yaf{bottom:622.080000pt;}
.yff{bottom:622.400000pt;}
.y19b{bottom:629.120000pt;}
.y12f{bottom:632.960000pt;}
.y37{bottom:634.560000pt;}
.y14{bottom:637.742720pt;}
.y1bd{bottom:638.080000pt;}
.y16e{bottom:638.720000pt;}
.yae{bottom:639.360000pt;}
.yfe{bottom:640.000000pt;}
.y19a{bottom:646.720000pt;}
.y59{bottom:647.360000pt;}
.y81{bottom:647.680000pt;}
.y12e{bottom:650.560000pt;}
.y1bc{bottom:655.360000pt;}
.y16d{bottom:656.320000pt;}
.yad{bottom:656.960000pt;}
.yfd{bottom:657.280000pt;}
.y36{bottom:660.160000pt;}
.y199{bottom:664.320000pt;}
.y58{bottom:664.960000pt;}
.y80{bottom:665.280000pt;}
.y13{bottom:669.745280pt;}
.y1bb{bottom:672.960000pt;}
.y16c{bottom:673.920000pt;}
.yac{bottom:674.560000pt;}
.y12d{bottom:676.160000pt;}
.y198{bottom:681.920000pt;}
.y57{bottom:682.560000pt;}
.yfc{bottom:682.880000pt;}
.y35{bottom:685.759867pt;}
.y1ba{bottom:690.560000pt;}
.y16b{bottom:691.200000pt;}
.yab{bottom:692.160000pt;}
.y12c{bottom:693.760000pt;}
.y197{bottom:699.200000pt;}
.y56{bottom:700.160000pt;}
.yfb{bottom:700.480000pt;}
.y12{bottom:701.747840pt;}
.y7f{bottom:708.160000pt;}
.y16a{bottom:708.800000pt;}
.yaa{bottom:709.440000pt;}
.y12b{bottom:711.040000pt;}
.y34{bottom:711.360000pt;}
.y55{bottom:717.440000pt;}
.yfa{bottom:718.080000pt;}
.y196{bottom:724.800000pt;}
.y1b9{bottom:725.440000pt;}
.y7e{bottom:725.760000pt;}
.y169{bottom:726.400000pt;}
.ya9{bottom:727.040000pt;}
.y12a{bottom:728.640000pt;}
.y11{bottom:733.750400pt;}
.y7{bottom:733.815600pt;}
.y54{bottom:735.040000pt;}
.yf9{bottom:735.680000pt;}
.y33{bottom:736.960000pt;}
.y195{bottom:742.400000pt;}
.y1b8{bottom:743.040000pt;}
.y7d{bottom:743.360000pt;}
.ya8{bottom:744.640000pt;}
.y129{bottom:746.240000pt;}
.y53{bottom:752.640000pt;}
.yf8{bottom:752.960000pt;}
.y168{bottom:754.880000pt;}
.y14f{bottom:755.520000pt;}
.y194{bottom:760.000000pt;}
.y7c{bottom:760.640000pt;}
.ya7{bottom:762.240000pt;}
.y32{bottom:762.560000pt;}
.y128{bottom:763.840000pt;}
.y10{bottom:765.752960pt;}
.y6{bottom:765.815600pt;}
.y52{bottom:770.240000pt;}
.yf7{bottom:770.560000pt;}
.y193{bottom:777.600000pt;}
.y7b{bottom:778.240000pt;}
.ya6{bottom:779.840000pt;}
.y127{bottom:781.440000pt;}
.y14e{bottom:786.880000pt;}
.y51{bottom:787.840000pt;}
.yf6{bottom:788.160000pt;}
.y31{bottom:788.480000pt;}
.y192{bottom:794.880000pt;}
.y7a{bottom:795.840000pt;}
.y167{bottom:796.480000pt;}
.ya5{bottom:797.120000pt;}
.yf{bottom:797.755520pt;}
.y5{bottom:797.815600pt;}
.y126{bottom:798.720000pt;}
.y14d{bottom:804.480000pt;}
.y50{bottom:805.120000pt;}
.yf5{bottom:805.760000pt;}
.y1b7{bottom:813.120000pt;}
.y79{bottom:813.440000pt;}
.y166{bottom:814.080000pt;}
.y125{bottom:818.244480pt;}
.y14c{bottom:822.080000pt;}
.y4f{bottom:822.720000pt;}
.yf4{bottom:823.040000pt;}
.y191{bottom:823.360000pt;}
.ya4{bottom:825.600000pt;}
.y30{bottom:828.800000pt;}
.ye{bottom:829.758080pt;}
.y1b6{bottom:830.720000pt;}
.y78{bottom:831.040000pt;}
.y165{bottom:831.360000pt;}
.y124{bottom:832.320960pt;}
.y1c7{bottom:832.960000pt;}
.y14b{bottom:839.360000pt;}
.y1b0{bottom:840.320000pt;}
.y4{bottom:840.482267pt;}
.yf3{bottom:840.640000pt;}
.y123{bottom:846.080000pt;}
.y4e{bottom:848.320000pt;}
.y164{bottom:848.960000pt;}
.ya3{bottom:856.960000pt;}
.y1af{bottom:857.920000pt;}
.yf2{bottom:858.240000pt;}
.yd{bottom:861.432320pt;}
.y121{bottom:862.720000pt;}
.y190{bottom:864.960000pt;}
.y4d{bottom:865.920000pt;}
.y163{bottom:866.560000pt;}
.y2f{bottom:874.560000pt;}
.y1ae{bottom:875.520000pt;}
.yf1{bottom:875.840000pt;}
.y11f{bottom:877.440000pt;}
.y18f{bottom:882.560000pt;}
.y4c{bottom:883.520000pt;}
.y120{bottom:891.200000pt;}
.y2e{bottom:892.160000pt;}
.y1ad{bottom:892.800000pt;}
.yc{bottom:893.434880pt;}
.yf0{bottom:893.440000pt;}
.y18e{bottom:900.160000pt;}
.y4b{bottom:900.800000pt;}
.y77{bottom:901.120000pt;}
.ya2{bottom:909.440000pt;}
.y2d{bottom:909.760000pt;}
.y1ac{bottom:910.400000pt;}
.yef{bottom:910.720000pt;}
.y1c6{bottom:911.360000pt;}
.y11d{bottom:917.440000pt;}
.y4a{bottom:918.400000pt;}
.yb{bottom:925.437440pt;}
.ya1{bottom:927.040000pt;}
.y2c{bottom:927.360000pt;}
.y1ab{bottom:928.000000pt;}
.y76{bottom:929.600000pt;}
.y11e{bottom:931.200000pt;}
.y18d{bottom:935.040000pt;}
.y49{bottom:936.000000pt;}
.yee{bottom:936.320000pt;}
.y1c5{bottom:936.640000pt;}
.ya0{bottom:944.640000pt;}
.y2b{bottom:944.960000pt;}
.y18c{bottom:952.640000pt;}
.y48{bottom:953.600000pt;}
.yed{bottom:953.920000pt;}
.ya{bottom:957.440000pt;}
.y2a{bottom:962.240000pt;}
.y162{bottom:970.240000pt;}
.y47{bottom:970.880000pt;}
.y11c{bottom:971.200000pt;}
.yec{bottom:971.520000pt;}
.y29{bottom:979.840000pt;}
.y14a{bottom:983.040000pt;}
.y9{bottom:986.880000pt;}
.y161{bottom:987.840000pt;}
.y46{bottom:988.480000pt;}
.yeb{bottom:989.120000pt;}
.y9f{bottom:997.120000pt;}
.y119{bottom:997.440000pt;}
.y149{bottom:1000.640000pt;}
.y11a{bottom:1001.600000pt;}
.y160{bottom:1005.120000pt;}
.y45{bottom:1006.080000pt;}
.yea{bottom:1006.400000pt;}
.y18{bottom:1008.320000pt;}
.y1c4{bottom:1011.840000pt;}
.y148{bottom:1018.240000pt;}
.y28{bottom:1019.840000pt;}
.y9e{bottom:1022.720000pt;}
.y17{bottom:1025.920000pt;}
.y8{bottom:1028.800000pt;}
.y44{bottom:1034.560000pt;}
.ye9{bottom:1034.880000pt;}
.y147{bottom:1035.840000pt;}
.y9d{bottom:1040.320000pt;}
.y16{bottom:1043.200000pt;}
.y40{bottom:1065.920000pt;}
.y26{bottom:1083.520000pt;}
.h1e{height:14.081333pt;}
.h1f{height:19.966720pt;}
.h16{height:22.068480pt;}
.h1c{height:28.480000pt;}
.h19{height:28.481333pt;}
.hc{height:32.577280pt;}
.h1a{height:33.600000pt;}
.h12{height:34.202433pt;}
.h17{height:34.679040pt;}
.h18{height:35.831250pt;}
.h1b{height:36.780800pt;}
.hb{height:38.400000pt;}
.he{height:39.243750pt;}
.h1d{height:39.360000pt;}
.h8{height:42.035200pt;}
.h15{height:43.370240pt;}
.h9{height:55.572480pt;}
.h14{height:56.282434pt;}
.ha{height:56.747520pt;}
.h5{height:56.816000pt;}
.h13{height:58.632689pt;}
.h4{height:59.006667pt;}
.h10{height:59.688960pt;}
.hf{height:61.990400pt;}
.h11{height:63.333333pt;}
.hd{height:78.816000pt;}
.h3{height:88.000000pt;}
.h7{height:94.679040pt;}
.h2{height:97.973333pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:125.118667pt;}
.w7{width:125.440000pt;}
.w5{width:125.760000pt;}
.w8{width:128.000000pt;}
.w4{width:278.400000pt;}
.w3{width:793.333333pt;}
.w2{width:793.600000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:4.006431pt;}
.x16{left:7.360000pt;}
.xa{left:25.514909pt;}
.x10{left:44.723818pt;}
.x2{left:99.212533pt;}
.x15{left:116.800000pt;}
.x3{left:124.160000pt;}
.x13{left:129.904960pt;}
.x5{left:136.960000pt;}
.x21{left:143.040000pt;}
.xc{left:178.801659pt;}
.x8{left:198.096267pt;}
.xf{left:216.927388pt;}
.xd{left:233.266986pt;}
.x17{left:243.200000pt;}
.x18{left:249.920000pt;}
.x9{left:252.568291pt;}
.xb{left:266.695333pt;}
.x12{left:285.120000pt;}
.x1f{left:286.719680pt;}
.x1d{left:288.316800pt;}
.x20{left:291.203520pt;}
.x1e{left:292.800640pt;}
.x7{left:294.720000pt;}
.x19{left:368.960000pt;}
.x1a{left:376.000000pt;}
.x14{left:429.438720pt;}
.x4{left:431.997440pt;}
.x6{left:434.240000pt;}
.x1b{left:495.040000pt;}
.x1{left:568.807467pt;}
.x11{left:573.440000pt;}
.x1c{left:623.680000pt;}
}




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