
    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_da48826755d8f54b280ddd02.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_ee3951623048bb4c928a5f91.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_c010efd6a338ecaf0b2b4c17.woff2')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_7704518323211e50b0b95681.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_88c9a6b40084264169426113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_761b1423977313bfc8fd15d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_bd19eb6100816a753b27480b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ce0385c5f8c39fec56e6e491.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.390000;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_d3aeacf7d4ff8797b10e4e2f.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e34132b7d992075768244794.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.867000;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_67c223605cb4e048b59a63c5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_4ff7a29fdc1e3e0329aed5d3.woff2')format("woff");}.fff{font-family:fff;line-height:0.899000;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_0445142f7bff9fad01b5380e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.049000;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_9cfe30aa5555624a68a92a99.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_094f0d4e26d1fbd17a21aac7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.683000;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:ff17;src:url('chunks/assets/font_2d30556323f6e1bcb63afe08.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_f0abf6228441e23ed8032197.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.708000;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:ff19;src:url('chunks/assets/font_c421a7659bdb8fe5e71ebf51.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.899000;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;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_de8691b56e45384bd6f6ec2e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.656000;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:ff1d;src:url('chunks/assets/font_80145ccbdaf2ed3f0c0e65e2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.545000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-26.028000px;}
.v5{vertical-align:-8.970000px;}
.v4{vertical-align:-4.127839px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.631624px;}
.v1{vertical-align:26.034000px;}
.v7{vertical-align:31.470000px;}
.v6{vertical-align:40.434000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000312px;}
.ls9{letter-spacing:0.001278px;}
.lsc{letter-spacing:0.002245px;}
.ls15{letter-spacing:0.015439px;}
.ls18{letter-spacing:0.024807px;}
.ls1d{letter-spacing:0.026677px;}
.ls10{letter-spacing:2.426882px;}
.ls16{letter-spacing:2.982648px;}
.ls12{letter-spacing:2.984352px;}
.ls1{letter-spacing:2.984915px;}
.lsa{letter-spacing:2.988648px;}
.lse{letter-spacing:2.989140px;}
.ls2c{letter-spacing:3.168107px;}
.ls2a{letter-spacing:3.825638px;}
.ls23{letter-spacing:11.285662px;}
.ls24{letter-spacing:11.333482px;}
.ls14{letter-spacing:13.270183px;}
.lsf{letter-spacing:16.268352px;}
.ls26{letter-spacing:16.557841px;}
.ls1b{letter-spacing:16.617617px;}
.ls1a{letter-spacing:17.155597px;}
.ls3{letter-spacing:17.574026px;}
.ls27{letter-spacing:17.753353px;}
.lsb{letter-spacing:17.932680px;}
.ls13{letter-spacing:18.688120px;}
.lsd{letter-spacing:19.590648px;}
.ls31{letter-spacing:19.606397px;}
.ls29{letter-spacing:19.905275px;}
.ls2b{letter-spacing:20.263928px;}
.ls20{letter-spacing:20.383480px;}
.ls30{letter-spacing:20.562806px;}
.ls28{letter-spacing:21.041011px;}
.ls1f{letter-spacing:21.280114px;}
.ls1c{letter-spacing:23.761817px;}
.ls0{letter-spacing:26.396915px;}
.ls2f{letter-spacing:29.050942px;}
.ls2{letter-spacing:29.887800px;}
.ls21{letter-spacing:36.044687px;}
.ls2e{letter-spacing:37.539077px;}
.ls2d{letter-spacing:39.930101px;}
.ls5{letter-spacing:91.033497px;}
.ls25{letter-spacing:100.781662px;}
.ls8{letter-spacing:103.635998px;}
.ls22{letter-spacing:105.821453px;}
.ls6{letter-spacing:109.926038px;}
.ls7{letter-spacing:118.393022px;}
.ls17{letter-spacing:122.241102px;}
.ls1e{letter-spacing:214.534628px;}
.ls19{letter-spacing:235.934293px;}
.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;}
}
.ws3a{word-spacing:-91.033497px;}
.ws6c{word-spacing:-59.321305px;}
.ws7f{word-spacing:-55.555443px;}
.ws42{word-spacing:-38.937826px;}
.wsdf{word-spacing:-26.899125px;}
.ws66{word-spacing:-24.472131px;}
.ws6f{word-spacing:-18.554346px;}
.ws60{word-spacing:-18.255468px;}
.ws5c{word-spacing:-17.000181px;}
.ws4e{word-spacing:-16.605662px;}
.ws96{word-spacing:-15.386239px;}
.wsad{word-spacing:-10.484640px;}
.ws71{word-spacing:-10.006435px;}
.ws64{word-spacing:-8.332719px;}
.ws1d{word-spacing:-3.012690px;}
.ws90{word-spacing:-2.826197px;}
.wsf7{word-spacing:-2.677947px;}
.ws32{word-spacing:-2.618171px;}
.ws27{word-spacing:-2.438844px;}
.wse3{word-spacing:-2.259518px;}
.ws65{word-spacing:-2.139966px;}
.ws33{word-spacing:-1.960640px;}
.wsb8{word-spacing:-1.841088px;}
.wsd5{word-spacing:-1.518300px;}
.wsf8{word-spacing:-1.482435px;}
.wsd6{word-spacing:-1.362884px;}
.wsa6{word-spacing:-1.243332px;}
.ws56{word-spacing:-1.183557px;}
.ws10{word-spacing:-0.944454px;}
.wscf{word-spacing:-0.884679px;}
.wsfb{word-spacing:-0.765128px;}
.wsc{word-spacing:-0.466250px;}
.ws4a{word-spacing:-0.167372px;}
.ws75{word-spacing:-0.047820px;}
.ws46{word-spacing:-0.041843px;}
.ws39{word-spacing:0.000000px;}
.ws4c{word-spacing:0.011955px;}
.wsa3{word-spacing:0.071731px;}
.wsdd{word-spacing:0.131506px;}
.ws94{word-spacing:0.310833px;}
.wsab{word-spacing:0.609711px;}
.ws81{word-spacing:0.669487px;}
.ws5a{word-spacing:0.789038px;}
.ws2f{word-spacing:0.812948px;}
.wsc3{word-spacing:0.908589px;}
.ws31{word-spacing:1.028140px;}
.wsb0{word-spacing:1.147692px;}
.ws1a{word-spacing:1.267243px;}
.ws45{word-spacing:1.327018px;}
.ws44{word-spacing:1.386794px;}
.wsac{word-spacing:1.446570px;}
.ws5e{word-spacing:1.745448px;}
.ws47{word-spacing:2.104101px;}
.ws48{word-spacing:2.343204px;}
.ws28{word-spacing:2.402979px;}
.wsd2{word-spacing:2.462755px;}
.ws43{word-spacing:2.522530px;}
.ws29{word-spacing:2.582306px;}
.wsb5{word-spacing:2.761633px;}
.ws8e{word-spacing:2.816633px;}
.ws4f{word-spacing:2.821408px;}
.ws67{word-spacing:2.940960px;}
.wsbb{word-spacing:3.000735px;}
.wsfe{word-spacing:3.120286px;}
.wsff{word-spacing:3.180062px;}
.wsd{word-spacing:3.299613px;}
.ws1f{word-spacing:3.359389px;}
.ws20{word-spacing:3.383299px;}
.ws36{word-spacing:3.419164px;}
.ws99{word-spacing:3.598491px;}
.ws6a{word-spacing:3.622401px;}
.ws58{word-spacing:3.658267px;}
.ws40{word-spacing:3.718042px;}
.wsbd{word-spacing:3.801728px;}
.ws83{word-spacing:3.837594px;}
.ws35{word-spacing:3.897369px;}
.ws38{word-spacing:3.957145px;}
.wsaf{word-spacing:4.016920px;}
.ws62{word-spacing:4.076696px;}
.ws5f{word-spacing:4.136472px;}
.ws49{word-spacing:4.196247px;}
.ws8{word-spacing:4.256023px;}
.wsb4{word-spacing:4.435350px;}
.ws2b{word-spacing:4.483200px;}
.ws15{word-spacing:4.495125px;}
.ws1e{word-spacing:4.614676px;}
.ws37{word-spacing:4.913554px;}
.ws2c{word-spacing:5.092881px;}
.ws1b{word-spacing:5.272208px;}
.ws0{word-spacing:5.412522px;}
.wse{word-spacing:5.511310px;}
.ws6b{word-spacing:5.571086px;}
.wsfa{word-spacing:5.630862px;}
.ws13{word-spacing:5.810188px;}
.ws21{word-spacing:5.869964px;}
.ws7c{word-spacing:6.049291px;}
.ws68{word-spacing:6.109066px;}
.wse2{word-spacing:6.168842px;}
.wsbf{word-spacing:6.228618px;}
.ws19{word-spacing:6.288393px;}
.wsa{word-spacing:6.348169px;}
.ws80{word-spacing:6.407944px;}
.ws6e{word-spacing:6.431855px;}
.ws5b{word-spacing:6.527496px;}
.ws22{word-spacing:6.587271px;}
.ws57{word-spacing:6.826374px;}
.ws97{word-spacing:6.945925px;}
.ws4b{word-spacing:7.005700px;}
.wsb7{word-spacing:7.065476px;}
.wse6{word-spacing:7.125252px;}
.wsbe{word-spacing:7.149162px;}
.ws59{word-spacing:7.185027px;}
.wsfd{word-spacing:7.244803px;}
.ws7e{word-spacing:7.304578px;}
.ws7d{word-spacing:7.424130px;}
.ws95{word-spacing:7.483905px;}
.ws34{word-spacing:7.603456px;}
.wsf5{word-spacing:7.782783px;}
.ws3e{word-spacing:7.962110px;}
.wsf{word-spacing:8.021886px;}
.wsb3{word-spacing:8.201212px;}
.ws41{word-spacing:8.260988px;}
.wsd0{word-spacing:8.320764px;}
.ws8d{word-spacing:8.380539px;}
.ws14{word-spacing:8.559866px;}
.wsd7{word-spacing:8.619642px;}
.wsb2{word-spacing:8.715341px;}
.wsc6{word-spacing:8.739193px;}
.wsde{word-spacing:8.858744px;}
.ws73{word-spacing:8.918520px;}
.wse1{word-spacing:8.978295px;}
.ws2e{word-spacing:9.097846px;}
.ws54{word-spacing:9.217398px;}
.wsa7{word-spacing:9.396724px;}
.wsc4{word-spacing:9.456500px;}
.ws30{word-spacing:9.480410px;}
.ws17{word-spacing:9.576051px;}
.ws101{word-spacing:9.815154px;}
.wsa4{word-spacing:9.874929px;}
.wsc9{word-spacing:9.934705px;}
.wsd8{word-spacing:10.018391px;}
.ws9a{word-spacing:10.054256px;}
.wsf6{word-spacing:10.114032px;}
.ws18{word-spacing:10.173807px;}
.ws5{word-spacing:10.412910px;}
.ws82{word-spacing:10.472685px;}
.ws70{word-spacing:10.711788px;}
.wsda{word-spacing:10.771563px;}
.wsc1{word-spacing:10.831339px;}
.wsa8{word-spacing:10.899939px;}
.wsb{word-spacing:11.010666px;}
.ws55{word-spacing:11.070441px;}
.wse8{word-spacing:11.130217px;}
.wsba{word-spacing:11.488870px;}
.ws5d{word-spacing:11.787748px;}
.wsf9{word-spacing:11.847524px;}
.wsae{word-spacing:11.907300px;}
.ws4{word-spacing:11.967075px;}
.ws50{word-spacing:12.086626px;}
.ws74{word-spacing:12.206178px;}
.ws72{word-spacing:12.325729px;}
.ws3f{word-spacing:12.385504px;}
.wsc0{word-spacing:12.469190px;}
.ws8c{word-spacing:12.684382px;}
.wsc7{word-spacing:12.744158px;}
.ws9b{word-spacing:12.803934px;}
.ws89{word-spacing:12.863709px;}
.ws7b{word-spacing:12.923485px;}
.wsa1{word-spacing:13.043036px;}
.ws9f{word-spacing:13.102812px;}
.wsce{word-spacing:13.222363px;}
.ws1c{word-spacing:13.282138px;}
.ws2a{word-spacing:13.700568px;}
.ws2d{word-spacing:13.760343px;}
.ws7{word-spacing:13.939670px;}
.ws53{word-spacing:13.998926px;}
.ws63{word-spacing:13.999446px;}
.wsd9{word-spacing:14.262458px;}
.ws7a{word-spacing:14.358099px;}
.ws100{word-spacing:14.417875px;}
.ws6d{word-spacing:14.477650px;}
.ws3b{word-spacing:15.003613px;}
.wsb6{word-spacing:15.194958px;}
.wsfc{word-spacing:15.314509px;}
.ws69{word-spacing:15.553611px;}
.wsf1{word-spacing:15.613387px;}
.ws88{word-spacing:15.673162px;}
.ws16{word-spacing:15.732938px;}
.wsef{word-spacing:15.852489px;}
.wse7{word-spacing:16.091592px;}
.ws4d{word-spacing:16.231369px;}
.ws26{word-spacing:16.330694px;}
.wsb9{word-spacing:16.557841px;}
.ws12{word-spacing:17.107777px;}
.wsc8{word-spacing:17.167552px;}
.ws61{word-spacing:17.346879px;}
.wsa2{word-spacing:17.466430px;}
.ws9{word-spacing:17.526206px;}
.ws87{word-spacing:18.399053px;}
.wscc{word-spacing:18.422840px;}
.wse4{word-spacing:18.482616px;}
.ws98{word-spacing:18.542515px;}
.ws25{word-spacing:18.602167px;}
.wsec{word-spacing:18.901045px;}
.wsd1{word-spacing:19.319474px;}
.ws11{word-spacing:19.678128px;}
.ws8a{word-spacing:19.917230px;}
.wscb{word-spacing:20.275884px;}
.wsf2{word-spacing:20.335659px;}
.wsf0{word-spacing:20.514986px;}
.wse9{word-spacing:21.172518px;}
.ws8b{word-spacing:21.590947px;}
.ws6{word-spacing:22.128927px;}
.wscd{word-spacing:22.296299px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.wsf3{word-spacing:24.639502px;}
.wse5{word-spacing:24.938380px;}
.wse0{word-spacing:25.524181px;}
.wsca{word-spacing:25.595912px;}
.wsdc{word-spacing:26.253444px;}
.ws79{word-spacing:26.471976px;}
.wsc5{word-spacing:26.958796px;}
.wseb{word-spacing:28.226038px;}
.wsea{word-spacing:28.405365px;}
.wsc2{word-spacing:29.122672px;}
.wsdb{word-spacing:30.162768px;}
.wsed{word-spacing:30.198633px;}
.wsd3{word-spacing:32.111452px;}
.ws84{word-spacing:32.589657px;}
.wsd4{word-spacing:32.649433px;}
.ws51{word-spacing:32.670840px;}
.wsa0{word-spacing:34.908950px;}
.wsee{word-spacing:36.893500px;}
.ws52{word-spacing:40.287027px;}
.wsf4{word-spacing:40.420261px;}
.ws23{word-spacing:40.743049px;}
.ws24{word-spacing:43.229714px;}
.ws9d{word-spacing:55.125058px;}
.ws8f{word-spacing:56.404398px;}
.ws3d{word-spacing:59.029773px;}
.ws76{word-spacing:64.064029px;}
.ws92{word-spacing:66.370211px;}
.ws91{word-spacing:66.418031px;}
.ws3{word-spacing:69.937725px;}
.ws9e{word-spacing:70.068958px;}
.wsbc{word-spacing:72.519758px;}
.ws3c{word-spacing:75.031635px;}
.ws93{word-spacing:79.138311px;}
.wsa5{word-spacing:81.299915px;}
.ws86{word-spacing:83.495117px;}
.wsaa{word-spacing:85.017691px;}
.ws77{word-spacing:90.411502px;}
.wsa9{word-spacing:102.336497px;}
.ws78{word-spacing:154.571096px;}
.wsb1{word-spacing:210.147627px;}
.ws9c{word-spacing:359.143760px;}
.ws85{word-spacing:386.864294px;}
._18{margin-left:-91.033497px;}
._1d{margin-left:-29.174819px;}
._23{margin-left:-28.021778px;}
._22{margin-left:-14.166817px;}
._26{margin-left:-10.102076px;}
._1{margin-left:-8.056807px;}
._20{margin-left:-6.742733px;}
._b{margin-left:-4.961375px;}
._15{margin-left:-3.821312px;}
._0{margin-left:-2.788895px;}
._5{margin-left:-1.259614px;}
._3{width:1.259614px;}
._2{width:2.685602px;}
._3e{width:3.701761px;}
._1e{width:5.623232px;}
._24{width:13.057570px;}
._21{width:16.732842px;}
._11{width:18.530436px;}
._37{width:19.905275px;}
._3f{width:21.921413px;}
._8{width:24.273193px;}
._12{width:25.823059px;}
._d{width:26.894694px;}
._6{width:28.505381px;}
._e{width:30.186678px;}
._4{width:31.203072px;}
._10{width:33.099450px;}
._f{width:35.092603px;}
._c{width:36.310028px;}
._17{width:38.550962px;}
._41{width:39.571447px;}
._1f{width:41.304940px;}
._25{width:43.013548px;}
._16{width:44.516590px;}
._3a{width:45.708768px;}
._32{width:47.636827px;}
._9{width:49.259420px;}
._40{width:51.287465px;}
._42{width:53.439386px;}
._1c{width:54.626246px;}
._7{width:58.094303px;}
._43{width:65.493499px;}
._44{width:66.705244px;}
._13{width:68.801716px;}
._28{width:70.786101px;}
._29{width:72.431719px;}
._1b{width:75.013551px;}
._a{width:76.030237px;}
._2c{width:77.094292px;}
._14{width:80.697600px;}
._33{width:81.713245px;}
._1a{width:83.023524px;}
._30{width:84.151273px;}
._27{width:85.180230px;}
._35{width:86.674620px;}
._2e{width:89.615804px;}
._19{width:91.033497px;}
._3b{width:94.195609px;}
._39{width:96.836850px;}
._38{width:105.910572px;}
._3d{width:110.130707px;}
._2b{width:113.245632px;}
._2f{width:116.514206px;}
._36{width:119.850078px;}
._31{width:128.493952px;}
._2a{width:152.755908px;}
._3c{width:177.796991px;}
._34{width:203.360917px;}
._2d{width:211.048586px;}
.fc3{color:rgb(100,143,255);}
.fc2{color:rgb(220,38,127);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:15.583860px;}
.fsf{font-size:16.432752px;}
.fs11{font-size:17.315400px;}
.fs8{font-size:17.612112px;}
.fs12{font-size:19.046940px;}
.fs1a{font-size:19.168800px;}
.fse{font-size:20.540940px;}
.fs13{font-size:20.778480px;}
.fs17{font-size:21.907200px;}
.fsb{font-size:23.475360px;}
.fs15{font-size:24.241560px;}
.fs5{font-size:25.160160px;}
.fs18{font-size:27.384000px;}
.fsc{font-size:29.344200px;}
.fs19{font-size:30.122400px;}
.fs6{font-size:31.450200px;}
.fsd{font-size:32.278620px;}
.fs1b{font-size:32.860800px;}
.fs7{font-size:34.595220px;}
.fs10{font-size:35.213040px;}
.fs9{font-size:37.740240px;}
.fsa{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs16{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yef{bottom:4.104291px;}
.y149{bottom:6.351804px;}
.ya0{bottom:6.806479px;}
.y7e{bottom:7.294972px;}
.y77{bottom:8.277791px;}
.yee{bottom:10.354068px;}
.yf0{bottom:15.027873px;}
.y148{bottom:15.433451px;}
.y9f{bottom:16.538208px;}
.y101{bottom:16.949558px;}
.y7d{bottom:18.339398px;}
.y76{bottom:18.707955px;}
.y14a{bottom:22.306193px;}
.y153{bottom:25.044994px;}
.ya6{bottom:27.123789px;}
.y7f{bottom:27.275851px;}
.yfa{bottom:28.907474px;}
.y78{bottom:31.835363px;}
.yad{bottom:32.237235px;}
.ya1{bottom:35.175978px;}
.y46{bottom:36.168000px;}
.y158{bottom:39.464574px;}
.yab{bottom:39.496605px;}
.yf1{bottom:39.720625px;}
.y102{bottom:40.429876px;}
.y154{bottom:41.961776px;}
.y14b{bottom:42.424301px;}
.y14e{bottom:42.923350px;}
.ya4{bottom:43.193287px;}
.ya7{bottom:43.228166px;}
.y84{bottom:43.278976px;}
.y85{bottom:45.686882px;}
.yb0{bottom:46.574747px;}
.y80{bottom:47.537321px;}
.yfb{bottom:48.407177px;}
.y83{bottom:50.635484px;}
.y157{bottom:51.446754px;}
.y7b{bottom:55.580290px;}
.y159{bottom:56.622955px;}
.ya2{bottom:57.722105px;}
.y79{bottom:58.481808px;}
.y155{bottom:58.878559px;}
.ya8{bottom:59.332542px;}
.yae{bottom:59.598638px;}
.y14c{bottom:62.542409px;}
.yf5{bottom:63.657768px;}
.y103{bottom:63.910194px;}
.y107{bottom:64.215784px;}
.yf2{bottom:64.413376px;}
.y100{bottom:66.944989px;}
.yfc{bottom:67.906881px;}
.y81{bottom:67.919187px;}
.y152{bottom:72.529091px;}
.y15a{bottom:73.781336px;}
.ya9{bottom:75.436919px;}
.y156{bottom:75.795342px;}
.y14f{bottom:78.038838px;}
.y151{bottom:79.556938px;}
.ya3{bottom:80.268232px;}
.y2c{bottom:81.000000px;}
.y14d{bottom:82.660516px;}
.y7a{bottom:85.128253px;}
.yac{bottom:85.251779px;}
.yaf{bottom:86.847708px;}
.y104{bottom:87.390512px;}
.yfd{bottom:87.406584px;}
.y82{bottom:88.180657px;}
.yf3{bottom:89.106127px;}
.yaa{bottom:91.541295px;}
.y150{bottom:91.614456px;}
.ya5{bottom:98.172397px;}
.y45{bottom:98.932500px;}
.y7c{bottom:100.769729px;}
.y70{bottom:101.181077px;}
.y69{bottom:102.163896px;}
.yfe{bottom:106.906287px;}
.y2b{bottom:110.719500px;}
.y105{bottom:110.870831px;}
.y6f{bottom:112.225503px;}
.y68{bottom:112.594060px;}
.yf4{bottom:113.798878px;}
.y15b{bottom:116.420937px;}
.y44{bottom:116.865000px;}
.yf9{bottom:121.524347px;}
.yb1{bottom:124.754574px;}
.y6a{bottom:126.274809px;}
.yff{bottom:126.405990px;}
.y181{bottom:126.516000px;}
.yf8{bottom:127.246546px;}
.y2a{bottom:128.652000px;}
.yf7{bottom:132.968744px;}
.y106{bottom:134.351149px;}
.y71{bottom:134.363707px;}
.y43{bottom:134.797500px;}
.yf6{bottom:142.034980px;}
.y74{bottom:144.521588px;}
.y146{bottom:144.724500px;}
.y29{bottom:146.584500px;}
.y6d{bottom:149.466395px;}
.y1aa{bottom:149.860500px;}
.y6b{bottom:151.321620px;}
.yd9{bottom:152.306800px;}
.y42{bottom:152.730000px;}
.yd6{bottom:152.731500px;}
.y72{bottom:153.238341px;}
.yd8{bottom:158.556577px;}
.y180{bottom:162.237000px;}
.y9d{bottom:162.382500px;}
.ye7{bottom:163.230382px;}
.y1d3{bottom:164.272500px;}
.y28{bottom:164.517000px;}
.yda{bottom:166.839210px;}
.y1a9{bottom:167.793000px;}
.y41{bottom:170.664000px;}
.y73{bottom:172.112976px;}
.y6c{bottom:176.368431px;}
.y145{bottom:180.718500px;}
.y1d2{bottom:182.205000px;}
.ydb{bottom:182.500078px;}
.y75{bottom:187.614883px;}
.y11f{bottom:188.596500px;}
.ye8{bottom:188.647812px;}
.y27{bottom:194.322000px;}
.y6e{bottom:194.655834px;}
.y61{bottom:195.067182px;}
.y58{bottom:196.050000px;}
.yd5{bottom:196.297500px;}
.ye2{bottom:197.138805px;}
.ydc{bottom:198.160946px;}
.y1d1{bottom:200.137500px;}
.y1a8{bottom:200.788500px;}
.y9c{bottom:203.997000px;}
.y40{bottom:204.786000px;}
.y60{bottom:206.111607px;}
.y57{bottom:206.480164px;}
.y11e{bottom:206.529000px;}
.y144{bottom:207.618000px;}
.y17f{bottom:211.219500px;}
.y26{bottom:212.254500px;}
.ydd{bottom:213.821814px;}
.ye9{bottom:214.065242px;}
.yd4{bottom:214.230000px;}
.y59{bottom:214.739284px;}
.y1d0{bottom:218.070000px;}
.y1a7{bottom:218.721000px;}
.yec{bottom:219.185503px;}
.y62{bottom:222.812370px;}
.y17e{bottom:229.153500px;}
.yde{bottom:229.482682px;}
.y5a{bottom:229.592456px;}
.y25{bottom:230.187000px;}
.y9b{bottom:235.612500px;}
.y63{bottom:236.040224px;}
.y67{bottom:238.407693px;}
.yea{bottom:239.482671px;}
.yd3{bottom:241.990500px;}
.y5e{bottom:243.352500px;}
.y5b{bottom:244.445628px;}
.ydf{bottom:245.143550px;}
.y17d{bottom:247.086000px;}
.y1cf{bottom:247.545000px;}
.y64{bottom:249.328276px;}
.y1a6{bottom:251.716500px;}
.y143{bottom:257.820000px;}
.y5c{bottom:259.298800px;}
.yd2{bottom:259.923000px;}
.y24{bottom:259.990500px;}
.ye0{bottom:260.804418px;}
.y65{bottom:262.616327px;}
.y11d{bottom:262.795500px;}
.yed{bottom:264.004657px;}
.yeb{bottom:264.900101px;}
.y17c{bottom:265.018500px;}
.y3f{bottom:265.257000px;}
.y1ce{bottom:265.477500px;}
.y9a{bottom:267.228000px;}
.y1a5{bottom:269.649000px;}
.ye6{bottom:269.726856px;}
.y5d{bottom:274.151972px;}
.ye5{bottom:275.449054px;}
.y142{bottom:275.752500px;}
.y66{bottom:275.964576px;}
.ye1{bottom:276.465286px;}
.y23{bottom:277.923000px;}
.y11c{bottom:279.234000px;}
.ye4{bottom:281.171253px;}
.y17b{bottom:282.951000px;}
.y3e{bottom:283.189500px;}
.y1cd{bottom:283.410000px;}
.y99{bottom:285.162000px;}
.y1a4{bottom:287.581500px;}
.yd1{bottom:287.683500px;}
.y5f{bottom:288.541939px;}
.y51{bottom:288.953286px;}
.y49{bottom:289.936105px;}
.ye3{bottom:290.237488px;}
.y141{bottom:293.685000px;}
.y11b{bottom:295.672500px;}
.y22{bottom:295.855500px;}
.y108{bottom:299.033441px;}
.y50{bottom:300.057910px;}
.y48{bottom:300.366269px;}
.y17a{bottom:300.883500px;}
.y3d{bottom:301.122000px;}
.y1cc{bottom:301.342500px;}
.y98{bottom:303.094500px;}
.yd0{bottom:305.617500px;}
.y4a{bottom:310.546167px;}
.y140{bottom:311.617500px;}
.y52{bottom:318.373689px;}
.y179{bottom:318.816000px;}
.y3c{bottom:319.054500px;}
.y11a{bottom:319.614000px;}
.y1a3{bottom:319.800000px;}
.y97{bottom:321.027000px;}
.y21{bottom:325.576500px;}
.y4b{bottom:328.090779px;}
.y13f{bottom:329.550000px;}
.y1cb{bottom:330.817500px;}
.ycf{bottom:331.251000px;}
.y56{bottom:332.293798px;}
.y53{bottom:335.575585px;}
.y178{bottom:336.750000px;}
.y3b{bottom:336.988500px;}
.y4e{bottom:337.238605px;}
.y1a2{bottom:337.732500px;}
.y96{bottom:338.959500px;}
.y119{bottom:340.899000px;}
.y20{bottom:343.509000px;}
.y4c{bottom:345.635391px;}
.y1ca{bottom:348.750000px;}
.y54{bottom:352.777482px;}
.y177{bottom:354.682500px;}
.y3a{bottom:354.921000px;}
.y118{bottom:358.831500px;}
.yce{bottom:358.834500px;}
.y1f{bottom:361.441500px;}
.y4d{bottom:363.180002px;}
.y1a1{bottom:366.762000px;}
.y95{bottom:368.872500px;}
.y55{bottom:370.039576px;}
.y13e{bottom:371.955000px;}
.y1e{bottom:379.374000px;}
.y1c9{bottom:381.481500px;}
.y4f{bottom:382.428044px;}
.y176{bottom:382.546500px;}
.y92{bottom:386.505000px;}
.y13d{bottom:389.887500px;}
.y1d{bottom:397.306500px;}
.ycd{bottom:399.751500px;}
.y175{bottom:400.479000px;}
.y94{bottom:400.702500px;}
.y39{bottom:401.850000px;}
.y1f4{bottom:404.632500px;}
.y93{bottom:405.891000px;}
.y13c{bottom:407.820000px;}
.y1a0{bottom:412.716000px;}
.y1c{bottom:415.239000px;}
.y86{bottom:415.824225px;}
.ycc{bottom:417.684000px;}
.y117{bottom:419.598000px;}
.y1f3{bottom:422.566500px;}
.y174{bottom:429.355500px;}
.y19f{bottom:430.648500px;}
.y1c8{bottom:430.722000px;}
.y91{bottom:430.801500px;}
.y1b{bottom:433.173000px;}
.y13b{bottom:433.255500px;}
.ycb{bottom:435.616500px;}
.y116{bottom:437.530500px;}
.y1f2{bottom:440.499000px;}
.y38{bottom:445.789500px;}
.y173{bottom:447.288000px;}
.y19e{bottom:448.582500px;}
.y1c7{bottom:448.656000px;}
.y90{bottom:448.735500px;}
.y1a{bottom:451.105500px;}
.yca{bottom:453.549000px;}
.y115{bottom:455.463000px;}
.y13a{bottom:455.586000px;}
.y1f1{bottom:458.431500px;}
.y37{bottom:463.722000px;}
.y19d{bottom:466.515000px;}
.y1c6{bottom:466.588500px;}
.y19{bottom:469.038000px;}
.yc9{bottom:471.483000px;}
.y114{bottom:473.395500px;}
.y172{bottom:476.164500px;}
.y8f{bottom:476.319000px;}
.y19c{bottom:484.447500px;}
.y1c5{bottom:484.521000px;}
.y18{bottom:486.970500px;}
.y1f0{bottom:488.319000px;}
.yc8{bottom:489.415500px;}
.y113{bottom:491.329500px;}
.y139{bottom:502.041000px;}
.y19b{bottom:502.380000px;}
.y1c4{bottom:502.453500px;}
.y17{bottom:504.903000px;}
.y171{bottom:505.041000px;}
.y1ef{bottom:506.251500px;}
.yc7{bottom:507.348000px;}
.y36{bottom:507.663000px;}
.y8e{bottom:512.038500px;}
.y138{bottom:519.975000px;}
.y19a{bottom:520.312500px;}
.y1c3{bottom:520.386000px;}
.y16{bottom:522.835500px;}
.y170{bottom:522.973500px;}
.y1ee{bottom:524.185500px;}
.yc6{bottom:525.280500px;}
.y112{bottom:532.504500px;}
.y137{bottom:537.907500px;}
.y199{bottom:538.246500px;}
.y1c2{bottom:538.318500px;}
.y15{bottom:540.769500px;}
.y1ed{bottom:542.118000px;}
.yc5{bottom:543.213000px;}
.y16f{bottom:550.837500px;}
.y35{bottom:554.592000px;}
.y136{bottom:555.840000px;}
.y8d{bottom:555.862500px;}
.y198{bottom:556.179000px;}
.y14{bottom:558.702000px;}
.yc4{bottom:561.145500px;}
.y16e{bottom:568.770000px;}
.y1c1{bottom:571.050000px;}
.y1ec{bottom:572.005500px;}
.y34{bottom:572.524500px;}
.y8c{bottom:573.795000px;}
.y197{bottom:574.111500px;}
.y13{bottom:576.634500px;}
.yc3{bottom:579.079500px;}
.y111{bottom:581.817000px;}
.y135{bottom:583.698000px;}
.y16d{bottom:586.702500px;}
.y1eb{bottom:589.938000px;}
.y33{bottom:590.457000px;}
.y8b{bottom:591.727500px;}
.y12{bottom:594.567000px;}
.yc2{bottom:597.012000px;}
.y196{bottom:603.141000px;}
.y134{bottom:604.620000px;}
.y1ea{bottom:607.870500px;}
.y32{bottom:608.389500px;}
.y8a{bottom:609.660000px;}
.y11{bottom:612.499500px;}
.y16c{bottom:614.287500px;}
.yc1{bottom:614.944500px;}
.y1c0{bottom:620.290500px;}
.y1e9{bottom:625.804500px;}
.y89{bottom:627.592500px;}
.y10{bottom:630.433500px;}
.y16b{bottom:635.209500px;}
.y1bf{bottom:638.224500px;}
.y110{bottom:641.839500px;}
.y31{bottom:642.511500px;}
.yc0{bottom:642.528000px;}
.y88{bottom:645.526500px;}
.y133{bottom:647.235000px;}
.yf{bottom:648.366000px;}
.y195{bottom:649.095000px;}
.y1e8{bottom:655.692000px;}
.y1be{bottom:656.157000px;}
.y10f{bottom:659.772000px;}
.y87{bottom:663.459000px;}
.y132{bottom:665.167500px;}
.ye{bottom:666.298500px;}
.y194{bottom:667.027500px;}
.y1e7{bottom:673.624500px;}
.y1bd{bottom:674.089500px;}
.y10e{bottom:677.704500px;}
.ybf{bottom:683.445000px;}
.yd{bottom:684.231000px;}
.y30{bottom:684.769500px;}
.y193{bottom:684.960000px;}
.y16a{bottom:686.046000px;}
.y1e6{bottom:691.557000px;}
.y1bc{bottom:692.022000px;}
.y10d{bottom:695.637000px;}
.y131{bottom:695.646000px;}
.y47{bottom:696.336000px;}
.y169{bottom:700.242000px;}
.ybe{bottom:701.377500px;}
.yc{bottom:702.163500px;}
.y192{bottom:702.894000px;}
.y1e5{bottom:709.489500px;}
.y10c{bottom:713.569500px;}
.y130{bottom:713.578500px;}
.y168{bottom:714.439500px;}
.yb{bottom:720.096000px;}
.y191{bottom:720.826500px;}
.y1bb{bottom:723.865500px;}
.ybd{bottom:725.118000px;}
.y10b{bottom:731.502000px;}
.ybc{bottom:735.369000px;}
.y167{bottom:736.138500px;}
.ya{bottom:738.030000px;}
.y190{bottom:738.759000px;}
.y1e4{bottom:739.378500px;}
.y1ba{bottom:741.798000px;}
.y12f{bottom:744.057000px;}
.y10a{bottom:749.436000px;}
.y2f{bottom:752.827500px;}
.y166{bottom:755.854500px;}
.y9{bottom:755.962500px;}
.y18f{bottom:756.691500px;}
.y1e3{bottom:757.311000px;}
.y1b9{bottom:759.730500px;}
.y12e{bottom:761.989500px;}
.y109{bottom:767.368500px;}
.ybb{bottom:770.712000px;}
.y2e{bottom:770.760000px;}
.y165{bottom:773.787000px;}
.y8{bottom:773.895000px;}
.y1e2{bottom:775.243500px;}
.y1b8{bottom:777.663000px;}
.y18e{bottom:785.721000px;}
.yba{bottom:788.644500px;}
.y2d{bottom:788.692500px;}
.y164{bottom:791.719500px;}
.y12d{bottom:792.468000px;}
.yd7{bottom:800.245500px;}
.y1e1{bottom:805.131000px;}
.yb9{bottom:806.578500px;}
.y7{bottom:806.626500px;}
.y1b7{bottom:807.138000px;}
.y12c{bottom:810.400500px;}
.y1e0{bottom:823.063500px;}
.y1b6{bottom:825.070500px;}
.y18d{bottom:831.675000px;}
.y163{bottom:836.868000px;}
.y12b{bottom:840.730500px;}
.y1df{bottom:840.997500px;}
.y1b5{bottom:843.003000px;}
.yb8{bottom:847.155000px;}
.y18c{bottom:849.607500px;}
.y162{bottom:854.800500px;}
.y6{bottom:863.413500px;}
.yb7{bottom:865.087500px;}
.y18b{bottom:867.541500px;}
.y1de{bottom:870.885000px;}
.y1b4{bottom:872.478000px;}
.y161{bottom:872.733000px;}
.y12a{bottom:882.013500px;}
.yb6{bottom:883.021500px;}
.y18a{bottom:886.251000px;}
.y1dd{bottom:888.817500px;}
.y1b3{bottom:890.410500px;}
.y160{bottom:890.667000px;}
.y129{bottom:896.211000px;}
.yb5{bottom:900.954000px;}
.y189{bottom:904.183500px;}
.y1dc{bottom:906.750000px;}
.y1b2{bottom:908.343000px;}
.y15f{bottom:908.599500px;}
.y128{bottom:910.407000px;}
.y5{bottom:917.742000px;}
.yb4{bottom:918.886500px;}
.y188{bottom:922.116000px;}
.y127{bottom:924.604500px;}
.y1db{bottom:924.682500px;}
.y15e{bottom:926.532000px;}
.yb3{bottom:936.819000px;}
.y1b1{bottom:937.818000px;}
.y4{bottom:938.662500px;}
.y126{bottom:938.800500px;}
.y187{bottom:940.048500px;}
.y15d{bottom:944.464500px;}
.y1da{bottom:954.571500px;}
.yb2{bottom:954.751500px;}
.y1b0{bottom:955.750500px;}
.y186{bottom:957.981000px;}
.y125{bottom:960.501000px;}
.y15c{bottom:962.397000px;}
.y3{bottom:968.020500px;}
.y1d9{bottom:972.504000px;}
.y1af{bottom:973.683000px;}
.y124{bottom:981.046500px;}
.y9e{bottom:987.628500px;}
.y185{bottom:990.199500px;}
.y1d8{bottom:990.436500px;}
.y1ae{bottom:991.615500px;}
.y147{bottom:995.274000px;}
.y123{bottom:998.979000px;}
.y184{bottom:1008.132000px;}
.y2{bottom:1011.358500px;}
.y1d7{bottom:1020.324000px;}
.y1ad{bottom:1023.459000px;}
.y1d6{bottom:1038.256500px;}
.y183{bottom:1041.127500px;}
.y1ac{bottom:1041.391500px;}
.y1{bottom:1044.235500px;}
.y122{bottom:1046.265000px;}
.y1d5{bottom:1056.190500px;}
.y182{bottom:1059.060000px;}
.y1ab{bottom:1059.324000px;}
.y121{bottom:1064.197500px;}
.y1d4{bottom:1074.123000px;}
.y120{bottom:1092.055500px;}
.h11{height:0.000000px;}
.h1f{height:14.477406px;}
.h1c{height:16.086007px;}
.he{height:16.361652px;}
.h1d{height:17.694607px;}
.h26{height:17.807815px;}
.h17{height:19.082533px;}
.h1e{height:19.303208px;}
.h23{height:20.351789px;}
.h14{height:21.808609px;}
.h20{height:22.520409px;}
.h9{height:23.373789px;}
.h18{height:24.252688px;}
.h24{height:25.439736px;}
.hc{height:25.993276px;}
.hd{height:26.234066px;}
.h15{height:27.260762px;}
.h10{height:27.741776px;}
.h25{height:27.983710px;}
.h12{height:29.038903px;}
.ha{height:29.217236px;}
.h16{height:29.986838px;}
.h27{height:30.527683px;}
.hb{height:32.138959px;}
.h19{height:32.712914px;}
.hf{height:35.060683px;}
.h3{height:35.865450px;}
.h21{height:40.348800px;}
.h6{height:44.831700px;}
.h7{height:50.211840px;}
.h4{height:53.798400px;}
.h5{height:60.254040px;}
.h2{height:61.899450px;}
.h1{height:72.511265px;}
.h1a{height:85.265700px;}
.h22{height:111.724735px;}
.h13{height:119.370445px;}
.h1b{height:306.756380px;}
.h8{height:410.665625px;}
.h0{height:1188.000000px;}
.w2{width:370.520531px;}
.w4{width:370.523670px;}
.w1{width:370.524597px;}
.w3{width:370.529613px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x44{left:6.735420px;}
.x43{left:9.454479px;}
.x12{left:10.890499px;}
.x42{left:12.207357px;}
.x1d{left:14.895485px;}
.x40{left:16.613991px;}
.x10{left:20.939821px;}
.x11{left:24.944807px;}
.x2e{left:26.615567px;}
.x5b{left:31.203665px;}
.xf{left:32.451085px;}
.x13{left:34.453578px;}
.x4d{left:38.843998px;}
.x45{left:51.624598px;}
.x4f{left:53.504943px;}
.x2f{left:57.587453px;}
.x5a{left:63.456455px;}
.x4e{left:65.111672px;}
.x54{left:69.422173px;}
.x41{left:72.582320px;}
.x2c{left:73.962147px;}
.x7{left:81.000000px;}
.x3b{left:83.366104px;}
.x2d{left:87.926771px;}
.x9{left:91.792500px;}
.x8{left:95.944500px;}
.x68{left:105.843000px;}
.x21{left:107.943850px;}
.xa{left:110.887500px;}
.x61{left:119.087907px;}
.x60{left:123.248991px;}
.x46{left:124.337460px;}
.x5f{left:126.736172px;}
.x22{left:130.659000px;}
.x5e{left:137.197716px;}
.x50{left:142.329243px;}
.x1{left:143.346000px;}
.x5c{left:144.547344px;}
.x33{left:147.767057px;}
.x32{left:152.226000px;}
.x5d{left:157.606284px;}
.x2b{left:159.072000px;}
.x23{left:164.386500px;}
.x24{left:165.499500px;}
.x34{left:170.440037px;}
.x3{left:171.720000px;}
.x18{left:182.816585px;}
.x30{left:183.958660px;}
.x16{left:187.595541px;}
.x17{left:190.740561px;}
.x62{left:192.635340px;}
.x4b{left:193.986222px;}
.x4a{left:196.705281px;}
.x49{left:199.458159px;}
.x31{left:200.779355px;}
.x1a{left:206.638140px;}
.x19{left:208.038171px;}
.x47{left:209.169880px;}
.x35{left:216.409892px;}
.x14{left:218.818599px;}
.x52{left:220.135331px;}
.x65{left:242.079292px;}
.x4c{left:244.174859px;}
.x5{left:245.676000px;}
.x25{left:246.972000px;}
.x26{left:248.086500px;}
.x51{left:251.113664px;}
.x15{left:254.506269px;}
.x38{left:259.759947px;}
.x2{left:263.857500px;}
.x48{left:265.051415px;}
.x37{left:267.153310px;}
.x28{left:271.048500px;}
.x29{left:272.365500px;}
.x63{left:276.224907px;}
.x27{left:278.761500px;}
.x39{left:283.292620px;}
.x66{left:284.815019px;}
.x67{left:289.130566px;}
.x64{left:292.971948px;}
.x2a{left:295.125000px;}
.x36{left:296.811243px;}
.x1e{left:314.338352px;}
.x1f{left:320.459470px;}
.x20{left:323.142278px;}
.x1b{left:327.123336px;}
.x3a{left:335.616326px;}
.x1c{left:339.096219px;}
.x6{left:349.990500px;}
.x53{left:352.255604px;}
.x4{left:363.588000px;}
.xe{left:455.263500px;}
.xb{left:466.471500px;}
.x69{left:473.944500px;}
.x3f{left:477.265500px;}
.xc{left:481.417500px;}
.x55{left:485.296500px;}
.x58{left:487.393500px;}
.xd{left:496.360500px;}
.x59{left:502.786500px;}
.x57{left:506.737500px;}
.x56{left:512.425500px;}
.x3c{left:539.203500px;}
.x3d{left:633.799500px;}
.x3e{left:760.117500px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v5{vertical-align:-7.973333pt;}
.v4{vertical-align:-3.669190pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.561443pt;}
.v1{vertical-align:23.141333pt;}
.v7{vertical-align:27.973333pt;}
.v6{vertical-align:35.941333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000278pt;}
.ls9{letter-spacing:0.001136pt;}
.lsc{letter-spacing:0.001995pt;}
.ls15{letter-spacing:0.013724pt;}
.ls18{letter-spacing:0.022051pt;}
.ls1d{letter-spacing:0.023713pt;}
.ls10{letter-spacing:2.157229pt;}
.ls16{letter-spacing:2.651242pt;}
.ls12{letter-spacing:2.652757pt;}
.ls1{letter-spacing:2.653258pt;}
.lsa{letter-spacing:2.656576pt;}
.lse{letter-spacing:2.657014pt;}
.ls2c{letter-spacing:2.816095pt;}
.ls2a{letter-spacing:3.400567pt;}
.ls23{letter-spacing:10.031699pt;}
.ls24{letter-spacing:10.074206pt;}
.ls14{letter-spacing:11.795718pt;}
.lsf{letter-spacing:14.460757pt;}
.ls26{letter-spacing:14.718081pt;}
.ls1b{letter-spacing:14.771215pt;}
.ls1a{letter-spacing:15.249420pt;}
.ls3{letter-spacing:15.621357pt;}
.ls27{letter-spacing:15.780758pt;}
.lsb{letter-spacing:15.940160pt;}
.ls13{letter-spacing:16.611662pt;}
.lsd{letter-spacing:17.413909pt;}
.ls31{letter-spacing:17.427908pt;}
.ls29{letter-spacing:17.693578pt;}
.ls2b{letter-spacing:18.012381pt;}
.ls20{letter-spacing:18.118649pt;}
.ls30{letter-spacing:18.278050pt;}
.ls28{letter-spacing:18.703121pt;}
.ls1f{letter-spacing:18.915657pt;}
.ls1c{letter-spacing:21.121615pt;}
.ls0{letter-spacing:23.463925pt;}
.ls2f{letter-spacing:25.823059pt;}
.ls2{letter-spacing:26.566933pt;}
.ls21{letter-spacing:32.039722pt;}
.ls2e{letter-spacing:33.368068pt;}
.ls2d{letter-spacing:35.493423pt;}
.ls5{letter-spacing:80.918664pt;}
.ls25{letter-spacing:89.583699pt;}
.ls8{letter-spacing:92.120887pt;}
.ls22{letter-spacing:94.063514pt;}
.ls6{letter-spacing:97.712034pt;}
.ls7{letter-spacing:105.238242pt;}
.ls17{letter-spacing:108.658757pt;}
.ls1e{letter-spacing:190.697447pt;}
.ls19{letter-spacing:209.719372pt;}
.ws3a{word-spacing:-80.918664pt;}
.ws6c{word-spacing:-52.730049pt;}
.ws7f{word-spacing:-49.382616pt;}
.ws42{word-spacing:-34.611401pt;}
.wsdf{word-spacing:-23.910333pt;}
.ws66{word-spacing:-21.753005pt;}
.ws6f{word-spacing:-16.492752pt;}
.ws60{word-spacing:-16.227083pt;}
.ws5c{word-spacing:-15.111272pt;}
.ws4e{word-spacing:-14.760588pt;}
.ws96{word-spacing:-13.676657pt;}
.wsad{word-spacing:-9.319680pt;}
.ws71{word-spacing:-8.894609pt;}
.ws64{word-spacing:-7.406861pt;}
.ws1d{word-spacing:-2.677947pt;}
.ws90{word-spacing:-2.512176pt;}
.wsf7{word-spacing:-2.380397pt;}
.ws32{word-spacing:-2.327263pt;}
.ws27{word-spacing:-2.167862pt;}
.wse3{word-spacing:-2.008460pt;}
.ws65{word-spacing:-1.902192pt;}
.ws33{word-spacing:-1.742791pt;}
.wsb8{word-spacing:-1.636523pt;}
.wsd5{word-spacing:-1.349600pt;}
.wsf8{word-spacing:-1.317720pt;}
.wsd6{word-spacing:-1.211452pt;}
.wsa6{word-spacing:-1.105184pt;}
.ws56{word-spacing:-1.052051pt;}
.ws10{word-spacing:-0.839515pt;}
.wscf{word-spacing:-0.786381pt;}
.wsfb{word-spacing:-0.680113pt;}
.wsc{word-spacing:-0.414444pt;}
.ws4a{word-spacing:-0.148775pt;}
.ws75{word-spacing:-0.042507pt;}
.ws46{word-spacing:-0.037194pt;}
.ws39{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.010627pt;}
.wsa3{word-spacing:0.063761pt;}
.wsdd{word-spacing:0.116895pt;}
.ws94{word-spacing:0.276296pt;}
.wsab{word-spacing:0.541965pt;}
.ws81{word-spacing:0.595099pt;}
.ws5a{word-spacing:0.701367pt;}
.ws2f{word-spacing:0.722621pt;}
.wsc3{word-spacing:0.807635pt;}
.ws31{word-spacing:0.913903pt;}
.wsb0{word-spacing:1.020170pt;}
.ws1a{word-spacing:1.126438pt;}
.ws45{word-spacing:1.179572pt;}
.ws44{word-spacing:1.232706pt;}
.wsac{word-spacing:1.285840pt;}
.ws5e{word-spacing:1.551509pt;}
.ws47{word-spacing:1.870312pt;}
.ws48{word-spacing:2.082848pt;}
.ws28{word-spacing:2.135981pt;}
.wsd2{word-spacing:2.189115pt;}
.ws43{word-spacing:2.242249pt;}
.ws29{word-spacing:2.295383pt;}
.wsb5{word-spacing:2.454785pt;}
.ws8e{word-spacing:2.503674pt;}
.ws4f{word-spacing:2.507919pt;}
.ws67{word-spacing:2.614186pt;}
.wsbb{word-spacing:2.667320pt;}
.wsfe{word-spacing:2.773588pt;}
.wsff{word-spacing:2.826722pt;}
.wsd{word-spacing:2.932989pt;}
.ws1f{word-spacing:2.986123pt;}
.ws20{word-spacing:3.007377pt;}
.ws36{word-spacing:3.039257pt;}
.ws99{word-spacing:3.198659pt;}
.ws6a{word-spacing:3.219912pt;}
.ws58{word-spacing:3.251793pt;}
.ws40{word-spacing:3.304927pt;}
.wsbd{word-spacing:3.379314pt;}
.ws83{word-spacing:3.411194pt;}
.ws35{word-spacing:3.464328pt;}
.ws38{word-spacing:3.517462pt;}
.wsaf{word-spacing:3.570596pt;}
.ws62{word-spacing:3.623730pt;}
.ws5f{word-spacing:3.676864pt;}
.ws49{word-spacing:3.729997pt;}
.ws8{word-spacing:3.783131pt;}
.wsb4{word-spacing:3.942533pt;}
.ws2b{word-spacing:3.985067pt;}
.ws15{word-spacing:3.995667pt;}
.ws1e{word-spacing:4.101935pt;}
.ws37{word-spacing:4.367604pt;}
.ws2c{word-spacing:4.527005pt;}
.ws1b{word-spacing:4.686407pt;}
.ws0{word-spacing:4.811130pt;}
.wse{word-spacing:4.898943pt;}
.ws6b{word-spacing:4.952076pt;}
.wsfa{word-spacing:5.005210pt;}
.ws13{word-spacing:5.164612pt;}
.ws21{word-spacing:5.217746pt;}
.ws7c{word-spacing:5.377147pt;}
.ws68{word-spacing:5.430281pt;}
.wse2{word-spacing:5.483415pt;}
.wsbf{word-spacing:5.536549pt;}
.ws19{word-spacing:5.589683pt;}
.wsa{word-spacing:5.642817pt;}
.ws80{word-spacing:5.695951pt;}
.ws6e{word-spacing:5.717204pt;}
.ws5b{word-spacing:5.802218pt;}
.ws22{word-spacing:5.855352pt;}
.ws57{word-spacing:6.067888pt;}
.ws97{word-spacing:6.174155pt;}
.ws4b{word-spacing:6.227289pt;}
.wsb7{word-spacing:6.280423pt;}
.wse6{word-spacing:6.333557pt;}
.wsbe{word-spacing:6.354810pt;}
.ws59{word-spacing:6.386691pt;}
.wsfd{word-spacing:6.439825pt;}
.ws7e{word-spacing:6.492959pt;}
.ws7d{word-spacing:6.599226pt;}
.ws95{word-spacing:6.652360pt;}
.ws34{word-spacing:6.758628pt;}
.wsf5{word-spacing:6.918029pt;}
.ws3e{word-spacing:7.077431pt;}
.wsf{word-spacing:7.130565pt;}
.wsb3{word-spacing:7.289967pt;}
.ws41{word-spacing:7.343100pt;}
.wsd0{word-spacing:7.396234pt;}
.ws8d{word-spacing:7.449368pt;}
.ws14{word-spacing:7.608770pt;}
.wsd7{word-spacing:7.661904pt;}
.wsb2{word-spacing:7.746970pt;}
.wsc6{word-spacing:7.768171pt;}
.wsde{word-spacing:7.874439pt;}
.ws73{word-spacing:7.927573pt;}
.wse1{word-spacing:7.980707pt;}
.ws2e{word-spacing:8.086975pt;}
.ws54{word-spacing:8.193242pt;}
.wsa7{word-spacing:8.352644pt;}
.wsc4{word-spacing:8.405778pt;}
.ws30{word-spacing:8.427031pt;}
.ws17{word-spacing:8.512045pt;}
.ws101{word-spacing:8.724581pt;}
.wsa4{word-spacing:8.777715pt;}
.wsc9{word-spacing:8.830849pt;}
.wsd8{word-spacing:8.905236pt;}
.ws9a{word-spacing:8.937116pt;}
.wsf6{word-spacing:8.990250pt;}
.ws18{word-spacing:9.043384pt;}
.ws5{word-spacing:9.255920pt;}
.ws82{word-spacing:9.309053pt;}
.ws70{word-spacing:9.521589pt;}
.wsda{word-spacing:9.574723pt;}
.wsc1{word-spacing:9.627857pt;}
.wsa8{word-spacing:9.688835pt;}
.wsb{word-spacing:9.787258pt;}
.ws55{word-spacing:9.840392pt;}
.wse8{word-spacing:9.893526pt;}
.wsba{word-spacing:10.212329pt;}
.ws5d{word-spacing:10.477999pt;}
.wsf9{word-spacing:10.531132pt;}
.wsae{word-spacing:10.584266pt;}
.ws4{word-spacing:10.637400pt;}
.ws50{word-spacing:10.743668pt;}
.ws74{word-spacing:10.849936pt;}
.ws72{word-spacing:10.956203pt;}
.ws3f{word-spacing:11.009337pt;}
.wsc0{word-spacing:11.083725pt;}
.ws8c{word-spacing:11.275007pt;}
.wsc7{word-spacing:11.328140pt;}
.ws9b{word-spacing:11.381274pt;}
.ws89{word-spacing:11.434408pt;}
.ws7b{word-spacing:11.487542pt;}
.wsa1{word-spacing:11.593810pt;}
.ws9f{word-spacing:11.646944pt;}
.wsce{word-spacing:11.753211pt;}
.ws1c{word-spacing:11.806345pt;}
.ws2a{word-spacing:12.178282pt;}
.ws2d{word-spacing:12.231416pt;}
.ws7{word-spacing:12.390818pt;}
.ws53{word-spacing:12.443490pt;}
.ws63{word-spacing:12.443952pt;}
.wsd9{word-spacing:12.677741pt;}
.ws7a{word-spacing:12.762755pt;}
.ws100{word-spacing:12.815889pt;}
.ws6d{word-spacing:12.869023pt;}
.ws3b{word-spacing:13.336545pt;}
.wsb6{word-spacing:13.506629pt;}
.wsfc{word-spacing:13.612897pt;}
.ws69{word-spacing:13.825432pt;}
.wsf1{word-spacing:13.878566pt;}
.ws88{word-spacing:13.931700pt;}
.ws16{word-spacing:13.984834pt;}
.wsef{word-spacing:14.091101pt;}
.wse7{word-spacing:14.303637pt;}
.ws4d{word-spacing:14.427883pt;}
.ws26{word-spacing:14.516172pt;}
.wsb9{word-spacing:14.718081pt;}
.ws12{word-spacing:15.206913pt;}
.wsc8{word-spacing:15.260047pt;}
.ws61{word-spacing:15.419448pt;}
.wsa2{word-spacing:15.525716pt;}
.ws9{word-spacing:15.578850pt;}
.ws87{word-spacing:16.354714pt;}
.wscc{word-spacing:16.375858pt;}
.wse4{word-spacing:16.428992pt;}
.ws98{word-spacing:16.482236pt;}
.ws25{word-spacing:16.535259pt;}
.wsec{word-spacing:16.800929pt;}
.wsd1{word-spacing:17.172866pt;}
.ws11{word-spacing:17.491669pt;}
.ws8a{word-spacing:17.704204pt;}
.wscb{word-spacing:18.023008pt;}
.wsf2{word-spacing:18.076141pt;}
.wsf0{word-spacing:18.235543pt;}
.wse9{word-spacing:18.820016pt;}
.ws8b{word-spacing:19.191953pt;}
.ws6{word-spacing:19.670157pt;}
.wscd{word-spacing:19.818932pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.wsf3{word-spacing:21.901780pt;}
.wse5{word-spacing:22.167449pt;}
.wse0{word-spacing:22.688161pt;}
.wsca{word-spacing:22.751922pt;}
.wsdc{word-spacing:23.336394pt;}
.ws79{word-spacing:23.530645pt;}
.wsc5{word-spacing:23.963374pt;}
.wseb{word-spacing:25.089812pt;}
.wsea{word-spacing:25.249213pt;}
.wsc2{word-spacing:25.886820pt;}
.wsdb{word-spacing:26.811349pt;}
.wsed{word-spacing:26.843229pt;}
.wsd3{word-spacing:28.543513pt;}
.ws84{word-spacing:28.968584pt;}
.wsd4{word-spacing:29.021718pt;}
.ws51{word-spacing:29.040747pt;}
.wsa0{word-spacing:31.030178pt;}
.wsee{word-spacing:32.794223pt;}
.ws52{word-spacing:35.810691pt;}
.wsf4{word-spacing:35.929121pt;}
.ws23{word-spacing:36.216044pt;}
.ws24{word-spacing:38.426412pt;}
.ws9d{word-spacing:49.000052pt;}
.ws8f{word-spacing:50.137242pt;}
.ws3d{word-spacing:52.470910pt;}
.ws76{word-spacing:56.945803pt;}
.ws92{word-spacing:58.995743pt;}
.ws91{word-spacing:59.038250pt;}
.ws3{word-spacing:62.166867pt;}
.ws9e{word-spacing:62.283519pt;}
.wsbc{word-spacing:64.462007pt;}
.ws3c{word-spacing:66.694787pt;}
.ws93{word-spacing:70.345165pt;}
.wsa5{word-spacing:72.266591pt;}
.ws86{word-spacing:74.217882pt;}
.wsaa{word-spacing:75.571281pt;}
.ws77{word-spacing:80.365780pt;}
.wsa9{word-spacing:90.965776pt;}
.ws78{word-spacing:137.396530pt;}
.wsb1{word-spacing:186.797890pt;}
.ws9c{word-spacing:319.238898pt;}
.ws85{word-spacing:343.879373pt;}
._18{margin-left:-80.918664pt;}
._1d{margin-left:-25.933172pt;}
._23{margin-left:-24.908247pt;}
._22{margin-left:-12.592726pt;}
._26{margin-left:-8.979623pt;}
._1{margin-left:-7.161606pt;}
._20{margin-left:-5.993540pt;}
._b{margin-left:-4.410111pt;}
._15{margin-left:-3.396722pt;}
._0{margin-left:-2.479018pt;}
._5{margin-left:-1.119657pt;}
._3{width:1.119657pt;}
._2{width:2.387202pt;}
._3e{width:3.290454pt;}
._1e{width:4.998429pt;}
._24{width:11.606729pt;}
._21{width:14.873637pt;}
._11{width:16.471499pt;}
._37{width:17.693578pt;}
._3f{width:19.485700pt;}
._8{width:21.576172pt;}
._12{width:22.953830pt;}
._d{width:23.906395pt;}
._6{width:25.338116pt;}
._e{width:26.832603pt;}
._4{width:27.736064pt;}
._10{width:29.421733pt;}
._f{width:31.193425pt;}
._c{width:32.275581pt;}
._17{width:34.267522pt;}
._41{width:35.174620pt;}
._1f{width:36.715502pt;}
._25{width:38.234265pt;}
._16{width:39.570302pt;}
._3a{width:40.630016pt;}
._32{width:42.343846pt;}
._9{width:43.786151pt;}
._40{width:45.588858pt;}
._42{width:47.501677pt;}
._1c{width:48.556663pt;}
._7{width:51.639380pt;}
._43{width:58.216444pt;}
._44{width:59.293550pt;}
._13{width:61.157081pt;}
._28{width:62.920979pt;}
._29{width:64.383750pt;}
._1b{width:66.678712pt;}
._a{width:67.582433pt;}
._2c{width:68.528259pt;}
._14{width:71.731200pt;}
._33{width:72.633996pt;}
._1a{width:73.798688pt;}
._30{width:74.801132pt;}
._27{width:75.715760pt;}
._35{width:77.044107pt;}
._2e{width:79.658493pt;}
._19{width:80.918664pt;}
._3b{width:83.729431pt;}
._39{width:86.077200pt;}
._38{width:94.142731pt;}
._3d{width:97.893962pt;}
._2b{width:100.662784pt;}
._2f{width:103.568183pt;}
._36{width:106.533403pt;}
._31{width:114.216846pt;}
._2a{width:135.783029pt;}
._3c{width:158.041770pt;}
._34{width:180.765260pt;}
._2d{width:187.598743pt;}
.fs14{font-size:13.852320pt;}
.fsf{font-size:14.606891pt;}
.fs11{font-size:15.391467pt;}
.fs8{font-size:15.655211pt;}
.fs12{font-size:16.930613pt;}
.fs1a{font-size:17.038933pt;}
.fse{font-size:18.258613pt;}
.fs13{font-size:18.469760pt;}
.fs17{font-size:19.473067pt;}
.fsb{font-size:20.866987pt;}
.fs15{font-size:21.548053pt;}
.fs5{font-size:22.364587pt;}
.fs18{font-size:24.341333pt;}
.fsc{font-size:26.083733pt;}
.fs19{font-size:26.775467pt;}
.fs6{font-size:27.955733pt;}
.fsd{font-size:28.692107pt;}
.fs1b{font-size:29.209600pt;}
.fs7{font-size:30.751307pt;}
.fs10{font-size:31.300480pt;}
.fs9{font-size:33.546880pt;}
.fsa{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs16{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:3.648259pt;}
.y149{bottom:5.646048pt;}
.ya0{bottom:6.050203pt;}
.y7e{bottom:6.484420pt;}
.y77{bottom:7.358036pt;}
.yee{bottom:9.203616pt;}
.yf0{bottom:13.358110pt;}
.y148{bottom:13.718623pt;}
.y9f{bottom:14.700629pt;}
.y101{bottom:15.066273pt;}
.y7d{bottom:16.301687pt;}
.y76{bottom:16.629293pt;}
.y14a{bottom:19.827728pt;}
.y153{bottom:22.262217pt;}
.ya6{bottom:24.110035pt;}
.y7f{bottom:24.245201pt;}
.yfa{bottom:25.695533pt;}
.y78{bottom:28.298100pt;}
.yad{bottom:28.655320pt;}
.ya1{bottom:31.267536pt;}
.y46{bottom:32.149333pt;}
.y158{bottom:35.079621pt;}
.yab{bottom:35.108094pt;}
.yf1{bottom:35.307222pt;}
.y102{bottom:35.937667pt;}
.y154{bottom:37.299357pt;}
.y14b{bottom:37.710490pt;}
.y14e{bottom:38.154089pt;}
.ya4{bottom:38.394033pt;}
.ya7{bottom:38.425036pt;}
.y84{bottom:38.470201pt;}
.y85{bottom:40.610562pt;}
.yb0{bottom:41.399776pt;}
.y80{bottom:42.255397pt;}
.yfb{bottom:43.028602pt;}
.y83{bottom:45.009319pt;}
.y157{bottom:45.730448pt;}
.y7b{bottom:49.404703pt;}
.y159{bottom:50.331515pt;}
.ya2{bottom:51.308537pt;}
.y79{bottom:51.983829pt;}
.y155{bottom:52.336497pt;}
.ya8{bottom:52.740038pt;}
.yae{bottom:52.976567pt;}
.y14c{bottom:55.593252pt;}
.yf5{bottom:56.584683pt;}
.y103{bottom:56.809061pt;}
.y107{bottom:57.080697pt;}
.yf2{bottom:57.256334pt;}
.y100{bottom:59.506657pt;}
.yfc{bottom:60.361672pt;}
.y81{bottom:60.372611pt;}
.y152{bottom:64.470303pt;}
.y15a{bottom:65.583409pt;}
.ya9{bottom:67.055039pt;}
.y156{bottom:67.373637pt;}
.y14f{bottom:69.367856pt;}
.y151{bottom:70.717278pt;}
.ya3{bottom:71.349539pt;}
.y2c{bottom:72.000000pt;}
.y14d{bottom:73.476014pt;}
.y7a{bottom:75.669559pt;}
.yac{bottom:75.779359pt;}
.yaf{bottom:77.197962pt;}
.y104{bottom:77.680456pt;}
.yfd{bottom:77.694741pt;}
.y82{bottom:78.382806pt;}
.yf3{bottom:79.205446pt;}
.yaa{bottom:81.370040pt;}
.y150{bottom:81.435072pt;}
.ya5{bottom:87.264353pt;}
.y45{bottom:87.940000pt;}
.y7c{bottom:89.573093pt;}
.y70{bottom:89.938735pt;}
.y69{bottom:90.812352pt;}
.yfe{bottom:95.027811pt;}
.y2b{bottom:98.417333pt;}
.y105{bottom:98.551850pt;}
.y6f{bottom:99.756002pt;}
.y68{bottom:100.083609pt;}
.yf4{bottom:101.154558pt;}
.y15b{bottom:103.485277pt;}
.y44{bottom:103.880000pt;}
.yf9{bottom:108.021642pt;}
.yb1{bottom:110.892954pt;}
.y6a{bottom:112.244275pt;}
.yff{bottom:112.360880pt;}
.y181{bottom:112.458667pt;}
.yf8{bottom:113.108041pt;}
.y2a{bottom:114.357333pt;}
.yf7{bottom:118.194439pt;}
.y106{bottom:119.423244pt;}
.y71{bottom:119.434406pt;}
.y43{bottom:119.820000pt;}
.yf6{bottom:126.253315pt;}
.y74{bottom:128.463634pt;}
.y146{bottom:128.644000pt;}
.y29{bottom:130.297333pt;}
.y6d{bottom:132.859018pt;}
.y1aa{bottom:133.209333pt;}
.y6b{bottom:134.508107pt;}
.yd9{bottom:135.383822pt;}
.y42{bottom:135.760000pt;}
.yd6{bottom:135.761333pt;}
.y72{bottom:136.211859pt;}
.yd8{bottom:140.939179pt;}
.y180{bottom:144.210667pt;}
.y9d{bottom:144.340000pt;}
.ye7{bottom:145.093673pt;}
.y1d3{bottom:146.020000pt;}
.y28{bottom:146.237333pt;}
.yda{bottom:148.301520pt;}
.y1a9{bottom:149.149333pt;}
.y41{bottom:151.701333pt;}
.y73{bottom:152.989312pt;}
.y6c{bottom:156.771938pt;}
.y145{bottom:160.638667pt;}
.y1d2{bottom:161.960000pt;}
.ydb{bottom:162.222291pt;}
.y75{bottom:166.768785pt;}
.y11f{bottom:167.641333pt;}
.ye8{bottom:167.686944pt;}
.y27{bottom:172.730667pt;}
.y6e{bottom:173.027408pt;}
.y61{bottom:173.393050pt;}
.y58{bottom:174.266667pt;}
.yd5{bottom:174.486667pt;}
.ye2{bottom:175.234493pt;}
.ydc{bottom:176.143063pt;}
.y1d1{bottom:177.900000pt;}
.y1a8{bottom:178.478667pt;}
.y9c{bottom:181.330667pt;}
.y40{bottom:182.032000pt;}
.y60{bottom:183.210318pt;}
.y57{bottom:183.537924pt;}
.y11e{bottom:183.581333pt;}
.y144{bottom:184.549333pt;}
.y17f{bottom:187.750667pt;}
.y26{bottom:188.670667pt;}
.ydd{bottom:190.063835pt;}
.ye9{bottom:190.280215pt;}
.yd4{bottom:190.426667pt;}
.y59{bottom:190.879364pt;}
.y1d0{bottom:193.840000pt;}
.y1a7{bottom:194.418667pt;}
.yec{bottom:194.831558pt;}
.y62{bottom:198.055440pt;}
.y17e{bottom:203.692000pt;}
.yde{bottom:203.984606pt;}
.y5a{bottom:204.082183pt;}
.y25{bottom:204.610667pt;}
.y9b{bottom:209.433333pt;}
.y63{bottom:209.813533pt;}
.y67{bottom:211.917949pt;}
.yea{bottom:212.873486pt;}
.yd3{bottom:215.102667pt;}
.y5e{bottom:216.313333pt;}
.y5b{bottom:217.285003pt;}
.ydf{bottom:217.905378pt;}
.y17d{bottom:219.632000pt;}
.y1cf{bottom:220.040000pt;}
.y64{bottom:221.625134pt;}
.y1a6{bottom:223.748000pt;}
.y143{bottom:229.173333pt;}
.y5c{bottom:230.487822pt;}
.yd2{bottom:231.042667pt;}
.y24{bottom:231.102667pt;}
.ye0{bottom:231.826150pt;}
.y65{bottom:233.436735pt;}
.y11d{bottom:233.596000pt;}
.yed{bottom:234.670806pt;}
.yeb{bottom:235.466757pt;}
.y17c{bottom:235.572000pt;}
.y3f{bottom:235.784000pt;}
.y1ce{bottom:235.980000pt;}
.y9a{bottom:237.536000pt;}
.y1a5{bottom:239.688000pt;}
.ye6{bottom:239.757205pt;}
.y5d{bottom:243.690642pt;}
.ye5{bottom:244.843604pt;}
.y142{bottom:245.113333pt;}
.y66{bottom:245.301846pt;}
.ye1{bottom:245.746921pt;}
.y23{bottom:247.042667pt;}
.y11c{bottom:248.208000pt;}
.ye4{bottom:249.930003pt;}
.y17b{bottom:251.512000pt;}
.y3e{bottom:251.724000pt;}
.y1cd{bottom:251.920000pt;}
.y99{bottom:253.477333pt;}
.y1a4{bottom:255.628000pt;}
.yd1{bottom:255.718667pt;}
.y5f{bottom:256.481724pt;}
.y51{bottom:256.847366pt;}
.y49{bottom:257.720982pt;}
.ye3{bottom:257.988878pt;}
.y141{bottom:261.053333pt;}
.y11b{bottom:262.820000pt;}
.y22{bottom:262.982667pt;}
.y108{bottom:265.807503pt;}
.y50{bottom:266.718142pt;}
.y48{bottom:266.992239pt;}
.y17a{bottom:267.452000pt;}
.y3d{bottom:267.664000pt;}
.y1cc{bottom:267.860000pt;}
.y98{bottom:269.417333pt;}
.yd0{bottom:271.660000pt;}
.y4a{bottom:276.041037pt;}
.y140{bottom:276.993333pt;}
.y52{bottom:282.998834pt;}
.y179{bottom:283.392000pt;}
.y3c{bottom:283.604000pt;}
.y11a{bottom:284.101333pt;}
.y1a3{bottom:284.266667pt;}
.y97{bottom:285.357333pt;}
.y21{bottom:289.401333pt;}
.y4b{bottom:291.636248pt;}
.y13f{bottom:292.933333pt;}
.y1cb{bottom:294.060000pt;}
.ycf{bottom:294.445333pt;}
.y56{bottom:295.372265pt;}
.y53{bottom:298.289409pt;}
.y178{bottom:299.333333pt;}
.y3b{bottom:299.545333pt;}
.y4e{bottom:299.767649pt;}
.y1a2{bottom:300.206667pt;}
.y96{bottom:301.297333pt;}
.y119{bottom:303.021333pt;}
.y20{bottom:305.341333pt;}
.y4c{bottom:307.231458pt;}
.y1ca{bottom:310.000000pt;}
.y54{bottom:313.579984pt;}
.y177{bottom:315.273333pt;}
.y3a{bottom:315.485333pt;}
.y118{bottom:318.961333pt;}
.yce{bottom:318.964000pt;}
.y1f{bottom:321.281333pt;}
.y4d{bottom:322.826669pt;}
.y1a1{bottom:326.010667pt;}
.y95{bottom:327.886667pt;}
.y55{bottom:328.924067pt;}
.y13e{bottom:330.626667pt;}
.y1e{bottom:337.221333pt;}
.y1c9{bottom:339.094667pt;}
.y4f{bottom:339.936039pt;}
.y176{bottom:340.041333pt;}
.y92{bottom:343.560000pt;}
.y13d{bottom:346.566667pt;}
.y1d{bottom:353.161333pt;}
.ycd{bottom:355.334667pt;}
.y175{bottom:355.981333pt;}
.y94{bottom:356.180000pt;}
.y39{bottom:357.200000pt;}
.y1f4{bottom:359.673333pt;}
.y93{bottom:360.792000pt;}
.y13c{bottom:362.506667pt;}
.y1a0{bottom:366.858667pt;}
.y1c{bottom:369.101333pt;}
.y86{bottom:369.621533pt;}
.ycc{bottom:371.274667pt;}
.y117{bottom:372.976000pt;}
.y1f3{bottom:375.614667pt;}
.y174{bottom:381.649333pt;}
.y19f{bottom:382.798667pt;}
.y1c8{bottom:382.864000pt;}
.y91{bottom:382.934667pt;}
.y1b{bottom:385.042667pt;}
.y13b{bottom:385.116000pt;}
.ycb{bottom:387.214667pt;}
.y116{bottom:388.916000pt;}
.y1f2{bottom:391.554667pt;}
.y38{bottom:396.257333pt;}
.y173{bottom:397.589333pt;}
.y19e{bottom:398.740000pt;}
.y1c7{bottom:398.805333pt;}
.y90{bottom:398.876000pt;}
.y1a{bottom:400.982667pt;}
.yca{bottom:403.154667pt;}
.y115{bottom:404.856000pt;}
.y13a{bottom:404.965333pt;}
.y1f1{bottom:407.494667pt;}
.y37{bottom:412.197333pt;}
.y19d{bottom:414.680000pt;}
.y1c6{bottom:414.745333pt;}
.y19{bottom:416.922667pt;}
.yc9{bottom:419.096000pt;}
.y114{bottom:420.796000pt;}
.y172{bottom:423.257333pt;}
.y8f{bottom:423.394667pt;}
.y19c{bottom:430.620000pt;}
.y1c5{bottom:430.685333pt;}
.y18{bottom:432.862667pt;}
.y1f0{bottom:434.061333pt;}
.yc8{bottom:435.036000pt;}
.y113{bottom:436.737333pt;}
.y139{bottom:446.258667pt;}
.y19b{bottom:446.560000pt;}
.y1c4{bottom:446.625333pt;}
.y17{bottom:448.802667pt;}
.y171{bottom:448.925333pt;}
.y1ef{bottom:450.001333pt;}
.yc7{bottom:450.976000pt;}
.y36{bottom:451.256000pt;}
.y8e{bottom:455.145333pt;}
.y138{bottom:462.200000pt;}
.y19a{bottom:462.500000pt;}
.y1c3{bottom:462.565333pt;}
.y16{bottom:464.742667pt;}
.y170{bottom:464.865333pt;}
.y1ee{bottom:465.942667pt;}
.yc6{bottom:466.916000pt;}
.y112{bottom:473.337333pt;}
.y137{bottom:478.140000pt;}
.y199{bottom:478.441333pt;}
.y1c2{bottom:478.505333pt;}
.y15{bottom:480.684000pt;}
.y1ed{bottom:481.882667pt;}
.yc5{bottom:482.856000pt;}
.y16f{bottom:489.633333pt;}
.y35{bottom:492.970667pt;}
.y136{bottom:494.080000pt;}
.y8d{bottom:494.100000pt;}
.y198{bottom:494.381333pt;}
.y14{bottom:496.624000pt;}
.yc4{bottom:498.796000pt;}
.y16e{bottom:505.573333pt;}
.y1c1{bottom:507.600000pt;}
.y1ec{bottom:508.449333pt;}
.y34{bottom:508.910667pt;}
.y8c{bottom:510.040000pt;}
.y197{bottom:510.321333pt;}
.y13{bottom:512.564000pt;}
.yc3{bottom:514.737333pt;}
.y111{bottom:517.170667pt;}
.y135{bottom:518.842667pt;}
.y16d{bottom:521.513333pt;}
.y1eb{bottom:524.389333pt;}
.y33{bottom:524.850667pt;}
.y8b{bottom:525.980000pt;}
.y12{bottom:528.504000pt;}
.yc2{bottom:530.677333pt;}
.y196{bottom:536.125333pt;}
.y134{bottom:537.440000pt;}
.y1ea{bottom:540.329333pt;}
.y32{bottom:540.790667pt;}
.y8a{bottom:541.920000pt;}
.y11{bottom:544.444000pt;}
.y16c{bottom:546.033333pt;}
.yc1{bottom:546.617333pt;}
.y1c0{bottom:551.369333pt;}
.y1e9{bottom:556.270667pt;}
.y89{bottom:557.860000pt;}
.y10{bottom:560.385333pt;}
.y16b{bottom:564.630667pt;}
.y1bf{bottom:567.310667pt;}
.y110{bottom:570.524000pt;}
.y31{bottom:571.121333pt;}
.yc0{bottom:571.136000pt;}
.y88{bottom:573.801333pt;}
.y133{bottom:575.320000pt;}
.yf{bottom:576.325333pt;}
.y195{bottom:576.973333pt;}
.y1e8{bottom:582.837333pt;}
.y1be{bottom:583.250667pt;}
.y10f{bottom:586.464000pt;}
.y87{bottom:589.741333pt;}
.y132{bottom:591.260000pt;}
.ye{bottom:592.265333pt;}
.y194{bottom:592.913333pt;}
.y1e7{bottom:598.777333pt;}
.y1bd{bottom:599.190667pt;}
.y10e{bottom:602.404000pt;}
.ybf{bottom:607.506667pt;}
.yd{bottom:608.205333pt;}
.y30{bottom:608.684000pt;}
.y193{bottom:608.853333pt;}
.y16a{bottom:609.818667pt;}
.y1e6{bottom:614.717333pt;}
.y1bc{bottom:615.130667pt;}
.y10d{bottom:618.344000pt;}
.y131{bottom:618.352000pt;}
.y47{bottom:618.965333pt;}
.y169{bottom:622.437333pt;}
.ybe{bottom:623.446667pt;}
.yc{bottom:624.145333pt;}
.y192{bottom:624.794667pt;}
.y1e5{bottom:630.657333pt;}
.y10c{bottom:634.284000pt;}
.y130{bottom:634.292000pt;}
.y168{bottom:635.057333pt;}
.yb{bottom:640.085333pt;}
.y191{bottom:640.734667pt;}
.y1bb{bottom:643.436000pt;}
.ybd{bottom:644.549333pt;}
.y10b{bottom:650.224000pt;}
.ybc{bottom:653.661333pt;}
.y167{bottom:654.345333pt;}
.ya{bottom:656.026667pt;}
.y190{bottom:656.674667pt;}
.y1e4{bottom:657.225333pt;}
.y1ba{bottom:659.376000pt;}
.y12f{bottom:661.384000pt;}
.y10a{bottom:666.165333pt;}
.y2f{bottom:669.180000pt;}
.y166{bottom:671.870667pt;}
.y9{bottom:671.966667pt;}
.y18f{bottom:672.614667pt;}
.y1e3{bottom:673.165333pt;}
.y1b9{bottom:675.316000pt;}
.y12e{bottom:677.324000pt;}
.y109{bottom:682.105333pt;}
.ybb{bottom:685.077333pt;}
.y2e{bottom:685.120000pt;}
.y165{bottom:687.810667pt;}
.y8{bottom:687.906667pt;}
.y1e2{bottom:689.105333pt;}
.y1b8{bottom:691.256000pt;}
.y18e{bottom:698.418667pt;}
.yba{bottom:701.017333pt;}
.y2d{bottom:701.060000pt;}
.y164{bottom:703.750667pt;}
.y12d{bottom:704.416000pt;}
.yd7{bottom:711.329333pt;}
.y1e1{bottom:715.672000pt;}
.yb9{bottom:716.958667pt;}
.y7{bottom:717.001333pt;}
.y1b7{bottom:717.456000pt;}
.y12c{bottom:720.356000pt;}
.y1e0{bottom:731.612000pt;}
.y1b6{bottom:733.396000pt;}
.y18d{bottom:739.266667pt;}
.y163{bottom:743.882667pt;}
.y12b{bottom:747.316000pt;}
.y1df{bottom:747.553333pt;}
.y1b5{bottom:749.336000pt;}
.yb8{bottom:753.026667pt;}
.y18c{bottom:755.206667pt;}
.y162{bottom:759.822667pt;}
.y6{bottom:767.478667pt;}
.yb7{bottom:768.966667pt;}
.y18b{bottom:771.148000pt;}
.y1de{bottom:774.120000pt;}
.y1b4{bottom:775.536000pt;}
.y161{bottom:775.762667pt;}
.y12a{bottom:784.012000pt;}
.yb6{bottom:784.908000pt;}
.y18a{bottom:787.778667pt;}
.y1dd{bottom:790.060000pt;}
.y1b3{bottom:791.476000pt;}
.y160{bottom:791.704000pt;}
.y129{bottom:796.632000pt;}
.yb5{bottom:800.848000pt;}
.y189{bottom:803.718667pt;}
.y1dc{bottom:806.000000pt;}
.y1b2{bottom:807.416000pt;}
.y15f{bottom:807.644000pt;}
.y128{bottom:809.250667pt;}
.y5{bottom:815.770667pt;}
.yb4{bottom:816.788000pt;}
.y188{bottom:819.658667pt;}
.y127{bottom:821.870667pt;}
.y1db{bottom:821.940000pt;}
.y15e{bottom:823.584000pt;}
.yb3{bottom:832.728000pt;}
.y1b1{bottom:833.616000pt;}
.y4{bottom:834.366667pt;}
.y126{bottom:834.489333pt;}
.y187{bottom:835.598667pt;}
.y15d{bottom:839.524000pt;}
.y1da{bottom:848.508000pt;}
.yb2{bottom:848.668000pt;}
.y1b0{bottom:849.556000pt;}
.y186{bottom:851.538667pt;}
.y125{bottom:853.778667pt;}
.y15c{bottom:855.464000pt;}
.y3{bottom:860.462667pt;}
.y1d9{bottom:864.448000pt;}
.y1af{bottom:865.496000pt;}
.y124{bottom:872.041333pt;}
.y9e{bottom:877.892000pt;}
.y185{bottom:880.177333pt;}
.y1d8{bottom:880.388000pt;}
.y1ae{bottom:881.436000pt;}
.y147{bottom:884.688000pt;}
.y123{bottom:887.981333pt;}
.y184{bottom:896.117333pt;}
.y2{bottom:898.985333pt;}
.y1d7{bottom:906.954667pt;}
.y1ad{bottom:909.741333pt;}
.y1d6{bottom:922.894667pt;}
.y183{bottom:925.446667pt;}
.y1ac{bottom:925.681333pt;}
.y1{bottom:928.209333pt;}
.y122{bottom:930.013333pt;}
.y1d5{bottom:938.836000pt;}
.y182{bottom:941.386667pt;}
.y1ab{bottom:941.621333pt;}
.y121{bottom:945.953333pt;}
.y1d4{bottom:954.776000pt;}
.y120{bottom:970.716000pt;}
.h11{height:0.000000pt;}
.h1f{height:12.868805pt;}
.h1c{height:14.298673pt;}
.he{height:14.543691pt;}
.h1d{height:15.728540pt;}
.h26{height:15.829169pt;}
.h17{height:16.962252pt;}
.h1e{height:17.158407pt;}
.h23{height:18.090479pt;}
.h14{height:19.385431pt;}
.h20{height:20.018142pt;}
.h9{height:20.776701pt;}
.h18{height:21.557945pt;}
.h24{height:22.613099pt;}
.hc{height:23.105134pt;}
.hd{height:23.319170pt;}
.h15{height:24.231788pt;}
.h10{height:24.659357pt;}
.h25{height:24.874409pt;}
.h12{height:25.812358pt;}
.ha{height:25.970876pt;}
.h16{height:26.654967pt;}
.h27{height:27.135718pt;}
.hb{height:28.567964pt;}
.h19{height:29.078146pt;}
.hf{height:31.165052pt;}
.h3{height:31.880400pt;}
.h21{height:35.865600pt;}
.h6{height:39.850400pt;}
.h7{height:44.632747pt;}
.h4{height:47.820800pt;}
.h5{height:53.559147pt;}
.h2{height:55.021733pt;}
.h1{height:64.454458pt;}
.h1a{height:75.791733pt;}
.h22{height:99.310875pt;}
.h13{height:106.107062pt;}
.h1b{height:272.672338pt;}
.h8{height:365.036111pt;}
.h0{height:1056.000000pt;}
.w2{width:329.351583pt;}
.w4{width:329.354373pt;}
.w1{width:329.355198pt;}
.w3{width:329.359656pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x44{left:5.987040pt;}
.x43{left:8.403981pt;}
.x12{left:9.680443pt;}
.x42{left:10.850984pt;}
.x1d{left:13.240431pt;}
.x40{left:14.767992pt;}
.x10{left:18.613174pt;}
.x11{left:22.173162pt;}
.x2e{left:23.658282pt;}
.x5b{left:27.736591pt;}
.xf{left:28.845409pt;}
.x13{left:30.625403pt;}
.x4d{left:34.527998pt;}
.x45{left:45.888532pt;}
.x4f{left:47.559949pt;}
.x2f{left:51.188847pt;}
.x5a{left:56.405738pt;}
.x4e{left:57.877042pt;}
.x54{left:61.708598pt;}
.x41{left:64.517618pt;}
.x2c{left:65.744130pt;}
.x7{left:72.000000pt;}
.x3b{left:74.103203pt;}
.x2d{left:78.157130pt;}
.x9{left:81.593333pt;}
.x8{left:85.284000pt;}
.x68{left:94.082667pt;}
.x21{left:95.950089pt;}
.xa{left:98.566667pt;}
.x61{left:105.855917pt;}
.x60{left:109.554659pt;}
.x46{left:110.522187pt;}
.x5f{left:112.654375pt;}
.x22{left:116.141333pt;}
.x5e{left:121.953525pt;}
.x50{left:126.514883pt;}
.x1{left:127.418667pt;}
.x5c{left:128.486528pt;}
.x33{left:131.348495pt;}
.x32{left:135.312000pt;}
.x5d{left:140.094475pt;}
.x2b{left:141.397333pt;}
.x23{left:146.121333pt;}
.x24{left:147.110667pt;}
.x34{left:151.502255pt;}
.x3{left:152.640000pt;}
.x18{left:162.503631pt;}
.x30{left:163.518809pt;}
.x16{left:166.751592pt;}
.x17{left:169.547166pt;}
.x62{left:171.231414pt;}
.x4b{left:172.432197pt;}
.x4a{left:174.849138pt;}
.x49{left:177.296141pt;}
.x31{left:178.470537pt;}
.x1a{left:183.678347pt;}
.x19{left:184.922819pt;}
.x47{left:185.928782pt;}
.x35{left:192.364349pt;}
.x14{left:194.505422pt;}
.x52{left:195.675850pt;}
.x65{left:215.181593pt;}
.x4c{left:217.044319pt;}
.x5{left:218.378667pt;}
.x25{left:219.530667pt;}
.x26{left:220.521333pt;}
.x51{left:223.212146pt;}
.x15{left:226.227795pt;}
.x38{left:230.897731pt;}
.x2{left:234.540000pt;}
.x48{left:235.601258pt;}
.x37{left:237.469609pt;}
.x28{left:240.932000pt;}
.x29{left:242.102667pt;}
.x63{left:245.533251pt;}
.x27{left:247.788000pt;}
.x39{left:251.815662pt;}
.x66{left:253.168906pt;}
.x67{left:257.004948pt;}
.x64{left:260.419509pt;}
.x2a{left:262.333333pt;}
.x36{left:263.832216pt;}
.x1e{left:279.411868pt;}
.x1f{left:284.852862pt;}
.x20{left:287.237581pt;}
.x1b{left:290.776299pt;}
.x3a{left:298.325623pt;}
.x1c{left:301.418861pt;}
.x6{left:311.102667pt;}
.x53{left:313.116092pt;}
.x4{left:323.189333pt;}
.xe{left:404.678667pt;}
.xb{left:414.641333pt;}
.x69{left:421.284000pt;}
.x3f{left:424.236000pt;}
.xc{left:427.926667pt;}
.x55{left:431.374667pt;}
.x58{left:433.238667pt;}
.xd{left:441.209333pt;}
.x59{left:446.921333pt;}
.x57{left:450.433333pt;}
.x56{left:455.489333pt;}
.x3c{left:479.292000pt;}
.x3d{left:563.377333pt;}
.x3e{left:675.660000pt;}
}




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