
    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_3ef9d88a4d4ce1e0c4f76290.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_97d03a97a322f52bf1be3e63.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_c162995a26d4f4367014a74b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fdfbea668b8f1bb980611d5a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_454d181ca929a94f415e12a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077000;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_4d6e6b92b12d768904ffe6bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_fa5060bad3cabf30e58b58da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_586c1ce75181aec594df89ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2803b4f72ec1d342faf1347f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_c0bb46080198bc028d39c6c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.943000;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_2141ceee4fcd20ac1f420c77.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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_1517ba54f4529a537a972fb0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.715000;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_7509c2287537609e79a5c536.woff2')format("woff");}.fff{font-family:fff;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7a98568d806c588fe15e8e71.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.lse{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.408450px;}
.ls5{letter-spacing:0.408900px;}
.lsb{letter-spacing:0.409500px;}
.ls8{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls9{letter-spacing:7.602600px;}
.lsf{letter-spacing:9.157200px;}
.lsa{letter-spacing:67.526400px;}
.ls6{letter-spacing:71.943600px;}
.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;}
}
.ws1{word-spacing:-13.986000px;}
.wsb9{word-spacing:-13.620000px;}
.wsd7{word-spacing:-13.380000px;}
.ws5{word-spacing:-13.332000px;}
.ws6{word-spacing:-12.720000px;}
.wsf5{word-spacing:-12.120000px;}
.ws113{word-spacing:-11.448000px;}
.ws13b{word-spacing:-11.178000px;}
.wsd4{word-spacing:-11.172000px;}
.ws7{word-spacing:-10.920000px;}
.ws114{word-spacing:-9.828000px;}
.wsb{word-spacing:-9.810000px;}
.ws8{word-spacing:-9.696000px;}
.ws13c{word-spacing:-9.558000px;}
.wsc3{word-spacing:-9.408000px;}
.ws4{word-spacing:-9.360000px;}
.ws2{word-spacing:-9.090900px;}
.ws9{word-spacing:-8.820000px;}
.wsd3{word-spacing:-8.736000px;}
.wsa{word-spacing:-8.232000px;}
.ws3{word-spacing:-6.879600px;}
.wsba{word-spacing:-0.900000px;}
.wsdf{word-spacing:-0.660000px;}
.ws5a{word-spacing:-0.450000px;}
.wsca{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws15c{word-spacing:0.270000px;}
.ws15b{word-spacing:1.296000px;}
.ws15a{word-spacing:1.512000px;}
.ws192{word-spacing:2.052000px;}
.ws191{word-spacing:2.376000px;}
.ws182{word-spacing:2.484000px;}
.ws122{word-spacing:2.592000px;}
.ws181{word-spacing:2.862000px;}
.ws123{word-spacing:3.024000px;}
.ws142{word-spacing:3.510000px;}
.ws152{word-spacing:3.564000px;}
.ws8d{word-spacing:3.840000px;}
.ws17d{word-spacing:3.888000px;}
.ws50{word-spacing:4.020000px;}
.ws12d{word-spacing:4.050000px;}
.ws18a{word-spacing:4.104000px;}
.ws83{word-spacing:4.380000px;}
.wsf4{word-spacing:4.440000px;}
.ws17c{word-spacing:4.536000px;}
.ws168{word-spacing:4.644000px;}
.ws12c{word-spacing:4.698000px;}
.ws108{word-spacing:4.740000px;}
.ws10e{word-spacing:4.920000px;}
.ws1ac{word-spacing:5.076000px;}
.ws19f{word-spacing:5.130000px;}
.ws199{word-spacing:5.238000px;}
.ws167{word-spacing:5.400000px;}
.wse8{word-spacing:5.460000px;}
.wsf3{word-spacing:5.580000px;}
.ws99{word-spacing:5.760000px;}
.ws19d{word-spacing:5.778000px;}
.wsce{word-spacing:5.808000px;}
.ws8c{word-spacing:5.940000px;}
.ws19e{word-spacing:5.994000px;}
.wsd6{word-spacing:6.000000px;}
.ws18b{word-spacing:6.048000px;}
.ws198{word-spacing:6.102000px;}
.ws86{word-spacing:6.120000px;}
.ws9a{word-spacing:6.180000px;}
.ws12f{word-spacing:6.210000px;}
.ws93{word-spacing:6.240000px;}
.ws16b{word-spacing:6.264000px;}
.ws19a{word-spacing:6.318000px;}
.ws87{word-spacing:6.360000px;}
.ws71{word-spacing:6.420000px;}
.wsb7{word-spacing:6.480000px;}
.ws13a{word-spacing:6.534000px;}
.wsb0{word-spacing:6.540000px;}
.ws2f{word-spacing:6.594000px;}
.wsff{word-spacing:6.600000px;}
.wsd{word-spacing:6.615000px;}
.ws1a6{word-spacing:6.642000px;}
.ws33{word-spacing:6.660000px;}
.ws190{word-spacing:6.696000px;}
.wsd8{word-spacing:6.720000px;}
.ws19{word-spacing:6.750000px;}
.wscd{word-spacing:6.768000px;}
.wsa8{word-spacing:6.780000px;}
.wsea{word-spacing:6.840000px;}
.ws175{word-spacing:6.858000px;}
.ws94{word-spacing:6.900000px;}
.ws48{word-spacing:6.960000px;}
.ws151{word-spacing:6.966000px;}
.wscf{word-spacing:7.008000px;}
.ws1af{word-spacing:7.020000px;}
.wse{word-spacing:7.065000px;}
.ws12b{word-spacing:7.074000px;}
.ws36{word-spacing:7.080000px;}
.ws17e{word-spacing:7.128000px;}
.ws6e{word-spacing:7.140000px;}
.wsd0{word-spacing:7.152000px;}
.ws29{word-spacing:7.200000px;}
.ws12e{word-spacing:7.236000px;}
.ws82{word-spacing:7.260000px;}
.ws189{word-spacing:7.290000px;}
.ws76{word-spacing:7.320000px;}
.ws61{word-spacing:7.380000px;}
.ws8a{word-spacing:7.440000px;}
.ws1b1{word-spacing:7.452000px;}
.ws6f{word-spacing:7.500000px;}
.ws14e{word-spacing:7.506000px;}
.ws30{word-spacing:7.536000px;}
.ws1a{word-spacing:7.560000px;}
.ws139{word-spacing:7.614000px;}
.ws8e{word-spacing:7.620000px;}
.ws155{word-spacing:7.668000px;}
.ws3f{word-spacing:7.680000px;}
.ws1a8{word-spacing:7.722000px;}
.ws40{word-spacing:7.740000px;}
.ws179{word-spacing:7.776000px;}
.ws2c{word-spacing:7.800000px;}
.ws15e{word-spacing:7.830000px;}
.ws96{word-spacing:7.860000px;}
.ws131{word-spacing:7.884000px;}
.ws45{word-spacing:7.920000px;}
.ws1aa{word-spacing:7.938000px;}
.ws5f{word-spacing:7.980000px;}
.ws138{word-spacing:7.992000px;}
.ws39{word-spacing:8.040000px;}
.ws54{word-spacing:8.100000px;}
.ws16a{word-spacing:8.154000px;}
.ws34{word-spacing:8.160000px;}
.ws165{word-spacing:8.208000px;}
.ws7a{word-spacing:8.220000px;}
.ws3b{word-spacing:8.280000px;}
.ws145{word-spacing:8.316000px;}
.ws5d{word-spacing:8.340000px;}
.ws53{word-spacing:8.400000px;}
.ws4e{word-spacing:8.460000px;}
.ws11{word-spacing:8.478000px;}
.ws32{word-spacing:8.484000px;}
.wsa0{word-spacing:8.520000px;}
.ws66{word-spacing:8.580000px;}
.ws193{word-spacing:8.586000px;}
.ws62{word-spacing:8.640000px;}
.ws133{word-spacing:8.694000px;}
.ws55{word-spacing:8.700000px;}
.ws128{word-spacing:8.748000px;}
.ws6c{word-spacing:8.760000px;}
.wscb{word-spacing:8.778000px;}
.ws126{word-spacing:8.802000px;}
.ws81{word-spacing:8.820000px;}
.ws185{word-spacing:8.856000px;}
.wsb5{word-spacing:8.880000px;}
.ws146{word-spacing:8.910000px;}
.wsac{word-spacing:8.940000px;}
.wscc{word-spacing:8.949000px;}
.wsd5{word-spacing:8.976000px;}
.wsaa{word-spacing:9.000000px;}
.ws1a7{word-spacing:9.018000px;}
.ws46{word-spacing:9.060000px;}
.ws16c{word-spacing:9.072000px;}
.ws41{word-spacing:9.120000px;}
.ws17f{word-spacing:9.126000px;}
.ws20{word-spacing:9.180000px;}
.ws1a9{word-spacing:9.234000px;}
.ws42{word-spacing:9.240000px;}
.ws6d{word-spacing:9.261000px;}
.ws8b{word-spacing:9.300000px;}
.ws170{word-spacing:9.342000px;}
.ws111{word-spacing:9.360000px;}
.ws148{word-spacing:9.396000px;}
.wsa6{word-spacing:9.420000px;}
.ws137{word-spacing:9.450000px;}
.wsbb{word-spacing:9.480000px;}
.ws169{word-spacing:9.504000px;}
.ws4d{word-spacing:9.540000px;}
.ws150{word-spacing:9.558000px;}
.wsc{word-spacing:9.600000px;}
.ws176{word-spacing:9.612000px;}
.ws1a4{word-spacing:9.666000px;}
.wse0{word-spacing:9.720000px;}
.ws25{word-spacing:9.780000px;}
.wsab{word-spacing:9.840000px;}
.ws70{word-spacing:9.900000px;}
.ws1d{word-spacing:9.936000px;}
.ws21{word-spacing:9.960000px;}
.ws1e{word-spacing:9.990000px;}
.ws27{word-spacing:10.020000px;}
.wsf7{word-spacing:10.080000px;}
.ws11f{word-spacing:10.098000px;}
.ws23{word-spacing:10.140000px;}
.ws132{word-spacing:10.152000px;}
.ws28{word-spacing:10.200000px;}
.ws127{word-spacing:10.206000px;}
.wsd9{word-spacing:10.260000px;}
.ws134{word-spacing:10.314000px;}
.wsa1{word-spacing:10.320000px;}
.ws3a{word-spacing:10.380000px;}
.ws196{word-spacing:10.422000px;}
.ws24{word-spacing:10.500000px;}
.ws160{word-spacing:10.530000px;}
.wsfa{word-spacing:10.560000px;}
.ws75{word-spacing:10.620000px;}
.ws2b{word-spacing:10.680000px;}
.ws5c{word-spacing:10.692000px;}
.ws10{word-spacing:10.710000px;}
.wsfc{word-spacing:10.740000px;}
.ws164{word-spacing:10.746000px;}
.ws16d{word-spacing:10.800000px;}
.ws91{word-spacing:10.860000px;}
.ws147{word-spacing:10.908000px;}
.ws121{word-spacing:10.962000px;}
.ws5b{word-spacing:10.980000px;}
.ws173{word-spacing:11.016000px;}
.wsb4{word-spacing:11.040000px;}
.wsf0{word-spacing:11.100000px;}
.ws1a2{word-spacing:11.124000px;}
.ws65{word-spacing:11.160000px;}
.ws3e{word-spacing:11.220000px;}
.ws1a3{word-spacing:11.232000px;}
.ws85{word-spacing:11.280000px;}
.ws14d{word-spacing:11.286000px;}
.ws31{word-spacing:11.298000px;}
.wsc0{word-spacing:11.340000px;}
.ws1b0{word-spacing:11.394000px;}
.ws68{word-spacing:11.400000px;}
.ws11d{word-spacing:11.448000px;}
.ws3d{word-spacing:11.460000px;}
.ws157{word-spacing:11.502000px;}
.ws197{word-spacing:11.556000px;}
.ws74{word-spacing:11.580000px;}
.ws6b{word-spacing:11.640000px;}
.ws178{word-spacing:11.664000px;}
.wsdb{word-spacing:11.700000px;}
.ws15d{word-spacing:11.718000px;}
.ws37{word-spacing:11.760000px;}
.ws1ae{word-spacing:11.772000px;}
.wsa2{word-spacing:11.820000px;}
.ws188{word-spacing:11.826000px;}
.ws7b{word-spacing:11.880000px;}
.ws125{word-spacing:11.934000px;}
.ws9f{word-spacing:11.940000px;}
.wsee{word-spacing:12.000000px;}
.ws135{word-spacing:12.042000px;}
.ws44{word-spacing:12.060000px;}
.ws1ab{word-spacing:12.096000px;}
.ws47{word-spacing:12.120000px;}
.ws79{word-spacing:12.180000px;}
.wsbf{word-spacing:12.240000px;}
.ws13{word-spacing:12.258000px;}
.wse7{word-spacing:12.300000px;}
.ws14c{word-spacing:12.312000px;}
.ws2a{word-spacing:12.360000px;}
.ws141{word-spacing:12.366000px;}
.ws8f{word-spacing:12.420000px;}
.ws105{word-spacing:12.480000px;}
.ws163{word-spacing:12.528000px;}
.wsb8{word-spacing:12.540000px;}
.ws26{word-spacing:12.600000px;}
.wsed{word-spacing:12.660000px;}
.ws129{word-spacing:12.690000px;}
.ws57{word-spacing:12.720000px;}
.ws120{word-spacing:12.744000px;}
.ws106{word-spacing:12.780000px;}
.ws17{word-spacing:12.798000px;}
.ws80{word-spacing:12.840000px;}
.ws172{word-spacing:12.852000px;}
.ws10f{word-spacing:12.900000px;}
.wsa9{word-spacing:12.960000px;}
.ws149{word-spacing:13.014000px;}
.ws2d{word-spacing:13.020000px;}
.wsb1{word-spacing:13.080000px;}
.ws13f{word-spacing:13.122000px;}
.ws4b{word-spacing:13.140000px;}
.ws159{word-spacing:13.176000px;}
.wse2{word-spacing:13.200000px;}
.ws119{word-spacing:13.230000px;}
.ws92{word-spacing:13.260000px;}
.ws140{word-spacing:13.284000px;}
.ws3c{word-spacing:13.320000px;}
.ws11a{word-spacing:13.338000px;}
.wsf1{word-spacing:13.380000px;}
.ws156{word-spacing:13.392000px;}
.wsc1{word-spacing:13.440000px;}
.ws166{word-spacing:13.446000px;}
.ws77{word-spacing:13.500000px;}
.ws78{word-spacing:13.560000px;}
.ws177{word-spacing:13.608000px;}
.ws63{word-spacing:13.620000px;}
.ws97{word-spacing:13.680000px;}
.ws7e{word-spacing:13.740000px;}
.wsa7{word-spacing:13.800000px;}
.ws1b{word-spacing:13.824000px;}
.ws9b{word-spacing:13.860000px;}
.ws195{word-spacing:13.878000px;}
.ws4c{word-spacing:13.920000px;}
.wsf{word-spacing:13.944000px;}
.ws7f{word-spacing:14.040000px;}
.ws1a5{word-spacing:14.094000px;}
.ws38{word-spacing:14.100000px;}
.ws22{word-spacing:14.160000px;}
.wsf2{word-spacing:14.220000px;}
.ws124{word-spacing:14.256000px;}
.wsfe{word-spacing:14.280000px;}
.wsae{word-spacing:14.340000px;}
.ws183{word-spacing:14.364000px;}
.wsfb{word-spacing:14.400000px;}
.ws11e{word-spacing:14.418000px;}
.ws43{word-spacing:14.520000px;}
.wsda{word-spacing:14.580000px;}
.wsa4{word-spacing:14.640000px;}
.ws84{word-spacing:14.700000px;}
.wse6{word-spacing:14.760000px;}
.ws12a{word-spacing:14.796000px;}
.ws67{word-spacing:14.820000px;}
.ws1a0{word-spacing:14.850000px;}
.ws95{word-spacing:14.880000px;}
.ws5e{word-spacing:15.000000px;}
.wse9{word-spacing:15.060000px;}
.wsfd{word-spacing:15.120000px;}
.ws60{word-spacing:15.240000px;}
.ws1f{word-spacing:15.282000px;}
.wsf9{word-spacing:15.300000px;}
.ws35{word-spacing:15.360000px;}
.ws174{word-spacing:15.390000px;}
.wsdc{word-spacing:15.420000px;}
.ws89{word-spacing:15.480000px;}
.ws117{word-spacing:15.552000px;}
.ws184{word-spacing:15.606000px;}
.wsa5{word-spacing:15.660000px;}
.ws51{word-spacing:15.720000px;}
.ws14f{word-spacing:15.768000px;}
.ws10b{word-spacing:15.780000px;}
.ws18{word-spacing:15.822000px;}
.wsbd{word-spacing:15.840000px;}
.ws102{word-spacing:15.900000px;}
.wsbe{word-spacing:16.020000px;}
.wsf8{word-spacing:16.080000px;}
.ws72{word-spacing:16.140000px;}
.ws194{word-spacing:16.146000px;}
.ws12{word-spacing:16.200000px;}
.ws73{word-spacing:16.260000px;}
.ws110{word-spacing:16.440000px;}
.wsaf{word-spacing:16.560000px;}
.ws1ad{word-spacing:16.578000px;}
.ws7d{word-spacing:16.620000px;}
.ws14{word-spacing:16.632000px;}
.wsbc{word-spacing:16.740000px;}
.ws15f{word-spacing:16.848000px;}
.wsec{word-spacing:17.040000px;}
.wsf6{word-spacing:17.100000px;}
.ws18c{word-spacing:17.118000px;}
.ws10d{word-spacing:17.160000px;}
.ws58{word-spacing:17.220000px;}
.ws1a1{word-spacing:17.334000px;}
.ws7c{word-spacing:17.340000px;}
.ws88{word-spacing:17.400000px;}
.ws9c{word-spacing:17.460000px;}
.ws15{word-spacing:17.496000px;}
.wsdd{word-spacing:17.520000px;}
.wsb6{word-spacing:17.580000px;}
.ws98{word-spacing:17.640000px;}
.ws115{word-spacing:17.700000px;}
.ws112{word-spacing:17.760000px;}
.wseb{word-spacing:17.820000px;}
.ws1c{word-spacing:17.874000px;}
.ws103{word-spacing:17.880000px;}
.ws109{word-spacing:17.940000px;}
.ws118{word-spacing:17.982000px;}
.wsa3{word-spacing:18.000000px;}
.wsb3{word-spacing:18.180000px;}
.ws69{word-spacing:18.240000px;}
.ws90{word-spacing:18.300000px;}
.ws56{word-spacing:18.360000px;}
.ws107{word-spacing:18.420000px;}
.ws13e{word-spacing:18.468000px;}
.ws4f{word-spacing:18.540000px;}
.wsb2{word-spacing:18.660000px;}
.ws180{word-spacing:18.846000px;}
.ws10c{word-spacing:18.900000px;}
.ws11b{word-spacing:19.170000px;}
.ws101{word-spacing:19.200000px;}
.wse1{word-spacing:19.320000px;}
.ws18d{word-spacing:19.926000px;}
.ws104{word-spacing:19.980000px;}
.ws6a{word-spacing:20.100000px;}
.ws18f{word-spacing:20.196000px;}
.ws100{word-spacing:20.400000px;}
.ws59{word-spacing:20.580000px;}
.ws52{word-spacing:20.820000px;}
.ws130{word-spacing:21.006000px;}
.ws9e{word-spacing:21.120000px;}
.ws144{word-spacing:21.168000px;}
.ws10a{word-spacing:21.180000px;}
.wse4{word-spacing:21.480000px;}
.ws13d{word-spacing:21.492000px;}
.ws64{word-spacing:21.660000px;}
.wsad{word-spacing:21.780000px;}
.ws4a{word-spacing:21.840000px;}
.wsef{word-spacing:21.900000px;}
.ws11c{word-spacing:22.194000px;}
.ws171{word-spacing:22.302000px;}
.ws16e{word-spacing:22.518000px;}
.ws16f{word-spacing:22.572000px;}
.wse5{word-spacing:22.800000px;}
.ws136{word-spacing:23.274000px;}
.ws9d{word-spacing:23.340000px;}
.ws18e{word-spacing:23.544000px;}
.wse3{word-spacing:23.640000px;}
.ws16{word-spacing:23.760000px;}
.ws2e{word-spacing:24.060000px;}
.ws187{word-spacing:24.408000px;}
.ws143{word-spacing:24.624000px;}
.ws49{word-spacing:25.260000px;}
.wsde{word-spacing:25.800000px;}
.ws14b{word-spacing:26.244000px;}
.ws158{word-spacing:26.838000px;}
.ws116{word-spacing:27.720000px;}
.ws186{word-spacing:28.404000px;}
.ws17a{word-spacing:30.294000px;}
.ws14a{word-spacing:30.564000px;}
.ws17b{word-spacing:35.316000px;}
.ws19c{word-spacing:38.016000px;}
.ws162{word-spacing:39.420000px;}
.ws154{word-spacing:40.878000px;}
.ws19b{word-spacing:44.280000px;}
.ws161{word-spacing:45.900000px;}
.ws153{word-spacing:47.628000px;}
.wsd1{word-spacing:61.095600px;}
.wsc7{word-spacing:63.100200px;}
.wsc2{word-spacing:136.338000px;}
.wsc8{word-spacing:141.626400px;}
.wsc9{word-spacing:164.426400px;}
.wsc5{word-spacing:178.300200px;}
.wsc6{word-spacing:196.970400px;}
.wsd2{word-spacing:225.846600px;}
.wsc4{word-spacing:292.735200px;}
._12{margin-left:-17.040000px;}
._e{margin-left:-8.963956px;}
._21{margin-left:-7.518044px;}
._c{margin-left:-5.316044px;}
._1{margin-left:-4.140000px;}
._5{margin-left:-3.059115px;}
._0{margin-left:-1.919985px;}
._4{width:1.074000px;}
._8{width:2.153985px;}
._15{width:3.282527px;}
._1e{width:4.488600px;}
._2{width:6.299985px;}
._3{width:7.799985px;}
._9{width:9.720000px;}
._6{width:10.751085px;}
._7{width:12.647985px;}
._f{width:13.782015px;}
._11{width:16.016415px;}
._10{width:17.327985px;}
._13{width:19.618800px;}
._16{width:21.434985px;}
._1f{width:23.050800px;}
._20{width:25.035585px;}
._23{width:26.147700px;}
._26{width:29.038756px;}
._1a{width:30.459000px;}
._25{width:35.473785px;}
._24{width:45.188100px;}
._22{width:46.872585px;}
._a{width:60.744885px;}
._1d{width:72.685200px;}
._14{width:78.360000px;}
._d{width:131.698171px;}
._b{width:133.679400px;}
._1c{width:168.888600px;}
._19{width:181.992000px;}
._17{width:289.791600px;}
._18{width:291.796200px;}
._1b{width:368.839200px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.100000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y35{bottom:67.597501px;}
.y65{bottom:76.815600px;}
.y34{bottom:84.097501px;}
.y10a{bottom:84.160950px;}
.ydd{bottom:85.275000px;}
.yb0{bottom:85.426200px;}
.y64{bottom:88.815600px;}
.y188{bottom:92.926200px;}
.y1c6{bottom:94.051200px;}
.y161{bottom:96.301200px;}
.y4{bottom:97.125005px;}
.y114{bottom:99.160950px;}
.y63{bottom:100.815600px;}
.y133{bottom:101.926200px;}
.ydc{bottom:104.775000px;}
.yaf{bottom:104.926200px;}
.y187{bottom:109.426200px;}
.y1c5{bottom:110.551200px;}
.y60{bottom:113.190600px;}
.y160{bottom:115.801200px;}
.y132{bottom:121.426200px;}
.ydb{bottom:124.275000px;}
.yae{bottom:124.426200px;}
.y61{bottom:125.565600px;}
.y186{bottom:125.926200px;}
.y1c4{bottom:127.051200px;}
.y15f{bottom:135.301200px;}
.y21{bottom:139.264499px;}
.y131{bottom:140.926200px;}
.y185{bottom:142.426200px;}
.y1c3{bottom:143.551200px;}
.yda{bottom:143.775000px;}
.yad{bottom:143.926200px;}
.y163{bottom:154.426200px;}
.y15e{bottom:154.801200px;}
.y184{bottom:158.926200px;}
.y1c2{bottom:160.051200px;}
.y130{bottom:160.426200px;}
.yd9{bottom:163.275000px;}
.yac{bottom:163.426200px;}
.y5f{bottom:170.926200px;}
.y183{bottom:175.426200px;}
.y1c1{bottom:176.551200px;}
.y115{bottom:176.843100px;}
.y12f{bottom:179.926200px;}
.yd8{bottom:182.775000px;}
.yab{bottom:182.926200px;}
.y15d{bottom:184.801200px;}
.y5e{bottom:190.426200px;}
.y182{bottom:191.926200px;}
.y1c0{bottom:193.051200px;}
.y18{bottom:196.933500px;}
.y12e{bottom:199.426200px;}
.yd7{bottom:202.275000px;}
.yaa{bottom:202.426200px;}
.y181{bottom:208.426200px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1bf{bottom:209.551200px;}
.y5d{bottom:209.926200px;}
.y12d{bottom:218.926200px;}
.yd6{bottom:221.775000px;}
.ya9{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y180{bottom:224.926200px;}
.y1be{bottom:226.051200px;}
.y5c{bottom:229.426200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y15c{bottom:235.801200px;}
.y12c{bottom:238.426200px;}
.yd5{bottom:241.275000px;}
.ya8{bottom:241.426200px;}
.y1bd{bottom:242.551200px;}
.y116{bottom:246.570150px;}
.y5b{bottom:248.926200px;}
.y15b{bottom:255.301200px;}
.y12b{bottom:257.926200px;}
.y1bc{bottom:259.051200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yd4{bottom:260.775000px;}
.ya7{bottom:260.926200px;}
.y122{bottom:261.570150px;}
.y5a{bottom:268.426200px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y17f{bottom:274.426200px;}
.y15a{bottom:274.801200px;}
.y1bb{bottom:275.551200px;}
.y12a{bottom:277.426200px;}
.yd3{bottom:280.275000px;}
.ya6{bottom:280.426200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y33{bottom:286.426501px;}
.y59{bottom:287.926200px;}
.y17e{bottom:290.926200px;}
.y1ba{bottom:292.051200px;}
.y159{bottom:294.301200px;}
.y129{bottom:296.926200px;}
.yd2{bottom:299.775000px;}
.ya5{bottom:299.926200px;}
.y58{bottom:307.426200px;}
.y1b9{bottom:308.551200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y158{bottom:313.801200px;}
.y128{bottom:316.426200px;}
.yd1{bottom:319.275000px;}
.ya4{bottom:319.426200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y17d{bottom:323.926200px;}
.y1b8{bottom:325.051200px;}
.y57{bottom:326.926200px;}
.y157{bottom:333.301200px;}
.y127{bottom:335.926200px;}
.yf6{bottom:338.775000px;}
.ya3{bottom:338.926200px;}
.y17c{bottom:340.426200px;}
.y1b7{bottom:341.551200px;}
.y56{bottom:346.426200px;}
.yf{bottom:348.133500px;}
.yd0{bottom:349.275000px;}
.y32{bottom:350.776501px;}
.y156{bottom:352.801200px;}
.y126{bottom:355.426200px;}
.y17b{bottom:356.926200px;}
.y117{bottom:357.088800px;}
.y10c{bottom:357.738600px;}
.y1b6{bottom:358.051200px;}
.yf5{bottom:358.275000px;}
.ya2{bottom:358.426200px;}
.y10d{bottom:361.843500px;}
.y55{bottom:365.926200px;}
.y10b{bottom:367.367550px;}
.y155{bottom:372.301200px;}
.y17a{bottom:373.426200px;}
.y1b5{bottom:374.551200px;}
.yf4{bottom:377.775000px;}
.ya1{bottom:377.926200px;}
.y54{bottom:385.426200px;}
.ye{bottom:386.785499px;}
.y179{bottom:389.926200px;}
.y1b4{bottom:391.051200px;}
.y154{bottom:391.801200px;}
.yf3{bottom:397.275000px;}
.ya0{bottom:397.426200px;}
.y109{bottom:399.562800px;}
.ycf{bottom:403.825350px;}
.y53{bottom:404.926200px;}
.y178{bottom:406.426200px;}
.y1b3{bottom:407.551200px;}
.yd{bottom:408.044999px;}
.y153{bottom:411.301200px;}
.y31{bottom:415.126501px;}
.yf2{bottom:416.775000px;}
.y9f{bottom:416.926200px;}
.y108{bottom:419.062800px;}
.y177{bottom:422.926200px;}
.yce{bottom:423.325350px;}
.y1b2{bottom:424.051200px;}
.y52{bottom:424.426200px;}
.yf1{bottom:436.275000px;}
.y9e{bottom:436.426200px;}
.y107{bottom:438.562800px;}
.y176{bottom:439.426200px;}
.y1b1{bottom:440.551200px;}
.y152{bottom:441.301200px;}
.ycd{bottom:442.825350px;}
.y51{bottom:443.926200px;}
.y118{bottom:447.569100px;}
.yf0{bottom:455.775000px;}
.y9d{bottom:455.926200px;}
.y1b0{bottom:457.051200px;}
.y106{bottom:458.062800px;}
.y119{bottom:462.569100px;}
.y50{bottom:463.426200px;}
.y175{bottom:472.426200px;}
.ycc{bottom:472.825350px;}
.y1af{bottom:473.551200px;}
.yef{bottom:475.275000px;}
.y9c{bottom:475.426200px;}
.y105{bottom:477.562800px;}
.y30{bottom:482.407500px;}
.y4f{bottom:482.926200px;}
.y174{bottom:488.926200px;}
.y1ae{bottom:490.051200px;}
.y151{bottom:492.301200px;}
.yee{bottom:494.775000px;}
.y9b{bottom:494.926200px;}
.y4e{bottom:502.426200px;}
.yc{bottom:502.864502px;}
.y173{bottom:505.426200px;}
.y1ad{bottom:506.551200px;}
.y104{bottom:507.562800px;}
.y150{bottom:511.801200px;}
.yed{bottom:514.275000px;}
.y9a{bottom:514.426200px;}
.yb{bottom:520.864502px;}
.y172{bottom:521.926200px;}
.y1ac{bottom:523.051200px;}
.ycb{bottom:527.375850px;}
.y14f{bottom:531.301200px;}
.y4d{bottom:532.426200px;}
.yec{bottom:533.775000px;}
.y99{bottom:533.926200px;}
.y171{bottom:538.426200px;}
.ya{bottom:538.864499px;}
.y1ab{bottom:539.551200px;}
.y2f{bottom:543.826501px;}
.yca{bottom:546.875850px;}
.y14e{bottom:550.801200px;}
.yeb{bottom:553.275000px;}
.y98{bottom:553.426200px;}
.y170{bottom:554.926200px;}
.y1aa{bottom:556.051200px;}
.y9{bottom:556.864499px;}
.y103{bottom:557.850600px;}
.yc9{bottom:566.375850px;}
.y14d{bottom:570.301200px;}
.y16f{bottom:571.426200px;}
.y7b{bottom:572.145300px;}
.y1a9{bottom:572.551200px;}
.yea{bottom:572.775000px;}
.y97{bottom:572.926200px;}
.y102{bottom:577.350600px;}
.y7a{bottom:585.645300px;}
.yc8{bottom:585.875850px;}
.y16e{bottom:587.926200px;}
.y1a8{bottom:589.051200px;}
.y14c{bottom:589.801200px;}
.ye9{bottom:592.275000px;}
.y96{bottom:592.426200px;}
.y101{bottom:596.850600px;}
.y79{bottom:599.145300px;}
.yc7{bottom:605.375850px;}
.y1a7{bottom:605.551200px;}
.y11a{bottom:608.987400px;}
.y14b{bottom:609.301200px;}
.y2e{bottom:611.107500px;}
.ye8{bottom:611.775000px;}
.y95{bottom:611.926200px;}
.y78{bottom:612.645300px;}
.y16d{bottom:614.926200px;}
.y100{bottom:616.350600px;}
.y1a6{bottom:622.051200px;}
.y11b{bottom:623.987400px;}
.yc6{bottom:624.875850px;}
.y77{bottom:626.145300px;}
.y14a{bottom:628.801200px;}
.ye7{bottom:631.275000px;}
.y94{bottom:631.426200px;}
.yff{bottom:635.850600px;}
.y1a5{bottom:638.551200px;}
.yc5{bottom:644.375850px;}
.y2d{bottom:645.457501px;}
.y8{bottom:645.510000px;}
.y149{bottom:648.301200px;}
.y76{bottom:648.713700px;}
.ye6{bottom:650.775000px;}
.y93{bottom:650.926200px;}
.y1a4{bottom:655.051200px;}
.y4c{bottom:656.926200px;}
.y2c{bottom:660.457501px;}
.y75{bottom:662.213700px;}
.yc4{bottom:663.875850px;}
.y16c{bottom:665.926200px;}
.y7{bottom:666.771000px;}
.y148{bottom:667.801200px;}
.ye5{bottom:670.275000px;}
.y92{bottom:670.426200px;}
.y1a3{bottom:671.551200px;}
.y4b{bottom:671.926200px;}
.yfe{bottom:672.638400px;}
.y2b{bottom:675.457500px;}
.y74{bottom:675.713700px;}
.y16b{bottom:682.426200px;}
.yc3{bottom:683.375850px;}
.y11c{bottom:686.742150px;}
.y4a{bottom:686.926200px;}
.y147{bottom:687.301200px;}
.y1a2{bottom:688.051200px;}
.y73{bottom:689.213700px;}
.ye4{bottom:689.775000px;}
.y91{bottom:689.926200px;}
.yfd{bottom:692.138400px;}
.y11d{bottom:701.742150px;}
.y49{bottom:701.926200px;}
.y72{bottom:702.713700px;}
.yc2{bottom:702.875850px;}
.y1a1{bottom:704.551200px;}
.y146{bottom:706.801200px;}
.ye3{bottom:709.275000px;}
.y90{bottom:709.426200px;}
.yfc{bottom:711.638400px;}
.y48{bottom:716.926200px;}
.y1a0{bottom:721.051200px;}
.yc1{bottom:722.375850px;}
.y71{bottom:725.476200px;}
.y6{bottom:726.298500px;}
.y145{bottom:726.301200px;}
.ye2{bottom:728.775000px;}
.y8f{bottom:728.926200px;}
.yfb{bottom:731.138400px;}
.y47{bottom:731.926200px;}
.y19f{bottom:737.551200px;}
.y70{bottom:738.976200px;}
.yc0{bottom:741.875850px;}
.y144{bottom:745.801200px;}
.y46{bottom:746.926200px;}
.ye1{bottom:748.275000px;}
.y8e{bottom:748.426200px;}
.yfa{bottom:750.638400px;}
.y6f{bottom:752.476200px;}
.y3{bottom:752.599495px;}
.y19e{bottom:754.051200px;}
.y2a{bottom:756.817498px;}
.y16a{bottom:760.426200px;}
.ybf{bottom:761.375850px;}
.y45{bottom:761.926200px;}
.y143{bottom:765.301200px;}
.y6e{bottom:765.976200px;}
.ye0{bottom:767.775000px;}
.y8d{bottom:767.926200px;}
.yf9{bottom:770.138400px;}
.y19d{bottom:770.551200px;}
.y44{bottom:776.926200px;}
.y6d{bottom:779.476200px;}
.ybe{bottom:780.875850px;}
.y142{bottom:784.801200px;}
.y29{bottom:786.817498px;}
.y19c{bottom:787.051200px;}
.ydf{bottom:787.275000px;}
.y8c{bottom:787.426200px;}
.yf8{bottom:789.638400px;}
.y43{bottom:791.926200px;}
.y6c{bottom:792.976200px;}
.y169{bottom:793.426200px;}
.ybd{bottom:800.375850px;}
.y19b{bottom:803.551200px;}
.y141{bottom:804.301200px;}
.y28{bottom:804.817498px;}
.y6b{bottom:806.476200px;}
.y42{bottom:806.926200px;}
.yf7{bottom:809.138400px;}
.y168{bottom:809.926200px;}
.y123{bottom:810.719400px;}
.yde{bottom:817.275000px;}
.y162{bottom:817.426200px;}
.y110{bottom:818.820600px;}
.y10f{bottom:819.276450px;}
.ybc{bottom:819.875850px;}
.y6a{bottom:819.976200px;}
.y19a{bottom:820.051200px;}
.y41{bottom:821.926200px;}
.y11e{bottom:822.390450px;}
.y27{bottom:822.817498px;}
.y140{bottom:823.801200px;}
.y10e{bottom:825.120450px;}
.y124{bottom:825.719400px;}
.y8b{bottom:826.426200px;}
.y167{bottom:835.426200px;}
.y199{bottom:836.551200px;}
.y40{bottom:836.926200px;}
.ybb{bottom:839.375850px;}
.y69{bottom:842.738700px;}
.y13f{bottom:843.301200px;}
.y8a{bottom:845.926200px;}
.y3f{bottom:851.926200px;}
.y198{bottom:853.051200px;}
.y68{bottom:856.238700px;}
.yba{bottom:858.875850px;}
.y13e{bottom:862.801200px;}
.y89{bottom:865.426200px;}
.y3e{bottom:866.926200px;}
.y166{bottom:868.426200px;}
.y197{bottom:869.551200px;}
.y67{bottom:869.738700px;}
.y26{bottom:875.289002px;}
.yb9{bottom:878.375850px;}
.y2{bottom:879.369000px;}
.y3d{bottom:881.926200px;}
.y13d{bottom:882.301200px;}
.y66{bottom:883.238700px;}
.y111{bottom:883.374150px;}
.y88{bottom:884.926200px;}
.y196{bottom:886.051200px;}
.y11f{bottom:894.361050px;}
.y113{bottom:897.480000px;}
.yb8{bottom:897.875850px;}
.y13c{bottom:901.801200px;}
.y195{bottom:902.551200px;}
.y87{bottom:904.426200px;}
.y112{bottom:909.850650px;}
.y165{bottom:911.926200px;}
.yb7{bottom:917.375850px;}
.y194{bottom:919.051200px;}
.y13b{bottom:921.301200px;}
.y86{bottom:923.926200px;}
.y3c{bottom:933.256200px;}
.y193{bottom:935.551200px;}
.yb6{bottom:936.875850px;}
.y25{bottom:938.940000px;}
.y13a{bottom:940.801200px;}
.y85{bottom:943.426200px;}
.y192{bottom:952.051200px;}
.y3b{bottom:955.801200px;}
.yb5{bottom:956.375850px;}
.y139{bottom:960.301200px;}
.y84{bottom:962.926200px;}
.y1{bottom:966.726000px;}
.y191{bottom:968.551200px;}
.y24{bottom:970.440000px;}
.yb4{bottom:975.875850px;}
.y138{bottom:979.801200px;}
.y83{bottom:982.426200px;}
.y190{bottom:985.051200px;}
.y164{bottom:989.926200px;}
.y120{bottom:992.779500px;}
.y3a{bottom:994.801200px;}
.yb3{bottom:995.375850px;}
.y137{bottom:999.301200px;}
.y18f{bottom:1001.551200px;}
.y82{bottom:1001.926200px;}
.y121{bottom:1007.779500px;}
.y18e{bottom:1018.051200px;}
.y39{bottom:1018.801200px;}
.y81{bottom:1021.426200px;}
.yb2{bottom:1025.375850px;}
.y18d{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.y136{bottom:1038.301200px;}
.y80{bottom:1040.926200px;}
.y36{bottom:1047.511200px;}
.y18c{bottom:1051.051200px;}
.y125{bottom:1058.192850px;}
.y7f{bottom:1060.426200px;}
.y18b{bottom:1067.551200px;}
.y135{bottom:1068.301200px;}
.y7e{bottom:1079.926200px;}
.y62{bottom:1083.782250px;}
.y18a{bottom:1084.051200px;}
.y38{bottom:1097.407950px;}
.y134{bottom:1098.301200px;}
.y7d{bottom:1099.426200px;}
.y189{bottom:1100.551200px;}
.y37{bottom:1110.907950px;}
.yb1{bottom:1141.238100px;}
.y7c{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h16{height:25.096500px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h20{height:34.320000px;}
.h1b{height:34.608000px;}
.hb{height:36.726562px;}
.h1d{height:37.215000px;}
.h1c{height:39.696000px;}
.h1f{height:40.755000px;}
.hf{height:41.317383px;}
.h18{height:44.658000px;}
.h1e{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.h12{height:49.620000px;}
.h15{height:54.655650px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x3f{left:123.000000px;}
.xb{left:126.112350px;}
.xe{left:135.000000px;}
.xf{left:142.612950px;}
.x6{left:145.650000px;}
.x11{left:161.362950px;}
.x12{left:174.862950px;}
.x10{left:188.362950px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x13{left:206.362950px;}
.x14{left:219.862950px;}
.x9{left:228.743990px;}
.x15{left:233.362950px;}
.x16{left:246.862950px;}
.x17{left:260.362950px;}
.x18{left:273.862950px;}
.x19{left:287.362950px;}
.x8{left:293.590494px;}
.x1a{left:300.862950px;}
.x1b{left:314.362950px;}
.x1c{left:327.862950px;}
.x1d{left:341.362950px;}
.x1e{left:354.862950px;}
.x1f{left:368.362950px;}
.x3d{left:370.687500px;}
.x20{left:381.862950px;}
.x38{left:390.937500px;}
.x21{left:395.362950px;}
.x39{left:404.437500px;}
.x22{left:408.862950px;}
.x37{left:417.937500px;}
.x23{left:422.362950px;}
.x24{left:435.862950px;}
.x25{left:449.362950px;}
.x3{left:454.959000px;}
.x26{left:462.862950px;}
.x27{left:476.362950px;}
.x28{left:489.862950px;}
.x29{left:503.362950px;}
.x2a{left:516.862950px;}
.x2b{left:530.362950px;}
.x2c{left:543.862950px;}
.x2d{left:557.362950px;}
.x3e{left:565.175550px;}
.xd{left:570.946500px;}
.x3a{left:576.187500px;}
.x2e{left:584.362950px;}
.x3b{left:589.687500px;}
.x2f{left:597.862950px;}
.x3c{left:603.187500px;}
.x30{left:611.362950px;}
.x31{left:624.862950px;}
.x32{left:638.362950px;}
.xc{left:650.025750px;}
.x33{left:651.862950px;}
.x34{left:665.362950px;}
.x35{left:678.862950px;}
.x36{left:714.413400px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.lse{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.363067pt;}
.ls5{letter-spacing:0.363467pt;}
.lsb{letter-spacing:0.364000pt;}
.ls8{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls9{letter-spacing:6.757867pt;}
.lsf{letter-spacing:8.139733pt;}
.lsa{letter-spacing:60.023467pt;}
.ls6{letter-spacing:63.949867pt;}
.ws1{word-spacing:-12.432000pt;}
.wsb9{word-spacing:-12.106667pt;}
.wsd7{word-spacing:-11.893333pt;}
.ws5{word-spacing:-11.850667pt;}
.ws6{word-spacing:-11.306667pt;}
.wsf5{word-spacing:-10.773333pt;}
.ws113{word-spacing:-10.176000pt;}
.ws13b{word-spacing:-9.936000pt;}
.wsd4{word-spacing:-9.930667pt;}
.ws7{word-spacing:-9.706667pt;}
.ws114{word-spacing:-8.736000pt;}
.wsb{word-spacing:-8.720000pt;}
.ws8{word-spacing:-8.618667pt;}
.ws13c{word-spacing:-8.496000pt;}
.wsc3{word-spacing:-8.362667pt;}
.ws4{word-spacing:-8.320000pt;}
.ws2{word-spacing:-8.080800pt;}
.ws9{word-spacing:-7.840000pt;}
.wsd3{word-spacing:-7.765333pt;}
.wsa{word-spacing:-7.317333pt;}
.ws3{word-spacing:-6.115200pt;}
.wsba{word-spacing:-0.800000pt;}
.wsdf{word-spacing:-0.586667pt;}
.ws5a{word-spacing:-0.400000pt;}
.wsca{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws15c{word-spacing:0.240000pt;}
.ws15b{word-spacing:1.152000pt;}
.ws15a{word-spacing:1.344000pt;}
.ws192{word-spacing:1.824000pt;}
.ws191{word-spacing:2.112000pt;}
.ws182{word-spacing:2.208000pt;}
.ws122{word-spacing:2.304000pt;}
.ws181{word-spacing:2.544000pt;}
.ws123{word-spacing:2.688000pt;}
.ws142{word-spacing:3.120000pt;}
.ws152{word-spacing:3.168000pt;}
.ws8d{word-spacing:3.413333pt;}
.ws17d{word-spacing:3.456000pt;}
.ws50{word-spacing:3.573333pt;}
.ws12d{word-spacing:3.600000pt;}
.ws18a{word-spacing:3.648000pt;}
.ws83{word-spacing:3.893333pt;}
.wsf4{word-spacing:3.946667pt;}
.ws17c{word-spacing:4.032000pt;}
.ws168{word-spacing:4.128000pt;}
.ws12c{word-spacing:4.176000pt;}
.ws108{word-spacing:4.213333pt;}
.ws10e{word-spacing:4.373333pt;}
.ws1ac{word-spacing:4.512000pt;}
.ws19f{word-spacing:4.560000pt;}
.ws199{word-spacing:4.656000pt;}
.ws167{word-spacing:4.800000pt;}
.wse8{word-spacing:4.853333pt;}
.wsf3{word-spacing:4.960000pt;}
.ws99{word-spacing:5.120000pt;}
.ws19d{word-spacing:5.136000pt;}
.wsce{word-spacing:5.162667pt;}
.ws8c{word-spacing:5.280000pt;}
.ws19e{word-spacing:5.328000pt;}
.wsd6{word-spacing:5.333333pt;}
.ws18b{word-spacing:5.376000pt;}
.ws198{word-spacing:5.424000pt;}
.ws86{word-spacing:5.440000pt;}
.ws9a{word-spacing:5.493333pt;}
.ws12f{word-spacing:5.520000pt;}
.ws93{word-spacing:5.546667pt;}
.ws16b{word-spacing:5.568000pt;}
.ws19a{word-spacing:5.616000pt;}
.ws87{word-spacing:5.653333pt;}
.ws71{word-spacing:5.706667pt;}
.wsb7{word-spacing:5.760000pt;}
.ws13a{word-spacing:5.808000pt;}
.wsb0{word-spacing:5.813333pt;}
.ws2f{word-spacing:5.861333pt;}
.wsff{word-spacing:5.866667pt;}
.wsd{word-spacing:5.880000pt;}
.ws1a6{word-spacing:5.904000pt;}
.ws33{word-spacing:5.920000pt;}
.ws190{word-spacing:5.952000pt;}
.wsd8{word-spacing:5.973333pt;}
.ws19{word-spacing:6.000000pt;}
.wscd{word-spacing:6.016000pt;}
.wsa8{word-spacing:6.026667pt;}
.wsea{word-spacing:6.080000pt;}
.ws175{word-spacing:6.096000pt;}
.ws94{word-spacing:6.133333pt;}
.ws48{word-spacing:6.186667pt;}
.ws151{word-spacing:6.192000pt;}
.wscf{word-spacing:6.229333pt;}
.ws1af{word-spacing:6.240000pt;}
.wse{word-spacing:6.280000pt;}
.ws12b{word-spacing:6.288000pt;}
.ws36{word-spacing:6.293333pt;}
.ws17e{word-spacing:6.336000pt;}
.ws6e{word-spacing:6.346667pt;}
.wsd0{word-spacing:6.357333pt;}
.ws29{word-spacing:6.400000pt;}
.ws12e{word-spacing:6.432000pt;}
.ws82{word-spacing:6.453333pt;}
.ws189{word-spacing:6.480000pt;}
.ws76{word-spacing:6.506667pt;}
.ws61{word-spacing:6.560000pt;}
.ws8a{word-spacing:6.613333pt;}
.ws1b1{word-spacing:6.624000pt;}
.ws6f{word-spacing:6.666667pt;}
.ws14e{word-spacing:6.672000pt;}
.ws30{word-spacing:6.698667pt;}
.ws1a{word-spacing:6.720000pt;}
.ws139{word-spacing:6.768000pt;}
.ws8e{word-spacing:6.773333pt;}
.ws155{word-spacing:6.816000pt;}
.ws3f{word-spacing:6.826667pt;}
.ws1a8{word-spacing:6.864000pt;}
.ws40{word-spacing:6.880000pt;}
.ws179{word-spacing:6.912000pt;}
.ws2c{word-spacing:6.933333pt;}
.ws15e{word-spacing:6.960000pt;}
.ws96{word-spacing:6.986667pt;}
.ws131{word-spacing:7.008000pt;}
.ws45{word-spacing:7.040000pt;}
.ws1aa{word-spacing:7.056000pt;}
.ws5f{word-spacing:7.093333pt;}
.ws138{word-spacing:7.104000pt;}
.ws39{word-spacing:7.146667pt;}
.ws54{word-spacing:7.200000pt;}
.ws16a{word-spacing:7.248000pt;}
.ws34{word-spacing:7.253333pt;}
.ws165{word-spacing:7.296000pt;}
.ws7a{word-spacing:7.306667pt;}
.ws3b{word-spacing:7.360000pt;}
.ws145{word-spacing:7.392000pt;}
.ws5d{word-spacing:7.413333pt;}
.ws53{word-spacing:7.466667pt;}
.ws4e{word-spacing:7.520000pt;}
.ws11{word-spacing:7.536000pt;}
.ws32{word-spacing:7.541333pt;}
.wsa0{word-spacing:7.573333pt;}
.ws66{word-spacing:7.626667pt;}
.ws193{word-spacing:7.632000pt;}
.ws62{word-spacing:7.680000pt;}
.ws133{word-spacing:7.728000pt;}
.ws55{word-spacing:7.733333pt;}
.ws128{word-spacing:7.776000pt;}
.ws6c{word-spacing:7.786667pt;}
.wscb{word-spacing:7.802667pt;}
.ws126{word-spacing:7.824000pt;}
.ws81{word-spacing:7.840000pt;}
.ws185{word-spacing:7.872000pt;}
.wsb5{word-spacing:7.893333pt;}
.ws146{word-spacing:7.920000pt;}
.wsac{word-spacing:7.946667pt;}
.wscc{word-spacing:7.954667pt;}
.wsd5{word-spacing:7.978667pt;}
.wsaa{word-spacing:8.000000pt;}
.ws1a7{word-spacing:8.016000pt;}
.ws46{word-spacing:8.053333pt;}
.ws16c{word-spacing:8.064000pt;}
.ws41{word-spacing:8.106667pt;}
.ws17f{word-spacing:8.112000pt;}
.ws20{word-spacing:8.160000pt;}
.ws1a9{word-spacing:8.208000pt;}
.ws42{word-spacing:8.213333pt;}
.ws6d{word-spacing:8.232000pt;}
.ws8b{word-spacing:8.266667pt;}
.ws170{word-spacing:8.304000pt;}
.ws111{word-spacing:8.320000pt;}
.ws148{word-spacing:8.352000pt;}
.wsa6{word-spacing:8.373333pt;}
.ws137{word-spacing:8.400000pt;}
.wsbb{word-spacing:8.426667pt;}
.ws169{word-spacing:8.448000pt;}
.ws4d{word-spacing:8.480000pt;}
.ws150{word-spacing:8.496000pt;}
.wsc{word-spacing:8.533333pt;}
.ws176{word-spacing:8.544000pt;}
.ws1a4{word-spacing:8.592000pt;}
.wse0{word-spacing:8.640000pt;}
.ws25{word-spacing:8.693333pt;}
.wsab{word-spacing:8.746667pt;}
.ws70{word-spacing:8.800000pt;}
.ws1d{word-spacing:8.832000pt;}
.ws21{word-spacing:8.853333pt;}
.ws1e{word-spacing:8.880000pt;}
.ws27{word-spacing:8.906667pt;}
.wsf7{word-spacing:8.960000pt;}
.ws11f{word-spacing:8.976000pt;}
.ws23{word-spacing:9.013333pt;}
.ws132{word-spacing:9.024000pt;}
.ws28{word-spacing:9.066667pt;}
.ws127{word-spacing:9.072000pt;}
.wsd9{word-spacing:9.120000pt;}
.ws134{word-spacing:9.168000pt;}
.wsa1{word-spacing:9.173333pt;}
.ws3a{word-spacing:9.226667pt;}
.ws196{word-spacing:9.264000pt;}
.ws24{word-spacing:9.333333pt;}
.ws160{word-spacing:9.360000pt;}
.wsfa{word-spacing:9.386667pt;}
.ws75{word-spacing:9.440000pt;}
.ws2b{word-spacing:9.493333pt;}
.ws5c{word-spacing:9.504000pt;}
.ws10{word-spacing:9.520000pt;}
.wsfc{word-spacing:9.546667pt;}
.ws164{word-spacing:9.552000pt;}
.ws16d{word-spacing:9.600000pt;}
.ws91{word-spacing:9.653333pt;}
.ws147{word-spacing:9.696000pt;}
.ws121{word-spacing:9.744000pt;}
.ws5b{word-spacing:9.760000pt;}
.ws173{word-spacing:9.792000pt;}
.wsb4{word-spacing:9.813333pt;}
.wsf0{word-spacing:9.866667pt;}
.ws1a2{word-spacing:9.888000pt;}
.ws65{word-spacing:9.920000pt;}
.ws3e{word-spacing:9.973333pt;}
.ws1a3{word-spacing:9.984000pt;}
.ws85{word-spacing:10.026667pt;}
.ws14d{word-spacing:10.032000pt;}
.ws31{word-spacing:10.042667pt;}
.wsc0{word-spacing:10.080000pt;}
.ws1b0{word-spacing:10.128000pt;}
.ws68{word-spacing:10.133333pt;}
.ws11d{word-spacing:10.176000pt;}
.ws3d{word-spacing:10.186667pt;}
.ws157{word-spacing:10.224000pt;}
.ws197{word-spacing:10.272000pt;}
.ws74{word-spacing:10.293333pt;}
.ws6b{word-spacing:10.346667pt;}
.ws178{word-spacing:10.368000pt;}
.wsdb{word-spacing:10.400000pt;}
.ws15d{word-spacing:10.416000pt;}
.ws37{word-spacing:10.453333pt;}
.ws1ae{word-spacing:10.464000pt;}
.wsa2{word-spacing:10.506667pt;}
.ws188{word-spacing:10.512000pt;}
.ws7b{word-spacing:10.560000pt;}
.ws125{word-spacing:10.608000pt;}
.ws9f{word-spacing:10.613333pt;}
.wsee{word-spacing:10.666667pt;}
.ws135{word-spacing:10.704000pt;}
.ws44{word-spacing:10.720000pt;}
.ws1ab{word-spacing:10.752000pt;}
.ws47{word-spacing:10.773333pt;}
.ws79{word-spacing:10.826667pt;}
.wsbf{word-spacing:10.880000pt;}
.ws13{word-spacing:10.896000pt;}
.wse7{word-spacing:10.933333pt;}
.ws14c{word-spacing:10.944000pt;}
.ws2a{word-spacing:10.986667pt;}
.ws141{word-spacing:10.992000pt;}
.ws8f{word-spacing:11.040000pt;}
.ws105{word-spacing:11.093333pt;}
.ws163{word-spacing:11.136000pt;}
.wsb8{word-spacing:11.146667pt;}
.ws26{word-spacing:11.200000pt;}
.wsed{word-spacing:11.253333pt;}
.ws129{word-spacing:11.280000pt;}
.ws57{word-spacing:11.306667pt;}
.ws120{word-spacing:11.328000pt;}
.ws106{word-spacing:11.360000pt;}
.ws17{word-spacing:11.376000pt;}
.ws80{word-spacing:11.413333pt;}
.ws172{word-spacing:11.424000pt;}
.ws10f{word-spacing:11.466667pt;}
.wsa9{word-spacing:11.520000pt;}
.ws149{word-spacing:11.568000pt;}
.ws2d{word-spacing:11.573333pt;}
.wsb1{word-spacing:11.626667pt;}
.ws13f{word-spacing:11.664000pt;}
.ws4b{word-spacing:11.680000pt;}
.ws159{word-spacing:11.712000pt;}
.wse2{word-spacing:11.733333pt;}
.ws119{word-spacing:11.760000pt;}
.ws92{word-spacing:11.786667pt;}
.ws140{word-spacing:11.808000pt;}
.ws3c{word-spacing:11.840000pt;}
.ws11a{word-spacing:11.856000pt;}
.wsf1{word-spacing:11.893333pt;}
.ws156{word-spacing:11.904000pt;}
.wsc1{word-spacing:11.946667pt;}
.ws166{word-spacing:11.952000pt;}
.ws77{word-spacing:12.000000pt;}
.ws78{word-spacing:12.053333pt;}
.ws177{word-spacing:12.096000pt;}
.ws63{word-spacing:12.106667pt;}
.ws97{word-spacing:12.160000pt;}
.ws7e{word-spacing:12.213333pt;}
.wsa7{word-spacing:12.266667pt;}
.ws1b{word-spacing:12.288000pt;}
.ws9b{word-spacing:12.320000pt;}
.ws195{word-spacing:12.336000pt;}
.ws4c{word-spacing:12.373333pt;}
.wsf{word-spacing:12.394667pt;}
.ws7f{word-spacing:12.480000pt;}
.ws1a5{word-spacing:12.528000pt;}
.ws38{word-spacing:12.533333pt;}
.ws22{word-spacing:12.586667pt;}
.wsf2{word-spacing:12.640000pt;}
.ws124{word-spacing:12.672000pt;}
.wsfe{word-spacing:12.693333pt;}
.wsae{word-spacing:12.746667pt;}
.ws183{word-spacing:12.768000pt;}
.wsfb{word-spacing:12.800000pt;}
.ws11e{word-spacing:12.816000pt;}
.ws43{word-spacing:12.906667pt;}
.wsda{word-spacing:12.960000pt;}
.wsa4{word-spacing:13.013333pt;}
.ws84{word-spacing:13.066667pt;}
.wse6{word-spacing:13.120000pt;}
.ws12a{word-spacing:13.152000pt;}
.ws67{word-spacing:13.173333pt;}
.ws1a0{word-spacing:13.200000pt;}
.ws95{word-spacing:13.226667pt;}
.ws5e{word-spacing:13.333333pt;}
.wse9{word-spacing:13.386667pt;}
.wsfd{word-spacing:13.440000pt;}
.ws60{word-spacing:13.546667pt;}
.ws1f{word-spacing:13.584000pt;}
.wsf9{word-spacing:13.600000pt;}
.ws35{word-spacing:13.653333pt;}
.ws174{word-spacing:13.680000pt;}
.wsdc{word-spacing:13.706667pt;}
.ws89{word-spacing:13.760000pt;}
.ws117{word-spacing:13.824000pt;}
.ws184{word-spacing:13.872000pt;}
.wsa5{word-spacing:13.920000pt;}
.ws51{word-spacing:13.973333pt;}
.ws14f{word-spacing:14.016000pt;}
.ws10b{word-spacing:14.026667pt;}
.ws18{word-spacing:14.064000pt;}
.wsbd{word-spacing:14.080000pt;}
.ws102{word-spacing:14.133333pt;}
.wsbe{word-spacing:14.240000pt;}
.wsf8{word-spacing:14.293333pt;}
.ws72{word-spacing:14.346667pt;}
.ws194{word-spacing:14.352000pt;}
.ws12{word-spacing:14.400000pt;}
.ws73{word-spacing:14.453333pt;}
.ws110{word-spacing:14.613333pt;}
.wsaf{word-spacing:14.720000pt;}
.ws1ad{word-spacing:14.736000pt;}
.ws7d{word-spacing:14.773333pt;}
.ws14{word-spacing:14.784000pt;}
.wsbc{word-spacing:14.880000pt;}
.ws15f{word-spacing:14.976000pt;}
.wsec{word-spacing:15.146667pt;}
.wsf6{word-spacing:15.200000pt;}
.ws18c{word-spacing:15.216000pt;}
.ws10d{word-spacing:15.253333pt;}
.ws58{word-spacing:15.306667pt;}
.ws1a1{word-spacing:15.408000pt;}
.ws7c{word-spacing:15.413333pt;}
.ws88{word-spacing:15.466667pt;}
.ws9c{word-spacing:15.520000pt;}
.ws15{word-spacing:15.552000pt;}
.wsdd{word-spacing:15.573333pt;}
.wsb6{word-spacing:15.626667pt;}
.ws98{word-spacing:15.680000pt;}
.ws115{word-spacing:15.733333pt;}
.ws112{word-spacing:15.786667pt;}
.wseb{word-spacing:15.840000pt;}
.ws1c{word-spacing:15.888000pt;}
.ws103{word-spacing:15.893333pt;}
.ws109{word-spacing:15.946667pt;}
.ws118{word-spacing:15.984000pt;}
.wsa3{word-spacing:16.000000pt;}
.wsb3{word-spacing:16.160000pt;}
.ws69{word-spacing:16.213333pt;}
.ws90{word-spacing:16.266667pt;}
.ws56{word-spacing:16.320000pt;}
.ws107{word-spacing:16.373333pt;}
.ws13e{word-spacing:16.416000pt;}
.ws4f{word-spacing:16.480000pt;}
.wsb2{word-spacing:16.586667pt;}
.ws180{word-spacing:16.752000pt;}
.ws10c{word-spacing:16.800000pt;}
.ws11b{word-spacing:17.040000pt;}
.ws101{word-spacing:17.066667pt;}
.wse1{word-spacing:17.173333pt;}
.ws18d{word-spacing:17.712000pt;}
.ws104{word-spacing:17.760000pt;}
.ws6a{word-spacing:17.866667pt;}
.ws18f{word-spacing:17.952000pt;}
.ws100{word-spacing:18.133333pt;}
.ws59{word-spacing:18.293333pt;}
.ws52{word-spacing:18.506667pt;}
.ws130{word-spacing:18.672000pt;}
.ws9e{word-spacing:18.773333pt;}
.ws144{word-spacing:18.816000pt;}
.ws10a{word-spacing:18.826667pt;}
.wse4{word-spacing:19.093333pt;}
.ws13d{word-spacing:19.104000pt;}
.ws64{word-spacing:19.253333pt;}
.wsad{word-spacing:19.360000pt;}
.ws4a{word-spacing:19.413333pt;}
.wsef{word-spacing:19.466667pt;}
.ws11c{word-spacing:19.728000pt;}
.ws171{word-spacing:19.824000pt;}
.ws16e{word-spacing:20.016000pt;}
.ws16f{word-spacing:20.064000pt;}
.wse5{word-spacing:20.266667pt;}
.ws136{word-spacing:20.688000pt;}
.ws9d{word-spacing:20.746667pt;}
.ws18e{word-spacing:20.928000pt;}
.wse3{word-spacing:21.013333pt;}
.ws16{word-spacing:21.120000pt;}
.ws2e{word-spacing:21.386667pt;}
.ws187{word-spacing:21.696000pt;}
.ws143{word-spacing:21.888000pt;}
.ws49{word-spacing:22.453333pt;}
.wsde{word-spacing:22.933333pt;}
.ws14b{word-spacing:23.328000pt;}
.ws158{word-spacing:23.856000pt;}
.ws116{word-spacing:24.640000pt;}
.ws186{word-spacing:25.248000pt;}
.ws17a{word-spacing:26.928000pt;}
.ws14a{word-spacing:27.168000pt;}
.ws17b{word-spacing:31.392000pt;}
.ws19c{word-spacing:33.792000pt;}
.ws162{word-spacing:35.040000pt;}
.ws154{word-spacing:36.336000pt;}
.ws19b{word-spacing:39.360000pt;}
.ws161{word-spacing:40.800000pt;}
.ws153{word-spacing:42.336000pt;}
.wsd1{word-spacing:54.307200pt;}
.wsc7{word-spacing:56.089067pt;}
.wsc2{word-spacing:121.189333pt;}
.wsc8{word-spacing:125.890133pt;}
.wsc9{word-spacing:146.156800pt;}
.wsc5{word-spacing:158.489067pt;}
.wsc6{word-spacing:175.084800pt;}
.wsd2{word-spacing:200.752533pt;}
.wsc4{word-spacing:260.209067pt;}
._12{margin-left:-15.146667pt;}
._e{margin-left:-7.967961pt;}
._21{margin-left:-6.682706pt;}
._c{margin-left:-4.725372pt;}
._1{margin-left:-3.680000pt;}
._5{margin-left:-2.719213pt;}
._0{margin-left:-1.706654pt;}
._4{width:0.954667pt;}
._8{width:1.914654pt;}
._15{width:2.917802pt;}
._1e{width:3.989867pt;}
._2{width:5.599987pt;}
._3{width:6.933320pt;}
._9{width:8.640000pt;}
._6{width:9.556520pt;}
._7{width:11.242654pt;}
._f{width:12.250680pt;}
._11{width:14.236813pt;}
._10{width:15.402654pt;}
._13{width:17.438933pt;}
._16{width:19.053320pt;}
._1f{width:20.489600pt;}
._20{width:22.253854pt;}
._23{width:23.242400pt;}
._26{width:25.812228pt;}
._1a{width:27.074667pt;}
._25{width:31.532254pt;}
._24{width:40.167200pt;}
._22{width:41.664520pt;}
._a{width:53.995454pt;}
._1d{width:64.609067pt;}
._14{width:69.653333pt;}
._d{width:117.065041pt;}
._b{width:118.826133pt;}
._1c{width:150.123200pt;}
._19{width:161.770667pt;}
._17{width:257.592533pt;}
._18{width:259.374400pt;}
._1b{width:327.857067pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:60.086668pt;}
.y65{bottom:68.280533pt;}
.y34{bottom:74.753335pt;}
.y10a{bottom:74.809733pt;}
.ydd{bottom:75.800000pt;}
.yb0{bottom:75.934400pt;}
.y64{bottom:78.947200pt;}
.y188{bottom:82.601067pt;}
.y1c6{bottom:83.601067pt;}
.y161{bottom:85.601067pt;}
.y4{bottom:86.333337pt;}
.y114{bottom:88.143067pt;}
.y63{bottom:89.613867pt;}
.y133{bottom:90.601067pt;}
.ydc{bottom:93.133333pt;}
.yaf{bottom:93.267733pt;}
.y187{bottom:97.267733pt;}
.y1c5{bottom:98.267733pt;}
.y60{bottom:100.613867pt;}
.y160{bottom:102.934400pt;}
.y132{bottom:107.934400pt;}
.ydb{bottom:110.466667pt;}
.yae{bottom:110.601067pt;}
.y61{bottom:111.613867pt;}
.y186{bottom:111.934400pt;}
.y1c4{bottom:112.934400pt;}
.y15f{bottom:120.267733pt;}
.y21{bottom:123.790666pt;}
.y131{bottom:125.267733pt;}
.y185{bottom:126.601067pt;}
.y1c3{bottom:127.601067pt;}
.yda{bottom:127.800000pt;}
.yad{bottom:127.934400pt;}
.y163{bottom:137.267733pt;}
.y15e{bottom:137.601067pt;}
.y184{bottom:141.267733pt;}
.y1c2{bottom:142.267733pt;}
.y130{bottom:142.601067pt;}
.yd9{bottom:145.133333pt;}
.yac{bottom:145.267733pt;}
.y5f{bottom:151.934400pt;}
.y183{bottom:155.934400pt;}
.y1c1{bottom:156.934400pt;}
.y115{bottom:157.193867pt;}
.y12f{bottom:159.934400pt;}
.yd8{bottom:162.466667pt;}
.yab{bottom:162.601067pt;}
.y15d{bottom:164.267733pt;}
.y5e{bottom:169.267733pt;}
.y182{bottom:170.601067pt;}
.y1c0{bottom:171.601067pt;}
.y18{bottom:175.052000pt;}
.y12e{bottom:177.267733pt;}
.yd7{bottom:179.800000pt;}
.yaa{bottom:179.934400pt;}
.y181{bottom:185.267733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1bf{bottom:186.267733pt;}
.y5d{bottom:186.601067pt;}
.y12d{bottom:194.601067pt;}
.yd6{bottom:197.133333pt;}
.ya9{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y180{bottom:199.934400pt;}
.y1be{bottom:200.934400pt;}
.y5c{bottom:203.934400pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y15c{bottom:209.601067pt;}
.y12c{bottom:211.934400pt;}
.yd5{bottom:214.466667pt;}
.ya8{bottom:214.601067pt;}
.y1bd{bottom:215.601067pt;}
.y116{bottom:219.173467pt;}
.y5b{bottom:221.267733pt;}
.y15b{bottom:226.934400pt;}
.y12b{bottom:229.267733pt;}
.y1bc{bottom:230.267733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yd4{bottom:231.800000pt;}
.ya7{bottom:231.934400pt;}
.y122{bottom:232.506800pt;}
.y5a{bottom:238.601067pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y17f{bottom:243.934400pt;}
.y15a{bottom:244.267733pt;}
.y1bb{bottom:244.934400pt;}
.y12a{bottom:246.601067pt;}
.yd3{bottom:249.133333pt;}
.ya6{bottom:249.267733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y33{bottom:254.601334pt;}
.y59{bottom:255.934400pt;}
.y17e{bottom:258.601067pt;}
.y1ba{bottom:259.601067pt;}
.y159{bottom:261.601067pt;}
.y129{bottom:263.934400pt;}
.yd2{bottom:266.466667pt;}
.ya5{bottom:266.601067pt;}
.y58{bottom:273.267733pt;}
.y1b9{bottom:274.267733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y158{bottom:278.934400pt;}
.y128{bottom:281.267733pt;}
.yd1{bottom:283.800000pt;}
.ya4{bottom:283.934400pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y17d{bottom:287.934400pt;}
.y1b8{bottom:288.934400pt;}
.y57{bottom:290.601067pt;}
.y157{bottom:296.267733pt;}
.y127{bottom:298.601067pt;}
.yf6{bottom:301.133333pt;}
.ya3{bottom:301.267733pt;}
.y17c{bottom:302.601067pt;}
.y1b7{bottom:303.601067pt;}
.y56{bottom:307.934400pt;}
.yf{bottom:309.452000pt;}
.yd0{bottom:310.466667pt;}
.y32{bottom:311.801334pt;}
.y156{bottom:313.601067pt;}
.y126{bottom:315.934400pt;}
.y17b{bottom:317.267733pt;}
.y117{bottom:317.412267pt;}
.y10c{bottom:317.989867pt;}
.y1b6{bottom:318.267733pt;}
.yf5{bottom:318.466667pt;}
.ya2{bottom:318.601067pt;}
.y10d{bottom:321.638667pt;}
.y55{bottom:325.267733pt;}
.y10b{bottom:326.548933pt;}
.y155{bottom:330.934400pt;}
.y17a{bottom:331.934400pt;}
.y1b5{bottom:332.934400pt;}
.yf4{bottom:335.800000pt;}
.ya1{bottom:335.934400pt;}
.y54{bottom:342.601067pt;}
.ye{bottom:343.809333pt;}
.y179{bottom:346.601067pt;}
.y1b4{bottom:347.601067pt;}
.y154{bottom:348.267733pt;}
.yf3{bottom:353.133333pt;}
.ya0{bottom:353.267733pt;}
.y109{bottom:355.166933pt;}
.ycf{bottom:358.955867pt;}
.y53{bottom:359.934400pt;}
.y178{bottom:361.267733pt;}
.y1b3{bottom:362.267733pt;}
.yd{bottom:362.706666pt;}
.y153{bottom:365.601067pt;}
.y31{bottom:369.001334pt;}
.yf2{bottom:370.466667pt;}
.y9f{bottom:370.601067pt;}
.y108{bottom:372.500267pt;}
.y177{bottom:375.934400pt;}
.yce{bottom:376.289200pt;}
.y1b2{bottom:376.934400pt;}
.y52{bottom:377.267733pt;}
.yf1{bottom:387.800000pt;}
.y9e{bottom:387.934400pt;}
.y107{bottom:389.833600pt;}
.y176{bottom:390.601067pt;}
.y1b1{bottom:391.601067pt;}
.y152{bottom:392.267733pt;}
.ycd{bottom:393.622533pt;}
.y51{bottom:394.601067pt;}
.y118{bottom:397.839200pt;}
.yf0{bottom:405.133333pt;}
.y9d{bottom:405.267733pt;}
.y1b0{bottom:406.267733pt;}
.y106{bottom:407.166933pt;}
.y119{bottom:411.172533pt;}
.y50{bottom:411.934400pt;}
.y175{bottom:419.934400pt;}
.ycc{bottom:420.289200pt;}
.y1af{bottom:420.934400pt;}
.yef{bottom:422.466667pt;}
.y9c{bottom:422.601067pt;}
.y105{bottom:424.500267pt;}
.y30{bottom:428.806667pt;}
.y4f{bottom:429.267733pt;}
.y174{bottom:434.601067pt;}
.y1ae{bottom:435.601067pt;}
.y151{bottom:437.601067pt;}
.yee{bottom:439.800000pt;}
.y9b{bottom:439.934400pt;}
.y4e{bottom:446.601067pt;}
.yc{bottom:446.990669pt;}
.y173{bottom:449.267733pt;}
.y1ad{bottom:450.267733pt;}
.y104{bottom:451.166933pt;}
.y150{bottom:454.934400pt;}
.yed{bottom:457.133333pt;}
.y9a{bottom:457.267733pt;}
.yb{bottom:462.990669pt;}
.y172{bottom:463.934400pt;}
.y1ac{bottom:464.934400pt;}
.ycb{bottom:468.778533pt;}
.y14f{bottom:472.267733pt;}
.y4d{bottom:473.267733pt;}
.yec{bottom:474.466667pt;}
.y99{bottom:474.601067pt;}
.y171{bottom:478.601067pt;}
.ya{bottom:478.990666pt;}
.y1ab{bottom:479.601067pt;}
.y2f{bottom:483.401334pt;}
.yca{bottom:486.111867pt;}
.y14e{bottom:489.601067pt;}
.yeb{bottom:491.800000pt;}
.y98{bottom:491.934400pt;}
.y170{bottom:493.267733pt;}
.y1aa{bottom:494.267733pt;}
.y9{bottom:494.990666pt;}
.y103{bottom:495.867200pt;}
.yc9{bottom:503.445200pt;}
.y14d{bottom:506.934400pt;}
.y16f{bottom:507.934400pt;}
.y7b{bottom:508.573600pt;}
.y1a9{bottom:508.934400pt;}
.yea{bottom:509.133333pt;}
.y97{bottom:509.267733pt;}
.y102{bottom:513.200533pt;}
.y7a{bottom:520.573600pt;}
.yc8{bottom:520.778533pt;}
.y16e{bottom:522.601067pt;}
.y1a8{bottom:523.601067pt;}
.y14c{bottom:524.267733pt;}
.ye9{bottom:526.466667pt;}
.y96{bottom:526.601067pt;}
.y101{bottom:530.533867pt;}
.y79{bottom:532.573600pt;}
.yc7{bottom:538.111867pt;}
.y1a7{bottom:538.267733pt;}
.y11a{bottom:541.322133pt;}
.y14b{bottom:541.601067pt;}
.y2e{bottom:543.206667pt;}
.ye8{bottom:543.800000pt;}
.y95{bottom:543.934400pt;}
.y78{bottom:544.573600pt;}
.y16d{bottom:546.601067pt;}
.y100{bottom:547.867200pt;}
.y1a6{bottom:552.934400pt;}
.y11b{bottom:554.655467pt;}
.yc6{bottom:555.445200pt;}
.y77{bottom:556.573600pt;}
.y14a{bottom:558.934400pt;}
.ye7{bottom:561.133333pt;}
.y94{bottom:561.267733pt;}
.yff{bottom:565.200533pt;}
.y1a5{bottom:567.601067pt;}
.yc5{bottom:572.778533pt;}
.y2d{bottom:573.740001pt;}
.y8{bottom:573.786667pt;}
.y149{bottom:576.267733pt;}
.y76{bottom:576.634400pt;}
.ye6{bottom:578.466667pt;}
.y93{bottom:578.601067pt;}
.y1a4{bottom:582.267733pt;}
.y4c{bottom:583.934400pt;}
.y2c{bottom:587.073335pt;}
.y75{bottom:588.634400pt;}
.yc4{bottom:590.111867pt;}
.y16c{bottom:591.934400pt;}
.y7{bottom:592.685334pt;}
.y148{bottom:593.601067pt;}
.ye5{bottom:595.800000pt;}
.y92{bottom:595.934400pt;}
.y1a3{bottom:596.934400pt;}
.y4b{bottom:597.267733pt;}
.yfe{bottom:597.900800pt;}
.y2b{bottom:600.406667pt;}
.y74{bottom:600.634400pt;}
.y16b{bottom:606.601067pt;}
.yc3{bottom:607.445200pt;}
.y11c{bottom:610.437467pt;}
.y4a{bottom:610.601067pt;}
.y147{bottom:610.934400pt;}
.y1a2{bottom:611.601067pt;}
.y73{bottom:612.634400pt;}
.ye4{bottom:613.133333pt;}
.y91{bottom:613.267733pt;}
.yfd{bottom:615.234133pt;}
.y11d{bottom:623.770800pt;}
.y49{bottom:623.934400pt;}
.y72{bottom:624.634400pt;}
.yc2{bottom:624.778533pt;}
.y1a1{bottom:626.267733pt;}
.y146{bottom:628.267733pt;}
.ye3{bottom:630.466667pt;}
.y90{bottom:630.601067pt;}
.yfc{bottom:632.567467pt;}
.y48{bottom:637.267733pt;}
.y1a0{bottom:640.934400pt;}
.yc1{bottom:642.111867pt;}
.y71{bottom:644.867733pt;}
.y6{bottom:645.598667pt;}
.y145{bottom:645.601067pt;}
.ye2{bottom:647.800000pt;}
.y8f{bottom:647.934400pt;}
.yfb{bottom:649.900800pt;}
.y47{bottom:650.601067pt;}
.y19f{bottom:655.601067pt;}
.y70{bottom:656.867733pt;}
.yc0{bottom:659.445200pt;}
.y144{bottom:662.934400pt;}
.y46{bottom:663.934400pt;}
.ye1{bottom:665.133333pt;}
.y8e{bottom:665.267733pt;}
.yfa{bottom:667.234133pt;}
.y6f{bottom:668.867733pt;}
.y3{bottom:668.977329pt;}
.y19e{bottom:670.267733pt;}
.y2a{bottom:672.726665pt;}
.y16a{bottom:675.934400pt;}
.ybf{bottom:676.778533pt;}
.y45{bottom:677.267733pt;}
.y143{bottom:680.267733pt;}
.y6e{bottom:680.867733pt;}
.ye0{bottom:682.466667pt;}
.y8d{bottom:682.601067pt;}
.yf9{bottom:684.567467pt;}
.y19d{bottom:684.934400pt;}
.y44{bottom:690.601067pt;}
.y6d{bottom:692.867733pt;}
.ybe{bottom:694.111867pt;}
.y142{bottom:697.601067pt;}
.y29{bottom:699.393332pt;}
.y19c{bottom:699.601067pt;}
.ydf{bottom:699.800000pt;}
.y8c{bottom:699.934400pt;}
.yf8{bottom:701.900800pt;}
.y43{bottom:703.934400pt;}
.y6c{bottom:704.867733pt;}
.y169{bottom:705.267733pt;}
.ybd{bottom:711.445200pt;}
.y19b{bottom:714.267733pt;}
.y141{bottom:714.934400pt;}
.y28{bottom:715.393332pt;}
.y6b{bottom:716.867733pt;}
.y42{bottom:717.267733pt;}
.yf7{bottom:719.234133pt;}
.y168{bottom:719.934400pt;}
.y123{bottom:720.639467pt;}
.yde{bottom:726.466667pt;}
.y162{bottom:726.601067pt;}
.y110{bottom:727.840533pt;}
.y10f{bottom:728.245733pt;}
.ybc{bottom:728.778533pt;}
.y6a{bottom:728.867733pt;}
.y19a{bottom:728.934400pt;}
.y41{bottom:730.601067pt;}
.y11e{bottom:731.013733pt;}
.y27{bottom:731.393332pt;}
.y140{bottom:732.267733pt;}
.y10e{bottom:733.440400pt;}
.y124{bottom:733.972800pt;}
.y8b{bottom:734.601067pt;}
.y167{bottom:742.601067pt;}
.y199{bottom:743.601067pt;}
.y40{bottom:743.934400pt;}
.ybb{bottom:746.111867pt;}
.y69{bottom:749.101067pt;}
.y13f{bottom:749.601067pt;}
.y8a{bottom:751.934400pt;}
.y3f{bottom:757.267733pt;}
.y198{bottom:758.267733pt;}
.y68{bottom:761.101067pt;}
.yba{bottom:763.445200pt;}
.y13e{bottom:766.934400pt;}
.y89{bottom:769.267733pt;}
.y3e{bottom:770.601067pt;}
.y166{bottom:771.934400pt;}
.y197{bottom:772.934400pt;}
.y67{bottom:773.101067pt;}
.y26{bottom:778.034669pt;}
.yb9{bottom:780.778533pt;}
.y2{bottom:781.661334pt;}
.y3d{bottom:783.934400pt;}
.y13d{bottom:784.267733pt;}
.y66{bottom:785.101067pt;}
.y111{bottom:785.221467pt;}
.y88{bottom:786.601067pt;}
.y196{bottom:787.601067pt;}
.y11f{bottom:794.987600pt;}
.y113{bottom:797.760000pt;}
.yb8{bottom:798.111867pt;}
.y13c{bottom:801.601067pt;}
.y195{bottom:802.267733pt;}
.y87{bottom:803.934400pt;}
.y112{bottom:808.756133pt;}
.y165{bottom:810.601067pt;}
.yb7{bottom:815.445200pt;}
.y194{bottom:816.934400pt;}
.y13b{bottom:818.934400pt;}
.y86{bottom:821.267733pt;}
.y3c{bottom:829.561067pt;}
.y193{bottom:831.601067pt;}
.yb6{bottom:832.778533pt;}
.y25{bottom:834.613333pt;}
.y13a{bottom:836.267733pt;}
.y85{bottom:838.601067pt;}
.y192{bottom:846.267733pt;}
.y3b{bottom:849.601067pt;}
.yb5{bottom:850.111867pt;}
.y139{bottom:853.601067pt;}
.y84{bottom:855.934400pt;}
.y1{bottom:859.312000pt;}
.y191{bottom:860.934400pt;}
.y24{bottom:862.613333pt;}
.yb4{bottom:867.445200pt;}
.y138{bottom:870.934400pt;}
.y83{bottom:873.267733pt;}
.y190{bottom:875.601067pt;}
.y164{bottom:879.934400pt;}
.y120{bottom:882.470667pt;}
.y3a{bottom:884.267733pt;}
.yb3{bottom:884.778533pt;}
.y137{bottom:888.267733pt;}
.y18f{bottom:890.267733pt;}
.y82{bottom:890.601067pt;}
.y121{bottom:895.804000pt;}
.y18e{bottom:904.934400pt;}
.y39{bottom:905.601067pt;}
.y81{bottom:907.934400pt;}
.yb2{bottom:911.445200pt;}
.y18d{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.y136{bottom:922.934400pt;}
.y80{bottom:925.267733pt;}
.y36{bottom:931.121067pt;}
.y18c{bottom:934.267733pt;}
.y125{bottom:940.615867pt;}
.y7f{bottom:942.601067pt;}
.y18b{bottom:948.934400pt;}
.y135{bottom:949.601067pt;}
.y7e{bottom:959.934400pt;}
.y62{bottom:963.362000pt;}
.y18a{bottom:963.601067pt;}
.y38{bottom:975.473733pt;}
.y134{bottom:976.267733pt;}
.y7d{bottom:977.267733pt;}
.y189{bottom:978.267733pt;}
.y37{bottom:987.473733pt;}
.yb1{bottom:1014.433867pt;}
.y7c{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h16{height:22.308000pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h20{height:30.506667pt;}
.h1b{height:30.762667pt;}
.hb{height:32.645833pt;}
.h1d{height:33.080000pt;}
.h1c{height:35.285333pt;}
.h1f{height:36.226667pt;}
.hf{height:36.726562pt;}
.h18{height:39.696000pt;}
.h1e{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.h12{height:44.106667pt;}
.h15{height:48.582800pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x3f{left:109.333333pt;}
.xb{left:112.099867pt;}
.xe{left:120.000000pt;}
.xf{left:126.767067pt;}
.x6{left:129.466667pt;}
.x11{left:143.433733pt;}
.x12{left:155.433733pt;}
.x10{left:167.433733pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x13{left:183.433733pt;}
.x14{left:195.433733pt;}
.x9{left:203.327991pt;}
.x15{left:207.433733pt;}
.x16{left:219.433733pt;}
.x17{left:231.433733pt;}
.x18{left:243.433733pt;}
.x19{left:255.433733pt;}
.x8{left:260.969328pt;}
.x1a{left:267.433733pt;}
.x1b{left:279.433733pt;}
.x1c{left:291.433733pt;}
.x1d{left:303.433733pt;}
.x1e{left:315.433733pt;}
.x1f{left:327.433733pt;}
.x3d{left:329.500000pt;}
.x20{left:339.433733pt;}
.x38{left:347.500000pt;}
.x21{left:351.433733pt;}
.x39{left:359.500000pt;}
.x22{left:363.433733pt;}
.x37{left:371.500000pt;}
.x23{left:375.433733pt;}
.x24{left:387.433733pt;}
.x25{left:399.433733pt;}
.x3{left:404.408000pt;}
.x26{left:411.433733pt;}
.x27{left:423.433733pt;}
.x28{left:435.433733pt;}
.x29{left:447.433733pt;}
.x2a{left:459.433733pt;}
.x2b{left:471.433733pt;}
.x2c{left:483.433733pt;}
.x2d{left:495.433733pt;}
.x3e{left:502.378267pt;}
.xd{left:507.508000pt;}
.x3a{left:512.166667pt;}
.x2e{left:519.433733pt;}
.x3b{left:524.166667pt;}
.x2f{left:531.433733pt;}
.x3c{left:536.166667pt;}
.x30{left:543.433733pt;}
.x31{left:555.433733pt;}
.x32{left:567.433733pt;}
.xc{left:577.800667pt;}
.x33{left:579.433733pt;}
.x34{left:591.433733pt;}
.x35{left:603.433733pt;}
.x36{left:635.034133pt;}
}




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