
    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_88639f659621240b7604873e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cdbca2318ddd8ced03a0690a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.027000;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_15dd940c843816f284faf989.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_4cd8bc17da99cec11673caab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_b3e9bd78e50cf80c6bd6fab7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.132000;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_16f44ceab495192052724932.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.102000;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_f9860d1857e868e3af593902.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_2147d25a8ebe7efd3be77b37.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090000;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_491098f9300ce61d832d1add.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.027000;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_0ca63c6fd397fc3ae3719318.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0437f045190e87ca0dd9648d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.132000;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_6ad9f0472f5d12e668dca3b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m3{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);}
.m4{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237503,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.175000px;}
.ls23{letter-spacing:-3.824955px;}
.ls28{letter-spacing:-3.722956px;}
.ls1c{letter-spacing:-3.108000px;}
.ls10{letter-spacing:-3.066000px;}
.ls29{letter-spacing:-1.835978px;}
.ls13{letter-spacing:-1.680000px;}
.ls15{letter-spacing:-1.638000px;}
.ls1b{letter-spacing:-1.554000px;}
.lse{letter-spacing:-1.470000px;}
.lsf{letter-spacing:-1.428000px;}
.ls17{letter-spacing:-1.386000px;}
.ls27{letter-spacing:-1.376984px;}
.ls19{letter-spacing:-1.344000px;}
.ls1d{letter-spacing:-1.260000px;}
.ls24{letter-spacing:-1.224000px;}
.ls2b{letter-spacing:-1.223986px;}
.ls1a{letter-spacing:-1.176000px;}
.ls7{letter-spacing:-1.173000px;}
.ls21{letter-spacing:-1.172986px;}
.ls1e{letter-spacing:-1.134000px;}
.ls25{letter-spacing:-1.121987px;}
.ls18{letter-spacing:-1.092000px;}
.ls1f{letter-spacing:-1.050000px;}
.ls2d{letter-spacing:-0.917989px;}
.lsb{letter-spacing:-0.882000px;}
.ls4{letter-spacing:-0.867000px;}
.ls26{letter-spacing:-0.764991px;}
.ls12{letter-spacing:-0.714000px;}
.ls16{letter-spacing:-0.672000px;}
.ls14{letter-spacing:-0.630000px;}
.lsd{letter-spacing:-0.588000px;}
.lsc{letter-spacing:-0.576240px;}
.ls22{letter-spacing:-0.560993px;}
.ls11{letter-spacing:-0.546000px;}
.ls3{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.420000px;}
.ls2{letter-spacing:-0.351000px;}
.ls6{letter-spacing:-0.255000px;}
.lsa{letter-spacing:-0.244860px;}
.ls5{letter-spacing:-0.153000px;}
.ls8{letter-spacing:-0.102000px;}
.ls2a{letter-spacing:-0.050999px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.168000px;}
.ls2c{letter-spacing:1.019988px;}
.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;}
}
.wsd4{word-spacing:-42.000000px;}
.ws2{word-spacing:-18.288000px;}
.ws3{word-spacing:-15.240000px;}
.ws5{word-spacing:-13.716000px;}
.ws75{word-spacing:-12.750000px;}
.wsf4{word-spacing:-12.545852px;}
.ws9a{word-spacing:-12.495000px;}
.wse9{word-spacing:-12.392854px;}
.wsee{word-spacing:-11.984859px;}
.wsed{word-spacing:-11.831861px;}
.wsea{word-spacing:-11.780861px;}
.wsec{word-spacing:-11.730000px;}
.wsf3{word-spacing:-11.627863px;}
.wse8{word-spacing:-11.525864px;}
.wsef{word-spacing:-11.372866px;}
.wsf2{word-spacing:-11.321867px;}
.wsf1{word-spacing:-10.913872px;}
.ws1{word-spacing:-10.668000px;}
.ws4{word-spacing:-10.500000px;}
.wsce{word-spacing:-10.290000px;}
.wsd3{word-spacing:-10.080000px;}
.wsdc{word-spacing:-9.912000px;}
.wscf{word-spacing:-9.870000px;}
.wse7{word-spacing:-9.450000px;}
.wse0{word-spacing:-9.408000px;}
.wse6{word-spacing:-9.366000px;}
.wse2{word-spacing:-9.324000px;}
.wsda{word-spacing:-9.240000px;}
.wsd9{word-spacing:-9.198000px;}
.wse1{word-spacing:-9.156000px;}
.wseb{word-spacing:-9.128893px;}
.wsdf{word-spacing:-9.114000px;}
.wse5{word-spacing:-9.072000px;}
.wsf0{word-spacing:-9.026894px;}
.wse3{word-spacing:-8.946000px;}
.wsde{word-spacing:-8.862000px;}
.wsdd{word-spacing:-8.820000px;}
.wsdb{word-spacing:-7.434000px;}
.ws5e{word-spacing:-7.433250px;}
.wse4{word-spacing:-7.392000px;}
.ws37{word-spacing:-4.182000px;}
.wsa5{word-spacing:-3.774000px;}
.ws7f{word-spacing:-3.417000px;}
.ws93{word-spacing:-3.162000px;}
.wsb3{word-spacing:-2.856000px;}
.ws48{word-spacing:-2.550000px;}
.ws4e{word-spacing:-2.499000px;}
.ws84{word-spacing:-2.448000px;}
.ws8c{word-spacing:-2.397000px;}
.wsf{word-spacing:-2.346000px;}
.wscc{word-spacing:-2.295000px;}
.ws67{word-spacing:-2.193000px;}
.ws2b{word-spacing:-2.142000px;}
.ws30{word-spacing:-2.091000px;}
.wsa0{word-spacing:-2.040000px;}
.ws7c{word-spacing:-1.989000px;}
.ws54{word-spacing:-1.938000px;}
.ws91{word-spacing:-1.887000px;}
.ws79{word-spacing:-1.836000px;}
.wsb0{word-spacing:-1.785000px;}
.ws73{word-spacing:-1.734000px;}
.ws27{word-spacing:-1.683000px;}
.ws1f{word-spacing:-1.632000px;}
.ws25{word-spacing:-1.581000px;}
.ws28{word-spacing:-1.530000px;}
.ws20{word-spacing:-1.479000px;}
.ws3e{word-spacing:-1.428000px;}
.wsa8{word-spacing:-1.377000px;}
.ws33{word-spacing:-1.326000px;}
.ws40{word-spacing:-1.275000px;}
.ws7b{word-spacing:-1.224000px;}
.ws62{word-spacing:-1.173000px;}
.ws2a{word-spacing:-1.122000px;}
.ws1c{word-spacing:-1.071000px;}
.wsf6{word-spacing:-1.019988px;}
.ws8b{word-spacing:-0.969000px;}
.ws5f{word-spacing:-0.918000px;}
.ws12{word-spacing:-0.867000px;}
.ws45{word-spacing:-0.816000px;}
.ws46{word-spacing:-0.765000px;}
.ws69{word-spacing:-0.714000px;}
.ws96{word-spacing:-0.663000px;}
.wsc{word-spacing:-0.612000px;}
.ws24{word-spacing:-0.561000px;}
.ws51{word-spacing:-0.510000px;}
.ws50{word-spacing:-0.459000px;}
.wsb{word-spacing:-0.408000px;}
.ws57{word-spacing:-0.357000px;}
.ws71{word-spacing:-0.306000px;}
.wsc3{word-spacing:-0.255000px;}
.ws3b{word-spacing:-0.204000px;}
.wsd2{word-spacing:-0.168000px;}
.ws39{word-spacing:-0.153000px;}
.wsd8{word-spacing:-0.126000px;}
.ws9f{word-spacing:-0.102000px;}
.ws58{word-spacing:-0.051000px;}
.wsd1{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.051000px;}
.ws98{word-spacing:0.102000px;}
.ws36{word-spacing:0.153000px;}
.ws13{word-spacing:0.204000px;}
.wsd6{word-spacing:0.244860px;}
.ws4d{word-spacing:0.255000px;}
.ws17{word-spacing:0.306000px;}
.ws7a{word-spacing:0.357000px;}
.ws2d{word-spacing:0.408000px;}
.wsd5{word-spacing:0.420000px;}
.ws23{word-spacing:0.459000px;}
.ws6d{word-spacing:0.510000px;}
.ws35{word-spacing:0.561000px;}
.wsf5{word-spacing:0.588000px;}
.ws64{word-spacing:0.612000px;}
.ws5c{word-spacing:0.663000px;}
.ws6a{word-spacing:0.714000px;}
.ws18{word-spacing:0.765000px;}
.ws41{word-spacing:0.816000px;}
.ws32{word-spacing:0.867000px;}
.wsd7{word-spacing:0.882000px;}
.ws26{word-spacing:0.918000px;}
.ws3a{word-spacing:0.969000px;}
.ws8a{word-spacing:1.020000px;}
.wsc4{word-spacing:1.071000px;}
.wsac{word-spacing:1.122000px;}
.ws92{word-spacing:1.173000px;}
.wsc8{word-spacing:1.224000px;}
.ws72{word-spacing:1.275000px;}
.ws42{word-spacing:1.326000px;}
.ws1b{word-spacing:1.377000px;}
.ws19{word-spacing:1.428000px;}
.wsf7{word-spacing:1.470000px;}
.ws81{word-spacing:1.479000px;}
.wsb2{word-spacing:1.530000px;}
.ws83{word-spacing:1.581000px;}
.ws43{word-spacing:1.632000px;}
.ws6b{word-spacing:1.683000px;}
.ws4b{word-spacing:1.734000px;}
.ws8e{word-spacing:1.785000px;}
.ws21{word-spacing:1.836000px;}
.wsb8{word-spacing:1.887000px;}
.ws16{word-spacing:1.938000px;}
.wsbd{word-spacing:1.989000px;}
.wsae{word-spacing:2.040000px;}
.ws66{word-spacing:2.091000px;}
.ws4f{word-spacing:2.142000px;}
.wsb5{word-spacing:2.193000px;}
.ws1d{word-spacing:2.244000px;}
.ws55{word-spacing:2.295000px;}
.wsaf{word-spacing:2.346000px;}
.ws2f{word-spacing:2.448000px;}
.ws9c{word-spacing:2.499000px;}
.wsd0{word-spacing:2.550000px;}
.ws97{word-spacing:2.601000px;}
.ws85{word-spacing:2.652000px;}
.ws1e{word-spacing:2.703000px;}
.wsbb{word-spacing:2.754000px;}
.ws1a{word-spacing:2.805000px;}
.ws4c{word-spacing:2.856000px;}
.ws3f{word-spacing:2.907000px;}
.ws5d{word-spacing:2.958000px;}
.ws15{word-spacing:3.009000px;}
.ws9b{word-spacing:3.060000px;}
.ws63{word-spacing:3.111000px;}
.ws52{word-spacing:3.162000px;}
.ws34{word-spacing:3.213000px;}
.wsad{word-spacing:3.264000px;}
.ws29{word-spacing:3.315000px;}
.ws61{word-spacing:3.366000px;}
.ws77{word-spacing:3.417000px;}
.ws4a{word-spacing:3.468000px;}
.ws7{word-spacing:3.519000px;}
.ws6{word-spacing:3.570000px;}
.ws3c{word-spacing:3.621000px;}
.ws47{word-spacing:3.672000px;}
.ws6c{word-spacing:3.723000px;}
.wse{word-spacing:3.774000px;}
.wsa{word-spacing:3.825000px;}
.ws3d{word-spacing:3.876000px;}
.ws68{word-spacing:3.927000px;}
.wsbe{word-spacing:3.978000px;}
.ws44{word-spacing:4.080000px;}
.ws9e{word-spacing:4.131000px;}
.ws60{word-spacing:4.182000px;}
.wsc1{word-spacing:4.233000px;}
.ws6e{word-spacing:4.335000px;}
.ws5b{word-spacing:4.386000px;}
.wsc7{word-spacing:4.437000px;}
.ws86{word-spacing:4.488000px;}
.ws49{word-spacing:4.539000px;}
.wsc0{word-spacing:4.590000px;}
.ws7e{word-spacing:4.692000px;}
.ws90{word-spacing:4.743000px;}
.ws80{word-spacing:4.794000px;}
.wsa3{word-spacing:4.845000px;}
.ws10{word-spacing:4.896000px;}
.ws76{word-spacing:4.998000px;}
.ws87{word-spacing:5.049000px;}
.wsa1{word-spacing:5.100000px;}
.ws95{word-spacing:5.151000px;}
.wsb9{word-spacing:5.202000px;}
.ws82{word-spacing:5.253000px;}
.wsa7{word-spacing:5.304000px;}
.ws9{word-spacing:5.355000px;}
.wsc2{word-spacing:5.508000px;}
.ws99{word-spacing:5.559000px;}
.wsba{word-spacing:5.661000px;}
.ws7d{word-spacing:5.712000px;}
.ws8d{word-spacing:5.763000px;}
.wsab{word-spacing:5.814000px;}
.ws65{word-spacing:5.916000px;}
.ws5a{word-spacing:5.967000px;}
.ws38{word-spacing:6.018000px;}
.ws9d{word-spacing:6.069000px;}
.ws2c{word-spacing:6.120000px;}
.wsa4{word-spacing:6.171000px;}
.wsc9{word-spacing:6.273000px;}
.ws56{word-spacing:6.477000px;}
.ws2e{word-spacing:6.528000px;}
.ws14{word-spacing:6.732000px;}
.ws53{word-spacing:6.885000px;}
.ws78{word-spacing:6.936000px;}
.wsb6{word-spacing:7.038000px;}
.wsbf{word-spacing:7.191000px;}
.ws94{word-spacing:7.395000px;}
.ws59{word-spacing:7.548000px;}
.wsc6{word-spacing:7.599000px;}
.wsb1{word-spacing:7.752000px;}
.ws6f{word-spacing:7.803000px;}
.wsa9{word-spacing:8.007000px;}
.ws31{word-spacing:8.262000px;}
.wsca{word-spacing:8.364000px;}
.wsbc{word-spacing:8.466000px;}
.wsa6{word-spacing:8.568000px;}
.wsb7{word-spacing:8.772000px;}
.ws8{word-spacing:9.027000px;}
.ws89{word-spacing:9.282000px;}
.ws11{word-spacing:9.384000px;}
.ws88{word-spacing:9.486000px;}
.wsc5{word-spacing:9.588000px;}
.ws8f{word-spacing:9.741000px;}
.wsaa{word-spacing:11.016000px;}
.wscd{word-spacing:11.628000px;}
.wsb4{word-spacing:12.138000px;}
.ws70{word-spacing:12.189000px;}
.wsd{word-spacing:12.750000px;}
.ws74{word-spacing:14.688000px;}
.wsa2{word-spacing:15.045000px;}
.wscb{word-spacing:16.269000px;}
._7{margin-left:-14.535000px;}
._8{margin-left:-11.169000px;}
._2{margin-left:-5.167200px;}
._4{margin-left:-4.032000px;}
._1{margin-left:-2.100000px;}
._0{margin-left:-1.050000px;}
._3{width:1.794000px;}
._5{width:3.825000px;}
._9{width:5.559000px;}
._6{width:7.395000px;}
._a{width:78.182080px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(180,28,46);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.486000px;}
.fsa{font-size:29.733000px;}
.fs6{font-size:31.482000px;}
.fs8{font-size:39.000000px;}
.fsc{font-size:41.160000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:50.999400px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:42.026550px;}
.y5{bottom:66.525004px;}
.yc2{bottom:76.594200px;}
.y166{bottom:76.615200px;}
.y18a{bottom:76.642200px;}
.y138{bottom:76.654200px;}
.yee{bottom:76.696200px;}
.y118{bottom:76.705200px;}
.y1b0{bottom:76.729200px;}
.y1cc{bottom:76.747200px;}
.y5e{bottom:78.035700px;}
.y1f5{bottom:84.073800px;}
.y90{bottom:86.543250px;}
.y5d{bottom:90.788700px;}
.yc1{bottom:94.597200px;}
.y165{bottom:94.618200px;}
.y189{bottom:94.645200px;}
.y137{bottom:94.657200px;}
.yed{bottom:94.699200px;}
.y117{bottom:94.708200px;}
.y1af{bottom:94.732200px;}
.y1cb{bottom:94.750200px;}
.y4{bottom:97.125005px;}
.y1f4{bottom:97.576800px;}
.y21e{bottom:103.582800px;}
.y8f{bottom:104.546250px;}
.y1f3{bottom:111.079800px;}
.yc0{bottom:112.600200px;}
.y164{bottom:112.621200px;}
.y188{bottom:112.648200px;}
.y136{bottom:112.660200px;}
.yec{bottom:112.702200px;}
.y175{bottom:112.705200px;}
.y116{bottom:112.711200px;}
.y1ae{bottom:112.735200px;}
.ycb{bottom:112.741200px;}
.y1ca{bottom:112.753200px;}
.y21d{bottom:117.085800px;}
.y8e{bottom:122.549250px;}
.y2b6{bottom:123.181148px;}
.y1f2{bottom:124.582800px;}
.y21c{bottom:130.588800px;}
.ybf{bottom:130.603200px;}
.y163{bottom:130.624200px;}
.y187{bottom:130.651200px;}
.y135{bottom:130.663200px;}
.yeb{bottom:130.705200px;}
.y174{bottom:130.708200px;}
.y115{bottom:130.714200px;}
.y1ad{bottom:130.738200px;}
.yca{bottom:130.744200px;}
.y59{bottom:135.870150px;}
.y1f1{bottom:138.085800px;}
.y21{bottom:139.264499px;}
.y8d{bottom:140.552250px;}
.y2b5{bottom:143.937904px;}
.y21b{bottom:144.091800px;}
.ybe{bottom:148.606200px;}
.y162{bottom:148.627200px;}
.y1c9{bottom:148.633200px;}
.y186{bottom:148.654200px;}
.y173{bottom:148.711200px;}
.y114{bottom:148.717200px;}
.y1ac{bottom:148.741200px;}
.yc9{bottom:148.747200px;}
.y1f0{bottom:151.588800px;}
.y58{bottom:151.614150px;}
.y21a{bottom:157.594800px;}
.y8c{bottom:158.555250px;}
.y2b4{bottom:164.694659px;}
.y1ef{bottom:165.091800px;}
.ybd{bottom:166.609200px;}
.y161{bottom:166.630200px;}
.y1c8{bottom:166.636200px;}
.y185{bottom:166.657200px;}
.y134{bottom:166.669200px;}
.yea{bottom:166.711200px;}
.y172{bottom:166.714200px;}
.y113{bottom:166.720200px;}
.y1ab{bottom:166.744200px;}
.yc8{bottom:166.750200px;}
.y57{bottom:167.358150px;}
.y261{bottom:168.407700px;}
.y2a1{bottom:168.431700px;}
.y219{bottom:171.097800px;}
.y1ee{bottom:178.594800px;}
.y260{bottom:181.910700px;}
.y2a0{bottom:181.934700px;}
.y56{bottom:183.102150px;}
.y218{bottom:184.600800px;}
.ybc{bottom:184.612200px;}
.y160{bottom:184.633200px;}
.y1c7{bottom:184.639200px;}
.y184{bottom:184.660200px;}
.y133{bottom:184.672200px;}
.ye9{bottom:184.714200px;}
.y171{bottom:184.717200px;}
.y112{bottom:184.723200px;}
.yc7{bottom:184.753200px;}
.y2b3{bottom:185.451415px;}
.y1ed{bottom:192.097800px;}
.y8b{bottom:194.561250px;}
.y25f{bottom:195.413700px;}
.y29f{bottom:195.437700px;}
.y18{bottom:196.933500px;}
.y217{bottom:198.103800px;}
.y55{bottom:198.846150px;}
.ybb{bottom:202.615200px;}
.y15f{bottom:202.636200px;}
.y1c6{bottom:202.642200px;}
.y132{bottom:202.675200px;}
.ye8{bottom:202.717200px;}
.y170{bottom:202.720200px;}
.y111{bottom:202.726200px;}
.y1aa{bottom:202.750200px;}
.yc6{bottom:202.753200px;}
.y1ec{bottom:205.600800px;}
.y2b2{bottom:206.208171px;}
.y25e{bottom:208.916700px;}
.y29e{bottom:208.940700px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y216{bottom:211.606800px;}
.y8a{bottom:212.564250px;}
.y54{bottom:214.590150px;}
.y1eb{bottom:219.103800px;}
.yba{bottom:220.618200px;}
.y15e{bottom:220.639200px;}
.y1c5{bottom:220.645200px;}
.y1a9{bottom:220.657200px;}
.y183{bottom:220.666200px;}
.y131{bottom:220.678200px;}
.ye7{bottom:220.720200px;}
.y16f{bottom:220.723200px;}
.y110{bottom:220.729200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y25d{bottom:222.419700px;}
.y29d{bottom:222.431700px;}
.y215{bottom:225.109800px;}
.y2b1{bottom:226.964927px;}
.y53{bottom:230.334150px;}
.y89{bottom:230.567250px;}
.y1ea{bottom:232.606800px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y25c{bottom:235.922700px;}
.y29c{bottom:235.934700px;}
.y214{bottom:238.612800px;}
.yc5{bottom:238.621200px;}
.y15d{bottom:238.642200px;}
.y1c4{bottom:238.648200px;}
.y1a8{bottom:238.660200px;}
.y182{bottom:238.669200px;}
.y130{bottom:238.681200px;}
.ye6{bottom:238.723200px;}
.y16e{bottom:238.726200px;}
.y10f{bottom:238.732200px;}
.y52{bottom:246.078150px;}
.y1e9{bottom:246.109800px;}
.y2b0{bottom:247.721683px;}
.y88{bottom:248.570250px;}
.y25b{bottom:249.425700px;}
.y29b{bottom:249.437700px;}
.y213{bottom:252.115800px;}
.yb9{bottom:256.624200px;}
.y1c3{bottom:256.651200px;}
.y1a7{bottom:256.663200px;}
.y181{bottom:256.672200px;}
.y12f{bottom:256.684200px;}
.ye5{bottom:256.726200px;}
.y16d{bottom:256.729200px;}
.y10e{bottom:256.735200px;}
.y1e8{bottom:259.612800px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y60{bottom:260.626200px;}
.y51{bottom:261.822150px;}
.y25a{bottom:262.928700px;}
.y29a{bottom:262.940700px;}
.y212{bottom:265.618800px;}
.y87{bottom:266.573250px;}
.y2af{bottom:268.478438px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1e7{bottom:273.115800px;}
.yb8{bottom:274.627200px;}
.y15c{bottom:274.648200px;}
.y1c2{bottom:274.654200px;}
.y1a6{bottom:274.666200px;}
.y180{bottom:274.675200px;}
.y12e{bottom:274.687200px;}
.ye4{bottom:274.729200px;}
.y16c{bottom:274.732200px;}
.y10d{bottom:274.738200px;}
.y299{bottom:276.395700px;}
.y259{bottom:276.431700px;}
.y50{bottom:277.566150px;}
.y211{bottom:279.121800px;}
.y86{bottom:284.576250px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1e6{bottom:286.618800px;}
.y2ae{bottom:289.235194px;}
.y298{bottom:289.898700px;}
.y258{bottom:289.934700px;}
.y210{bottom:292.624800px;}
.yb7{bottom:292.630200px;}
.y15b{bottom:292.651200px;}
.y1c1{bottom:292.657200px;}
.y1a5{bottom:292.669200px;}
.y17f{bottom:292.678200px;}
.ye3{bottom:292.732200px;}
.y16b{bottom:292.735200px;}
.y10c{bottom:292.741200px;}
.y4f{bottom:293.310150px;}
.y85{bottom:302.579250px;}
.y297{bottom:303.401700px;}
.y257{bottom:303.437700px;}
.y20f{bottom:306.127800px;}
.y4e{bottom:309.054150px;}
.y2ad{bottom:309.991950px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yb6{bottom:310.633200px;}
.y15a{bottom:310.654200px;}
.y1c0{bottom:310.660200px;}
.y1a4{bottom:310.672200px;}
.y17e{bottom:310.681200px;}
.y12d{bottom:310.693200px;}
.ye2{bottom:310.735200px;}
.y16a{bottom:310.738200px;}
.y10b{bottom:310.744200px;}
.y1e5{bottom:313.614300px;}
.y296{bottom:316.904700px;}
.y256{bottom:316.940700px;}
.y20e{bottom:319.630800px;}
.y84{bottom:320.582250px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y4d{bottom:324.798150px;}
.y1e4{bottom:327.117300px;}
.yb5{bottom:328.636200px;}
.y159{bottom:328.657200px;}
.y1bf{bottom:328.663200px;}
.y1a3{bottom:328.675200px;}
.y17d{bottom:328.684200px;}
.y12c{bottom:328.696200px;}
.ye1{bottom:328.738200px;}
.y169{bottom:328.741200px;}
.y10a{bottom:328.747200px;}
.y295{bottom:330.407700px;}
.y255{bottom:330.437700px;}
.y2ac{bottom:330.744450px;}
.y20d{bottom:333.133800px;}
.y83{bottom:338.585250px;}
.y4c{bottom:340.542150px;}
.y1e3{bottom:340.620300px;}
.y294{bottom:343.910700px;}
.y252{bottom:343.919700px;}
.y254{bottom:343.940700px;}
.y20c{bottom:346.636800px;}
.yb4{bottom:346.639200px;}
.y158{bottom:346.660200px;}
.y1be{bottom:346.666200px;}
.y1a2{bottom:346.678200px;}
.y12b{bottom:346.699200px;}
.ye0{bottom:346.741200px;}
.y109{bottom:346.750200px;}
.y253{bottom:347.437200px;}
.yf{bottom:348.133500px;}
.y1e2{bottom:354.123300px;}
.y4b{bottom:356.286150px;}
.y82{bottom:356.588250px;}
.y293{bottom:357.413700px;}
.y251{bottom:357.422700px;}
.y20b{bottom:360.139800px;}
.yb3{bottom:364.642200px;}
.y157{bottom:364.663200px;}
.y1bd{bottom:364.669200px;}
.y17c{bottom:364.690200px;}
.y12a{bottom:364.702200px;}
.y108{bottom:364.720200px;}
.ydf{bottom:364.744200px;}
.y168{bottom:364.747200px;}
.y2ab{bottom:369.373050px;}
.y292{bottom:370.916700px;}
.y250{bottom:370.925700px;}
.y4a{bottom:372.030150px;}
.y20a{bottom:373.642800px;}
.y81{bottom:374.591250px;}
.y1e1{bottom:381.126300px;}
.yb2{bottom:382.645200px;}
.y156{bottom:382.666200px;}
.y1bc{bottom:382.672200px;}
.y1a1{bottom:382.684200px;}
.y17b{bottom:382.693200px;}
.y129{bottom:382.705200px;}
.y107{bottom:382.723200px;}
.yde{bottom:382.747200px;}
.y167{bottom:382.750200px;}
.y291{bottom:384.419700px;}
.y24f{bottom:384.428700px;}
.y2aa{bottom:385.868550px;}
.ye{bottom:386.785499px;}
.y209{bottom:387.145800px;}
.y49{bottom:387.774150px;}
.y80{bottom:392.594250px;}
.y1e0{bottom:393.873300px;}
.y1df{bottom:397.369800px;}
.y290{bottom:397.922700px;}
.y24e{bottom:397.931700px;}
.y2a9{bottom:399.371550px;}
.yb1{bottom:400.648200px;}
.y208{bottom:400.648800px;}
.y155{bottom:400.669200px;}
.y1bb{bottom:400.675200px;}
.y1a0{bottom:400.687200px;}
.y17a{bottom:400.696200px;}
.y128{bottom:400.708200px;}
.y106{bottom:400.726200px;}
.ydd{bottom:400.750200px;}
.y48{bottom:403.518150px;}
.yd{bottom:408.044999px;}
.y1de{bottom:408.749250px;}
.y7f{bottom:410.597250px;}
.y28f{bottom:411.425700px;}
.y24d{bottom:411.434700px;}
.y2a8{bottom:412.874550px;}
.y207{bottom:414.151800px;}
.yb0{bottom:418.651200px;}
.y154{bottom:418.672200px;}
.y1ba{bottom:418.678200px;}
.y19f{bottom:418.690200px;}
.ydc{bottom:418.699200px;}
.y127{bottom:418.711200px;}
.y105{bottom:418.729200px;}
.y47{bottom:419.262150px;}
.y1dc{bottom:423.622800px;}
.y28e{bottom:424.928700px;}
.y24c{bottom:424.937700px;}
.y2a7{bottom:426.377550px;}
.y1dd{bottom:427.121700px;}
.y206{bottom:427.654800px;}
.y7e{bottom:428.600250px;}
.y46{bottom:435.006150px;}
.yaf{bottom:436.654200px;}
.y153{bottom:436.675200px;}
.y1b9{bottom:436.681200px;}
.y19e{bottom:436.693200px;}
.ydb{bottom:436.702200px;}
.y126{bottom:436.714200px;}
.y104{bottom:436.732200px;}
.y28d{bottom:438.431700px;}
.y24b{bottom:438.440700px;}
.y1db{bottom:438.501300px;}
.y205{bottom:441.157800px;}
.y2a6{bottom:444.133050px;}
.y7d{bottom:446.603250px;}
.y45{bottom:450.750150px;}
.y24a{bottom:451.889700px;}
.y28c{bottom:451.934700px;}
.y1d9{bottom:453.377250px;}
.yae{bottom:454.657200px;}
.y204{bottom:454.660800px;}
.y152{bottom:454.678200px;}
.y19d{bottom:454.696200px;}
.y179{bottom:454.705200px;}
.y125{bottom:454.717200px;}
.y103{bottom:454.735200px;}
.y1da{bottom:456.873750px;}
.y2a5{bottom:457.636050px;}
.y249{bottom:465.392700px;}
.y28b{bottom:465.437700px;}
.y44{bottom:466.494150px;}
.y203{bottom:468.163800px;}
.y1d8{bottom:468.235200px;}
.y2a4{bottom:471.139050px;}
.yad{bottom:472.660200px;}
.y151{bottom:472.681200px;}
.y1b8{bottom:472.687200px;}
.y19c{bottom:472.699200px;}
.yda{bottom:472.708200px;}
.y124{bottom:472.720200px;}
.y248{bottom:478.895700px;}
.y28a{bottom:478.940700px;}
.y202{bottom:481.666800px;}
.y7c{bottom:482.609250px;}
.y2a3{bottom:484.642050px;}
.y43{bottom:485.844150px;}
.yac{bottom:490.663200px;}
.y150{bottom:490.684200px;}
.y1b7{bottom:490.690200px;}
.y19b{bottom:490.702200px;}
.yd9{bottom:490.711200px;}
.y102{bottom:490.741200px;}
.y247{bottom:492.398700px;}
.y289{bottom:492.431700px;}
.y201{bottom:495.169800px;}
.y1d7{bottom:495.230700px;}
.y7b{bottom:500.612250px;}
.y2a2{bottom:502.397550px;}
.yc{bottom:502.864502px;}
.y246{bottom:505.901700px;}
.y288{bottom:505.934700px;}
.yab{bottom:508.666200px;}
.y200{bottom:508.672800px;}
.y14f{bottom:508.687200px;}
.y1b6{bottom:508.693200px;}
.y19a{bottom:508.705200px;}
.yd8{bottom:508.714200px;}
.y123{bottom:508.726200px;}
.y1d6{bottom:508.733700px;}
.y101{bottom:508.744200px;}
.y7a{bottom:518.615250px;}
.y245{bottom:519.404700px;}
.y287{bottom:519.437700px;}
.yb{bottom:520.864502px;}
.y1ff{bottom:522.175800px;}
.y1d5{bottom:522.236700px;}
.yaa{bottom:526.669200px;}
.y14e{bottom:526.690200px;}
.y1b5{bottom:526.696200px;}
.yd7{bottom:526.717200px;}
.y122{bottom:526.729200px;}
.y100{bottom:526.747200px;}
.y244{bottom:532.907700px;}
.y286{bottom:532.940700px;}
.y1fe{bottom:535.678800px;}
.y1d4{bottom:535.739700px;}
.y79{bottom:536.618250px;}
.ya{bottom:538.864499px;}
.yc4{bottom:544.672200px;}
.y1b4{bottom:544.699200px;}
.y199{bottom:544.711200px;}
.yd6{bottom:544.720200px;}
.y121{bottom:544.732200px;}
.yff{bottom:544.750200px;}
.y243{bottom:546.410700px;}
.y285{bottom:546.419700px;}
.y1fd{bottom:549.181800px;}
.y1d3{bottom:549.242700px;}
.y78{bottom:554.621250px;}
.y9{bottom:556.864499px;}
.y242{bottom:559.913700px;}
.y284{bottom:559.922700px;}
.ya9{bottom:562.675200px;}
.y1fc{bottom:562.684800px;}
.y14d{bottom:562.696200px;}
.yfe{bottom:562.702200px;}
.y198{bottom:562.714200px;}
.yd5{bottom:562.723200px;}
.y120{bottom:562.735200px;}
.y77{bottom:572.624250px;}
.y241{bottom:573.416700px;}
.y283{bottom:573.425700px;}
.y1fb{bottom:576.187800px;}
.y1d2{bottom:576.238200px;}
.ya8{bottom:580.678200px;}
.y14c{bottom:580.699200px;}
.yfd{bottom:580.705200px;}
.y197{bottom:580.717200px;}
.y178{bottom:580.726200px;}
.y11f{bottom:580.738200px;}
.y38{bottom:584.303250px;}
.y240{bottom:586.919700px;}
.y282{bottom:586.928700px;}
.y1fa{bottom:589.690800px;}
.y1d1{bottom:589.741200px;}
.y76{bottom:590.627250px;}
.ya7{bottom:598.681200px;}
.y14b{bottom:598.702200px;}
.yfc{bottom:598.708200px;}
.y196{bottom:598.720200px;}
.yd4{bottom:598.729200px;}
.y11e{bottom:598.741200px;}
.y23f{bottom:600.422700px;}
.y281{bottom:600.431700px;}
.y1f9{bottom:603.193800px;}
.y1d0{bottom:603.244200px;}
.y37{bottom:605.303250px;}
.y75{bottom:608.630250px;}
.y23e{bottom:613.925700px;}
.y280{bottom:613.934700px;}
.ya6{bottom:616.684200px;}
.y1f8{bottom:616.696800px;}
.y14a{bottom:616.705200px;}
.yfb{bottom:616.711200px;}
.y195{bottom:616.723200px;}
.yd3{bottom:616.732200px;}
.y11d{bottom:616.744200px;}
.y1cf{bottom:616.747200px;}
.y36{bottom:626.303250px;}
.y74{bottom:626.633250px;}
.y23d{bottom:627.428700px;}
.y27f{bottom:627.437700px;}
.y1f7{bottom:630.199800px;}
.y1ce{bottom:630.250200px;}
.ya5{bottom:634.687200px;}
.y149{bottom:634.708200px;}
.yfa{bottom:634.714200px;}
.y194{bottom:634.726200px;}
.yd2{bottom:634.735200px;}
.y11c{bottom:634.747200px;}
.y23c{bottom:640.931700px;}
.y27e{bottom:640.940700px;}
.y1f6{bottom:643.702800px;}
.y1cd{bottom:643.753200px;}
.y73{bottom:644.636250px;}
.y8{bottom:645.510000px;}
.y35{bottom:647.303250px;}
.ya4{bottom:652.690200px;}
.y148{bottom:652.711200px;}
.yf9{bottom:652.717200px;}
.y193{bottom:652.729200px;}
.yd1{bottom:652.738200px;}
.y11b{bottom:652.750200px;}
.y27d{bottom:654.407700px;}
.y23b{bottom:654.434700px;}
.y7{bottom:666.771000px;}
.y27c{bottom:667.910700px;}
.y23a{bottom:667.937700px;}
.y34{bottom:668.303250px;}
.ya3{bottom:670.693200px;}
.y147{bottom:670.714200px;}
.yf8{bottom:670.720200px;}
.y192{bottom:670.732200px;}
.yd0{bottom:670.741200px;}
.y11a{bottom:670.753200px;}
.y72{bottom:680.642250px;}
.y27b{bottom:681.413700px;}
.y239{bottom:681.440700px;}
.ya2{bottom:688.696200px;}
.y146{bottom:688.717200px;}
.yf7{bottom:688.723200px;}
.y191{bottom:688.735200px;}
.ycf{bottom:688.744200px;}
.y119{bottom:688.753200px;}
.y33{bottom:689.303250px;}
.y238{bottom:694.877700px;}
.y27a{bottom:694.916700px;}
.y71{bottom:698.645250px;}
.y42{bottom:702.957300px;}
.yc3{bottom:706.699200px;}
.y145{bottom:706.720200px;}
.yf6{bottom:706.726200px;}
.y190{bottom:706.738200px;}
.yce{bottom:706.747200px;}
.y237{bottom:708.380700px;}
.y279{bottom:708.419700px;}
.y32{bottom:710.303250px;}
.y41{bottom:715.704300px;}
.y70{bottom:716.648250px;}
.y236{bottom:721.883700px;}
.y278{bottom:721.922700px;}
.ya1{bottom:724.702200px;}
.y144{bottom:724.723200px;}
.yf5{bottom:724.729200px;}
.y18f{bottom:724.741200px;}
.ycd{bottom:724.750200px;}
.y6{bottom:726.298500px;}
.y31{bottom:731.303250px;}
.y6f{bottom:734.651250px;}
.y235{bottom:735.386700px;}
.y277{bottom:735.425700px;}
.y40{bottom:741.208800px;}
.ya0{bottom:742.705200px;}
.y143{bottom:742.726200px;}
.yf4{bottom:742.732200px;}
.y18e{bottom:742.744200px;}
.y177{bottom:742.753200px;}
.y234{bottom:748.889700px;}
.y276{bottom:748.928700px;}
.y30{bottom:752.303250px;}
.y3{bottom:752.599495px;}
.y6e{bottom:752.654250px;}
.y3f{bottom:753.955800px;}
.y9f{bottom:760.708200px;}
.y142{bottom:760.729200px;}
.yf3{bottom:760.735200px;}
.y18d{bottom:760.747200px;}
.y176{bottom:760.753200px;}
.y233{bottom:762.392700px;}
.y275{bottom:762.431700px;}
.y3e{bottom:766.702800px;}
.y6d{bottom:770.657250px;}
.y2f{bottom:773.303250px;}
.y232{bottom:775.895700px;}
.y274{bottom:775.934700px;}
.y9e{bottom:778.711200px;}
.y141{bottom:778.732200px;}
.yf2{bottom:778.738200px;}
.y18c{bottom:778.750200px;}
.y6c{bottom:788.660250px;}
.y231{bottom:789.398700px;}
.y273{bottom:789.437700px;}
.y3d{bottom:792.207300px;}
.y2e{bottom:794.303250px;}
.y9d{bottom:796.714200px;}
.y140{bottom:796.735200px;}
.yf1{bottom:796.741200px;}
.y18b{bottom:796.753200px;}
.y230{bottom:802.901700px;}
.y272{bottom:802.940700px;}
.y6b{bottom:806.663250px;}
.y3c{bottom:807.085800px;}
.y9c{bottom:814.717200px;}
.y13f{bottom:814.738200px;}
.yf0{bottom:814.744200px;}
.y2d{bottom:815.303250px;}
.y22f{bottom:816.404700px;}
.y271{bottom:816.425700px;}
.y3b{bottom:819.832800px;}
.y6a{bottom:824.666250px;}
.y22e{bottom:829.907700px;}
.y270{bottom:829.928700px;}
.y3a{bottom:832.579800px;}
.y9b{bottom:832.720200px;}
.y13e{bottom:832.741200px;}
.y1b3{bottom:832.747200px;}
.y2c{bottom:836.303250px;}
.y69{bottom:842.669250px;}
.y22d{bottom:843.410700px;}
.y26f{bottom:843.431700px;}
.y39{bottom:845.326800px;}
.y9a{bottom:850.723200px;}
.y13d{bottom:850.744200px;}
.yef{bottom:850.750200px;}
.y22c{bottom:856.913700px;}
.y26e{bottom:856.934700px;}
.y2b{bottom:857.303250px;}
.y68{bottom:860.672250px;}
.y99{bottom:868.726200px;}
.y13c{bottom:868.747200px;}
.y1b2{bottom:868.753200px;}
.y22b{bottom:870.416700px;}
.y26d{bottom:870.437700px;}
.y5c{bottom:870.619200px;}
.y2a{bottom:878.303250px;}
.y67{bottom:878.675250px;}
.y2{bottom:879.369000px;}
.y2c1{bottom:883.907700px;}
.y22a{bottom:883.919700px;}
.y26c{bottom:883.940700px;}
.y5b{bottom:885.497700px;}
.y98{bottom:886.729200px;}
.y13b{bottom:886.750200px;}
.y1b1{bottom:886.753200px;}
.y66{bottom:896.678250px;}
.y2c0{bottom:897.410700px;}
.y26b{bottom:897.413700px;}
.y229{bottom:897.422700px;}
.y5a{bottom:900.376200px;}
.y97{bottom:904.732200px;}
.y13a{bottom:904.753200px;}
.y2cb{bottom:910.882200px;}
.y2bf{bottom:910.913700px;}
.y26a{bottom:910.916700px;}
.y228{bottom:910.925700px;}
.y28{bottom:912.059100px;}
.y65{bottom:914.683950px;}
.y29{bottom:916.554600px;}
.ycc{bottom:922.735200px;}
.y2ca{bottom:924.385200px;}
.y2be{bottom:924.416700px;}
.y269{bottom:924.419700px;}
.y227{bottom:924.428700px;}
.y2c9{bottom:937.888200px;}
.y2bd{bottom:937.919700px;}
.y268{bottom:937.922700px;}
.y226{bottom:937.931700px;}
.y96{bottom:940.738200px;}
.y139{bottom:940.750200px;}
.y27{bottom:941.326950px;}
.y64{bottom:950.688450px;}
.y2c8{bottom:951.391200px;}
.y2bc{bottom:951.422700px;}
.y267{bottom:951.425700px;}
.y225{bottom:951.434700px;}
.y95{bottom:958.741200px;}
.y2c7{bottom:964.894200px;}
.y2bb{bottom:964.925700px;}
.y266{bottom:964.928700px;}
.y224{bottom:964.937700px;}
.y1{bottom:966.726000px;}
.y26{bottom:971.314950px;}
.y94{bottom:976.744200px;}
.y2c6{bottom:978.397200px;}
.y2ba{bottom:978.428700px;}
.y265{bottom:978.431700px;}
.y223{bottom:978.440700px;}
.y63{bottom:981.441450px;}
.y2c5{bottom:991.900200px;}
.y2b9{bottom:991.931700px;}
.y222{bottom:991.934700px;}
.y93{bottom:994.747200px;}
.y2c4{bottom:1005.403200px;}
.y2b8{bottom:1005.434700px;}
.y221{bottom:1005.437700px;}
.y25{bottom:1005.808950px;}
.y62{bottom:1012.194450px;}
.y92{bottom:1012.750200px;}
.y2c3{bottom:1018.906200px;}
.y263{bottom:1018.907700px;}
.y2b7{bottom:1018.937700px;}
.y220{bottom:1018.940700px;}
.y264{bottom:1022.437200px;}
.y24{bottom:1026.814950px;}
.y61{bottom:1030.189950px;}
.y91{bottom:1030.753200px;}
.y2c2{bottom:1032.409200px;}
.y262{bottom:1032.410700px;}
.y21f{bottom:1032.440700px;}
.y23{bottom:1113.057450px;}
.y22{bottom:1128.061950px;}
.h1e{height:19.148052px;}
.h26{height:21.278334px;}
.h24{height:21.988428px;}
.hf{height:28.270836px;}
.h13{height:30.498000px;}
.h7{height:32.130000px;}
.ha{height:32.844000px;}
.h2d{height:33.627720px;}
.hb{height:34.314000px;}
.h22{height:36.498000px;}
.h12{height:37.536000px;}
.h1f{height:37.716000px;}
.h25{height:37.728000px;}
.h20{height:37.740000px;}
.h2b{height:37.752000px;}
.h28{height:37.776000px;}
.h2a{height:37.800000px;}
.h27{height:37.824000px;}
.h29{height:37.848000px;}
.h2c{height:37.896000px;}
.h23{height:37.920000px;}
.h21{height:37.968000px;}
.h31{height:39.371537px;}
.h2f{height:41.666510px;}
.h2e{height:41.667000px;}
.h11{height:43.104000px;}
.h14{height:44.118000px;}
.h30{height:45.797461px;}
.h15{height:45.798000px;}
.h1b{height:45.846000px;}
.h6{height:45.900000px;}
.h18{height:45.906000px;}
.h1a{height:45.930000px;}
.h16{height:45.990000px;}
.h19{height:46.002000px;}
.h17{height:46.014000px;}
.h1d{height:46.182000px;}
.h1c{height:46.218000px;}
.h3{height:48.195000px;}
.he{height:48.492000px;}
.h10{height:53.880000px;}
.h2{height:55.080000px;}
.hc{height:58.824000px;}
.h5{height:78.030000px;}
.hd{height:91.596000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:914.173500px;}
.w4{width:914.250000px;}
.x0{left:0.000000px;}
.x5{left:74.409450px;}
.x20{left:82.388250px;}
.xf{left:87.450000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x7{left:270.000000px;}
.x13{left:273.337950px;}
.x14{left:275.831700px;}
.x1e{left:277.674000px;}
.x15{left:281.245500px;}
.xb{left:282.744000px;}
.x19{left:291.256725px;}
.x6{left:310.842000px;}
.x12{left:323.086050px;}
.x1a{left:334.301250px;}
.x11{left:338.916300px;}
.x8{left:362.646450px;}
.x9{left:366.908250px;}
.x1f{left:370.753500px;}
.xd{left:400.350000px;}
.x3{left:454.959000px;}
.xa{left:470.493900px;}
.xc{left:559.795200px;}
.x16{left:563.874000px;}
.x17{left:575.119500px;}
.x18{left:581.125500px;}
.x1b{left:585.143250px;}
.x1c{left:658.945800px;}
.x1d{left:664.255200px;}
.x10{left:773.330850px;}
.xe{left:779.525700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.266667pt;}
.ls23{letter-spacing:-3.399960pt;}
.ls28{letter-spacing:-3.309294pt;}
.ls1c{letter-spacing:-2.762667pt;}
.ls10{letter-spacing:-2.725333pt;}
.ls29{letter-spacing:-1.631981pt;}
.ls13{letter-spacing:-1.493333pt;}
.ls15{letter-spacing:-1.456000pt;}
.ls1b{letter-spacing:-1.381333pt;}
.lse{letter-spacing:-1.306667pt;}
.lsf{letter-spacing:-1.269333pt;}
.ls17{letter-spacing:-1.232000pt;}
.ls27{letter-spacing:-1.223986pt;}
.ls19{letter-spacing:-1.194667pt;}
.ls1d{letter-spacing:-1.120000pt;}
.ls24{letter-spacing:-1.088000pt;}
.ls2b{letter-spacing:-1.087987pt;}
.ls1a{letter-spacing:-1.045333pt;}
.ls7{letter-spacing:-1.042667pt;}
.ls21{letter-spacing:-1.042654pt;}
.ls1e{letter-spacing:-1.008000pt;}
.ls25{letter-spacing:-0.997322pt;}
.ls18{letter-spacing:-0.970667pt;}
.ls1f{letter-spacing:-0.933333pt;}
.ls2d{letter-spacing:-0.815990pt;}
.lsb{letter-spacing:-0.784000pt;}
.ls4{letter-spacing:-0.770667pt;}
.ls26{letter-spacing:-0.679992pt;}
.ls12{letter-spacing:-0.634667pt;}
.ls16{letter-spacing:-0.597333pt;}
.ls14{letter-spacing:-0.560000pt;}
.lsd{letter-spacing:-0.522667pt;}
.lsc{letter-spacing:-0.512213pt;}
.ls22{letter-spacing:-0.498661pt;}
.ls11{letter-spacing:-0.485333pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:-0.312000pt;}
.ls6{letter-spacing:-0.226667pt;}
.lsa{letter-spacing:-0.217653pt;}
.ls5{letter-spacing:-0.136000pt;}
.ls8{letter-spacing:-0.090667pt;}
.ls2a{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.149333pt;}
.ls2c{letter-spacing:0.906656pt;}
.wsd4{word-spacing:-37.333333pt;}
.ws2{word-spacing:-16.256000pt;}
.ws3{word-spacing:-13.546667pt;}
.ws5{word-spacing:-12.192000pt;}
.ws75{word-spacing:-11.333333pt;}
.wsf4{word-spacing:-11.151869pt;}
.ws9a{word-spacing:-11.106667pt;}
.wse9{word-spacing:-11.015870pt;}
.wsee{word-spacing:-10.653208pt;}
.wsed{word-spacing:-10.517210pt;}
.wsea{word-spacing:-10.471877pt;}
.wsec{word-spacing:-10.426667pt;}
.wsf3{word-spacing:-10.335878pt;}
.wse8{word-spacing:-10.245213pt;}
.wsef{word-spacing:-10.109214pt;}
.wsf2{word-spacing:-10.063882pt;}
.wsf1{word-spacing:-9.701219pt;}
.ws1{word-spacing:-9.482667pt;}
.ws4{word-spacing:-9.333333pt;}
.wsce{word-spacing:-9.146667pt;}
.wsd3{word-spacing:-8.960000pt;}
.wsdc{word-spacing:-8.810667pt;}
.wscf{word-spacing:-8.773333pt;}
.wse7{word-spacing:-8.400000pt;}
.wse0{word-spacing:-8.362667pt;}
.wse6{word-spacing:-8.325333pt;}
.wse2{word-spacing:-8.288000pt;}
.wsda{word-spacing:-8.213333pt;}
.wsd9{word-spacing:-8.176000pt;}
.wse1{word-spacing:-8.138667pt;}
.wseb{word-spacing:-8.114571pt;}
.wsdf{word-spacing:-8.101333pt;}
.wse5{word-spacing:-8.064000pt;}
.wsf0{word-spacing:-8.023906pt;}
.wse3{word-spacing:-7.952000pt;}
.wsde{word-spacing:-7.877333pt;}
.wsdd{word-spacing:-7.840000pt;}
.wsdb{word-spacing:-6.608000pt;}
.ws5e{word-spacing:-6.607333pt;}
.wse4{word-spacing:-6.570667pt;}
.ws37{word-spacing:-3.717333pt;}
.wsa5{word-spacing:-3.354667pt;}
.ws7f{word-spacing:-3.037333pt;}
.ws93{word-spacing:-2.810667pt;}
.wsb3{word-spacing:-2.538667pt;}
.ws48{word-spacing:-2.266667pt;}
.ws4e{word-spacing:-2.221333pt;}
.ws84{word-spacing:-2.176000pt;}
.ws8c{word-spacing:-2.130667pt;}
.wsf{word-spacing:-2.085333pt;}
.wscc{word-spacing:-2.040000pt;}
.ws67{word-spacing:-1.949333pt;}
.ws2b{word-spacing:-1.904000pt;}
.ws30{word-spacing:-1.858667pt;}
.wsa0{word-spacing:-1.813333pt;}
.ws7c{word-spacing:-1.768000pt;}
.ws54{word-spacing:-1.722667pt;}
.ws91{word-spacing:-1.677333pt;}
.ws79{word-spacing:-1.632000pt;}
.wsb0{word-spacing:-1.586667pt;}
.ws73{word-spacing:-1.541333pt;}
.ws27{word-spacing:-1.496000pt;}
.ws1f{word-spacing:-1.450667pt;}
.ws25{word-spacing:-1.405333pt;}
.ws28{word-spacing:-1.360000pt;}
.ws20{word-spacing:-1.314667pt;}
.ws3e{word-spacing:-1.269333pt;}
.wsa8{word-spacing:-1.224000pt;}
.ws33{word-spacing:-1.178667pt;}
.ws40{word-spacing:-1.133333pt;}
.ws7b{word-spacing:-1.088000pt;}
.ws62{word-spacing:-1.042667pt;}
.ws2a{word-spacing:-0.997333pt;}
.ws1c{word-spacing:-0.952000pt;}
.wsf6{word-spacing:-0.906656pt;}
.ws8b{word-spacing:-0.861333pt;}
.ws5f{word-spacing:-0.816000pt;}
.ws12{word-spacing:-0.770667pt;}
.ws45{word-spacing:-0.725333pt;}
.ws46{word-spacing:-0.680000pt;}
.ws69{word-spacing:-0.634667pt;}
.ws96{word-spacing:-0.589333pt;}
.wsc{word-spacing:-0.544000pt;}
.ws24{word-spacing:-0.498667pt;}
.ws51{word-spacing:-0.453333pt;}
.ws50{word-spacing:-0.408000pt;}
.wsb{word-spacing:-0.362667pt;}
.ws57{word-spacing:-0.317333pt;}
.ws71{word-spacing:-0.272000pt;}
.wsc3{word-spacing:-0.226667pt;}
.ws3b{word-spacing:-0.181333pt;}
.wsd2{word-spacing:-0.149333pt;}
.ws39{word-spacing:-0.136000pt;}
.wsd8{word-spacing:-0.112000pt;}
.ws9f{word-spacing:-0.090667pt;}
.ws58{word-spacing:-0.045333pt;}
.wsd1{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.045333pt;}
.ws98{word-spacing:0.090667pt;}
.ws36{word-spacing:0.136000pt;}
.ws13{word-spacing:0.181333pt;}
.wsd6{word-spacing:0.217653pt;}
.ws4d{word-spacing:0.226667pt;}
.ws17{word-spacing:0.272000pt;}
.ws7a{word-spacing:0.317333pt;}
.ws2d{word-spacing:0.362667pt;}
.wsd5{word-spacing:0.373333pt;}
.ws23{word-spacing:0.408000pt;}
.ws6d{word-spacing:0.453333pt;}
.ws35{word-spacing:0.498667pt;}
.wsf5{word-spacing:0.522667pt;}
.ws64{word-spacing:0.544000pt;}
.ws5c{word-spacing:0.589333pt;}
.ws6a{word-spacing:0.634667pt;}
.ws18{word-spacing:0.680000pt;}
.ws41{word-spacing:0.725333pt;}
.ws32{word-spacing:0.770667pt;}
.wsd7{word-spacing:0.784000pt;}
.ws26{word-spacing:0.816000pt;}
.ws3a{word-spacing:0.861333pt;}
.ws8a{word-spacing:0.906667pt;}
.wsc4{word-spacing:0.952000pt;}
.wsac{word-spacing:0.997333pt;}
.ws92{word-spacing:1.042667pt;}
.wsc8{word-spacing:1.088000pt;}
.ws72{word-spacing:1.133333pt;}
.ws42{word-spacing:1.178667pt;}
.ws1b{word-spacing:1.224000pt;}
.ws19{word-spacing:1.269333pt;}
.wsf7{word-spacing:1.306667pt;}
.ws81{word-spacing:1.314667pt;}
.wsb2{word-spacing:1.360000pt;}
.ws83{word-spacing:1.405333pt;}
.ws43{word-spacing:1.450667pt;}
.ws6b{word-spacing:1.496000pt;}
.ws4b{word-spacing:1.541333pt;}
.ws8e{word-spacing:1.586667pt;}
.ws21{word-spacing:1.632000pt;}
.wsb8{word-spacing:1.677333pt;}
.ws16{word-spacing:1.722667pt;}
.wsbd{word-spacing:1.768000pt;}
.wsae{word-spacing:1.813333pt;}
.ws66{word-spacing:1.858667pt;}
.ws4f{word-spacing:1.904000pt;}
.wsb5{word-spacing:1.949333pt;}
.ws1d{word-spacing:1.994667pt;}
.ws55{word-spacing:2.040000pt;}
.wsaf{word-spacing:2.085333pt;}
.ws2f{word-spacing:2.176000pt;}
.ws9c{word-spacing:2.221333pt;}
.wsd0{word-spacing:2.266667pt;}
.ws97{word-spacing:2.312000pt;}
.ws85{word-spacing:2.357333pt;}
.ws1e{word-spacing:2.402667pt;}
.wsbb{word-spacing:2.448000pt;}
.ws1a{word-spacing:2.493333pt;}
.ws4c{word-spacing:2.538667pt;}
.ws3f{word-spacing:2.584000pt;}
.ws5d{word-spacing:2.629333pt;}
.ws15{word-spacing:2.674667pt;}
.ws9b{word-spacing:2.720000pt;}
.ws63{word-spacing:2.765333pt;}
.ws52{word-spacing:2.810667pt;}
.ws34{word-spacing:2.856000pt;}
.wsad{word-spacing:2.901333pt;}
.ws29{word-spacing:2.946667pt;}
.ws61{word-spacing:2.992000pt;}
.ws77{word-spacing:3.037333pt;}
.ws4a{word-spacing:3.082667pt;}
.ws7{word-spacing:3.128000pt;}
.ws6{word-spacing:3.173333pt;}
.ws3c{word-spacing:3.218667pt;}
.ws47{word-spacing:3.264000pt;}
.ws6c{word-spacing:3.309333pt;}
.wse{word-spacing:3.354667pt;}
.wsa{word-spacing:3.400000pt;}
.ws3d{word-spacing:3.445333pt;}
.ws68{word-spacing:3.490667pt;}
.wsbe{word-spacing:3.536000pt;}
.ws44{word-spacing:3.626667pt;}
.ws9e{word-spacing:3.672000pt;}
.ws60{word-spacing:3.717333pt;}
.wsc1{word-spacing:3.762667pt;}
.ws6e{word-spacing:3.853333pt;}
.ws5b{word-spacing:3.898667pt;}
.wsc7{word-spacing:3.944000pt;}
.ws86{word-spacing:3.989333pt;}
.ws49{word-spacing:4.034667pt;}
.wsc0{word-spacing:4.080000pt;}
.ws7e{word-spacing:4.170667pt;}
.ws90{word-spacing:4.216000pt;}
.ws80{word-spacing:4.261333pt;}
.wsa3{word-spacing:4.306667pt;}
.ws10{word-spacing:4.352000pt;}
.ws76{word-spacing:4.442667pt;}
.ws87{word-spacing:4.488000pt;}
.wsa1{word-spacing:4.533333pt;}
.ws95{word-spacing:4.578667pt;}
.wsb9{word-spacing:4.624000pt;}
.ws82{word-spacing:4.669333pt;}
.wsa7{word-spacing:4.714667pt;}
.ws9{word-spacing:4.760000pt;}
.wsc2{word-spacing:4.896000pt;}
.ws99{word-spacing:4.941333pt;}
.wsba{word-spacing:5.032000pt;}
.ws7d{word-spacing:5.077333pt;}
.ws8d{word-spacing:5.122667pt;}
.wsab{word-spacing:5.168000pt;}
.ws65{word-spacing:5.258667pt;}
.ws5a{word-spacing:5.304000pt;}
.ws38{word-spacing:5.349333pt;}
.ws9d{word-spacing:5.394667pt;}
.ws2c{word-spacing:5.440000pt;}
.wsa4{word-spacing:5.485333pt;}
.wsc9{word-spacing:5.576000pt;}
.ws56{word-spacing:5.757333pt;}
.ws2e{word-spacing:5.802667pt;}
.ws14{word-spacing:5.984000pt;}
.ws53{word-spacing:6.120000pt;}
.ws78{word-spacing:6.165333pt;}
.wsb6{word-spacing:6.256000pt;}
.wsbf{word-spacing:6.392000pt;}
.ws94{word-spacing:6.573333pt;}
.ws59{word-spacing:6.709333pt;}
.wsc6{word-spacing:6.754667pt;}
.wsb1{word-spacing:6.890667pt;}
.ws6f{word-spacing:6.936000pt;}
.wsa9{word-spacing:7.117333pt;}
.ws31{word-spacing:7.344000pt;}
.wsca{word-spacing:7.434667pt;}
.wsbc{word-spacing:7.525333pt;}
.wsa6{word-spacing:7.616000pt;}
.wsb7{word-spacing:7.797333pt;}
.ws8{word-spacing:8.024000pt;}
.ws89{word-spacing:8.250667pt;}
.ws11{word-spacing:8.341333pt;}
.ws88{word-spacing:8.432000pt;}
.wsc5{word-spacing:8.522667pt;}
.ws8f{word-spacing:8.658667pt;}
.wsaa{word-spacing:9.792000pt;}
.wscd{word-spacing:10.336000pt;}
.wsb4{word-spacing:10.789333pt;}
.ws70{word-spacing:10.834667pt;}
.wsd{word-spacing:11.333333pt;}
.ws74{word-spacing:13.056000pt;}
.wsa2{word-spacing:13.373333pt;}
.wscb{word-spacing:14.461333pt;}
._7{margin-left:-12.920000pt;}
._8{margin-left:-9.928000pt;}
._2{margin-left:-4.593067pt;}
._4{margin-left:-3.584000pt;}
._1{margin-left:-1.866667pt;}
._0{margin-left:-0.933333pt;}
._3{width:1.594667pt;}
._5{width:3.400000pt;}
._9{width:4.941333pt;}
._6{width:6.573333pt;}
._a{width:69.495182pt;}
.fsb{font-size:21.765333pt;}
.fsa{font-size:26.429333pt;}
.fs6{font-size:27.984000pt;}
.fs8{font-size:34.666667pt;}
.fsc{font-size:36.586667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:45.332800pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:37.356933pt;}
.y5{bottom:59.133337pt;}
.yc2{bottom:68.083733pt;}
.y166{bottom:68.102400pt;}
.y18a{bottom:68.126400pt;}
.y138{bottom:68.137067pt;}
.yee{bottom:68.174400pt;}
.y118{bottom:68.182400pt;}
.y1b0{bottom:68.203733pt;}
.y1cc{bottom:68.219733pt;}
.y5e{bottom:69.365067pt;}
.y1f5{bottom:74.732267pt;}
.y90{bottom:76.927333pt;}
.y5d{bottom:80.701067pt;}
.yc1{bottom:84.086400pt;}
.y165{bottom:84.105067pt;}
.y189{bottom:84.129067pt;}
.y137{bottom:84.139733pt;}
.yed{bottom:84.177067pt;}
.y117{bottom:84.185067pt;}
.y1af{bottom:84.206400pt;}
.y1cb{bottom:84.222400pt;}
.y4{bottom:86.333337pt;}
.y1f4{bottom:86.734933pt;}
.y21e{bottom:92.073600pt;}
.y8f{bottom:92.930000pt;}
.y1f3{bottom:98.737600pt;}
.yc0{bottom:100.089067pt;}
.y164{bottom:100.107733pt;}
.y188{bottom:100.131733pt;}
.y136{bottom:100.142400pt;}
.yec{bottom:100.179733pt;}
.y175{bottom:100.182400pt;}
.y116{bottom:100.187733pt;}
.y1ae{bottom:100.209067pt;}
.ycb{bottom:100.214400pt;}
.y1ca{bottom:100.225067pt;}
.y21d{bottom:104.076267pt;}
.y8e{bottom:108.932667pt;}
.y2b6{bottom:109.494354pt;}
.y1f2{bottom:110.740267pt;}
.y21c{bottom:116.078933pt;}
.ybf{bottom:116.091733pt;}
.y163{bottom:116.110400pt;}
.y187{bottom:116.134400pt;}
.y135{bottom:116.145067pt;}
.yeb{bottom:116.182400pt;}
.y174{bottom:116.185067pt;}
.y115{bottom:116.190400pt;}
.y1ad{bottom:116.211733pt;}
.yca{bottom:116.217067pt;}
.y59{bottom:120.773467pt;}
.y1f1{bottom:122.742933pt;}
.y21{bottom:123.790666pt;}
.y8d{bottom:124.935333pt;}
.y2b5{bottom:127.944803pt;}
.y21b{bottom:128.081600pt;}
.ybe{bottom:132.094400pt;}
.y162{bottom:132.113067pt;}
.y1c9{bottom:132.118400pt;}
.y186{bottom:132.137067pt;}
.y173{bottom:132.187733pt;}
.y114{bottom:132.193067pt;}
.y1ac{bottom:132.214400pt;}
.yc9{bottom:132.219733pt;}
.y1f0{bottom:134.745600pt;}
.y58{bottom:134.768133pt;}
.y21a{bottom:140.084267pt;}
.y8c{bottom:140.938000pt;}
.y2b4{bottom:146.395253pt;}
.y1ef{bottom:146.748267pt;}
.ybd{bottom:148.097067pt;}
.y161{bottom:148.115733pt;}
.y1c8{bottom:148.121067pt;}
.y185{bottom:148.139733pt;}
.y134{bottom:148.150400pt;}
.yea{bottom:148.187733pt;}
.y172{bottom:148.190400pt;}
.y113{bottom:148.195733pt;}
.y1ab{bottom:148.217067pt;}
.yc8{bottom:148.222400pt;}
.y57{bottom:148.762800pt;}
.y261{bottom:149.695733pt;}
.y2a1{bottom:149.717067pt;}
.y219{bottom:152.086933pt;}
.y1ee{bottom:158.750933pt;}
.y260{bottom:161.698400pt;}
.y2a0{bottom:161.719733pt;}
.y56{bottom:162.757467pt;}
.y218{bottom:164.089600pt;}
.ybc{bottom:164.099733pt;}
.y160{bottom:164.118400pt;}
.y1c7{bottom:164.123733pt;}
.y184{bottom:164.142400pt;}
.y133{bottom:164.153067pt;}
.ye9{bottom:164.190400pt;}
.y171{bottom:164.193067pt;}
.y112{bottom:164.198400pt;}
.yc7{bottom:164.225067pt;}
.y2b3{bottom:164.845702pt;}
.y1ed{bottom:170.753600pt;}
.y8b{bottom:172.943333pt;}
.y25f{bottom:173.701067pt;}
.y29f{bottom:173.722400pt;}
.y18{bottom:175.052000pt;}
.y217{bottom:176.092267pt;}
.y55{bottom:176.752133pt;}
.ybb{bottom:180.102400pt;}
.y15f{bottom:180.121067pt;}
.y1c6{bottom:180.126400pt;}
.y132{bottom:180.155733pt;}
.ye8{bottom:180.193067pt;}
.y170{bottom:180.195733pt;}
.y111{bottom:180.201067pt;}
.y1aa{bottom:180.222400pt;}
.yc6{bottom:180.225067pt;}
.y1ec{bottom:182.756267pt;}
.y2b2{bottom:183.296152pt;}
.y25e{bottom:185.703733pt;}
.y29e{bottom:185.725067pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y216{bottom:188.094933pt;}
.y8a{bottom:188.946000pt;}
.y54{bottom:190.746800pt;}
.y1eb{bottom:194.758933pt;}
.yba{bottom:196.105067pt;}
.y15e{bottom:196.123733pt;}
.y1c5{bottom:196.129067pt;}
.y1a9{bottom:196.139733pt;}
.y183{bottom:196.147733pt;}
.y131{bottom:196.158400pt;}
.ye7{bottom:196.195733pt;}
.y16f{bottom:196.198400pt;}
.y110{bottom:196.203733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y25d{bottom:197.706400pt;}
.y29d{bottom:197.717067pt;}
.y215{bottom:200.097600pt;}
.y2b1{bottom:201.746602pt;}
.y53{bottom:204.741467pt;}
.y89{bottom:204.948667pt;}
.y1ea{bottom:206.761600pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y25c{bottom:209.709067pt;}
.y29c{bottom:209.719733pt;}
.y214{bottom:212.100267pt;}
.yc5{bottom:212.107733pt;}
.y15d{bottom:212.126400pt;}
.y1c4{bottom:212.131733pt;}
.y1a8{bottom:212.142400pt;}
.y182{bottom:212.150400pt;}
.y130{bottom:212.161067pt;}
.ye6{bottom:212.198400pt;}
.y16e{bottom:212.201067pt;}
.y10f{bottom:212.206400pt;}
.y52{bottom:218.736133pt;}
.y1e9{bottom:218.764267pt;}
.y2b0{bottom:220.197051pt;}
.y88{bottom:220.951333pt;}
.y25b{bottom:221.711733pt;}
.y29b{bottom:221.722400pt;}
.y213{bottom:224.102933pt;}
.yb9{bottom:228.110400pt;}
.y1c3{bottom:228.134400pt;}
.y1a7{bottom:228.145067pt;}
.y181{bottom:228.153067pt;}
.y12f{bottom:228.163733pt;}
.ye5{bottom:228.201067pt;}
.y16d{bottom:228.203733pt;}
.y10e{bottom:228.209067pt;}
.y1e8{bottom:230.766933pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y60{bottom:231.667733pt;}
.y51{bottom:232.730800pt;}
.y25a{bottom:233.714400pt;}
.y29a{bottom:233.725067pt;}
.y212{bottom:236.105600pt;}
.y87{bottom:236.954000pt;}
.y2af{bottom:238.647501pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1e7{bottom:242.769600pt;}
.yb8{bottom:244.113067pt;}
.y15c{bottom:244.131733pt;}
.y1c2{bottom:244.137067pt;}
.y1a6{bottom:244.147733pt;}
.y180{bottom:244.155733pt;}
.y12e{bottom:244.166400pt;}
.ye4{bottom:244.203733pt;}
.y16c{bottom:244.206400pt;}
.y10d{bottom:244.211733pt;}
.y299{bottom:245.685067pt;}
.y259{bottom:245.717067pt;}
.y50{bottom:246.725467pt;}
.y211{bottom:248.108267pt;}
.y86{bottom:252.956667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1e6{bottom:254.772267pt;}
.y2ae{bottom:257.097950pt;}
.y298{bottom:257.687733pt;}
.y258{bottom:257.719733pt;}
.y210{bottom:260.110933pt;}
.yb7{bottom:260.115733pt;}
.y15b{bottom:260.134400pt;}
.y1c1{bottom:260.139733pt;}
.y1a5{bottom:260.150400pt;}
.y17f{bottom:260.158400pt;}
.ye3{bottom:260.206400pt;}
.y16b{bottom:260.209067pt;}
.y10c{bottom:260.214400pt;}
.y4f{bottom:260.720133pt;}
.y85{bottom:268.959333pt;}
.y297{bottom:269.690400pt;}
.y257{bottom:269.722400pt;}
.y20f{bottom:272.113600pt;}
.y4e{bottom:274.714800pt;}
.y2ad{bottom:275.548400pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yb6{bottom:276.118400pt;}
.y15a{bottom:276.137067pt;}
.y1c0{bottom:276.142400pt;}
.y1a4{bottom:276.153067pt;}
.y17e{bottom:276.161067pt;}
.y12d{bottom:276.171733pt;}
.ye2{bottom:276.209067pt;}
.y16a{bottom:276.211733pt;}
.y10b{bottom:276.217067pt;}
.y1e5{bottom:278.768267pt;}
.y296{bottom:281.693067pt;}
.y256{bottom:281.725067pt;}
.y20e{bottom:284.116267pt;}
.y84{bottom:284.962000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y4d{bottom:288.709467pt;}
.y1e4{bottom:290.770933pt;}
.yb5{bottom:292.121067pt;}
.y159{bottom:292.139733pt;}
.y1bf{bottom:292.145067pt;}
.y1a3{bottom:292.155733pt;}
.y17d{bottom:292.163733pt;}
.y12c{bottom:292.174400pt;}
.ye1{bottom:292.211733pt;}
.y169{bottom:292.214400pt;}
.y10a{bottom:292.219733pt;}
.y295{bottom:293.695733pt;}
.y255{bottom:293.722400pt;}
.y2ac{bottom:293.995067pt;}
.y20d{bottom:296.118933pt;}
.y83{bottom:300.964667pt;}
.y4c{bottom:302.704133pt;}
.y1e3{bottom:302.773600pt;}
.y294{bottom:305.698400pt;}
.y252{bottom:305.706400pt;}
.y254{bottom:305.725067pt;}
.y20c{bottom:308.121600pt;}
.yb4{bottom:308.123733pt;}
.y158{bottom:308.142400pt;}
.y1be{bottom:308.147733pt;}
.y1a2{bottom:308.158400pt;}
.y12b{bottom:308.177067pt;}
.ye0{bottom:308.214400pt;}
.y109{bottom:308.222400pt;}
.y253{bottom:308.833067pt;}
.yf{bottom:309.452000pt;}
.y1e2{bottom:314.776267pt;}
.y4b{bottom:316.698800pt;}
.y82{bottom:316.967333pt;}
.y293{bottom:317.701067pt;}
.y251{bottom:317.709067pt;}
.y20b{bottom:320.124267pt;}
.yb3{bottom:324.126400pt;}
.y157{bottom:324.145067pt;}
.y1bd{bottom:324.150400pt;}
.y17c{bottom:324.169067pt;}
.y12a{bottom:324.179733pt;}
.y108{bottom:324.195733pt;}
.ydf{bottom:324.217067pt;}
.y168{bottom:324.219733pt;}
.y2ab{bottom:328.331600pt;}
.y292{bottom:329.703733pt;}
.y250{bottom:329.711733pt;}
.y4a{bottom:330.693467pt;}
.y20a{bottom:332.126933pt;}
.y81{bottom:332.970000pt;}
.y1e1{bottom:338.778933pt;}
.yb2{bottom:340.129067pt;}
.y156{bottom:340.147733pt;}
.y1bc{bottom:340.153067pt;}
.y1a1{bottom:340.163733pt;}
.y17b{bottom:340.171733pt;}
.y129{bottom:340.182400pt;}
.y107{bottom:340.198400pt;}
.yde{bottom:340.219733pt;}
.y167{bottom:340.222400pt;}
.y291{bottom:341.706400pt;}
.y24f{bottom:341.714400pt;}
.y2aa{bottom:342.994267pt;}
.ye{bottom:343.809333pt;}
.y209{bottom:344.129600pt;}
.y49{bottom:344.688133pt;}
.y80{bottom:348.972667pt;}
.y1e0{bottom:350.109600pt;}
.y1df{bottom:353.217600pt;}
.y290{bottom:353.709067pt;}
.y24e{bottom:353.717067pt;}
.y2a9{bottom:354.996933pt;}
.yb1{bottom:356.131733pt;}
.y208{bottom:356.132267pt;}
.y155{bottom:356.150400pt;}
.y1bb{bottom:356.155733pt;}
.y1a0{bottom:356.166400pt;}
.y17a{bottom:356.174400pt;}
.y128{bottom:356.185067pt;}
.y106{bottom:356.201067pt;}
.ydd{bottom:356.222400pt;}
.y48{bottom:358.682800pt;}
.yd{bottom:362.706666pt;}
.y1de{bottom:363.332667pt;}
.y7f{bottom:364.975333pt;}
.y28f{bottom:365.711733pt;}
.y24d{bottom:365.719733pt;}
.y2a8{bottom:366.999600pt;}
.y207{bottom:368.134933pt;}
.yb0{bottom:372.134400pt;}
.y154{bottom:372.153067pt;}
.y1ba{bottom:372.158400pt;}
.y19f{bottom:372.169067pt;}
.ydc{bottom:372.177067pt;}
.y127{bottom:372.187733pt;}
.y105{bottom:372.203733pt;}
.y47{bottom:372.677467pt;}
.y1dc{bottom:376.553600pt;}
.y28e{bottom:377.714400pt;}
.y24c{bottom:377.722400pt;}
.y2a7{bottom:379.002267pt;}
.y1dd{bottom:379.663733pt;}
.y206{bottom:380.137600pt;}
.y7e{bottom:380.978000pt;}
.y46{bottom:386.672133pt;}
.yaf{bottom:388.137067pt;}
.y153{bottom:388.155733pt;}
.y1b9{bottom:388.161067pt;}
.y19e{bottom:388.171733pt;}
.ydb{bottom:388.179733pt;}
.y126{bottom:388.190400pt;}
.y104{bottom:388.206400pt;}
.y28d{bottom:389.717067pt;}
.y24b{bottom:389.725067pt;}
.y1db{bottom:389.778933pt;}
.y205{bottom:392.140267pt;}
.y2a6{bottom:394.784933pt;}
.y7d{bottom:396.980667pt;}
.y45{bottom:400.666800pt;}
.y24a{bottom:401.679733pt;}
.y28c{bottom:401.719733pt;}
.y1d9{bottom:403.002000pt;}
.yae{bottom:404.139733pt;}
.y204{bottom:404.142933pt;}
.y152{bottom:404.158400pt;}
.y19d{bottom:404.174400pt;}
.y179{bottom:404.182400pt;}
.y125{bottom:404.193067pt;}
.y103{bottom:404.209067pt;}
.y1da{bottom:406.110000pt;}
.y2a5{bottom:406.787600pt;}
.y249{bottom:413.682400pt;}
.y28b{bottom:413.722400pt;}
.y44{bottom:414.661467pt;}
.y203{bottom:416.145600pt;}
.y1d8{bottom:416.209067pt;}
.y2a4{bottom:418.790267pt;}
.yad{bottom:420.142400pt;}
.y151{bottom:420.161067pt;}
.y1b8{bottom:420.166400pt;}
.y19c{bottom:420.177067pt;}
.yda{bottom:420.185067pt;}
.y124{bottom:420.195733pt;}
.y248{bottom:425.685067pt;}
.y28a{bottom:425.725067pt;}
.y202{bottom:428.148267pt;}
.y7c{bottom:428.986000pt;}
.y2a3{bottom:430.792933pt;}
.y43{bottom:431.861467pt;}
.yac{bottom:436.145067pt;}
.y150{bottom:436.163733pt;}
.y1b7{bottom:436.169067pt;}
.y19b{bottom:436.179733pt;}
.yd9{bottom:436.187733pt;}
.y102{bottom:436.214400pt;}
.y247{bottom:437.687733pt;}
.y289{bottom:437.717067pt;}
.y201{bottom:440.150933pt;}
.y1d7{bottom:440.205067pt;}
.y7b{bottom:444.988667pt;}
.y2a2{bottom:446.575600pt;}
.yc{bottom:446.990669pt;}
.y246{bottom:449.690400pt;}
.y288{bottom:449.719733pt;}
.yab{bottom:452.147733pt;}
.y200{bottom:452.153600pt;}
.y14f{bottom:452.166400pt;}
.y1b6{bottom:452.171733pt;}
.y19a{bottom:452.182400pt;}
.yd8{bottom:452.190400pt;}
.y123{bottom:452.201067pt;}
.y1d6{bottom:452.207733pt;}
.y101{bottom:452.217067pt;}
.y7a{bottom:460.991333pt;}
.y245{bottom:461.693067pt;}
.y287{bottom:461.722400pt;}
.yb{bottom:462.990669pt;}
.y1ff{bottom:464.156267pt;}
.y1d5{bottom:464.210400pt;}
.yaa{bottom:468.150400pt;}
.y14e{bottom:468.169067pt;}
.y1b5{bottom:468.174400pt;}
.yd7{bottom:468.193067pt;}
.y122{bottom:468.203733pt;}
.y100{bottom:468.219733pt;}
.y244{bottom:473.695733pt;}
.y286{bottom:473.725067pt;}
.y1fe{bottom:476.158933pt;}
.y1d4{bottom:476.213067pt;}
.y79{bottom:476.994000pt;}
.ya{bottom:478.990666pt;}
.yc4{bottom:484.153067pt;}
.y1b4{bottom:484.177067pt;}
.y199{bottom:484.187733pt;}
.yd6{bottom:484.195733pt;}
.y121{bottom:484.206400pt;}
.yff{bottom:484.222400pt;}
.y243{bottom:485.698400pt;}
.y285{bottom:485.706400pt;}
.y1fd{bottom:488.161600pt;}
.y1d3{bottom:488.215733pt;}
.y78{bottom:492.996667pt;}
.y9{bottom:494.990666pt;}
.y242{bottom:497.701067pt;}
.y284{bottom:497.709067pt;}
.ya9{bottom:500.155733pt;}
.y1fc{bottom:500.164267pt;}
.y14d{bottom:500.174400pt;}
.yfe{bottom:500.179733pt;}
.y198{bottom:500.190400pt;}
.yd5{bottom:500.198400pt;}
.y120{bottom:500.209067pt;}
.y77{bottom:508.999333pt;}
.y241{bottom:509.703733pt;}
.y283{bottom:509.711733pt;}
.y1fb{bottom:512.166933pt;}
.y1d2{bottom:512.211733pt;}
.ya8{bottom:516.158400pt;}
.y14c{bottom:516.177067pt;}
.yfd{bottom:516.182400pt;}
.y197{bottom:516.193067pt;}
.y178{bottom:516.201067pt;}
.y11f{bottom:516.211733pt;}
.y38{bottom:519.380667pt;}
.y240{bottom:521.706400pt;}
.y282{bottom:521.714400pt;}
.y1fa{bottom:524.169600pt;}
.y1d1{bottom:524.214400pt;}
.y76{bottom:525.002000pt;}
.ya7{bottom:532.161067pt;}
.y14b{bottom:532.179733pt;}
.yfc{bottom:532.185067pt;}
.y196{bottom:532.195733pt;}
.yd4{bottom:532.203733pt;}
.y11e{bottom:532.214400pt;}
.y23f{bottom:533.709067pt;}
.y281{bottom:533.717067pt;}
.y1f9{bottom:536.172267pt;}
.y1d0{bottom:536.217067pt;}
.y37{bottom:538.047333pt;}
.y75{bottom:541.004667pt;}
.y23e{bottom:545.711733pt;}
.y280{bottom:545.719733pt;}
.ya6{bottom:548.163733pt;}
.y1f8{bottom:548.174933pt;}
.y14a{bottom:548.182400pt;}
.yfb{bottom:548.187733pt;}
.y195{bottom:548.198400pt;}
.yd3{bottom:548.206400pt;}
.y11d{bottom:548.217067pt;}
.y1cf{bottom:548.219733pt;}
.y36{bottom:556.714000pt;}
.y74{bottom:557.007333pt;}
.y23d{bottom:557.714400pt;}
.y27f{bottom:557.722400pt;}
.y1f7{bottom:560.177600pt;}
.y1ce{bottom:560.222400pt;}
.ya5{bottom:564.166400pt;}
.y149{bottom:564.185067pt;}
.yfa{bottom:564.190400pt;}
.y194{bottom:564.201067pt;}
.yd2{bottom:564.209067pt;}
.y11c{bottom:564.219733pt;}
.y23c{bottom:569.717067pt;}
.y27e{bottom:569.725067pt;}
.y1f6{bottom:572.180267pt;}
.y1cd{bottom:572.225067pt;}
.y73{bottom:573.010000pt;}
.y8{bottom:573.786667pt;}
.y35{bottom:575.380667pt;}
.ya4{bottom:580.169067pt;}
.y148{bottom:580.187733pt;}
.yf9{bottom:580.193067pt;}
.y193{bottom:580.203733pt;}
.yd1{bottom:580.211733pt;}
.y11b{bottom:580.222400pt;}
.y27d{bottom:581.695733pt;}
.y23b{bottom:581.719733pt;}
.y7{bottom:592.685334pt;}
.y27c{bottom:593.698400pt;}
.y23a{bottom:593.722400pt;}
.y34{bottom:594.047333pt;}
.ya3{bottom:596.171733pt;}
.y147{bottom:596.190400pt;}
.yf8{bottom:596.195733pt;}
.y192{bottom:596.206400pt;}
.yd0{bottom:596.214400pt;}
.y11a{bottom:596.225067pt;}
.y72{bottom:605.015333pt;}
.y27b{bottom:605.701067pt;}
.y239{bottom:605.725067pt;}
.ya2{bottom:612.174400pt;}
.y146{bottom:612.193067pt;}
.yf7{bottom:612.198400pt;}
.y191{bottom:612.209067pt;}
.ycf{bottom:612.217067pt;}
.y119{bottom:612.225067pt;}
.y33{bottom:612.714000pt;}
.y238{bottom:617.669067pt;}
.y27a{bottom:617.703733pt;}
.y71{bottom:621.018000pt;}
.y42{bottom:624.850933pt;}
.yc3{bottom:628.177067pt;}
.y145{bottom:628.195733pt;}
.yf6{bottom:628.201067pt;}
.y190{bottom:628.211733pt;}
.yce{bottom:628.219733pt;}
.y237{bottom:629.671733pt;}
.y279{bottom:629.706400pt;}
.y32{bottom:631.380667pt;}
.y41{bottom:636.181600pt;}
.y70{bottom:637.020667pt;}
.y236{bottom:641.674400pt;}
.y278{bottom:641.709067pt;}
.ya1{bottom:644.179733pt;}
.y144{bottom:644.198400pt;}
.yf5{bottom:644.203733pt;}
.y18f{bottom:644.214400pt;}
.ycd{bottom:644.222400pt;}
.y6{bottom:645.598667pt;}
.y31{bottom:650.047333pt;}
.y6f{bottom:653.023333pt;}
.y235{bottom:653.677067pt;}
.y277{bottom:653.711733pt;}
.y40{bottom:658.852267pt;}
.ya0{bottom:660.182400pt;}
.y143{bottom:660.201067pt;}
.yf4{bottom:660.206400pt;}
.y18e{bottom:660.217067pt;}
.y177{bottom:660.225067pt;}
.y234{bottom:665.679733pt;}
.y276{bottom:665.714400pt;}
.y30{bottom:668.714000pt;}
.y3{bottom:668.977329pt;}
.y6e{bottom:669.026000pt;}
.y3f{bottom:670.182933pt;}
.y9f{bottom:676.185067pt;}
.y142{bottom:676.203733pt;}
.yf3{bottom:676.209067pt;}
.y18d{bottom:676.219733pt;}
.y176{bottom:676.225067pt;}
.y233{bottom:677.682400pt;}
.y275{bottom:677.717067pt;}
.y3e{bottom:681.513600pt;}
.y6d{bottom:685.028667pt;}
.y2f{bottom:687.380667pt;}
.y232{bottom:689.685067pt;}
.y274{bottom:689.719733pt;}
.y9e{bottom:692.187733pt;}
.y141{bottom:692.206400pt;}
.yf2{bottom:692.211733pt;}
.y18c{bottom:692.222400pt;}
.y6c{bottom:701.031333pt;}
.y231{bottom:701.687733pt;}
.y273{bottom:701.722400pt;}
.y3d{bottom:704.184267pt;}
.y2e{bottom:706.047333pt;}
.y9d{bottom:708.190400pt;}
.y140{bottom:708.209067pt;}
.yf1{bottom:708.214400pt;}
.y18b{bottom:708.225067pt;}
.y230{bottom:713.690400pt;}
.y272{bottom:713.725067pt;}
.y6b{bottom:717.034000pt;}
.y3c{bottom:717.409600pt;}
.y9c{bottom:724.193067pt;}
.y13f{bottom:724.211733pt;}
.yf0{bottom:724.217067pt;}
.y2d{bottom:724.714000pt;}
.y22f{bottom:725.693067pt;}
.y271{bottom:725.711733pt;}
.y3b{bottom:728.740267pt;}
.y6a{bottom:733.036667pt;}
.y22e{bottom:737.695733pt;}
.y270{bottom:737.714400pt;}
.y3a{bottom:740.070933pt;}
.y9b{bottom:740.195733pt;}
.y13e{bottom:740.214400pt;}
.y1b3{bottom:740.219733pt;}
.y2c{bottom:743.380667pt;}
.y69{bottom:749.039333pt;}
.y22d{bottom:749.698400pt;}
.y26f{bottom:749.717067pt;}
.y39{bottom:751.401600pt;}
.y9a{bottom:756.198400pt;}
.y13d{bottom:756.217067pt;}
.yef{bottom:756.222400pt;}
.y22c{bottom:761.701067pt;}
.y26e{bottom:761.719733pt;}
.y2b{bottom:762.047333pt;}
.y68{bottom:765.042000pt;}
.y99{bottom:772.201067pt;}
.y13c{bottom:772.219733pt;}
.y1b2{bottom:772.225067pt;}
.y22b{bottom:773.703733pt;}
.y26d{bottom:773.722400pt;}
.y5c{bottom:773.883733pt;}
.y2a{bottom:780.714000pt;}
.y67{bottom:781.044667pt;}
.y2{bottom:781.661334pt;}
.y2c1{bottom:785.695733pt;}
.y22a{bottom:785.706400pt;}
.y26c{bottom:785.725067pt;}
.y5b{bottom:787.109067pt;}
.y98{bottom:788.203733pt;}
.y13b{bottom:788.222400pt;}
.y1b1{bottom:788.225067pt;}
.y66{bottom:797.047333pt;}
.y2c0{bottom:797.698400pt;}
.y26b{bottom:797.701067pt;}
.y229{bottom:797.709067pt;}
.y5a{bottom:800.334400pt;}
.y97{bottom:804.206400pt;}
.y13a{bottom:804.225067pt;}
.y2cb{bottom:809.673067pt;}
.y2bf{bottom:809.701067pt;}
.y26a{bottom:809.703733pt;}
.y228{bottom:809.711733pt;}
.y28{bottom:810.719200pt;}
.y65{bottom:813.052400pt;}
.y29{bottom:814.715200pt;}
.ycc{bottom:820.209067pt;}
.y2ca{bottom:821.675733pt;}
.y2be{bottom:821.703733pt;}
.y269{bottom:821.706400pt;}
.y227{bottom:821.714400pt;}
.y2c9{bottom:833.678400pt;}
.y2bd{bottom:833.706400pt;}
.y268{bottom:833.709067pt;}
.y226{bottom:833.717067pt;}
.y96{bottom:836.211733pt;}
.y139{bottom:836.222400pt;}
.y27{bottom:836.735067pt;}
.y64{bottom:845.056400pt;}
.y2c8{bottom:845.681067pt;}
.y2bc{bottom:845.709067pt;}
.y267{bottom:845.711733pt;}
.y225{bottom:845.719733pt;}
.y95{bottom:852.214400pt;}
.y2c7{bottom:857.683733pt;}
.y2bb{bottom:857.711733pt;}
.y266{bottom:857.714400pt;}
.y224{bottom:857.722400pt;}
.y1{bottom:859.312000pt;}
.y26{bottom:863.391067pt;}
.y94{bottom:868.217067pt;}
.y2c6{bottom:869.686400pt;}
.y2ba{bottom:869.714400pt;}
.y265{bottom:869.717067pt;}
.y223{bottom:869.725067pt;}
.y63{bottom:872.392400pt;}
.y2c5{bottom:881.689067pt;}
.y2b9{bottom:881.717067pt;}
.y222{bottom:881.719733pt;}
.y93{bottom:884.219733pt;}
.y2c4{bottom:893.691733pt;}
.y2b8{bottom:893.719733pt;}
.y221{bottom:893.722400pt;}
.y25{bottom:894.052400pt;}
.y62{bottom:899.728400pt;}
.y92{bottom:900.222400pt;}
.y2c3{bottom:905.694400pt;}
.y263{bottom:905.695733pt;}
.y2b7{bottom:905.722400pt;}
.y220{bottom:905.725067pt;}
.y264{bottom:908.833067pt;}
.y24{bottom:912.724400pt;}
.y61{bottom:915.724400pt;}
.y91{bottom:916.225067pt;}
.y2c2{bottom:917.697067pt;}
.y262{bottom:917.698400pt;}
.y21f{bottom:917.725067pt;}
.y23{bottom:989.384400pt;}
.y22{bottom:1002.721733pt;}
.h1e{height:17.020491pt;}
.h26{height:18.914075pt;}
.h24{height:19.545269pt;}
.hf{height:25.129632pt;}
.h13{height:27.109333pt;}
.h7{height:28.560000pt;}
.ha{height:29.194667pt;}
.h2d{height:29.891307pt;}
.hb{height:30.501333pt;}
.h22{height:32.442667pt;}
.h12{height:33.365333pt;}
.h1f{height:33.525333pt;}
.h25{height:33.536000pt;}
.h20{height:33.546667pt;}
.h2b{height:33.557333pt;}
.h28{height:33.578667pt;}
.h2a{height:33.600000pt;}
.h27{height:33.621333pt;}
.h29{height:33.642667pt;}
.h2c{height:33.685333pt;}
.h23{height:33.706667pt;}
.h21{height:33.749333pt;}
.h31{height:34.996922pt;}
.h2f{height:37.036898pt;}
.h2e{height:37.037333pt;}
.h11{height:38.314667pt;}
.h14{height:39.216000pt;}
.h30{height:40.708854pt;}
.h15{height:40.709333pt;}
.h1b{height:40.752000pt;}
.h6{height:40.800000pt;}
.h18{height:40.805333pt;}
.h1a{height:40.826667pt;}
.h16{height:40.880000pt;}
.h19{height:40.890667pt;}
.h17{height:40.901333pt;}
.h1d{height:41.050667pt;}
.h1c{height:41.082667pt;}
.h3{height:42.840000pt;}
.he{height:43.104000pt;}
.h10{height:47.893333pt;}
.h2{height:48.960000pt;}
.hc{height:52.288000pt;}
.h5{height:69.360000pt;}
.hd{height:81.418667pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:812.598667pt;}
.w4{width:812.666667pt;}
.x0{left:0.000000pt;}
.x5{left:66.141733pt;}
.x20{left:73.234000pt;}
.xf{left:77.733333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x7{left:240.000000pt;}
.x13{left:242.967067pt;}
.x14{left:245.183733pt;}
.x1e{left:246.821333pt;}
.x15{left:249.996000pt;}
.xb{left:251.328000pt;}
.x19{left:258.894867pt;}
.x6{left:276.304000pt;}
.x12{left:287.187600pt;}
.x1a{left:297.156667pt;}
.x11{left:301.258933pt;}
.x8{left:322.352400pt;}
.x9{left:326.140667pt;}
.x1f{left:329.558667pt;}
.xd{left:355.866667pt;}
.x3{left:404.408000pt;}
.xa{left:418.216800pt;}
.xc{left:497.595733pt;}
.x16{left:501.221333pt;}
.x17{left:511.217333pt;}
.x18{left:516.556000pt;}
.x1b{left:520.127333pt;}
.x1c{left:585.729600pt;}
.x1d{left:590.449067pt;}
.x10{left:687.405200pt;}
.xe{left:692.911733pt;}
}




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