
    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_621bb311e18f7ccf7a0d7f09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.865000;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_466e966ae679c71fbaaf5a71.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_466e966ae679c71fbaaf5a71.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_e2fad0ad6e7729b1a0accd45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_67fd9ebd922bcb0eca8220b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870000;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_062cee01884df4999079ade1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.955000;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_63b1746c48903a5faf2ceef6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896000;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_afaea3320e62e84d7bfe41de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.998000;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_0283f02076ff7d809c2d8dc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_588ec14e1ab4b84cfbaa220c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8a1a324528ea71edf69121ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_466e966ae679c71fbaaf5a71.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.067000;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_466e966ae679c71fbaaf5a71.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.067000;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_c9ebd22c1c5ceef668673643.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.745000;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_570e80394f95423f97a25c36.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e01f02683e208f406b7e58a7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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_10631d07f6999817d148fb1d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_14d6f2689049bf8e67436ecd.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_05a7557607a617115ddf0c62.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_38701183a59607e441be709e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_107e9a3aa435aaed9680c690.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893555;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_14d6f2689049bf8e67436ecd.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_aa817de042ebe60637f8dca4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978600px;}
.ls0{letter-spacing:-4.800000px;}
.ls1b{letter-spacing:-4.158000px;}
.ls15{letter-spacing:-3.066000px;}
.lsf{letter-spacing:-1.218000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.176000px;}
.ls22{letter-spacing:-1.104000px;}
.ls26{letter-spacing:-1.056000px;}
.ls18{letter-spacing:-1.050000px;}
.ls17{letter-spacing:-1.008000px;}
.ls23{letter-spacing:-0.816000px;}
.ls8{letter-spacing:-0.810000px;}
.lse{letter-spacing:-0.798000px;}
.ls21{letter-spacing:-0.768000px;}
.lsa{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.624000px;}
.ls1f{letter-spacing:-0.528000px;}
.ls16{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.336000px;}
.ls9{letter-spacing:-0.300000px;}
.ls2{letter-spacing:-0.264000px;}
.lsc{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.192000px;}
.ls12{letter-spacing:-0.168000px;}
.ls4{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.126000px;}
.ls1{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.222912px;}
.ls24{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.297216px;}
.ls1d{letter-spacing:0.334368px;}
.ls6{letter-spacing:1.800000px;}
.ls7{letter-spacing:23.775600px;}
.ls19{letter-spacing:95.538000px;}
.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;}
}
.wsdc{word-spacing:-22.500000px;}
.wsc2{word-spacing:-13.740000px;}
.ws63{word-spacing:-13.620000px;}
.ws6{word-spacing:-12.474000px;}
.ws99{word-spacing:-11.382000px;}
.wsff{word-spacing:-10.992000px;}
.wsc3{word-spacing:-10.896000px;}
.ws100{word-spacing:-10.752000px;}
.ws142{word-spacing:-10.656000px;}
.ws3{word-spacing:-10.560000px;}
.ws4{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.464000px;}
.ws101{word-spacing:-10.368000px;}
.ws102{word-spacing:-10.224000px;}
.ws103{word-spacing:-10.176000px;}
.ws143{word-spacing:-9.888000px;}
.wsc4{word-spacing:-9.622368px;}
.ws9c{word-spacing:-9.534000px;}
.ws9b{word-spacing:-9.408000px;}
.wsa1{word-spacing:-9.156000px;}
.wsb5{word-spacing:-9.030000px;}
.ws1{word-spacing:-8.811462px;}
.ws0{word-spacing:-8.503638px;}
.wsae{word-spacing:-8.358000px;}
.ws9e{word-spacing:-8.316000px;}
.ws42{word-spacing:-3.540000px;}
.ws65{word-spacing:-3.240000px;}
.ws2b{word-spacing:-3.060000px;}
.ws133{word-spacing:-2.928000px;}
.ws110{word-spacing:-2.832000px;}
.ws31{word-spacing:-2.820000px;}
.ws54{word-spacing:-2.700000px;}
.wsd8{word-spacing:-2.640000px;}
.wsf1{word-spacing:-2.580000px;}
.wsf7{word-spacing:-2.460000px;}
.ws151{word-spacing:-2.448000px;}
.ws38{word-spacing:-2.280000px;}
.ws18{word-spacing:-2.256000px;}
.ws5a{word-spacing:-2.220000px;}
.ws62{word-spacing:-2.160000px;}
.ws87{word-spacing:-2.100000px;}
.wsf5{word-spacing:-2.040000px;}
.ws17{word-spacing:-2.016000px;}
.ws90{word-spacing:-1.980000px;}
.ws78{word-spacing:-1.920000px;}
.ws10f{word-spacing:-1.872000px;}
.wse8{word-spacing:-1.860000px;}
.wsfd{word-spacing:-1.824000px;}
.ws2c{word-spacing:-1.800000px;}
.wsd2{word-spacing:-1.740000px;}
.ws10e{word-spacing:-1.728000px;}
.ws141{word-spacing:-1.584000px;}
.ws74{word-spacing:-1.560000px;}
.ws106{word-spacing:-1.536000px;}
.ws45{word-spacing:-1.500000px;}
.ws16{word-spacing:-1.440000px;}
.ws82{word-spacing:-1.404000px;}
.ws14f{word-spacing:-1.392000px;}
.wse7{word-spacing:-1.380000px;}
.ws108{word-spacing:-1.344000px;}
.ws117{word-spacing:-1.296000px;}
.wsf8{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.248000px;}
.ws67{word-spacing:-1.200000px;}
.wsd7{word-spacing:-1.140000px;}
.ws14a{word-spacing:-1.104000px;}
.ws66{word-spacing:-1.080000px;}
.ws14d{word-spacing:-1.056000px;}
.ws72{word-spacing:-1.020000px;}
.ws155{word-spacing:-1.008000px;}
.ws95{word-spacing:-0.960000px;}
.ws138{word-spacing:-0.912000px;}
.ws139{word-spacing:-0.864000px;}
.ws36{word-spacing:-0.840000px;}
.ws15d{word-spacing:-0.816000px;}
.ws15f{word-spacing:-0.768000px;}
.ws86{word-spacing:-0.720000px;}
.wsc9{word-spacing:-0.660000px;}
.wsc{word-spacing:-0.624000px;}
.wsf0{word-spacing:-0.600000px;}
.wsde{word-spacing:-0.540000px;}
.ws14b{word-spacing:-0.528000px;}
.ws8c{word-spacing:-0.480000px;}
.wsc1{word-spacing:-0.462000px;}
.ws11d{word-spacing:-0.432000px;}
.wsda{word-spacing:-0.384000px;}
.wsb2{word-spacing:-0.378000px;}
.wscc{word-spacing:-0.360000px;}
.ws158{word-spacing:-0.336000px;}
.ws3d{word-spacing:-0.300000px;}
.wsa5{word-spacing:-0.252000px;}
.wsa{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.192000px;}
.wsc6{word-spacing:-0.180000px;}
.wsdb{word-spacing:-0.148608px;}
.ws9{word-spacing:-0.144000px;}
.ws1a{word-spacing:-0.120000px;}
.ws123{word-spacing:-0.096000px;}
.ws77{word-spacing:-0.060000px;}
.wsd9{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws124{word-spacing:0.048000px;}
.wse4{word-spacing:0.060000px;}
.ws14{word-spacing:0.096000px;}
.wscf{word-spacing:0.120000px;}
.wsa7{word-spacing:0.126000px;}
.wsa6{word-spacing:0.168000px;}
.wsf2{word-spacing:0.180000px;}
.ws64{word-spacing:0.192000px;}
.ws59{word-spacing:0.240000px;}
.wsa3{word-spacing:0.252000px;}
.ws7{word-spacing:0.264000px;}
.ws167{word-spacing:0.288000px;}
.ws7e{word-spacing:0.300000px;}
.ws105{word-spacing:0.336000px;}
.ws75{word-spacing:0.360000px;}
.wsbf{word-spacing:0.378000px;}
.ws10c{word-spacing:0.384000px;}
.ws39{word-spacing:0.420000px;}
.wsa8{word-spacing:0.462000px;}
.ws19{word-spacing:0.480000px;}
.wsb1{word-spacing:0.504000px;}
.ws8{word-spacing:0.528000px;}
.ws79{word-spacing:0.540000px;}
.wse1{word-spacing:0.600000px;}
.ws113{word-spacing:0.624000px;}
.wse5{word-spacing:0.660000px;}
.wsba{word-spacing:0.720000px;}
.ws13b{word-spacing:0.768000px;}
.wsa4{word-spacing:0.798000px;}
.ws153{word-spacing:0.864000px;}
.ws109{word-spacing:0.912000px;}
.wsb3{word-spacing:1.008000px;}
.ws57{word-spacing:1.020000px;}
.wsb4{word-spacing:1.050000px;}
.wsfe{word-spacing:1.056000px;}
.ws4c{word-spacing:1.080000px;}
.ws107{word-spacing:1.104000px;}
.wsfa{word-spacing:1.140000px;}
.wse{word-spacing:1.152000px;}
.ws8d{word-spacing:1.200000px;}
.wsaf{word-spacing:1.218000px;}
.ws12b{word-spacing:1.248000px;}
.ws69{word-spacing:1.260000px;}
.ws120{word-spacing:1.296000px;}
.ws3f{word-spacing:1.320000px;}
.ws160{word-spacing:1.344000px;}
.ws3c{word-spacing:1.380000px;}
.wsd{word-spacing:1.392000px;}
.ws37{word-spacing:1.440000px;}
.ws116{word-spacing:1.488000px;}
.wse0{word-spacing:1.500000px;}
.ws162{word-spacing:1.536000px;}
.ws6f{word-spacing:1.620000px;}
.ws114{word-spacing:1.632000px;}
.ws8b{word-spacing:1.680000px;}
.wsc7{word-spacing:1.800000px;}
.ws11a{word-spacing:1.824000px;}
.wsc8{word-spacing:1.860000px;}
.ws12a{word-spacing:1.872000px;}
.ws88{word-spacing:1.920000px;}
.ws13{word-spacing:1.968000px;}
.ws15a{word-spacing:2.016000px;}
.ws70{word-spacing:2.040000px;}
.wsf4{word-spacing:2.100000px;}
.ws146{word-spacing:2.112000px;}
.ws136{word-spacing:2.208000px;}
.wsb8{word-spacing:2.220000px;}
.ws76{word-spacing:2.280000px;}
.ws97{word-spacing:2.340000px;}
.ws152{word-spacing:2.352000px;}
.ws58{word-spacing:2.400000px;}
.ws14e{word-spacing:2.448000px;}
.ws44{word-spacing:2.460000px;}
.ws12d{word-spacing:2.496000px;}
.wsf{word-spacing:2.544000px;}
.wsf9{word-spacing:2.580000px;}
.ws129{word-spacing:2.592000px;}
.ws131{word-spacing:2.640000px;}
.ws3a{word-spacing:2.700000px;}
.wsb{word-spacing:2.784000px;}
.wsec{word-spacing:2.820000px;}
.ws137{word-spacing:2.832000px;}
.wsbe{word-spacing:2.880000px;}
.ws21{word-spacing:2.940000px;}
.ws3b{word-spacing:3.000000px;}
.wsb0{word-spacing:3.066000px;}
.ws128{word-spacing:3.072000px;}
.wsca{word-spacing:3.120000px;}
.ws119{word-spacing:3.168000px;}
.ws13a{word-spacing:3.216000px;}
.ws68{word-spacing:3.240000px;}
.ws10d{word-spacing:3.264000px;}
.ws12c{word-spacing:3.312000px;}
.ws145{word-spacing:3.360000px;}
.ws111{word-spacing:3.408000px;}
.ws93{word-spacing:3.420000px;}
.wsef{word-spacing:3.480000px;}
.ws164{word-spacing:3.552000px;}
.ws92{word-spacing:3.600000px;}
.ws98{word-spacing:3.660000px;}
.wsfb{word-spacing:3.720000px;}
.ws4f{word-spacing:3.780000px;}
.ws12{word-spacing:3.792000px;}
.ws43{word-spacing:3.840000px;}
.wsd3{word-spacing:3.900000px;}
.ws50{word-spacing:3.960000px;}
.ws89{word-spacing:4.020000px;}
.ws11{word-spacing:4.080000px;}
.ws122{word-spacing:4.128000px;}
.wsc0{word-spacing:4.158000px;}
.ws61{word-spacing:4.200000px;}
.ws171{word-spacing:4.272000px;}
.ws96{word-spacing:4.320000px;}
.ws10b{word-spacing:4.368000px;}
.wsf3{word-spacing:4.380000px;}
.ws6a{word-spacing:4.500000px;}
.ws2e{word-spacing:4.560000px;}
.ws115{word-spacing:4.608000px;}
.ws15b{word-spacing:4.656000px;}
.ws2a{word-spacing:4.680000px;}
.ws112{word-spacing:4.704000px;}
.ws3e{word-spacing:4.740000px;}
.ws23{word-spacing:4.800000px;}
.wsea{word-spacing:4.860000px;}
.ws7b{word-spacing:4.920000px;}
.ws52{word-spacing:4.980000px;}
.ws147{word-spacing:4.992000px;}
.ws20{word-spacing:5.040000px;}
.ws33{word-spacing:5.100000px;}
.ws144{word-spacing:5.136000px;}
.ws8a{word-spacing:5.160000px;}
.ws12e{word-spacing:5.184000px;}
.wsed{word-spacing:5.220000px;}
.ws159{word-spacing:5.232000px;}
.ws73{word-spacing:5.280000px;}
.ws5e{word-spacing:5.340000px;}
.ws6b{word-spacing:5.460000px;}
.ws168{word-spacing:5.520000px;}
.ws150{word-spacing:5.568000px;}
.ws2f{word-spacing:5.580000px;}
.ws83{word-spacing:5.640000px;}
.ws13c{word-spacing:5.664000px;}
.ws26{word-spacing:5.700000px;}
.ws28{word-spacing:5.760000px;}
.ws24{word-spacing:5.820000px;}
.wsc5{word-spacing:5.880000px;}
.ws8f{word-spacing:5.940000px;}
.wscb{word-spacing:6.000000px;}
.ws157{word-spacing:6.048000px;}
.wse6{word-spacing:6.060000px;}
.ws2d{word-spacing:6.180000px;}
.ws56{word-spacing:6.240000px;}
.ws118{word-spacing:6.288000px;}
.ws27{word-spacing:6.300000px;}
.ws161{word-spacing:6.336000px;}
.ws13e{word-spacing:6.384000px;}
.ws7c{word-spacing:6.420000px;}
.ws121{word-spacing:6.432000px;}
.ws32{word-spacing:6.480000px;}
.ws16c{word-spacing:6.528000px;}
.ws48{word-spacing:6.540000px;}
.ws15c{word-spacing:6.576000px;}
.ws6e{word-spacing:6.600000px;}
.ws14c{word-spacing:6.672000px;}
.wsbd{word-spacing:6.720000px;}
.ws4b{word-spacing:6.780000px;}
.wse2{word-spacing:6.840000px;}
.ws34{word-spacing:6.960000px;}
.wsce{word-spacing:7.020000px;}
.ws13f{word-spacing:7.056000px;}
.ws35{word-spacing:7.080000px;}
.ws55{word-spacing:7.140000px;}
.wsf6{word-spacing:7.260000px;}
.ws140{word-spacing:7.296000px;}
.ws84{word-spacing:7.320000px;}
.ws85{word-spacing:7.380000px;}
.ws126{word-spacing:7.392000px;}
.ws127{word-spacing:7.440000px;}
.wsb7{word-spacing:7.500000px;}
.ws1c{word-spacing:7.560000px;}
.ws135{word-spacing:7.632000px;}
.ws91{word-spacing:7.860000px;}
.ws4e{word-spacing:7.920000px;}
.ws130{word-spacing:7.968000px;}
.wsd6{word-spacing:7.980000px;}
.ws163{word-spacing:8.016000px;}
.ws40{word-spacing:8.040000px;}
.ws5f{word-spacing:8.160000px;}
.ws11e{word-spacing:8.208000px;}
.ws1b{word-spacing:8.220000px;}
.ws30{word-spacing:8.280000px;}
.ws11f{word-spacing:8.304000px;}
.ws11c{word-spacing:8.400000px;}
.ws16a{word-spacing:8.496000px;}
.ws8e{word-spacing:8.520000px;}
.ws7d{word-spacing:8.580000px;}
.ws134{word-spacing:8.736000px;}
.ws46{word-spacing:8.760000px;}
.ws4d{word-spacing:8.820000px;}
.ws169{word-spacing:8.928000px;}
.ws25{word-spacing:8.940000px;}
.ws16d{word-spacing:8.976000px;}
.ws47{word-spacing:9.000000px;}
.ws94{word-spacing:9.060000px;}
.ws49{word-spacing:9.120000px;}
.ws4a{word-spacing:9.240000px;}
.ws53{word-spacing:9.360000px;}
.ws16e{word-spacing:9.408000px;}
.ws29{word-spacing:9.420000px;}
.wse3{word-spacing:9.540000px;}
.wsd0{word-spacing:9.600000px;}
.ws10a{word-spacing:9.696000px;}
.wsd5{word-spacing:9.840000px;}
.ws148{word-spacing:9.888000px;}
.ws81{word-spacing:9.960000px;}
.ws149{word-spacing:9.984000px;}
.wsd1{word-spacing:10.200000px;}
.wsbb{word-spacing:10.260000px;}
.ws5c{word-spacing:10.380000px;}
.wsb9{word-spacing:10.500000px;}
.wsdd{word-spacing:10.740000px;}
.ws6d{word-spacing:10.800000px;}
.wsee{word-spacing:11.040000px;}
.ws13d{word-spacing:11.088000px;}
.ws5d{word-spacing:11.100000px;}
.ws41{word-spacing:11.220000px;}
.ws51{word-spacing:11.280000px;}
.ws5b{word-spacing:11.340000px;}
.ws165{word-spacing:11.376000px;}
.ws166{word-spacing:11.472000px;}
.wsd4{word-spacing:11.640000px;}
.ws7f{word-spacing:11.760000px;}
.wsbc{word-spacing:11.880000px;}
.ws11b{word-spacing:12.000000px;}
.ws1d{word-spacing:12.120000px;}
.wseb{word-spacing:12.300000px;}
.ws1f{word-spacing:12.420000px;}
.ws125{word-spacing:12.672000px;}
.wsfc{word-spacing:12.960000px;}
.ws132{word-spacing:13.488000px;}
.ws60{word-spacing:13.680000px;}
.ws16b{word-spacing:13.872000px;}
.ws15e{word-spacing:13.920000px;}
.ws104{word-spacing:14.112000px;}
.wse9{word-spacing:14.400000px;}
.ws80{word-spacing:14.640000px;}
.wsdf{word-spacing:14.820000px;}
.ws7a{word-spacing:15.060000px;}
.ws12f{word-spacing:15.216000px;}
.ws170{word-spacing:15.840000px;}
.ws16f{word-spacing:15.984000px;}
.ws154{word-spacing:17.040000px;}
.ws6c{word-spacing:17.220000px;}
.ws22{word-spacing:17.280000px;}
.wscd{word-spacing:18.720000px;}
.ws156{word-spacing:18.816000px;}
.ws1e{word-spacing:19.740000px;}
.ws71{word-spacing:26.520000px;}
.wsaa{word-spacing:46.712400px;}
.wsad{word-spacing:50.555400px;}
.ws9a{word-spacing:62.525400px;}
.wsb6{word-spacing:77.730000px;}
.ws9f{word-spacing:105.043800px;}
.wsa2{word-spacing:195.787200px;}
.wsab{word-spacing:283.774800px;}
.wsac{word-spacing:293.980800px;}
.ws9d{word-spacing:298.684200px;}
.wsa9{word-spacing:424.635000px;}
.wsa0{word-spacing:498.960000px;}
._7{margin-left:-1747.379400px;}
._b{margin-left:-57.264000px;}
._a{margin-left:-9.600000px;}
._6{margin-left:-8.414400px;}
._8{margin-left:-6.848400px;}
._0{margin-left:-5.337600px;}
._9{margin-left:-3.823200px;}
._1{margin-left:-2.678400px;}
._2{margin-left:-1.396800px;}
._3{width:1.080600px;}
._5{width:2.328000px;}
._1a{width:3.360000px;}
._4{width:4.401600px;}
._13{width:24.387600px;}
._f{width:47.460600px;}
._d{width:60.972000px;}
._17{width:70.026000px;}
._12{width:72.942000px;}
._10{width:74.196000px;}
._18{width:92.133600px;}
._16{width:96.160200px;}
._11{width:98.764800px;}
._e{width:114.215400px;}
._1b{width:223.638600px;}
._15{width:241.761000px;}
._1c{width:288.172200px;}
._19{width:293.638800px;}
._14{width:496.798800px;}
._c{width:1036.985400px;}
.fc7{color:transparent;}
.fc3{color:rgb(68,65,65);}
.fc1{color:rgb(79,76,77);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(57,53,54);}
.fc4{color:rgb(46,42,43);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:37.152000px;}
.fs5{font-size:38.478000px;}
.fsa{font-size:38.880000px;}
.fs2{font-size:42.000000px;}
.fs8{font-size:42.120000px;}
.fsb{font-size:43.200000px;}
.fs9{font-size:46.800000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:240.000000px;}
.y181{bottom:-394.444950px;}
.y84{bottom:-362.191050px;}
.y93{bottom:-330.133200px;}
.y92{bottom:-303.223200px;}
.y91{bottom:-276.313200px;}
.y90{bottom:-249.403200px;}
.y8f{bottom:-222.493200px;}
.y8e{bottom:-195.583200px;}
.y8d{bottom:-168.673200px;}
.y8c{bottom:-141.763200px;}
.y8b{bottom:-114.853200px;}
.y8a{bottom:-87.943200px;}
.y89{bottom:-61.267200px;}
.y186{bottom:-48.197100px;}
.y88{bottom:-34.357200px;}
.y185{bottom:-24.436950px;}
.y87{bottom:-10.255200px;}
.y184{bottom:-1.972950px;}
.y0{bottom:0.000000px;}
.y5{bottom:48.216450px;}
.y120{bottom:88.635000px;}
.y29{bottom:90.062850px;}
.y3f{bottom:97.795200px;}
.y7c{bottom:97.795350px;}
.y28{bottom:104.462850px;}
.y11f{bottom:105.135000px;}
.y3e{bottom:115.795200px;}
.y7b{bottom:115.795350px;}
.y11e{bottom:121.635000px;}
.y27{bottom:127.396350px;}
.y3d{bottom:133.795200px;}
.y7a{bottom:133.795350px;}
.y11d{bottom:138.135000px;}
.y26{bottom:141.766350px;}
.ycd{bottom:151.096500px;}
.y3c{bottom:151.795200px;}
.y79{bottom:151.795350px;}
.y11c{bottom:154.635000px;}
.y25{bottom:156.145350px;}
.y143{bottom:162.993750px;}
.ycc{bottom:167.596500px;}
.y3b{bottom:169.795200px;}
.y81{bottom:169.795350px;}
.y11b{bottom:171.135000px;}
.y24{bottom:179.049000px;}
.y107{bottom:179.493750px;}
.ycb{bottom:184.096500px;}
.y11a{bottom:187.635000px;}
.y3a{bottom:187.795200px;}
.y78{bottom:187.795350px;}
.y106{bottom:195.993750px;}
.yca{bottom:200.596500px;}
.y119{bottom:204.135000px;}
.y39{bottom:205.795200px;}
.y80{bottom:205.795350px;}
.y105{bottom:212.493750px;}
.yc9{bottom:217.096500px;}
.y118{bottom:220.635000px;}
.y183{bottom:222.667050px;}
.y38{bottom:223.795200px;}
.y77{bottom:223.795350px;}
.y104{bottom:228.993750px;}
.yc8{bottom:233.596500px;}
.y117{bottom:237.135000px;}
.y37{bottom:241.795200px;}
.y76{bottom:241.795350px;}
.y103{bottom:245.493750px;}
.y182{bottom:247.507050px;}
.yc7{bottom:250.096500px;}
.y116{bottom:253.635000px;}
.y17d{bottom:254.503350px;}
.y36{bottom:259.795200px;}
.y75{bottom:259.795350px;}
.y102{bottom:261.993750px;}
.y115{bottom:270.135000px;}
.yc6{bottom:274.737750px;}
.y35{bottom:277.795200px;}
.y74{bottom:277.795350px;}
.y101{bottom:278.493750px;}
.y17c{bottom:285.138300px;}
.y114{bottom:286.635000px;}
.yc5{bottom:291.237750px;}
.y100{bottom:294.993750px;}
.y23{bottom:295.795200px;}
.y73{bottom:295.795350px;}
.y17b{bottom:301.638300px;}
.y113{bottom:303.135000px;}
.y86{bottom:306.346800px;}
.yc4{bottom:307.737750px;}
.y142{bottom:311.493750px;}
.y22{bottom:313.795200px;}
.y72{bottom:313.795350px;}
.y17a{bottom:318.138300px;}
.yff{bottom:319.635000px;}
.yc3{bottom:324.237750px;}
.y112{bottom:327.776400px;}
.y141{bottom:327.993750px;}
.y21{bottom:331.795200px;}
.y71{bottom:331.795350px;}
.y85{bottom:333.256800px;}
.y179{bottom:334.638300px;}
.yfe{bottom:336.135000px;}
.yc2{bottom:340.737750px;}
.y111{bottom:344.276400px;}
.y140{bottom:344.493750px;}
.y14b{bottom:346.000200px;}
.y20{bottom:349.795200px;}
.y70{bottom:349.795350px;}
.y178{bottom:351.138300px;}
.yfd{bottom:352.635000px;}
.y17f{bottom:354.283500px;}
.yc1{bottom:357.237750px;}
.y110{bottom:360.776400px;}
.y13f{bottom:360.993750px;}
.y14a{bottom:361.000200px;}
.y1f{bottom:367.795200px;}
.y6f{bottom:367.795350px;}
.yfc{bottom:369.135000px;}
.y17e{bottom:369.283500px;}
.yc0{bottom:373.737750px;}
.y149{bottom:376.000200px;}
.y177{bottom:376.870050px;}
.y10f{bottom:377.276400px;}
.y13e{bottom:377.493750px;}
.yfb{bottom:385.635000px;}
.y1e{bottom:385.795200px;}
.y6e{bottom:385.795350px;}
.ybf{bottom:390.237750px;}
.y148{bottom:391.000200px;}
.y176{bottom:393.370050px;}
.y10e{bottom:393.776400px;}
.y13d{bottom:393.993750px;}
.y180{bottom:398.091000px;}
.yfa{bottom:402.135000px;}
.y1d{bottom:403.795200px;}
.y6d{bottom:403.795350px;}
.y147{bottom:406.000200px;}
.ybe{bottom:406.737750px;}
.y175{bottom:409.870050px;}
.y10d{bottom:410.276400px;}
.y13c{bottom:410.493750px;}
.y146{bottom:421.000200px;}
.y1c{bottom:421.795200px;}
.y6c{bottom:421.795350px;}
.y174{bottom:426.370050px;}
.yf9{bottom:426.776400px;}
.y13b{bottom:426.993750px;}
.ybd{bottom:431.379000px;}
.y1b{bottom:439.795200px;}
.y7f{bottom:439.795350px;}
.y173{bottom:442.870050px;}
.yf8{bottom:443.276400px;}
.ybc{bottom:447.879000px;}
.y13a{bottom:451.635150px;}
.y1a{bottom:457.795200px;}
.y6b{bottom:457.795350px;}
.y172{bottom:459.370050px;}
.yf7{bottom:459.776400px;}
.ybb{bottom:464.379000px;}
.y139{bottom:468.135150px;}
.y19{bottom:475.795200px;}
.y7e{bottom:475.795350px;}
.y171{bottom:475.870050px;}
.yf6{bottom:476.276400px;}
.yba{bottom:480.879000px;}
.y138{bottom:484.635150px;}
.y170{bottom:492.370050px;}
.yf5{bottom:492.776400px;}
.y34{bottom:493.795200px;}
.y6a{bottom:493.795350px;}
.yb9{bottom:497.379000px;}
.y137{bottom:501.135150px;}
.y16f{bottom:508.870050px;}
.yf4{bottom:509.276400px;}
.y18{bottom:511.795200px;}
.y69{bottom:511.795350px;}
.yb8{bottom:513.879000px;}
.y136{bottom:517.635150px;}
.y16e{bottom:525.370050px;}
.yf3{bottom:525.776400px;}
.y17{bottom:529.795200px;}
.y68{bottom:529.795350px;}
.yb7{bottom:530.379000px;}
.y135{bottom:534.135150px;}
.y16d{bottom:541.870050px;}
.yf2{bottom:542.276400px;}
.yb6{bottom:546.879000px;}
.y16{bottom:547.795200px;}
.y67{bottom:547.795350px;}
.y134{bottom:550.635150px;}
.y16c{bottom:558.370050px;}
.yf1{bottom:558.776400px;}
.y15{bottom:565.795200px;}
.y66{bottom:565.795350px;}
.y10c{bottom:566.917650px;}
.y133{bottom:567.135150px;}
.yb5{bottom:571.520250px;}
.yf0{bottom:575.276400px;}
.y10b{bottom:583.417650px;}
.y132{bottom:583.635150px;}
.y14{bottom:583.795200px;}
.y65{bottom:583.795350px;}
.y16b{bottom:584.101800px;}
.yb4{bottom:588.020250px;}
.y145{bottom:591.776400px;}
.yef{bottom:599.917650px;}
.y13{bottom:601.795200px;}
.y64{bottom:601.795350px;}
.yb3{bottom:604.520250px;}
.y131{bottom:608.276400px;}
.y16a{bottom:609.833550px;}
.yee{bottom:616.417650px;}
.y12{bottom:619.795200px;}
.y63{bottom:619.795350px;}
.y83{bottom:619.795500px;}
.yb2{bottom:621.020250px;}
.y130{bottom:624.776400px;}
.y169{bottom:626.333550px;}
.yed{bottom:632.917650px;}
.yb1{bottom:637.520250px;}
.y11{bottom:637.795200px;}
.y62{bottom:637.795350px;}
.y12f{bottom:641.276400px;}
.y168{bottom:642.833550px;}
.yec{bottom:649.417650px;}
.y10{bottom:655.795200px;}
.y61{bottom:655.795350px;}
.y12e{bottom:657.776400px;}
.y167{bottom:659.333550px;}
.yb0{bottom:662.161500px;}
.yeb{bottom:665.917650px;}
.yf{bottom:673.795200px;}
.y60{bottom:673.795350px;}
.y12d{bottom:674.276400px;}
.y166{bottom:675.833550px;}
.yaf{bottom:678.661500px;}
.yea{bottom:682.417650px;}
.y12c{bottom:690.776400px;}
.ye{bottom:691.795200px;}
.y5f{bottom:691.795350px;}
.yae{bottom:695.161500px;}
.ye9{bottom:698.917650px;}
.y165{bottom:701.565300px;}
.y10a{bottom:707.058900px;}
.y144{bottom:707.276400px;}
.y33{bottom:709.795200px;}
.y5e{bottom:709.795350px;}
.yad{bottom:711.661500px;}
.ye8{bottom:715.417650px;}
.y164{bottom:718.065300px;}
.y109{bottom:723.558900px;}
.y32{bottom:727.795200px;}
.y5d{bottom:727.795350px;}
.yac{bottom:728.161500px;}
.y12b{bottom:731.917650px;}
.yd{bottom:733.289700px;}
.y163{bottom:734.565300px;}
.ye7{bottom:740.058900px;}
.yab{bottom:744.661500px;}
.y31{bottom:745.795200px;}
.y5c{bottom:745.795350px;}
.y12a{bottom:748.417650px;}
.y162{bottom:751.065300px;}
.yc{bottom:751.289700px;}
.ye6{bottom:756.558900px;}
.yaa{bottom:761.161500px;}
.y30{bottom:763.795200px;}
.y5b{bottom:763.795350px;}
.y129{bottom:764.917650px;}
.y161{bottom:767.565300px;}
.yb{bottom:769.289850px;}
.ye5{bottom:773.058900px;}
.ya9{bottom:777.661500px;}
.y128{bottom:781.417650px;}
.ya{bottom:781.795200px;}
.y5a{bottom:781.795350px;}
.y160{bottom:784.065300px;}
.ye4{bottom:789.558900px;}
.ya8{bottom:794.161500px;}
.y127{bottom:797.917650px;}
.y2f{bottom:799.795200px;}
.y59{bottom:799.795350px;}
.y15f{bottom:800.565300px;}
.ye3{bottom:806.058900px;}
.ya7{bottom:810.661500px;}
.y126{bottom:814.417650px;}
.y15e{bottom:817.065300px;}
.y2e{bottom:817.795200px;}
.y58{bottom:817.795350px;}
.ye2{bottom:822.558900px;}
.ya6{bottom:827.161500px;}
.y125{bottom:830.917650px;}
.y9{bottom:835.795200px;}
.y57{bottom:835.795350px;}
.ye1{bottom:839.058900px;}
.y15d{bottom:842.797050px;}
.ya5{bottom:843.661500px;}
.y124{bottom:847.417650px;}
.y2d{bottom:853.795200px;}
.y56{bottom:853.795350px;}
.ye0{bottom:855.558900px;}
.y15c{bottom:859.297050px;}
.ya4{bottom:860.161500px;}
.y2c{bottom:871.795200px;}
.y187{bottom:871.795350px;}
.ydf{bottom:872.058900px;}
.y15b{bottom:875.797050px;}
.ya3{bottom:876.661500px;}
.yde{bottom:888.558900px;}
.y8{bottom:889.795200px;}
.y55{bottom:889.795350px;}
.y15a{bottom:892.297050px;}
.ya2{bottom:901.302900px;}
.ydd{bottom:905.058900px;}
.y2b{bottom:907.795200px;}
.y82{bottom:907.795350px;}
.y159{bottom:908.797050px;}
.ya1{bottom:917.802900px;}
.ydc{bottom:921.558900px;}
.y158{bottom:925.297050px;}
.y54{bottom:925.795350px;}
.ya0{bottom:934.302900px;}
.ydb{bottom:938.058900px;}
.y157{bottom:941.797050px;}
.y7{bottom:943.795200px;}
.y53{bottom:943.795350px;}
.y9f{bottom:950.802900px;}
.yda{bottom:954.558900px;}
.y156{bottom:958.297050px;}
.y48{bottom:961.795200px;}
.y52{bottom:961.795350px;}
.y9e{bottom:967.302900px;}
.yd9{bottom:971.058900px;}
.y155{bottom:974.797050px;}
.y123{bottom:979.200150px;}
.y47{bottom:979.795200px;}
.y51{bottom:979.795350px;}
.y9d{bottom:983.802900px;}
.yd8{bottom:987.558900px;}
.y154{bottom:991.297050px;}
.y122{bottom:995.700150px;}
.y6{bottom:997.795200px;}
.y50{bottom:997.795350px;}
.yd7{bottom:1004.058900px;}
.y9c{bottom:1008.444150px;}
.y121{bottom:1012.200150px;}
.y46{bottom:1015.795200px;}
.y4f{bottom:1015.795350px;}
.y153{bottom:1017.028800px;}
.yd6{bottom:1020.558900px;}
.y9b{bottom:1024.944150px;}
.y108{bottom:1028.700150px;}
.y152{bottom:1033.528800px;}
.y45{bottom:1033.795200px;}
.y4e{bottom:1033.795350px;}
.y9a{bottom:1041.444150px;}
.yd5{bottom:1045.200150px;}
.y151{bottom:1050.028800px;}
.y4d{bottom:1051.795350px;}
.y99{bottom:1057.944150px;}
.yd4{bottom:1061.700150px;}
.y150{bottom:1066.528800px;}
.y44{bottom:1069.795200px;}
.y4c{bottom:1069.795350px;}
.y98{bottom:1074.444150px;}
.yd3{bottom:1078.200150px;}
.y14f{bottom:1083.028800px;}
.y43{bottom:1087.795200px;}
.y4b{bottom:1087.795350px;}
.yd2{bottom:1094.700150px;}
.y97{bottom:1099.085400px;}
.y42{bottom:1105.795200px;}
.y14c{bottom:1105.795350px;}
.y14e{bottom:1108.760550px;}
.yd1{bottom:1111.200150px;}
.y96{bottom:1111.685250px;}
.y14d{bottom:1123.160550px;}
.y41{bottom:1123.795200px;}
.y4a{bottom:1123.795350px;}
.y95{bottom:1124.285400px;}
.yd0{bottom:1135.841400px;}
.y1{bottom:1136.362500px;}
.y40{bottom:1141.795200px;}
.y7d{bottom:1141.795350px;}
.ycf{bottom:1148.441400px;}
.y94{bottom:1159.795200px;}
.y49{bottom:1159.795350px;}
.yce{bottom:1161.041400px;}
.y4{bottom:1188.843000px;}
.y2a{bottom:1200.961200px;}
.y3{bottom:1202.343000px;}
.y2{bottom:1215.843000px;}
.h1a{height:25.814109px;}
.h16{height:27.014766px;}
.h13{height:28.073145px;}
.h10{height:29.265996px;}
.h17{height:29.278125px;}
.h18{height:29.995313px;}
.h19{height:30.016406px;}
.h7{height:31.482000px;}
.h11{height:31.717969px;}
.h14{height:32.130000px;}
.h12{height:32.494922px;}
.h4{height:34.062000px;}
.hc{height:34.176000px;}
.h9{height:36.720000px;}
.h3{height:38.880000px;}
.ha{height:38.927400px;}
.hb{height:38.928000px;}
.h8{height:39.096000px;}
.he{height:43.620000px;}
.hd{height:48.660000px;}
.h6{height:49.144068px;}
.h2{height:64.224000px;}
.h5{height:169.680000px;}
.h15{height:203.704500px;}
.hf{height:270.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:372.046500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xd{left:-41.337900px;}
.xb{left:-23.787900px;}
.x3d{left:-2.407200px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.xf{left:69.943200px;}
.x1e{left:72.658350px;}
.x36{left:77.183850px;}
.x1{left:83.976450px;}
.x5{left:85.039350px;}
.x9{left:95.728350px;}
.x35{left:106.163700px;}
.x1f{left:125.858250px;}
.x10{left:145.912800px;}
.x38{left:158.740050px;}
.x33{left:207.537150px;}
.x30{left:208.923300px;}
.x20{left:210.739800px;}
.x31{left:216.357150px;}
.x11{left:221.070450px;}
.x2f{left:222.468000px;}
.x2a{left:223.596750px;}
.x27{left:226.836000px;}
.x28{left:275.314950px;}
.x12{left:290.772150px;}
.xe{left:305.331300px;}
.x39{left:321.265650px;}
.x37{left:338.792700px;}
.x13{left:351.324750px;}
.x21{left:355.212750px;}
.xc{left:362.799300px;}
.x3c{left:380.272650px;}
.xa{left:390.781950px;}
.x14{left:440.106150px;}
.x2d{left:441.822750px;}
.x2e{left:442.972500px;}
.x22{left:445.797000px;}
.x2b{left:448.568850px;}
.x32{left:449.765850px;}
.x34{left:451.834350px;}
.x7{left:457.086600px;}
.x3a{left:466.976700px;}
.x8{left:478.346400px;}
.x23{left:483.541350px;}
.x15{left:498.838200px;}
.x2c{left:549.246150px;}
.x16{left:556.241850px;}
.x17{left:562.158450px;}
.x3b{left:594.845400px;}
.x24{left:625.039350px;}
.x18{left:633.207300px;}
.x3{left:639.006000px;}
.x19{left:647.854500px;}
.x2{left:706.194000px;}
.x25{left:716.385150px;}
.x1b{left:719.099100px;}
.x1a{left:723.367200px;}
.x1c{left:792.410850px;}
.x1d{left:802.905450px;}
.x29{left:804.086850px;}
.x26{left:807.814200px;}
.x6{left:811.962150px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536533pt;}
.ls0{letter-spacing:-4.266667pt;}
.ls1b{letter-spacing:-3.696000pt;}
.ls15{letter-spacing:-2.725333pt;}
.lsf{letter-spacing:-1.082667pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-1.045333pt;}
.ls22{letter-spacing:-0.981333pt;}
.ls26{letter-spacing:-0.938667pt;}
.ls18{letter-spacing:-0.933333pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls23{letter-spacing:-0.725333pt;}
.ls8{letter-spacing:-0.720000pt;}
.lse{letter-spacing:-0.709333pt;}
.ls21{letter-spacing:-0.682667pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.554667pt;}
.ls1f{letter-spacing:-0.469333pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.298667pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:-0.234667pt;}
.lsc{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.170667pt;}
.ls12{letter-spacing:-0.149333pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.112000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.198144pt;}
.ls24{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.264192pt;}
.ls1d{letter-spacing:0.297216pt;}
.ls6{letter-spacing:1.600000pt;}
.ls7{letter-spacing:21.133867pt;}
.ls19{letter-spacing:84.922667pt;}
.wsdc{word-spacing:-20.000000pt;}
.wsc2{word-spacing:-12.213333pt;}
.ws63{word-spacing:-12.106667pt;}
.ws6{word-spacing:-11.088000pt;}
.ws99{word-spacing:-10.117333pt;}
.wsff{word-spacing:-9.770667pt;}
.wsc3{word-spacing:-9.685333pt;}
.ws100{word-spacing:-9.557333pt;}
.ws142{word-spacing:-9.472000pt;}
.ws3{word-spacing:-9.386667pt;}
.ws4{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.301333pt;}
.ws101{word-spacing:-9.216000pt;}
.ws102{word-spacing:-9.088000pt;}
.ws103{word-spacing:-9.045333pt;}
.ws143{word-spacing:-8.789333pt;}
.wsc4{word-spacing:-8.553216pt;}
.ws9c{word-spacing:-8.474667pt;}
.ws9b{word-spacing:-8.362667pt;}
.wsa1{word-spacing:-8.138667pt;}
.wsb5{word-spacing:-8.026667pt;}
.ws1{word-spacing:-7.832411pt;}
.ws0{word-spacing:-7.558789pt;}
.wsae{word-spacing:-7.429333pt;}
.ws9e{word-spacing:-7.392000pt;}
.ws42{word-spacing:-3.146667pt;}
.ws65{word-spacing:-2.880000pt;}
.ws2b{word-spacing:-2.720000pt;}
.ws133{word-spacing:-2.602667pt;}
.ws110{word-spacing:-2.517333pt;}
.ws31{word-spacing:-2.506667pt;}
.ws54{word-spacing:-2.400000pt;}
.wsd8{word-spacing:-2.346667pt;}
.wsf1{word-spacing:-2.293333pt;}
.wsf7{word-spacing:-2.186667pt;}
.ws151{word-spacing:-2.176000pt;}
.ws38{word-spacing:-2.026667pt;}
.ws18{word-spacing:-2.005333pt;}
.ws5a{word-spacing:-1.973333pt;}
.ws62{word-spacing:-1.920000pt;}
.ws87{word-spacing:-1.866667pt;}
.wsf5{word-spacing:-1.813333pt;}
.ws17{word-spacing:-1.792000pt;}
.ws90{word-spacing:-1.760000pt;}
.ws78{word-spacing:-1.706667pt;}
.ws10f{word-spacing:-1.664000pt;}
.wse8{word-spacing:-1.653333pt;}
.wsfd{word-spacing:-1.621333pt;}
.ws2c{word-spacing:-1.600000pt;}
.wsd2{word-spacing:-1.546667pt;}
.ws10e{word-spacing:-1.536000pt;}
.ws141{word-spacing:-1.408000pt;}
.ws74{word-spacing:-1.386667pt;}
.ws106{word-spacing:-1.365333pt;}
.ws45{word-spacing:-1.333333pt;}
.ws16{word-spacing:-1.280000pt;}
.ws82{word-spacing:-1.248000pt;}
.ws14f{word-spacing:-1.237333pt;}
.wse7{word-spacing:-1.226667pt;}
.ws108{word-spacing:-1.194667pt;}
.ws117{word-spacing:-1.152000pt;}
.wsf8{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.109333pt;}
.ws67{word-spacing:-1.066667pt;}
.wsd7{word-spacing:-1.013333pt;}
.ws14a{word-spacing:-0.981333pt;}
.ws66{word-spacing:-0.960000pt;}
.ws14d{word-spacing:-0.938667pt;}
.ws72{word-spacing:-0.906667pt;}
.ws155{word-spacing:-0.896000pt;}
.ws95{word-spacing:-0.853333pt;}
.ws138{word-spacing:-0.810667pt;}
.ws139{word-spacing:-0.768000pt;}
.ws36{word-spacing:-0.746667pt;}
.ws15d{word-spacing:-0.725333pt;}
.ws15f{word-spacing:-0.682667pt;}
.ws86{word-spacing:-0.640000pt;}
.wsc9{word-spacing:-0.586667pt;}
.wsc{word-spacing:-0.554667pt;}
.wsf0{word-spacing:-0.533333pt;}
.wsde{word-spacing:-0.480000pt;}
.ws14b{word-spacing:-0.469333pt;}
.ws8c{word-spacing:-0.426667pt;}
.wsc1{word-spacing:-0.410667pt;}
.ws11d{word-spacing:-0.384000pt;}
.wsda{word-spacing:-0.341333pt;}
.wsb2{word-spacing:-0.336000pt;}
.wscc{word-spacing:-0.320000pt;}
.ws158{word-spacing:-0.298667pt;}
.ws3d{word-spacing:-0.266667pt;}
.wsa5{word-spacing:-0.224000pt;}
.wsa{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.170667pt;}
.wsc6{word-spacing:-0.160000pt;}
.wsdb{word-spacing:-0.132096pt;}
.ws9{word-spacing:-0.128000pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws123{word-spacing:-0.085333pt;}
.ws77{word-spacing:-0.053333pt;}
.wsd9{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws124{word-spacing:0.042667pt;}
.wse4{word-spacing:0.053333pt;}
.ws14{word-spacing:0.085333pt;}
.wscf{word-spacing:0.106667pt;}
.wsa7{word-spacing:0.112000pt;}
.wsa6{word-spacing:0.149333pt;}
.wsf2{word-spacing:0.160000pt;}
.ws64{word-spacing:0.170667pt;}
.ws59{word-spacing:0.213333pt;}
.wsa3{word-spacing:0.224000pt;}
.ws7{word-spacing:0.234667pt;}
.ws167{word-spacing:0.256000pt;}
.ws7e{word-spacing:0.266667pt;}
.ws105{word-spacing:0.298667pt;}
.ws75{word-spacing:0.320000pt;}
.wsbf{word-spacing:0.336000pt;}
.ws10c{word-spacing:0.341333pt;}
.ws39{word-spacing:0.373333pt;}
.wsa8{word-spacing:0.410667pt;}
.ws19{word-spacing:0.426667pt;}
.wsb1{word-spacing:0.448000pt;}
.ws8{word-spacing:0.469333pt;}
.ws79{word-spacing:0.480000pt;}
.wse1{word-spacing:0.533333pt;}
.ws113{word-spacing:0.554667pt;}
.wse5{word-spacing:0.586667pt;}
.wsba{word-spacing:0.640000pt;}
.ws13b{word-spacing:0.682667pt;}
.wsa4{word-spacing:0.709333pt;}
.ws153{word-spacing:0.768000pt;}
.ws109{word-spacing:0.810667pt;}
.wsb3{word-spacing:0.896000pt;}
.ws57{word-spacing:0.906667pt;}
.wsb4{word-spacing:0.933333pt;}
.wsfe{word-spacing:0.938667pt;}
.ws4c{word-spacing:0.960000pt;}
.ws107{word-spacing:0.981333pt;}
.wsfa{word-spacing:1.013333pt;}
.wse{word-spacing:1.024000pt;}
.ws8d{word-spacing:1.066667pt;}
.wsaf{word-spacing:1.082667pt;}
.ws12b{word-spacing:1.109333pt;}
.ws69{word-spacing:1.120000pt;}
.ws120{word-spacing:1.152000pt;}
.ws3f{word-spacing:1.173333pt;}
.ws160{word-spacing:1.194667pt;}
.ws3c{word-spacing:1.226667pt;}
.wsd{word-spacing:1.237333pt;}
.ws37{word-spacing:1.280000pt;}
.ws116{word-spacing:1.322667pt;}
.wse0{word-spacing:1.333333pt;}
.ws162{word-spacing:1.365333pt;}
.ws6f{word-spacing:1.440000pt;}
.ws114{word-spacing:1.450667pt;}
.ws8b{word-spacing:1.493333pt;}
.wsc7{word-spacing:1.600000pt;}
.ws11a{word-spacing:1.621333pt;}
.wsc8{word-spacing:1.653333pt;}
.ws12a{word-spacing:1.664000pt;}
.ws88{word-spacing:1.706667pt;}
.ws13{word-spacing:1.749333pt;}
.ws15a{word-spacing:1.792000pt;}
.ws70{word-spacing:1.813333pt;}
.wsf4{word-spacing:1.866667pt;}
.ws146{word-spacing:1.877333pt;}
.ws136{word-spacing:1.962667pt;}
.wsb8{word-spacing:1.973333pt;}
.ws76{word-spacing:2.026667pt;}
.ws97{word-spacing:2.080000pt;}
.ws152{word-spacing:2.090667pt;}
.ws58{word-spacing:2.133333pt;}
.ws14e{word-spacing:2.176000pt;}
.ws44{word-spacing:2.186667pt;}
.ws12d{word-spacing:2.218667pt;}
.wsf{word-spacing:2.261333pt;}
.wsf9{word-spacing:2.293333pt;}
.ws129{word-spacing:2.304000pt;}
.ws131{word-spacing:2.346667pt;}
.ws3a{word-spacing:2.400000pt;}
.wsb{word-spacing:2.474667pt;}
.wsec{word-spacing:2.506667pt;}
.ws137{word-spacing:2.517333pt;}
.wsbe{word-spacing:2.560000pt;}
.ws21{word-spacing:2.613333pt;}
.ws3b{word-spacing:2.666667pt;}
.wsb0{word-spacing:2.725333pt;}
.ws128{word-spacing:2.730667pt;}
.wsca{word-spacing:2.773333pt;}
.ws119{word-spacing:2.816000pt;}
.ws13a{word-spacing:2.858667pt;}
.ws68{word-spacing:2.880000pt;}
.ws10d{word-spacing:2.901333pt;}
.ws12c{word-spacing:2.944000pt;}
.ws145{word-spacing:2.986667pt;}
.ws111{word-spacing:3.029333pt;}
.ws93{word-spacing:3.040000pt;}
.wsef{word-spacing:3.093333pt;}
.ws164{word-spacing:3.157333pt;}
.ws92{word-spacing:3.200000pt;}
.ws98{word-spacing:3.253333pt;}
.wsfb{word-spacing:3.306667pt;}
.ws4f{word-spacing:3.360000pt;}
.ws12{word-spacing:3.370667pt;}
.ws43{word-spacing:3.413333pt;}
.wsd3{word-spacing:3.466667pt;}
.ws50{word-spacing:3.520000pt;}
.ws89{word-spacing:3.573333pt;}
.ws11{word-spacing:3.626667pt;}
.ws122{word-spacing:3.669333pt;}
.wsc0{word-spacing:3.696000pt;}
.ws61{word-spacing:3.733333pt;}
.ws171{word-spacing:3.797333pt;}
.ws96{word-spacing:3.840000pt;}
.ws10b{word-spacing:3.882667pt;}
.wsf3{word-spacing:3.893333pt;}
.ws6a{word-spacing:4.000000pt;}
.ws2e{word-spacing:4.053333pt;}
.ws115{word-spacing:4.096000pt;}
.ws15b{word-spacing:4.138667pt;}
.ws2a{word-spacing:4.160000pt;}
.ws112{word-spacing:4.181333pt;}
.ws3e{word-spacing:4.213333pt;}
.ws23{word-spacing:4.266667pt;}
.wsea{word-spacing:4.320000pt;}
.ws7b{word-spacing:4.373333pt;}
.ws52{word-spacing:4.426667pt;}
.ws147{word-spacing:4.437333pt;}
.ws20{word-spacing:4.480000pt;}
.ws33{word-spacing:4.533333pt;}
.ws144{word-spacing:4.565333pt;}
.ws8a{word-spacing:4.586667pt;}
.ws12e{word-spacing:4.608000pt;}
.wsed{word-spacing:4.640000pt;}
.ws159{word-spacing:4.650667pt;}
.ws73{word-spacing:4.693333pt;}
.ws5e{word-spacing:4.746667pt;}
.ws6b{word-spacing:4.853333pt;}
.ws168{word-spacing:4.906667pt;}
.ws150{word-spacing:4.949333pt;}
.ws2f{word-spacing:4.960000pt;}
.ws83{word-spacing:5.013333pt;}
.ws13c{word-spacing:5.034667pt;}
.ws26{word-spacing:5.066667pt;}
.ws28{word-spacing:5.120000pt;}
.ws24{word-spacing:5.173333pt;}
.wsc5{word-spacing:5.226667pt;}
.ws8f{word-spacing:5.280000pt;}
.wscb{word-spacing:5.333333pt;}
.ws157{word-spacing:5.376000pt;}
.wse6{word-spacing:5.386667pt;}
.ws2d{word-spacing:5.493333pt;}
.ws56{word-spacing:5.546667pt;}
.ws118{word-spacing:5.589333pt;}
.ws27{word-spacing:5.600000pt;}
.ws161{word-spacing:5.632000pt;}
.ws13e{word-spacing:5.674667pt;}
.ws7c{word-spacing:5.706667pt;}
.ws121{word-spacing:5.717333pt;}
.ws32{word-spacing:5.760000pt;}
.ws16c{word-spacing:5.802667pt;}
.ws48{word-spacing:5.813333pt;}
.ws15c{word-spacing:5.845333pt;}
.ws6e{word-spacing:5.866667pt;}
.ws14c{word-spacing:5.930667pt;}
.wsbd{word-spacing:5.973333pt;}
.ws4b{word-spacing:6.026667pt;}
.wse2{word-spacing:6.080000pt;}
.ws34{word-spacing:6.186667pt;}
.wsce{word-spacing:6.240000pt;}
.ws13f{word-spacing:6.272000pt;}
.ws35{word-spacing:6.293333pt;}
.ws55{word-spacing:6.346667pt;}
.wsf6{word-spacing:6.453333pt;}
.ws140{word-spacing:6.485333pt;}
.ws84{word-spacing:6.506667pt;}
.ws85{word-spacing:6.560000pt;}
.ws126{word-spacing:6.570667pt;}
.ws127{word-spacing:6.613333pt;}
.wsb7{word-spacing:6.666667pt;}
.ws1c{word-spacing:6.720000pt;}
.ws135{word-spacing:6.784000pt;}
.ws91{word-spacing:6.986667pt;}
.ws4e{word-spacing:7.040000pt;}
.ws130{word-spacing:7.082667pt;}
.wsd6{word-spacing:7.093333pt;}
.ws163{word-spacing:7.125333pt;}
.ws40{word-spacing:7.146667pt;}
.ws5f{word-spacing:7.253333pt;}
.ws11e{word-spacing:7.296000pt;}
.ws1b{word-spacing:7.306667pt;}
.ws30{word-spacing:7.360000pt;}
.ws11f{word-spacing:7.381333pt;}
.ws11c{word-spacing:7.466667pt;}
.ws16a{word-spacing:7.552000pt;}
.ws8e{word-spacing:7.573333pt;}
.ws7d{word-spacing:7.626667pt;}
.ws134{word-spacing:7.765333pt;}
.ws46{word-spacing:7.786667pt;}
.ws4d{word-spacing:7.840000pt;}
.ws169{word-spacing:7.936000pt;}
.ws25{word-spacing:7.946667pt;}
.ws16d{word-spacing:7.978667pt;}
.ws47{word-spacing:8.000000pt;}
.ws94{word-spacing:8.053333pt;}
.ws49{word-spacing:8.106667pt;}
.ws4a{word-spacing:8.213333pt;}
.ws53{word-spacing:8.320000pt;}
.ws16e{word-spacing:8.362667pt;}
.ws29{word-spacing:8.373333pt;}
.wse3{word-spacing:8.480000pt;}
.wsd0{word-spacing:8.533333pt;}
.ws10a{word-spacing:8.618667pt;}
.wsd5{word-spacing:8.746667pt;}
.ws148{word-spacing:8.789333pt;}
.ws81{word-spacing:8.853333pt;}
.ws149{word-spacing:8.874667pt;}
.wsd1{word-spacing:9.066667pt;}
.wsbb{word-spacing:9.120000pt;}
.ws5c{word-spacing:9.226667pt;}
.wsb9{word-spacing:9.333333pt;}
.wsdd{word-spacing:9.546667pt;}
.ws6d{word-spacing:9.600000pt;}
.wsee{word-spacing:9.813333pt;}
.ws13d{word-spacing:9.856000pt;}
.ws5d{word-spacing:9.866667pt;}
.ws41{word-spacing:9.973333pt;}
.ws51{word-spacing:10.026667pt;}
.ws5b{word-spacing:10.080000pt;}
.ws165{word-spacing:10.112000pt;}
.ws166{word-spacing:10.197333pt;}
.wsd4{word-spacing:10.346667pt;}
.ws7f{word-spacing:10.453333pt;}
.wsbc{word-spacing:10.560000pt;}
.ws11b{word-spacing:10.666667pt;}
.ws1d{word-spacing:10.773333pt;}
.wseb{word-spacing:10.933333pt;}
.ws1f{word-spacing:11.040000pt;}
.ws125{word-spacing:11.264000pt;}
.wsfc{word-spacing:11.520000pt;}
.ws132{word-spacing:11.989333pt;}
.ws60{word-spacing:12.160000pt;}
.ws16b{word-spacing:12.330667pt;}
.ws15e{word-spacing:12.373333pt;}
.ws104{word-spacing:12.544000pt;}
.wse9{word-spacing:12.800000pt;}
.ws80{word-spacing:13.013333pt;}
.wsdf{word-spacing:13.173333pt;}
.ws7a{word-spacing:13.386667pt;}
.ws12f{word-spacing:13.525333pt;}
.ws170{word-spacing:14.080000pt;}
.ws16f{word-spacing:14.208000pt;}
.ws154{word-spacing:15.146667pt;}
.ws6c{word-spacing:15.306667pt;}
.ws22{word-spacing:15.360000pt;}
.wscd{word-spacing:16.640000pt;}
.ws156{word-spacing:16.725333pt;}
.ws1e{word-spacing:17.546667pt;}
.ws71{word-spacing:23.573333pt;}
.wsaa{word-spacing:41.522133pt;}
.wsad{word-spacing:44.938133pt;}
.ws9a{word-spacing:55.578133pt;}
.wsb6{word-spacing:69.093333pt;}
.ws9f{word-spacing:93.372267pt;}
.wsa2{word-spacing:174.033067pt;}
.wsab{word-spacing:252.244267pt;}
.wsac{word-spacing:261.316267pt;}
.ws9d{word-spacing:265.497067pt;}
.wsa9{word-spacing:377.453333pt;}
.wsa0{word-spacing:443.520000pt;}
._7{margin-left:-1553.226133pt;}
._b{margin-left:-50.901333pt;}
._a{margin-left:-8.533333pt;}
._6{margin-left:-7.479467pt;}
._8{margin-left:-6.087467pt;}
._0{margin-left:-4.744533pt;}
._9{margin-left:-3.398400pt;}
._1{margin-left:-2.380800pt;}
._2{margin-left:-1.241600pt;}
._3{width:0.960533pt;}
._5{width:2.069333pt;}
._1a{width:2.986667pt;}
._4{width:3.912533pt;}
._13{width:21.677867pt;}
._f{width:42.187200pt;}
._d{width:54.197333pt;}
._17{width:62.245333pt;}
._12{width:64.837333pt;}
._10{width:65.952000pt;}
._18{width:81.896533pt;}
._16{width:85.475733pt;}
._11{width:87.790933pt;}
._e{width:101.524800pt;}
._1b{width:198.789867pt;}
._15{width:214.898667pt;}
._1c{width:256.153067pt;}
._19{width:261.012267pt;}
._14{width:441.598933pt;}
._c{width:921.764800pt;}
.fsc{font-size:33.024000pt;}
.fs5{font-size:34.202667pt;}
.fsa{font-size:34.560000pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:37.440000pt;}
.fsb{font-size:38.400000pt;}
.fs9{font-size:41.600000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:213.333333pt;}
.y181{bottom:-350.617733pt;}
.y84{bottom:-321.947600pt;}
.y93{bottom:-293.451733pt;}
.y92{bottom:-269.531733pt;}
.y91{bottom:-245.611733pt;}
.y90{bottom:-221.691733pt;}
.y8f{bottom:-197.771733pt;}
.y8e{bottom:-173.851733pt;}
.y8d{bottom:-149.931733pt;}
.y8c{bottom:-126.011733pt;}
.y8b{bottom:-102.091733pt;}
.y8a{bottom:-78.171733pt;}
.y89{bottom:-54.459733pt;}
.y186{bottom:-42.841867pt;}
.y88{bottom:-30.539733pt;}
.y185{bottom:-21.721733pt;}
.y87{bottom:-9.115733pt;}
.y184{bottom:-1.753733pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:42.859067pt;}
.y120{bottom:78.786667pt;}
.y29{bottom:80.055867pt;}
.y3f{bottom:86.929067pt;}
.y7c{bottom:86.929200pt;}
.y28{bottom:92.855867pt;}
.y11f{bottom:93.453333pt;}
.y3e{bottom:102.929067pt;}
.y7b{bottom:102.929200pt;}
.y11e{bottom:108.120000pt;}
.y27{bottom:113.241200pt;}
.y3d{bottom:118.929067pt;}
.y7a{bottom:118.929200pt;}
.y11d{bottom:122.786667pt;}
.y26{bottom:126.014533pt;}
.ycd{bottom:134.308000pt;}
.y3c{bottom:134.929067pt;}
.y79{bottom:134.929200pt;}
.y11c{bottom:137.453333pt;}
.y25{bottom:138.795867pt;}
.y143{bottom:144.883333pt;}
.ycc{bottom:148.974667pt;}
.y3b{bottom:150.929067pt;}
.y81{bottom:150.929200pt;}
.y11b{bottom:152.120000pt;}
.y24{bottom:159.154667pt;}
.y107{bottom:159.550000pt;}
.ycb{bottom:163.641333pt;}
.y11a{bottom:166.786667pt;}
.y3a{bottom:166.929067pt;}
.y78{bottom:166.929200pt;}
.y106{bottom:174.216667pt;}
.yca{bottom:178.308000pt;}
.y119{bottom:181.453333pt;}
.y39{bottom:182.929067pt;}
.y80{bottom:182.929200pt;}
.y105{bottom:188.883333pt;}
.yc9{bottom:192.974667pt;}
.y118{bottom:196.120000pt;}
.y183{bottom:197.926267pt;}
.y38{bottom:198.929067pt;}
.y77{bottom:198.929200pt;}
.y104{bottom:203.550000pt;}
.yc8{bottom:207.641333pt;}
.y117{bottom:210.786667pt;}
.y37{bottom:214.929067pt;}
.y76{bottom:214.929200pt;}
.y103{bottom:218.216667pt;}
.y182{bottom:220.006267pt;}
.yc7{bottom:222.308000pt;}
.y116{bottom:225.453333pt;}
.y17d{bottom:226.225200pt;}
.y36{bottom:230.929067pt;}
.y75{bottom:230.929200pt;}
.y102{bottom:232.883333pt;}
.y115{bottom:240.120000pt;}
.yc6{bottom:244.211333pt;}
.y35{bottom:246.929067pt;}
.y74{bottom:246.929200pt;}
.y101{bottom:247.550000pt;}
.y17c{bottom:253.456267pt;}
.y114{bottom:254.786667pt;}
.yc5{bottom:258.878000pt;}
.y100{bottom:262.216667pt;}
.y23{bottom:262.929067pt;}
.y73{bottom:262.929200pt;}
.y17b{bottom:268.122933pt;}
.y113{bottom:269.453333pt;}
.y86{bottom:272.308267pt;}
.yc4{bottom:273.544667pt;}
.y142{bottom:276.883333pt;}
.y22{bottom:278.929067pt;}
.y72{bottom:278.929200pt;}
.y17a{bottom:282.789600pt;}
.yff{bottom:284.120000pt;}
.yc3{bottom:288.211333pt;}
.y112{bottom:291.356800pt;}
.y141{bottom:291.550000pt;}
.y21{bottom:294.929067pt;}
.y71{bottom:294.929200pt;}
.y85{bottom:296.228267pt;}
.y179{bottom:297.456267pt;}
.yfe{bottom:298.786667pt;}
.yc2{bottom:302.878000pt;}
.y111{bottom:306.023467pt;}
.y140{bottom:306.216667pt;}
.y14b{bottom:307.555733pt;}
.y20{bottom:310.929067pt;}
.y70{bottom:310.929200pt;}
.y178{bottom:312.122933pt;}
.yfd{bottom:313.453333pt;}
.y17f{bottom:314.918667pt;}
.yc1{bottom:317.544667pt;}
.y110{bottom:320.690133pt;}
.y13f{bottom:320.883333pt;}
.y14a{bottom:320.889067pt;}
.y1f{bottom:326.929067pt;}
.y6f{bottom:326.929200pt;}
.yfc{bottom:328.120000pt;}
.y17e{bottom:328.252000pt;}
.yc0{bottom:332.211333pt;}
.y149{bottom:334.222400pt;}
.y177{bottom:334.995600pt;}
.y10f{bottom:335.356800pt;}
.y13e{bottom:335.550000pt;}
.yfb{bottom:342.786667pt;}
.y1e{bottom:342.929067pt;}
.y6e{bottom:342.929200pt;}
.ybf{bottom:346.878000pt;}
.y148{bottom:347.555733pt;}
.y176{bottom:349.662267pt;}
.y10e{bottom:350.023467pt;}
.y13d{bottom:350.216667pt;}
.y180{bottom:353.858667pt;}
.yfa{bottom:357.453333pt;}
.y1d{bottom:358.929067pt;}
.y6d{bottom:358.929200pt;}
.y147{bottom:360.889067pt;}
.ybe{bottom:361.544667pt;}
.y175{bottom:364.328933pt;}
.y10d{bottom:364.690133pt;}
.y13c{bottom:364.883333pt;}
.y146{bottom:374.222400pt;}
.y1c{bottom:374.929067pt;}
.y6c{bottom:374.929200pt;}
.y174{bottom:378.995600pt;}
.yf9{bottom:379.356800pt;}
.y13b{bottom:379.550000pt;}
.ybd{bottom:383.448000pt;}
.y1b{bottom:390.929067pt;}
.y7f{bottom:390.929200pt;}
.y173{bottom:393.662267pt;}
.yf8{bottom:394.023467pt;}
.ybc{bottom:398.114667pt;}
.y13a{bottom:401.453467pt;}
.y1a{bottom:406.929067pt;}
.y6b{bottom:406.929200pt;}
.y172{bottom:408.328933pt;}
.yf7{bottom:408.690133pt;}
.ybb{bottom:412.781333pt;}
.y139{bottom:416.120133pt;}
.y19{bottom:422.929067pt;}
.y7e{bottom:422.929200pt;}
.y171{bottom:422.995600pt;}
.yf6{bottom:423.356800pt;}
.yba{bottom:427.448000pt;}
.y138{bottom:430.786800pt;}
.y170{bottom:437.662267pt;}
.yf5{bottom:438.023467pt;}
.y34{bottom:438.929067pt;}
.y6a{bottom:438.929200pt;}
.yb9{bottom:442.114667pt;}
.y137{bottom:445.453467pt;}
.y16f{bottom:452.328933pt;}
.yf4{bottom:452.690133pt;}
.y18{bottom:454.929067pt;}
.y69{bottom:454.929200pt;}
.yb8{bottom:456.781333pt;}
.y136{bottom:460.120133pt;}
.y16e{bottom:466.995600pt;}
.yf3{bottom:467.356800pt;}
.y17{bottom:470.929067pt;}
.y68{bottom:470.929200pt;}
.yb7{bottom:471.448000pt;}
.y135{bottom:474.786800pt;}
.y16d{bottom:481.662267pt;}
.yf2{bottom:482.023467pt;}
.yb6{bottom:486.114667pt;}
.y16{bottom:486.929067pt;}
.y67{bottom:486.929200pt;}
.y134{bottom:489.453467pt;}
.y16c{bottom:496.328933pt;}
.yf1{bottom:496.690133pt;}
.y15{bottom:502.929067pt;}
.y66{bottom:502.929200pt;}
.y10c{bottom:503.926800pt;}
.y133{bottom:504.120133pt;}
.yb5{bottom:508.018000pt;}
.yf0{bottom:511.356800pt;}
.y10b{bottom:518.593467pt;}
.y132{bottom:518.786800pt;}
.y14{bottom:518.929067pt;}
.y65{bottom:518.929200pt;}
.y16b{bottom:519.201600pt;}
.yb4{bottom:522.684667pt;}
.y145{bottom:526.023467pt;}
.yef{bottom:533.260133pt;}
.y13{bottom:534.929067pt;}
.y64{bottom:534.929200pt;}
.yb3{bottom:537.351333pt;}
.y131{bottom:540.690133pt;}
.y16a{bottom:542.074267pt;}
.yee{bottom:547.926800pt;}
.y12{bottom:550.929067pt;}
.y63{bottom:550.929200pt;}
.y83{bottom:550.929333pt;}
.yb2{bottom:552.018000pt;}
.y130{bottom:555.356800pt;}
.y169{bottom:556.740933pt;}
.yed{bottom:562.593467pt;}
.yb1{bottom:566.684667pt;}
.y11{bottom:566.929067pt;}
.y62{bottom:566.929200pt;}
.y12f{bottom:570.023467pt;}
.y168{bottom:571.407600pt;}
.yec{bottom:577.260133pt;}
.y10{bottom:582.929067pt;}
.y61{bottom:582.929200pt;}
.y12e{bottom:584.690133pt;}
.y167{bottom:586.074267pt;}
.yb0{bottom:588.588000pt;}
.yeb{bottom:591.926800pt;}
.yf{bottom:598.929067pt;}
.y60{bottom:598.929200pt;}
.y12d{bottom:599.356800pt;}
.y166{bottom:600.740933pt;}
.yaf{bottom:603.254667pt;}
.yea{bottom:606.593467pt;}
.y12c{bottom:614.023467pt;}
.ye{bottom:614.929067pt;}
.y5f{bottom:614.929200pt;}
.yae{bottom:617.921333pt;}
.ye9{bottom:621.260133pt;}
.y165{bottom:623.613600pt;}
.y10a{bottom:628.496800pt;}
.y144{bottom:628.690133pt;}
.y33{bottom:630.929067pt;}
.y5e{bottom:630.929200pt;}
.yad{bottom:632.588000pt;}
.ye8{bottom:635.926800pt;}
.y164{bottom:638.280267pt;}
.y109{bottom:643.163467pt;}
.y32{bottom:646.929067pt;}
.y5d{bottom:646.929200pt;}
.yac{bottom:647.254667pt;}
.y12b{bottom:650.593467pt;}
.yd{bottom:651.813067pt;}
.y163{bottom:652.946933pt;}
.ye7{bottom:657.830133pt;}
.yab{bottom:661.921333pt;}
.y31{bottom:662.929067pt;}
.y5c{bottom:662.929200pt;}
.y12a{bottom:665.260133pt;}
.y162{bottom:667.613600pt;}
.yc{bottom:667.813067pt;}
.ye6{bottom:672.496800pt;}
.yaa{bottom:676.588000pt;}
.y30{bottom:678.929067pt;}
.y5b{bottom:678.929200pt;}
.y129{bottom:679.926800pt;}
.y161{bottom:682.280267pt;}
.yb{bottom:683.813200pt;}
.ye5{bottom:687.163467pt;}
.ya9{bottom:691.254667pt;}
.y128{bottom:694.593467pt;}
.ya{bottom:694.929067pt;}
.y5a{bottom:694.929200pt;}
.y160{bottom:696.946933pt;}
.ye4{bottom:701.830133pt;}
.ya8{bottom:705.921333pt;}
.y127{bottom:709.260133pt;}
.y2f{bottom:710.929067pt;}
.y59{bottom:710.929200pt;}
.y15f{bottom:711.613600pt;}
.ye3{bottom:716.496800pt;}
.ya7{bottom:720.588000pt;}
.y126{bottom:723.926800pt;}
.y15e{bottom:726.280267pt;}
.y2e{bottom:726.929067pt;}
.y58{bottom:726.929200pt;}
.ye2{bottom:731.163467pt;}
.ya6{bottom:735.254667pt;}
.y125{bottom:738.593467pt;}
.y9{bottom:742.929067pt;}
.y57{bottom:742.929200pt;}
.ye1{bottom:745.830133pt;}
.y15d{bottom:749.152933pt;}
.ya5{bottom:749.921333pt;}
.y124{bottom:753.260133pt;}
.y2d{bottom:758.929067pt;}
.y56{bottom:758.929200pt;}
.ye0{bottom:760.496800pt;}
.y15c{bottom:763.819600pt;}
.ya4{bottom:764.588000pt;}
.y2c{bottom:774.929067pt;}
.y187{bottom:774.929200pt;}
.ydf{bottom:775.163467pt;}
.y15b{bottom:778.486267pt;}
.ya3{bottom:779.254667pt;}
.yde{bottom:789.830133pt;}
.y8{bottom:790.929067pt;}
.y55{bottom:790.929200pt;}
.y15a{bottom:793.152933pt;}
.ya2{bottom:801.158133pt;}
.ydd{bottom:804.496800pt;}
.y2b{bottom:806.929067pt;}
.y82{bottom:806.929200pt;}
.y159{bottom:807.819600pt;}
.ya1{bottom:815.824800pt;}
.ydc{bottom:819.163467pt;}
.y158{bottom:822.486267pt;}
.y54{bottom:822.929200pt;}
.ya0{bottom:830.491467pt;}
.ydb{bottom:833.830133pt;}
.y157{bottom:837.152933pt;}
.y7{bottom:838.929067pt;}
.y53{bottom:838.929200pt;}
.y9f{bottom:845.158133pt;}
.yda{bottom:848.496800pt;}
.y156{bottom:851.819600pt;}
.y48{bottom:854.929067pt;}
.y52{bottom:854.929200pt;}
.y9e{bottom:859.824800pt;}
.yd9{bottom:863.163467pt;}
.y155{bottom:866.486267pt;}
.y123{bottom:870.400133pt;}
.y47{bottom:870.929067pt;}
.y51{bottom:870.929200pt;}
.y9d{bottom:874.491467pt;}
.yd8{bottom:877.830133pt;}
.y154{bottom:881.152933pt;}
.y122{bottom:885.066800pt;}
.y6{bottom:886.929067pt;}
.y50{bottom:886.929200pt;}
.yd7{bottom:892.496800pt;}
.y9c{bottom:896.394800pt;}
.y121{bottom:899.733467pt;}
.y46{bottom:902.929067pt;}
.y4f{bottom:902.929200pt;}
.y153{bottom:904.025600pt;}
.yd6{bottom:907.163467pt;}
.y9b{bottom:911.061467pt;}
.y108{bottom:914.400133pt;}
.y152{bottom:918.692267pt;}
.y45{bottom:918.929067pt;}
.y4e{bottom:918.929200pt;}
.y9a{bottom:925.728133pt;}
.yd5{bottom:929.066800pt;}
.y151{bottom:933.358933pt;}
.y4d{bottom:934.929200pt;}
.y99{bottom:940.394800pt;}
.yd4{bottom:943.733467pt;}
.y150{bottom:948.025600pt;}
.y44{bottom:950.929067pt;}
.y4c{bottom:950.929200pt;}
.y98{bottom:955.061467pt;}
.yd3{bottom:958.400133pt;}
.y14f{bottom:962.692267pt;}
.y43{bottom:966.929067pt;}
.y4b{bottom:966.929200pt;}
.yd2{bottom:973.066800pt;}
.y97{bottom:976.964800pt;}
.y42{bottom:982.929067pt;}
.y14c{bottom:982.929200pt;}
.y14e{bottom:985.564933pt;}
.yd1{bottom:987.733467pt;}
.y96{bottom:988.164667pt;}
.y14d{bottom:998.364933pt;}
.y41{bottom:998.929067pt;}
.y4a{bottom:998.929200pt;}
.y95{bottom:999.364800pt;}
.yd0{bottom:1009.636800pt;}
.y1{bottom:1010.100000pt;}
.y40{bottom:1014.929067pt;}
.y7d{bottom:1014.929200pt;}
.ycf{bottom:1020.836800pt;}
.y94{bottom:1030.929067pt;}
.y49{bottom:1030.929200pt;}
.yce{bottom:1032.036800pt;}
.y4{bottom:1056.749333pt;}
.y2a{bottom:1067.521067pt;}
.y3{bottom:1068.749333pt;}
.y2{bottom:1080.749333pt;}
.h1a{height:22.945875pt;}
.h16{height:24.013125pt;}
.h13{height:24.953906pt;}
.h10{height:26.014219pt;}
.h17{height:26.025000pt;}
.h18{height:26.662500pt;}
.h19{height:26.681250pt;}
.h7{height:27.984000pt;}
.h11{height:28.193750pt;}
.h14{height:28.560000pt;}
.h12{height:28.884375pt;}
.h4{height:30.277333pt;}
.hc{height:30.378667pt;}
.h9{height:32.640000pt;}
.h3{height:34.560000pt;}
.ha{height:34.602133pt;}
.hb{height:34.602667pt;}
.h8{height:34.752000pt;}
.he{height:38.773333pt;}
.hd{height:43.253333pt;}
.h6{height:43.683616pt;}
.h2{height:57.088000pt;}
.h5{height:150.826667pt;}
.h15{height:181.070667pt;}
.hf{height:240.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:330.708000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd{left:-36.744800pt;}
.xb{left:-21.144800pt;}
.x3d{left:-2.139733pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.xf{left:62.171733pt;}
.x1e{left:64.585200pt;}
.x36{left:68.607867pt;}
.x1{left:74.645733pt;}
.x5{left:75.590533pt;}
.x9{left:85.091867pt;}
.x35{left:94.367733pt;}
.x1f{left:111.874000pt;}
.x10{left:129.700267pt;}
.x38{left:141.102267pt;}
.x33{left:184.477467pt;}
.x30{left:185.709600pt;}
.x20{left:187.324267pt;}
.x31{left:192.317467pt;}
.x11{left:196.507067pt;}
.x2f{left:197.749333pt;}
.x2a{left:198.752667pt;}
.x27{left:201.632000pt;}
.x28{left:244.724400pt;}
.x12{left:258.464133pt;}
.xe{left:271.405600pt;}
.x39{left:285.569467pt;}
.x37{left:301.149067pt;}
.x13{left:312.288667pt;}
.x21{left:315.744667pt;}
.xc{left:322.488267pt;}
.x3c{left:338.020133pt;}
.xa{left:347.361733pt;}
.x14{left:391.205467pt;}
.x2d{left:392.731333pt;}
.x2e{left:393.753333pt;}
.x22{left:396.264000pt;}
.x2b{left:398.727867pt;}
.x32{left:399.791867pt;}
.x34{left:401.630533pt;}
.x7{left:406.299200pt;}
.x3a{left:415.090400pt;}
.x8{left:425.196800pt;}
.x23{left:429.814533pt;}
.x15{left:443.411733pt;}
.x2c{left:488.218800pt;}
.x16{left:494.437200pt;}
.x17{left:499.696400pt;}
.x3b{left:528.751467pt;}
.x24{left:555.590533pt;}
.x18{left:562.850933pt;}
.x3{left:568.005333pt;}
.x19{left:575.870667pt;}
.x2{left:627.728000pt;}
.x25{left:636.786800pt;}
.x1b{left:639.199200pt;}
.x1a{left:642.993067pt;}
.x1c{left:704.365200pt;}
.x1d{left:713.693733pt;}
.x29{left:714.743867pt;}
.x26{left:718.057067pt;}
.x6{left:721.744133pt;}
}




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