
    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_708432606f4056c77a71be58.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950195;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_430191b4b59d48fa7e3d9a81.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_c377aa8bb0baf6f3edfd7dad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.039062;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_944382460732e96ed09473ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_7085950ef713864e38ad9621.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_3bd5a70e35bc3aec8bd93f51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_7282ee5b9e33d19d14d175b0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3f5337415047dc4d7e033415.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9866ac62824250d024d62a48.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_453c67ea43833f090bff6d61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_1cf7a8c26e0d27620fc443b7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_971eeb535199c11a0120b17e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6f3ab935fb5d2e55a905469b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_bf4ab99cc138fe3deccee375.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.027832;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;}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m7{transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.810000px;}
.lsc{letter-spacing:0.898800px;}
.ls4{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.584000px;}
.ls24{letter-spacing:2.088000px;}
.ls3{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.292600px;}
.ls9{letter-spacing:2.497200px;}
.ls2{letter-spacing:2.640000px;}
.ls6{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.472800px;}
.lsb{letter-spacing:3.599400px;}
.ls7{letter-spacing:3.600000px;}
.lsa{letter-spacing:4.128000px;}
.lsd{letter-spacing:4.399800px;}
.ls20{letter-spacing:4.730400px;}
.ls1a{letter-spacing:6.335400px;}
.ls1c{letter-spacing:6.755400px;}
.lse{letter-spacing:6.826800px;}
.ls12{letter-spacing:7.147800px;}
.ls14{letter-spacing:7.393800px;}
.ls5{letter-spacing:7.513200px;}
.ls8{letter-spacing:8.278200px;}
.ls1e{letter-spacing:9.003495px;}
.ls11{letter-spacing:9.742800px;}
.ls10{letter-spacing:10.278600px;}
.ls15{letter-spacing:10.454400px;}
.ls1b{letter-spacing:12.135000px;}
.ls1f{letter-spacing:12.310200px;}
.ls22{letter-spacing:12.543600px;}
.ls13{letter-spacing:12.675000px;}
.ls17{letter-spacing:17.989800px;}
.ls23{letter-spacing:18.625200px;}
.ls16{letter-spacing:20.007600px;}
.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;}
}
.wsa7{word-spacing:-19.584000px;}
.ws55{word-spacing:-19.440000px;}
.ws24{word-spacing:-19.140000px;}
.ws80{word-spacing:-18.720000px;}
.wsa6{word-spacing:-18.504000px;}
.ws17{word-spacing:-18.000000px;}
.ws23{word-spacing:-16.500000px;}
.wsbb{word-spacing:-10.872000px;}
.ws45{word-spacing:-10.494000px;}
.wsba{word-spacing:-10.440000px;}
.ws28{word-spacing:-9.619500px;}
.wsbc{word-spacing:-9.144000px;}
.wsa0{word-spacing:-5.472000px;}
.ws18{word-spacing:-4.620000px;}
.ws4f{word-spacing:-4.104000px;}
.wsa2{word-spacing:-3.960000px;}
.ws69{word-spacing:-3.600000px;}
.ws4d{word-spacing:-3.528000px;}
.ws50{word-spacing:-3.456000px;}
.ws2e{word-spacing:-3.312000px;}
.wsb3{word-spacing:-3.168000px;}
.ws96{word-spacing:-3.108000px;}
.ws44{word-spacing:-3.096000px;}
.ws85{word-spacing:-3.024000px;}
.ws59{word-spacing:-2.880000px;}
.ws2{word-spacing:-2.808000px;}
.wse{word-spacing:-2.736000px;}
.ws41{word-spacing:-2.664000px;}
.ws25{word-spacing:-2.640000px;}
.ws98{word-spacing:-2.592000px;}
.wsf{word-spacing:-2.520000px;}
.ws11{word-spacing:-2.448000px;}
.ws3e{word-spacing:-2.442000px;}
.ws15{word-spacing:-2.376000px;}
.ws4e{word-spacing:-2.304000px;}
.ws5a{word-spacing:-2.232000px;}
.ws3a{word-spacing:-2.160000px;}
.wsb6{word-spacing:-2.088000px;}
.ws12{word-spacing:-2.016000px;}
.ws2b{word-spacing:-1.800000px;}
.ws5d{word-spacing:-1.728000px;}
.ws13{word-spacing:-1.584000px;}
.ws29{word-spacing:-1.512000px;}
.ws27{word-spacing:-1.440000px;}
.ws6c{word-spacing:-1.296000px;}
.ws3f{word-spacing:-1.254000px;}
.ws46{word-spacing:-1.224000px;}
.ws7f{word-spacing:-1.188000px;}
.ws35{word-spacing:-1.152000px;}
.ws37{word-spacing:-1.080000px;}
.ws43{word-spacing:-1.008000px;}
.ws90{word-spacing:-0.936000px;}
.ws22{word-spacing:-0.864000px;}
.ws3d{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.648000px;}
.ws70{word-spacing:-0.576000px;}
.ws88{word-spacing:-0.504000px;}
.ws4c{word-spacing:-0.432000px;}
.ws4b{word-spacing:-0.360000px;}
.wsa5{word-spacing:-0.144000px;}
.ws2d{word-spacing:-0.132000px;}
.ws0{word-spacing:0.000000px;}
.ws8a{word-spacing:0.072000px;}
.ws9c{word-spacing:0.144000px;}
.ws33{word-spacing:0.216000px;}
.ws1{word-spacing:0.288000px;}
.ws1d{word-spacing:0.360000px;}
.ws51{word-spacing:0.432000px;}
.ws19{word-spacing:0.504000px;}
.ws2f{word-spacing:0.576000px;}
.ws1c{word-spacing:0.648000px;}
.ws32{word-spacing:0.720000px;}
.ws8{word-spacing:0.792000px;}
.wsa1{word-spacing:0.936000px;}
.ws8f{word-spacing:1.008000px;}
.ws56{word-spacing:1.152000px;}
.ws8d{word-spacing:1.296000px;}
.ws95{word-spacing:1.368000px;}
.ws8e{word-spacing:1.440000px;}
.ws30{word-spacing:1.512000px;}
.ws5c{word-spacing:1.584000px;}
.ws77{word-spacing:1.656000px;}
.ws8b{word-spacing:1.728000px;}
.ws1b{word-spacing:1.872000px;}
.ws49{word-spacing:1.944000px;}
.ws7c{word-spacing:2.016000px;}
.ws61{word-spacing:2.088000px;}
.ws6b{word-spacing:2.160000px;}
.ws34{word-spacing:2.232000px;}
.ws99{word-spacing:2.304000px;}
.ws8c{word-spacing:2.376000px;}
.ws21{word-spacing:2.448000px;}
.ws2c{word-spacing:2.520000px;}
.wsc{word-spacing:2.592000px;}
.ws4{word-spacing:2.664000px;}
.ws3b{word-spacing:2.808000px;}
.ws5b{word-spacing:2.880000px;}
.ws6e{word-spacing:2.952000px;}
.ws5f{word-spacing:3.024000px;}
.ws60{word-spacing:3.168000px;}
.ws39{word-spacing:3.240000px;}
.ws3{word-spacing:3.384000px;}
.ws31{word-spacing:3.456000px;}
.ws97{word-spacing:3.600000px;}
.ws87{word-spacing:3.672000px;}
.ws16{word-spacing:3.744000px;}
.ws94{word-spacing:3.816000px;}
.ws62{word-spacing:3.888000px;}
.ws10{word-spacing:3.960000px;}
.ws2a{word-spacing:4.032000px;}
.ws9f{word-spacing:4.104000px;}
.ws76{word-spacing:4.176000px;}
.ws20{word-spacing:4.248000px;}
.ws81{word-spacing:4.320000px;}
.wsa3{word-spacing:4.392000px;}
.ws36{word-spacing:4.464000px;}
.ws9a{word-spacing:4.536000px;}
.ws42{word-spacing:4.608000px;}
.ws52{word-spacing:4.752000px;}
.ws6f{word-spacing:4.824000px;}
.ws5{word-spacing:4.896000px;}
.ws67{word-spacing:4.968000px;}
.wsaa{word-spacing:5.040000px;}
.ws65{word-spacing:5.256000px;}
.ws4a{word-spacing:5.328000px;}
.ws1f{word-spacing:5.472000px;}
.ws1a{word-spacing:5.688000px;}
.ws9{word-spacing:5.760000px;}
.ws93{word-spacing:5.904000px;}
.ws57{word-spacing:5.976000px;}
.ws73{word-spacing:6.048000px;}
.ws6d{word-spacing:6.120000px;}
.ws7{word-spacing:6.192000px;}
.wsb0{word-spacing:6.336000px;}
.ws53{word-spacing:6.534000px;}
.ws7e{word-spacing:6.624000px;}
.ws72{word-spacing:6.696000px;}
.ws1e{word-spacing:6.768000px;}
.wsa4{word-spacing:6.840000px;}
.wsa8{word-spacing:7.128000px;}
.wsa9{word-spacing:7.272000px;}
.ws14{word-spacing:7.416000px;}
.ws84{word-spacing:7.488000px;}
.ws54{word-spacing:7.524000px;}
.ws40{word-spacing:7.632000px;}
.ws47{word-spacing:7.776000px;}
.ws9b{word-spacing:7.848000px;}
.ws7d{word-spacing:7.920000px;}
.ws6{word-spacing:8.064000px;}
.ws9e{word-spacing:8.280000px;}
.wsb4{word-spacing:8.352000px;}
.ws92{word-spacing:8.424000px;}
.ws3c{word-spacing:8.496000px;}
.wsb7{word-spacing:8.856000px;}
.wsab{word-spacing:9.000000px;}
.ws74{word-spacing:9.288000px;}
.ws71{word-spacing:9.360000px;}
.ws91{word-spacing:9.720000px;}
.ws63{word-spacing:9.792000px;}
.ws5e{word-spacing:10.296000px;}
.wsa{word-spacing:10.368000px;}
.ws38{word-spacing:10.440000px;}
.ws6a{word-spacing:10.584000px;}
.ws89{word-spacing:10.728000px;}
.ws75{word-spacing:10.800000px;}
.ws58{word-spacing:10.872000px;}
.wsb2{word-spacing:10.944000px;}
.ws78{word-spacing:11.232000px;}
.ws66{word-spacing:11.520000px;}
.ws7a{word-spacing:11.736000px;}
.ws79{word-spacing:11.952000px;}
.wsb1{word-spacing:12.168000px;}
.wsb5{word-spacing:12.312000px;}
.wsac{word-spacing:12.456000px;}
.wsb8{word-spacing:12.528000px;}
.ws83{word-spacing:12.816000px;}
.ws7b{word-spacing:13.320000px;}
.wsaf{word-spacing:14.328000px;}
.ws82{word-spacing:15.264000px;}
.ws86{word-spacing:15.336000px;}
.wsb{word-spacing:16.344000px;}
.ws9d{word-spacing:16.992000px;}
.ws26{word-spacing:17.496000px;}
.ws64{word-spacing:17.640000px;}
.wsae{word-spacing:18.000000px;}
.wsad{word-spacing:18.576000px;}
.wsb9{word-spacing:18.648000px;}
.ws68{word-spacing:32.472000px;}
._16{margin-left:-17.833800px;}
._19{margin-left:-10.585800px;}
._1d{margin-left:-9.418800px;}
._14{margin-left:-8.341200px;}
._3{margin-left:-6.703200px;}
._4{margin-left:-4.725600px;}
._1{margin-left:-3.410400px;}
._0{margin-left:-1.696800px;}
._2{width:1.184400px;}
._5{width:2.185200px;}
._8{width:3.495600px;}
._b{width:4.917600px;}
._9{width:6.595200px;}
._6{width:8.200800px;}
._7{width:9.288000px;}
._a{width:10.296000px;}
._c{width:11.671200px;}
._e{width:12.844800px;}
._f{width:14.352600px;}
._11{width:16.588800px;}
._10{width:19.087200px;}
._20{width:20.347200px;}
._d{width:21.376800px;}
._18{width:23.443200px;}
._13{width:27.449400px;}
._23{width:30.866400px;}
._21{width:31.996800px;}
._1b{width:33.458400px;}
._12{width:36.088200px;}
._22{width:39.794400px;}
._17{width:41.320800px;}
._1c{width:42.876000px;}
._1a{width:47.880000px;}
._1f{width:53.395200px;}
._1e{width:60.619200px;}
._15{width:78.955200px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fs4{font-size:66.000000px;}
.fs7{font-size:67.361400px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:180.000000px;}
.y1c3{bottom:-13.727250px;}
.y0{bottom:0.000000px;}
.y1e9{bottom:3.703950px;}
.y1d1{bottom:3.704100px;}
.y1c8{bottom:3.704250px;}
.y1d5{bottom:3.704316px;}
.y1dd{bottom:3.705423px;}
.y1cc{bottom:3.705723px;}
.y1e1{bottom:3.705750px;}
.y1c5{bottom:4.040850px;}
.y1e5{bottom:4.041273px;}
.y1d9{bottom:4.041300px;}
.y1ec{bottom:4.042200px;}
.y1ed{bottom:5.051550px;}
.y12{bottom:23.870850px;}
.y1d0{bottom:24.250050px;}
.y1dc{bottom:24.250650px;}
.y1cb{bottom:24.250950px;}
.y1e8{bottom:24.251400px;}
.y1c7{bottom:24.251550px;}
.y6{bottom:24.476250px;}
.y1d8{bottom:24.585750px;}
.y1d4{bottom:24.586350px;}
.y1e4{bottom:24.586500px;}
.y1e0{bottom:24.587100px;}
.y1cd{bottom:25.260300px;}
.y1ea{bottom:25.260600px;}
.y1c9{bottom:25.260900px;}
.y1de{bottom:25.261500px;}
.y1da{bottom:25.595100px;}
.y1d6{bottom:25.595700px;}
.y1e6{bottom:25.597200px;}
.y1e2{bottom:25.597800px;}
.y1cf{bottom:45.131400px;}
.y1d2{bottom:46.142100px;}
.y5{bottom:57.005550px;}
.y67{bottom:58.341300px;}
.yab{bottom:60.225750px;}
.y1ab{bottom:61.535700px;}
.y275{bottom:63.417150px;}
.y16c{bottom:70.432950px;}
.y240{bottom:79.429350px;}
.y66{bottom:79.941300px;}
.y4{bottom:82.205550px;}
.y1aa{bottom:83.135700px;}
.y296{bottom:84.404250px;}
.y78{bottom:84.421950px;}
.y274{bottom:85.017150px;}
.yaa{bottom:85.520250px;}
.y139{bottom:88.420500px;}
.y16b{bottom:92.032950px;}
.y23f{bottom:101.029350px;}
.y65{bottom:101.541300px;}
.y1a9{bottom:104.735700px;}
.ya9{bottom:105.819750px;}
.y295{bottom:106.004250px;}
.y77{bottom:106.021950px;}
.y273{bottom:106.617150px;}
.y3{bottom:107.405550px;}
.y10b{bottom:108.278700px;}
.y138{bottom:110.020500px;}
.y163{bottom:112.091550px;}
.y16a{bottom:113.632800px;}
.y85{bottom:118.600650px;}
.y23e{bottom:122.629350px;}
.y64{bottom:123.141300px;}
.y1a8{bottom:126.335700px;}
.y294{bottom:127.604250px;}
.y272{bottom:128.217150px;}
.y20e{bottom:129.295950px;}
.y10a{bottom:129.878700px;}
.y137{bottom:131.620350px;}
.y162{bottom:131.891550px;}
.y1f3{bottom:133.362000px;}
.yef{bottom:135.232950px;}
.y84{bottom:138.400650px;}
.y13d{bottom:140.163300px;}
.y23d{bottom:144.229350px;}
.y63{bottom:144.741300px;}
.y16e{bottom:145.636950px;}
.y1a7{bottom:147.935700px;}
.y293{bottom:149.204250px;}
.y76{bottom:149.221950px;}
.y271{bottom:149.817150px;}
.y20d{bottom:150.895950px;}
.y109{bottom:151.478700px;}
.y136{bottom:153.220350px;}
.y161{bottom:153.629700px;}
.y1f2{bottom:154.962000px;}
.ye3{bottom:156.832950px;}
.y111{bottom:159.522300px;}
.y13c{bottom:159.963300px;}
.y16d{bottom:165.436950px;}
.y23c{bottom:165.829350px;}
.y62{bottom:166.341300px;}
.y1a6{bottom:169.535700px;}
.y292{bottom:170.804250px;}
.y75{bottom:170.821950px;}
.y2c2{bottom:171.013200px;}
.y270{bottom:171.417150px;}
.y20c{bottom:172.495950px;}
.y108{bottom:173.078700px;}
.y135{bottom:174.820350px;}
.y160{bottom:175.229700px;}
.yc6{bottom:175.711650px;}
.y1f1{bottom:176.562000px;}
.ye2{bottom:178.432950px;}
.y116{bottom:179.306250px;}
.y110{bottom:179.322300px;}
.y44{bottom:182.655450px;}
.y23b{bottom:187.429350px;}
.y1a5{bottom:191.135700px;}
.y291{bottom:192.404250px;}
.y74{bottom:192.421950px;}
.y2c1{bottom:192.613200px;}
.y26f{bottom:193.017150px;}
.y20b{bottom:194.095950px;}
.y107{bottom:194.678700px;}
.ya8{bottom:194.691150px;}
.y134{bottom:196.420500px;}
.y15f{bottom:196.829700px;}
.yc5{bottom:197.311650px;}
.y1f0{bottom:198.162000px;}
.y115{bottom:199.106250px;}
.y10f{bottom:199.122300px;}
.ye1{bottom:200.032950px;}
.y43{bottom:204.255450px;}
.y2f{bottom:204.589050px;}
.y23a{bottom:209.029350px;}
.y61{bottom:210.070950px;}
.y1a4{bottom:212.735700px;}
.y290{bottom:214.004250px;}
.y2c0{bottom:214.213200px;}
.y26e{bottom:214.617150px;}
.y20a{bottom:215.695950px;}
.y106{bottom:216.278700px;}
.ya7{bottom:216.291150px;}
.y11{bottom:217.807800px;}
.y133{bottom:218.020500px;}
.y1bf{bottom:218.107800px;}
.y15e{bottom:218.429700px;}
.yc4{bottom:218.911650px;}
.y1ef{bottom:219.762000px;}
.yeb{bottom:221.632800px;}
.ye0{bottom:221.632950px;}
.y42{bottom:225.855450px;}
.y2e{bottom:226.189050px;}
.y2ab{bottom:228.163350px;}
.y239{bottom:230.629350px;}
.y1a3{bottom:234.335700px;}
.y28f{bottom:235.604250px;}
.y73{bottom:235.621950px;}
.y26d{bottom:236.217150px;}
.y105{bottom:237.878700px;}
.ya6{bottom:237.891150px;}
.y132{bottom:239.620350px;}
.y1be{bottom:239.707800px;}
.y15d{bottom:240.029700px;}
.yc3{bottom:240.511650px;}
.y1ee{bottom:241.362000px;}
.ydf{bottom:243.232950px;}
.y41{bottom:247.455450px;}
.y2d{bottom:247.789050px;}
.y2aa{bottom:249.763350px;}
.y238{bottom:252.229350px;}
.y28e{bottom:257.204250px;}
.y72{bottom:257.221950px;}
.y2bf{bottom:257.413200px;}
.y26c{bottom:257.817150px;}
.y209{bottom:258.895950px;}
.y104{bottom:259.478700px;}
.ya5{bottom:259.491150px;}
.y10{bottom:261.007800px;}
.y131{bottom:261.220350px;}
.y1bd{bottom:261.307800px;}
.y15c{bottom:261.629700px;}
.yc2{bottom:262.111650px;}
.yde{bottom:264.832950px;}
.y40{bottom:269.055450px;}
.y2c{bottom:269.389050px;}
.y2a9{bottom:271.363350px;}
.y237{bottom:273.829350px;}
.y1a2{bottom:277.535700px;}
.y28d{bottom:278.804250px;}
.y71{bottom:278.821950px;}
.y26b{bottom:279.417150px;}
.y208{bottom:280.495950px;}
.y1c2{bottom:280.630500px;}
.ya4{bottom:281.091150px;}
.y1bc{bottom:282.907800px;}
.y15b{bottom:283.229700px;}
.y1eb{bottom:283.407000px;}
.yc1{bottom:283.711650px;}
.yee{bottom:286.432950px;}
.y3f{bottom:290.655450px;}
.y2b{bottom:290.989050px;}
.y2a8{bottom:292.963350px;}
.y236{bottom:295.429350px;}
.y1a1{bottom:299.135700px;}
.y28c{bottom:300.404250px;}
.y70{bottom:300.421800px;}
.y2be{bottom:300.613200px;}
.y26a{bottom:301.017150px;}
.y207{bottom:302.095950px;}
.y103{bottom:302.678700px;}
.ya3{bottom:302.691150px;}
.y2bb{bottom:303.547050px;}
.yf{bottom:304.207800px;}
.y130{bottom:304.420500px;}
.y1bb{bottom:304.507800px;}
.y15a{bottom:304.829700px;}
.y1e7{bottom:304.962000px;}
.y8e{bottom:306.179550px;}
.ydd{bottom:308.032950px;}
.y2a{bottom:312.589050px;}
.y2a7{bottom:314.563350px;}
.y235{bottom:317.029350px;}
.y1a0{bottom:320.735700px;}
.y28b{bottom:322.004250px;}
.y6f{bottom:322.021950px;}
.y269{bottom:322.617150px;}
.y220{bottom:323.340000px;}
.y206{bottom:323.695950px;}
.y102{bottom:324.278700px;}
.ya2{bottom:324.291150px;}
.y2ba{bottom:325.147050px;}
.y12f{bottom:326.020500px;}
.y1ba{bottom:326.107800px;}
.y159{bottom:326.429700px;}
.yc0{bottom:326.911650px;}
.y8d{bottom:327.779550px;}
.yea{bottom:329.632800px;}
.ydc{bottom:329.632950px;}
.y3e{bottom:333.855450px;}
.y52{bottom:335.420250px;}
.y2b3{bottom:335.968350px;}
.y2a6{bottom:336.163350px;}
.y252{bottom:337.201500px;}
.y234{bottom:338.629350px;}
.y83{bottom:340.284300px;}
.y19f{bottom:342.335700px;}
.y28a{bottom:343.604250px;}
.y6e{bottom:343.621950px;}
.y2bd{bottom:343.813200px;}
.y268{bottom:344.217150px;}
.y21f{bottom:344.940000px;}
.y205{bottom:345.295950px;}
.y101{bottom:345.878700px;}
.ya1{bottom:345.891150px;}
.y1e3{bottom:346.726500px;}
.y2b9{bottom:346.747050px;}
.ye{bottom:347.407800px;}
.y12e{bottom:347.620350px;}
.y1b9{bottom:347.707800px;}
.y158{bottom:348.029700px;}
.ybf{bottom:348.511650px;}
.y8c{bottom:349.379550px;}
.y188{bottom:350.681700px;}
.ydb{bottom:351.232950px;}
.y19b{bottom:351.828150px;}
.y3d{bottom:355.455450px;}
.y80{bottom:355.981050px;}
.y165{bottom:355.991550px;}
.y169{bottom:356.574300px;}
.y51{bottom:357.020250px;}
.y2b2{bottom:357.568350px;}
.y2a5{bottom:357.763350px;}
.y251{bottom:358.801500px;}
.y82{bottom:360.084300px;}
.y233{bottom:360.229350px;}
.y19e{bottom:363.935700px;}
.y289{bottom:365.204250px;}
.y2bc{bottom:365.413200px;}
.y267{bottom:365.817150px;}
.y21e{bottom:366.540000px;}
.y204{bottom:366.895950px;}
.y13b{bottom:367.331850px;}
.y13f{bottom:367.347900px;}
.y100{bottom:367.478700px;}
.y12d{bottom:369.220350px;}
.y1b8{bottom:369.307800px;}
.y157{bottom:369.629700px;}
.ybe{bottom:370.111650px;}
.y8b{bottom:370.979550px;}
.y187{bottom:372.281700px;}
.yda{bottom:372.832950px;}
.y19a{bottom:373.428150px;}
.y7f{bottom:375.781050px;}
.y164{bottom:375.791400px;}
.y168{bottom:376.374300px;}
.y3c{bottom:377.055450px;}
.y50{bottom:378.620250px;}
.y2b1{bottom:379.168350px;}
.y2a4{bottom:379.363350px;}
.y81{bottom:379.884300px;}
.y250{bottom:380.401500px;}
.y232{bottom:381.829350px;}
.y19d{bottom:385.535700px;}
.y288{bottom:386.804250px;}
.y13a{bottom:387.131850px;}
.y13e{bottom:387.147900px;}
.y266{bottom:387.417150px;}
.y21d{bottom:388.140000px;}
.y203{bottom:388.495950px;}
.y1df{bottom:388.827000px;}
.yff{bottom:389.078700px;}
.ya0{bottom:389.091150px;}
.y6d{bottom:389.945400px;}
.y2b8{bottom:389.947050px;}
.yd{bottom:390.607800px;}
.y12c{bottom:390.820350px;}
.y1c0{bottom:390.907800px;}
.ybd{bottom:391.711650px;}
.y8a{bottom:392.579550px;}
.y186{bottom:393.881700px;}
.yd9{bottom:394.432950px;}
.y199{bottom:395.028150px;}
.y3b{bottom:398.655450px;}
.y172{bottom:400.061850px;}
.y4f{bottom:400.220250px;}
.y174{bottom:400.594200px;}
.y2a3{bottom:400.963350px;}
.y24f{bottom:402.001500px;}
.y231{bottom:403.429350px;}
.y19c{bottom:407.135700px;}
.y287{bottom:408.404250px;}
.y265{bottom:409.017150px;}
.y21c{bottom:409.740000px;}
.y202{bottom:410.095950px;}
.yfe{bottom:410.678700px;}
.y9f{bottom:410.691150px;}
.y2b7{bottom:411.547050px;}
.y12b{bottom:412.420500px;}
.y1b7{bottom:412.507800px;}
.y156{bottom:412.829700px;}
.ybc{bottom:413.311650px;}
.y89{bottom:414.179550px;}
.y185{bottom:415.481700px;}
.ye9{bottom:416.032950px;}
.y198{bottom:416.628150px;}
.y29{bottom:417.305100px;}
.y1e{bottom:418.018800px;}
.y10e{bottom:419.218350px;}
.y114{bottom:419.234400px;}
.y171{bottom:419.861850px;}
.y173{bottom:420.394200px;}
.y4e{bottom:421.820250px;}
.y2b0{bottom:422.368350px;}
.y2a2{bottom:422.563350px;}
.y24e{bottom:423.601500px;}
.y230{bottom:425.029350px;}
.y286{bottom:430.004250px;}
.y264{bottom:430.617150px;}
.y1db{bottom:430.927500px;}
.y21b{bottom:431.340000px;}
.y9e{bottom:432.291150px;}
.yc{bottom:433.807800px;}
.y12a{bottom:434.020500px;}
.y1b6{bottom:434.107800px;}
.y155{bottom:434.429700px;}
.ybb{bottom:434.911650px;}
.y184{bottom:437.081700px;}
.yed{bottom:437.632800px;}
.yd7{bottom:437.632950px;}
.y197{bottom:438.228150px;}
.y28{bottom:438.905100px;}
.y10d{bottom:439.018350px;}
.y113{bottom:439.034400px;}
.y1d{bottom:439.618800px;}
.y3a{bottom:441.855450px;}
.y4d{bottom:443.420250px;}
.yd8{bottom:443.626950px;}
.y2af{bottom:443.968350px;}
.y2a1{bottom:444.163350px;}
.y24d{bottom:445.201500px;}
.y22f{bottom:446.629350px;}
.y285{bottom:451.604250px;}
.y263{bottom:452.217150px;}
.y21a{bottom:452.940000px;}
.y201{bottom:453.295950px;}
.yfd{bottom:453.878700px;}
.y9d{bottom:453.891150px;}
.y2b6{bottom:454.747050px;}
.y129{bottom:455.620350px;}
.y1b5{bottom:455.707800px;}
.y154{bottom:456.029700px;}
.yba{bottom:456.511650px;}
.y183{bottom:458.681700px;}
.y10c{bottom:458.818350px;}
.y112{bottom:458.834400px;}
.yd6{bottom:459.232950px;}
.y196{bottom:459.828150px;}
.y27{bottom:460.505100px;}
.y1c{bottom:461.218800px;}
.y39{bottom:463.455450px;}
.y4c{bottom:465.020250px;}
.y2a0{bottom:465.763350px;}
.y24c{bottom:466.801500px;}
.y22e{bottom:468.229350px;}
.y1d7{bottom:472.693500px;}
.y284{bottom:473.204250px;}
.y262{bottom:473.817150px;}
.y200{bottom:474.895950px;}
.yfc{bottom:475.478700px;}
.y9c{bottom:475.491150px;}
.yb{bottom:477.007800px;}
.y128{bottom:477.220350px;}
.y1b4{bottom:477.307800px;}
.y153{bottom:477.629700px;}
.yb9{bottom:478.111650px;}
.y182{bottom:480.281700px;}
.yd5{bottom:480.832950px;}
.y195{bottom:481.428150px;}
.y26{bottom:482.105100px;}
.y1b{bottom:482.818800px;}
.y38{bottom:485.055450px;}
.y4b{bottom:486.020250px;}
.y2ae{bottom:487.168350px;}
.y29f{bottom:487.363350px;}
.y24b{bottom:488.401500px;}
.y22d{bottom:489.829350px;}
.y283{bottom:494.804250px;}
.y261{bottom:495.417150px;}
.y219{bottom:496.140000px;}
.y1ff{bottom:496.495950px;}
.yfb{bottom:497.078700px;}
.y9b{bottom:497.091150px;}
.y2b5{bottom:497.947050px;}
.y127{bottom:498.820350px;}
.y1b3{bottom:498.907800px;}
.y152{bottom:499.229700px;}
.yb8{bottom:499.711650px;}
.y60{bottom:500.691150px;}
.y181{bottom:501.881700px;}
.yd4{bottom:502.432950px;}
.y194{bottom:503.028150px;}
.y25{bottom:503.705100px;}
.y1a{bottom:504.418800px;}
.y37{bottom:506.655450px;}
.y29e{bottom:508.963350px;}
.y24a{bottom:510.001500px;}
.y22c{bottom:511.429350px;}
.y1d3{bottom:514.794000px;}
.y282{bottom:516.404250px;}
.y260{bottom:517.017150px;}
.y218{bottom:517.740000px;}
.y1fe{bottom:518.095950px;}
.yfa{bottom:518.678700px;}
.y9a{bottom:518.691150px;}
.y2b4{bottom:519.547050px;}
.ya{bottom:520.207800px;}
.y126{bottom:520.420500px;}
.y1b2{bottom:520.507800px;}
.y151{bottom:520.829700px;}
.yb7{bottom:521.311650px;}
.y5f{bottom:522.291150px;}
.y180{bottom:523.481700px;}
.ye8{bottom:524.032950px;}
.y193{bottom:524.628150px;}
.y24{bottom:525.305100px;}
.y19{bottom:526.018800px;}
.y36{bottom:528.255450px;}
.y4a{bottom:529.220250px;}
.y2ad{bottom:530.368350px;}
.y29d{bottom:530.563350px;}
.y249{bottom:531.601500px;}
.y22b{bottom:533.029350px;}
.y281{bottom:538.004250px;}
.y25f{bottom:538.617150px;}
.y217{bottom:539.340000px;}
.y1fd{bottom:539.695950px;}
.yf9{bottom:540.278700px;}
.y99{bottom:540.291150px;}
.y125{bottom:542.020500px;}
.y1b1{bottom:542.107800px;}
.y150{bottom:542.429700px;}
.y5e{bottom:543.891150px;}
.y17f{bottom:545.081700px;}
.ye7{bottom:545.632800px;}
.yd3{bottom:545.632950px;}
.y192{bottom:546.228150px;}
.y23{bottom:546.905100px;}
.y18{bottom:547.618800px;}
.y35{bottom:549.855450px;}
.y49{bottom:550.820250px;}
.y2ac{bottom:551.968350px;}
.y29c{bottom:552.163350px;}
.y248{bottom:553.201500px;}
.y22a{bottom:554.629350px;}
.y1ce{bottom:556.894500px;}
.y280{bottom:559.604250px;}
.y25e{bottom:560.217150px;}
.y216{bottom:560.940000px;}
.y1fc{bottom:561.295950px;}
.yf8{bottom:561.878700px;}
.y9{bottom:563.407800px;}
.y14f{bottom:564.029700px;}
.yb6{bottom:564.511650px;}
.y5d{bottom:565.491150px;}
.y17e{bottom:566.681700px;}
.yd2{bottom:567.232950px;}
.y191{bottom:567.828150px;}
.y22{bottom:568.505100px;}
.y17{bottom:569.218800px;}
.y34{bottom:571.455450px;}
.y48{bottom:572.420250px;}
.y29b{bottom:573.763350px;}
.y247{bottom:574.801500px;}
.y229{bottom:576.229350px;}
.y27f{bottom:581.204250px;}
.y25d{bottom:581.817150px;}
.y215{bottom:582.540000px;}
.y1fb{bottom:582.895950px;}
.y7b{bottom:583.025400px;}
.yf7{bottom:583.478700px;}
.y98{bottom:583.491150px;}
.y7e{bottom:584.060250px;}
.y124{bottom:585.220350px;}
.y1b0{bottom:585.307800px;}
.y14e{bottom:585.629700px;}
.yb5{bottom:586.111650px;}
.y5c{bottom:587.091150px;}
.y17d{bottom:588.281700px;}
.yd1{bottom:588.832950px;}
.y21{bottom:590.105100px;}
.y16{bottom:590.818800px;}
.y33{bottom:593.055450px;}
.y47{bottom:594.020250px;}
.y29a{bottom:595.363350px;}
.y246{bottom:596.401500px;}
.y228{bottom:597.829350px;}
.y27e{bottom:602.804250px;}
.y7a{bottom:602.825400px;}
.y25c{bottom:603.417150px;}
.y7d{bottom:603.860250px;}
.y214{bottom:604.140000px;}
.y1fa{bottom:604.495950px;}
.y97{bottom:605.091150px;}
.y8{bottom:606.607800px;}
.y123{bottom:606.820350px;}
.y1af{bottom:606.907800px;}
.y14d{bottom:607.229700px;}
.yb4{bottom:607.711650px;}
.y167{bottom:608.083650px;}
.y5b{bottom:608.691150px;}
.y17c{bottom:609.881700px;}
.yd0{bottom:610.432950px;}
.y190{bottom:611.028150px;}
.y20{bottom:611.705100px;}
.y15{bottom:612.418800px;}
.y32{bottom:614.655450px;}
.y46{bottom:615.620250px;}
.y299{bottom:616.963350px;}
.y245{bottom:618.001500px;}
.y227{bottom:619.429350px;}
.y1ca{bottom:619.540500px;}
.y79{bottom:622.625400px;}
.y7c{bottom:623.660250px;}
.y27d{bottom:624.404250px;}
.y25b{bottom:625.017150px;}
.y1f9{bottom:626.095950px;}
.yf6{bottom:626.678700px;}
.y96{bottom:626.691150px;}
.y166{bottom:627.883650px;}
.y122{bottom:628.420500px;}
.y140{bottom:628.423950px;}
.y1ae{bottom:628.507800px;}
.y14c{bottom:628.829700px;}
.yb3{bottom:629.311650px;}
.y17b{bottom:631.481700px;}
.ycf{bottom:632.032950px;}
.y18f{bottom:632.628150px;}
.y1f{bottom:633.305100px;}
.y14{bottom:634.018800px;}
.y31{bottom:636.255450px;}
.y45{bottom:637.220250px;}
.y298{bottom:638.563350px;}
.y244{bottom:639.601500px;}
.y226{bottom:641.029350px;}
.y27c{bottom:646.004250px;}
.y25a{bottom:646.617150px;}
.y213{bottom:647.340000px;}
.yf5{bottom:648.278700px;}
.y95{bottom:648.291150px;}
.y121{bottom:650.020500px;}
.y1ad{bottom:650.107800px;}
.y14b{bottom:650.429700px;}
.yb2{bottom:650.911650px;}
.y5a{bottom:651.891150px;}
.ye6{bottom:653.632800px;}
.yce{bottom:653.632950px;}
.y18e{bottom:654.228150px;}
.y170{bottom:654.486900px;}
.y297{bottom:660.163350px;}
.y243{bottom:661.201500px;}
.y1c6{bottom:661.641000px;}
.y225{bottom:662.629350px;}
.y27b{bottom:667.604250px;}
.y259{bottom:668.217150px;}
.y212{bottom:668.940000px;}
.y1f8{bottom:669.295950px;}
.y11a{bottom:669.430650px;}
.yf4{bottom:669.878700px;}
.y94{bottom:669.891150px;}
.y7{bottom:671.407800px;}
.y120{bottom:671.620350px;}
.y144{bottom:671.620500px;}
.y1ac{bottom:671.707800px;}
.y14a{bottom:672.029700px;}
.yb1{bottom:672.511650px;}
.y59{bottom:673.491150px;}
.y16f{bottom:674.286900px;}
.y17a{bottom:674.681700px;}
.ycd{bottom:675.232950px;}
.y18d{bottom:675.828150px;}
.y13{bottom:677.218800px;}
.y30{bottom:679.455450px;}
.y242{bottom:682.801500px;}
.y224{bottom:684.229350px;}
.y27a{bottom:689.204250px;}
.y258{bottom:689.817150px;}
.y211{bottom:690.540000px;}
.y1f7{bottom:690.895950px;}
.y119{bottom:691.030650px;}
.yf3{bottom:691.478700px;}
.y93{bottom:691.491150px;}
.y11f{bottom:693.220350px;}
.y143{bottom:693.220500px;}
.y149{bottom:693.629700px;}
.yb0{bottom:694.111650px;}
.y58{bottom:695.091150px;}
.y6c{bottom:696.237600px;}
.y179{bottom:696.281700px;}
.yec{bottom:696.832950px;}
.y18c{bottom:697.428150px;}
.y1c4{bottom:703.405500px;}
.y241{bottom:704.401500px;}
.y223{bottom:705.829350px;}
.y279{bottom:710.804250px;}
.y257{bottom:711.417150px;}
.y210{bottom:712.140000px;}
.y1f6{bottom:712.495950px;}
.y118{bottom:712.630650px;}
.yf2{bottom:713.078700px;}
.y92{bottom:713.091150px;}
.y11e{bottom:714.820350px;}
.y142{bottom:714.820500px;}
.y148{bottom:715.229700px;}
.yaf{bottom:715.711650px;}
.y57{bottom:716.691150px;}
.y6b{bottom:717.837600px;}
.y178{bottom:717.881700px;}
.ycc{bottom:718.432950px;}
.y18b{bottom:719.028150px;}
.y88{bottom:731.571600px;}
.y278{bottom:732.404250px;}
.y256{bottom:733.017150px;}
.y20f{bottom:733.740000px;}
.y1f5{bottom:734.095950px;}
.y117{bottom:734.230650px;}
.yf1{bottom:734.678700px;}
.y91{bottom:734.691150px;}
.y11d{bottom:736.420500px;}
.y147{bottom:736.829700px;}
.yae{bottom:737.311650px;}
.y56{bottom:738.291150px;}
.y6a{bottom:739.437600px;}
.y177{bottom:739.481700px;}
.ycb{bottom:740.032950px;}
.y18a{bottom:740.628150px;}
.y222{bottom:749.029350px;}
.y87{bottom:753.171450px;}
.y277{bottom:754.004250px;}
.y255{bottom:754.617150px;}
.y90{bottom:756.291150px;}
.y11c{bottom:758.020500px;}
.y146{bottom:758.429700px;}
.y1c1{bottom:758.785650px;}
.yad{bottom:758.911650px;}
.y55{bottom:759.891150px;}
.y69{bottom:761.037600px;}
.y176{bottom:761.081700px;}
.ye5{bottom:761.632800px;}
.yca{bottom:761.632950px;}
.y189{bottom:762.228150px;}
.y2{bottom:771.357150px;}
.y86{bottom:774.771450px;}
.y276{bottom:775.604250px;}
.y254{bottom:776.217150px;}
.yf0{bottom:777.878700px;}
.y8f{bottom:777.891150px;}
.y11b{bottom:779.620350px;}
.y141{bottom:779.620500px;}
.y145{bottom:780.029700px;}
.yac{bottom:780.511650px;}
.y1f4{bottom:780.895950px;}
.y54{bottom:781.491150px;}
.y68{bottom:782.637600px;}
.yc9{bottom:783.232950px;}
.y1{bottom:803.757150px;}
.y175{bottom:804.281700px;}
.ye4{bottom:804.832800px;}
.yc8{bottom:804.832950px;}
.y221{bottom:806.407800px;}
.y253{bottom:819.417150px;}
.y53{bottom:824.691150px;}
.yc7{bottom:826.432950px;}
.h17{height:20.881500px;}
.he{height:29.509128px;}
.h14{height:35.933133px;}
.hf{height:36.642117px;}
.h10{height:36.831480px;}
.h1c{height:41.089500px;}
.h19{height:41.091000px;}
.h1b{height:41.425500px;}
.h1d{height:41.428500px;}
.h16{height:44.896636px;}
.hd{height:45.826172px;}
.hc{height:45.858398px;}
.h1e{height:48.761719px;}
.h11{height:49.289062px;}
.ha{height:49.992188px;}
.h7{height:50.027344px;}
.h8{height:50.400000px;}
.h12{height:50.616000px;}
.h18{height:55.224507px;}
.hb{height:57.911133px;}
.h13{height:60.807480px;}
.h1a{height:61.971000px;}
.h5{height:63.175781px;}
.h9{height:63.949219px;}
.h4{height:69.972656px;}
.h6{height:74.607422px;}
.h3{height:81.000000px;}
.h2{height:140.625000px;}
.h15{height:444.330000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.wd{width:55.671000px;}
.wa{width:57.028500px;}
.wc{width:60.082500px;}
.wb{width:62.460000px;}
.w7{width:63.817500px;}
.w9{width:66.534000px;}
.we{width:72.643500px;}
.w8{width:77.395500px;}
.w4{width:86.221500px;}
.w6{width:99.799500px;}
.wf{width:108.964500px;}
.w5{width:109.305000px;}
.w3{width:136.122000px;}
.w2{width:1065.892500px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x57{left:7.473900px;}
.x54{left:9.342000px;}
.x67{left:11.296884px;}
.x5e{left:13.493550px;}
.x66{left:15.030900px;}
.x61{left:18.590250px;}
.x60{left:20.290182px;}
.x68{left:23.003400px;}
.x64{left:24.031050px;}
.x65{left:26.067786px;}
.x5f{left:27.080850px;}
.x62{left:34.204050px;}
.x63{left:35.395974px;}
.x69{left:37.266300px;}
.x52{left:38.697300px;}
.x2f{left:41.018550px;}
.x75{left:49.731150px;}
.x78{left:52.618350px;}
.x3{left:54.000000px;}
.xf{left:55.842450px;}
.x76{left:56.903100px;}
.x1b{left:60.712950px;}
.x17{left:62.180850px;}
.x74{left:65.362500px;}
.x1c{left:67.174350px;}
.x77{left:69.634050px;}
.x79{left:76.142400px;}
.x10{left:81.551400px;}
.x51{left:89.472000px;}
.x53{left:90.489000px;}
.x18{left:98.307750px;}
.x70{left:100.936500px;}
.x6a{left:103.923900px;}
.x6e{left:105.221100px;}
.x6d{left:113.170800px;}
.x72{left:114.212250px;}
.x71{left:115.693200px;}
.x6f{left:117.952050px;}
.x4f{left:125.542650px;}
.x2e{left:146.871000px;}
.x26{left:159.001200px;}
.x73{left:174.426150px;}
.xe{left:226.471800px;}
.x27{left:235.071300px;}
.x28{left:240.265800px;}
.x12{left:250.227450px;}
.x1f{left:252.360450px;}
.xd{left:253.619100px;}
.x1d{left:257.329350px;}
.x6b{left:260.022600px;}
.x11{left:271.074000px;}
.x1e{left:273.124500px;}
.x13{left:274.498050px;}
.x9{left:285.703500px;}
.x55{left:314.191500px;}
.xc{left:347.208600px;}
.x6c{left:394.127550px;}
.x56{left:424.176000px;}
.x50{left:433.531800px;}
.x42{left:444.944850px;}
.x1a{left:447.579750px;}
.x14{left:451.368000px;}
.x4a{left:452.383500px;}
.x19{left:454.762200px;}
.x15{left:456.475200px;}
.x3c{left:464.491650px;}
.x45{left:465.928050px;}
.x3b{left:467.775450px;}
.x3a{left:470.365650px;}
.x4b{left:475.639050px;}
.x49{left:489.913950px;}
.x3d{left:513.375300px;}
.x16{left:516.851100px;}
.x7b{left:520.789350px;}
.x58{left:524.655000px;}
.x7c{left:526.462800px;}
.x7a{left:531.419700px;}
.x7f{left:535.453950px;}
.x39{left:540.316350px;}
.x30{left:545.734800px;}
.x33{left:547.660650px;}
.x7e{left:549.428550px;}
.x31{left:551.757000px;}
.xb{left:571.420050px;}
.x59{left:589.150500px;}
.x7d{left:591.172200px;}
.x80{left:595.667850px;}
.x32{left:612.552450px;}
.x2d{left:622.417350px;}
.x4{left:626.917350px;}
.xa{left:640.417350px;}
.x2b{left:645.826050px;}
.x2a{left:647.230050px;}
.x29{left:651.800400px;}
.x5a{left:667.225500px;}
.x1{left:670.702350px;}
.x8{left:702.399000px;}
.x7{left:703.897500px;}
.x6{left:704.912700px;}
.x5b{left:734.437500px;}
.x5c{left:792.145500px;}
.x48{left:842.109150px;}
.x3f{left:844.534200px;}
.x43{left:847.399350px;}
.x41{left:849.141900px;}
.x46{left:855.082500px;}
.x4c{left:856.468650px;}
.x3e{left:858.762300px;}
.x40{left:860.417700px;}
.x47{left:868.810950px;}
.x5{left:873.874350px;}
.x2c{left:880.027200px;}
.x44{left:881.233200px;}
.x35{left:890.441100px;}
.x37{left:894.205500px;}
.x34{left:904.866600px;}
.x4d{left:916.965900px;}
.x38{left:919.422750px;}
.x36{left:929.838150px;}
.x2{left:931.029900px;}
.x5d{left:972.397500px;}
.x21{left:999.391350px;}
.x22{left:1007.319150px;}
.x23{left:1020.335700px;}
.x24{left:1037.869950px;}
.x4e{left:1045.359600px;}
.x20{left:1069.835700px;}
.x25{left:1096.800600px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.720000pt;}
.lsc{letter-spacing:0.798933pt;}
.ls4{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.408000pt;}
.ls24{letter-spacing:1.856000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls19{letter-spacing:2.037867pt;}
.ls9{letter-spacing:2.219733pt;}
.ls2{letter-spacing:2.346667pt;}
.ls6{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.086933pt;}
.lsb{letter-spacing:3.199467pt;}
.ls7{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.669333pt;}
.lsd{letter-spacing:3.910933pt;}
.ls20{letter-spacing:4.204800pt;}
.ls1a{letter-spacing:5.631467pt;}
.ls1c{letter-spacing:6.004800pt;}
.lse{letter-spacing:6.068267pt;}
.ls12{letter-spacing:6.353600pt;}
.ls14{letter-spacing:6.572267pt;}
.ls5{letter-spacing:6.678400pt;}
.ls8{letter-spacing:7.358400pt;}
.ls1e{letter-spacing:8.003107pt;}
.ls11{letter-spacing:8.660267pt;}
.ls10{letter-spacing:9.136533pt;}
.ls15{letter-spacing:9.292800pt;}
.ls1b{letter-spacing:10.786667pt;}
.ls1f{letter-spacing:10.942400pt;}
.ls22{letter-spacing:11.149867pt;}
.ls13{letter-spacing:11.266667pt;}
.ls17{letter-spacing:15.990933pt;}
.ls23{letter-spacing:16.555733pt;}
.ls16{letter-spacing:17.784533pt;}
.wsa7{word-spacing:-17.408000pt;}
.ws55{word-spacing:-17.280000pt;}
.ws24{word-spacing:-17.013333pt;}
.ws80{word-spacing:-16.640000pt;}
.wsa6{word-spacing:-16.448000pt;}
.ws17{word-spacing:-16.000000pt;}
.ws23{word-spacing:-14.666667pt;}
.wsbb{word-spacing:-9.664000pt;}
.ws45{word-spacing:-9.328000pt;}
.wsba{word-spacing:-9.280000pt;}
.ws28{word-spacing:-8.550667pt;}
.wsbc{word-spacing:-8.128000pt;}
.wsa0{word-spacing:-4.864000pt;}
.ws18{word-spacing:-4.106667pt;}
.ws4f{word-spacing:-3.648000pt;}
.wsa2{word-spacing:-3.520000pt;}
.ws69{word-spacing:-3.200000pt;}
.ws4d{word-spacing:-3.136000pt;}
.ws50{word-spacing:-3.072000pt;}
.ws2e{word-spacing:-2.944000pt;}
.wsb3{word-spacing:-2.816000pt;}
.ws96{word-spacing:-2.762667pt;}
.ws44{word-spacing:-2.752000pt;}
.ws85{word-spacing:-2.688000pt;}
.ws59{word-spacing:-2.560000pt;}
.ws2{word-spacing:-2.496000pt;}
.wse{word-spacing:-2.432000pt;}
.ws41{word-spacing:-2.368000pt;}
.ws25{word-spacing:-2.346667pt;}
.ws98{word-spacing:-2.304000pt;}
.wsf{word-spacing:-2.240000pt;}
.ws11{word-spacing:-2.176000pt;}
.ws3e{word-spacing:-2.170667pt;}
.ws15{word-spacing:-2.112000pt;}
.ws4e{word-spacing:-2.048000pt;}
.ws5a{word-spacing:-1.984000pt;}
.ws3a{word-spacing:-1.920000pt;}
.wsb6{word-spacing:-1.856000pt;}
.ws12{word-spacing:-1.792000pt;}
.ws2b{word-spacing:-1.600000pt;}
.ws5d{word-spacing:-1.536000pt;}
.ws13{word-spacing:-1.408000pt;}
.ws29{word-spacing:-1.344000pt;}
.ws27{word-spacing:-1.280000pt;}
.ws6c{word-spacing:-1.152000pt;}
.ws3f{word-spacing:-1.114667pt;}
.ws46{word-spacing:-1.088000pt;}
.ws7f{word-spacing:-1.056000pt;}
.ws35{word-spacing:-1.024000pt;}
.ws37{word-spacing:-0.960000pt;}
.ws43{word-spacing:-0.896000pt;}
.ws90{word-spacing:-0.832000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws3d{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.576000pt;}
.ws70{word-spacing:-0.512000pt;}
.ws88{word-spacing:-0.448000pt;}
.ws4c{word-spacing:-0.384000pt;}
.ws4b{word-spacing:-0.320000pt;}
.wsa5{word-spacing:-0.128000pt;}
.ws2d{word-spacing:-0.117333pt;}
.ws0{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.064000pt;}
.ws9c{word-spacing:0.128000pt;}
.ws33{word-spacing:0.192000pt;}
.ws1{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.320000pt;}
.ws51{word-spacing:0.384000pt;}
.ws19{word-spacing:0.448000pt;}
.ws2f{word-spacing:0.512000pt;}
.ws1c{word-spacing:0.576000pt;}
.ws32{word-spacing:0.640000pt;}
.ws8{word-spacing:0.704000pt;}
.wsa1{word-spacing:0.832000pt;}
.ws8f{word-spacing:0.896000pt;}
.ws56{word-spacing:1.024000pt;}
.ws8d{word-spacing:1.152000pt;}
.ws95{word-spacing:1.216000pt;}
.ws8e{word-spacing:1.280000pt;}
.ws30{word-spacing:1.344000pt;}
.ws5c{word-spacing:1.408000pt;}
.ws77{word-spacing:1.472000pt;}
.ws8b{word-spacing:1.536000pt;}
.ws1b{word-spacing:1.664000pt;}
.ws49{word-spacing:1.728000pt;}
.ws7c{word-spacing:1.792000pt;}
.ws61{word-spacing:1.856000pt;}
.ws6b{word-spacing:1.920000pt;}
.ws34{word-spacing:1.984000pt;}
.ws99{word-spacing:2.048000pt;}
.ws8c{word-spacing:2.112000pt;}
.ws21{word-spacing:2.176000pt;}
.ws2c{word-spacing:2.240000pt;}
.wsc{word-spacing:2.304000pt;}
.ws4{word-spacing:2.368000pt;}
.ws3b{word-spacing:2.496000pt;}
.ws5b{word-spacing:2.560000pt;}
.ws6e{word-spacing:2.624000pt;}
.ws5f{word-spacing:2.688000pt;}
.ws60{word-spacing:2.816000pt;}
.ws39{word-spacing:2.880000pt;}
.ws3{word-spacing:3.008000pt;}
.ws31{word-spacing:3.072000pt;}
.ws97{word-spacing:3.200000pt;}
.ws87{word-spacing:3.264000pt;}
.ws16{word-spacing:3.328000pt;}
.ws94{word-spacing:3.392000pt;}
.ws62{word-spacing:3.456000pt;}
.ws10{word-spacing:3.520000pt;}
.ws2a{word-spacing:3.584000pt;}
.ws9f{word-spacing:3.648000pt;}
.ws76{word-spacing:3.712000pt;}
.ws20{word-spacing:3.776000pt;}
.ws81{word-spacing:3.840000pt;}
.wsa3{word-spacing:3.904000pt;}
.ws36{word-spacing:3.968000pt;}
.ws9a{word-spacing:4.032000pt;}
.ws42{word-spacing:4.096000pt;}
.ws52{word-spacing:4.224000pt;}
.ws6f{word-spacing:4.288000pt;}
.ws5{word-spacing:4.352000pt;}
.ws67{word-spacing:4.416000pt;}
.wsaa{word-spacing:4.480000pt;}
.ws65{word-spacing:4.672000pt;}
.ws4a{word-spacing:4.736000pt;}
.ws1f{word-spacing:4.864000pt;}
.ws1a{word-spacing:5.056000pt;}
.ws9{word-spacing:5.120000pt;}
.ws93{word-spacing:5.248000pt;}
.ws57{word-spacing:5.312000pt;}
.ws73{word-spacing:5.376000pt;}
.ws6d{word-spacing:5.440000pt;}
.ws7{word-spacing:5.504000pt;}
.wsb0{word-spacing:5.632000pt;}
.ws53{word-spacing:5.808000pt;}
.ws7e{word-spacing:5.888000pt;}
.ws72{word-spacing:5.952000pt;}
.ws1e{word-spacing:6.016000pt;}
.wsa4{word-spacing:6.080000pt;}
.wsa8{word-spacing:6.336000pt;}
.wsa9{word-spacing:6.464000pt;}
.ws14{word-spacing:6.592000pt;}
.ws84{word-spacing:6.656000pt;}
.ws54{word-spacing:6.688000pt;}
.ws40{word-spacing:6.784000pt;}
.ws47{word-spacing:6.912000pt;}
.ws9b{word-spacing:6.976000pt;}
.ws7d{word-spacing:7.040000pt;}
.ws6{word-spacing:7.168000pt;}
.ws9e{word-spacing:7.360000pt;}
.wsb4{word-spacing:7.424000pt;}
.ws92{word-spacing:7.488000pt;}
.ws3c{word-spacing:7.552000pt;}
.wsb7{word-spacing:7.872000pt;}
.wsab{word-spacing:8.000000pt;}
.ws74{word-spacing:8.256000pt;}
.ws71{word-spacing:8.320000pt;}
.ws91{word-spacing:8.640000pt;}
.ws63{word-spacing:8.704000pt;}
.ws5e{word-spacing:9.152000pt;}
.wsa{word-spacing:9.216000pt;}
.ws38{word-spacing:9.280000pt;}
.ws6a{word-spacing:9.408000pt;}
.ws89{word-spacing:9.536000pt;}
.ws75{word-spacing:9.600000pt;}
.ws58{word-spacing:9.664000pt;}
.wsb2{word-spacing:9.728000pt;}
.ws78{word-spacing:9.984000pt;}
.ws66{word-spacing:10.240000pt;}
.ws7a{word-spacing:10.432000pt;}
.ws79{word-spacing:10.624000pt;}
.wsb1{word-spacing:10.816000pt;}
.wsb5{word-spacing:10.944000pt;}
.wsac{word-spacing:11.072000pt;}
.wsb8{word-spacing:11.136000pt;}
.ws83{word-spacing:11.392000pt;}
.ws7b{word-spacing:11.840000pt;}
.wsaf{word-spacing:12.736000pt;}
.ws82{word-spacing:13.568000pt;}
.ws86{word-spacing:13.632000pt;}
.wsb{word-spacing:14.528000pt;}
.ws9d{word-spacing:15.104000pt;}
.ws26{word-spacing:15.552000pt;}
.ws64{word-spacing:15.680000pt;}
.wsae{word-spacing:16.000000pt;}
.wsad{word-spacing:16.512000pt;}
.wsb9{word-spacing:16.576000pt;}
.ws68{word-spacing:28.864000pt;}
._16{margin-left:-15.852267pt;}
._19{margin-left:-9.409600pt;}
._1d{margin-left:-8.372267pt;}
._14{margin-left:-7.414400pt;}
._3{margin-left:-5.958400pt;}
._4{margin-left:-4.200533pt;}
._1{margin-left:-3.031467pt;}
._0{margin-left:-1.508267pt;}
._2{width:1.052800pt;}
._5{width:1.942400pt;}
._8{width:3.107200pt;}
._b{width:4.371200pt;}
._9{width:5.862400pt;}
._6{width:7.289600pt;}
._7{width:8.256000pt;}
._a{width:9.152000pt;}
._c{width:10.374400pt;}
._e{width:11.417600pt;}
._f{width:12.757867pt;}
._11{width:14.745600pt;}
._10{width:16.966400pt;}
._20{width:18.086400pt;}
._d{width:19.001600pt;}
._18{width:20.838400pt;}
._13{width:24.399467pt;}
._23{width:27.436800pt;}
._21{width:28.441600pt;}
._1b{width:29.740800pt;}
._12{width:32.078400pt;}
._22{width:35.372800pt;}
._17{width:36.729600pt;}
._1c{width:38.112000pt;}
._1a{width:42.560000pt;}
._1f{width:47.462400pt;}
._1e{width:53.883733pt;}
._15{width:70.182400pt;}
.fs6{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fs4{font-size:58.666667pt;}
.fs7{font-size:59.876800pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:160.000000pt;}
.y1c3{bottom:-12.202000pt;}
.y0{bottom:0.000000pt;}
.y1e9{bottom:3.292400pt;}
.y1d1{bottom:3.292533pt;}
.y1c8{bottom:3.292667pt;}
.y1d5{bottom:3.292725pt;}
.y1dd{bottom:3.293709pt;}
.y1cc{bottom:3.293976pt;}
.y1e1{bottom:3.294000pt;}
.y1c5{bottom:3.591867pt;}
.y1e5{bottom:3.592243pt;}
.y1d9{bottom:3.592267pt;}
.y1ec{bottom:3.593067pt;}
.y1ed{bottom:4.490267pt;}
.y12{bottom:21.218533pt;}
.y1d0{bottom:21.555600pt;}
.y1dc{bottom:21.556133pt;}
.y1cb{bottom:21.556400pt;}
.y1e8{bottom:21.556800pt;}
.y1c7{bottom:21.556933pt;}
.y6{bottom:21.756667pt;}
.y1d8{bottom:21.854000pt;}
.y1d4{bottom:21.854533pt;}
.y1e4{bottom:21.854667pt;}
.y1e0{bottom:21.855200pt;}
.y1cd{bottom:22.453600pt;}
.y1ea{bottom:22.453867pt;}
.y1c9{bottom:22.454133pt;}
.y1de{bottom:22.454667pt;}
.y1da{bottom:22.751200pt;}
.y1d6{bottom:22.751733pt;}
.y1e6{bottom:22.753067pt;}
.y1e2{bottom:22.753600pt;}
.y1cf{bottom:40.116800pt;}
.y1d2{bottom:41.015200pt;}
.y5{bottom:50.671600pt;}
.y67{bottom:51.858933pt;}
.yab{bottom:53.534000pt;}
.y1ab{bottom:54.698400pt;}
.y275{bottom:56.370800pt;}
.y16c{bottom:62.607067pt;}
.y240{bottom:70.603867pt;}
.y66{bottom:71.058933pt;}
.y4{bottom:73.071600pt;}
.y1aa{bottom:73.898400pt;}
.y296{bottom:75.026000pt;}
.y78{bottom:75.041733pt;}
.y274{bottom:75.570800pt;}
.yaa{bottom:76.018000pt;}
.y139{bottom:78.596000pt;}
.y16b{bottom:81.807067pt;}
.y23f{bottom:89.803867pt;}
.y65{bottom:90.258933pt;}
.y1a9{bottom:93.098400pt;}
.ya9{bottom:94.062000pt;}
.y295{bottom:94.226000pt;}
.y77{bottom:94.241733pt;}
.y273{bottom:94.770800pt;}
.y3{bottom:95.471600pt;}
.y10b{bottom:96.247733pt;}
.y138{bottom:97.796000pt;}
.y163{bottom:99.636933pt;}
.y16a{bottom:101.006933pt;}
.y85{bottom:105.422800pt;}
.y23e{bottom:109.003867pt;}
.y64{bottom:109.458933pt;}
.y1a8{bottom:112.298400pt;}
.y294{bottom:113.426000pt;}
.y272{bottom:113.970800pt;}
.y20e{bottom:114.929733pt;}
.y10a{bottom:115.447733pt;}
.y137{bottom:116.995867pt;}
.y162{bottom:117.236933pt;}
.y1f3{bottom:118.544000pt;}
.yef{bottom:120.207067pt;}
.y84{bottom:123.022800pt;}
.y13d{bottom:124.589600pt;}
.y23d{bottom:128.203867pt;}
.y63{bottom:128.658933pt;}
.y16e{bottom:129.455067pt;}
.y1a7{bottom:131.498400pt;}
.y293{bottom:132.626000pt;}
.y76{bottom:132.641733pt;}
.y271{bottom:133.170800pt;}
.y20d{bottom:134.129733pt;}
.y109{bottom:134.647733pt;}
.y136{bottom:136.195867pt;}
.y161{bottom:136.559733pt;}
.y1f2{bottom:137.744000pt;}
.ye3{bottom:139.407067pt;}
.y111{bottom:141.797600pt;}
.y13c{bottom:142.189600pt;}
.y16d{bottom:147.055067pt;}
.y23c{bottom:147.403867pt;}
.y62{bottom:147.858933pt;}
.y1a6{bottom:150.698400pt;}
.y292{bottom:151.826000pt;}
.y75{bottom:151.841733pt;}
.y2c2{bottom:152.011733pt;}
.y270{bottom:152.370800pt;}
.y20c{bottom:153.329733pt;}
.y108{bottom:153.847733pt;}
.y135{bottom:155.395867pt;}
.y160{bottom:155.759733pt;}
.yc6{bottom:156.188133pt;}
.y1f1{bottom:156.944000pt;}
.ye2{bottom:158.607067pt;}
.y116{bottom:159.383333pt;}
.y110{bottom:159.397600pt;}
.y44{bottom:162.360400pt;}
.y23b{bottom:166.603867pt;}
.y1a5{bottom:169.898400pt;}
.y291{bottom:171.026000pt;}
.y74{bottom:171.041733pt;}
.y2c1{bottom:171.211733pt;}
.y26f{bottom:171.570800pt;}
.y20b{bottom:172.529733pt;}
.y107{bottom:173.047733pt;}
.ya8{bottom:173.058800pt;}
.y134{bottom:174.596000pt;}
.y15f{bottom:174.959733pt;}
.yc5{bottom:175.388133pt;}
.y1f0{bottom:176.144000pt;}
.y115{bottom:176.983333pt;}
.y10f{bottom:176.997600pt;}
.ye1{bottom:177.807067pt;}
.y43{bottom:181.560400pt;}
.y2f{bottom:181.856933pt;}
.y23a{bottom:185.803867pt;}
.y61{bottom:186.729733pt;}
.y1a4{bottom:189.098400pt;}
.y290{bottom:190.226000pt;}
.y2c0{bottom:190.411733pt;}
.y26e{bottom:190.770800pt;}
.y20a{bottom:191.729733pt;}
.y106{bottom:192.247733pt;}
.ya7{bottom:192.258800pt;}
.y11{bottom:193.606933pt;}
.y133{bottom:193.796000pt;}
.y1bf{bottom:193.873600pt;}
.y15e{bottom:194.159733pt;}
.yc4{bottom:194.588133pt;}
.y1ef{bottom:195.344000pt;}
.yeb{bottom:197.006933pt;}
.ye0{bottom:197.007067pt;}
.y42{bottom:200.760400pt;}
.y2e{bottom:201.056933pt;}
.y2ab{bottom:202.811867pt;}
.y239{bottom:205.003867pt;}
.y1a3{bottom:208.298400pt;}
.y28f{bottom:209.426000pt;}
.y73{bottom:209.441733pt;}
.y26d{bottom:209.970800pt;}
.y105{bottom:211.447733pt;}
.ya6{bottom:211.458800pt;}
.y132{bottom:212.995867pt;}
.y1be{bottom:213.073600pt;}
.y15d{bottom:213.359733pt;}
.yc3{bottom:213.788133pt;}
.y1ee{bottom:214.544000pt;}
.ydf{bottom:216.207067pt;}
.y41{bottom:219.960400pt;}
.y2d{bottom:220.256933pt;}
.y2aa{bottom:222.011867pt;}
.y238{bottom:224.203867pt;}
.y28e{bottom:228.626000pt;}
.y72{bottom:228.641733pt;}
.y2bf{bottom:228.811733pt;}
.y26c{bottom:229.170800pt;}
.y209{bottom:230.129733pt;}
.y104{bottom:230.647733pt;}
.ya5{bottom:230.658800pt;}
.y10{bottom:232.006933pt;}
.y131{bottom:232.195867pt;}
.y1bd{bottom:232.273600pt;}
.y15c{bottom:232.559733pt;}
.yc2{bottom:232.988133pt;}
.yde{bottom:235.407067pt;}
.y40{bottom:239.160400pt;}
.y2c{bottom:239.456933pt;}
.y2a9{bottom:241.211867pt;}
.y237{bottom:243.403867pt;}
.y1a2{bottom:246.698400pt;}
.y28d{bottom:247.826000pt;}
.y71{bottom:247.841733pt;}
.y26b{bottom:248.370800pt;}
.y208{bottom:249.329733pt;}
.y1c2{bottom:249.449333pt;}
.ya4{bottom:249.858800pt;}
.y1bc{bottom:251.473600pt;}
.y15b{bottom:251.759733pt;}
.y1eb{bottom:251.917333pt;}
.yc1{bottom:252.188133pt;}
.yee{bottom:254.607067pt;}
.y3f{bottom:258.360400pt;}
.y2b{bottom:258.656933pt;}
.y2a8{bottom:260.411867pt;}
.y236{bottom:262.603867pt;}
.y1a1{bottom:265.898400pt;}
.y28c{bottom:267.026000pt;}
.y70{bottom:267.041600pt;}
.y2be{bottom:267.211733pt;}
.y26a{bottom:267.570800pt;}
.y207{bottom:268.529733pt;}
.y103{bottom:269.047733pt;}
.ya3{bottom:269.058800pt;}
.y2bb{bottom:269.819600pt;}
.yf{bottom:270.406933pt;}
.y130{bottom:270.596000pt;}
.y1bb{bottom:270.673600pt;}
.y15a{bottom:270.959733pt;}
.y1e7{bottom:271.077333pt;}
.y8e{bottom:272.159600pt;}
.ydd{bottom:273.807067pt;}
.y2a{bottom:277.856933pt;}
.y2a7{bottom:279.611867pt;}
.y235{bottom:281.803867pt;}
.y1a0{bottom:285.098400pt;}
.y28b{bottom:286.226000pt;}
.y6f{bottom:286.241733pt;}
.y269{bottom:286.770800pt;}
.y220{bottom:287.413333pt;}
.y206{bottom:287.729733pt;}
.y102{bottom:288.247733pt;}
.ya2{bottom:288.258800pt;}
.y2ba{bottom:289.019600pt;}
.y12f{bottom:289.796000pt;}
.y1ba{bottom:289.873600pt;}
.y159{bottom:290.159733pt;}
.yc0{bottom:290.588133pt;}
.y8d{bottom:291.359600pt;}
.yea{bottom:293.006933pt;}
.ydc{bottom:293.007067pt;}
.y3e{bottom:296.760400pt;}
.y52{bottom:298.151333pt;}
.y2b3{bottom:298.638533pt;}
.y2a6{bottom:298.811867pt;}
.y252{bottom:299.734667pt;}
.y234{bottom:301.003867pt;}
.y83{bottom:302.474933pt;}
.y19f{bottom:304.298400pt;}
.y28a{bottom:305.426000pt;}
.y6e{bottom:305.441733pt;}
.y2bd{bottom:305.611733pt;}
.y268{bottom:305.970800pt;}
.y21f{bottom:306.613333pt;}
.y205{bottom:306.929733pt;}
.y101{bottom:307.447733pt;}
.ya1{bottom:307.458800pt;}
.y1e3{bottom:308.201333pt;}
.y2b9{bottom:308.219600pt;}
.ye{bottom:308.806933pt;}
.y12e{bottom:308.995867pt;}
.y1b9{bottom:309.073600pt;}
.y158{bottom:309.359733pt;}
.ybf{bottom:309.788133pt;}
.y8c{bottom:310.559600pt;}
.y188{bottom:311.717067pt;}
.ydb{bottom:312.207067pt;}
.y19b{bottom:312.736133pt;}
.y3d{bottom:315.960400pt;}
.y80{bottom:316.427600pt;}
.y165{bottom:316.436933pt;}
.y169{bottom:316.954933pt;}
.y51{bottom:317.351333pt;}
.y2b2{bottom:317.838533pt;}
.y2a5{bottom:318.011867pt;}
.y251{bottom:318.934667pt;}
.y82{bottom:320.074933pt;}
.y233{bottom:320.203867pt;}
.y19e{bottom:323.498400pt;}
.y289{bottom:324.626000pt;}
.y2bc{bottom:324.811733pt;}
.y267{bottom:325.170800pt;}
.y21e{bottom:325.813333pt;}
.y204{bottom:326.129733pt;}
.y13b{bottom:326.517200pt;}
.y13f{bottom:326.531467pt;}
.y100{bottom:326.647733pt;}
.y12d{bottom:328.195867pt;}
.y1b8{bottom:328.273600pt;}
.y157{bottom:328.559733pt;}
.ybe{bottom:328.988133pt;}
.y8b{bottom:329.759600pt;}
.y187{bottom:330.917067pt;}
.yda{bottom:331.407067pt;}
.y19a{bottom:331.936133pt;}
.y7f{bottom:334.027600pt;}
.y164{bottom:334.036800pt;}
.y168{bottom:334.554933pt;}
.y3c{bottom:335.160400pt;}
.y50{bottom:336.551333pt;}
.y2b1{bottom:337.038533pt;}
.y2a4{bottom:337.211867pt;}
.y81{bottom:337.674933pt;}
.y250{bottom:338.134667pt;}
.y232{bottom:339.403867pt;}
.y19d{bottom:342.698400pt;}
.y288{bottom:343.826000pt;}
.y13a{bottom:344.117200pt;}
.y13e{bottom:344.131467pt;}
.y266{bottom:344.370800pt;}
.y21d{bottom:345.013333pt;}
.y203{bottom:345.329733pt;}
.y1df{bottom:345.624000pt;}
.yff{bottom:345.847733pt;}
.ya0{bottom:345.858800pt;}
.y6d{bottom:346.618133pt;}
.y2b8{bottom:346.619600pt;}
.yd{bottom:347.206933pt;}
.y12c{bottom:347.395867pt;}
.y1c0{bottom:347.473600pt;}
.ybd{bottom:348.188133pt;}
.y8a{bottom:348.959600pt;}
.y186{bottom:350.117067pt;}
.yd9{bottom:350.607067pt;}
.y199{bottom:351.136133pt;}
.y3b{bottom:354.360400pt;}
.y172{bottom:355.610533pt;}
.y4f{bottom:355.751333pt;}
.y174{bottom:356.083733pt;}
.y2a3{bottom:356.411867pt;}
.y24f{bottom:357.334667pt;}
.y231{bottom:358.603867pt;}
.y19c{bottom:361.898400pt;}
.y287{bottom:363.026000pt;}
.y265{bottom:363.570800pt;}
.y21c{bottom:364.213333pt;}
.y202{bottom:364.529733pt;}
.yfe{bottom:365.047733pt;}
.y9f{bottom:365.058800pt;}
.y2b7{bottom:365.819600pt;}
.y12b{bottom:366.596000pt;}
.y1b7{bottom:366.673600pt;}
.y156{bottom:366.959733pt;}
.ybc{bottom:367.388133pt;}
.y89{bottom:368.159600pt;}
.y185{bottom:369.317067pt;}
.ye9{bottom:369.807067pt;}
.y198{bottom:370.336133pt;}
.y29{bottom:370.937867pt;}
.y1e{bottom:371.572267pt;}
.y10e{bottom:372.638533pt;}
.y114{bottom:372.652800pt;}
.y171{bottom:373.210533pt;}
.y173{bottom:373.683733pt;}
.y4e{bottom:374.951333pt;}
.y2b0{bottom:375.438533pt;}
.y2a2{bottom:375.611867pt;}
.y24e{bottom:376.534667pt;}
.y230{bottom:377.803867pt;}
.y286{bottom:382.226000pt;}
.y264{bottom:382.770800pt;}
.y1db{bottom:383.046667pt;}
.y21b{bottom:383.413333pt;}
.y9e{bottom:384.258800pt;}
.yc{bottom:385.606933pt;}
.y12a{bottom:385.796000pt;}
.y1b6{bottom:385.873600pt;}
.y155{bottom:386.159733pt;}
.ybb{bottom:386.588133pt;}
.y184{bottom:388.517067pt;}
.yed{bottom:389.006933pt;}
.yd7{bottom:389.007067pt;}
.y197{bottom:389.536133pt;}
.y28{bottom:390.137867pt;}
.y10d{bottom:390.238533pt;}
.y113{bottom:390.252800pt;}
.y1d{bottom:390.772267pt;}
.y3a{bottom:392.760400pt;}
.y4d{bottom:394.151333pt;}
.yd8{bottom:394.335067pt;}
.y2af{bottom:394.638533pt;}
.y2a1{bottom:394.811867pt;}
.y24d{bottom:395.734667pt;}
.y22f{bottom:397.003867pt;}
.y285{bottom:401.426000pt;}
.y263{bottom:401.970800pt;}
.y21a{bottom:402.613333pt;}
.y201{bottom:402.929733pt;}
.yfd{bottom:403.447733pt;}
.y9d{bottom:403.458800pt;}
.y2b6{bottom:404.219600pt;}
.y129{bottom:404.995867pt;}
.y1b5{bottom:405.073600pt;}
.y154{bottom:405.359733pt;}
.yba{bottom:405.788133pt;}
.y183{bottom:407.717067pt;}
.y10c{bottom:407.838533pt;}
.y112{bottom:407.852800pt;}
.yd6{bottom:408.207067pt;}
.y196{bottom:408.736133pt;}
.y27{bottom:409.337867pt;}
.y1c{bottom:409.972267pt;}
.y39{bottom:411.960400pt;}
.y4c{bottom:413.351333pt;}
.y2a0{bottom:414.011867pt;}
.y24c{bottom:414.934667pt;}
.y22e{bottom:416.203867pt;}
.y1d7{bottom:420.172000pt;}
.y284{bottom:420.626000pt;}
.y262{bottom:421.170800pt;}
.y200{bottom:422.129733pt;}
.yfc{bottom:422.647733pt;}
.y9c{bottom:422.658800pt;}
.yb{bottom:424.006933pt;}
.y128{bottom:424.195867pt;}
.y1b4{bottom:424.273600pt;}
.y153{bottom:424.559733pt;}
.yb9{bottom:424.988133pt;}
.y182{bottom:426.917067pt;}
.yd5{bottom:427.407067pt;}
.y195{bottom:427.936133pt;}
.y26{bottom:428.537867pt;}
.y1b{bottom:429.172267pt;}
.y38{bottom:431.160400pt;}
.y4b{bottom:432.018000pt;}
.y2ae{bottom:433.038533pt;}
.y29f{bottom:433.211867pt;}
.y24b{bottom:434.134667pt;}
.y22d{bottom:435.403867pt;}
.y283{bottom:439.826000pt;}
.y261{bottom:440.370800pt;}
.y219{bottom:441.013333pt;}
.y1ff{bottom:441.329733pt;}
.yfb{bottom:441.847733pt;}
.y9b{bottom:441.858800pt;}
.y2b5{bottom:442.619600pt;}
.y127{bottom:443.395867pt;}
.y1b3{bottom:443.473600pt;}
.y152{bottom:443.759733pt;}
.yb8{bottom:444.188133pt;}
.y60{bottom:445.058800pt;}
.y181{bottom:446.117067pt;}
.yd4{bottom:446.607067pt;}
.y194{bottom:447.136133pt;}
.y25{bottom:447.737867pt;}
.y1a{bottom:448.372267pt;}
.y37{bottom:450.360400pt;}
.y29e{bottom:452.411867pt;}
.y24a{bottom:453.334667pt;}
.y22c{bottom:454.603867pt;}
.y1d3{bottom:457.594667pt;}
.y282{bottom:459.026000pt;}
.y260{bottom:459.570800pt;}
.y218{bottom:460.213333pt;}
.y1fe{bottom:460.529733pt;}
.yfa{bottom:461.047733pt;}
.y9a{bottom:461.058800pt;}
.y2b4{bottom:461.819600pt;}
.ya{bottom:462.406933pt;}
.y126{bottom:462.596000pt;}
.y1b2{bottom:462.673600pt;}
.y151{bottom:462.959733pt;}
.yb7{bottom:463.388133pt;}
.y5f{bottom:464.258800pt;}
.y180{bottom:465.317067pt;}
.ye8{bottom:465.807067pt;}
.y193{bottom:466.336133pt;}
.y24{bottom:466.937867pt;}
.y19{bottom:467.572267pt;}
.y36{bottom:469.560400pt;}
.y4a{bottom:470.418000pt;}
.y2ad{bottom:471.438533pt;}
.y29d{bottom:471.611867pt;}
.y249{bottom:472.534667pt;}
.y22b{bottom:473.803867pt;}
.y281{bottom:478.226000pt;}
.y25f{bottom:478.770800pt;}
.y217{bottom:479.413333pt;}
.y1fd{bottom:479.729733pt;}
.yf9{bottom:480.247733pt;}
.y99{bottom:480.258800pt;}
.y125{bottom:481.796000pt;}
.y1b1{bottom:481.873600pt;}
.y150{bottom:482.159733pt;}
.y5e{bottom:483.458800pt;}
.y17f{bottom:484.517067pt;}
.ye7{bottom:485.006933pt;}
.yd3{bottom:485.007067pt;}
.y192{bottom:485.536133pt;}
.y23{bottom:486.137867pt;}
.y18{bottom:486.772267pt;}
.y35{bottom:488.760400pt;}
.y49{bottom:489.618000pt;}
.y2ac{bottom:490.638533pt;}
.y29c{bottom:490.811867pt;}
.y248{bottom:491.734667pt;}
.y22a{bottom:493.003867pt;}
.y1ce{bottom:495.017333pt;}
.y280{bottom:497.426000pt;}
.y25e{bottom:497.970800pt;}
.y216{bottom:498.613333pt;}
.y1fc{bottom:498.929733pt;}
.yf8{bottom:499.447733pt;}
.y9{bottom:500.806933pt;}
.y14f{bottom:501.359733pt;}
.yb6{bottom:501.788133pt;}
.y5d{bottom:502.658800pt;}
.y17e{bottom:503.717067pt;}
.yd2{bottom:504.207067pt;}
.y191{bottom:504.736133pt;}
.y22{bottom:505.337867pt;}
.y17{bottom:505.972267pt;}
.y34{bottom:507.960400pt;}
.y48{bottom:508.818000pt;}
.y29b{bottom:510.011867pt;}
.y247{bottom:510.934667pt;}
.y229{bottom:512.203867pt;}
.y27f{bottom:516.626000pt;}
.y25d{bottom:517.170800pt;}
.y215{bottom:517.813333pt;}
.y1fb{bottom:518.129733pt;}
.y7b{bottom:518.244800pt;}
.yf7{bottom:518.647733pt;}
.y98{bottom:518.658800pt;}
.y7e{bottom:519.164667pt;}
.y124{bottom:520.195867pt;}
.y1b0{bottom:520.273600pt;}
.y14e{bottom:520.559733pt;}
.yb5{bottom:520.988133pt;}
.y5c{bottom:521.858800pt;}
.y17d{bottom:522.917067pt;}
.yd1{bottom:523.407067pt;}
.y21{bottom:524.537867pt;}
.y16{bottom:525.172267pt;}
.y33{bottom:527.160400pt;}
.y47{bottom:528.018000pt;}
.y29a{bottom:529.211867pt;}
.y246{bottom:530.134667pt;}
.y228{bottom:531.403867pt;}
.y27e{bottom:535.826000pt;}
.y7a{bottom:535.844800pt;}
.y25c{bottom:536.370800pt;}
.y7d{bottom:536.764667pt;}
.y214{bottom:537.013333pt;}
.y1fa{bottom:537.329733pt;}
.y97{bottom:537.858800pt;}
.y8{bottom:539.206933pt;}
.y123{bottom:539.395867pt;}
.y1af{bottom:539.473600pt;}
.y14d{bottom:539.759733pt;}
.yb4{bottom:540.188133pt;}
.y167{bottom:540.518800pt;}
.y5b{bottom:541.058800pt;}
.y17c{bottom:542.117067pt;}
.yd0{bottom:542.607067pt;}
.y190{bottom:543.136133pt;}
.y20{bottom:543.737867pt;}
.y15{bottom:544.372267pt;}
.y32{bottom:546.360400pt;}
.y46{bottom:547.218000pt;}
.y299{bottom:548.411867pt;}
.y245{bottom:549.334667pt;}
.y227{bottom:550.603867pt;}
.y1ca{bottom:550.702667pt;}
.y79{bottom:553.444800pt;}
.y7c{bottom:554.364667pt;}
.y27d{bottom:555.026000pt;}
.y25b{bottom:555.570800pt;}
.y1f9{bottom:556.529733pt;}
.yf6{bottom:557.047733pt;}
.y96{bottom:557.058800pt;}
.y166{bottom:558.118800pt;}
.y122{bottom:558.596000pt;}
.y140{bottom:558.599067pt;}
.y1ae{bottom:558.673600pt;}
.y14c{bottom:558.959733pt;}
.yb3{bottom:559.388133pt;}
.y17b{bottom:561.317067pt;}
.ycf{bottom:561.807067pt;}
.y18f{bottom:562.336133pt;}
.y1f{bottom:562.937867pt;}
.y14{bottom:563.572267pt;}
.y31{bottom:565.560400pt;}
.y45{bottom:566.418000pt;}
.y298{bottom:567.611867pt;}
.y244{bottom:568.534667pt;}
.y226{bottom:569.803867pt;}
.y27c{bottom:574.226000pt;}
.y25a{bottom:574.770800pt;}
.y213{bottom:575.413333pt;}
.yf5{bottom:576.247733pt;}
.y95{bottom:576.258800pt;}
.y121{bottom:577.796000pt;}
.y1ad{bottom:577.873600pt;}
.y14b{bottom:578.159733pt;}
.yb2{bottom:578.588133pt;}
.y5a{bottom:579.458800pt;}
.ye6{bottom:581.006933pt;}
.yce{bottom:581.007067pt;}
.y18e{bottom:581.536133pt;}
.y170{bottom:581.766133pt;}
.y297{bottom:586.811867pt;}
.y243{bottom:587.734667pt;}
.y1c6{bottom:588.125333pt;}
.y225{bottom:589.003867pt;}
.y27b{bottom:593.426000pt;}
.y259{bottom:593.970800pt;}
.y212{bottom:594.613333pt;}
.y1f8{bottom:594.929733pt;}
.y11a{bottom:595.049467pt;}
.yf4{bottom:595.447733pt;}
.y94{bottom:595.458800pt;}
.y7{bottom:596.806933pt;}
.y120{bottom:596.995867pt;}
.y144{bottom:596.996000pt;}
.y1ac{bottom:597.073600pt;}
.y14a{bottom:597.359733pt;}
.yb1{bottom:597.788133pt;}
.y59{bottom:598.658800pt;}
.y16f{bottom:599.366133pt;}
.y17a{bottom:599.717067pt;}
.ycd{bottom:600.207067pt;}
.y18d{bottom:600.736133pt;}
.y13{bottom:601.972267pt;}
.y30{bottom:603.960400pt;}
.y242{bottom:606.934667pt;}
.y224{bottom:608.203867pt;}
.y27a{bottom:612.626000pt;}
.y258{bottom:613.170800pt;}
.y211{bottom:613.813333pt;}
.y1f7{bottom:614.129733pt;}
.y119{bottom:614.249467pt;}
.yf3{bottom:614.647733pt;}
.y93{bottom:614.658800pt;}
.y11f{bottom:616.195867pt;}
.y143{bottom:616.196000pt;}
.y149{bottom:616.559733pt;}
.yb0{bottom:616.988133pt;}
.y58{bottom:617.858800pt;}
.y6c{bottom:618.877867pt;}
.y179{bottom:618.917067pt;}
.yec{bottom:619.407067pt;}
.y18c{bottom:619.936133pt;}
.y1c4{bottom:625.249333pt;}
.y241{bottom:626.134667pt;}
.y223{bottom:627.403867pt;}
.y279{bottom:631.826000pt;}
.y257{bottom:632.370800pt;}
.y210{bottom:633.013333pt;}
.y1f6{bottom:633.329733pt;}
.y118{bottom:633.449467pt;}
.yf2{bottom:633.847733pt;}
.y92{bottom:633.858800pt;}
.y11e{bottom:635.395867pt;}
.y142{bottom:635.396000pt;}
.y148{bottom:635.759733pt;}
.yaf{bottom:636.188133pt;}
.y57{bottom:637.058800pt;}
.y6b{bottom:638.077867pt;}
.y178{bottom:638.117067pt;}
.ycc{bottom:638.607067pt;}
.y18b{bottom:639.136133pt;}
.y88{bottom:650.285867pt;}
.y278{bottom:651.026000pt;}
.y256{bottom:651.570800pt;}
.y20f{bottom:652.213333pt;}
.y1f5{bottom:652.529733pt;}
.y117{bottom:652.649467pt;}
.yf1{bottom:653.047733pt;}
.y91{bottom:653.058800pt;}
.y11d{bottom:654.596000pt;}
.y147{bottom:654.959733pt;}
.yae{bottom:655.388133pt;}
.y56{bottom:656.258800pt;}
.y6a{bottom:657.277867pt;}
.y177{bottom:657.317067pt;}
.ycb{bottom:657.807067pt;}
.y18a{bottom:658.336133pt;}
.y222{bottom:665.803867pt;}
.y87{bottom:669.485733pt;}
.y277{bottom:670.226000pt;}
.y255{bottom:670.770800pt;}
.y90{bottom:672.258800pt;}
.y11c{bottom:673.796000pt;}
.y146{bottom:674.159733pt;}
.y1c1{bottom:674.476133pt;}
.yad{bottom:674.588133pt;}
.y55{bottom:675.458800pt;}
.y69{bottom:676.477867pt;}
.y176{bottom:676.517067pt;}
.ye5{bottom:677.006933pt;}
.yca{bottom:677.007067pt;}
.y189{bottom:677.536133pt;}
.y2{bottom:685.650800pt;}
.y86{bottom:688.685733pt;}
.y276{bottom:689.426000pt;}
.y254{bottom:689.970800pt;}
.yf0{bottom:691.447733pt;}
.y8f{bottom:691.458800pt;}
.y11b{bottom:692.995867pt;}
.y141{bottom:692.996000pt;}
.y145{bottom:693.359733pt;}
.yac{bottom:693.788133pt;}
.y1f4{bottom:694.129733pt;}
.y54{bottom:694.658800pt;}
.y68{bottom:695.677867pt;}
.yc9{bottom:696.207067pt;}
.y1{bottom:714.450800pt;}
.y175{bottom:714.917067pt;}
.ye4{bottom:715.406933pt;}
.yc8{bottom:715.407067pt;}
.y221{bottom:716.806933pt;}
.y253{bottom:728.370800pt;}
.y53{bottom:733.058800pt;}
.yc7{bottom:734.607067pt;}
.h17{height:18.561333pt;}
.he{height:26.230336pt;}
.h14{height:31.940562pt;}
.hf{height:32.570771pt;}
.h10{height:32.739094pt;}
.h1c{height:36.524000pt;}
.h19{height:36.525333pt;}
.h1b{height:36.822667pt;}
.h1d{height:36.825333pt;}
.h16{height:39.908121pt;}
.hd{height:40.734375pt;}
.hc{height:40.763021pt;}
.h1e{height:43.343750pt;}
.h11{height:43.812500pt;}
.ha{height:44.437500pt;}
.h7{height:44.468750pt;}
.h8{height:44.800000pt;}
.h12{height:44.992000pt;}
.h18{height:49.088451pt;}
.hb{height:51.476562pt;}
.h13{height:54.051094pt;}
.h1a{height:55.085333pt;}
.h5{height:56.156250pt;}
.h9{height:56.843750pt;}
.h4{height:62.197917pt;}
.h6{height:66.317708pt;}
.h3{height:72.000000pt;}
.h2{height:125.000000pt;}
.h15{height:394.960000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.wd{width:49.485333pt;}
.wa{width:50.692000pt;}
.wc{width:53.406667pt;}
.wb{width:55.520000pt;}
.w7{width:56.726667pt;}
.w9{width:59.141333pt;}
.we{width:64.572000pt;}
.w8{width:68.796000pt;}
.w4{width:76.641333pt;}
.w6{width:88.710667pt;}
.wf{width:96.857333pt;}
.w5{width:97.160000pt;}
.w3{width:120.997333pt;}
.w2{width:947.460000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x57{left:6.643467pt;}
.x54{left:8.304000pt;}
.x67{left:10.041675pt;}
.x5e{left:11.994267pt;}
.x66{left:13.360800pt;}
.x61{left:16.524667pt;}
.x60{left:18.035717pt;}
.x68{left:20.447467pt;}
.x64{left:21.360933pt;}
.x65{left:23.171365pt;}
.x5f{left:24.071867pt;}
.x62{left:30.403600pt;}
.x63{left:31.463088pt;}
.x69{left:33.125600pt;}
.x52{left:34.397600pt;}
.x2f{left:36.460933pt;}
.x75{left:44.205467pt;}
.x78{left:46.771867pt;}
.x3{left:48.000000pt;}
.xf{left:49.637733pt;}
.x76{left:50.580533pt;}
.x1b{left:53.967067pt;}
.x17{left:55.271867pt;}
.x74{left:58.100000pt;}
.x1c{left:59.710533pt;}
.x77{left:61.896933pt;}
.x79{left:67.682133pt;}
.x10{left:72.490133pt;}
.x51{left:79.530667pt;}
.x53{left:80.434667pt;}
.x18{left:87.384667pt;}
.x70{left:89.721333pt;}
.x6a{left:92.376800pt;}
.x6e{left:93.529867pt;}
.x6d{left:100.596267pt;}
.x72{left:101.522000pt;}
.x71{left:102.838400pt;}
.x6f{left:104.846267pt;}
.x4f{left:111.593467pt;}
.x2e{left:130.552000pt;}
.x26{left:141.334400pt;}
.x73{left:155.045467pt;}
.xe{left:201.308267pt;}
.x27{left:208.952267pt;}
.x28{left:213.569600pt;}
.x12{left:222.424400pt;}
.x1f{left:224.320400pt;}
.xd{left:225.439200pt;}
.x1d{left:228.737200pt;}
.x6b{left:231.131200pt;}
.x11{left:240.954667pt;}
.x1e{left:242.777333pt;}
.x13{left:243.998267pt;}
.x9{left:253.958667pt;}
.x55{left:279.281333pt;}
.xc{left:308.629867pt;}
.x6c{left:350.335600pt;}
.x56{left:377.045333pt;}
.x50{left:385.361600pt;}
.x42{left:395.506533pt;}
.x1a{left:397.848667pt;}
.x14{left:401.216000pt;}
.x4a{left:402.118667pt;}
.x19{left:404.233067pt;}
.x15{left:405.755733pt;}
.x3c{left:412.881467pt;}
.x45{left:414.158267pt;}
.x3b{left:415.800400pt;}
.x3a{left:418.102800pt;}
.x4b{left:422.790267pt;}
.x49{left:435.479067pt;}
.x3d{left:456.333600pt;}
.x16{left:459.423200pt;}
.x7b{left:462.923867pt;}
.x58{left:466.360000pt;}
.x7c{left:467.966933pt;}
.x7a{left:472.373067pt;}
.x7f{left:475.959067pt;}
.x39{left:480.281200pt;}
.x30{left:485.097600pt;}
.x33{left:486.809467pt;}
.x7e{left:488.380933pt;}
.x31{left:490.450667pt;}
.xb{left:507.928933pt;}
.x59{left:523.689333pt;}
.x7d{left:525.486400pt;}
.x80{left:529.482533pt;}
.x32{left:544.491067pt;}
.x2d{left:553.259867pt;}
.x4{left:557.259867pt;}
.xa{left:569.259867pt;}
.x2b{left:574.067600pt;}
.x2a{left:575.315600pt;}
.x29{left:579.378133pt;}
.x5a{left:593.089333pt;}
.x1{left:596.179867pt;}
.x8{left:624.354667pt;}
.x7{left:625.686667pt;}
.x6{left:626.589067pt;}
.x5b{left:652.833333pt;}
.x5c{left:704.129333pt;}
.x48{left:748.541467pt;}
.x3f{left:750.697067pt;}
.x43{left:753.243867pt;}
.x41{left:754.792800pt;}
.x46{left:760.073333pt;}
.x4c{left:761.305467pt;}
.x3e{left:763.344267pt;}
.x40{left:764.815733pt;}
.x47{left:772.276400pt;}
.x5{left:776.777200pt;}
.x2c{left:782.246400pt;}
.x44{left:783.318400pt;}
.x35{left:791.503200pt;}
.x37{left:794.849333pt;}
.x34{left:804.325867pt;}
.x4d{left:815.080800pt;}
.x38{left:817.264667pt;}
.x36{left:826.522800pt;}
.x2{left:827.582133pt;}
.x5d{left:864.353333pt;}
.x21{left:888.347867pt;}
.x22{left:895.394800pt;}
.x23{left:906.965067pt;}
.x24{left:922.551067pt;}
.x4e{left:929.208533pt;}
.x20{left:950.965067pt;}
.x25{left:974.933867pt;}
}




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