
    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_033dedd1a58851c8c70c09d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.742676;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_c7bf0a7b18f7625337f616ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_b8673ba9f83e9bb0a5a41712.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_fc61c528ee32457bf7cfa363.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_84f1a443f927a003d68c5d86.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_4b5227bbe45716b2d23e9e05.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_29c272be913e25151186d13d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_65c864cf10432c7c5088eb45.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_734603a5afbba149700f3d3f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_1526fbe4eb70ea26b28342a8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_8d95feace09e2225084d8883.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_6f71c1ef663fb297ffe308e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_2ce22cb81bc44f9305d43a43.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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);}
.v3{vertical-align:-21.720000px;}
.v2{vertical-align:-13.560000px;}
.v1{vertical-align:-12.240000px;}
.v4{vertical-align:-8.220000px;}
.v0{vertical-align:0.000000px;}
.ls4f{letter-spacing:-4.320000px;}
.ls14{letter-spacing:-2.160000px;}
.ls41{letter-spacing:-0.984000px;}
.lsc{letter-spacing:-0.936000px;}
.ls3a{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.648000px;}
.ls59{letter-spacing:-0.618000px;}
.ls6d{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.576000px;}
.ls6a{letter-spacing:-0.511800px;}
.ls44{letter-spacing:-0.454800px;}
.ls4{letter-spacing:-0.432000px;}
.ls46{letter-spacing:-0.414600px;}
.ls29{letter-spacing:-0.352200px;}
.ls62{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.264000px;}
.ls64{letter-spacing:-0.247800px;}
.ls24{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.208200px;}
.ls2f{letter-spacing:-0.160200px;}
.lse{letter-spacing:-0.144000px;}
.ls5f{letter-spacing:-0.108000px;}
.ls4c{letter-spacing:-0.103800px;}
.ls3{letter-spacing:-0.072000px;}
.ls6c{letter-spacing:-0.056040px;}
.ls54{letter-spacing:-0.053280px;}
.ls67{letter-spacing:-0.036000px;}
.ls60{letter-spacing:-0.018000px;}
.ls20{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000006px;}
.ls1d{letter-spacing:0.008640px;}
.ls5b{letter-spacing:0.015960px;}
.ls3e{letter-spacing:0.017280px;}
.ls1e{letter-spacing:0.031980px;}
.ls37{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.103800px;}
.ls58{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.135600px;}
.ls5{letter-spacing:0.144000px;}
.ls6e{letter-spacing:0.160200px;}
.ls3c{letter-spacing:0.161400px;}
.ls49{letter-spacing:0.162000px;}
.ls4d{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.206400px;}
.ls6b{letter-spacing:0.208200px;}
.ls12{letter-spacing:0.216000px;}
.ls53{letter-spacing:0.259800px;}
.ls45{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.288000px;}
.ls65{letter-spacing:0.298800px;}
.ls4b{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.360000px;}
.ls66{letter-spacing:0.367800px;}
.ls7{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.756000px;}
.ls30{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.822000px;}
.lsa{letter-spacing:0.864000px;}
.ls5a{letter-spacing:0.936000px;}
.ls4a{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.440000px;}
.ls16{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.880000px;}
.ls50{letter-spacing:3.564000px;}
.ls43{letter-spacing:3.600000px;}
.ls25{letter-spacing:4.320000px;}
.ls21{letter-spacing:5.040000px;}
.ls38{letter-spacing:5.724000px;}
.ls31{letter-spacing:5.760000px;}
.ls3f{letter-spacing:6.444000px;}
.ls39{letter-spacing:6.480000px;}
.ls19{letter-spacing:7.164000px;}
.ls2e{letter-spacing:7.200000px;}
.ls2c{letter-spacing:7.860000px;}
.ls42{letter-spacing:7.920000px;}
.lsf{letter-spacing:8.640000px;}
.ls34{letter-spacing:9.360000px;}
.ls4e{letter-spacing:10.080000px;}
.ls56{letter-spacing:10.224000px;}
.ls47{letter-spacing:10.800000px;}
.ls36{letter-spacing:11.520000px;}
.ls2a{letter-spacing:12.960000px;}
.ls22{letter-spacing:14.400000px;}
.ls55{letter-spacing:15.084000px;}
.ls51{letter-spacing:15.120000px;}
.ls2d{letter-spacing:16.020000px;}
.ls40{letter-spacing:16.524000px;}
.ls68{letter-spacing:16.560000px;}
.ls63{letter-spacing:17.280000px;}
.ls1a{letter-spacing:18.000000px;}
.ls6{letter-spacing:18.720000px;}
.ls28{letter-spacing:20.880000px;}
.ls17{letter-spacing:25.460640px;}
.ls35{letter-spacing:27.360000px;}
.ls52{letter-spacing:34.704000px;}
.ls33{letter-spacing:44.064000px;}
.ls5e{letter-spacing:49.626720px;}
.ls5c{letter-spacing:50.508000px;}
.ls5d{letter-spacing:53.388000px;}
.ls48{letter-spacing:54.864000px;}
.ls69{letter-spacing:104.544000px;}
.ls3b{letter-spacing:846.300000px;}
.ls15{letter-spacing:1410.240000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(50,50,50),0 0.015em rgb(50,50,50),0.015em 0 rgb(50,50,50),0 -0.015em  rgb(50,50,50);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(50,50,50);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws31{word-spacing:-72.144000px;}
.ws5{word-spacing:-72.000000px;}
.ws3b{word-spacing:-66.240000px;}
.ws47{word-spacing:-41.184000px;}
.ws12{word-spacing:-41.040000px;}
.ws2c{word-spacing:-40.793016px;}
.ws21{word-spacing:-40.752000px;}
.ws1b{word-spacing:-40.689216px;}
.ws7{word-spacing:-40.608000px;}
.ws1c{word-spacing:-40.320000px;}
.ws58{word-spacing:-21.816000px;}
.ws1a{word-spacing:-21.780000px;}
.ws2b{word-spacing:-20.056032px;}
.ws10{word-spacing:-20.016000px;}
.ws2f{word-spacing:-19.601400px;}
.ws2d{word-spacing:-19.575600px;}
.ws2e{word-spacing:-19.457280px;}
.ws1f{word-spacing:-19.448640px;}
.ws20{word-spacing:-19.431360px;}
.ws3c{word-spacing:-19.008000px;}
.ws50{word-spacing:-18.936000px;}
.wsc{word-spacing:-18.864000px;}
.ws14{word-spacing:-18.858000px;}
.ws28{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.720000px;}
.ws45{word-spacing:-18.684000px;}
.ws24{word-spacing:-18.648000px;}
.ws46{word-spacing:-18.576000px;}
.ws29{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.432000px;}
.ws5c{word-spacing:-18.403800px;}
.ws5b{word-spacing:-18.360000px;}
.ws3{word-spacing:-18.288000px;}
.ws5e{word-spacing:-18.244200px;}
.ws15{word-spacing:-18.216000px;}
.ws61{word-spacing:-18.196200px;}
.ws4e{word-spacing:-18.156000px;}
.ws8{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.139800px;}
.ws19{word-spacing:-18.108000px;}
.ws2{word-spacing:-18.072000px;}
.ws1d{word-spacing:-18.067980px;}
.ws51{word-spacing:-18.051960px;}
.ws16{word-spacing:-18.036000px;}
.ws1e{word-spacing:-18.000006px;}
.ws1{word-spacing:-18.000000px;}
.ws5f{word-spacing:-17.979960px;}
.wse{word-spacing:-17.964000px;}
.ws44{word-spacing:-17.932200px;}
.ws4{word-spacing:-17.928000px;}
.ws27{word-spacing:-17.875800px;}
.ws11{word-spacing:-17.856000px;}
.ws26{word-spacing:-17.827800px;}
.ws57{word-spacing:-17.788200px;}
.ws23{word-spacing:-17.784000px;}
.ws4d{word-spacing:-17.772000px;}
.wsb{word-spacing:-17.712000px;}
.ws25{word-spacing:-17.683800px;}
.ws6{word-spacing:-17.568000px;}
.ws5d{word-spacing:-17.524200px;}
.ws60{word-spacing:-17.436000px;}
.ws17{word-spacing:-17.424000px;}
.ws4f{word-spacing:-17.418000px;}
.ws22{word-spacing:-17.352000px;}
.wsa{word-spacing:-17.280000px;}
.ws2a{word-spacing:-17.244000px;}
.wsf{word-spacing:-17.064000px;}
.ws30{word-spacing:-17.052000px;}
.ws43{word-spacing:-16.865400px;}
.ws37{word-spacing:-16.822200px;}
.ws3a{word-spacing:-16.704000px;}
.ws34{word-spacing:-16.560000px;}
.ws55{word-spacing:-16.254600px;}
.ws39{word-spacing:-16.145400px;}
.ws33{word-spacing:-16.141200px;}
.ws38{word-spacing:-15.840000px;}
.ws32{word-spacing:-15.804000px;}
.ws4c{word-spacing:-15.300000px;}
.ws49{word-spacing:-15.264000px;}
.ws5a{word-spacing:-15.238800px;}
.ws4a{word-spacing:-15.199800px;}
.ws41{word-spacing:-15.174000px;}
.ws54{word-spacing:-15.146400px;}
.ws42{word-spacing:-15.052032px;}
.ws3f{word-spacing:-15.012000px;}
.ws59{word-spacing:-14.940000px;}
.ws4b{word-spacing:-14.886720px;}
.ws48{word-spacing:-14.544000px;}
.ws36{word-spacing:-13.536000px;}
.ws35{word-spacing:-13.500000px;}
.ws53{word-spacing:-13.482000px;}
.ws52{word-spacing:-13.392000px;}
.ws18{word-spacing:-12.420000px;}
.ws56{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
.ws40{word-spacing:389.475360px;}
.ws3e{word-spacing:482.100000px;}
.ws3d{word-spacing:505.140000px;}
._7{margin-left:-17.940000px;}
._6{margin-left:-15.684000px;}
._a{margin-left:-14.280000px;}
._b{margin-left:-13.238496px;}
._5{margin-left:-11.760000px;}
._8{margin-left:-9.816000px;}
._c{margin-left:-7.584000px;}
._9{margin-left:-5.928000px;}
._1f{margin-left:-4.770240px;}
._d{margin-left:-3.696000px;}
._2{margin-left:-2.306784px;}
._0{margin-left:-1.010880px;}
._15{width:1.020480px;}
._1{width:2.021280px;}
._1a{width:3.023040px;}
._f{width:4.248000px;}
._14{width:6.048000px;}
._19{width:7.632000px;}
._18{width:9.449760px;}
._16{width:10.632000px;}
._17{width:11.772000px;}
._1b{width:12.830400px;}
._12{width:14.088000px;}
._13{width:15.211200px;}
._1d{width:16.252800px;}
._e{width:19.740000px;}
._1c{width:21.708000px;}
._11{width:23.645760px;}
._10{width:24.888000px;}
._1e{width:25.992000px;}
._29{width:27.216000px;}
._2f{width:29.244000px;}
._22{width:30.648000px;}
._2a{width:31.702560px;}
._23{width:32.736000px;}
._24{width:33.781536px;}
._21{width:34.894464px;}
._20{width:36.059520px;}
._27{width:37.272000px;}
._28{width:38.424480px;}
._2b{width:39.639120px;}
._2e{width:47.496000px;}
._34{width:48.709344px;}
._2d{width:50.037696px;}
._2c{width:51.230304px;}
._32{width:59.435520px;}
._33{width:60.553440px;}
._25{width:93.648000px;}
._26{width:95.316000px;}
._31{width:102.672000px;}
._30{width:103.898304px;}
._4{width:846.300000px;}
._3{width:1422.480000px;}
.fc5{color:transparent;}
.fc1{color:rgb(238,34,12);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs5{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:54.144000px;}
.fsa{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fs7{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:87.120000px;}
.fse{font-size:87.264000px;}
.fs2{font-size:90.000000px;}
.y28c{bottom:-24.660000px;}
.y0{bottom:0.000000px;}
.y23c{bottom:2.370000px;}
.y244{bottom:2.376000px;}
.y23a{bottom:2.415000px;}
.y237{bottom:3.675000px;}
.y238{bottom:4.395000px;}
.y16f{bottom:6.510000px;}
.y166{bottom:6.555000px;}
.y158{bottom:6.585000px;}
.y14b{bottom:6.630000px;}
.y176{bottom:6.690000px;}
.y163{bottom:6.735000px;}
.y15b{bottom:6.765000px;}
.y152{bottom:6.810000px;}
.y24a{bottom:7.890000px;}
.y248{bottom:7.920000px;}
.y1ce{bottom:8.025000px;}
.y170{bottom:8.130000px;}
.y167{bottom:8.175000px;}
.y15d{bottom:8.205000px;}
.y14e{bottom:8.250000px;}
.y174{bottom:8.310000px;}
.y164{bottom:8.355000px;}
.y159{bottom:8.385000px;}
.y150{bottom:8.430000px;}
.y26d{bottom:8.715000px;}
.y26f{bottom:9.285000px;}
.y14c{bottom:9.330000px;}
.y235{bottom:9.435000px;}
.y1c9{bottom:9.465000px;}
.y149{bottom:9.540000px;}
.y232{bottom:9.615000px;}
.y230{bottom:9.720000px;}
.y21d{bottom:10.590000px;}
.y21b{bottom:10.620000px;}
.y1b3{bottom:11.520000px;}
.y189{bottom:12.420000px;}
.y2a1{bottom:13.110000px;}
.y29f{bottom:13.140000px;}
.y1d8{bottom:13.575000px;}
.y1c1{bottom:15.090000px;}
.y1bf{bottom:15.120000px;}
.y24e{bottom:15.225000px;}
.y24c{bottom:15.300000px;}
.y1c5{bottom:15.915000px;}
.y1c3{bottom:16.065000px;}
.y19b{bottom:18.435000px;}
.y18e{bottom:18.540000px;}
.y2b3{bottom:19.410000px;}
.y2b1{bottom:19.440000px;}
.y1e4{bottom:19.470000px;}
.y1e2{bottom:19.620000px;}
.y1d4{bottom:25.995000px;}
.y1d1{bottom:26.925000px;}
.y17e{bottom:28.470000px;}
.y234{bottom:28.515000px;}
.y1cd{bottom:28.725000px;}
.y1cb{bottom:28.800000px;}
.y1d7{bottom:34.275000px;}
.y22e{bottom:38.520000px;}
.y22c{bottom:38.550000px;}
.y2b0{bottom:38.700000px;}
.y1d3{bottom:46.695000px;}
.y1d0{bottom:47.625000px;}
.y17b{bottom:48.780000px;}
.y17f{bottom:48.990000px;}
.y21{bottom:67.320000px;}
.y180{bottom:69.510000px;}
.y13d{bottom:88.956000px;}
.y181{bottom:90.075000px;}
.y118{bottom:91.116000px;}
.y26b{bottom:91.296000px;}
.y246{bottom:94.176000px;}
.y20{bottom:94.536000px;}
.y18c{bottom:98.970000px;}
.yad{bottom:99.396000px;}
.yfc{bottom:99.936000px;}
.y2da{bottom:105.156000px;}
.y3b{bottom:105.336000px;}
.y205{bottom:106.236000px;}
.y213{bottom:108.756000px;}
.y1f7{bottom:110.556000px;}
.y182{bottom:110.595000px;}
.y1b1{bottom:112.176000px;}
.yc7{bottom:112.536000px;}
.y71{bottom:113.076000px;}
.y147{bottom:113.976000px;}
.y1f{bottom:115.236000px;}
.y245{bottom:115.560000px;}
.yea{bottom:115.596000px;}
.y22a{bottom:119.556000px;}
.y179{bottom:122.796000px;}
.y18b{bottom:122.865000px;}
.ycd{bottom:125.496000px;}
.y97{bottom:125.676000px;}
.y86{bottom:125.856000px;}
.y55{bottom:126.036000px;}
.y25b{bottom:129.816000px;}
.y13c{bottom:130.356000px;}
.y183{bottom:131.115000px;}
.y17c{bottom:131.400000px;}
.y117{bottom:132.516000px;}
.y126{bottom:132.696000px;}
.y1e{bottom:135.936000px;}
.yfb{bottom:141.336000px;}
.y17a{bottom:141.480000px;}
.y243{bottom:141.660000px;}
.yac{bottom:144.036000px;}
.y3a{bottom:146.736000px;}
.y18a{bottom:146.805000px;}
.y204{bottom:147.636000px;}
.y212{bottom:150.150000px;}
.y184{bottom:151.635000px;}
.y1f6{bottom:151.950000px;}
.y1b0{bottom:153.570000px;}
.y2d9{bottom:153.930000px;}
.yc6{bottom:154.110000px;}
.y70{bottom:154.470000px;}
.y146{bottom:155.370000px;}
.y1d{bottom:156.630000px;}
.ye9{bottom:156.990000px;}
.y29d{bottom:158.610000px;}
.y75{bottom:160.590000px;}
.y219{bottom:160.950000px;}
.y2c2{bottom:161.490000px;}
.ycc{bottom:166.710000px;}
.y96{bottom:166.890000px;}
.y9a{bottom:167.070000px;}
.y85{bottom:167.250000px;}
.y54{bottom:167.430000px;}
.y242{bottom:167.760000px;}
.y25a{bottom:171.390000px;}
.y13b{bottom:171.750000px;}
.y185{bottom:172.155000px;}
.y116{bottom:173.910000px;}
.y125{bottom:174.090000px;}
.y1e0{bottom:176.970000px;}
.y1c{bottom:177.330000px;}
.y175{bottom:179.280000px;}
.yfa{bottom:182.730000px;}
.y39{bottom:188.130000px;}
.yab{bottom:188.850000px;}
.y203{bottom:189.030000px;}
.y211{bottom:191.550000px;}
.y186{bottom:192.675000px;}
.y241{bottom:194.040000px;}
.y1af{bottom:194.970000px;}
.y289{bottom:195.330000px;}
.yc5{bottom:195.510000px;}
.y6f{bottom:195.870000px;}
.y1f5{bottom:197.670000px;}
.y1b{bottom:198.030000px;}
.ye8{bottom:198.390000px;}
.y29c{bottom:199.830000px;}
.y74{bottom:201.990000px;}
.y218{bottom:202.350000px;}
.y2c1{bottom:202.890000px;}
.y280{bottom:205.230000px;}
.ycb{bottom:208.290000px;}
.y95{bottom:208.470000px;}
.y76{bottom:208.650000px;}
.y53{bottom:208.830000px;}
.y2ae{bottom:212.430000px;}
.y259{bottom:212.790000px;}
.y13a{bottom:213.150000px;}
.y17d{bottom:213.195000px;}
.y187{bottom:213.225000px;}
.y173{bottom:213.660000px;}
.y115{bottom:215.310000px;}
.y124{bottom:215.490000px;}
.y1df{bottom:218.370000px;}
.y1a{bottom:218.730000px;}
.y240{bottom:220.140000px;}
.yf9{bottom:224.130000px;}
.y38{bottom:229.530000px;}
.yaa{bottom:230.070000px;}
.y202{bottom:230.430000px;}
.y210{bottom:232.950000px;}
.y188{bottom:233.745000px;}
.y1ae{bottom:236.370000px;}
.y2d8{bottom:236.730000px;}
.y288{bottom:236.910000px;}
.yc4{bottom:237.090000px;}
.y6e{bottom:237.270000px;}
.y19{bottom:239.430000px;}
.ye7{bottom:239.790000px;}
.y114{bottom:242.130000px;}
.y1f4{bottom:243.570000px;}
.y217{bottom:243.750000px;}
.y2c0{bottom:244.290000px;}
.y73{bottom:245.370000px;}
.y29b{bottom:245.550000px;}
.y23f{bottom:246.420000px;}
.y27f{bottom:246.630000px;}
.y172{bottom:248.040000px;}
.yca{bottom:249.690000px;}
.y94{bottom:249.870000px;}
.y63{bottom:250.050000px;}
.y52{bottom:250.230000px;}
.y2ad{bottom:253.830000px;}
.y258{bottom:254.190000px;}
.y139{bottom:254.550000px;}
.y123{bottom:256.890000px;}
.y1de{bottom:259.770000px;}
.y18{bottom:260.130000px;}
.yf8{bottom:265.530000px;}
.y1a2{bottom:267.870000px;}
.y37{bottom:270.930000px;}
.ya9{bottom:271.650000px;}
.y201{bottom:271.830000px;}
.y23e{bottom:272.520000px;}
.y113{bottom:273.810000px;}
.y20f{bottom:274.350000px;}
.y1ad{bottom:277.770000px;}
.y2d7{bottom:278.130000px;}
.y287{bottom:278.310000px;}
.yc3{bottom:278.490000px;}
.yee{bottom:278.670000px;}
.y17{bottom:280.650000px;}
.ye6{bottom:281.190000px;}
.y6d{bottom:281.730000px;}
.y171{bottom:282.420000px;}
.y1dd{bottom:282.810000px;}
.y216{bottom:285.150000px;}
.y2bf{bottom:285.690000px;}
.y27e{bottom:288.030000px;}
.y1f3{bottom:289.470000px;}
.y72{bottom:290.190000px;}
.yc9{bottom:291.090000px;}
.y93{bottom:291.270000px;}
.y62{bottom:291.450000px;}
.y51{bottom:291.630000px;}
.y2ac{bottom:295.230000px;}
.y257{bottom:295.590000px;}
.y138{bottom:295.950000px;}
.y122{bottom:298.290000px;}
.y23d{bottom:298.620000px;}
.y16{bottom:301.350000px;}
.y1e1{bottom:301.530000px;}
.y1e3{bottom:301.680000px;}
.y1dc{bottom:305.850000px;}
.yf7{bottom:306.930000px;}
.y1a1{bottom:309.270000px;}
.y229{bottom:312.150000px;}
.y36{bottom:312.330000px;}
.ya8{bottom:313.050000px;}
.y200{bottom:313.230000px;}
.y112{bottom:315.210000px;}
.y20e{bottom:315.750000px;}
.y16e{bottom:316.800000px;}
.y1ac{bottom:319.170000px;}
.y286{bottom:319.530000px;}
.yc2{bottom:319.890000px;}
.yed{bottom:320.070000px;}
.y15{bottom:322.050000px;}
.ye5{bottom:322.590000px;}
.y1c2{bottom:324.030000px;}
.y1c4{bottom:324.180000px;}
.y23b{bottom:324.900000px;}
.y121{bottom:325.290000px;}
.y6c{bottom:326.550000px;}
.y2be{bottom:327.090000px;}
.y1db{bottom:328.890000px;}
.y27d{bottom:329.430000px;}
.y1f2{bottom:330.870000px;}
.y145{bottom:332.130000px;}
.yc8{bottom:332.490000px;}
.y92{bottom:332.670000px;}
.y61{bottom:332.850000px;}
.y50{bottom:333.030000px;}
.y2ab{bottom:336.675000px;}
.y137{bottom:337.395000px;}
.y228{bottom:339.555000px;}
.y1bd{bottom:340.095000px;}
.y14{bottom:342.795000px;}
.yf6{bottom:348.375000px;}
.y1da{bottom:348.915000px;}
.y1a0{bottom:350.535000px;}
.y239{bottom:351.000000px;}
.y16d{bottom:351.180000px;}
.y35{bottom:353.775000px;}
.ya7{bottom:354.315000px;}
.y265{bottom:354.495000px;}
.y1ff{bottom:354.675000px;}
.y111{bottom:356.655000px;}
.y120{bottom:357.015000px;}
.y20d{bottom:357.195000px;}
.y1ab{bottom:360.615000px;}
.y2d6{bottom:360.975000px;}
.yc1{bottom:361.155000px;}
.y13{bottom:363.495000px;}
.ye4{bottom:364.035000px;}
.yec{bottom:364.575000px;}
.y285{bottom:365.475000px;}
.y6b{bottom:367.995000px;}
.y2bd{bottom:368.535000px;}
.y27c{bottom:370.875000px;}
.y1f1{bottom:372.315000px;}
.y144{bottom:373.575000px;}
.y91{bottom:374.115000px;}
.y60{bottom:374.295000px;}
.y4f{bottom:374.475000px;}
.y236{bottom:377.280000px;}
.y2aa{bottom:378.075000px;}
.y136{bottom:378.795000px;}
.y1bc{bottom:381.495000px;}
.y12{bottom:384.195000px;}
.y256{bottom:384.915000px;}
.y16c{bottom:385.380000px;}
.y1d9{bottom:387.435000px;}
.yf5{bottom:389.775000px;}
.y19f{bottom:391.935000px;}
.y34{bottom:395.175000px;}
.ya6{bottom:395.895000px;}
.y264{bottom:396.075000px;}
.y110{bottom:398.055000px;}
.y11f{bottom:398.415000px;}
.y20c{bottom:398.595000px;}
.y18d{bottom:398.775000px;}
.y1fe{bottom:399.135000px;}
.y1aa{bottom:402.015000px;}
.y2d5{bottom:402.375000px;}
.yc0{bottom:402.735000px;}
.y11{bottom:404.895000px;}
.ye3{bottom:405.435000px;}
.y233{bottom:406.080000px;}
.y227{bottom:406.515000px;}
.y6a{bottom:409.395000px;}
.y2bc{bottom:409.935000px;}
.y284{bottom:411.195000px;}
.y1d6{bottom:411.480000px;}
.y27b{bottom:412.275000px;}
.yeb{bottom:412.455000px;}
.y199{bottom:413.535000px;}
.y19a{bottom:413.640000px;}
.y1f0{bottom:413.715000px;}
.y143{bottom:414.795000px;}
.y90{bottom:415.515000px;}
.y5f{bottom:415.695000px;}
.y4e{bottom:415.875000px;}
.y2a9{bottom:419.475000px;}
.y16b{bottom:419.760000px;}
.y135{bottom:420.195000px;}
.y1bb{bottom:422.895000px;}
.y10{bottom:425.595000px;}
.y255{bottom:429.375000px;}
.y29a{bottom:431.175000px;}
.y19e{bottom:433.335000px;}
.yf4{bottom:434.235000px;}
.y33{bottom:436.575000px;}
.ya5{bottom:437.295000px;}
.y226{bottom:437.655000px;}
.y10f{bottom:439.455000px;}
.y11e{bottom:439.815000px;}
.y20b{bottom:439.995000px;}
.y1a9{bottom:443.415000px;}
.y2d4{bottom:443.775000px;}
.y1fd{bottom:443.955000px;}
.ybf{bottom:444.135000px;}
.yf{bottom:446.295000px;}
.ye2{bottom:446.835000px;}
.y69{bottom:450.795000px;}
.y2bb{bottom:451.335000px;}
.y27a{bottom:453.675000px;}
.y16a{bottom:454.140000px;}
.y178{bottom:454.575000px;}
.y1ef{bottom:455.115000px;}
.y142{bottom:456.195000px;}
.y8f{bottom:456.915000px;}
.y5e{bottom:457.095000px;}
.y4d{bottom:457.275000px;}
.y2a8{bottom:460.875000px;}
.y134{bottom:461.595000px;}
.y1ba{bottom:464.295000px;}
.ye{bottom:466.995000px;}
.y225{bottom:468.615000px;}
.y299{bottom:472.575000px;}
.y198{bottom:474.735000px;}
.y1d5{bottom:475.020000px;}
.y254{bottom:477.255000px;}
.y32{bottom:477.975000px;}
.ya4{bottom:478.875000px;}
.yf3{bottom:479.055000px;}
.y10e{bottom:481.035000px;}
.y11d{bottom:481.215000px;}
.y20a{bottom:481.395000px;}
.y1a8{bottom:484.815000px;}
.y2d3{bottom:485.175000px;}
.y1fc{bottom:485.355000px;}
.ybe{bottom:485.535000px;}
.yd{bottom:487.695000px;}
.ye1{bottom:488.235000px;}
.y169{bottom:488.520000px;}
.y68{bottom:492.195000px;}
.y2ba{bottom:492.735000px;}
.y279{bottom:495.075000px;}
.y1ee{bottom:496.335000px;}
.y26c{bottom:496.980000px;}
.y177{bottom:497.235000px;}
.y141{bottom:497.775000px;}
.y8e{bottom:498.135000px;}
.y84{bottom:498.315000px;}
.y5d{bottom:498.495000px;}
.y4c{bottom:498.675000px;}
.y224{bottom:499.755000px;}
.y2a7{bottom:502.275000px;}
.y283{bottom:502.815000px;}
.y133{bottom:502.995000px;}
.y1b9{bottom:505.695000px;}
.yc{bottom:508.395000px;}
.y22f{bottom:512.175000px;}
.y231{bottom:512.280000px;}
.y298{bottom:513.975000px;}
.y197{bottom:516.135000px;}
.y31{bottom:519.375000px;}
.ya3{bottom:520.275000px;}
.y263{bottom:520.455000px;}
.y253{bottom:522.075000px;}
.y10d{bottom:522.435000px;}
.y11c{bottom:522.615000px;}
.y209{bottom:522.795000px;}
.y168{bottom:522.900000px;}
.yf2{bottom:523.515000px;}
.y1a7{bottom:526.215000px;}
.y2d2{bottom:526.755000px;}
.ybd{bottom:526.935000px;}
.yb{bottom:529.095000px;}
.ye0{bottom:529.635000px;}
.y1fb{bottom:529.815000px;}
.y223{bottom:530.715000px;}
.y67{bottom:533.595000px;}
.y2b9{bottom:534.135000px;}
.y278{bottom:536.475000px;}
.y1ed{bottom:537.735000px;}
.y140{bottom:538.995000px;}
.yd1{bottom:539.535000px;}
.y83{bottom:539.715000px;}
.y5c{bottom:539.895000px;}
.y4b{bottom:540.075000px;}
.y2a6{bottom:543.675000px;}
.y282{bottom:544.215000px;}
.y132{bottom:544.395000px;}
.y1b8{bottom:547.095000px;}
.y1d2{bottom:550.980000px;}
.y297{bottom:555.195000px;}
.y165{bottom:557.280000px;}
.y196{bottom:557.535000px;}
.y30{bottom:560.775000px;}
.ya2{bottom:561.675000px;}
.y222{bottom:561.855000px;}
.ya{bottom:563.655000px;}
.y10c{bottom:564.015000px;}
.y208{bottom:564.195000px;}
.y1a6{bottom:567.615000px;}
.y2d1{bottom:568.155000px;}
.ybc{bottom:568.335000px;}
.ydf{bottom:571.035000px;}
.y1fa{bottom:574.635000px;}
.y66{bottom:574.995000px;}
.y277{bottom:577.875000px;}
.y2b8{bottom:579.855000px;}
.y13f{bottom:580.575000px;}
.y82{bottom:581.115000px;}
.y5b{bottom:581.295000px;}
.y4a{bottom:581.475000px;}
.y1ec{bottom:582.375000px;}
.y2a5{bottom:585.075000px;}
.y281{bottom:585.615000px;}
.y131{bottom:585.795000px;}
.y1b7{bottom:588.495000px;}
.y162{bottom:591.480000px;}
.y296{bottom:596.775000px;}
.y195{bottom:598.935000px;}
.y221{bottom:599.115000px;}
.y2f{bottom:602.175000px;}
.y9{bottom:602.535000px;}
.ya1{bottom:603.075000px;}
.y262{bottom:603.255000px;}
.y10b{bottom:605.445000px;}
.y252{bottom:605.625000px;}
.y24b{bottom:607.785000px;}
.y24d{bottom:607.860000px;}
.y1a5{bottom:609.045000px;}
.y2d0{bottom:609.585000px;}
.ybb{bottom:609.765000px;}
.yde{bottom:612.465000px;}
.y1f9{bottom:616.065000px;}
.y65{bottom:616.425000px;}
.y276{bottom:619.305000px;}
.y13e{bottom:622.005000px;}
.y81{bottom:622.545000px;}
.y5a{bottom:622.725000px;}
.y49{bottom:622.905000px;}
.y2b7{bottom:625.605000px;}
.y161{bottom:625.860000px;}
.y2a4{bottom:626.505000px;}
.y1cf{bottom:626.940000px;}
.y130{bottom:627.225000px;}
.y1b6{bottom:629.925000px;}
.y295{bottom:638.205000px;}
.y194{bottom:640.365000px;}
.y220{bottom:640.545000px;}
.y8{bottom:641.265000px;}
.y19d{bottom:643.425000px;}
.y2e{bottom:643.605000px;}
.y275{bottom:646.125000px;}
.y11b{bottom:646.665000px;}
.y10a{bottom:646.845000px;}
.y251{bottom:647.025000px;}
.ya0{bottom:647.565000px;}
.y261{bottom:647.745000px;}
.y2cf{bottom:650.805000px;}
.yba{bottom:651.165000px;}
.y1a4{bottom:653.505000px;}
.ydd{bottom:653.865000px;}
.y26a{bottom:657.825000px;}
.y160{bottom:660.240000px;}
.y1f8{bottom:660.525000px;}
.y64{bottom:660.885000px;}
.y80{bottom:663.945000px;}
.y59{bottom:664.125000px;}
.y48{bottom:664.305000px;}
.y7{bottom:667.185000px;}
.y2a3{bottom:667.905000px;}
.y12f{bottom:668.625000px;}
.y1b5{bottom:671.325000px;}
.y2b6{bottom:671.505000px;}
.y19c{bottom:673.845000px;}
.y274{bottom:677.805000px;}
.y294{bottom:679.605000px;}
.y193{bottom:681.765000px;}
.y21f{bottom:681.945000px;}
.y2d{bottom:685.005000px;}
.y109{bottom:688.245000px;}
.y250{bottom:688.425000px;}
.y2ce{bottom:692.385000px;}
.yb9{bottom:692.565000px;}
.y6{bottom:692.745000px;}
.y15f{bottom:694.620000px;}
.ydc{bottom:695.265000px;}
.y9f{bottom:695.445000px;}
.yf1{bottom:695.805000px;}
.y269{bottom:699.225000px;}
.y273{bottom:701.100000px;}
.y1ca{bottom:704.805000px;}
.y1cc{bottom:704.880000px;}
.y7f{bottom:705.345000px;}
.y58{bottom:705.525000px;}
.y47{bottom:705.705000px;}
.y2a2{bottom:709.305000px;}
.y1eb{bottom:710.025000px;}
.y12e{bottom:710.205000px;}
.y2b5{bottom:712.905000px;}
.y24f{bottom:715.425000px;}
.y1b4{bottom:715.785000px;}
.y5{bottom:716.865000px;}
.y293{bottom:721.005000px;}
.y192{bottom:723.165000px;}
.y2c{bottom:726.405000px;}
.y15e{bottom:729.000000px;}
.y108{bottom:729.645000px;}
.y2cd{bottom:733.785000px;}
.yb8{bottom:733.965000px;}
.y272{bottom:735.660000px;}
.ydb{bottom:736.665000px;}
.y9e{bottom:740.265000px;}
.yf0{bottom:740.625000px;}
.y4{bottom:740.985000px;}
.ycf{bottom:746.565000px;}
.y8d{bottom:746.745000px;}
.y57{bottom:746.925000px;}
.y46{bottom:747.105000px;}
.y12d{bottom:751.605000px;}
.y2b4{bottom:754.305000px;}
.y1ea{bottom:754.485000px;}
.y21e{bottom:756.825000px;}
.y292{bottom:762.405000px;}
.y15c{bottom:763.380000px;}
.y191{bottom:764.565000px;}
.y3{bottom:765.285000px;}
.y2b{bottom:767.805000px;}
.y271{bottom:770.040000px;}
.y107{bottom:771.045000px;}
.y207{bottom:771.225000px;}
.y2cc{bottom:775.185000px;}
.yb7{bottom:775.365000px;}
.yda{bottom:778.065000px;}
.y268{bottom:782.025000px;}
.y9d{bottom:784.725000px;}
.yef{bottom:785.085000px;}
.yce{bottom:787.965000px;}
.y8c{bottom:788.145000px;}
.y56{bottom:788.325000px;}
.y45{bottom:788.505000px;}
.y12c{bottom:793.005000px;}
.y2{bottom:794.265000px;}
.y15a{bottom:797.580000px;}
.y206{bottom:798.225000px;}
.y1e9{bottom:799.305000px;}
.y270{bottom:804.600000px;}
.y291{bottom:806.865000px;}
.y190{bottom:809.025000px;}
.y2a{bottom:809.205000px;}
.y106{bottom:812.445000px;}
.y2cb{bottom:816.585000px;}
.yb6{bottom:816.765000px;}
.y1{bottom:818.925000px;}
.yd9{bottom:819.465000px;}
.y267{bottom:823.425000px;}
.y8b{bottom:829.545000px;}
.y7e{bottom:829.725000px;}
.y44{bottom:829.905000px;}
.y157{bottom:831.960000px;}
.y12b{bottom:834.405000px;}
.y1c8{bottom:837.105000px;}
.y26e{bottom:839.160000px;}
.y18f{bottom:839.445000px;}
.y1e8{bottom:840.705000px;}
.y29{bottom:850.605000px;}
.y290{bottom:851.685000px;}
.y105{bottom:853.665000px;}
.y11a{bottom:853.845000px;}
.y2ca{bottom:857.985000px;}
.yb5{bottom:858.165000px;}
.yd8{bottom:860.865000px;}
.y260{bottom:861.225000px;}
.y12a{bottom:861.405000px;}
.y156{bottom:866.340000px;}
.y266{bottom:867.885000px;}
.y9c{bottom:870.810000px;}
.y8a{bottom:870.990000px;}
.y7d{bottom:871.170000px;}
.y43{bottom:871.350000px;}
.y1c7{bottom:878.550000px;}
.y119{bottom:880.890000px;}
.y1e7{bottom:882.150000px;}
.y28{bottom:892.050000px;}
.y28f{bottom:893.130000px;}
.y29e{bottom:894.390000px;}
.y2a0{bottom:894.420000px;}
.y104{bottom:895.290000px;}
.y129{bottom:896.190000px;}
.y247{bottom:897.450000px;}
.y249{bottom:897.480000px;}
.y2c9{bottom:899.430000px;}
.yb4{bottom:899.610000px;}
.y155{bottom:900.720000px;}
.yd7{bottom:902.310000px;}
.y25f{bottom:906.090000px;}
.y89{bottom:912.390000px;}
.y7c{bottom:912.570000px;}
.y42{bottom:912.750000px;}
.y1c6{bottom:919.770000px;}
.y1e6{bottom:923.550000px;}
.y27{bottom:933.450000px;}
.y154{bottom:935.100000px;}
.y103{bottom:936.690000px;}
.y28e{bottom:937.590000px;}
.y2c8{bottom:940.830000px;}
.yb3{bottom:941.010000px;}
.yd6{bottom:943.710000px;}
.y128{bottom:944.070000px;}
.y25e{bottom:947.490000px;}
.y9b{bottom:953.790000px;}
.y7b{bottom:953.970000px;}
.y41{bottom:954.150000px;}
.y1e5{bottom:964.770000px;}
.y153{bottom:969.480000px;}
.y26{bottom:974.850000px;}
.y2af{bottom:975.030000px;}
.y2b2{bottom:975.060000px;}
.y102{bottom:978.090000px;}
.yb2{bottom:982.410000px;}
.y25c{bottom:983.670000px;}
.y25d{bottom:983.700000px;}
.yd5{bottom:985.110000px;}
.y2c7{bottom:986.730000px;}
.y127{bottom:991.950000px;}
.y88{bottom:995.190000px;}
.y7a{bottom:995.370000px;}
.y40{bottom:995.550000px;}
.y151{bottom:1003.680000px;}
.y25{bottom:1016.250000px;}
.y101{bottom:1019.490000px;}
.y21a{bottom:1021.470000px;}
.y21c{bottom:1021.500000px;}
.yb1{bottom:1023.810000px;}
.y28d{bottom:1026.870000px;}
.y2c6{bottom:1027.950000px;}
.yd4{bottom:1028.490000px;}
.y28a{bottom:1030.650000px;}
.y28b{bottom:1030.680000px;}
.yd0{bottom:1036.590000px;}
.y79{bottom:1036.770000px;}
.y3f{bottom:1036.950000px;}
.y14f{bottom:1038.060000px;}
.y24{bottom:1057.650000px;}
.y100{bottom:1060.890000px;}
.yb0{bottom:1068.270000px;}
.y215{bottom:1071.690000px;}
.y14d{bottom:1072.440000px;}
.yd3{bottom:1073.310000px;}
.y2c5{bottom:1073.850000px;}
.y78{bottom:1077.990000px;}
.y87{bottom:1078.170000px;}
.y3e{bottom:1078.350000px;}
.y23{bottom:1099.050000px;}
.yff{bottom:1102.290000px;}
.y14a{bottom:1107.900000px;}
.y1be{bottom:1108.410000px;}
.y1c0{bottom:1108.440000px;}
.yaf{bottom:1112.910000px;}
.y214{bottom:1113.090000px;}
.y2c4{bottom:1115.250000px;}
.yd2{bottom:1118.310000px;}
.y99{bottom:1119.390000px;}
.y77{bottom:1119.570000px;}
.y3d{bottom:1119.750000px;}
.y22b{bottom:1123.890000px;}
.y22d{bottom:1123.920000px;}
.y1a3{bottom:1134.150000px;}
.y3c{bottom:1140.480000px;}
.y148{bottom:1143.000000px;}
.yfe{bottom:1143.900000px;}
.y1b2{bottom:1150.920000px;}
.y2c3{bottom:1156.680000px;}
.yae{bottom:1157.760000px;}
.y98{bottom:1161.000000px;}
.y22{bottom:1161.180000px;}
.yfd{bottom:1170.900000px;}
.h36{height:13.680000px;}
.h35{height:13.860000px;}
.h37{height:13.860150px;}
.h33{height:15.660000px;}
.h15{height:21.960000px;}
.h19{height:22.140000px;}
.h38{height:23.400000px;}
.h3b{height:24.300000px;}
.h2b{height:26.100000px;}
.h1f{height:27.000000px;}
.h12{height:27.109688px;}
.h3d{height:28.620000px;}
.h21{height:30.600000px;}
.h20{height:30.636000px;}
.h39{height:30.780000px;}
.h23{height:31.500000px;}
.h22{height:31.536000px;}
.h1e{height:34.020000px;}
.h2a{height:35.100000px;}
.h29{height:35.136000px;}
.h1c{height:39.471680px;}
.h1d{height:39.576937px;}
.h3c{height:42.840000px;}
.h13{height:43.020000px;}
.h34{height:43.246406px;}
.h17{height:43.419375px;}
.h1a{height:43.524000px;}
.h30{height:44.100000px;}
.h31{height:44.507812px;}
.h24{height:45.540000px;}
.h2{height:48.127500px;}
.h2c{height:48.410156px;}
.h9{height:50.800781px;}
.hb{height:50.902383px;}
.h27{height:51.120000px;}
.ha{height:52.312500px;}
.h2d{height:53.573906px;}
.h28{height:53.703000px;}
.h16{height:53.755312px;}
.h2f{height:54.000000px;}
.h2e{height:54.036000px;}
.h18{height:54.596250px;}
.h14{height:54.714937px;}
.hf{height:54.864844px;}
.hd{height:58.429688px;}
.h11{height:58.546547px;}
.h7{height:59.343750px;}
.h8{height:59.462437px;}
.h32{height:61.920000px;}
.h10{height:63.104063px;}
.h5{height:63.500977px;}
.h26{height:63.540000px;}
.h25{height:64.440000px;}
.h6{height:64.546875px;}
.hc{height:64.675969px;}
.h3{height:75.519844px;}
.he{height:78.101719px;}
.h3a{height:78.230812px;}
.h4{height:80.683594px;}
.h1b{height:254.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:48.240000px;}
.w1d{width:52.920000px;}
.w17{width:55.260000px;}
.w1b{width:63.180000px;}
.w1c{width:63.900000px;}
.w15{width:64.260000px;}
.w2b{width:71.460000px;}
.w28{width:73.800000px;}
.w29{width:74.160000px;}
.w2a{width:76.320000px;}
.w1a{width:81.000000px;}
.w18{width:84.780000px;}
.w19{width:85.320000px;}
.w35{width:109.980000px;}
.w1e{width:118.800000px;}
.w14{width:119.160000px;}
.w9{width:121.680000px;}
.w5{width:122.040000px;}
.w7{width:128.700000px;}
.w36{width:144.180000px;}
.w6{width:169.920000px;}
.w34{width:178.200000px;}
.w8{width:298.980000px;}
.w4{width:299.340000px;}
.w3c{width:351.000000px;}
.w3b{width:351.075000px;}
.w26{width:368.100000px;}
.w25{width:368.175000px;}
.w27{width:382.680000px;}
.w24{width:393.120000px;}
.w23{width:393.195000px;}
.wa{width:464.400000px;}
.wf{width:471.600000px;}
.we{width:471.705000px;}
.w2d{width:483.840000px;}
.w2c{width:483.945000px;}
.w13{width:504.000000px;}
.w12{width:504.105000px;}
.w31{width:532.800000px;}
.w30{width:532.905000px;}
.wb{width:534.705000px;}
.w3e{width:540.000000px;}
.w3d{width:540.105000px;}
.w32{width:547.200000px;}
.w20{width:567.000000px;}
.w1f{width:567.105000px;}
.wd{width:598.500000px;}
.wc{width:598.605000px;}
.w38{width:608.400000px;}
.w37{width:608.505000px;}
.w3a{width:614.700000px;}
.w39{width:614.805000px;}
.w11{width:623.700000px;}
.w10{width:623.805000px;}
.w22{width:648.000000px;}
.w21{width:648.105000px;}
.w2f{width:655.020000px;}
.w2e{width:655.125000px;}
.w3{width:721.800000px;}
.w33{width:722.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:2.160000px;}
.xc{left:6.156000px;}
.x29{left:7.590000px;}
.x1a{left:9.975000px;}
.x37{left:11.775000px;}
.x31{left:14.145000px;}
.x2b{left:15.555000px;}
.x19{left:17.460000px;}
.x2e{left:19.515000px;}
.x36{left:21.456000px;}
.x48{left:23.115000px;}
.x10{left:24.765000px;}
.x33{left:26.250000px;}
.x4b{left:27.825000px;}
.x3a{left:29.916000px;}
.x39{left:34.416000px;}
.x46{left:36.795000px;}
.x38{left:38.016000px;}
.x58{left:40.035000px;}
.xe{left:42.555000px;}
.x59{left:45.075000px;}
.x12{left:46.410000px;}
.x54{left:47.595000px;}
.x13{left:48.855000px;}
.x15{left:55.410000px;}
.x52{left:57.630000px;}
.x57{left:68.370000px;}
.x14{left:73.185000px;}
.x1{left:84.959987px;}
.x27{left:93.060000px;}
.x3e{left:94.356000px;}
.x5a{left:99.755987px;}
.x60{left:101.555987px;}
.x9{left:102.995987px;}
.xa{left:104.615987px;}
.x1e{left:106.235987px;}
.x1b{left:110.010000px;}
.x16{left:111.995987px;}
.xb{left:114.515987px;}
.x18{left:118.080000px;}
.x3d{left:120.995987px;}
.x5b{left:131.076000px;}
.x23{left:134.676000px;}
.x40{left:135.755987px;}
.x4d{left:138.096000px;}
.x4{left:139.715987px;}
.x5{left:143.855987px;}
.x1f{left:147.276000px;}
.x3{left:149.435987px;}
.x44{left:152.385000px;}
.x4f{left:161.490000px;}
.x3b{left:173.370000px;}
.x51{left:183.600000px;}
.x1c{left:186.870000px;}
.x17{left:189.720000px;}
.x25{left:194.430000px;}
.x21{left:210.270000px;}
.x28{left:213.120000px;}
.x2{left:228.809987px;}
.x4c{left:245.370000px;}
.x41{left:249.150000px;}
.x5e{left:252.645000px;}
.x45{left:255.060000px;}
.x53{left:271.800000px;}
.x2a{left:277.740000px;}
.x8{left:316.874987px;}
.x2c{left:326.340000px;}
.x47{left:329.760000px;}
.x50{left:338.865000px;}
.x3c{left:350.565000px;}
.x26{left:358.305000px;}
.x42{left:380.085000px;}
.x2d{left:381.780000px;}
.xd{left:385.200000px;}
.x6{left:390.314987px;}
.x24{left:415.545000px;}
.x22{left:426.345000px;}
.x43{left:442.335000px;}
.x7{left:446.474987px;}
.x2f{left:466.740000px;}
.x20{left:469.905000px;}
.x5f{left:483.090000px;}
.x49{left:489.060000px;}
.xf{left:507.420000px;}
.x3f{left:518.505000px;}
.x5d{left:523.230000px;}
.x55{left:526.500000px;}
.x5c{left:531.690000px;}
.x30{left:552.240000px;}
.x4a{left:565.740000px;}
.x32{left:633.600000px;}
.x4e{left:635.730000px;}
.x56{left:671.040000px;}
.x11{left:677.520000px;}
.x34{left:697.140000px;}
.x35{left:761.400000px;}
@media print{
.v3{vertical-align:-19.306667pt;}
.v2{vertical-align:-12.053333pt;}
.v1{vertical-align:-10.880000pt;}
.v4{vertical-align:-7.306667pt;}
.v0{vertical-align:0.000000pt;}
.ls4f{letter-spacing:-3.840000pt;}
.ls14{letter-spacing:-1.920000pt;}
.ls41{letter-spacing:-0.874667pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls3a{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.576000pt;}
.ls59{letter-spacing:-0.549333pt;}
.ls6d{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls6a{letter-spacing:-0.454933pt;}
.ls44{letter-spacing:-0.404267pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls46{letter-spacing:-0.368533pt;}
.ls29{letter-spacing:-0.313067pt;}
.ls62{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.234667pt;}
.ls64{letter-spacing:-0.220267pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.185067pt;}
.ls2f{letter-spacing:-0.142400pt;}
.lse{letter-spacing:-0.128000pt;}
.ls5f{letter-spacing:-0.096000pt;}
.ls4c{letter-spacing:-0.092267pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls6c{letter-spacing:-0.049813pt;}
.ls54{letter-spacing:-0.047360pt;}
.ls67{letter-spacing:-0.032000pt;}
.ls60{letter-spacing:-0.016000pt;}
.ls20{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000005pt;}
.ls1d{letter-spacing:0.007680pt;}
.ls5b{letter-spacing:0.014187pt;}
.ls3e{letter-spacing:0.015360pt;}
.ls1e{letter-spacing:0.028427pt;}
.ls37{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.092267pt;}
.ls58{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.120533pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6e{letter-spacing:0.142400pt;}
.ls3c{letter-spacing:0.143467pt;}
.ls49{letter-spacing:0.144000pt;}
.ls4d{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.183467pt;}
.ls6b{letter-spacing:0.185067pt;}
.ls12{letter-spacing:0.192000pt;}
.ls53{letter-spacing:0.230933pt;}
.ls45{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.256000pt;}
.ls65{letter-spacing:0.265600pt;}
.ls4b{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.320000pt;}
.ls66{letter-spacing:0.326933pt;}
.ls7{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.672000pt;}
.ls30{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.730667pt;}
.lsa{letter-spacing:0.768000pt;}
.ls5a{letter-spacing:0.832000pt;}
.ls4a{letter-spacing:0.896000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls50{letter-spacing:3.168000pt;}
.ls43{letter-spacing:3.200000pt;}
.ls25{letter-spacing:3.840000pt;}
.ls21{letter-spacing:4.480000pt;}
.ls38{letter-spacing:5.088000pt;}
.ls31{letter-spacing:5.120000pt;}
.ls3f{letter-spacing:5.728000pt;}
.ls39{letter-spacing:5.760000pt;}
.ls19{letter-spacing:6.368000pt;}
.ls2e{letter-spacing:6.400000pt;}
.ls2c{letter-spacing:6.986667pt;}
.ls42{letter-spacing:7.040000pt;}
.lsf{letter-spacing:7.680000pt;}
.ls34{letter-spacing:8.320000pt;}
.ls4e{letter-spacing:8.960000pt;}
.ls56{letter-spacing:9.088000pt;}
.ls47{letter-spacing:9.600000pt;}
.ls36{letter-spacing:10.240000pt;}
.ls2a{letter-spacing:11.520000pt;}
.ls22{letter-spacing:12.800000pt;}
.ls55{letter-spacing:13.408000pt;}
.ls51{letter-spacing:13.440000pt;}
.ls2d{letter-spacing:14.240000pt;}
.ls40{letter-spacing:14.688000pt;}
.ls68{letter-spacing:14.720000pt;}
.ls63{letter-spacing:15.360000pt;}
.ls1a{letter-spacing:16.000000pt;}
.ls6{letter-spacing:16.640000pt;}
.ls28{letter-spacing:18.560000pt;}
.ls17{letter-spacing:22.631680pt;}
.ls35{letter-spacing:24.320000pt;}
.ls52{letter-spacing:30.848000pt;}
.ls33{letter-spacing:39.168000pt;}
.ls5e{letter-spacing:44.112640pt;}
.ls5c{letter-spacing:44.896000pt;}
.ls5d{letter-spacing:47.456000pt;}
.ls48{letter-spacing:48.768000pt;}
.ls69{letter-spacing:92.928000pt;}
.ls3b{letter-spacing:752.266667pt;}
.ls15{letter-spacing:1253.546667pt;}
.ws31{word-spacing:-64.128000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws3b{word-spacing:-58.880000pt;}
.ws47{word-spacing:-36.608000pt;}
.ws12{word-spacing:-36.480000pt;}
.ws2c{word-spacing:-36.260459pt;}
.ws21{word-spacing:-36.224000pt;}
.ws1b{word-spacing:-36.168192pt;}
.ws7{word-spacing:-36.096000pt;}
.ws1c{word-spacing:-35.840000pt;}
.ws58{word-spacing:-19.392000pt;}
.ws1a{word-spacing:-19.360000pt;}
.ws2b{word-spacing:-17.827584pt;}
.ws10{word-spacing:-17.792000pt;}
.ws2f{word-spacing:-17.423467pt;}
.ws2d{word-spacing:-17.400533pt;}
.ws2e{word-spacing:-17.295360pt;}
.ws1f{word-spacing:-17.287680pt;}
.ws20{word-spacing:-17.272320pt;}
.ws3c{word-spacing:-16.896000pt;}
.ws50{word-spacing:-16.832000pt;}
.wsc{word-spacing:-16.768000pt;}
.ws14{word-spacing:-16.762667pt;}
.ws28{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.640000pt;}
.ws45{word-spacing:-16.608000pt;}
.ws24{word-spacing:-16.576000pt;}
.ws46{word-spacing:-16.512000pt;}
.ws29{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.384000pt;}
.ws5c{word-spacing:-16.358933pt;}
.ws5b{word-spacing:-16.320000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws5e{word-spacing:-16.217067pt;}
.ws15{word-spacing:-16.192000pt;}
.ws61{word-spacing:-16.174400pt;}
.ws4e{word-spacing:-16.138667pt;}
.ws8{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.124267pt;}
.ws19{word-spacing:-16.096000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1d{word-spacing:-16.060427pt;}
.ws51{word-spacing:-16.046187pt;}
.ws16{word-spacing:-16.032000pt;}
.ws1e{word-spacing:-16.000005pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5f{word-spacing:-15.982187pt;}
.wse{word-spacing:-15.968000pt;}
.ws44{word-spacing:-15.939733pt;}
.ws4{word-spacing:-15.936000pt;}
.ws27{word-spacing:-15.889600pt;}
.ws11{word-spacing:-15.872000pt;}
.ws26{word-spacing:-15.846933pt;}
.ws57{word-spacing:-15.811733pt;}
.ws23{word-spacing:-15.808000pt;}
.ws4d{word-spacing:-15.797333pt;}
.wsb{word-spacing:-15.744000pt;}
.ws25{word-spacing:-15.718933pt;}
.ws6{word-spacing:-15.616000pt;}
.ws5d{word-spacing:-15.577067pt;}
.ws60{word-spacing:-15.498667pt;}
.ws17{word-spacing:-15.488000pt;}
.ws4f{word-spacing:-15.482667pt;}
.ws22{word-spacing:-15.424000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws2a{word-spacing:-15.328000pt;}
.wsf{word-spacing:-15.168000pt;}
.ws30{word-spacing:-15.157333pt;}
.ws43{word-spacing:-14.991467pt;}
.ws37{word-spacing:-14.953067pt;}
.ws3a{word-spacing:-14.848000pt;}
.ws34{word-spacing:-14.720000pt;}
.ws55{word-spacing:-14.448533pt;}
.ws39{word-spacing:-14.351467pt;}
.ws33{word-spacing:-14.347733pt;}
.ws38{word-spacing:-14.080000pt;}
.ws32{word-spacing:-14.048000pt;}
.ws4c{word-spacing:-13.600000pt;}
.ws49{word-spacing:-13.568000pt;}
.ws5a{word-spacing:-13.545600pt;}
.ws4a{word-spacing:-13.510933pt;}
.ws41{word-spacing:-13.488000pt;}
.ws54{word-spacing:-13.463467pt;}
.ws42{word-spacing:-13.379584pt;}
.ws3f{word-spacing:-13.344000pt;}
.ws59{word-spacing:-13.280000pt;}
.ws4b{word-spacing:-13.232640pt;}
.ws48{word-spacing:-12.928000pt;}
.ws36{word-spacing:-12.032000pt;}
.ws35{word-spacing:-12.000000pt;}
.ws53{word-spacing:-11.984000pt;}
.ws52{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.040000pt;}
.ws56{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
.ws40{word-spacing:346.200320pt;}
.ws3e{word-spacing:428.533333pt;}
.ws3d{word-spacing:449.013333pt;}
._7{margin-left:-15.946667pt;}
._6{margin-left:-13.941333pt;}
._a{margin-left:-12.693333pt;}
._b{margin-left:-11.767552pt;}
._5{margin-left:-10.453333pt;}
._8{margin-left:-8.725333pt;}
._c{margin-left:-6.741333pt;}
._9{margin-left:-5.269333pt;}
._1f{margin-left:-4.240213pt;}
._d{margin-left:-3.285333pt;}
._2{margin-left:-2.050475pt;}
._0{margin-left:-0.898560pt;}
._15{width:0.907093pt;}
._1{width:1.796693pt;}
._1a{width:2.687147pt;}
._f{width:3.776000pt;}
._14{width:5.376000pt;}
._19{width:6.784000pt;}
._18{width:8.399787pt;}
._16{width:9.450667pt;}
._17{width:10.464000pt;}
._1b{width:11.404800pt;}
._12{width:12.522667pt;}
._13{width:13.521067pt;}
._1d{width:14.446933pt;}
._e{width:17.546667pt;}
._1c{width:19.296000pt;}
._11{width:21.018453pt;}
._10{width:22.122667pt;}
._1e{width:23.104000pt;}
._29{width:24.192000pt;}
._2f{width:25.994667pt;}
._22{width:27.242667pt;}
._2a{width:28.180053pt;}
._23{width:29.098667pt;}
._24{width:30.028032pt;}
._21{width:31.017301pt;}
._20{width:32.052907pt;}
._27{width:33.130667pt;}
._28{width:34.155093pt;}
._2b{width:35.234773pt;}
._2e{width:42.218667pt;}
._34{width:43.297195pt;}
._2d{width:44.477952pt;}
._2c{width:45.538048pt;}
._32{width:52.831573pt;}
._33{width:53.825280pt;}
._25{width:83.242667pt;}
._26{width:84.725333pt;}
._31{width:91.264000pt;}
._30{width:92.354048pt;}
._4{width:752.266667pt;}
._3{width:1264.426667pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:48.128000pt;}
.fsa{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fs7{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:77.440000pt;}
.fse{font-size:77.568000pt;}
.fs2{font-size:80.000000pt;}
.y28c{bottom:-21.920000pt;}
.y0{bottom:0.000000pt;}
.y23c{bottom:2.106667pt;}
.y244{bottom:2.112000pt;}
.y23a{bottom:2.146667pt;}
.y237{bottom:3.266667pt;}
.y238{bottom:3.906667pt;}
.y16f{bottom:5.786667pt;}
.y166{bottom:5.826667pt;}
.y158{bottom:5.853333pt;}
.y14b{bottom:5.893333pt;}
.y176{bottom:5.946667pt;}
.y163{bottom:5.986667pt;}
.y15b{bottom:6.013333pt;}
.y152{bottom:6.053333pt;}
.y24a{bottom:7.013333pt;}
.y248{bottom:7.040000pt;}
.y1ce{bottom:7.133333pt;}
.y170{bottom:7.226667pt;}
.y167{bottom:7.266667pt;}
.y15d{bottom:7.293333pt;}
.y14e{bottom:7.333333pt;}
.y174{bottom:7.386667pt;}
.y164{bottom:7.426667pt;}
.y159{bottom:7.453333pt;}
.y150{bottom:7.493333pt;}
.y26d{bottom:7.746667pt;}
.y26f{bottom:8.253333pt;}
.y14c{bottom:8.293333pt;}
.y235{bottom:8.386667pt;}
.y1c9{bottom:8.413333pt;}
.y149{bottom:8.480000pt;}
.y232{bottom:8.546667pt;}
.y230{bottom:8.640000pt;}
.y21d{bottom:9.413333pt;}
.y21b{bottom:9.440000pt;}
.y1b3{bottom:10.240000pt;}
.y189{bottom:11.040000pt;}
.y2a1{bottom:11.653333pt;}
.y29f{bottom:11.680000pt;}
.y1d8{bottom:12.066667pt;}
.y1c1{bottom:13.413333pt;}
.y1bf{bottom:13.440000pt;}
.y24e{bottom:13.533333pt;}
.y24c{bottom:13.600000pt;}
.y1c5{bottom:14.146667pt;}
.y1c3{bottom:14.280000pt;}
.y19b{bottom:16.386667pt;}
.y18e{bottom:16.480000pt;}
.y2b3{bottom:17.253333pt;}
.y2b1{bottom:17.280000pt;}
.y1e4{bottom:17.306667pt;}
.y1e2{bottom:17.440000pt;}
.y1d4{bottom:23.106667pt;}
.y1d1{bottom:23.933333pt;}
.y17e{bottom:25.306667pt;}
.y234{bottom:25.346667pt;}
.y1cd{bottom:25.533333pt;}
.y1cb{bottom:25.600000pt;}
.y1d7{bottom:30.466667pt;}
.y22e{bottom:34.240000pt;}
.y22c{bottom:34.266667pt;}
.y2b0{bottom:34.400000pt;}
.y1d3{bottom:41.506667pt;}
.y1d0{bottom:42.333333pt;}
.y17b{bottom:43.360000pt;}
.y17f{bottom:43.546667pt;}
.y21{bottom:59.840000pt;}
.y180{bottom:61.786667pt;}
.y13d{bottom:79.072000pt;}
.y181{bottom:80.066667pt;}
.y118{bottom:80.992000pt;}
.y26b{bottom:81.152000pt;}
.y246{bottom:83.712000pt;}
.y20{bottom:84.032000pt;}
.y18c{bottom:87.973333pt;}
.yad{bottom:88.352000pt;}
.yfc{bottom:88.832000pt;}
.y2da{bottom:93.472000pt;}
.y3b{bottom:93.632000pt;}
.y205{bottom:94.432000pt;}
.y213{bottom:96.672000pt;}
.y1f7{bottom:98.272000pt;}
.y182{bottom:98.306667pt;}
.y1b1{bottom:99.712000pt;}
.yc7{bottom:100.032000pt;}
.y71{bottom:100.512000pt;}
.y147{bottom:101.312000pt;}
.y1f{bottom:102.432000pt;}
.y245{bottom:102.720000pt;}
.yea{bottom:102.752000pt;}
.y22a{bottom:106.272000pt;}
.y179{bottom:109.152000pt;}
.y18b{bottom:109.213333pt;}
.ycd{bottom:111.552000pt;}
.y97{bottom:111.712000pt;}
.y86{bottom:111.872000pt;}
.y55{bottom:112.032000pt;}
.y25b{bottom:115.392000pt;}
.y13c{bottom:115.872000pt;}
.y183{bottom:116.546667pt;}
.y17c{bottom:116.800000pt;}
.y117{bottom:117.792000pt;}
.y126{bottom:117.952000pt;}
.y1e{bottom:120.832000pt;}
.yfb{bottom:125.632000pt;}
.y17a{bottom:125.760000pt;}
.y243{bottom:125.920000pt;}
.yac{bottom:128.032000pt;}
.y3a{bottom:130.432000pt;}
.y18a{bottom:130.493333pt;}
.y204{bottom:131.232000pt;}
.y212{bottom:133.466667pt;}
.y184{bottom:134.786667pt;}
.y1f6{bottom:135.066667pt;}
.y1b0{bottom:136.506667pt;}
.y2d9{bottom:136.826667pt;}
.yc6{bottom:136.986667pt;}
.y70{bottom:137.306667pt;}
.y146{bottom:138.106667pt;}
.y1d{bottom:139.226667pt;}
.ye9{bottom:139.546667pt;}
.y29d{bottom:140.986667pt;}
.y75{bottom:142.746667pt;}
.y219{bottom:143.066667pt;}
.y2c2{bottom:143.546667pt;}
.ycc{bottom:148.186667pt;}
.y96{bottom:148.346667pt;}
.y9a{bottom:148.506667pt;}
.y85{bottom:148.666667pt;}
.y54{bottom:148.826667pt;}
.y242{bottom:149.120000pt;}
.y25a{bottom:152.346667pt;}
.y13b{bottom:152.666667pt;}
.y185{bottom:153.026667pt;}
.y116{bottom:154.586667pt;}
.y125{bottom:154.746667pt;}
.y1e0{bottom:157.306667pt;}
.y1c{bottom:157.626667pt;}
.y175{bottom:159.360000pt;}
.yfa{bottom:162.426667pt;}
.y39{bottom:167.226667pt;}
.yab{bottom:167.866667pt;}
.y203{bottom:168.026667pt;}
.y211{bottom:170.266667pt;}
.y186{bottom:171.266667pt;}
.y241{bottom:172.480000pt;}
.y1af{bottom:173.306667pt;}
.y289{bottom:173.626667pt;}
.yc5{bottom:173.786667pt;}
.y6f{bottom:174.106667pt;}
.y1f5{bottom:175.706667pt;}
.y1b{bottom:176.026667pt;}
.ye8{bottom:176.346667pt;}
.y29c{bottom:177.626667pt;}
.y74{bottom:179.546667pt;}
.y218{bottom:179.866667pt;}
.y2c1{bottom:180.346667pt;}
.y280{bottom:182.426667pt;}
.ycb{bottom:185.146667pt;}
.y95{bottom:185.306667pt;}
.y76{bottom:185.466667pt;}
.y53{bottom:185.626667pt;}
.y2ae{bottom:188.826667pt;}
.y259{bottom:189.146667pt;}
.y13a{bottom:189.466667pt;}
.y17d{bottom:189.506667pt;}
.y187{bottom:189.533333pt;}
.y173{bottom:189.920000pt;}
.y115{bottom:191.386667pt;}
.y124{bottom:191.546667pt;}
.y1df{bottom:194.106667pt;}
.y1a{bottom:194.426667pt;}
.y240{bottom:195.680000pt;}
.yf9{bottom:199.226667pt;}
.y38{bottom:204.026667pt;}
.yaa{bottom:204.506667pt;}
.y202{bottom:204.826667pt;}
.y210{bottom:207.066667pt;}
.y188{bottom:207.773333pt;}
.y1ae{bottom:210.106667pt;}
.y2d8{bottom:210.426667pt;}
.y288{bottom:210.586667pt;}
.yc4{bottom:210.746667pt;}
.y6e{bottom:210.906667pt;}
.y19{bottom:212.826667pt;}
.ye7{bottom:213.146667pt;}
.y114{bottom:215.226667pt;}
.y1f4{bottom:216.506667pt;}
.y217{bottom:216.666667pt;}
.y2c0{bottom:217.146667pt;}
.y73{bottom:218.106667pt;}
.y29b{bottom:218.266667pt;}
.y23f{bottom:219.040000pt;}
.y27f{bottom:219.226667pt;}
.y172{bottom:220.480000pt;}
.yca{bottom:221.946667pt;}
.y94{bottom:222.106667pt;}
.y63{bottom:222.266667pt;}
.y52{bottom:222.426667pt;}
.y2ad{bottom:225.626667pt;}
.y258{bottom:225.946667pt;}
.y139{bottom:226.266667pt;}
.y123{bottom:228.346667pt;}
.y1de{bottom:230.906667pt;}
.y18{bottom:231.226667pt;}
.yf8{bottom:236.026667pt;}
.y1a2{bottom:238.106667pt;}
.y37{bottom:240.826667pt;}
.ya9{bottom:241.466667pt;}
.y201{bottom:241.626667pt;}
.y23e{bottom:242.240000pt;}
.y113{bottom:243.386667pt;}
.y20f{bottom:243.866667pt;}
.y1ad{bottom:246.906667pt;}
.y2d7{bottom:247.226667pt;}
.y287{bottom:247.386667pt;}
.yc3{bottom:247.546667pt;}
.yee{bottom:247.706667pt;}
.y17{bottom:249.466667pt;}
.ye6{bottom:249.946667pt;}
.y6d{bottom:250.426667pt;}
.y171{bottom:251.040000pt;}
.y1dd{bottom:251.386667pt;}
.y216{bottom:253.466667pt;}
.y2bf{bottom:253.946667pt;}
.y27e{bottom:256.026667pt;}
.y1f3{bottom:257.306667pt;}
.y72{bottom:257.946667pt;}
.yc9{bottom:258.746667pt;}
.y93{bottom:258.906667pt;}
.y62{bottom:259.066667pt;}
.y51{bottom:259.226667pt;}
.y2ac{bottom:262.426667pt;}
.y257{bottom:262.746667pt;}
.y138{bottom:263.066667pt;}
.y122{bottom:265.146667pt;}
.y23d{bottom:265.440000pt;}
.y16{bottom:267.866667pt;}
.y1e1{bottom:268.026667pt;}
.y1e3{bottom:268.160000pt;}
.y1dc{bottom:271.866667pt;}
.yf7{bottom:272.826667pt;}
.y1a1{bottom:274.906667pt;}
.y229{bottom:277.466667pt;}
.y36{bottom:277.626667pt;}
.ya8{bottom:278.266667pt;}
.y200{bottom:278.426667pt;}
.y112{bottom:280.186667pt;}
.y20e{bottom:280.666667pt;}
.y16e{bottom:281.600000pt;}
.y1ac{bottom:283.706667pt;}
.y286{bottom:284.026667pt;}
.yc2{bottom:284.346667pt;}
.yed{bottom:284.506667pt;}
.y15{bottom:286.266667pt;}
.ye5{bottom:286.746667pt;}
.y1c2{bottom:288.026667pt;}
.y1c4{bottom:288.160000pt;}
.y23b{bottom:288.800000pt;}
.y121{bottom:289.146667pt;}
.y6c{bottom:290.266667pt;}
.y2be{bottom:290.746667pt;}
.y1db{bottom:292.346667pt;}
.y27d{bottom:292.826667pt;}
.y1f2{bottom:294.106667pt;}
.y145{bottom:295.226667pt;}
.yc8{bottom:295.546667pt;}
.y92{bottom:295.706667pt;}
.y61{bottom:295.866667pt;}
.y50{bottom:296.026667pt;}
.y2ab{bottom:299.266667pt;}
.y137{bottom:299.906667pt;}
.y228{bottom:301.826667pt;}
.y1bd{bottom:302.306667pt;}
.y14{bottom:304.706667pt;}
.yf6{bottom:309.666667pt;}
.y1da{bottom:310.146667pt;}
.y1a0{bottom:311.586667pt;}
.y239{bottom:312.000000pt;}
.y16d{bottom:312.160000pt;}
.y35{bottom:314.466667pt;}
.ya7{bottom:314.946667pt;}
.y265{bottom:315.106667pt;}
.y1ff{bottom:315.266667pt;}
.y111{bottom:317.026667pt;}
.y120{bottom:317.346667pt;}
.y20d{bottom:317.506667pt;}
.y1ab{bottom:320.546667pt;}
.y2d6{bottom:320.866667pt;}
.yc1{bottom:321.026667pt;}
.y13{bottom:323.106667pt;}
.ye4{bottom:323.586667pt;}
.yec{bottom:324.066667pt;}
.y285{bottom:324.866667pt;}
.y6b{bottom:327.106667pt;}
.y2bd{bottom:327.586667pt;}
.y27c{bottom:329.666667pt;}
.y1f1{bottom:330.946667pt;}
.y144{bottom:332.066667pt;}
.y91{bottom:332.546667pt;}
.y60{bottom:332.706667pt;}
.y4f{bottom:332.866667pt;}
.y236{bottom:335.360000pt;}
.y2aa{bottom:336.066667pt;}
.y136{bottom:336.706667pt;}
.y1bc{bottom:339.106667pt;}
.y12{bottom:341.506667pt;}
.y256{bottom:342.146667pt;}
.y16c{bottom:342.560000pt;}
.y1d9{bottom:344.386667pt;}
.yf5{bottom:346.466667pt;}
.y19f{bottom:348.386667pt;}
.y34{bottom:351.266667pt;}
.ya6{bottom:351.906667pt;}
.y264{bottom:352.066667pt;}
.y110{bottom:353.826667pt;}
.y11f{bottom:354.146667pt;}
.y20c{bottom:354.306667pt;}
.y18d{bottom:354.466667pt;}
.y1fe{bottom:354.786667pt;}
.y1aa{bottom:357.346667pt;}
.y2d5{bottom:357.666667pt;}
.yc0{bottom:357.986667pt;}
.y11{bottom:359.906667pt;}
.ye3{bottom:360.386667pt;}
.y233{bottom:360.960000pt;}
.y227{bottom:361.346667pt;}
.y6a{bottom:363.906667pt;}
.y2bc{bottom:364.386667pt;}
.y284{bottom:365.506667pt;}
.y1d6{bottom:365.760000pt;}
.y27b{bottom:366.466667pt;}
.yeb{bottom:366.626667pt;}
.y199{bottom:367.586667pt;}
.y19a{bottom:367.680000pt;}
.y1f0{bottom:367.746667pt;}
.y143{bottom:368.706667pt;}
.y90{bottom:369.346667pt;}
.y5f{bottom:369.506667pt;}
.y4e{bottom:369.666667pt;}
.y2a9{bottom:372.866667pt;}
.y16b{bottom:373.120000pt;}
.y135{bottom:373.506667pt;}
.y1bb{bottom:375.906667pt;}
.y10{bottom:378.306667pt;}
.y255{bottom:381.666667pt;}
.y29a{bottom:383.266667pt;}
.y19e{bottom:385.186667pt;}
.yf4{bottom:385.986667pt;}
.y33{bottom:388.066667pt;}
.ya5{bottom:388.706667pt;}
.y226{bottom:389.026667pt;}
.y10f{bottom:390.626667pt;}
.y11e{bottom:390.946667pt;}
.y20b{bottom:391.106667pt;}
.y1a9{bottom:394.146667pt;}
.y2d4{bottom:394.466667pt;}
.y1fd{bottom:394.626667pt;}
.ybf{bottom:394.786667pt;}
.yf{bottom:396.706667pt;}
.ye2{bottom:397.186667pt;}
.y69{bottom:400.706667pt;}
.y2bb{bottom:401.186667pt;}
.y27a{bottom:403.266667pt;}
.y16a{bottom:403.680000pt;}
.y178{bottom:404.066667pt;}
.y1ef{bottom:404.546667pt;}
.y142{bottom:405.506667pt;}
.y8f{bottom:406.146667pt;}
.y5e{bottom:406.306667pt;}
.y4d{bottom:406.466667pt;}
.y2a8{bottom:409.666667pt;}
.y134{bottom:410.306667pt;}
.y1ba{bottom:412.706667pt;}
.ye{bottom:415.106667pt;}
.y225{bottom:416.546667pt;}
.y299{bottom:420.066667pt;}
.y198{bottom:421.986667pt;}
.y1d5{bottom:422.240000pt;}
.y254{bottom:424.226667pt;}
.y32{bottom:424.866667pt;}
.ya4{bottom:425.666667pt;}
.yf3{bottom:425.826667pt;}
.y10e{bottom:427.586667pt;}
.y11d{bottom:427.746667pt;}
.y20a{bottom:427.906667pt;}
.y1a8{bottom:430.946667pt;}
.y2d3{bottom:431.266667pt;}
.y1fc{bottom:431.426667pt;}
.ybe{bottom:431.586667pt;}
.yd{bottom:433.506667pt;}
.ye1{bottom:433.986667pt;}
.y169{bottom:434.240000pt;}
.y68{bottom:437.506667pt;}
.y2ba{bottom:437.986667pt;}
.y279{bottom:440.066667pt;}
.y1ee{bottom:441.186667pt;}
.y26c{bottom:441.760000pt;}
.y177{bottom:441.986667pt;}
.y141{bottom:442.466667pt;}
.y8e{bottom:442.786667pt;}
.y84{bottom:442.946667pt;}
.y5d{bottom:443.106667pt;}
.y4c{bottom:443.266667pt;}
.y224{bottom:444.226667pt;}
.y2a7{bottom:446.466667pt;}
.y283{bottom:446.946667pt;}
.y133{bottom:447.106667pt;}
.y1b9{bottom:449.506667pt;}
.yc{bottom:451.906667pt;}
.y22f{bottom:455.266667pt;}
.y231{bottom:455.360000pt;}
.y298{bottom:456.866667pt;}
.y197{bottom:458.786667pt;}
.y31{bottom:461.666667pt;}
.ya3{bottom:462.466667pt;}
.y263{bottom:462.626667pt;}
.y253{bottom:464.066667pt;}
.y10d{bottom:464.386667pt;}
.y11c{bottom:464.546667pt;}
.y209{bottom:464.706667pt;}
.y168{bottom:464.800000pt;}
.yf2{bottom:465.346667pt;}
.y1a7{bottom:467.746667pt;}
.y2d2{bottom:468.226667pt;}
.ybd{bottom:468.386667pt;}
.yb{bottom:470.306667pt;}
.ye0{bottom:470.786667pt;}
.y1fb{bottom:470.946667pt;}
.y223{bottom:471.746667pt;}
.y67{bottom:474.306667pt;}
.y2b9{bottom:474.786667pt;}
.y278{bottom:476.866667pt;}
.y1ed{bottom:477.986667pt;}
.y140{bottom:479.106667pt;}
.yd1{bottom:479.586667pt;}
.y83{bottom:479.746667pt;}
.y5c{bottom:479.906667pt;}
.y4b{bottom:480.066667pt;}
.y2a6{bottom:483.266667pt;}
.y282{bottom:483.746667pt;}
.y132{bottom:483.906667pt;}
.y1b8{bottom:486.306667pt;}
.y1d2{bottom:489.760000pt;}
.y297{bottom:493.506667pt;}
.y165{bottom:495.360000pt;}
.y196{bottom:495.586667pt;}
.y30{bottom:498.466667pt;}
.ya2{bottom:499.266667pt;}
.y222{bottom:499.426667pt;}
.ya{bottom:501.026667pt;}
.y10c{bottom:501.346667pt;}
.y208{bottom:501.506667pt;}
.y1a6{bottom:504.546667pt;}
.y2d1{bottom:505.026667pt;}
.ybc{bottom:505.186667pt;}
.ydf{bottom:507.586667pt;}
.y1fa{bottom:510.786667pt;}
.y66{bottom:511.106667pt;}
.y277{bottom:513.666667pt;}
.y2b8{bottom:515.426667pt;}
.y13f{bottom:516.066667pt;}
.y82{bottom:516.546667pt;}
.y5b{bottom:516.706667pt;}
.y4a{bottom:516.866667pt;}
.y1ec{bottom:517.666667pt;}
.y2a5{bottom:520.066667pt;}
.y281{bottom:520.546667pt;}
.y131{bottom:520.706667pt;}
.y1b7{bottom:523.106667pt;}
.y162{bottom:525.760000pt;}
.y296{bottom:530.466667pt;}
.y195{bottom:532.386667pt;}
.y221{bottom:532.546667pt;}
.y2f{bottom:535.266667pt;}
.y9{bottom:535.586667pt;}
.ya1{bottom:536.066667pt;}
.y262{bottom:536.226667pt;}
.y10b{bottom:538.173333pt;}
.y252{bottom:538.333333pt;}
.y24b{bottom:540.253333pt;}
.y24d{bottom:540.320000pt;}
.y1a5{bottom:541.373333pt;}
.y2d0{bottom:541.853333pt;}
.ybb{bottom:542.013333pt;}
.yde{bottom:544.413333pt;}
.y1f9{bottom:547.613333pt;}
.y65{bottom:547.933333pt;}
.y276{bottom:550.493333pt;}
.y13e{bottom:552.893333pt;}
.y81{bottom:553.373333pt;}
.y5a{bottom:553.533333pt;}
.y49{bottom:553.693333pt;}
.y2b7{bottom:556.093333pt;}
.y161{bottom:556.320000pt;}
.y2a4{bottom:556.893333pt;}
.y1cf{bottom:557.280000pt;}
.y130{bottom:557.533333pt;}
.y1b6{bottom:559.933333pt;}
.y295{bottom:567.293333pt;}
.y194{bottom:569.213333pt;}
.y220{bottom:569.373333pt;}
.y8{bottom:570.013333pt;}
.y19d{bottom:571.933333pt;}
.y2e{bottom:572.093333pt;}
.y275{bottom:574.333333pt;}
.y11b{bottom:574.813333pt;}
.y10a{bottom:574.973333pt;}
.y251{bottom:575.133333pt;}
.ya0{bottom:575.613333pt;}
.y261{bottom:575.773333pt;}
.y2cf{bottom:578.493333pt;}
.yba{bottom:578.813333pt;}
.y1a4{bottom:580.893333pt;}
.ydd{bottom:581.213333pt;}
.y26a{bottom:584.733333pt;}
.y160{bottom:586.880000pt;}
.y1f8{bottom:587.133333pt;}
.y64{bottom:587.453333pt;}
.y80{bottom:590.173333pt;}
.y59{bottom:590.333333pt;}
.y48{bottom:590.493333pt;}
.y7{bottom:593.053333pt;}
.y2a3{bottom:593.693333pt;}
.y12f{bottom:594.333333pt;}
.y1b5{bottom:596.733333pt;}
.y2b6{bottom:596.893333pt;}
.y19c{bottom:598.973333pt;}
.y274{bottom:602.493333pt;}
.y294{bottom:604.093333pt;}
.y193{bottom:606.013333pt;}
.y21f{bottom:606.173333pt;}
.y2d{bottom:608.893333pt;}
.y109{bottom:611.773333pt;}
.y250{bottom:611.933333pt;}
.y2ce{bottom:615.453333pt;}
.yb9{bottom:615.613333pt;}
.y6{bottom:615.773333pt;}
.y15f{bottom:617.440000pt;}
.ydc{bottom:618.013333pt;}
.y9f{bottom:618.173333pt;}
.yf1{bottom:618.493333pt;}
.y269{bottom:621.533333pt;}
.y273{bottom:623.200000pt;}
.y1ca{bottom:626.493333pt;}
.y1cc{bottom:626.560000pt;}
.y7f{bottom:626.973333pt;}
.y58{bottom:627.133333pt;}
.y47{bottom:627.293333pt;}
.y2a2{bottom:630.493333pt;}
.y1eb{bottom:631.133333pt;}
.y12e{bottom:631.293333pt;}
.y2b5{bottom:633.693333pt;}
.y24f{bottom:635.933333pt;}
.y1b4{bottom:636.253333pt;}
.y5{bottom:637.213333pt;}
.y293{bottom:640.893333pt;}
.y192{bottom:642.813333pt;}
.y2c{bottom:645.693333pt;}
.y15e{bottom:648.000000pt;}
.y108{bottom:648.573333pt;}
.y2cd{bottom:652.253333pt;}
.yb8{bottom:652.413333pt;}
.y272{bottom:653.920000pt;}
.ydb{bottom:654.813333pt;}
.y9e{bottom:658.013333pt;}
.yf0{bottom:658.333333pt;}
.y4{bottom:658.653333pt;}
.ycf{bottom:663.613333pt;}
.y8d{bottom:663.773333pt;}
.y57{bottom:663.933333pt;}
.y46{bottom:664.093333pt;}
.y12d{bottom:668.093333pt;}
.y2b4{bottom:670.493333pt;}
.y1ea{bottom:670.653333pt;}
.y21e{bottom:672.733333pt;}
.y292{bottom:677.693333pt;}
.y15c{bottom:678.560000pt;}
.y191{bottom:679.613333pt;}
.y3{bottom:680.253333pt;}
.y2b{bottom:682.493333pt;}
.y271{bottom:684.480000pt;}
.y107{bottom:685.373333pt;}
.y207{bottom:685.533333pt;}
.y2cc{bottom:689.053333pt;}
.yb7{bottom:689.213333pt;}
.yda{bottom:691.613333pt;}
.y268{bottom:695.133333pt;}
.y9d{bottom:697.533333pt;}
.yef{bottom:697.853333pt;}
.yce{bottom:700.413333pt;}
.y8c{bottom:700.573333pt;}
.y56{bottom:700.733333pt;}
.y45{bottom:700.893333pt;}
.y12c{bottom:704.893333pt;}
.y2{bottom:706.013333pt;}
.y15a{bottom:708.960000pt;}
.y206{bottom:709.533333pt;}
.y1e9{bottom:710.493333pt;}
.y270{bottom:715.200000pt;}
.y291{bottom:717.213333pt;}
.y190{bottom:719.133333pt;}
.y2a{bottom:719.293333pt;}
.y106{bottom:722.173333pt;}
.y2cb{bottom:725.853333pt;}
.yb6{bottom:726.013333pt;}
.y1{bottom:727.933333pt;}
.yd9{bottom:728.413333pt;}
.y267{bottom:731.933333pt;}
.y8b{bottom:737.373333pt;}
.y7e{bottom:737.533333pt;}
.y44{bottom:737.693333pt;}
.y157{bottom:739.520000pt;}
.y12b{bottom:741.693333pt;}
.y1c8{bottom:744.093333pt;}
.y26e{bottom:745.920000pt;}
.y18f{bottom:746.173333pt;}
.y1e8{bottom:747.293333pt;}
.y29{bottom:756.093333pt;}
.y290{bottom:757.053333pt;}
.y105{bottom:758.813333pt;}
.y11a{bottom:758.973333pt;}
.y2ca{bottom:762.653333pt;}
.yb5{bottom:762.813333pt;}
.yd8{bottom:765.213333pt;}
.y260{bottom:765.533333pt;}
.y12a{bottom:765.693333pt;}
.y156{bottom:770.080000pt;}
.y266{bottom:771.453333pt;}
.y9c{bottom:774.053333pt;}
.y8a{bottom:774.213333pt;}
.y7d{bottom:774.373333pt;}
.y43{bottom:774.533333pt;}
.y1c7{bottom:780.933333pt;}
.y119{bottom:783.013333pt;}
.y1e7{bottom:784.133333pt;}
.y28{bottom:792.933333pt;}
.y28f{bottom:793.893333pt;}
.y29e{bottom:795.013333pt;}
.y2a0{bottom:795.040000pt;}
.y104{bottom:795.813333pt;}
.y129{bottom:796.613333pt;}
.y247{bottom:797.733333pt;}
.y249{bottom:797.760000pt;}
.y2c9{bottom:799.493333pt;}
.yb4{bottom:799.653333pt;}
.y155{bottom:800.640000pt;}
.yd7{bottom:802.053333pt;}
.y25f{bottom:805.413333pt;}
.y89{bottom:811.013333pt;}
.y7c{bottom:811.173333pt;}
.y42{bottom:811.333333pt;}
.y1c6{bottom:817.573333pt;}
.y1e6{bottom:820.933333pt;}
.y27{bottom:829.733333pt;}
.y154{bottom:831.200000pt;}
.y103{bottom:832.613333pt;}
.y28e{bottom:833.413333pt;}
.y2c8{bottom:836.293333pt;}
.yb3{bottom:836.453333pt;}
.yd6{bottom:838.853333pt;}
.y128{bottom:839.173333pt;}
.y25e{bottom:842.213333pt;}
.y9b{bottom:847.813333pt;}
.y7b{bottom:847.973333pt;}
.y41{bottom:848.133333pt;}
.y1e5{bottom:857.573333pt;}
.y153{bottom:861.760000pt;}
.y26{bottom:866.533333pt;}
.y2af{bottom:866.693333pt;}
.y2b2{bottom:866.720000pt;}
.y102{bottom:869.413333pt;}
.yb2{bottom:873.253333pt;}
.y25c{bottom:874.373333pt;}
.y25d{bottom:874.400000pt;}
.yd5{bottom:875.653333pt;}
.y2c7{bottom:877.093333pt;}
.y127{bottom:881.733333pt;}
.y88{bottom:884.613333pt;}
.y7a{bottom:884.773333pt;}
.y40{bottom:884.933333pt;}
.y151{bottom:892.160000pt;}
.y25{bottom:903.333333pt;}
.y101{bottom:906.213333pt;}
.y21a{bottom:907.973333pt;}
.y21c{bottom:908.000000pt;}
.yb1{bottom:910.053333pt;}
.y28d{bottom:912.773333pt;}
.y2c6{bottom:913.733333pt;}
.yd4{bottom:914.213333pt;}
.y28a{bottom:916.133333pt;}
.y28b{bottom:916.160000pt;}
.yd0{bottom:921.413333pt;}
.y79{bottom:921.573333pt;}
.y3f{bottom:921.733333pt;}
.y14f{bottom:922.720000pt;}
.y24{bottom:940.133333pt;}
.y100{bottom:943.013333pt;}
.yb0{bottom:949.573333pt;}
.y215{bottom:952.613333pt;}
.y14d{bottom:953.280000pt;}
.yd3{bottom:954.053333pt;}
.y2c5{bottom:954.533333pt;}
.y78{bottom:958.213333pt;}
.y87{bottom:958.373333pt;}
.y3e{bottom:958.533333pt;}
.y23{bottom:976.933333pt;}
.yff{bottom:979.813333pt;}
.y14a{bottom:984.800000pt;}
.y1be{bottom:985.253333pt;}
.y1c0{bottom:985.280000pt;}
.yaf{bottom:989.253333pt;}
.y214{bottom:989.413333pt;}
.y2c4{bottom:991.333333pt;}
.yd2{bottom:994.053333pt;}
.y99{bottom:995.013333pt;}
.y77{bottom:995.173333pt;}
.y3d{bottom:995.333333pt;}
.y22b{bottom:999.013333pt;}
.y22d{bottom:999.040000pt;}
.y1a3{bottom:1008.133333pt;}
.y3c{bottom:1013.760000pt;}
.y148{bottom:1016.000000pt;}
.yfe{bottom:1016.800000pt;}
.y1b2{bottom:1023.040000pt;}
.y2c3{bottom:1028.160000pt;}
.yae{bottom:1029.120000pt;}
.y98{bottom:1032.000000pt;}
.y22{bottom:1032.160000pt;}
.yfd{bottom:1040.800000pt;}
.h36{height:12.160000pt;}
.h35{height:12.320000pt;}
.h37{height:12.320133pt;}
.h33{height:13.920000pt;}
.h15{height:19.520000pt;}
.h19{height:19.680000pt;}
.h38{height:20.800000pt;}
.h3b{height:21.600000pt;}
.h2b{height:23.200000pt;}
.h1f{height:24.000000pt;}
.h12{height:24.097500pt;}
.h3d{height:25.440000pt;}
.h21{height:27.200000pt;}
.h20{height:27.232000pt;}
.h39{height:27.360000pt;}
.h23{height:28.000000pt;}
.h22{height:28.032000pt;}
.h1e{height:30.240000pt;}
.h2a{height:31.200000pt;}
.h29{height:31.232000pt;}
.h1c{height:35.085938pt;}
.h1d{height:35.179500pt;}
.h3c{height:38.080000pt;}
.h13{height:38.240000pt;}
.h34{height:38.441250pt;}
.h17{height:38.595000pt;}
.h1a{height:38.688000pt;}
.h30{height:39.200000pt;}
.h31{height:39.562500pt;}
.h24{height:40.480000pt;}
.h2{height:42.780000pt;}
.h2c{height:43.031250pt;}
.h9{height:45.156250pt;}
.hb{height:45.246562pt;}
.h27{height:45.440000pt;}
.ha{height:46.500000pt;}
.h2d{height:47.621250pt;}
.h28{height:47.736000pt;}
.h16{height:47.782500pt;}
.h2f{height:48.000000pt;}
.h2e{height:48.032000pt;}
.h18{height:48.530000pt;}
.h14{height:48.635500pt;}
.hf{height:48.768750pt;}
.hd{height:51.937500pt;}
.h11{height:52.041375pt;}
.h7{height:52.750000pt;}
.h8{height:52.855500pt;}
.h32{height:55.040000pt;}
.h10{height:56.092500pt;}
.h5{height:56.445312pt;}
.h26{height:56.480000pt;}
.h25{height:57.280000pt;}
.h6{height:57.375000pt;}
.hc{height:57.489750pt;}
.h3{height:67.128750pt;}
.he{height:69.423750pt;}
.h3a{height:69.538500pt;}
.h4{height:71.718750pt;}
.h1b{height:226.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:42.880000pt;}
.w1d{width:47.040000pt;}
.w17{width:49.120000pt;}
.w1b{width:56.160000pt;}
.w1c{width:56.800000pt;}
.w15{width:57.120000pt;}
.w2b{width:63.520000pt;}
.w28{width:65.600000pt;}
.w29{width:65.920000pt;}
.w2a{width:67.840000pt;}
.w1a{width:72.000000pt;}
.w18{width:75.360000pt;}
.w19{width:75.840000pt;}
.w35{width:97.760000pt;}
.w1e{width:105.600000pt;}
.w14{width:105.920000pt;}
.w9{width:108.160000pt;}
.w5{width:108.480000pt;}
.w7{width:114.400000pt;}
.w36{width:128.160000pt;}
.w6{width:151.040000pt;}
.w34{width:158.400000pt;}
.w8{width:265.760000pt;}
.w4{width:266.080000pt;}
.w3c{width:312.000000pt;}
.w3b{width:312.066667pt;}
.w26{width:327.200000pt;}
.w25{width:327.266667pt;}
.w27{width:340.160000pt;}
.w24{width:349.440000pt;}
.w23{width:349.506667pt;}
.wa{width:412.800000pt;}
.wf{width:419.200000pt;}
.we{width:419.293333pt;}
.w2d{width:430.080000pt;}
.w2c{width:430.173333pt;}
.w13{width:448.000000pt;}
.w12{width:448.093333pt;}
.w31{width:473.600000pt;}
.w30{width:473.693333pt;}
.wb{width:475.293333pt;}
.w3e{width:480.000000pt;}
.w3d{width:480.093333pt;}
.w32{width:486.400000pt;}
.w20{width:504.000000pt;}
.w1f{width:504.093333pt;}
.wd{width:532.000000pt;}
.wc{width:532.093333pt;}
.w38{width:540.800000pt;}
.w37{width:540.893333pt;}
.w3a{width:546.400000pt;}
.w39{width:546.493333pt;}
.w11{width:554.400000pt;}
.w10{width:554.493333pt;}
.w22{width:576.000000pt;}
.w21{width:576.093333pt;}
.w2f{width:582.240000pt;}
.w2e{width:582.333333pt;}
.w3{width:641.600000pt;}
.w33{width:642.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:1.920000pt;}
.xc{left:5.472000pt;}
.x29{left:6.746667pt;}
.x1a{left:8.866667pt;}
.x37{left:10.466667pt;}
.x31{left:12.573333pt;}
.x2b{left:13.826667pt;}
.x19{left:15.520000pt;}
.x2e{left:17.346667pt;}
.x36{left:19.072000pt;}
.x48{left:20.546667pt;}
.x10{left:22.013333pt;}
.x33{left:23.333333pt;}
.x4b{left:24.733333pt;}
.x3a{left:26.592000pt;}
.x39{left:30.592000pt;}
.x46{left:32.706667pt;}
.x38{left:33.792000pt;}
.x58{left:35.586667pt;}
.xe{left:37.826667pt;}
.x59{left:40.066667pt;}
.x12{left:41.253333pt;}
.x54{left:42.306667pt;}
.x13{left:43.426667pt;}
.x15{left:49.253333pt;}
.x52{left:51.226667pt;}
.x57{left:60.773333pt;}
.x14{left:65.053333pt;}
.x1{left:75.519988pt;}
.x27{left:82.720000pt;}
.x3e{left:83.872000pt;}
.x5a{left:88.671988pt;}
.x60{left:90.271988pt;}
.x9{left:91.551988pt;}
.xa{left:92.991988pt;}
.x1e{left:94.431988pt;}
.x1b{left:97.786667pt;}
.x16{left:99.551988pt;}
.xb{left:101.791988pt;}
.x18{left:104.960000pt;}
.x3d{left:107.551988pt;}
.x5b{left:116.512000pt;}
.x23{left:119.712000pt;}
.x40{left:120.671988pt;}
.x4d{left:122.752000pt;}
.x4{left:124.191988pt;}
.x5{left:127.871988pt;}
.x1f{left:130.912000pt;}
.x3{left:132.831988pt;}
.x44{left:135.453333pt;}
.x4f{left:143.546667pt;}
.x3b{left:154.106667pt;}
.x51{left:163.200000pt;}
.x1c{left:166.106667pt;}
.x17{left:168.640000pt;}
.x25{left:172.826667pt;}
.x21{left:186.906667pt;}
.x28{left:189.440000pt;}
.x2{left:203.386655pt;}
.x4c{left:218.106667pt;}
.x41{left:221.466667pt;}
.x5e{left:224.573333pt;}
.x45{left:226.720000pt;}
.x53{left:241.600000pt;}
.x2a{left:246.880000pt;}
.x8{left:281.666655pt;}
.x2c{left:290.080000pt;}
.x47{left:293.120000pt;}
.x50{left:301.213333pt;}
.x3c{left:311.613333pt;}
.x26{left:318.493333pt;}
.x42{left:337.853333pt;}
.x2d{left:339.360000pt;}
.xd{left:342.400000pt;}
.x6{left:346.946655pt;}
.x24{left:369.373333pt;}
.x22{left:378.973333pt;}
.x43{left:393.186667pt;}
.x7{left:396.866655pt;}
.x2f{left:414.880000pt;}
.x20{left:417.693333pt;}
.x5f{left:429.413333pt;}
.x49{left:434.720000pt;}
.xf{left:451.040000pt;}
.x3f{left:460.893333pt;}
.x5d{left:465.093333pt;}
.x55{left:468.000000pt;}
.x5c{left:472.613333pt;}
.x30{left:490.880000pt;}
.x4a{left:502.880000pt;}
.x32{left:563.200000pt;}
.x4e{left:565.093333pt;}
.x56{left:596.480000pt;}
.x11{left:602.240000pt;}
.x34{left:619.680000pt;}
.x35{left:676.800000pt;}
}




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