
    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_91699b3bfccb9b75673e1e40.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136000;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_7270742f59c34487f0049f90.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_b1894c4db878ed81c9d95b94.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_35129dbbe62b4070654d1c80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_b7d7120f2b70564e812327f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.044600;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_8c37140601114dfbb15093cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_3655f17ec56ebb0263972450.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058095;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_0b063251d94bb6e44ef00a95.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.058095;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_055cac527f47b53eb0822d63.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.037149;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_2deec92402efed74d760ad33.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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_188074366671280ce6fa4e91.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_14d20bf1246305b0edd21c4e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.881836;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_16fd04df58d3cbb946eb378f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.996000;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_458e2a757d0b843214a6958c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.724000;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_5b97cf8f8997a0d87d25aa6e.woff2')format("woff");}.fff{font-family:fff;line-height:0.816000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.800000px;}
.v4{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.300000px;}
.v3{vertical-align:18.900000px;}
.v1{vertical-align:27.000000px;}
.ls15{letter-spacing:-1.260000px;}
.lse{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.945000px;}
.ls10{letter-spacing:-0.882000px;}
.ls36{letter-spacing:-0.819000px;}
.ls6e{letter-spacing:-0.765000px;}
.lsf{letter-spacing:-0.693000px;}
.ls23{letter-spacing:-0.655200px;}
.lsa{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.570000px;}
.lsb{letter-spacing:-0.567000px;}
.ls24{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.513000px;}
.ls16{letter-spacing:-0.510000px;}
.ls1f{letter-spacing:-0.459000px;}
.ls1a{letter-spacing:-0.441000px;}
.ls21{letter-spacing:-0.409500px;}
.ls14{letter-spacing:-0.315000px;}
.ls38{letter-spacing:-0.189000px;}
.ls1e{letter-spacing:-0.102000px;}
.ls30{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.001020px;}
.ls65{letter-spacing:0.001380px;}
.ls58{letter-spacing:0.051000px;}
.ls2{letter-spacing:0.057000px;}
.ls33{letter-spacing:0.063000px;}
.ls3a{letter-spacing:0.081900px;}
.ls42{letter-spacing:0.099450px;}
.ls46{letter-spacing:0.102000px;}
.ls29{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.126000px;}
.ls41{letter-spacing:0.153000px;}
.ls2d{letter-spacing:0.162000px;}
.ls3c{letter-spacing:0.189000px;}
.ls47{letter-spacing:0.204000px;}
.ls0{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.252000px;}
.ls20{letter-spacing:0.255000px;}
.ls3{letter-spacing:0.285000px;}
.ls4b{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.315000px;}
.ls48{letter-spacing:0.357000px;}
.ls35{letter-spacing:0.378000px;}
.ls57{letter-spacing:0.408000px;}
.ls40{letter-spacing:0.409500px;}
.ls26{letter-spacing:0.441000px;}
.ls1c{letter-spacing:0.445020px;}
.ls49{letter-spacing:0.459000px;}
.lsd{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.510000px;}
.ls25{letter-spacing:0.567000px;}
.ls2a{letter-spacing:0.594000px;}
.ls4d{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.630000px;}
.ls2f{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.663000px;}
.ls1{letter-spacing:0.684000px;}
.ls13{letter-spacing:0.714000px;}
.ls52{letter-spacing:0.765000px;}
.ls31{letter-spacing:0.810000px;}
.ls44{letter-spacing:0.867000px;}
.ls2e{letter-spacing:0.882000px;}
.ls5e{letter-spacing:0.918000px;}
.ls18{letter-spacing:0.969000px;}
.ls53{letter-spacing:1.020000px;}
.ls32{letter-spacing:1.026000px;}
.ls3e{letter-spacing:1.071000px;}
.ls4{letter-spacing:1.083000px;}
.ls6b{letter-spacing:1.122000px;}
.ls5{letter-spacing:1.140000px;}
.ls4c{letter-spacing:1.173000px;}
.ls64{letter-spacing:1.224000px;}
.ls5a{letter-spacing:1.275000px;}
.ls2c{letter-spacing:1.296000px;}
.ls4f{letter-spacing:1.377000px;}
.ls43{letter-spacing:1.428000px;}
.ls39{letter-spacing:1.474200px;}
.ls61{letter-spacing:1.479000px;}
.ls34{letter-spacing:1.512000px;}
.ls54{letter-spacing:1.530000px;}
.ls5f{letter-spacing:1.581000px;}
.ls4e{letter-spacing:1.632000px;}
.ls3d{letter-spacing:1.638000px;}
.ls67{letter-spacing:1.683000px;}
.ls68{letter-spacing:1.734000px;}
.ls27{letter-spacing:1.782000px;}
.ls2b{letter-spacing:1.836000px;}
.ls3b{letter-spacing:1.890000px;}
.ls5c{letter-spacing:1.938000px;}
.ls28{letter-spacing:1.944000px;}
.ls55{letter-spacing:1.989000px;}
.ls56{letter-spacing:2.040000px;}
.ls66{letter-spacing:2.142000px;}
.ls5b{letter-spacing:2.244000px;}
.ls62{letter-spacing:2.263620px;}
.ls37{letter-spacing:2.268000px;}
.ls4a{letter-spacing:2.550000px;}
.ls63{letter-spacing:2.601000px;}
.ls50{letter-spacing:2.958000px;}
.ls59{letter-spacing:3.723000px;}
.ls51{letter-spacing:3.927000px;}
.ls6a{letter-spacing:3.978000px;}
.ls6d{letter-spacing:4.284000px;}
.ls22{letter-spacing:4.790640px;}
.ls45{letter-spacing:4.896000px;}
.ls60{letter-spacing:6.222000px;}
.ls69{letter-spacing:6.528000px;}
.ls6c{letter-spacing:7.140000px;}
.ls5d{letter-spacing:8.480160px;}
.ls9{letter-spacing:13.770000px;}
.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;}
}
.ws4a{word-spacing:-26.352000px;}
.ws9b{word-spacing:-16.758000px;}
.wsc0{word-spacing:-16.626000px;}
.wsce{word-spacing:-15.453000px;}
.wsa6{word-spacing:-14.868000px;}
.wsb1{word-spacing:-14.553000px;}
.ws39{word-spacing:-14.490000px;}
.ws83{word-spacing:-14.040000px;}
.wsd2{word-spacing:-13.974000px;}
.ws65{word-spacing:-13.860000px;}
.wscf{word-spacing:-13.005000px;}
.wsd3{word-spacing:-12.648000px;}
.wsd0{word-spacing:-12.597000px;}
.ws0{word-spacing:-12.540000px;}
.wsd1{word-spacing:-12.342000px;}
.wsc1{word-spacing:-12.189000px;}
.wsf3{word-spacing:-12.138000px;}
.wsd4{word-spacing:-11.781000px;}
.ws6d{word-spacing:-11.730000px;}
.ws18{word-spacing:-11.700000px;}
.ws4b{word-spacing:-11.220000px;}
.ws59{word-spacing:-10.920000px;}
.ws9c{word-spacing:-10.892700px;}
.wsb0{word-spacing:-9.828000px;}
.ws9d{word-spacing:-9.500400px;}
.ws1a{word-spacing:-9.418500px;}
.ws3a{word-spacing:-9.295650px;}
.ws19{word-spacing:-9.009000px;}
.ws6c{word-spacing:-8.763300px;}
.wsb8{word-spacing:-7.723950px;}
.ws1b{word-spacing:-7.624500px;}
.ws66{word-spacing:-7.525050px;}
.wsf5{word-spacing:-7.140000px;}
.wsc2{word-spacing:-4.896000px;}
.wse9{word-spacing:-2.244000px;}
.ws88{word-spacing:-1.782000px;}
.wsec{word-spacing:-0.918000px;}
.wsd6{word-spacing:-0.612000px;}
.wsd7{word-spacing:-0.510000px;}
.wsee{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.wse7{word-spacing:0.051000px;}
.ws9{word-spacing:0.057000px;}
.ws28{word-spacing:0.063000px;}
.wsa2{word-spacing:0.102000px;}
.wsb{word-spacing:0.114000px;}
.wsbc{word-spacing:0.126000px;}
.wsb7{word-spacing:0.153000px;}
.ws20{word-spacing:0.189000px;}
.ws61{word-spacing:0.204000px;}
.ws7b{word-spacing:0.252000px;}
.wsfc{word-spacing:0.255000px;}
.wsb6{word-spacing:0.306000px;}
.ws1d{word-spacing:0.315000px;}
.wsb4{word-spacing:0.357000px;}
.ws5a{word-spacing:0.378000px;}
.ws31{word-spacing:0.441000px;}
.ws17{word-spacing:0.456000px;}
.wsfb{word-spacing:0.459000px;}
.ws1e{word-spacing:0.504000px;}
.ws56{word-spacing:0.510000px;}
.ws7{word-spacing:0.513000px;}
.ws24{word-spacing:0.561000px;}
.ws36{word-spacing:0.567000px;}
.wsa5{word-spacing:0.612000px;}
.ws2e{word-spacing:0.630000px;}
.ws62{word-spacing:0.663000px;}
.ws80{word-spacing:0.693000px;}
.wsba{word-spacing:0.714000px;}
.ws96{word-spacing:0.756000px;}
.wsca{word-spacing:0.765000px;}
.ws3{word-spacing:0.798000px;}
.ws51{word-spacing:0.819000px;}
.ws7a{word-spacing:0.867000px;}
.ws43{word-spacing:0.882000px;}
.wsf2{word-spacing:0.918000px;}
.ws4f{word-spacing:0.945000px;}
.ws97{word-spacing:1.008000px;}
.ws2d{word-spacing:1.071000px;}
.wsdc{word-spacing:1.122000px;}
.ws3f{word-spacing:1.134000px;}
.ws46{word-spacing:1.173000px;}
.wsa9{word-spacing:1.197000px;}
.wse0{word-spacing:1.224000px;}
.ws5c{word-spacing:1.260000px;}
.wse4{word-spacing:1.275000px;}
.ws68{word-spacing:1.323000px;}
.ws5f{word-spacing:1.326000px;}
.ws91{word-spacing:1.350000px;}
.ws48{word-spacing:1.377000px;}
.ws26{word-spacing:1.386000px;}
.ws4{word-spacing:1.425000px;}
.ws71{word-spacing:1.449000px;}
.ws1c{word-spacing:1.512000px;}
.ws94{word-spacing:1.575000px;}
.wsa4{word-spacing:1.632000px;}
.ws85{word-spacing:1.638000px;}
.ws4d{word-spacing:1.701000px;}
.ws5{word-spacing:1.710000px;}
.ws81{word-spacing:1.764000px;}
.ws99{word-spacing:1.785000px;}
.ws6b{word-spacing:1.827000px;}
.ws52{word-spacing:1.890000px;}
.wsa1{word-spacing:1.953000px;}
.wse6{word-spacing:1.989000px;}
.wsf{word-spacing:1.995000px;}
.ws38{word-spacing:2.016000px;}
.ws60{word-spacing:2.040000px;}
.ws7f{word-spacing:2.079000px;}
.ws53{word-spacing:2.142000px;}
.ws13{word-spacing:2.166000px;}
.ws78{word-spacing:2.193000px;}
.ws27{word-spacing:2.205000px;}
.wsa3{word-spacing:2.244000px;}
.ws5b{word-spacing:2.268000px;}
.ws2{word-spacing:2.280000px;}
.wsde{word-spacing:2.295000px;}
.ws67{word-spacing:2.331000px;}
.wsbe{word-spacing:2.394000px;}
.ws64{word-spacing:2.397000px;}
.wse{word-spacing:2.451000px;}
.ws6f{word-spacing:2.457000px;}
.wsb5{word-spacing:2.499000px;}
.ws3c{word-spacing:2.520000px;}
.wsfe{word-spacing:2.550000px;}
.wsab{word-spacing:2.583000px;}
.ws54{word-spacing:2.601000px;}
.ws2b{word-spacing:2.646000px;}
.wscc{word-spacing:2.652000px;}
.ws77{word-spacing:2.754000px;}
.ws84{word-spacing:2.772000px;}
.ws5e{word-spacing:2.805000px;}
.ws8b{word-spacing:2.808000px;}
.ws23{word-spacing:2.835000px;}
.ws7d{word-spacing:2.898000px;}
.wsed{word-spacing:2.958000px;}
.ws86{word-spacing:2.961000px;}
.ws55{word-spacing:3.009000px;}
.wsaa{word-spacing:3.024000px;}
.ws73{word-spacing:3.087000px;}
.ws76{word-spacing:3.111000px;}
.ws70{word-spacing:3.150000px;}
.ws3d{word-spacing:3.276000px;}
.wsd{word-spacing:3.306000px;}
.ws79{word-spacing:3.315000px;}
.ws72{word-spacing:3.339000px;}
.ws8f{word-spacing:3.348000px;}
.wsc9{word-spacing:3.366000px;}
.ws4c{word-spacing:3.402000px;}
.ws50{word-spacing:3.465000px;}
.ws92{word-spacing:3.468000px;}
.wsf6{word-spacing:3.570000px;}
.wsb2{word-spacing:3.591000px;}
.ws8e{word-spacing:3.618000px;}
.ws2c{word-spacing:3.654000px;}
.wsc6{word-spacing:3.672000px;}
.ws14{word-spacing:3.705000px;}
.wsef{word-spacing:3.723000px;}
.wsbb{word-spacing:3.780000px;}
.ws15{word-spacing:3.819000px;}
.ws2a{word-spacing:3.843000px;}
.ws8{word-spacing:3.876000px;}
.ws6e{word-spacing:3.906000px;}
.ws47{word-spacing:3.927000px;}
.ws9f{word-spacing:3.969000px;}
.ws10{word-spacing:3.990000px;}
.wsf9{word-spacing:4.029000px;}
.wsbf{word-spacing:4.032000px;}
.wsa0{word-spacing:4.095000px;}
.ws57{word-spacing:4.131000px;}
.ws29{word-spacing:4.158000px;}
.wsf8{word-spacing:4.182000px;}
.ws41{word-spacing:4.221000px;}
.wsc{word-spacing:4.275000px;}
.ws40{word-spacing:4.284000px;}
.wsae{word-spacing:4.347000px;}
.wse1{word-spacing:4.386000px;}
.ws74{word-spacing:4.410000px;}
.ws75{word-spacing:4.437000px;}
.ws22{word-spacing:4.473000px;}
.ws63{word-spacing:4.488000px;}
.ws3e{word-spacing:4.536000px;}
.ws58{word-spacing:4.539000px;}
.wscd{word-spacing:4.590000px;}
.ws7c{word-spacing:4.725000px;}
.ws11{word-spacing:4.731000px;}
.wsb9{word-spacing:4.788000px;}
.ws69{word-spacing:4.851000px;}
.ws44{word-spacing:4.896000px;}
.ws35{word-spacing:4.914000px;}
.ws93{word-spacing:4.977000px;}
.wsaf{word-spacing:5.040000px;}
.wsfa{word-spacing:5.049000px;}
.wsa{word-spacing:5.073000px;}
.ws37{word-spacing:5.103000px;}
.ws30{word-spacing:5.166000px;}
.wsc4{word-spacing:5.202000px;}
.wsa7{word-spacing:5.229000px;}
.ws32{word-spacing:5.292000px;}
.wscb{word-spacing:5.304000px;}
.ws5d{word-spacing:5.355000px;}
.ws6a{word-spacing:5.418000px;}
.wsc8{word-spacing:5.457000px;}
.ws16{word-spacing:5.529000px;}
.wsa8{word-spacing:5.607000px;}
.ws9a{word-spacing:5.610000px;}
.wsd9{word-spacing:5.661000px;}
.ws87{word-spacing:5.733000px;}
.ws3b{word-spacing:5.796000px;}
.wseb{word-spacing:5.814000px;}
.wsac{word-spacing:5.859000px;}
.ws45{word-spacing:5.865000px;}
.ws42{word-spacing:5.985000px;}
.ws21{word-spacing:6.048000px;}
.wsdb{word-spacing:6.120000px;}
.wsc7{word-spacing:6.171000px;}
.ws33{word-spacing:6.174000px;}
.ws34{word-spacing:6.237000px;}
.ws6{word-spacing:6.270000px;}
.wsbd{word-spacing:6.300000px;}
.ws25{word-spacing:6.363000px;}
.ws2f{word-spacing:6.426000px;}
.wsdd{word-spacing:6.528000px;}
.ws4e{word-spacing:6.552000px;}
.ws12{word-spacing:6.555000px;}
.wsd5{word-spacing:6.630000px;}
.wsf1{word-spacing:6.732000px;}
.ws7e{word-spacing:6.741000px;}
.ws98{word-spacing:6.804000px;}
.wsd8{word-spacing:6.834000px;}
.ws82{word-spacing:6.867000px;}
.ws90{word-spacing:6.966000px;}
.wsad{word-spacing:6.993000px;}
.ws8c{word-spacing:7.020000px;}
.wse3{word-spacing:7.038000px;}
.wsf0{word-spacing:7.140000px;}
.wsf4{word-spacing:7.191000px;}
.ws1f{word-spacing:7.245000px;}
.wsda{word-spacing:7.497000px;}
.wse8{word-spacing:7.548000px;}
.ws9e{word-spacing:7.686000px;}
.ws8d{word-spacing:7.722000px;}
.wsf7{word-spacing:7.752000px;}
.ws8a{word-spacing:7.830000px;}
.ws89{word-spacing:8.370000px;}
.wsc5{word-spacing:8.568000px;}
.wsea{word-spacing:8.721000px;}
.wse5{word-spacing:13.209000px;}
.wsfd{word-spacing:14.331000px;}
.wsc3{word-spacing:16.320000px;}
.wse2{word-spacing:16.422000px;}
.wsdf{word-spacing:20.655000px;}
.ws95{word-spacing:30.870000px;}
.wsb3{word-spacing:32.760000px;}
.ws49{word-spacing:1023.384000px;}
._22{margin-left:-32.776080px;}
._1f{margin-left:-30.886800px;}
._26{margin-left:-6.196593px;}
._1c{margin-left:-3.855645px;}
._5{margin-left:-2.672021px;}
._0{margin-left:-1.560000px;}
._6{width:1.008397px;}
._23{width:2.034000px;}
._1d{width:5.037595px;}
._25{width:6.933000px;}
._d{width:8.873700px;}
._24{width:10.145040px;}
._19{width:11.296251px;}
._7{width:13.769700px;}
._21{width:16.362000px;}
._2{width:21.024000px;}
._9{width:25.812000px;}
._1{width:27.718551px;}
._b{width:31.311000px;}
._c{width:33.075000px;}
._a{width:34.776000px;}
._20{width:38.619000px;}
._1b{width:40.320000px;}
._4{width:42.194400px;}
._8{width:44.086902px;}
._1e{width:96.428405px;}
._f{width:99.771840px;}
._e{width:175.707360px;}
._3{width:204.960000px;}
._1a{width:309.895740px;}
._18{width:386.812980px;}
._10{width:413.661600px;}
._13{width:430.828320px;}
._11{width:443.310720px;}
._15{width:455.789760px;}
._14{width:527.472000px;}
._16{width:551.472000px;}
._12{width:777.312000px;}
._17{width:860.060160px;}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:33.150000px;}
.fsc{font-size:36.000000px;}
.fs9{font-size:40.950000px;}
.fse{font-size:42.000000px;}
.fs6{font-size:42.900000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:58.500000px;}
.fs8{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:41.903850px;}
.ydd{bottom:42.520500px;}
.y27c{bottom:72.282150px;}
.y249{bottom:72.282300px;}
.y18e{bottom:72.282450px;}
.y1de{bottom:72.282750px;}
.y8d{bottom:72.283500px;}
.y137{bottom:72.283650px;}
.y217{bottom:76.036200px;}
.y1fc{bottom:76.036800px;}
.ydb{bottom:76.108500px;}
.y69{bottom:76.108650px;}
.y114{bottom:77.638800px;}
.y27b{bottom:87.282150px;}
.y248{bottom:87.282300px;}
.yb2{bottom:88.033500px;}
.y1b8{bottom:88.033650px;}
.y216{bottom:91.036200px;}
.y1fb{bottom:91.036800px;}
.ydf{bottom:91.783500px;}
.y8c{bottom:91.858500px;}
.y136{bottom:91.858650px;}
.y18d{bottom:92.532450px;}
.y1dd{bottom:92.532750px;}
.yda{bottom:94.411500px;}
.y41{bottom:97.368150px;}
.y113{bottom:97.888800px;}
.y27a{bottom:102.282150px;}
.y247{bottom:102.282300px;}
.yb1{bottom:103.783500px;}
.y215{bottom:106.036200px;}
.y1fa{bottom:106.036800px;}
.yf2{bottom:107.608500px;}
.y1b7{bottom:107.608650px;}
.y8b{bottom:110.161500px;}
.y18c{bottom:112.782450px;}
.y1dc{bottom:112.782750px;}
.y40{bottom:113.545350px;}
.yd9{bottom:113.986500px;}
.y246{bottom:117.282300px;}
.yb0{bottom:119.533500px;}
.y214{bottom:121.036200px;}
.y1f9{bottom:121.036800px;}
.yc5{bottom:123.358500px;}
.y8a{bottom:125.911500px;}
.y279{bottom:125.925900px;}
.y68{bottom:127.598400px;}
.y112{bottom:128.130750px;}
.y3f{bottom:129.295350px;}
.y135{bottom:130.210350px;}
.y18b{bottom:133.032450px;}
.y1db{bottom:133.032750px;}
.yaf{bottom:135.283500px;}
.y213{bottom:136.036200px;}
.y1f8{bottom:136.036800px;}
.y1b4{bottom:139.108500px;}
.y278{bottom:140.925900px;}
.y89{bottom:141.661500px;}
.y245{bottom:143.290350px;}
.y67{bottom:147.848400px;}
.y111{bottom:148.380750px;}
.y134{bottom:150.460350px;}
.y1ad{bottom:151.033500px;}
.y212{bottom:151.036200px;}
.y1f7{bottom:151.036800px;}
.y18a{bottom:153.282450px;}
.y1da{bottom:153.282750px;}
.yae{bottom:154.858500px;}
.y277{bottom:155.925900px;}
.y88{bottom:157.411500px;}
.yd8{bottom:157.459050px;}
.y244{bottom:158.290350px;}
.y21{bottom:159.585150px;}
.y1b6{bottom:160.204500px;}
.y211{bottom:166.036200px;}
.y110{bottom:168.630750px;}
.y1ac{bottom:170.608500px;}
.y133{bottom:170.710350px;}
.y276{bottom:170.925900px;}
.y3e{bottom:172.660500px;}
.yad{bottom:173.161500px;}
.y243{bottom:173.290350px;}
.y189{bottom:173.532450px;}
.y1f6{bottom:173.632950px;}
.y66{bottom:174.476400px;}
.y20{bottom:176.835150px;}
.y87{bottom:176.986500px;}
.yd7{bottom:177.708450px;}
.y275{bottom:185.925900px;}
.y1d9{bottom:186.498900px;}
.y210{bottom:188.632350px;}
.y1f5{bottom:188.632950px;}
.y10f{bottom:188.880750px;}
.yac{bottom:188.911500px;}
.y3d{bottom:192.910500px;}
.y188{bottom:193.782450px;}
.y150{bottom:193.823850px;}
.y1f{bottom:194.085150px;}
.y65{bottom:194.726400px;}
.y242{bottom:199.299000px;}
.yd6{bottom:202.210650px;}
.y20f{bottom:203.632350px;}
.y1f4{bottom:203.632950px;}
.yab{bottom:204.661500px;}
.y1d8{bottom:206.748900px;}
.y1ab{bottom:208.486500px;}
.y274{bottom:209.569650px;}
.y1e{bottom:211.335150px;}
.y3c{bottom:213.160500px;}
.y187{bottom:214.032450px;}
.y14f{bottom:214.073850px;}
.y241{bottom:214.299000px;}
.y64{bottom:214.976400px;}
.y169{bottom:217.369200px;}
.y20e{bottom:218.632350px;}
.y1f3{bottom:218.632950px;}
.y10e{bottom:219.122700px;}
.yc4{bottom:220.411500px;}
.yd5{bottom:222.460650px;}
.yaa{bottom:224.236500px;}
.y273{bottom:224.569650px;}
.y132{bottom:224.718000px;}
.y1b3{bottom:226.672500px;}
.y1d7{bottom:226.998900px;}
.y1d{bottom:228.585150px;}
.y240{bottom:229.299000px;}
.y86{bottom:230.229750px;}
.y1f2{bottom:233.632950px;}
.y186{bottom:234.282450px;}
.y63{bottom:235.226400px;}
.yc3{bottom:236.161500px;}
.y168{bottom:237.619200px;}
.y10d{bottom:239.372700px;}
.y272{bottom:239.569650px;}
.yf1{bottom:239.986500px;}
.y131{bottom:240.468000px;}
.y20d{bottom:241.228500px;}
.yd4{bottom:242.710650px;}
.y14e{bottom:242.827500px;}
.y3b{bottom:243.401850px;}
.y23f{bottom:244.299000px;}
.y1c{bottom:245.835150px;}
.y1b2{bottom:246.922500px;}
.y1d6{bottom:247.248900px;}
.y85{bottom:250.479750px;}
.yc2{bottom:251.911500px;}
.y185{bottom:254.532450px;}
.y271{bottom:254.569650px;}
.y62{bottom:255.476400px;}
.y130{bottom:256.218000px;}
.y20c{bottom:256.228500px;}
.y1f1{bottom:256.229100px;}
.y167{bottom:257.869200px;}
.y10c{bottom:259.622700px;}
.yd3{bottom:262.960650px;}
.y14d{bottom:263.077500px;}
.y1b{bottom:263.085150px;}
.y3a{bottom:263.651850px;}
.ya9{bottom:264.259350px;}
.y1aa{bottom:266.638950px;}
.y1d5{bottom:267.498900px;}
.yc1{bottom:267.661500px;}
.y270{bottom:269.569650px;}
.y23e{bottom:270.307050px;}
.y84{bottom:270.729750px;}
.y20b{bottom:271.228500px;}
.y1f0{bottom:271.229100px;}
.y12f{bottom:271.968000px;}
.y184{bottom:274.782450px;}
.y61{bottom:275.726400px;}
.y1b1{bottom:277.164450px;}
.y166{bottom:278.119200px;}
.y10b{bottom:279.872700px;}
.yf0{bottom:280.311000px;}
.y1a{bottom:280.335150px;}
.yd2{bottom:283.210650px;}
.y14c{bottom:283.327500px;}
.yc0{bottom:283.411500px;}
.y39{bottom:283.901850px;}
.ya8{bottom:284.509350px;}
.y23d{bottom:285.307050px;}
.y20a{bottom:286.228500px;}
.y1ef{bottom:286.229100px;}
.y1a9{bottom:286.888950px;}
.y1d4{bottom:287.748900px;}
.y26f{bottom:293.214000px;}
.y12e{bottom:294.096000px;}
.y83{bottom:295.231950px;}
.y19{bottom:297.585150px;}
.y10a{bottom:300.122700px;}
.y23c{bottom:300.307050px;}
.y209{bottom:301.228500px;}
.y1ee{bottom:301.229100px;}
.y60{bottom:302.354400px;}
.ybf{bottom:302.986500px;}
.yd1{bottom:303.460650px;}
.y38{bottom:304.151850px;}
.ya7{bottom:304.759350px;}
.y183{bottom:306.749400px;}
.y26e{bottom:308.214000px;}
.y165{bottom:308.359950px;}
.y12d{bottom:309.846000px;}
.y14b{bottom:312.081750px;}
.y23b{bottom:315.307050px;}
.y82{bottom:315.481950px;}
.y208{bottom:316.228500px;}
.y1ed{bottom:316.229100px;}
.y1a8{bottom:317.130900px;}
.y109{bottom:320.372700px;}
.y1d3{bottom:320.965050px;}
.y5f{bottom:322.604400px;}
.y26d{bottom:323.214000px;}
.y37{bottom:324.402450px;}
.ya6{bottom:325.009350px;}
.y12c{bottom:325.596000px;}
.yd0{bottom:327.962850px;}
.y1ec{bottom:331.229100px;}
.y14a{bottom:332.331750px;}
.y1b0{bottom:335.682000px;}
.y81{bottom:335.731950px;}
.y1a7{bottom:337.380900px;}
.y26c{bottom:338.214000px;}
.y207{bottom:338.824650px;}
.y108{bottom:340.622700px;}
.y1d2{bottom:341.215050px;}
.y23a{bottom:341.315700px;}
.y12b{bottom:341.346000px;}
.y5e{bottom:342.854400px;}
.y36{bottom:344.652450px;}
.ya5{bottom:345.259350px;}
.y182{bottom:345.732450px;}
.ybe{bottom:346.068900px;}
.y1eb{bottom:346.229100px;}
.y18{bottom:348.850650px;}
.y164{bottom:349.869450px;}
.y1af{bottom:352.182000px;}
.ycf{bottom:352.465050px;}
.y149{bottom:352.581750px;}
.y26b{bottom:353.214000px;}
.y206{bottom:353.824650px;}
.y80{bottom:355.981950px;}
.y239{bottom:356.315700px;}
.y1a6{bottom:357.630900px;}
.y107{bottom:360.872700px;}
.y1d1{bottom:361.465050px;}
.y5d{bottom:363.104400px;}
.y12a{bottom:363.474000px;}
.ya4{bottom:365.509350px;}
.y181{bottom:365.982450px;}
.y17{bottom:366.100650px;}
.ybd{bottom:366.318900px;}
.y205{bottom:368.824650px;}
.y1ea{bottom:368.825250px;}
.y163{bottom:370.119450px;}
.y238{bottom:371.315700px;}
.y148{bottom:372.831750px;}
.y7f{bottom:376.231950px;}
.y26a{bottom:376.857750px;}
.yce{bottom:376.966650px;}
.y1a5{bottom:377.880900px;}
.y129{bottom:379.224000px;}
.y106{bottom:381.122700px;}
.y1d0{bottom:381.715050px;}
.y16{bottom:383.350650px;}
.y5c{bottom:383.354400px;}
.y35{bottom:383.398800px;}
.y204{bottom:383.824650px;}
.y1e9{bottom:383.825250px;}
.y180{bottom:386.232450px;}
.y237{bottom:386.315700px;}
.ybc{bottom:386.568900px;}
.y162{bottom:390.369450px;}
.y269{bottom:391.857750px;}
.y147{bottom:393.081750px;}
.y128{bottom:394.974000px;}
.ya3{bottom:395.751300px;}
.ycd{bottom:397.216650px;}
.y1a4{bottom:398.130900px;}
.y203{bottom:398.824650px;}
.y1e8{bottom:398.825250px;}
.y15{bottom:400.600650px;}
.y7e{bottom:400.735200px;}
.y236{bottom:401.315700px;}
.y1cf{bottom:401.965050px;}
.y5b{bottom:403.604400px;}
.y17f{bottom:406.482450px;}
.y268{bottom:406.857750px;}
.y127{bottom:410.724000px;}
.y105{bottom:411.363450px;}
.y146{bottom:413.331750px;}
.y202{bottom:413.824650px;}
.y161{bottom:414.871650px;}
.ya2{bottom:416.001300px;}
.ycc{bottom:417.466650px;}
.y14{bottom:417.850650px;}
.y1a3{bottom:418.380900px;}
.y7d{bottom:420.985200px;}
.y1e7{bottom:421.421400px;}
.y267{bottom:421.857750px;}
.y1ce{bottom:422.215050px;}
.y126{bottom:426.474000px;}
.y235{bottom:427.324350px;}
.ybb{bottom:428.079000px;}
.y201{bottom:428.824650px;}
.y5a{bottom:430.232400px;}
.y104{bottom:431.613450px;}
.y17e{bottom:432.284850px;}
.y145{bottom:433.581750px;}
.y13{bottom:435.100650px;}
.y160{bottom:435.121650px;}
.ya1{bottom:436.251300px;}
.y1e6{bottom:436.421400px;}
.y266{bottom:436.857750px;}
.ycb{bottom:437.716650px;}
.y1a2{bottom:438.630900px;}
.y7c{bottom:441.235200px;}
.y125{bottom:442.224000px;}
.y234{bottom:442.324350px;}
.y1cd{bottom:442.465050px;}
.y59{bottom:450.482400px;}
.y200{bottom:451.420800px;}
.y1e5{bottom:451.421400px;}
.y103{bottom:451.863450px;}
.y12{bottom:452.350650px;}
.y17d{bottom:452.534850px;}
.y144{bottom:453.831750px;}
.y15f{bottom:455.371650px;}
.ya0{bottom:456.501300px;}
.y233{bottom:457.324350px;}
.yca{bottom:457.966650px;}
.y1a1{bottom:458.880900px;}
.y265{bottom:460.501500px;}
.y34{bottom:461.918550px;}
.y1cc{bottom:462.715050px;}
.y124{bottom:464.352000px;}
.y7b{bottom:465.736800px;}
.y1ff{bottom:466.420800px;}
.y1e4{bottom:466.421400px;}
.y11{bottom:469.600650px;}
.y58{bottom:470.732400px;}
.y102{bottom:472.113450px;}
.y232{bottom:472.324350px;}
.y17c{bottom:472.784850px;}
.y264{bottom:475.501500px;}
.y15e{bottom:475.621650px;}
.y9f{bottom:476.751300px;}
.yc9{bottom:478.216650px;}
.y1a0{bottom:479.130900px;}
.y33{bottom:479.569950px;}
.y123{bottom:480.102000px;}
.y1fe{bottom:481.420800px;}
.y1e3{bottom:481.421400px;}
.y143{bottom:482.585400px;}
.y1cb{bottom:482.965050px;}
.y7a{bottom:485.986800px;}
.y10{bottom:486.850650px;}
.y231{bottom:487.324350px;}
.y263{bottom:490.501500px;}
.y57{bottom:490.982400px;}
.y101{bottom:492.363450px;}
.y17b{bottom:493.034850px;}
.y122{bottom:495.852000px;}
.y15d{bottom:495.871650px;}
.y1fd{bottom:496.420800px;}
.y1e2{bottom:496.421400px;}
.y9e{bottom:497.001300px;}
.y32{bottom:497.221950px;}
.y19f{bottom:499.380900px;}
.yf{bottom:504.100650px;}
.y262{bottom:505.501500px;}
.y79{bottom:506.236800px;}
.yc8{bottom:508.458600px;}
.y56{bottom:511.232400px;}
.y121{bottom:511.602000px;}
.y100{bottom:512.613450px;}
.y17a{bottom:513.284850px;}
.y230{bottom:513.332400px;}
.y31{bottom:514.873350px;}
.y15c{bottom:516.121650px;}
.y1ca{bottom:516.180750px;}
.y9d{bottom:517.251300px;}
.y19e{bottom:519.630900px;}
.y142{bottom:524.095500px;}
.y120{bottom:527.352000px;}
.y22f{bottom:528.332400px;}
.y261{bottom:529.145850px;}
.y55{bottom:531.482400px;}
.y78{bottom:532.864800px;}
.y15b{bottom:536.371650px;}
.y1c9{bottom:536.430750px;}
.yef{bottom:537.112200px;}
.y9c{bottom:537.501300px;}
.y179{bottom:539.086650px;}
.y30{bottom:541.879200px;}
.yff{bottom:542.856000px;}
.y11f{bottom:543.102000px;}
.y22e{bottom:543.332400px;}
.y260{bottom:544.145850px;}
.y141{bottom:544.345500px;}
.y19d{bottom:549.872850px;}
.y54{bottom:551.732400px;}
.y77{bottom:553.114800px;}
.y291{bottom:554.880900px;}
.y2a6{bottom:554.881800px;}
.ye{bottom:555.366600px;}
.y15a{bottom:556.621650px;}
.y1c8{bottom:556.680750px;}
.y9b{bottom:557.751300px;}
.y22d{bottom:558.332400px;}
.yc7{bottom:558.472500px;}
.y11e{bottom:558.852000px;}
.y25f{bottom:559.145850px;}
.y178{bottom:559.336650px;}
.y1e1{bottom:561.671400px;}
.yfe{bottom:563.106000px;}
.y140{bottom:564.595500px;}
.y2f{bottom:568.382850px;}
.y290{bottom:569.880900px;}
.y2a5{bottom:569.881800px;}
.y19c{bottom:570.122850px;}
.yd{bottom:572.616600px;}
.y22c{bottom:573.332400px;}
.y76{bottom:573.364800px;}
.y25e{bottom:574.145850px;}
.y159{bottom:576.871650px;}
.y1c7{bottom:576.930750px;}
.y9a{bottom:578.001300px;}
.y53{bottom:578.360400px;}
.y177{bottom:579.586650px;}
.yee{bottom:582.613200px;}
.yfd{bottom:583.356000px;}
.y13f{bottom:584.845500px;}
.y28f{bottom:584.880900px;}
.y2a4{bottom:584.881800px;}
.y22b{bottom:588.332400px;}
.yc{bottom:589.866600px;}
.y19b{bottom:590.372850px;}
.y2e{bottom:592.761300px;}
.y75{bottom:593.614800px;}
.y1c6{bottom:597.180750px;}
.y25d{bottom:597.789600px;}
.y11d{bottom:597.862350px;}
.y99{bottom:598.251300px;}
.y52{bottom:598.610400px;}
.y176{bottom:599.836650px;}
.y2a3{bottom:599.881800px;}
.y158{bottom:601.374900px;}
.yed{bottom:602.863200px;}
.yfc{bottom:603.606000px;}
.y13e{bottom:605.095500px;}
.yb{bottom:607.116600px;}
.y28e{bottom:608.338950px;}
.y19a{bottom:610.622850px;}
.y25c{bottom:612.789600px;}
.y74{bottom:613.864800px;}
.y22a{bottom:614.340450px;}
.y2a2{bottom:614.881800px;}
.y2d{bottom:617.139750px;}
.y1c5{bottom:617.430750px;}
.y98{bottom:618.501300px;}
.y51{bottom:618.860400px;}
.y175{bottom:620.086650px;}
.y157{bottom:621.624900px;}
.yde{bottom:622.163850px;}
.yec{bottom:623.113200px;}
.y28d{bottom:623.338950px;}
.yfb{bottom:623.856000px;}
.ya{bottom:624.366600px;}
.y13d{bottom:625.345500px;}
.y25b{bottom:627.789600px;}
.y229{bottom:629.340450px;}
.y2a1{bottom:629.881800px;}
.y199{bottom:630.872850px;}
.y73{bottom:634.114800px;}
.y1c4{bottom:637.680750px;}
.ydc{bottom:637.795500px;}
.y97{bottom:638.751300px;}
.y50{bottom:639.110400px;}
.y174{bottom:640.336650px;}
.y2c{bottom:641.518200px;}
.y9{bottom:641.616600px;}
.y156{bottom:641.874900px;}
.y25a{bottom:642.789600px;}
.yeb{bottom:643.363200px;}
.yfa{bottom:644.106000px;}
.y228{bottom:644.340450px;}
.y13c{bottom:645.595500px;}
.y28c{bottom:646.796400px;}
.y198{bottom:651.122850px;}
.y11c{bottom:651.867000px;}
.y1b5{bottom:652.655700px;}
.y2a0{bottom:655.453350px;}
.y259{bottom:657.789600px;}
.y1c3{bottom:657.930750px;}
.y8{bottom:658.866600px;}
.y227{bottom:659.340450px;}
.y4f{bottom:659.360400px;}
.y173{bottom:660.586650px;}
.y28b{bottom:661.796400px;}
.y155{bottom:662.124900px;}
.yea{bottom:663.613200px;}
.y72{bottom:664.357350px;}
.y13b{bottom:665.845500px;}
.y2b{bottom:665.896650px;}
.y29f{bottom:670.453350px;}
.y197{bottom:671.372850px;}
.y11b{bottom:672.117000px;}
.y226{bottom:674.340450px;}
.y7{bottom:676.116600px;}
.y28a{bottom:676.796400px;}
.y1c2{bottom:678.180750px;}
.y4e{bottom:679.610400px;}
.y172{bottom:680.836650px;}
.y258{bottom:681.433950px;}
.y154{bottom:682.374900px;}
.yf9{bottom:682.852950px;}
.ye9{bottom:683.863200px;}
.y96{bottom:684.513000px;}
.y29e{bottom:685.453350px;}
.y13a{bottom:686.095500px;}
.y225{bottom:689.340450px;}
.y2a{bottom:690.275100px;}
.y196{bottom:691.622850px;}
.y289{bottom:691.796400px;}
.y11a{bottom:692.367000px;}
.y6{bottom:693.366600px;}
.y257{bottom:696.433950px;}
.y1c1{bottom:698.430750px;}
.y4d{bottom:699.860400px;}
.y29d{bottom:700.453350px;}
.y171{bottom:701.086650px;}
.y71{bottom:701.614800px;}
.y153{bottom:702.624900px;}
.ye8{bottom:704.113200px;}
.y224{bottom:704.340450px;}
.y139{bottom:706.345500px;}
.y288{bottom:706.796400px;}
.y5{bottom:710.616600px;}
.y256{bottom:711.433950px;}
.y95{bottom:711.769200px;}
.y195{bottom:711.872850px;}
.y119{bottom:712.617000px;}
.y1ae{bottom:713.405700px;}
.y170{bottom:721.336650px;}
.y70{bottom:721.864800px;}
.y152{bottom:722.874900px;}
.ye7{bottom:724.363200px;}
.y29{bottom:725.283150px;}
.y29c{bottom:726.025350px;}
.y255{bottom:726.433950px;}
.y4c{bottom:726.488400px;}
.y4{bottom:727.866600px;}
.y287{bottom:730.253850px;}
.y223{bottom:730.349100px;}
.y1c0{bottom:731.646900px;}
.y194{bottom:732.122850px;}
.yf8{bottom:732.866850px;}
.y118{bottom:732.867000px;}
.y94{bottom:737.896800px;}
.y29b{bottom:741.025350px;}
.y254{bottom:741.433950px;}
.y6f{bottom:742.114800px;}
.y151{bottom:743.124900px;}
.y138{bottom:743.602950px;}
.ye6{bottom:744.613200px;}
.y286{bottom:745.253850px;}
.y222{bottom:745.349100px;}
.y4b{bottom:746.738400px;}
.y16f{bottom:747.139650px;}
.yba{bottom:748.377300px;}
.y1bf{bottom:751.896900px;}
.yf7{bottom:753.116850px;}
.y117{bottom:753.117000px;}
.y29a{bottom:756.025350px;}
.y285{bottom:760.253850px;}
.y221{bottom:760.349100px;}
.y6e{bottom:762.364800px;}
.y1e0{bottom:763.374900px;}
.y93{bottom:764.025450px;}
.y253{bottom:765.077700px;}
.y4a{bottom:766.988400px;}
.y16e{bottom:767.389650px;}
.yb9{bottom:768.366000px;}
.ye5{bottom:769.114800px;}
.y299{bottom:771.025350px;}
.y1be{bottom:772.146900px;}
.yf6{bottom:773.366850px;}
.y116{bottom:773.367000px;}
.y252{bottom:780.077700px;}
.y22{bottom:780.235500px;}
.y6d{bottom:782.614800px;}
.y1df{bottom:783.624900px;}
.y284{bottom:783.711900px;}
.y220{bottom:786.358800px;}
.y49{bottom:787.238400px;}
.y16d{bottom:787.639650px;}
.ye4{bottom:789.364800px;}
.y92{bottom:790.154100px;}
.y1bd{bottom:792.396900px;}
.y28{bottom:793.054500px;}
.yf5{bottom:793.616850px;}
.y115{bottom:793.617000px;}
.y251{bottom:795.077700px;}
.y298{bottom:796.597350px;}
.y283{bottom:798.711900px;}
.y21f{bottom:801.358800px;}
.y193{bottom:803.874900px;}
.y48{bottom:807.488400px;}
.y16c{bottom:807.889650px;}
.ye3{bottom:809.614800px;}
.y297{bottom:811.597350px;}
.y1bc{bottom:812.646900px;}
.y6c{bottom:812.857350px;}
.y282{bottom:813.711900px;}
.yf4{bottom:813.866850px;}
.yb8{bottom:813.867000px;}
.y27{bottom:814.054500px;}
.y91{bottom:816.282750px;}
.y21e{bottom:816.358800px;}
.y250{bottom:818.721450px;}
.y192{bottom:824.124900px;}
.y296{bottom:826.597350px;}
.y47{bottom:827.738400px;}
.y16b{bottom:828.139650px;}
.y281{bottom:828.711900px;}
.ye2{bottom:829.864800px;}
.y21d{bottom:831.358800px;}
.y1bb{bottom:832.896900px;}
.y24f{bottom:833.721450px;}
.yf3{bottom:834.116850px;}
.yb7{bottom:834.117000px;}
.y26{bottom:841.054500px;}
.y295{bottom:841.597350px;}
.y90{bottom:842.411400px;}
.y280{bottom:843.711900px;}
.y191{bottom:844.374900px;}
.y21c{bottom:846.358800px;}
.y46{bottom:847.988400px;}
.y16a{bottom:848.389650px;}
.y24e{bottom:848.721450px;}
.ye1{bottom:850.114800px;}
.y1ba{bottom:853.146900px;}
.y6b{bottom:854.366850px;}
.yb6{bottom:854.367000px;}
.y25{bottom:862.054500px;}
.y24d{bottom:863.721450px;}
.y3{bottom:864.171450px;}
.y190{bottom:864.624900px;}
.y294{bottom:867.168900px;}
.y27f{bottom:867.169350px;}
.y45{bottom:868.238400px;}
.y8f{bottom:868.539000px;}
.ye0{bottom:870.364800px;}
.y21b{bottom:872.366850px;}
.y1b9{bottom:873.396900px;}
.y6a{bottom:874.616850px;}
.yb5{bottom:874.617000px;}
.y293{bottom:882.168900px;}
.y27e{bottom:882.169350px;}
.y18f{bottom:884.874900px;}
.yc6{bottom:884.930700px;}
.y24c{bottom:887.365800px;}
.y21a{bottom:887.366850px;}
.y24{bottom:889.054500px;}
.y44{bottom:894.866850px;}
.yb4{bottom:894.867000px;}
.y292{bottom:897.168900px;}
.y27d{bottom:897.169350px;}
.y2{bottom:902.179500px;}
.y24b{bottom:902.365800px;}
.y219{bottom:902.366850px;}
.y8e{bottom:904.920000px;}
.y23{bottom:910.054500px;}
.y43{bottom:915.116850px;}
.yb3{bottom:915.117000px;}
.y24a{bottom:917.365800px;}
.y218{bottom:917.366850px;}
.y42{bottom:966.861000px;}
.h1a{height:23.602800px;}
.h15{height:26.606190px;}
.h16{height:32.256000px;}
.h20{height:34.425000px;}
.h1b{height:36.312000px;}
.h1f{height:36.567000px;}
.h18{height:36.864000px;}
.h19{height:37.632000px;}
.h11{height:38.524800px;}
.h10{height:39.172571px;}
.h6{height:40.470000px;}
.h7{height:40.869000px;}
.h14{height:40.932600px;}
.h21{height:41.906190px;}
.h3{height:43.008000px;}
.h8{height:45.748200px;}
.hb{height:46.860000px;}
.hd{height:47.322000px;}
.h1e{height:48.384000px;}
.hf{height:50.563800px;}
.h9{height:50.688000px;}
.h17{height:51.414000px;}
.h12{height:51.543383px;}
.h13{height:51.766470px;}
.he{height:63.655429px;}
.h5{height:63.900000px;}
.hc{height:73.448571px;}
.ha{height:74.741571px;}
.h4{height:93.720000px;}
.h1c{height:722.835000px;}
.h1d{height:723.000000px;}
.h2{height:1020.450000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.w4{width:1020.450000px;}
.w2{width:1020.472500px;}
.w3{width:1020.750000px;}
.x0{left:0.000000px;}
.xb{left:14.997660px;}
.x12{left:41.903850px;}
.x13{left:72.283650px;}
.x3{left:85.039500px;}
.x18{left:102.047550px;}
.x1{left:106.299000px;}
.x9{left:110.552400px;}
.xe{left:122.737500px;}
.x14{left:127.559250px;}
.xc{left:131.811000px;}
.xf{left:153.919500px;}
.x15{left:257.584500px;}
.x19{left:363.542790px;}
.x1a{left:380.549790px;}
.x16{left:382.676550px;}
.x1c{left:384.801675px;}
.x17{left:399.684600px;}
.x1b{left:401.810325px;}
.xd{left:413.841000px;}
.xa{left:435.873000px;}
.x7{left:468.021735px;}
.x6{left:474.968025px;}
.x8{left:499.514685px;}
.x4{left:506.424000px;}
.x5{left:542.767410px;}
.x2{left:680.314500px;}
.x11{left:780.235500px;}
.x10{left:966.861000px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v4{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.600000pt;}
.v3{vertical-align:16.800000pt;}
.v1{vertical-align:24.000000pt;}
.ls15{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.840000pt;}
.ls10{letter-spacing:-0.784000pt;}
.ls36{letter-spacing:-0.728000pt;}
.ls6e{letter-spacing:-0.680000pt;}
.lsf{letter-spacing:-0.616000pt;}
.ls23{letter-spacing:-0.582400pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.506667pt;}
.lsb{letter-spacing:-0.504000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.456000pt;}
.ls16{letter-spacing:-0.453333pt;}
.ls1f{letter-spacing:-0.408000pt;}
.ls1a{letter-spacing:-0.392000pt;}
.ls21{letter-spacing:-0.364000pt;}
.ls14{letter-spacing:-0.280000pt;}
.ls38{letter-spacing:-0.168000pt;}
.ls1e{letter-spacing:-0.090667pt;}
.ls30{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000907pt;}
.ls65{letter-spacing:0.001227pt;}
.ls58{letter-spacing:0.045333pt;}
.ls2{letter-spacing:0.050667pt;}
.ls33{letter-spacing:0.056000pt;}
.ls3a{letter-spacing:0.072800pt;}
.ls42{letter-spacing:0.088400pt;}
.ls46{letter-spacing:0.090667pt;}
.ls29{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.112000pt;}
.ls41{letter-spacing:0.136000pt;}
.ls2d{letter-spacing:0.144000pt;}
.ls3c{letter-spacing:0.168000pt;}
.ls47{letter-spacing:0.181333pt;}
.ls0{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.224000pt;}
.ls20{letter-spacing:0.226667pt;}
.ls3{letter-spacing:0.253333pt;}
.ls4b{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.280000pt;}
.ls48{letter-spacing:0.317333pt;}
.ls35{letter-spacing:0.336000pt;}
.ls57{letter-spacing:0.362667pt;}
.ls40{letter-spacing:0.364000pt;}
.ls26{letter-spacing:0.392000pt;}
.ls1c{letter-spacing:0.395573pt;}
.ls49{letter-spacing:0.408000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.453333pt;}
.ls25{letter-spacing:0.504000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls4d{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.560000pt;}
.ls2f{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.589333pt;}
.ls1{letter-spacing:0.608000pt;}
.ls13{letter-spacing:0.634667pt;}
.ls52{letter-spacing:0.680000pt;}
.ls31{letter-spacing:0.720000pt;}
.ls44{letter-spacing:0.770667pt;}
.ls2e{letter-spacing:0.784000pt;}
.ls5e{letter-spacing:0.816000pt;}
.ls18{letter-spacing:0.861333pt;}
.ls53{letter-spacing:0.906667pt;}
.ls32{letter-spacing:0.912000pt;}
.ls3e{letter-spacing:0.952000pt;}
.ls4{letter-spacing:0.962667pt;}
.ls6b{letter-spacing:0.997333pt;}
.ls5{letter-spacing:1.013333pt;}
.ls4c{letter-spacing:1.042667pt;}
.ls64{letter-spacing:1.088000pt;}
.ls5a{letter-spacing:1.133333pt;}
.ls2c{letter-spacing:1.152000pt;}
.ls4f{letter-spacing:1.224000pt;}
.ls43{letter-spacing:1.269333pt;}
.ls39{letter-spacing:1.310400pt;}
.ls61{letter-spacing:1.314667pt;}
.ls34{letter-spacing:1.344000pt;}
.ls54{letter-spacing:1.360000pt;}
.ls5f{letter-spacing:1.405333pt;}
.ls4e{letter-spacing:1.450667pt;}
.ls3d{letter-spacing:1.456000pt;}
.ls67{letter-spacing:1.496000pt;}
.ls68{letter-spacing:1.541333pt;}
.ls27{letter-spacing:1.584000pt;}
.ls2b{letter-spacing:1.632000pt;}
.ls3b{letter-spacing:1.680000pt;}
.ls5c{letter-spacing:1.722667pt;}
.ls28{letter-spacing:1.728000pt;}
.ls55{letter-spacing:1.768000pt;}
.ls56{letter-spacing:1.813333pt;}
.ls66{letter-spacing:1.904000pt;}
.ls5b{letter-spacing:1.994667pt;}
.ls62{letter-spacing:2.012107pt;}
.ls37{letter-spacing:2.016000pt;}
.ls4a{letter-spacing:2.266667pt;}
.ls63{letter-spacing:2.312000pt;}
.ls50{letter-spacing:2.629333pt;}
.ls59{letter-spacing:3.309333pt;}
.ls51{letter-spacing:3.490667pt;}
.ls6a{letter-spacing:3.536000pt;}
.ls6d{letter-spacing:3.808000pt;}
.ls22{letter-spacing:4.258347pt;}
.ls45{letter-spacing:4.352000pt;}
.ls60{letter-spacing:5.530667pt;}
.ls69{letter-spacing:5.802667pt;}
.ls6c{letter-spacing:6.346667pt;}
.ls5d{letter-spacing:7.537920pt;}
.ls9{letter-spacing:12.240000pt;}
.ws4a{word-spacing:-23.424000pt;}
.ws9b{word-spacing:-14.896000pt;}
.wsc0{word-spacing:-14.778667pt;}
.wsce{word-spacing:-13.736000pt;}
.wsa6{word-spacing:-13.216000pt;}
.wsb1{word-spacing:-12.936000pt;}
.ws39{word-spacing:-12.880000pt;}
.ws83{word-spacing:-12.480000pt;}
.wsd2{word-spacing:-12.421333pt;}
.ws65{word-spacing:-12.320000pt;}
.wscf{word-spacing:-11.560000pt;}
.wsd3{word-spacing:-11.242667pt;}
.wsd0{word-spacing:-11.197333pt;}
.ws0{word-spacing:-11.146667pt;}
.wsd1{word-spacing:-10.970667pt;}
.wsc1{word-spacing:-10.834667pt;}
.wsf3{word-spacing:-10.789333pt;}
.wsd4{word-spacing:-10.472000pt;}
.ws6d{word-spacing:-10.426667pt;}
.ws18{word-spacing:-10.400000pt;}
.ws4b{word-spacing:-9.973333pt;}
.ws59{word-spacing:-9.706667pt;}
.ws9c{word-spacing:-9.682400pt;}
.wsb0{word-spacing:-8.736000pt;}
.ws9d{word-spacing:-8.444800pt;}
.ws1a{word-spacing:-8.372000pt;}
.ws3a{word-spacing:-8.262800pt;}
.ws19{word-spacing:-8.008000pt;}
.ws6c{word-spacing:-7.789600pt;}
.wsb8{word-spacing:-6.865733pt;}
.ws1b{word-spacing:-6.777333pt;}
.ws66{word-spacing:-6.688933pt;}
.wsf5{word-spacing:-6.346667pt;}
.wsc2{word-spacing:-4.352000pt;}
.wse9{word-spacing:-1.994667pt;}
.ws88{word-spacing:-1.584000pt;}
.wsec{word-spacing:-0.816000pt;}
.wsd6{word-spacing:-0.544000pt;}
.wsd7{word-spacing:-0.453333pt;}
.wsee{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.wse7{word-spacing:0.045333pt;}
.ws9{word-spacing:0.050667pt;}
.ws28{word-spacing:0.056000pt;}
.wsa2{word-spacing:0.090667pt;}
.wsb{word-spacing:0.101333pt;}
.wsbc{word-spacing:0.112000pt;}
.wsb7{word-spacing:0.136000pt;}
.ws20{word-spacing:0.168000pt;}
.ws61{word-spacing:0.181333pt;}
.ws7b{word-spacing:0.224000pt;}
.wsfc{word-spacing:0.226667pt;}
.wsb6{word-spacing:0.272000pt;}
.ws1d{word-spacing:0.280000pt;}
.wsb4{word-spacing:0.317333pt;}
.ws5a{word-spacing:0.336000pt;}
.ws31{word-spacing:0.392000pt;}
.ws17{word-spacing:0.405333pt;}
.wsfb{word-spacing:0.408000pt;}
.ws1e{word-spacing:0.448000pt;}
.ws56{word-spacing:0.453333pt;}
.ws7{word-spacing:0.456000pt;}
.ws24{word-spacing:0.498667pt;}
.ws36{word-spacing:0.504000pt;}
.wsa5{word-spacing:0.544000pt;}
.ws2e{word-spacing:0.560000pt;}
.ws62{word-spacing:0.589333pt;}
.ws80{word-spacing:0.616000pt;}
.wsba{word-spacing:0.634667pt;}
.ws96{word-spacing:0.672000pt;}
.wsca{word-spacing:0.680000pt;}
.ws3{word-spacing:0.709333pt;}
.ws51{word-spacing:0.728000pt;}
.ws7a{word-spacing:0.770667pt;}
.ws43{word-spacing:0.784000pt;}
.wsf2{word-spacing:0.816000pt;}
.ws4f{word-spacing:0.840000pt;}
.ws97{word-spacing:0.896000pt;}
.ws2d{word-spacing:0.952000pt;}
.wsdc{word-spacing:0.997333pt;}
.ws3f{word-spacing:1.008000pt;}
.ws46{word-spacing:1.042667pt;}
.wsa9{word-spacing:1.064000pt;}
.wse0{word-spacing:1.088000pt;}
.ws5c{word-spacing:1.120000pt;}
.wse4{word-spacing:1.133333pt;}
.ws68{word-spacing:1.176000pt;}
.ws5f{word-spacing:1.178667pt;}
.ws91{word-spacing:1.200000pt;}
.ws48{word-spacing:1.224000pt;}
.ws26{word-spacing:1.232000pt;}
.ws4{word-spacing:1.266667pt;}
.ws71{word-spacing:1.288000pt;}
.ws1c{word-spacing:1.344000pt;}
.ws94{word-spacing:1.400000pt;}
.wsa4{word-spacing:1.450667pt;}
.ws85{word-spacing:1.456000pt;}
.ws4d{word-spacing:1.512000pt;}
.ws5{word-spacing:1.520000pt;}
.ws81{word-spacing:1.568000pt;}
.ws99{word-spacing:1.586667pt;}
.ws6b{word-spacing:1.624000pt;}
.ws52{word-spacing:1.680000pt;}
.wsa1{word-spacing:1.736000pt;}
.wse6{word-spacing:1.768000pt;}
.wsf{word-spacing:1.773333pt;}
.ws38{word-spacing:1.792000pt;}
.ws60{word-spacing:1.813333pt;}
.ws7f{word-spacing:1.848000pt;}
.ws53{word-spacing:1.904000pt;}
.ws13{word-spacing:1.925333pt;}
.ws78{word-spacing:1.949333pt;}
.ws27{word-spacing:1.960000pt;}
.wsa3{word-spacing:1.994667pt;}
.ws5b{word-spacing:2.016000pt;}
.ws2{word-spacing:2.026667pt;}
.wsde{word-spacing:2.040000pt;}
.ws67{word-spacing:2.072000pt;}
.wsbe{word-spacing:2.128000pt;}
.ws64{word-spacing:2.130667pt;}
.wse{word-spacing:2.178667pt;}
.ws6f{word-spacing:2.184000pt;}
.wsb5{word-spacing:2.221333pt;}
.ws3c{word-spacing:2.240000pt;}
.wsfe{word-spacing:2.266667pt;}
.wsab{word-spacing:2.296000pt;}
.ws54{word-spacing:2.312000pt;}
.ws2b{word-spacing:2.352000pt;}
.wscc{word-spacing:2.357333pt;}
.ws77{word-spacing:2.448000pt;}
.ws84{word-spacing:2.464000pt;}
.ws5e{word-spacing:2.493333pt;}
.ws8b{word-spacing:2.496000pt;}
.ws23{word-spacing:2.520000pt;}
.ws7d{word-spacing:2.576000pt;}
.wsed{word-spacing:2.629333pt;}
.ws86{word-spacing:2.632000pt;}
.ws55{word-spacing:2.674667pt;}
.wsaa{word-spacing:2.688000pt;}
.ws73{word-spacing:2.744000pt;}
.ws76{word-spacing:2.765333pt;}
.ws70{word-spacing:2.800000pt;}
.ws3d{word-spacing:2.912000pt;}
.wsd{word-spacing:2.938667pt;}
.ws79{word-spacing:2.946667pt;}
.ws72{word-spacing:2.968000pt;}
.ws8f{word-spacing:2.976000pt;}
.wsc9{word-spacing:2.992000pt;}
.ws4c{word-spacing:3.024000pt;}
.ws50{word-spacing:3.080000pt;}
.ws92{word-spacing:3.082667pt;}
.wsf6{word-spacing:3.173333pt;}
.wsb2{word-spacing:3.192000pt;}
.ws8e{word-spacing:3.216000pt;}
.ws2c{word-spacing:3.248000pt;}
.wsc6{word-spacing:3.264000pt;}
.ws14{word-spacing:3.293333pt;}
.wsef{word-spacing:3.309333pt;}
.wsbb{word-spacing:3.360000pt;}
.ws15{word-spacing:3.394667pt;}
.ws2a{word-spacing:3.416000pt;}
.ws8{word-spacing:3.445333pt;}
.ws6e{word-spacing:3.472000pt;}
.ws47{word-spacing:3.490667pt;}
.ws9f{word-spacing:3.528000pt;}
.ws10{word-spacing:3.546667pt;}
.wsf9{word-spacing:3.581333pt;}
.wsbf{word-spacing:3.584000pt;}
.wsa0{word-spacing:3.640000pt;}
.ws57{word-spacing:3.672000pt;}
.ws29{word-spacing:3.696000pt;}
.wsf8{word-spacing:3.717333pt;}
.ws41{word-spacing:3.752000pt;}
.wsc{word-spacing:3.800000pt;}
.ws40{word-spacing:3.808000pt;}
.wsae{word-spacing:3.864000pt;}
.wse1{word-spacing:3.898667pt;}
.ws74{word-spacing:3.920000pt;}
.ws75{word-spacing:3.944000pt;}
.ws22{word-spacing:3.976000pt;}
.ws63{word-spacing:3.989333pt;}
.ws3e{word-spacing:4.032000pt;}
.ws58{word-spacing:4.034667pt;}
.wscd{word-spacing:4.080000pt;}
.ws7c{word-spacing:4.200000pt;}
.ws11{word-spacing:4.205333pt;}
.wsb9{word-spacing:4.256000pt;}
.ws69{word-spacing:4.312000pt;}
.ws44{word-spacing:4.352000pt;}
.ws35{word-spacing:4.368000pt;}
.ws93{word-spacing:4.424000pt;}
.wsaf{word-spacing:4.480000pt;}
.wsfa{word-spacing:4.488000pt;}
.wsa{word-spacing:4.509333pt;}
.ws37{word-spacing:4.536000pt;}
.ws30{word-spacing:4.592000pt;}
.wsc4{word-spacing:4.624000pt;}
.wsa7{word-spacing:4.648000pt;}
.ws32{word-spacing:4.704000pt;}
.wscb{word-spacing:4.714667pt;}
.ws5d{word-spacing:4.760000pt;}
.ws6a{word-spacing:4.816000pt;}
.wsc8{word-spacing:4.850667pt;}
.ws16{word-spacing:4.914667pt;}
.wsa8{word-spacing:4.984000pt;}
.ws9a{word-spacing:4.986667pt;}
.wsd9{word-spacing:5.032000pt;}
.ws87{word-spacing:5.096000pt;}
.ws3b{word-spacing:5.152000pt;}
.wseb{word-spacing:5.168000pt;}
.wsac{word-spacing:5.208000pt;}
.ws45{word-spacing:5.213333pt;}
.ws42{word-spacing:5.320000pt;}
.ws21{word-spacing:5.376000pt;}
.wsdb{word-spacing:5.440000pt;}
.wsc7{word-spacing:5.485333pt;}
.ws33{word-spacing:5.488000pt;}
.ws34{word-spacing:5.544000pt;}
.ws6{word-spacing:5.573333pt;}
.wsbd{word-spacing:5.600000pt;}
.ws25{word-spacing:5.656000pt;}
.ws2f{word-spacing:5.712000pt;}
.wsdd{word-spacing:5.802667pt;}
.ws4e{word-spacing:5.824000pt;}
.ws12{word-spacing:5.826667pt;}
.wsd5{word-spacing:5.893333pt;}
.wsf1{word-spacing:5.984000pt;}
.ws7e{word-spacing:5.992000pt;}
.ws98{word-spacing:6.048000pt;}
.wsd8{word-spacing:6.074667pt;}
.ws82{word-spacing:6.104000pt;}
.ws90{word-spacing:6.192000pt;}
.wsad{word-spacing:6.216000pt;}
.ws8c{word-spacing:6.240000pt;}
.wse3{word-spacing:6.256000pt;}
.wsf0{word-spacing:6.346667pt;}
.wsf4{word-spacing:6.392000pt;}
.ws1f{word-spacing:6.440000pt;}
.wsda{word-spacing:6.664000pt;}
.wse8{word-spacing:6.709333pt;}
.ws9e{word-spacing:6.832000pt;}
.ws8d{word-spacing:6.864000pt;}
.wsf7{word-spacing:6.890667pt;}
.ws8a{word-spacing:6.960000pt;}
.ws89{word-spacing:7.440000pt;}
.wsc5{word-spacing:7.616000pt;}
.wsea{word-spacing:7.752000pt;}
.wse5{word-spacing:11.741333pt;}
.wsfd{word-spacing:12.738667pt;}
.wsc3{word-spacing:14.506667pt;}
.wse2{word-spacing:14.597333pt;}
.wsdf{word-spacing:18.360000pt;}
.ws95{word-spacing:27.440000pt;}
.wsb3{word-spacing:29.120000pt;}
.ws49{word-spacing:909.674667pt;}
._22{margin-left:-29.134293pt;}
._1f{margin-left:-27.454933pt;}
._26{margin-left:-5.508083pt;}
._1c{margin-left:-3.427240pt;}
._5{margin-left:-2.375130pt;}
._0{margin-left:-1.386667pt;}
._6{width:0.896353pt;}
._23{width:1.808000pt;}
._1d{width:4.477862pt;}
._25{width:6.162667pt;}
._d{width:7.887733pt;}
._24{width:9.017813pt;}
._19{width:10.041112pt;}
._7{width:12.239733pt;}
._21{width:14.544000pt;}
._2{width:18.688000pt;}
._9{width:22.944000pt;}
._1{width:24.638712pt;}
._b{width:27.832000pt;}
._c{width:29.400000pt;}
._a{width:30.912000pt;}
._20{width:34.328000pt;}
._1b{width:35.840000pt;}
._4{width:37.506133pt;}
._8{width:39.188357pt;}
._1e{width:85.714138pt;}
._f{width:88.686080pt;}
._e{width:156.184320pt;}
._3{width:182.186667pt;}
._1a{width:275.462880pt;}
._18{width:343.833760pt;}
._10{width:367.699200pt;}
._13{width:382.958507pt;}
._11{width:394.053973pt;}
._15{width:405.146453pt;}
._14{width:468.864000pt;}
._16{width:490.197333pt;}
._12{width:690.944000pt;}
._17{width:764.497920pt;}
.fsb{font-size:29.466667pt;}
.fsc{font-size:32.000000pt;}
.fs9{font-size:36.400000pt;}
.fse{font-size:37.333333pt;}
.fs6{font-size:38.133333pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:52.000000pt;}
.fs8{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.247867pt;}
.ydd{bottom:37.796000pt;}
.y27c{bottom:64.250800pt;}
.y249{bottom:64.250933pt;}
.y18e{bottom:64.251067pt;}
.y1de{bottom:64.251333pt;}
.y8d{bottom:64.252000pt;}
.y137{bottom:64.252133pt;}
.y217{bottom:67.587733pt;}
.y1fc{bottom:67.588267pt;}
.ydb{bottom:67.652000pt;}
.y69{bottom:67.652133pt;}
.y114{bottom:69.012267pt;}
.y27b{bottom:77.584133pt;}
.y248{bottom:77.584267pt;}
.yb2{bottom:78.252000pt;}
.y1b8{bottom:78.252133pt;}
.y216{bottom:80.921067pt;}
.y1fb{bottom:80.921600pt;}
.ydf{bottom:81.585333pt;}
.y8c{bottom:81.652000pt;}
.y136{bottom:81.652133pt;}
.y18d{bottom:82.251067pt;}
.y1dd{bottom:82.251333pt;}
.yda{bottom:83.921333pt;}
.y41{bottom:86.549467pt;}
.y113{bottom:87.012267pt;}
.y27a{bottom:90.917467pt;}
.y247{bottom:90.917600pt;}
.yb1{bottom:92.252000pt;}
.y215{bottom:94.254400pt;}
.y1fa{bottom:94.254933pt;}
.yf2{bottom:95.652000pt;}
.y1b7{bottom:95.652133pt;}
.y8b{bottom:97.921333pt;}
.y18c{bottom:100.251067pt;}
.y1dc{bottom:100.251333pt;}
.y40{bottom:100.929200pt;}
.yd9{bottom:101.321333pt;}
.y246{bottom:104.250933pt;}
.yb0{bottom:106.252000pt;}
.y214{bottom:107.587733pt;}
.y1f9{bottom:107.588267pt;}
.yc5{bottom:109.652000pt;}
.y8a{bottom:111.921333pt;}
.y279{bottom:111.934133pt;}
.y68{bottom:113.420800pt;}
.y112{bottom:113.894000pt;}
.y3f{bottom:114.929200pt;}
.y135{bottom:115.742533pt;}
.y18b{bottom:118.251067pt;}
.y1db{bottom:118.251333pt;}
.yaf{bottom:120.252000pt;}
.y213{bottom:120.921067pt;}
.y1f8{bottom:120.921600pt;}
.y1b4{bottom:123.652000pt;}
.y278{bottom:125.267467pt;}
.y89{bottom:125.921333pt;}
.y245{bottom:127.369200pt;}
.y67{bottom:131.420800pt;}
.y111{bottom:131.894000pt;}
.y134{bottom:133.742533pt;}
.y1ad{bottom:134.252000pt;}
.y212{bottom:134.254400pt;}
.y1f7{bottom:134.254933pt;}
.y18a{bottom:136.251067pt;}
.y1da{bottom:136.251333pt;}
.yae{bottom:137.652000pt;}
.y277{bottom:138.600800pt;}
.y88{bottom:139.921333pt;}
.yd8{bottom:139.963600pt;}
.y244{bottom:140.702533pt;}
.y21{bottom:141.853467pt;}
.y1b6{bottom:142.404000pt;}
.y211{bottom:147.587733pt;}
.y110{bottom:149.894000pt;}
.y1ac{bottom:151.652000pt;}
.y133{bottom:151.742533pt;}
.y276{bottom:151.934133pt;}
.y3e{bottom:153.476000pt;}
.yad{bottom:153.921333pt;}
.y243{bottom:154.035867pt;}
.y189{bottom:154.251067pt;}
.y1f6{bottom:154.340400pt;}
.y66{bottom:155.090133pt;}
.y20{bottom:157.186800pt;}
.y87{bottom:157.321333pt;}
.yd7{bottom:157.963067pt;}
.y275{bottom:165.267467pt;}
.y1d9{bottom:165.776800pt;}
.y210{bottom:167.673200pt;}
.y1f5{bottom:167.673733pt;}
.y10f{bottom:167.894000pt;}
.yac{bottom:167.921333pt;}
.y3d{bottom:171.476000pt;}
.y188{bottom:172.251067pt;}
.y150{bottom:172.287867pt;}
.y1f{bottom:172.520133pt;}
.y65{bottom:173.090133pt;}
.y242{bottom:177.154667pt;}
.yd6{bottom:179.742800pt;}
.y20f{bottom:181.006533pt;}
.y1f4{bottom:181.007067pt;}
.yab{bottom:181.921333pt;}
.y1d8{bottom:183.776800pt;}
.y1ab{bottom:185.321333pt;}
.y274{bottom:186.284133pt;}
.y1e{bottom:187.853467pt;}
.y3c{bottom:189.476000pt;}
.y187{bottom:190.251067pt;}
.y14f{bottom:190.287867pt;}
.y241{bottom:190.488000pt;}
.y64{bottom:191.090133pt;}
.y169{bottom:193.217067pt;}
.y20e{bottom:194.339867pt;}
.y1f3{bottom:194.340400pt;}
.y10e{bottom:194.775733pt;}
.yc4{bottom:195.921333pt;}
.yd5{bottom:197.742800pt;}
.yaa{bottom:199.321333pt;}
.y273{bottom:199.617467pt;}
.y132{bottom:199.749333pt;}
.y1b3{bottom:201.486667pt;}
.y1d7{bottom:201.776800pt;}
.y1d{bottom:203.186800pt;}
.y240{bottom:203.821333pt;}
.y86{bottom:204.648667pt;}
.y1f2{bottom:207.673733pt;}
.y186{bottom:208.251067pt;}
.y63{bottom:209.090133pt;}
.yc3{bottom:209.921333pt;}
.y168{bottom:211.217067pt;}
.y10d{bottom:212.775733pt;}
.y272{bottom:212.950800pt;}
.yf1{bottom:213.321333pt;}
.y131{bottom:213.749333pt;}
.y20d{bottom:214.425333pt;}
.yd4{bottom:215.742800pt;}
.y14e{bottom:215.846667pt;}
.y3b{bottom:216.357200pt;}
.y23f{bottom:217.154667pt;}
.y1c{bottom:218.520133pt;}
.y1b2{bottom:219.486667pt;}
.y1d6{bottom:219.776800pt;}
.y85{bottom:222.648667pt;}
.yc2{bottom:223.921333pt;}
.y185{bottom:226.251067pt;}
.y271{bottom:226.284133pt;}
.y62{bottom:227.090133pt;}
.y130{bottom:227.749333pt;}
.y20c{bottom:227.758667pt;}
.y1f1{bottom:227.759200pt;}
.y167{bottom:229.217067pt;}
.y10c{bottom:230.775733pt;}
.yd3{bottom:233.742800pt;}
.y14d{bottom:233.846667pt;}
.y1b{bottom:233.853467pt;}
.y3a{bottom:234.357200pt;}
.ya9{bottom:234.897200pt;}
.y1aa{bottom:237.012400pt;}
.y1d5{bottom:237.776800pt;}
.yc1{bottom:237.921333pt;}
.y270{bottom:239.617467pt;}
.y23e{bottom:240.272933pt;}
.y84{bottom:240.648667pt;}
.y20b{bottom:241.092000pt;}
.y1f0{bottom:241.092533pt;}
.y12f{bottom:241.749333pt;}
.y184{bottom:244.251067pt;}
.y61{bottom:245.090133pt;}
.y1b1{bottom:246.368400pt;}
.y166{bottom:247.217067pt;}
.y10b{bottom:248.775733pt;}
.yf0{bottom:249.165333pt;}
.y1a{bottom:249.186800pt;}
.yd2{bottom:251.742800pt;}
.y14c{bottom:251.846667pt;}
.yc0{bottom:251.921333pt;}
.y39{bottom:252.357200pt;}
.ya8{bottom:252.897200pt;}
.y23d{bottom:253.606267pt;}
.y20a{bottom:254.425333pt;}
.y1ef{bottom:254.425867pt;}
.y1a9{bottom:255.012400pt;}
.y1d4{bottom:255.776800pt;}
.y26f{bottom:260.634667pt;}
.y12e{bottom:261.418667pt;}
.y83{bottom:262.428400pt;}
.y19{bottom:264.520133pt;}
.y10a{bottom:266.775733pt;}
.y23c{bottom:266.939600pt;}
.y209{bottom:267.758667pt;}
.y1ee{bottom:267.759200pt;}
.y60{bottom:268.759467pt;}
.ybf{bottom:269.321333pt;}
.yd1{bottom:269.742800pt;}
.y38{bottom:270.357200pt;}
.ya7{bottom:270.897200pt;}
.y183{bottom:272.666133pt;}
.y26e{bottom:273.968000pt;}
.y165{bottom:274.097733pt;}
.y12d{bottom:275.418667pt;}
.y14b{bottom:277.406000pt;}
.y23b{bottom:280.272933pt;}
.y82{bottom:280.428400pt;}
.y208{bottom:281.092000pt;}
.y1ed{bottom:281.092533pt;}
.y1a8{bottom:281.894133pt;}
.y109{bottom:284.775733pt;}
.y1d3{bottom:285.302267pt;}
.y5f{bottom:286.759467pt;}
.y26d{bottom:287.301333pt;}
.y37{bottom:288.357733pt;}
.ya6{bottom:288.897200pt;}
.y12c{bottom:289.418667pt;}
.yd0{bottom:291.522533pt;}
.y1ec{bottom:294.425867pt;}
.y14a{bottom:295.406000pt;}
.y1b0{bottom:298.384000pt;}
.y81{bottom:298.428400pt;}
.y1a7{bottom:299.894133pt;}
.y26c{bottom:300.634667pt;}
.y207{bottom:301.177467pt;}
.y108{bottom:302.775733pt;}
.y1d2{bottom:303.302267pt;}
.y23a{bottom:303.391733pt;}
.y12b{bottom:303.418667pt;}
.y5e{bottom:304.759467pt;}
.y36{bottom:306.357733pt;}
.ya5{bottom:306.897200pt;}
.y182{bottom:307.317733pt;}
.ybe{bottom:307.616800pt;}
.y1eb{bottom:307.759200pt;}
.y18{bottom:310.089467pt;}
.y164{bottom:310.995067pt;}
.y1af{bottom:313.050667pt;}
.ycf{bottom:313.302267pt;}
.y149{bottom:313.406000pt;}
.y26b{bottom:313.968000pt;}
.y206{bottom:314.510800pt;}
.y80{bottom:316.428400pt;}
.y239{bottom:316.725067pt;}
.y1a6{bottom:317.894133pt;}
.y107{bottom:320.775733pt;}
.y1d1{bottom:321.302267pt;}
.y5d{bottom:322.759467pt;}
.y12a{bottom:323.088000pt;}
.ya4{bottom:324.897200pt;}
.y181{bottom:325.317733pt;}
.y17{bottom:325.422800pt;}
.ybd{bottom:325.616800pt;}
.y205{bottom:327.844133pt;}
.y1ea{bottom:327.844667pt;}
.y163{bottom:328.995067pt;}
.y238{bottom:330.058400pt;}
.y148{bottom:331.406000pt;}
.y7f{bottom:334.428400pt;}
.y26a{bottom:334.984667pt;}
.yce{bottom:335.081467pt;}
.y1a5{bottom:335.894133pt;}
.y129{bottom:337.088000pt;}
.y106{bottom:338.775733pt;}
.y1d0{bottom:339.302267pt;}
.y16{bottom:340.756133pt;}
.y5c{bottom:340.759467pt;}
.y35{bottom:340.798933pt;}
.y204{bottom:341.177467pt;}
.y1e9{bottom:341.178000pt;}
.y180{bottom:343.317733pt;}
.y237{bottom:343.391733pt;}
.ybc{bottom:343.616800pt;}
.y162{bottom:346.995067pt;}
.y269{bottom:348.318000pt;}
.y147{bottom:349.406000pt;}
.y128{bottom:351.088000pt;}
.ya3{bottom:351.778933pt;}
.ycd{bottom:353.081467pt;}
.y1a4{bottom:353.894133pt;}
.y203{bottom:354.510800pt;}
.y1e8{bottom:354.511333pt;}
.y15{bottom:356.089467pt;}
.y7e{bottom:356.209067pt;}
.y236{bottom:356.725067pt;}
.y1cf{bottom:357.302267pt;}
.y5b{bottom:358.759467pt;}
.y17f{bottom:361.317733pt;}
.y268{bottom:361.651333pt;}
.y127{bottom:365.088000pt;}
.y105{bottom:365.656400pt;}
.y146{bottom:367.406000pt;}
.y202{bottom:367.844133pt;}
.y161{bottom:368.774800pt;}
.ya2{bottom:369.778933pt;}
.ycc{bottom:371.081467pt;}
.y14{bottom:371.422800pt;}
.y1a3{bottom:371.894133pt;}
.y7d{bottom:374.209067pt;}
.y1e7{bottom:374.596800pt;}
.y267{bottom:374.984667pt;}
.y1ce{bottom:375.302267pt;}
.y126{bottom:379.088000pt;}
.y235{bottom:379.843867pt;}
.ybb{bottom:380.514667pt;}
.y201{bottom:381.177467pt;}
.y5a{bottom:382.428800pt;}
.y104{bottom:383.656400pt;}
.y17e{bottom:384.253200pt;}
.y145{bottom:385.406000pt;}
.y13{bottom:386.756133pt;}
.y160{bottom:386.774800pt;}
.ya1{bottom:387.778933pt;}
.y1e6{bottom:387.930133pt;}
.y266{bottom:388.318000pt;}
.ycb{bottom:389.081467pt;}
.y1a2{bottom:389.894133pt;}
.y7c{bottom:392.209067pt;}
.y125{bottom:393.088000pt;}
.y234{bottom:393.177200pt;}
.y1cd{bottom:393.302267pt;}
.y59{bottom:400.428800pt;}
.y200{bottom:401.262933pt;}
.y1e5{bottom:401.263467pt;}
.y103{bottom:401.656400pt;}
.y12{bottom:402.089467pt;}
.y17d{bottom:402.253200pt;}
.y144{bottom:403.406000pt;}
.y15f{bottom:404.774800pt;}
.ya0{bottom:405.778933pt;}
.y233{bottom:406.510533pt;}
.yca{bottom:407.081467pt;}
.y1a1{bottom:407.894133pt;}
.y265{bottom:409.334667pt;}
.y34{bottom:410.594267pt;}
.y1cc{bottom:411.302267pt;}
.y124{bottom:412.757333pt;}
.y7b{bottom:413.988267pt;}
.y1ff{bottom:414.596267pt;}
.y1e4{bottom:414.596800pt;}
.y11{bottom:417.422800pt;}
.y58{bottom:418.428800pt;}
.y102{bottom:419.656400pt;}
.y232{bottom:419.843867pt;}
.y17c{bottom:420.253200pt;}
.y264{bottom:422.668000pt;}
.y15e{bottom:422.774800pt;}
.y9f{bottom:423.778933pt;}
.yc9{bottom:425.081467pt;}
.y1a0{bottom:425.894133pt;}
.y33{bottom:426.284400pt;}
.y123{bottom:426.757333pt;}
.y1fe{bottom:427.929600pt;}
.y1e3{bottom:427.930133pt;}
.y143{bottom:428.964800pt;}
.y1cb{bottom:429.302267pt;}
.y7a{bottom:431.988267pt;}
.y10{bottom:432.756133pt;}
.y231{bottom:433.177200pt;}
.y263{bottom:436.001333pt;}
.y57{bottom:436.428800pt;}
.y101{bottom:437.656400pt;}
.y17b{bottom:438.253200pt;}
.y122{bottom:440.757333pt;}
.y15d{bottom:440.774800pt;}
.y1fd{bottom:441.262933pt;}
.y1e2{bottom:441.263467pt;}
.y9e{bottom:441.778933pt;}
.y32{bottom:441.975067pt;}
.y19f{bottom:443.894133pt;}
.yf{bottom:448.089467pt;}
.y262{bottom:449.334667pt;}
.y79{bottom:449.988267pt;}
.yc8{bottom:451.963200pt;}
.y56{bottom:454.428800pt;}
.y121{bottom:454.757333pt;}
.y100{bottom:455.656400pt;}
.y17a{bottom:456.253200pt;}
.y230{bottom:456.295467pt;}
.y31{bottom:457.665200pt;}
.y15c{bottom:458.774800pt;}
.y1ca{bottom:458.827333pt;}
.y9d{bottom:459.778933pt;}
.y19e{bottom:461.894133pt;}
.y142{bottom:465.862667pt;}
.y120{bottom:468.757333pt;}
.y22f{bottom:469.628800pt;}
.y261{bottom:470.351867pt;}
.y55{bottom:472.428800pt;}
.y78{bottom:473.657600pt;}
.y15b{bottom:476.774800pt;}
.y1c9{bottom:476.827333pt;}
.yef{bottom:477.433067pt;}
.y9c{bottom:477.778933pt;}
.y179{bottom:479.188133pt;}
.y30{bottom:481.670400pt;}
.yff{bottom:482.538667pt;}
.y11f{bottom:482.757333pt;}
.y22e{bottom:482.962133pt;}
.y260{bottom:483.685200pt;}
.y141{bottom:483.862667pt;}
.y19d{bottom:488.775867pt;}
.y54{bottom:490.428800pt;}
.y77{bottom:491.657600pt;}
.y291{bottom:493.227467pt;}
.y2a6{bottom:493.228267pt;}
.ye{bottom:493.659200pt;}
.y15a{bottom:494.774800pt;}
.y1c8{bottom:494.827333pt;}
.y9b{bottom:495.778933pt;}
.y22d{bottom:496.295467pt;}
.yc7{bottom:496.420000pt;}
.y11e{bottom:496.757333pt;}
.y25f{bottom:497.018533pt;}
.y178{bottom:497.188133pt;}
.y1e1{bottom:499.263467pt;}
.yfe{bottom:500.538667pt;}
.y140{bottom:501.862667pt;}
.y2f{bottom:505.229200pt;}
.y290{bottom:506.560800pt;}
.y2a5{bottom:506.561600pt;}
.y19c{bottom:506.775867pt;}
.yd{bottom:508.992533pt;}
.y22c{bottom:509.628800pt;}
.y76{bottom:509.657600pt;}
.y25e{bottom:510.351867pt;}
.y159{bottom:512.774800pt;}
.y1c7{bottom:512.827333pt;}
.y9a{bottom:513.778933pt;}
.y53{bottom:514.098133pt;}
.y177{bottom:515.188133pt;}
.yee{bottom:517.878400pt;}
.yfd{bottom:518.538667pt;}
.y13f{bottom:519.862667pt;}
.y28f{bottom:519.894133pt;}
.y2a4{bottom:519.894933pt;}
.y22b{bottom:522.962133pt;}
.yc{bottom:524.325867pt;}
.y19b{bottom:524.775867pt;}
.y2e{bottom:526.898933pt;}
.y75{bottom:527.657600pt;}
.y1c6{bottom:530.827333pt;}
.y25d{bottom:531.368533pt;}
.y11d{bottom:531.433200pt;}
.y99{bottom:531.778933pt;}
.y52{bottom:532.098133pt;}
.y176{bottom:533.188133pt;}
.y2a3{bottom:533.228267pt;}
.y158{bottom:534.555467pt;}
.yed{bottom:535.878400pt;}
.yfc{bottom:536.538667pt;}
.y13e{bottom:537.862667pt;}
.yb{bottom:539.659200pt;}
.y28e{bottom:540.745733pt;}
.y19a{bottom:542.775867pt;}
.y25c{bottom:544.701867pt;}
.y74{bottom:545.657600pt;}
.y22a{bottom:546.080400pt;}
.y2a2{bottom:546.561600pt;}
.y2d{bottom:548.568667pt;}
.y1c5{bottom:548.827333pt;}
.y98{bottom:549.778933pt;}
.y51{bottom:550.098133pt;}
.y175{bottom:551.188133pt;}
.y157{bottom:552.555467pt;}
.yde{bottom:553.034533pt;}
.yec{bottom:553.878400pt;}
.y28d{bottom:554.079067pt;}
.yfb{bottom:554.538667pt;}
.ya{bottom:554.992533pt;}
.y13d{bottom:555.862667pt;}
.y25b{bottom:558.035200pt;}
.y229{bottom:559.413733pt;}
.y2a1{bottom:559.894933pt;}
.y199{bottom:560.775867pt;}
.y73{bottom:563.657600pt;}
.y1c4{bottom:566.827333pt;}
.ydc{bottom:566.929333pt;}
.y97{bottom:567.778933pt;}
.y50{bottom:568.098133pt;}
.y174{bottom:569.188133pt;}
.y2c{bottom:570.238400pt;}
.y9{bottom:570.325867pt;}
.y156{bottom:570.555467pt;}
.y25a{bottom:571.368533pt;}
.yeb{bottom:571.878400pt;}
.yfa{bottom:572.538667pt;}
.y228{bottom:572.747067pt;}
.y13c{bottom:573.862667pt;}
.y28c{bottom:574.930133pt;}
.y198{bottom:578.775867pt;}
.y11c{bottom:579.437333pt;}
.y1b5{bottom:580.138400pt;}
.y2a0{bottom:582.625200pt;}
.y259{bottom:584.701867pt;}
.y1c3{bottom:584.827333pt;}
.y8{bottom:585.659200pt;}
.y227{bottom:586.080400pt;}
.y4f{bottom:586.098133pt;}
.y173{bottom:587.188133pt;}
.y28b{bottom:588.263467pt;}
.y155{bottom:588.555467pt;}
.yea{bottom:589.878400pt;}
.y72{bottom:590.539867pt;}
.y13b{bottom:591.862667pt;}
.y2b{bottom:591.908133pt;}
.y29f{bottom:595.958533pt;}
.y197{bottom:596.775867pt;}
.y11b{bottom:597.437333pt;}
.y226{bottom:599.413733pt;}
.y7{bottom:600.992533pt;}
.y28a{bottom:601.596800pt;}
.y1c2{bottom:602.827333pt;}
.y4e{bottom:604.098133pt;}
.y172{bottom:605.188133pt;}
.y258{bottom:605.719067pt;}
.y154{bottom:606.555467pt;}
.yf9{bottom:606.980400pt;}
.ye9{bottom:607.878400pt;}
.y96{bottom:608.456000pt;}
.y29e{bottom:609.291867pt;}
.y13a{bottom:609.862667pt;}
.y225{bottom:612.747067pt;}
.y2a{bottom:613.577867pt;}
.y196{bottom:614.775867pt;}
.y289{bottom:614.930133pt;}
.y11a{bottom:615.437333pt;}
.y6{bottom:616.325867pt;}
.y257{bottom:619.052400pt;}
.y1c1{bottom:620.827333pt;}
.y4d{bottom:622.098133pt;}
.y29d{bottom:622.625200pt;}
.y171{bottom:623.188133pt;}
.y71{bottom:623.657600pt;}
.y153{bottom:624.555467pt;}
.ye8{bottom:625.878400pt;}
.y224{bottom:626.080400pt;}
.y139{bottom:627.862667pt;}
.y288{bottom:628.263467pt;}
.y5{bottom:631.659200pt;}
.y256{bottom:632.385733pt;}
.y95{bottom:632.683733pt;}
.y195{bottom:632.775867pt;}
.y119{bottom:633.437333pt;}
.y1ae{bottom:634.138400pt;}
.y170{bottom:641.188133pt;}
.y70{bottom:641.657600pt;}
.y152{bottom:642.555467pt;}
.ye7{bottom:643.878400pt;}
.y29{bottom:644.696133pt;}
.y29c{bottom:645.355867pt;}
.y255{bottom:645.719067pt;}
.y4c{bottom:645.767467pt;}
.y4{bottom:646.992533pt;}
.y287{bottom:649.114533pt;}
.y223{bottom:649.199200pt;}
.y1c0{bottom:650.352800pt;}
.y194{bottom:650.775867pt;}
.yf8{bottom:651.437200pt;}
.y118{bottom:651.437333pt;}
.y94{bottom:655.908267pt;}
.y29b{bottom:658.689200pt;}
.y254{bottom:659.052400pt;}
.y6f{bottom:659.657600pt;}
.y151{bottom:660.555467pt;}
.y138{bottom:660.980400pt;}
.ye6{bottom:661.878400pt;}
.y286{bottom:662.447867pt;}
.y222{bottom:662.532533pt;}
.y4b{bottom:663.767467pt;}
.y16f{bottom:664.124133pt;}
.yba{bottom:665.224267pt;}
.y1bf{bottom:668.352800pt;}
.yf7{bottom:669.437200pt;}
.y117{bottom:669.437333pt;}
.y29a{bottom:672.022533pt;}
.y285{bottom:675.781200pt;}
.y221{bottom:675.865867pt;}
.y6e{bottom:677.657600pt;}
.y1e0{bottom:678.555467pt;}
.y93{bottom:679.133733pt;}
.y253{bottom:680.069067pt;}
.y4a{bottom:681.767467pt;}
.y16e{bottom:682.124133pt;}
.yb9{bottom:682.992000pt;}
.ye5{bottom:683.657600pt;}
.y299{bottom:685.355867pt;}
.y1be{bottom:686.352800pt;}
.yf6{bottom:687.437200pt;}
.y116{bottom:687.437333pt;}
.y252{bottom:693.402400pt;}
.y22{bottom:693.542667pt;}
.y6d{bottom:695.657600pt;}
.y1df{bottom:696.555467pt;}
.y284{bottom:696.632800pt;}
.y220{bottom:698.985600pt;}
.y49{bottom:699.767467pt;}
.y16d{bottom:700.124133pt;}
.ye4{bottom:701.657600pt;}
.y92{bottom:702.359200pt;}
.y1bd{bottom:704.352800pt;}
.y28{bottom:704.937333pt;}
.yf5{bottom:705.437200pt;}
.y115{bottom:705.437333pt;}
.y251{bottom:706.735733pt;}
.y298{bottom:708.086533pt;}
.y283{bottom:709.966133pt;}
.y21f{bottom:712.318933pt;}
.y193{bottom:714.555467pt;}
.y48{bottom:717.767467pt;}
.y16c{bottom:718.124133pt;}
.ye3{bottom:719.657600pt;}
.y297{bottom:721.419867pt;}
.y1bc{bottom:722.352800pt;}
.y6c{bottom:722.539867pt;}
.y282{bottom:723.299467pt;}
.yf4{bottom:723.437200pt;}
.yb8{bottom:723.437333pt;}
.y27{bottom:723.604000pt;}
.y91{bottom:725.584667pt;}
.y21e{bottom:725.652267pt;}
.y250{bottom:727.752400pt;}
.y192{bottom:732.555467pt;}
.y296{bottom:734.753200pt;}
.y47{bottom:735.767467pt;}
.y16b{bottom:736.124133pt;}
.y281{bottom:736.632800pt;}
.ye2{bottom:737.657600pt;}
.y21d{bottom:738.985600pt;}
.y1bb{bottom:740.352800pt;}
.y24f{bottom:741.085733pt;}
.yf3{bottom:741.437200pt;}
.yb7{bottom:741.437333pt;}
.y26{bottom:747.604000pt;}
.y295{bottom:748.086533pt;}
.y90{bottom:748.810133pt;}
.y280{bottom:749.966133pt;}
.y191{bottom:750.555467pt;}
.y21c{bottom:752.318933pt;}
.y46{bottom:753.767467pt;}
.y16a{bottom:754.124133pt;}
.y24e{bottom:754.419067pt;}
.ye1{bottom:755.657600pt;}
.y1ba{bottom:758.352800pt;}
.y6b{bottom:759.437200pt;}
.yb6{bottom:759.437333pt;}
.y25{bottom:766.270667pt;}
.y24d{bottom:767.752400pt;}
.y3{bottom:768.152400pt;}
.y190{bottom:768.555467pt;}
.y294{bottom:770.816800pt;}
.y27f{bottom:770.817200pt;}
.y45{bottom:771.767467pt;}
.y8f{bottom:772.034667pt;}
.ye0{bottom:773.657600pt;}
.y21b{bottom:775.437200pt;}
.y1b9{bottom:776.352800pt;}
.y6a{bottom:777.437200pt;}
.yb5{bottom:777.437333pt;}
.y293{bottom:784.150133pt;}
.y27e{bottom:784.150533pt;}
.y18f{bottom:786.555467pt;}
.yc6{bottom:786.605067pt;}
.y24c{bottom:788.769600pt;}
.y21a{bottom:788.770533pt;}
.y24{bottom:790.270667pt;}
.y44{bottom:795.437200pt;}
.yb4{bottom:795.437333pt;}
.y292{bottom:797.483467pt;}
.y27d{bottom:797.483867pt;}
.y2{bottom:801.937333pt;}
.y24b{bottom:802.102933pt;}
.y219{bottom:802.103867pt;}
.y8e{bottom:804.373333pt;}
.y23{bottom:808.937333pt;}
.y43{bottom:813.437200pt;}
.yb3{bottom:813.437333pt;}
.y24a{bottom:815.436267pt;}
.y218{bottom:815.437200pt;}
.y42{bottom:859.432000pt;}
.h1a{height:20.980267pt;}
.h15{height:23.649947pt;}
.h16{height:28.672000pt;}
.h20{height:30.600000pt;}
.h1b{height:32.277333pt;}
.h1f{height:32.504000pt;}
.h18{height:32.768000pt;}
.h19{height:33.450667pt;}
.h11{height:34.244267pt;}
.h10{height:34.820063pt;}
.h6{height:35.973333pt;}
.h7{height:36.328000pt;}
.h14{height:36.384533pt;}
.h21{height:37.249947pt;}
.h3{height:38.229333pt;}
.h8{height:40.665067pt;}
.hb{height:41.653333pt;}
.hd{height:42.064000pt;}
.h1e{height:43.008000pt;}
.hf{height:44.945600pt;}
.h9{height:45.056000pt;}
.h17{height:45.701333pt;}
.h12{height:45.816340pt;}
.h13{height:46.014640pt;}
.he{height:56.582603pt;}
.h5{height:56.800000pt;}
.hc{height:65.287619pt;}
.ha{height:66.436952pt;}
.h4{height:83.306667pt;}
.h1c{height:642.520000pt;}
.h1d{height:642.666667pt;}
.h2{height:907.066667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.w4{width:907.066667pt;}
.w2{width:907.086667pt;}
.w3{width:907.333333pt;}
.x0{left:0.000000pt;}
.xb{left:13.331253pt;}
.x12{left:37.247867pt;}
.x13{left:64.252133pt;}
.x3{left:75.590667pt;}
.x18{left:90.708933pt;}
.x1{left:94.488000pt;}
.x9{left:98.268800pt;}
.xe{left:109.100000pt;}
.x14{left:113.386000pt;}
.xc{left:117.165333pt;}
.xf{left:136.817333pt;}
.x15{left:228.964000pt;}
.x19{left:323.149147pt;}
.x1a{left:338.266480pt;}
.x16{left:340.156933pt;}
.x1c{left:342.045933pt;}
.x17{left:355.275200pt;}
.x1b{left:357.164733pt;}
.xd{left:367.858667pt;}
.xa{left:387.442667pt;}
.x7{left:416.019320pt;}
.x6{left:422.193800pt;}
.x8{left:444.013053pt;}
.x4{left:450.154667pt;}
.x5{left:482.459920pt;}
.x2{left:604.724000pt;}
.x11{left:693.542667pt;}
.x10{left:859.432000pt;}
}




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