
    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_c00277a3b53b0450b0c3eb55.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_25ef752147a12fb275192499.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_bcbdb288eb99929fd84b0cdf.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_e36cc58d227779f6c4c1170b.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_fc29f485140149836c0c0c61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.808105;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_218d0f0014757b7a90fd403e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.162109;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_4fadf08287ae42539112e80b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_4c8e086837265ee22b039cb4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.975098;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_f88bc1c296af09a44abc7353.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_c913ae7c44d483e572488de4.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_8da47f722cf0c00e97a72373.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.917969;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_4c094534c102491f479d25e1.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_d4604bdc1cd17f296c3b33b3.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_85a0dc1bca799a6a3238a682.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.161621;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_0fea0fe62389a9c4117e928c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_54f650399ab9af279ed1c93c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.724121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6b4b10f635f15117f764f082.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ecdd502fc12a1de1f16bee80.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.722656;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);}
.v9{vertical-align:-13.554000px;}
.v1{vertical-align:-10.080000px;}
.v3{vertical-align:-8.945400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.008000px;}
.v6{vertical-align:5.088000px;}
.v2{vertical-align:7.145400px;}
.v7{vertical-align:15.858600px;}
.v8{vertical-align:17.784000px;}
.v4{vertical-align:30.000000px;}
.va{vertical-align:60.000000px;}
.ls22{letter-spacing:-3.264000px;}
.ls37{letter-spacing:-0.594000px;}
.ls36{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.324000px;}
.ls45{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.270000px;}
.ls39{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.192000px;}
.ls18{letter-spacing:-0.162000px;}
.ls3c{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.108000px;}
.ls3d{letter-spacing:-0.096000px;}
.ls19{letter-spacing:-0.054000px;}
.ls44{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.002400px;}
.ls23{letter-spacing:0.002700px;}
.ls3f{letter-spacing:0.048000px;}
.ls2e{letter-spacing:0.053100px;}
.ls14{letter-spacing:0.054000px;}
.ls42{letter-spacing:0.096000px;}
.ls11{letter-spacing:0.108000px;}
.ls38{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.162000px;}
.ls40{letter-spacing:0.192000px;}
.ls27{letter-spacing:0.200100px;}
.ls26{letter-spacing:0.200700px;}
.ls1{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.240000px;}
.ls30{letter-spacing:0.257100px;}
.lsd{letter-spacing:0.270000px;}
.ls34{letter-spacing:0.275700px;}
.ls43{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.324000px;}
.ls3a{letter-spacing:0.336000px;}
.ls12{letter-spacing:0.378000px;}
.ls1a{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.486000px;}
.lse{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.549126px;}
.ls8{letter-spacing:0.705012px;}
.ls20{letter-spacing:1.026000px;}
.ls1c{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.098246px;}
.ls1d{letter-spacing:1.134000px;}
.ls1b{letter-spacing:1.188000px;}
.lsa{letter-spacing:1.254012px;}
.ls9{letter-spacing:1.384812px;}
.ls1e{letter-spacing:1.404000px;}
.ls1f{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.969200px;}
.ls6{letter-spacing:1.976400px;}
.ls5{letter-spacing:1.980000px;}
.ls7{letter-spacing:2.039616px;}
.ls2{letter-spacing:2.100000px;}
.ls33{letter-spacing:2.222700px;}
.ls35{letter-spacing:3.358800px;}
.ls2d{letter-spacing:4.271400px;}
.ls24{letter-spacing:4.473300px;}
.ls29{letter-spacing:5.140800px;}
.ls31{letter-spacing:5.859000px;}
.ls32{letter-spacing:5.940000px;}
.ls2f{letter-spacing:6.048000px;}
.ls25{letter-spacing:6.096600px;}
.ls2a{letter-spacing:92.256000px;}
.ls2b{letter-spacing:321.120000px;}
.ls2c{letter-spacing:334.080000px;}
.ls4{letter-spacing:400.392000px;}
.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;}
}
.ws5{word-spacing:-22.027853px;}
.wsa6{word-spacing:-18.216000px;}
.ws6{word-spacing:-16.693430px;}
.ws72{word-spacing:-15.066000px;}
.ws99{word-spacing:-14.904000px;}
.ws75{word-spacing:-14.850000px;}
.ws23{word-spacing:-14.688000px;}
.wsa7{word-spacing:-13.200000px;}
.ws5f{word-spacing:-13.152000px;}
.wsba{word-spacing:-13.008000px;}
.wsaf{word-spacing:-12.960000px;}
.wsc4{word-spacing:-12.672000px;}
.ws5c{word-spacing:-11.550000px;}
.ws1{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.864000px;}
.wsb{word-spacing:-5.292000px;}
.ws18{word-spacing:-2.039616px;}
.ws4f{word-spacing:-1.512000px;}
.ws54{word-spacing:-1.404000px;}
.ws52{word-spacing:-1.134000px;}
.ws50{word-spacing:-1.080000px;}
.ws5d{word-spacing:-1.026000px;}
.ws44{word-spacing:-0.432000px;}
.ws45{word-spacing:-0.378000px;}
.wsb7{word-spacing:-0.336000px;}
.ws2c{word-spacing:-0.324000px;}
.wsbb{word-spacing:-0.288000px;}
.ws38{word-spacing:-0.270000px;}
.wsbf{word-spacing:-0.240000px;}
.ws32{word-spacing:-0.216000px;}
.wsbd{word-spacing:-0.192000px;}
.ws2a{word-spacing:-0.162000px;}
.wsad{word-spacing:-0.144000px;}
.ws29{word-spacing:-0.108000px;}
.wsc0{word-spacing:-0.096000px;}
.ws48{word-spacing:-0.054000px;}
.wsb9{word-spacing:-0.048000px;}
.ws3{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:0.054000px;}
.wsb3{word-spacing:0.096000px;}
.ws24{word-spacing:0.108000px;}
.wsb1{word-spacing:0.144000px;}
.ws2f{word-spacing:0.162000px;}
.wsb0{word-spacing:0.192000px;}
.ws1c{word-spacing:0.216000px;}
.wsae{word-spacing:0.240000px;}
.ws35{word-spacing:0.270000px;}
.wsc6{word-spacing:0.288000px;}
.ws37{word-spacing:0.324000px;}
.ws14{word-spacing:0.396000px;}
.wsb8{word-spacing:0.480000px;}
.ws56{word-spacing:0.540000px;}
.wsa0{word-spacing:0.594000px;}
.wsc1{word-spacing:0.624000px;}
.ws21{word-spacing:0.864000px;}
.ws47{word-spacing:0.918000px;}
.ws12{word-spacing:1.260000px;}
.ws41{word-spacing:1.296000px;}
.ws27{word-spacing:1.458000px;}
.wsf{word-spacing:1.476000px;}
.wsb5{word-spacing:1.488000px;}
.ws36{word-spacing:1.566000px;}
.wsc3{word-spacing:1.584000px;}
.ws39{word-spacing:1.674000px;}
.wsab{word-spacing:1.728000px;}
.ws40{word-spacing:1.782000px;}
.wsc5{word-spacing:1.920000px;}
.ws1b{word-spacing:1.944000px;}
.ws9{word-spacing:1.980000px;}
.ws4b{word-spacing:1.998000px;}
.ws2d{word-spacing:2.052000px;}
.wsc{word-spacing:2.106000px;}
.wsa1{word-spacing:2.160000px;}
.ws3e{word-spacing:2.268000px;}
.wsd{word-spacing:2.280000px;}
.wsa{word-spacing:2.310000px;}
.ws73{word-spacing:2.322000px;}
.ws11{word-spacing:2.376000px;}
.wsa4{word-spacing:2.538000px;}
.ws4e{word-spacing:2.640000px;}
.ws98{word-spacing:2.646000px;}
.wsbe{word-spacing:2.736000px;}
.wse{word-spacing:2.770548px;}
.ws4d{word-spacing:2.805000px;}
.ws9e{word-spacing:2.808000px;}
.wsa8{word-spacing:2.862000px;}
.ws1e{word-spacing:2.970000px;}
.wsb2{word-spacing:2.976000px;}
.ws4c{word-spacing:3.078000px;}
.ws34{word-spacing:3.186000px;}
.wsb4{word-spacing:3.312000px;}
.wsac{word-spacing:3.348000px;}
.ws9f{word-spacing:3.402000px;}
.ws8{word-spacing:3.492000px;}
.ws8a{word-spacing:3.510000px;}
.ws49{word-spacing:3.564000px;}
.ws1a{word-spacing:3.726000px;}
.ws16{word-spacing:3.744000px;}
.ws67{word-spacing:3.780000px;}
.ws3f{word-spacing:3.942000px;}
.wsaa{word-spacing:3.996000px;}
.wsa3{word-spacing:4.050000px;}
.ws33{word-spacing:4.104000px;}
.ws74{word-spacing:4.158000px;}
.ws10{word-spacing:4.176000px;}
.ws7{word-spacing:4.248000px;}
.ws96{word-spacing:4.266000px;}
.ws3b{word-spacing:4.428000px;}
.ws28{word-spacing:4.482000px;}
.ws26{word-spacing:4.590000px;}
.ws55{word-spacing:4.644000px;}
.ws17{word-spacing:4.680000px;}
.ws42{word-spacing:4.698000px;}
.ws46{word-spacing:4.752000px;}
.ws3a{word-spacing:4.914000px;}
.ws43{word-spacing:5.076000px;}
.ws8b{word-spacing:5.130000px;}
.ws97{word-spacing:5.184000px;}
.wsbc{word-spacing:5.232000px;}
.ws30{word-spacing:5.238000px;}
.wsc2{word-spacing:5.280000px;}
.wsa9{word-spacing:5.346000px;}
.ws5e{word-spacing:5.562000px;}
.ws53{word-spacing:5.616000px;}
.ws25{word-spacing:5.670000px;}
.ws51{word-spacing:5.724000px;}
.wsa2{word-spacing:5.832000px;}
.wsb6{word-spacing:5.856000px;}
.ws1d{word-spacing:5.886000px;}
.ws19{word-spacing:5.940000px;}
.ws3c{word-spacing:6.210000px;}
.ws15{word-spacing:6.372000px;}
.ws3d{word-spacing:6.426000px;}
.ws2b{word-spacing:6.696000px;}
.ws2e{word-spacing:6.858000px;}
.ws31{word-spacing:7.776000px;}
.ws13{word-spacing:7.812000px;}
.ws1f{word-spacing:8.208000px;}
.ws85{word-spacing:66.192000px;}
.ws94{word-spacing:114.576000px;}
.ws7a{word-spacing:132.576000px;}
.ws7d{word-spacing:142.560000px;}
.ws9c{word-spacing:144.576000px;}
.ws93{word-spacing:144.624000px;}
.ws77{word-spacing:149.332800px;}
.ws71{word-spacing:153.984000px;}
.ws91{word-spacing:174.624000px;}
.ws9a{word-spacing:176.688000px;}
.ws76{word-spacing:176.784000px;}
.ws9b{word-spacing:180.000000px;}
.ws90{word-spacing:182.064000px;}
.ws92{word-spacing:182.784000px;}
.ws6f{word-spacing:184.032000px;}
.ws8f{word-spacing:184.800000px;}
.ws8e{word-spacing:188.784000px;}
.ws8d{word-spacing:190.219200px;}
.ws82{word-spacing:190.224000px;}
.ws84{word-spacing:191.856000px;}
.ws79{word-spacing:192.384000px;}
.ws8c{word-spacing:192.576000px;}
.ws95{word-spacing:197.904000px;}
.ws9d{word-spacing:198.816000px;}
.ws6d{word-spacing:201.120000px;}
.ws7e{word-spacing:203.184000px;}
.ws88{word-spacing:204.768000px;}
.ws64{word-spacing:213.600000px;}
.ws60{word-spacing:214.032000px;}
.ws70{word-spacing:216.096000px;}
.ws6c{word-spacing:221.472000px;}
.ws6e{word-spacing:222.192000px;}
.ws6b{word-spacing:224.208000px;}
.ws6a{word-spacing:228.144000px;}
.ws69{word-spacing:229.627200px;}
.ws7f{word-spacing:231.552000px;}
.ws68{word-spacing:231.984000px;}
.ws78{word-spacing:239.424000px;}
.ws7b{word-spacing:242.784000px;}
.ws80{word-spacing:243.792000px;}
.ws81{word-spacing:254.784000px;}
.ws7c{word-spacing:277.728000px;}
.wsa5{word-spacing:305.485800px;}
.ws83{word-spacing:313.440000px;}
.ws22{word-spacing:319.957800px;}
.ws57{word-spacing:321.096000px;}
.ws5b{word-spacing:438.816000px;}
.ws58{word-spacing:460.896000px;}
.ws86{word-spacing:534.096000px;}
.ws63{word-spacing:535.296000px;}
.ws89{word-spacing:541.968000px;}
.ws87{word-spacing:546.336000px;}
.ws61{word-spacing:833.568000px;}
.ws4a{word-spacing:873.552000px;}
.ws5a{word-spacing:1016.899200px;}
.ws62{word-spacing:1145.904000px;}
.ws66{word-spacing:1458.144000px;}
.ws59{word-spacing:1598.736000px;}
.ws65{word-spacing:1762.320000px;}
._a{margin-left:-26.628000px;}
._b{margin-left:-6.029272px;}
._0{margin-left:-4.237800px;}
._3{margin-left:-2.718000px;}
._2{margin-left:-1.170000px;}
._7{width:1.040400px;}
._4{width:2.755436px;}
._8{width:4.669200px;}
._9{width:5.878800px;}
._1{width:7.250400px;}
._d{width:8.641800px;}
._3b{width:50.304000px;}
._6{width:59.509213px;}
._5{width:85.027391px;}
._24{width:97.612564px;}
._2e{width:116.236564px;}
._26{width:119.376000px;}
._23{width:120.478820px;}
._3f{width:127.728000px;}
._25{width:144.672000px;}
._27{width:155.472000px;}
._35{width:157.776000px;}
._34{width:188.352000px;}
._33{width:189.840000px;}
._2d{width:192.576000px;}
._32{width:193.776000px;}
._1b{width:196.560000px;}
._2a{width:203.376000px;}
._2c{width:205.536000px;}
._31{width:216.945364px;}
._1a{width:227.184000px;}
._19{width:233.184000px;}
._29{width:267.168000px;}
._28{width:280.848000px;}
._2b{width:290.112000px;}
._2f{width:308.208000px;}
._e{width:313.170256px;}
._30{width:321.120000px;}
._13{width:365.268256px;}
._17{width:426.144000px;}
._36{width:436.386256px;}
._14{width:488.802000px;}
._3e{width:493.152000px;}
._11{width:503.874256px;}
._18{width:516.000000px;}
._f{width:517.920000px;}
._15{width:544.608000px;}
._1c{width:545.874256px;}
._10{width:583.710000px;}
._16{width:616.453692px;}
._12{width:677.557692px;}
._1d{width:763.500600px;}
._37{width:807.228600px;}
._40{width:848.892000px;}
._1f{width:896.654420px;}
._20{width:907.502420px;}
._43{width:915.303492px;}
._c{width:929.774892px;}
._1e{width:969.790820px;}
._41{width:975.470420px;}
._3a{width:986.318420px;}
._39{width:989.662820px;}
._38{width:1048.606820px;}
._21{width:1196.889128px;}
._22{width:1223.433128px;}
._3c{width:1228.156564px;}
._42{width:1275.705128px;}
._3d{width:1302.249128px;}
.fc5{color:rgb(105,62,21);}
.fc4{color:rgb(150,109,66);}
.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);}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fsf{font-size:40.500000px;}
.fs4{font-size:42.000000px;}
.fse{font-size:48.000000px;}
.fs7{font-size:50.373600px;}
.fsd{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:54.912600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs8{font-size:67.987200px;}
.fs9{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;}
.y227{bottom:83.827650px;}
.y84{bottom:86.224650px;}
.yb2{bottom:86.909550px;}
.y209{bottom:92.203800px;}
.y164{bottom:93.394650px;}
.y158{bottom:95.868750px;}
.y1b8{bottom:96.690300px;}
.y4{bottom:97.125005px;}
.y1d6{bottom:97.306800px;}
.y268{bottom:98.967000px;}
.y24f{bottom:99.016500px;}
.y26{bottom:100.243950px;}
.y226{bottom:101.863500px;}
.y135{bottom:102.471450px;}
.ye0{bottom:103.051350px;}
.y83{bottom:104.220150px;}
.yb1{bottom:104.905050px;}
.y2b4{bottom:105.440850px;}
.y193{bottom:106.614900px;}
.y282{bottom:107.295600px;}
.y208{bottom:110.199300px;}
.y163{bottom:111.390150px;}
.y157{bottom:113.864250px;}
.y10a{bottom:113.950650px;}
.y1b7{bottom:114.685800px;}
.y1d5{bottom:115.302300px;}
.y267{bottom:116.962500px;}
.y24e{bottom:117.012000px;}
.y225{bottom:119.859000px;}
.y2e5{bottom:120.140850px;}
.y134{bottom:120.466950px;}
.ydf{bottom:121.046850px;}
.y2b3{bottom:121.940850px;}
.y82{bottom:122.215650px;}
.yb0{bottom:122.900550px;}
.y281{bottom:123.495600px;}
.y192{bottom:128.050650px;}
.y207{bottom:128.194800px;}
.y162{bottom:129.385650px;}
.y156{bottom:131.859750px;}
.y1b6{bottom:132.681300px;}
.y1d4{bottom:133.297800px;}
.y266{bottom:134.958000px;}
.y24d{bottom:135.007500px;}
.y2e4{bottom:136.340850px;}
.y109{bottom:137.578650px;}
.y224{bottom:137.854500px;}
.y2b2{bottom:138.440850px;}
.y133{bottom:138.462450px;}
.yde{bottom:139.042350px;}
.y22{bottom:139.264499px;}
.y280{bottom:139.695600px;}
.y81{bottom:140.211150px;}
.yaf{bottom:140.896050px;}
.y57{bottom:141.121350px;}
.y206{bottom:146.190300px;}
.y161{bottom:147.381150px;}
.y191{bottom:147.418650px;}
.y155{bottom:149.855250px;}
.y1b5{bottom:150.676800px;}
.y1d3{bottom:151.293300px;}
.y2e3{bottom:152.540850px;}
.y107{bottom:152.578650px;}
.y265{bottom:152.953500px;}
.y24c{bottom:153.003000px;}
.y2b1{bottom:154.940850px;}
.y223{bottom:155.850000px;}
.y27f{bottom:155.895600px;}
.y132{bottom:156.457950px;}
.ydd{bottom:157.037850px;}
.y80{bottom:158.206650px;}
.yae{bottom:158.891550px;}
.y56{bottom:159.116850px;}
.y205{bottom:164.185800px;}
.y160{bottom:165.376650px;}
.y190{bottom:166.786650px;}
.y108{bottom:167.578650px;}
.y154{bottom:167.850750px;}
.y1b4{bottom:168.672300px;}
.y2e2{bottom:168.740850px;}
.y1d2{bottom:169.288800px;}
.y264{bottom:170.949000px;}
.y24b{bottom:170.998500px;}
.y2b0{bottom:171.440850px;}
.y27e{bottom:172.095600px;}
.y222{bottom:173.845500px;}
.y131{bottom:174.453450px;}
.ydc{bottom:175.033350px;}
.y7f{bottom:176.202150px;}
.yad{bottom:176.887050px;}
.y55{bottom:177.112350px;}
.y15f{bottom:183.372150px;}
.y204{bottom:183.679800px;}
.y2e1{bottom:184.940850px;}
.y153{bottom:185.846250px;}
.y18f{bottom:186.154650px;}
.y1b3{bottom:186.667800px;}
.y1d1{bottom:187.284300px;}
.y2af{bottom:187.940850px;}
.y27d{bottom:188.295600px;}
.y263{bottom:188.944500px;}
.y24a{bottom:188.994000px;}
.y106{bottom:189.070650px;}
.y221{bottom:191.841000px;}
.y130{bottom:192.448950px;}
.ydb{bottom:193.028850px;}
.y7e{bottom:194.197650px;}
.yac{bottom:194.882550px;}
.y54{bottom:195.107850px;}
.y19{bottom:196.933500px;}
.y2e0{bottom:201.140850px;}
.y15e{bottom:201.367650px;}
.y203{bottom:203.203800px;}
.y152{bottom:203.841750px;}
.y105{bottom:204.070650px;}
.y2ae{bottom:204.440850px;}
.y27c{bottom:204.495600px;}
.y1b2{bottom:204.717300px;}
.y1d0{bottom:205.279800px;}
.y18e{bottom:205.522650px;}
.y262{bottom:206.940000px;}
.y249{bottom:206.989500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y220{bottom:209.836500px;}
.y12f{bottom:210.444450px;}
.yda{bottom:211.024350px;}
.y102{bottom:211.570650px;}
.y7d{bottom:212.193150px;}
.yab{bottom:212.878050px;}
.y53{bottom:213.103350px;}
.y2df{bottom:217.340850px;}
.y104{bottom:219.070650px;}
.y15d{bottom:219.363150px;}
.y27b{bottom:220.695600px;}
.y2ad{bottom:220.940850px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y202{bottom:222.697800px;}
.y1b1{bottom:222.712800px;}
.y1cf{bottom:223.275300px;}
.y151{bottom:223.335750px;}
.y18d{bottom:224.886000px;}
.y261{bottom:224.935500px;}
.y248{bottom:224.985000px;}
.y21f{bottom:227.832000px;}
.y12e{bottom:228.439950px;}
.yd9{bottom:229.019850px;}
.y7c{bottom:230.188650px;}
.yaa{bottom:230.873550px;}
.y52{bottom:231.098850px;}
.y2de{bottom:233.540850px;}
.y103{bottom:234.070650px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y27a{bottom:236.895600px;}
.y15c{bottom:237.358650px;}
.y2ac{bottom:237.440850px;}
.y1b0{bottom:240.708300px;}
.y1ce{bottom:241.270800px;}
.y201{bottom:242.191800px;}
.y150{bottom:242.829750px;}
.y260{bottom:242.931000px;}
.y247{bottom:242.980500px;}
.y21e{bottom:245.827500px;}
.y18c{bottom:246.378000px;}
.y12d{bottom:246.435450px;}
.yd8{bottom:247.015350px;}
.y7b{bottom:248.184150px;}
.ya9{bottom:248.869050px;}
.y51{bottom:249.094350px;}
.y2dd{bottom:249.740850px;}
.y279{bottom:253.095600px;}
.y2ab{bottom:253.940850px;}
.y15b{bottom:255.354150px;}
.y101{bottom:257.686650px;}
.y1af{bottom:258.703800px;}
.y1cd{bottom:259.266300px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y246{bottom:260.976000px;}
.y200{bottom:261.685800px;}
.y14f{bottom:262.323750px;}
.y21d{bottom:263.823000px;}
.y12c{bottom:264.430950px;}
.yd7{bottom:265.010850px;}
.y2dc{bottom:265.940850px;}
.y7a{bottom:266.179650px;}
.ya8{bottom:266.864550px;}
.y50{bottom:267.089850px;}
.y18b{bottom:267.870000px;}
.y278{bottom:269.295600px;}
.y2aa{bottom:270.440850px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y15a{bottom:273.349650px;}
.y25f{bottom:273.687000px;}
.y1ae{bottom:276.699300px;}
.y1cc{bottom:277.261800px;}
.y245{bottom:278.971500px;}
.y1ff{bottom:281.179800px;}
.y14e{bottom:281.817750px;}
.y2db{bottom:282.140850px;}
.y12b{bottom:282.426450px;}
.yd6{bottom:283.006350px;}
.y79{bottom:284.175150px;}
.ya7{bottom:284.860050px;}
.y4f{bottom:285.085350px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y277{bottom:285.495600px;}
.y2a9{bottom:286.940850px;}
.y18a{bottom:287.238000px;}
.y100{bottom:287.867250px;}
.y21c{bottom:294.579000px;}
.y1ad{bottom:294.694800px;}
.y1cb{bottom:295.257300px;}
.y244{bottom:296.967000px;}
.y159{bottom:297.730650px;}
.y2da{bottom:298.340850px;}
.y12a{bottom:300.421950px;}
.y1fe{bottom:300.673800px;}
.yd5{bottom:301.001850px;}
.y14d{bottom:301.311750px;}
.y276{bottom:301.695600px;}
.ya6{bottom:302.855550px;}
.y4e{bottom:303.080850px;}
.y2a8{bottom:303.440850px;}
.y189{bottom:306.606000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y78{bottom:310.679100px;}
.y1ac{bottom:312.690300px;}
.y2d9{bottom:314.540850px;}
.y243{bottom:314.962500px;}
.y275{bottom:317.895600px;}
.y129{bottom:318.417450px;}
.yd4{bottom:318.997350px;}
.y25e{bottom:319.002000px;}
.y2a7{bottom:319.940850px;}
.y21b{bottom:320.266650px;}
.y14c{bottom:320.805750px;}
.ya5{bottom:320.851050px;}
.y4d{bottom:321.076350px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yff{bottom:324.467700px;}
.y188{bottom:325.974000px;}
.y1ca{bottom:326.013150px;}
.y1ab{bottom:330.685800px;}
.y2d8{bottom:330.740850px;}
.y1fd{bottom:332.929650px;}
.y242{bottom:332.958000px;}
.y274{bottom:334.095600px;}
.y128{bottom:336.412950px;}
.y2a6{bottom:336.440850px;}
.yd3{bottom:336.992850px;}
.y25d{bottom:336.997500px;}
.ya4{bottom:338.846550px;}
.y4c{bottom:339.071850px;}
.y21a{bottom:339.634650px;}
.y14b{bottom:340.299750px;}
.y77{bottom:341.434950px;}
.yfe{bottom:342.463200px;}
.y184{bottom:345.416100px;}
.y2d7{bottom:346.940850px;}
.y1c9{bottom:347.453250px;}
.y187{bottom:347.466000px;}
.y10{bottom:348.133500px;}
.y1aa{bottom:348.681300px;}
.y273{bottom:350.295600px;}
.y241{bottom:350.953500px;}
.y2a5{bottom:352.940850px;}
.y1fc{bottom:354.365400px;}
.y127{bottom:354.408450px;}
.yd2{bottom:354.988350px;}
.y25c{bottom:354.993000px;}
.ya3{bottom:356.842050px;}
.y4b{bottom:357.067350px;}
.y219{bottom:359.002650px;}
.yfd{bottom:360.458700px;}
.y2d6{bottom:363.140850px;}
.y272{bottom:366.495600px;}
.y1a9{bottom:366.676800px;}
.y183{bottom:366.828000px;}
.y1c8{bottom:367.337250px;}
.y240{bottom:368.949000px;}
.y2a4{bottom:369.440850px;}
.y126{bottom:372.403950px;}
.yd1{bottom:372.983850px;}
.y25b{bottom:372.988500px;}
.y1fb{bottom:373.733400px;}
.ya2{bottom:374.837550px;}
.y4a{bottom:375.062850px;}
.y14a{bottom:376.807650px;}
.y186{bottom:377.652300px;}
.y218{bottom:378.370650px;}
.yfc{bottom:378.454200px;}
.y2d5{bottom:379.340850px;}
.y271{bottom:382.695600px;}
.y1a8{bottom:384.672300px;}
.y2a3{bottom:385.940850px;}
.y182{bottom:386.196000px;}
.y76{bottom:386.727300px;}
.yf{bottom:386.785499px;}
.y23f{bottom:386.944500px;}
.y1c7{bottom:387.221250px;}
.y125{bottom:390.399450px;}
.yd0{bottom:390.979350px;}
.y25a{bottom:390.984000px;}
.ya1{bottom:392.833050px;}
.y49{bottom:393.058350px;}
.y1fa{bottom:393.101400px;}
.y2d4{bottom:395.540850px;}
.yfb{bottom:396.449700px;}
.y217{bottom:397.738650px;}
.y149{bottom:398.230050px;}
.y270{bottom:398.895600px;}
.y2a2{bottom:402.440850px;}
.y1a7{bottom:402.667800px;}
.y75{bottom:404.722800px;}
.y23e{bottom:404.940000px;}
.y181{bottom:405.564000px;}
.y1c6{bottom:407.105250px;}
.ye{bottom:408.044999px;}
.y124{bottom:408.394950px;}
.ycf{bottom:408.974850px;}
.y259{bottom:408.979500px;}
.y2d3{bottom:411.740850px;}
.y1f9{bottom:412.469400px;}
.yfa{bottom:414.445200px;}
.y216{bottom:417.100350px;}
.y148{bottom:417.598050px;}
.y2a1{bottom:418.940850px;}
.ya0{bottom:419.337000px;}
.y1a6{bottom:420.681300px;}
.y74{bottom:422.718300px;}
.y23d{bottom:422.935500px;}
.y48{bottom:423.814200px;}
.y180{bottom:424.932000px;}
.y123{bottom:426.390450px;}
.yce{bottom:426.970350px;}
.y258{bottom:426.975000px;}
.y26f{bottom:427.851600px;}
.y2d2{bottom:427.940850px;}
.y1c5{bottom:429.113250px;}
.y1f8{bottom:431.837400px;}
.yf9{bottom:432.440700px;}
.y185{bottom:435.422550px;}
.y2a0{bottom:435.440850px;}
.y1c4{bottom:436.613250px;}
.y147{bottom:436.966050px;}
.y215{bottom:438.592350px;}
.y1a5{bottom:438.676800px;}
.y73{bottom:440.713800px;}
.y23c{bottom:440.931000px;}
.y2d1{bottom:444.140850px;}
.y17f{bottom:444.300000px;}
.y122{bottom:444.385950px;}
.ycd{bottom:444.965850px;}
.y257{bottom:444.970500px;}
.yf8{bottom:450.436200px;}
.y1f7{bottom:451.216350px;}
.y29f{bottom:451.940850px;}
.y146{bottom:456.334050px;}
.y1a4{bottom:456.672300px;}
.y72{bottom:458.709300px;}
.y9f{bottom:458.713500px;}
.y214{bottom:460.084350px;}
.y2d0{bottom:460.340850px;}
.y121{bottom:462.381450px;}
.ycc{bottom:462.961350px;}
.y256{bottom:462.966000px;}
.y17e{bottom:463.668000px;}
.y1c3{bottom:467.729250px;}
.yf7{bottom:468.431700px;}
.y29e{bottom:468.440850px;}
.y45{bottom:469.890450px;}
.y23b{bottom:471.687000px;}
.y1f6{bottom:472.708350px;}
.y26e{bottom:473.017800px;}
.y1a3{bottom:474.667800px;}
.y1c2{bottom:475.229250px;}
.y145{bottom:475.702050px;}
.y2cf{bottom:476.540850px;}
.y71{bottom:476.704800px;}
.y9e{bottom:476.709000px;}
.y213{bottom:479.452350px;}
.y120{bottom:480.376950px;}
.ycb{bottom:480.956850px;}
.y255{bottom:480.961500px;}
.y17d{bottom:483.036000px;}
.yd{bottom:484.864502px;}
.y29d{bottom:484.940850px;}
.yf6{bottom:486.427200px;}
.y44{bottom:488.527650px;}
.y26d{bottom:491.013300px;}
.y1a2{bottom:492.676800px;}
.y2ce{bottom:492.740850px;}
.y1f5{bottom:494.200350px;}
.y70{bottom:494.700300px;}
.y9d{bottom:494.704500px;}
.y144{bottom:495.070050px;}
.y212{bottom:498.820350px;}
.yca{bottom:498.952350px;}
.y254{bottom:498.957000px;}
.y29c{bottom:501.440850px;}
.y17c{bottom:502.404000px;}
.yc{bottom:502.864502px;}
.y11f{bottom:504.757950px;}
.y2cd{bottom:508.940850px;}
.y43{bottom:509.686650px;}
.y1a1{bottom:510.672300px;}
.y6f{bottom:512.695800px;}
.y9c{bottom:512.700000px;}
.y1c1{bottom:512.910000px;}
.yf5{bottom:512.931000px;}
.y1f4{bottom:514.084350px;}
.y143{bottom:514.438050px;}
.y23a{bottom:516.893850px;}
.yc9{bottom:516.947850px;}
.y253{bottom:516.952500px;}
.y29b{bottom:517.940850px;}
.y211{bottom:518.188350px;}
.yb{bottom:520.864502px;}
.y42{bottom:521.683650px;}
.y26c{bottom:521.769300px;}
.y17b{bottom:521.772000px;}
.y2cc{bottom:525.140850px;}
.y1c0{bottom:528.210000px;}
.y1a0{bottom:528.667800px;}
.y11e{bottom:529.761900px;}
.y6e{bottom:530.691300px;}
.y9b{bottom:530.695500px;}
.y142{bottom:533.806050px;}
.y1f3{bottom:534.328350px;}
.y29a{bottom:534.440850px;}
.y239{bottom:534.889350px;}
.yc8{bottom:534.943350px;}
.y252{bottom:534.948000px;}
.y210{bottom:537.556350px;}
.ya{bottom:538.864499px;}
.y17a{bottom:541.140000px;}
.y2cb{bottom:541.340850px;}
.y3f{bottom:542.881650px;}
.yf4{bottom:543.687000px;}
.y19f{bottom:546.672300px;}
.y6d{bottom:548.686800px;}
.y9a{bottom:548.691000px;}
.y299{bottom:550.940850px;}
.y238{bottom:552.884850px;}
.yc7{bottom:552.938850px;}
.y251{bottom:552.943500px;}
.y141{bottom:553.174050px;}
.y1f2{bottom:554.056350px;}
.y3e{bottom:554.878650px;}
.y9{bottom:556.864499px;}
.y2ca{bottom:557.540850px;}
.y20f{bottom:559.048350px;}
.y179{bottom:560.508000px;}
.y19e{bottom:564.667800px;}
.y1bf{bottom:564.778800px;}
.y6c{bottom:566.682300px;}
.y99{bottom:566.686500px;}
.y3d{bottom:566.875650px;}
.y26b{bottom:566.935500px;}
.y298{bottom:567.440850px;}
.y237{bottom:570.880350px;}
.yc6{bottom:570.934350px;}
.y250{bottom:570.939000px;}
.y140{bottom:572.542050px;}
.y1f1{bottom:573.484350px;}
.y2c9{bottom:573.740850px;}
.y3c{bottom:578.872650px;}
.y11d{bottom:579.726600px;}
.y178{bottom:579.876000px;}
.y19d{bottom:582.663300px;}
.y1be{bottom:582.774300px;}
.y297{bottom:583.940850px;}
.y6b{bottom:584.677800px;}
.y98{bottom:584.682000px;}
.y26a{bottom:584.931000px;}
.y236{bottom:588.875850px;}
.yc5{bottom:588.929850px;}
.yf3{bottom:588.934500px;}
.y20e{bottom:589.229100px;}
.y2c8{bottom:589.940850px;}
.y3b{bottom:590.869650px;}
.y13f{bottom:591.910050px;}
.y1f0{bottom:595.048350px;}
.y177{bottom:599.244000px;}
.y11c{bottom:600.354600px;}
.y296{bottom:600.440850px;}
.y1bd{bottom:600.787500px;}
.y6a{bottom:602.673300px;}
.y97{bottom:602.677500px;}
.y3a{bottom:602.866650px;}
.y20d{bottom:604.529100px;}
.y2c7{bottom:606.140850px;}
.y235{bottom:606.871350px;}
.yc4{bottom:606.925350px;}
.yf2{bottom:606.930000px;}
.y11b{bottom:607.854600px;}
.y19c{bottom:609.167250px;}
.y13e{bottom:611.278050px;}
.y39{bottom:614.863650px;}
.y269{bottom:615.687000px;}
.y295{bottom:616.940850px;}
.y176{bottom:618.612000px;}
.y1bc{bottom:618.783000px;}
.y69{bottom:620.668800px;}
.y96{bottom:620.673000px;}
.y2c6{bottom:622.340850px;}
.y234{bottom:624.866850px;}
.yc3{bottom:624.920850px;}
.yf1{bottom:624.925500px;}
.y1ef{bottom:625.229100px;}
.y38{bottom:626.860650px;}
.y13d{bottom:630.646050px;}
.y294{bottom:633.440850px;}
.y11a{bottom:634.902600px;}
.y1bb{bottom:636.778500px;}
.y175{bottom:637.980000px;}
.y2c5{bottom:638.540850px;}
.y68{bottom:638.664300px;}
.y95{bottom:638.668500px;}
.y37{bottom:638.857650px;}
.y1ee{bottom:640.529100px;}
.y20c{bottom:641.139000px;}
.y233{bottom:642.862350px;}
.yc2{bottom:642.916350px;}
.yf0{bottom:642.921000px;}
.y8{bottom:645.510000px;}
.y19b{bottom:648.449700px;}
.y293{bottom:649.940850px;}
.y13c{bottom:650.014050px;}
.y36{bottom:650.854650px;}
.y2c4{bottom:654.740850px;}
.y1ba{bottom:654.774000px;}
.y119{bottom:654.930600px;}
.y67{bottom:656.659800px;}
.y94{bottom:656.664000px;}
.y174{bottom:657.348000px;}
.y20b{bottom:659.134500px;}
.y232{bottom:660.857850px;}
.yc1{bottom:660.911850px;}
.yef{bottom:660.916500px;}
.y35{bottom:662.851650px;}
.y292{bottom:666.440850px;}
.y19a{bottom:666.445200px;}
.y7{bottom:666.771000px;}
.y13b{bottom:669.382050px;}
.y2c3{bottom:670.940850px;}
.y1b9{bottom:672.769500px;}
.y66{bottom:674.655300px;}
.y93{bottom:674.659500px;}
.y118{bottom:674.778600px;}
.y34{bottom:674.848650px;}
.y173{bottom:676.716000px;}
.y1ed{bottom:677.116350px;}
.y231{bottom:678.853350px;}
.yc0{bottom:678.907350px;}
.yee{bottom:678.912000px;}
.y117{bottom:682.278600px;}
.y291{bottom:682.940850px;}
.y20a{bottom:683.515500px;}
.y199{bottom:684.440700px;}
.y41{bottom:685.123650px;}
.y33{bottom:686.845650px;}
.y2c2{bottom:687.140850px;}
.y13a{bottom:690.874050px;}
.y65{bottom:692.650800px;}
.y92{bottom:692.655000px;}
.y1ec{bottom:695.111850px;}
.y172{bottom:696.084000px;}
.y230{bottom:696.857850px;}
.ybf{bottom:696.902850px;}
.yed{bottom:696.907500px;}
.y40{bottom:697.123650px;}
.y32{bottom:698.842650px;}
.y290{bottom:699.440850px;}
.y1e3{bottom:700.749900px;}
.y198{bottom:702.436200px;}
.y2c1{bottom:703.340850px;}
.y116{bottom:709.146600px;}
.y64{bottom:710.646300px;}
.y91{bottom:710.650500px;}
.y31{bottom:710.839650px;}
.y1eb{bottom:713.107350px;}
.y138{bottom:714.490050px;}
.y22f{bottom:714.853350px;}
.ybe{bottom:714.898350px;}
.yec{bottom:714.903000px;}
.y171{bottom:715.452000px;}
.y28f{bottom:715.940850px;}
.y115{bottom:716.646600px;}
.y2c0{bottom:719.540850px;}
.y197{bottom:720.431700px;}
.y1e2{bottom:722.186100px;}
.y6{bottom:726.298500px;}
.y63{bottom:728.641800px;}
.y90{bottom:728.646000px;}
.y1ea{bottom:731.102850px;}
.y28e{bottom:732.440850px;}
.y22e{bottom:732.848850px;}
.ybd{bottom:732.893850px;}
.yeb{bottom:732.898500px;}
.y170{bottom:734.820000px;}
.y2bf{bottom:735.740850px;}
.y30{bottom:737.135550px;}
.y139{bottom:738.106050px;}
.y196{bottom:738.427200px;}
.y1e1{bottom:742.070100px;}
.y114{bottom:743.766600px;}
.y62{bottom:746.637300px;}
.y8f{bottom:746.641500px;}
.y28d{bottom:748.940850px;}
.y1e9{bottom:749.098350px;}
.y22d{bottom:750.875850px;}
.ybc{bottom:750.889350px;}
.yea{bottom:750.894000px;}
.y2be{bottom:751.940850px;}
.y3{bottom:752.599495px;}
.y16f{bottom:754.188000px;}
.y2f{bottom:760.037250px;}
.y1e0{bottom:761.954100px;}
.y113{bottom:763.386600px;}
.y61{bottom:764.632800px;}
.y8e{bottom:764.637000px;}
.y195{bottom:764.931000px;}
.y28c{bottom:765.440850px;}
.y1e8{bottom:767.093850px;}
.y2bd{bottom:768.140850px;}
.y137{bottom:768.288900px;}
.y22c{bottom:768.871350px;}
.ybb{bottom:768.884850px;}
.ye9{bottom:768.889500px;}
.y112{bottom:770.886600px;}
.y16e{bottom:775.680000px;}
.y1df{bottom:781.838100px;}
.y28b{bottom:781.940850px;}
.y60{bottom:782.628300px;}
.y8d{bottom:782.632500px;}
.y2bc{bottom:784.340850px;}
.y22b{bottom:786.866850px;}
.yba{bottom:786.880350px;}
.ye8{bottom:786.885000px;}
.y2e{bottom:789.422550px;}
.y1e7{bottom:791.474850px;}
.y194{bottom:795.687000px;}
.y111{bottom:797.754600px;}
.y28a{bottom:798.440850px;}
.y16d{bottom:799.296000px;}
.y2bb{bottom:800.540850px;}
.y5f{bottom:800.623800px;}
.y8c{bottom:800.628000px;}
.y1de{bottom:801.722100px;}
.y22a{bottom:804.862350px;}
.yb9{bottom:804.875850px;}
.ye7{bottom:804.880500px;}
.y2d{bottom:805.457550px;}
.y16b{bottom:806.796000px;}
.y167{bottom:814.296000px;}
.y289{bottom:814.940850px;}
.y1dd{bottom:816.722100px;}
.y2ba{bottom:816.740850px;}
.y110{bottom:817.122600px;}
.y5e{bottom:818.619300px;}
.y8b{bottom:818.623500px;}
.y16a{bottom:821.796000px;}
.y229{bottom:822.857850px;}
.y1e6{bottom:822.862350px;}
.yb8{bottom:822.871350px;}
.ye6{bottom:822.876000px;}
.y166{bottom:829.296000px;}
.y288{bottom:831.440850px;}
.y1dc{bottom:831.722100px;}
.y10f{bottom:832.122600px;}
.y2b9{bottom:832.940850px;}
.y5d{bottom:836.614800px;}
.y8a{bottom:836.619000px;}
.y169{bottom:836.796000px;}
.y10c{bottom:839.622600px;}
.y228{bottom:840.853350px;}
.y1e5{bottom:840.857850px;}
.yb7{bottom:840.866850px;}
.ye5{bottom:840.871500px;}
.y16c{bottom:844.296000px;}
.y10e{bottom:847.122600px;}
.y287{bottom:847.940850px;}
.y2b8{bottom:849.140850px;}
.y1d9{bottom:853.214100px;}
.y5c{bottom:854.610300px;}
.y89{bottom:854.614500px;}
.y1e4{bottom:858.853350px;}
.yb6{bottom:858.862350px;}
.ye4{bottom:858.867000px;}
.y1db{bottom:860.714100px;}
.y10d{bottom:862.122600px;}
.y286{bottom:864.440850px;}
.y2b7{bottom:865.340850px;}
.y168{bottom:867.912000px;}
.y1d7{bottom:868.214100px;}
.y2c{bottom:871.653600px;}
.y5b{bottom:872.605800px;}
.y88{bottom:872.610000px;}
.y1da{bottom:875.714100px;}
.yb5{bottom:876.857850px;}
.ye3{bottom:876.862500px;}
.y2{bottom:879.369000px;}
.y285{bottom:880.940850px;}
.y2b6{bottom:881.540850px;}
.y1d8{bottom:883.214100px;}
.y10b{bottom:883.614600px;}
.y5a{bottom:890.601300px;}
.y87{bottom:890.605500px;}
.y2b{bottom:891.215700px;}
.yb4{bottom:894.853350px;}
.ye2{bottom:894.858000px;}
.y47{bottom:897.035850px;}
.y284{bottom:897.440850px;}
.y2b5{bottom:897.740850px;}
.y165{bottom:898.094850px;}
.y59{bottom:908.596800px;}
.y86{bottom:908.601000px;}
.y2a{bottom:909.370200px;}
.yb3{bottom:912.848850px;}
.ye1{bottom:912.853500px;}
.y136{bottom:913.394850px;}
.y283{bottom:913.940850px;}
.y46{bottom:916.378950px;}
.y29{bottom:927.524700px;}
.y28{bottom:945.679200px;}
.y58{bottom:949.519500px;}
.y85{bottom:951.755850px;}
.y1{bottom:966.726000px;}
.y27{bottom:975.454650px;}
.h10{height:25.560000px;}
.he{height:25.596000px;}
.hc{height:27.035156px;}
.hf{height:27.729000px;}
.h13{height:31.089844px;}
.hd{height:31.541016px;}
.h8{height:32.130000px;}
.h14{height:33.363281px;}
.h1c{height:36.046875px;}
.h20{height:36.766875px;}
.h1f{height:37.966875px;}
.h23{height:38.923828px;}
.h9{height:39.648000px;}
.h19{height:40.508681px;}
.h17{height:40.552734px;}
.h22{height:40.605469px;}
.h11{height:42.832031px;}
.h29{height:44.440575px;}
.h1d{height:44.484375px;}
.h24{height:44.502975px;}
.h2a{height:44.509575px;}
.h1a{height:45.117188px;}
.h28{height:45.492375px;}
.h12{height:46.684127px;}
.h1b{height:47.264648px;}
.h3{height:48.195000px;}
.h21{height:49.572375px;}
.h16{height:49.628906px;}
.h25{height:49.972922px;}
.h2c{height:49.990922px;}
.h2b{height:50.026922px;}
.h18{height:50.044922px;}
.h15{height:51.186450px;}
.h7{height:56.640000px;}
.h6{height:59.472000px;}
.h26{height:66.046875px;}
.h2{height:67.968000px;}
.h1e{height:74.484375px;}
.h5{height:96.288000px;}
.h27{height:104.484375px;}
.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;}
.x11{left:76.535400px;}
.x44{left:81.364950px;}
.x5{left:85.433550px;}
.x1e{left:87.121200px;}
.xc{left:89.291250px;}
.xe{left:93.564750px;}
.x10{left:97.155750px;}
.x13{left:98.358450px;}
.x1f{left:100.045200px;}
.x1{left:102.045000px;}
.x18{left:103.556700px;}
.x33{left:105.013200px;}
.x2{left:106.297500px;}
.x46{left:109.585050px;}
.x37{left:110.627850px;}
.x35{left:115.480800px;}
.x39{left:118.175850px;}
.x36{left:120.532800px;}
.x1c{left:131.588700px;}
.x1d{left:138.080700px;}
.x1b{left:139.520700px;}
.x3c{left:142.824450px;}
.x22{left:163.993200px;}
.x21{left:167.629200px;}
.x43{left:173.224950px;}
.x3a{left:180.155850px;}
.x45{left:181.729050px;}
.x32{left:184.285200px;}
.x15{left:189.514350px;}
.x34{left:196.504800px;}
.x12{left:198.018450px;}
.x4{left:203.484001px;}
.x24{left:239.221200px;}
.xf{left:243.485550px;}
.x3f{left:246.768450px;}
.x3d{left:248.076450px;}
.x3e{left:253.476450px;}
.x23{left:255.457200px;}
.xd{left:259.373250px;}
.x25{left:264.217200px;}
.x20{left:266.701200px;}
.x19{left:268.196700px;}
.x1a{left:273.680700px;}
.x42{left:275.484450px;}
.x28{left:332.233200px;}
.x26{left:334.261200px;}
.x41{left:335.676450px;}
.x27{left:337.309200px;}
.x29{left:338.785200px;}
.x40{left:354.228450px;}
.x16{left:365.674350px;}
.x14{left:374.178450px;}
.x2b{left:397.801200px;}
.x2a{left:413.065200px;}
.x3b{left:418.091850px;}
.x2c{left:419.869200px;}
.x3{left:454.959000px;}
.x38{left:456.875850px;}
.xb{left:473.984550px;}
.x2e{left:478.957200px;}
.x2d{left:480.553200px;}
.x6{left:497.533050px;}
.x17{left:550.047000px;}
.x31{left:562.021200px;}
.xa{left:568.622550px;}
.x2f{left:570.673200px;}
.x30{left:573.721200px;}
.x8{left:584.524800px;}
.x9{left:599.062050px;}
.x7{left:607.027800px;}
@media print{
.v9{vertical-align:-12.048000pt;}
.v1{vertical-align:-8.960000pt;}
.v3{vertical-align:-7.951467pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.896000pt;}
.v6{vertical-align:4.522667pt;}
.v2{vertical-align:6.351467pt;}
.v7{vertical-align:14.096533pt;}
.v8{vertical-align:15.808000pt;}
.v4{vertical-align:26.666667pt;}
.va{vertical-align:53.333333pt;}
.ls22{letter-spacing:-2.901333pt;}
.ls37{letter-spacing:-0.528000pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.288000pt;}
.ls45{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.170667pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls3c{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls3d{letter-spacing:-0.085333pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls44{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.002133pt;}
.ls23{letter-spacing:0.002400pt;}
.ls3f{letter-spacing:0.042667pt;}
.ls2e{letter-spacing:0.047200pt;}
.ls14{letter-spacing:0.048000pt;}
.ls42{letter-spacing:0.085333pt;}
.ls11{letter-spacing:0.096000pt;}
.ls38{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.144000pt;}
.ls40{letter-spacing:0.170667pt;}
.ls27{letter-spacing:0.177867pt;}
.ls26{letter-spacing:0.178400pt;}
.ls1{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.213333pt;}
.ls30{letter-spacing:0.228533pt;}
.lsd{letter-spacing:0.240000pt;}
.ls34{letter-spacing:0.245067pt;}
.ls43{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls3a{letter-spacing:0.298667pt;}
.ls12{letter-spacing:0.336000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.432000pt;}
.lse{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.488112pt;}
.ls8{letter-spacing:0.626677pt;}
.ls20{letter-spacing:0.912000pt;}
.ls1c{letter-spacing:0.960000pt;}
.lsb{letter-spacing:0.976219pt;}
.ls1d{letter-spacing:1.008000pt;}
.ls1b{letter-spacing:1.056000pt;}
.lsa{letter-spacing:1.114677pt;}
.ls9{letter-spacing:1.230944pt;}
.ls1e{letter-spacing:1.248000pt;}
.ls1f{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.750400pt;}
.ls6{letter-spacing:1.756800pt;}
.ls5{letter-spacing:1.760000pt;}
.ls7{letter-spacing:1.812992pt;}
.ls2{letter-spacing:1.866667pt;}
.ls33{letter-spacing:1.975733pt;}
.ls35{letter-spacing:2.985600pt;}
.ls2d{letter-spacing:3.796800pt;}
.ls24{letter-spacing:3.976267pt;}
.ls29{letter-spacing:4.569600pt;}
.ls31{letter-spacing:5.208000pt;}
.ls32{letter-spacing:5.280000pt;}
.ls2f{letter-spacing:5.376000pt;}
.ls25{letter-spacing:5.419200pt;}
.ls2a{letter-spacing:82.005333pt;}
.ls2b{letter-spacing:285.440000pt;}
.ls2c{letter-spacing:296.960000pt;}
.ls4{letter-spacing:355.904000pt;}
.ws5{word-spacing:-19.580314pt;}
.wsa6{word-spacing:-16.192000pt;}
.ws6{word-spacing:-14.838605pt;}
.ws72{word-spacing:-13.392000pt;}
.ws99{word-spacing:-13.248000pt;}
.ws75{word-spacing:-13.200000pt;}
.ws23{word-spacing:-13.056000pt;}
.wsa7{word-spacing:-11.733333pt;}
.ws5f{word-spacing:-11.690667pt;}
.wsba{word-spacing:-11.562667pt;}
.wsaf{word-spacing:-11.520000pt;}
.wsc4{word-spacing:-11.264000pt;}
.ws5c{word-spacing:-10.266667pt;}
.ws1{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.768000pt;}
.wsb{word-spacing:-4.704000pt;}
.ws18{word-spacing:-1.812992pt;}
.ws4f{word-spacing:-1.344000pt;}
.ws54{word-spacing:-1.248000pt;}
.ws52{word-spacing:-1.008000pt;}
.ws50{word-spacing:-0.960000pt;}
.ws5d{word-spacing:-0.912000pt;}
.ws44{word-spacing:-0.384000pt;}
.ws45{word-spacing:-0.336000pt;}
.wsb7{word-spacing:-0.298667pt;}
.ws2c{word-spacing:-0.288000pt;}
.wsbb{word-spacing:-0.256000pt;}
.ws38{word-spacing:-0.240000pt;}
.wsbf{word-spacing:-0.213333pt;}
.ws32{word-spacing:-0.192000pt;}
.wsbd{word-spacing:-0.170667pt;}
.ws2a{word-spacing:-0.144000pt;}
.wsad{word-spacing:-0.128000pt;}
.ws29{word-spacing:-0.096000pt;}
.wsc0{word-spacing:-0.085333pt;}
.ws48{word-spacing:-0.048000pt;}
.wsb9{word-spacing:-0.042667pt;}
.ws3{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:0.048000pt;}
.wsb3{word-spacing:0.085333pt;}
.ws24{word-spacing:0.096000pt;}
.wsb1{word-spacing:0.128000pt;}
.ws2f{word-spacing:0.144000pt;}
.wsb0{word-spacing:0.170667pt;}
.ws1c{word-spacing:0.192000pt;}
.wsae{word-spacing:0.213333pt;}
.ws35{word-spacing:0.240000pt;}
.wsc6{word-spacing:0.256000pt;}
.ws37{word-spacing:0.288000pt;}
.ws14{word-spacing:0.352000pt;}
.wsb8{word-spacing:0.426667pt;}
.ws56{word-spacing:0.480000pt;}
.wsa0{word-spacing:0.528000pt;}
.wsc1{word-spacing:0.554667pt;}
.ws21{word-spacing:0.768000pt;}
.ws47{word-spacing:0.816000pt;}
.ws12{word-spacing:1.120000pt;}
.ws41{word-spacing:1.152000pt;}
.ws27{word-spacing:1.296000pt;}
.wsf{word-spacing:1.312000pt;}
.wsb5{word-spacing:1.322667pt;}
.ws36{word-spacing:1.392000pt;}
.wsc3{word-spacing:1.408000pt;}
.ws39{word-spacing:1.488000pt;}
.wsab{word-spacing:1.536000pt;}
.ws40{word-spacing:1.584000pt;}
.wsc5{word-spacing:1.706667pt;}
.ws1b{word-spacing:1.728000pt;}
.ws9{word-spacing:1.760000pt;}
.ws4b{word-spacing:1.776000pt;}
.ws2d{word-spacing:1.824000pt;}
.wsc{word-spacing:1.872000pt;}
.wsa1{word-spacing:1.920000pt;}
.ws3e{word-spacing:2.016000pt;}
.wsd{word-spacing:2.026667pt;}
.wsa{word-spacing:2.053333pt;}
.ws73{word-spacing:2.064000pt;}
.ws11{word-spacing:2.112000pt;}
.wsa4{word-spacing:2.256000pt;}
.ws4e{word-spacing:2.346667pt;}
.ws98{word-spacing:2.352000pt;}
.wsbe{word-spacing:2.432000pt;}
.wse{word-spacing:2.462709pt;}
.ws4d{word-spacing:2.493333pt;}
.ws9e{word-spacing:2.496000pt;}
.wsa8{word-spacing:2.544000pt;}
.ws1e{word-spacing:2.640000pt;}
.wsb2{word-spacing:2.645333pt;}
.ws4c{word-spacing:2.736000pt;}
.ws34{word-spacing:2.832000pt;}
.wsb4{word-spacing:2.944000pt;}
.wsac{word-spacing:2.976000pt;}
.ws9f{word-spacing:3.024000pt;}
.ws8{word-spacing:3.104000pt;}
.ws8a{word-spacing:3.120000pt;}
.ws49{word-spacing:3.168000pt;}
.ws1a{word-spacing:3.312000pt;}
.ws16{word-spacing:3.328000pt;}
.ws67{word-spacing:3.360000pt;}
.ws3f{word-spacing:3.504000pt;}
.wsaa{word-spacing:3.552000pt;}
.wsa3{word-spacing:3.600000pt;}
.ws33{word-spacing:3.648000pt;}
.ws74{word-spacing:3.696000pt;}
.ws10{word-spacing:3.712000pt;}
.ws7{word-spacing:3.776000pt;}
.ws96{word-spacing:3.792000pt;}
.ws3b{word-spacing:3.936000pt;}
.ws28{word-spacing:3.984000pt;}
.ws26{word-spacing:4.080000pt;}
.ws55{word-spacing:4.128000pt;}
.ws17{word-spacing:4.160000pt;}
.ws42{word-spacing:4.176000pt;}
.ws46{word-spacing:4.224000pt;}
.ws3a{word-spacing:4.368000pt;}
.ws43{word-spacing:4.512000pt;}
.ws8b{word-spacing:4.560000pt;}
.ws97{word-spacing:4.608000pt;}
.wsbc{word-spacing:4.650667pt;}
.ws30{word-spacing:4.656000pt;}
.wsc2{word-spacing:4.693333pt;}
.wsa9{word-spacing:4.752000pt;}
.ws5e{word-spacing:4.944000pt;}
.ws53{word-spacing:4.992000pt;}
.ws25{word-spacing:5.040000pt;}
.ws51{word-spacing:5.088000pt;}
.wsa2{word-spacing:5.184000pt;}
.wsb6{word-spacing:5.205333pt;}
.ws1d{word-spacing:5.232000pt;}
.ws19{word-spacing:5.280000pt;}
.ws3c{word-spacing:5.520000pt;}
.ws15{word-spacing:5.664000pt;}
.ws3d{word-spacing:5.712000pt;}
.ws2b{word-spacing:5.952000pt;}
.ws2e{word-spacing:6.096000pt;}
.ws31{word-spacing:6.912000pt;}
.ws13{word-spacing:6.944000pt;}
.ws1f{word-spacing:7.296000pt;}
.ws85{word-spacing:58.837333pt;}
.ws94{word-spacing:101.845333pt;}
.ws7a{word-spacing:117.845333pt;}
.ws7d{word-spacing:126.720000pt;}
.ws9c{word-spacing:128.512000pt;}
.ws93{word-spacing:128.554667pt;}
.ws77{word-spacing:132.740267pt;}
.ws71{word-spacing:136.874667pt;}
.ws91{word-spacing:155.221333pt;}
.ws9a{word-spacing:157.056000pt;}
.ws76{word-spacing:157.141333pt;}
.ws9b{word-spacing:160.000000pt;}
.ws90{word-spacing:161.834667pt;}
.ws92{word-spacing:162.474667pt;}
.ws6f{word-spacing:163.584000pt;}
.ws8f{word-spacing:164.266667pt;}
.ws8e{word-spacing:167.808000pt;}
.ws8d{word-spacing:169.083733pt;}
.ws82{word-spacing:169.088000pt;}
.ws84{word-spacing:170.538667pt;}
.ws79{word-spacing:171.008000pt;}
.ws8c{word-spacing:171.178667pt;}
.ws95{word-spacing:175.914667pt;}
.ws9d{word-spacing:176.725333pt;}
.ws6d{word-spacing:178.773333pt;}
.ws7e{word-spacing:180.608000pt;}
.ws88{word-spacing:182.016000pt;}
.ws64{word-spacing:189.866667pt;}
.ws60{word-spacing:190.250667pt;}
.ws70{word-spacing:192.085333pt;}
.ws6c{word-spacing:196.864000pt;}
.ws6e{word-spacing:197.504000pt;}
.ws6b{word-spacing:199.296000pt;}
.ws6a{word-spacing:202.794667pt;}
.ws69{word-spacing:204.113067pt;}
.ws7f{word-spacing:205.824000pt;}
.ws68{word-spacing:206.208000pt;}
.ws78{word-spacing:212.821333pt;}
.ws7b{word-spacing:215.808000pt;}
.ws80{word-spacing:216.704000pt;}
.ws81{word-spacing:226.474667pt;}
.ws7c{word-spacing:246.869333pt;}
.wsa5{word-spacing:271.542933pt;}
.ws83{word-spacing:278.613333pt;}
.ws22{word-spacing:284.406933pt;}
.ws57{word-spacing:285.418667pt;}
.ws5b{word-spacing:390.058667pt;}
.ws58{word-spacing:409.685333pt;}
.ws86{word-spacing:474.752000pt;}
.ws63{word-spacing:475.818667pt;}
.ws89{word-spacing:481.749333pt;}
.ws87{word-spacing:485.632000pt;}
.ws61{word-spacing:740.949333pt;}
.ws4a{word-spacing:776.490667pt;}
.ws5a{word-spacing:903.910400pt;}
.ws62{word-spacing:1018.581333pt;}
.ws66{word-spacing:1296.128000pt;}
.ws59{word-spacing:1421.098667pt;}
.ws65{word-spacing:1566.506667pt;}
._a{margin-left:-23.669333pt;}
._b{margin-left:-5.359353pt;}
._0{margin-left:-3.766933pt;}
._3{margin-left:-2.416000pt;}
._2{margin-left:-1.040000pt;}
._7{width:0.924800pt;}
._4{width:2.449276pt;}
._8{width:4.150400pt;}
._9{width:5.225600pt;}
._1{width:6.444800pt;}
._d{width:7.681600pt;}
._3b{width:44.714667pt;}
._6{width:52.897078pt;}
._5{width:75.579903pt;}
._24{width:86.766724pt;}
._2e{width:103.321390pt;}
._26{width:106.112000pt;}
._23{width:107.092285pt;}
._3f{width:113.536000pt;}
._25{width:128.597333pt;}
._27{width:138.197333pt;}
._35{width:140.245333pt;}
._34{width:167.424000pt;}
._33{width:168.746667pt;}
._2d{width:171.178667pt;}
._32{width:172.245333pt;}
._1b{width:174.720000pt;}
._2a{width:180.778667pt;}
._2c{width:182.698667pt;}
._31{width:192.840324pt;}
._1a{width:201.941333pt;}
._19{width:207.274667pt;}
._29{width:237.482667pt;}
._28{width:249.642667pt;}
._2b{width:257.877333pt;}
._2f{width:273.962667pt;}
._e{width:278.373561pt;}
._30{width:285.440000pt;}
._13{width:324.682895pt;}
._17{width:378.794667pt;}
._36{width:387.898895pt;}
._14{width:434.490667pt;}
._3e{width:438.357333pt;}
._11{width:447.888228pt;}
._18{width:458.666667pt;}
._f{width:460.373333pt;}
._15{width:484.096000pt;}
._1c{width:485.221561pt;}
._10{width:518.853333pt;}
._16{width:547.958838pt;}
._12{width:602.273504pt;}
._1d{width:678.667200pt;}
._37{width:717.536533pt;}
._40{width:754.570667pt;}
._1f{width:797.026151pt;}
._20{width:806.668818pt;}
._43{width:813.603104pt;}
._c{width:826.466571pt;}
._1e{width:862.036285pt;}
._41{width:867.084818pt;}
._3a{width:876.727485pt;}
._39{width:879.700285pt;}
._38{width:932.094951pt;}
._21{width:1063.901447pt;}
._22{width:1087.496114pt;}
._3c{width:1091.694724pt;}
._42{width:1133.960114pt;}
._3d{width:1157.554781pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fsf{font-size:36.000000pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:42.666667pt;}
.fs7{font-size:44.776533pt;}
.fsd{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:48.811200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs8{font-size:60.433067pt;}
.fs9{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;}
.y227{bottom:74.513467pt;}
.y84{bottom:76.644133pt;}
.yb2{bottom:77.252933pt;}
.y209{bottom:81.958933pt;}
.y164{bottom:83.017467pt;}
.y158{bottom:85.216667pt;}
.y1b8{bottom:85.946933pt;}
.y4{bottom:86.333337pt;}
.y1d6{bottom:86.494933pt;}
.y268{bottom:87.970667pt;}
.y24f{bottom:88.014667pt;}
.y26{bottom:89.105733pt;}
.y226{bottom:90.545333pt;}
.y135{bottom:91.085733pt;}
.ye0{bottom:91.601200pt;}
.y83{bottom:92.640133pt;}
.yb1{bottom:93.248933pt;}
.y2b4{bottom:93.725200pt;}
.y193{bottom:94.768800pt;}
.y282{bottom:95.373867pt;}
.y208{bottom:97.954933pt;}
.y163{bottom:99.013467pt;}
.y157{bottom:101.212667pt;}
.y10a{bottom:101.289467pt;}
.y1b7{bottom:101.942933pt;}
.y1d5{bottom:102.490933pt;}
.y267{bottom:103.966667pt;}
.y24e{bottom:104.010667pt;}
.y225{bottom:106.541333pt;}
.y2e5{bottom:106.791867pt;}
.y134{bottom:107.081733pt;}
.ydf{bottom:107.597200pt;}
.y2b3{bottom:108.391867pt;}
.y82{bottom:108.636133pt;}
.yb0{bottom:109.244933pt;}
.y281{bottom:109.773867pt;}
.y192{bottom:113.822800pt;}
.y207{bottom:113.950933pt;}
.y162{bottom:115.009467pt;}
.y156{bottom:117.208667pt;}
.y1b6{bottom:117.938933pt;}
.y1d4{bottom:118.486933pt;}
.y266{bottom:119.962667pt;}
.y24d{bottom:120.006667pt;}
.y2e4{bottom:121.191867pt;}
.y109{bottom:122.292133pt;}
.y224{bottom:122.537333pt;}
.y2b2{bottom:123.058533pt;}
.y133{bottom:123.077733pt;}
.yde{bottom:123.593200pt;}
.y22{bottom:123.790666pt;}
.y280{bottom:124.173867pt;}
.y81{bottom:124.632133pt;}
.yaf{bottom:125.240933pt;}
.y57{bottom:125.441200pt;}
.y206{bottom:129.946933pt;}
.y161{bottom:131.005467pt;}
.y191{bottom:131.038800pt;}
.y155{bottom:133.204667pt;}
.y1b5{bottom:133.934933pt;}
.y1d3{bottom:134.482933pt;}
.y2e3{bottom:135.591867pt;}
.y107{bottom:135.625467pt;}
.y265{bottom:135.958667pt;}
.y24c{bottom:136.002667pt;}
.y2b1{bottom:137.725200pt;}
.y223{bottom:138.533333pt;}
.y27f{bottom:138.573867pt;}
.y132{bottom:139.073733pt;}
.ydd{bottom:139.589200pt;}
.y80{bottom:140.628133pt;}
.yae{bottom:141.236933pt;}
.y56{bottom:141.437200pt;}
.y205{bottom:145.942933pt;}
.y160{bottom:147.001467pt;}
.y190{bottom:148.254800pt;}
.y108{bottom:148.958800pt;}
.y154{bottom:149.200667pt;}
.y1b4{bottom:149.930933pt;}
.y2e2{bottom:149.991867pt;}
.y1d2{bottom:150.478933pt;}
.y264{bottom:151.954667pt;}
.y24b{bottom:151.998667pt;}
.y2b0{bottom:152.391867pt;}
.y27e{bottom:152.973867pt;}
.y222{bottom:154.529333pt;}
.y131{bottom:155.069733pt;}
.ydc{bottom:155.585200pt;}
.y7f{bottom:156.624133pt;}
.yad{bottom:157.232933pt;}
.y55{bottom:157.433200pt;}
.y15f{bottom:162.997467pt;}
.y204{bottom:163.270933pt;}
.y2e1{bottom:164.391867pt;}
.y153{bottom:165.196667pt;}
.y18f{bottom:165.470800pt;}
.y1b3{bottom:165.926933pt;}
.y1d1{bottom:166.474933pt;}
.y2af{bottom:167.058533pt;}
.y27d{bottom:167.373867pt;}
.y263{bottom:167.950667pt;}
.y24a{bottom:167.994667pt;}
.y106{bottom:168.062800pt;}
.y221{bottom:170.525333pt;}
.y130{bottom:171.065733pt;}
.ydb{bottom:171.581200pt;}
.y7e{bottom:172.620133pt;}
.yac{bottom:173.228933pt;}
.y54{bottom:173.429200pt;}
.y19{bottom:175.052000pt;}
.y2e0{bottom:178.791867pt;}
.y15e{bottom:178.993467pt;}
.y203{bottom:180.625600pt;}
.y152{bottom:181.192667pt;}
.y105{bottom:181.396133pt;}
.y2ae{bottom:181.725200pt;}
.y27c{bottom:181.773867pt;}
.y1b2{bottom:181.970933pt;}
.y1d0{bottom:182.470933pt;}
.y18e{bottom:182.686800pt;}
.y262{bottom:183.946667pt;}
.y249{bottom:183.990667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y220{bottom:186.521333pt;}
.y12f{bottom:187.061733pt;}
.yda{bottom:187.577200pt;}
.y102{bottom:188.062800pt;}
.y7d{bottom:188.616133pt;}
.yab{bottom:189.224933pt;}
.y53{bottom:189.425200pt;}
.y2df{bottom:193.191867pt;}
.y104{bottom:194.729467pt;}
.y15d{bottom:194.989467pt;}
.y27b{bottom:196.173867pt;}
.y2ad{bottom:196.391867pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y202{bottom:197.953600pt;}
.y1b1{bottom:197.966933pt;}
.y1cf{bottom:198.466933pt;}
.y151{bottom:198.520667pt;}
.y18d{bottom:199.898667pt;}
.y261{bottom:199.942667pt;}
.y248{bottom:199.986667pt;}
.y21f{bottom:202.517333pt;}
.y12e{bottom:203.057733pt;}
.yd9{bottom:203.573200pt;}
.y7c{bottom:204.612133pt;}
.yaa{bottom:205.220933pt;}
.y52{bottom:205.421200pt;}
.y2de{bottom:207.591867pt;}
.y103{bottom:208.062800pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y27a{bottom:210.573867pt;}
.y15c{bottom:210.985467pt;}
.y2ac{bottom:211.058533pt;}
.y1b0{bottom:213.962933pt;}
.y1ce{bottom:214.462933pt;}
.y201{bottom:215.281600pt;}
.y150{bottom:215.848667pt;}
.y260{bottom:215.938667pt;}
.y247{bottom:215.982667pt;}
.y21e{bottom:218.513333pt;}
.y18c{bottom:219.002667pt;}
.y12d{bottom:219.053733pt;}
.yd8{bottom:219.569200pt;}
.y7b{bottom:220.608133pt;}
.ya9{bottom:221.216933pt;}
.y51{bottom:221.417200pt;}
.y2dd{bottom:221.991867pt;}
.y279{bottom:224.973867pt;}
.y2ab{bottom:225.725200pt;}
.y15b{bottom:226.981467pt;}
.y101{bottom:229.054800pt;}
.y1af{bottom:229.958933pt;}
.y1cd{bottom:230.458933pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y246{bottom:231.978667pt;}
.y200{bottom:232.609600pt;}
.y14f{bottom:233.176667pt;}
.y21d{bottom:234.509333pt;}
.y12c{bottom:235.049733pt;}
.yd7{bottom:235.565200pt;}
.y2dc{bottom:236.391867pt;}
.y7a{bottom:236.604133pt;}
.ya8{bottom:237.212933pt;}
.y50{bottom:237.413200pt;}
.y18b{bottom:238.106667pt;}
.y278{bottom:239.373867pt;}
.y2aa{bottom:240.391867pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y15a{bottom:242.977467pt;}
.y25f{bottom:243.277333pt;}
.y1ae{bottom:245.954933pt;}
.y1cc{bottom:246.454933pt;}
.y245{bottom:247.974667pt;}
.y1ff{bottom:249.937600pt;}
.y14e{bottom:250.504667pt;}
.y2db{bottom:250.791867pt;}
.y12b{bottom:251.045733pt;}
.yd6{bottom:251.561200pt;}
.y79{bottom:252.600133pt;}
.ya7{bottom:253.208933pt;}
.y4f{bottom:253.409200pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y277{bottom:253.773867pt;}
.y2a9{bottom:255.058533pt;}
.y18a{bottom:255.322667pt;}
.y100{bottom:255.882000pt;}
.y21c{bottom:261.848000pt;}
.y1ad{bottom:261.950933pt;}
.y1cb{bottom:262.450933pt;}
.y244{bottom:263.970667pt;}
.y159{bottom:264.649467pt;}
.y2da{bottom:265.191867pt;}
.y12a{bottom:267.041733pt;}
.y1fe{bottom:267.265600pt;}
.yd5{bottom:267.557200pt;}
.y14d{bottom:267.832667pt;}
.y276{bottom:268.173867pt;}
.ya6{bottom:269.204933pt;}
.y4e{bottom:269.405200pt;}
.y2a8{bottom:269.725200pt;}
.y189{bottom:272.538667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y78{bottom:276.159200pt;}
.y1ac{bottom:277.946933pt;}
.y2d9{bottom:279.591867pt;}
.y243{bottom:279.966667pt;}
.y275{bottom:282.573867pt;}
.y129{bottom:283.037733pt;}
.yd4{bottom:283.553200pt;}
.y25e{bottom:283.557333pt;}
.y2a7{bottom:284.391867pt;}
.y21b{bottom:284.681467pt;}
.y14c{bottom:285.160667pt;}
.ya5{bottom:285.200933pt;}
.y4d{bottom:285.401200pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yff{bottom:288.415733pt;}
.y188{bottom:289.754667pt;}
.y1ca{bottom:289.789467pt;}
.y1ab{bottom:293.942933pt;}
.y2d8{bottom:293.991867pt;}
.y1fd{bottom:295.937467pt;}
.y242{bottom:295.962667pt;}
.y274{bottom:296.973867pt;}
.y128{bottom:299.033733pt;}
.y2a6{bottom:299.058533pt;}
.yd3{bottom:299.549200pt;}
.y25d{bottom:299.553333pt;}
.ya4{bottom:301.196933pt;}
.y4c{bottom:301.397200pt;}
.y21a{bottom:301.897467pt;}
.y14b{bottom:302.488667pt;}
.y77{bottom:303.497733pt;}
.yfe{bottom:304.411733pt;}
.y184{bottom:307.036533pt;}
.y2d7{bottom:308.391867pt;}
.y1c9{bottom:308.847333pt;}
.y187{bottom:308.858667pt;}
.y10{bottom:309.452000pt;}
.y1aa{bottom:309.938933pt;}
.y273{bottom:311.373867pt;}
.y241{bottom:311.958667pt;}
.y2a5{bottom:313.725200pt;}
.y1fc{bottom:314.991467pt;}
.y127{bottom:315.029733pt;}
.yd2{bottom:315.545200pt;}
.y25c{bottom:315.549333pt;}
.ya3{bottom:317.192933pt;}
.y4b{bottom:317.393200pt;}
.y219{bottom:319.113467pt;}
.yfd{bottom:320.407733pt;}
.y2d6{bottom:322.791867pt;}
.y272{bottom:325.773867pt;}
.y1a9{bottom:325.934933pt;}
.y183{bottom:326.069333pt;}
.y1c8{bottom:326.522000pt;}
.y240{bottom:327.954667pt;}
.y2a4{bottom:328.391867pt;}
.y126{bottom:331.025733pt;}
.yd1{bottom:331.541200pt;}
.y25b{bottom:331.545333pt;}
.y1fb{bottom:332.207467pt;}
.ya2{bottom:333.188933pt;}
.y4a{bottom:333.389200pt;}
.y14a{bottom:334.940133pt;}
.y186{bottom:335.690933pt;}
.y218{bottom:336.329467pt;}
.yfc{bottom:336.403733pt;}
.y2d5{bottom:337.191867pt;}
.y271{bottom:340.173867pt;}
.y1a8{bottom:341.930933pt;}
.y2a3{bottom:343.058533pt;}
.y182{bottom:343.285333pt;}
.y76{bottom:343.757600pt;}
.yf{bottom:343.809333pt;}
.y23f{bottom:343.950667pt;}
.y1c7{bottom:344.196667pt;}
.y125{bottom:347.021733pt;}
.yd0{bottom:347.537200pt;}
.y25a{bottom:347.541333pt;}
.ya1{bottom:349.184933pt;}
.y49{bottom:349.385200pt;}
.y1fa{bottom:349.423467pt;}
.y2d4{bottom:351.591867pt;}
.yfb{bottom:352.399733pt;}
.y217{bottom:353.545467pt;}
.y149{bottom:353.982267pt;}
.y270{bottom:354.573867pt;}
.y2a2{bottom:357.725200pt;}
.y1a7{bottom:357.926933pt;}
.y75{bottom:359.753600pt;}
.y23e{bottom:359.946667pt;}
.y181{bottom:360.501333pt;}
.y1c6{bottom:361.871333pt;}
.ye{bottom:362.706666pt;}
.y124{bottom:363.017733pt;}
.ycf{bottom:363.533200pt;}
.y259{bottom:363.537333pt;}
.y2d3{bottom:365.991867pt;}
.y1f9{bottom:366.639467pt;}
.yfa{bottom:368.395733pt;}
.y216{bottom:370.755867pt;}
.y148{bottom:371.198267pt;}
.y2a1{bottom:372.391867pt;}
.ya0{bottom:372.744000pt;}
.y1a6{bottom:373.938933pt;}
.y74{bottom:375.749600pt;}
.y23d{bottom:375.942667pt;}
.y48{bottom:376.723733pt;}
.y180{bottom:377.717333pt;}
.y123{bottom:379.013733pt;}
.yce{bottom:379.529200pt;}
.y258{bottom:379.533333pt;}
.y26f{bottom:380.312533pt;}
.y2d2{bottom:380.391867pt;}
.y1c5{bottom:381.434000pt;}
.y1f8{bottom:383.855467pt;}
.yf9{bottom:384.391733pt;}
.y185{bottom:387.042267pt;}
.y2a0{bottom:387.058533pt;}
.y1c4{bottom:388.100667pt;}
.y147{bottom:388.414267pt;}
.y215{bottom:389.859867pt;}
.y1a5{bottom:389.934933pt;}
.y73{bottom:391.745600pt;}
.y23c{bottom:391.938667pt;}
.y2d1{bottom:394.791867pt;}
.y17f{bottom:394.933333pt;}
.y122{bottom:395.009733pt;}
.ycd{bottom:395.525200pt;}
.y257{bottom:395.529333pt;}
.yf8{bottom:400.387733pt;}
.y1f7{bottom:401.081200pt;}
.y29f{bottom:401.725200pt;}
.y146{bottom:405.630267pt;}
.y1a4{bottom:405.930933pt;}
.y72{bottom:407.741600pt;}
.y9f{bottom:407.745333pt;}
.y214{bottom:408.963867pt;}
.y2d0{bottom:409.191867pt;}
.y121{bottom:411.005733pt;}
.ycc{bottom:411.521200pt;}
.y256{bottom:411.525333pt;}
.y17e{bottom:412.149333pt;}
.y1c3{bottom:415.759333pt;}
.yf7{bottom:416.383733pt;}
.y29e{bottom:416.391867pt;}
.y45{bottom:417.680400pt;}
.y23b{bottom:419.277333pt;}
.y1f6{bottom:420.185200pt;}
.y26e{bottom:420.460267pt;}
.y1a3{bottom:421.926933pt;}
.y1c2{bottom:422.426000pt;}
.y145{bottom:422.846267pt;}
.y2cf{bottom:423.591867pt;}
.y71{bottom:423.737600pt;}
.y9e{bottom:423.741333pt;}
.y213{bottom:426.179867pt;}
.y120{bottom:427.001733pt;}
.ycb{bottom:427.517200pt;}
.y255{bottom:427.521333pt;}
.y17d{bottom:429.365333pt;}
.yd{bottom:430.990669pt;}
.y29d{bottom:431.058533pt;}
.yf6{bottom:432.379733pt;}
.y44{bottom:434.246800pt;}
.y26d{bottom:436.456267pt;}
.y1a2{bottom:437.934933pt;}
.y2ce{bottom:437.991867pt;}
.y1f5{bottom:439.289200pt;}
.y70{bottom:439.733600pt;}
.y9d{bottom:439.737333pt;}
.y144{bottom:440.062267pt;}
.y212{bottom:443.395867pt;}
.yca{bottom:443.513200pt;}
.y254{bottom:443.517333pt;}
.y29c{bottom:445.725200pt;}
.y17c{bottom:446.581333pt;}
.yc{bottom:446.990669pt;}
.y11f{bottom:448.673733pt;}
.y2cd{bottom:452.391867pt;}
.y43{bottom:453.054800pt;}
.y1a1{bottom:453.930933pt;}
.y6f{bottom:455.729600pt;}
.y9c{bottom:455.733333pt;}
.y1c1{bottom:455.920000pt;}
.yf5{bottom:455.938667pt;}
.y1f4{bottom:456.963867pt;}
.y143{bottom:457.278267pt;}
.y23a{bottom:459.461200pt;}
.yc9{bottom:459.509200pt;}
.y253{bottom:459.513333pt;}
.y29b{bottom:460.391867pt;}
.y211{bottom:460.611867pt;}
.yb{bottom:462.990669pt;}
.y42{bottom:463.718800pt;}
.y26c{bottom:463.794933pt;}
.y17b{bottom:463.797333pt;}
.y2cc{bottom:466.791867pt;}
.y1c0{bottom:469.520000pt;}
.y1a0{bottom:469.926933pt;}
.y11e{bottom:470.899467pt;}
.y6e{bottom:471.725600pt;}
.y9b{bottom:471.729333pt;}
.y142{bottom:474.494267pt;}
.y1f3{bottom:474.958533pt;}
.y29a{bottom:475.058533pt;}
.y239{bottom:475.457200pt;}
.yc8{bottom:475.505200pt;}
.y252{bottom:475.509333pt;}
.y210{bottom:477.827867pt;}
.ya{bottom:478.990666pt;}
.y17a{bottom:481.013333pt;}
.y2cb{bottom:481.191867pt;}
.y3f{bottom:482.561467pt;}
.yf4{bottom:483.277333pt;}
.y19f{bottom:485.930933pt;}
.y6d{bottom:487.721600pt;}
.y9a{bottom:487.725333pt;}
.y299{bottom:489.725200pt;}
.y238{bottom:491.453200pt;}
.yc7{bottom:491.501200pt;}
.y251{bottom:491.505333pt;}
.y141{bottom:491.710267pt;}
.y1f2{bottom:492.494533pt;}
.y3e{bottom:493.225467pt;}
.y9{bottom:494.990666pt;}
.y2ca{bottom:495.591867pt;}
.y20f{bottom:496.931867pt;}
.y179{bottom:498.229333pt;}
.y19e{bottom:501.926933pt;}
.y1bf{bottom:502.025600pt;}
.y6c{bottom:503.717600pt;}
.y99{bottom:503.721333pt;}
.y3d{bottom:503.889467pt;}
.y26b{bottom:503.942667pt;}
.y298{bottom:504.391867pt;}
.y237{bottom:507.449200pt;}
.yc6{bottom:507.497200pt;}
.y250{bottom:507.501333pt;}
.y140{bottom:508.926267pt;}
.y1f1{bottom:509.763867pt;}
.y2c9{bottom:509.991867pt;}
.y3c{bottom:514.553467pt;}
.y11d{bottom:515.312533pt;}
.y178{bottom:515.445333pt;}
.y19d{bottom:517.922933pt;}
.y1be{bottom:518.021600pt;}
.y297{bottom:519.058533pt;}
.y6b{bottom:519.713600pt;}
.y98{bottom:519.717333pt;}
.y26a{bottom:519.938667pt;}
.y236{bottom:523.445200pt;}
.yc5{bottom:523.493200pt;}
.yf3{bottom:523.497333pt;}
.y20e{bottom:523.759200pt;}
.y2c8{bottom:524.391867pt;}
.y3b{bottom:525.217467pt;}
.y13f{bottom:526.142267pt;}
.y1f0{bottom:528.931867pt;}
.y177{bottom:532.661333pt;}
.y11c{bottom:533.648533pt;}
.y296{bottom:533.725200pt;}
.y1bd{bottom:534.033333pt;}
.y6a{bottom:535.709600pt;}
.y97{bottom:535.713333pt;}
.y3a{bottom:535.881467pt;}
.y20d{bottom:537.359200pt;}
.y2c7{bottom:538.791867pt;}
.y235{bottom:539.441200pt;}
.yc4{bottom:539.489200pt;}
.yf2{bottom:539.493333pt;}
.y11b{bottom:540.315200pt;}
.y19c{bottom:541.482000pt;}
.y13e{bottom:543.358267pt;}
.y39{bottom:546.545467pt;}
.y269{bottom:547.277333pt;}
.y295{bottom:548.391867pt;}
.y176{bottom:549.877333pt;}
.y1bc{bottom:550.029333pt;}
.y69{bottom:551.705600pt;}
.y96{bottom:551.709333pt;}
.y2c6{bottom:553.191867pt;}
.y234{bottom:555.437200pt;}
.yc3{bottom:555.485200pt;}
.yf1{bottom:555.489333pt;}
.y1ef{bottom:555.759200pt;}
.y38{bottom:557.209467pt;}
.y13d{bottom:560.574267pt;}
.y294{bottom:563.058533pt;}
.y11a{bottom:564.357867pt;}
.y1bb{bottom:566.025333pt;}
.y175{bottom:567.093333pt;}
.y2c5{bottom:567.591867pt;}
.y68{bottom:567.701600pt;}
.y95{bottom:567.705333pt;}
.y37{bottom:567.873467pt;}
.y1ee{bottom:569.359200pt;}
.y20c{bottom:569.901333pt;}
.y233{bottom:571.433200pt;}
.yc2{bottom:571.481200pt;}
.yf0{bottom:571.485333pt;}
.y8{bottom:573.786667pt;}
.y19b{bottom:576.399733pt;}
.y293{bottom:577.725200pt;}
.y13c{bottom:577.790267pt;}
.y36{bottom:578.537467pt;}
.y2c4{bottom:581.991867pt;}
.y1ba{bottom:582.021333pt;}
.y119{bottom:582.160533pt;}
.y67{bottom:583.697600pt;}
.y94{bottom:583.701333pt;}
.y174{bottom:584.309333pt;}
.y20b{bottom:585.897333pt;}
.y232{bottom:587.429200pt;}
.yc1{bottom:587.477200pt;}
.yef{bottom:587.481333pt;}
.y35{bottom:589.201467pt;}
.y292{bottom:592.391867pt;}
.y19a{bottom:592.395733pt;}
.y7{bottom:592.685334pt;}
.y13b{bottom:595.006267pt;}
.y2c3{bottom:596.391867pt;}
.y1b9{bottom:598.017333pt;}
.y66{bottom:599.693600pt;}
.y93{bottom:599.697333pt;}
.y118{bottom:599.803200pt;}
.y34{bottom:599.865467pt;}
.y173{bottom:601.525333pt;}
.y1ed{bottom:601.881200pt;}
.y231{bottom:603.425200pt;}
.yc0{bottom:603.473200pt;}
.yee{bottom:603.477333pt;}
.y117{bottom:606.469867pt;}
.y291{bottom:607.058533pt;}
.y20a{bottom:607.569333pt;}
.y199{bottom:608.391733pt;}
.y41{bottom:608.998800pt;}
.y33{bottom:610.529467pt;}
.y2c2{bottom:610.791867pt;}
.y13a{bottom:614.110267pt;}
.y65{bottom:615.689600pt;}
.y92{bottom:615.693333pt;}
.y1ec{bottom:617.877200pt;}
.y172{bottom:618.741333pt;}
.y230{bottom:619.429200pt;}
.ybf{bottom:619.469200pt;}
.yed{bottom:619.473333pt;}
.y40{bottom:619.665467pt;}
.y32{bottom:621.193467pt;}
.y290{bottom:621.725200pt;}
.y1e3{bottom:622.888800pt;}
.y198{bottom:624.387733pt;}
.y2c1{bottom:625.191867pt;}
.y116{bottom:630.352533pt;}
.y64{bottom:631.685600pt;}
.y91{bottom:631.689333pt;}
.y31{bottom:631.857467pt;}
.y1eb{bottom:633.873200pt;}
.y138{bottom:635.102267pt;}
.y22f{bottom:635.425200pt;}
.ybe{bottom:635.465200pt;}
.yec{bottom:635.469333pt;}
.y171{bottom:635.957333pt;}
.y28f{bottom:636.391867pt;}
.y115{bottom:637.019200pt;}
.y2c0{bottom:639.591867pt;}
.y197{bottom:640.383733pt;}
.y1e2{bottom:641.943200pt;}
.y6{bottom:645.598667pt;}
.y63{bottom:647.681600pt;}
.y90{bottom:647.685333pt;}
.y1ea{bottom:649.869200pt;}
.y28e{bottom:651.058533pt;}
.y22e{bottom:651.421200pt;}
.ybd{bottom:651.461200pt;}
.yeb{bottom:651.465333pt;}
.y170{bottom:653.173333pt;}
.y2bf{bottom:653.991867pt;}
.y30{bottom:655.231600pt;}
.y139{bottom:656.094267pt;}
.y196{bottom:656.379733pt;}
.y1e1{bottom:659.617867pt;}
.y114{bottom:661.125867pt;}
.y62{bottom:663.677600pt;}
.y8f{bottom:663.681333pt;}
.y28d{bottom:665.725200pt;}
.y1e9{bottom:665.865200pt;}
.y22d{bottom:667.445200pt;}
.ybc{bottom:667.457200pt;}
.yea{bottom:667.461333pt;}
.y2be{bottom:668.391867pt;}
.y3{bottom:668.977329pt;}
.y16f{bottom:670.389333pt;}
.y2f{bottom:675.588667pt;}
.y1e0{bottom:677.292533pt;}
.y113{bottom:678.565867pt;}
.y61{bottom:679.673600pt;}
.y8e{bottom:679.677333pt;}
.y195{bottom:679.938667pt;}
.y28c{bottom:680.391867pt;}
.y1e8{bottom:681.861200pt;}
.y2bd{bottom:682.791867pt;}
.y137{bottom:682.923467pt;}
.y22c{bottom:683.441200pt;}
.ybb{bottom:683.453200pt;}
.ye9{bottom:683.457333pt;}
.y112{bottom:685.232533pt;}
.y16e{bottom:689.493333pt;}
.y1df{bottom:694.967200pt;}
.y28b{bottom:695.058533pt;}
.y60{bottom:695.669600pt;}
.y8d{bottom:695.673333pt;}
.y2bc{bottom:697.191867pt;}
.y22b{bottom:699.437200pt;}
.yba{bottom:699.449200pt;}
.ye8{bottom:699.453333pt;}
.y2e{bottom:701.708933pt;}
.y1e7{bottom:703.533200pt;}
.y194{bottom:707.277333pt;}
.y111{bottom:709.115200pt;}
.y28a{bottom:709.725200pt;}
.y16d{bottom:710.485333pt;}
.y2bb{bottom:711.591867pt;}
.y5f{bottom:711.665600pt;}
.y8c{bottom:711.669333pt;}
.y1de{bottom:712.641867pt;}
.y22a{bottom:715.433200pt;}
.yb9{bottom:715.445200pt;}
.ye7{bottom:715.449333pt;}
.y2d{bottom:715.962267pt;}
.y16b{bottom:717.152000pt;}
.y167{bottom:723.818667pt;}
.y289{bottom:724.391867pt;}
.y1dd{bottom:725.975200pt;}
.y2ba{bottom:725.991867pt;}
.y110{bottom:726.331200pt;}
.y5e{bottom:727.661600pt;}
.y8b{bottom:727.665333pt;}
.y16a{bottom:730.485333pt;}
.y229{bottom:731.429200pt;}
.y1e6{bottom:731.433200pt;}
.yb8{bottom:731.441200pt;}
.ye6{bottom:731.445333pt;}
.y166{bottom:737.152000pt;}
.y288{bottom:739.058533pt;}
.y1dc{bottom:739.308533pt;}
.y10f{bottom:739.664533pt;}
.y2b9{bottom:740.391867pt;}
.y5d{bottom:743.657600pt;}
.y8a{bottom:743.661333pt;}
.y169{bottom:743.818667pt;}
.y10c{bottom:746.331200pt;}
.y228{bottom:747.425200pt;}
.y1e5{bottom:747.429200pt;}
.yb7{bottom:747.437200pt;}
.ye5{bottom:747.441333pt;}
.y16c{bottom:750.485333pt;}
.y10e{bottom:752.997867pt;}
.y287{bottom:753.725200pt;}
.y2b8{bottom:754.791867pt;}
.y1d9{bottom:758.412533pt;}
.y5c{bottom:759.653600pt;}
.y89{bottom:759.657333pt;}
.y1e4{bottom:763.425200pt;}
.yb6{bottom:763.433200pt;}
.ye4{bottom:763.437333pt;}
.y1db{bottom:765.079200pt;}
.y10d{bottom:766.331200pt;}
.y286{bottom:768.391867pt;}
.y2b7{bottom:769.191867pt;}
.y168{bottom:771.477333pt;}
.y1d7{bottom:771.745867pt;}
.y2c{bottom:774.803200pt;}
.y5b{bottom:775.649600pt;}
.y88{bottom:775.653333pt;}
.y1da{bottom:778.412533pt;}
.yb5{bottom:779.429200pt;}
.ye3{bottom:779.433333pt;}
.y2{bottom:781.661334pt;}
.y285{bottom:783.058533pt;}
.y2b6{bottom:783.591867pt;}
.y1d8{bottom:785.079200pt;}
.y10b{bottom:785.435200pt;}
.y5a{bottom:791.645600pt;}
.y87{bottom:791.649333pt;}
.y2b{bottom:792.191733pt;}
.yb4{bottom:795.425200pt;}
.ye2{bottom:795.429333pt;}
.y47{bottom:797.365200pt;}
.y284{bottom:797.725200pt;}
.y2b5{bottom:797.991867pt;}
.y165{bottom:798.306533pt;}
.y59{bottom:807.641600pt;}
.y86{bottom:807.645333pt;}
.y2a{bottom:808.329067pt;}
.yb3{bottom:811.421200pt;}
.ye1{bottom:811.425333pt;}
.y136{bottom:811.906533pt;}
.y283{bottom:812.391867pt;}
.y46{bottom:814.559067pt;}
.y29{bottom:824.466400pt;}
.y28{bottom:840.603733pt;}
.y58{bottom:844.017333pt;}
.y85{bottom:846.005200pt;}
.y1{bottom:859.312000pt;}
.y27{bottom:867.070800pt;}
.h10{height:22.720000pt;}
.he{height:22.752000pt;}
.hc{height:24.031250pt;}
.hf{height:24.648000pt;}
.h13{height:27.635417pt;}
.hd{height:28.036458pt;}
.h8{height:28.560000pt;}
.h14{height:29.656250pt;}
.h1c{height:32.041667pt;}
.h20{height:32.681667pt;}
.h1f{height:33.748333pt;}
.h23{height:34.598958pt;}
.h9{height:35.242667pt;}
.h19{height:36.007717pt;}
.h17{height:36.046875pt;}
.h22{height:36.093750pt;}
.h11{height:38.072917pt;}
.h29{height:39.502733pt;}
.h1d{height:39.541667pt;}
.h24{height:39.558200pt;}
.h2a{height:39.564067pt;}
.h1a{height:40.104167pt;}
.h28{height:40.437667pt;}
.h12{height:41.497002pt;}
.h1b{height:42.013021pt;}
.h3{height:42.840000pt;}
.h21{height:44.064333pt;}
.h16{height:44.114583pt;}
.h25{height:44.420375pt;}
.h2c{height:44.436375pt;}
.h2b{height:44.468375pt;}
.h18{height:44.484375pt;}
.h15{height:45.499067pt;}
.h7{height:50.346667pt;}
.h6{height:52.864000pt;}
.h26{height:58.708333pt;}
.h2{height:60.416000pt;}
.h1e{height:66.208333pt;}
.h5{height:85.589333pt;}
.h27{height:92.875000pt;}
.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;}
.x11{left:68.031467pt;}
.x44{left:72.324400pt;}
.x5{left:75.940933pt;}
.x1e{left:77.441067pt;}
.xc{left:79.370000pt;}
.xe{left:83.168667pt;}
.x10{left:86.360667pt;}
.x13{left:87.429733pt;}
.x1f{left:88.929067pt;}
.x1{left:90.706667pt;}
.x18{left:92.050400pt;}
.x33{left:93.345067pt;}
.x2{left:94.486667pt;}
.x46{left:97.408933pt;}
.x37{left:98.335867pt;}
.x35{left:102.649600pt;}
.x39{left:105.045200pt;}
.x36{left:107.140267pt;}
.x1c{left:116.967733pt;}
.x1d{left:122.738400pt;}
.x1b{left:124.018400pt;}
.x3c{left:126.955067pt;}
.x22{left:145.771733pt;}
.x21{left:149.003733pt;}
.x43{left:153.977733pt;}
.x3a{left:160.138533pt;}
.x45{left:161.536933pt;}
.x32{left:163.809067pt;}
.x15{left:168.457200pt;}
.x34{left:174.670933pt;}
.x12{left:176.016400pt;}
.x4{left:180.874667pt;}
.x24{left:212.641067pt;}
.xf{left:216.431600pt;}
.x3f{left:219.349733pt;}
.x3d{left:220.512400pt;}
.x3e{left:225.312400pt;}
.x23{left:227.073067pt;}
.xd{left:230.554000pt;}
.x25{left:234.859733pt;}
.x20{left:237.067733pt;}
.x19{left:238.397067pt;}
.x1a{left:243.271733pt;}
.x42{left:244.875067pt;}
.x28{left:295.318400pt;}
.x26{left:297.121067pt;}
.x41{left:298.379067pt;}
.x27{left:299.830400pt;}
.x29{left:301.142400pt;}
.x40{left:314.869733pt;}
.x16{left:325.043867pt;}
.x14{left:332.603067pt;}
.x2b{left:353.601067pt;}
.x2a{left:367.169067pt;}
.x3b{left:371.637200pt;}
.x2c{left:373.217067pt;}
.x3{left:404.408000pt;}
.x38{left:406.111867pt;}
.xb{left:421.319600pt;}
.x2e{left:425.739733pt;}
.x2d{left:427.158400pt;}
.x6{left:442.251600pt;}
.x17{left:488.930667pt;}
.x31{left:499.574400pt;}
.xa{left:505.442267pt;}
.x2f{left:507.265067pt;}
.x30{left:509.974400pt;}
.x8{left:519.577600pt;}
.x9{left:532.499600pt;}
.x7{left:539.580267pt;}
}




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