
    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_edc2edbcaab28afb3075a33b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_7323b299edf3e86acb0edf11.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_08617e49d0a017677934439f.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_194d5954c3944549b954439f.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_c93c63c2067abb7c91b7907d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_627a44b9fe8bba5aea553acb.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_f5d3a2a621025bfcb0f90008.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3907f12a4323f41b31368f7d.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_6529466c46a9ad2822bf90aa.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3207734e25a822eaed86f278.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_04e972fda82a5fdbfb04e9ca.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_143c54d5720c06838e0b5354.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_89ed15a1431f96c1bc243e80.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8431621d130b2bea9629fbe4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_93c3065b0a652d6e6dc26555.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d956665fdb85c4845b3727d7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.989746;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);}
.v4{vertical-align:-13.860000px;}
.v6{vertical-align:-10.080000px;}
.v8{vertical-align:-8.945400px;}
.v2{vertical-align:-3.402000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.402000px;}
.v7{vertical-align:7.145400px;}
.v5{vertical-align:13.883400px;}
.v3{vertical-align:15.840000px;}
.va{vertical-align:30.000000px;}
.vb{vertical-align:38.736000px;}
.v9{vertical-align:54.000000px;}
.ls20{letter-spacing:-1.872000px;}
.ls3f{letter-spacing:-1.200000px;}
.ls2a{letter-spacing:-1.080000px;}
.ls36{letter-spacing:-1.056000px;}
.ls29{letter-spacing:-1.026000px;}
.ls2b{letter-spacing:-0.702000px;}
.ls34{letter-spacing:-0.378000px;}
.ls28{letter-spacing:-0.270000px;}
.ls35{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.192000px;}
.ls1b{letter-spacing:-0.162000px;}
.ls3b{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.096000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls3d{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001800px;}
.ls6{letter-spacing:0.002400px;}
.ls7{letter-spacing:0.012900px;}
.ls2f{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.054000px;}
.ls37{letter-spacing:0.096000px;}
.ls2d{letter-spacing:0.108000px;}
.ls38{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.162000px;}
.ls31{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.270000px;}
.ls3a{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.324000px;}
.ls33{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.378000px;}
.ls30{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.486000px;}
.ls1c{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.549126px;}
.ls23{letter-spacing:0.594000px;}
.ls22{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.702000px;}
.lse{letter-spacing:0.705012px;}
.ls1f{letter-spacing:0.810000px;}
.ls27{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.918000px;}
.ls26{letter-spacing:0.972000px;}
.ls1d{letter-spacing:1.026000px;}
.ls3{letter-spacing:1.071000px;}
.ls11{letter-spacing:1.098246px;}
.ls10{letter-spacing:1.254012px;}
.lsf{letter-spacing:1.384812px;}
.ls2e{letter-spacing:1.459200px;}
.ls8{letter-spacing:1.969200px;}
.lsc{letter-spacing:1.976400px;}
.lsb{letter-spacing:1.977600px;}
.lsd{letter-spacing:2.039616px;}
.ls2{letter-spacing:2.205000px;}
.ls39{letter-spacing:2.640000px;}
.ls3c{letter-spacing:3.120000px;}
.lsa{letter-spacing:3.511800px;}
.ls4{letter-spacing:25.996200px;}
.ls2c{letter-spacing:89.136000px;}
.ls9{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;}
}
.ws7{word-spacing:-22.027853px;}
.wsa4{word-spacing:-18.216000px;}
.ws8{word-spacing:-16.693430px;}
.ws9{word-spacing:-14.850000px;}
.wsa6{word-spacing:-13.200000px;}
.wsa5{word-spacing:-13.152000px;}
.wse1{word-spacing:-12.912000px;}
.wsd7{word-spacing:-12.000000px;}
.ws6f{word-spacing:-11.550000px;}
.ws1{word-spacing:-10.080000px;}
.ws6{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.864000px;}
.ws4{word-spacing:-8.662500px;}
.ws5{word-spacing:-8.631000px;}
.wse{word-spacing:-5.292000px;}
.ws11{word-spacing:-2.205000px;}
.ws19{word-spacing:-2.039616px;}
.ws87{word-spacing:-1.026000px;}
.ws88{word-spacing:-0.918000px;}
.ws63{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.714000px;}
.ws49{word-spacing:-0.702000px;}
.ws5b{word-spacing:-0.648000px;}
.ws5c{word-spacing:-0.594000px;}
.ws46{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.432000px;}
.wsbd{word-spacing:-0.384000px;}
.ws7f{word-spacing:-0.378000px;}
.wsb1{word-spacing:-0.336000px;}
.ws2c{word-spacing:-0.324000px;}
.wsd0{word-spacing:-0.288000px;}
.ws8e{word-spacing:-0.270000px;}
.wsaf{word-spacing:-0.240000px;}
.ws75{word-spacing:-0.216000px;}
.wscf{word-spacing:-0.192000px;}
.ws6e{word-spacing:-0.162000px;}
.wsca{word-spacing:-0.144000px;}
.ws90{word-spacing:-0.108000px;}
.wsb4{word-spacing:-0.096000px;}
.ws1b{word-spacing:-0.054000px;}
.wsb9{word-spacing:-0.048000px;}
.ws3{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.wsda{word-spacing:0.048000px;}
.ws66{word-spacing:0.054000px;}
.ws29{word-spacing:0.108000px;}
.wsd3{word-spacing:0.144000px;}
.ws7b{word-spacing:0.162000px;}
.wse0{word-spacing:0.192000px;}
.ws8f{word-spacing:0.216000px;}
.wsbf{word-spacing:0.240000px;}
.ws6d{word-spacing:0.270000px;}
.wsd1{word-spacing:0.288000px;}
.ws7d{word-spacing:0.378000px;}
.wsc6{word-spacing:0.384000px;}
.wsba{word-spacing:0.480000px;}
.ws54{word-spacing:0.486000px;}
.wscc{word-spacing:0.528000px;}
.ws44{word-spacing:0.540000px;}
.wsd6{word-spacing:0.576000px;}
.ws76{word-spacing:0.594000px;}
.wsa1{word-spacing:0.702000px;}
.wsc0{word-spacing:0.768000px;}
.ws57{word-spacing:0.810000px;}
.wse2{word-spacing:0.816000px;}
.ws33{word-spacing:0.864000px;}
.ws2a{word-spacing:0.972000px;}
.wsce{word-spacing:1.008000px;}
.ws1f{word-spacing:1.026000px;}
.wsaa{word-spacing:1.056000px;}
.ws97{word-spacing:1.080000px;}
.wsac{word-spacing:1.104000px;}
.ws9e{word-spacing:1.134000px;}
.wsbe{word-spacing:1.152000px;}
.ws70{word-spacing:1.188000px;}
.ws60{word-spacing:1.296000px;}
.ws15{word-spacing:1.302000px;}
.ws2f{word-spacing:1.350000px;}
.wscb{word-spacing:1.392000px;}
.wsa2{word-spacing:1.404000px;}
.wse4{word-spacing:1.440000px;}
.ws71{word-spacing:1.458000px;}
.wsa7{word-spacing:1.488000px;}
.ws6a{word-spacing:1.512000px;}
.ws34{word-spacing:1.566000px;}
.ws35{word-spacing:1.674000px;}
.wsd2{word-spacing:1.680000px;}
.ws91{word-spacing:1.782000px;}
.ws85{word-spacing:1.890000px;}
.wsc{word-spacing:1.980000px;}
.ws1c{word-spacing:1.998000px;}
.ws4b{word-spacing:2.052000px;}
.wsf{word-spacing:2.106000px;}
.ws24{word-spacing:2.160000px;}
.ws98{word-spacing:2.214000px;}
.wsc1{word-spacing:2.256000px;}
.ws95{word-spacing:2.268000px;}
.wsc2{word-spacing:2.304000px;}
.wsd{word-spacing:2.310000px;}
.ws52{word-spacing:2.352000px;}
.ws3d{word-spacing:2.376000px;}
.ws10{word-spacing:2.394000px;}
.ws65{word-spacing:2.430000px;}
.ws26{word-spacing:2.484000px;}
.wsa8{word-spacing:2.496000px;}
.ws3e{word-spacing:2.592000px;}
.ws12{word-spacing:2.640000px;}
.ws8b{word-spacing:2.646000px;}
.ws96{word-spacing:2.700000px;}
.ws89{word-spacing:2.754000px;}
.wsc4{word-spacing:2.784000px;}
.ws45{word-spacing:2.805000px;}
.ws67{word-spacing:2.808000px;}
.wsb0{word-spacing:2.832000px;}
.wsb5{word-spacing:2.880000px;}
.ws1a{word-spacing:2.970000px;}
.wsc7{word-spacing:2.976000px;}
.ws3c{word-spacing:3.024000px;}
.wsc8{word-spacing:3.072000px;}
.ws3b{word-spacing:3.078000px;}
.wsdc{word-spacing:3.120000px;}
.ws43{word-spacing:3.132000px;}
.wse3{word-spacing:3.168000px;}
.ws93{word-spacing:3.186000px;}
.ws5e{word-spacing:3.240000px;}
.wsc9{word-spacing:3.264000px;}
.ws56{word-spacing:3.294000px;}
.ws55{word-spacing:3.348000px;}
.wsd4{word-spacing:3.360000px;}
.ws36{word-spacing:3.402000px;}
.ws16{word-spacing:3.444000px;}
.ws42{word-spacing:3.456000px;}
.wsb{word-spacing:3.492000px;}
.ws25{word-spacing:3.510000px;}
.ws84{word-spacing:3.564000px;}
.wsbb{word-spacing:3.600000px;}
.ws69{word-spacing:3.618000px;}
.ws86{word-spacing:3.630000px;}
.ws23{word-spacing:3.672000px;}
.ws51{word-spacing:3.726000px;}
.ws81{word-spacing:3.834000px;}
.ws32{word-spacing:3.888000px;}
.ws58{word-spacing:3.942000px;}
.ws17{word-spacing:3.948000px;}
.ws21{word-spacing:3.960000px;}
.ws5f{word-spacing:3.996000px;}
.ws7a{word-spacing:4.050000px;}
.wsdf{word-spacing:4.080000px;}
.ws80{word-spacing:4.104000px;}
.ws53{word-spacing:4.158000px;}
.wsb6{word-spacing:4.176000px;}
.wsa{word-spacing:4.248000px;}
.ws40{word-spacing:4.320000px;}
.wsa3{word-spacing:4.374000px;}
.wsa0{word-spacing:4.428000px;}
.ws27{word-spacing:4.482000px;}
.ws59{word-spacing:4.536000px;}
.ws99{word-spacing:4.590000px;}
.wsb7{word-spacing:4.608000px;}
.wsb8{word-spacing:4.656000px;}
.ws94{word-spacing:4.698000px;}
.ws4a{word-spacing:4.752000px;}
.wsd9{word-spacing:4.800000px;}
.wsd8{word-spacing:4.848000px;}
.ws82{word-spacing:4.860000px;}
.ws41{word-spacing:4.914000px;}
.ws31{word-spacing:4.968000px;}
.wsb3{word-spacing:5.040000px;}
.ws9a{word-spacing:5.076000px;}
.ws9b{word-spacing:5.130000px;}
.wsc5{word-spacing:5.136000px;}
.ws9c{word-spacing:5.184000px;}
.wsa9{word-spacing:5.232000px;}
.ws9d{word-spacing:5.238000px;}
.wsae{word-spacing:5.280000px;}
.ws47{word-spacing:5.292000px;}
.ws6b{word-spacing:5.400000px;}
.wsdb{word-spacing:5.424000px;}
.ws9f{word-spacing:5.454000px;}
.ws3f{word-spacing:5.562000px;}
.wsd5{word-spacing:5.712000px;}
.ws2e{word-spacing:5.724000px;}
.ws8d{word-spacing:5.778000px;}
.wsb2{word-spacing:5.808000px;}
.ws79{word-spacing:5.832000px;}
.ws1d{word-spacing:5.886000px;}
.ws28{word-spacing:5.940000px;}
.ws22{word-spacing:5.994000px;}
.wsc3{word-spacing:6.000000px;}
.ws2d{word-spacing:6.048000px;}
.ws2b{word-spacing:6.102000px;}
.wsdd{word-spacing:6.144000px;}
.ws77{word-spacing:6.156000px;}
.wsde{word-spacing:6.192000px;}
.ws5a{word-spacing:6.210000px;}
.ws18{word-spacing:6.216000px;}
.ws64{word-spacing:6.264000px;}
.ws72{word-spacing:6.426000px;}
.ws8c{word-spacing:6.480000px;}
.wsab{word-spacing:6.528000px;}
.ws61{word-spacing:6.534000px;}
.ws68{word-spacing:6.588000px;}
.wsad{word-spacing:6.624000px;}
.ws74{word-spacing:6.642000px;}
.wsbc{word-spacing:6.672000px;}
.wscd{word-spacing:6.720000px;}
.ws14{word-spacing:6.804000px;}
.ws83{word-spacing:6.858000px;}
.ws7c{word-spacing:6.966000px;}
.ws1e{word-spacing:7.020000px;}
.ws62{word-spacing:7.074000px;}
.ws7e{word-spacing:7.236000px;}
.ws8a{word-spacing:7.506000px;}
.ws48{word-spacing:7.668000px;}
.ws30{word-spacing:7.884000px;}
.ws73{word-spacing:8.046000px;}
.ws92{word-spacing:8.262000px;}
.ws50{word-spacing:57.552000px;}
.ws4e{word-spacing:135.168000px;}
.ws4f{word-spacing:148.080000px;}
.ws37{word-spacing:176.928000px;}
.ws4d{word-spacing:206.736000px;}
.ws3a{word-spacing:334.464000px;}
.ws4c{word-spacing:354.432000px;}
.ws39{word-spacing:360.192000px;}
.ws38{word-spacing:360.336000px;}
.ws20{word-spacing:406.471800px;}
.ws5d{word-spacing:526.512000px;}
.ws78{word-spacing:674.976000px;}
._a{margin-left:-26.628000px;}
._1e{margin-left:-6.334200px;}
._b{margin-left:-5.270400px;}
._0{margin-left:-4.237800px;}
._3{margin-left:-2.385000px;}
._2{margin-left:-1.170000px;}
._4{width:1.075500px;}
._6{width:2.103900px;}
._7{width:3.124200px;}
._9{width:4.474200px;}
._8{width:6.227400px;}
._1{width:7.250400px;}
._1c{width:8.537400px;}
._1d{width:10.168200px;}
._5{width:60.706200px;}
._24{width:80.097000px;}
._27{width:120.096000px;}
._1f{width:208.560000px;}
._14{width:227.808000px;}
._e{width:239.616000px;}
._25{width:243.494400px;}
._19{width:275.520000px;}
._1a{width:288.480000px;}
._21{width:292.752000px;}
._26{width:314.448000px;}
._23{width:338.400000px;}
._2c{width:355.857000px;}
._16{width:360.432000px;}
._22{width:371.712000px;}
._d{width:374.289000px;}
._10{width:386.304000px;}
._2d{width:413.652000px;}
._20{width:419.520000px;}
._2a{width:423.848400px;}
._18{width:424.896000px;}
._31{width:446.571600px;}
._1b{width:477.312000px;}
._17{width:517.008000px;}
._2f{width:539.414400px;}
._29{width:655.297800px;}
._28{width:690.144000px;}
._13{width:703.632000px;}
._12{width:800.400000px;}
._11{width:812.976000px;}
._2e{width:834.561000px;}
._2b{width:879.249000px;}
._c{width:894.661800px;}
._f{width:988.848000px;}
._15{width:1003.526400px;}
._30{width:1072.896000px;}
.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);}
.fs9{font-size:31.500000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:50.373600px;}
.fsf{font-size:51.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:54.912600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fsa{font-size:67.987200px;}
.fsb{font-size:70.602000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y26{bottom:49.760250px;}
.y25{bottom:61.757250px;}
.y5{bottom:66.525004px;}
.y24{bottom:73.754250px;}
.yae{bottom:75.216600px;}
.y84{bottom:76.818600px;}
.y256{bottom:83.355600px;}
.y1e0{bottom:84.061950px;}
.y182{bottom:85.519500px;}
.y2ec{bottom:86.840850px;}
.y289{bottom:87.740850px;}
.y2ba{bottom:90.440850px;}
.y1a9{bottom:90.773850px;}
.y160{bottom:90.946500px;}
.y136{bottom:91.266150px;}
.y1c5{bottom:93.508500px;}
.yad{bottom:94.710600px;}
.y83{bottom:94.814100px;}
.yde{bottom:95.832750px;}
.y4{bottom:97.125005px;}
.y207{bottom:97.407150px;}
.y255{bottom:99.555600px;}
.y27{bottom:100.243950px;}
.y1df{bottom:102.057450px;}
.y100{bottom:102.450600px;}
.y2eb{bottom:103.040850px;}
.y181{bottom:103.218000px;}
.y288{bottom:103.940850px;}
.y2b9{bottom:106.940850px;}
.y1a8{bottom:108.769350px;}
.y15f{bottom:109.252500px;}
.y135{bottom:109.261650px;}
.yff{bottom:109.950600px;}
.y1c4{bottom:111.504000px;}
.y82{bottom:112.809600px;}
.ydd{bottom:113.828250px;}
.yac{bottom:114.204600px;}
.y206{bottom:115.402650px;}
.y254{bottom:115.755600px;}
.y22b{bottom:117.052500px;}
.y2ea{bottom:118.940850px;}
.y1de{bottom:120.052950px;}
.y287{bottom:120.140850px;}
.y180{bottom:120.916500px;}
.yfd{bottom:122.586600px;}
.y2b8{bottom:123.440850px;}
.y1a7{bottom:126.764850px;}
.y134{bottom:127.257150px;}
.y15e{bottom:127.558500px;}
.y1c3{bottom:129.499500px;}
.y81{bottom:130.805100px;}
.ydc{bottom:131.823750px;}
.y253{bottom:131.955600px;}
.y205{bottom:133.398150px;}
.yab{bottom:133.698600px;}
.y2e9{bottom:134.840850px;}
.y22a{bottom:135.048000px;}
.y286{bottom:136.340850px;}
.y55{bottom:136.728300px;}
.y1dd{bottom:138.048450px;}
.y17f{bottom:138.615000px;}
.y23{bottom:139.264499px;}
.yfe{bottom:139.770600px;}
.y2b7{bottom:139.940850px;}
.y1a6{bottom:144.760350px;}
.y133{bottom:145.252650px;}
.y15d{bottom:145.864500px;}
.y1c2{bottom:147.495000px;}
.y252{bottom:148.155600px;}
.y80{bottom:148.800600px;}
.ydb{bottom:149.819250px;}
.y2e8{bottom:150.740850px;}
.y204{bottom:151.393650px;}
.y285{bottom:152.540850px;}
.y229{bottom:153.043500px;}
.yaa{bottom:153.192600px;}
.y54{bottom:154.723800px;}
.y1dc{bottom:156.043950px;}
.y17e{bottom:156.313500px;}
.y2b6{bottom:156.440850px;}
.yfc{bottom:162.090600px;}
.y132{bottom:163.248150px;}
.y15c{bottom:164.170500px;}
.y251{bottom:164.355600px;}
.y1c1{bottom:165.490500px;}
.y2e7{bottom:166.640850px;}
.y7f{bottom:166.796100px;}
.yda{bottom:167.814750px;}
.y284{bottom:168.740850px;}
.y203{bottom:169.389150px;}
.y228{bottom:171.039000px;}
.ya9{bottom:172.686600px;}
.y53{bottom:172.719300px;}
.y2b5{bottom:172.940850px;}
.y17d{bottom:174.012000px;}
.y1db{bottom:174.039450px;}
.y1a5{bottom:175.516200px;}
.yfb{bottom:177.090600px;}
.y250{bottom:180.555600px;}
.y131{bottom:181.243650px;}
.y15b{bottom:182.476500px;}
.y2e6{bottom:182.540850px;}
.y1c0{bottom:183.486000px;}
.y7e{bottom:184.791600px;}
.y283{bottom:184.940850px;}
.yd9{bottom:185.810250px;}
.y202{bottom:187.384650px;}
.y227{bottom:189.034500px;}
.y2b4{bottom:189.440850px;}
.y52{bottom:190.714800px;}
.y17c{bottom:191.710500px;}
.y1da{bottom:192.034950px;}
.ya8{bottom:192.180600px;}
.yfa{bottom:196.458600px;}
.y24f{bottom:196.755600px;}
.y1a{bottom:196.933500px;}
.y2e5{bottom:198.440850px;}
.y130{bottom:199.239150px;}
.y15a{bottom:200.782500px;}
.y282{bottom:201.140850px;}
.y1bf{bottom:201.481500px;}
.y7d{bottom:202.787100px;}
.yd8{bottom:203.805750px;}
.y201{bottom:205.380150px;}
.y2b3{bottom:205.940850px;}
.y226{bottom:207.030000px;}
.y51{bottom:208.710300px;}
.y17b{bottom:209.409000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1d9{bottom:210.030450px;}
.yf9{bottom:211.458600px;}
.ya7{bottom:211.674600px;}
.y24e{bottom:212.955600px;}
.y2e4{bottom:214.340850px;}
.y12f{bottom:217.234650px;}
.y281{bottom:217.340850px;}
.y159{bottom:219.088500px;}
.y1be{bottom:219.477000px;}
.y1a4{bottom:220.718550px;}
.y7c{bottom:220.782600px;}
.yf3{bottom:221.142600px;}
.yd7{bottom:221.801250px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y2b2{bottom:222.440850px;}
.y200{bottom:223.375650px;}
.y225{bottom:225.025500px;}
.y50{bottom:226.705800px;}
.y17a{bottom:227.107500px;}
.y1d8{bottom:228.025950px;}
.y24d{bottom:229.155600px;}
.y2e3{bottom:230.240850px;}
.yf8{bottom:230.826600px;}
.y280{bottom:233.540850px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y12e{bottom:235.230150px;}
.yf2{bottom:236.142600px;}
.y158{bottom:237.394500px;}
.y1bd{bottom:237.472500px;}
.y1a3{bottom:238.714050px;}
.y7b{bottom:238.778100px;}
.y2b1{bottom:238.940850px;}
.yd6{bottom:239.796750px;}
.y1ff{bottom:241.371150px;}
.y224{bottom:243.021000px;}
.y4f{bottom:244.701300px;}
.y179{bottom:244.806000px;}
.y24c{bottom:245.355600px;}
.yf7{bottom:245.826600px;}
.y1d7{bottom:246.021450px;}
.y2e2{bottom:246.140850px;}
.y27f{bottom:249.740850px;}
.ya6{bottom:251.606550px;}
.y12d{bottom:253.225650px;}
.y2b0{bottom:255.440850px;}
.y1bc{bottom:255.468000px;}
.y157{bottom:255.700500px;}
.y1a2{bottom:256.709550px;}
.y7a{bottom:256.773600px;}
.yd5{bottom:257.792250px;}
.y1fe{bottom:259.366650px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y223{bottom:261.016500px;}
.y24b{bottom:261.555600px;}
.y2e1{bottom:262.040850px;}
.y178{bottom:262.504500px;}
.y4e{bottom:262.696800px;}
.y1d6{bottom:264.016950px;}
.yf6{bottom:265.194600px;}
.y27e{bottom:265.940850px;}
.ya5{bottom:270.974550px;}
.y12c{bottom:271.221150px;}
.y2af{bottom:271.940850px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y156{bottom:274.006500px;}
.y1a1{bottom:274.705050px;}
.y79{bottom:274.769100px;}
.yd4{bottom:275.787750px;}
.y1fd{bottom:277.362150px;}
.y24a{bottom:277.755600px;}
.y2e0{bottom:277.940850px;}
.y222{bottom:279.012000px;}
.yf5{bottom:280.194600px;}
.y177{bottom:280.203000px;}
.y4d{bottom:280.692300px;}
.y1d5{bottom:282.012450px;}
.y27d{bottom:282.140850px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1bb{bottom:288.349800px;}
.y2ae{bottom:288.440850px;}
.y12b{bottom:289.216650px;}
.ya4{bottom:290.342550px;}
.y155{bottom:292.312500px;}
.y1a0{bottom:292.700550px;}
.y78{bottom:292.764600px;}
.yd3{bottom:293.783250px;}
.y2df{bottom:293.840850px;}
.y249{bottom:293.955600px;}
.yf4{bottom:295.194600px;}
.y1fc{bottom:295.357650px;}
.y221{bottom:297.007500px;}
.y176{bottom:297.901500px;}
.y27c{bottom:298.340850px;}
.y4c{bottom:298.687800px;}
.y1d4{bottom:300.007950px;}
.y2ad{bottom:304.940850px;}
.y12a{bottom:307.212150px;}
.ya3{bottom:309.710550px;}
.y2de{bottom:309.740850px;}
.y248{bottom:310.155600px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y154{bottom:310.618500px;}
.y19f{bottom:310.696050px;}
.y77{bottom:310.760100px;}
.yd2{bottom:311.778750px;}
.y1fb{bottom:313.353150px;}
.y27b{bottom:314.540850px;}
.y220{bottom:315.003000px;}
.y175{bottom:315.600000px;}
.y4b{bottom:316.683300px;}
.yf1{bottom:316.686600px;}
.y1d3{bottom:318.003450px;}
.y2ac{bottom:321.440850px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y129{bottom:325.207650px;}
.y2dd{bottom:325.640850px;}
.y247{bottom:326.355600px;}
.y19e{bottom:328.691550px;}
.y76{bottom:328.755600px;}
.y153{bottom:328.924500px;}
.ya2{bottom:329.078550px;}
.yd1{bottom:329.774250px;}
.y27a{bottom:330.740850px;}
.y1fa{bottom:331.348650px;}
.y21f{bottom:332.998500px;}
.y174{bottom:333.298500px;}
.y4a{bottom:334.678800px;}
.y1d2{bottom:335.998950px;}
.y2ab{bottom:337.940850px;}
.y2dc{bottom:341.540850px;}
.y246{bottom:342.555600px;}
.y128{bottom:343.203150px;}
.y19d{bottom:346.687050px;}
.y75{bottom:346.751100px;}
.yf0{bottom:346.867200px;}
.y279{bottom:346.940850px;}
.y152{bottom:347.230500px;}
.yd0{bottom:347.769750px;}
.y11{bottom:348.133500px;}
.ya1{bottom:348.446550px;}
.y1f9{bottom:349.344150px;}
.y21e{bottom:350.994000px;}
.y173{bottom:350.997000px;}
.y1d1{bottom:353.994450px;}
.y2aa{bottom:354.440850px;}
.y2db{bottom:357.440850px;}
.y245{bottom:358.755600px;}
.y127{bottom:361.198650px;}
.y278{bottom:363.140850px;}
.y19c{bottom:364.682550px;}
.y74{bottom:364.746600px;}
.y49{bottom:365.434800px;}
.y151{bottom:365.536500px;}
.ycf{bottom:365.765250px;}
.y1f8{bottom:367.339650px;}
.y172{bottom:368.695500px;}
.y21d{bottom:368.989500px;}
.ya0{bottom:369.938550px;}
.y2a9{bottom:370.940850px;}
.y1d0{bottom:371.989950px;}
.y2da{bottom:373.340850px;}
.y244{bottom:374.955600px;}
.y126{bottom:379.194150px;}
.y277{bottom:379.340850px;}
.y19b{bottom:382.678050px;}
.y73{bottom:382.742100px;}
.yef{bottom:383.467650px;}
.yce{bottom:383.760750px;}
.y150{bottom:383.842500px;}
.y1f7{bottom:385.335150px;}
.y10{bottom:386.785499px;}
.y21c{bottom:386.985000px;}
.y2a8{bottom:387.440850px;}
.y2d9{bottom:389.240850px;}
.y1cf{bottom:389.985450px;}
.y243{bottom:391.155600px;}
.y276{bottom:395.540850px;}
.y125{bottom:397.189650px;}
.y9f{bottom:400.119300px;}
.y72{bottom:400.737600px;}
.y171{bottom:401.277450px;}
.yee{bottom:401.463150px;}
.ycd{bottom:401.756250px;}
.y14f{bottom:402.148500px;}
.y1f6{bottom:403.330650px;}
.y2a7{bottom:403.940850px;}
.y21b{bottom:404.980500px;}
.y2d8{bottom:405.140850px;}
.y242{bottom:407.355600px;}
.yf{bottom:408.044999px;}
.y275{bottom:411.740850px;}
.y124{bottom:415.185150px;}
.y46{bottom:417.922050px;}
.y71{bottom:418.733100px;}
.yed{bottom:419.458650px;}
.y19a{bottom:419.611800px;}
.ycc{bottom:419.751750px;}
.y2a6{bottom:420.440850px;}
.y14e{bottom:420.454500px;}
.y2d7{bottom:421.040850px;}
.y1f5{bottom:421.326150px;}
.y1ce{bottom:422.867250px;}
.y21a{bottom:422.976000px;}
.y241{bottom:423.555600px;}
.y170{bottom:425.081400px;}
.y274{bottom:427.940850px;}
.y199{bottom:429.295800px;}
.y123{bottom:433.180650px;}
.y45{bottom:436.559400px;}
.y9e{bottom:436.692600px;}
.y70{bottom:436.728600px;}
.y2a5{bottom:436.940850px;}
.yec{bottom:437.454150px;}
.y14d{bottom:438.760500px;}
.y1f4{bottom:439.321650px;}
.y240{bottom:439.755600px;}
.y219{bottom:440.971500px;}
.y273{bottom:444.140850px;}
.y122{bottom:451.176150px;}
.y2d6{bottom:452.840850px;}
.y1ba{bottom:453.307050px;}
.y2a4{bottom:453.440850px;}
.y9d{bottom:454.688100px;}
.y6f{bottom:454.724100px;}
.yeb{bottom:455.449650px;}
.y23f{bottom:455.955600px;}
.ycb{bottom:456.696150px;}
.y14c{bottom:457.066500px;}
.y1f3{bottom:457.317150px;}
.y198{bottom:458.347800px;}
.y44{bottom:458.804400px;}
.y218{bottom:458.967000px;}
.y272{bottom:460.340850px;}
.y197{bottom:468.031800px;}
.y2d5{bottom:468.740850px;}
.y121{bottom:469.171650px;}
.y2a3{bottom:469.940850px;}
.y1b9{bottom:471.302550px;}
.yca{bottom:471.696150px;}
.y23e{bottom:472.155600px;}
.y43{bottom:472.307400px;}
.y9c{bottom:472.683600px;}
.y6e{bottom:472.719600px;}
.yea{bottom:473.445150px;}
.y1f2{bottom:475.312650px;}
.y14b{bottom:475.372500px;}
.y271{bottom:476.540850px;}
.y217{bottom:476.962500px;}
.yc7{bottom:479.196150px;}
.y2d4{bottom:484.640850px;}
.ye{bottom:484.864502px;}
.y2a2{bottom:486.440850px;}
.yc9{bottom:486.696150px;}
.y120{bottom:487.167150px;}
.y23d{bottom:488.355600px;}
.y1b8{bottom:489.298050px;}
.y9b{bottom:490.679100px;}
.y6d{bottom:490.715100px;}
.ye9{bottom:491.440650px;}
.y270{bottom:492.740850px;}
.y1f1{bottom:493.308150px;}
.y14a{bottom:493.678500px;}
.y40{bottom:494.528400px;}
.y216{bottom:494.958000px;}
.y196{bottom:497.083800px;}
.y2d3{bottom:500.540850px;}
.yc8{bottom:501.696150px;}
.yd{bottom:502.864502px;}
.y2a1{bottom:502.940850px;}
.y23c{bottom:504.555600px;}
.y1b7{bottom:507.293550px;}
.y3f{bottom:508.031400px;}
.y6c{bottom:508.710600px;}
.y26f{bottom:508.940850px;}
.ye8{bottom:509.436150px;}
.y1f0{bottom:511.303650px;}
.y149{bottom:511.984500px;}
.y215{bottom:512.953500px;}
.y2d2{bottom:516.440850px;}
.y195{bottom:518.575800px;}
.y2a0{bottom:519.440850px;}
.y23b{bottom:520.755600px;}
.yc{bottom:520.864502px;}
.yc6{bottom:521.064150px;}
.y9a{bottom:521.434950px;}
.y3e{bottom:521.534400px;}
.y11f{bottom:524.092650px;}
.y26e{bottom:525.140850px;}
.y6b{bottom:526.706100px;}
.ye7{bottom:527.431650px;}
.y1ef{bottom:529.299150px;}
.y148{bottom:530.290500px;}
.y214{bottom:530.949000px;}
.y11c{bottom:531.592650px;}
.y2d1{bottom:532.340850px;}
.y3d{bottom:535.037400px;}
.y29f{bottom:535.940850px;}
.yc4{bottom:536.064150px;}
.y23a{bottom:536.955600px;}
.y1b6{bottom:538.049550px;}
.yb{bottom:538.864499px;}
.y11e{bottom:539.092650px;}
.y26d{bottom:541.340850px;}
.y118{bottom:541.756650px;}
.y6a{bottom:544.701600px;}
.ye6{bottom:545.427150px;}
.y11b{bottom:546.592650px;}
.y1ee{bottom:547.294650px;}
.y2d0{bottom:548.240850px;}
.y3c{bottom:548.540400px;}
.y147{bottom:548.596500px;}
.y194{bottom:548.756550px;}
.y213{bottom:548.944500px;}
.yc5{bottom:551.064150px;}
.y29e{bottom:552.440850px;}
.y239{bottom:553.155600px;}
.y11d{bottom:554.092650px;}
.y117{bottom:556.756650px;}
.ya{bottom:556.864499px;}
.y26c{bottom:557.540850px;}
.y3b{bottom:562.043400px;}
.y69{bottom:562.697100px;}
.y2cf{bottom:564.140850px;}
.y1ed{bottom:565.290150px;}
.y99{bottom:566.686500px;}
.y146{bottom:566.902500px;}
.y212{bottom:566.940000px;}
.y16f{bottom:567.283350px;}
.y29d{bottom:568.940850px;}
.y238{bottom:569.355600px;}
.yc3{bottom:570.432150px;}
.y116{bottom:571.756650px;}
.y26b{bottom:573.740850px;}
.y11a{bottom:573.940650px;}
.y3a{bottom:575.546400px;}
.yc2{bottom:577.932150px;}
.ye5{bottom:578.308950px;}
.y2ce{bottom:580.040850px;}
.y68{bottom:580.692600px;}
.y119{bottom:581.440650px;}
.y1b5{bottom:583.251900px;}
.y1ec{bottom:583.285650px;}
.y98{bottom:584.682000px;}
.y211{bottom:584.935500px;}
.y145{bottom:585.208500px;}
.y16e{bottom:585.278850px;}
.y193{bottom:585.356850px;}
.y29c{bottom:585.440850px;}
.y237{bottom:585.555600px;}
.y39{bottom:589.049400px;}
.y26a{bottom:589.940850px;}
.ye4{bottom:593.608950px;}
.y2cd{bottom:595.940850px;}
.y67{bottom:598.688100px;}
.y1b4{bottom:601.247400px;}
.y1eb{bottom:601.281150px;}
.y236{bottom:601.755600px;}
.y29b{bottom:601.940850px;}
.y38{bottom:602.552400px;}
.y97{bottom:602.677500px;}
.y210{bottom:602.931000px;}
.y16d{bottom:603.274350px;}
.y192{bottom:603.352350px;}
.y144{bottom:603.514500px;}
.yc0{bottom:604.800150px;}
.y269{bottom:606.140850px;}
.y115{bottom:608.788650px;}
.y2cc{bottom:611.840850px;}
.yc1{bottom:612.300150px;}
.y37{bottom:616.049400px;}
.y114{bottom:616.288650px;}
.y66{bottom:616.683600px;}
.y235{bottom:617.955600px;}
.y42{bottom:618.431400px;}
.y29a{bottom:618.440850px;}
.y1b3{bottom:619.242900px;}
.ybe{bottom:619.800150px;}
.y96{bottom:620.673000px;}
.y16c{bottom:621.269850px;}
.y191{bottom:621.347850px;}
.y143{bottom:621.820500px;}
.y268{bottom:622.340850px;}
.y2cb{bottom:627.740850px;}
.y36{bottom:629.552400px;}
.y41{bottom:630.408900px;}
.y1ea{bottom:632.035500px;}
.y20f{bottom:633.687000px;}
.y65{bottom:634.679100px;}
.ybf{bottom:634.800150px;}
.y299{bottom:634.940850px;}
.y1b2{bottom:637.238400px;}
.y267{bottom:638.540850px;}
.y95{bottom:638.668500px;}
.y16b{bottom:639.265350px;}
.y190{bottom:639.343350px;}
.y142{bottom:640.126500px;}
.y113{bottom:643.156650px;}
.y2ca{bottom:643.640850px;}
.y35{bottom:644.147400px;}
.y9{bottom:645.510000px;}
.y234{bottom:646.911450px;}
.y112{bottom:650.656650px;}
.y298{bottom:651.440850px;}
.y1e9{bottom:651.687000px;}
.y266{bottom:654.740850px;}
.ybc{bottom:654.816150px;}
.y1b1{bottom:655.233900px;}
.y94{bottom:656.664000px;}
.y18f{bottom:657.338850px;}
.y141{bottom:658.432500px;}
.y2c9{bottom:659.540850px;}
.ybd{bottom:661.992150px;}
.y64{bottom:665.434950px;}
.y8{bottom:666.771000px;}
.y10d{bottom:667.840650px;}
.y297{bottom:667.940850px;}
.yb9{bottom:669.492150px;}
.ybb{bottom:669.816150px;}
.y16a{bottom:670.021200px;}
.y265{bottom:670.940850px;}
.y1b0{bottom:673.229400px;}
.y34{bottom:673.908300px;}
.y93{bottom:674.659500px;}
.y18e{bottom:675.334350px;}
.y2c8{bottom:675.440850px;}
.y140{bottom:676.738500px;}
.y111{bottom:677.524650px;}
.y20e{bottom:678.912000px;}
.y296{bottom:684.440850px;}
.yba{bottom:684.816150px;}
.y110{bottom:685.024650px;}
.y33{bottom:687.074250px;}
.y264{bottom:687.140850px;}
.y1af{bottom:691.224900px;}
.y2c7{bottom:691.340850px;}
.y233{bottom:692.073300px;}
.y92{bottom:692.655000px;}
.y18d{bottom:693.329850px;}
.y13f{bottom:695.044500px;}
.y1e8{bottom:696.902850px;}
.y20d{bottom:696.907500px;}
.y32{bottom:700.240050px;}
.y295{bottom:700.940850px;}
.y263{bottom:703.340850px;}
.y2c6{bottom:707.240850px;}
.yb8{bottom:708.000150px;}
.y1ae{bottom:709.220400px;}
.y63{bottom:710.646300px;}
.y91{bottom:710.650500px;}
.y1cd{bottom:710.958000px;}
.y18c{bottom:711.325350px;}
.y10f{bottom:711.892650px;}
.y169{bottom:713.070600px;}
.y13e{bottom:713.350500px;}
.y1e7{bottom:714.898350px;}
.y20c{bottom:714.903000px;}
.y294{bottom:717.440850px;}
.y262{bottom:719.540850px;}
.y31{bottom:719.676750px;}
.yb7{bottom:719.808150px;}
.y232{bottom:722.829150px;}
.y2c5{bottom:723.140850px;}
.y7{bottom:726.298500px;}
.y10e{bottom:726.892650px;}
.y1ad{bottom:727.215900px;}
.y62{bottom:728.641800px;}
.y90{bottom:728.646000px;}
.y1cc{bottom:728.953500px;}
.y18b{bottom:729.320850px;}
.y168{bottom:731.066100px;}
.y13d{bottom:731.656500px;}
.y1e6{bottom:732.893850px;}
.y20b{bottom:732.898500px;}
.y293{bottom:733.940850px;}
.y261{bottom:735.740850px;}
.y2c4{bottom:739.040850px;}
.y1ac{bottom:745.211400px;}
.y10c{bottom:746.260650px;}
.y61{bottom:746.637300px;}
.y8f{bottom:746.641500px;}
.y1cb{bottom:746.949000px;}
.y18a{bottom:747.316350px;}
.y167{bottom:749.061600px;}
.y30{bottom:749.064450px;}
.y13c{bottom:749.962500px;}
.y292{bottom:750.440850px;}
.y1e5{bottom:750.889350px;}
.y20a{bottom:750.894000px;}
.y260{bottom:751.940850px;}
.y3{bottom:752.599495px;}
.y2c3{bottom:754.940850px;}
.y10a{bottom:761.260650px;}
.yb6{bottom:763.488900px;}
.y60{bottom:764.632800px;}
.y8e{bottom:764.637000px;}
.y1ca{bottom:764.944500px;}
.y291{bottom:766.940850px;}
.y166{bottom:767.057100px;}
.y2f{bottom:767.066700px;}
.y231{bottom:767.991000px;}
.y25f{bottom:768.140850px;}
.y13b{bottom:768.268500px;}
.y1e4{bottom:768.884850px;}
.y209{bottom:768.889500px;}
.y2c2{bottom:770.840850px;}
.y109{bottom:776.260650px;}
.y1ab{bottom:778.093200px;}
.yb5{bottom:778.788900px;}
.y5f{bottom:782.628300px;}
.y8d{bottom:782.632500px;}
.y1c9{bottom:782.940000px;}
.y290{bottom:783.440850px;}
.y189{bottom:784.250100px;}
.y25e{bottom:784.340850px;}
.y2e{bottom:785.068950px;}
.y13a{bottom:786.574500px;}
.y2c1{bottom:786.740850px;}
.y1e3{bottom:786.880350px;}
.y208{bottom:786.885000px;}
.y104{bottom:788.128650px;}
.y10b{bottom:791.260650px;}
.y1aa{bottom:793.393200px;}
.y165{bottom:797.812950px;}
.y230{bottom:798.746850px;}
.y28f{bottom:799.940850px;}
.y25d{bottom:800.540850px;}
.y5e{bottom:800.623800px;}
.y8c{bottom:800.628000px;}
.y1c8{bottom:800.935500px;}
.y2c0{bottom:802.640850px;}
.y103{bottom:803.128650px;}
.y188{bottom:803.618100px;}
.y1e2{bottom:804.875850px;}
.y139{bottom:804.880500px;}
.y108{bottom:810.628650px;}
.yb4{bottom:815.378850px;}
.y28e{bottom:816.440850px;}
.y25c{bottom:816.740850px;}
.y102{bottom:818.128650px;}
.y2bf{bottom:818.540850px;}
.y5d{bottom:818.619300px;}
.y8b{bottom:818.623500px;}
.y1c7{bottom:818.931000px;}
.y1e1{bottom:822.871350px;}
.y138{bottom:822.876000px;}
.y186{bottom:822.986100px;}
.y107{bottom:825.628650px;}
.y56{bottom:830.412300px;}
.y25b{bottom:832.940850px;}
.y2be{bottom:834.440850px;}
.yb3{bottom:834.872850px;}
.y5c{bottom:836.614800px;}
.y8a{bottom:836.619000px;}
.y164{bottom:840.866850px;}
.ye3{bottom:840.871500px;}
.y187{bottom:842.354100px;}
.y22f{bottom:843.917700px;}
.y106{bottom:844.996650px;}
.y25a{bottom:849.140850px;}
.y28d{bottom:849.440850px;}
.y1c6{bottom:849.687000px;}
.y2bd{bottom:850.340850px;}
.yb2{bottom:854.366850px;}
.y5b{bottom:854.610300px;}
.y89{bottom:854.614500px;}
.y163{bottom:858.862350px;}
.ye2{bottom:858.867000px;}
.y105{bottom:859.996650px;}
.y185{bottom:861.722100px;}
.y22e{bottom:861.913200px;}
.y259{bottom:865.340850px;}
.y28c{bottom:865.640850px;}
.y2bc{bottom:866.240850px;}
.y2d{bottom:871.653600px;}
.y5a{bottom:872.605800px;}
.y88{bottom:872.610000px;}
.yb1{bottom:873.860850px;}
.y162{bottom:876.857850px;}
.ye1{bottom:876.862500px;}
.y2{bottom:879.369000px;}
.y22d{bottom:879.908700px;}
.y101{bottom:881.488650px;}
.y258{bottom:881.540850px;}
.y28b{bottom:881.840850px;}
.y2bb{bottom:882.140850px;}
.y184{bottom:883.214100px;}
.y59{bottom:890.601300px;}
.y87{bottom:890.605500px;}
.y2c{bottom:891.223800px;}
.yb0{bottom:893.354850px;}
.y161{bottom:894.853350px;}
.ye0{bottom:894.858000px;}
.y48{bottom:897.035850px;}
.y257{bottom:897.740850px;}
.y28a{bottom:898.040850px;}
.y58{bottom:908.596800px;}
.y86{bottom:908.601000px;}
.y2b{bottom:910.645800px;}
.y22c{bottom:910.664700px;}
.yaf{bottom:912.848850px;}
.ydf{bottom:912.853500px;}
.y183{bottom:913.394850px;}
.y137{bottom:913.940850px;}
.y47{bottom:916.378950px;}
.y2a{bottom:928.800300px;}
.y29{bottom:946.954800px;}
.y57{bottom:949.519500px;}
.y85{bottom:951.755850px;}
.y1{bottom:966.726000px;}
.y28{bottom:975.454650px;}
.h14{height:22.425293px;}
.h10{height:25.560000px;}
.he{height:25.596000px;}
.hf{height:27.729000px;}
.h1d{height:28.854600px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hc{height:33.363281px;}
.h17{height:33.453281px;}
.h15{height:34.555828px;}
.h22{height:36.093750px;}
.h1c{height:37.800000px;}
.hd{height:38.923828px;}
.h1b{height:40.605469px;}
.h16{height:43.076271px;}
.h1f{height:44.484375px;}
.h11{height:44.973633px;}
.h7{height:45.960000px;}
.h1e{height:47.264648px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h12{height:48.375633px;}
.h24{height:48.855469px;}
.h13{height:49.203281px;}
.h19{height:49.628906px;}
.h1a{height:50.044922px;}
.h18{height:51.186450px;}
.h2{height:55.152000px;}
.h21{height:74.484375px;}
.h5{height:78.132000px;}
.h23{height:83.220375px;}
.h20{height:98.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;}
.x1b{left:81.341250px;}
.x5{left:85.433550px;}
.x14{left:87.056550px;}
.xc{left:89.291250px;}
.x16{left:90.524550px;}
.xe{left:93.567900px;}
.x12{left:97.797900px;}
.x1{left:102.045000px;}
.x1f{left:103.631700px;}
.x2{left:106.297500px;}
.x17{left:117.272550px;}
.x20{left:132.395700px;}
.x13{left:151.079700px;}
.x1c{left:192.389250px;}
.x19{left:200.893200px;}
.x4{left:203.484001px;}
.xf{left:243.485550px;}
.xd{left:259.365150px;}
.x15{left:329.792550px;}
.x18{left:335.396550px;}
.x1d{left:364.589250px;}
.x1a{left:373.093200px;}
.x3{left:454.959000px;}
.xb{left:473.984550px;}
.x6{left:497.533050px;}
.x1e{left:554.708550px;}
.xa{left:563.182050px;}
.x8{left:584.524800px;}
.x10{left:597.310350px;}
.x9{left:599.062050px;}
.x7{left:607.027800px;}
@media print{
.v4{vertical-align:-12.320000pt;}
.v6{vertical-align:-8.960000pt;}
.v8{vertical-align:-7.951467pt;}
.v2{vertical-align:-3.024000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.024000pt;}
.v7{vertical-align:6.351467pt;}
.v5{vertical-align:12.340800pt;}
.v3{vertical-align:14.080000pt;}
.va{vertical-align:26.666667pt;}
.vb{vertical-align:34.432000pt;}
.v9{vertical-align:48.000000pt;}
.ls20{letter-spacing:-1.664000pt;}
.ls3f{letter-spacing:-1.066667pt;}
.ls2a{letter-spacing:-0.960000pt;}
.ls36{letter-spacing:-0.938667pt;}
.ls29{letter-spacing:-0.912000pt;}
.ls2b{letter-spacing:-0.624000pt;}
.ls34{letter-spacing:-0.336000pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.170667pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls3b{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.085333pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls3d{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001600pt;}
.ls6{letter-spacing:0.002133pt;}
.ls7{letter-spacing:0.011467pt;}
.ls2f{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.048000pt;}
.ls37{letter-spacing:0.085333pt;}
.ls2d{letter-spacing:0.096000pt;}
.ls38{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.144000pt;}
.ls31{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.240000pt;}
.ls3a{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.288000pt;}
.ls33{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.336000pt;}
.ls30{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.432000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.488112pt;}
.ls23{letter-spacing:0.528000pt;}
.ls22{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.624000pt;}
.lse{letter-spacing:0.626677pt;}
.ls1f{letter-spacing:0.720000pt;}
.ls27{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.816000pt;}
.ls26{letter-spacing:0.864000pt;}
.ls1d{letter-spacing:0.912000pt;}
.ls3{letter-spacing:0.952000pt;}
.ls11{letter-spacing:0.976219pt;}
.ls10{letter-spacing:1.114677pt;}
.lsf{letter-spacing:1.230944pt;}
.ls2e{letter-spacing:1.297067pt;}
.ls8{letter-spacing:1.750400pt;}
.lsc{letter-spacing:1.756800pt;}
.lsb{letter-spacing:1.757867pt;}
.lsd{letter-spacing:1.812992pt;}
.ls2{letter-spacing:1.960000pt;}
.ls39{letter-spacing:2.346667pt;}
.ls3c{letter-spacing:2.773333pt;}
.lsa{letter-spacing:3.121600pt;}
.ls4{letter-spacing:23.107733pt;}
.ls2c{letter-spacing:79.232000pt;}
.ls9{letter-spacing:355.904000pt;}
.ws7{word-spacing:-19.580314pt;}
.wsa4{word-spacing:-16.192000pt;}
.ws8{word-spacing:-14.838605pt;}
.ws9{word-spacing:-13.200000pt;}
.wsa6{word-spacing:-11.733333pt;}
.wsa5{word-spacing:-11.690667pt;}
.wse1{word-spacing:-11.477333pt;}
.wsd7{word-spacing:-10.666667pt;}
.ws6f{word-spacing:-10.266667pt;}
.ws1{word-spacing:-8.960000pt;}
.ws6{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.768000pt;}
.ws4{word-spacing:-7.700000pt;}
.ws5{word-spacing:-7.672000pt;}
.wse{word-spacing:-4.704000pt;}
.ws11{word-spacing:-1.960000pt;}
.ws19{word-spacing:-1.812992pt;}
.ws87{word-spacing:-0.912000pt;}
.ws88{word-spacing:-0.816000pt;}
.ws63{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.634667pt;}
.ws49{word-spacing:-0.624000pt;}
.ws5b{word-spacing:-0.576000pt;}
.ws5c{word-spacing:-0.528000pt;}
.ws46{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.384000pt;}
.wsbd{word-spacing:-0.341333pt;}
.ws7f{word-spacing:-0.336000pt;}
.wsb1{word-spacing:-0.298667pt;}
.ws2c{word-spacing:-0.288000pt;}
.wsd0{word-spacing:-0.256000pt;}
.ws8e{word-spacing:-0.240000pt;}
.wsaf{word-spacing:-0.213333pt;}
.ws75{word-spacing:-0.192000pt;}
.wscf{word-spacing:-0.170667pt;}
.ws6e{word-spacing:-0.144000pt;}
.wsca{word-spacing:-0.128000pt;}
.ws90{word-spacing:-0.096000pt;}
.wsb4{word-spacing:-0.085333pt;}
.ws1b{word-spacing:-0.048000pt;}
.wsb9{word-spacing:-0.042667pt;}
.ws3{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.wsda{word-spacing:0.042667pt;}
.ws66{word-spacing:0.048000pt;}
.ws29{word-spacing:0.096000pt;}
.wsd3{word-spacing:0.128000pt;}
.ws7b{word-spacing:0.144000pt;}
.wse0{word-spacing:0.170667pt;}
.ws8f{word-spacing:0.192000pt;}
.wsbf{word-spacing:0.213333pt;}
.ws6d{word-spacing:0.240000pt;}
.wsd1{word-spacing:0.256000pt;}
.ws7d{word-spacing:0.336000pt;}
.wsc6{word-spacing:0.341333pt;}
.wsba{word-spacing:0.426667pt;}
.ws54{word-spacing:0.432000pt;}
.wscc{word-spacing:0.469333pt;}
.ws44{word-spacing:0.480000pt;}
.wsd6{word-spacing:0.512000pt;}
.ws76{word-spacing:0.528000pt;}
.wsa1{word-spacing:0.624000pt;}
.wsc0{word-spacing:0.682667pt;}
.ws57{word-spacing:0.720000pt;}
.wse2{word-spacing:0.725333pt;}
.ws33{word-spacing:0.768000pt;}
.ws2a{word-spacing:0.864000pt;}
.wsce{word-spacing:0.896000pt;}
.ws1f{word-spacing:0.912000pt;}
.wsaa{word-spacing:0.938667pt;}
.ws97{word-spacing:0.960000pt;}
.wsac{word-spacing:0.981333pt;}
.ws9e{word-spacing:1.008000pt;}
.wsbe{word-spacing:1.024000pt;}
.ws70{word-spacing:1.056000pt;}
.ws60{word-spacing:1.152000pt;}
.ws15{word-spacing:1.157333pt;}
.ws2f{word-spacing:1.200000pt;}
.wscb{word-spacing:1.237333pt;}
.wsa2{word-spacing:1.248000pt;}
.wse4{word-spacing:1.280000pt;}
.ws71{word-spacing:1.296000pt;}
.wsa7{word-spacing:1.322667pt;}
.ws6a{word-spacing:1.344000pt;}
.ws34{word-spacing:1.392000pt;}
.ws35{word-spacing:1.488000pt;}
.wsd2{word-spacing:1.493333pt;}
.ws91{word-spacing:1.584000pt;}
.ws85{word-spacing:1.680000pt;}
.wsc{word-spacing:1.760000pt;}
.ws1c{word-spacing:1.776000pt;}
.ws4b{word-spacing:1.824000pt;}
.wsf{word-spacing:1.872000pt;}
.ws24{word-spacing:1.920000pt;}
.ws98{word-spacing:1.968000pt;}
.wsc1{word-spacing:2.005333pt;}
.ws95{word-spacing:2.016000pt;}
.wsc2{word-spacing:2.048000pt;}
.wsd{word-spacing:2.053333pt;}
.ws52{word-spacing:2.090667pt;}
.ws3d{word-spacing:2.112000pt;}
.ws10{word-spacing:2.128000pt;}
.ws65{word-spacing:2.160000pt;}
.ws26{word-spacing:2.208000pt;}
.wsa8{word-spacing:2.218667pt;}
.ws3e{word-spacing:2.304000pt;}
.ws12{word-spacing:2.346667pt;}
.ws8b{word-spacing:2.352000pt;}
.ws96{word-spacing:2.400000pt;}
.ws89{word-spacing:2.448000pt;}
.wsc4{word-spacing:2.474667pt;}
.ws45{word-spacing:2.493333pt;}
.ws67{word-spacing:2.496000pt;}
.wsb0{word-spacing:2.517333pt;}
.wsb5{word-spacing:2.560000pt;}
.ws1a{word-spacing:2.640000pt;}
.wsc7{word-spacing:2.645333pt;}
.ws3c{word-spacing:2.688000pt;}
.wsc8{word-spacing:2.730667pt;}
.ws3b{word-spacing:2.736000pt;}
.wsdc{word-spacing:2.773333pt;}
.ws43{word-spacing:2.784000pt;}
.wse3{word-spacing:2.816000pt;}
.ws93{word-spacing:2.832000pt;}
.ws5e{word-spacing:2.880000pt;}
.wsc9{word-spacing:2.901333pt;}
.ws56{word-spacing:2.928000pt;}
.ws55{word-spacing:2.976000pt;}
.wsd4{word-spacing:2.986667pt;}
.ws36{word-spacing:3.024000pt;}
.ws16{word-spacing:3.061333pt;}
.ws42{word-spacing:3.072000pt;}
.wsb{word-spacing:3.104000pt;}
.ws25{word-spacing:3.120000pt;}
.ws84{word-spacing:3.168000pt;}
.wsbb{word-spacing:3.200000pt;}
.ws69{word-spacing:3.216000pt;}
.ws86{word-spacing:3.226667pt;}
.ws23{word-spacing:3.264000pt;}
.ws51{word-spacing:3.312000pt;}
.ws81{word-spacing:3.408000pt;}
.ws32{word-spacing:3.456000pt;}
.ws58{word-spacing:3.504000pt;}
.ws17{word-spacing:3.509333pt;}
.ws21{word-spacing:3.520000pt;}
.ws5f{word-spacing:3.552000pt;}
.ws7a{word-spacing:3.600000pt;}
.wsdf{word-spacing:3.626667pt;}
.ws80{word-spacing:3.648000pt;}
.ws53{word-spacing:3.696000pt;}
.wsb6{word-spacing:3.712000pt;}
.wsa{word-spacing:3.776000pt;}
.ws40{word-spacing:3.840000pt;}
.wsa3{word-spacing:3.888000pt;}
.wsa0{word-spacing:3.936000pt;}
.ws27{word-spacing:3.984000pt;}
.ws59{word-spacing:4.032000pt;}
.ws99{word-spacing:4.080000pt;}
.wsb7{word-spacing:4.096000pt;}
.wsb8{word-spacing:4.138667pt;}
.ws94{word-spacing:4.176000pt;}
.ws4a{word-spacing:4.224000pt;}
.wsd9{word-spacing:4.266667pt;}
.wsd8{word-spacing:4.309333pt;}
.ws82{word-spacing:4.320000pt;}
.ws41{word-spacing:4.368000pt;}
.ws31{word-spacing:4.416000pt;}
.wsb3{word-spacing:4.480000pt;}
.ws9a{word-spacing:4.512000pt;}
.ws9b{word-spacing:4.560000pt;}
.wsc5{word-spacing:4.565333pt;}
.ws9c{word-spacing:4.608000pt;}
.wsa9{word-spacing:4.650667pt;}
.ws9d{word-spacing:4.656000pt;}
.wsae{word-spacing:4.693333pt;}
.ws47{word-spacing:4.704000pt;}
.ws6b{word-spacing:4.800000pt;}
.wsdb{word-spacing:4.821333pt;}
.ws9f{word-spacing:4.848000pt;}
.ws3f{word-spacing:4.944000pt;}
.wsd5{word-spacing:5.077333pt;}
.ws2e{word-spacing:5.088000pt;}
.ws8d{word-spacing:5.136000pt;}
.wsb2{word-spacing:5.162667pt;}
.ws79{word-spacing:5.184000pt;}
.ws1d{word-spacing:5.232000pt;}
.ws28{word-spacing:5.280000pt;}
.ws22{word-spacing:5.328000pt;}
.wsc3{word-spacing:5.333333pt;}
.ws2d{word-spacing:5.376000pt;}
.ws2b{word-spacing:5.424000pt;}
.wsdd{word-spacing:5.461333pt;}
.ws77{word-spacing:5.472000pt;}
.wsde{word-spacing:5.504000pt;}
.ws5a{word-spacing:5.520000pt;}
.ws18{word-spacing:5.525333pt;}
.ws64{word-spacing:5.568000pt;}
.ws72{word-spacing:5.712000pt;}
.ws8c{word-spacing:5.760000pt;}
.wsab{word-spacing:5.802667pt;}
.ws61{word-spacing:5.808000pt;}
.ws68{word-spacing:5.856000pt;}
.wsad{word-spacing:5.888000pt;}
.ws74{word-spacing:5.904000pt;}
.wsbc{word-spacing:5.930667pt;}
.wscd{word-spacing:5.973333pt;}
.ws14{word-spacing:6.048000pt;}
.ws83{word-spacing:6.096000pt;}
.ws7c{word-spacing:6.192000pt;}
.ws1e{word-spacing:6.240000pt;}
.ws62{word-spacing:6.288000pt;}
.ws7e{word-spacing:6.432000pt;}
.ws8a{word-spacing:6.672000pt;}
.ws48{word-spacing:6.816000pt;}
.ws30{word-spacing:7.008000pt;}
.ws73{word-spacing:7.152000pt;}
.ws92{word-spacing:7.344000pt;}
.ws50{word-spacing:51.157333pt;}
.ws4e{word-spacing:120.149333pt;}
.ws4f{word-spacing:131.626667pt;}
.ws37{word-spacing:157.269333pt;}
.ws4d{word-spacing:183.765333pt;}
.ws3a{word-spacing:297.301333pt;}
.ws4c{word-spacing:315.050667pt;}
.ws39{word-spacing:320.170667pt;}
.ws38{word-spacing:320.298667pt;}
.ws20{word-spacing:361.308267pt;}
.ws5d{word-spacing:468.010667pt;}
.ws78{word-spacing:599.978667pt;}
._a{margin-left:-23.669333pt;}
._1e{margin-left:-5.630400pt;}
._b{margin-left:-4.684800pt;}
._0{margin-left:-3.766933pt;}
._3{margin-left:-2.120000pt;}
._2{margin-left:-1.040000pt;}
._4{width:0.956000pt;}
._6{width:1.870133pt;}
._7{width:2.777067pt;}
._9{width:3.977067pt;}
._8{width:5.535467pt;}
._1{width:6.444800pt;}
._1c{width:7.588800pt;}
._1d{width:9.038400pt;}
._5{width:53.961067pt;}
._24{width:71.197333pt;}
._27{width:106.752000pt;}
._1f{width:185.386667pt;}
._14{width:202.496000pt;}
._e{width:212.992000pt;}
._25{width:216.439467pt;}
._19{width:244.906667pt;}
._1a{width:256.426667pt;}
._21{width:260.224000pt;}
._26{width:279.509333pt;}
._23{width:300.800000pt;}
._2c{width:316.317333pt;}
._16{width:320.384000pt;}
._22{width:330.410667pt;}
._d{width:332.701333pt;}
._10{width:343.381333pt;}
._2d{width:367.690667pt;}
._20{width:372.906667pt;}
._2a{width:376.754133pt;}
._18{width:377.685333pt;}
._31{width:396.952533pt;}
._1b{width:424.277333pt;}
._17{width:459.562667pt;}
._2f{width:479.479467pt;}
._29{width:582.486933pt;}
._28{width:613.461333pt;}
._13{width:625.450667pt;}
._12{width:711.466667pt;}
._11{width:722.645333pt;}
._2e{width:741.832000pt;}
._2b{width:781.554667pt;}
._c{width:795.254933pt;}
._f{width:878.976000pt;}
._15{width:892.023467pt;}
._30{width:953.685333pt;}
.fs9{font-size:28.000000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:44.776533pt;}
.fsf{font-size:45.333333pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:48.811200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fsa{font-size:60.433067pt;}
.fsb{font-size:62.757333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y26{bottom:44.231333pt;}
.y25{bottom:54.895333pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:65.559333pt;}
.yae{bottom:66.859200pt;}
.y84{bottom:68.283200pt;}
.y256{bottom:74.093867pt;}
.y1e0{bottom:74.721733pt;}
.y182{bottom:76.017333pt;}
.y2ec{bottom:77.191867pt;}
.y289{bottom:77.991867pt;}
.y2ba{bottom:80.391867pt;}
.y1a9{bottom:80.687867pt;}
.y160{bottom:80.841333pt;}
.y136{bottom:81.125467pt;}
.y1c5{bottom:83.118667pt;}
.yad{bottom:84.187200pt;}
.y83{bottom:84.279200pt;}
.yde{bottom:85.184667pt;}
.y4{bottom:86.333337pt;}
.y207{bottom:86.584133pt;}
.y255{bottom:88.493867pt;}
.y27{bottom:89.105733pt;}
.y1df{bottom:90.717733pt;}
.y100{bottom:91.067200pt;}
.y2eb{bottom:91.591867pt;}
.y181{bottom:91.749333pt;}
.y288{bottom:92.391867pt;}
.y2b9{bottom:95.058533pt;}
.y1a8{bottom:96.683867pt;}
.y15f{bottom:97.113333pt;}
.y135{bottom:97.121467pt;}
.yff{bottom:97.733867pt;}
.y1c4{bottom:99.114667pt;}
.y82{bottom:100.275200pt;}
.ydd{bottom:101.180667pt;}
.yac{bottom:101.515200pt;}
.y206{bottom:102.580133pt;}
.y254{bottom:102.893867pt;}
.y22b{bottom:104.046667pt;}
.y2ea{bottom:105.725200pt;}
.y1de{bottom:106.713733pt;}
.y287{bottom:106.791867pt;}
.y180{bottom:107.481333pt;}
.yfd{bottom:108.965867pt;}
.y2b8{bottom:109.725200pt;}
.y1a7{bottom:112.679867pt;}
.y134{bottom:113.117467pt;}
.y15e{bottom:113.385333pt;}
.y1c3{bottom:115.110667pt;}
.y81{bottom:116.271200pt;}
.ydc{bottom:117.176667pt;}
.y253{bottom:117.293867pt;}
.y205{bottom:118.576133pt;}
.yab{bottom:118.843200pt;}
.y2e9{bottom:119.858533pt;}
.y22a{bottom:120.042667pt;}
.y286{bottom:121.191867pt;}
.y55{bottom:121.536267pt;}
.y1dd{bottom:122.709733pt;}
.y17f{bottom:123.213333pt;}
.y23{bottom:123.790666pt;}
.yfe{bottom:124.240533pt;}
.y2b7{bottom:124.391867pt;}
.y1a6{bottom:128.675867pt;}
.y133{bottom:129.113467pt;}
.y15d{bottom:129.657333pt;}
.y1c2{bottom:131.106667pt;}
.y252{bottom:131.693867pt;}
.y80{bottom:132.267200pt;}
.ydb{bottom:133.172667pt;}
.y2e8{bottom:133.991867pt;}
.y204{bottom:134.572133pt;}
.y285{bottom:135.591867pt;}
.y229{bottom:136.038667pt;}
.yaa{bottom:136.171200pt;}
.y54{bottom:137.532267pt;}
.y1dc{bottom:138.705733pt;}
.y17e{bottom:138.945333pt;}
.y2b6{bottom:139.058533pt;}
.yfc{bottom:144.080533pt;}
.y132{bottom:145.109467pt;}
.y15c{bottom:145.929333pt;}
.y251{bottom:146.093867pt;}
.y1c1{bottom:147.102667pt;}
.y2e7{bottom:148.125200pt;}
.y7f{bottom:148.263200pt;}
.yda{bottom:149.168667pt;}
.y284{bottom:149.991867pt;}
.y203{bottom:150.568133pt;}
.y228{bottom:152.034667pt;}
.ya9{bottom:153.499200pt;}
.y53{bottom:153.528267pt;}
.y2b5{bottom:153.725200pt;}
.y17d{bottom:154.677333pt;}
.y1db{bottom:154.701733pt;}
.y1a5{bottom:156.014400pt;}
.yfb{bottom:157.413867pt;}
.y250{bottom:160.493867pt;}
.y131{bottom:161.105467pt;}
.y15b{bottom:162.201333pt;}
.y2e6{bottom:162.258533pt;}
.y1c0{bottom:163.098667pt;}
.y7e{bottom:164.259200pt;}
.y283{bottom:164.391867pt;}
.yd9{bottom:165.164667pt;}
.y202{bottom:166.564133pt;}
.y227{bottom:168.030667pt;}
.y2b4{bottom:168.391867pt;}
.y52{bottom:169.524267pt;}
.y17c{bottom:170.409333pt;}
.y1da{bottom:170.697733pt;}
.ya8{bottom:170.827200pt;}
.yfa{bottom:174.629867pt;}
.y24f{bottom:174.893867pt;}
.y1a{bottom:175.052000pt;}
.y2e5{bottom:176.391867pt;}
.y130{bottom:177.101467pt;}
.y15a{bottom:178.473333pt;}
.y282{bottom:178.791867pt;}
.y1bf{bottom:179.094667pt;}
.y7d{bottom:180.255200pt;}
.yd8{bottom:181.160667pt;}
.y201{bottom:182.560133pt;}
.y2b3{bottom:183.058533pt;}
.y226{bottom:184.026667pt;}
.y51{bottom:185.520267pt;}
.y17b{bottom:186.141333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1d9{bottom:186.693733pt;}
.yf9{bottom:187.963200pt;}
.ya7{bottom:188.155200pt;}
.y24e{bottom:189.293867pt;}
.y2e4{bottom:190.525200pt;}
.y12f{bottom:193.097467pt;}
.y281{bottom:193.191867pt;}
.y159{bottom:194.745333pt;}
.y1be{bottom:195.090667pt;}
.y1a4{bottom:196.194267pt;}
.y7c{bottom:196.251200pt;}
.yf3{bottom:196.571200pt;}
.yd7{bottom:197.156667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y2b2{bottom:197.725200pt;}
.y200{bottom:198.556133pt;}
.y225{bottom:200.022667pt;}
.y50{bottom:201.516267pt;}
.y17a{bottom:201.873333pt;}
.y1d8{bottom:202.689733pt;}
.y24d{bottom:203.693867pt;}
.y2e3{bottom:204.658533pt;}
.yf8{bottom:205.179200pt;}
.y280{bottom:207.591867pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y12e{bottom:209.093467pt;}
.yf2{bottom:209.904533pt;}
.y158{bottom:211.017333pt;}
.y1bd{bottom:211.086667pt;}
.y1a3{bottom:212.190267pt;}
.y7b{bottom:212.247200pt;}
.y2b1{bottom:212.391867pt;}
.yd6{bottom:213.152667pt;}
.y1ff{bottom:214.552133pt;}
.y224{bottom:216.018667pt;}
.y4f{bottom:217.512267pt;}
.y179{bottom:217.605333pt;}
.y24c{bottom:218.093867pt;}
.yf7{bottom:218.512533pt;}
.y1d7{bottom:218.685733pt;}
.y2e2{bottom:218.791867pt;}
.y27f{bottom:221.991867pt;}
.ya6{bottom:223.650267pt;}
.y12d{bottom:225.089467pt;}
.y2b0{bottom:227.058533pt;}
.y1bc{bottom:227.082667pt;}
.y157{bottom:227.289333pt;}
.y1a2{bottom:228.186267pt;}
.y7a{bottom:228.243200pt;}
.yd5{bottom:229.148667pt;}
.y1fe{bottom:230.548133pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y223{bottom:232.014667pt;}
.y24b{bottom:232.493867pt;}
.y2e1{bottom:232.925200pt;}
.y178{bottom:233.337333pt;}
.y4e{bottom:233.508267pt;}
.y1d6{bottom:234.681733pt;}
.yf6{bottom:235.728533pt;}
.y27e{bottom:236.391867pt;}
.ya5{bottom:240.866267pt;}
.y12c{bottom:241.085467pt;}
.y2af{bottom:241.725200pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y156{bottom:243.561333pt;}
.y1a1{bottom:244.182267pt;}
.y79{bottom:244.239200pt;}
.yd4{bottom:245.144667pt;}
.y1fd{bottom:246.544133pt;}
.y24a{bottom:246.893867pt;}
.y2e0{bottom:247.058533pt;}
.y222{bottom:248.010667pt;}
.yf5{bottom:249.061867pt;}
.y177{bottom:249.069333pt;}
.y4d{bottom:249.504267pt;}
.y1d5{bottom:250.677733pt;}
.y27d{bottom:250.791867pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1bb{bottom:256.310933pt;}
.y2ae{bottom:256.391867pt;}
.y12b{bottom:257.081467pt;}
.ya4{bottom:258.082267pt;}
.y155{bottom:259.833333pt;}
.y1a0{bottom:260.178267pt;}
.y78{bottom:260.235200pt;}
.yd3{bottom:261.140667pt;}
.y2df{bottom:261.191867pt;}
.y249{bottom:261.293867pt;}
.yf4{bottom:262.395200pt;}
.y1fc{bottom:262.540133pt;}
.y221{bottom:264.006667pt;}
.y176{bottom:264.801333pt;}
.y27c{bottom:265.191867pt;}
.y4c{bottom:265.500267pt;}
.y1d4{bottom:266.673733pt;}
.y2ad{bottom:271.058533pt;}
.y12a{bottom:273.077467pt;}
.ya3{bottom:275.298267pt;}
.y2de{bottom:275.325200pt;}
.y248{bottom:275.693867pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y154{bottom:276.105333pt;}
.y19f{bottom:276.174267pt;}
.y77{bottom:276.231200pt;}
.yd2{bottom:277.136667pt;}
.y1fb{bottom:278.536133pt;}
.y27b{bottom:279.591867pt;}
.y220{bottom:280.002667pt;}
.y175{bottom:280.533333pt;}
.y4b{bottom:281.496267pt;}
.yf1{bottom:281.499200pt;}
.y1d3{bottom:282.669733pt;}
.y2ac{bottom:285.725200pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y129{bottom:289.073467pt;}
.y2dd{bottom:289.458533pt;}
.y247{bottom:290.093867pt;}
.y19e{bottom:292.170267pt;}
.y76{bottom:292.227200pt;}
.y153{bottom:292.377333pt;}
.ya2{bottom:292.514267pt;}
.yd1{bottom:293.132667pt;}
.y27a{bottom:293.991867pt;}
.y1fa{bottom:294.532133pt;}
.y21f{bottom:295.998667pt;}
.y174{bottom:296.265333pt;}
.y4a{bottom:297.492267pt;}
.y1d2{bottom:298.665733pt;}
.y2ab{bottom:300.391867pt;}
.y2dc{bottom:303.591867pt;}
.y246{bottom:304.493867pt;}
.y128{bottom:305.069467pt;}
.y19d{bottom:308.166267pt;}
.y75{bottom:308.223200pt;}
.yf0{bottom:308.326400pt;}
.y279{bottom:308.391867pt;}
.y152{bottom:308.649333pt;}
.yd0{bottom:309.128667pt;}
.y11{bottom:309.452000pt;}
.ya1{bottom:309.730267pt;}
.y1f9{bottom:310.528133pt;}
.y21e{bottom:311.994667pt;}
.y173{bottom:311.997333pt;}
.y1d1{bottom:314.661733pt;}
.y2aa{bottom:315.058533pt;}
.y2db{bottom:317.725200pt;}
.y245{bottom:318.893867pt;}
.y127{bottom:321.065467pt;}
.y278{bottom:322.791867pt;}
.y19c{bottom:324.162267pt;}
.y74{bottom:324.219200pt;}
.y49{bottom:324.830933pt;}
.y151{bottom:324.921333pt;}
.ycf{bottom:325.124667pt;}
.y1f8{bottom:326.524133pt;}
.y172{bottom:327.729333pt;}
.y21d{bottom:327.990667pt;}
.ya0{bottom:328.834267pt;}
.y2a9{bottom:329.725200pt;}
.y1d0{bottom:330.657733pt;}
.y2da{bottom:331.858533pt;}
.y244{bottom:333.293867pt;}
.y126{bottom:337.061467pt;}
.y277{bottom:337.191867pt;}
.y19b{bottom:340.158267pt;}
.y73{bottom:340.215200pt;}
.yef{bottom:340.860133pt;}
.yce{bottom:341.120667pt;}
.y150{bottom:341.193333pt;}
.y1f7{bottom:342.520133pt;}
.y10{bottom:343.809333pt;}
.y21c{bottom:343.986667pt;}
.y2a8{bottom:344.391867pt;}
.y2d9{bottom:345.991867pt;}
.y1cf{bottom:346.653733pt;}
.y243{bottom:347.693867pt;}
.y276{bottom:351.591867pt;}
.y125{bottom:353.057467pt;}
.y9f{bottom:355.661600pt;}
.y72{bottom:356.211200pt;}
.y171{bottom:356.691067pt;}
.yee{bottom:356.856133pt;}
.ycd{bottom:357.116667pt;}
.y14f{bottom:357.465333pt;}
.y1f6{bottom:358.516133pt;}
.y2a7{bottom:359.058533pt;}
.y21b{bottom:359.982667pt;}
.y2d8{bottom:360.125200pt;}
.y242{bottom:362.093867pt;}
.yf{bottom:362.706666pt;}
.y275{bottom:365.991867pt;}
.y124{bottom:369.053467pt;}
.y46{bottom:371.486267pt;}
.y71{bottom:372.207200pt;}
.yed{bottom:372.852133pt;}
.y19a{bottom:372.988267pt;}
.ycc{bottom:373.112667pt;}
.y2a6{bottom:373.725200pt;}
.y14e{bottom:373.737333pt;}
.y2d7{bottom:374.258533pt;}
.y1f5{bottom:374.512133pt;}
.y1ce{bottom:375.882000pt;}
.y21a{bottom:375.978667pt;}
.y241{bottom:376.493867pt;}
.y170{bottom:377.850133pt;}
.y274{bottom:380.391867pt;}
.y199{bottom:381.596267pt;}
.y123{bottom:385.049467pt;}
.y45{bottom:388.052800pt;}
.y9e{bottom:388.171200pt;}
.y70{bottom:388.203200pt;}
.y2a5{bottom:388.391867pt;}
.yec{bottom:388.848133pt;}
.y14d{bottom:390.009333pt;}
.y1f4{bottom:390.508133pt;}
.y240{bottom:390.893867pt;}
.y219{bottom:391.974667pt;}
.y273{bottom:394.791867pt;}
.y122{bottom:401.045467pt;}
.y2d6{bottom:402.525200pt;}
.y1ba{bottom:402.939600pt;}
.y2a4{bottom:403.058533pt;}
.y9d{bottom:404.167200pt;}
.y6f{bottom:404.199200pt;}
.yeb{bottom:404.844133pt;}
.y23f{bottom:405.293867pt;}
.ycb{bottom:405.952133pt;}
.y14c{bottom:406.281333pt;}
.y1f3{bottom:406.504133pt;}
.y198{bottom:407.420267pt;}
.y44{bottom:407.826133pt;}
.y218{bottom:407.970667pt;}
.y272{bottom:409.191867pt;}
.y197{bottom:416.028267pt;}
.y2d5{bottom:416.658533pt;}
.y121{bottom:417.041467pt;}
.y2a3{bottom:417.725200pt;}
.y1b9{bottom:418.935600pt;}
.yca{bottom:419.285467pt;}
.y23e{bottom:419.693867pt;}
.y43{bottom:419.828800pt;}
.y9c{bottom:420.163200pt;}
.y6e{bottom:420.195200pt;}
.yea{bottom:420.840133pt;}
.y1f2{bottom:422.500133pt;}
.y14b{bottom:422.553333pt;}
.y271{bottom:423.591867pt;}
.y217{bottom:423.966667pt;}
.yc7{bottom:425.952133pt;}
.y2d4{bottom:430.791867pt;}
.ye{bottom:430.990669pt;}
.y2a2{bottom:432.391867pt;}
.yc9{bottom:432.618800pt;}
.y120{bottom:433.037467pt;}
.y23d{bottom:434.093867pt;}
.y1b8{bottom:434.931600pt;}
.y9b{bottom:436.159200pt;}
.y6d{bottom:436.191200pt;}
.ye9{bottom:436.836133pt;}
.y270{bottom:437.991867pt;}
.y1f1{bottom:438.496133pt;}
.y14a{bottom:438.825333pt;}
.y40{bottom:439.580800pt;}
.y216{bottom:439.962667pt;}
.y196{bottom:441.852267pt;}
.y2d3{bottom:444.925200pt;}
.yc8{bottom:445.952133pt;}
.yd{bottom:446.990669pt;}
.y2a1{bottom:447.058533pt;}
.y23c{bottom:448.493867pt;}
.y1b7{bottom:450.927600pt;}
.y3f{bottom:451.583467pt;}
.y6c{bottom:452.187200pt;}
.y26f{bottom:452.391867pt;}
.ye8{bottom:452.832133pt;}
.y1f0{bottom:454.492133pt;}
.y149{bottom:455.097333pt;}
.y215{bottom:455.958667pt;}
.y2d2{bottom:459.058533pt;}
.y195{bottom:460.956267pt;}
.y2a0{bottom:461.725200pt;}
.y23b{bottom:462.893867pt;}
.yc{bottom:462.990669pt;}
.yc6{bottom:463.168133pt;}
.y9a{bottom:463.497733pt;}
.y3e{bottom:463.586133pt;}
.y11f{bottom:465.860133pt;}
.y26e{bottom:466.791867pt;}
.y6b{bottom:468.183200pt;}
.ye7{bottom:468.828133pt;}
.y1ef{bottom:470.488133pt;}
.y148{bottom:471.369333pt;}
.y214{bottom:471.954667pt;}
.y11c{bottom:472.526800pt;}
.y2d1{bottom:473.191867pt;}
.y3d{bottom:475.588800pt;}
.y29f{bottom:476.391867pt;}
.yc4{bottom:476.501467pt;}
.y23a{bottom:477.293867pt;}
.y1b6{bottom:478.266267pt;}
.yb{bottom:478.990666pt;}
.y11e{bottom:479.193467pt;}
.y26d{bottom:481.191867pt;}
.y118{bottom:481.561467pt;}
.y6a{bottom:484.179200pt;}
.ye6{bottom:484.824133pt;}
.y11b{bottom:485.860133pt;}
.y1ee{bottom:486.484133pt;}
.y2d0{bottom:487.325200pt;}
.y3c{bottom:487.591467pt;}
.y147{bottom:487.641333pt;}
.y194{bottom:487.783600pt;}
.y213{bottom:487.950667pt;}
.yc5{bottom:489.834800pt;}
.y29e{bottom:491.058533pt;}
.y239{bottom:491.693867pt;}
.y11d{bottom:492.526800pt;}
.y117{bottom:494.894800pt;}
.ya{bottom:494.990666pt;}
.y26c{bottom:495.591867pt;}
.y3b{bottom:499.594133pt;}
.y69{bottom:500.175200pt;}
.y2cf{bottom:501.458533pt;}
.y1ed{bottom:502.480133pt;}
.y99{bottom:503.721333pt;}
.y146{bottom:503.913333pt;}
.y212{bottom:503.946667pt;}
.y16f{bottom:504.251867pt;}
.y29d{bottom:505.725200pt;}
.y238{bottom:506.093867pt;}
.yc3{bottom:507.050800pt;}
.y116{bottom:508.228133pt;}
.y26b{bottom:509.991867pt;}
.y11a{bottom:510.169467pt;}
.y3a{bottom:511.596800pt;}
.yc2{bottom:513.717467pt;}
.ye5{bottom:514.052400pt;}
.y2ce{bottom:515.591867pt;}
.y68{bottom:516.171200pt;}
.y119{bottom:516.836133pt;}
.y1b5{bottom:518.446133pt;}
.y1ec{bottom:518.476133pt;}
.y98{bottom:519.717333pt;}
.y211{bottom:519.942667pt;}
.y145{bottom:520.185333pt;}
.y16e{bottom:520.247867pt;}
.y193{bottom:520.317200pt;}
.y29c{bottom:520.391867pt;}
.y237{bottom:520.493867pt;}
.y39{bottom:523.599467pt;}
.y26a{bottom:524.391867pt;}
.ye4{bottom:527.652400pt;}
.y2cd{bottom:529.725200pt;}
.y67{bottom:532.167200pt;}
.y1b4{bottom:534.442133pt;}
.y1eb{bottom:534.472133pt;}
.y236{bottom:534.893867pt;}
.y29b{bottom:535.058533pt;}
.y38{bottom:535.602133pt;}
.y97{bottom:535.713333pt;}
.y210{bottom:535.938667pt;}
.y16d{bottom:536.243867pt;}
.y192{bottom:536.313200pt;}
.y144{bottom:536.457333pt;}
.yc0{bottom:537.600133pt;}
.y269{bottom:538.791867pt;}
.y115{bottom:541.145467pt;}
.y2cc{bottom:543.858533pt;}
.yc1{bottom:544.266800pt;}
.y37{bottom:547.599467pt;}
.y114{bottom:547.812133pt;}
.y66{bottom:548.163200pt;}
.y235{bottom:549.293867pt;}
.y42{bottom:549.716800pt;}
.y29a{bottom:549.725200pt;}
.y1b3{bottom:550.438133pt;}
.ybe{bottom:550.933467pt;}
.y96{bottom:551.709333pt;}
.y16c{bottom:552.239867pt;}
.y191{bottom:552.309200pt;}
.y143{bottom:552.729333pt;}
.y268{bottom:553.191867pt;}
.y2cb{bottom:557.991867pt;}
.y36{bottom:559.602133pt;}
.y41{bottom:560.363467pt;}
.y1ea{bottom:561.809333pt;}
.y20f{bottom:563.277333pt;}
.y65{bottom:564.159200pt;}
.ybf{bottom:564.266800pt;}
.y299{bottom:564.391867pt;}
.y1b2{bottom:566.434133pt;}
.y267{bottom:567.591867pt;}
.y95{bottom:567.705333pt;}
.y16b{bottom:568.235867pt;}
.y190{bottom:568.305200pt;}
.y142{bottom:569.001333pt;}
.y113{bottom:571.694800pt;}
.y2ca{bottom:572.125200pt;}
.y35{bottom:572.575467pt;}
.y9{bottom:573.786667pt;}
.y234{bottom:575.032400pt;}
.y112{bottom:578.361467pt;}
.y298{bottom:579.058533pt;}
.y1e9{bottom:579.277333pt;}
.y266{bottom:581.991867pt;}
.ybc{bottom:582.058800pt;}
.y1b1{bottom:582.430133pt;}
.y94{bottom:583.701333pt;}
.y18f{bottom:584.301200pt;}
.y141{bottom:585.273333pt;}
.y2c9{bottom:586.258533pt;}
.ybd{bottom:588.437467pt;}
.y64{bottom:591.497733pt;}
.y8{bottom:592.685334pt;}
.y10d{bottom:593.636133pt;}
.y297{bottom:593.725200pt;}
.yb9{bottom:595.104133pt;}
.ybb{bottom:595.392133pt;}
.y16a{bottom:595.574400pt;}
.y265{bottom:596.391867pt;}
.y1b0{bottom:598.426133pt;}
.y34{bottom:599.029600pt;}
.y93{bottom:599.697333pt;}
.y18e{bottom:600.297200pt;}
.y2c8{bottom:600.391867pt;}
.y140{bottom:601.545333pt;}
.y111{bottom:602.244133pt;}
.y20e{bottom:603.477333pt;}
.y296{bottom:608.391867pt;}
.yba{bottom:608.725467pt;}
.y110{bottom:608.910800pt;}
.y33{bottom:610.732667pt;}
.y264{bottom:610.791867pt;}
.y1af{bottom:614.422133pt;}
.y2c7{bottom:614.525200pt;}
.y233{bottom:615.176267pt;}
.y92{bottom:615.693333pt;}
.y18d{bottom:616.293200pt;}
.y13f{bottom:617.817333pt;}
.y1e8{bottom:619.469200pt;}
.y20d{bottom:619.473333pt;}
.y32{bottom:622.435600pt;}
.y295{bottom:623.058533pt;}
.y263{bottom:625.191867pt;}
.y2c6{bottom:628.658533pt;}
.yb8{bottom:629.333467pt;}
.y1ae{bottom:630.418133pt;}
.y63{bottom:631.685600pt;}
.y91{bottom:631.689333pt;}
.y1cd{bottom:631.962667pt;}
.y18c{bottom:632.289200pt;}
.y10f{bottom:632.793467pt;}
.y169{bottom:633.840533pt;}
.y13e{bottom:634.089333pt;}
.y1e7{bottom:635.465200pt;}
.y20c{bottom:635.469333pt;}
.y294{bottom:637.725200pt;}
.y262{bottom:639.591867pt;}
.y31{bottom:639.712667pt;}
.yb7{bottom:639.829467pt;}
.y232{bottom:642.514800pt;}
.y2c5{bottom:642.791867pt;}
.y7{bottom:645.598667pt;}
.y10e{bottom:646.126800pt;}
.y1ad{bottom:646.414133pt;}
.y62{bottom:647.681600pt;}
.y90{bottom:647.685333pt;}
.y1cc{bottom:647.958667pt;}
.y18b{bottom:648.285200pt;}
.y168{bottom:649.836533pt;}
.y13d{bottom:650.361333pt;}
.y1e6{bottom:651.461200pt;}
.y20b{bottom:651.465333pt;}
.y293{bottom:652.391867pt;}
.y261{bottom:653.991867pt;}
.y2c4{bottom:656.925200pt;}
.y1ac{bottom:662.410133pt;}
.y10c{bottom:663.342800pt;}
.y61{bottom:663.677600pt;}
.y8f{bottom:663.681333pt;}
.y1cb{bottom:663.954667pt;}
.y18a{bottom:664.281200pt;}
.y167{bottom:665.832533pt;}
.y30{bottom:665.835067pt;}
.y13c{bottom:666.633333pt;}
.y292{bottom:667.058533pt;}
.y1e5{bottom:667.457200pt;}
.y20a{bottom:667.461333pt;}
.y260{bottom:668.391867pt;}
.y3{bottom:668.977329pt;}
.y2c3{bottom:671.058533pt;}
.y10a{bottom:676.676133pt;}
.yb6{bottom:678.656800pt;}
.y60{bottom:679.673600pt;}
.y8e{bottom:679.677333pt;}
.y1ca{bottom:679.950667pt;}
.y291{bottom:681.725200pt;}
.y166{bottom:681.828533pt;}
.y2f{bottom:681.837067pt;}
.y231{bottom:682.658667pt;}
.y25f{bottom:682.791867pt;}
.y13b{bottom:682.905333pt;}
.y1e4{bottom:683.453200pt;}
.y209{bottom:683.457333pt;}
.y2c2{bottom:685.191867pt;}
.y109{bottom:690.009467pt;}
.y1ab{bottom:691.638400pt;}
.yb5{bottom:692.256800pt;}
.y5f{bottom:695.669600pt;}
.y8d{bottom:695.673333pt;}
.y1c9{bottom:695.946667pt;}
.y290{bottom:696.391867pt;}
.y189{bottom:697.111200pt;}
.y25e{bottom:697.191867pt;}
.y2e{bottom:697.839067pt;}
.y13a{bottom:699.177333pt;}
.y2c1{bottom:699.325200pt;}
.y1e3{bottom:699.449200pt;}
.y208{bottom:699.453333pt;}
.y104{bottom:700.558800pt;}
.y10b{bottom:703.342800pt;}
.y1aa{bottom:705.238400pt;}
.y165{bottom:709.167067pt;}
.y230{bottom:709.997200pt;}
.y28f{bottom:711.058533pt;}
.y25d{bottom:711.591867pt;}
.y5e{bottom:711.665600pt;}
.y8c{bottom:711.669333pt;}
.y1c8{bottom:711.942667pt;}
.y2c0{bottom:713.458533pt;}
.y103{bottom:713.892133pt;}
.y188{bottom:714.327200pt;}
.y1e2{bottom:715.445200pt;}
.y139{bottom:715.449333pt;}
.y108{bottom:720.558800pt;}
.yb4{bottom:724.781200pt;}
.y28e{bottom:725.725200pt;}
.y25c{bottom:725.991867pt;}
.y102{bottom:727.225467pt;}
.y2bf{bottom:727.591867pt;}
.y5d{bottom:727.661600pt;}
.y8b{bottom:727.665333pt;}
.y1c7{bottom:727.938667pt;}
.y1e1{bottom:731.441200pt;}
.y138{bottom:731.445333pt;}
.y186{bottom:731.543200pt;}
.y107{bottom:733.892133pt;}
.y56{bottom:738.144267pt;}
.y25b{bottom:740.391867pt;}
.y2be{bottom:741.725200pt;}
.yb3{bottom:742.109200pt;}
.y5c{bottom:743.657600pt;}
.y8a{bottom:743.661333pt;}
.y164{bottom:747.437200pt;}
.ye3{bottom:747.441333pt;}
.y187{bottom:748.759200pt;}
.y22f{bottom:750.149067pt;}
.y106{bottom:751.108133pt;}
.y25a{bottom:754.791867pt;}
.y28d{bottom:755.058533pt;}
.y1c6{bottom:755.277333pt;}
.y2bd{bottom:755.858533pt;}
.yb2{bottom:759.437200pt;}
.y5b{bottom:759.653600pt;}
.y89{bottom:759.657333pt;}
.y163{bottom:763.433200pt;}
.ye2{bottom:763.437333pt;}
.y105{bottom:764.441467pt;}
.y185{bottom:765.975200pt;}
.y22e{bottom:766.145067pt;}
.y259{bottom:769.191867pt;}
.y28c{bottom:769.458533pt;}
.y2bc{bottom:769.991867pt;}
.y2d{bottom:774.803200pt;}
.y5a{bottom:775.649600pt;}
.y88{bottom:775.653333pt;}
.yb1{bottom:776.765200pt;}
.y162{bottom:779.429200pt;}
.ye1{bottom:779.433333pt;}
.y2{bottom:781.661334pt;}
.y22d{bottom:782.141067pt;}
.y101{bottom:783.545467pt;}
.y258{bottom:783.591867pt;}
.y28b{bottom:783.858533pt;}
.y2bb{bottom:784.125200pt;}
.y184{bottom:785.079200pt;}
.y59{bottom:791.645600pt;}
.y87{bottom:791.649333pt;}
.y2c{bottom:792.198933pt;}
.yb0{bottom:794.093200pt;}
.y161{bottom:795.425200pt;}
.ye0{bottom:795.429333pt;}
.y48{bottom:797.365200pt;}
.y257{bottom:797.991867pt;}
.y28a{bottom:798.258533pt;}
.y58{bottom:807.641600pt;}
.y86{bottom:807.645333pt;}
.y2b{bottom:809.462933pt;}
.y22c{bottom:809.479733pt;}
.yaf{bottom:811.421200pt;}
.ydf{bottom:811.425333pt;}
.y183{bottom:811.906533pt;}
.y137{bottom:812.391867pt;}
.y47{bottom:814.559067pt;}
.y2a{bottom:825.600267pt;}
.y29{bottom:841.737600pt;}
.y57{bottom:844.017333pt;}
.y85{bottom:846.005200pt;}
.y1{bottom:859.312000pt;}
.y28{bottom:867.070800pt;}
.h14{height:19.933594pt;}
.h10{height:22.720000pt;}
.he{height:22.752000pt;}
.hf{height:24.648000pt;}
.h1d{height:25.648533pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hc{height:29.656250pt;}
.h17{height:29.736250pt;}
.h15{height:30.716292pt;}
.h22{height:32.083333pt;}
.h1c{height:33.600000pt;}
.hd{height:34.598958pt;}
.h1b{height:36.093750pt;}
.h16{height:38.290019pt;}
.h1f{height:39.541667pt;}
.h11{height:39.976562pt;}
.h7{height:40.853333pt;}
.h1e{height:42.013021pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h12{height:43.000563pt;}
.h24{height:43.427083pt;}
.h13{height:43.736250pt;}
.h19{height:44.114583pt;}
.h1a{height:44.484375pt;}
.h18{height:45.499067pt;}
.h2{height:49.024000pt;}
.h21{height:66.208333pt;}
.h5{height:69.450667pt;}
.h23{height:73.973667pt;}
.h20{height:87.541667pt;}
.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;}
.x1b{left:72.303333pt;}
.x5{left:75.940933pt;}
.x14{left:77.383600pt;}
.xc{left:79.370000pt;}
.x16{left:80.466267pt;}
.xe{left:83.171467pt;}
.x12{left:86.931467pt;}
.x1{left:90.706667pt;}
.x1f{left:92.117067pt;}
.x2{left:94.486667pt;}
.x17{left:104.242267pt;}
.x20{left:117.685067pt;}
.x13{left:134.293067pt;}
.x1c{left:171.012667pt;}
.x19{left:178.571733pt;}
.x4{left:180.874667pt;}
.xf{left:216.431600pt;}
.xd{left:230.546800pt;}
.x15{left:293.148933pt;}
.x18{left:298.130267pt;}
.x1d{left:324.079333pt;}
.x1a{left:331.638400pt;}
.x3{left:404.408000pt;}
.xb{left:421.319600pt;}
.x6{left:442.251600pt;}
.x1e{left:493.074267pt;}
.xa{left:500.606267pt;}
.x8{left:519.577600pt;}
.x10{left:530.942533pt;}
.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; }
  