
    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_39f274a43715e50c4faf2074.woff')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_3f0543a9c3d96b80370ef2bb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_a91f1a5474c5b5b1acccab26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_3ae4f19b8b3d0dc78fc17df5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_dea7ba25117415e58b097f5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.444000;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_86c8c26fe8ac66afb468b43e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.431000;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_fe2ec4c86ec5767a07b1d79f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_e3d7537a7eacb4991742a62f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_8789f5bf7cb02fb93257430b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_949a504963533c4766029466.woff')format("woff");}.ffa{font-family:ffa;line-height:0.665000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_59afb1cf7567e6e415267749.woff')format("woff");}.ffc{font-family:ffc;line-height:0.756836;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_da64b56cf668b2d348d5eab7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.922000;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_8c12d4c421e6dc293a649dc2.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ceceae1dd5098046a28d4c2b.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_aa25383908c80085892bc46b.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_30268f12618adae5da87f55c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_2a441b4d287f365fe20b00ed.woff')format("woff");}.ff12{font-family:ff12;line-height:0.939453;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:ff13;src:url('chunks/assets/font_031d965248552e4a46947f61.woff')format("woff");}.ff13{font-family:ff13;line-height:0.948730;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:ff14;src:url('chunks/assets/font_c81121a817fcb1b0182772e7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.757812;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;}
.ff15{font-family:sans-serif;visibility:hidden;}
.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);}
.m2{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,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:-22.854000px;}
.v5{vertical-align:-17.934000px;}
.v7{vertical-align:-16.878000px;}
.v4{vertical-align:-15.054000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.054000px;}
.v6{vertical-align:16.938000px;}
.v1{vertical-align:23.862000px;}
.v8{vertical-align:33.451430px;}
.ls1e{letter-spacing:-5.093572px;}
.ls20{letter-spacing:-3.938190px;}
.ls1a{letter-spacing:-2.265808px;}
.lsf{letter-spacing:-1.013298px;}
.lse{letter-spacing:-0.931479px;}
.ls1b{letter-spacing:-0.593426px;}
.ls1d{letter-spacing:-0.570948px;}
.ls19{letter-spacing:-0.103400px;}
.ls18{letter-spacing:-0.044957px;}
.ls16{letter-spacing:-0.022478px;}
.ls8{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.035965px;}
.ls1c{letter-spacing:0.058443px;}
.ls15{letter-spacing:0.139365px;}
.ls17{letter-spacing:0.197809px;}
.ls11{letter-spacing:0.226656px;}
.ls2a{letter-spacing:0.572832px;}
.ls25{letter-spacing:0.574290px;}
.ls26{letter-spacing:0.574775px;}
.ls24{letter-spacing:0.734624px;}
.ls29{letter-spacing:1.101936px;}
.ls21{letter-spacing:1.263729px;}
.ls27{letter-spacing:1.272474px;}
.ls23{letter-spacing:1.276847px;}
.ls22{letter-spacing:1.464876px;}
.ls2c{letter-spacing:1.469249px;}
.ls2b{letter-spacing:1.674768px;}
.ls6{letter-spacing:2.984612px;}
.ls4{letter-spacing:2.984764px;}
.ls7{letter-spacing:2.985720px;}
.ls5{letter-spacing:2.990612px;}
.ls9{letter-spacing:2.991840px;}
.lsc{letter-spacing:15.013200px;}
.ls28{letter-spacing:15.535200px;}
.lsa{letter-spacing:15.795600px;}
.ls0{letter-spacing:16.999200px;}
.lsb{letter-spacing:28.398532px;}
.ls1{letter-spacing:29.290979px;}
.ls3{letter-spacing:29.291040px;}
.ls2{letter-spacing:29.297040px;}
.lsd{letter-spacing:35.983200px;}
.ls14{letter-spacing:42.973200px;}
.ls13{letter-spacing:56.704768px;}
.ls12{letter-spacing:56.705143px;}
.ls10{letter-spacing:2518.164000px;}
.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;}
}
.wsa3{word-spacing:-16.565223px;}
.wsa4{word-spacing:-16.483403px;}
.ws3c{word-spacing:-15.278643px;}
.wsb9{word-spacing:-14.164800px;}
.ws38{word-spacing:-13.750871px;}
.wse9{word-spacing:-13.202127px;}
.ws159{word-spacing:-13.166400px;}
.wsdc{word-spacing:-12.695718px;}
.wsd8{word-spacing:-12.637275px;}
.wsdd{word-spacing:-12.556353px;}
.wsda{word-spacing:-12.497909px;}
.wsdb{word-spacing:-12.452953px;}
.ws5{word-spacing:-11.764552px;}
.wsde{word-spacing:-7.404337px;}
.ws111{word-spacing:-2.596800px;}
.ws19a{word-spacing:-2.548800px;}
.wsfe{word-spacing:-2.500800px;}
.ws89{word-spacing:-2.404800px;}
.ws1c7{word-spacing:-2.356800px;}
.ws11d{word-spacing:-2.308800px;}
.ws14a{word-spacing:-2.116800px;}
.ws143{word-spacing:-2.068800px;}
.ws1c6{word-spacing:-1.972800px;}
.ws133{word-spacing:-1.924800px;}
.wsff{word-spacing:-1.876800px;}
.ws10e{word-spacing:-1.718496px;}
.ws97{word-spacing:-1.636800px;}
.ws8d{word-spacing:-1.588800px;}
.ws182{word-spacing:-1.540800px;}
.ws10f{word-spacing:-1.512976px;}
.ws108{word-spacing:-1.508603px;}
.wsce{word-spacing:-1.444800px;}
.wsbd{word-spacing:-1.396800px;}
.ws18f{word-spacing:-1.348800px;}
.ws109{word-spacing:-1.320575px;}
.ws10c{word-spacing:-1.316202px;}
.ws107{word-spacing:-1.307456px;}
.wsf3{word-spacing:-1.300800px;}
.wse3{word-spacing:-1.252800px;}
.ws169{word-spacing:-1.204800px;}
.ws9b{word-spacing:-1.156800px;}
.ws10a{word-spacing:-1.145664px;}
.ws140{word-spacing:-1.060800px;}
.ws172{word-spacing:-1.027200px;}
.ws165{word-spacing:-1.012800px;}
.wse4{word-spacing:-0.964800px;}
.ws16b{word-spacing:-0.916800px;}
.ws116{word-spacing:-0.868800px;}
.ws10b{word-spacing:-0.778352px;}
.ws19b{word-spacing:-0.724800px;}
.ws10d{word-spacing:-0.616560px;}
.ws196{word-spacing:-0.532800px;}
.ws1b9{word-spacing:-0.484800px;}
.ws161{word-spacing:-0.436800px;}
.ws18b{word-spacing:-0.388800px;}
.wsd6{word-spacing:-0.340800px;}
.wsd9{word-spacing:-0.267866px;}
.ws171{word-spacing:-0.244800px;}
.ws70{word-spacing:-0.196800px;}
.wsbf{word-spacing:-0.160800px;}
.wsbe{word-spacing:-0.148800px;}
.ws79{word-spacing:-0.052800px;}
.ws1{word-spacing:-0.048000px;}
.ws16{word-spacing:-0.029888px;}
.ws106{word-spacing:-0.004800px;}
.ws3b{word-spacing:0.000000px;}
.ws15e{word-spacing:0.043200px;}
.ws82{word-spacing:0.091200px;}
.wsbb{word-spacing:0.139200px;}
.ws11c{word-spacing:0.187200px;}
.wsaf{word-spacing:0.235200px;}
.ws1b3{word-spacing:0.427200px;}
.ws19c{word-spacing:0.475200px;}
.ws81{word-spacing:0.523200px;}
.ws12d{word-spacing:0.571200px;}
.wsf8{word-spacing:0.619200px;}
.ws1c8{word-spacing:0.657600px;}
.ws90{word-spacing:0.715200px;}
.wsf2{word-spacing:0.763200px;}
.ws1bb{word-spacing:0.811200px;}
.wsb7{word-spacing:0.859200px;}
.ws13e{word-spacing:0.907200px;}
.ws98{word-spacing:0.955200px;}
.ws8a{word-spacing:1.003200px;}
.wsfb{word-spacing:1.051200px;}
.ws194{word-spacing:1.137600px;}
.wsfd{word-spacing:1.147200px;}
.ws105{word-spacing:1.195200px;}
.ws94{word-spacing:1.243200px;}
.ws102{word-spacing:1.291200px;}
.ws67{word-spacing:1.339200px;}
.ws95{word-spacing:1.387200px;}
.ws5b{word-spacing:1.414800px;}
.ws5d{word-spacing:1.435200px;}
.ws60{word-spacing:1.531200px;}
.ws1ca{word-spacing:1.579200px;}
.ws72{word-spacing:1.627200px;}
.ws166{word-spacing:1.665600px;}
.wsb1{word-spacing:1.675200px;}
.ws117{word-spacing:1.723200px;}
.ws1a2{word-spacing:1.771200px;}
.ws1a3{word-spacing:1.819200px;}
.ws96{word-spacing:1.963200px;}
.ws187{word-spacing:2.059200px;}
.ws11a{word-spacing:2.155200px;}
.ws3f{word-spacing:2.299200px;}
.ws3d{word-spacing:2.329200px;}
.wsd0{word-spacing:2.347200px;}
.wsa6{word-spacing:2.395200px;}
.ws132{word-spacing:2.539200px;}
.ws8b{word-spacing:2.587200px;}
.ws122{word-spacing:2.635200px;}
.ws18e{word-spacing:2.683200px;}
.wsf1{word-spacing:2.779200px;}
.ws59{word-spacing:2.827200px;}
.wsc6{word-spacing:2.832000px;}
.ws1cc{word-spacing:2.840400px;}
.ws7c{word-spacing:2.864454px;}
.ws14c{word-spacing:2.875200px;}
.ws5c{word-spacing:2.877600px;}
.ws13f{word-spacing:2.923200px;}
.ws88{word-spacing:2.971200px;}
.ws50{word-spacing:3.104400px;}
.ws52{word-spacing:3.115200px;}
.ws135{word-spacing:3.163200px;}
.ws63{word-spacing:3.211200px;}
.ws11b{word-spacing:3.259200px;}
.wsf7{word-spacing:3.307200px;}
.wse5{word-spacing:3.355200px;}
.ws7f{word-spacing:3.403200px;}
.wsc5{word-spacing:3.451200px;}
.ws3e{word-spacing:3.495600px;}
.ws120{word-spacing:3.499200px;}
.ws9d{word-spacing:3.547200px;}
.ws64{word-spacing:3.595200px;}
.ws12c{word-spacing:3.643200px;}
.ws7e{word-spacing:3.691200px;}
.ws62{word-spacing:3.739200px;}
.wsbc{word-spacing:3.787200px;}
.wsf4{word-spacing:3.835200px;}
.ws142{word-spacing:3.883200px;}
.ws1b5{word-spacing:3.931200px;}
.ws146{word-spacing:3.979200px;}
.wsfc{word-spacing:4.027200px;}
.wsb3{word-spacing:4.075200px;}
.ws71{word-spacing:4.113600px;}
.wse1{word-spacing:4.123200px;}
.ws9c{word-spacing:4.171200px;}
.ws12b{word-spacing:4.219200px;}
.ws8f{word-spacing:4.267200px;}
.ws85{word-spacing:4.315200px;}
.ws65{word-spacing:4.363200px;}
.ws12f{word-spacing:4.411200px;}
.wsca{word-spacing:4.459200px;}
.ws188{word-spacing:4.545600px;}
.ws6c{word-spacing:4.603200px;}
.ws160{word-spacing:4.641600px;}
.ws6f{word-spacing:4.651200px;}
.wsa5{word-spacing:4.699200px;}
.ws167{word-spacing:4.736400px;}
.ws8c{word-spacing:4.747200px;}
.ws158{word-spacing:4.795200px;}
.wsf5{word-spacing:4.843200px;}
.ws39{word-spacing:4.874135px;}
.wsd7{word-spacing:4.891200px;}
.wscd{word-spacing:4.939200px;}
.wse0{word-spacing:5.005200px;}
.wsb4{word-spacing:5.035200px;}
.ws170{word-spacing:5.073600px;}
.wsba{word-spacing:5.083200px;}
.wsae{word-spacing:5.131200px;}
.ws7d{word-spacing:5.179200px;}
.ws3a{word-spacing:5.196925px;}
.ws1b8{word-spacing:5.227200px;}
.ws1b2{word-spacing:5.265600px;}
.ws57{word-spacing:5.275200px;}
.ws131{word-spacing:5.323200px;}
.ws55{word-spacing:5.371200px;}
.ws155{word-spacing:5.419200px;}
.ws7a{word-spacing:5.467200px;}
.wsa8{word-spacing:5.515200px;}
.ws51{word-spacing:5.553600px;}
.ws6a{word-spacing:5.563200px;}
.ws93{word-spacing:5.659200px;}
.ws183{word-spacing:5.707200px;}
.ws78{word-spacing:5.755200px;}
.ws58{word-spacing:5.803200px;}
.ws83{word-spacing:5.851200px;}
.ws112{word-spacing:5.899200px;}
.ws2d{word-spacing:5.950103px;}
.wsb6{word-spacing:5.995200px;}
.ws191{word-spacing:6.043200px;}
.wsb2{word-spacing:6.139200px;}
.wsd3{word-spacing:6.187200px;}
.ws199{word-spacing:6.225600px;}
.ws12e{word-spacing:6.235200px;}
.ws99{word-spacing:6.283200px;}
.wse7{word-spacing:6.331200px;}
.ws6d{word-spacing:6.379200px;}
.ws130{word-spacing:6.427200px;}
.ws4a{word-spacing:6.475200px;}
.ws129{word-spacing:6.523200px;}
.ws19d{word-spacing:6.552000px;}
.ws152{word-spacing:6.571200px;}
.ws69{word-spacing:6.599226px;}
.ws45{word-spacing:6.619200px;}
.ws1a6{word-spacing:6.657600px;}
.ws68{word-spacing:6.659002px;}
.ws6b{word-spacing:6.715200px;}
.ws12a{word-spacing:6.763200px;}
.wsf9{word-spacing:6.811200px;}
.ws154{word-spacing:6.849600px;}
.ws80{word-spacing:6.859200px;}
.ws118{word-spacing:6.907200px;}
.ws15a{word-spacing:6.945600px;}
.wsd4{word-spacing:6.955200px;}
.wsa2{word-spacing:7.003200px;}
.ws13b{word-spacing:7.051200px;}
.ws1c4{word-spacing:7.099200px;}
.ws115{word-spacing:7.147200px;}
.wsec{word-spacing:7.219200px;}
.wsee{word-spacing:7.243200px;}
.ws7{word-spacing:7.259175px;}
.ws16c{word-spacing:7.291200px;}
.ws1a0{word-spacing:7.310400px;}
.ws4{word-spacing:7.324929px;}
.ws180{word-spacing:7.339200px;}
.ws8e{word-spacing:7.387200px;}
.ws91{word-spacing:7.435200px;}
.ws149{word-spacing:7.483200px;}
.ws43{word-spacing:7.531200px;}
.ws15f{word-spacing:7.608000px;}
.ws163{word-spacing:7.617600px;}
.wsdf{word-spacing:7.627200px;}
.ws1d5{word-spacing:7.665600px;}
.ws4b{word-spacing:7.675200px;}
.ws192{word-spacing:7.706400px;}
.ws9e{word-spacing:7.723200px;}
.ws18c{word-spacing:7.761600px;}
.ws145{word-spacing:7.771200px;}
.ws1b1{word-spacing:7.819200px;}
.ws42{word-spacing:7.867200px;}
.ws134{word-spacing:7.915200px;}
.ws11e{word-spacing:7.963200px;}
.wse{word-spacing:7.965873px;}
.ws19f{word-spacing:8.011200px;}
.ws1b6{word-spacing:8.107200px;}
.wsd1{word-spacing:8.155200px;}
.ws125{word-spacing:8.203200px;}
.ws5e{word-spacing:8.251200px;}
.ws4f{word-spacing:8.347200px;}
.ws104{word-spacing:8.395200px;}
.ws1c9{word-spacing:8.440800px;}
.ws1c3{word-spacing:8.467200px;}
.ws162{word-spacing:8.481600px;}
.ws15d{word-spacing:8.491200px;}
.ws61{word-spacing:8.539200px;}
.ws123{word-spacing:8.635200px;}
.ws54{word-spacing:8.683200px;}
.ws19e{word-spacing:8.721600px;}
.wsaa{word-spacing:8.731200px;}
.ws15c{word-spacing:8.769600px;}
.ws87{word-spacing:8.779200px;}
.ws66{word-spacing:8.875200px;}
.wsb8{word-spacing:8.923200px;}
.ws11f{word-spacing:8.971200px;}
.ws13c{word-spacing:9.019200px;}
.ws110{word-spacing:9.115200px;}
.ws1ad{word-spacing:9.126000px;}
.wsc8{word-spacing:9.211200px;}
.ws147{word-spacing:9.307200px;}
.ws179{word-spacing:9.355200px;}
.ws1a1{word-spacing:9.441600px;}
.ws17f{word-spacing:9.489600px;}
.ws14f{word-spacing:9.499200px;}
.wsa0{word-spacing:9.595200px;}
.wsa9{word-spacing:9.691200px;}
.ws30{word-spacing:9.715991px;}
.wscc{word-spacing:9.739200px;}
.ws193{word-spacing:9.777600px;}
.ws124{word-spacing:9.787200px;}
.ws1c2{word-spacing:9.835200px;}
.wsc9{word-spacing:9.931200px;}
.ws23{word-spacing:9.970637px;}
.ws113{word-spacing:9.979200px;}
.wsac{word-spacing:10.027200px;}
.wsb5{word-spacing:10.075200px;}
.ws177{word-spacing:10.123200px;}
.ws36{word-spacing:10.146378px;}
.ws84{word-spacing:10.171200px;}
.ws1b{word-spacing:10.185830px;}
.ws86{word-spacing:10.219200px;}
.ws37{word-spacing:10.253975px;}
.wsfa{word-spacing:10.267200px;}
.ws5f{word-spacing:10.305600px;}
.ws77{word-spacing:10.315200px;}
.ws16e{word-spacing:10.449600px;}
.wsb0{word-spacing:10.459200px;}
.ws9a{word-spacing:10.507200px;}
.ws114{word-spacing:10.555200px;}
.ws153{word-spacing:10.593600px;}
.ws1a4{word-spacing:10.651200px;}
.ws53{word-spacing:10.689600px;}
.ws16a{word-spacing:10.737600px;}
.ws41{word-spacing:10.747200px;}
.wscf{word-spacing:10.795200px;}
.ws56{word-spacing:10.843200px;}
.ws22{word-spacing:10.867277px;}
.ws13d{word-spacing:10.891200px;}
.ws168{word-spacing:10.939200px;}
.ws2a{word-spacing:10.953354px;}
.ws92{word-spacing:10.987200px;}
.ws1a{word-spacing:11.010739px;}
.ws121{word-spacing:11.035200px;}
.wsf{word-spacing:11.046605px;}
.ws16f{word-spacing:11.179200px;}
.ws184{word-spacing:11.275200px;}
.ws17d{word-spacing:11.323200px;}
.ws73{word-spacing:11.371200px;}
.ws2b{word-spacing:11.383741px;}
.ws144{word-spacing:11.419200px;}
.ws150{word-spacing:11.457600px;}
.ws18a{word-spacing:11.467200px;}
.ws148{word-spacing:11.515200px;}
.ws181{word-spacing:11.553600px;}
.ws141{word-spacing:11.563200px;}
.ws1b4{word-spacing:11.649600px;}
.ws49{word-spacing:11.659200px;}
.ws20{word-spacing:11.728051px;}
.ws1b7{word-spacing:11.841600px;}
.ws186{word-spacing:11.851200px;}
.ws3{word-spacing:11.878687px;}
.ws1bc{word-spacing:11.889600px;}
.ws1bd{word-spacing:11.899200px;}
.ws28{word-spacing:11.907379px;}
.ws17b{word-spacing:11.947200px;}
.ws21{word-spacing:11.979110px;}
.ws190{word-spacing:11.985600px;}
.ws2{word-spacing:11.986284px;}
.ws198{word-spacing:12.013200px;}
.ws178{word-spacing:12.033600px;}
.wsad{word-spacing:12.091200px;}
.ws6e{word-spacing:12.127200px;}
.ws1a5{word-spacing:12.129600px;}
.ws47{word-spacing:12.139200px;}
.ws1d8{word-spacing:12.177600px;}
.ws48{word-spacing:12.187200px;}
.ws2e{word-spacing:12.190717px;}
.wse8{word-spacing:12.283200px;}
.ws176{word-spacing:12.379200px;}
.ws4e{word-spacing:12.571200px;}
.ws19{word-spacing:12.660557px;}
.ws1cb{word-spacing:12.667200px;}
.ws103{word-spacing:12.715200px;}
.ws185{word-spacing:12.811200px;}
.ws4c{word-spacing:12.859200px;}
.ws128{word-spacing:12.907200px;}
.ws2c{word-spacing:12.997693px;}
.wsd5{word-spacing:13.003200px;}
.ws1af{word-spacing:13.051200px;}
.ws17e{word-spacing:13.137600px;}
.ws75{word-spacing:13.147200px;}
.ws137{word-spacing:13.435200px;}
.ws1c1{word-spacing:13.483200px;}
.ws5a{word-spacing:13.531200px;}
.ws46{word-spacing:13.579200px;}
.ws25{word-spacing:13.664794px;}
.ws24{word-spacing:13.700659px;}
.ws14b{word-spacing:13.723200px;}
.ws35{word-spacing:13.750871px;}
.ws17c{word-spacing:13.761600px;}
.ws1ba{word-spacing:13.771200px;}
.ws197{word-spacing:13.819200px;}
.ws31{word-spacing:13.858468px;}
.wsd2{word-spacing:13.915200px;}
.ws175{word-spacing:13.963200px;}
.ws1d9{word-spacing:14.011200px;}
.ws18d{word-spacing:14.107200px;}
.ws10{word-spacing:14.166912px;}
.ws15{word-spacing:14.238643px;}
.ws9f{word-spacing:14.251200px;}
.wsa7{word-spacing:14.299200px;}
.ws14{word-spacing:14.310374px;}
.ws136{word-spacing:14.443200px;}
.ws164{word-spacing:14.539200px;}
.ws34{word-spacing:14.557847px;}
.ws27{word-spacing:14.561434px;}
.ws4d{word-spacing:14.577600px;}
.wsab{word-spacing:14.587200px;}
.ws14d{word-spacing:14.635200px;}
.ws126{word-spacing:14.731200px;}
.ws29{word-spacing:14.770508px;}
.wse6{word-spacing:14.875200px;}
.wsa1{word-spacing:14.923200px;}
.ws2f{word-spacing:14.988234px;}
.ws119{word-spacing:15.019200px;}
.ws11{word-spacing:15.027686px;}
.ws13{word-spacing:15.125484px;}
.ws138{word-spacing:15.259200px;}
.ws1bf{word-spacing:15.393600px;}
.wsc2{word-spacing:15.451200px;}
.wsc0{word-spacing:15.477600px;}
.ws26{word-spacing:15.529805px;}
.ws44{word-spacing:15.547200px;}
.ws174{word-spacing:15.633600px;}
.ws100{word-spacing:15.814800px;}
.ws1be{word-spacing:15.835200px;}
.ws1d3{word-spacing:15.883200px;}
.ws33{word-spacing:15.999644px;}
.ws1cd{word-spacing:16.123200px;}
.ws14e{word-spacing:16.171200px;}
.ws189{word-spacing:16.315200px;}
.wscb{word-spacing:16.459200px;}
.ws32{word-spacing:16.602186px;}
.ws40{word-spacing:16.747200px;}
.ws1c{word-spacing:16.892698px;}
.wsf0{word-spacing:16.912800px;}
.wsef{word-spacing:16.938000px;}
.wsc7{word-spacing:16.940400px;}
.ws0{word-spacing:16.944000px;}
.ws173{word-spacing:16.977600px;}
.ws1d7{word-spacing:17.083200px;}
.ws12{word-spacing:17.107891px;}
.ws156{word-spacing:17.131200px;}
.ws13a{word-spacing:17.227200px;}
.wsf6{word-spacing:17.254800px;}
.ws76{word-spacing:17.275200px;}
.ws6{word-spacing:17.526743px;}
.ws9{word-spacing:17.527695px;}
.wsc{word-spacing:17.528655px;}
.wsb{word-spacing:17.529615px;}
.wsa{word-spacing:17.531528px;}
.wsd{word-spacing:17.533695px;}
.ws8{word-spacing:17.537528px;}
.wsc4{word-spacing:17.557200px;}
.ws195{word-spacing:17.563200px;}
.ws17a{word-spacing:17.611200px;}
.ws1f{word-spacing:17.825203px;}
.ws1e{word-spacing:17.861069px;}
.ws18{word-spacing:17.968666px;}
.ws74{word-spacing:18.187200px;}
.wsed{word-spacing:18.302400px;}
.wseb{word-spacing:18.306000px;}
.wse2{word-spacing:18.308400px;}
.ws17{word-spacing:18.434918px;}
.ws1d6{word-spacing:18.513600px;}
.ws151{word-spacing:18.859200px;}
.ws1c0{word-spacing:19.195200px;}
.ws101{word-spacing:19.492800px;}
.wsea{word-spacing:20.155200px;}
.ws1c5{word-spacing:20.347200px;}
.ws1d{word-spacing:20.431941px;}
.ws1ae{word-spacing:20.587200px;}
.ws1ce{word-spacing:20.635200px;}
.ws15b{word-spacing:21.648000px;}
.wsc3{word-spacing:21.835200px;}
.ws7b{word-spacing:22.710003px;}
.ws139{word-spacing:22.747200px;}
.ws1aa{word-spacing:23.035200px;}
.ws157{word-spacing:23.179200px;}
.ws1d4{word-spacing:24.187200px;}
.ws1b0{word-spacing:24.732000px;}
.ws1ab{word-spacing:25.953600px;}
.ws16d{word-spacing:27.854400px;}
.ws127{word-spacing:28.808400px;}
.wsc1{word-spacing:29.600400px;}
.ws1cf{word-spacing:33.115200px;}
.ws1a7{word-spacing:34.267200px;}
.ws1a9{word-spacing:34.459200px;}
.ws1ac{word-spacing:36.235200px;}
.ws1a8{word-spacing:36.523200px;}
.ws1d0{word-spacing:70.123200px;}
.ws1d1{word-spacing:85.723200px;}
.ws1d2{word-spacing:294.404400px;}
._b{margin-left:-36.164370px;}
._c{margin-left:-33.604725px;}
._2f{margin-left:-26.973325px;}
._21{margin-left:-25.536000px;}
._22{margin-left:-24.096000px;}
._9{margin-left:-6.049313px;}
._3{margin-left:-4.176000px;}
._5{margin-left:-2.602598px;}
._1{margin-left:-1.440000px;}
._0{width:1.440000px;}
._4{width:3.335501px;}
._1e{width:5.035129px;}
._d{width:12.205413px;}
._1b{width:13.920000px;}
._e{width:15.355853px;}
._f{width:17.210817px;}
._11{width:19.003392px;}
._10{width:20.387251px;}
._12{width:21.882701px;}
._1a{width:23.429299px;}
._17{width:24.500267px;}
._8{width:25.919312px;}
._13{width:27.709056px;}
._18{width:28.848000px;}
._14{width:30.326170px;}
._16{width:31.472064px;}
._15{width:32.924621px;}
._1c{width:34.080000px;}
._19{width:36.048000px;}
._2d{width:37.492979px;}
._20{width:38.592000px;}
._28{width:40.197183px;}
._24{width:41.490000px;}
._1f{width:42.942000px;}
._7{width:45.049109px;}
._6{width:46.224187px;}
._2b{width:47.952000px;}
._3b{width:48.960000px;}
._27{width:50.621869px;}
._2c{width:52.227600px;}
._34{width:54.231322px;}
._29{width:55.695936px;}
._2a{width:56.793830px;}
._2e{width:61.299379px;}
._35{width:62.530944px;}
._23{width:63.888000px;}
._30{width:64.975782px;}
._31{width:67.440000px;}
._a{width:70.326572px;}
._26{width:72.288000px;}
._2{width:76.102800px;}
._25{width:77.704598px;}
._36{width:85.327782px;}
._3a{width:96.720000px;}
._33{width:97.938131px;}
._37{width:127.885056px;}
._32{width:132.384000px;}
._39{width:141.360000px;}
._38{width:311.040000px;}
._1d{width:1600.928418px;}
.fc3{color:rgb(226,240,253);}
.fc4{color:rgb(140,190,241);}
.fc2{color:rgb(0,72,163);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fsc{font-size:33.600000px;}
.fs8{font-size:35.566200px;}
.fs6{font-size:35.865600px;}
.fs5{font-size:38.854200px;}
.fs10{font-size:41.210139px;}
.fs9{font-size:41.842800px;}
.fs11{font-size:43.727634px;}
.fsf{font-size:44.956509px;}
.fs3{font-size:46.027200px;}
.fsd{font-size:47.820600px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:53.798400px;}
.fsa{font-size:59.775600px;}
.fse{font-size:62.937776px;}
.fs2{font-size:65.753400px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3a{bottom:7.501500px;}
.y108{bottom:13.982525px;}
.y142{bottom:18.874394px;}
.y39{bottom:25.435500px;}
.y107{bottom:27.021667px;}
.yab{bottom:27.862695px;}
.y13f{bottom:33.743791px;}
.y106{bottom:41.184874px;}
.y38{bottom:43.368000px;}
.yea{bottom:43.838583px;}
.ydc{bottom:44.063395px;}
.y141{bottom:58.817676px;}
.y105{bottom:59.844336px;}
.y37{bottom:61.300500px;}
.ya8{bottom:65.799000px;}
.y104{bottom:73.782730px;}
.y140{bottom:75.144856px;}
.y36{bottom:79.233000px;}
.y103{bottom:86.821872px;}
.y13a{bottom:91.180480px;}
.y35{bottom:97.165500px;}
.y102{bottom:100.985078px;}
.y15e{bottom:101.839500px;}
.y73{bottom:101.841000px;}
.y13b{bottom:107.507661px;}
.y34{bottom:115.098000px;}
.ycf{bottom:118.278000px;}
.ya7{bottom:118.279500px;}
.yf6{bottom:120.094166px;}
.y72{bottom:121.003500px;}
.y139{bottom:122.960172px;}
.y128{bottom:124.228500px;}
.yad{bottom:126.598369px;}
.y1b8{bottom:128.739000px;}
.y33{bottom:133.032000px;}
.yf5{bottom:133.133309px;}
.ya6{bottom:134.716500px;}
.y1a0{bottom:134.718000px;}
.y131{bottom:139.578909px;}
.y127{bottom:140.665500px;}
.yce{bottom:140.694000px;}
.y1b7{bottom:145.177500px;}
.yf4{bottom:147.296515px;}
.y32{bottom:150.964500px;}
.ya5{bottom:151.155000px;}
.y12f{bottom:155.906090px;}
.y126{bottom:157.104000px;}
.y71{bottom:158.160000px;}
.ycd{bottom:158.628000px;}
.yf3{bottom:160.335658px;}
.y1b6{bottom:161.616000px;}
.ya4{bottom:167.593500px;}
.y31{bottom:168.897000px;}
.y12d{bottom:171.358600px;}
.y125{bottom:173.542500px;}
.yf2{bottom:174.274051px;}
.y70{bottom:174.598500px;}
.y1b5{bottom:178.054500px;}
.ya3{bottom:184.032000px;}
.y30{bottom:186.829500px;}
.yf1{bottom:187.538006px;}
.y130{bottom:187.685781px;}
.y124{bottom:189.981000px;}
.y6f{bottom:191.037000px;}
.y1b4{bottom:194.493000px;}
.y14d{bottom:197.890269px;}
.ya2{bottom:200.470500px;}
.yf0{bottom:201.476400px;}
.y15d{bottom:203.458500px;}
.y12e{bottom:204.012962px;}
.y2f{bottom:204.762000px;}
.yff{bottom:205.703789px;}
.y123{bottom:206.419500px;}
.y6e{bottom:207.475500px;}
.y1b3{bottom:210.931500px;}
.y100{bottom:213.616291px;}
.y14c{bottom:213.925893px;}
.yef{bottom:214.740355px;}
.ycc{bottom:215.404500px;}
.yaa{bottom:216.431645px;}
.ya1{bottom:216.909000px;}
.yfd{bottom:218.967744px;}
.y12c{bottom:219.173916px;}
.y2e{bottom:222.696000px;}
.y122{bottom:222.858000px;}
.y6d{bottom:223.914000px;}
.yfe{bottom:226.880246px;}
.y1b2{bottom:227.370000px;}
.yee{bottom:227.779498px;}
.y14b{bottom:230.253074px;}
.ycb{bottom:231.843000px;}
.yfb{bottom:232.906138px;}
.ya0{bottom:233.347500px;}
.y121{bottom:239.296500px;}
.y6c{bottom:240.351000px;}
.y2d{bottom:240.628500px;}
.yfc{bottom:240.818640px;}
.yed{bottom:241.717891px;}
.y12b{bottom:243.373130px;}
.y1b1{bottom:243.808500px;}
.yf9{bottom:246.170093px;}
.y149{bottom:246.288698px;}
.yca{bottom:248.280000px;}
.y9f{bottom:249.786000px;}
.yfa{bottom:254.082595px;}
.yec{bottom:254.981846px;}
.y120{bottom:255.735000px;}
.y19f{bottom:255.763500px;}
.y6b{bottom:256.789500px;}
.y2c{bottom:258.561000px;}
.yf8{bottom:260.108487px;}
.y1b0{bottom:260.247000px;}
.y147{bottom:262.615879px;}
.yc9{bottom:264.718500px;}
.y164{bottom:266.223000px;}
.y9e{bottom:266.224500px;}
.yac{bottom:266.878561px;}
.yeb{bottom:268.020989px;}
.y150{bottom:268.738572px;}
.y11d{bottom:269.212500px;}
.y11f{bottom:272.173500px;}
.y6a{bottom:273.228000px;}
.y1af{bottom:276.685500px;}
.y145{bottom:278.359946px;}
.yc8{bottom:281.157000px;}
.y2b{bottom:282.471000px;}
.yd7{bottom:282.661500px;}
.y9d{bottom:282.663000px;}
.y14f{bottom:283.316412px;}
.ye5{bottom:286.861210px;}
.ye6{bottom:286.905264px;}
.y11e{bottom:288.612000px;}
.y69{bottom:289.666500px;}
.y1ae{bottom:293.122500px;}
.y14a{bottom:294.687127px;}
.yc7{bottom:297.595500px;}
.y9c{bottom:299.100000px;}
.y1c6{bottom:299.101500px;}
.y13e{bottom:300.809820px;}
.ye8{bottom:301.024416px;}
.ye4{bottom:301.068470px;}
.y19e{bottom:302.587500px;}
.y11c{bottom:305.050500px;}
.y68{bottom:306.105000px;}
.y1ad{bottom:309.561000px;}
.y148{bottom:311.305864px;}
.yc6{bottom:314.034000px;}
.ye3{bottom:314.107613px;}
.y9b{bottom:315.538500px;}
.y13d{bottom:316.553887px;}
.y19d{bottom:319.026000px;}
.y15c{bottom:319.282500px;}
.y11b{bottom:321.487500px;}
.y67{bottom:322.543500px;}
.y1ac{bottom:325.999500px;}
.ye7{bottom:327.327514px;}
.y146{bottom:327.341488px;}
.ye2{bottom:327.371568px;}
.yc5{bottom:330.472500px;}
.y9a{bottom:331.977000px;}
.y13c{bottom:332.006397px;}
.y2a{bottom:333.280500px;}
.y19c{bottom:335.464500px;}
.y15b{bottom:335.721000px;}
.y11a{bottom:337.926000px;}
.y66{bottom:338.982000px;}
.ye1{bottom:341.309962px;}
.y1ab{bottom:342.438000px;}
.y144{bottom:342.793999px;}
.yc4{bottom:346.911000px;}
.y99{bottom:348.415500px;}
.y29{bottom:351.213000px;}
.y19b{bottom:351.903000px;}
.y15a{bottom:352.159500px;}
.ye0{bottom:354.349104px;}
.y119{bottom:354.364500px;}
.y65{bottom:355.420500px;}
.y138{bottom:357.080282px;}
.y1aa{bottom:358.876500px;}
.y28{bottom:363.168000px;}
.yc3{bottom:363.349500px;}
.y98{bottom:364.854000px;}
.y143{bottom:366.993213px;}
.y163{bottom:367.842000px;}
.y19a{bottom:368.341500px;}
.yde{bottom:368.468256px;}
.ydf{bottom:368.512310px;}
.y159{bottom:368.598000px;}
.y14e{bottom:370.491895px;}
.y118{bottom:370.803000px;}
.y64{bottom:371.859000px;}
.y27{bottom:375.123000px;}
.y1a9{bottom:375.315000px;}
.yc2{bottom:379.788000px;}
.y136{bottom:381.279496px;}
.y97{bottom:381.292500px;}
.y199{bottom:384.780000px;}
.y158{bottom:385.036500px;}
.yda{bottom:387.171735px;}
.y117{bottom:387.241500px;}
.y63{bottom:388.297500px;}
.y26{bottom:390.841500px;}
.y1a8{bottom:391.753500px;}
.yc1{bottom:396.226500px;}
.y96{bottom:397.731000px;}
.y25{bottom:399.034500px;}
.y198{bottom:401.218500px;}
.yd9{bottom:401.334942px;}
.y157{bottom:401.475000px;}
.y116{bottom:403.680000px;}
.y134{bottom:404.604040px;}
.y62{bottom:404.734500px;}
.y1a7{bottom:408.192000px;}
.y162{bottom:410.440500px;}
.y24{bottom:410.989500px;}
.yc0{bottom:412.663500px;}
.y95{bottom:414.169500px;}
.y197{bottom:417.657000px;}
.y156{bottom:417.913500px;}
.y115{bottom:420.118500px;}
.y61{bottom:421.173000px;}
.y137{bottom:421.514335px;}
.y23{bottom:422.944500px;}
.y1a6{bottom:424.630500px;}
.y161{bottom:426.879000px;}
.ybf{bottom:429.102000px;}
.y94{bottom:430.608000px;}
.y196{bottom:434.094000px;}
.y155{bottom:434.352000px;}
.y22{bottom:434.899500px;}
.y114{bottom:436.557000px;}
.y135{bottom:437.549959px;}
.y60{bottom:437.611500px;}
.y1a5{bottom:441.069000px;}
.y160{bottom:443.317500px;}
.ybe{bottom:445.540500px;}
.y21{bottom:446.854500px;}
.yd6{bottom:447.045000px;}
.y93{bottom:447.046500px;}
.y195{bottom:450.532500px;}
.y154{bottom:450.790500px;}
.y113{bottom:452.995500px;}
.y133{bottom:453.002469px;}
.y1a4{bottom:457.506000px;}
.y5f{bottom:460.027500px;}
.ybd{bottom:461.979000px;}
.y20{bottom:462.573000px;}
.y92{bottom:463.483500px;}
.y1c5{bottom:463.485000px;}
.y15f{bottom:465.733500px;}
.y17e{bottom:466.473000px;}
.y194{bottom:466.971000px;}
.y153{bottom:467.229000px;}
.y112{bottom:469.434000px;}
.y1f{bottom:470.764500px;}
.y1a3{bottom:473.944500px;}
.y132{bottom:477.201635px;}
.y5e{bottom:477.960000px;}
.ybc{bottom:478.417500px;}
.y91{bottom:479.922000px;}
.y1c4{bottom:479.923500px;}
.y1e{bottom:482.719500px;}
.y193{bottom:483.409500px;}
.y152{bottom:483.666000px;}
.y111{bottom:485.871000px;}
.y1a2{bottom:490.383000px;}
.ybb{bottom:494.856000px;}
.y90{bottom:496.360500px;}
.y1d{bottom:498.438000px;}
.y192{bottom:499.848000px;}
.y17d{bottom:501.840000px;}
.y110{bottom:502.309500px;}
.y1c{bottom:506.631000px;}
.y1a1{bottom:506.821500px;}
.y12a{bottom:509.272883px;}
.yba{bottom:511.294500px;}
.y8f{bottom:512.799000px;}
.y191{bottom:516.286500px;}
.y17c{bottom:518.278500px;}
.y1b{bottom:518.586000px;}
.y10f{bottom:518.748000px;}
.y5d{bottom:523.260000px;}
.yb9{bottom:527.733000px;}
.y8e{bottom:529.237500px;}
.y1a{bottom:530.541000px;}
.yd5{bottom:532.227000px;}
.y190{bottom:532.725000px;}
.y17b{bottom:534.717000px;}
.y10e{bottom:535.186500px;}
.y151{bottom:536.419500px;}
.y5c{bottom:539.698500px;}
.y19{bottom:542.496000px;}
.yb8{bottom:544.171500px;}
.y8d{bottom:545.676000px;}
.y18f{bottom:549.163500px;}
.y17a{bottom:551.155500px;}
.y10d{bottom:551.625000px;}
.y18{bottom:554.451000px;}
.y5b{bottom:556.137000px;}
.yb7{bottom:560.610000px;}
.y8c{bottom:562.114500px;}
.y18e{bottom:565.602000px;}
.y129{bottom:567.053891px;}
.y179{bottom:567.594000px;}
.y10c{bottom:568.063500px;}
.yd4{bottom:568.081500px;}
.y17{bottom:570.169500px;}
.y5a{bottom:572.575500px;}
.yb6{bottom:577.047000px;}
.y8b{bottom:578.553000px;}
.y18d{bottom:582.040500px;}
.y178{bottom:584.032500px;}
.y16{bottom:584.074500px;}
.y10b{bottom:584.502000px;}
.yd3{bottom:584.520000px;}
.y59{bottom:589.014000px;}
.yb5{bottom:593.485500px;}
.y8a{bottom:594.991500px;}
.y18c{bottom:598.477500px;}
.y177{bottom:600.471000px;}
.y10a{bottom:600.940500px;}
.yd2{bottom:600.958500px;}
.y58{bottom:605.452500px;}
.y15{bottom:607.095000px;}
.yb4{bottom:609.924000px;}
.y89{bottom:611.430000px;}
.y18b{bottom:614.916000px;}
.y176{bottom:616.909500px;}
.yd1{bottom:617.397000px;}
.y57{bottom:621.889500px;}
.y1c3{bottom:627.868500px;}
.y14{bottom:629.511000px;}
.y18a{bottom:631.354500px;}
.yb3{bottom:632.340000px;}
.y175{bottom:633.346500px;}
.yd0{bottom:633.835500px;}
.y88{bottom:633.846000px;}
.y56{bottom:638.328000px;}
.y1c7{bottom:644.305500px;}
.y1c2{bottom:644.307000px;}
.y189{bottom:647.793000px;}
.y174{bottom:649.785000px;}
.yb2{bottom:650.272500px;}
.y87{bottom:651.778500px;}
.y13{bottom:651.927000px;}
.y109{bottom:653.692500px;}
.y55{bottom:654.766500px;}
.y1c1{bottom:660.744000px;}
.y188{bottom:664.231500px;}
.y173{bottom:666.223500px;}
.y54{bottom:671.205000px;}
.y12{bottom:674.343000px;}
.y1c0{bottom:677.182500px;}
.y187{bottom:680.670000px;}
.y172{bottom:682.662000px;}
.yd8{bottom:684.327543px;}
.ydd{bottom:684.371597px;}
.y53{bottom:687.643500px;}
.yf7{bottom:692.240045px;}
.y1bf{bottom:693.621000px;}
.y11{bottom:696.759000px;}
.y186{bottom:697.108500px;}
.y171{bottom:702.090000px;}
.yb1{bottom:703.026000px;}
.y52{bottom:704.082000px;}
.y1be{bottom:710.059500px;}
.y185{bottom:713.547000px;}
.y10{bottom:719.175000px;}
.yb0{bottom:719.464500px;}
.y51{bottom:720.520500px;}
.y1bd{bottom:726.498000px;}
.y184{bottom:729.985500px;}
.yaf{bottom:735.901500px;}
.y50{bottom:736.959000px;}
.y170{bottom:737.457000px;}
.y101{bottom:741.474039px;}
.yf{bottom:741.591000px;}
.y1bc{bottom:742.936500px;}
.yae{bottom:752.340000px;}
.y183{bottom:752.401500px;}
.y4f{bottom:753.397500px;}
.y16f{bottom:753.895500px;}
.y1bb{bottom:759.375000px;}
.ye{bottom:764.007000px;}
.y4e{bottom:769.836000px;}
.y16e{bottom:770.334000px;}
.y86{bottom:775.813500px;}
.ya9{bottom:782.975663px;}
.y4d{bottom:786.273000px;}
.yd{bottom:786.423000px;}
.y16d{bottom:786.772500px;}
.y85{bottom:792.252000px;}
.y182{bottom:799.225500px;}
.y4c{bottom:802.711500px;}
.y16c{bottom:803.209500px;}
.y84{bottom:808.689000px;}
.y1ba{bottom:808.690500px;}
.yc{bottom:808.839000px;}
.y4b{bottom:819.150000px;}
.y16b{bottom:819.648000px;}
.y181{bottom:821.641500px;}
.y83{bottom:825.127500px;}
.yb{bottom:831.255000px;}
.y4a{bottom:835.588500px;}
.y16a{bottom:836.086500px;}
.y82{bottom:841.566000px;}
.y49{bottom:852.027000px;}
.y169{bottom:852.525000px;}
.ya{bottom:853.671000px;}
.y81{bottom:858.004500px;}
.y48{bottom:868.465500px;}
.y168{bottom:868.963500px;}
.y80{bottom:874.443000px;}
.y9{bottom:876.087000px;}
.y47{bottom:884.904000px;}
.y167{bottom:885.402000px;}
.y7f{bottom:890.881500px;}
.y46{bottom:901.342500px;}
.y166{bottom:901.840500px;}
.y7e{bottom:907.320000px;}
.y8{bottom:907.468500px;}
.ye9{bottom:908.509949px;}
.y45{bottom:917.781000px;}
.y165{bottom:921.267000px;}
.y7d{bottom:923.758500px;}
.y44{bottom:934.219500px;}
.y7c{bottom:940.197000px;}
.y7{bottom:941.841000px;}
.y43{bottom:950.656500px;}
.y180{bottom:950.658000px;}
.y7b{bottom:956.635500px;}
.y42{bottom:967.095000px;}
.y17f{bottom:967.096500px;}
.y7a{bottom:973.072500px;}
.y1b9{bottom:973.074000px;}
.y6{bottom:976.212000px;}
.y41{bottom:983.533500px;}
.y79{bottom:989.511000px;}
.y40{bottom:999.972000px;}
.y78{bottom:1005.949500px;}
.ydb{bottom:1008.776458px;}
.y3f{bottom:1016.410500px;}
.y77{bottom:1022.388000px;}
.y3e{bottom:1032.849000px;}
.y76{bottom:1038.826500px;}
.y5{bottom:1042.711500px;}
.y3d{bottom:1049.287500px;}
.y75{bottom:1055.265000px;}
.y4{bottom:1060.645500px;}
.y3c{bottom:1065.726000px;}
.y74{bottom:1071.703500px;}
.y3{bottom:1078.578000px;}
.y3b{bottom:1088.142000px;}
.y2{bottom:1096.510500px;}
.y1{bottom:1128.490500px;}
.ha{height:16.538283px;}
.h7{height:22.415850px;}
.he{height:23.850624px;}
.h6{height:29.140650px;}
.h19{height:29.963689px;}
.h1b{height:31.319706px;}
.h11{height:31.382100px;}
.h21{height:31.664102px;}
.h22{height:31.813562px;}
.h23{height:32.219238px;}
.h16{height:33.124693px;}
.h25{height:33.312000px;}
.h2{height:34.368000px;}
.hf{height:35.865450px;}
.h3{height:36.000000px;}
.h9{height:37.463850px;}
.h8{height:37.469850px;}
.hd{height:39.315600px;}
.h10{height:39.750660px;}
.hc{height:40.348800px;}
.hb{height:42.799330px;}
.h24{height:45.600000px;}
.h13{height:46.373586px;}
.h5{height:56.817475px;}
.h4{height:77.039309px;}
.h14{height:79.825016px;}
.h1e{height:91.992489px;}
.h17{height:94.309344px;}
.h1a{height:94.871002px;}
.h1f{height:173.149901px;}
.h1d{height:273.641222px;}
.h12{height:320.111193px;}
.h1c{height:410.845757px;}
.h18{height:418.714205px;}
.h15{height:418.758259px;}
.h20{height:536.035911px;}
.h0{height:1185.576000px;}
.h1{height:1185.750000px;}
.w4{width:73.513786px;}
.w5{width:333.397382px;}
.w6{width:333.622195px;}
.w7{width:605.512706px;}
.w2{width:756.841625px;}
.w3{width:756.872027px;}
.w1{width:891.750000px;}
.w0{width:891.978000px;}
.x0{left:0.000000px;}
.x12{left:5.838014px;}
.x9{left:23.654612px;}
.x2{left:40.980000px;}
.x6{left:43.813500px;}
.x11{left:49.989401px;}
.x3{left:58.914000px;}
.x25{left:61.755000px;}
.x1{left:71.731500px;}
.x1b{left:88.658426px;}
.xb{left:89.664000px;}
.x23{left:92.506500px;}
.x1d{left:100.034851px;}
.x14{left:106.314179px;}
.x15{left:117.181536px;}
.x13{left:123.278346px;}
.xe{left:127.233853px;}
.x16{left:135.293954px;}
.x1a{left:136.582711px;}
.x7{left:145.255500px;}
.x19{left:147.414759px;}
.xf{left:148.868151px;}
.x8{left:161.307000px;}
.x1c{left:175.298660px;}
.x1e{left:393.530504px;}
.x4{left:432.855000px;}
.x18{left:439.581545px;}
.x1f{left:441.454788px;}
.x20{left:442.476087px;}
.x5{left:450.787500px;}
.x21{left:453.371808px;}
.x17{left:456.450915px;}
.xc{left:463.606500px;}
.xd{left:481.539000px;}
.x24{left:484.381500px;}
.x22{left:516.633560px;}
.x10{left:518.962008px;}
.xa{left:585.005696px;}
.x26{left:788.623500px;}
.x27{left:794.289000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v5{vertical-align:-15.941333pt;}
.v7{vertical-align:-15.002667pt;}
.v4{vertical-align:-13.381333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.381333pt;}
.v6{vertical-align:15.056000pt;}
.v1{vertical-align:21.210667pt;}
.v8{vertical-align:29.734605pt;}
.ls1e{letter-spacing:-4.527620pt;}
.ls20{letter-spacing:-3.500613pt;}
.ls1a{letter-spacing:-2.014052pt;}
.lsf{letter-spacing:-0.900710pt;}
.lse{letter-spacing:-0.827981pt;}
.ls1b{letter-spacing:-0.527490pt;}
.ls1d{letter-spacing:-0.507509pt;}
.ls19{letter-spacing:-0.091911pt;}
.ls18{letter-spacing:-0.039961pt;}
.ls16{letter-spacing:-0.019981pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.031969pt;}
.ls1c{letter-spacing:0.051950pt;}
.ls15{letter-spacing:0.123880pt;}
.ls17{letter-spacing:0.175830pt;}
.ls11{letter-spacing:0.201472pt;}
.ls2a{letter-spacing:0.509184pt;}
.ls25{letter-spacing:0.510480pt;}
.ls26{letter-spacing:0.510912pt;}
.ls24{letter-spacing:0.652999pt;}
.ls29{letter-spacing:0.979499pt;}
.ls21{letter-spacing:1.123314pt;}
.ls27{letter-spacing:1.131088pt;}
.ls23{letter-spacing:1.134975pt;}
.ls22{letter-spacing:1.302112pt;}
.ls2c{letter-spacing:1.305999pt;}
.ls2b{letter-spacing:1.488683pt;}
.ls6{letter-spacing:2.652988pt;}
.ls4{letter-spacing:2.653123pt;}
.ls7{letter-spacing:2.653973pt;}
.ls5{letter-spacing:2.658322pt;}
.ls9{letter-spacing:2.659413pt;}
.lsc{letter-spacing:13.345067pt;}
.ls28{letter-spacing:13.809067pt;}
.lsa{letter-spacing:14.040533pt;}
.ls0{letter-spacing:15.110400pt;}
.lsb{letter-spacing:25.243139pt;}
.ls1{letter-spacing:26.036425pt;}
.ls3{letter-spacing:26.036480pt;}
.ls2{letter-spacing:26.041813pt;}
.lsd{letter-spacing:31.985067pt;}
.ls14{letter-spacing:38.198400pt;}
.ls13{letter-spacing:50.404239pt;}
.ls12{letter-spacing:50.404572pt;}
.ls10{letter-spacing:2238.368000pt;}
.wsa3{word-spacing:-14.724642pt;}
.wsa4{word-spacing:-14.651914pt;}
.ws3c{word-spacing:-13.581016pt;}
.wsb9{word-spacing:-12.590933pt;}
.ws38{word-spacing:-12.222996pt;}
.wse9{word-spacing:-11.735224pt;}
.ws159{word-spacing:-11.703467pt;}
.wsdc{word-spacing:-11.285083pt;}
.wsd8{word-spacing:-11.233133pt;}
.wsdd{word-spacing:-11.161203pt;}
.wsda{word-spacing:-11.109253pt;}
.wsdb{word-spacing:-11.069291pt;}
.ws5{word-spacing:-10.457380pt;}
.wsde{word-spacing:-6.581633pt;}
.ws111{word-spacing:-2.308267pt;}
.ws19a{word-spacing:-2.265600pt;}
.wsfe{word-spacing:-2.222933pt;}
.ws89{word-spacing:-2.137600pt;}
.ws1c7{word-spacing:-2.094933pt;}
.ws11d{word-spacing:-2.052267pt;}
.ws14a{word-spacing:-1.881600pt;}
.ws143{word-spacing:-1.838933pt;}
.ws1c6{word-spacing:-1.753600pt;}
.ws133{word-spacing:-1.710933pt;}
.wsff{word-spacing:-1.668267pt;}
.ws10e{word-spacing:-1.527552pt;}
.ws97{word-spacing:-1.454933pt;}
.ws8d{word-spacing:-1.412267pt;}
.ws182{word-spacing:-1.369600pt;}
.ws10f{word-spacing:-1.344868pt;}
.ws108{word-spacing:-1.340981pt;}
.wsce{word-spacing:-1.284267pt;}
.wsbd{word-spacing:-1.241600pt;}
.ws18f{word-spacing:-1.198933pt;}
.ws109{word-spacing:-1.173844pt;}
.ws10c{word-spacing:-1.169957pt;}
.ws107{word-spacing:-1.162183pt;}
.wsf3{word-spacing:-1.156267pt;}
.wse3{word-spacing:-1.113600pt;}
.ws169{word-spacing:-1.070933pt;}
.ws9b{word-spacing:-1.028267pt;}
.ws10a{word-spacing:-1.018368pt;}
.ws140{word-spacing:-0.942933pt;}
.ws172{word-spacing:-0.913067pt;}
.ws165{word-spacing:-0.900267pt;}
.wse4{word-spacing:-0.857600pt;}
.ws16b{word-spacing:-0.814933pt;}
.ws116{word-spacing:-0.772267pt;}
.ws10b{word-spacing:-0.691868pt;}
.ws19b{word-spacing:-0.644267pt;}
.ws10d{word-spacing:-0.548053pt;}
.ws196{word-spacing:-0.473600pt;}
.ws1b9{word-spacing:-0.430933pt;}
.ws161{word-spacing:-0.388267pt;}
.ws18b{word-spacing:-0.345600pt;}
.wsd6{word-spacing:-0.302933pt;}
.wsd9{word-spacing:-0.238103pt;}
.ws171{word-spacing:-0.217600pt;}
.ws70{word-spacing:-0.174933pt;}
.wsbf{word-spacing:-0.142933pt;}
.wsbe{word-spacing:-0.132267pt;}
.ws79{word-spacing:-0.046933pt;}
.ws1{word-spacing:-0.042667pt;}
.ws16{word-spacing:-0.026567pt;}
.ws106{word-spacing:-0.004267pt;}
.ws3b{word-spacing:0.000000pt;}
.ws15e{word-spacing:0.038400pt;}
.ws82{word-spacing:0.081067pt;}
.wsbb{word-spacing:0.123733pt;}
.ws11c{word-spacing:0.166400pt;}
.wsaf{word-spacing:0.209067pt;}
.ws1b3{word-spacing:0.379733pt;}
.ws19c{word-spacing:0.422400pt;}
.ws81{word-spacing:0.465067pt;}
.ws12d{word-spacing:0.507733pt;}
.wsf8{word-spacing:0.550400pt;}
.ws1c8{word-spacing:0.584533pt;}
.ws90{word-spacing:0.635733pt;}
.wsf2{word-spacing:0.678400pt;}
.ws1bb{word-spacing:0.721067pt;}
.wsb7{word-spacing:0.763733pt;}
.ws13e{word-spacing:0.806400pt;}
.ws98{word-spacing:0.849067pt;}
.ws8a{word-spacing:0.891733pt;}
.wsfb{word-spacing:0.934400pt;}
.ws194{word-spacing:1.011200pt;}
.wsfd{word-spacing:1.019733pt;}
.ws105{word-spacing:1.062400pt;}
.ws94{word-spacing:1.105067pt;}
.ws102{word-spacing:1.147733pt;}
.ws67{word-spacing:1.190400pt;}
.ws95{word-spacing:1.233067pt;}
.ws5b{word-spacing:1.257600pt;}
.ws5d{word-spacing:1.275733pt;}
.ws60{word-spacing:1.361067pt;}
.ws1ca{word-spacing:1.403733pt;}
.ws72{word-spacing:1.446400pt;}
.ws166{word-spacing:1.480533pt;}
.wsb1{word-spacing:1.489067pt;}
.ws117{word-spacing:1.531733pt;}
.ws1a2{word-spacing:1.574400pt;}
.ws1a3{word-spacing:1.617067pt;}
.ws96{word-spacing:1.745067pt;}
.ws187{word-spacing:1.830400pt;}
.ws11a{word-spacing:1.915733pt;}
.ws3f{word-spacing:2.043733pt;}
.ws3d{word-spacing:2.070400pt;}
.wsd0{word-spacing:2.086400pt;}
.wsa6{word-spacing:2.129067pt;}
.ws132{word-spacing:2.257067pt;}
.ws8b{word-spacing:2.299733pt;}
.ws122{word-spacing:2.342400pt;}
.ws18e{word-spacing:2.385067pt;}
.wsf1{word-spacing:2.470400pt;}
.ws59{word-spacing:2.513067pt;}
.wsc6{word-spacing:2.517333pt;}
.ws1cc{word-spacing:2.524800pt;}
.ws7c{word-spacing:2.546181pt;}
.ws14c{word-spacing:2.555733pt;}
.ws5c{word-spacing:2.557867pt;}
.ws13f{word-spacing:2.598400pt;}
.ws88{word-spacing:2.641067pt;}
.ws50{word-spacing:2.759467pt;}
.ws52{word-spacing:2.769067pt;}
.ws135{word-spacing:2.811733pt;}
.ws63{word-spacing:2.854400pt;}
.ws11b{word-spacing:2.897067pt;}
.wsf7{word-spacing:2.939733pt;}
.wse5{word-spacing:2.982400pt;}
.ws7f{word-spacing:3.025067pt;}
.wsc5{word-spacing:3.067733pt;}
.ws3e{word-spacing:3.107200pt;}
.ws120{word-spacing:3.110400pt;}
.ws9d{word-spacing:3.153067pt;}
.ws64{word-spacing:3.195733pt;}
.ws12c{word-spacing:3.238400pt;}
.ws7e{word-spacing:3.281067pt;}
.ws62{word-spacing:3.323733pt;}
.wsbc{word-spacing:3.366400pt;}
.wsf4{word-spacing:3.409067pt;}
.ws142{word-spacing:3.451733pt;}
.ws1b5{word-spacing:3.494400pt;}
.ws146{word-spacing:3.537067pt;}
.wsfc{word-spacing:3.579733pt;}
.wsb3{word-spacing:3.622400pt;}
.ws71{word-spacing:3.656533pt;}
.wse1{word-spacing:3.665067pt;}
.ws9c{word-spacing:3.707733pt;}
.ws12b{word-spacing:3.750400pt;}
.ws8f{word-spacing:3.793067pt;}
.ws85{word-spacing:3.835733pt;}
.ws65{word-spacing:3.878400pt;}
.ws12f{word-spacing:3.921067pt;}
.wsca{word-spacing:3.963733pt;}
.ws188{word-spacing:4.040533pt;}
.ws6c{word-spacing:4.091733pt;}
.ws160{word-spacing:4.125867pt;}
.ws6f{word-spacing:4.134400pt;}
.wsa5{word-spacing:4.177067pt;}
.ws167{word-spacing:4.210133pt;}
.ws8c{word-spacing:4.219733pt;}
.ws158{word-spacing:4.262400pt;}
.wsf5{word-spacing:4.305067pt;}
.ws39{word-spacing:4.332564pt;}
.wsd7{word-spacing:4.347733pt;}
.wscd{word-spacing:4.390400pt;}
.wse0{word-spacing:4.449067pt;}
.wsb4{word-spacing:4.475733pt;}
.ws170{word-spacing:4.509867pt;}
.wsba{word-spacing:4.518400pt;}
.wsae{word-spacing:4.561067pt;}
.ws7d{word-spacing:4.603733pt;}
.ws3a{word-spacing:4.619489pt;}
.ws1b8{word-spacing:4.646400pt;}
.ws1b2{word-spacing:4.680533pt;}
.ws57{word-spacing:4.689067pt;}
.ws131{word-spacing:4.731733pt;}
.ws55{word-spacing:4.774400pt;}
.ws155{word-spacing:4.817067pt;}
.ws7a{word-spacing:4.859733pt;}
.wsa8{word-spacing:4.902400pt;}
.ws51{word-spacing:4.936533pt;}
.ws6a{word-spacing:4.945067pt;}
.ws93{word-spacing:5.030400pt;}
.ws183{word-spacing:5.073067pt;}
.ws78{word-spacing:5.115733pt;}
.ws58{word-spacing:5.158400pt;}
.ws83{word-spacing:5.201067pt;}
.ws112{word-spacing:5.243733pt;}
.ws2d{word-spacing:5.288980pt;}
.wsb6{word-spacing:5.329067pt;}
.ws191{word-spacing:5.371733pt;}
.wsb2{word-spacing:5.457067pt;}
.wsd3{word-spacing:5.499733pt;}
.ws199{word-spacing:5.533867pt;}
.ws12e{word-spacing:5.542400pt;}
.ws99{word-spacing:5.585067pt;}
.wse7{word-spacing:5.627733pt;}
.ws6d{word-spacing:5.670400pt;}
.ws130{word-spacing:5.713067pt;}
.ws4a{word-spacing:5.755733pt;}
.ws129{word-spacing:5.798400pt;}
.ws19d{word-spacing:5.824000pt;}
.ws152{word-spacing:5.841067pt;}
.ws69{word-spacing:5.865979pt;}
.ws45{word-spacing:5.883733pt;}
.ws1a6{word-spacing:5.917867pt;}
.ws68{word-spacing:5.919113pt;}
.ws6b{word-spacing:5.969067pt;}
.ws12a{word-spacing:6.011733pt;}
.wsf9{word-spacing:6.054400pt;}
.ws154{word-spacing:6.088533pt;}
.ws80{word-spacing:6.097067pt;}
.ws118{word-spacing:6.139733pt;}
.ws15a{word-spacing:6.173867pt;}
.wsd4{word-spacing:6.182400pt;}
.wsa2{word-spacing:6.225067pt;}
.ws13b{word-spacing:6.267733pt;}
.ws1c4{word-spacing:6.310400pt;}
.ws115{word-spacing:6.353067pt;}
.wsec{word-spacing:6.417067pt;}
.wsee{word-spacing:6.438400pt;}
.ws7{word-spacing:6.452600pt;}
.ws16c{word-spacing:6.481067pt;}
.ws1a0{word-spacing:6.498133pt;}
.ws4{word-spacing:6.511048pt;}
.ws180{word-spacing:6.523733pt;}
.ws8e{word-spacing:6.566400pt;}
.ws91{word-spacing:6.609067pt;}
.ws149{word-spacing:6.651733pt;}
.ws43{word-spacing:6.694400pt;}
.ws15f{word-spacing:6.762667pt;}
.ws163{word-spacing:6.771200pt;}
.wsdf{word-spacing:6.779733pt;}
.ws1d5{word-spacing:6.813867pt;}
.ws4b{word-spacing:6.822400pt;}
.ws192{word-spacing:6.850133pt;}
.ws9e{word-spacing:6.865067pt;}
.ws18c{word-spacing:6.899200pt;}
.ws145{word-spacing:6.907733pt;}
.ws1b1{word-spacing:6.950400pt;}
.ws42{word-spacing:6.993067pt;}
.ws134{word-spacing:7.035733pt;}
.ws11e{word-spacing:7.078400pt;}
.wse{word-spacing:7.080776pt;}
.ws19f{word-spacing:7.121067pt;}
.ws1b6{word-spacing:7.206400pt;}
.wsd1{word-spacing:7.249067pt;}
.ws125{word-spacing:7.291733pt;}
.ws5e{word-spacing:7.334400pt;}
.ws4f{word-spacing:7.419733pt;}
.ws104{word-spacing:7.462400pt;}
.ws1c9{word-spacing:7.502933pt;}
.ws1c3{word-spacing:7.526400pt;}
.ws162{word-spacing:7.539200pt;}
.ws15d{word-spacing:7.547733pt;}
.ws61{word-spacing:7.590400pt;}
.ws123{word-spacing:7.675733pt;}
.ws54{word-spacing:7.718400pt;}
.ws19e{word-spacing:7.752533pt;}
.wsaa{word-spacing:7.761067pt;}
.ws15c{word-spacing:7.795200pt;}
.ws87{word-spacing:7.803733pt;}
.ws66{word-spacing:7.889067pt;}
.wsb8{word-spacing:7.931733pt;}
.ws11f{word-spacing:7.974400pt;}
.ws13c{word-spacing:8.017067pt;}
.ws110{word-spacing:8.102400pt;}
.ws1ad{word-spacing:8.112000pt;}
.wsc8{word-spacing:8.187733pt;}
.ws147{word-spacing:8.273067pt;}
.ws179{word-spacing:8.315733pt;}
.ws1a1{word-spacing:8.392533pt;}
.ws17f{word-spacing:8.435200pt;}
.ws14f{word-spacing:8.443733pt;}
.wsa0{word-spacing:8.529067pt;}
.wsa9{word-spacing:8.614400pt;}
.ws30{word-spacing:8.636436pt;}
.wscc{word-spacing:8.657067pt;}
.ws193{word-spacing:8.691200pt;}
.ws124{word-spacing:8.699733pt;}
.ws1c2{word-spacing:8.742400pt;}
.wsc9{word-spacing:8.827733pt;}
.ws23{word-spacing:8.862788pt;}
.ws113{word-spacing:8.870400pt;}
.wsac{word-spacing:8.913067pt;}
.wsb5{word-spacing:8.955733pt;}
.ws177{word-spacing:8.998400pt;}
.ws36{word-spacing:9.019003pt;}
.ws84{word-spacing:9.041067pt;}
.ws1b{word-spacing:9.054071pt;}
.ws86{word-spacing:9.083733pt;}
.ws37{word-spacing:9.114644pt;}
.wsfa{word-spacing:9.126400pt;}
.ws5f{word-spacing:9.160533pt;}
.ws77{word-spacing:9.169067pt;}
.ws16e{word-spacing:9.288533pt;}
.wsb0{word-spacing:9.297067pt;}
.ws9a{word-spacing:9.339733pt;}
.ws114{word-spacing:9.382400pt;}
.ws153{word-spacing:9.416533pt;}
.ws1a4{word-spacing:9.467733pt;}
.ws53{word-spacing:9.501867pt;}
.ws16a{word-spacing:9.544533pt;}
.ws41{word-spacing:9.553067pt;}
.wscf{word-spacing:9.595733pt;}
.ws56{word-spacing:9.638400pt;}
.ws22{word-spacing:9.659802pt;}
.ws13d{word-spacing:9.681067pt;}
.ws168{word-spacing:9.723733pt;}
.ws2a{word-spacing:9.736315pt;}
.ws92{word-spacing:9.766400pt;}
.ws1a{word-spacing:9.787324pt;}
.ws121{word-spacing:9.809067pt;}
.wsf{word-spacing:9.819204pt;}
.ws16f{word-spacing:9.937067pt;}
.ws184{word-spacing:10.022400pt;}
.ws17d{word-spacing:10.065067pt;}
.ws73{word-spacing:10.107733pt;}
.ws2b{word-spacing:10.118881pt;}
.ws144{word-spacing:10.150400pt;}
.ws150{word-spacing:10.184533pt;}
.ws18a{word-spacing:10.193067pt;}
.ws148{word-spacing:10.235733pt;}
.ws181{word-spacing:10.269867pt;}
.ws141{word-spacing:10.278400pt;}
.ws1b4{word-spacing:10.355200pt;}
.ws49{word-spacing:10.363733pt;}
.ws20{word-spacing:10.424934pt;}
.ws1b7{word-spacing:10.525867pt;}
.ws186{word-spacing:10.534400pt;}
.ws3{word-spacing:10.558833pt;}
.ws1bc{word-spacing:10.568533pt;}
.ws1bd{word-spacing:10.577067pt;}
.ws28{word-spacing:10.584337pt;}
.ws17b{word-spacing:10.619733pt;}
.ws21{word-spacing:10.648098pt;}
.ws190{word-spacing:10.653867pt;}
.ws2{word-spacing:10.654474pt;}
.ws198{word-spacing:10.678400pt;}
.ws178{word-spacing:10.696533pt;}
.wsad{word-spacing:10.747733pt;}
.ws6e{word-spacing:10.779733pt;}
.ws1a5{word-spacing:10.781867pt;}
.ws47{word-spacing:10.790400pt;}
.ws1d8{word-spacing:10.824533pt;}
.ws48{word-spacing:10.833067pt;}
.ws2e{word-spacing:10.836193pt;}
.wse8{word-spacing:10.918400pt;}
.ws176{word-spacing:11.003733pt;}
.ws4e{word-spacing:11.174400pt;}
.ws19{word-spacing:11.253828pt;}
.ws1cb{word-spacing:11.259733pt;}
.ws103{word-spacing:11.302400pt;}
.ws185{word-spacing:11.387733pt;}
.ws4c{word-spacing:11.430400pt;}
.ws128{word-spacing:11.473067pt;}
.ws2c{word-spacing:11.553505pt;}
.wsd5{word-spacing:11.558400pt;}
.ws1af{word-spacing:11.601067pt;}
.ws17e{word-spacing:11.677867pt;}
.ws75{word-spacing:11.686400pt;}
.ws137{word-spacing:11.942400pt;}
.ws1c1{word-spacing:11.985067pt;}
.ws5a{word-spacing:12.027733pt;}
.ws46{word-spacing:12.070400pt;}
.ws25{word-spacing:12.146483pt;}
.ws24{word-spacing:12.178364pt;}
.ws14b{word-spacing:12.198400pt;}
.ws35{word-spacing:12.222996pt;}
.ws17c{word-spacing:12.232533pt;}
.ws1ba{word-spacing:12.241067pt;}
.ws197{word-spacing:12.283733pt;}
.ws31{word-spacing:12.318638pt;}
.wsd2{word-spacing:12.369067pt;}
.ws175{word-spacing:12.411733pt;}
.ws1d9{word-spacing:12.454400pt;}
.ws18d{word-spacing:12.539733pt;}
.ws10{word-spacing:12.592811pt;}
.ws15{word-spacing:12.656572pt;}
.ws9f{word-spacing:12.667733pt;}
.wsa7{word-spacing:12.710400pt;}
.ws14{word-spacing:12.720333pt;}
.ws136{word-spacing:12.838400pt;}
.ws164{word-spacing:12.923733pt;}
.ws34{word-spacing:12.940308pt;}
.ws27{word-spacing:12.943497pt;}
.ws4d{word-spacing:12.957867pt;}
.wsab{word-spacing:12.966400pt;}
.ws14d{word-spacing:13.009067pt;}
.ws126{word-spacing:13.094400pt;}
.ws29{word-spacing:13.129341pt;}
.wse6{word-spacing:13.222400pt;}
.wsa1{word-spacing:13.265067pt;}
.ws2f{word-spacing:13.322875pt;}
.ws119{word-spacing:13.350400pt;}
.ws11{word-spacing:13.357943pt;}
.ws13{word-spacing:13.444874pt;}
.ws138{word-spacing:13.563733pt;}
.ws1bf{word-spacing:13.683200pt;}
.wsc2{word-spacing:13.734400pt;}
.wsc0{word-spacing:13.757867pt;}
.ws26{word-spacing:13.804271pt;}
.ws44{word-spacing:13.819733pt;}
.ws174{word-spacing:13.896533pt;}
.ws100{word-spacing:14.057600pt;}
.ws1be{word-spacing:14.075733pt;}
.ws1d3{word-spacing:14.118400pt;}
.ws33{word-spacing:14.221906pt;}
.ws1cd{word-spacing:14.331733pt;}
.ws14e{word-spacing:14.374400pt;}
.ws189{word-spacing:14.502400pt;}
.wscb{word-spacing:14.630400pt;}
.ws32{word-spacing:14.757499pt;}
.ws40{word-spacing:14.886400pt;}
.ws1c{word-spacing:15.015731pt;}
.wsf0{word-spacing:15.033600pt;}
.wsef{word-spacing:15.056000pt;}
.wsc7{word-spacing:15.058133pt;}
.ws0{word-spacing:15.061333pt;}
.ws173{word-spacing:15.091200pt;}
.ws1d7{word-spacing:15.185067pt;}
.ws12{word-spacing:15.207014pt;}
.ws156{word-spacing:15.227733pt;}
.ws13a{word-spacing:15.313067pt;}
.wsf6{word-spacing:15.337600pt;}
.ws76{word-spacing:15.355733pt;}
.ws6{word-spacing:15.579327pt;}
.ws9{word-spacing:15.580174pt;}
.wsc{word-spacing:15.581027pt;}
.wsb{word-spacing:15.581880pt;}
.wsa{word-spacing:15.583580pt;}
.wsd{word-spacing:15.585507pt;}
.ws8{word-spacing:15.588913pt;}
.wsc4{word-spacing:15.606400pt;}
.ws195{word-spacing:15.611733pt;}
.ws17a{word-spacing:15.654400pt;}
.ws1f{word-spacing:15.844625pt;}
.ws1e{word-spacing:15.876506pt;}
.ws18{word-spacing:15.972147pt;}
.ws74{word-spacing:16.166400pt;}
.wsed{word-spacing:16.268800pt;}
.wseb{word-spacing:16.272000pt;}
.wse2{word-spacing:16.274133pt;}
.ws17{word-spacing:16.386594pt;}
.ws1d6{word-spacing:16.456533pt;}
.ws151{word-spacing:16.763733pt;}
.ws1c0{word-spacing:17.062400pt;}
.ws101{word-spacing:17.326933pt;}
.wsea{word-spacing:17.915733pt;}
.ws1c5{word-spacing:18.086400pt;}
.ws1d{word-spacing:18.161725pt;}
.ws1ae{word-spacing:18.299733pt;}
.ws1ce{word-spacing:18.342400pt;}
.ws15b{word-spacing:19.242667pt;}
.wsc3{word-spacing:19.409067pt;}
.ws7b{word-spacing:20.186669pt;}
.ws139{word-spacing:20.219733pt;}
.ws1aa{word-spacing:20.475733pt;}
.ws157{word-spacing:20.603733pt;}
.ws1d4{word-spacing:21.499733pt;}
.ws1b0{word-spacing:21.984000pt;}
.ws1ab{word-spacing:23.069867pt;}
.ws16d{word-spacing:24.759467pt;}
.ws127{word-spacing:25.607467pt;}
.wsc1{word-spacing:26.311467pt;}
.ws1cf{word-spacing:29.435733pt;}
.ws1a7{word-spacing:30.459733pt;}
.ws1a9{word-spacing:30.630400pt;}
.ws1ac{word-spacing:32.209067pt;}
.ws1a8{word-spacing:32.465067pt;}
.ws1d0{word-spacing:62.331733pt;}
.ws1d1{word-spacing:76.198400pt;}
.ws1d2{word-spacing:261.692800pt;}
._b{margin-left:-32.146107pt;}
._c{margin-left:-29.870867pt;}
._2f{margin-left:-23.976289pt;}
._21{margin-left:-22.698667pt;}
._22{margin-left:-21.418667pt;}
._9{margin-left:-5.377167pt;}
._3{margin-left:-3.712000pt;}
._5{margin-left:-2.313421pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.280000pt;}
._4{width:2.964890pt;}
._1e{width:4.475670pt;}
._d{width:10.849256pt;}
._1b{width:12.373333pt;}
._e{width:13.649647pt;}
._f{width:15.298504pt;}
._11{width:16.891904pt;}
._10{width:18.122001pt;}
._12{width:19.451290pt;}
._1a{width:20.826044pt;}
._17{width:21.778015pt;}
._8{width:23.039388pt;}
._13{width:24.630272pt;}
._18{width:25.642667pt;}
._14{width:26.956595pt;}
._16{width:27.975168pt;}
._15{width:29.266330pt;}
._1c{width:30.293333pt;}
._19{width:32.042667pt;}
._2d{width:33.327092pt;}
._20{width:34.304000pt;}
._28{width:35.730830pt;}
._24{width:36.880000pt;}
._1f{width:38.170667pt;}
._7{width:40.043653pt;}
._6{width:41.088167pt;}
._2b{width:42.624000pt;}
._3b{width:43.520000pt;}
._27{width:44.997217pt;}
._2c{width:46.424533pt;}
._34{width:48.205619pt;}
._29{width:49.507499pt;}
._2a{width:50.483405pt;}
._2e{width:54.488337pt;}
._35{width:55.583061pt;}
._23{width:56.789333pt;}
._30{width:57.756250pt;}
._31{width:59.946667pt;}
._a{width:62.512508pt;}
._26{width:64.256000pt;}
._2{width:67.646933pt;}
._25{width:69.070754pt;}
._36{width:75.846917pt;}
._3a{width:85.973333pt;}
._33{width:87.056116pt;}
._37{width:113.675605pt;}
._32{width:117.674667pt;}
._39{width:125.653333pt;}
._38{width:276.480000pt;}
._1d{width:1423.047483pt;}
.fs7{font-size:26.566933pt;}
.fsc{font-size:29.866667pt;}
.fs8{font-size:31.614400pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:34.537067pt;}
.fs10{font-size:36.631235pt;}
.fs9{font-size:37.193600pt;}
.fs11{font-size:38.869008pt;}
.fsf{font-size:39.961341pt;}
.fs3{font-size:40.913067pt;}
.fsd{font-size:42.507200pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:47.820800pt;}
.fsa{font-size:53.133867pt;}
.fse{font-size:55.944689pt;}
.fs2{font-size:58.447467pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:6.668000pt;}
.y108{bottom:12.428911pt;}
.y142{bottom:16.777239pt;}
.y39{bottom:22.609333pt;}
.y107{bottom:24.019260pt;}
.yab{bottom:24.766840pt;}
.y13f{bottom:29.994481pt;}
.y106{bottom:36.608776pt;}
.y38{bottom:38.549333pt;}
.yea{bottom:38.967629pt;}
.ydc{bottom:39.167463pt;}
.y141{bottom:52.282378pt;}
.y105{bottom:53.194965pt;}
.y37{bottom:54.489333pt;}
.ya8{bottom:58.488000pt;}
.y104{bottom:65.584648pt;}
.y140{bottom:66.795428pt;}
.y36{bottom:70.429333pt;}
.y103{bottom:77.174997pt;}
.y13a{bottom:81.049316pt;}
.y35{bottom:86.369333pt;}
.y102{bottom:89.764514pt;}
.y15e{bottom:90.524000pt;}
.y73{bottom:90.525333pt;}
.y13b{bottom:95.562366pt;}
.y34{bottom:102.309333pt;}
.ycf{bottom:105.136000pt;}
.ya7{bottom:105.137333pt;}
.yf6{bottom:106.750370pt;}
.y72{bottom:107.558667pt;}
.y139{bottom:109.297930pt;}
.y128{bottom:110.425333pt;}
.yad{bottom:112.531883pt;}
.y1b8{bottom:114.434667pt;}
.y33{bottom:118.250667pt;}
.yf5{bottom:118.340719pt;}
.ya6{bottom:119.748000pt;}
.y1a0{bottom:119.749333pt;}
.y131{bottom:124.070142pt;}
.y127{bottom:125.036000pt;}
.yce{bottom:125.061333pt;}
.y1b7{bottom:129.046667pt;}
.yf4{bottom:130.930236pt;}
.y32{bottom:134.190667pt;}
.ya5{bottom:134.360000pt;}
.y12f{bottom:138.583191pt;}
.y126{bottom:139.648000pt;}
.y71{bottom:140.586667pt;}
.ycd{bottom:141.002667pt;}
.yf3{bottom:142.520584pt;}
.y1b6{bottom:143.658667pt;}
.ya4{bottom:148.972000pt;}
.y31{bottom:150.130667pt;}
.y12d{bottom:152.318756pt;}
.y125{bottom:154.260000pt;}
.yf2{bottom:154.910268pt;}
.y70{bottom:155.198667pt;}
.y1b5{bottom:158.270667pt;}
.ya3{bottom:163.584000pt;}
.y30{bottom:166.070667pt;}
.yf1{bottom:166.700450pt;}
.y130{bottom:166.831806pt;}
.y124{bottom:168.872000pt;}
.y6f{bottom:169.810667pt;}
.y1b4{bottom:172.882667pt;}
.y14d{bottom:175.902462pt;}
.ya2{bottom:178.196000pt;}
.yf0{bottom:179.090133pt;}
.y15d{bottom:180.852000pt;}
.y12e{bottom:181.344855pt;}
.y2f{bottom:182.010667pt;}
.yff{bottom:182.847813pt;}
.y123{bottom:183.484000pt;}
.y6e{bottom:184.422667pt;}
.y1b3{bottom:187.494667pt;}
.y100{bottom:189.881148pt;}
.y14c{bottom:190.156350pt;}
.yef{bottom:190.880316pt;}
.ycc{bottom:191.470667pt;}
.yaa{bottom:192.383685pt;}
.ya1{bottom:192.808000pt;}
.yfd{bottom:194.637995pt;}
.y12c{bottom:194.821258pt;}
.y2e{bottom:197.952000pt;}
.y122{bottom:198.096000pt;}
.y6d{bottom:199.034667pt;}
.yfe{bottom:201.671330pt;}
.y1b2{bottom:202.106667pt;}
.yee{bottom:202.470664pt;}
.y14b{bottom:204.669399pt;}
.ycb{bottom:206.082667pt;}
.yfb{bottom:207.027678pt;}
.ya0{bottom:207.420000pt;}
.y121{bottom:212.708000pt;}
.y6c{bottom:213.645333pt;}
.y2d{bottom:213.892000pt;}
.yfc{bottom:214.061013pt;}
.yed{bottom:214.860348pt;}
.y12b{bottom:216.331671pt;}
.y1b1{bottom:216.718667pt;}
.yf9{bottom:218.817861pt;}
.y149{bottom:218.923287pt;}
.yca{bottom:220.693333pt;}
.y9f{bottom:222.032000pt;}
.yfa{bottom:225.851196pt;}
.yec{bottom:226.650530pt;}
.y120{bottom:227.320000pt;}
.y19f{bottom:227.345333pt;}
.y6b{bottom:228.257333pt;}
.y2c{bottom:229.832000pt;}
.yf8{bottom:231.207544pt;}
.y1b0{bottom:231.330667pt;}
.y147{bottom:233.436337pt;}
.yc9{bottom:235.305333pt;}
.y164{bottom:236.642667pt;}
.y9e{bottom:236.644000pt;}
.yac{bottom:237.225387pt;}
.yeb{bottom:238.240879pt;}
.y150{bottom:238.878730pt;}
.y11d{bottom:239.300000pt;}
.y11f{bottom:241.932000pt;}
.y6a{bottom:242.869333pt;}
.y1af{bottom:245.942667pt;}
.y145{bottom:247.431063pt;}
.yc8{bottom:249.917333pt;}
.y2b{bottom:251.085333pt;}
.yd7{bottom:251.254667pt;}
.y9d{bottom:251.256000pt;}
.y14f{bottom:251.836810pt;}
.ye5{bottom:254.987742pt;}
.ye6{bottom:255.026901pt;}
.y11e{bottom:256.544000pt;}
.y69{bottom:257.481333pt;}
.y1ae{bottom:260.553333pt;}
.y14a{bottom:261.944113pt;}
.yc7{bottom:264.529333pt;}
.y9c{bottom:265.866667pt;}
.y1c6{bottom:265.868000pt;}
.y13e{bottom:267.386506pt;}
.ye8{bottom:267.577259pt;}
.ye4{bottom:267.616418pt;}
.y19e{bottom:268.966667pt;}
.y11c{bottom:271.156000pt;}
.y68{bottom:272.093333pt;}
.y1ad{bottom:275.165333pt;}
.y148{bottom:276.716324pt;}
.yc6{bottom:279.141333pt;}
.ye3{bottom:279.206767pt;}
.y9b{bottom:280.478667pt;}
.y13d{bottom:281.381233pt;}
.y19d{bottom:283.578667pt;}
.y15c{bottom:283.806667pt;}
.y11b{bottom:285.766667pt;}
.y67{bottom:286.705333pt;}
.y1ac{bottom:289.777333pt;}
.ye7{bottom:290.957790pt;}
.y146{bottom:290.970212pt;}
.ye2{bottom:290.996949pt;}
.yc5{bottom:293.753333pt;}
.y9a{bottom:295.090667pt;}
.y13c{bottom:295.116798pt;}
.y2a{bottom:296.249333pt;}
.y19c{bottom:298.190667pt;}
.y15b{bottom:298.418667pt;}
.y11a{bottom:300.378667pt;}
.y66{bottom:301.317333pt;}
.ye1{bottom:303.386632pt;}
.y1ab{bottom:304.389333pt;}
.y144{bottom:304.705777pt;}
.yc4{bottom:308.365333pt;}
.y99{bottom:309.702667pt;}
.y29{bottom:312.189333pt;}
.y19b{bottom:312.802667pt;}
.y15a{bottom:313.030667pt;}
.ye0{bottom:314.976981pt;}
.y119{bottom:314.990667pt;}
.y65{bottom:315.929333pt;}
.y138{bottom:317.404695pt;}
.y1aa{bottom:319.001333pt;}
.y28{bottom:322.816000pt;}
.yc3{bottom:322.977333pt;}
.y98{bottom:324.314667pt;}
.y143{bottom:326.216190pt;}
.y163{bottom:326.970667pt;}
.y19a{bottom:327.414667pt;}
.yde{bottom:327.527339pt;}
.ydf{bottom:327.566498pt;}
.y159{bottom:327.642667pt;}
.y14e{bottom:329.326129pt;}
.y118{bottom:329.602667pt;}
.y64{bottom:330.541333pt;}
.y27{bottom:333.442667pt;}
.y1a9{bottom:333.613333pt;}
.yc2{bottom:337.589333pt;}
.y136{bottom:338.915108pt;}
.y97{bottom:338.926667pt;}
.y199{bottom:342.026667pt;}
.y158{bottom:342.254667pt;}
.yda{bottom:344.152654pt;}
.y117{bottom:344.214667pt;}
.y63{bottom:345.153333pt;}
.y26{bottom:347.414667pt;}
.y1a8{bottom:348.225333pt;}
.yc1{bottom:352.201333pt;}
.y96{bottom:353.538667pt;}
.y25{bottom:354.697333pt;}
.y198{bottom:356.638667pt;}
.yd9{bottom:356.742170pt;}
.y157{bottom:356.866667pt;}
.y116{bottom:358.826667pt;}
.y134{bottom:359.648036pt;}
.y62{bottom:359.764000pt;}
.y1a7{bottom:362.837333pt;}
.y162{bottom:364.836000pt;}
.y24{bottom:365.324000pt;}
.yc0{bottom:366.812000pt;}
.y95{bottom:368.150667pt;}
.y197{bottom:371.250667pt;}
.y156{bottom:371.478667pt;}
.y115{bottom:373.438667pt;}
.y61{bottom:374.376000pt;}
.y137{bottom:374.679409pt;}
.y23{bottom:375.950667pt;}
.y1a6{bottom:377.449333pt;}
.y161{bottom:379.448000pt;}
.ybf{bottom:381.424000pt;}
.y94{bottom:382.762667pt;}
.y196{bottom:385.861333pt;}
.y155{bottom:386.090667pt;}
.y22{bottom:386.577333pt;}
.y114{bottom:388.050667pt;}
.y135{bottom:388.933297pt;}
.y60{bottom:388.988000pt;}
.y1a5{bottom:392.061333pt;}
.y160{bottom:394.060000pt;}
.ybe{bottom:396.036000pt;}
.y21{bottom:397.204000pt;}
.yd6{bottom:397.373333pt;}
.y93{bottom:397.374667pt;}
.y195{bottom:400.473333pt;}
.y154{bottom:400.702667pt;}
.y113{bottom:402.662667pt;}
.y133{bottom:402.668862pt;}
.y1a4{bottom:406.672000pt;}
.y5f{bottom:408.913333pt;}
.ybd{bottom:410.648000pt;}
.y20{bottom:411.176000pt;}
.y92{bottom:411.985333pt;}
.y1c5{bottom:411.986667pt;}
.y15f{bottom:413.985333pt;}
.y17e{bottom:414.642667pt;}
.y194{bottom:415.085333pt;}
.y153{bottom:415.314667pt;}
.y112{bottom:417.274667pt;}
.y1f{bottom:418.457333pt;}
.y1a3{bottom:421.284000pt;}
.y132{bottom:424.179231pt;}
.y5e{bottom:424.853333pt;}
.ybc{bottom:425.260000pt;}
.y91{bottom:426.597333pt;}
.y1c4{bottom:426.598667pt;}
.y1e{bottom:429.084000pt;}
.y193{bottom:429.697333pt;}
.y152{bottom:429.925333pt;}
.y111{bottom:431.885333pt;}
.y1a2{bottom:435.896000pt;}
.ybb{bottom:439.872000pt;}
.y90{bottom:441.209333pt;}
.y1d{bottom:443.056000pt;}
.y192{bottom:444.309333pt;}
.y17d{bottom:446.080000pt;}
.y110{bottom:446.497333pt;}
.y1c{bottom:450.338667pt;}
.y1a1{bottom:450.508000pt;}
.y12a{bottom:452.687007pt;}
.yba{bottom:454.484000pt;}
.y8f{bottom:455.821333pt;}
.y191{bottom:458.921333pt;}
.y17c{bottom:460.692000pt;}
.y1b{bottom:460.965333pt;}
.y10f{bottom:461.109333pt;}
.y5d{bottom:465.120000pt;}
.yb9{bottom:469.096000pt;}
.y8e{bottom:470.433333pt;}
.y1a{bottom:471.592000pt;}
.yd5{bottom:473.090667pt;}
.y190{bottom:473.533333pt;}
.y17b{bottom:475.304000pt;}
.y10e{bottom:475.721333pt;}
.y151{bottom:476.817333pt;}
.y5c{bottom:479.732000pt;}
.y19{bottom:482.218667pt;}
.yb8{bottom:483.708000pt;}
.y8d{bottom:485.045333pt;}
.y18f{bottom:488.145333pt;}
.y17a{bottom:489.916000pt;}
.y10d{bottom:490.333333pt;}
.y18{bottom:492.845333pt;}
.y5b{bottom:494.344000pt;}
.yb7{bottom:498.320000pt;}
.y8c{bottom:499.657333pt;}
.y18e{bottom:502.757333pt;}
.y129{bottom:504.047903pt;}
.y179{bottom:504.528000pt;}
.y10c{bottom:504.945333pt;}
.yd4{bottom:504.961333pt;}
.y17{bottom:506.817333pt;}
.y5a{bottom:508.956000pt;}
.yb6{bottom:512.930667pt;}
.y8b{bottom:514.269333pt;}
.y18d{bottom:517.369333pt;}
.y178{bottom:519.140000pt;}
.y16{bottom:519.177333pt;}
.y10b{bottom:519.557333pt;}
.yd3{bottom:519.573333pt;}
.y59{bottom:523.568000pt;}
.yb5{bottom:527.542667pt;}
.y8a{bottom:528.881333pt;}
.y18c{bottom:531.980000pt;}
.y177{bottom:533.752000pt;}
.y10a{bottom:534.169333pt;}
.yd2{bottom:534.185333pt;}
.y58{bottom:538.180000pt;}
.y15{bottom:539.640000pt;}
.yb4{bottom:542.154667pt;}
.y89{bottom:543.493333pt;}
.y18b{bottom:546.592000pt;}
.y176{bottom:548.364000pt;}
.yd1{bottom:548.797333pt;}
.y57{bottom:552.790667pt;}
.y1c3{bottom:558.105333pt;}
.y14{bottom:559.565333pt;}
.y18a{bottom:561.204000pt;}
.yb3{bottom:562.080000pt;}
.y175{bottom:562.974667pt;}
.yd0{bottom:563.409333pt;}
.y88{bottom:563.418667pt;}
.y56{bottom:567.402667pt;}
.y1c7{bottom:572.716000pt;}
.y1c2{bottom:572.717333pt;}
.y189{bottom:575.816000pt;}
.y174{bottom:577.586667pt;}
.yb2{bottom:578.020000pt;}
.y87{bottom:579.358667pt;}
.y13{bottom:579.490667pt;}
.y109{bottom:581.060000pt;}
.y55{bottom:582.014667pt;}
.y1c1{bottom:587.328000pt;}
.y188{bottom:590.428000pt;}
.y173{bottom:592.198667pt;}
.y54{bottom:596.626667pt;}
.y12{bottom:599.416000pt;}
.y1c0{bottom:601.940000pt;}
.y187{bottom:605.040000pt;}
.y172{bottom:606.810667pt;}
.yd8{bottom:608.291150pt;}
.ydd{bottom:608.330309pt;}
.y53{bottom:611.238667pt;}
.yf7{bottom:615.324485pt;}
.y1bf{bottom:616.552000pt;}
.y11{bottom:619.341333pt;}
.y186{bottom:619.652000pt;}
.y171{bottom:624.080000pt;}
.yb1{bottom:624.912000pt;}
.y52{bottom:625.850667pt;}
.y1be{bottom:631.164000pt;}
.y185{bottom:634.264000pt;}
.y10{bottom:639.266667pt;}
.yb0{bottom:639.524000pt;}
.y51{bottom:640.462667pt;}
.y1bd{bottom:645.776000pt;}
.y184{bottom:648.876000pt;}
.yaf{bottom:654.134667pt;}
.y50{bottom:655.074667pt;}
.y170{bottom:655.517333pt;}
.y101{bottom:659.088035pt;}
.yf{bottom:659.192000pt;}
.y1bc{bottom:660.388000pt;}
.yae{bottom:668.746667pt;}
.y183{bottom:668.801333pt;}
.y4f{bottom:669.686667pt;}
.y16f{bottom:670.129333pt;}
.y1bb{bottom:675.000000pt;}
.ye{bottom:679.117333pt;}
.y4e{bottom:684.298667pt;}
.y16e{bottom:684.741333pt;}
.y86{bottom:689.612000pt;}
.ya9{bottom:695.978367pt;}
.y4d{bottom:698.909333pt;}
.yd{bottom:699.042667pt;}
.y16d{bottom:699.353333pt;}
.y85{bottom:704.224000pt;}
.y182{bottom:710.422667pt;}
.y4c{bottom:713.521333pt;}
.y16c{bottom:713.964000pt;}
.y84{bottom:718.834667pt;}
.y1ba{bottom:718.836000pt;}
.yc{bottom:718.968000pt;}
.y4b{bottom:728.133333pt;}
.y16b{bottom:728.576000pt;}
.y181{bottom:730.348000pt;}
.y83{bottom:733.446667pt;}
.yb{bottom:738.893333pt;}
.y4a{bottom:742.745333pt;}
.y16a{bottom:743.188000pt;}
.y82{bottom:748.058667pt;}
.y49{bottom:757.357333pt;}
.y169{bottom:757.800000pt;}
.ya{bottom:758.818667pt;}
.y81{bottom:762.670667pt;}
.y48{bottom:771.969333pt;}
.y168{bottom:772.412000pt;}
.y80{bottom:777.282667pt;}
.y9{bottom:778.744000pt;}
.y47{bottom:786.581333pt;}
.y167{bottom:787.024000pt;}
.y7f{bottom:791.894667pt;}
.y46{bottom:801.193333pt;}
.y166{bottom:801.636000pt;}
.y7e{bottom:806.506667pt;}
.y8{bottom:806.638667pt;}
.ye9{bottom:807.564400pt;}
.y45{bottom:815.805333pt;}
.y165{bottom:818.904000pt;}
.y7d{bottom:821.118667pt;}
.y44{bottom:830.417333pt;}
.y7c{bottom:835.730667pt;}
.y7{bottom:837.192000pt;}
.y43{bottom:845.028000pt;}
.y180{bottom:845.029333pt;}
.y7b{bottom:850.342667pt;}
.y42{bottom:859.640000pt;}
.y17f{bottom:859.641333pt;}
.y7a{bottom:864.953333pt;}
.y1b9{bottom:864.954667pt;}
.y6{bottom:867.744000pt;}
.y41{bottom:874.252000pt;}
.y79{bottom:879.565333pt;}
.y40{bottom:888.864000pt;}
.y78{bottom:894.177333pt;}
.ydb{bottom:896.690185pt;}
.y3f{bottom:903.476000pt;}
.y77{bottom:908.789333pt;}
.y3e{bottom:918.088000pt;}
.y76{bottom:923.401333pt;}
.y5{bottom:926.854667pt;}
.y3d{bottom:932.700000pt;}
.y75{bottom:938.013333pt;}
.y4{bottom:942.796000pt;}
.y3c{bottom:947.312000pt;}
.y74{bottom:952.625333pt;}
.y3{bottom:958.736000pt;}
.y3b{bottom:967.237333pt;}
.y2{bottom:974.676000pt;}
.y1{bottom:1003.102667pt;}
.ha{height:14.700696pt;}
.h7{height:19.925200pt;}
.he{height:21.200555pt;}
.h6{height:25.902800pt;}
.h19{height:26.634390pt;}
.h1b{height:27.839738pt;}
.h11{height:27.895200pt;}
.h21{height:28.145869pt;}
.h22{height:28.278722pt;}
.h23{height:28.639323pt;}
.h16{height:29.444172pt;}
.h25{height:29.610667pt;}
.h2{height:30.549333pt;}
.hf{height:31.880400pt;}
.h3{height:32.000000pt;}
.h9{height:33.301200pt;}
.h8{height:33.306533pt;}
.hd{height:34.947200pt;}
.h10{height:35.333920pt;}
.hc{height:35.865600pt;}
.hb{height:38.043849pt;}
.h24{height:40.533333pt;}
.h13{height:41.220965pt;}
.h5{height:50.504422pt;}
.h4{height:68.479386pt;}
.h14{height:70.955570pt;}
.h1e{height:81.771101pt;}
.h17{height:83.830528pt;}
.h1a{height:84.329779pt;}
.h1f{height:153.911023pt;}
.h1d{height:243.236642pt;}
.h12{height:284.543282pt;}
.h1c{height:365.196229pt;}
.h18{height:372.190405pt;}
.h15{height:372.229564pt;}
.h20{height:476.476366pt;}
.h0{height:1053.845333pt;}
.h1{height:1054.000000pt;}
.w4{width:65.345587pt;}
.w5{width:296.353229pt;}
.w6{width:296.553062pt;}
.w7{width:538.233517pt;}
.w2{width:672.748111pt;}
.w3{width:672.775135pt;}
.w1{width:792.666667pt;}
.w0{width:792.869333pt;}
.x0{left:0.000000pt;}
.x12{left:5.189346pt;}
.x9{left:21.026322pt;}
.x2{left:36.426667pt;}
.x6{left:38.945333pt;}
.x11{left:44.435023pt;}
.x3{left:52.368000pt;}
.x25{left:54.893333pt;}
.x1{left:63.761333pt;}
.x1b{left:78.807490pt;}
.xb{left:79.701333pt;}
.x23{left:82.228000pt;}
.x1d{left:88.919868pt;}
.x14{left:94.501493pt;}
.x15{left:104.161366pt;}
.x13{left:109.580752pt;}
.xe{left:113.096758pt;}
.x16{left:120.261293pt;}
.x1a{left:121.406854pt;}
.x7{left:129.116000pt;}
.x19{left:131.035341pt;}
.xf{left:132.327245pt;}
.x8{left:143.384000pt;}
.x1c{left:155.821031pt;}
.x1e{left:349.804892pt;}
.x4{left:384.760000pt;}
.x18{left:390.739151pt;}
.x1f{left:392.404256pt;}
.x20{left:393.312078pt;}
.x5{left:400.700000pt;}
.x21{left:402.997163pt;}
.x17{left:405.734147pt;}
.xc{left:412.094667pt;}
.xd{left:428.034667pt;}
.x24{left:430.561333pt;}
.x22{left:459.229831pt;}
.x10{left:461.299563pt;}
.xa{left:520.005063pt;}
.x26{left:700.998667pt;}
.x27{left:706.034667pt;}
}




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