
    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_5f949b1cb724403da6787ede.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_10884a0b81493b855259566d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7d2987cac01a6f260ecaad89.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_37f71488dd42051417260bd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3566e6447ad27efd4d9b78a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_141e7003f5a102a7710509cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d697c9b480e9d838b4c4c2fd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ed734281d9094fb40ab5b634.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5468e384a17af141eaec7e62.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_44f5c2f8637f9155a7c8ab90.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_ce339540a9570419b38296a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_768648e7f5b5f96f8425f43a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_15ec7b85a64acc9bf8f5d1d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_da595e7b6e134785baa5e4ab.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_1677b21493b22cf85eeb402b.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v5{vertical-align:15.981600px;}
.v4{vertical-align:22.627200px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls82{letter-spacing:-2.640000px;}
.ls9{letter-spacing:-0.780000px;}
.ls74{letter-spacing:-0.624000px;}
.ls3d{letter-spacing:-0.360000px;}
.ls83{letter-spacing:-0.336000px;}
.lsa{letter-spacing:-0.315000px;}
.ls3f{letter-spacing:-0.240000px;}
.ls85{letter-spacing:-0.192000px;}
.ls40{letter-spacing:-0.180000px;}
.ls3e{letter-spacing:-0.120000px;}
.ls72{letter-spacing:-0.096000px;}
.ls32{letter-spacing:-0.060000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005076px;}
.ls1{letter-spacing:0.005676px;}
.ls55{letter-spacing:0.006096px;}
.ls16{letter-spacing:0.021000px;}
.ls71{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.060000px;}
.ls52{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.120000px;}
.ls41{letter-spacing:0.133800px;}
.ls76{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls75{letter-spacing:0.192000px;}
.ls4c{letter-spacing:0.215400px;}
.ls6{letter-spacing:0.240000px;}
.ls4d{letter-spacing:0.286200px;}
.ls81{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.300000px;}
.ls63{letter-spacing:0.336000px;}
.ls30{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.367800px;}
.ls79{letter-spacing:0.384000px;}
.ls31{letter-spacing:0.420000px;}
.ls7f{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.480000px;}
.ls7a{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.540000px;}
.ls68{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.624000px;}
.ls11{letter-spacing:0.660000px;}
.ls62{letter-spacing:0.672000px;}
.ls27{letter-spacing:0.720000px;}
.ls67{letter-spacing:0.768000px;}
.ls36{letter-spacing:0.780000px;}
.ls12{letter-spacing:0.840000px;}
.ls7d{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.900000px;}
.ls65{letter-spacing:0.912000px;}
.ls5{letter-spacing:0.960000px;}
.ls6f{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.056000px;}
.ls3a{letter-spacing:1.080000px;}
.ls6e{letter-spacing:1.104000px;}
.ls4b{letter-spacing:1.137000px;}
.ls35{letter-spacing:1.140000px;}
.ls78{letter-spacing:1.152000px;}
.ls28{letter-spacing:1.200000px;}
.ls73{letter-spacing:1.248000px;}
.ls14{letter-spacing:1.260000px;}
.ls46{letter-spacing:1.292400px;}
.ls29{letter-spacing:1.320000px;}
.ls3b{letter-spacing:1.380000px;}
.ls7c{letter-spacing:1.392000px;}
.ls26{letter-spacing:1.440000px;}
.ls6b{letter-spacing:1.488000px;}
.ls39{letter-spacing:1.500000px;}
.ls1a{letter-spacing:1.560000px;}
.ls1b{letter-spacing:1.620000px;}
.ls69{letter-spacing:1.632000px;}
.ls2d{letter-spacing:1.680000px;}
.ls60{letter-spacing:1.728000px;}
.ls22{letter-spacing:1.740000px;}
.ls2e{letter-spacing:1.800000px;}
.ls7b{letter-spacing:1.824000px;}
.ls37{letter-spacing:1.860000px;}
.ls70{letter-spacing:1.872000px;}
.ls2b{letter-spacing:1.920000px;}
.ls24{letter-spacing:1.980000px;}
.ls7{letter-spacing:2.040000px;}
.ls84{letter-spacing:2.064000px;}
.ls20{letter-spacing:2.100000px;}
.ls23{letter-spacing:2.160000px;}
.ls80{letter-spacing:2.208000px;}
.ls10{letter-spacing:2.220000px;}
.ls6c{letter-spacing:2.256000px;}
.ls2c{letter-spacing:2.280000px;}
.ls6a{letter-spacing:2.304000px;}
.ls21{letter-spacing:2.340000px;}
.ls54{letter-spacing:2.342964px;}
.ls6d{letter-spacing:2.352000px;}
.ls15{letter-spacing:2.400000px;}
.ls1e{letter-spacing:2.460000px;}
.ls38{letter-spacing:2.520000px;}
.ls66{letter-spacing:2.544000px;}
.ls53{letter-spacing:2.559564px;}
.ls25{letter-spacing:2.580000px;}
.ls1f{letter-spacing:2.640000px;}
.lsf{letter-spacing:2.700000px;}
.ls2f{letter-spacing:2.760000px;}
.ls5c{letter-spacing:2.820000px;}
.ls7e{letter-spacing:2.832000px;}
.ls42{letter-spacing:2.880000px;}
.ls34{letter-spacing:2.940000px;}
.ls56{letter-spacing:3.000000px;}
.ls47{letter-spacing:3.120000px;}
.ls61{letter-spacing:3.168000px;}
.ls18{letter-spacing:3.180000px;}
.ls5a{letter-spacing:3.240000px;}
.ls4{letter-spacing:3.300000px;}
.ls3c{letter-spacing:3.480000px;}
.ls5d{letter-spacing:3.540000px;}
.ls58{letter-spacing:3.600000px;}
.ls17{letter-spacing:3.660000px;}
.ls51{letter-spacing:3.780000px;}
.lsc{letter-spacing:3.840000px;}
.ls48{letter-spacing:3.900000px;}
.ls59{letter-spacing:4.140000px;}
.ls5b{letter-spacing:4.320000px;}
.lse{letter-spacing:4.680000px;}
.ls49{letter-spacing:4.860000px;}
.ls43{letter-spacing:4.920000px;}
.ls5f{letter-spacing:4.944000px;}
.ls44{letter-spacing:5.820000px;}
.ls4a{letter-spacing:5.880000px;}
.ls5e{letter-spacing:7.620000px;}
.ls0{letter-spacing:59.532876px;}
.ls50{letter-spacing:124.128000px;}
.ls4e{letter-spacing:189.120000px;}
.ls4f{letter-spacing:197.616000px;}
.ls57{letter-spacing:952.664400px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws4a{word-spacing:-20.820000px;}
.ws96{word-spacing:-19.560000px;}
.ws3{word-spacing:-16.680000px;}
.ws11{word-spacing:-16.620000px;}
.ws6a{word-spacing:-16.560000px;}
.ws39{word-spacing:-16.320000px;}
.ws10{word-spacing:-16.020000px;}
.ws4{word-spacing:-15.960000px;}
.ws2d{word-spacing:-15.780000px;}
.ws86{word-spacing:-15.660000px;}
.ws49{word-spacing:-15.240000px;}
.wsf{word-spacing:-15.120000px;}
.ws4b{word-spacing:-15.000000px;}
.ws6{word-spacing:-13.344000px;}
.ws6c{word-spacing:-13.342666px;}
.ws9b{word-spacing:-13.056000px;}
.ws97{word-spacing:-12.960000px;}
.ws9a{word-spacing:-12.912000px;}
.ws9c{word-spacing:-12.768000px;}
.wsb6{word-spacing:-12.672000px;}
.wsb7{word-spacing:-12.576000px;}
.ws5{word-spacing:-12.510000px;}
.ws98{word-spacing:-12.480000px;}
.wsb4{word-spacing:-12.432000px;}
.ws99{word-spacing:-12.336000px;}
.wsb8{word-spacing:-12.048000px;}
.ws7e{word-spacing:-12.000000px;}
.wsb9{word-spacing:-11.808000px;}
.ws9d{word-spacing:-11.376000px;}
.ws1{word-spacing:-10.210662px;}
.wsb5{word-spacing:-9.360000px;}
.ws5f{word-spacing:-8.745000px;}
.ws72{word-spacing:-7.779552px;}
.ws2{word-spacing:-7.293330px;}
.ws61{word-spacing:-6.996000px;}
.ws51{word-spacing:-5.880000px;}
.ws50{word-spacing:-4.920000px;}
.ws15{word-spacing:-4.680000px;}
.ws88{word-spacing:-4.140000px;}
.ws12{word-spacing:-3.900000px;}
.ws93{word-spacing:-3.480000px;}
.ws8d{word-spacing:-3.240000px;}
.ws56{word-spacing:-3.120000px;}
.ws8{word-spacing:-2.886000px;}
.wsa0{word-spacing:-2.700000px;}
.ws1b{word-spacing:-2.640000px;}
.wsa7{word-spacing:-2.544000px;}
.ws67{word-spacing:-2.520000px;}
.ws37{word-spacing:-2.460000px;}
.ws28{word-spacing:-2.400000px;}
.wsaa{word-spacing:-2.352000px;}
.ws57{word-spacing:-2.340000px;}
.wsb3{word-spacing:-2.256000px;}
.ws26{word-spacing:-2.220000px;}
.wsc6{word-spacing:-2.208000px;}
.ws1c{word-spacing:-2.160000px;}
.ws14{word-spacing:-2.100000px;}
.ws5d{word-spacing:-2.040000px;}
.ws3e{word-spacing:-1.980000px;}
.ws4f{word-spacing:-1.920000px;}
.wsb1{word-spacing:-1.872000px;}
.ws54{word-spacing:-1.800000px;}
.ws8c{word-spacing:-1.680000px;}
.wsaf{word-spacing:-1.632000px;}
.ws5e{word-spacing:-1.620000px;}
.ws8e{word-spacing:-1.560000px;}
.wsac{word-spacing:-1.488000px;}
.wsbe{word-spacing:-1.392000px;}
.ws94{word-spacing:-1.380000px;}
.ws8b{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.260000px;}
.wsa5{word-spacing:-1.248000px;}
.ws4e{word-spacing:-1.200000px;}
.ws9{word-spacing:-1.134000px;}
.wsae{word-spacing:-1.104000px;}
.ws3b{word-spacing:-1.080000px;}
.wsa3{word-spacing:-1.056000px;}
.ws13{word-spacing:-1.020000px;}
.wsb0{word-spacing:-1.008000px;}
.ws53{word-spacing:-0.960000px;}
.ws36{word-spacing:-0.900000px;}
.ws3c{word-spacing:-0.840000px;}
.wsa8{word-spacing:-0.768000px;}
.ws22{word-spacing:-0.720000px;}
.wsbf{word-spacing:-0.672000px;}
.ws66{word-spacing:-0.660000px;}
.wsba{word-spacing:-0.624000px;}
.wsa6{word-spacing:-0.576000px;}
.ws82{word-spacing:-0.540000px;}
.wsbc{word-spacing:-0.528000px;}
.ws2e{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.420000px;}
.wsa2{word-spacing:-0.384000px;}
.ws1e{word-spacing:-0.360000px;}
.wsc4{word-spacing:-0.336000px;}
.ws27{word-spacing:-0.300000px;}
.wsc2{word-spacing:-0.288000px;}
.ws3a{word-spacing:-0.240000px;}
.ws30{word-spacing:-0.180000px;}
.ws68{word-spacing:-0.060000px;}
.wsb2{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws5a{word-spacing:0.060000px;}
.wsa4{word-spacing:0.096000px;}
.ws47{word-spacing:0.120000px;}
.wsc0{word-spacing:0.144000px;}
.wsc{word-spacing:0.180000px;}
.ws78{word-spacing:0.192000px;}
.ws58{word-spacing:0.240000px;}
.ws91{word-spacing:0.300000px;}
.ws46{word-spacing:0.360000px;}
.wsc1{word-spacing:0.384000px;}
.wsa{word-spacing:0.600000px;}
.ws25{word-spacing:0.660000px;}
.ws2c{word-spacing:0.720000px;}
.ws89{word-spacing:0.780000px;}
.ws87{word-spacing:0.900000px;}
.ws2a{word-spacing:0.960000px;}
.ws8f{word-spacing:1.020000px;}
.ws2b{word-spacing:1.080000px;}
.ws69{word-spacing:1.140000px;}
.ws92{word-spacing:1.200000px;}
.ws18{word-spacing:1.260000px;}
.wsc5{word-spacing:1.296000px;}
.ws52{word-spacing:1.380000px;}
.ws76{word-spacing:1.488000px;}
.ws31{word-spacing:1.500000px;}
.ws43{word-spacing:1.560000px;}
.wsab{word-spacing:1.584000px;}
.ws3d{word-spacing:1.620000px;}
.ws32{word-spacing:1.680000px;}
.ws4c{word-spacing:1.740000px;}
.ws83{word-spacing:1.800000px;}
.ws3f{word-spacing:1.860000px;}
.ws42{word-spacing:1.980000px;}
.wsbd{word-spacing:2.016000px;}
.wse{word-spacing:2.040000px;}
.ws95{word-spacing:2.100000px;}
.ws77{word-spacing:2.280000px;}
.ws1a{word-spacing:2.340000px;}
.wsc3{word-spacing:2.448000px;}
.ws90{word-spacing:2.460000px;}
.ws29{word-spacing:2.520000px;}
.ws84{word-spacing:2.700000px;}
.ws80{word-spacing:2.760000px;}
.wsad{word-spacing:2.784000px;}
.ws35{word-spacing:2.880000px;}
.ws33{word-spacing:3.000000px;}
.ws45{word-spacing:3.060000px;}
.wsa9{word-spacing:3.072000px;}
.ws85{word-spacing:3.180000px;}
.ws16{word-spacing:3.240000px;}
.ws41{word-spacing:3.300000px;}
.ws20{word-spacing:3.360000px;}
.ws34{word-spacing:3.420000px;}
.wsbb{word-spacing:3.600000px;}
.ws5b{word-spacing:3.660000px;}
.ws19{word-spacing:3.720000px;}
.ws4d{word-spacing:3.780000px;}
.ws55{word-spacing:3.840000px;}
.ws23{word-spacing:3.900000px;}
.wsa1{word-spacing:3.936000px;}
.ws38{word-spacing:3.960000px;}
.ws70{word-spacing:3.984000px;}
.ws24{word-spacing:4.080000px;}
.ws6f{word-spacing:4.140000px;}
.ws44{word-spacing:4.200000px;}
.ws81{word-spacing:4.260000px;}
.ws48{word-spacing:4.320000px;}
.ws21{word-spacing:4.440000px;}
.ws40{word-spacing:4.500000px;}
.ws2f{word-spacing:4.620000px;}
.ws1d{word-spacing:4.740000px;}
.ws59{word-spacing:4.800000px;}
.ws5c{word-spacing:4.860000px;}
.wsd{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws9f{word-spacing:5.460000px;}
.ws9e{word-spacing:5.520000px;}
.ws8a{word-spacing:6.240000px;}
.ws6b{word-spacing:44.112000px;}
.ws6d{word-spacing:49.387061px;}
.ws6e{word-spacing:50.832000px;}
.ws75{word-spacing:73.008000px;}
.ws65{word-spacing:119.088000px;}
.ws60{word-spacing:120.768000px;}
.ws79{word-spacing:128.496000px;}
.ws62{word-spacing:143.088000px;}
.ws63{word-spacing:163.584000px;}
.ws7f{word-spacing:170.016000px;}
.ws7a{word-spacing:177.120000px;}
.ws64{word-spacing:185.088000px;}
.ws7d{word-spacing:219.120000px;}
.ws71{word-spacing:224.064000px;}
.ws73{word-spacing:301.152000px;}
.ws74{word-spacing:334.560000px;}
.ws7c{word-spacing:857.472000px;}
.ws7b{word-spacing:865.488000px;}
._e{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._2{margin-left:-9.621600px;}
._3{margin-left:-6.931800px;}
._1{margin-left:-5.376000px;}
._7{margin-left:-3.772860px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.197000px;}
._6{width:1.081800px;}
._8{width:2.752860px;}
._d{width:3.778200px;}
._a{width:5.160000px;}
._9{width:6.210000px;}
._b{width:7.650000px;}
._c{width:9.660000px;}
._4e{width:56.691624px;}
._5{width:59.513214px;}
._4a{width:62.928000px;}
._4b{width:65.094786px;}
._50{width:67.008000px;}
._4d{width:69.552000px;}
._51{width:71.088000px;}
._4c{width:73.837572px;}
._53{width:76.176000px;}
._52{width:80.969214px;}
._15{width:92.064000px;}
._5f{width:100.992000px;}
._1d{width:104.064000px;}
._5e{width:113.184000px;}
._12{width:114.768000px;}
._27{width:116.064000px;}
._38{width:122.514000px;}
._39{width:128.064000px;}
._19{width:143.088000px;}
._42{width:147.552000px;}
._48{width:149.088000px;}
._18{width:151.584000px;}
._32{width:153.552000px;}
._17{width:155.088000px;}
._49{width:157.584000px;}
._10{width:159.936000px;}
._16{width:163.584000px;}
._21{width:167.088000px;}
._1e{width:175.584000px;}
._1f{width:179.088000px;}
._64{width:181.104000px;}
._2a{width:185.088000px;}
._20{width:187.584000px;}
._70{width:189.120000px;}
._2b{width:193.584000px;}
._13{width:197.616000px;}
._2e{width:205.056000px;}
._28{width:209.136000px;}
._26{width:212.976000px;}
._11{width:214.848000px;}
._65{width:224.160000px;}
._4f{width:226.130352px;}
._61{width:228.144000px;}
._3e{width:230.976000px;}
._69{width:232.176000px;}
._37{width:233.859000px;}
._43{width:236.640000px;}
._1b{width:240.672000px;}
._33{width:242.640000px;}
._25{width:252.720000px;}
._22{width:256.176000px;}
._1a{width:268.176000px;}
._5d{width:274.128000px;}
._62{width:277.584000px;}
._3a{width:280.176000px;}
._57{width:285.216000px;}
._5c{width:293.184000px;}
._34{width:300.000000px;}
._23{width:302.352000px;}
._66{width:305.184000px;}
._58{width:309.216000px;}
._3b{width:312.000000px;}
._2f{width:315.648000px;}
._40{width:316.704000px;}
._59{width:321.216000px;}
._47{width:327.696000px;}
._30{width:330.000000px;}
._44{width:332.928000px;}
._67{width:334.704000px;}
._36{width:339.600000px;}
._6a{width:341.184000px;}
._71{width:347.184000px;}
._14{width:352.662000px;}
._7e{width:366.720000px;}
._2c{width:372.960000px;}
._55{width:390.528000px;}
._3c{width:394.368000px;}
._29{width:395.664000px;}
._6e{width:401.424000px;}
._83{width:403.203648px;}
._77{width:407.712000px;}
._6d{width:413.424000px;}
._6b{width:426.240000px;}
._2d{width:435.600000px;}
._3d{width:437.088000px;}
._1c{width:440.928000px;}
._31{width:443.712000px;}
._35{width:458.614200px;}
._41{width:469.056000px;}
._78{width:498.240000px;}
._45{width:524.598000px;}
._3f{width:528.960000px;}
._24{width:535.680000px;}
._7c{width:588.028860px;}
._7f{width:592.012860px;}
._5b{width:605.136000px;}
._7a{width:630.768000px;}
._80{width:649.324860px;}
._7d{width:679.996860px;}
._7b{width:682.684860px;}
._79{width:716.160000px;}
._46{width:827.404860px;}
._60{width:854.736000px;}
._73{width:874.800000px;}
._75{width:880.176000px;}
._76{width:882.816000px;}
._6c{width:885.456000px;}
._74{width:888.144000px;}
._6f{width:890.784000px;}
._68{width:893.472000px;}
._63{width:897.408000px;}
._72{width:901.440000px;}
._56{width:939.744000px;}
._82{width:958.656000px;}
._81{width:966.672000px;}
._5a{width:998.352000px;}
._54{width:1099.056000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsd{font-size:27.981000px;}
.fsb{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:47.995200px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:43.959300px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.yf9{bottom:64.695900px;}
.ybd{bottom:82.822500px;}
.y6d{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y91{bottom:83.920350px;}
.y6f{bottom:84.535050px;}
.y166{bottom:86.121900px;}
.y2c{bottom:88.026750px;}
.y10f{bottom:92.690100px;}
.y13f{bottom:93.206100px;}
.y1a6{bottom:95.263500px;}
.ybc{bottom:98.566500px;}
.y165{bottom:101.121900px;}
.y6c{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y90{bottom:101.920350px;}
.yb1{bottom:102.178650px;}
.y2b{bottom:103.023000px;}
.y10e{bottom:108.938100px;}
.y13e{bottom:109.458000px;}
.y1a5{bottom:110.263500px;}
.y164{bottom:116.121900px;}
.y11a{bottom:117.903000px;}
.y6b{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y8f{bottom:119.920350px;}
.yf6{bottom:122.032500px;}
.y10d{bottom:125.186100px;}
.y1a4{bottom:125.263500px;}
.y13d{bottom:125.793150px;}
.yf8{bottom:125.927700px;}
.y163{bottom:131.121900px;}
.yb0{bottom:131.182650px;}
.y6a{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y8e{bottom:137.920350px;}
.y1a3{bottom:140.263500px;}
.yee{bottom:140.339550px;}
.y13c{bottom:142.041150px;}
.y162{bottom:146.121900px;}
.yaf{bottom:147.430650px;}
.y1a2{bottom:155.263500px;}
.y69{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y8d{bottom:155.920350px;}
.y10c{bottom:156.698100px;}
.y13b{bottom:158.289150px;}
.y28{bottom:159.384600px;}
.y161{bottom:161.121900px;}
.yae{bottom:163.678650px;}
.yef{bottom:166.007550px;}
.y1a1{bottom:170.263500px;}
.y68{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y8c{bottom:173.920350px;}
.y13a{bottom:174.537150px;}
.y160{bottom:176.121900px;}
.y27{bottom:177.384600px;}
.yad{bottom:179.926650px;}
.y1a0{bottom:185.263500px;}
.y139{bottom:190.785150px;}
.y10b{bottom:191.593200px;}
.y67{bottom:191.635350px;}
.yf0{bottom:191.663550px;}
.y5f{bottom:191.770350px;}
.y8b{bottom:191.920350px;}
.y26{bottom:195.384600px;}
.yac{bottom:196.174650px;}
.y19f{bottom:200.263500px;}
.y138{bottom:207.033150px;}
.y15f{bottom:209.232600px;}
.y5e{bottom:209.770350px;}
.y8a{bottom:209.920350px;}
.y10a{bottom:211.093200px;}
.yab{bottom:212.422650px;}
.y2a{bottom:213.384600px;}
.y19e{bottom:215.263500px;}
.yf1{bottom:217.319550px;}
.y137{bottom:223.281150px;}
.yc7{bottom:223.317150px;}
.yd0{bottom:223.341300px;}
.yf7{bottom:223.615200px;}
.y66{bottom:227.230350px;}
.y5d{bottom:227.770350px;}
.y89{bottom:227.920350px;}
.yaa{bottom:228.670650px;}
.y19d{bottom:230.263500px;}
.y109{bottom:230.593200px;}
.y25{bottom:230.981700px;}
.y29{bottom:231.384600px;}
.ye2{bottom:238.404150px;}
.ye7{bottom:238.416150px;}
.y136{bottom:239.529150px;}
.yf2{bottom:242.999550px;}
.ya9{bottom:244.918650px;}
.y19c{bottom:245.263500px;}
.y5c{bottom:245.770350px;}
.y88{bottom:245.920350px;}
.y108{bottom:250.093200px;}
.y135{bottom:255.777150px;}
.y19b{bottom:260.263500px;}
.ya8{bottom:261.166650px;}
.y5b{bottom:263.770350px;}
.y15e{bottom:263.772600px;}
.y87{bottom:263.920350px;}
.yf3{bottom:268.655550px;}
.y134{bottom:272.025150px;}
.y19a{bottom:275.263500px;}
.ya7{bottom:277.466250px;}
.y15d{bottom:281.367600px;}
.y5a{bottom:281.770350px;}
.y86{bottom:281.920350px;}
.y133{bottom:288.273150px;}
.y199{bottom:290.263500px;}
.ya6{bottom:293.714250px;}
.yf4{bottom:294.323550px;}
.y111{bottom:294.362100px;}
.y59{bottom:299.770350px;}
.y85{bottom:299.920350px;}
.y132{bottom:304.521150px;}
.y24{bottom:305.014200px;}
.y198{bottom:305.263500px;}
.y118{bottom:308.192100px;}
.ya5{bottom:309.962250px;}
.y110{bottom:310.106100px;}
.y103{bottom:316.342350px;}
.y58{bottom:317.770350px;}
.y15c{bottom:317.772600px;}
.y84{bottom:317.920350px;}
.yf5{bottom:319.979550px;}
.y197{bottom:320.263500px;}
.y131{bottom:320.769150px;}
.ya4{bottom:326.210250px;}
.y23{bottom:332.359200px;}
.y117{bottom:333.132000px;}
.y196{bottom:335.263500px;}
.y15b{bottom:335.367600px;}
.y57{bottom:335.770350px;}
.y83{bottom:335.920350px;}
.y130{bottom:337.017150px;}
.y11b{bottom:337.027650px;}
.ya3{bottom:342.458250px;}
.yfa{bottom:345.645150px;}
.y195{bottom:350.263500px;}
.y22{bottom:350.359200px;}
.y12f{bottom:353.265150px;}
.y56{bottom:353.770350px;}
.y82{bottom:353.920350px;}
.y119{bottom:354.668100px;}
.ya2{bottom:358.706250px;}
.y194{bottom:365.263500px;}
.y21{bottom:368.359200px;}
.y12e{bottom:369.513150px;}
.y112{bottom:370.256100px;}
.y55{bottom:371.770350px;}
.y15a{bottom:371.772600px;}
.y81{bottom:371.920350px;}
.ya1{bottom:374.954250px;}
.ye1{bottom:377.203500px;}
.y193{bottom:380.263500px;}
.yeb{bottom:381.100050px;}
.y12d{bottom:385.761150px;}
.y20{bottom:386.359200px;}
.y73{bottom:389.365350px;}
.y54{bottom:389.770350px;}
.y159{bottom:389.772600px;}
.y80{bottom:389.920350px;}
.ya0{bottom:391.202250px;}
.y192{bottom:395.263500px;}
.ye8{bottom:397.145550px;}
.y12c{bottom:402.009150px;}
.y1f{bottom:404.359200px;}
.y158{bottom:407.367600px;}
.y9f{bottom:407.450250px;}
.y53{bottom:407.770350px;}
.y7f{bottom:407.920350px;}
.y191{bottom:410.263500px;}
.yd8{bottom:411.472050px;}
.y12b{bottom:418.257150px;}
.y1e{bottom:422.359200px;}
.y9e{bottom:423.698250px;}
.y113{bottom:424.472100px;}
.y72{bottom:425.230350px;}
.y190{bottom:425.263500px;}
.y52{bottom:425.770350px;}
.y7e{bottom:425.920350px;}
.yd9{bottom:434.149782px;}
.y12a{bottom:434.505150px;}
.y9d{bottom:439.946250px;}
.y18f{bottom:440.265900px;}
.y1d{bottom:440.359200px;}
.y51{bottom:443.770350px;}
.y157{bottom:443.772600px;}
.y7d{bottom:443.920350px;}
.y129{bottom:450.753150px;}
.ye3{bottom:452.303966px;}
.y18e{bottom:455.265900px;}
.y9c{bottom:456.194250px;}
.yda{bottom:456.827514px;}
.ye9{bottom:457.945050px;}
.y1c{bottom:458.359200px;}
.y156{bottom:461.367600px;}
.y50{bottom:461.770350px;}
.y7c{bottom:461.920350px;}
.y122{bottom:462.519300px;}
.y128{bottom:467.001150px;}
.y18d{bottom:470.265900px;}
.yea{bottom:474.946866px;}
.y1b{bottom:476.359200px;}
.y114{bottom:478.688100px;}
.ydb{bottom:479.517245px;}
.y4f{bottom:479.770350px;}
.y7b{bottom:479.920350px;}
.y121{bottom:482.993400px;}
.y127{bottom:483.249150px;}
.y9b{bottom:485.194050px;}
.y18c{bottom:485.265900px;}
.ye4{bottom:493.135883px;}
.y1a{bottom:494.359200px;}
.y4e{bottom:497.770350px;}
.y155{bottom:497.772600px;}
.y7a{bottom:497.920350px;}
.y99{bottom:499.702050px;}
.y1cc{bottom:500.263500px;}
.y18b{bottom:500.265900px;}
.ydc{bottom:502.194977px;}
.y120{bottom:503.483700px;}
.y19{bottom:512.359200px;}
.y9a{bottom:514.210050px;}
.y126{bottom:514.761150px;}
.y1cb{bottom:515.263500px;}
.y18a{bottom:515.265900px;}
.y4d{bottom:515.770350px;}
.y154{bottom:515.772600px;}
.y79{bottom:515.920350px;}
.y11f{bottom:523.966650px;}
.ydd{bottom:524.884708px;}
.y1ca{bottom:530.263500px;}
.y189{bottom:530.265900px;}
.y18{bottom:530.359200px;}
.y115{bottom:532.904100px;}
.y4c{bottom:533.770350px;}
.y153{bottom:533.772600px;}
.y78{bottom:533.920350px;}
.ye5{bottom:533.967799px;}
.y11e{bottom:544.455300px;}
.y1c9{bottom:545.263500px;}
.y188{bottom:545.265900px;}
.y98{bottom:546.595350px;}
.yde{bottom:547.562440px;}
.y17{bottom:548.359200px;}
.y125{bottom:549.655350px;}
.y152{bottom:551.367600px;}
.y4b{bottom:551.770350px;}
.y77{bottom:551.920350px;}
.y1c8{bottom:560.263500px;}
.y187{bottom:560.265900px;}
.y11d{bottom:564.945600px;}
.y97{bottom:566.095350px;}
.y16{bottom:566.359200px;}
.y124{bottom:569.155350px;}
.y4a{bottom:569.770350px;}
.y76{bottom:569.920350px;}
.ydf{bottom:570.240172px;}
.ye6{bottom:574.799716px;}
.y1c7{bottom:575.263500px;}
.y186{bottom:575.265900px;}
.y15{bottom:584.359200px;}
.y11c{bottom:585.428550px;}
.y96{bottom:585.595350px;}
.y116{bottom:587.108100px;}
.y49{bottom:587.770350px;}
.y151{bottom:587.772600px;}
.y75{bottom:587.920350px;}
.y123{bottom:588.655350px;}
.y1c6{bottom:590.263500px;}
.y185{bottom:590.265900px;}
.ye0{bottom:592.929902px;}
.y14{bottom:602.359200px;}
.y95{bottom:605.095350px;}
.y1c5{bottom:605.263500px;}
.y184{bottom:605.265900px;}
.y70{bottom:605.287200px;}
.y48{bottom:605.770350px;}
.y150{bottom:605.772600px;}
.yec{bottom:614.147850px;}
.yed{bottom:615.607950px;}
.y1c4{bottom:620.263500px;}
.y183{bottom:620.265900px;}
.y13{bottom:620.359200px;}
.y74{bottom:623.515350px;}
.y47{bottom:623.770350px;}
.y14f{bottom:623.772600px;}
.y94{bottom:624.595350px;}
.y1c3{bottom:635.263500px;}
.y182{bottom:635.265900px;}
.y12{bottom:638.359200px;}
.y14e{bottom:641.367600px;}
.y46{bottom:641.770350px;}
.y93{bottom:644.095350px;}
.yc6{bottom:647.166000px;}
.y1c2{bottom:650.263500px;}
.y181{bottom:650.265900px;}
.yd1{bottom:651.099300px;}
.y11{bottom:656.359200px;}
.y45{bottom:659.770350px;}
.y92{bottom:663.595350px;}
.y1c1{bottom:665.263500px;}
.y180{bottom:665.265900px;}
.ybe{bottom:665.451150px;}
.yc8{bottom:665.475150px;}
.y10{bottom:674.359200px;}
.y44{bottom:677.770350px;}
.y14d{bottom:677.772600px;}
.y1c0{bottom:680.263500px;}
.y17f{bottom:680.265900px;}
.yfc{bottom:684.050850px;}
.ybf{bottom:691.083150px;}
.yc9{bottom:691.107150px;}
.yf{bottom:692.359200px;}
.y1bf{bottom:695.263500px;}
.y17e{bottom:695.265900px;}
.y43{bottom:695.770350px;}
.y14c{bottom:695.772600px;}
.yfb{bottom:699.794850px;}
.y1be{bottom:710.263500px;}
.y17d{bottom:710.265900px;}
.ye{bottom:710.359200px;}
.y42{bottom:713.770350px;}
.y14b{bottom:713.772600px;}
.yc0{bottom:716.715150px;}
.yca{bottom:716.739150px;}
.yd2{bottom:723.009300px;}
.y102{bottom:723.580500px;}
.y1bd{bottom:725.263500px;}
.y17c{bottom:725.265900px;}
.y107{bottom:727.473300px;}
.y41{bottom:731.770350px;}
.y14a{bottom:731.772600px;}
.y1bc{bottom:740.263500px;}
.y17b{bottom:740.265900px;}
.y106{bottom:742.149300px;}
.yc1{bottom:742.335150px;}
.ycb{bottom:742.359150px;}
.y40{bottom:749.770350px;}
.y149{bottom:749.772600px;}
.y1bb{bottom:755.263500px;}
.y17a{bottom:755.265900px;}
.yd{bottom:755.517300px;}
.y104{bottom:759.038850px;}
.y3f{bottom:767.770350px;}
.y148{bottom:767.772600px;}
.yc2{bottom:767.967150px;}
.yc{bottom:767.968050px;}
.ycc{bottom:767.991150px;}
.y1ba{bottom:770.263500px;}
.y179{bottom:770.265900px;}
.yfd{bottom:774.674700px;}
.y1b9{bottom:785.263500px;}
.y178{bottom:785.265900px;}
.y3e{bottom:785.770350px;}
.y147{bottom:785.772600px;}
.yc3{bottom:793.599150px;}
.ycd{bottom:793.623150px;}
.yb{bottom:799.683600px;}
.y1b8{bottom:800.263500px;}
.y177{bottom:800.265900px;}
.yd6{bottom:803.104500px;}
.y3d{bottom:803.770350px;}
.y146{bottom:803.772600px;}
.y1b7{bottom:815.263500px;}
.y176{bottom:815.265900px;}
.yd5{bottom:816.988500px;}
.ya{bottom:818.608950px;}
.yc4{bottom:819.231150px;}
.yce{bottom:819.255150px;}
.y3c{bottom:821.770350px;}
.y145{bottom:821.772600px;}
.y9{bottom:826.683600px;}
.yfe{bottom:827.726700px;}
.y1b6{bottom:830.263500px;}
.y175{bottom:830.265900px;}
.y3b{bottom:839.770350px;}
.y144{bottom:839.772600px;}
.y8{bottom:840.183600px;}
.yc5{bottom:844.851150px;}
.ycf{bottom:844.875150px;}
.y1b5{bottom:845.263500px;}
.y174{bottom:845.265900px;}
.y105{bottom:851.417400px;}
.yd4{bottom:856.491000px;}
.y3a{bottom:857.770350px;}
.y143{bottom:857.772600px;}
.y7{bottom:859.108950px;}
.y1b4{bottom:860.263500px;}
.y173{bottom:860.265900px;}
.yd7{bottom:870.464400px;}
.y1b3{bottom:875.263500px;}
.y172{bottom:875.265900px;}
.y39{bottom:875.770350px;}
.y142{bottom:875.772600px;}
.yff{bottom:880.766700px;}
.y6{bottom:887.830950px;}
.y1b2{bottom:890.263500px;}
.y171{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y141{bottom:893.772600px;}
.y1b1{bottom:905.263500px;}
.y170{bottom:905.265900px;}
.y37{bottom:911.770350px;}
.yb9{bottom:911.772600px;}
.y1b0{bottom:920.263500px;}
.y16f{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.yb8{bottom:929.772600px;}
.y100{bottom:933.818700px;}
.y5{bottom:934.004400px;}
.y1af{bottom:935.263500px;}
.y16e{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.yb7{bottom:947.772600px;}
.y1ae{bottom:950.263500px;}
.y16d{bottom:950.265900px;}
.y1ad{bottom:965.263500px;}
.y16c{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.yb6{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.y1ac{bottom:980.263500px;}
.y16b{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.yb5{bottom:983.772600px;}
.y101{bottom:986.870700px;}
.y1ab{bottom:995.263500px;}
.y16a{bottom:995.265900px;}
.y32{bottom:1001.770350px;}
.yb4{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y1aa{bottom:1010.263500px;}
.y169{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.ybb{bottom:1019.772600px;}
.y1a9{bottom:1025.263500px;}
.y168{bottom:1025.265900px;}
.yb3{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.yba{bottom:1037.772600px;}
.y1a8{bottom:1040.263500px;}
.y167{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y140{bottom:1132.418100px;}
.y6e{bottom:1132.418700px;}
.y71{bottom:1132.423200px;}
.y1a7{bottom:1132.423500px;}
.yb2{bottom:1132.450650px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h11{height:33.351562px;}
.h14{height:34.965253px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h16{height:36.366196px;}
.h1a{height:36.371381px;}
.h17{height:36.373439px;}
.h1b{height:36.387581px;}
.hc{height:41.689453px;}
.h1d{height:42.038761px;}
.h12{height:42.071161px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h10{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h13{height:233.596500px;}
.h18{height:233.910000px;}
.h15{height:248.703000px;}
.h1c{height:318.483000px;}
.h19{height:326.655000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:471.801000px;}
.w5{width:480.049500px;}
.w2{width:510.237000px;}
.w6{width:516.255000px;}
.w3{width:531.030000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:10.294350px;}
.x3a{left:22.003650px;}
.x28{left:23.380650px;}
.x1f{left:25.609200px;}
.xa{left:76.535400px;}
.x16{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x3e{left:99.921300px;}
.x45{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x42{left:123.307350px;}
.x13{left:124.380150px;}
.x3{left:125.436150px;}
.x3f{left:127.545300px;}
.x6{left:131.811000px;}
.x39{left:177.699000px;}
.x24{left:180.187350px;}
.x31{left:195.802500px;}
.x37{left:199.702650px;}
.x25{left:202.956000px;}
.x38{left:205.786650px;}
.x33{left:210.096450px;}
.x41{left:211.392300px;}
.x5{left:212.876400px;}
.x36{left:214.882650px;}
.x29{left:217.248750px;}
.x2f{left:218.455500px;}
.x1a{left:220.137450px;}
.x27{left:226.336627px;}
.x3b{left:229.042650px;}
.x15{left:232.353300px;}
.x32{left:240.337650px;}
.x2e{left:244.203300px;}
.x1e{left:246.190200px;}
.x2d{left:250.923300px;}
.x1d{left:252.910200px;}
.x30{left:258.315300px;}
.x20{left:260.278200px;}
.x19{left:314.581350px;}
.x23{left:317.066250px;}
.x17{left:319.669350px;}
.x34{left:331.284300px;}
.x2c{left:336.033600px;}
.x35{left:410.868300px;}
.x3c{left:436.408050px;}
.x9{left:455.041500px;}
.xc{left:457.082100px;}
.x2b{left:458.751600px;}
.x1c{left:470.845050px;}
.x11{left:478.345350px;}
.x7{left:480.471000px;}
.x46{left:482.615400px;}
.x26{left:488.190150px;}
.xd{left:491.102100px;}
.x43{left:503.863350px;}
.x12{left:512.365350px;}
.xe{left:525.272100px;}
.x3d{left:565.435950px;}
.x18{left:631.345350px;}
.x10{left:663.492300px;}
.x1b{left:691.426050px;}
.x2{left:693.365400px;}
.x40{left:721.717650px;}
.x21{left:726.919350px;}
.xf{left:728.391600px;}
.x2a{left:730.089461px;}
.x44{left:743.877300px;}
.x14{left:749.652150px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v5{vertical-align:14.205867pt;}
.v4{vertical-align:20.113067pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls82{letter-spacing:-2.346667pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls74{letter-spacing:-0.554667pt;}
.ls3d{letter-spacing:-0.320000pt;}
.ls83{letter-spacing:-0.298667pt;}
.lsa{letter-spacing:-0.280000pt;}
.ls3f{letter-spacing:-0.213333pt;}
.ls85{letter-spacing:-0.170667pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls3e{letter-spacing:-0.106667pt;}
.ls72{letter-spacing:-0.085333pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004512pt;}
.ls1{letter-spacing:0.005045pt;}
.ls55{letter-spacing:0.005419pt;}
.ls16{letter-spacing:0.018667pt;}
.ls71{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.053333pt;}
.ls52{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls41{letter-spacing:0.118933pt;}
.ls76{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls75{letter-spacing:0.170667pt;}
.ls4c{letter-spacing:0.191467pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4d{letter-spacing:0.254400pt;}
.ls81{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.266667pt;}
.ls63{letter-spacing:0.298667pt;}
.ls30{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.326933pt;}
.ls79{letter-spacing:0.341333pt;}
.ls31{letter-spacing:0.373333pt;}
.ls7f{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.426667pt;}
.ls7a{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls68{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.554667pt;}
.ls11{letter-spacing:0.586667pt;}
.ls62{letter-spacing:0.597333pt;}
.ls27{letter-spacing:0.640000pt;}
.ls67{letter-spacing:0.682667pt;}
.ls36{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.746667pt;}
.ls7d{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls65{letter-spacing:0.810667pt;}
.ls5{letter-spacing:0.853333pt;}
.ls6f{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.938667pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls6e{letter-spacing:0.981333pt;}
.ls4b{letter-spacing:1.010667pt;}
.ls35{letter-spacing:1.013333pt;}
.ls78{letter-spacing:1.024000pt;}
.ls28{letter-spacing:1.066667pt;}
.ls73{letter-spacing:1.109333pt;}
.ls14{letter-spacing:1.120000pt;}
.ls46{letter-spacing:1.148800pt;}
.ls29{letter-spacing:1.173333pt;}
.ls3b{letter-spacing:1.226667pt;}
.ls7c{letter-spacing:1.237333pt;}
.ls26{letter-spacing:1.280000pt;}
.ls6b{letter-spacing:1.322667pt;}
.ls39{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:1.386667pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls69{letter-spacing:1.450667pt;}
.ls2d{letter-spacing:1.493333pt;}
.ls60{letter-spacing:1.536000pt;}
.ls22{letter-spacing:1.546667pt;}
.ls2e{letter-spacing:1.600000pt;}
.ls7b{letter-spacing:1.621333pt;}
.ls37{letter-spacing:1.653333pt;}
.ls70{letter-spacing:1.664000pt;}
.ls2b{letter-spacing:1.706667pt;}
.ls24{letter-spacing:1.760000pt;}
.ls7{letter-spacing:1.813333pt;}
.ls84{letter-spacing:1.834667pt;}
.ls20{letter-spacing:1.866667pt;}
.ls23{letter-spacing:1.920000pt;}
.ls80{letter-spacing:1.962667pt;}
.ls10{letter-spacing:1.973333pt;}
.ls6c{letter-spacing:2.005333pt;}
.ls2c{letter-spacing:2.026667pt;}
.ls6a{letter-spacing:2.048000pt;}
.ls21{letter-spacing:2.080000pt;}
.ls54{letter-spacing:2.082635pt;}
.ls6d{letter-spacing:2.090667pt;}
.ls15{letter-spacing:2.133333pt;}
.ls1e{letter-spacing:2.186667pt;}
.ls38{letter-spacing:2.240000pt;}
.ls66{letter-spacing:2.261333pt;}
.ls53{letter-spacing:2.275168pt;}
.ls25{letter-spacing:2.293333pt;}
.ls1f{letter-spacing:2.346667pt;}
.lsf{letter-spacing:2.400000pt;}
.ls2f{letter-spacing:2.453333pt;}
.ls5c{letter-spacing:2.506667pt;}
.ls7e{letter-spacing:2.517333pt;}
.ls42{letter-spacing:2.560000pt;}
.ls34{letter-spacing:2.613333pt;}
.ls56{letter-spacing:2.666667pt;}
.ls47{letter-spacing:2.773333pt;}
.ls61{letter-spacing:2.816000pt;}
.ls18{letter-spacing:2.826667pt;}
.ls5a{letter-spacing:2.880000pt;}
.ls4{letter-spacing:2.933333pt;}
.ls3c{letter-spacing:3.093333pt;}
.ls5d{letter-spacing:3.146667pt;}
.ls58{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.253333pt;}
.ls51{letter-spacing:3.360000pt;}
.lsc{letter-spacing:3.413333pt;}
.ls48{letter-spacing:3.466667pt;}
.ls59{letter-spacing:3.680000pt;}
.ls5b{letter-spacing:3.840000pt;}
.lse{letter-spacing:4.160000pt;}
.ls49{letter-spacing:4.320000pt;}
.ls43{letter-spacing:4.373333pt;}
.ls5f{letter-spacing:4.394667pt;}
.ls44{letter-spacing:5.173333pt;}
.ls4a{letter-spacing:5.226667pt;}
.ls5e{letter-spacing:6.773333pt;}
.ls0{letter-spacing:52.918112pt;}
.ls50{letter-spacing:110.336000pt;}
.ls4e{letter-spacing:168.106667pt;}
.ls4f{letter-spacing:175.658667pt;}
.ls57{letter-spacing:846.812800pt;}
.ws0{word-spacing:-31.284267pt;}
.ws4a{word-spacing:-18.506667pt;}
.ws96{word-spacing:-17.386667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws11{word-spacing:-14.773333pt;}
.ws6a{word-spacing:-14.720000pt;}
.ws39{word-spacing:-14.506667pt;}
.ws10{word-spacing:-14.240000pt;}
.ws4{word-spacing:-14.186667pt;}
.ws2d{word-spacing:-14.026667pt;}
.ws86{word-spacing:-13.920000pt;}
.ws49{word-spacing:-13.546667pt;}
.wsf{word-spacing:-13.440000pt;}
.ws4b{word-spacing:-13.333333pt;}
.ws6{word-spacing:-11.861333pt;}
.ws6c{word-spacing:-11.860147pt;}
.ws9b{word-spacing:-11.605333pt;}
.ws97{word-spacing:-11.520000pt;}
.ws9a{word-spacing:-11.477333pt;}
.ws9c{word-spacing:-11.349333pt;}
.wsb6{word-spacing:-11.264000pt;}
.wsb7{word-spacing:-11.178667pt;}
.ws5{word-spacing:-11.120000pt;}
.ws98{word-spacing:-11.093333pt;}
.wsb4{word-spacing:-11.050667pt;}
.ws99{word-spacing:-10.965333pt;}
.wsb8{word-spacing:-10.709333pt;}
.ws7e{word-spacing:-10.666667pt;}
.wsb9{word-spacing:-10.496000pt;}
.ws9d{word-spacing:-10.112000pt;}
.ws1{word-spacing:-9.076144pt;}
.wsb5{word-spacing:-8.320000pt;}
.ws5f{word-spacing:-7.773333pt;}
.ws72{word-spacing:-6.915157pt;}
.ws2{word-spacing:-6.482960pt;}
.ws61{word-spacing:-6.218667pt;}
.ws51{word-spacing:-5.226667pt;}
.ws50{word-spacing:-4.373333pt;}
.ws15{word-spacing:-4.160000pt;}
.ws88{word-spacing:-3.680000pt;}
.ws12{word-spacing:-3.466667pt;}
.ws93{word-spacing:-3.093333pt;}
.ws8d{word-spacing:-2.880000pt;}
.ws56{word-spacing:-2.773333pt;}
.ws8{word-spacing:-2.565333pt;}
.wsa0{word-spacing:-2.400000pt;}
.ws1b{word-spacing:-2.346667pt;}
.wsa7{word-spacing:-2.261333pt;}
.ws67{word-spacing:-2.240000pt;}
.ws37{word-spacing:-2.186667pt;}
.ws28{word-spacing:-2.133333pt;}
.wsaa{word-spacing:-2.090667pt;}
.ws57{word-spacing:-2.080000pt;}
.wsb3{word-spacing:-2.005333pt;}
.ws26{word-spacing:-1.973333pt;}
.wsc6{word-spacing:-1.962667pt;}
.ws1c{word-spacing:-1.920000pt;}
.ws14{word-spacing:-1.866667pt;}
.ws5d{word-spacing:-1.813333pt;}
.ws3e{word-spacing:-1.760000pt;}
.ws4f{word-spacing:-1.706667pt;}
.wsb1{word-spacing:-1.664000pt;}
.ws54{word-spacing:-1.600000pt;}
.ws8c{word-spacing:-1.493333pt;}
.wsaf{word-spacing:-1.450667pt;}
.ws5e{word-spacing:-1.440000pt;}
.ws8e{word-spacing:-1.386667pt;}
.wsac{word-spacing:-1.322667pt;}
.wsbe{word-spacing:-1.237333pt;}
.ws94{word-spacing:-1.226667pt;}
.ws8b{word-spacing:-1.173333pt;}
.ws17{word-spacing:-1.120000pt;}
.wsa5{word-spacing:-1.109333pt;}
.ws4e{word-spacing:-1.066667pt;}
.ws9{word-spacing:-1.008000pt;}
.wsae{word-spacing:-0.981333pt;}
.ws3b{word-spacing:-0.960000pt;}
.wsa3{word-spacing:-0.938667pt;}
.ws13{word-spacing:-0.906667pt;}
.wsb0{word-spacing:-0.896000pt;}
.ws53{word-spacing:-0.853333pt;}
.ws36{word-spacing:-0.800000pt;}
.ws3c{word-spacing:-0.746667pt;}
.wsa8{word-spacing:-0.682667pt;}
.ws22{word-spacing:-0.640000pt;}
.wsbf{word-spacing:-0.597333pt;}
.ws66{word-spacing:-0.586667pt;}
.wsba{word-spacing:-0.554667pt;}
.wsa6{word-spacing:-0.512000pt;}
.ws82{word-spacing:-0.480000pt;}
.wsbc{word-spacing:-0.469333pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.373333pt;}
.wsa2{word-spacing:-0.341333pt;}
.ws1e{word-spacing:-0.320000pt;}
.wsc4{word-spacing:-0.298667pt;}
.ws27{word-spacing:-0.266667pt;}
.wsc2{word-spacing:-0.256000pt;}
.ws3a{word-spacing:-0.213333pt;}
.ws30{word-spacing:-0.160000pt;}
.ws68{word-spacing:-0.053333pt;}
.wsb2{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.053333pt;}
.wsa4{word-spacing:0.085333pt;}
.ws47{word-spacing:0.106667pt;}
.wsc0{word-spacing:0.128000pt;}
.wsc{word-spacing:0.160000pt;}
.ws78{word-spacing:0.170667pt;}
.ws58{word-spacing:0.213333pt;}
.ws91{word-spacing:0.266667pt;}
.ws46{word-spacing:0.320000pt;}
.wsc1{word-spacing:0.341333pt;}
.wsa{word-spacing:0.533333pt;}
.ws25{word-spacing:0.586667pt;}
.ws2c{word-spacing:0.640000pt;}
.ws89{word-spacing:0.693333pt;}
.ws87{word-spacing:0.800000pt;}
.ws2a{word-spacing:0.853333pt;}
.ws8f{word-spacing:0.906667pt;}
.ws2b{word-spacing:0.960000pt;}
.ws69{word-spacing:1.013333pt;}
.ws92{word-spacing:1.066667pt;}
.ws18{word-spacing:1.120000pt;}
.wsc5{word-spacing:1.152000pt;}
.ws52{word-spacing:1.226667pt;}
.ws76{word-spacing:1.322667pt;}
.ws31{word-spacing:1.333333pt;}
.ws43{word-spacing:1.386667pt;}
.wsab{word-spacing:1.408000pt;}
.ws3d{word-spacing:1.440000pt;}
.ws32{word-spacing:1.493333pt;}
.ws4c{word-spacing:1.546667pt;}
.ws83{word-spacing:1.600000pt;}
.ws3f{word-spacing:1.653333pt;}
.ws42{word-spacing:1.760000pt;}
.wsbd{word-spacing:1.792000pt;}
.wse{word-spacing:1.813333pt;}
.ws95{word-spacing:1.866667pt;}
.ws77{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.080000pt;}
.wsc3{word-spacing:2.176000pt;}
.ws90{word-spacing:2.186667pt;}
.ws29{word-spacing:2.240000pt;}
.ws84{word-spacing:2.400000pt;}
.ws80{word-spacing:2.453333pt;}
.wsad{word-spacing:2.474667pt;}
.ws35{word-spacing:2.560000pt;}
.ws33{word-spacing:2.666667pt;}
.ws45{word-spacing:2.720000pt;}
.wsa9{word-spacing:2.730667pt;}
.ws85{word-spacing:2.826667pt;}
.ws16{word-spacing:2.880000pt;}
.ws41{word-spacing:2.933333pt;}
.ws20{word-spacing:2.986667pt;}
.ws34{word-spacing:3.040000pt;}
.wsbb{word-spacing:3.200000pt;}
.ws5b{word-spacing:3.253333pt;}
.ws19{word-spacing:3.306667pt;}
.ws4d{word-spacing:3.360000pt;}
.ws55{word-spacing:3.413333pt;}
.ws23{word-spacing:3.466667pt;}
.wsa1{word-spacing:3.498667pt;}
.ws38{word-spacing:3.520000pt;}
.ws70{word-spacing:3.541333pt;}
.ws24{word-spacing:3.626667pt;}
.ws6f{word-spacing:3.680000pt;}
.ws44{word-spacing:3.733333pt;}
.ws81{word-spacing:3.786667pt;}
.ws48{word-spacing:3.840000pt;}
.ws21{word-spacing:3.946667pt;}
.ws40{word-spacing:4.000000pt;}
.ws2f{word-spacing:4.106667pt;}
.ws1d{word-spacing:4.213333pt;}
.ws59{word-spacing:4.266667pt;}
.ws5c{word-spacing:4.320000pt;}
.wsd{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws9f{word-spacing:4.853333pt;}
.ws9e{word-spacing:4.906667pt;}
.ws8a{word-spacing:5.546667pt;}
.ws6b{word-spacing:39.210667pt;}
.ws6d{word-spacing:43.899610pt;}
.ws6e{word-spacing:45.184000pt;}
.ws75{word-spacing:64.896000pt;}
.ws65{word-spacing:105.856000pt;}
.ws60{word-spacing:107.349333pt;}
.ws79{word-spacing:114.218667pt;}
.ws62{word-spacing:127.189333pt;}
.ws63{word-spacing:145.408000pt;}
.ws7f{word-spacing:151.125333pt;}
.ws7a{word-spacing:157.440000pt;}
.ws64{word-spacing:164.522667pt;}
.ws7d{word-spacing:194.773333pt;}
.ws71{word-spacing:199.168000pt;}
.ws73{word-spacing:267.690667pt;}
.ws74{word-spacing:297.386667pt;}
.ws7c{word-spacing:762.197333pt;}
.ws7b{word-spacing:769.322667pt;}
._e{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._2{margin-left:-8.552533pt;}
._3{margin-left:-6.161600pt;}
._1{margin-left:-4.778667pt;}
._7{margin-left:-3.353653pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.064000pt;}
._6{width:0.961600pt;}
._8{width:2.446987pt;}
._d{width:3.358400pt;}
._a{width:4.586667pt;}
._9{width:5.520000pt;}
._b{width:6.800000pt;}
._c{width:8.586667pt;}
._4e{width:50.392555pt;}
._5{width:52.900635pt;}
._4a{width:55.936000pt;}
._4b{width:57.862032pt;}
._50{width:59.562667pt;}
._4d{width:61.824000pt;}
._51{width:63.189333pt;}
._4c{width:65.633397pt;}
._53{width:67.712000pt;}
._52{width:71.972635pt;}
._15{width:81.834667pt;}
._5f{width:89.770667pt;}
._1d{width:92.501333pt;}
._5e{width:100.608000pt;}
._12{width:102.016000pt;}
._27{width:103.168000pt;}
._38{width:108.901333pt;}
._39{width:113.834667pt;}
._19{width:127.189333pt;}
._42{width:131.157333pt;}
._48{width:132.522667pt;}
._18{width:134.741333pt;}
._32{width:136.490667pt;}
._17{width:137.856000pt;}
._49{width:140.074667pt;}
._10{width:142.165333pt;}
._16{width:145.408000pt;}
._21{width:148.522667pt;}
._1e{width:156.074667pt;}
._1f{width:159.189333pt;}
._64{width:160.981333pt;}
._2a{width:164.522667pt;}
._20{width:166.741333pt;}
._70{width:168.106667pt;}
._2b{width:172.074667pt;}
._13{width:175.658667pt;}
._2e{width:182.272000pt;}
._28{width:185.898667pt;}
._26{width:189.312000pt;}
._11{width:190.976000pt;}
._65{width:199.253333pt;}
._4f{width:201.004757pt;}
._61{width:202.794667pt;}
._3e{width:205.312000pt;}
._69{width:206.378667pt;}
._37{width:207.874667pt;}
._43{width:210.346667pt;}
._1b{width:213.930667pt;}
._33{width:215.680000pt;}
._25{width:224.640000pt;}
._22{width:227.712000pt;}
._1a{width:238.378667pt;}
._5d{width:243.669333pt;}
._62{width:246.741333pt;}
._3a{width:249.045333pt;}
._57{width:253.525333pt;}
._5c{width:260.608000pt;}
._34{width:266.666667pt;}
._23{width:268.757333pt;}
._66{width:271.274667pt;}
._58{width:274.858667pt;}
._3b{width:277.333333pt;}
._2f{width:280.576000pt;}
._40{width:281.514667pt;}
._59{width:285.525333pt;}
._47{width:291.285333pt;}
._30{width:293.333333pt;}
._44{width:295.936000pt;}
._67{width:297.514667pt;}
._36{width:301.866667pt;}
._6a{width:303.274667pt;}
._71{width:308.608000pt;}
._14{width:313.477333pt;}
._7e{width:325.973333pt;}
._2c{width:331.520000pt;}
._55{width:347.136000pt;}
._3c{width:350.549333pt;}
._29{width:351.701333pt;}
._6e{width:356.821333pt;}
._83{width:358.403243pt;}
._77{width:362.410667pt;}
._6d{width:367.488000pt;}
._6b{width:378.880000pt;}
._2d{width:387.200000pt;}
._3d{width:388.522667pt;}
._1c{width:391.936000pt;}
._31{width:394.410667pt;}
._35{width:407.657067pt;}
._41{width:416.938667pt;}
._78{width:442.880000pt;}
._45{width:466.309333pt;}
._3f{width:470.186667pt;}
._24{width:476.160000pt;}
._7c{width:522.692320pt;}
._7f{width:526.233653pt;}
._5b{width:537.898667pt;}
._7a{width:560.682667pt;}
._80{width:577.177653pt;}
._7d{width:604.441653pt;}
._7b{width:606.830987pt;}
._79{width:636.586667pt;}
._46{width:735.470987pt;}
._60{width:759.765333pt;}
._73{width:777.600000pt;}
._75{width:782.378667pt;}
._76{width:784.725333pt;}
._6c{width:787.072000pt;}
._74{width:789.461333pt;}
._6f{width:791.808000pt;}
._68{width:794.197333pt;}
._63{width:797.696000pt;}
._72{width:801.280000pt;}
._56{width:835.328000pt;}
._82{width:852.138667pt;}
._81{width:859.264000pt;}
._5a{width:887.424000pt;}
._54{width:976.938667pt;}
.fs5{font-size:23.320000pt;}
.fsd{font-size:24.872000pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:42.662400pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:39.074933pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.yf9{bottom:57.507467pt;}
.ybd{bottom:73.620000pt;}
.y6d{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y91{bottom:74.595867pt;}
.y6f{bottom:75.142267pt;}
.y166{bottom:76.552800pt;}
.y2c{bottom:78.246000pt;}
.y10f{bottom:82.391200pt;}
.y13f{bottom:82.849867pt;}
.y1a6{bottom:84.678667pt;}
.ybc{bottom:87.614667pt;}
.y165{bottom:89.886133pt;}
.y6c{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y90{bottom:90.595867pt;}
.yb1{bottom:90.825467pt;}
.y2b{bottom:91.576000pt;}
.y10e{bottom:96.833867pt;}
.y13e{bottom:97.296000pt;}
.y1a5{bottom:98.012000pt;}
.y164{bottom:103.219467pt;}
.y11a{bottom:104.802667pt;}
.y6b{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y8f{bottom:106.595867pt;}
.yf6{bottom:108.473333pt;}
.y10d{bottom:111.276533pt;}
.y1a4{bottom:111.345333pt;}
.y13d{bottom:111.816133pt;}
.yf8{bottom:111.935733pt;}
.y163{bottom:116.552800pt;}
.yb0{bottom:116.606800pt;}
.y6a{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y8e{bottom:122.595867pt;}
.y1a3{bottom:124.678667pt;}
.yee{bottom:124.746267pt;}
.y13c{bottom:126.258800pt;}
.y162{bottom:129.886133pt;}
.yaf{bottom:131.049467pt;}
.y1a2{bottom:138.012000pt;}
.y69{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y8d{bottom:138.595867pt;}
.y10c{bottom:139.287200pt;}
.y13b{bottom:140.701467pt;}
.y28{bottom:141.675200pt;}
.y161{bottom:143.219467pt;}
.yae{bottom:145.492133pt;}
.yef{bottom:147.562267pt;}
.y1a1{bottom:151.345333pt;}
.y68{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y8c{bottom:154.595867pt;}
.y13a{bottom:155.144133pt;}
.y160{bottom:156.552800pt;}
.y27{bottom:157.675200pt;}
.yad{bottom:159.934800pt;}
.y1a0{bottom:164.678667pt;}
.y139{bottom:169.586800pt;}
.y10b{bottom:170.305067pt;}
.y67{bottom:170.342533pt;}
.yf0{bottom:170.367600pt;}
.y5f{bottom:170.462533pt;}
.y8b{bottom:170.595867pt;}
.y26{bottom:173.675200pt;}
.yac{bottom:174.377467pt;}
.y19f{bottom:178.012000pt;}
.y138{bottom:184.029467pt;}
.y15f{bottom:185.984533pt;}
.y5e{bottom:186.462533pt;}
.y8a{bottom:186.595867pt;}
.y10a{bottom:187.638400pt;}
.yab{bottom:188.820133pt;}
.y2a{bottom:189.675200pt;}
.y19e{bottom:191.345333pt;}
.yf1{bottom:193.172933pt;}
.y137{bottom:198.472133pt;}
.yc7{bottom:198.504133pt;}
.yd0{bottom:198.525600pt;}
.yf7{bottom:198.769067pt;}
.y66{bottom:201.982533pt;}
.y5d{bottom:202.462533pt;}
.y89{bottom:202.595867pt;}
.yaa{bottom:203.262800pt;}
.y19d{bottom:204.678667pt;}
.y109{bottom:204.971733pt;}
.y25{bottom:205.317067pt;}
.y29{bottom:205.675200pt;}
.ye2{bottom:211.914800pt;}
.ye7{bottom:211.925467pt;}
.y136{bottom:212.914800pt;}
.yf2{bottom:215.999600pt;}
.ya9{bottom:217.705467pt;}
.y19c{bottom:218.012000pt;}
.y5c{bottom:218.462533pt;}
.y88{bottom:218.595867pt;}
.y108{bottom:222.305067pt;}
.y135{bottom:227.357467pt;}
.y19b{bottom:231.345333pt;}
.ya8{bottom:232.148133pt;}
.y5b{bottom:234.462533pt;}
.y15e{bottom:234.464533pt;}
.y87{bottom:234.595867pt;}
.yf3{bottom:238.804933pt;}
.y134{bottom:241.800133pt;}
.y19a{bottom:244.678667pt;}
.ya7{bottom:246.636667pt;}
.y15d{bottom:250.104533pt;}
.y5a{bottom:250.462533pt;}
.y86{bottom:250.595867pt;}
.y133{bottom:256.242800pt;}
.y199{bottom:258.012000pt;}
.ya6{bottom:261.079333pt;}
.yf4{bottom:261.620933pt;}
.y111{bottom:261.655200pt;}
.y59{bottom:266.462533pt;}
.y85{bottom:266.595867pt;}
.y132{bottom:270.685467pt;}
.y24{bottom:271.123733pt;}
.y198{bottom:271.345333pt;}
.y118{bottom:273.948533pt;}
.ya5{bottom:275.522000pt;}
.y110{bottom:275.649867pt;}
.y103{bottom:281.193200pt;}
.y58{bottom:282.462533pt;}
.y15c{bottom:282.464533pt;}
.y84{bottom:282.595867pt;}
.yf5{bottom:284.426267pt;}
.y197{bottom:284.678667pt;}
.y131{bottom:285.128133pt;}
.ya4{bottom:289.964667pt;}
.y23{bottom:295.430400pt;}
.y117{bottom:296.117333pt;}
.y196{bottom:298.012000pt;}
.y15b{bottom:298.104533pt;}
.y57{bottom:298.462533pt;}
.y83{bottom:298.595867pt;}
.y130{bottom:299.570800pt;}
.y11b{bottom:299.580133pt;}
.ya3{bottom:304.407333pt;}
.yfa{bottom:307.240133pt;}
.y195{bottom:311.345333pt;}
.y22{bottom:311.430400pt;}
.y12f{bottom:314.013467pt;}
.y56{bottom:314.462533pt;}
.y82{bottom:314.595867pt;}
.y119{bottom:315.260533pt;}
.ya2{bottom:318.850000pt;}
.y194{bottom:324.678667pt;}
.y21{bottom:327.430400pt;}
.y12e{bottom:328.456133pt;}
.y112{bottom:329.116533pt;}
.y55{bottom:330.462533pt;}
.y15a{bottom:330.464533pt;}
.y81{bottom:330.595867pt;}
.ya1{bottom:333.292667pt;}
.ye1{bottom:335.292000pt;}
.y193{bottom:338.012000pt;}
.yeb{bottom:338.755600pt;}
.y12d{bottom:342.898800pt;}
.y20{bottom:343.430400pt;}
.y73{bottom:346.102533pt;}
.y54{bottom:346.462533pt;}
.y159{bottom:346.464533pt;}
.y80{bottom:346.595867pt;}
.ya0{bottom:347.735333pt;}
.y192{bottom:351.345333pt;}
.ye8{bottom:353.018267pt;}
.y12c{bottom:357.341467pt;}
.y1f{bottom:359.430400pt;}
.y158{bottom:362.104533pt;}
.y9f{bottom:362.178000pt;}
.y53{bottom:362.462533pt;}
.y7f{bottom:362.595867pt;}
.y191{bottom:364.678667pt;}
.yd8{bottom:365.752933pt;}
.y12b{bottom:371.784133pt;}
.y1e{bottom:375.430400pt;}
.y9e{bottom:376.620667pt;}
.y113{bottom:377.308533pt;}
.y72{bottom:377.982533pt;}
.y190{bottom:378.012000pt;}
.y52{bottom:378.462533pt;}
.y7e{bottom:378.595867pt;}
.yd9{bottom:385.910917pt;}
.y12a{bottom:386.226800pt;}
.y9d{bottom:391.063333pt;}
.y18f{bottom:391.347467pt;}
.y1d{bottom:391.430400pt;}
.y51{bottom:394.462533pt;}
.y157{bottom:394.464533pt;}
.y7d{bottom:394.595867pt;}
.y129{bottom:400.669467pt;}
.ye3{bottom:402.047970pt;}
.y18e{bottom:404.680800pt;}
.y9c{bottom:405.506000pt;}
.yda{bottom:406.068901pt;}
.ye9{bottom:407.062267pt;}
.y1c{bottom:407.430400pt;}
.y156{bottom:410.104533pt;}
.y50{bottom:410.462533pt;}
.y7c{bottom:410.595867pt;}
.y122{bottom:411.128267pt;}
.y128{bottom:415.112133pt;}
.y18d{bottom:418.014133pt;}
.yea{bottom:422.174992pt;}
.y1b{bottom:423.430400pt;}
.y114{bottom:425.500533pt;}
.ydb{bottom:426.237551pt;}
.y4f{bottom:426.462533pt;}
.y7b{bottom:426.595867pt;}
.y121{bottom:429.327467pt;}
.y127{bottom:429.554800pt;}
.y9b{bottom:431.283600pt;}
.y18c{bottom:431.347467pt;}
.ye4{bottom:438.343007pt;}
.y1a{bottom:439.430400pt;}
.y4e{bottom:442.462533pt;}
.y155{bottom:442.464533pt;}
.y7a{bottom:442.595867pt;}
.y99{bottom:444.179600pt;}
.y1cc{bottom:444.678667pt;}
.y18b{bottom:444.680800pt;}
.ydc{bottom:446.395535pt;}
.y120{bottom:447.541067pt;}
.y19{bottom:455.430400pt;}
.y9a{bottom:457.075600pt;}
.y126{bottom:457.565467pt;}
.y1cb{bottom:458.012000pt;}
.y18a{bottom:458.014133pt;}
.y4d{bottom:458.462533pt;}
.y154{bottom:458.464533pt;}
.y79{bottom:458.595867pt;}
.y11f{bottom:465.748133pt;}
.ydd{bottom:466.564185pt;}
.y1ca{bottom:471.345333pt;}
.y189{bottom:471.347467pt;}
.y18{bottom:471.430400pt;}
.y115{bottom:473.692533pt;}
.y4c{bottom:474.462533pt;}
.y153{bottom:474.464533pt;}
.y78{bottom:474.595867pt;}
.ye5{bottom:474.638044pt;}
.y11e{bottom:483.960267pt;}
.y1c9{bottom:484.678667pt;}
.y188{bottom:484.680800pt;}
.y98{bottom:485.862533pt;}
.yde{bottom:486.722169pt;}
.y17{bottom:487.430400pt;}
.y125{bottom:488.582533pt;}
.y152{bottom:490.104533pt;}
.y4b{bottom:490.462533pt;}
.y77{bottom:490.595867pt;}
.y1c8{bottom:498.012000pt;}
.y187{bottom:498.014133pt;}
.y11d{bottom:502.173867pt;}
.y97{bottom:503.195867pt;}
.y16{bottom:503.430400pt;}
.y124{bottom:505.915867pt;}
.y4a{bottom:506.462533pt;}
.y76{bottom:506.595867pt;}
.ydf{bottom:506.880153pt;}
.ye6{bottom:510.933081pt;}
.y1c7{bottom:511.345333pt;}
.y186{bottom:511.347467pt;}
.y15{bottom:519.430400pt;}
.y11c{bottom:520.380933pt;}
.y96{bottom:520.529200pt;}
.y116{bottom:521.873867pt;}
.y49{bottom:522.462533pt;}
.y151{bottom:522.464533pt;}
.y75{bottom:522.595867pt;}
.y123{bottom:523.249200pt;}
.y1c6{bottom:524.678667pt;}
.y185{bottom:524.680800pt;}
.ye0{bottom:527.048802pt;}
.y14{bottom:535.430400pt;}
.y95{bottom:537.862533pt;}
.y1c5{bottom:538.012000pt;}
.y184{bottom:538.014133pt;}
.y70{bottom:538.033067pt;}
.y48{bottom:538.462533pt;}
.y150{bottom:538.464533pt;}
.yec{bottom:545.909200pt;}
.yed{bottom:547.207067pt;}
.y1c4{bottom:551.345333pt;}
.y183{bottom:551.347467pt;}
.y13{bottom:551.430400pt;}
.y74{bottom:554.235867pt;}
.y47{bottom:554.462533pt;}
.y14f{bottom:554.464533pt;}
.y94{bottom:555.195867pt;}
.y1c3{bottom:564.678667pt;}
.y182{bottom:564.680800pt;}
.y12{bottom:567.430400pt;}
.y14e{bottom:570.104533pt;}
.y46{bottom:570.462533pt;}
.y93{bottom:572.529200pt;}
.yc6{bottom:575.258667pt;}
.y1c2{bottom:578.012000pt;}
.y181{bottom:578.014133pt;}
.yd1{bottom:578.754933pt;}
.y11{bottom:583.430400pt;}
.y45{bottom:586.462533pt;}
.y92{bottom:589.862533pt;}
.y1c1{bottom:591.345333pt;}
.y180{bottom:591.347467pt;}
.ybe{bottom:591.512133pt;}
.yc8{bottom:591.533467pt;}
.y10{bottom:599.430400pt;}
.y44{bottom:602.462533pt;}
.y14d{bottom:602.464533pt;}
.y1c0{bottom:604.678667pt;}
.y17f{bottom:604.680800pt;}
.yfc{bottom:608.045200pt;}
.ybf{bottom:614.296133pt;}
.yc9{bottom:614.317467pt;}
.yf{bottom:615.430400pt;}
.y1bf{bottom:618.012000pt;}
.y17e{bottom:618.014133pt;}
.y43{bottom:618.462533pt;}
.y14c{bottom:618.464533pt;}
.yfb{bottom:622.039867pt;}
.y1be{bottom:631.345333pt;}
.y17d{bottom:631.347467pt;}
.ye{bottom:631.430400pt;}
.y42{bottom:634.462533pt;}
.y14b{bottom:634.464533pt;}
.yc0{bottom:637.080133pt;}
.yca{bottom:637.101467pt;}
.yd2{bottom:642.674933pt;}
.y102{bottom:643.182667pt;}
.y1bd{bottom:644.678667pt;}
.y17c{bottom:644.680800pt;}
.y107{bottom:646.642933pt;}
.y41{bottom:650.462533pt;}
.y14a{bottom:650.464533pt;}
.y1bc{bottom:658.012000pt;}
.y17b{bottom:658.014133pt;}
.y106{bottom:659.688267pt;}
.yc1{bottom:659.853467pt;}
.ycb{bottom:659.874800pt;}
.y40{bottom:666.462533pt;}
.y149{bottom:666.464533pt;}
.y1bb{bottom:671.345333pt;}
.y17a{bottom:671.347467pt;}
.yd{bottom:671.570933pt;}
.y104{bottom:674.701200pt;}
.y3f{bottom:682.462533pt;}
.y148{bottom:682.464533pt;}
.yc2{bottom:682.637467pt;}
.yc{bottom:682.638267pt;}
.ycc{bottom:682.658800pt;}
.y1ba{bottom:684.678667pt;}
.y179{bottom:684.680800pt;}
.yfd{bottom:688.599733pt;}
.y1b9{bottom:698.012000pt;}
.y178{bottom:698.014133pt;}
.y3e{bottom:698.462533pt;}
.y147{bottom:698.464533pt;}
.yc3{bottom:705.421467pt;}
.ycd{bottom:705.442800pt;}
.yb{bottom:710.829867pt;}
.y1b8{bottom:711.345333pt;}
.y177{bottom:711.347467pt;}
.yd6{bottom:713.870667pt;}
.y3d{bottom:714.462533pt;}
.y146{bottom:714.464533pt;}
.y1b7{bottom:724.678667pt;}
.y176{bottom:724.680800pt;}
.yd5{bottom:726.212000pt;}
.ya{bottom:727.652400pt;}
.yc4{bottom:728.205467pt;}
.yce{bottom:728.226800pt;}
.y3c{bottom:730.462533pt;}
.y145{bottom:730.464533pt;}
.y9{bottom:734.829867pt;}
.yfe{bottom:735.757067pt;}
.y1b6{bottom:738.012000pt;}
.y175{bottom:738.014133pt;}
.y3b{bottom:746.462533pt;}
.y144{bottom:746.464533pt;}
.y8{bottom:746.829867pt;}
.yc5{bottom:750.978800pt;}
.ycf{bottom:751.000133pt;}
.y1b5{bottom:751.345333pt;}
.y174{bottom:751.347467pt;}
.y105{bottom:756.815467pt;}
.yd4{bottom:761.325333pt;}
.y3a{bottom:762.462533pt;}
.y143{bottom:762.464533pt;}
.y7{bottom:763.652400pt;}
.y1b4{bottom:764.678667pt;}
.y173{bottom:764.680800pt;}
.yd7{bottom:773.746133pt;}
.y1b3{bottom:778.012000pt;}
.y172{bottom:778.014133pt;}
.y39{bottom:778.462533pt;}
.y142{bottom:778.464533pt;}
.yff{bottom:782.903733pt;}
.y6{bottom:789.183067pt;}
.y1b2{bottom:791.345333pt;}
.y171{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y141{bottom:794.464533pt;}
.y1b1{bottom:804.678667pt;}
.y170{bottom:804.680800pt;}
.y37{bottom:810.462533pt;}
.yb9{bottom:810.464533pt;}
.y1b0{bottom:818.012000pt;}
.y16f{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.yb8{bottom:826.464533pt;}
.y100{bottom:830.061067pt;}
.y5{bottom:830.226133pt;}
.y1af{bottom:831.345333pt;}
.y16e{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.yb7{bottom:842.464533pt;}
.y1ae{bottom:844.678667pt;}
.y16d{bottom:844.680800pt;}
.y1ad{bottom:858.012000pt;}
.y16c{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.yb6{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.y1ac{bottom:871.345333pt;}
.y16b{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.yb5{bottom:874.464533pt;}
.y101{bottom:877.218400pt;}
.y1ab{bottom:884.678667pt;}
.y16a{bottom:884.680800pt;}
.y32{bottom:890.462533pt;}
.yb4{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y1aa{bottom:898.012000pt;}
.y169{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.ybb{bottom:906.464533pt;}
.y1a9{bottom:911.345333pt;}
.y168{bottom:911.347467pt;}
.yb3{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.yba{bottom:922.464533pt;}
.y1a8{bottom:924.678667pt;}
.y167{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y140{bottom:1006.593867pt;}
.y6e{bottom:1006.594400pt;}
.y71{bottom:1006.598400pt;}
.y1a7{bottom:1006.598667pt;}
.yb2{bottom:1006.622800pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h11{height:29.645833pt;}
.h14{height:31.080225pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h16{height:32.325507pt;}
.h1a{height:32.330117pt;}
.h17{height:32.331946pt;}
.h1b{height:32.344517pt;}
.hc{height:37.057292pt;}
.h1d{height:37.367788pt;}
.h12{height:37.396587pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h10{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h13{height:207.641333pt;}
.h18{height:207.920000pt;}
.h15{height:221.069333pt;}
.h1c{height:283.096000pt;}
.h19{height:290.360000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:419.378667pt;}
.w5{width:426.710667pt;}
.w2{width:453.544000pt;}
.w6{width:458.893333pt;}
.w3{width:472.026667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:9.150533pt;}
.x3a{left:19.558800pt;}
.x28{left:20.782800pt;}
.x1f{left:22.763733pt;}
.xa{left:68.031467pt;}
.x16{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x3e{left:88.818933pt;}
.x45{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x42{left:109.606533pt;}
.x13{left:110.560133pt;}
.x3{left:111.498800pt;}
.x3f{left:113.373600pt;}
.x6{left:117.165333pt;}
.x39{left:157.954667pt;}
.x24{left:160.166533pt;}
.x31{left:174.046667pt;}
.x37{left:177.513467pt;}
.x25{left:180.405333pt;}
.x38{left:182.921467pt;}
.x33{left:186.752400pt;}
.x41{left:187.904267pt;}
.x5{left:189.223467pt;}
.x36{left:191.006800pt;}
.x29{left:193.110000pt;}
.x2f{left:194.182667pt;}
.x1a{left:195.677733pt;}
.x27{left:201.188113pt;}
.x3b{left:203.593467pt;}
.x15{left:206.536267pt;}
.x32{left:213.633467pt;}
.x2e{left:217.069600pt;}
.x1e{left:218.835733pt;}
.x2d{left:223.042933pt;}
.x1d{left:224.809067pt;}
.x30{left:229.613600pt;}
.x20{left:231.358400pt;}
.x19{left:279.627867pt;}
.x23{left:281.836667pt;}
.x17{left:284.150533pt;}
.x34{left:294.474933pt;}
.x2c{left:298.696533pt;}
.x35{left:365.216267pt;}
.x3c{left:387.918267pt;}
.x9{left:404.481333pt;}
.xc{left:406.295200pt;}
.x2b{left:407.779200pt;}
.x1c{left:418.528933pt;}
.x11{left:425.195867pt;}
.x7{left:427.085333pt;}
.x46{left:428.991467pt;}
.x26{left:433.946800pt;}
.xd{left:436.535200pt;}
.x43{left:447.878533pt;}
.x12{left:455.435867pt;}
.xe{left:466.908533pt;}
.x3d{left:502.609733pt;}
.x18{left:561.195867pt;}
.x10{left:589.770933pt;}
.x1b{left:614.600933pt;}
.x2{left:616.324800pt;}
.x40{left:641.526800pt;}
.x21{left:646.150533pt;}
.xf{left:647.459200pt;}
.x2a{left:648.968410pt;}
.x44{left:661.224267pt;}
.x14{left:666.357467pt;}
}




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