
    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_0b42fe70ecca7d95d3230110.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_e9b4b36afda9c750668048ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_4ceae7d6f465ecd464c2000d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_4bbf307b1660b8950a0e6902.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_c6c072ef0765e896ac9549e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.838867;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_d106b65bf9f227825606e285.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.161133;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_ed6b89d8cdd3b28f839f3bd6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986816;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_da56de18c6b8f19dc9f75a7c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_212c3fa155204938e2576216.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5536432f3ceec086371f34b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_ac48fb7376bc06f099d34023.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.831543;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_8f3157a1262c8eea98a3d43c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.917000;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_c414950fd42bc1e2826fb5af.woff2')format("woff");}.fff{font-family:fff;line-height:0.986816;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_704f25a81e2ba1cff8894c7b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5c37a5d87fc177415957322a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.860000px;}
.v3{vertical-align:-10.080000px;}
.v4{vertical-align:-8.945400px;}
.v7{vertical-align:-6.552000px;}
.v6{vertical-align:-4.704000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.000000px;}
.v5{vertical-align:7.145400px;}
.v8{vertical-align:9.288000px;}
.v1{vertical-align:15.840600px;}
.ls2b{letter-spacing:-3.264000px;}
.ls26{letter-spacing:-1.152000px;}
.ls23{letter-spacing:-1.134000px;}
.ls24{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.384000px;}
.ls3b{letter-spacing:-0.336000px;}
.ls31{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.270000px;}
.ls41{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.162000px;}
.ls3d{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls37{letter-spacing:-0.096000px;}
.ls1b{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002400px;}
.ls2c{letter-spacing:0.005400px;}
.ls2e{letter-spacing:0.006000px;}
.ls27{letter-spacing:0.012600px;}
.ls5{letter-spacing:0.012900px;}
.ls29{letter-spacing:0.013800px;}
.ls38{letter-spacing:0.048000px;}
.lsf{letter-spacing:0.054000px;}
.ls34{letter-spacing:0.096000px;}
.ls13{letter-spacing:0.108000px;}
.ls3e{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.162000px;}
.ls42{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.270000px;}
.ls43{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.324000px;}
.ls3a{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.378000px;}
.ls33{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.432000px;}
.lse{letter-spacing:0.486000px;}
.ls1c{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.549126px;}
.ls1e{letter-spacing:0.594000px;}
.ls40{letter-spacing:0.672000px;}
.ls9{letter-spacing:0.705612px;}
.ls1f{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.810000px;}
.lsc{letter-spacing:1.098246px;}
.lsb{letter-spacing:1.254012px;}
.lsa{letter-spacing:1.384212px;}
.lsd{letter-spacing:1.384812px;}
.ls6{letter-spacing:1.969200px;}
.ls10{letter-spacing:1.980000px;}
.ls8{letter-spacing:2.039616px;}
.ls2{letter-spacing:2.205000px;}
.ls30{letter-spacing:5.610000px;}
.ls39{letter-spacing:5.947200px;}
.ls32{letter-spacing:24.162000px;}
.ls4{letter-spacing:25.995600px;}
.ls28{letter-spacing:200.743200px;}
.ls2d{letter-spacing:226.525800px;}
.ls2f{letter-spacing:226.970400px;}
.ls2a{letter-spacing:308.928000px;}
.ls7{letter-spacing:400.392000px;}
.ls25{letter-spacing:555.792000px;}
.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;}
}
.ws6{word-spacing:-22.027853px;}
.wsbb{word-spacing:-18.216000px;}
.ws7{word-spacing:-16.693430px;}
.wsbc{word-spacing:-13.536000px;}
.wsc8{word-spacing:-13.200000px;}
.ws9a{word-spacing:-13.152000px;}
.wse5{word-spacing:-13.104000px;}
.wsc9{word-spacing:-12.864000px;}
.ws76{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.080000px;}
.ws5{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.864000px;}
.ws4{word-spacing:-8.662500px;}
.wsc{word-spacing:-5.292000px;}
.wsb1{word-spacing:-2.805000px;}
.ws15{word-spacing:-2.039616px;}
.ws14{word-spacing:-1.980000px;}
.ws4c{word-spacing:-0.756000px;}
.wsda{word-spacing:-0.672000px;}
.ws4b{word-spacing:-0.594000px;}
.ws3b{word-spacing:-0.540000px;}
.ws1d{word-spacing:-0.486000px;}
.ws49{word-spacing:-0.432000px;}
.wsc0{word-spacing:-0.384000px;}
.ws27{word-spacing:-0.378000px;}
.wsd1{word-spacing:-0.336000px;}
.ws5a{word-spacing:-0.324000px;}
.wse0{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.270000px;}
.wsc4{word-spacing:-0.240000px;}
.ws3d{word-spacing:-0.216000px;}
.wsdd{word-spacing:-0.192000px;}
.ws39{word-spacing:-0.162000px;}
.wsd9{word-spacing:-0.144000px;}
.ws20{word-spacing:-0.108000px;}
.wsc3{word-spacing:-0.096000px;}
.ws28{word-spacing:-0.054000px;}
.wsc5{word-spacing:-0.048000px;}
.ws3{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.wsbd{word-spacing:0.048000px;}
.ws2f{word-spacing:0.054000px;}
.wsc1{word-spacing:0.096000px;}
.ws41{word-spacing:0.108000px;}
.wsd2{word-spacing:0.144000px;}
.ws24{word-spacing:0.162000px;}
.wsd0{word-spacing:0.192000px;}
.ws19{word-spacing:0.216000px;}
.wsdb{word-spacing:0.240000px;}
.ws40{word-spacing:0.270000px;}
.wsb2{word-spacing:0.324000px;}
.wscc{word-spacing:0.336000px;}
.ws34{word-spacing:0.378000px;}
.wsd8{word-spacing:0.384000px;}
.ws58{word-spacing:0.486000px;}
.ws53{word-spacing:0.540000px;}
.ws7a{word-spacing:0.576000px;}
.ws52{word-spacing:0.594000px;}
.ws56{word-spacing:0.702000px;}
.wse6{word-spacing:0.720000px;}
.ws5f{word-spacing:0.810000px;}
.wse1{word-spacing:0.816000px;}
.ws43{word-spacing:0.864000px;}
.ws4d{word-spacing:0.918000px;}
.wsd5{word-spacing:0.960000px;}
.ws2b{word-spacing:0.972000px;}
.wse7{word-spacing:1.008000px;}
.wse8{word-spacing:1.056000px;}
.ws69{word-spacing:1.080000px;}
.wsc6{word-spacing:1.104000px;}
.ws55{word-spacing:1.134000px;}
.wsdc{word-spacing:1.200000px;}
.ws1a{word-spacing:1.242000px;}
.ws2d{word-spacing:1.350000px;}
.ws13{word-spacing:1.476000px;}
.ws6b{word-spacing:1.512000px;}
.ws18{word-spacing:1.566000px;}
.ws42{word-spacing:1.620000px;}
.wse2{word-spacing:1.632000px;}
.ws51{word-spacing:1.674000px;}
.ws4f{word-spacing:1.728000px;}
.wsb8{word-spacing:1.836000px;}
.ws5c{word-spacing:1.890000px;}
.wsb4{word-spacing:1.944000px;}
.wsce{word-spacing:1.968000px;}
.wsa{word-spacing:1.980000px;}
.ws1b{word-spacing:1.998000px;}
.wscd{word-spacing:2.064000px;}
.wsd{word-spacing:2.106000px;}
.wse3{word-spacing:2.208000px;}
.ws59{word-spacing:2.214000px;}
.wse4{word-spacing:2.256000px;}
.ws30{word-spacing:2.268000px;}
.wsb{word-spacing:2.310000px;}
.wsb3{word-spacing:2.322000px;}
.wse{word-spacing:2.394000px;}
.ws37{word-spacing:2.430000px;}
.ws5b{word-spacing:2.538000px;}
.wscb{word-spacing:2.544000px;}
.wsf{word-spacing:2.640000px;}
.ws29{word-spacing:2.646000px;}
.ws2e{word-spacing:2.700000px;}
.ws12{word-spacing:2.736000px;}
.ws35{word-spacing:2.754000px;}
.ws60{word-spacing:2.805000px;}
.ws21{word-spacing:2.808000px;}
.ws48{word-spacing:2.916000px;}
.ws1e{word-spacing:2.970000px;}
.wsca{word-spacing:2.976000px;}
.ws54{word-spacing:3.024000px;}
.wsde{word-spacing:3.120000px;}
.ws5d{word-spacing:3.132000px;}
.wsd6{word-spacing:3.168000px;}
.wsd7{word-spacing:3.216000px;}
.ws11{word-spacing:3.348000px;}
.ws9{word-spacing:3.492000px;}
.ws2c{word-spacing:3.510000px;}
.wsc7{word-spacing:3.600000px;}
.ws3a{word-spacing:3.630000px;}
.ws10{word-spacing:3.636000px;}
.wscf{word-spacing:3.648000px;}
.ws46{word-spacing:3.672000px;}
.wsd3{word-spacing:3.936000px;}
.ws1c{word-spacing:3.960000px;}
.ws3c{word-spacing:3.996000px;}
.wsb6{word-spacing:4.104000px;}
.ws8{word-spacing:4.248000px;}
.ws4e{word-spacing:4.266000px;}
.ws6a{word-spacing:4.320000px;}
.wse9{word-spacing:4.368000px;}
.ws9d{word-spacing:4.374000px;}
.ws4a{word-spacing:4.428000px;}
.ws47{word-spacing:4.644000px;}
.ws57{word-spacing:4.698000px;}
.wsd4{word-spacing:4.944000px;}
.wsb7{word-spacing:5.076000px;}
.ws32{word-spacing:5.130000px;}
.ws89{word-spacing:5.184000px;}
.ws23{word-spacing:5.238000px;}
.wsc2{word-spacing:5.280000px;}
.ws36{word-spacing:5.292000px;}
.ws5e{word-spacing:5.616000px;}
.wsdf{word-spacing:5.712000px;}
.ws3f{word-spacing:5.724000px;}
.ws9c{word-spacing:5.778000px;}
.ws3e{word-spacing:5.832000px;}
.ws31{word-spacing:5.886000px;}
.ws17{word-spacing:5.940000px;}
.wsba{word-spacing:6.048000px;}
.ws38{word-spacing:6.102000px;}
.ws44{word-spacing:6.372000px;}
.ws1f{word-spacing:6.426000px;}
.wsbe{word-spacing:6.480000px;}
.wsbf{word-spacing:6.528000px;}
.wsb0{word-spacing:6.534000px;}
.ws22{word-spacing:6.696000px;}
.wsb9{word-spacing:6.966000px;}
.ws25{word-spacing:7.020000px;}
.ws26{word-spacing:7.128000px;}
.ws45{word-spacing:7.506000px;}
.wsb5{word-spacing:7.560000px;}
.ws16{word-spacing:7.938000px;}
.ws50{word-spacing:8.586000px;}
.ws81{word-spacing:92.592000px;}
.ws88{word-spacing:117.936000px;}
.ws7e{word-spacing:125.001600px;}
.ws87{word-spacing:130.896000px;}
.ws85{word-spacing:136.080000px;}
.ws83{word-spacing:136.800000px;}
.wsa6{word-spacing:140.832000px;}
.ws80{word-spacing:143.664000px;}
.wsa7{word-spacing:148.560000px;}
.wsa2{word-spacing:150.144000px;}
.ws9e{word-spacing:150.793200px;}
.ws7f{word-spacing:156.576000px;}
.ws86{word-spacing:161.952000px;}
.wsa5{word-spacing:164.208000px;}
.wsa4{word-spacing:167.424000px;}
.wsa0{word-spacing:169.440000px;}
.ws84{word-spacing:178.790400px;}
.wsa8{word-spacing:181.920000px;}
.ws9f{word-spacing:182.368200px;}
.ws75{word-spacing:182.496000px;}
.wsac{word-spacing:187.968000px;}
.wsa1{word-spacing:193.488000px;}
.ws97{word-spacing:199.584000px;}
.ws95{word-spacing:201.648000px;}
.wsab{word-spacing:201.734400px;}
.ws78{word-spacing:202.272000px;}
.wsaa{word-spacing:211.152000px;}
.ws99{word-spacing:213.709200px;}
.wsaf{word-spacing:213.840000px;}
.wsad{word-spacing:214.896000px;}
.ws7b{word-spacing:215.616000px;}
.wsae{word-spacing:221.952000px;}
.ws79{word-spacing:227.232000px;}
.ws94{word-spacing:241.286400px;}
.ws96{word-spacing:249.792000px;}
.wsa9{word-spacing:254.016000px;}
.ws98{word-spacing:272.736600px;}
.ws9b{word-spacing:272.737200px;}
.ws92{word-spacing:276.470400px;}
.ws93{word-spacing:300.528000px;}
.ws33{word-spacing:306.981600px;}
.ws8c{word-spacing:332.496000px;}
.ws62{word-spacing:398.688000px;}
.ws8a{word-spacing:413.001600px;}
.ws8e{word-spacing:424.176000px;}
.ws91{word-spacing:424.224000px;}
.ws8d{word-spacing:437.942400px;}
.ws8f{word-spacing:446.496000px;}
.ws77{word-spacing:453.216000px;}
.ws90{word-spacing:462.048000px;}
.ws8b{word-spacing:474.523200px;}
.ws7c{word-spacing:474.816000px;}
.ws6d{word-spacing:490.896000px;}
.ws7d{word-spacing:505.920000px;}
.ws66{word-spacing:516.768000px;}
.ws67{word-spacing:529.728000px;}
.ws63{word-spacing:542.640000px;}
.ws61{word-spacing:614.112000px;}
.ws82{word-spacing:616.612800px;}
.ws71{word-spacing:700.929600px;}
.wsa3{word-spacing:723.796800px;}
.ws73{word-spacing:968.352000px;}
.ws6c{word-spacing:1015.728000px;}
.ws72{word-spacing:1031.760000px;}
.ws68{word-spacing:1082.928000px;}
.ws70{word-spacing:1110.336000px;}
.ws64{word-spacing:1118.928000px;}
.ws6e{word-spacing:1123.248000px;}
.ws74{word-spacing:1129.296000px;}
.ws65{word-spacing:1142.784000px;}
.ws6f{word-spacing:1149.120000px;}
._44{margin-left:-45.012000px;}
._9{margin-left:-26.628000px;}
._45{margin-left:-12.656400px;}
._d{margin-left:-6.096600px;}
._0{margin-left:-4.237800px;}
._3{margin-left:-2.472300px;}
._2{margin-left:-1.170000px;}
._6{width:1.040400px;}
._5{width:2.616000px;}
._8{width:3.680400px;}
._7{width:5.533200px;}
._1{width:7.250400px;}
._a{width:8.323200px;}
._e{width:9.406800px;}
._46{width:10.442400px;}
._f{width:12.420000px;}
._b{width:17.632800px;}
._4{width:59.997000px;}
._25{width:87.384300px;}
._39{width:117.264000px;}
._34{width:118.297200px;}
._36{width:130.176000px;}
._28{width:133.584000px;}
._32{width:145.968000px;}
._26{width:156.048000px;}
._3a{width:159.744000px;}
._38{width:162.192000px;}
._33{width:168.235200px;}
._31{width:176.016000px;}
._30{width:178.228200px;}
._3f{width:179.856000px;}
._27{width:197.232000px;}
._3e{width:198.859200px;}
._3d{width:208.852200px;}
._2c{width:215.424000px;}
._35{width:224.160000px;}
._29{width:228.786000px;}
._43{width:239.136000px;}
._2a{width:240.384000px;}
._37{width:242.352000px;}
._42{width:250.464000px;}
._3b{width:271.849200px;}
._3c{width:278.496000px;}
._41{width:296.406600px;}
._40{width:301.872000px;}
._22{width:435.810000px;}
._2d{width:440.514000px;}
._1f{width:455.568000px;}
._18{width:462.888000px;}
._2b{width:466.386000px;}
._2e{width:487.968000px;}
._1b{width:499.453800px;}
._2f{width:519.072000px;}
._14{width:529.920000px;}
._15{width:560.136000px;}
._13{width:623.328000px;}
._16{width:703.488000px;}
._1a{width:713.629800px;}
._24{width:890.112000px;}
._12{width:892.920300px;}
._10{width:902.232300px;}
._11{width:911.160300px;}
._21{width:945.984000px;}
._c{width:947.941200px;}
._1e{width:971.808000px;}
._19{width:978.805800px;}
._23{width:1031.376000px;}
._20{width:1097.616000px;}
._1d{width:1136.400000px;}
._17{width:1143.504000px;}
._1c{width:1162.272000px;}
.fc5{color:rgb(105,62,21);}
.fc4{color:rgb(150,109,66);}
.fc7{color:rgb(135,92,48);}
.fc3{color:rgb(91,50,12);}
.fc2{color:rgb(120,76,33);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.500000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fse{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fsb{font-size:54.912600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fs9{font-size:67.987200px;}
.fsa{font-size:70.602000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:49.760250px;}
.y24{bottom:61.757250px;}
.y5{bottom:66.525004px;}
.y23{bottom:73.754250px;}
.yb6{bottom:75.447150px;}
.y88{bottom:80.808000px;}
.y1d9{bottom:85.073100px;}
.y137{bottom:87.031500px;}
.y2dc{bottom:87.140850px;}
.y2a8{bottom:87.740850px;}
.y224{bottom:87.980700px;}
.y10f{bottom:88.765350px;}
.y1c8{bottom:89.124150px;}
.y274{bottom:91.191000px;}
.ye3{bottom:91.192950px;}
.yb5{bottom:93.442650px;}
.y158{bottom:94.136850px;}
.y4{bottom:97.125005px;}
.y180{bottom:98.158500px;}
.y87{bottom:98.803500px;}
.y26{bottom:100.243950px;}
.y2db{bottom:103.040850px;}
.y2a7{bottom:103.940850px;}
.y136{bottom:105.027000px;}
.y223{bottom:105.976200px;}
.y10e{bottom:106.760850px;}
.y1a6{bottom:106.830600px;}
.y1c7{bottom:107.119650px;}
.y273{bottom:107.391000px;}
.y247{bottom:109.109100px;}
.ye2{bottom:109.188450px;}
.yb4{bottom:111.438150px;}
.y157{bottom:112.132350px;}
.y86{bottom:116.799000px;}
.y17f{bottom:117.526500px;}
.y2da{bottom:118.940850px;}
.y2a6{bottom:120.140850px;}
.y135{bottom:123.022500px;}
.y1f6{bottom:123.525600px;}
.y272{bottom:123.591000px;}
.y222{bottom:123.971700px;}
.y10d{bottom:124.756350px;}
.y1c6{bottom:125.115150px;}
.y1a5{bottom:126.198600px;}
.y246{bottom:127.104600px;}
.ye1{bottom:127.183950px;}
.yb3{bottom:129.433650px;}
.y156{bottom:130.127850px;}
.y85{bottom:134.794500px;}
.y2d9{bottom:134.840850px;}
.y58{bottom:135.004500px;}
.y2a5{bottom:136.340850px;}
.y17e{bottom:136.894500px;}
.y22{bottom:139.264499px;}
.y271{bottom:139.791000px;}
.y134{bottom:141.018000px;}
.y1f5{bottom:141.521100px;}
.y221{bottom:141.967200px;}
.y10c{bottom:142.751850px;}
.y1c5{bottom:143.110650px;}
.y245{bottom:145.100100px;}
.ye0{bottom:145.179450px;}
.y1a4{bottom:145.566600px;}
.yb2{bottom:147.429150px;}
.y155{bottom:148.123350px;}
.y2d8{bottom:150.740850px;}
.y2a4{bottom:152.540850px;}
.y84{bottom:152.790000px;}
.y57{bottom:153.000000px;}
.y270{bottom:155.991000px;}
.y17d{bottom:156.262500px;}
.y133{bottom:159.013500px;}
.y1f4{bottom:159.516600px;}
.y220{bottom:159.962700px;}
.y10b{bottom:160.747350px;}
.y1c4{bottom:161.106150px;}
.y244{bottom:163.095600px;}
.ydf{bottom:163.174950px;}
.y1a3{bottom:164.934600px;}
.yb1{bottom:165.424650px;}
.y154{bottom:166.118850px;}
.y2d7{bottom:166.640850px;}
.y2a3{bottom:168.740850px;}
.y83{bottom:170.785500px;}
.y56{bottom:170.995500px;}
.y26f{bottom:172.191000px;}
.y17c{bottom:175.630500px;}
.y132{bottom:177.009000px;}
.y1f3{bottom:177.512100px;}
.y21f{bottom:177.958200px;}
.y10a{bottom:178.742850px;}
.y1c3{bottom:179.101650px;}
.yde{bottom:181.170450px;}
.y2d6{bottom:182.540850px;}
.yb0{bottom:183.420150px;}
.y153{bottom:184.114350px;}
.y1a2{bottom:184.302600px;}
.y2a2{bottom:184.940850px;}
.y26e{bottom:188.391000px;}
.y82{bottom:188.781000px;}
.y55{bottom:188.991000px;}
.y243{bottom:193.851600px;}
.y17b{bottom:194.998500px;}
.y131{bottom:195.004500px;}
.y1f2{bottom:195.507600px;}
.y21e{bottom:195.953700px;}
.y109{bottom:196.738350px;}
.y19{bottom:196.933500px;}
.y1c2{bottom:197.097150px;}
.y2d5{bottom:198.440850px;}
.ydd{bottom:199.165950px;}
.y2a1{bottom:201.140850px;}
.yaf{bottom:201.415650px;}
.y152{bottom:202.109850px;}
.y26d{bottom:204.591000px;}
.y1a1{bottom:205.794600px;}
.y81{bottom:206.776500px;}
.y54{bottom:206.986500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y130{bottom:213.000000px;}
.y1f1{bottom:213.503100px;}
.y21d{bottom:213.949200px;}
.y2d4{bottom:214.340850px;}
.y17a{bottom:214.366500px;}
.y108{bottom:214.733850px;}
.y1c1{bottom:215.092650px;}
.ydc{bottom:217.161450px;}
.y2a0{bottom:217.340850px;}
.yae{bottom:219.411150px;}
.y151{bottom:220.105350px;}
.y26c{bottom:220.791000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y80{bottom:224.772000px;}
.y53{bottom:224.982000px;}
.y2d3{bottom:230.240850px;}
.y12f{bottom:230.995500px;}
.y1f0{bottom:231.498600px;}
.y21c{bottom:231.944700px;}
.y107{bottom:232.729350px;}
.y29f{bottom:233.540850px;}
.y179{bottom:233.734500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.ydb{bottom:235.156950px;}
.y1a0{bottom:235.975350px;}
.y26b{bottom:236.991000px;}
.yad{bottom:237.406650px;}
.y150{bottom:238.100850px;}
.y242{bottom:239.013300px;}
.y7f{bottom:242.767500px;}
.y52{bottom:242.977500px;}
.y2d2{bottom:246.140850px;}
.y12e{bottom:248.991000px;}
.y1ef{bottom:249.494100px;}
.y29e{bottom:249.740850px;}
.y21b{bottom:249.940200px;}
.y106{bottom:250.724850px;}
.y1c0{bottom:252.028050px;}
.y178{bottom:253.102500px;}
.yda{bottom:253.152450px;}
.y26a{bottom:253.191000px;}
.yac{bottom:255.402150px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y7e{bottom:260.763000px;}
.y51{bottom:260.973000px;}
.y2d1{bottom:262.040850px;}
.y14f{bottom:264.604800px;}
.y29d{bottom:265.940850px;}
.y12d{bottom:266.986500px;}
.y1ee{bottom:267.489600px;}
.y21a{bottom:267.935700px;}
.y105{bottom:268.720350px;}
.y269{bottom:269.391000px;}
.y241{bottom:269.769300px;}
.yd9{bottom:271.147950px;}
.y1bf{bottom:271.396050px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y19f{bottom:272.557650px;}
.yab{bottom:273.397650px;}
.y177{bottom:274.594500px;}
.y2d0{bottom:277.940850px;}
.y7d{bottom:278.758500px;}
.y50{bottom:278.968500px;}
.y29c{bottom:282.140850px;}
.y12c{bottom:284.982000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1ed{bottom:285.485100px;}
.y268{bottom:285.591000px;}
.y219{bottom:285.931200px;}
.y104{bottom:286.715850px;}
.yd8{bottom:289.143450px;}
.y19e{bottom:290.553150px;}
.y1be{bottom:290.764050px;}
.yaa{bottom:291.393150px;}
.y2cf{bottom:293.840850px;}
.y7c{bottom:296.754000px;}
.y4f{bottom:296.964000px;}
.y29b{bottom:298.340850px;}
.y267{bottom:301.791000px;}
.y1ec{bottom:303.480600px;}
.y14e{bottom:303.887100px;}
.y218{bottom:303.926700px;}
.y103{bottom:304.711350px;}
.y176{bottom:304.775250px;}
.yd7{bottom:307.138950px;}
.y19d{bottom:308.548650px;}
.ya9{bottom:309.388650px;}
.y2ce{bottom:309.740850px;}
.y1bd{bottom:310.132050px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y12b{bottom:311.482500px;}
.y29a{bottom:314.540850px;}
.y7b{bottom:314.749500px;}
.y240{bottom:315.048000px;}
.y266{bottom:317.991000px;}
.y1eb{bottom:321.476100px;}
.y14d{bottom:321.882600px;}
.y217{bottom:321.922200px;}
.y102{bottom:322.706850px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yd6{bottom:325.134450px;}
.y2cd{bottom:325.640850px;}
.y19c{bottom:326.544150px;}
.ya8{bottom:327.384150px;}
.y4e{bottom:327.719850px;}
.y299{bottom:330.740850px;}
.y1bc{bottom:331.624050px;}
.y7a{bottom:332.745000px;}
.y23f{bottom:333.043500px;}
.y265{bottom:334.191000px;}
.y12a{bottom:337.983000px;}
.y1ea{bottom:339.471600px;}
.y14c{bottom:339.878100px;}
.y216{bottom:339.917700px;}
.y101{bottom:340.702350px;}
.y175{bottom:341.335050px;}
.y2cc{bottom:341.540850px;}
.yd5{bottom:343.129950px;}
.y19b{bottom:344.539650px;}
.ya7{bottom:345.379650px;}
.y298{bottom:346.940850px;}
.y10{bottom:348.133500px;}
.y264{bottom:350.391000px;}
.y79{bottom:350.740500px;}
.y23e{bottom:351.039000px;}
.y129{bottom:355.978500px;}
.y2cb{bottom:357.440850px;}
.y1e9{bottom:357.467100px;}
.y14b{bottom:357.873600px;}
.y215{bottom:357.913200px;}
.y100{bottom:358.697850px;}
.yd4{bottom:361.125450px;}
.y1bb{bottom:361.804800px;}
.y19a{bottom:362.535150px;}
.y297{bottom:363.140850px;}
.ya6{bottom:363.375150px;}
.y263{bottom:366.591000px;}
.y78{bottom:368.736000px;}
.y23d{bottom:369.034500px;}
.y174{bottom:372.091050px;}
.y2ca{bottom:373.340850px;}
.y128{bottom:373.974000px;}
.y214{bottom:374.408700px;}
.y14a{bottom:375.869100px;}
.yff{bottom:376.693350px;}
.yd3{bottom:379.120950px;}
.y296{bottom:379.340850px;}
.y262{bottom:382.791000px;}
.y4b{bottom:384.817050px;}
.y77{bottom:386.731500px;}
.yf{bottom:386.785499px;}
.y23c{bottom:387.030000px;}
.y2c9{bottom:389.240850px;}
.ya5{bottom:389.879100px;}
.y1e8{bottom:390.349050px;}
.y127{bottom:391.969500px;}
.y149{bottom:393.864600px;}
.y213{bottom:393.940200px;}
.yfe{bottom:394.688850px;}
.y295{bottom:395.540850px;}
.yd2{bottom:397.116450px;}
.y1ba{bottom:398.369100px;}
.y261{bottom:398.991000px;}
.y199{bottom:399.436650px;}
.y4a{bottom:403.456050px;}
.y76{bottom:404.727000px;}
.y23b{bottom:405.025500px;}
.y2c8{bottom:405.140850px;}
.ye{bottom:408.044999px;}
.y126{bottom:409.965000px;}
.y294{bottom:411.740850px;}
.y212{bottom:411.935700px;}
.yd1{bottom:415.111950px;}
.y260{bottom:415.191000px;}
.y1b9{bottom:416.364600px;}
.y173{bottom:417.369750px;}
.y198{bottom:418.804650px;}
.y148{bottom:420.368550px;}
.ya4{bottom:420.634950px;}
.y2c7{bottom:421.040850px;}
.yfd{bottom:421.192950px;}
.y75{bottom:422.722500px;}
.y23a{bottom:423.021000px;}
.y49{bottom:424.615050px;}
.y293{bottom:427.940850px;}
.y125{bottom:427.960500px;}
.y211{bottom:429.931200px;}
.y25f{bottom:431.391000px;}
.yd0{bottom:433.107450px;}
.y172{bottom:435.365250px;}
.y48{bottom:436.612050px;}
.y2c6{bottom:436.940850px;}
.y197{bottom:438.172650px;}
.y74{bottom:440.718000px;}
.y239{bottom:441.016500px;}
.y292{bottom:444.140850px;}
.y124{bottom:445.956000px;}
.y25e{bottom:447.591000px;}
.y210{bottom:447.926700px;}
.ycf{bottom:451.102950px;}
.y147{bottom:451.124400px;}
.y2c5{bottom:452.840850px;}
.y1b8{bottom:453.268650px;}
.y171{bottom:453.360750px;}
.y196{bottom:457.540650px;}
.y45{bottom:457.810050px;}
.y73{bottom:458.713500px;}
.y238{bottom:459.012000px;}
.y291{bottom:460.340850px;}
.yfc{bottom:460.349250px;}
.y25d{bottom:463.791000px;}
.y123{bottom:463.951500px;}
.ya3{bottom:465.837300px;}
.y20f{bottom:465.922200px;}
.y2c4{bottom:468.740850px;}
.yce{bottom:469.098450px;}
.y44{bottom:469.807050px;}
.y170{bottom:471.356250px;}
.y1b7{bottom:472.636650px;}
.y290{bottom:476.540850px;}
.y72{bottom:476.709000px;}
.y195{bottom:476.908650px;}
.y237{bottom:477.007500px;}
.yfb{bottom:478.803750px;}
.y25c{bottom:479.991000px;}
.y43{bottom:481.804050px;}
.y122{bottom:481.947000px;}
.ya2{bottom:483.535800px;}
.y20e{bottom:483.917700px;}
.y2c3{bottom:484.640850px;}
.yd{bottom:484.864502px;}
.ycd{bottom:487.093950px;}
.y16f{bottom:489.351750px;}
.y1b6{bottom:492.004650px;}
.y28f{bottom:492.740850px;}
.y42{bottom:493.801050px;}
.y71{bottom:494.704500px;}
.y236{bottom:495.003000px;}
.y25b{bottom:496.191000px;}
.y194{bottom:496.276650px;}
.y146{bottom:496.286250px;}
.yfa{bottom:497.258250px;}
.y121{bottom:499.942500px;}
.y2c2{bottom:500.540850px;}
.ya1{bottom:501.234300px;}
.y20d{bottom:501.913200px;}
.yc{bottom:502.864502px;}
.ycc{bottom:505.089450px;}
.y41{bottom:505.798050px;}
.y16e{bottom:507.347250px;}
.y28e{bottom:508.940850px;}
.y1b5{bottom:511.372650px;}
.y25a{bottom:512.391000px;}
.y70{bottom:512.700000px;}
.y235{bottom:512.998500px;}
.y1d8{bottom:513.059700px;}
.yf9{bottom:515.712750px;}
.y2c1{bottom:516.440850px;}
.y193{bottom:517.768650px;}
.y40{bottom:517.795050px;}
.y120{bottom:517.938000px;}
.y20c{bottom:518.408700px;}
.ya0{bottom:518.932800px;}
.yb{bottom:520.864502px;}
.ycb{bottom:523.084950px;}
.y28d{bottom:525.140850px;}
.y16d{bottom:525.342750px;}
.y259{bottom:528.591000px;}
.y3f{bottom:529.792050px;}
.y6f{bottom:530.695500px;}
.y1b4{bottom:530.740650px;}
.y234{bottom:530.994000px;}
.y1d7{bottom:531.055200px;}
.y2c0{bottom:532.340850px;}
.yf8{bottom:534.167250px;}
.y11f{bottom:535.933500px;}
.y9f{bottom:536.631300px;}
.y20b{bottom:537.994200px;}
.ya{bottom:538.864499px;}
.y28c{bottom:541.340850px;}
.y192{bottom:541.612650px;}
.y3e{bottom:541.789050px;}
.y16c{bottom:543.338250px;}
.y258{bottom:544.791000px;}
.y2bf{bottom:548.240850px;}
.y6e{bottom:548.691000px;}
.y233{bottom:548.989500px;}
.y1d6{bottom:549.050700px;}
.yca{bottom:549.588900px;}
.y1b3{bottom:550.108650px;}
.yf7{bottom:552.621750px;}
.y3d{bottom:553.786050px;}
.y11e{bottom:553.929000px;}
.y9e{bottom:554.329800px;}
.y20a{bottom:555.989700px;}
.y9{bottom:556.864499px;}
.y1e7{bottom:557.385300px;}
.y28b{bottom:557.540850px;}
.y191{bottom:560.980650px;}
.y257{bottom:560.991000px;}
.y16b{bottom:561.333750px;}
.y2be{bottom:564.140850px;}
.y3c{bottom:565.783050px;}
.y6d{bottom:566.686500px;}
.y232{bottom:566.985000px;}
.y1d5{bottom:567.046200px;}
.y1b2{bottom:569.476650px;}
.yf6{bottom:571.076250px;}
.y11d{bottom:571.924500px;}
.y9d{bottom:572.028300px;}
.y28a{bottom:573.740850px;}
.y209{bottom:573.985200px;}
.y1e6{bottom:575.380800px;}
.y256{bottom:577.191000px;}
.y3b{bottom:577.780050px;}
.y16a{bottom:579.329250px;}
.y2bd{bottom:580.040850px;}
.y190{bottom:580.348650px;}
.y6c{bottom:584.682000px;}
.y231{bottom:584.980500px;}
.y1d4{bottom:585.041700px;}
.y1b1{bottom:588.844650px;}
.yc9{bottom:588.934500px;}
.yf5{bottom:589.530750px;}
.y9c{bottom:589.726800px;}
.y3a{bottom:589.777050px;}
.y11c{bottom:589.920000px;}
.y289{bottom:589.940850px;}
.y208{bottom:591.980700px;}
.y255{bottom:593.391000px;}
.y2bc{bottom:595.940850px;}
.y169{bottom:597.324750px;}
.y18f{bottom:599.716650px;}
.y39{bottom:601.774050px;}
.y6b{bottom:602.677500px;}
.y230{bottom:602.976000px;}
.y1d3{bottom:603.037200px;}
.y288{bottom:606.140850px;}
.yc8{bottom:606.930000px;}
.y9b{bottom:607.425300px;}
.y11b{bottom:607.915500px;}
.yf4{bottom:607.985250px;}
.y1b0{bottom:608.212650px;}
.y254{bottom:609.591000px;}
.y207{bottom:609.976200px;}
.y2bb{bottom:611.840850px;}
.y47{bottom:612.049050px;}
.y38{bottom:613.771050px;}
.y1e5{bottom:614.168400px;}
.y168{bottom:615.320250px;}
.y18e{bottom:619.084650px;}
.y6a{bottom:620.673000px;}
.y22f{bottom:620.971500px;}
.y287{bottom:622.340850px;}
.y46{bottom:624.049050px;}
.yc7{bottom:624.925500px;}
.y9a{bottom:625.123800px;}
.y37{bottom:625.768050px;}
.y253{bottom:625.791000px;}
.y11a{bottom:625.911000px;}
.yf3{bottom:626.439750px;}
.y1af{bottom:627.580650px;}
.y2ba{bottom:627.740850px;}
.y206{bottom:627.971700px;}
.y167{bottom:633.315750px;}
.y1e4{bottom:635.396400px;}
.y36{bottom:637.765050px;}
.y286{bottom:638.540850px;}
.y69{bottom:638.668500px;}
.y22e{bottom:638.967000px;}
.y1d2{bottom:639.975900px;}
.y18d{bottom:640.576650px;}
.y252{bottom:641.991000px;}
.y99{bottom:642.822300px;}
.yc6{bottom:642.921000px;}
.y2b9{bottom:643.640850px;}
.y119{bottom:643.906500px;}
.yf2{bottom:644.894250px;}
.y8{bottom:645.510000px;}
.y205{bottom:645.967200px;}
.y1ae{bottom:646.948650px;}
.y166{bottom:651.311250px;}
.y145{bottom:653.392350px;}
.y285{bottom:654.740850px;}
.y1e3{bottom:656.624400px;}
.y68{bottom:656.664000px;}
.y22d{bottom:656.962500px;}
.y251{bottom:658.191000px;}
.y1d1{bottom:659.342400px;}
.y2b8{bottom:659.540850px;}
.y98{bottom:660.520800px;}
.yc5{bottom:660.916500px;}
.y118{bottom:661.902000px;}
.y18c{bottom:662.068650px;}
.yf1{bottom:663.348750px;}
.y204{bottom:663.962700px;}
.y1ad{bottom:666.316650px;}
.y7{bottom:666.771000px;}
.y165{bottom:669.306750px;}
.y284{bottom:670.940850px;}
.y35{bottom:672.253200px;}
.y250{bottom:674.391000px;}
.y67{bottom:674.659500px;}
.y22c{bottom:674.958000px;}
.y2b7{bottom:675.440850px;}
.y97{bottom:678.219300px;}
.y1d0{bottom:678.710400px;}
.yc4{bottom:678.912000px;}
.y1e2{bottom:679.760400px;}
.y144{bottom:679.892850px;}
.y117{bottom:679.897500px;}
.y18b{bottom:681.436650px;}
.yf0{bottom:681.803250px;}
.y34{bottom:681.952950px;}
.y203{bottom:681.958200px;}
.y1ac{bottom:685.684650px;}
.y283{bottom:687.140850px;}
.y164{bottom:687.302250px;}
.y24f{bottom:690.591000px;}
.y2b6{bottom:691.340850px;}
.y66{bottom:692.655000px;}
.y22b{bottom:692.953500px;}
.y96{bottom:695.917800px;}
.yc3{bottom:696.907500px;}
.y116{bottom:697.893000px;}
.y33{bottom:698.584950px;}
.y202{bottom:699.953700px;}
.y1cf{bottom:700.202400px;}
.yef{bottom:700.257750px;}
.y18a{bottom:700.804650px;}
.y282{bottom:703.340850px;}
.y1ab{bottom:705.052650px;}
.y163{bottom:705.297750px;}
.y143{bottom:706.393350px;}
.y24e{bottom:706.791000px;}
.y2b5{bottom:707.240850px;}
.y32{bottom:708.284700px;}
.y65{bottom:710.650500px;}
.y22a{bottom:710.949000px;}
.y1e1{bottom:711.579150px;}
.y95{bottom:713.616300px;}
.yc2{bottom:714.903000px;}
.y115{bottom:715.888500px;}
.y201{bottom:717.949200px;}
.yee{bottom:718.712250px;}
.y281{bottom:719.540850px;}
.y189{bottom:720.172650px;}
.y24d{bottom:722.991000px;}
.y2b4{bottom:723.140850px;}
.y162{bottom:723.293250px;}
.y1aa{bottom:724.420650px;}
.y31{bottom:724.916700px;}
.y6{bottom:726.298500px;}
.y64{bottom:728.646000px;}
.y229{bottom:728.944500px;}
.y1ce{bottom:730.383150px;}
.y94{bottom:731.314800px;}
.y142{bottom:732.893850px;}
.yc1{bottom:732.898500px;}
.y114{bottom:733.884000px;}
.y280{bottom:735.740850px;}
.y200{bottom:735.944700px;}
.yed{bottom:737.166750px;}
.y30{bottom:738.082650px;}
.y2b3{bottom:739.040850px;}
.y24c{bottom:739.191000px;}
.y188{bottom:739.540650px;}
.y161{bottom:741.288750px;}
.y1a9{bottom:743.788650px;}
.y63{bottom:746.641500px;}
.y228{bottom:746.940000px;}
.y1e0{bottom:748.152450px;}
.y93{bottom:749.013300px;}
.y141{bottom:750.889350px;}
.yc0{bottom:750.894000px;}
.y113{bottom:751.879500px;}
.y27f{bottom:751.940850px;}
.y3{bottom:752.599495px;}
.y1ff{bottom:753.940200px;}
.y2b2{bottom:754.940850px;}
.y24b{bottom:755.391000px;}
.yec{bottom:755.621250px;}
.y2f{bottom:757.519200px;}
.y160{bottom:759.284250px;}
.y187{bottom:761.032650px;}
.y1a8{bottom:763.156650px;}
.y62{bottom:764.637000px;}
.y227{bottom:764.935500px;}
.y1df{bottom:766.147950px;}
.y92{bottom:766.711800px;}
.y1cd{bottom:767.880150px;}
.y27e{bottom:768.140850px;}
.y140{bottom:768.884850px;}
.ybf{bottom:768.889500px;}
.y112{bottom:769.875000px;}
.y2b1{bottom:770.840850px;}
.y24a{bottom:771.591000px;}
.y1fe{bottom:771.935700px;}
.yeb{bottom:774.075750px;}
.y15f{bottom:777.279750px;}
.y186{bottom:782.524650px;}
.y61{bottom:782.632500px;}
.y226{bottom:782.931000px;}
.y1de{bottom:784.143450px;}
.y27d{bottom:784.340850px;}
.y91{bottom:784.410300px;}
.y2b0{bottom:786.740850px;}
.y13f{bottom:786.880350px;}
.ybe{bottom:786.885000px;}
.y2e{bottom:786.909300px;}
.y1cc{bottom:787.248150px;}
.y249{bottom:787.791000px;}
.y111{bottom:787.870500px;}
.y1fd{bottom:789.931200px;}
.yea{bottom:792.530250px;}
.y15e{bottom:795.275250px;}
.y27c{bottom:800.540850px;}
.y60{bottom:800.628000px;}
.y185{bottom:801.892650px;}
.y90{bottom:802.108800px;}
.y1dd{bottom:802.138950px;}
.y2af{bottom:802.640850px;}
.y13e{bottom:804.875850px;}
.ybd{bottom:804.880500px;}
.y2d{bottom:804.911550px;}
.y1cb{bottom:806.616150px;}
.y1fc{bottom:807.926700px;}
.ye9{bottom:810.984750px;}
.y15d{bottom:813.270750px;}
.y225{bottom:813.687000px;}
.y110{bottom:814.371000px;}
.y27b{bottom:816.740850px;}
.y248{bottom:816.746850px;}
.y2ae{bottom:818.540850px;}
.y5f{bottom:818.623500px;}
.y8f{bottom:819.807300px;}
.y184{bottom:821.260650px;}
.y13d{bottom:822.871350px;}
.ybc{bottom:822.876000px;}
.y1fb{bottom:825.922200px;}
.y1ca{bottom:828.108150px;}
.ye8{bottom:829.439250px;}
.y15c{bottom:831.266250px;}
.y27a{bottom:832.940850px;}
.y2ad{bottom:834.440850px;}
.y5e{bottom:836.619000px;}
.y8e{bottom:837.505800px;}
.y1dc{bottom:839.077950px;}
.y183{bottom:840.628650px;}
.y13c{bottom:840.866850px;}
.ybb{bottom:840.871500px;}
.y1fa{bottom:843.917700px;}
.ye7{bottom:847.893750px;}
.y279{bottom:849.140850px;}
.y15b{bottom:849.261750px;}
.y2ac{bottom:850.340850px;}
.y5d{bottom:854.614500px;}
.y8d{bottom:855.204300px;}
.y1c9{bottom:858.288900px;}
.y1db{bottom:858.445950px;}
.y13b{bottom:858.862350px;}
.yba{bottom:858.867000px;}
.y182{bottom:859.996650px;}
.y1f9{bottom:861.913200px;}
.y278{bottom:865.340850px;}
.y2ab{bottom:866.240850px;}
.ye6{bottom:866.348250px;}
.y15a{bottom:867.257250px;}
.y2c{bottom:871.653600px;}
.y5c{bottom:872.610000px;}
.y8c{bottom:872.902800px;}
.y13a{bottom:876.857850px;}
.yb9{bottom:876.862500px;}
.y2{bottom:879.369000px;}
.y1f8{bottom:879.908700px;}
.y181{bottom:881.488650px;}
.y277{bottom:881.540850px;}
.y1da{bottom:881.575950px;}
.y2aa{bottom:882.140850px;}
.ye5{bottom:884.802750px;}
.y159{bottom:885.252750px;}
.y8b{bottom:890.601300px;}
.y5b{bottom:890.605500px;}
.y2b{bottom:891.215700px;}
.y139{bottom:894.853350px;}
.yb8{bottom:894.858000px;}
.y4d{bottom:897.035850px;}
.y276{bottom:897.740850px;}
.y2a9{bottom:898.040850px;}
.y8a{bottom:908.596800px;}
.y5a{bottom:908.601000px;}
.y2a{bottom:909.370200px;}
.y1f7{bottom:910.664700px;}
.ye4{bottom:911.756700px;}
.y138{bottom:912.848850px;}
.yb7{bottom:912.853500px;}
.y1a7{bottom:913.394850px;}
.y275{bottom:913.940850px;}
.y4c{bottom:916.378950px;}
.y29{bottom:927.524700px;}
.y28{bottom:945.679200px;}
.y89{bottom:949.519500px;}
.y59{bottom:951.755850px;}
.y1{bottom:966.726000px;}
.y27{bottom:975.454650px;}
.h13{height:23.686523px;}
.h10{height:25.560000px;}
.he{height:25.596000px;}
.hc{height:27.035156px;}
.hf{height:27.729000px;}
.h1b{height:28.854600px;}
.h16{height:29.400000px;}
.hd{height:31.541016px;}
.h14{height:31.582031px;}
.h8{height:32.130000px;}
.h15{height:33.328125px;}
.h21{height:36.046875px;}
.h25{height:36.093750px;}
.h1c{height:37.800000px;}
.h1f{height:38.349609px;}
.h9{height:39.648000px;}
.h19{height:40.552734px;}
.h1e{height:40.605469px;}
.h12{height:44.437500px;}
.h22{height:44.444700px;}
.h11{height:44.850586px;}
.h1d{height:45.117188px;}
.h20{height:47.214844px;}
.h3{height:48.195000px;}
.h18{height:49.628906px;}
.h1a{height:49.992188px;}
.h17{height:51.186450px;}
.h23{height:54.549562px;}
.h24{height:55.992188px;}
.h7{height:56.640000px;}
.h6{height:59.472000px;}
.h2{height:67.968000px;}
.h5{height:96.288000px;}
.h4{height:119.055004px;}
.ha{height:1020.472500px;}
.hb{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:76.929600px;}
.xc{left:80.787450px;}
.xe{left:85.060800px;}
.x13{left:89.862900px;}
.x10{left:93.543300px;}
.x1c{left:95.177400px;}
.x11{left:97.155750px;}
.x26{left:99.005550px;}
.x1{left:102.045000px;}
.x28{left:104.510700px;}
.x2{left:106.297500px;}
.x29{left:110.551200px;}
.x23{left:111.656100px;}
.x24{left:114.356100px;}
.x27{left:116.314800px;}
.x25{left:118.257450px;}
.x22{left:119.420100px;}
.x19{left:121.756500px;}
.x1e{left:124.955100px;}
.x1b{left:130.260450px;}
.x1f{left:134.639100px;}
.x20{left:137.327100px;}
.x18{left:138.358950px;}
.x21{left:141.215100px;}
.x17{left:143.230950px;}
.x16{left:154.270950px;}
.x14{left:186.226950px;}
.x15{left:190.330950px;}
.x12{left:194.730900px;}
.x4{left:203.484001px;}
.xf{left:234.981600px;}
.xd{left:250.869450px;}
.x3{left:454.959000px;}
.xb{left:465.480600px;}
.x6{left:489.029100px;}
.x1a{left:550.047000px;}
.x1d{left:558.550950px;}
.xa{left:565.558950px;}
.x8{left:576.020700px;}
.x9{left:590.557950px;}
.x7{left:598.523700px;}
@media print{
.v2{vertical-align:-12.320000pt;}
.v3{vertical-align:-8.960000pt;}
.v4{vertical-align:-7.951467pt;}
.v7{vertical-align:-5.824000pt;}
.v6{vertical-align:-4.181333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.333333pt;}
.v5{vertical-align:6.351467pt;}
.v8{vertical-align:8.256000pt;}
.v1{vertical-align:14.080533pt;}
.ls2b{letter-spacing:-2.901333pt;}
.ls26{letter-spacing:-1.024000pt;}
.ls23{letter-spacing:-1.008000pt;}
.ls24{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.341333pt;}
.ls3b{letter-spacing:-0.298667pt;}
.ls31{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.240000pt;}
.ls41{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls3d{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls37{letter-spacing:-0.085333pt;}
.ls1b{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.002133pt;}
.ls2c{letter-spacing:0.004800pt;}
.ls2e{letter-spacing:0.005333pt;}
.ls27{letter-spacing:0.011200pt;}
.ls5{letter-spacing:0.011467pt;}
.ls29{letter-spacing:0.012267pt;}
.ls38{letter-spacing:0.042667pt;}
.lsf{letter-spacing:0.048000pt;}
.ls34{letter-spacing:0.085333pt;}
.ls13{letter-spacing:0.096000pt;}
.ls3e{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.144000pt;}
.ls42{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.240000pt;}
.ls43{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.288000pt;}
.ls3a{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.336000pt;}
.ls33{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.432000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.488112pt;}
.ls1e{letter-spacing:0.528000pt;}
.ls40{letter-spacing:0.597333pt;}
.ls9{letter-spacing:0.627211pt;}
.ls1f{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.720000pt;}
.lsc{letter-spacing:0.976219pt;}
.lsb{letter-spacing:1.114677pt;}
.lsa{letter-spacing:1.230411pt;}
.lsd{letter-spacing:1.230944pt;}
.ls6{letter-spacing:1.750400pt;}
.ls10{letter-spacing:1.760000pt;}
.ls8{letter-spacing:1.812992pt;}
.ls2{letter-spacing:1.960000pt;}
.ls30{letter-spacing:4.986667pt;}
.ls39{letter-spacing:5.286400pt;}
.ls32{letter-spacing:21.477333pt;}
.ls4{letter-spacing:23.107200pt;}
.ls28{letter-spacing:178.438400pt;}
.ls2d{letter-spacing:201.356267pt;}
.ls2f{letter-spacing:201.751467pt;}
.ls2a{letter-spacing:274.602667pt;}
.ls7{letter-spacing:355.904000pt;}
.ls25{letter-spacing:494.037333pt;}
.ws6{word-spacing:-19.580314pt;}
.wsbb{word-spacing:-16.192000pt;}
.ws7{word-spacing:-14.838605pt;}
.wsbc{word-spacing:-12.032000pt;}
.wsc8{word-spacing:-11.733333pt;}
.ws9a{word-spacing:-11.690667pt;}
.wse5{word-spacing:-11.648000pt;}
.wsc9{word-spacing:-11.434667pt;}
.ws76{word-spacing:-10.666667pt;}
.ws1{word-spacing:-8.960000pt;}
.ws5{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.768000pt;}
.ws4{word-spacing:-7.700000pt;}
.wsc{word-spacing:-4.704000pt;}
.wsb1{word-spacing:-2.493333pt;}
.ws15{word-spacing:-1.812992pt;}
.ws14{word-spacing:-1.760000pt;}
.ws4c{word-spacing:-0.672000pt;}
.wsda{word-spacing:-0.597333pt;}
.ws4b{word-spacing:-0.528000pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws1d{word-spacing:-0.432000pt;}
.ws49{word-spacing:-0.384000pt;}
.wsc0{word-spacing:-0.341333pt;}
.ws27{word-spacing:-0.336000pt;}
.wsd1{word-spacing:-0.298667pt;}
.ws5a{word-spacing:-0.288000pt;}
.wse0{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.240000pt;}
.wsc4{word-spacing:-0.213333pt;}
.ws3d{word-spacing:-0.192000pt;}
.wsdd{word-spacing:-0.170667pt;}
.ws39{word-spacing:-0.144000pt;}
.wsd9{word-spacing:-0.128000pt;}
.ws20{word-spacing:-0.096000pt;}
.wsc3{word-spacing:-0.085333pt;}
.ws28{word-spacing:-0.048000pt;}
.wsc5{word-spacing:-0.042667pt;}
.ws3{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.042667pt;}
.ws2f{word-spacing:0.048000pt;}
.wsc1{word-spacing:0.085333pt;}
.ws41{word-spacing:0.096000pt;}
.wsd2{word-spacing:0.128000pt;}
.ws24{word-spacing:0.144000pt;}
.wsd0{word-spacing:0.170667pt;}
.ws19{word-spacing:0.192000pt;}
.wsdb{word-spacing:0.213333pt;}
.ws40{word-spacing:0.240000pt;}
.wsb2{word-spacing:0.288000pt;}
.wscc{word-spacing:0.298667pt;}
.ws34{word-spacing:0.336000pt;}
.wsd8{word-spacing:0.341333pt;}
.ws58{word-spacing:0.432000pt;}
.ws53{word-spacing:0.480000pt;}
.ws7a{word-spacing:0.512000pt;}
.ws52{word-spacing:0.528000pt;}
.ws56{word-spacing:0.624000pt;}
.wse6{word-spacing:0.640000pt;}
.ws5f{word-spacing:0.720000pt;}
.wse1{word-spacing:0.725333pt;}
.ws43{word-spacing:0.768000pt;}
.ws4d{word-spacing:0.816000pt;}
.wsd5{word-spacing:0.853333pt;}
.ws2b{word-spacing:0.864000pt;}
.wse7{word-spacing:0.896000pt;}
.wse8{word-spacing:0.938667pt;}
.ws69{word-spacing:0.960000pt;}
.wsc6{word-spacing:0.981333pt;}
.ws55{word-spacing:1.008000pt;}
.wsdc{word-spacing:1.066667pt;}
.ws1a{word-spacing:1.104000pt;}
.ws2d{word-spacing:1.200000pt;}
.ws13{word-spacing:1.312000pt;}
.ws6b{word-spacing:1.344000pt;}
.ws18{word-spacing:1.392000pt;}
.ws42{word-spacing:1.440000pt;}
.wse2{word-spacing:1.450667pt;}
.ws51{word-spacing:1.488000pt;}
.ws4f{word-spacing:1.536000pt;}
.wsb8{word-spacing:1.632000pt;}
.ws5c{word-spacing:1.680000pt;}
.wsb4{word-spacing:1.728000pt;}
.wsce{word-spacing:1.749333pt;}
.wsa{word-spacing:1.760000pt;}
.ws1b{word-spacing:1.776000pt;}
.wscd{word-spacing:1.834667pt;}
.wsd{word-spacing:1.872000pt;}
.wse3{word-spacing:1.962667pt;}
.ws59{word-spacing:1.968000pt;}
.wse4{word-spacing:2.005333pt;}
.ws30{word-spacing:2.016000pt;}
.wsb{word-spacing:2.053333pt;}
.wsb3{word-spacing:2.064000pt;}
.wse{word-spacing:2.128000pt;}
.ws37{word-spacing:2.160000pt;}
.ws5b{word-spacing:2.256000pt;}
.wscb{word-spacing:2.261333pt;}
.wsf{word-spacing:2.346667pt;}
.ws29{word-spacing:2.352000pt;}
.ws2e{word-spacing:2.400000pt;}
.ws12{word-spacing:2.432000pt;}
.ws35{word-spacing:2.448000pt;}
.ws60{word-spacing:2.493333pt;}
.ws21{word-spacing:2.496000pt;}
.ws48{word-spacing:2.592000pt;}
.ws1e{word-spacing:2.640000pt;}
.wsca{word-spacing:2.645333pt;}
.ws54{word-spacing:2.688000pt;}
.wsde{word-spacing:2.773333pt;}
.ws5d{word-spacing:2.784000pt;}
.wsd6{word-spacing:2.816000pt;}
.wsd7{word-spacing:2.858667pt;}
.ws11{word-spacing:2.976000pt;}
.ws9{word-spacing:3.104000pt;}
.ws2c{word-spacing:3.120000pt;}
.wsc7{word-spacing:3.200000pt;}
.ws3a{word-spacing:3.226667pt;}
.ws10{word-spacing:3.232000pt;}
.wscf{word-spacing:3.242667pt;}
.ws46{word-spacing:3.264000pt;}
.wsd3{word-spacing:3.498667pt;}
.ws1c{word-spacing:3.520000pt;}
.ws3c{word-spacing:3.552000pt;}
.wsb6{word-spacing:3.648000pt;}
.ws8{word-spacing:3.776000pt;}
.ws4e{word-spacing:3.792000pt;}
.ws6a{word-spacing:3.840000pt;}
.wse9{word-spacing:3.882667pt;}
.ws9d{word-spacing:3.888000pt;}
.ws4a{word-spacing:3.936000pt;}
.ws47{word-spacing:4.128000pt;}
.ws57{word-spacing:4.176000pt;}
.wsd4{word-spacing:4.394667pt;}
.wsb7{word-spacing:4.512000pt;}
.ws32{word-spacing:4.560000pt;}
.ws89{word-spacing:4.608000pt;}
.ws23{word-spacing:4.656000pt;}
.wsc2{word-spacing:4.693333pt;}
.ws36{word-spacing:4.704000pt;}
.ws5e{word-spacing:4.992000pt;}
.wsdf{word-spacing:5.077333pt;}
.ws3f{word-spacing:5.088000pt;}
.ws9c{word-spacing:5.136000pt;}
.ws3e{word-spacing:5.184000pt;}
.ws31{word-spacing:5.232000pt;}
.ws17{word-spacing:5.280000pt;}
.wsba{word-spacing:5.376000pt;}
.ws38{word-spacing:5.424000pt;}
.ws44{word-spacing:5.664000pt;}
.ws1f{word-spacing:5.712000pt;}
.wsbe{word-spacing:5.760000pt;}
.wsbf{word-spacing:5.802667pt;}
.wsb0{word-spacing:5.808000pt;}
.ws22{word-spacing:5.952000pt;}
.wsb9{word-spacing:6.192000pt;}
.ws25{word-spacing:6.240000pt;}
.ws26{word-spacing:6.336000pt;}
.ws45{word-spacing:6.672000pt;}
.wsb5{word-spacing:6.720000pt;}
.ws16{word-spacing:7.056000pt;}
.ws50{word-spacing:7.632000pt;}
.ws81{word-spacing:82.304000pt;}
.ws88{word-spacing:104.832000pt;}
.ws7e{word-spacing:111.112533pt;}
.ws87{word-spacing:116.352000pt;}
.ws85{word-spacing:120.960000pt;}
.ws83{word-spacing:121.600000pt;}
.wsa6{word-spacing:125.184000pt;}
.ws80{word-spacing:127.701333pt;}
.wsa7{word-spacing:132.053333pt;}
.wsa2{word-spacing:133.461333pt;}
.ws9e{word-spacing:134.038400pt;}
.ws7f{word-spacing:139.178667pt;}
.ws86{word-spacing:143.957333pt;}
.wsa5{word-spacing:145.962667pt;}
.wsa4{word-spacing:148.821333pt;}
.wsa0{word-spacing:150.613333pt;}
.ws84{word-spacing:158.924800pt;}
.wsa8{word-spacing:161.706667pt;}
.ws9f{word-spacing:162.105067pt;}
.ws75{word-spacing:162.218667pt;}
.wsac{word-spacing:167.082667pt;}
.wsa1{word-spacing:171.989333pt;}
.ws97{word-spacing:177.408000pt;}
.ws95{word-spacing:179.242667pt;}
.wsab{word-spacing:179.319467pt;}
.ws78{word-spacing:179.797333pt;}
.wsaa{word-spacing:187.690667pt;}
.ws99{word-spacing:189.963733pt;}
.wsaf{word-spacing:190.080000pt;}
.wsad{word-spacing:191.018667pt;}
.ws7b{word-spacing:191.658667pt;}
.wsae{word-spacing:197.290667pt;}
.ws79{word-spacing:201.984000pt;}
.ws94{word-spacing:214.476800pt;}
.ws96{word-spacing:222.037333pt;}
.wsa9{word-spacing:225.792000pt;}
.ws98{word-spacing:242.432533pt;}
.ws9b{word-spacing:242.433067pt;}
.ws92{word-spacing:245.751467pt;}
.ws93{word-spacing:267.136000pt;}
.ws33{word-spacing:272.872533pt;}
.ws8c{word-spacing:295.552000pt;}
.ws62{word-spacing:354.389333pt;}
.ws8a{word-spacing:367.112533pt;}
.ws8e{word-spacing:377.045333pt;}
.ws91{word-spacing:377.088000pt;}
.ws8d{word-spacing:389.282133pt;}
.ws8f{word-spacing:396.885333pt;}
.ws77{word-spacing:402.858667pt;}
.ws90{word-spacing:410.709333pt;}
.ws8b{word-spacing:421.798400pt;}
.ws7c{word-spacing:422.058667pt;}
.ws6d{word-spacing:436.352000pt;}
.ws7d{word-spacing:449.706667pt;}
.ws66{word-spacing:459.349333pt;}
.ws67{word-spacing:470.869333pt;}
.ws63{word-spacing:482.346667pt;}
.ws61{word-spacing:545.877333pt;}
.ws82{word-spacing:548.100267pt;}
.ws71{word-spacing:623.048533pt;}
.wsa3{word-spacing:643.374933pt;}
.ws73{word-spacing:860.757333pt;}
.ws6c{word-spacing:902.869333pt;}
.ws72{word-spacing:917.120000pt;}
.ws68{word-spacing:962.602667pt;}
.ws70{word-spacing:986.965333pt;}
.ws64{word-spacing:994.602667pt;}
.ws6e{word-spacing:998.442667pt;}
.ws74{word-spacing:1003.818667pt;}
.ws65{word-spacing:1015.808000pt;}
.ws6f{word-spacing:1021.440000pt;}
._44{margin-left:-40.010667pt;}
._9{margin-left:-23.669333pt;}
._45{margin-left:-11.250133pt;}
._d{margin-left:-5.419200pt;}
._0{margin-left:-3.766933pt;}
._3{margin-left:-2.197600pt;}
._2{margin-left:-1.040000pt;}
._6{width:0.924800pt;}
._5{width:2.325333pt;}
._8{width:3.271467pt;}
._7{width:4.918400pt;}
._1{width:6.444800pt;}
._a{width:7.398400pt;}
._e{width:8.361600pt;}
._46{width:9.282133pt;}
._f{width:11.040000pt;}
._b{width:15.673600pt;}
._4{width:53.330667pt;}
._25{width:77.674933pt;}
._39{width:104.234667pt;}
._34{width:105.153067pt;}
._36{width:115.712000pt;}
._28{width:118.741333pt;}
._32{width:129.749333pt;}
._26{width:138.709333pt;}
._3a{width:141.994667pt;}
._38{width:144.170667pt;}
._33{width:149.542400pt;}
._31{width:156.458667pt;}
._30{width:158.425067pt;}
._3f{width:159.872000pt;}
._27{width:175.317333pt;}
._3e{width:176.763733pt;}
._3d{width:185.646400pt;}
._2c{width:191.488000pt;}
._35{width:199.253333pt;}
._29{width:203.365333pt;}
._43{width:212.565333pt;}
._2a{width:213.674667pt;}
._37{width:215.424000pt;}
._42{width:222.634667pt;}
._3b{width:241.643733pt;}
._3c{width:247.552000pt;}
._41{width:263.472533pt;}
._40{width:268.330667pt;}
._22{width:387.386667pt;}
._2d{width:391.568000pt;}
._1f{width:404.949333pt;}
._18{width:411.456000pt;}
._2b{width:414.565333pt;}
._2e{width:433.749333pt;}
._1b{width:443.958933pt;}
._2f{width:461.397333pt;}
._14{width:471.040000pt;}
._15{width:497.898667pt;}
._13{width:554.069333pt;}
._16{width:625.322667pt;}
._1a{width:634.337600pt;}
._24{width:791.210667pt;}
._12{width:793.706933pt;}
._10{width:801.984267pt;}
._11{width:809.920267pt;}
._21{width:840.874667pt;}
._c{width:842.614400pt;}
._1e{width:863.829333pt;}
._19{width:870.049600pt;}
._23{width:916.778667pt;}
._20{width:975.658667pt;}
._1d{width:1010.133333pt;}
._17{width:1016.448000pt;}
._1c{width:1033.130667pt;}
.fs8{font-size:28.000000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fse{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fsb{font-size:48.811200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fs9{font-size:60.433067pt;}
.fsa{font-size:62.757333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:44.231333pt;}
.y24{bottom:54.895333pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:65.559333pt;}
.yb6{bottom:67.064133pt;}
.y88{bottom:71.829333pt;}
.y1d9{bottom:75.620533pt;}
.y137{bottom:77.361333pt;}
.y2dc{bottom:77.458533pt;}
.y2a8{bottom:77.991867pt;}
.y224{bottom:78.205067pt;}
.y10f{bottom:78.902533pt;}
.y1c8{bottom:79.221467pt;}
.y274{bottom:81.058667pt;}
.ye3{bottom:81.060400pt;}
.yb5{bottom:83.060133pt;}
.y158{bottom:83.677200pt;}
.y4{bottom:86.333337pt;}
.y180{bottom:87.252000pt;}
.y87{bottom:87.825333pt;}
.y26{bottom:89.105733pt;}
.y2db{bottom:91.591867pt;}
.y2a7{bottom:92.391867pt;}
.y136{bottom:93.357333pt;}
.y223{bottom:94.201067pt;}
.y10e{bottom:94.898533pt;}
.y1a6{bottom:94.960533pt;}
.y1c7{bottom:95.217467pt;}
.y273{bottom:95.458667pt;}
.y247{bottom:96.985867pt;}
.ye2{bottom:97.056400pt;}
.yb4{bottom:99.056133pt;}
.y157{bottom:99.673200pt;}
.y86{bottom:103.821333pt;}
.y17f{bottom:104.468000pt;}
.y2da{bottom:105.725200pt;}
.y2a6{bottom:106.791867pt;}
.y135{bottom:109.353333pt;}
.y1f6{bottom:109.800533pt;}
.y272{bottom:109.858667pt;}
.y222{bottom:110.197067pt;}
.y10d{bottom:110.894533pt;}
.y1c6{bottom:111.213467pt;}
.y1a5{bottom:112.176533pt;}
.y246{bottom:112.981867pt;}
.ye1{bottom:113.052400pt;}
.yb3{bottom:115.052133pt;}
.y156{bottom:115.669200pt;}
.y85{bottom:119.817333pt;}
.y2d9{bottom:119.858533pt;}
.y58{bottom:120.004000pt;}
.y2a5{bottom:121.191867pt;}
.y17e{bottom:121.684000pt;}
.y22{bottom:123.790666pt;}
.y271{bottom:124.258667pt;}
.y134{bottom:125.349333pt;}
.y1f5{bottom:125.796533pt;}
.y221{bottom:126.193067pt;}
.y10c{bottom:126.890533pt;}
.y1c5{bottom:127.209467pt;}
.y245{bottom:128.977867pt;}
.ye0{bottom:129.048400pt;}
.y1a4{bottom:129.392533pt;}
.yb2{bottom:131.048133pt;}
.y155{bottom:131.665200pt;}
.y2d8{bottom:133.991867pt;}
.y2a4{bottom:135.591867pt;}
.y84{bottom:135.813333pt;}
.y57{bottom:136.000000pt;}
.y270{bottom:138.658667pt;}
.y17d{bottom:138.900000pt;}
.y133{bottom:141.345333pt;}
.y1f4{bottom:141.792533pt;}
.y220{bottom:142.189067pt;}
.y10b{bottom:142.886533pt;}
.y1c4{bottom:143.205467pt;}
.y244{bottom:144.973867pt;}
.ydf{bottom:145.044400pt;}
.y1a3{bottom:146.608533pt;}
.yb1{bottom:147.044133pt;}
.y154{bottom:147.661200pt;}
.y2d7{bottom:148.125200pt;}
.y2a3{bottom:149.991867pt;}
.y83{bottom:151.809333pt;}
.y56{bottom:151.996000pt;}
.y26f{bottom:153.058667pt;}
.y17c{bottom:156.116000pt;}
.y132{bottom:157.341333pt;}
.y1f3{bottom:157.788533pt;}
.y21f{bottom:158.185067pt;}
.y10a{bottom:158.882533pt;}
.y1c3{bottom:159.201467pt;}
.yde{bottom:161.040400pt;}
.y2d6{bottom:162.258533pt;}
.yb0{bottom:163.040133pt;}
.y153{bottom:163.657200pt;}
.y1a2{bottom:163.824533pt;}
.y2a2{bottom:164.391867pt;}
.y26e{bottom:167.458667pt;}
.y82{bottom:167.805333pt;}
.y55{bottom:167.992000pt;}
.y243{bottom:172.312533pt;}
.y17b{bottom:173.332000pt;}
.y131{bottom:173.337333pt;}
.y1f2{bottom:173.784533pt;}
.y21e{bottom:174.181067pt;}
.y109{bottom:174.878533pt;}
.y19{bottom:175.052000pt;}
.y1c2{bottom:175.197467pt;}
.y2d5{bottom:176.391867pt;}
.ydd{bottom:177.036400pt;}
.y2a1{bottom:178.791867pt;}
.yaf{bottom:179.036133pt;}
.y152{bottom:179.653200pt;}
.y26d{bottom:181.858667pt;}
.y1a1{bottom:182.928533pt;}
.y81{bottom:183.801333pt;}
.y54{bottom:183.988000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y130{bottom:189.333333pt;}
.y1f1{bottom:189.780533pt;}
.y21d{bottom:190.177067pt;}
.y2d4{bottom:190.525200pt;}
.y17a{bottom:190.548000pt;}
.y108{bottom:190.874533pt;}
.y1c1{bottom:191.193467pt;}
.ydc{bottom:193.032400pt;}
.y2a0{bottom:193.191867pt;}
.yae{bottom:195.032133pt;}
.y151{bottom:195.649200pt;}
.y26c{bottom:196.258667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y80{bottom:199.797333pt;}
.y53{bottom:199.984000pt;}
.y2d3{bottom:204.658533pt;}
.y12f{bottom:205.329333pt;}
.y1f0{bottom:205.776533pt;}
.y21c{bottom:206.173067pt;}
.y107{bottom:206.870533pt;}
.y29f{bottom:207.591867pt;}
.y179{bottom:207.764000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.ydb{bottom:209.028400pt;}
.y1a0{bottom:209.755867pt;}
.y26b{bottom:210.658667pt;}
.yad{bottom:211.028133pt;}
.y150{bottom:211.645200pt;}
.y242{bottom:212.456267pt;}
.y7f{bottom:215.793333pt;}
.y52{bottom:215.980000pt;}
.y2d2{bottom:218.791867pt;}
.y12e{bottom:221.325333pt;}
.y1ef{bottom:221.772533pt;}
.y29e{bottom:221.991867pt;}
.y21b{bottom:222.169067pt;}
.y106{bottom:222.866533pt;}
.y1c0{bottom:224.024933pt;}
.y178{bottom:224.980000pt;}
.yda{bottom:225.024400pt;}
.y26a{bottom:225.058667pt;}
.yac{bottom:227.024133pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y7e{bottom:231.789333pt;}
.y51{bottom:231.976000pt;}
.y2d1{bottom:232.925200pt;}
.y14f{bottom:235.204267pt;}
.y29d{bottom:236.391867pt;}
.y12d{bottom:237.321333pt;}
.y1ee{bottom:237.768533pt;}
.y21a{bottom:238.165067pt;}
.y105{bottom:238.862533pt;}
.y269{bottom:239.458667pt;}
.y241{bottom:239.794933pt;}
.yd9{bottom:241.020400pt;}
.y1bf{bottom:241.240933pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y19f{bottom:242.273467pt;}
.yab{bottom:243.020133pt;}
.y177{bottom:244.084000pt;}
.y2d0{bottom:247.058533pt;}
.y7d{bottom:247.785333pt;}
.y50{bottom:247.972000pt;}
.y29c{bottom:250.791867pt;}
.y12c{bottom:253.317333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1ed{bottom:253.764533pt;}
.y268{bottom:253.858667pt;}
.y219{bottom:254.161067pt;}
.y104{bottom:254.858533pt;}
.yd8{bottom:257.016400pt;}
.y19e{bottom:258.269467pt;}
.y1be{bottom:258.456933pt;}
.yaa{bottom:259.016133pt;}
.y2cf{bottom:261.191867pt;}
.y7c{bottom:263.781333pt;}
.y4f{bottom:263.968000pt;}
.y29b{bottom:265.191867pt;}
.y267{bottom:268.258667pt;}
.y1ec{bottom:269.760533pt;}
.y14e{bottom:270.121867pt;}
.y218{bottom:270.157067pt;}
.y103{bottom:270.854533pt;}
.y176{bottom:270.911333pt;}
.yd7{bottom:273.012400pt;}
.y19d{bottom:274.265467pt;}
.ya9{bottom:275.012133pt;}
.y2ce{bottom:275.325200pt;}
.y1bd{bottom:275.672933pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y12b{bottom:276.873333pt;}
.y29a{bottom:279.591867pt;}
.y7b{bottom:279.777333pt;}
.y240{bottom:280.042667pt;}
.y266{bottom:282.658667pt;}
.y1eb{bottom:285.756533pt;}
.y14d{bottom:286.117867pt;}
.y217{bottom:286.153067pt;}
.y102{bottom:286.850533pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yd6{bottom:289.008400pt;}
.y2cd{bottom:289.458533pt;}
.y19c{bottom:290.261467pt;}
.ya8{bottom:291.008133pt;}
.y4e{bottom:291.306533pt;}
.y299{bottom:293.991867pt;}
.y1bc{bottom:294.776933pt;}
.y7a{bottom:295.773333pt;}
.y23f{bottom:296.038667pt;}
.y265{bottom:297.058667pt;}
.y12a{bottom:300.429333pt;}
.y1ea{bottom:301.752533pt;}
.y14c{bottom:302.113867pt;}
.y216{bottom:302.149067pt;}
.y101{bottom:302.846533pt;}
.y175{bottom:303.408933pt;}
.y2cc{bottom:303.591867pt;}
.yd5{bottom:305.004400pt;}
.y19b{bottom:306.257467pt;}
.ya7{bottom:307.004133pt;}
.y298{bottom:308.391867pt;}
.y10{bottom:309.452000pt;}
.y264{bottom:311.458667pt;}
.y79{bottom:311.769333pt;}
.y23e{bottom:312.034667pt;}
.y129{bottom:316.425333pt;}
.y2cb{bottom:317.725200pt;}
.y1e9{bottom:317.748533pt;}
.y14b{bottom:318.109867pt;}
.y215{bottom:318.145067pt;}
.y100{bottom:318.842533pt;}
.yd4{bottom:321.000400pt;}
.y1bb{bottom:321.604267pt;}
.y19a{bottom:322.253467pt;}
.y297{bottom:322.791867pt;}
.ya6{bottom:323.000133pt;}
.y263{bottom:325.858667pt;}
.y78{bottom:327.765333pt;}
.y23d{bottom:328.030667pt;}
.y174{bottom:330.747600pt;}
.y2ca{bottom:331.858533pt;}
.y128{bottom:332.421333pt;}
.y214{bottom:332.807733pt;}
.y14a{bottom:334.105867pt;}
.yff{bottom:334.838533pt;}
.yd3{bottom:336.996400pt;}
.y296{bottom:337.191867pt;}
.y262{bottom:340.258667pt;}
.y4b{bottom:342.059600pt;}
.y77{bottom:343.761333pt;}
.yf{bottom:343.809333pt;}
.y23c{bottom:344.026667pt;}
.y2c9{bottom:345.991867pt;}
.ya5{bottom:346.559200pt;}
.y1e8{bottom:346.976933pt;}
.y127{bottom:348.417333pt;}
.y149{bottom:350.101867pt;}
.y213{bottom:350.169067pt;}
.yfe{bottom:350.834533pt;}
.y295{bottom:351.591867pt;}
.yd2{bottom:352.992400pt;}
.y1ba{bottom:354.105867pt;}
.y261{bottom:354.658667pt;}
.y199{bottom:355.054800pt;}
.y4a{bottom:358.627600pt;}
.y76{bottom:359.757333pt;}
.y23b{bottom:360.022667pt;}
.y2c8{bottom:360.125200pt;}
.ye{bottom:362.706666pt;}
.y126{bottom:364.413333pt;}
.y294{bottom:365.991867pt;}
.y212{bottom:366.165067pt;}
.yd1{bottom:368.988400pt;}
.y260{bottom:369.058667pt;}
.y1b9{bottom:370.101867pt;}
.y173{bottom:370.995333pt;}
.y198{bottom:372.270800pt;}
.y148{bottom:373.660933pt;}
.ya4{bottom:373.897733pt;}
.y2c7{bottom:374.258533pt;}
.yfd{bottom:374.393733pt;}
.y75{bottom:375.753333pt;}
.y23a{bottom:376.018667pt;}
.y49{bottom:377.435600pt;}
.y293{bottom:380.391867pt;}
.y125{bottom:380.409333pt;}
.y211{bottom:382.161067pt;}
.y25f{bottom:383.458667pt;}
.yd0{bottom:384.984400pt;}
.y172{bottom:386.991333pt;}
.y48{bottom:388.099600pt;}
.y2c6{bottom:388.391867pt;}
.y197{bottom:389.486800pt;}
.y74{bottom:391.749333pt;}
.y239{bottom:392.014667pt;}
.y292{bottom:394.791867pt;}
.y124{bottom:396.405333pt;}
.y25e{bottom:397.858667pt;}
.y210{bottom:398.157067pt;}
.ycf{bottom:400.980400pt;}
.y147{bottom:400.999467pt;}
.y2c5{bottom:402.525200pt;}
.y1b8{bottom:402.905467pt;}
.y171{bottom:402.987333pt;}
.y196{bottom:406.702800pt;}
.y45{bottom:406.942267pt;}
.y73{bottom:407.745333pt;}
.y238{bottom:408.010667pt;}
.y291{bottom:409.191867pt;}
.yfc{bottom:409.199333pt;}
.y25d{bottom:412.258667pt;}
.y123{bottom:412.401333pt;}
.ya3{bottom:414.077600pt;}
.y20f{bottom:414.153067pt;}
.y2c4{bottom:416.658533pt;}
.yce{bottom:416.976400pt;}
.y44{bottom:417.606267pt;}
.y170{bottom:418.983333pt;}
.y1b7{bottom:420.121467pt;}
.y290{bottom:423.591867pt;}
.y72{bottom:423.741333pt;}
.y195{bottom:423.918800pt;}
.y237{bottom:424.006667pt;}
.yfb{bottom:425.603333pt;}
.y25c{bottom:426.658667pt;}
.y43{bottom:428.270267pt;}
.y122{bottom:428.397333pt;}
.ya2{bottom:429.809600pt;}
.y20e{bottom:430.149067pt;}
.y2c3{bottom:430.791867pt;}
.yd{bottom:430.990669pt;}
.ycd{bottom:432.972400pt;}
.y16f{bottom:434.979333pt;}
.y1b6{bottom:437.337467pt;}
.y28f{bottom:437.991867pt;}
.y42{bottom:438.934267pt;}
.y71{bottom:439.737333pt;}
.y236{bottom:440.002667pt;}
.y25b{bottom:441.058667pt;}
.y194{bottom:441.134800pt;}
.y146{bottom:441.143333pt;}
.yfa{bottom:442.007333pt;}
.y121{bottom:444.393333pt;}
.y2c2{bottom:444.925200pt;}
.ya1{bottom:445.541600pt;}
.y20d{bottom:446.145067pt;}
.yc{bottom:446.990669pt;}
.ycc{bottom:448.968400pt;}
.y41{bottom:449.598267pt;}
.y16e{bottom:450.975333pt;}
.y28e{bottom:452.391867pt;}
.y1b5{bottom:454.553467pt;}
.y25a{bottom:455.458667pt;}
.y70{bottom:455.733333pt;}
.y235{bottom:455.998667pt;}
.y1d8{bottom:456.053067pt;}
.yf9{bottom:458.411333pt;}
.y2c1{bottom:459.058533pt;}
.y193{bottom:460.238800pt;}
.y40{bottom:460.262267pt;}
.y120{bottom:460.389333pt;}
.y20c{bottom:460.807733pt;}
.ya0{bottom:461.273600pt;}
.yb{bottom:462.990669pt;}
.ycb{bottom:464.964400pt;}
.y28d{bottom:466.791867pt;}
.y16d{bottom:466.971333pt;}
.y259{bottom:469.858667pt;}
.y3f{bottom:470.926267pt;}
.y6f{bottom:471.729333pt;}
.y1b4{bottom:471.769467pt;}
.y234{bottom:471.994667pt;}
.y1d7{bottom:472.049067pt;}
.y2c0{bottom:473.191867pt;}
.yf8{bottom:474.815333pt;}
.y11f{bottom:476.385333pt;}
.y9f{bottom:477.005600pt;}
.y20b{bottom:478.217067pt;}
.ya{bottom:478.990666pt;}
.y28c{bottom:481.191867pt;}
.y192{bottom:481.433467pt;}
.y3e{bottom:481.590267pt;}
.y16c{bottom:482.967333pt;}
.y258{bottom:484.258667pt;}
.y2bf{bottom:487.325200pt;}
.y6e{bottom:487.725333pt;}
.y233{bottom:487.990667pt;}
.y1d6{bottom:488.045067pt;}
.yca{bottom:488.523467pt;}
.y1b3{bottom:488.985467pt;}
.yf7{bottom:491.219333pt;}
.y3d{bottom:492.254267pt;}
.y11e{bottom:492.381333pt;}
.y9e{bottom:492.737600pt;}
.y20a{bottom:494.213067pt;}
.y9{bottom:494.990666pt;}
.y1e7{bottom:495.453600pt;}
.y28b{bottom:495.591867pt;}
.y191{bottom:498.649467pt;}
.y257{bottom:498.658667pt;}
.y16b{bottom:498.963333pt;}
.y2be{bottom:501.458533pt;}
.y3c{bottom:502.918267pt;}
.y6d{bottom:503.721333pt;}
.y232{bottom:503.986667pt;}
.y1d5{bottom:504.041067pt;}
.y1b2{bottom:506.201467pt;}
.yf6{bottom:507.623333pt;}
.y11d{bottom:508.377333pt;}
.y9d{bottom:508.469600pt;}
.y28a{bottom:509.991867pt;}
.y209{bottom:510.209067pt;}
.y1e6{bottom:511.449600pt;}
.y256{bottom:513.058667pt;}
.y3b{bottom:513.582267pt;}
.y16a{bottom:514.959333pt;}
.y2bd{bottom:515.591867pt;}
.y190{bottom:515.865467pt;}
.y6c{bottom:519.717333pt;}
.y231{bottom:519.982667pt;}
.y1d4{bottom:520.037067pt;}
.y1b1{bottom:523.417467pt;}
.yc9{bottom:523.497333pt;}
.yf5{bottom:524.027333pt;}
.y9c{bottom:524.201600pt;}
.y3a{bottom:524.246267pt;}
.y11c{bottom:524.373333pt;}
.y289{bottom:524.391867pt;}
.y208{bottom:526.205067pt;}
.y255{bottom:527.458667pt;}
.y2bc{bottom:529.725200pt;}
.y169{bottom:530.955333pt;}
.y18f{bottom:533.081467pt;}
.y39{bottom:534.910267pt;}
.y6b{bottom:535.713333pt;}
.y230{bottom:535.978667pt;}
.y1d3{bottom:536.033067pt;}
.y288{bottom:538.791867pt;}
.yc8{bottom:539.493333pt;}
.y9b{bottom:539.933600pt;}
.y11b{bottom:540.369333pt;}
.yf4{bottom:540.431333pt;}
.y1b0{bottom:540.633467pt;}
.y254{bottom:541.858667pt;}
.y207{bottom:542.201067pt;}
.y2bb{bottom:543.858533pt;}
.y47{bottom:544.043600pt;}
.y38{bottom:545.574267pt;}
.y1e5{bottom:545.927467pt;}
.y168{bottom:546.951333pt;}
.y18e{bottom:550.297467pt;}
.y6a{bottom:551.709333pt;}
.y22f{bottom:551.974667pt;}
.y287{bottom:553.191867pt;}
.y46{bottom:554.710267pt;}
.yc7{bottom:555.489333pt;}
.y9a{bottom:555.665600pt;}
.y37{bottom:556.238267pt;}
.y253{bottom:556.258667pt;}
.y11a{bottom:556.365333pt;}
.yf3{bottom:556.835333pt;}
.y1af{bottom:557.849467pt;}
.y2ba{bottom:557.991867pt;}
.y206{bottom:558.197067pt;}
.y167{bottom:562.947333pt;}
.y1e4{bottom:564.796800pt;}
.y36{bottom:566.902267pt;}
.y286{bottom:567.591867pt;}
.y69{bottom:567.705333pt;}
.y22e{bottom:567.970667pt;}
.y1d2{bottom:568.867467pt;}
.y18d{bottom:569.401467pt;}
.y252{bottom:570.658667pt;}
.y99{bottom:571.397600pt;}
.yc6{bottom:571.485333pt;}
.y2b9{bottom:572.125200pt;}
.y119{bottom:572.361333pt;}
.yf2{bottom:573.239333pt;}
.y8{bottom:573.786667pt;}
.y205{bottom:574.193067pt;}
.y1ae{bottom:575.065467pt;}
.y166{bottom:578.943333pt;}
.y145{bottom:580.793200pt;}
.y285{bottom:581.991867pt;}
.y1e3{bottom:583.666133pt;}
.y68{bottom:583.701333pt;}
.y22d{bottom:583.966667pt;}
.y251{bottom:585.058667pt;}
.y1d1{bottom:586.082133pt;}
.y2b8{bottom:586.258533pt;}
.y98{bottom:587.129600pt;}
.yc5{bottom:587.481333pt;}
.y118{bottom:588.357333pt;}
.y18c{bottom:588.505467pt;}
.yf1{bottom:589.643333pt;}
.y204{bottom:590.189067pt;}
.y1ad{bottom:592.281467pt;}
.y7{bottom:592.685334pt;}
.y165{bottom:594.939333pt;}
.y284{bottom:596.391867pt;}
.y35{bottom:597.558400pt;}
.y250{bottom:599.458667pt;}
.y67{bottom:599.697333pt;}
.y22c{bottom:599.962667pt;}
.y2b7{bottom:600.391867pt;}
.y97{bottom:602.861600pt;}
.y1d0{bottom:603.298133pt;}
.yc4{bottom:603.477333pt;}
.y1e2{bottom:604.231467pt;}
.y144{bottom:604.349200pt;}
.y117{bottom:604.353333pt;}
.y18b{bottom:605.721467pt;}
.yf0{bottom:606.047333pt;}
.y34{bottom:606.180400pt;}
.y203{bottom:606.185067pt;}
.y1ac{bottom:609.497467pt;}
.y283{bottom:610.791867pt;}
.y164{bottom:610.935333pt;}
.y24f{bottom:613.858667pt;}
.y2b6{bottom:614.525200pt;}
.y66{bottom:615.693333pt;}
.y22b{bottom:615.958667pt;}
.y96{bottom:618.593600pt;}
.yc3{bottom:619.473333pt;}
.y116{bottom:620.349333pt;}
.y33{bottom:620.964400pt;}
.y202{bottom:622.181067pt;}
.y1cf{bottom:622.402133pt;}
.yef{bottom:622.451333pt;}
.y18a{bottom:622.937467pt;}
.y282{bottom:625.191867pt;}
.y1ab{bottom:626.713467pt;}
.y163{bottom:626.931333pt;}
.y143{bottom:627.905200pt;}
.y24e{bottom:628.258667pt;}
.y2b5{bottom:628.658533pt;}
.y32{bottom:629.586400pt;}
.y65{bottom:631.689333pt;}
.y22a{bottom:631.954667pt;}
.y1e1{bottom:632.514800pt;}
.y95{bottom:634.325600pt;}
.yc2{bottom:635.469333pt;}
.y115{bottom:636.345333pt;}
.y201{bottom:638.177067pt;}
.yee{bottom:638.855333pt;}
.y281{bottom:639.591867pt;}
.y189{bottom:640.153467pt;}
.y24d{bottom:642.658667pt;}
.y2b4{bottom:642.791867pt;}
.y162{bottom:642.927333pt;}
.y1aa{bottom:643.929467pt;}
.y31{bottom:644.370400pt;}
.y6{bottom:645.598667pt;}
.y64{bottom:647.685333pt;}
.y229{bottom:647.950667pt;}
.y1ce{bottom:649.229467pt;}
.y94{bottom:650.057600pt;}
.y142{bottom:651.461200pt;}
.yc1{bottom:651.465333pt;}
.y114{bottom:652.341333pt;}
.y280{bottom:653.991867pt;}
.y200{bottom:654.173067pt;}
.yed{bottom:655.259333pt;}
.y30{bottom:656.073467pt;}
.y2b3{bottom:656.925200pt;}
.y24c{bottom:657.058667pt;}
.y188{bottom:657.369467pt;}
.y161{bottom:658.923333pt;}
.y1a9{bottom:661.145467pt;}
.y63{bottom:663.681333pt;}
.y228{bottom:663.946667pt;}
.y1e0{bottom:665.024400pt;}
.y93{bottom:665.789600pt;}
.y141{bottom:667.457200pt;}
.yc0{bottom:667.461333pt;}
.y113{bottom:668.337333pt;}
.y27f{bottom:668.391867pt;}
.y3{bottom:668.977329pt;}
.y1ff{bottom:670.169067pt;}
.y2b2{bottom:671.058533pt;}
.y24b{bottom:671.458667pt;}
.yec{bottom:671.663333pt;}
.y2f{bottom:673.350400pt;}
.y160{bottom:674.919333pt;}
.y187{bottom:676.473467pt;}
.y1a8{bottom:678.361467pt;}
.y62{bottom:679.677333pt;}
.y227{bottom:679.942667pt;}
.y1df{bottom:681.020400pt;}
.y92{bottom:681.521600pt;}
.y1cd{bottom:682.560133pt;}
.y27e{bottom:682.791867pt;}
.y140{bottom:683.453200pt;}
.ybf{bottom:683.457333pt;}
.y112{bottom:684.333333pt;}
.y2b1{bottom:685.191867pt;}
.y24a{bottom:685.858667pt;}
.y1fe{bottom:686.165067pt;}
.yeb{bottom:688.067333pt;}
.y15f{bottom:690.915333pt;}
.y186{bottom:695.577467pt;}
.y61{bottom:695.673333pt;}
.y226{bottom:695.938667pt;}
.y1de{bottom:697.016400pt;}
.y27d{bottom:697.191867pt;}
.y91{bottom:697.253600pt;}
.y2b0{bottom:699.325200pt;}
.y13f{bottom:699.449200pt;}
.ybe{bottom:699.453333pt;}
.y2e{bottom:699.474933pt;}
.y1cc{bottom:699.776133pt;}
.y249{bottom:700.258667pt;}
.y111{bottom:700.329333pt;}
.y1fd{bottom:702.161067pt;}
.yea{bottom:704.471333pt;}
.y15e{bottom:706.911333pt;}
.y27c{bottom:711.591867pt;}
.y60{bottom:711.669333pt;}
.y185{bottom:712.793467pt;}
.y90{bottom:712.985600pt;}
.y1dd{bottom:713.012400pt;}
.y2af{bottom:713.458533pt;}
.y13e{bottom:715.445200pt;}
.ybd{bottom:715.449333pt;}
.y2d{bottom:715.476933pt;}
.y1cb{bottom:716.992133pt;}
.y1fc{bottom:718.157067pt;}
.ye9{bottom:720.875333pt;}
.y15d{bottom:722.907333pt;}
.y225{bottom:723.277333pt;}
.y110{bottom:723.885333pt;}
.y27b{bottom:725.991867pt;}
.y248{bottom:725.997200pt;}
.y2ae{bottom:727.591867pt;}
.y5f{bottom:727.665333pt;}
.y8f{bottom:728.717600pt;}
.y184{bottom:730.009467pt;}
.y13d{bottom:731.441200pt;}
.ybc{bottom:731.445333pt;}
.y1fb{bottom:734.153067pt;}
.y1ca{bottom:736.096133pt;}
.ye8{bottom:737.279333pt;}
.y15c{bottom:738.903333pt;}
.y27a{bottom:740.391867pt;}
.y2ad{bottom:741.725200pt;}
.y5e{bottom:743.661333pt;}
.y8e{bottom:744.449600pt;}
.y1dc{bottom:745.847067pt;}
.y183{bottom:747.225467pt;}
.y13c{bottom:747.437200pt;}
.ybb{bottom:747.441333pt;}
.y1fa{bottom:750.149067pt;}
.ye7{bottom:753.683333pt;}
.y279{bottom:754.791867pt;}
.y15b{bottom:754.899333pt;}
.y2ac{bottom:755.858533pt;}
.y5d{bottom:759.657333pt;}
.y8d{bottom:760.181600pt;}
.y1c9{bottom:762.923467pt;}
.y1db{bottom:763.063067pt;}
.y13b{bottom:763.433200pt;}
.yba{bottom:763.437333pt;}
.y182{bottom:764.441467pt;}
.y1f9{bottom:766.145067pt;}
.y278{bottom:769.191867pt;}
.y2ab{bottom:769.991867pt;}
.ye6{bottom:770.087333pt;}
.y15a{bottom:770.895333pt;}
.y2c{bottom:774.803200pt;}
.y5c{bottom:775.653333pt;}
.y8c{bottom:775.913600pt;}
.y13a{bottom:779.429200pt;}
.yb9{bottom:779.433333pt;}
.y2{bottom:781.661334pt;}
.y1f8{bottom:782.141067pt;}
.y181{bottom:783.545467pt;}
.y277{bottom:783.591867pt;}
.y1da{bottom:783.623067pt;}
.y2aa{bottom:784.125200pt;}
.ye5{bottom:786.491333pt;}
.y159{bottom:786.891333pt;}
.y8b{bottom:791.645600pt;}
.y5b{bottom:791.649333pt;}
.y2b{bottom:792.191733pt;}
.y139{bottom:795.425200pt;}
.yb8{bottom:795.429333pt;}
.y4d{bottom:797.365200pt;}
.y276{bottom:797.991867pt;}
.y2a9{bottom:798.258533pt;}
.y8a{bottom:807.641600pt;}
.y5a{bottom:807.645333pt;}
.y2a{bottom:808.329067pt;}
.y1f7{bottom:809.479733pt;}
.ye4{bottom:810.450400pt;}
.y138{bottom:811.421200pt;}
.yb7{bottom:811.425333pt;}
.y1a7{bottom:811.906533pt;}
.y275{bottom:812.391867pt;}
.y4c{bottom:814.559067pt;}
.y29{bottom:824.466400pt;}
.y28{bottom:840.603733pt;}
.y89{bottom:844.017333pt;}
.y59{bottom:846.005200pt;}
.y1{bottom:859.312000pt;}
.y27{bottom:867.070800pt;}
.h13{height:21.054688pt;}
.h10{height:22.720000pt;}
.he{height:22.752000pt;}
.hc{height:24.031250pt;}
.hf{height:24.648000pt;}
.h1b{height:25.648533pt;}
.h16{height:26.133333pt;}
.hd{height:28.036458pt;}
.h14{height:28.072917pt;}
.h8{height:28.560000pt;}
.h15{height:29.625000pt;}
.h21{height:32.041667pt;}
.h25{height:32.083333pt;}
.h1c{height:33.600000pt;}
.h1f{height:34.088542pt;}
.h9{height:35.242667pt;}
.h19{height:36.046875pt;}
.h1e{height:36.093750pt;}
.h12{height:39.500000pt;}
.h22{height:39.506400pt;}
.h11{height:39.867188pt;}
.h1d{height:40.104167pt;}
.h20{height:41.968750pt;}
.h3{height:42.840000pt;}
.h18{height:44.114583pt;}
.h1a{height:44.437500pt;}
.h17{height:45.499067pt;}
.h23{height:48.488500pt;}
.h24{height:49.770833pt;}
.h7{height:50.346667pt;}
.h6{height:52.864000pt;}
.h2{height:60.416000pt;}
.h5{height:85.589333pt;}
.h4{height:105.826671pt;}
.ha{height:907.086667pt;}
.hb{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:68.381867pt;}
.xc{left:71.811067pt;}
.xe{left:75.609600pt;}
.x13{left:79.878133pt;}
.x10{left:83.149600pt;}
.x1c{left:84.602133pt;}
.x11{left:86.360667pt;}
.x26{left:88.004933pt;}
.x1{left:90.706667pt;}
.x28{left:92.898400pt;}
.x2{left:94.486667pt;}
.x29{left:98.267733pt;}
.x23{left:99.249867pt;}
.x24{left:101.649867pt;}
.x27{left:103.390933pt;}
.x25{left:105.117733pt;}
.x22{left:106.151200pt;}
.x19{left:108.228000pt;}
.x1e{left:111.071200pt;}
.x1b{left:115.787067pt;}
.x1f{left:119.679200pt;}
.x20{left:122.068533pt;}
.x18{left:122.985733pt;}
.x21{left:125.524533pt;}
.x17{left:127.316400pt;}
.x16{left:137.129733pt;}
.x14{left:165.535067pt;}
.x15{left:169.183067pt;}
.x12{left:173.094133pt;}
.x4{left:180.874667pt;}
.xf{left:208.872533pt;}
.xd{left:222.995067pt;}
.x3{left:404.408000pt;}
.xb{left:413.760533pt;}
.x6{left:434.692533pt;}
.x1a{left:488.930667pt;}
.x1d{left:496.489733pt;}
.xa{left:502.719067pt;}
.x8{left:512.018400pt;}
.x9{left:524.940400pt;}
.x7{left:532.021067pt;}
}




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