
    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_355a415c386beada98fe4c08.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_e4cc71ec29a1f744f1045d62.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_ac8f8e589c7b716ed7b7d8fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_f68edf028e4fde263b1dba4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924000;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_a9e5613e43674f06b4ee60d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_f7e9598ad993611c3fdd39cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690000;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_f7e9598ad993611c3fdd39cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690000;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_29d407ccefe2862315de7a18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945000;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_5b7d394904310f158883ec36.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.669000;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_29d407ccefe2862315de7a18.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945000;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_29d407ccefe2862315de7a18.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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;}
.m7{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);}
.m5{transform:matrix(0.091093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091093,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.098814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098814,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,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);}
.m4{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);}
.v5{vertical-align:-27.000000px;}
.v3{vertical-align:-21.600000px;}
.v6{vertical-align:-13.800000px;}
.v1{vertical-align:-6.006000px;}
.va{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:7.320000px;}
.v7{vertical-align:16.380000px;}
.v8{vertical-align:22.950000px;}
.v4{vertical-align:27.000000px;}
.v2{vertical-align:32.400000px;}
.lsa{letter-spacing:-1.740000px;}
.ls10{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.364200px;}
.lsd{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.630000px;}
.lsf{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.882000px;}
.ls3{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.260000px;}
.ls20{letter-spacing:6.000000px;}
.ls21{letter-spacing:6.600000px;}
.lse{letter-spacing:7.140000px;}
.ls2{letter-spacing:7.200000px;}
.lsb{letter-spacing:9.600000px;}
.ls1{letter-spacing:10.800000px;}
.ls17{letter-spacing:100.277400px;}
.ls16{letter-spacing:100.278000px;}
.ls18{letter-spacing:120.452400px;}
.ls1a{letter-spacing:135.212400px;}
.ls1b{letter-spacing:190.867200px;}
.ls19{letter-spacing:225.802200px;}
.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;}
}
.ws149{word-spacing:-21.600000px;}
.ws148{word-spacing:-21.000000px;}
.ws0{word-spacing:-18.984000px;}
.ws4{word-spacing:-18.000000px;}
.ws1d{word-spacing:-16.260000px;}
.ws1a{word-spacing:-15.900000px;}
.ws66{word-spacing:-15.540000px;}
.ws86{word-spacing:-15.180000px;}
.ws67{word-spacing:-15.000000px;}
.ws1b{word-spacing:-14.700000px;}
.ws12d{word-spacing:-14.460000px;}
.ws147{word-spacing:-14.280000px;}
.ws11c{word-spacing:-12.750000px;}
.ws3{word-spacing:-12.600000px;}
.ws6{word-spacing:-12.000000px;}
.ws1c{word-spacing:-11.382000px;}
.ws27{word-spacing:-11.130000px;}
.ws38{word-spacing:-10.626000px;}
.ws2{word-spacing:-10.500000px;}
.ws11d{word-spacing:-10.122000px;}
.ws12e{word-spacing:-9.996000px;}
.ws65{word-spacing:-9.600000px;}
.ws113{word-spacing:-8.925000px;}
.ws5{word-spacing:-8.400000px;}
.ws19{word-spacing:-7.350000px;}
.ws1f{word-spacing:-7.200000px;}
.ws109{word-spacing:-6.120000px;}
.ws14f{word-spacing:-5.940000px;}
.ws101{word-spacing:-5.700000px;}
.ws13f{word-spacing:-5.580000px;}
.wsfc{word-spacing:-4.620000px;}
.wse8{word-spacing:-4.080000px;}
.wsb2{word-spacing:-3.840000px;}
.ws110{word-spacing:-3.660000px;}
.ws150{word-spacing:-3.420000px;}
.ws157{word-spacing:-3.360000px;}
.ws158{word-spacing:-3.000000px;}
.ws7d{word-spacing:-2.940000px;}
.ws18d{word-spacing:-2.907000px;}
.ws26{word-spacing:-2.820000px;}
.ws9e{word-spacing:-2.760000px;}
.ws10f{word-spacing:-2.700000px;}
.ws14b{word-spacing:-2.640000px;}
.wsa8{word-spacing:-2.580000px;}
.ws126{word-spacing:-2.520000px;}
.ws155{word-spacing:-2.460000px;}
.ws132{word-spacing:-2.400000px;}
.ws17f{word-spacing:-2.346000px;}
.ws137{word-spacing:-2.340000px;}
.ws112{word-spacing:-2.280000px;}
.ws15d{word-spacing:-2.244000px;}
.ws121{word-spacing:-2.220000px;}
.ws15{word-spacing:-2.160000px;}
.ws1a2{word-spacing:-2.142000px;}
.ws28{word-spacing:-2.100000px;}
.ws8b{word-spacing:-2.040000px;}
.ws13e{word-spacing:-1.980000px;}
.wsb4{word-spacing:-1.920000px;}
.wsba{word-spacing:-1.800000px;}
.ws19e{word-spacing:-1.785000px;}
.ws135{word-spacing:-1.740000px;}
.ws15b{word-spacing:-1.683000px;}
.ws60{word-spacing:-1.680000px;}
.ws133{word-spacing:-1.620000px;}
.ws188{word-spacing:-1.581000px;}
.ws75{word-spacing:-1.560000px;}
.ws167{word-spacing:-1.530000px;}
.ws50{word-spacing:-1.500000px;}
.ws9{word-spacing:-1.440000px;}
.ws30{word-spacing:-1.380000px;}
.ws173{word-spacing:-1.326000px;}
.ws74{word-spacing:-1.320000px;}
.ws39{word-spacing:-1.260000px;}
.ws31{word-spacing:-1.140000px;}
.ws19d{word-spacing:-1.122000px;}
.ws53{word-spacing:-1.080000px;}
.ws189{word-spacing:-1.071000px;}
.wsc{word-spacing:-1.020000px;}
.ws186{word-spacing:-0.969000px;}
.ws51{word-spacing:-0.960000px;}
.ws187{word-spacing:-0.918000px;}
.wsa9{word-spacing:-0.900000px;}
.ws56{word-spacing:-0.882000px;}
.ws22{word-spacing:-0.840000px;}
.ws3a{word-spacing:-0.780000px;}
.ws17d{word-spacing:-0.765000px;}
.wsae{word-spacing:-0.720000px;}
.wsa7{word-spacing:-0.660000px;}
.wscb{word-spacing:-0.630000px;}
.ws6f{word-spacing:-0.600000px;}
.ws16c{word-spacing:-0.561000px;}
.wsc7{word-spacing:-0.540000px;}
.wsb9{word-spacing:-0.480000px;}
.ws87{word-spacing:-0.420000px;}
.ws6b{word-spacing:-0.378000px;}
.wsbc{word-spacing:-0.360000px;}
.ws14e{word-spacing:-0.300000px;}
.ws19b{word-spacing:-0.255000px;}
.ws24{word-spacing:-0.240000px;}
.wsd2{word-spacing:-0.216000px;}
.ws11f{word-spacing:-0.180000px;}
.ws182{word-spacing:-0.153000px;}
.ws34{word-spacing:-0.126000px;}
.ws13d{word-spacing:-0.120000px;}
.ws99{word-spacing:-0.060000px;}
.ws165{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.ws4f{word-spacing:0.060000px;}
.ws4e{word-spacing:0.120000px;}
.ws17a{word-spacing:0.153000px;}
.ws45{word-spacing:0.180000px;}
.ws175{word-spacing:0.204000px;}
.ws9d{word-spacing:0.240000px;}
.ws15c{word-spacing:0.255000px;}
.wsb7{word-spacing:0.300000px;}
.ws96{word-spacing:0.360000px;}
.ws4b{word-spacing:0.420000px;}
.wsd6{word-spacing:0.480000px;}
.ws90{word-spacing:0.540000px;}
.ws10b{word-spacing:0.600000px;}
.ws183{word-spacing:0.612000px;}
.ws8c{word-spacing:0.630000px;}
.ws100{word-spacing:0.660000px;}
.ws2f{word-spacing:0.720000px;}
.ws10e{word-spacing:0.780000px;}
.ws172{word-spacing:0.816000px;}
.ws7e{word-spacing:0.840000px;}
.ws9f{word-spacing:0.900000px;}
.ws61{word-spacing:0.960000px;}
.ws18b{word-spacing:0.969000px;}
.wsa0{word-spacing:1.020000px;}
.wsb8{word-spacing:1.080000px;}
.ws162{word-spacing:1.122000px;}
.ws4a{word-spacing:1.140000px;}
.ws185{word-spacing:1.173000px;}
.ws3b{word-spacing:1.200000px;}
.ws5b{word-spacing:1.260000px;}
.ws32{word-spacing:1.320000px;}
.ws160{word-spacing:1.377000px;}
.ws3c{word-spacing:1.380000px;}
.ws33{word-spacing:1.440000px;}
.ws18c{word-spacing:1.479000px;}
.ws156{word-spacing:1.500000px;}
.ws5c{word-spacing:1.560000px;}
.ws1a8{word-spacing:1.581000px;}
.ws3d{word-spacing:1.620000px;}
.wsea{word-spacing:1.680000px;}
.wsab{word-spacing:1.740000px;}
.ws5e{word-spacing:1.800000px;}
.ws43{word-spacing:1.860000px;}
.wsd5{word-spacing:1.920000px;}
.ws12f{word-spacing:1.980000px;}
.ws8{word-spacing:2.040000px;}
.ws13{word-spacing:2.100000px;}
.wse{word-spacing:2.160000px;}
.ws164{word-spacing:2.193000px;}
.wsac{word-spacing:2.220000px;}
.ws52{word-spacing:2.280000px;}
.ws37{word-spacing:2.340000px;}
.ws17e{word-spacing:2.346000px;}
.ws7c{word-spacing:2.400000px;}
.ws16b{word-spacing:2.448000px;}
.ws2e{word-spacing:2.460000px;}
.ws18f{word-spacing:2.499000px;}
.ws35{word-spacing:2.520000px;}
.ws3f{word-spacing:2.580000px;}
.wscf{word-spacing:2.640000px;}
.ws180{word-spacing:2.652000px;}
.wsb{word-spacing:2.700000px;}
.wsa5{word-spacing:2.760000px;}
.ws196{word-spacing:2.805000px;}
.ws42{word-spacing:2.820000px;}
.ws7b{word-spacing:2.940000px;}
.ws15f{word-spacing:2.958000px;}
.ws78{word-spacing:3.000000px;}
.wsfd{word-spacing:3.060000px;}
.ws17b{word-spacing:3.111000px;}
.ws79{word-spacing:3.120000px;}
.wsd1{word-spacing:3.180000px;}
.ws11{word-spacing:3.240000px;}
.ws1a5{word-spacing:3.264000px;}
.ws8d{word-spacing:3.300000px;}
.ws190{word-spacing:3.315000px;}
.ws80{word-spacing:3.360000px;}
.ws14{word-spacing:3.420000px;}
.ws91{word-spacing:3.480000px;}
.ws3e{word-spacing:3.540000px;}
.ws18a{word-spacing:3.570000px;}
.ws12b{word-spacing:3.600000px;}
.ws54{word-spacing:3.660000px;}
.ws141{word-spacing:3.720000px;}
.ws106{word-spacing:3.780000px;}
.wsfe{word-spacing:3.840000px;}
.ws16a{word-spacing:3.876000px;}
.ws128{word-spacing:3.900000px;}
.ws64{word-spacing:3.960000px;}
.ws170{word-spacing:3.978000px;}
.ws88{word-spacing:4.020000px;}
.wse4{word-spacing:4.080000px;}
.ws6d{word-spacing:4.140000px;}
.ws1a7{word-spacing:4.182000px;}
.ws9c{word-spacing:4.200000px;}
.wsa{word-spacing:4.260000px;}
.wsc9{word-spacing:4.320000px;}
.ws169{word-spacing:4.386000px;}
.ws145{word-spacing:4.440000px;}
.ws13c{word-spacing:4.500000px;}
.wsc8{word-spacing:4.560000px;}
.ws4d{word-spacing:4.620000px;}
.ws13a{word-spacing:4.680000px;}
.wsc1{word-spacing:4.800000px;}
.ws14a{word-spacing:4.860000px;}
.ws176{word-spacing:4.896000px;}
.wse2{word-spacing:4.920000px;}
.ws2b{word-spacing:4.980000px;}
.ws168{word-spacing:4.998000px;}
.ws136{word-spacing:5.040000px;}
.ws8e{word-spacing:5.160000px;}
.ws194{word-spacing:5.202000px;}
.ws29{word-spacing:5.220000px;}
.ws102{word-spacing:5.280000px;}
.ws195{word-spacing:5.304000px;}
.ws85{word-spacing:5.340000px;}
.ws16e{word-spacing:5.355000px;}
.ws72{word-spacing:5.400000px;}
.ws59{word-spacing:5.460000px;}
.ws8a{word-spacing:5.520000px;}
.ws62{word-spacing:5.580000px;}
.ws1a0{word-spacing:5.610000px;}
.ws163{word-spacing:5.661000px;}
.wsc0{word-spacing:5.700000px;}
.wsc2{word-spacing:5.760000px;}
.wseb{word-spacing:5.820000px;}
.wsb3{word-spacing:5.880000px;}
.wsb1{word-spacing:5.940000px;}
.ws18e{word-spacing:5.967000px;}
.ws2d{word-spacing:6.000000px;}
.ws83{word-spacing:6.060000px;}
.ws71{word-spacing:6.180000px;}
.wsd9{word-spacing:6.240000px;}
.wsc6{word-spacing:6.300000px;}
.ws108{word-spacing:6.360000px;}
.ws17{word-spacing:6.420000px;}
.ws40{word-spacing:6.480000px;}
.wsdf{word-spacing:6.540000px;}
.ws1a4{word-spacing:6.579000px;}
.wsa3{word-spacing:6.600000px;}
.wsa1{word-spacing:6.660000px;}
.ws174{word-spacing:6.681000px;}
.ws25{word-spacing:6.720000px;}
.wscd{word-spacing:6.780000px;}
.wsfa{word-spacing:6.840000px;}
.ws171{word-spacing:6.885000px;}
.ws2c{word-spacing:6.900000px;}
.wsd{word-spacing:6.960000px;}
.wsf3{word-spacing:7.020000px;}
.wsf1{word-spacing:7.080000px;}
.ws46{word-spacing:7.140000px;}
.ws12a{word-spacing:7.200000px;}
.ws107{word-spacing:7.260000px;}
.ws18{word-spacing:7.320000px;}
.ws58{word-spacing:7.380000px;}
.wsa6{word-spacing:7.440000px;}
.ws47{word-spacing:7.500000px;}
.ws2a{word-spacing:7.560000px;}
.ws23{word-spacing:7.620000px;}
.ws94{word-spacing:7.680000px;}
.ws36{word-spacing:7.740000px;}
.ws70{word-spacing:7.800000px;}
.ws73{word-spacing:7.860000px;}
.ws125{word-spacing:7.920000px;}
.ws1a3{word-spacing:7.956000px;}
.ws12{word-spacing:7.980000px;}
.wsad{word-spacing:8.040000px;}
.ws181{word-spacing:8.058000px;}
.ws127{word-spacing:8.100000px;}
.ws7a{word-spacing:8.160000px;}
.wsf{word-spacing:8.220000px;}
.wsa4{word-spacing:8.280000px;}
.ws97{word-spacing:8.340000px;}
.ws10{word-spacing:8.400000px;}
.ws7f{word-spacing:8.460000px;}
.ws192{word-spacing:8.466000px;}
.ws8f{word-spacing:8.520000px;}
.ws16{word-spacing:8.580000px;}
.ws44{word-spacing:8.640000px;}
.ws19c{word-spacing:8.670000px;}
.ws143{word-spacing:8.700000px;}
.ws49{word-spacing:8.760000px;}
.ws1a6{word-spacing:8.772000px;}
.ws6e{word-spacing:8.820000px;}
.ws179{word-spacing:8.823000px;}
.wsb5{word-spacing:8.880000px;}
.ws21{word-spacing:8.940000px;}
.ws5d{word-spacing:9.000000px;}
.ws123{word-spacing:9.060000px;}
.wse5{word-spacing:9.120000px;}
.ws57{word-spacing:9.180000px;}
.ws199{word-spacing:9.333000px;}
.ws105{word-spacing:9.360000px;}
.ws161{word-spacing:9.384000px;}
.ws82{word-spacing:9.420000px;}
.ws131{word-spacing:9.480000px;}
.ws48{word-spacing:9.540000px;}
.wsec{word-spacing:9.600000px;}
.wsa2{word-spacing:9.660000px;}
.wsd4{word-spacing:9.720000px;}
.ws103{word-spacing:9.780000px;}
.ws98{word-spacing:9.840000px;}
.ws16d{word-spacing:9.894000px;}
.ws16f{word-spacing:9.945000px;}
.ws77{word-spacing:9.960000px;}
.ws144{word-spacing:10.020000px;}
.ws130{word-spacing:10.140000px;}
.wsd0{word-spacing:10.200000px;}
.ws89{word-spacing:10.380000px;}
.ws134{word-spacing:10.440000px;}
.ws68{word-spacing:10.500000px;}
.ws69{word-spacing:10.560000px;}
.wsd8{word-spacing:10.620000px;}
.wsb0{word-spacing:10.920000px;}
.wsfb{word-spacing:10.980000px;}
.wsf6{word-spacing:11.040000px;}
.wsf9{word-spacing:11.100000px;}
.wsc4{word-spacing:11.160000px;}
.ws9b{word-spacing:11.220000px;}
.wse0{word-spacing:11.280000px;}
.ws122{word-spacing:11.400000px;}
.wsdd{word-spacing:11.460000px;}
.ws166{word-spacing:11.475000px;}
.ws154{word-spacing:11.520000px;}
.ws10d{word-spacing:11.640000px;}
.wsf5{word-spacing:11.820000px;}
.wsd7{word-spacing:11.880000px;}
.ws19f{word-spacing:11.883000px;}
.wscc{word-spacing:11.940000px;}
.ws198{word-spacing:11.985000px;}
.ws13b{word-spacing:12.000000px;}
.wse6{word-spacing:12.060000px;}
.ws197{word-spacing:12.087000px;}
.ws63{word-spacing:12.120000px;}
.ws92{word-spacing:12.180000px;}
.wsbe{word-spacing:12.240000px;}
.ws41{word-spacing:12.300000px;}
.wsd3{word-spacing:12.480000px;}
.ws111{word-spacing:12.600000px;}
.ws95{word-spacing:12.780000px;}
.wsf4{word-spacing:12.960000px;}
.wsb6{word-spacing:13.080000px;}
.ws1a1{word-spacing:13.107000px;}
.wsdc{word-spacing:13.140000px;}
.ws4c{word-spacing:13.320000px;}
.wsed{word-spacing:13.380000px;}
.wse3{word-spacing:13.500000px;}
.ws184{word-spacing:13.515000px;}
.wsaa{word-spacing:13.800000px;}
.ws191{word-spacing:13.821000px;}
.wsc5{word-spacing:13.920000px;}
.ws15a{word-spacing:13.923000px;}
.ws5a{word-spacing:14.040000px;}
.wsda{word-spacing:14.100000px;}
.wsca{word-spacing:14.280000px;}
.ws93{word-spacing:14.340000px;}
.ws17c{word-spacing:14.484000px;}
.ws5f{word-spacing:14.580000px;}
.wse9{word-spacing:14.820000px;}
.ws142{word-spacing:15.180000px;}
.ws76{word-spacing:15.480000px;}
.wsc3{word-spacing:15.540000px;}
.ws9a{word-spacing:15.720000px;}
.ws152{word-spacing:15.780000px;}
.ws55{word-spacing:16.020000px;}
.wsff{word-spacing:16.200000px;}
.ws81{word-spacing:16.260000px;}
.wsf0{word-spacing:16.380000px;}
.ws178{word-spacing:16.524000px;}
.wsaf{word-spacing:16.620000px;}
.wsce{word-spacing:16.860000px;}
.ws159{word-spacing:16.881000px;}
.ws104{word-spacing:17.100000px;}
.ws146{word-spacing:17.220000px;}
.wsbb{word-spacing:17.580000px;}
.wse1{word-spacing:17.640000px;}
.wsbd{word-spacing:17.880000px;}
.ws6a{word-spacing:17.940000px;}
.wsbf{word-spacing:18.120000px;}
.ws84{word-spacing:18.180000px;}
.ws138{word-spacing:18.300000px;}
.ws140{word-spacing:18.540000px;}
.ws139{word-spacing:18.720000px;}
.wsdb{word-spacing:18.840000px;}
.wsf2{word-spacing:18.900000px;}
.ws153{word-spacing:19.020000px;}
.wsee{word-spacing:19.140000px;}
.ws124{word-spacing:19.980000px;}
.ws120{word-spacing:20.280000px;}
.ws10a{word-spacing:20.820000px;}
.ws177{word-spacing:21.114000px;}
.ws19a{word-spacing:22.338000px;}
.wsef{word-spacing:22.860000px;}
.ws193{word-spacing:23.460000px;}
.wsde{word-spacing:24.180000px;}
.ws15e{word-spacing:24.225000px;}
.ws14d{word-spacing:24.780000px;}
.wse7{word-spacing:25.200000px;}
.ws10c{word-spacing:26.100000px;}
.ws151{word-spacing:27.420000px;}
.ws12c{word-spacing:28.200000px;}
.ws6c{word-spacing:29.700000px;}
.ws7{word-spacing:30.450000px;}
.ws1e{word-spacing:31.500000px;}
.ws14c{word-spacing:37.740000px;}
.ws20{word-spacing:54.000000px;}
.ws119{word-spacing:74.409000px;}
.ws118{word-spacing:75.990000px;}
.ws115{word-spacing:83.487000px;}
.ws11b{word-spacing:119.799000px;}
.ws11a{word-spacing:124.746000px;}
.ws114{word-spacing:156.519000px;}
.ws117{word-spacing:206.856000px;}
.ws116{word-spacing:208.539000px;}
.wsf7{word-spacing:616.560000px;}
.wsf8{word-spacing:634.980000px;}
.ws11e{word-spacing:1114.740000px;}
.ws129{word-spacing:1620.660000px;}
._41{margin-left:-37.128000px;}
._3b{margin-left:-35.220000px;}
._22{margin-left:-32.275800px;}
._15{margin-left:-30.583200px;}
._20{margin-left:-27.180000px;}
._18{margin-left:-26.100000px;}
._28{margin-left:-24.982200px;}
._e{margin-left:-22.980000px;}
._14{margin-left:-21.240000px;}
._13{margin-left:-19.440000px;}
._d{margin-left:-18.240000px;}
._f{margin-left:-17.040000px;}
._1f{margin-left:-15.840000px;}
._1c{margin-left:-14.808600px;}
._12{margin-left:-13.328400px;}
._b{margin-left:-11.827200px;}
._a{margin-left:-10.323000px;}
._2a{margin-left:-9.060000px;}
._2{margin-left:-7.353600px;}
._9{margin-left:-5.472000px;}
._3{margin-left:-4.284000px;}
._8{margin-left:-3.134400px;}
._1{margin-left:-1.996800px;}
._6{width:1.152600px;}
._c{width:2.706000px;}
._10{width:4.032000px;}
._0{width:5.587200px;}
._1a{width:7.354800px;}
._1b{width:9.294000px;}
._19{width:10.578000px;}
._23{width:11.904000px;}
._40{width:12.954000px;}
._24{width:13.963800px;}
._1d{width:15.310800px;}
._26{width:16.621200px;}
._21{width:17.850000px;}
._27{width:19.062000px;}
._3f{width:21.182400px;}
._29{width:22.300800px;}
._3d{width:23.776200px;}
._3e{width:24.870000px;}
._42{width:26.094000px;}
._3c{width:27.348000px;}
._25{width:31.026000px;}
._16{width:34.524000px;}
._1e{width:38.250000px;}
._7{width:40.950000px;}
._17{width:54.000000px;}
._2e{width:69.181200px;}
._33{width:87.159000px;}
._2d{width:92.291400px;}
._39{width:93.857400px;}
._34{width:123.318000px;}
._37{width:134.487000px;}
._2f{width:137.904000px;}
._35{width:139.179000px;}
._36{width:140.589000px;}
._30{width:158.100000px;}
._2c{width:179.805000px;}
._2b{width:215.199000px;}
._31{width:228.480000px;}
._38{width:295.269000px;}
._32{width:368.118000px;}
._4{width:877.150800px;}
._5{width:1272.264000px;}
._3a{width:2471.053800px;}
._11{width:2492.053800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsf{font-size:29.400000px;}
.fsb{font-size:33.600000px;}
.fs12{font-size:35.700000px;}
.fs3{font-size:42.000000px;}
.fs13{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fs11{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:92.400000px;}
.fsa{font-size:93.600000px;}
.fs10{font-size:95.040000px;}
.fs0{font-size:96.000000px;}
.fse{font-size:103.740000px;}
.fs5{font-size:106.260000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y21{bottom:30.840300px;}
.y1e{bottom:43.968300px;}
.y1f{bottom:44.343300px;}
.y1d{bottom:45.843300px;}
.y20{bottom:45.844800px;}
.ybd{bottom:69.856500px;}
.y11b{bottom:75.109050px;}
.y34{bottom:75.862500px;}
.yeb{bottom:75.871500px;}
.y8b{bottom:75.871800px;}
.y193{bottom:75.910800px;}
.y157{bottom:75.949050px;}
.y16{bottom:77.715000px;}
.yf3{bottom:83.338800px;}
.yf4{bottom:83.369550px;}
.ybc{bottom:87.859500px;}
.y33{bottom:90.867000px;}
.y1b{bottom:91.590000px;}
.y11a{bottom:92.359800px;}
.y192{bottom:93.161550px;}
.y156{bottom:93.199800px;}
.y8a{bottom:95.371800px;}
.y15{bottom:99.795000px;}
.ybb{bottom:105.862500px;}
.y32{bottom:105.871500px;}
.y119{bottom:109.610550px;}
.y191{bottom:110.412300px;}
.y155{bottom:110.450550px;}
.y11{bottom:111.855000px;}
.yde{bottom:112.562400px;}
.y1a{bottom:113.670000px;}
.y89{bottom:114.871800px;}
.yba{bottom:123.865500px;}
.y118{bottom:126.861300px;}
.y190{bottom:127.663050px;}
.y154{bottom:127.701300px;}
.ydd{bottom:130.565400px;}
.y10{bottom:133.935000px;}
.y36{bottom:134.371500px;}
.y88{bottom:134.371800px;}
.y19{bottom:135.750000px;}
.yb9{bottom:141.868500px;}
.y117{bottom:144.112050px;}
.y18f{bottom:144.913800px;}
.y153{bottom:144.952050px;}
.ydc{bottom:148.568400px;}
.y87{bottom:153.871800px;}
.y17{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y35{bottom:156.871500px;}
.y18{bottom:157.830000px;}
.yb8{bottom:159.871500px;}
.y116{bottom:161.362800px;}
.y18e{bottom:162.164550px;}
.y152{bottom:162.202800px;}
.ydb{bottom:166.571400px;}
.yea{bottom:171.871800px;}
.y86{bottom:173.371800px;}
.ycd{bottom:173.377800px;}
.y108{bottom:175.776300px;}
.y39{bottom:176.896500px;}
.y115{bottom:178.613550px;}
.y18d{bottom:179.415300px;}
.y151{bottom:179.453550px;}
.yda{bottom:184.574400px;}
.yc8{bottom:191.371800px;}
.ycc{bottom:192.865800px;}
.y85{bottom:192.871800px;}
.y38{bottom:193.396500px;}
.y107{bottom:193.779300px;}
.y114{bottom:195.864300px;}
.y18c{bottom:196.666050px;}
.y150{bottom:196.704300px;}
.yd9{bottom:202.577400px;}
.y37{bottom:209.896500px;}
.y106{bottom:211.782300px;}
.y84{bottom:212.371800px;}
.y113{bottom:213.115050px;}
.y18b{bottom:213.916800px;}
.y14f{bottom:213.955050px;}
.yd8{bottom:220.580400px;}
.y105{bottom:229.785300px;}
.y112{bottom:230.365800px;}
.yc6{bottom:230.371800px;}
.y18a{bottom:231.167550px;}
.y14e{bottom:231.205800px;}
.y83{bottom:231.871800px;}
.yd7{bottom:238.583400px;}
.y111{bottom:247.616550px;}
.y104{bottom:247.788300px;}
.y189{bottom:248.418300px;}
.y14d{bottom:248.456550px;}
.yef{bottom:250.121550px;}
.yec{bottom:250.125300px;}
.y82{bottom:251.371800px;}
.y51{bottom:254.188500px;}
.yd6{bottom:256.586400px;}
.y110{bottom:264.867300px;}
.y188{bottom:265.669050px;}
.y14c{bottom:265.707300px;}
.y103{bottom:265.791300px;}
.y63{bottom:269.943300px;}
.y50{bottom:270.688500px;}
.y81{bottom:270.871800px;}
.yd5{bottom:274.589400px;}
.y10f{bottom:282.118050px;}
.y187{bottom:282.919800px;}
.y14b{bottom:282.958050px;}
.y102{bottom:283.794300px;}
.y4f{bottom:287.188500px;}
.y80{bottom:290.371800px;}
.y62{bottom:292.443300px;}
.yd4{bottom:292.592400px;}
.y10e{bottom:299.368800px;}
.y186{bottom:300.170550px;}
.y14a{bottom:300.208800px;}
.y101{bottom:301.797300px;}
.y4e{bottom:303.688500px;}
.y7f{bottom:309.871800px;}
.y61{bottom:314.943300px;}
.y10d{bottom:316.619550px;}
.y185{bottom:317.421300px;}
.y149{bottom:317.459550px;}
.ye2{bottom:319.404000px;}
.y4d{bottom:320.188500px;}
.y109{bottom:328.611000px;}
.y7e{bottom:329.371800px;}
.y10c{bottom:333.870300px;}
.y184{bottom:334.672050px;}
.y148{bottom:334.710300px;}
.y4c{bottom:336.688500px;}
.y60{bottom:337.443300px;}
.ya{bottom:344.680500px;}
.y7d{bottom:348.871800px;}
.y10b{bottom:351.121050px;}
.y183{bottom:351.922800px;}
.y147{bottom:351.961050px;}
.y4b{bottom:353.188500px;}
.y5f{bottom:359.943300px;}
.y7c{bottom:368.371800px;}
.y182{bottom:369.173550px;}
.y146{bottom:369.211800px;}
.y4a{bottom:369.688500px;}
.y5e{bottom:382.443300px;}
.y49{bottom:386.188500px;}
.y181{bottom:386.424300px;}
.y145{bottom:386.462550px;}
.yd{bottom:386.490000px;}
.y7b{bottom:387.871800px;}
.y9{bottom:395.689500px;}
.y48{bottom:402.688500px;}
.y180{bottom:403.675050px;}
.y144{bottom:403.713300px;}
.y5d{bottom:404.943300px;}
.yc0{bottom:405.871800px;}
.y7a{bottom:407.371800px;}
.yfe{bottom:409.803450px;}
.y47{bottom:419.188500px;}
.y17f{bottom:420.925800px;}
.y143{bottom:420.964050px;}
.y79{bottom:426.871800px;}
.y5c{bottom:427.443300px;}
.yfd{bottom:427.806450px;}
.yb{bottom:434.850000px;}
.y17e{bottom:438.176550px;}
.y142{bottom:438.214800px;}
.yfc{bottom:445.809450px;}
.y78{bottom:446.371800px;}
.y8{bottom:446.698500px;}
.y5b{bottom:449.943300px;}
.y46{bottom:452.188500px;}
.y17d{bottom:455.427300px;}
.y141{bottom:455.465550px;}
.yfb{bottom:463.812450px;}
.y77{bottom:465.871800px;}
.y45{bottom:468.688500px;}
.y5a{bottom:472.443300px;}
.y17c{bottom:472.678050px;}
.y140{bottom:472.716300px;}
.yfa{bottom:481.815450px;}
.y44{bottom:485.188500px;}
.y76{bottom:485.371800px;}
.y12{bottom:488.055000px;}
.y17b{bottom:489.928800px;}
.y13f{bottom:489.967050px;}
.y100{bottom:490.143150px;}
.y59{bottom:494.943300px;}
.y7{bottom:497.707500px;}
.yf9{bottom:499.818450px;}
.y43{bottom:501.688500px;}
.y75{bottom:504.871800px;}
.yc5{bottom:504.877800px;}
.y17a{bottom:507.179550px;}
.y13e{bottom:507.217800px;}
.y58{bottom:517.443300px;}
.yf8{bottom:517.821450px;}
.y42{bottom:518.188500px;}
.yc4{bottom:522.871800px;}
.yc3{bottom:524.365800px;}
.y74{bottom:524.371800px;}
.ye5{bottom:524.383800px;}
.y179{bottom:524.430300px;}
.y13d{bottom:524.468550px;}
.y41{bottom:534.688500px;}
.yf7{bottom:535.824450px;}
.y13{bottom:538.230000px;}
.y57{bottom:539.943300px;}
.yf0{bottom:540.158550px;}
.y178{bottom:541.681050px;}
.y13c{bottom:541.719300px;}
.y73{bottom:543.871800px;}
.ye4{bottom:543.877800px;}
.y6{bottom:548.716500px;}
.y40{bottom:551.188500px;}
.yf6{bottom:553.827450px;}
.y177{bottom:558.931800px;}
.y13b{bottom:558.970050px;}
.yc2{bottom:561.871800px;}
.y56{bottom:562.443300px;}
.y72{bottom:563.371800px;}
.yf5{bottom:571.830450px;}
.y176{bottom:576.182550px;}
.y13a{bottom:576.220800px;}
.y3f{bottom:579.688500px;}
.y71{bottom:582.871800px;}
.ye9{bottom:582.883800px;}
.y55{bottom:584.943300px;}
.y1c{bottom:589.605000px;}
.y175{bottom:593.433300px;}
.y139{bottom:593.471550px;}
.y3e{bottom:596.188500px;}
.yff{bottom:598.642500px;}
.y5{bottom:599.725500px;}
.y70{bottom:602.371800px;}
.ye8{bottom:602.377800px;}
.y54{bottom:607.443300px;}
.y174{bottom:610.684050px;}
.y138{bottom:610.722300px;}
.y3d{bottom:612.688500px;}
.ye7{bottom:620.371800px;}
.y6f{bottom:621.871800px;}
.y173{bottom:627.934800px;}
.y137{bottom:627.973050px;}
.y3c{bottom:629.188500px;}
.y53{bottom:629.943300px;}
.ye{bottom:631.920000px;}
.y6e{bottom:641.371800px;}
.y172{bottom:645.185550px;}
.y136{bottom:645.223800px;}
.y3b{bottom:645.688500px;}
.y52{bottom:652.443300px;}
.y6d{bottom:660.871800px;}
.y3a{bottom:662.188500px;}
.y171{bottom:662.436300px;}
.y135{bottom:662.474550px;}
.y170{bottom:679.687050px;}
.y134{bottom:679.725300px;}
.y6c{bottom:680.371800px;}
.y16f{bottom:696.937800px;}
.y133{bottom:696.976050px;}
.y6b{bottom:699.871800px;}
.y16e{bottom:714.188550px;}
.y132{bottom:714.226800px;}
.y6a{bottom:719.371800px;}
.ycb{bottom:719.377800px;}
.y31{bottom:720.093300px;}
.ye0{bottom:723.007350px;}
.y16d{bottom:731.439300px;}
.y131{bottom:731.477550px;}
.yca{bottom:737.371800px;}
.y69{bottom:738.871800px;}
.y30{bottom:741.093300px;}
.y16c{bottom:748.690050px;}
.y130{bottom:748.728300px;}
.y68{bottom:758.371800px;}
.y10a{bottom:761.997600px;}
.y2f{bottom:762.093300px;}
.y16b{bottom:765.940800px;}
.y12f{bottom:765.979050px;}
.ye3{bottom:771.205050px;}
.ybf{bottom:776.371800px;}
.y8c{bottom:777.871800px;}
.y4{bottom:778.225500px;}
.y2e{bottom:783.093300px;}
.y16a{bottom:783.191550px;}
.y12e{bottom:783.229800px;}
.y67{bottom:795.871800px;}
.y66{bottom:797.371800px;}
.y169{bottom:800.442300px;}
.y12d{bottom:800.480550px;}
.y2d{bottom:804.093300px;}
.y14{bottom:815.670000px;}
.yb5{bottom:816.871800px;}
.ycf{bottom:816.883800px;}
.y168{bottom:817.693050px;}
.y12c{bottom:817.731300px;}
.y2c{bottom:832.443300px;}
.y2b{bottom:834.693300px;}
.yc7{bottom:834.871800px;}
.y167{bottom:834.943800px;}
.y12b{bottom:834.982050px;}
.yb4{bottom:836.371800px;}
.yce{bottom:836.377800px;}
.y166{bottom:852.194550px;}
.y12a{bottom:852.232800px;}
.yc1{bottom:854.371800px;}
.yb3{bottom:855.871800px;}
.y2a{bottom:859.443300px;}
.y29{bottom:861.693300px;}
.y9b{bottom:863.493300px;}
.y165{bottom:869.445300px;}
.y129{bottom:869.483550px;}
.yb2{bottom:875.371800px;}
.y9a{bottom:879.993300px;}
.yed{bottom:883.776300px;}
.y164{bottom:886.696050px;}
.y128{bottom:886.734300px;}
.yb1{bottom:894.871800px;}
.yd3{bottom:894.889800px;}
.y99{bottom:896.493300px;}
.y163{bottom:903.946800px;}
.y127{bottom:903.985050px;}
.y3{bottom:905.716500px;}
.y98{bottom:912.993300px;}
.yb0{bottom:914.371800px;}
.yd2{bottom:914.383800px;}
.y28{bottom:920.181300px;}
.y162{bottom:921.197550px;}
.y126{bottom:921.235800px;}
.y97{bottom:929.493300px;}
.ybe{bottom:932.371800px;}
.yaf{bottom:933.871800px;}
.yd1{bottom:933.877800px;}
.ya2{bottom:937.743300px;}
.y161{bottom:938.448300px;}
.y125{bottom:938.486550px;}
.y96{bottom:945.993300px;}
.yf1{bottom:947.776050px;}
.yd0{bottom:951.871800px;}
.yae{bottom:953.371800px;}
.y27{bottom:954.687300px;}
.y160{bottom:955.699050px;}
.y124{bottom:955.737300px;}
.ya1{bottom:958.743300px;}
.y19a{bottom:960.243300px;}
.y95{bottom:962.493300px;}
.y2{bottom:964.228500px;}
.yad{bottom:972.871800px;}
.y15f{bottom:972.949800px;}
.y123{bottom:972.988050px;}
.y94{bottom:978.993300px;}
.y199{bottom:979.743300px;}
.y26{bottom:989.193300px;}
.y1{bottom:989.716500px;}
.y15e{bottom:990.200550px;}
.y122{bottom:990.238800px;}
.yac{bottom:992.371800px;}
.ya0{bottom:994.743300px;}
.y93{bottom:995.493300px;}
.yee{bottom:999.043800px;}
.y198{bottom:999.243300px;}
.y15d{bottom:1007.451300px;}
.y121{bottom:1007.489550px;}
.yab{bottom:1011.871800px;}
.y92{bottom:1011.993300px;}
.y9f{bottom:1017.243300px;}
.y197{bottom:1018.743300px;}
.y15c{bottom:1024.702050px;}
.y120{bottom:1024.740300px;}
.y91{bottom:1028.493300px;}
.yb7{bottom:1031.371800px;}
.y196{bottom:1038.243300px;}
.y9e{bottom:1039.743300px;}
.y15b{bottom:1041.952800px;}
.y11f{bottom:1041.991050px;}
.y90{bottom:1044.993300px;}
.ya9{bottom:1049.371800px;}
.ya8{bottom:1050.865800px;}
.yaa{bottom:1050.871800px;}
.ye6{bottom:1050.883800px;}
.y195{bottom:1057.743300px;}
.y15a{bottom:1059.203550px;}
.y11e{bottom:1059.241800px;}
.y25{bottom:1059.693300px;}
.y8f{bottom:1061.493300px;}
.y9d{bottom:1062.243300px;}
.yf2{bottom:1063.520550px;}
.yb6{bottom:1070.371800px;}
.yc9{bottom:1070.377800px;}
.y159{bottom:1076.454300px;}
.y11d{bottom:1076.492550px;}
.ye1{bottom:1076.587350px;}
.y194{bottom:1077.243300px;}
.y8e{bottom:1077.993300px;}
.ydf{bottom:1083.442350px;}
.y9c{bottom:1084.743300px;}
.ya7{bottom:1088.371800px;}
.ya6{bottom:1089.871800px;}
.y158{bottom:1093.705050px;}
.y11c{bottom:1093.743300px;}
.y8d{bottom:1094.493300px;}
.y24{bottom:1100.151150px;}
.y23{bottom:1115.446650px;}
.y22{bottom:1121.896650px;}
.y65{bottom:1123.823550px;}
.ya4{bottom:1123.824300px;}
.ya5{bottom:1129.551600px;}
.y64{bottom:1129.673550px;}
.ya3{bottom:1129.674300px;}
.h14{height:23.721600px;}
.h1d{height:28.392000px;}
.hd{height:29.148000px;}
.hb{height:29.652000px;}
.h26{height:31.770000px;}
.h4{height:33.000000px;}
.h16{height:33.312000px;}
.h15{height:33.888000px;}
.h23{height:35.394000px;}
.h1c{height:36.006000px;}
.hf{height:37.476000px;}
.h17{height:41.640000px;}
.h18{height:42.360000px;}
.h1f{height:44.220000px;}
.h22{height:47.725800px;}
.h25{height:48.145800px;}
.h24{height:48.172800px;}
.h13{height:49.968000px;}
.h1e{height:50.832000px;}
.h28{height:51.540000px;}
.h19{height:56.652000px;}
.h3{height:58.406250px;}
.h20{height:60.600000px;}
.hc{height:65.234400px;}
.h12{height:66.081600px;}
.h2{height:66.750000px;}
.h1b{height:67.098240px;}
.h11{height:67.377600px;}
.h5{height:67.740234px;}
.h1a{height:71.995560px;}
.h10{height:74.952000px;}
.he{height:75.019560px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h27{height:504.850500px;}
.h29{height:774.882000px;}
.h21{height:784.087500px;}
.h9{height:1173.543000px;}
.ha{height:1173.750000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wb{width:755.998500px;}
.wa{width:756.000000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x50{left:60.315600px;}
.xa{left:67.181700px;}
.x1d{left:69.732000px;}
.x4d{left:72.440100px;}
.x3a{left:82.977150px;}
.x33{left:86.675700px;}
.x22{left:89.231700px;}
.x54{left:92.681100px;}
.x52{left:95.232300px;}
.x27{left:97.781100px;}
.x20{left:100.332300px;}
.x28{left:103.181100px;}
.x21{left:105.732150px;}
.x29{left:107.681100px;}
.x1e{left:110.293350px;}
.x1f{left:112.372200px;}
.x2c{left:113.832300px;}
.x4b{left:115.543350px;}
.x4c{left:117.622200px;}
.x31{left:121.181100px;}
.x32{left:124.781100px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.xf{left:193.212000px;}
.x7{left:200.715000px;}
.x19{left:213.143250px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x12{left:223.816800px;}
.x3b{left:258.222150px;}
.x1c{left:310.665000px;}
.x40{left:316.002300px;}
.x10{left:327.421950px;}
.x11{left:329.521950px;}
.x41{left:344.539800px;}
.x13{left:354.693750px;}
.x14{left:358.293750px;}
.x42{left:361.790550px;}
.x1a{left:378.508350px;}
.x1b{left:382.108200px;}
.x44{left:407.052300px;}
.x43{left:424.303050px;}
.x3c{left:442.662150px;}
.x45{left:448.719300px;}
.x2b{left:458.679900px;}
.x23{left:461.235300px;}
.x46{left:470.275050px;}
.x55{left:476.702100px;}
.x2a{left:478.179900px;}
.x24{left:480.725550px;}
.x51{left:484.202100px;}
.x53{left:486.759300px;}
.x38{left:489.302100px;}
.x3e{left:491.853150px;}
.x39{left:494.702100px;}
.x3f{left:497.253150px;}
.x36{left:499.202100px;}
.x2d{left:501.753150px;}
.x37{left:502.802100px;}
.x2e{left:505.353150px;}
.x34{left:512.702100px;}
.x2f{left:515.253150px;}
.x35{left:516.302100px;}
.x30{left:518.853150px;}
.x47{left:534.962550px;}
.x3d{left:548.139150px;}
.x15{left:553.898700px;}
.x16{left:557.498550px;}
.x48{left:581.277300px;}
.x49{left:597.027300px;}
.xe{left:615.503700px;}
.x4a{left:633.027300px;}
.x17{left:672.589950px;}
.x18{left:676.189800px;}
.x4e{left:746.866650px;}
.x25{left:752.116650px;}
.x4f{left:774.849150px;}
.xb{left:777.875850px;}
.xc{left:779.975700px;}
.x26{left:782.178000px;}
.xd{left:793.363200px;}
@media print{
.v5{vertical-align:-24.000000pt;}
.v3{vertical-align:-19.200000pt;}
.v6{vertical-align:-12.266667pt;}
.v1{vertical-align:-5.338667pt;}
.va{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:6.506667pt;}
.v7{vertical-align:14.560000pt;}
.v8{vertical-align:20.400000pt;}
.v4{vertical-align:24.000000pt;}
.v2{vertical-align:28.800000pt;}
.lsa{letter-spacing:-1.546667pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.323733pt;}
.lsd{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.560000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.784000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls7{letter-spacing:1.120000pt;}
.ls20{letter-spacing:5.333333pt;}
.ls21{letter-spacing:5.866667pt;}
.lse{letter-spacing:6.346667pt;}
.ls2{letter-spacing:6.400000pt;}
.lsb{letter-spacing:8.533333pt;}
.ls1{letter-spacing:9.600000pt;}
.ls17{letter-spacing:89.135467pt;}
.ls16{letter-spacing:89.136000pt;}
.ls18{letter-spacing:107.068800pt;}
.ls1a{letter-spacing:120.188800pt;}
.ls1b{letter-spacing:169.659733pt;}
.ls19{letter-spacing:200.713067pt;}
.ws149{word-spacing:-19.200000pt;}
.ws148{word-spacing:-18.666667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-14.453333pt;}
.ws1a{word-spacing:-14.133333pt;}
.ws66{word-spacing:-13.813333pt;}
.ws86{word-spacing:-13.493333pt;}
.ws67{word-spacing:-13.333333pt;}
.ws1b{word-spacing:-13.066667pt;}
.ws12d{word-spacing:-12.853333pt;}
.ws147{word-spacing:-12.693333pt;}
.ws11c{word-spacing:-11.333333pt;}
.ws3{word-spacing:-11.200000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-10.117333pt;}
.ws27{word-spacing:-9.893333pt;}
.ws38{word-spacing:-9.445333pt;}
.ws2{word-spacing:-9.333333pt;}
.ws11d{word-spacing:-8.997333pt;}
.ws12e{word-spacing:-8.885333pt;}
.ws65{word-spacing:-8.533333pt;}
.ws113{word-spacing:-7.933333pt;}
.ws5{word-spacing:-7.466667pt;}
.ws19{word-spacing:-6.533333pt;}
.ws1f{word-spacing:-6.400000pt;}
.ws109{word-spacing:-5.440000pt;}
.ws14f{word-spacing:-5.280000pt;}
.ws101{word-spacing:-5.066667pt;}
.ws13f{word-spacing:-4.960000pt;}
.wsfc{word-spacing:-4.106667pt;}
.wse8{word-spacing:-3.626667pt;}
.wsb2{word-spacing:-3.413333pt;}
.ws110{word-spacing:-3.253333pt;}
.ws150{word-spacing:-3.040000pt;}
.ws157{word-spacing:-2.986667pt;}
.ws158{word-spacing:-2.666667pt;}
.ws7d{word-spacing:-2.613333pt;}
.ws18d{word-spacing:-2.584000pt;}
.ws26{word-spacing:-2.506667pt;}
.ws9e{word-spacing:-2.453333pt;}
.ws10f{word-spacing:-2.400000pt;}
.ws14b{word-spacing:-2.346667pt;}
.wsa8{word-spacing:-2.293333pt;}
.ws126{word-spacing:-2.240000pt;}
.ws155{word-spacing:-2.186667pt;}
.ws132{word-spacing:-2.133333pt;}
.ws17f{word-spacing:-2.085333pt;}
.ws137{word-spacing:-2.080000pt;}
.ws112{word-spacing:-2.026667pt;}
.ws15d{word-spacing:-1.994667pt;}
.ws121{word-spacing:-1.973333pt;}
.ws15{word-spacing:-1.920000pt;}
.ws1a2{word-spacing:-1.904000pt;}
.ws28{word-spacing:-1.866667pt;}
.ws8b{word-spacing:-1.813333pt;}
.ws13e{word-spacing:-1.760000pt;}
.wsb4{word-spacing:-1.706667pt;}
.wsba{word-spacing:-1.600000pt;}
.ws19e{word-spacing:-1.586667pt;}
.ws135{word-spacing:-1.546667pt;}
.ws15b{word-spacing:-1.496000pt;}
.ws60{word-spacing:-1.493333pt;}
.ws133{word-spacing:-1.440000pt;}
.ws188{word-spacing:-1.405333pt;}
.ws75{word-spacing:-1.386667pt;}
.ws167{word-spacing:-1.360000pt;}
.ws50{word-spacing:-1.333333pt;}
.ws9{word-spacing:-1.280000pt;}
.ws30{word-spacing:-1.226667pt;}
.ws173{word-spacing:-1.178667pt;}
.ws74{word-spacing:-1.173333pt;}
.ws39{word-spacing:-1.120000pt;}
.ws31{word-spacing:-1.013333pt;}
.ws19d{word-spacing:-0.997333pt;}
.ws53{word-spacing:-0.960000pt;}
.ws189{word-spacing:-0.952000pt;}
.wsc{word-spacing:-0.906667pt;}
.ws186{word-spacing:-0.861333pt;}
.ws51{word-spacing:-0.853333pt;}
.ws187{word-spacing:-0.816000pt;}
.wsa9{word-spacing:-0.800000pt;}
.ws56{word-spacing:-0.784000pt;}
.ws22{word-spacing:-0.746667pt;}
.ws3a{word-spacing:-0.693333pt;}
.ws17d{word-spacing:-0.680000pt;}
.wsae{word-spacing:-0.640000pt;}
.wsa7{word-spacing:-0.586667pt;}
.wscb{word-spacing:-0.560000pt;}
.ws6f{word-spacing:-0.533333pt;}
.ws16c{word-spacing:-0.498667pt;}
.wsc7{word-spacing:-0.480000pt;}
.wsb9{word-spacing:-0.426667pt;}
.ws87{word-spacing:-0.373333pt;}
.ws6b{word-spacing:-0.336000pt;}
.wsbc{word-spacing:-0.320000pt;}
.ws14e{word-spacing:-0.266667pt;}
.ws19b{word-spacing:-0.226667pt;}
.ws24{word-spacing:-0.213333pt;}
.wsd2{word-spacing:-0.192000pt;}
.ws11f{word-spacing:-0.160000pt;}
.ws182{word-spacing:-0.136000pt;}
.ws34{word-spacing:-0.112000pt;}
.ws13d{word-spacing:-0.106667pt;}
.ws99{word-spacing:-0.053333pt;}
.ws165{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.053333pt;}
.ws4e{word-spacing:0.106667pt;}
.ws17a{word-spacing:0.136000pt;}
.ws45{word-spacing:0.160000pt;}
.ws175{word-spacing:0.181333pt;}
.ws9d{word-spacing:0.213333pt;}
.ws15c{word-spacing:0.226667pt;}
.wsb7{word-spacing:0.266667pt;}
.ws96{word-spacing:0.320000pt;}
.ws4b{word-spacing:0.373333pt;}
.wsd6{word-spacing:0.426667pt;}
.ws90{word-spacing:0.480000pt;}
.ws10b{word-spacing:0.533333pt;}
.ws183{word-spacing:0.544000pt;}
.ws8c{word-spacing:0.560000pt;}
.ws100{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws10e{word-spacing:0.693333pt;}
.ws172{word-spacing:0.725333pt;}
.ws7e{word-spacing:0.746667pt;}
.ws9f{word-spacing:0.800000pt;}
.ws61{word-spacing:0.853333pt;}
.ws18b{word-spacing:0.861333pt;}
.wsa0{word-spacing:0.906667pt;}
.wsb8{word-spacing:0.960000pt;}
.ws162{word-spacing:0.997333pt;}
.ws4a{word-spacing:1.013333pt;}
.ws185{word-spacing:1.042667pt;}
.ws3b{word-spacing:1.066667pt;}
.ws5b{word-spacing:1.120000pt;}
.ws32{word-spacing:1.173333pt;}
.ws160{word-spacing:1.224000pt;}
.ws3c{word-spacing:1.226667pt;}
.ws33{word-spacing:1.280000pt;}
.ws18c{word-spacing:1.314667pt;}
.ws156{word-spacing:1.333333pt;}
.ws5c{word-spacing:1.386667pt;}
.ws1a8{word-spacing:1.405333pt;}
.ws3d{word-spacing:1.440000pt;}
.wsea{word-spacing:1.493333pt;}
.wsab{word-spacing:1.546667pt;}
.ws5e{word-spacing:1.600000pt;}
.ws43{word-spacing:1.653333pt;}
.wsd5{word-spacing:1.706667pt;}
.ws12f{word-spacing:1.760000pt;}
.ws8{word-spacing:1.813333pt;}
.ws13{word-spacing:1.866667pt;}
.wse{word-spacing:1.920000pt;}
.ws164{word-spacing:1.949333pt;}
.wsac{word-spacing:1.973333pt;}
.ws52{word-spacing:2.026667pt;}
.ws37{word-spacing:2.080000pt;}
.ws17e{word-spacing:2.085333pt;}
.ws7c{word-spacing:2.133333pt;}
.ws16b{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.186667pt;}
.ws18f{word-spacing:2.221333pt;}
.ws35{word-spacing:2.240000pt;}
.ws3f{word-spacing:2.293333pt;}
.wscf{word-spacing:2.346667pt;}
.ws180{word-spacing:2.357333pt;}
.wsb{word-spacing:2.400000pt;}
.wsa5{word-spacing:2.453333pt;}
.ws196{word-spacing:2.493333pt;}
.ws42{word-spacing:2.506667pt;}
.ws7b{word-spacing:2.613333pt;}
.ws15f{word-spacing:2.629333pt;}
.ws78{word-spacing:2.666667pt;}
.wsfd{word-spacing:2.720000pt;}
.ws17b{word-spacing:2.765333pt;}
.ws79{word-spacing:2.773333pt;}
.wsd1{word-spacing:2.826667pt;}
.ws11{word-spacing:2.880000pt;}
.ws1a5{word-spacing:2.901333pt;}
.ws8d{word-spacing:2.933333pt;}
.ws190{word-spacing:2.946667pt;}
.ws80{word-spacing:2.986667pt;}
.ws14{word-spacing:3.040000pt;}
.ws91{word-spacing:3.093333pt;}
.ws3e{word-spacing:3.146667pt;}
.ws18a{word-spacing:3.173333pt;}
.ws12b{word-spacing:3.200000pt;}
.ws54{word-spacing:3.253333pt;}
.ws141{word-spacing:3.306667pt;}
.ws106{word-spacing:3.360000pt;}
.wsfe{word-spacing:3.413333pt;}
.ws16a{word-spacing:3.445333pt;}
.ws128{word-spacing:3.466667pt;}
.ws64{word-spacing:3.520000pt;}
.ws170{word-spacing:3.536000pt;}
.ws88{word-spacing:3.573333pt;}
.wse4{word-spacing:3.626667pt;}
.ws6d{word-spacing:3.680000pt;}
.ws1a7{word-spacing:3.717333pt;}
.ws9c{word-spacing:3.733333pt;}
.wsa{word-spacing:3.786667pt;}
.wsc9{word-spacing:3.840000pt;}
.ws169{word-spacing:3.898667pt;}
.ws145{word-spacing:3.946667pt;}
.ws13c{word-spacing:4.000000pt;}
.wsc8{word-spacing:4.053333pt;}
.ws4d{word-spacing:4.106667pt;}
.ws13a{word-spacing:4.160000pt;}
.wsc1{word-spacing:4.266667pt;}
.ws14a{word-spacing:4.320000pt;}
.ws176{word-spacing:4.352000pt;}
.wse2{word-spacing:4.373333pt;}
.ws2b{word-spacing:4.426667pt;}
.ws168{word-spacing:4.442667pt;}
.ws136{word-spacing:4.480000pt;}
.ws8e{word-spacing:4.586667pt;}
.ws194{word-spacing:4.624000pt;}
.ws29{word-spacing:4.640000pt;}
.ws102{word-spacing:4.693333pt;}
.ws195{word-spacing:4.714667pt;}
.ws85{word-spacing:4.746667pt;}
.ws16e{word-spacing:4.760000pt;}
.ws72{word-spacing:4.800000pt;}
.ws59{word-spacing:4.853333pt;}
.ws8a{word-spacing:4.906667pt;}
.ws62{word-spacing:4.960000pt;}
.ws1a0{word-spacing:4.986667pt;}
.ws163{word-spacing:5.032000pt;}
.wsc0{word-spacing:5.066667pt;}
.wsc2{word-spacing:5.120000pt;}
.wseb{word-spacing:5.173333pt;}
.wsb3{word-spacing:5.226667pt;}
.wsb1{word-spacing:5.280000pt;}
.ws18e{word-spacing:5.304000pt;}
.ws2d{word-spacing:5.333333pt;}
.ws83{word-spacing:5.386667pt;}
.ws71{word-spacing:5.493333pt;}
.wsd9{word-spacing:5.546667pt;}
.wsc6{word-spacing:5.600000pt;}
.ws108{word-spacing:5.653333pt;}
.ws17{word-spacing:5.706667pt;}
.ws40{word-spacing:5.760000pt;}
.wsdf{word-spacing:5.813333pt;}
.ws1a4{word-spacing:5.848000pt;}
.wsa3{word-spacing:5.866667pt;}
.wsa1{word-spacing:5.920000pt;}
.ws174{word-spacing:5.938667pt;}
.ws25{word-spacing:5.973333pt;}
.wscd{word-spacing:6.026667pt;}
.wsfa{word-spacing:6.080000pt;}
.ws171{word-spacing:6.120000pt;}
.ws2c{word-spacing:6.133333pt;}
.wsd{word-spacing:6.186667pt;}
.wsf3{word-spacing:6.240000pt;}
.wsf1{word-spacing:6.293333pt;}
.ws46{word-spacing:6.346667pt;}
.ws12a{word-spacing:6.400000pt;}
.ws107{word-spacing:6.453333pt;}
.ws18{word-spacing:6.506667pt;}
.ws58{word-spacing:6.560000pt;}
.wsa6{word-spacing:6.613333pt;}
.ws47{word-spacing:6.666667pt;}
.ws2a{word-spacing:6.720000pt;}
.ws23{word-spacing:6.773333pt;}
.ws94{word-spacing:6.826667pt;}
.ws36{word-spacing:6.880000pt;}
.ws70{word-spacing:6.933333pt;}
.ws73{word-spacing:6.986667pt;}
.ws125{word-spacing:7.040000pt;}
.ws1a3{word-spacing:7.072000pt;}
.ws12{word-spacing:7.093333pt;}
.wsad{word-spacing:7.146667pt;}
.ws181{word-spacing:7.162667pt;}
.ws127{word-spacing:7.200000pt;}
.ws7a{word-spacing:7.253333pt;}
.wsf{word-spacing:7.306667pt;}
.wsa4{word-spacing:7.360000pt;}
.ws97{word-spacing:7.413333pt;}
.ws10{word-spacing:7.466667pt;}
.ws7f{word-spacing:7.520000pt;}
.ws192{word-spacing:7.525333pt;}
.ws8f{word-spacing:7.573333pt;}
.ws16{word-spacing:7.626667pt;}
.ws44{word-spacing:7.680000pt;}
.ws19c{word-spacing:7.706667pt;}
.ws143{word-spacing:7.733333pt;}
.ws49{word-spacing:7.786667pt;}
.ws1a6{word-spacing:7.797333pt;}
.ws6e{word-spacing:7.840000pt;}
.ws179{word-spacing:7.842667pt;}
.wsb5{word-spacing:7.893333pt;}
.ws21{word-spacing:7.946667pt;}
.ws5d{word-spacing:8.000000pt;}
.ws123{word-spacing:8.053333pt;}
.wse5{word-spacing:8.106667pt;}
.ws57{word-spacing:8.160000pt;}
.ws199{word-spacing:8.296000pt;}
.ws105{word-spacing:8.320000pt;}
.ws161{word-spacing:8.341333pt;}
.ws82{word-spacing:8.373333pt;}
.ws131{word-spacing:8.426667pt;}
.ws48{word-spacing:8.480000pt;}
.wsec{word-spacing:8.533333pt;}
.wsa2{word-spacing:8.586667pt;}
.wsd4{word-spacing:8.640000pt;}
.ws103{word-spacing:8.693333pt;}
.ws98{word-spacing:8.746667pt;}
.ws16d{word-spacing:8.794667pt;}
.ws16f{word-spacing:8.840000pt;}
.ws77{word-spacing:8.853333pt;}
.ws144{word-spacing:8.906667pt;}
.ws130{word-spacing:9.013333pt;}
.wsd0{word-spacing:9.066667pt;}
.ws89{word-spacing:9.226667pt;}
.ws134{word-spacing:9.280000pt;}
.ws68{word-spacing:9.333333pt;}
.ws69{word-spacing:9.386667pt;}
.wsd8{word-spacing:9.440000pt;}
.wsb0{word-spacing:9.706667pt;}
.wsfb{word-spacing:9.760000pt;}
.wsf6{word-spacing:9.813333pt;}
.wsf9{word-spacing:9.866667pt;}
.wsc4{word-spacing:9.920000pt;}
.ws9b{word-spacing:9.973333pt;}
.wse0{word-spacing:10.026667pt;}
.ws122{word-spacing:10.133333pt;}
.wsdd{word-spacing:10.186667pt;}
.ws166{word-spacing:10.200000pt;}
.ws154{word-spacing:10.240000pt;}
.ws10d{word-spacing:10.346667pt;}
.wsf5{word-spacing:10.506667pt;}
.wsd7{word-spacing:10.560000pt;}
.ws19f{word-spacing:10.562667pt;}
.wscc{word-spacing:10.613333pt;}
.ws198{word-spacing:10.653333pt;}
.ws13b{word-spacing:10.666667pt;}
.wse6{word-spacing:10.720000pt;}
.ws197{word-spacing:10.744000pt;}
.ws63{word-spacing:10.773333pt;}
.ws92{word-spacing:10.826667pt;}
.wsbe{word-spacing:10.880000pt;}
.ws41{word-spacing:10.933333pt;}
.wsd3{word-spacing:11.093333pt;}
.ws111{word-spacing:11.200000pt;}
.ws95{word-spacing:11.360000pt;}
.wsf4{word-spacing:11.520000pt;}
.wsb6{word-spacing:11.626667pt;}
.ws1a1{word-spacing:11.650667pt;}
.wsdc{word-spacing:11.680000pt;}
.ws4c{word-spacing:11.840000pt;}
.wsed{word-spacing:11.893333pt;}
.wse3{word-spacing:12.000000pt;}
.ws184{word-spacing:12.013333pt;}
.wsaa{word-spacing:12.266667pt;}
.ws191{word-spacing:12.285333pt;}
.wsc5{word-spacing:12.373333pt;}
.ws15a{word-spacing:12.376000pt;}
.ws5a{word-spacing:12.480000pt;}
.wsda{word-spacing:12.533333pt;}
.wsca{word-spacing:12.693333pt;}
.ws93{word-spacing:12.746667pt;}
.ws17c{word-spacing:12.874667pt;}
.ws5f{word-spacing:12.960000pt;}
.wse9{word-spacing:13.173333pt;}
.ws142{word-spacing:13.493333pt;}
.ws76{word-spacing:13.760000pt;}
.wsc3{word-spacing:13.813333pt;}
.ws9a{word-spacing:13.973333pt;}
.ws152{word-spacing:14.026667pt;}
.ws55{word-spacing:14.240000pt;}
.wsff{word-spacing:14.400000pt;}
.ws81{word-spacing:14.453333pt;}
.wsf0{word-spacing:14.560000pt;}
.ws178{word-spacing:14.688000pt;}
.wsaf{word-spacing:14.773333pt;}
.wsce{word-spacing:14.986667pt;}
.ws159{word-spacing:15.005333pt;}
.ws104{word-spacing:15.200000pt;}
.ws146{word-spacing:15.306667pt;}
.wsbb{word-spacing:15.626667pt;}
.wse1{word-spacing:15.680000pt;}
.wsbd{word-spacing:15.893333pt;}
.ws6a{word-spacing:15.946667pt;}
.wsbf{word-spacing:16.106667pt;}
.ws84{word-spacing:16.160000pt;}
.ws138{word-spacing:16.266667pt;}
.ws140{word-spacing:16.480000pt;}
.ws139{word-spacing:16.640000pt;}
.wsdb{word-spacing:16.746667pt;}
.wsf2{word-spacing:16.800000pt;}
.ws153{word-spacing:16.906667pt;}
.wsee{word-spacing:17.013333pt;}
.ws124{word-spacing:17.760000pt;}
.ws120{word-spacing:18.026667pt;}
.ws10a{word-spacing:18.506667pt;}
.ws177{word-spacing:18.768000pt;}
.ws19a{word-spacing:19.856000pt;}
.wsef{word-spacing:20.320000pt;}
.ws193{word-spacing:20.853333pt;}
.wsde{word-spacing:21.493333pt;}
.ws15e{word-spacing:21.533333pt;}
.ws14d{word-spacing:22.026667pt;}
.wse7{word-spacing:22.400000pt;}
.ws10c{word-spacing:23.200000pt;}
.ws151{word-spacing:24.373333pt;}
.ws12c{word-spacing:25.066667pt;}
.ws6c{word-spacing:26.400000pt;}
.ws7{word-spacing:27.066667pt;}
.ws1e{word-spacing:28.000000pt;}
.ws14c{word-spacing:33.546667pt;}
.ws20{word-spacing:48.000000pt;}
.ws119{word-spacing:66.141333pt;}
.ws118{word-spacing:67.546667pt;}
.ws115{word-spacing:74.210667pt;}
.ws11b{word-spacing:106.488000pt;}
.ws11a{word-spacing:110.885333pt;}
.ws114{word-spacing:139.128000pt;}
.ws117{word-spacing:183.872000pt;}
.ws116{word-spacing:185.368000pt;}
.wsf7{word-spacing:548.053333pt;}
.wsf8{word-spacing:564.426667pt;}
.ws11e{word-spacing:990.880000pt;}
.ws129{word-spacing:1440.586667pt;}
._41{margin-left:-33.002667pt;}
._3b{margin-left:-31.306667pt;}
._22{margin-left:-28.689600pt;}
._15{margin-left:-27.185067pt;}
._20{margin-left:-24.160000pt;}
._18{margin-left:-23.200000pt;}
._28{margin-left:-22.206400pt;}
._e{margin-left:-20.426667pt;}
._14{margin-left:-18.880000pt;}
._13{margin-left:-17.280000pt;}
._d{margin-left:-16.213333pt;}
._f{margin-left:-15.146667pt;}
._1f{margin-left:-14.080000pt;}
._1c{margin-left:-13.163200pt;}
._12{margin-left:-11.847467pt;}
._b{margin-left:-10.513067pt;}
._a{margin-left:-9.176000pt;}
._2a{margin-left:-8.053333pt;}
._2{margin-left:-6.536533pt;}
._9{margin-left:-4.864000pt;}
._3{margin-left:-3.808000pt;}
._8{margin-left:-2.786133pt;}
._1{margin-left:-1.774933pt;}
._6{width:1.024533pt;}
._c{width:2.405333pt;}
._10{width:3.584000pt;}
._0{width:4.966400pt;}
._1a{width:6.537600pt;}
._1b{width:8.261333pt;}
._19{width:9.402667pt;}
._23{width:10.581333pt;}
._40{width:11.514667pt;}
._24{width:12.412267pt;}
._1d{width:13.609600pt;}
._26{width:14.774400pt;}
._21{width:15.866667pt;}
._27{width:16.944000pt;}
._3f{width:18.828800pt;}
._29{width:19.822933pt;}
._3d{width:21.134400pt;}
._3e{width:22.106667pt;}
._42{width:23.194667pt;}
._3c{width:24.309333pt;}
._25{width:27.578667pt;}
._16{width:30.688000pt;}
._1e{width:34.000000pt;}
._7{width:36.400000pt;}
._17{width:48.000000pt;}
._2e{width:61.494400pt;}
._33{width:77.474667pt;}
._2d{width:82.036800pt;}
._39{width:83.428800pt;}
._34{width:109.616000pt;}
._37{width:119.544000pt;}
._2f{width:122.581333pt;}
._35{width:123.714667pt;}
._36{width:124.968000pt;}
._30{width:140.533333pt;}
._2c{width:159.826667pt;}
._2b{width:191.288000pt;}
._31{width:203.093333pt;}
._38{width:262.461333pt;}
._32{width:327.216000pt;}
._4{width:779.689600pt;}
._5{width:1130.901333pt;}
._3a{width:2196.492267pt;}
._11{width:2215.158933pt;}
.fsf{font-size:26.133333pt;}
.fsb{font-size:29.866667pt;}
.fs12{font-size:31.733333pt;}
.fs3{font-size:37.333333pt;}
.fs13{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fs11{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:82.133333pt;}
.fsa{font-size:83.200000pt;}
.fs10{font-size:84.480000pt;}
.fs0{font-size:85.333333pt;}
.fse{font-size:92.213333pt;}
.fs5{font-size:94.453333pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y21{bottom:27.413600pt;}
.y1e{bottom:39.082933pt;}
.y1f{bottom:39.416267pt;}
.y1d{bottom:40.749600pt;}
.y20{bottom:40.750933pt;}
.ybd{bottom:62.094667pt;}
.y11b{bottom:66.763600pt;}
.y34{bottom:67.433333pt;}
.yeb{bottom:67.441333pt;}
.y8b{bottom:67.441600pt;}
.y193{bottom:67.476267pt;}
.y157{bottom:67.510267pt;}
.y16{bottom:69.080000pt;}
.yf3{bottom:74.078933pt;}
.yf4{bottom:74.106267pt;}
.ybc{bottom:78.097333pt;}
.y33{bottom:80.770667pt;}
.y1b{bottom:81.413333pt;}
.y11a{bottom:82.097600pt;}
.y192{bottom:82.810267pt;}
.y156{bottom:82.844267pt;}
.y8a{bottom:84.774933pt;}
.y15{bottom:88.706667pt;}
.ybb{bottom:94.100000pt;}
.y32{bottom:94.108000pt;}
.y119{bottom:97.431600pt;}
.y191{bottom:98.144267pt;}
.y155{bottom:98.178267pt;}
.y11{bottom:99.426667pt;}
.yde{bottom:100.055467pt;}
.y1a{bottom:101.040000pt;}
.y89{bottom:102.108267pt;}
.yba{bottom:110.102667pt;}
.y118{bottom:112.765600pt;}
.y190{bottom:113.478267pt;}
.y154{bottom:113.512267pt;}
.ydd{bottom:116.058133pt;}
.y10{bottom:119.053333pt;}
.y36{bottom:119.441333pt;}
.y88{bottom:119.441600pt;}
.y19{bottom:120.666667pt;}
.yb9{bottom:126.105333pt;}
.y117{bottom:128.099600pt;}
.y18f{bottom:128.812267pt;}
.y153{bottom:128.846267pt;}
.ydc{bottom:132.060800pt;}
.y87{bottom:136.774933pt;}
.y17{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y35{bottom:139.441333pt;}
.y18{bottom:140.293333pt;}
.yb8{bottom:142.108000pt;}
.y116{bottom:143.433600pt;}
.y18e{bottom:144.146267pt;}
.y152{bottom:144.180267pt;}
.ydb{bottom:148.063467pt;}
.yea{bottom:152.774933pt;}
.y86{bottom:154.108267pt;}
.ycd{bottom:154.113600pt;}
.y108{bottom:156.245600pt;}
.y39{bottom:157.241333pt;}
.y115{bottom:158.767600pt;}
.y18d{bottom:159.480267pt;}
.y151{bottom:159.514267pt;}
.yda{bottom:164.066133pt;}
.yc8{bottom:170.108267pt;}
.ycc{bottom:171.436267pt;}
.y85{bottom:171.441600pt;}
.y38{bottom:171.908000pt;}
.y107{bottom:172.248267pt;}
.y114{bottom:174.101600pt;}
.y18c{bottom:174.814267pt;}
.y150{bottom:174.848267pt;}
.yd9{bottom:180.068800pt;}
.y37{bottom:186.574667pt;}
.y106{bottom:188.250933pt;}
.y84{bottom:188.774933pt;}
.y113{bottom:189.435600pt;}
.y18b{bottom:190.148267pt;}
.y14f{bottom:190.182267pt;}
.yd8{bottom:196.071467pt;}
.y105{bottom:204.253600pt;}
.y112{bottom:204.769600pt;}
.yc6{bottom:204.774933pt;}
.y18a{bottom:205.482267pt;}
.y14e{bottom:205.516267pt;}
.y83{bottom:206.108267pt;}
.yd7{bottom:212.074133pt;}
.y111{bottom:220.103600pt;}
.y104{bottom:220.256267pt;}
.y189{bottom:220.816267pt;}
.y14d{bottom:220.850267pt;}
.yef{bottom:222.330267pt;}
.yec{bottom:222.333600pt;}
.y82{bottom:223.441600pt;}
.y51{bottom:225.945333pt;}
.yd6{bottom:228.076800pt;}
.y110{bottom:235.437600pt;}
.y188{bottom:236.150267pt;}
.y14c{bottom:236.184267pt;}
.y103{bottom:236.258933pt;}
.y63{bottom:239.949600pt;}
.y50{bottom:240.612000pt;}
.y81{bottom:240.774933pt;}
.yd5{bottom:244.079467pt;}
.y10f{bottom:250.771600pt;}
.y187{bottom:251.484267pt;}
.y14b{bottom:251.518267pt;}
.y102{bottom:252.261600pt;}
.y4f{bottom:255.278667pt;}
.y80{bottom:258.108267pt;}
.y62{bottom:259.949600pt;}
.yd4{bottom:260.082133pt;}
.y10e{bottom:266.105600pt;}
.y186{bottom:266.818267pt;}
.y14a{bottom:266.852267pt;}
.y101{bottom:268.264267pt;}
.y4e{bottom:269.945333pt;}
.y7f{bottom:275.441600pt;}
.y61{bottom:279.949600pt;}
.y10d{bottom:281.439600pt;}
.y185{bottom:282.152267pt;}
.y149{bottom:282.186267pt;}
.ye2{bottom:283.914667pt;}
.y4d{bottom:284.612000pt;}
.y109{bottom:292.098667pt;}
.y7e{bottom:292.774933pt;}
.y10c{bottom:296.773600pt;}
.y184{bottom:297.486267pt;}
.y148{bottom:297.520267pt;}
.y4c{bottom:299.278667pt;}
.y60{bottom:299.949600pt;}
.ya{bottom:306.382667pt;}
.y7d{bottom:310.108267pt;}
.y10b{bottom:312.107600pt;}
.y183{bottom:312.820267pt;}
.y147{bottom:312.854267pt;}
.y4b{bottom:313.945333pt;}
.y5f{bottom:319.949600pt;}
.y7c{bottom:327.441600pt;}
.y182{bottom:328.154267pt;}
.y146{bottom:328.188267pt;}
.y4a{bottom:328.612000pt;}
.y5e{bottom:339.949600pt;}
.y49{bottom:343.278667pt;}
.y181{bottom:343.488267pt;}
.y145{bottom:343.522267pt;}
.yd{bottom:343.546667pt;}
.y7b{bottom:344.774933pt;}
.y9{bottom:351.724000pt;}
.y48{bottom:357.945333pt;}
.y180{bottom:358.822267pt;}
.y144{bottom:358.856267pt;}
.y5d{bottom:359.949600pt;}
.yc0{bottom:360.774933pt;}
.y7a{bottom:362.108267pt;}
.yfe{bottom:364.269733pt;}
.y47{bottom:372.612000pt;}
.y17f{bottom:374.156267pt;}
.y143{bottom:374.190267pt;}
.y79{bottom:379.441600pt;}
.y5c{bottom:379.949600pt;}
.yfd{bottom:380.272400pt;}
.yb{bottom:386.533333pt;}
.y17e{bottom:389.490267pt;}
.y142{bottom:389.524267pt;}
.yfc{bottom:396.275067pt;}
.y78{bottom:396.774933pt;}
.y8{bottom:397.065333pt;}
.y5b{bottom:399.949600pt;}
.y46{bottom:401.945333pt;}
.y17d{bottom:404.824267pt;}
.y141{bottom:404.858267pt;}
.yfb{bottom:412.277733pt;}
.y77{bottom:414.108267pt;}
.y45{bottom:416.612000pt;}
.y5a{bottom:419.949600pt;}
.y17c{bottom:420.158267pt;}
.y140{bottom:420.192267pt;}
.yfa{bottom:428.280400pt;}
.y44{bottom:431.278667pt;}
.y76{bottom:431.441600pt;}
.y12{bottom:433.826667pt;}
.y17b{bottom:435.492267pt;}
.y13f{bottom:435.526267pt;}
.y100{bottom:435.682800pt;}
.y59{bottom:439.949600pt;}
.y7{bottom:442.406667pt;}
.yf9{bottom:444.283067pt;}
.y43{bottom:445.945333pt;}
.y75{bottom:448.774933pt;}
.yc5{bottom:448.780267pt;}
.y17a{bottom:450.826267pt;}
.y13e{bottom:450.860267pt;}
.y58{bottom:459.949600pt;}
.yf8{bottom:460.285733pt;}
.y42{bottom:460.612000pt;}
.yc4{bottom:464.774933pt;}
.yc3{bottom:466.102933pt;}
.y74{bottom:466.108267pt;}
.ye5{bottom:466.118933pt;}
.y179{bottom:466.160267pt;}
.y13d{bottom:466.194267pt;}
.y41{bottom:475.278667pt;}
.yf7{bottom:476.288400pt;}
.y13{bottom:478.426667pt;}
.y57{bottom:479.949600pt;}
.yf0{bottom:480.140933pt;}
.y178{bottom:481.494267pt;}
.y13c{bottom:481.528267pt;}
.y73{bottom:483.441600pt;}
.ye4{bottom:483.446933pt;}
.y6{bottom:487.748000pt;}
.y40{bottom:489.945333pt;}
.yf6{bottom:492.291067pt;}
.y177{bottom:496.828267pt;}
.y13b{bottom:496.862267pt;}
.yc2{bottom:499.441600pt;}
.y56{bottom:499.949600pt;}
.y72{bottom:500.774933pt;}
.yf5{bottom:508.293733pt;}
.y176{bottom:512.162267pt;}
.y13a{bottom:512.196267pt;}
.y3f{bottom:515.278667pt;}
.y71{bottom:518.108267pt;}
.ye9{bottom:518.118933pt;}
.y55{bottom:519.949600pt;}
.y1c{bottom:524.093333pt;}
.y175{bottom:527.496267pt;}
.y139{bottom:527.530267pt;}
.y3e{bottom:529.945333pt;}
.yff{bottom:532.126667pt;}
.y5{bottom:533.089333pt;}
.y70{bottom:535.441600pt;}
.ye8{bottom:535.446933pt;}
.y54{bottom:539.949600pt;}
.y174{bottom:542.830267pt;}
.y138{bottom:542.864267pt;}
.y3d{bottom:544.612000pt;}
.ye7{bottom:551.441600pt;}
.y6f{bottom:552.774933pt;}
.y173{bottom:558.164267pt;}
.y137{bottom:558.198267pt;}
.y3c{bottom:559.278667pt;}
.y53{bottom:559.949600pt;}
.ye{bottom:561.706667pt;}
.y6e{bottom:570.108267pt;}
.y172{bottom:573.498267pt;}
.y136{bottom:573.532267pt;}
.y3b{bottom:573.945333pt;}
.y52{bottom:579.949600pt;}
.y6d{bottom:587.441600pt;}
.y3a{bottom:588.612000pt;}
.y171{bottom:588.832267pt;}
.y135{bottom:588.866267pt;}
.y170{bottom:604.166267pt;}
.y134{bottom:604.200267pt;}
.y6c{bottom:604.774933pt;}
.y16f{bottom:619.500267pt;}
.y133{bottom:619.534267pt;}
.y6b{bottom:622.108267pt;}
.y16e{bottom:634.834267pt;}
.y132{bottom:634.868267pt;}
.y6a{bottom:639.441600pt;}
.ycb{bottom:639.446933pt;}
.y31{bottom:640.082933pt;}
.ye0{bottom:642.673200pt;}
.y16d{bottom:650.168267pt;}
.y131{bottom:650.202267pt;}
.yca{bottom:655.441600pt;}
.y69{bottom:656.774933pt;}
.y30{bottom:658.749600pt;}
.y16c{bottom:665.502267pt;}
.y130{bottom:665.536267pt;}
.y68{bottom:674.108267pt;}
.y10a{bottom:677.331200pt;}
.y2f{bottom:677.416267pt;}
.y16b{bottom:680.836267pt;}
.y12f{bottom:680.870267pt;}
.ye3{bottom:685.515600pt;}
.ybf{bottom:690.108267pt;}
.y8c{bottom:691.441600pt;}
.y4{bottom:691.756000pt;}
.y2e{bottom:696.082933pt;}
.y16a{bottom:696.170267pt;}
.y12e{bottom:696.204267pt;}
.y67{bottom:707.441600pt;}
.y66{bottom:708.774933pt;}
.y169{bottom:711.504267pt;}
.y12d{bottom:711.538267pt;}
.y2d{bottom:714.749600pt;}
.y14{bottom:725.040000pt;}
.yb5{bottom:726.108267pt;}
.ycf{bottom:726.118933pt;}
.y168{bottom:726.838267pt;}
.y12c{bottom:726.872267pt;}
.y2c{bottom:739.949600pt;}
.y2b{bottom:741.949600pt;}
.yc7{bottom:742.108267pt;}
.y167{bottom:742.172267pt;}
.y12b{bottom:742.206267pt;}
.yb4{bottom:743.441600pt;}
.yce{bottom:743.446933pt;}
.y166{bottom:757.506267pt;}
.y12a{bottom:757.540267pt;}
.yc1{bottom:759.441600pt;}
.yb3{bottom:760.774933pt;}
.y2a{bottom:763.949600pt;}
.y29{bottom:765.949600pt;}
.y9b{bottom:767.549600pt;}
.y165{bottom:772.840267pt;}
.y129{bottom:772.874267pt;}
.yb2{bottom:778.108267pt;}
.y9a{bottom:782.216267pt;}
.yed{bottom:785.578933pt;}
.y164{bottom:788.174267pt;}
.y128{bottom:788.208267pt;}
.yb1{bottom:795.441600pt;}
.yd3{bottom:795.457600pt;}
.y99{bottom:796.882933pt;}
.y163{bottom:803.508267pt;}
.y127{bottom:803.542267pt;}
.y3{bottom:805.081333pt;}
.y98{bottom:811.549600pt;}
.yb0{bottom:812.774933pt;}
.yd2{bottom:812.785600pt;}
.y28{bottom:817.938933pt;}
.y162{bottom:818.842267pt;}
.y126{bottom:818.876267pt;}
.y97{bottom:826.216267pt;}
.ybe{bottom:828.774933pt;}
.yaf{bottom:830.108267pt;}
.yd1{bottom:830.113600pt;}
.ya2{bottom:833.549600pt;}
.y161{bottom:834.176267pt;}
.y125{bottom:834.210267pt;}
.y96{bottom:840.882933pt;}
.yf1{bottom:842.467600pt;}
.yd0{bottom:846.108267pt;}
.yae{bottom:847.441600pt;}
.y27{bottom:848.610933pt;}
.y160{bottom:849.510267pt;}
.y124{bottom:849.544267pt;}
.ya1{bottom:852.216267pt;}
.y19a{bottom:853.549600pt;}
.y95{bottom:855.549600pt;}
.y2{bottom:857.092000pt;}
.yad{bottom:864.774933pt;}
.y15f{bottom:864.844267pt;}
.y123{bottom:864.878267pt;}
.y94{bottom:870.216267pt;}
.y199{bottom:870.882933pt;}
.y26{bottom:879.282933pt;}
.y1{bottom:879.748000pt;}
.y15e{bottom:880.178267pt;}
.y122{bottom:880.212267pt;}
.yac{bottom:882.108267pt;}
.ya0{bottom:884.216267pt;}
.y93{bottom:884.882933pt;}
.yee{bottom:888.038933pt;}
.y198{bottom:888.216267pt;}
.y15d{bottom:895.512267pt;}
.y121{bottom:895.546267pt;}
.yab{bottom:899.441600pt;}
.y92{bottom:899.549600pt;}
.y9f{bottom:904.216267pt;}
.y197{bottom:905.549600pt;}
.y15c{bottom:910.846267pt;}
.y120{bottom:910.880267pt;}
.y91{bottom:914.216267pt;}
.yb7{bottom:916.774933pt;}
.y196{bottom:922.882933pt;}
.y9e{bottom:924.216267pt;}
.y15b{bottom:926.180267pt;}
.y11f{bottom:926.214267pt;}
.y90{bottom:928.882933pt;}
.ya9{bottom:932.774933pt;}
.ya8{bottom:934.102933pt;}
.yaa{bottom:934.108267pt;}
.ye6{bottom:934.118933pt;}
.y195{bottom:940.216267pt;}
.y15a{bottom:941.514267pt;}
.y11e{bottom:941.548267pt;}
.y25{bottom:941.949600pt;}
.y8f{bottom:943.549600pt;}
.y9d{bottom:944.216267pt;}
.yf2{bottom:945.351600pt;}
.yb6{bottom:951.441600pt;}
.yc9{bottom:951.446933pt;}
.y159{bottom:956.848267pt;}
.y11d{bottom:956.882267pt;}
.ye1{bottom:956.966533pt;}
.y194{bottom:957.549600pt;}
.y8e{bottom:958.216267pt;}
.ydf{bottom:963.059867pt;}
.y9c{bottom:964.216267pt;}
.ya7{bottom:967.441600pt;}
.ya6{bottom:968.774933pt;}
.y158{bottom:972.182267pt;}
.y11c{bottom:972.216267pt;}
.y8d{bottom:972.882933pt;}
.y24{bottom:977.912133pt;}
.y23{bottom:991.508133pt;}
.y22{bottom:997.241467pt;}
.y65{bottom:998.954267pt;}
.ya4{bottom:998.954933pt;}
.ya5{bottom:1004.045867pt;}
.y64{bottom:1004.154267pt;}
.ya3{bottom:1004.154933pt;}
.h14{height:21.085867pt;}
.h1d{height:25.237333pt;}
.hd{height:25.909333pt;}
.hb{height:26.357333pt;}
.h26{height:28.240000pt;}
.h4{height:29.333333pt;}
.h16{height:29.610667pt;}
.h15{height:30.122667pt;}
.h23{height:31.461333pt;}
.h1c{height:32.005333pt;}
.hf{height:33.312000pt;}
.h17{height:37.013333pt;}
.h18{height:37.653333pt;}
.h1f{height:39.306667pt;}
.h22{height:42.422933pt;}
.h25{height:42.796267pt;}
.h24{height:42.820267pt;}
.h13{height:44.416000pt;}
.h1e{height:45.184000pt;}
.h28{height:45.813333pt;}
.h19{height:50.357333pt;}
.h3{height:51.916667pt;}
.h20{height:53.866667pt;}
.hc{height:57.986133pt;}
.h12{height:58.739200pt;}
.h2{height:59.333333pt;}
.h1b{height:59.642880pt;}
.h11{height:59.891200pt;}
.h5{height:60.213542pt;}
.h1a{height:63.996053pt;}
.h10{height:66.624000pt;}
.he{height:66.684053pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h27{height:448.756000pt;}
.h29{height:688.784000pt;}
.h21{height:696.966667pt;}
.h9{height:1043.149333pt;}
.ha{height:1043.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wb{width:671.998667pt;}
.wa{width:672.000000pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x50{left:53.613867pt;}
.xa{left:59.717067pt;}
.x1d{left:61.984000pt;}
.x4d{left:64.391200pt;}
.x3a{left:73.757467pt;}
.x33{left:77.045067pt;}
.x22{left:79.317067pt;}
.x54{left:82.383200pt;}
.x52{left:84.650933pt;}
.x27{left:86.916533pt;}
.x20{left:89.184267pt;}
.x28{left:91.716533pt;}
.x21{left:93.984133pt;}
.x29{left:95.716533pt;}
.x1e{left:98.038533pt;}
.x1f{left:99.886400pt;}
.x2c{left:101.184267pt;}
.x4b{left:102.705200pt;}
.x4c{left:104.553067pt;}
.x31{left:107.716533pt;}
.x32{left:110.916533pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.xf{left:171.744000pt;}
.x7{left:178.413333pt;}
.x19{left:189.460667pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x12{left:198.948267pt;}
.x3b{left:229.530800pt;}
.x1c{left:276.146667pt;}
.x40{left:280.890933pt;}
.x10{left:291.041733pt;}
.x11{left:292.908400pt;}
.x41{left:306.257600pt;}
.x13{left:315.283333pt;}
.x14{left:318.483333pt;}
.x42{left:321.591600pt;}
.x1a{left:336.451867pt;}
.x1b{left:339.651733pt;}
.x44{left:361.824267pt;}
.x43{left:377.158267pt;}
.x3c{left:393.477467pt;}
.x45{left:398.861600pt;}
.x2b{left:407.715467pt;}
.x23{left:409.986933pt;}
.x46{left:418.022267pt;}
.x55{left:423.735200pt;}
.x2a{left:425.048800pt;}
.x24{left:427.311600pt;}
.x51{left:430.401867pt;}
.x53{left:432.674933pt;}
.x38{left:434.935200pt;}
.x3e{left:437.202800pt;}
.x39{left:439.735200pt;}
.x3f{left:442.002800pt;}
.x36{left:443.735200pt;}
.x2d{left:446.002800pt;}
.x37{left:446.935200pt;}
.x2e{left:449.202800pt;}
.x34{left:455.735200pt;}
.x2f{left:458.002800pt;}
.x35{left:458.935200pt;}
.x30{left:461.202800pt;}
.x47{left:475.522267pt;}
.x3d{left:487.234800pt;}
.x15{left:492.354400pt;}
.x16{left:495.554267pt;}
.x48{left:516.690933pt;}
.x49{left:530.690933pt;}
.xe{left:547.114400pt;}
.x4a{left:562.690933pt;}
.x17{left:597.857733pt;}
.x18{left:601.057600pt;}
.x4e{left:663.881467pt;}
.x25{left:668.548133pt;}
.x4f{left:688.754800pt;}
.xb{left:691.445200pt;}
.xc{left:693.311733pt;}
.x26{left:695.269333pt;}
.xd{left:705.211733pt;}
}




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