
    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_75a9742df85dd2346973b1b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5eb929bfee1217f6002133e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_5eb929bfee1217f6002133e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_e71784948e0011c99a177adc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_e0efdd2de245d802582955c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935000;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_d9be82aac2cb2cd1a1f097b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_6a7eeb119adb338956fd0c72.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_5f594649a61cdf76325394f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_62b51853bc3142ffa103c4eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_8fe0cd10e19673f00cef3936.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.575000;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_2ebd387757f0160f4b777827.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.575000;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_b07858cd56c45f89402aaf88.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_ce03e3308cc451c728bd378e.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_fe8ba469192c3654ad62cc8b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.592000;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7d{letter-spacing:-2.031840px;}
.ls74{letter-spacing:-1.314000px;}
.ls6a{letter-spacing:-1.296000px;}
.ls7c{letter-spacing:-1.194000px;}
.ls37{letter-spacing:-0.836640px;}
.ls7b{letter-spacing:-0.774000px;}
.ls4f{letter-spacing:-0.758160px;}
.ls5d{letter-spacing:-0.756000px;}
.ls78{letter-spacing:-0.660000px;}
.ls77{letter-spacing:-0.600000px;}
.ls4e{letter-spacing:-0.594000px;}
.ls43{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.486000px;}
.ls49{letter-spacing:-0.482400px;}
.ls51{letter-spacing:-0.478080px;}
.ls48{letter-spacing:-0.385920px;}
.ls11{letter-spacing:-0.336960px;}
.ls61{letter-spacing:-0.324000px;}
.ls28{letter-spacing:-0.298800px;}
.ls7e{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.239040px;}
.ls10{letter-spacing:-0.216000px;}
.ls67{letter-spacing:-0.192960px;}
.ls42{letter-spacing:-0.162000px;}
.ls27{letter-spacing:-0.119520px;}
.ls70{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.072000px;}
.ls73{letter-spacing:-0.066240px;}
.ls79{letter-spacing:-0.060000px;}
.ls16{letter-spacing:-0.059760px;}
.ls50{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls71{letter-spacing:0.033120px;}
.ls3a{letter-spacing:0.053784px;}
.ls20{letter-spacing:0.059760px;}
.ls75{letter-spacing:0.060000px;}
.ls6c{letter-spacing:0.065736px;}
.ls5a{letter-spacing:0.070200px;}
.ls5b{letter-spacing:0.075600px;}
.ls5c{letter-spacing:0.102600px;}
.lsd{letter-spacing:0.108000px;}
.ls47{letter-spacing:0.119520px;}
.ls72{letter-spacing:0.120000px;}
.ls40{letter-spacing:0.124200px;}
.ls13{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.161352px;}
.ls41{letter-spacing:0.162000px;}
.ls6f{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.210600px;}
.lse{letter-spacing:0.216000px;}
.ls6e{letter-spacing:0.221112px;}
.ls22{letter-spacing:0.239040px;}
.ls7a{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.245016px;}
.ls2c{letter-spacing:0.250992px;}
.ls33{letter-spacing:0.262944px;}
.ls38{letter-spacing:0.270000px;}
.ls2e{letter-spacing:0.310752px;}
.ls59{letter-spacing:0.322704px;}
.ls26{letter-spacing:0.336960px;}
.lsf{letter-spacing:0.337680px;}
.ls2a{letter-spacing:0.358560px;}
.ls14{letter-spacing:0.418320px;}
.ls24{letter-spacing:0.448200px;}
.ls15{letter-spacing:0.478080px;}
.ls57{letter-spacing:0.501984px;}
.ls4{letter-spacing:0.597600px;}
.ls1c{letter-spacing:0.657360px;}
.ls64{letter-spacing:0.658800px;}
.ls2d{letter-spacing:0.681264px;}
.ls21{letter-spacing:0.699192px;}
.ls76{letter-spacing:0.714000px;}
.ls5e{letter-spacing:0.717120px;}
.ls39{letter-spacing:0.723096px;}
.ls69{letter-spacing:0.806760px;}
.ls4d{letter-spacing:0.902376px;}
.ls5{letter-spacing:0.956160px;}
.ls17{letter-spacing:1.075680px;}
.ls32{letter-spacing:1.105560px;}
.ls30{letter-spacing:1.374480px;}
.ls2f{letter-spacing:1.416312px;}
.ls19{letter-spacing:1.422288px;}
.ls60{letter-spacing:1.535832px;}
.ls6b{letter-spacing:1.571688px;}
.ls2{letter-spacing:1.800000px;}
.ls1a{letter-spacing:2.091600px;}
.ls23{letter-spacing:2.181240px;}
.ls1{letter-spacing:2.250000px;}
.lsb{letter-spacing:2.808720px;}
.ls36{letter-spacing:2.850552px;}
.ls44{letter-spacing:2.898360px;}
.ls1d{letter-spacing:3.525840px;}
.ls34{letter-spacing:3.533040px;}
.ls4a{letter-spacing:3.585600px;}
.ls54{letter-spacing:3.621456px;}
.ls1b{letter-spacing:3.639384px;}
.ls3c{letter-spacing:3.645360px;}
.ls31{letter-spacing:3.673440px;}
.ls3b{letter-spacing:3.675600px;}
.ls35{letter-spacing:3.854520px;}
.ls52{letter-spacing:4.242960px;}
.ls45{letter-spacing:4.302720px;}
.ls1e{letter-spacing:4.392360px;}
.ls68{letter-spacing:4.625424px;}
.ls4b{letter-spacing:4.960080px;}
.ls6d{letter-spacing:5.115456px;}
.ls4c{letter-spacing:5.736960px;}
.ls9{letter-spacing:6.454080px;}
.ls53{letter-spacing:7.153272px;}
.ls3d{letter-spacing:7.171200px;}
.ls5f{letter-spacing:7.266816px;}
.lsa{letter-spacing:7.888320px;}
.ls7{letter-spacing:8.605440px;}
.ls8{letter-spacing:8.647272px;}
.ls6{letter-spacing:8.665200px;}
.ls1f{letter-spacing:11.473920px;}
.ls3e{letter-spacing:14.342400px;}
.ls3f{letter-spacing:15.059520px;}
.lsc{letter-spacing:30.348000px;}
.ls55{letter-spacing:38.126880px;}
.ls56{letter-spacing:41.712480px;}
.ls58{letter-spacing:54.680400px;}
.ls62{letter-spacing:462.888000px;}
.ls66{letter-spacing:615.708000px;}
.ls63{letter-spacing:841.590000px;}
.ls46{letter-spacing:847.352160px;}
.ls65{letter-spacing:920.808000px;}
.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;}
}
.ws6b{word-spacing:-28.745040px;}
.ws20{word-spacing:-23.755680px;}
.ws66{word-spacing:-23.334480px;}
.ws2{word-spacing:-23.081760px;}
.ws4{word-spacing:-19.944000px;}
.ws8{word-spacing:-17.688960px;}
.ws6{word-spacing:-17.210880px;}
.ws7{word-spacing:-17.091360px;}
.ws5{word-spacing:-17.031600px;}
.ws25{word-spacing:-16.971840px;}
.ws21{word-spacing:-16.613280px;}
.ws37{word-spacing:-16.553520px;}
.ws22{word-spacing:-16.493760px;}
.ws23{word-spacing:-16.374240px;}
.ws24{word-spacing:-16.314480px;}
.ws41{word-spacing:-15.776640px;}
.ws31{word-spacing:-15.282000px;}
.wsa{word-spacing:-15.228000px;}
.ws42{word-spacing:-15.174000px;}
.ws68{word-spacing:-15.102720px;}
.ws67{word-spacing:-15.036480px;}
.ws5e{word-spacing:-15.012000px;}
.ws30{word-spacing:-14.796000px;}
.ws4d{word-spacing:-14.526000px;}
.ws4e{word-spacing:-14.418000px;}
.ws53{word-spacing:-14.256000px;}
.ws6a{word-spacing:-13.745280px;}
.ws51{word-spacing:-13.744800px;}
.ws69{word-spacing:-13.625280px;}
.ws3{word-spacing:-13.410720px;}
.ws6c{word-spacing:-13.326480px;}
.ws50{word-spacing:-13.147200px;}
.ws4f{word-spacing:-12.258000px;}
.ws38{word-spacing:-12.150000px;}
.ws6e{word-spacing:-12.042000px;}
.ws55{word-spacing:-11.988000px;}
.ws39{word-spacing:-11.772000px;}
.ws9{word-spacing:-11.609280px;}
.ws6d{word-spacing:-11.593440px;}
.ws47{word-spacing:-11.336400px;}
.ws5b{word-spacing:-10.805760px;}
.ws43{word-spacing:-10.612800px;}
.ws44{word-spacing:-10.516320px;}
.ws1{word-spacing:-10.440000px;}
.ws54{word-spacing:-4.242960px;}
.ws11{word-spacing:-3.525840px;}
.ws19{word-spacing:-2.808720px;}
.ws7d{word-spacing:-2.124000px;}
.ws1c{word-spacing:-2.091600px;}
.ws3c{word-spacing:-1.434240px;}
.wsf{word-spacing:-1.374480px;}
.ws3b{word-spacing:-1.195200px;}
.ws4b{word-spacing:-1.015920px;}
.ws35{word-spacing:-0.810000px;}
.ws3d{word-spacing:-0.756000px;}
.ws7b{word-spacing:-0.714000px;}
.ws12{word-spacing:-0.657360px;}
.ws14{word-spacing:-0.597600px;}
.ws5d{word-spacing:-0.530640px;}
.ws10{word-spacing:-0.418320px;}
.ws2f{word-spacing:-0.358560px;}
.wsb{word-spacing:-0.337680px;}
.ws78{word-spacing:-0.240000px;}
.ws56{word-spacing:-0.239040px;}
.ws1e{word-spacing:-0.216000px;}
.ws85{word-spacing:-0.198000px;}
.ws49{word-spacing:-0.162000px;}
.ws84{word-spacing:-0.126000px;}
.ws71{word-spacing:-0.120000px;}
.ws88{word-spacing:-0.119520px;}
.ws1d{word-spacing:-0.108000px;}
.ws6f{word-spacing:-0.066240px;}
.ws76{word-spacing:-0.066000px;}
.ws79{word-spacing:-0.060000px;}
.ws4c{word-spacing:-0.059760px;}
.ws4a{word-spacing:-0.054000px;}
.ws87{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.ws77{word-spacing:0.054000px;}
.ws17{word-spacing:0.059760px;}
.ws7e{word-spacing:0.060000px;}
.ws70{word-spacing:0.066240px;}
.ws36{word-spacing:0.108000px;}
.ws29{word-spacing:0.119520px;}
.ws7a{word-spacing:0.120000px;}
.ws40{word-spacing:0.162000px;}
.ws58{word-spacing:0.192960px;}
.wsd{word-spacing:0.216000px;}
.ws3a{word-spacing:0.239040px;}
.ws80{word-spacing:0.288000px;}
.ws5a{word-spacing:0.289440px;}
.ws2a{word-spacing:0.298800px;}
.ws5c{word-spacing:0.385920px;}
.ws57{word-spacing:0.418320px;}
.wsc{word-spacing:0.432000px;}
.ws83{word-spacing:0.540000px;}
.ws73{word-spacing:0.588000px;}
.ws1f{word-spacing:0.594000px;}
.ws7c{word-spacing:0.600000px;}
.ws86{word-spacing:0.606000px;}
.ws7f{word-spacing:0.624000px;}
.ws72{word-spacing:0.660000px;}
.wse{word-spacing:0.673920px;}
.ws61{word-spacing:0.702000px;}
.ws74{word-spacing:0.774000px;}
.ws2c{word-spacing:0.776880px;}
.ws34{word-spacing:0.836640px;}
.ws82{word-spacing:0.870000px;}
.ws59{word-spacing:0.916560px;}
.ws81{word-spacing:1.002000px;}
.ws52{word-spacing:1.095120px;}
.ws60{word-spacing:1.296000px;}
.ws75{word-spacing:1.362000px;}
.ws28{word-spacing:1.494000px;}
.ws2b{word-spacing:2.211120px;}
.ws1b{word-spacing:2.270880px;}
.ws48{word-spacing:2.928240px;}
.ws26{word-spacing:2.988000px;}
.ws32{word-spacing:3.167280px;}
.ws27{word-spacing:3.705120px;}
.ws15{word-spacing:4.422240px;}
.ws2e{word-spacing:5.139360px;}
.ws18{word-spacing:5.856480px;}
.ws13{word-spacing:6.573600px;}
.ws1a{word-spacing:7.290720px;}
.ws16{word-spacing:8.007840px;}
.ws62{word-spacing:10.159200px;}
.ws33{word-spacing:10.876320px;}
.ws2d{word-spacing:11.593440px;}
.ws64{word-spacing:13.027680px;}
.ws65{word-spacing:13.744800px;}
.ws3f{word-spacing:14.461920px;}
.ws3e{word-spacing:15.179040px;}
.ws5f{word-spacing:173.340000px;}
.ws63{word-spacing:224.532000px;}
.ws46{word-spacing:244.571976px;}
.ws45{word-spacing:283.916520px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._0{margin-left:-5.220000px;}
._4{margin-left:-3.894000px;}
._c{margin-left:-2.686320px;}
._5{margin-left:-1.062600px;}
._6{width:1.371600px;}
._7{width:2.660400px;}
._b{width:4.123440px;}
._e{width:5.202000px;}
._8{width:6.408720px;}
._9{width:7.950960px;}
._16{width:9.684000px;}
._d{width:11.895120px;}
._f{width:14.012640px;}
._12{width:274.244400px;}
._10{width:302.233320px;}
._1d{width:303.534000px;}
._11{width:321.016320px;}
._19{width:340.308000px;}
._1b{width:362.664000px;}
._1c{width:371.358000px;}
._17{width:399.492000px;}
._18{width:408.132000px;}
._14{width:467.099280px;}
._1e{width:498.122040px;}
._13{width:525.695400px;}
._1a{width:607.803600px;}
._15{width:686.119680px;}
._a{width:847.396800px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:18.000000px;}
.fsf{font-size:23.760000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs11{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:192.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.y174{bottom:3.572850px;}
.y19c{bottom:3.602700px;}
.y1a9{bottom:3.662550px;}
.y18f{bottom:3.677700px;}
.y1b5{bottom:3.707550px;}
.y182{bottom:3.722700px;}
.yde{bottom:4.955250px;}
.y1d4{bottom:5.083350px;}
.y10a{bottom:5.092500px;}
.y2a{bottom:23.943960px;}
.y170{bottom:32.322900px;}
.y171{bottom:32.337900px;}
.y198{bottom:32.352750px;}
.y199{bottom:32.367750px;}
.y1a5{bottom:32.412750px;}
.y18b{bottom:32.427750px;}
.y18c{bottom:32.442750px;}
.y1b2{bottom:32.457750px;}
.y17d{bottom:32.472750px;}
.y17e{bottom:32.487750px;}
.y172{bottom:33.965400px;}
.y19a{bottom:33.995400px;}
.y18d{bottom:34.070400px;}
.y1b3{bottom:34.100250px;}
.y6{bottom:35.925007px;}
.y29{bottom:37.620000px;}
.y1d1{bottom:59.573700px;}
.y1d0{bottom:61.403700px;}
.y1d2{bottom:61.418700px;}
.y5{bottom:66.525004px;}
.y12e{bottom:92.502000px;}
.yfc{bottom:92.511000px;}
.y93{bottom:92.515500px;}
.y1ca{bottom:95.470200px;}
.y1e9{bottom:95.668560px;}
.y4{bottom:97.125005px;}
.y167{bottom:98.820000px;}
.y42{bottom:99.000000px;}
.y145{bottom:102.316320px;}
.y12d{bottom:107.986500px;}
.yfb{bottom:107.995500px;}
.y92{bottom:108.000000px;}
.y166{bottom:119.520000px;}
.y1c9{bottom:119.583360px;}
.y1e8{bottom:119.602440px;}
.y41{bottom:122.400000px;}
.y12c{bottom:123.471000px;}
.yfa{bottom:123.480000px;}
.y144{bottom:126.250200px;}
.y91{bottom:130.140000px;}
.y40{bottom:136.800000px;}
.y20e{bottom:136.980000px;}
.y12b{bottom:139.131000px;}
.y22{bottom:139.264499px;}
.y1c8{bottom:143.517240px;}
.y1e7{bottom:143.536320px;}
.yaf{bottom:144.360000px;}
.yf9{bottom:145.620000px;}
.y165{bottom:145.800000px;}
.y90{bottom:147.051000px;}
.y143{bottom:150.184080px;}
.y20d{bottom:153.544500px;}
.y12a{bottom:154.615500px;}
.yf8{bottom:159.840000px;}
.y8f{bottom:162.535500px;}
.yd4{bottom:163.897200px;}
.y1a2{bottom:163.980000px;}
.y1af{bottom:165.060000px;}
.y1c7{bottom:167.451120px;}
.y1e6{bottom:167.649480px;}
.y20c{bottom:169.920000px;}
.y129{bottom:170.100000px;}
.y16e{bottom:172.030350px;}
.y196{bottom:172.060200px;}
.y1a3{bottom:172.120050px;}
.y189{bottom:172.135050px;}
.y1b0{bottom:172.165050px;}
.y17b{bottom:172.180050px;}
.y142{bottom:174.297240px;}
.y8e{bottom:178.020000px;}
.y1a8{bottom:181.412700px;}
.y1b4{bottom:182.537700px;}
.y20b{bottom:186.480000px;}
.yd3{bottom:186.755400px;}
.y69{bottom:187.609320px;}
.yae{bottom:188.685000px;}
.y1c6{bottom:191.564280px;}
.y1e5{bottom:191.583360px;}
.y128{bottom:192.240000px;}
.y19{bottom:196.933500px;}
.y1a6{bottom:198.035250px;}
.y141{bottom:198.231120px;}
.y8d{bottom:200.160000px;}
.yf7{bottom:200.359080px;}
.y1a7{bottom:200.784930px;}
.y1a4{bottom:200.787750px;}
.y1b1{bottom:201.912750px;}
.y20a{bottom:203.044500px;}
.y127{bottom:209.151000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y68{bottom:210.108960px;}
.yd2{bottom:210.689280px;}
.yad{bottom:212.798160px;}
.y8c{bottom:214.380000px;}
.y1c5{bottom:215.498160px;}
.y1e4{bottom:215.517240px;}
.y209{bottom:219.420000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y140{bottom:222.165000px;}
.yf6{bottom:224.292960px;}
.y126{bottom:224.635500px;}
.y67{bottom:234.042840px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yd1{bottom:234.802440px;}
.yac{bottom:236.732040px;}
.y1c4{bottom:239.432040px;}
.y1e3{bottom:239.630400px;}
.y125{bottom:240.120000px;}
.y19d{bottom:240.368100px;}
.y1aa{bottom:241.493100px;}
.y13f{bottom:246.278160px;}
.yf5{bottom:248.226840px;}
.y8b{bottom:250.392960px;}
.y208{bottom:254.332440px;}
.y66{bottom:258.156000px;}
.yd0{bottom:258.736320px;}
.y19e{bottom:259.519380px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1ab{bottom:260.644380px;}
.yab{bottom:260.665920px;}
.y124{bottom:262.260000px;}
.y1c3{bottom:263.545200px;}
.y1e2{bottom:263.564280px;}
.y13e{bottom:270.212040px;}
.y207{bottom:272.335200px;}
.yf4{bottom:272.340000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y8a{bottom:274.326840px;}
.y123{bottom:276.480000px;}
.y19f{bottom:278.670660px;}
.y1ac{bottom:279.795660px;}
.y65{bottom:282.089880px;}
.ycf{bottom:282.670200px;}
.yaa{bottom:284.779080px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1c2{bottom:287.479080px;}
.y1e1{bottom:287.498160px;}
.y14c{bottom:289.593000px;}
.y13d{bottom:294.145920px;}
.y1a0{bottom:297.821940px;}
.y89{bottom:298.465200px;}
.y1ad{bottom:298.946940px;}
.y64{bottom:306.023760px;}
.yce{bottom:306.783360px;}
.ya9{bottom:308.712960px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1c1{bottom:311.412960px;}
.y1e0{bottom:311.611320px;}
.y206{bottom:313.016700px;}
.yf3{bottom:314.100000px;}
.y1a1{bottom:316.973220px;}
.y1ae{bottom:318.098220px;}
.y13c{bottom:318.259080px;}
.y88{bottom:322.399080px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y122{bottom:324.184680px;}
.y63{bottom:330.136920px;}
.ycd{bottom:330.717240px;}
.ya8{bottom:332.646840px;}
.y1c0{bottom:335.526120px;}
.y1df{bottom:335.545200px;}
.y13b{bottom:342.192960px;}
.y87{bottom:346.332960px;}
.y10{bottom:348.133500px;}
.y121{bottom:348.297840px;}
.y205{bottom:351.717000px;}
.y62{bottom:354.070800px;}
.ycc{bottom:354.651120px;}
.ya7{bottom:356.760000px;}
.y1bf{bottom:359.460000px;}
.y1de{bottom:359.479080px;}
.y164{bottom:360.364500px;}
.y13a{bottom:366.126840px;}
.y204{bottom:369.720000px;}
.y86{bottom:370.446120px;}
.y120{bottom:372.231720px;}
.yf2{bottom:374.483160px;}
.y61{bottom:378.004680px;}
.ycb{bottom:378.764280px;}
.y1be{bottom:381.600000px;}
.y1dd{bottom:383.592240px;}
.y163{bottom:384.300000px;}
.yf{bottom:386.785499px;}
.y139{bottom:390.240000px;}
.y85{bottom:394.437240px;}
.y11f{bottom:396.165600px;}
.ya6{bottom:398.520000px;}
.yf1{bottom:398.596320px;}
.y60{bottom:402.117840px;}
.yca{bottom:402.698160px;}
.y195{bottom:403.740000px;}
.y1bd{bottom:404.640000px;}
.y1dc{bottom:407.526120px;}
.ye{bottom:408.044999px;}
.y1cf{bottom:410.220000px;}
.y203{bottom:411.289500px;}
.y138{bottom:412.380000px;}
.y84{bottom:418.371120px;}
.y11e{bottom:420.278760px;}
.y19b{bottom:421.112850px;}
.yf0{bottom:422.530200px;}
.y5f{bottom:426.051720px;}
.yc9{bottom:426.632040px;}
.y137{bottom:427.864500px;}
.y202{bottom:429.292500px;}
.y1db{bottom:431.460000px;}
.y197{bottom:440.487750px;}
.y14b{bottom:441.000000px;}
.y83{bottom:442.484280px;}
.y11d{bottom:444.212640px;}
.yef{bottom:446.464080px;}
.y201{bottom:447.295500px;}
.y1d3{bottom:447.953700px;}
.y15c{bottom:449.447970px;}
.y158{bottom:449.460030px;}
.y154{bottom:449.472090px;}
.y5e{bottom:449.985600px;}
.yc8{bottom:450.745200px;}
.y3f{bottom:457.469640px;}
.ya5{bottom:458.820000px;}
.y15b{bottom:463.220490px;}
.y157{bottom:463.232550px;}
.y153{bottom:463.244610px;}
.y82{bottom:466.418160px;}
.y11c{bottom:468.146520px;}
.yee{bottom:470.577240px;}
.y1da{bottom:473.400000px;}
.y5d{bottom:474.098760px;}
.yc7{bottom:474.679080px;}
.y15e{bottom:476.980950px;}
.y15a{bottom:476.993010px;}
.y156{bottom:477.005070px;}
.y152{bottom:477.017130px;}
.y3e{bottom:479.969280px;}
.y190{bottom:480.068250px;}
.ya4{bottom:480.964500px;}
.y81{bottom:490.352040px;}
.y15d{bottom:490.753470px;}
.y159{bottom:490.765530px;}
.y155{bottom:490.777590px;}
.y151{bottom:490.789650px;}
.y11b{bottom:492.259680px;}
.yed{bottom:494.511120px;}
.y200{bottom:495.540000px;}
.y5c{bottom:498.032640px;}
.yc6{bottom:498.612960px;}
.y191{bottom:499.219530px;}
.yd{bottom:502.864502px;}
.y3d{bottom:503.903160px;}
.ya3{bottom:505.440000px;}
.y14e{bottom:505.774860px;}
.y14f{bottom:505.786920px;}
.y150{bottom:507.415020px;}
.y14d{bottom:510.164700px;}
.y80{bottom:514.465200px;}
.y11a{bottom:516.193560px;}
.y192{bottom:518.370810px;}
.yec{bottom:518.445000px;}
.yc{bottom:520.864502px;}
.y5b{bottom:521.966520px;}
.yc5{bottom:522.726120px;}
.y3c{bottom:528.016320px;}
.ybc{bottom:530.769900px;}
.y1d9{bottom:532.260000px;}
.y193{bottom:537.522090px;}
.y7f{bottom:538.399080px;}
.yb{bottom:538.864499px;}
.y119{bottom:540.127440px;}
.yeb{bottom:542.558160px;}
.y5a{bottom:546.079680px;}
.ybb{bottom:546.254400px;}
.yc4{bottom:546.660000px;}
.y146{bottom:549.201300px;}
.y1d8{bottom:549.900000px;}
.y1cb{bottom:550.670250px;}
.y3b{bottom:551.950200px;}
.y194{bottom:556.673370px;}
.ya{bottom:556.864499px;}
.y7e{bottom:562.332960px;}
.yb0{bottom:562.616400px;}
.y118{bottom:564.240600px;}
.yea{bottom:566.492040px;}
.yc3{bottom:568.800000px;}
.y59{bottom:570.013560px;}
.y1d7{bottom:572.400000px;}
.y3a{bottom:575.884080px;}
.yb1{bottom:580.949400px;}
.y1cc{bottom:583.529250px;}
.y1f2{bottom:585.014250px;}
.y147{bottom:585.475800px;}
.y7d{bottom:586.446120px;}
.y117{bottom:588.174480px;}
.ye9{bottom:590.425920px;}
.yc2{bottom:593.275500px;}
.y58{bottom:593.947440px;}
.yb2{bottom:599.282400px;}
.y39{bottom:599.997240px;}
.y162{bottom:600.120000px;}
.ydd{bottom:606.060000px;}
.y7c{bottom:610.380000px;}
.y116{bottom:612.108360px;}
.ye8{bottom:614.539080px;}
.y1cd{bottom:616.388250px;}
.y1f1{bottom:617.070900px;}
.yb3{bottom:617.615400px;}
.y57{bottom:618.060600px;}
.y148{bottom:621.750300px;}
.y38{bottom:623.931120px;}
.y161{bottom:624.060000px;}
.yb4{bottom:635.948400px;}
.y115{bottom:636.221520px;}
.y1f0{bottom:637.280400px;}
.ye7{bottom:638.472960px;}
.y56{bottom:641.994480px;}
.y188{bottom:642.240000px;}
.y17a{bottom:643.320000px;}
.y9{bottom:645.510000px;}
.y37{bottom:647.865000px;}
.ydc{bottom:648.164490px;}
.y1ce{bottom:649.247250px;}
.y7b{bottom:652.320000px;}
.y1ef{bottom:652.764900px;}
.yb5{bottom:654.281400px;}
.y149{bottom:658.024800px;}
.y18e{bottom:659.687850px;}
.y114{bottom:660.155400px;}
.y181{bottom:660.812850px;}
.ye6{bottom:662.406840px;}
.y1ea{bottom:664.631400px;}
.ydb{bottom:665.760030px;}
.y55{bottom:665.928360px;}
.y8{bottom:666.771000px;}
.y27{bottom:670.535400px;}
.y36{bottom:671.978160px;}
.yb6{bottom:672.614400px;}
.y1bc{bottom:674.995500px;}
.y17f{bottom:677.435400px;}
.y18a{bottom:679.062900px;}
.yda{bottom:679.532550px;}
.y180{bottom:680.185080px;}
.y17c{bottom:680.187900px;}
.y113{bottom:684.089280px;}
.ye5{bottom:686.520000px;}
.yd5{bottom:689.056350px;}
.y54{bottom:690.041520px;}
.y1bb{bottom:690.480000px;}
.yb7{bottom:690.947400px;}
.y14a{bottom:694.299300px;}
.y35{bottom:695.912040px;}
.y1eb{bottom:698.111400px;}
.y112{bottom:708.202440px;}
.yb8{bottom:709.280400px;}
.ye4{bottom:710.464500px;}
.y53{bottom:713.975400px;}
.y183{bottom:718.643100px;}
.y175{bottom:719.768100px;}
.y34{bottom:719.845920px;}
.y7a{bottom:723.780000px;}
.y26{bottom:724.535400px;}
.y1ba{bottom:725.959080px;}
.y7{bottom:726.298500px;}
.yb9{bottom:727.613400px;}
.y1ec{bottom:731.591400px;}
.y111{bottom:732.136320px;}
.yd6{bottom:734.051850px;}
.ye3{bottom:734.400000px;}
.y184{bottom:737.794380px;}
.y52{bottom:737.909280px;}
.y176{bottom:738.919380px;}
.y33{bottom:743.959080px;}
.yba{bottom:745.946400px;}
.y79{bottom:747.720000px;}
.y1b9{bottom:749.892960px;}
.y3{bottom:752.599495px;}
.y136{bottom:753.120000px;}
.y110{bottom:756.070200px;}
.ye2{bottom:756.715500px;}
.y185{bottom:756.945660px;}
.y177{bottom:758.070660px;}
.y51{bottom:762.022440px;}
.y1ed{bottom:765.071400px;}
.y32{bottom:767.892960px;}
.y135{bottom:768.780000px;}
.y78{bottom:771.840000px;}
.y1b8{bottom:773.826840px;}
.y186{bottom:776.096940px;}
.y178{bottom:777.221940px;}
.ya2{bottom:777.235500px;}
.y25{bottom:778.535400px;}
.yd7{bottom:779.047350px;}
.y10f{bottom:780.183360px;}
.ye1{bottom:781.191000px;}
.y50{bottom:785.956320px;}
.y31{bottom:791.826840px;}
.ya1{bottom:792.720000px;}
.y109{bottom:793.800000px;}
.y187{bottom:795.248220px;}
.y77{bottom:795.780000px;}
.y179{bottom:796.373220px;}
.y1b7{bottom:797.940000px;}
.y1ee{bottom:798.551400px;}
.y10e{bottom:804.117240px;}
.y134{bottom:804.142440px;}
.y4f{bottom:809.890200px;}
.y30{bottom:815.940000px;}
.y108{bottom:816.063900px;}
.y76{bottom:819.720000px;}
.y1ff{bottom:821.955600px;}
.yd8{bottom:824.042850px;}
.y1d6{bottom:825.120000px;}
.ya0{bottom:828.051120px;}
.y133{bottom:828.076320px;}
.y24{bottom:832.535400px;}
.y160{bottom:833.044500px;}
.y107{bottom:833.235300px;}
.y4e{bottom:834.003360px;}
.y1fe{bottom:838.509120px;}
.y1b6{bottom:839.700000px;}
.y1d5{bottom:840.780000px;}
.y75{bottom:843.840000px;}
.y9f{bottom:852.164280px;}
.y132{bottom:852.189480px;}
.y2f{bottom:856.980000px;}
.y4d{bottom:857.937240px;}
.y74{bottom:867.780000px;}
.yd9{bottom:869.038350px;}
.y1fd{bottom:869.823360px;}
.y9e{bottom:876.098160px;}
.y131{bottom:876.123360px;}
.y16d{bottom:876.420000px;}
.y106{bottom:876.557850px;}
.y2{bottom:879.369000px;}
.y4c{bottom:881.871120px;}
.y1fc{bottom:886.376880px;}
.y73{bottom:891.720000px;}
.y105{bottom:892.042350px;}
.y173{bottom:893.763000px;}
.yc1{bottom:897.120000px;}
.y9d{bottom:900.032040px;}
.y130{bottom:900.057240px;}
.y4b{bottom:905.984280px;}
.yfd{bottom:908.417850px;}
.yc0{bottom:912.780000px;}
.y16f{bottom:913.137900px;}
.y72{bottom:915.840000px;}
.y1fb{bottom:917.870400px;}
.y9c{bottom:924.145200px;}
.y12f{bottom:924.170400px;}
.y4a{bottom:929.918160px;}
.yfe{bottom:931.597350px;}
.y1fa{bottom:934.423920px;}
.y71{bottom:939.780000px;}
.y9b{bottom:948.079080px;}
.ybf{bottom:948.104280px;}
.y1f9{bottom:950.977440px;}
.y168{bottom:952.718250px;}
.y49{bottom:953.852040px;}
.yff{bottom:954.776850px;}
.y70{bottom:963.720000px;}
.y1{bottom:966.726000px;}
.y169{bottom:971.869530px;}
.y9a{bottom:972.012960px;}
.ybe{bottom:972.038160px;}
.y28{bottom:972.212700px;}
.y100{bottom:977.956350px;}
.y48{bottom:977.965200px;}
.y1f8{bottom:982.291680px;}
.y6f{bottom:987.840000px;}
.y2e{bottom:988.920000px;}
.y16a{bottom:991.020810px;}
.y99{bottom:996.126120px;}
.ybd{bottom:996.151320px;}
.y1f7{bottom:998.845200px;}
.y101{bottom:1001.135850px;}
.y47{bottom:1001.899080px;}
.y16b{bottom:1010.172090px;}
.y6e{bottom:1011.780000px;}
.y1f6{bottom:1015.398720px;}
.y10d{bottom:1020.079080px;}
.y98{bottom:1020.085200px;}
.y23{bottom:1023.023400px;}
.y102{bottom:1024.315350px;}
.y46{bottom:1025.832960px;}
.y16c{bottom:1029.323370px;}
.y2d{bottom:1031.760000px;}
.y6d{bottom:1035.720000px;}
.y10c{bottom:1044.012960px;}
.y97{bottom:1044.019080px;}
.y1f5{bottom:1046.892240px;}
.y103{bottom:1047.494850px;}
.y45{bottom:1049.946120px;}
.y6c{bottom:1059.840000px;}
.y1f4{bottom:1063.445760px;}
.y15f{bottom:1067.040000px;}
.y10b{bottom:1068.126120px;}
.y96{bottom:1068.132240px;}
.y104{bottom:1070.674350px;}
.y44{bottom:1073.880000px;}
.y2c{bottom:1074.951000px;}
.y1f3{bottom:1079.820000px;}
.y6b{bottom:1083.780000px;}
.y95{bottom:1092.066120px;}
.ye0{bottom:1107.175500px;}
.y6a{bottom:1107.900000px;}
.y2b{bottom:1108.080000px;}
.y43{bottom:1115.640000px;}
.y94{bottom:1116.000000px;}
.ydf{bottom:1122.660000px;}
.h28{height:15.477539px;}
.h26{height:20.430352px;}
.h7{height:32.130000px;}
.h15{height:35.907891px;}
.hf{height:43.505508px;}
.h6{height:45.900000px;}
.h19{height:46.432617px;}
.h1a{height:47.223633px;}
.h3{height:48.195000px;}
.h1b{height:48.700195px;}
.hd{height:48.906000px;}
.h14{height:51.385430px;}
.h16{height:52.260820px;}
.hc{height:53.064000px;}
.h1d{height:53.894883px;}
.h2{height:55.080000px;}
.h2e{height:57.618000px;}
.h1e{height:59.335251px;}
.h17{height:59.438931px;}
.h18{height:59.567091px;}
.h21{height:59.591571px;}
.h20{height:59.643411px;}
.h13{height:62.964844px;}
.h2b{height:63.763920px;}
.h2c{height:63.764160px;}
.h2d{height:64.779840px;}
.h12{height:65.946445px;}
.hb{height:66.330000px;}
.h2a{height:70.678080px;}
.h11{height:73.668867px;}
.h5{height:78.030000px;}
.h10{height:94.447266px;}
.h4{height:119.055004px;}
.ha{height:138.816000px;}
.h23{height:182.700000px;}
.h25{height:182.878500px;}
.h24{height:182.880000px;}
.h9{height:188.703000px;}
.h27{height:256.500000px;}
.h1c{height:280.080000px;}
.h1f{height:297.000000px;}
.h22{height:303.298500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h29{height:1264.500000px;}
.w8{width:331.560000px;}
.w9{width:331.740000px;}
.wa{width:331.741500px;}
.w2{width:637.794021px;}
.wb{width:641.880000px;}
.w5{width:650.518500px;}
.w6{width:659.160000px;}
.w7{width:667.081500px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.wc{width:895.500000px;}
.x0{left:0.000000px;}
.x71{left:5.977500px;}
.xa6{left:40.963800px;}
.xbd{left:53.164950px;}
.x9b{left:59.709900px;}
.x5{left:77.983650px;}
.x6{left:82.571400px;}
.x9c{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa7{left:117.136350px;}
.x53{left:120.240000px;}
.x6e{left:121.500000px;}
.x9a{left:123.750000px;}
.xe{left:126.333450px;}
.x9{left:127.620000px;}
.x70{left:129.375000px;}
.xd{left:132.489450px;}
.x55{left:133.658700px;}
.x54{left:134.902800px;}
.xb2{left:136.017450px;}
.xc{left:138.240000px;}
.xf{left:139.981950px;}
.xbe{left:141.114150px;}
.xb{left:144.591840px;}
.x56{left:147.307200px;}
.x34{left:151.365240px;}
.x33{left:154.392300px;}
.x8a{left:162.147600px;}
.xa5{left:167.125050px;}
.xb0{left:168.241800px;}
.x8c{left:169.528320px;}
.x10{left:171.841950px;}
.x9d{left:173.968500px;}
.x8b{left:174.991500px;}
.x11{left:176.445450px;}
.x35{left:177.752520px;}
.x6f{left:181.624860px;}
.xc3{left:182.664600px;}
.x57{left:184.580700px;}
.x52{left:185.615640px;}
.x58{left:188.576700px;}
.x72{left:190.927650px;}
.xa8{left:193.308750px;}
.x6d{left:198.562500px;}
.x4{left:203.484001px;}
.x12{left:208.615950px;}
.x73{left:210.645750px;}
.x9f{left:212.054850px;}
.xc4{left:213.350100px;}
.x59{left:223.069200px;}
.x5a{left:225.526200px;}
.x37{left:228.066840px;}
.x36{left:229.719060px;}
.xa0{left:231.097800px;}
.xb7{left:236.228850px;}
.x13{left:238.315950px;}
.x14{left:240.772950px;}
.xc5{left:243.104100px;}
.xb1{left:244.413840px;}
.x74{left:250.081950px;}
.x8d{left:251.150400px;}
.x39{left:253.634040px;}
.x38{left:256.661100px;}
.x5b{left:258.479700px;}
.x5c{left:262.475700px;}
.x15{left:267.705450px;}
.x75{left:269.800050px;}
.xd2{left:271.480500px;}
.x16{left:272.929950px;}
.xc6{left:277.178100px;}
.x3a{left:280.021320px;}
.xa2{left:288.227250px;}
.x76{left:289.518150px;}
.x5d{left:295.118700px;}
.x17{left:299.875950px;}
.xb3{left:301.543650px;}
.x18{left:305.100450px;}
.xa3{left:307.270350px;}
.x77{left:309.236250px;}
.xb8{left:312.401250px;}
.x9e{left:314.511750px;}
.xbf{left:317.012850px;}
.xb4{left:320.586390px;}
.x8e{left:322.376760px;}
.xa4{left:326.313450px;}
.x78{left:328.954350px;}
.x3b{left:330.335640px;}
.x19{left:332.950950px;}
.xc7{left:336.092100px;}
.x1a{left:337.257450px;}
.xa{left:343.620000px;}
.x79{left:348.672450px;}
.x3d{left:355.902840px;}
.x3c{left:358.929900px;}
.xc0{left:360.987300px;}
.x1b{left:364.810950px;}
.xc8{left:365.846100px;}
.x7a{left:368.390550px;}
.x1c{left:369.414450px;}
.x5e{left:370.867200px;}
.x5f{left:373.324200px;}
.xb5{left:377.716050px;}
.x3e{left:382.290120px;}
.x7b{left:388.108650px;}
.xa1{left:390.684150px;}
.x8f{left:394.145820px;}
.x1d{left:397.278450px;}
.xc9{left:399.920100px;}
.x1e{left:401.584950px;}
.x91{left:403.190820px;}
.xc1{left:404.962050px;}
.x60{left:406.277700px;}
.x3f{left:407.869380px;}
.x61{left:410.273700px;}
.xbc{left:412.200000px;}
.x7{left:414.900000px;}
.x90{left:425.079720px;}
.x7c{left:427.544850px;}
.x1f{left:431.284950px;}
.x40{left:432.604440px;}
.x20{left:433.741950px;}
.x62{left:442.916700px;}
.x8{left:446.400720px;}
.xc2{left:448.936650px;}
.xb6{left:453.888600px;}
.x3{left:454.959000px;}
.x41{left:458.171640px;}
.x21{left:460.674450px;}
.x22{left:465.898950px;}
.x7d{left:466.981050px;}
.x99{left:472.680000px;}
.xaa{left:475.200000px;}
.xa9{left:477.450150px;}
.x63{left:480.190200px;}
.x42{left:484.558920px;}
.x7e{left:486.699150px;}
.xcb{left:488.588100px;}
.xca{left:490.437600px;}
.x23{left:492.844950px;}
.x92{left:493.869960px;}
.x24{left:498.069450px;}
.x7f{left:506.417250px;}
.x43{left:510.138180px;}
.xb9{left:513.391950px;}
.xab{left:515.866800px;}
.x64{left:518.678700px;}
.x65{left:521.135700px;}
.xcc{left:522.662100px;}
.x25{left:525.919950px;}
.x26{left:530.226450px;}
.x45{left:534.873240px;}
.x44{left:536.525460px;}
.x80{left:545.853450px;}
.xcd{left:550.890600px;}
.x66{left:554.089200px;}
.x27{left:557.779950px;}
.x47{left:560.440440px;}
.x28{left:562.383450px;}
.x46{left:563.467500px;}
.x81{left:565.571550px;}
.x94{left:568.641960px;}
.x93{left:573.586560px;}
.xba{left:581.379000px;}
.xae{left:583.853850px;}
.x82{left:585.289650px;}
.x48{left:586.827720px;}
.x29{left:590.247450px;}
.xac{left:592.039200px;}
.x2a{left:594.553950px;}
.x83{left:605.007750px;}
.xce{left:611.330100px;}
.x49{left:612.406980px;}
.x2b{left:624.253950px;}
.x2c{left:626.710950px;}
.x67{left:628.001700px;}
.x68{left:631.997700px;}
.x4b{left:637.142040px;}
.x4a{left:638.794260px;}
.xcf{left:642.015600px;}
.x95{left:643.160700px;}
.x84{left:644.443950px;}
.x96{left:651.361500px;}
.x2d{left:653.643450px;}
.xbb{left:657.551400px;}
.x2e{left:658.867950px;}
.xaf{left:660.026250px;}
.x4d{left:662.709240px;}
.x85{left:664.162050px;}
.x4c{left:665.736300px;}
.x69{left:668.947200px;}
.xd0{left:673.632600px;}
.x86{left:683.880150px;}
.x2f{left:685.813950px;}
.x4e{left:689.096520px;}
.x30{left:691.038450px;}
.x6a{left:701.900700px;}
.x87{left:703.598250px;}
.x6b{left:705.896700px;}
.x4f{left:714.675780px;}
.x31{left:718.888950px;}
.x32{left:723.195450px;}
.x98{left:724.794840px;}
.x97{left:733.550400px;}
.xd1{left:735.921600px;}
.x51{left:739.410840px;}
.x50{left:741.063060px;}
.x6c{left:742.846200px;}
.xad{left:744.384300px;}
.x88{left:762.752550px;}
.x89{left:782.470650px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7d{letter-spacing:-1.806080pt;}
.ls74{letter-spacing:-1.168000pt;}
.ls6a{letter-spacing:-1.152000pt;}
.ls7c{letter-spacing:-1.061333pt;}
.ls37{letter-spacing:-0.743680pt;}
.ls7b{letter-spacing:-0.688000pt;}
.ls4f{letter-spacing:-0.673920pt;}
.ls5d{letter-spacing:-0.672000pt;}
.ls78{letter-spacing:-0.586667pt;}
.ls77{letter-spacing:-0.533333pt;}
.ls4e{letter-spacing:-0.528000pt;}
.ls43{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.432000pt;}
.ls49{letter-spacing:-0.428800pt;}
.ls51{letter-spacing:-0.424960pt;}
.ls48{letter-spacing:-0.343040pt;}
.ls11{letter-spacing:-0.299520pt;}
.ls61{letter-spacing:-0.288000pt;}
.ls28{letter-spacing:-0.265600pt;}
.ls7e{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.212480pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls67{letter-spacing:-0.171520pt;}
.ls42{letter-spacing:-0.144000pt;}
.ls27{letter-spacing:-0.106240pt;}
.ls70{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls73{letter-spacing:-0.058880pt;}
.ls79{letter-spacing:-0.053333pt;}
.ls16{letter-spacing:-0.053120pt;}
.ls50{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls71{letter-spacing:0.029440pt;}
.ls3a{letter-spacing:0.047808pt;}
.ls20{letter-spacing:0.053120pt;}
.ls75{letter-spacing:0.053333pt;}
.ls6c{letter-spacing:0.058432pt;}
.ls5a{letter-spacing:0.062400pt;}
.ls5b{letter-spacing:0.067200pt;}
.ls5c{letter-spacing:0.091200pt;}
.lsd{letter-spacing:0.096000pt;}
.ls47{letter-spacing:0.106240pt;}
.ls72{letter-spacing:0.106667pt;}
.ls40{letter-spacing:0.110400pt;}
.ls13{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.143424pt;}
.ls41{letter-spacing:0.144000pt;}
.ls6f{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.187200pt;}
.lse{letter-spacing:0.192000pt;}
.ls6e{letter-spacing:0.196544pt;}
.ls22{letter-spacing:0.212480pt;}
.ls7a{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.217792pt;}
.ls2c{letter-spacing:0.223104pt;}
.ls33{letter-spacing:0.233728pt;}
.ls38{letter-spacing:0.240000pt;}
.ls2e{letter-spacing:0.276224pt;}
.ls59{letter-spacing:0.286848pt;}
.ls26{letter-spacing:0.299520pt;}
.lsf{letter-spacing:0.300160pt;}
.ls2a{letter-spacing:0.318720pt;}
.ls14{letter-spacing:0.371840pt;}
.ls24{letter-spacing:0.398400pt;}
.ls15{letter-spacing:0.424960pt;}
.ls57{letter-spacing:0.446208pt;}
.ls4{letter-spacing:0.531200pt;}
.ls1c{letter-spacing:0.584320pt;}
.ls64{letter-spacing:0.585600pt;}
.ls2d{letter-spacing:0.605568pt;}
.ls21{letter-spacing:0.621504pt;}
.ls76{letter-spacing:0.634667pt;}
.ls5e{letter-spacing:0.637440pt;}
.ls39{letter-spacing:0.642752pt;}
.ls69{letter-spacing:0.717120pt;}
.ls4d{letter-spacing:0.802112pt;}
.ls5{letter-spacing:0.849920pt;}
.ls17{letter-spacing:0.956160pt;}
.ls32{letter-spacing:0.982720pt;}
.ls30{letter-spacing:1.221760pt;}
.ls2f{letter-spacing:1.258944pt;}
.ls19{letter-spacing:1.264256pt;}
.ls60{letter-spacing:1.365184pt;}
.ls6b{letter-spacing:1.397056pt;}
.ls2{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:1.859200pt;}
.ls23{letter-spacing:1.938880pt;}
.ls1{letter-spacing:2.000000pt;}
.lsb{letter-spacing:2.496640pt;}
.ls36{letter-spacing:2.533824pt;}
.ls44{letter-spacing:2.576320pt;}
.ls1d{letter-spacing:3.134080pt;}
.ls34{letter-spacing:3.140480pt;}
.ls4a{letter-spacing:3.187200pt;}
.ls54{letter-spacing:3.219072pt;}
.ls1b{letter-spacing:3.235008pt;}
.ls3c{letter-spacing:3.240320pt;}
.ls31{letter-spacing:3.265280pt;}
.ls3b{letter-spacing:3.267200pt;}
.ls35{letter-spacing:3.426240pt;}
.ls52{letter-spacing:3.771520pt;}
.ls45{letter-spacing:3.824640pt;}
.ls1e{letter-spacing:3.904320pt;}
.ls68{letter-spacing:4.111488pt;}
.ls4b{letter-spacing:4.408960pt;}
.ls6d{letter-spacing:4.547072pt;}
.ls4c{letter-spacing:5.099520pt;}
.ls9{letter-spacing:5.736960pt;}
.ls53{letter-spacing:6.358464pt;}
.ls3d{letter-spacing:6.374400pt;}
.ls5f{letter-spacing:6.459392pt;}
.lsa{letter-spacing:7.011840pt;}
.ls7{letter-spacing:7.649280pt;}
.ls8{letter-spacing:7.686464pt;}
.ls6{letter-spacing:7.702400pt;}
.ls1f{letter-spacing:10.199040pt;}
.ls3e{letter-spacing:12.748800pt;}
.ls3f{letter-spacing:13.386240pt;}
.lsc{letter-spacing:26.976000pt;}
.ls55{letter-spacing:33.890560pt;}
.ls56{letter-spacing:37.077760pt;}
.ls58{letter-spacing:48.604800pt;}
.ls62{letter-spacing:411.456000pt;}
.ls66{letter-spacing:547.296000pt;}
.ls63{letter-spacing:748.080000pt;}
.ls46{letter-spacing:753.201920pt;}
.ls65{letter-spacing:818.496000pt;}
.ws6b{word-spacing:-25.551147pt;}
.ws20{word-spacing:-21.116160pt;}
.ws66{word-spacing:-20.741760pt;}
.ws2{word-spacing:-20.517120pt;}
.ws4{word-spacing:-17.728000pt;}
.ws8{word-spacing:-15.723520pt;}
.ws6{word-spacing:-15.298560pt;}
.ws7{word-spacing:-15.192320pt;}
.ws5{word-spacing:-15.139200pt;}
.ws25{word-spacing:-15.086080pt;}
.ws21{word-spacing:-14.767360pt;}
.ws37{word-spacing:-14.714240pt;}
.ws22{word-spacing:-14.661120pt;}
.ws23{word-spacing:-14.554880pt;}
.ws24{word-spacing:-14.501760pt;}
.ws41{word-spacing:-14.023680pt;}
.ws31{word-spacing:-13.584000pt;}
.wsa{word-spacing:-13.536000pt;}
.ws42{word-spacing:-13.488000pt;}
.ws68{word-spacing:-13.424640pt;}
.ws67{word-spacing:-13.365760pt;}
.ws5e{word-spacing:-13.344000pt;}
.ws30{word-spacing:-13.152000pt;}
.ws4d{word-spacing:-12.912000pt;}
.ws4e{word-spacing:-12.816000pt;}
.ws53{word-spacing:-12.672000pt;}
.ws6a{word-spacing:-12.218027pt;}
.ws51{word-spacing:-12.217600pt;}
.ws69{word-spacing:-12.111360pt;}
.ws3{word-spacing:-11.920640pt;}
.ws6c{word-spacing:-11.845760pt;}
.ws50{word-spacing:-11.686400pt;}
.ws4f{word-spacing:-10.896000pt;}
.ws38{word-spacing:-10.800000pt;}
.ws6e{word-spacing:-10.704000pt;}
.ws55{word-spacing:-10.656000pt;}
.ws39{word-spacing:-10.464000pt;}
.ws9{word-spacing:-10.319360pt;}
.ws6d{word-spacing:-10.305280pt;}
.ws47{word-spacing:-10.076800pt;}
.ws5b{word-spacing:-9.605120pt;}
.ws43{word-spacing:-9.433600pt;}
.ws44{word-spacing:-9.347840pt;}
.ws1{word-spacing:-9.280000pt;}
.ws54{word-spacing:-3.771520pt;}
.ws11{word-spacing:-3.134080pt;}
.ws19{word-spacing:-2.496640pt;}
.ws7d{word-spacing:-1.888000pt;}
.ws1c{word-spacing:-1.859200pt;}
.ws3c{word-spacing:-1.274880pt;}
.wsf{word-spacing:-1.221760pt;}
.ws3b{word-spacing:-1.062400pt;}
.ws4b{word-spacing:-0.903040pt;}
.ws35{word-spacing:-0.720000pt;}
.ws3d{word-spacing:-0.672000pt;}
.ws7b{word-spacing:-0.634667pt;}
.ws12{word-spacing:-0.584320pt;}
.ws14{word-spacing:-0.531200pt;}
.ws5d{word-spacing:-0.471680pt;}
.ws10{word-spacing:-0.371840pt;}
.ws2f{word-spacing:-0.318720pt;}
.wsb{word-spacing:-0.300160pt;}
.ws78{word-spacing:-0.213333pt;}
.ws56{word-spacing:-0.212480pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws85{word-spacing:-0.176000pt;}
.ws49{word-spacing:-0.144000pt;}
.ws84{word-spacing:-0.112000pt;}
.ws71{word-spacing:-0.106667pt;}
.ws88{word-spacing:-0.106240pt;}
.ws1d{word-spacing:-0.096000pt;}
.ws6f{word-spacing:-0.058880pt;}
.ws76{word-spacing:-0.058667pt;}
.ws79{word-spacing:-0.053333pt;}
.ws4c{word-spacing:-0.053120pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws87{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.ws77{word-spacing:0.048000pt;}
.ws17{word-spacing:0.053120pt;}
.ws7e{word-spacing:0.053333pt;}
.ws70{word-spacing:0.058880pt;}
.ws36{word-spacing:0.096000pt;}
.ws29{word-spacing:0.106240pt;}
.ws7a{word-spacing:0.106667pt;}
.ws40{word-spacing:0.144000pt;}
.ws58{word-spacing:0.171520pt;}
.wsd{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.212480pt;}
.ws80{word-spacing:0.256000pt;}
.ws5a{word-spacing:0.257280pt;}
.ws2a{word-spacing:0.265600pt;}
.ws5c{word-spacing:0.343040pt;}
.ws57{word-spacing:0.371840pt;}
.wsc{word-spacing:0.384000pt;}
.ws83{word-spacing:0.480000pt;}
.ws73{word-spacing:0.522667pt;}
.ws1f{word-spacing:0.528000pt;}
.ws7c{word-spacing:0.533333pt;}
.ws86{word-spacing:0.538667pt;}
.ws7f{word-spacing:0.554667pt;}
.ws72{word-spacing:0.586667pt;}
.wse{word-spacing:0.599040pt;}
.ws61{word-spacing:0.624000pt;}
.ws74{word-spacing:0.688000pt;}
.ws2c{word-spacing:0.690560pt;}
.ws34{word-spacing:0.743680pt;}
.ws82{word-spacing:0.773333pt;}
.ws59{word-spacing:0.814720pt;}
.ws81{word-spacing:0.890667pt;}
.ws52{word-spacing:0.973440pt;}
.ws60{word-spacing:1.152000pt;}
.ws75{word-spacing:1.210667pt;}
.ws28{word-spacing:1.328000pt;}
.ws2b{word-spacing:1.965440pt;}
.ws1b{word-spacing:2.018560pt;}
.ws48{word-spacing:2.602880pt;}
.ws26{word-spacing:2.656000pt;}
.ws32{word-spacing:2.815360pt;}
.ws27{word-spacing:3.293440pt;}
.ws15{word-spacing:3.930880pt;}
.ws2e{word-spacing:4.568320pt;}
.ws18{word-spacing:5.205760pt;}
.ws13{word-spacing:5.843200pt;}
.ws1a{word-spacing:6.480640pt;}
.ws16{word-spacing:7.118080pt;}
.ws62{word-spacing:9.030400pt;}
.ws33{word-spacing:9.667840pt;}
.ws2d{word-spacing:10.305280pt;}
.ws64{word-spacing:11.580160pt;}
.ws65{word-spacing:12.217600pt;}
.ws3f{word-spacing:12.855040pt;}
.ws3e{word-spacing:13.492480pt;}
.ws5f{word-spacing:154.080000pt;}
.ws63{word-spacing:199.584000pt;}
.ws46{word-spacing:217.397312pt;}
.ws45{word-spacing:252.370240pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._0{margin-left:-4.640000pt;}
._4{margin-left:-3.461333pt;}
._c{margin-left:-2.387840pt;}
._5{margin-left:-0.944533pt;}
._6{width:1.219200pt;}
._7{width:2.364800pt;}
._b{width:3.665280pt;}
._e{width:4.624000pt;}
._8{width:5.696640pt;}
._9{width:7.067520pt;}
._16{width:8.608000pt;}
._d{width:10.573440pt;}
._f{width:12.455680pt;}
._12{width:243.772800pt;}
._10{width:268.651840pt;}
._1d{width:269.808000pt;}
._11{width:285.347840pt;}
._19{width:302.496000pt;}
._1b{width:322.368000pt;}
._1c{width:330.096000pt;}
._17{width:355.104000pt;}
._18{width:362.784000pt;}
._14{width:415.199360pt;}
._1e{width:442.775147pt;}
._13{width:467.284800pt;}
._1a{width:540.269867pt;}
._15{width:609.884160pt;}
._a{width:753.241600pt;}
.fs10{font-size:16.000000pt;}
.fsf{font-size:21.120000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs11{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:170.666667pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.y174{bottom:3.175867pt;}
.y19c{bottom:3.202400pt;}
.y1a9{bottom:3.255600pt;}
.y18f{bottom:3.269067pt;}
.y1b5{bottom:3.295600pt;}
.y182{bottom:3.309067pt;}
.yde{bottom:4.404667pt;}
.y1d4{bottom:4.518533pt;}
.y10a{bottom:4.526667pt;}
.y2a{bottom:21.283520pt;}
.y170{bottom:28.731467pt;}
.y171{bottom:28.744800pt;}
.y198{bottom:28.758000pt;}
.y199{bottom:28.771333pt;}
.y1a5{bottom:28.811333pt;}
.y18b{bottom:28.824667pt;}
.y18c{bottom:28.838000pt;}
.y1b2{bottom:28.851333pt;}
.y17d{bottom:28.864667pt;}
.y17e{bottom:28.878000pt;}
.y172{bottom:30.191467pt;}
.y19a{bottom:30.218133pt;}
.y18d{bottom:30.284800pt;}
.y1b3{bottom:30.311333pt;}
.y6{bottom:31.933340pt;}
.y29{bottom:33.440000pt;}
.y1d1{bottom:52.954400pt;}
.y1d0{bottom:54.581067pt;}
.y1d2{bottom:54.594400pt;}
.y5{bottom:59.133337pt;}
.y12e{bottom:82.224000pt;}
.yfc{bottom:82.232000pt;}
.y93{bottom:82.236000pt;}
.y1ca{bottom:84.862400pt;}
.y1e9{bottom:85.038720pt;}
.y4{bottom:86.333337pt;}
.y167{bottom:87.840000pt;}
.y42{bottom:88.000000pt;}
.y145{bottom:90.947840pt;}
.y12d{bottom:95.988000pt;}
.yfb{bottom:95.996000pt;}
.y92{bottom:96.000000pt;}
.y166{bottom:106.240000pt;}
.y1c9{bottom:106.296320pt;}
.y1e8{bottom:106.313280pt;}
.y41{bottom:108.800000pt;}
.y12c{bottom:109.752000pt;}
.yfa{bottom:109.760000pt;}
.y144{bottom:112.222400pt;}
.y91{bottom:115.680000pt;}
.y40{bottom:121.600000pt;}
.y20e{bottom:121.760000pt;}
.y12b{bottom:123.672000pt;}
.y22{bottom:123.790666pt;}
.y1c8{bottom:127.570880pt;}
.y1e7{bottom:127.587840pt;}
.yaf{bottom:128.320000pt;}
.yf9{bottom:129.440000pt;}
.y165{bottom:129.600000pt;}
.y90{bottom:130.712000pt;}
.y143{bottom:133.496960pt;}
.y20d{bottom:136.484000pt;}
.y12a{bottom:137.436000pt;}
.yf8{bottom:142.080000pt;}
.y8f{bottom:144.476000pt;}
.yd4{bottom:145.686400pt;}
.y1a2{bottom:145.760000pt;}
.y1af{bottom:146.720000pt;}
.y1c7{bottom:148.845440pt;}
.y1e6{bottom:149.021760pt;}
.y20c{bottom:151.040000pt;}
.y129{bottom:151.200000pt;}
.y16e{bottom:152.915867pt;}
.y196{bottom:152.942400pt;}
.y1a3{bottom:152.995600pt;}
.y189{bottom:153.008933pt;}
.y1b0{bottom:153.035600pt;}
.y17b{bottom:153.048933pt;}
.y142{bottom:154.930880pt;}
.y8e{bottom:158.240000pt;}
.y1a8{bottom:161.255733pt;}
.y1b4{bottom:162.255733pt;}
.y20b{bottom:165.760000pt;}
.yd3{bottom:166.004800pt;}
.y69{bottom:166.763840pt;}
.yae{bottom:167.720000pt;}
.y1c6{bottom:170.279360pt;}
.y1e5{bottom:170.296320pt;}
.y128{bottom:170.880000pt;}
.y19{bottom:175.052000pt;}
.y1a6{bottom:176.031333pt;}
.y141{bottom:176.205440pt;}
.y8d{bottom:177.920000pt;}
.yf7{bottom:178.096960pt;}
.y1a7{bottom:178.475493pt;}
.y1a4{bottom:178.478000pt;}
.y1b1{bottom:179.478000pt;}
.y20a{bottom:180.484000pt;}
.y127{bottom:185.912000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y68{bottom:186.763520pt;}
.yd2{bottom:187.279360pt;}
.yad{bottom:189.153920pt;}
.y8c{bottom:190.560000pt;}
.y1c5{bottom:191.553920pt;}
.y1e4{bottom:191.570880pt;}
.y209{bottom:195.040000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y140{bottom:197.480000pt;}
.yf6{bottom:199.371520pt;}
.y126{bottom:199.676000pt;}
.y67{bottom:208.038080pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yd1{bottom:208.713280pt;}
.yac{bottom:210.428480pt;}
.y1c4{bottom:212.828480pt;}
.y1e3{bottom:213.004800pt;}
.y125{bottom:213.440000pt;}
.y19d{bottom:213.660533pt;}
.y1aa{bottom:214.660533pt;}
.y13f{bottom:218.913920pt;}
.yf5{bottom:220.646080pt;}
.y8b{bottom:222.571520pt;}
.y208{bottom:226.073280pt;}
.y66{bottom:229.472000pt;}
.yd0{bottom:229.987840pt;}
.y19e{bottom:230.683893pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1ab{bottom:231.683893pt;}
.yab{bottom:231.703040pt;}
.y124{bottom:233.120000pt;}
.y1c3{bottom:234.262400pt;}
.y1e2{bottom:234.279360pt;}
.y13e{bottom:240.188480pt;}
.y207{bottom:242.075733pt;}
.yf4{bottom:242.080000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y8a{bottom:243.846080pt;}
.y123{bottom:245.760000pt;}
.y19f{bottom:247.707253pt;}
.y1ac{bottom:248.707253pt;}
.y65{bottom:250.746560pt;}
.ycf{bottom:251.262400pt;}
.yaa{bottom:253.136960pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1c2{bottom:255.536960pt;}
.y1e1{bottom:255.553920pt;}
.y14c{bottom:257.416000pt;}
.y13d{bottom:261.463040pt;}
.y1a0{bottom:264.730613pt;}
.y89{bottom:265.302400pt;}
.y1ad{bottom:265.730613pt;}
.y64{bottom:272.021120pt;}
.yce{bottom:272.696320pt;}
.ya9{bottom:274.411520pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1c1{bottom:276.811520pt;}
.y1e0{bottom:276.987840pt;}
.y206{bottom:278.237067pt;}
.yf3{bottom:279.200000pt;}
.y1a1{bottom:281.753973pt;}
.y1ae{bottom:282.753973pt;}
.y13c{bottom:282.896960pt;}
.y88{bottom:286.576960pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y122{bottom:288.164160pt;}
.y63{bottom:293.455040pt;}
.ycd{bottom:293.970880pt;}
.ya8{bottom:295.686080pt;}
.y1c0{bottom:298.245440pt;}
.y1df{bottom:298.262400pt;}
.y13b{bottom:304.171520pt;}
.y87{bottom:307.851520pt;}
.y10{bottom:309.452000pt;}
.y121{bottom:309.598080pt;}
.y205{bottom:312.637333pt;}
.y62{bottom:314.729600pt;}
.ycc{bottom:315.245440pt;}
.ya7{bottom:317.120000pt;}
.y1bf{bottom:319.520000pt;}
.y1de{bottom:319.536960pt;}
.y164{bottom:320.324000pt;}
.y13a{bottom:325.446080pt;}
.y204{bottom:328.640000pt;}
.y86{bottom:329.285440pt;}
.y120{bottom:330.872640pt;}
.yf2{bottom:332.873920pt;}
.y61{bottom:336.004160pt;}
.ycb{bottom:336.679360pt;}
.y1be{bottom:339.200000pt;}
.y1dd{bottom:340.970880pt;}
.y163{bottom:341.600000pt;}
.yf{bottom:343.809333pt;}
.y139{bottom:346.880000pt;}
.y85{bottom:350.610880pt;}
.y11f{bottom:352.147200pt;}
.ya6{bottom:354.240000pt;}
.yf1{bottom:354.307840pt;}
.y60{bottom:357.438080pt;}
.yca{bottom:357.953920pt;}
.y195{bottom:358.880000pt;}
.y1bd{bottom:359.680000pt;}
.y1dc{bottom:362.245440pt;}
.ye{bottom:362.706666pt;}
.y1cf{bottom:364.640000pt;}
.y203{bottom:365.590667pt;}
.y138{bottom:366.560000pt;}
.y84{bottom:371.885440pt;}
.y11e{bottom:373.581120pt;}
.y19b{bottom:374.322533pt;}
.yf0{bottom:375.582400pt;}
.y5f{bottom:378.712640pt;}
.yc9{bottom:379.228480pt;}
.y137{bottom:380.324000pt;}
.y202{bottom:381.593333pt;}
.y1db{bottom:383.520000pt;}
.y197{bottom:391.544667pt;}
.y14b{bottom:392.000000pt;}
.y83{bottom:393.319360pt;}
.y11d{bottom:394.855680pt;}
.yef{bottom:396.856960pt;}
.y201{bottom:397.596000pt;}
.y1d3{bottom:398.181067pt;}
.y15c{bottom:399.509307pt;}
.y158{bottom:399.520027pt;}
.y154{bottom:399.530747pt;}
.y5e{bottom:399.987200pt;}
.yc8{bottom:400.662400pt;}
.y3f{bottom:406.639680pt;}
.ya5{bottom:407.840000pt;}
.y15b{bottom:411.751547pt;}
.y157{bottom:411.762267pt;}
.y153{bottom:411.772987pt;}
.y82{bottom:414.593920pt;}
.y11c{bottom:416.130240pt;}
.yee{bottom:418.290880pt;}
.y1da{bottom:420.800000pt;}
.y5d{bottom:421.421120pt;}
.yc7{bottom:421.936960pt;}
.y15e{bottom:423.983067pt;}
.y15a{bottom:423.993787pt;}
.y156{bottom:424.004507pt;}
.y152{bottom:424.015227pt;}
.y3e{bottom:426.639360pt;}
.y190{bottom:426.727333pt;}
.ya4{bottom:427.524000pt;}
.y81{bottom:435.868480pt;}
.y15d{bottom:436.225307pt;}
.y159{bottom:436.236027pt;}
.y155{bottom:436.246747pt;}
.y151{bottom:436.257467pt;}
.y11b{bottom:437.564160pt;}
.yed{bottom:439.565440pt;}
.y200{bottom:440.480000pt;}
.y5c{bottom:442.695680pt;}
.yc6{bottom:443.211520pt;}
.y191{bottom:443.750693pt;}
.yd{bottom:446.990669pt;}
.y3d{bottom:447.913920pt;}
.ya3{bottom:449.280000pt;}
.y14e{bottom:449.577653pt;}
.y14f{bottom:449.588373pt;}
.y150{bottom:451.035573pt;}
.y14d{bottom:453.479733pt;}
.y80{bottom:457.302400pt;}
.y11a{bottom:458.838720pt;}
.y192{bottom:460.774053pt;}
.yec{bottom:460.840000pt;}
.yc{bottom:462.990669pt;}
.y5b{bottom:463.970240pt;}
.yc5{bottom:464.645440pt;}
.y3c{bottom:469.347840pt;}
.ybc{bottom:471.795467pt;}
.y1d9{bottom:473.120000pt;}
.y193{bottom:477.797413pt;}
.y7f{bottom:478.576960pt;}
.yb{bottom:478.990666pt;}
.y119{bottom:480.113280pt;}
.yeb{bottom:482.273920pt;}
.y5a{bottom:485.404160pt;}
.ybb{bottom:485.559467pt;}
.yc4{bottom:485.920000pt;}
.y146{bottom:488.178933pt;}
.y1d8{bottom:488.800000pt;}
.y1cb{bottom:489.484667pt;}
.y3b{bottom:490.622400pt;}
.y194{bottom:494.820773pt;}
.ya{bottom:494.990666pt;}
.y7e{bottom:499.851520pt;}
.yb0{bottom:500.103467pt;}
.y118{bottom:501.547200pt;}
.yea{bottom:503.548480pt;}
.yc3{bottom:505.600000pt;}
.y59{bottom:506.678720pt;}
.y1d7{bottom:508.800000pt;}
.y3a{bottom:511.896960pt;}
.yb1{bottom:516.399467pt;}
.y1cc{bottom:518.692667pt;}
.y1f2{bottom:520.012667pt;}
.y147{bottom:520.422933pt;}
.y7d{bottom:521.285440pt;}
.y117{bottom:522.821760pt;}
.ye9{bottom:524.823040pt;}
.yc2{bottom:527.356000pt;}
.y58{bottom:527.953280pt;}
.yb2{bottom:532.695467pt;}
.y39{bottom:533.330880pt;}
.y162{bottom:533.440000pt;}
.ydd{bottom:538.720000pt;}
.y7c{bottom:542.560000pt;}
.y116{bottom:544.096320pt;}
.ye8{bottom:546.256960pt;}
.y1cd{bottom:547.900667pt;}
.y1f1{bottom:548.507467pt;}
.yb3{bottom:548.991467pt;}
.y57{bottom:549.387200pt;}
.y148{bottom:552.666933pt;}
.y38{bottom:554.605440pt;}
.y161{bottom:554.720000pt;}
.yb4{bottom:565.287467pt;}
.y115{bottom:565.530240pt;}
.y1f0{bottom:566.471467pt;}
.ye7{bottom:567.531520pt;}
.y56{bottom:570.661760pt;}
.y188{bottom:570.880000pt;}
.y17a{bottom:571.840000pt;}
.y9{bottom:573.786667pt;}
.y37{bottom:575.880000pt;}
.ydc{bottom:576.146213pt;}
.y1ce{bottom:577.108667pt;}
.y7b{bottom:579.840000pt;}
.y1ef{bottom:580.235467pt;}
.yb5{bottom:581.583467pt;}
.y149{bottom:584.910933pt;}
.y18e{bottom:586.389200pt;}
.y114{bottom:586.804800pt;}
.y181{bottom:587.389200pt;}
.ye6{bottom:588.806080pt;}
.y1ea{bottom:590.783467pt;}
.ydb{bottom:591.786693pt;}
.y55{bottom:591.936320pt;}
.y8{bottom:592.685334pt;}
.y27{bottom:596.031467pt;}
.y36{bottom:597.313920pt;}
.yb6{bottom:597.879467pt;}
.y1bc{bottom:599.996000pt;}
.y17f{bottom:602.164800pt;}
.y18a{bottom:603.611467pt;}
.yda{bottom:604.028933pt;}
.y180{bottom:604.608960pt;}
.y17c{bottom:604.611467pt;}
.y113{bottom:608.079360pt;}
.ye5{bottom:610.240000pt;}
.yd5{bottom:612.494533pt;}
.y54{bottom:613.370240pt;}
.y1bb{bottom:613.760000pt;}
.yb7{bottom:614.175467pt;}
.y14a{bottom:617.154933pt;}
.y35{bottom:618.588480pt;}
.y1eb{bottom:620.543467pt;}
.y112{bottom:629.513280pt;}
.yb8{bottom:630.471467pt;}
.ye4{bottom:631.524000pt;}
.y53{bottom:634.644800pt;}
.y183{bottom:638.793867pt;}
.y175{bottom:639.793867pt;}
.y34{bottom:639.863040pt;}
.y7a{bottom:643.360000pt;}
.y26{bottom:644.031467pt;}
.y1ba{bottom:645.296960pt;}
.y7{bottom:645.598667pt;}
.yb9{bottom:646.767467pt;}
.y1ec{bottom:650.303467pt;}
.y111{bottom:650.787840pt;}
.yd6{bottom:652.490533pt;}
.ye3{bottom:652.800000pt;}
.y184{bottom:655.817227pt;}
.y52{bottom:655.919360pt;}
.y176{bottom:656.817227pt;}
.y33{bottom:661.296960pt;}
.yba{bottom:663.063467pt;}
.y79{bottom:664.640000pt;}
.y1b9{bottom:666.571520pt;}
.y3{bottom:668.977329pt;}
.y136{bottom:669.440000pt;}
.y110{bottom:672.062400pt;}
.ye2{bottom:672.636000pt;}
.y185{bottom:672.840587pt;}
.y177{bottom:673.840587pt;}
.y51{bottom:677.353280pt;}
.y1ed{bottom:680.063467pt;}
.y32{bottom:682.571520pt;}
.y135{bottom:683.360000pt;}
.y78{bottom:686.080000pt;}
.y1b8{bottom:687.846080pt;}
.y186{bottom:689.863947pt;}
.y178{bottom:690.863947pt;}
.ya2{bottom:690.876000pt;}
.y25{bottom:692.031467pt;}
.yd7{bottom:692.486533pt;}
.y10f{bottom:693.496320pt;}
.ye1{bottom:694.392000pt;}
.y50{bottom:698.627840pt;}
.y31{bottom:703.846080pt;}
.ya1{bottom:704.640000pt;}
.y109{bottom:705.600000pt;}
.y187{bottom:706.887307pt;}
.y77{bottom:707.360000pt;}
.y179{bottom:707.887307pt;}
.y1b7{bottom:709.280000pt;}
.y1ee{bottom:709.823467pt;}
.y10e{bottom:714.770880pt;}
.y134{bottom:714.793280pt;}
.y4f{bottom:719.902400pt;}
.y30{bottom:725.280000pt;}
.y108{bottom:725.390133pt;}
.y76{bottom:728.640000pt;}
.y1ff{bottom:730.627200pt;}
.yd8{bottom:732.482533pt;}
.y1d6{bottom:733.440000pt;}
.ya0{bottom:736.045440pt;}
.y133{bottom:736.067840pt;}
.y24{bottom:740.031467pt;}
.y160{bottom:740.484000pt;}
.y107{bottom:740.653600pt;}
.y4e{bottom:741.336320pt;}
.y1fe{bottom:745.341440pt;}
.y1b6{bottom:746.400000pt;}
.y1d5{bottom:747.360000pt;}
.y75{bottom:750.080000pt;}
.y9f{bottom:757.479360pt;}
.y132{bottom:757.501760pt;}
.y2f{bottom:761.760000pt;}
.y4d{bottom:762.610880pt;}
.y74{bottom:771.360000pt;}
.yd9{bottom:772.478533pt;}
.y1fd{bottom:773.176320pt;}
.y9e{bottom:778.753920pt;}
.y131{bottom:778.776320pt;}
.y16d{bottom:779.040000pt;}
.y106{bottom:779.162533pt;}
.y2{bottom:781.661334pt;}
.y4c{bottom:783.885440pt;}
.y1fc{bottom:787.890560pt;}
.y73{bottom:792.640000pt;}
.y105{bottom:792.926533pt;}
.y173{bottom:794.456000pt;}
.yc1{bottom:797.440000pt;}
.y9d{bottom:800.028480pt;}
.y130{bottom:800.050880pt;}
.y4b{bottom:805.319360pt;}
.yfd{bottom:807.482533pt;}
.yc0{bottom:811.360000pt;}
.y16f{bottom:811.678133pt;}
.y72{bottom:814.080000pt;}
.y1fb{bottom:815.884800pt;}
.y9c{bottom:821.462400pt;}
.y12f{bottom:821.484800pt;}
.y4a{bottom:826.593920pt;}
.yfe{bottom:828.086533pt;}
.y1fa{bottom:830.599040pt;}
.y71{bottom:835.360000pt;}
.y9b{bottom:842.736960pt;}
.ybf{bottom:842.759360pt;}
.y1f9{bottom:845.313280pt;}
.y168{bottom:846.860667pt;}
.y49{bottom:847.868480pt;}
.yff{bottom:848.690533pt;}
.y70{bottom:856.640000pt;}
.y1{bottom:859.312000pt;}
.y169{bottom:863.884027pt;}
.y9a{bottom:864.011520pt;}
.ybe{bottom:864.033920pt;}
.y28{bottom:864.189067pt;}
.y100{bottom:869.294533pt;}
.y48{bottom:869.302400pt;}
.y1f8{bottom:873.148160pt;}
.y6f{bottom:878.080000pt;}
.y2e{bottom:879.040000pt;}
.y16a{bottom:880.907387pt;}
.y99{bottom:885.445440pt;}
.ybd{bottom:885.467840pt;}
.y1f7{bottom:887.862400pt;}
.y101{bottom:889.898533pt;}
.y47{bottom:890.576960pt;}
.y16b{bottom:897.930747pt;}
.y6e{bottom:899.360000pt;}
.y1f6{bottom:902.576640pt;}
.y10d{bottom:906.736960pt;}
.y98{bottom:906.742400pt;}
.y23{bottom:909.354133pt;}
.y102{bottom:910.502533pt;}
.y46{bottom:911.851520pt;}
.y16c{bottom:914.954107pt;}
.y2d{bottom:917.120000pt;}
.y6d{bottom:920.640000pt;}
.y10c{bottom:928.011520pt;}
.y97{bottom:928.016960pt;}
.y1f5{bottom:930.570880pt;}
.y103{bottom:931.106533pt;}
.y45{bottom:933.285440pt;}
.y6c{bottom:942.080000pt;}
.y1f4{bottom:945.285120pt;}
.y15f{bottom:948.480000pt;}
.y10b{bottom:949.445440pt;}
.y96{bottom:949.450880pt;}
.y104{bottom:951.710533pt;}
.y44{bottom:954.560000pt;}
.y2c{bottom:955.512000pt;}
.y1f3{bottom:959.840000pt;}
.y6b{bottom:963.360000pt;}
.y95{bottom:970.725440pt;}
.ye0{bottom:984.156000pt;}
.y6a{bottom:984.800000pt;}
.y2b{bottom:984.960000pt;}
.y43{bottom:991.680000pt;}
.y94{bottom:992.000000pt;}
.ydf{bottom:997.920000pt;}
.h28{height:13.757812pt;}
.h26{height:18.160312pt;}
.h7{height:28.560000pt;}
.h15{height:31.918125pt;}
.hf{height:38.671562pt;}
.h6{height:40.800000pt;}
.h19{height:41.273438pt;}
.h1a{height:41.976562pt;}
.h3{height:42.840000pt;}
.h1b{height:43.289062pt;}
.hd{height:43.472000pt;}
.h14{height:45.675938pt;}
.h16{height:46.454062pt;}
.hc{height:47.168000pt;}
.h1d{height:47.906563pt;}
.h2{height:48.960000pt;}
.h2e{height:51.216000pt;}
.h1e{height:52.742445pt;}
.h17{height:52.834605pt;}
.h18{height:52.948525pt;}
.h21{height:52.970285pt;}
.h20{height:53.016365pt;}
.h13{height:55.968750pt;}
.h2b{height:56.679040pt;}
.h2c{height:56.679253pt;}
.h2d{height:57.582080pt;}
.h12{height:58.619062pt;}
.hb{height:58.960000pt;}
.h2a{height:62.824960pt;}
.h11{height:65.483437pt;}
.h5{height:69.360000pt;}
.h10{height:83.953125pt;}
.h4{height:105.826671pt;}
.ha{height:123.392000pt;}
.h23{height:162.400000pt;}
.h25{height:162.558667pt;}
.h24{height:162.560000pt;}
.h9{height:167.736000pt;}
.h27{height:228.000000pt;}
.h1c{height:248.960000pt;}
.h1f{height:264.000000pt;}
.h22{height:269.598667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h29{height:1124.000000pt;}
.w8{width:294.720000pt;}
.w9{width:294.880000pt;}
.wa{width:294.881333pt;}
.w2{width:566.928019pt;}
.wb{width:570.560000pt;}
.w5{width:578.238667pt;}
.w6{width:585.920000pt;}
.w7{width:592.961333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.wc{width:796.000000pt;}
.x0{left:0.000000pt;}
.x71{left:5.313333pt;}
.xa6{left:36.412267pt;}
.xbd{left:47.257733pt;}
.x9b{left:53.075467pt;}
.x5{left:69.318800pt;}
.x6{left:73.396800pt;}
.x9c{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa7{left:104.121200pt;}
.x53{left:106.880000pt;}
.x6e{left:108.000000pt;}
.x9a{left:110.000000pt;}
.xe{left:112.296400pt;}
.x9{left:113.440000pt;}
.x70{left:115.000000pt;}
.xd{left:117.768400pt;}
.x55{left:118.807733pt;}
.x54{left:119.913600pt;}
.xb2{left:120.904400pt;}
.xc{left:122.880000pt;}
.xf{left:124.428400pt;}
.xbe{left:125.434800pt;}
.xb{left:128.526080pt;}
.x56{left:130.939733pt;}
.x34{left:134.546880pt;}
.x33{left:137.237600pt;}
.x8a{left:144.131200pt;}
.xa5{left:148.555600pt;}
.xb0{left:149.548267pt;}
.x8c{left:150.691840pt;}
.x10{left:152.748400pt;}
.x9d{left:154.638667pt;}
.x8b{left:155.548000pt;}
.x11{left:156.840400pt;}
.x35{left:158.002240pt;}
.x6f{left:161.444320pt;}
.xc3{left:162.368533pt;}
.x57{left:164.071733pt;}
.x52{left:164.991680pt;}
.x58{left:167.623733pt;}
.x72{left:169.713467pt;}
.xa8{left:171.830000pt;}
.x6d{left:176.500000pt;}
.x4{left:180.874667pt;}
.x12{left:185.436400pt;}
.x73{left:187.240667pt;}
.x9f{left:188.493200pt;}
.xc4{left:189.644533pt;}
.x59{left:198.283733pt;}
.x5a{left:200.467733pt;}
.x37{left:202.726080pt;}
.x36{left:204.194720pt;}
.xa0{left:205.420267pt;}
.xb7{left:209.981200pt;}
.x13{left:211.836400pt;}
.x14{left:214.020400pt;}
.xc5{left:216.092533pt;}
.xb1{left:217.256747pt;}
.x74{left:222.295067pt;}
.x8d{left:223.244800pt;}
.x39{left:225.452480pt;}
.x38{left:228.143200pt;}
.x5b{left:229.759733pt;}
.x5c{left:233.311733pt;}
.x15{left:237.960400pt;}
.x75{left:239.822267pt;}
.xd2{left:241.316000pt;}
.x16{left:242.604400pt;}
.xc6{left:246.380533pt;}
.x3a{left:248.907840pt;}
.xa2{left:256.202000pt;}
.x76{left:257.349467pt;}
.x5d{left:262.327733pt;}
.x17{left:266.556400pt;}
.xb3{left:268.038800pt;}
.x18{left:271.200400pt;}
.xa3{left:273.129200pt;}
.x77{left:274.876667pt;}
.xb8{left:277.690000pt;}
.x9e{left:279.566000pt;}
.xbf{left:281.789200pt;}
.xb4{left:284.965680pt;}
.x8e{left:286.557120pt;}
.xa4{left:290.056400pt;}
.x78{left:292.403867pt;}
.x3b{left:293.631680pt;}
.x19{left:295.956400pt;}
.xc7{left:298.748533pt;}
.x1a{left:299.784400pt;}
.xa{left:305.440000pt;}
.x79{left:309.931067pt;}
.x3d{left:316.358080pt;}
.x3c{left:319.048800pt;}
.xc0{left:320.877600pt;}
.x1b{left:324.276400pt;}
.xc8{left:325.196533pt;}
.x7a{left:327.458267pt;}
.x1c{left:328.368400pt;}
.x5e{left:329.659733pt;}
.x5f{left:331.843733pt;}
.xb5{left:335.747600pt;}
.x3e{left:339.813440pt;}
.x7b{left:344.985467pt;}
.xa1{left:347.274800pt;}
.x8f{left:350.351840pt;}
.x1d{left:353.136400pt;}
.xc9{left:355.484533pt;}
.x1e{left:356.964400pt;}
.x91{left:358.391840pt;}
.xc1{left:359.966267pt;}
.x60{left:361.135733pt;}
.x3f{left:362.550560pt;}
.x61{left:364.687733pt;}
.xbc{left:366.400000pt;}
.x7{left:368.800000pt;}
.x90{left:377.848640pt;}
.x7c{left:380.039867pt;}
.x1f{left:383.364400pt;}
.x40{left:384.537280pt;}
.x20{left:385.548400pt;}
.x62{left:393.703733pt;}
.x8{left:396.800640pt;}
.xc2{left:399.054800pt;}
.xb6{left:403.456533pt;}
.x3{left:404.408000pt;}
.x41{left:407.263680pt;}
.x21{left:409.488400pt;}
.x22{left:414.132400pt;}
.x7d{left:415.094267pt;}
.x99{left:420.160000pt;}
.xaa{left:422.400000pt;}
.xa9{left:424.400133pt;}
.x63{left:426.835733pt;}
.x42{left:430.719040pt;}
.x7e{left:432.621467pt;}
.xcb{left:434.300533pt;}
.xca{left:435.944533pt;}
.x23{left:438.084400pt;}
.x92{left:438.995520pt;}
.x24{left:442.728400pt;}
.x7f{left:450.148667pt;}
.x43{left:453.456160pt;}
.xb9{left:456.348400pt;}
.xab{left:458.548267pt;}
.x64{left:461.047733pt;}
.x65{left:463.231733pt;}
.xcc{left:464.588533pt;}
.x25{left:467.484400pt;}
.x26{left:471.312400pt;}
.x45{left:475.442880pt;}
.x44{left:476.911520pt;}
.x80{left:485.203067pt;}
.xcd{left:489.680533pt;}
.x66{left:492.523733pt;}
.x27{left:495.804400pt;}
.x47{left:498.169280pt;}
.x28{left:499.896400pt;}
.x46{left:500.860000pt;}
.x81{left:502.730267pt;}
.x94{left:505.459520pt;}
.x93{left:509.854720pt;}
.xba{left:516.781333pt;}
.xae{left:518.981200pt;}
.x82{left:520.257467pt;}
.x48{left:521.624640pt;}
.x29{left:524.664400pt;}
.xac{left:526.257067pt;}
.x2a{left:528.492400pt;}
.x83{left:537.784667pt;}
.xce{left:543.404533pt;}
.x49{left:544.361760pt;}
.x2b{left:554.892400pt;}
.x2c{left:557.076400pt;}
.x67{left:558.223733pt;}
.x68{left:561.775733pt;}
.x4b{left:566.348480pt;}
.x4a{left:567.817120pt;}
.xcf{left:570.680533pt;}
.x95{left:571.698400pt;}
.x84{left:572.839067pt;}
.x96{left:578.988000pt;}
.x2d{left:581.016400pt;}
.xbb{left:584.490133pt;}
.x2e{left:585.660400pt;}
.xaf{left:586.690000pt;}
.x4d{left:589.074880pt;}
.x85{left:590.366267pt;}
.x4c{left:591.765600pt;}
.x69{left:594.619733pt;}
.xd0{left:598.784533pt;}
.x86{left:607.893467pt;}
.x2f{left:609.612400pt;}
.x4e{left:612.530240pt;}
.x30{left:614.256400pt;}
.x6a{left:623.911733pt;}
.x87{left:625.420667pt;}
.x6b{left:627.463733pt;}
.x4f{left:635.267360pt;}
.x31{left:639.012400pt;}
.x32{left:642.840400pt;}
.x98{left:644.262080pt;}
.x97{left:652.044800pt;}
.xd1{left:654.152533pt;}
.x51{left:657.254080pt;}
.x50{left:658.722720pt;}
.x6c{left:660.307733pt;}
.xad{left:661.674933pt;}
.x88{left:678.002267pt;}
.x89{left:695.529467pt;}
}




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