
    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_78cd8b5f7864a94abec3086d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_870f567c5a885ef3540a0d0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_010b5660302d750d2df01139.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_fc0c24a324872eb33bb8126f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0ae8f8b536ebfe92b9ce9e1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.856934;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_0d5f71e33d2a9a1e133cfa79.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_2e950ce338c368445eab0f2d.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_a6c0a0a0b4ce50b67295c6fc.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v6{vertical-align:-27.360000px;}
.v4{vertical-align:-23.760000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.656320px;}
.v5{vertical-align:27.256320px;}
.v1{vertical-align:30.322920px;}
.ls73{letter-spacing:-2.583360px;}
.ls18{letter-spacing:-2.538000px;}
.ls20{letter-spacing:-2.376000px;}
.ls1e{letter-spacing:-2.322000px;}
.ls5c{letter-spacing:-2.318400px;}
.ls52{letter-spacing:-2.185920px;}
.lsf{letter-spacing:-1.920960px;}
.ls7{letter-spacing:-1.881360px;}
.ls30{letter-spacing:-1.782000px;}
.ls1f{letter-spacing:-1.728000px;}
.ls45{letter-spacing:-1.722240px;}
.ls21{letter-spacing:-1.674000px;}
.ls2e{letter-spacing:-1.656000px;}
.lsd{letter-spacing:-1.627920px;}
.ls12{letter-spacing:-1.620000px;}
.ls56{letter-spacing:-1.589760px;}
.ls10{letter-spacing:-1.566000px;}
.lsc{letter-spacing:-1.532160px;}
.ls63{letter-spacing:-1.523520px;}
.ls31{letter-spacing:-1.512000px;}
.ls13{letter-spacing:-1.458000px;}
.ls35{letter-spacing:-1.457280px;}
.lse{letter-spacing:-1.436400px;}
.ls16{letter-spacing:-1.404000px;}
.ls43{letter-spacing:-1.391040px;}
.lsb{letter-spacing:-1.340640px;}
.ls34{letter-spacing:-1.324800px;}
.ls14{letter-spacing:-1.296000px;}
.ls78{letter-spacing:-1.252800px;}
.ls15{letter-spacing:-1.242000px;}
.ls2d{letter-spacing:-1.192320px;}
.ls5{letter-spacing:-1.157760px;}
.ls2f{letter-spacing:-1.134000px;}
.ls44{letter-spacing:-1.126080px;}
.ls11{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-1.061280px;}
.ls81{letter-spacing:-1.059840px;}
.lsa{letter-spacing:-1.053360px;}
.ls32{letter-spacing:-1.026000px;}
.ls33{letter-spacing:-0.972000px;}
.ls59{letter-spacing:-0.918000px;}
.ls8{letter-spacing:-0.916560px;}
.ls17{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.766080px;}
.ls6c{letter-spacing:-0.756000px;}
.ls36{letter-spacing:-0.728640px;}
.ls6a{letter-spacing:-0.596160px;}
.ls53{letter-spacing:-0.594000px;}
.ls54{letter-spacing:-0.540000px;}
.ls46{letter-spacing:-0.486000px;}
.ls4e{letter-spacing:-0.397440px;}
.ls37{letter-spacing:-0.378000px;}
.ls89{letter-spacing:-0.331200px;}
.ls1d{letter-spacing:-0.324000px;}
.ls19{letter-spacing:-0.270000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.162000px;}
.ls4d{letter-spacing:0.194400px;}
.ls4b{letter-spacing:0.198000px;}
.ls26{letter-spacing:0.216000px;}
.ls51{letter-spacing:0.297000px;}
.ls1b{letter-spacing:0.324000px;}
.ls4c{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.378000px;}
.ls42{letter-spacing:0.432000px;}
.ls61{letter-spacing:0.589536px;}
.ls62{letter-spacing:0.728640px;}
.ls40{letter-spacing:0.918000px;}
.ls69{letter-spacing:0.933984px;}
.ls5b{letter-spacing:1.271808px;}
.ls75{letter-spacing:1.457280px;}
.ls55{letter-spacing:1.490400px;}
.ls85{letter-spacing:1.576512px;}
.ls28{letter-spacing:1.620000px;}
.ls79{letter-spacing:2.113056px;}
.ls60{letter-spacing:2.185920px;}
.ls2c{letter-spacing:2.322000px;}
.ls5e{letter-spacing:2.821824px;}
.ls5f{letter-spacing:2.848320px;}
.ls68{letter-spacing:2.954304px;}
.ls49{letter-spacing:3.078000px;}
.ls6b{letter-spacing:3.576960px;}
.ls41{letter-spacing:3.780000px;}
.ls3d{letter-spacing:3.960000px;}
.ls71{letter-spacing:4.305600px;}
.ls2b{letter-spacing:4.482000px;}
.ls6e{letter-spacing:5.034240px;}
.ls87{letter-spacing:5.186592px;}
.ls48{letter-spacing:5.238000px;}
.ls88{letter-spacing:5.762880px;}
.ls29{letter-spacing:5.940000px;}
.ls4a{letter-spacing:6.120000px;}
.ls72{letter-spacing:6.491520px;}
.ls67{letter-spacing:6.642000px;}
.ls3b{letter-spacing:6.660000px;}
.ls74{letter-spacing:7.200288px;}
.ls3a{letter-spacing:7.220160px;}
.ls1{letter-spacing:7.236000px;}
.ls80{letter-spacing:7.299648px;}
.ls3c{letter-spacing:7.398000px;}
.ls3f{letter-spacing:7.560000px;}
.ls83{letter-spacing:7.948800px;}
.ls47{letter-spacing:8.028288px;}
.ls3{letter-spacing:8.100000px;}
.ls6f{letter-spacing:8.611200px;}
.ls3e{letter-spacing:8.802000px;}
.ls66{letter-spacing:9.558000px;}
.ls86{letter-spacing:9.737280px;}
.ls5a{letter-spacing:10.141344px;}
.ls64{letter-spacing:10.260000px;}
.ls70{letter-spacing:10.797120px;}
.ls5d{letter-spacing:10.962000px;}
.ls57{letter-spacing:11.525760px;}
.ls7b{letter-spacing:11.558880px;}
.ls7a{letter-spacing:11.565504px;}
.ls7d{letter-spacing:11.711232px;}
.ls65{letter-spacing:11.718000px;}
.ls77{letter-spacing:12.254400px;}
.ls58{letter-spacing:12.420000px;}
.ls76{letter-spacing:12.983040px;}
.ls6d{letter-spacing:13.711680px;}
.ls25{letter-spacing:15.924096px;}
.ls27{letter-spacing:16.038000px;}
.ls84{letter-spacing:16.560000px;}
.ls50{letter-spacing:21.060000px;}
.ls4f{letter-spacing:21.762000px;}
.ls7f{letter-spacing:28.814400px;}
.ls7c{letter-spacing:30.934080px;}
.ls82{letter-spacing:34.159968px;}
.ls7e{letter-spacing:43.400448px;}
.ls2{letter-spacing:53.460000px;}
.ls39{letter-spacing:1108.923840px;}
.ls0{letter-spacing:1127.706480px;}
.ls24{letter-spacing:1483.378560px;}
.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;}
}
.ws5{word-spacing:-21.641760px;}
.ws2{word-spacing:-20.588400px;}
.ws6{word-spacing:-20.205360px;}
.ws4{word-spacing:-20.013840px;}
.ws8{word-spacing:-16.560000px;}
.ws13d{word-spacing:-16.228800px;}
.ws130{word-spacing:-15.963840px;}
.wsd6{word-spacing:-15.433920px;}
.ws118{word-spacing:-15.367680px;}
.ws45{word-spacing:-15.235200px;}
.ws75{word-spacing:-15.102720px;}
.wsff{word-spacing:-15.036480px;}
.wsef{word-spacing:-14.970240px;}
.ws77{word-spacing:-14.837760px;}
.ws7{word-spacing:-14.639040px;}
.wsd5{word-spacing:-14.374080px;}
.ws3{word-spacing:-14.319360px;}
.wse3{word-spacing:-14.241600px;}
.ws47{word-spacing:-13.878000px;}
.wsb4{word-spacing:-13.716000px;}
.ws78{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.500000px;}
.ws46{word-spacing:-13.392000px;}
.wsa2{word-spacing:-13.284000px;}
.ws48{word-spacing:-13.122000px;}
.ws79{word-spacing:-13.014000px;}
.wse9{word-spacing:-12.906000px;}
.ws11d{word-spacing:-12.744000px;}
.ws10{word-spacing:-12.690000px;}
.wse{word-spacing:-12.420000px;}
.ws76{word-spacing:-12.258000px;}
.wsd{word-spacing:-12.204000px;}
.wsf{word-spacing:-12.096000px;}
.ws0{word-spacing:-12.060000px;}
.wsb{word-spacing:-12.042000px;}
.ws9{word-spacing:-11.934000px;}
.wsc{word-spacing:-11.880000px;}
.ws122{word-spacing:-11.826000px;}
.ws1{word-spacing:-10.998720px;}
.ws43{word-spacing:-10.746000px;}
.ws11{word-spacing:-10.584000px;}
.ws42{word-spacing:-10.530000px;}
.ws44{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.882000px;}
.ws13{word-spacing:-9.000000px;}
.ws62{word-spacing:-3.780000px;}
.wsa9{word-spacing:-3.709440px;}
.wsb7{word-spacing:-3.576960px;}
.ws63{word-spacing:-3.402000px;}
.ws1a{word-spacing:-3.351600px;}
.ws61{word-spacing:-3.186000px;}
.wsd4{word-spacing:-3.078000px;}
.ws86{word-spacing:-2.980800px;}
.ws101{word-spacing:-2.862000px;}
.ws89{word-spacing:-2.848320px;}
.ws2c{word-spacing:-2.592000px;}
.wsba{word-spacing:-2.484000px;}
.wsf8{word-spacing:-2.450880px;}
.ws4d{word-spacing:-2.430000px;}
.wsa1{word-spacing:-2.376000px;}
.ws57{word-spacing:-2.252160px;}
.wsed{word-spacing:-2.160000px;}
.ws5d{word-spacing:-2.119680px;}
.ws10b{word-spacing:-2.106000px;}
.wse1{word-spacing:-1.998000px;}
.ws11e{word-spacing:-1.987200px;}
.ws2f{word-spacing:-1.890000px;}
.ws4f{word-spacing:-1.836000px;}
.wsa0{word-spacing:-1.782000px;}
.ws29{word-spacing:-1.728000px;}
.ws127{word-spacing:-1.722240px;}
.ws9f{word-spacing:-1.620000px;}
.ws58{word-spacing:-1.523520px;}
.ws28{word-spacing:-1.458000px;}
.ws51{word-spacing:-1.404000px;}
.ws5c{word-spacing:-1.391040px;}
.ws74{word-spacing:-1.350000px;}
.ws4e{word-spacing:-1.296000px;}
.wsdf{word-spacing:-1.242000px;}
.ws2b{word-spacing:-1.188000px;}
.ws52{word-spacing:-1.080000px;}
.ws112{word-spacing:-1.059840px;}
.ws73{word-spacing:-1.026000px;}
.ws97{word-spacing:-0.918000px;}
.wsdb{word-spacing:-0.864000px;}
.ws84{word-spacing:-0.861120px;}
.ws121{word-spacing:-0.756000px;}
.wsac{word-spacing:-0.728640px;}
.wsfa{word-spacing:-0.702000px;}
.wse7{word-spacing:-0.648000px;}
.ws3d{word-spacing:-0.540000px;}
.ws27{word-spacing:-0.432000px;}
.ws136{word-spacing:-0.397440px;}
.ws95{word-spacing:-0.378000px;}
.ws12a{word-spacing:-0.331200px;}
.ws2a{word-spacing:-0.324000px;}
.ws13f{word-spacing:-0.264960px;}
.ws96{word-spacing:-0.216000px;}
.ws65{word-spacing:-0.162000px;}
.ws7c{word-spacing:-0.132480px;}
.ws60{word-spacing:-0.108000px;}
.ws15{word-spacing:-0.096480px;}
.ws14{word-spacing:0.000000px;}
.ws9c{word-spacing:0.054000px;}
.ws9a{word-spacing:0.108000px;}
.ws7a{word-spacing:0.132480px;}
.wsc7{word-spacing:0.162000px;}
.ws68{word-spacing:0.216000px;}
.ws4c{word-spacing:0.270000px;}
.ws34{word-spacing:0.324000px;}
.ws1f{word-spacing:0.378000px;}
.ws4a{word-spacing:0.397440px;}
.wsbd{word-spacing:0.486000px;}
.ws9b{word-spacing:0.540000px;}
.wsc6{word-spacing:0.594000px;}
.ws81{word-spacing:0.596160px;}
.ws32{word-spacing:0.702000px;}
.ws59{word-spacing:0.728640px;}
.wsfb{word-spacing:0.756000px;}
.ws104{word-spacing:0.810000px;}
.ws18{word-spacing:0.916560px;}
.wse0{word-spacing:0.918000px;}
.ws26{word-spacing:1.026000px;}
.ws138{word-spacing:1.059840px;}
.ws16{word-spacing:1.061280px;}
.ws21{word-spacing:1.080000px;}
.wse4{word-spacing:1.126080px;}
.ws72{word-spacing:1.134000px;}
.ws49{word-spacing:1.192320px;}
.ws25{word-spacing:1.242000px;}
.ws129{word-spacing:1.252800px;}
.ws20{word-spacing:1.296000px;}
.ws85{word-spacing:1.324800px;}
.ws7e{word-spacing:1.457280px;}
.ws24{word-spacing:1.458000px;}
.ws53{word-spacing:1.512000px;}
.ws1c{word-spacing:1.532160px;}
.ws1d{word-spacing:1.566000px;}
.wsce{word-spacing:1.589760px;}
.wsd0{word-spacing:1.620000px;}
.ws116{word-spacing:1.674000px;}
.wsd8{word-spacing:1.722240px;}
.ws105{word-spacing:1.728000px;}
.ws69{word-spacing:1.836000px;}
.ws17{word-spacing:1.881360px;}
.ws12d{word-spacing:1.920960px;}
.ws94{word-spacing:1.944000px;}
.wscf{word-spacing:2.053440px;}
.ws109{word-spacing:2.160000px;}
.ws93{word-spacing:2.185920px;}
.ws71{word-spacing:2.214000px;}
.ws33{word-spacing:2.430000px;}
.ws54{word-spacing:2.484000px;}
.ws22{word-spacing:2.538000px;}
.wsd3{word-spacing:2.700000px;}
.wsaf{word-spacing:2.782080px;}
.ws23{word-spacing:2.862000px;}
.wsa3{word-spacing:2.914560px;}
.ws106{word-spacing:2.970000px;}
.ws4b{word-spacing:3.132000px;}
.wsb1{word-spacing:3.294000px;}
.ws12c{word-spacing:3.312000px;}
.wse8{word-spacing:3.402000px;}
.ws92{word-spacing:3.510720px;}
.wsab{word-spacing:3.643200px;}
.ws70{word-spacing:3.672000px;}
.ws107{word-spacing:3.780000px;}
.ws108{word-spacing:3.888000px;}
.ws9d{word-spacing:3.996000px;}
.wsf1{word-spacing:4.040640px;}
.ws6e{word-spacing:4.104000px;}
.ws1e{word-spacing:4.158000px;}
.ws55{word-spacing:4.239360px;}
.wsf4{word-spacing:4.320000px;}
.wsd7{word-spacing:4.371840px;}
.wsd1{word-spacing:4.374000px;}
.ws2e{word-spacing:4.590000px;}
.ws2d{word-spacing:4.644000px;}
.ws6f{word-spacing:4.698000px;}
.ws102{word-spacing:4.860000px;}
.ws5a{word-spacing:4.901760px;}
.wsdc{word-spacing:5.022000px;}
.ws5b{word-spacing:5.034240px;}
.ws91{word-spacing:5.299200px;}
.ws103{word-spacing:5.346000px;}
.wse5{word-spacing:5.431680px;}
.wsb9{word-spacing:5.454000px;}
.ws120{word-spacing:5.497920px;}
.wsbb{word-spacing:5.562000px;}
.wsda{word-spacing:5.630400px;}
.ws6c{word-spacing:5.724000px;}
.ws7b{word-spacing:5.762880px;}
.ws30{word-spacing:5.994000px;}
.ws31{word-spacing:6.048000px;}
.wsb0{word-spacing:6.156000px;}
.ws6a{word-spacing:6.264000px;}
.wsa4{word-spacing:6.359040px;}
.wsaa{word-spacing:6.491520px;}
.ws6d{word-spacing:6.534000px;}
.ws6b{word-spacing:6.858000px;}
.wsb2{word-spacing:7.020000px;}
.wsc1{word-spacing:7.087680px;}
.wsa5{word-spacing:7.220160px;}
.ws35{word-spacing:7.506000px;}
.ws9e{word-spacing:7.722000px;}
.ws100{word-spacing:7.816320px;}
.wsfe{word-spacing:7.938000px;}
.wsad{word-spacing:7.948800px;}
.ws3f{word-spacing:7.992000px;}
.ws115{word-spacing:8.100000px;}
.ws8b{word-spacing:8.208000px;}
.ws3c{word-spacing:8.262000px;}
.ws3e{word-spacing:8.316000px;}
.ws87{word-spacing:8.346240px;}
.ws98{word-spacing:8.424000px;}
.ws88{word-spacing:8.544960px;}
.wsfd{word-spacing:8.640000px;}
.ws80{word-spacing:8.677440px;}
.ws39{word-spacing:8.910000px;}
.ws8a{word-spacing:8.964000px;}
.ws99{word-spacing:9.018000px;}
.ws12b{word-spacing:9.074880px;}
.wse2{word-spacing:9.180000px;}
.wsc5{word-spacing:9.273600px;}
.ws50{word-spacing:9.342000px;}
.ws5e{word-spacing:9.406080px;}
.ws3b{word-spacing:9.612000px;}
.ws36{word-spacing:9.666000px;}
.ws110{word-spacing:9.774000px;}
.wse6{word-spacing:9.882000px;}
.ws8f{word-spacing:9.936000px;}
.ws19{word-spacing:10.054800px;}
.ws90{word-spacing:10.068480px;}
.ws10d{word-spacing:10.098000px;}
.wsf3{word-spacing:10.134720px;}
.wsb3{word-spacing:10.476000px;}
.ws114{word-spacing:10.584000px;}
.wsb5{word-spacing:10.664640px;}
.wsca{word-spacing:10.797120px;}
.ws3a{word-spacing:11.124000px;}
.wsec{word-spacing:11.178000px;}
.ws11f{word-spacing:11.194560px;}
.wsbc{word-spacing:11.340000px;}
.ws7f{word-spacing:11.393280px;}
.ws7d{word-spacing:11.525760px;}
.ws13e{word-spacing:11.856960px;}
.ws10f{word-spacing:11.934000px;}
.wsdd{word-spacing:12.042000px;}
.wsde{word-spacing:12.096000px;}
.wsc4{word-spacing:12.121920px;}
.ws83{word-spacing:12.254400px;}
.ws133{word-spacing:12.585600px;}
.wseb{word-spacing:12.744000px;}
.wsa7{word-spacing:12.850560px;}
.wsae{word-spacing:12.983040px;}
.wsfc{word-spacing:13.500000px;}
.wscb{word-spacing:13.579200px;}
.ws82{word-spacing:13.711680px;}
.wsea{word-spacing:13.716000px;}
.ws37{word-spacing:13.986000px;}
.ws41{word-spacing:14.202000px;}
.wsd9{word-spacing:14.307840px;}
.wsa8{word-spacing:14.440320px;}
.ws38{word-spacing:14.634000px;}
.ws40{word-spacing:14.796000px;}
.ws67{word-spacing:14.904000px;}
.wsf6{word-spacing:15.036480px;}
.wsf7{word-spacing:15.168960px;}
.ws10c{word-spacing:15.498000px;}
.ws64{word-spacing:15.660000px;}
.ws10a{word-spacing:15.698880px;}
.ws113{word-spacing:15.831360px;}
.ws66{word-spacing:16.254000px;}
.wsee{word-spacing:16.362000px;}
.wsb8{word-spacing:16.427520px;}
.wsf9{word-spacing:16.560000px;}
.ws111{word-spacing:17.156160px;}
.ws56{word-spacing:17.288640px;}
.wsbe{word-spacing:17.884800px;}
.wscd{word-spacing:18.017280px;}
.wsb6{word-spacing:18.613440px;}
.wsf2{word-spacing:18.745920px;}
.ws10e{word-spacing:19.224000px;}
.wsc8{word-spacing:19.342080px;}
.ws11a{word-spacing:19.474560px;}
.ws1b{word-spacing:20.013840px;}
.ws11c{word-spacing:20.070720px;}
.ws13b{word-spacing:20.203200px;}
.ws126{word-spacing:20.799360px;}
.ws125{word-spacing:20.931840px;}
.wsd2{word-spacing:21.384000px;}
.wsa6{word-spacing:21.461760px;}
.wsf0{word-spacing:22.190400px;}
.ws8d{word-spacing:22.322880px;}
.wsc2{word-spacing:22.626000px;}
.wsc3{word-spacing:23.436000px;}
.ws117{word-spacing:23.780160px;}
.wsf5{word-spacing:24.508800px;}
.ws12e{word-spacing:25.104960px;}
.ws8e{word-spacing:25.237440px;}
.wsc9{word-spacing:25.833600px;}
.wscc{word-spacing:25.966080px;}
.ws5f{word-spacing:26.628480px;}
.ws8c{word-spacing:27.224640px;}
.ws131{word-spacing:27.357120px;}
.wsbf{word-spacing:28.681920px;}
.wsc0{word-spacing:28.814400px;}
.ws124{word-spacing:29.410560px;}
.ws137{word-spacing:29.543040px;}
.ws139{word-spacing:30.139200px;}
.ws13a{word-spacing:30.271680px;}
.ws123{word-spacing:30.867840px;}
.ws140{word-spacing:32.060160px;}
.ws11b{word-spacing:32.258880px;}
.ws12f{word-spacing:32.391360px;}
.ws132{word-spacing:33.848640px;}
.ws119{word-spacing:34.444800px;}
.ws128{word-spacing:34.577280px;}
.ws134{word-spacing:35.305920px;}
.ws13c{word-spacing:36.034560px;}
.ws135{word-spacing:44.645760px;}
._c{margin-left:-5.048064px;}
._6{margin-left:-3.840048px;}
._1{margin-left:-2.455416px;}
._0{margin-left:-1.172232px;}
._2{width:1.000512px;}
._3{width:2.113128px;}
._7{width:3.909888px;}
._4{width:4.936464px;}
._b{width:7.074360px;}
._a{width:8.882568px;}
._9{width:10.278720px;}
._12{width:11.505024px;}
._e{width:12.585600px;}
._10{width:14.109120px;}
._8{width:15.352344px;}
._15{width:19.300608px;}
._f{width:20.998080px;}
._d{width:24.049656px;}
._14{width:28.585656px;}
._11{width:30.028176px;}
._13{width:33.039936px;}
._5{width:242.082000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:45.363060px;}
.y2{bottom:59.220000px;}
.y121{bottom:96.822000px;}
.y179{bottom:96.826500px;}
.y2d{bottom:96.831000px;}
.ya9{bottom:96.835500px;}
.yff{bottom:96.840000px;}
.y83{bottom:101.340000px;}
.y22d{bottom:101.720880px;}
.y219{bottom:101.867040px;}
.y82{bottom:112.302000px;}
.yfe{bottom:112.306500px;}
.y178{bottom:112.311000px;}
.y2c{bottom:112.315500px;}
.y13b{bottom:112.320000px;}
.ya8{bottom:116.820000px;}
.y22c{bottom:120.615840px;}
.y247{bottom:120.649680px;}
.y274{bottom:120.675600px;}
.y218{bottom:120.762000px;}
.y81{bottom:127.786500px;}
.yfd{bottom:127.791000px;}
.ye4{bottom:127.795500px;}
.ya7{bottom:127.800000px;}
.y2b{bottom:132.300000px;}
.y25f{bottom:139.500000px;}
.y22b{bottom:139.510800px;}
.y1ff{bottom:139.531680px;}
.y246{bottom:139.544640px;}
.y273{bottom:139.570560px;}
.y217{bottom:139.656960px;}
.y80{bottom:143.446500px;}
.yfc{bottom:143.451000px;}
.y58{bottom:143.455500px;}
.y2a{bottom:143.460000px;}
.ya6{bottom:147.960000px;}
.y22a{bottom:158.587920px;}
.y1fe{bottom:158.608800px;}
.y245{bottom:158.621760px;}
.y25e{bottom:158.634720px;}
.y272{bottom:158.647680px;}
.y216{bottom:158.734080px;}
.y15d{bottom:158.922000px;}
.y188{bottom:158.926500px;}
.y7f{bottom:158.931000px;}
.yfb{bottom:158.935500px;}
.y13a{bottom:158.940000px;}
.y57{bottom:163.440000px;}
.y29{bottom:164.695500px;}
.yc7{bottom:174.397500px;}
.y15c{bottom:174.406500px;}
.y187{bottom:174.411000px;}
.y7e{bottom:174.415500px;}
.y139{bottom:174.420000px;}
.y229{bottom:177.482880px;}
.y1fd{bottom:177.503760px;}
.y244{bottom:177.516720px;}
.y25d{bottom:177.529680px;}
.y271{bottom:177.542640px;}
.y215{bottom:177.629040px;}
.y56{bottom:178.920000px;}
.y28{bottom:181.260000px;}
.y55{bottom:189.882000px;}
.y15b{bottom:189.891000px;}
.y120{bottom:189.895500px;}
.y110{bottom:189.900000px;}
.y7d{bottom:194.400000px;}
.y228{bottom:196.560000px;}
.y1fc{bottom:196.580880px;}
.y243{bottom:196.593840px;}
.y25c{bottom:196.606800px;}
.y1e3{bottom:196.607520px;}
.y270{bottom:196.619760px;}
.y214{bottom:196.706160px;}
.y27{bottom:197.635500px;}
.y54{bottom:205.542000px;}
.ye3{bottom:205.551000px;}
.y11f{bottom:205.555500px;}
.y7c{bottom:205.560000px;}
.ya5{bottom:210.060000px;}
.y26{bottom:214.200000px;}
.y227{bottom:215.472960px;}
.y1fb{bottom:215.475840px;}
.y242{bottom:215.488800px;}
.y25b{bottom:215.501760px;}
.y1e2{bottom:215.502480px;}
.y26f{bottom:215.514720px;}
.y213{bottom:215.601120px;}
.y53{bottom:221.026500px;}
.y7b{bottom:221.035500px;}
.y138{bottom:221.040000px;}
.ya4{bottom:223.380000px;}
.yfa{bottom:225.540000px;}
.y25{bottom:230.575500px;}
.y226{bottom:234.550080px;}
.y1fa{bottom:234.552960px;}
.y241{bottom:234.565920px;}
.y1b6{bottom:234.575280px;}
.y25a{bottom:234.578880px;}
.y1e1{bottom:234.579600px;}
.y26e{bottom:234.591840px;}
.y212{bottom:234.678240px;}
.yf9{bottom:236.488500px;}
.y52{bottom:236.511000px;}
.ye2{bottom:236.515500px;}
.y1a1{bottom:236.520000px;}
.y137{bottom:241.020000px;}
.ya3{bottom:241.200000px;}
.y24{bottom:247.140000px;}
.y172{bottom:251.946000px;}
.yf8{bottom:251.973000px;}
.y136{bottom:251.977500px;}
.y186{bottom:251.991000px;}
.y51{bottom:251.995500px;}
.y1cb{bottom:252.000000px;}
.y1a8{bottom:253.445040px;}
.y1f9{bottom:253.447920px;}
.y240{bottom:253.460880px;}
.y1b5{bottom:253.470240px;}
.y259{bottom:253.473840px;}
.y1e0{bottom:253.474560px;}
.y26d{bottom:253.486800px;}
.y155{bottom:253.497600px;}
.y1c8{bottom:253.502640px;}
.y211{bottom:253.573200px;}
.ye1{bottom:256.500000px;}
.ya2{bottom:259.020000px;}
.y23{bottom:263.515500px;}
.y171{bottom:267.430500px;}
.yf7{bottom:267.457500px;}
.y135{bottom:267.462000px;}
.y10f{bottom:267.475500px;}
.y7a{bottom:267.480000px;}
.y50{bottom:271.980000px;}
.y225{bottom:272.340000px;}
.y1a0{bottom:272.342880px;}
.y23f{bottom:272.355840px;}
.y1a7{bottom:272.360880px;}
.y1b4{bottom:272.365200px;}
.y258{bottom:272.368800px;}
.y1df{bottom:272.369520px;}
.y26c{bottom:272.381760px;}
.y154{bottom:272.392560px;}
.y1c7{bottom:272.397600px;}
.y210{bottom:272.468160px;}
.ya1{bottom:281.340000px;}
.y170{bottom:283.090500px;}
.yf6{bottom:283.117500px;}
.y134{bottom:283.122000px;}
.y177{bottom:283.126500px;}
.y10e{bottom:283.135500px;}
.y4f{bottom:283.140000px;}
.y79{bottom:287.640000px;}
.y22{bottom:288.895500px;}
.y1c6{bottom:291.110400px;}
.y1f8{bottom:291.425040px;}
.y19f{bottom:291.427920px;}
.y23e{bottom:291.432960px;}
.y1a6{bottom:291.438000px;}
.y1b3{bottom:291.442320px;}
.y257{bottom:291.445920px;}
.y1de{bottom:291.446640px;}
.y26b{bottom:291.458880px;}
.y153{bottom:291.469680px;}
.ye0{bottom:291.478320px;}
.y20f{bottom:291.545280px;}
.y224{bottom:291.550170px;}
.ya0{bottom:292.320000px;}
.y16f{bottom:298.575000px;}
.yf5{bottom:298.602000px;}
.y133{bottom:298.606500px;}
.y15a{bottom:298.611000px;}
.y78{bottom:298.615500px;}
.y1ca{bottom:298.620000px;}
.yc6{bottom:303.120000px;}
.y1c5{bottom:310.005360px;}
.y19e{bottom:310.322880px;}
.y23d{bottom:310.327920px;}
.y1a5{bottom:310.332960px;}
.y1b2{bottom:310.337280px;}
.y256{bottom:310.340880px;}
.y1dd{bottom:310.341600px;}
.y1f7{bottom:310.344480px;}
.y26a{bottom:310.353840px;}
.y152{bottom:310.364640px;}
.ydf{bottom:310.373280px;}
.y20e{bottom:310.440240px;}
.y223{bottom:310.445130px;}
.y9f{bottom:312.480000px;}
.y16e{bottom:314.059500px;}
.yf4{bottom:314.086500px;}
.y132{bottom:314.091000px;}
.yc5{bottom:314.095500px;}
.y77{bottom:314.100000px;}
.y21{bottom:314.451000px;}
.y9e{bottom:323.460000px;}
.y4e{bottom:324.732960px;}
.y23c{bottom:329.405040px;}
.y19d{bottom:329.410080px;}
.y1b1{bottom:329.414400px;}
.y1c9{bottom:329.418000px;}
.y1dc{bottom:329.418720px;}
.y1f6{bottom:329.421600px;}
.y269{bottom:329.430960px;}
.y151{bottom:329.441760px;}
.y1c4{bottom:329.446800px;}
.yde{bottom:329.450400px;}
.y20d{bottom:329.517360px;}
.y222{bottom:329.522250px;}
.y16d{bottom:329.544000px;}
.yf3{bottom:329.571000px;}
.y131{bottom:329.575500px;}
.y76{bottom:329.580000px;}
.y20{bottom:331.015500px;}
.y159{bottom:334.080000px;}
.y4d{bottom:343.627920px;}
.y16c{bottom:345.204000px;}
.yf2{bottom:345.231000px;}
.y130{bottom:345.235500px;}
.yc4{bottom:345.240000px;}
.y1f{bottom:347.580000px;}
.y23b{bottom:348.300000px;}
.y19c{bottom:348.305040px;}
.y75{bottom:348.307920px;}
.y1b0{bottom:348.309360px;}
.y9d{bottom:348.312960px;}
.y1db{bottom:348.313680px;}
.y1f5{bottom:348.316560px;}
.y268{bottom:348.325920px;}
.y150{bottom:348.336720px;}
.y1c3{bottom:348.341760px;}
.ydd{bottom:348.345360px;}
.y20c{bottom:348.412320px;}
.y221{bottom:348.417210px;}
.y10d{bottom:349.740000px;}
.y16b{bottom:360.688500px;}
.yf1{bottom:360.715500px;}
.y158{bottom:360.720000px;}
.y4c{bottom:362.705040px;}
.y1e{bottom:363.955500px;}
.y10c{bottom:365.220000px;}
.yc3{bottom:365.940000px;}
.y1af{bottom:366.856560px;}
.y74{bottom:367.202880px;}
.y9c{bottom:367.207920px;}
.y1da{bottom:367.208640px;}
.y23a{bottom:367.210800px;}
.y1f4{bottom:367.211520px;}
.y11e{bottom:367.215840px;}
.y267{bottom:367.220880px;}
.y19b{bottom:367.223760px;}
.y14f{bottom:367.231680px;}
.y1c2{bottom:367.236720px;}
.ydc{bottom:367.240320px;}
.y185{bottom:367.273440px;}
.y20b{bottom:367.307280px;}
.y220{bottom:367.312170px;}
.y16a{bottom:376.173000px;}
.y12f{bottom:376.200000px;}
.yc2{bottom:379.615500px;}
.y1d{bottom:380.520000px;}
.yf0{bottom:380.700000px;}
.y4b{bottom:381.612960px;}
.y1ae{bottom:385.933680px;}
.y9b{bottom:386.285040px;}
.y1d9{bottom:386.285760px;}
.y239{bottom:386.287920px;}
.y1f3{bottom:386.288640px;}
.y11d{bottom:386.292960px;}
.y73{bottom:386.296560px;}
.y266{bottom:386.298000px;}
.y19a{bottom:386.300880px;}
.y14e{bottom:386.308800px;}
.y1c1{bottom:386.313840px;}
.ydb{bottom:386.317440px;}
.y184{bottom:386.350560px;}
.y20a{bottom:386.384400px;}
.y21f{bottom:386.389290px;}
.y169{bottom:391.657500px;}
.y10b{bottom:391.680000px;}
.yc1{bottom:395.275500px;}
.yef{bottom:396.180000px;}
.y1c{bottom:396.895500px;}
.y4a{bottom:400.690080px;}
.y1ad{bottom:404.828640px;}
.y255{bottom:405.180000px;}
.y1d8{bottom:405.180720px;}
.y9a{bottom:405.182880px;}
.y1f2{bottom:405.183600px;}
.y11c{bottom:405.187920px;}
.y72{bottom:405.191520px;}
.y265{bottom:405.192960px;}
.y199{bottom:405.195840px;}
.y12e{bottom:405.200880px;}
.y14d{bottom:405.203760px;}
.y1c0{bottom:405.208800px;}
.yda{bottom:405.212400px;}
.y183{bottom:405.245520px;}
.y209{bottom:405.279360px;}
.y21e{bottom:405.284250px;}
.y168{bottom:407.317500px;}
.yee{bottom:407.340000px;}
.yc0{bottom:410.760000px;}
.y1b{bottom:413.460000px;}
.y49{bottom:419.585040px;}
.y167{bottom:422.802000px;}
.y1d7{bottom:424.257840px;}
.y238{bottom:424.260000px;}
.y1f1{bottom:424.260720px;}
.y11b{bottom:424.265040px;}
.y71{bottom:424.268640px;}
.y143{bottom:424.270080px;}
.y198{bottom:424.272960px;}
.y10a{bottom:424.278000px;}
.y14c{bottom:424.280880px;}
.y1bf{bottom:424.285920px;}
.yd9{bottom:424.289520px;}
.y99{bottom:424.293840px;}
.y176{bottom:424.298880px;}
.y182{bottom:424.322640px;}
.y254{bottom:424.335600px;}
.y208{bottom:424.356480px;}
.y21d{bottom:424.361370px;}
.ybf{bottom:426.240000px;}
.y1a{bottom:429.835500px;}
.y166{bottom:438.286500px;}
.y48{bottom:438.482880px;}
.y1d6{bottom:443.152800px;}
.y1f0{bottom:443.155680px;}
.y237{bottom:443.160000px;}
.y70{bottom:443.163600px;}
.ybe{bottom:443.165040px;}
.y197{bottom:443.167920px;}
.y109{bottom:443.172960px;}
.y14b{bottom:443.175840px;}
.y1be{bottom:443.180880px;}
.yd8{bottom:443.184480px;}
.y98{bottom:443.188800px;}
.y11a{bottom:443.193840px;}
.y181{bottom:443.217600px;}
.y253{bottom:443.230560px;}
.y207{bottom:443.251440px;}
.y21c{bottom:443.256330px;}
.y19{bottom:446.400000px;}
.y165{bottom:453.771000px;}
.y47{bottom:457.585920px;}
.y1ef{bottom:461.702880px;}
.y1d5{bottom:461.766240px;}
.y6f{bottom:462.058560px;}
.y142{bottom:462.062880px;}
.y108{bottom:462.067920px;}
.y14a{bottom:462.070800px;}
.y1bd{bottom:462.075840px;}
.yd7{bottom:462.079440px;}
.ybd{bottom:462.080880px;}
.y97{bottom:462.083760px;}
.y119{bottom:462.088800px;}
.y1ac{bottom:462.091680px;}
.y264{bottom:462.104640px;}
.y180{bottom:462.112560px;}
.y252{bottom:462.125520px;}
.y206{bottom:462.146400px;}
.y21b{bottom:462.151290px;}
.y18{bottom:462.775500px;}
.y164{bottom:469.431000px;}
.y46{bottom:476.480880px;}
.y17{bottom:479.340000px;}
.y1ee{bottom:480.864090px;}
.y6e{bottom:481.135680px;}
.y107{bottom:481.145040px;}
.y149{bottom:481.147920px;}
.y141{bottom:481.152960px;}
.yd6{bottom:481.156560px;}
.ybc{bottom:481.158000px;}
.y96{bottom:481.160880px;}
.y118{bottom:481.165920px;}
.y1ab{bottom:481.168800px;}
.y1a4{bottom:481.178880px;}
.y196{bottom:481.181760px;}
.y17f{bottom:481.189680px;}
.y251{bottom:481.202640px;}
.y1d4{bottom:481.207680px;}
.y205{bottom:481.223520px;}
.y21a{bottom:481.228410px;}
.y163{bottom:484.915500px;}
.y45{bottom:495.558000px;}
.y16{bottom:496.440000px;}
.y6d{bottom:499.682880px;}
.y236{bottom:500.040000px;}
.y148{bottom:500.042880px;}
.y140{bottom:500.047920px;}
.yd5{bottom:500.051520px;}
.ybb{bottom:500.052960px;}
.y95{bottom:500.055840px;}
.y117{bottom:500.060880px;}
.y1aa{bottom:500.063760px;}
.y106{bottom:500.068800px;}
.y1a3{bottom:500.073840px;}
.y195{bottom:500.076720px;}
.y17e{bottom:500.084640px;}
.y250{bottom:500.097600px;}
.y1d3{bottom:500.102640px;}
.y204{bottom:500.118480px;}
.y1ed{bottom:500.123370px;}
.y162{bottom:504.900000px;}
.y44{bottom:514.452960px;}
.y161{bottom:515.880000px;}
.y15{bottom:516.226500px;}
.y6c{bottom:518.760000px;}
.y13f{bottom:519.125040px;}
.yd4{bottom:519.128640px;}
.yba{bottom:519.130080px;}
.y94{bottom:519.132960px;}
.y116{bottom:519.138000px;}
.y1a9{bottom:519.140880px;}
.y105{bottom:519.145920px;}
.y1a2{bottom:519.150960px;}
.y194{bottom:519.153840px;}
.y17d{bottom:519.161760px;}
.y24f{bottom:519.174720px;}
.y1d2{bottom:519.179760px;}
.y203{bottom:519.195600px;}
.y1ec{bottom:519.200490px;}
.y14{bottom:531.711000px;}
.y43{bottom:533.530080px;}
.y6b{bottom:537.671520px;}
.yd3{bottom:538.023600px;}
.yb9{bottom:538.025040px;}
.y93{bottom:538.027920px;}
.y115{bottom:538.032960px;}
.y160{bottom:538.035840px;}
.y104{bottom:538.040880px;}
.y13e{bottom:538.045920px;}
.y193{bottom:538.048800px;}
.y17c{bottom:538.056720px;}
.y24e{bottom:538.069680px;}
.y1d1{bottom:538.074720px;}
.y202{bottom:538.090560px;}
.y1eb{bottom:538.095450px;}
.y13{bottom:547.195500px;}
.y42{bottom:552.425040px;}
.y6a{bottom:556.566480px;}
.yd2{bottom:556.918560px;}
.y235{bottom:556.920000px;}
.y92{bottom:556.922880px;}
.y114{bottom:556.927920px;}
.y15f{bottom:556.930800px;}
.y103{bottom:556.935840px;}
.y13d{bottom:556.940880px;}
.y192{bottom:556.943760px;}
.y17b{bottom:556.951680px;}
.y24d{bottom:556.964640px;}
.y1d0{bottom:556.969680px;}
.y201{bottom:556.985520px;}
.y1ea{bottom:556.990410px;}
.y12{bottom:562.680000px;}
.y41{bottom:571.320000px;}
.yd1{bottom:575.995680px;}
.yed{bottom:576.005040px;}
.y69{bottom:576.007920px;}
.y102{bottom:576.012960px;}
.y91{bottom:576.018000px;}
.yb8{bottom:576.020880px;}
.y157{bottom:576.025920px;}
.y17a{bottom:576.028800px;}
.y234{bottom:576.036720px;}
.y24c{bottom:576.041760px;}
.y1cf{bottom:576.046800px;}
.y200{bottom:576.062640px;}
.y1e9{bottom:576.067530px;}
.y11{bottom:578.340000px;}
.y10{bottom:593.820000px;}
.yd0{bottom:594.542880px;}
.y68{bottom:594.902880px;}
.y101{bottom:594.907920px;}
.y90{bottom:594.912960px;}
.yb7{bottom:594.915840px;}
.y156{bottom:594.920880px;}
.y113{bottom:594.923760px;}
.y233{bottom:594.931680px;}
.y24b{bottom:594.936720px;}
.y1ce{bottom:594.941760px;}
.y12d{bottom:594.957600px;}
.y1e8{bottom:594.962490px;}
.y40{bottom:595.800000px;}
.yf{bottom:609.295500px;}
.y3f{bottom:612.900000px;}
.ycf{bottom:613.620000px;}
.y100{bottom:613.985040px;}
.y8f{bottom:613.990080px;}
.yb6{bottom:613.992960px;}
.yec{bottom:613.998000px;}
.y112{bottom:614.000880px;}
.y232{bottom:614.008800px;}
.y24a{bottom:614.013840px;}
.y1cd{bottom:614.018880px;}
.y67{bottom:614.029680px;}
.y12c{bottom:614.034720px;}
.y1e7{bottom:614.039610px;}
.ye{bottom:624.780000px;}
.yce{bottom:632.531520px;}
.y8e{bottom:632.885040px;}
.yb5{bottom:632.887920px;}
.yeb{bottom:632.892960px;}
.y111{bottom:632.895840px;}
.y231{bottom:632.903760px;}
.y249{bottom:632.908800px;}
.y1cc{bottom:632.913840px;}
.y66{bottom:632.924640px;}
.y12b{bottom:632.929680px;}
.y1e6{bottom:632.934570px;}
.y3e{bottom:640.246350px;}
.yd{bottom:640.440000px;}
.yb4{bottom:651.782880px;}
.yea{bottom:651.787920px;}
.ycd{bottom:651.790800px;}
.y13c{bottom:651.795840px;}
.y230{bottom:651.798720px;}
.y8d{bottom:651.803760px;}
.y1bc{bottom:651.808800px;}
.y65{bottom:651.819600px;}
.y12a{bottom:651.824640px;}
.y1e5{bottom:651.829530px;}
.yc{bottom:656.639850px;}
.y3d{bottom:656.810850px;}
.y263{bottom:670.860000px;}
.ye9{bottom:670.865040px;}
.ycc{bottom:670.867920px;}
.yb3{bottom:670.872960px;}
.y15e{bottom:670.875840px;}
.y8c{bottom:670.880880px;}
.y191{bottom:670.881600px;}
.y1bb{bottom:670.885920px;}
.y64{bottom:670.896720px;}
.y129{bottom:670.901760px;}
.y1e4{bottom:670.906650px;}
.y3c{bottom:673.375350px;}
.y3b{bottom:689.750850px;}
.ycb{bottom:689.762880px;}
.yb2{bottom:689.767920px;}
.ye8{bottom:689.770800px;}
.y8b{bottom:689.775840px;}
.y190{bottom:689.776560px;}
.y1ba{bottom:689.780880px;}
.y175{bottom:689.783760px;}
.y262{bottom:689.788800px;}
.y63{bottom:689.791680px;}
.y128{bottom:689.796720px;}
.y147{bottom:689.801610px;}
.yb{bottom:690.120000px;}
.y3a{bottom:706.315350px;}
.yb1{bottom:708.845040px;}
.yca{bottom:708.847920px;}
.y8a{bottom:708.852960px;}
.y18f{bottom:708.853680px;}
.y1b9{bottom:708.858000px;}
.y174{bottom:708.860880px;}
.y261{bottom:708.865920px;}
.y62{bottom:708.868800px;}
.y127{bottom:708.873840px;}
.y146{bottom:708.878730px;}
.ya{bottom:715.659120px;}
.yc9{bottom:727.742880px;}
.y89{bottom:727.747920px;}
.y18e{bottom:727.748640px;}
.y1b8{bottom:727.752960px;}
.y173{bottom:727.755840px;}
.yb0{bottom:727.760880px;}
.y61{bottom:727.763760px;}
.y126{bottom:727.768800px;}
.y145{bottom:727.773690px;}
.y39{bottom:731.695350px;}
.y9{bottom:745.009560px;}
.y22f{bottom:746.820000px;}
.y88{bottom:746.825040px;}
.y18d{bottom:746.825760px;}
.y1b7{bottom:746.830080px;}
.ye7{bottom:746.832960px;}
.yaf{bottom:746.838000px;}
.y60{bottom:746.840880px;}
.y125{bottom:746.845920px;}
.y144{bottom:746.850810px;}
.y38{bottom:748.259850px;}
.y37{bottom:764.824350px;}
.y248{bottom:765.720000px;}
.y18c{bottom:765.720720px;}
.yc8{bottom:765.725040px;}
.ye6{bottom:765.727920px;}
.yae{bottom:765.732960px;}
.y5f{bottom:765.735840px;}
.y124{bottom:765.740880px;}
.y87{bottom:765.745770px;}
.y8{bottom:774.360000px;}
.y36{bottom:781.199850px;}
.y18b{bottom:784.267920px;}
.ye5{bottom:784.622880px;}
.yad{bottom:784.627920px;}
.y5e{bottom:784.630800px;}
.y123{bottom:784.635840px;}
.y86{bottom:784.640730px;}
.y7{bottom:800.819850px;}
.y18a{bottom:803.345040px;}
.yac{bottom:803.705040px;}
.y5d{bottom:803.707920px;}
.y122{bottom:803.712960px;}
.y85{bottom:803.717850px;}
.y35{bottom:806.579850px;}
.y6{bottom:820.059120px;}
.y189{bottom:822.248490px;}
.y22e{bottom:822.600000px;}
.y5c{bottom:822.602880px;}
.yab{bottom:822.607920px;}
.y84{bottom:822.612810px;}
.y34{bottom:832.135350px;}
.y260{bottom:841.680000px;}
.yaa{bottom:841.685040px;}
.y5b{bottom:841.689930px;}
.y33{bottom:848.699850px;}
.y5{bottom:849.409560px;}
.y5a{bottom:860.584890px;}
.y32{bottom:865.075350px;}
.y4{bottom:878.760000px;}
.y59{bottom:879.479850px;}
.y31{bottom:881.639850px;}
.y30{bottom:898.563600px;}
.y2f{bottom:917.458560px;}
.y2e{bottom:936.900000px;}
.y1{bottom:940.319850px;}
.h35{height:29.381836px;}
.hd{height:31.587891px;}
.h6{height:37.415039px;}
.h21{height:37.494141px;}
.h3{height:42.327773px;}
.h32{height:44.893125px;}
.he{height:45.895781px;}
.h24{height:45.992812px;}
.h2{height:47.381836px;}
.ha{height:47.399836px;}
.h16{height:47.417836px;}
.hb{height:47.435836px;}
.h33{height:58.069879px;}
.h34{height:58.081399px;}
.h31{height:58.090039px;}
.h37{height:58.102159px;}
.h9{height:58.121719px;}
.h14{height:58.833281px;}
.h26{height:60.171553px;}
.h13{height:60.203233px;}
.h38{height:60.223393px;}
.h2c{height:60.234913px;}
.h28{height:60.235513px;}
.h2d{height:60.246433px;}
.h30{height:60.260233px;}
.h19{height:60.266593px;}
.h2f{height:60.275233px;}
.h29{height:60.278713px;}
.h23{height:60.286753px;}
.hf{height:60.298273px;}
.h36{height:60.304033px;}
.h17{height:60.306913px;}
.h2b{height:60.315553px;}
.h1c{height:60.318433px;}
.h1e{height:60.319033px;}
.h18{height:60.329953px;}
.h15{height:60.335713px;}
.h22{height:60.337993px;}
.h27{height:60.338593px;}
.h11{height:60.350113px;}
.h2e{height:60.350713px;}
.h20{height:60.358753px;}
.h2a{height:60.361633px;}
.h12{height:60.362233px;}
.h25{height:60.369673px;}
.h1b{height:60.370273px;}
.h1f{height:60.381193px;}
.h1a{height:60.381793px;}
.h10{height:60.390433px;}
.h1d{height:60.402553px;}
.hc{height:63.175781px;}
.h4{height:66.349336px;}
.h8{height:73.915664px;}
.h5{height:74.223233px;}
.h7{height:99.856958px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.760000px;}
.x3{left:117.000000px;}
.x6{left:122.762160px;}
.x4{left:127.800000px;}
.x7{left:138.232080px;}
.x5{left:380.700000px;}
.x2{left:547.394940px;}
@media print{
.v6{vertical-align:-24.320000pt;}
.v4{vertical-align:-21.120000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.027840pt;}
.v5{vertical-align:24.227840pt;}
.v1{vertical-align:26.953707pt;}
.ls73{letter-spacing:-2.296320pt;}
.ls18{letter-spacing:-2.256000pt;}
.ls20{letter-spacing:-2.112000pt;}
.ls1e{letter-spacing:-2.064000pt;}
.ls5c{letter-spacing:-2.060800pt;}
.ls52{letter-spacing:-1.943040pt;}
.lsf{letter-spacing:-1.707520pt;}
.ls7{letter-spacing:-1.672320pt;}
.ls30{letter-spacing:-1.584000pt;}
.ls1f{letter-spacing:-1.536000pt;}
.ls45{letter-spacing:-1.530880pt;}
.ls21{letter-spacing:-1.488000pt;}
.ls2e{letter-spacing:-1.472000pt;}
.lsd{letter-spacing:-1.447040pt;}
.ls12{letter-spacing:-1.440000pt;}
.ls56{letter-spacing:-1.413120pt;}
.ls10{letter-spacing:-1.392000pt;}
.lsc{letter-spacing:-1.361920pt;}
.ls63{letter-spacing:-1.354240pt;}
.ls31{letter-spacing:-1.344000pt;}
.ls13{letter-spacing:-1.296000pt;}
.ls35{letter-spacing:-1.295360pt;}
.lse{letter-spacing:-1.276800pt;}
.ls16{letter-spacing:-1.248000pt;}
.ls43{letter-spacing:-1.236480pt;}
.lsb{letter-spacing:-1.191680pt;}
.ls34{letter-spacing:-1.177600pt;}
.ls14{letter-spacing:-1.152000pt;}
.ls78{letter-spacing:-1.113600pt;}
.ls15{letter-spacing:-1.104000pt;}
.ls2d{letter-spacing:-1.059840pt;}
.ls5{letter-spacing:-1.029120pt;}
.ls2f{letter-spacing:-1.008000pt;}
.ls44{letter-spacing:-1.000960pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.943360pt;}
.ls81{letter-spacing:-0.942080pt;}
.lsa{letter-spacing:-0.936320pt;}
.ls32{letter-spacing:-0.912000pt;}
.ls33{letter-spacing:-0.864000pt;}
.ls59{letter-spacing:-0.816000pt;}
.ls8{letter-spacing:-0.814720pt;}
.ls17{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.680960pt;}
.ls6c{letter-spacing:-0.672000pt;}
.ls36{letter-spacing:-0.647680pt;}
.ls6a{letter-spacing:-0.529920pt;}
.ls53{letter-spacing:-0.528000pt;}
.ls54{letter-spacing:-0.480000pt;}
.ls46{letter-spacing:-0.432000pt;}
.ls4e{letter-spacing:-0.353280pt;}
.ls37{letter-spacing:-0.336000pt;}
.ls89{letter-spacing:-0.294400pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.144000pt;}
.ls4d{letter-spacing:0.172800pt;}
.ls4b{letter-spacing:0.176000pt;}
.ls26{letter-spacing:0.192000pt;}
.ls51{letter-spacing:0.264000pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls4c{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.336000pt;}
.ls42{letter-spacing:0.384000pt;}
.ls61{letter-spacing:0.524032pt;}
.ls62{letter-spacing:0.647680pt;}
.ls40{letter-spacing:0.816000pt;}
.ls69{letter-spacing:0.830208pt;}
.ls5b{letter-spacing:1.130496pt;}
.ls75{letter-spacing:1.295360pt;}
.ls55{letter-spacing:1.324800pt;}
.ls85{letter-spacing:1.401344pt;}
.ls28{letter-spacing:1.440000pt;}
.ls79{letter-spacing:1.878272pt;}
.ls60{letter-spacing:1.943040pt;}
.ls2c{letter-spacing:2.064000pt;}
.ls5e{letter-spacing:2.508288pt;}
.ls5f{letter-spacing:2.531840pt;}
.ls68{letter-spacing:2.626048pt;}
.ls49{letter-spacing:2.736000pt;}
.ls6b{letter-spacing:3.179520pt;}
.ls41{letter-spacing:3.360000pt;}
.ls3d{letter-spacing:3.520000pt;}
.ls71{letter-spacing:3.827200pt;}
.ls2b{letter-spacing:3.984000pt;}
.ls6e{letter-spacing:4.474880pt;}
.ls87{letter-spacing:4.610304pt;}
.ls48{letter-spacing:4.656000pt;}
.ls88{letter-spacing:5.122560pt;}
.ls29{letter-spacing:5.280000pt;}
.ls4a{letter-spacing:5.440000pt;}
.ls72{letter-spacing:5.770240pt;}
.ls67{letter-spacing:5.904000pt;}
.ls3b{letter-spacing:5.920000pt;}
.ls74{letter-spacing:6.400256pt;}
.ls3a{letter-spacing:6.417920pt;}
.ls1{letter-spacing:6.432000pt;}
.ls80{letter-spacing:6.488576pt;}
.ls3c{letter-spacing:6.576000pt;}
.ls3f{letter-spacing:6.720000pt;}
.ls83{letter-spacing:7.065600pt;}
.ls47{letter-spacing:7.136256pt;}
.ls3{letter-spacing:7.200000pt;}
.ls6f{letter-spacing:7.654400pt;}
.ls3e{letter-spacing:7.824000pt;}
.ls66{letter-spacing:8.496000pt;}
.ls86{letter-spacing:8.655360pt;}
.ls5a{letter-spacing:9.014528pt;}
.ls64{letter-spacing:9.120000pt;}
.ls70{letter-spacing:9.597440pt;}
.ls5d{letter-spacing:9.744000pt;}
.ls57{letter-spacing:10.245120pt;}
.ls7b{letter-spacing:10.274560pt;}
.ls7a{letter-spacing:10.280448pt;}
.ls7d{letter-spacing:10.409984pt;}
.ls65{letter-spacing:10.416000pt;}
.ls77{letter-spacing:10.892800pt;}
.ls58{letter-spacing:11.040000pt;}
.ls76{letter-spacing:11.540480pt;}
.ls6d{letter-spacing:12.188160pt;}
.ls25{letter-spacing:14.154752pt;}
.ls27{letter-spacing:14.256000pt;}
.ls84{letter-spacing:14.720000pt;}
.ls50{letter-spacing:18.720000pt;}
.ls4f{letter-spacing:19.344000pt;}
.ls7f{letter-spacing:25.612800pt;}
.ls7c{letter-spacing:27.496960pt;}
.ls82{letter-spacing:30.364416pt;}
.ls7e{letter-spacing:38.578176pt;}
.ls2{letter-spacing:47.520000pt;}
.ls39{letter-spacing:985.710080pt;}
.ls0{letter-spacing:1002.405760pt;}
.ls24{letter-spacing:1318.558720pt;}
.ws5{word-spacing:-19.237120pt;}
.ws2{word-spacing:-18.300800pt;}
.ws6{word-spacing:-17.960320pt;}
.ws4{word-spacing:-17.790080pt;}
.ws8{word-spacing:-14.720000pt;}
.ws13d{word-spacing:-14.425600pt;}
.ws130{word-spacing:-14.190080pt;}
.wsd6{word-spacing:-13.719040pt;}
.ws118{word-spacing:-13.660160pt;}
.ws45{word-spacing:-13.542400pt;}
.ws75{word-spacing:-13.424640pt;}
.wsff{word-spacing:-13.365760pt;}
.wsef{word-spacing:-13.306880pt;}
.ws77{word-spacing:-13.189120pt;}
.ws7{word-spacing:-13.012480pt;}
.wsd5{word-spacing:-12.776960pt;}
.ws3{word-spacing:-12.728320pt;}
.wse3{word-spacing:-12.659200pt;}
.ws47{word-spacing:-12.336000pt;}
.wsb4{word-spacing:-12.192000pt;}
.ws78{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws46{word-spacing:-11.904000pt;}
.wsa2{word-spacing:-11.808000pt;}
.ws48{word-spacing:-11.664000pt;}
.ws79{word-spacing:-11.568000pt;}
.wse9{word-spacing:-11.472000pt;}
.ws11d{word-spacing:-11.328000pt;}
.ws10{word-spacing:-11.280000pt;}
.wse{word-spacing:-11.040000pt;}
.ws76{word-spacing:-10.896000pt;}
.wsd{word-spacing:-10.848000pt;}
.wsf{word-spacing:-10.752000pt;}
.ws0{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.704000pt;}
.ws9{word-spacing:-10.608000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws122{word-spacing:-10.512000pt;}
.ws1{word-spacing:-9.776640pt;}
.ws43{word-spacing:-9.552000pt;}
.ws11{word-spacing:-9.408000pt;}
.ws42{word-spacing:-9.360000pt;}
.ws44{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.784000pt;}
.ws13{word-spacing:-8.000000pt;}
.ws62{word-spacing:-3.360000pt;}
.wsa9{word-spacing:-3.297280pt;}
.wsb7{word-spacing:-3.179520pt;}
.ws63{word-spacing:-3.024000pt;}
.ws1a{word-spacing:-2.979200pt;}
.ws61{word-spacing:-2.832000pt;}
.wsd4{word-spacing:-2.736000pt;}
.ws86{word-spacing:-2.649600pt;}
.ws101{word-spacing:-2.544000pt;}
.ws89{word-spacing:-2.531840pt;}
.ws2c{word-spacing:-2.304000pt;}
.wsba{word-spacing:-2.208000pt;}
.wsf8{word-spacing:-2.178560pt;}
.ws4d{word-spacing:-2.160000pt;}
.wsa1{word-spacing:-2.112000pt;}
.ws57{word-spacing:-2.001920pt;}
.wsed{word-spacing:-1.920000pt;}
.ws5d{word-spacing:-1.884160pt;}
.ws10b{word-spacing:-1.872000pt;}
.wse1{word-spacing:-1.776000pt;}
.ws11e{word-spacing:-1.766400pt;}
.ws2f{word-spacing:-1.680000pt;}
.ws4f{word-spacing:-1.632000pt;}
.wsa0{word-spacing:-1.584000pt;}
.ws29{word-spacing:-1.536000pt;}
.ws127{word-spacing:-1.530880pt;}
.ws9f{word-spacing:-1.440000pt;}
.ws58{word-spacing:-1.354240pt;}
.ws28{word-spacing:-1.296000pt;}
.ws51{word-spacing:-1.248000pt;}
.ws5c{word-spacing:-1.236480pt;}
.ws74{word-spacing:-1.200000pt;}
.ws4e{word-spacing:-1.152000pt;}
.wsdf{word-spacing:-1.104000pt;}
.ws2b{word-spacing:-1.056000pt;}
.ws52{word-spacing:-0.960000pt;}
.ws112{word-spacing:-0.942080pt;}
.ws73{word-spacing:-0.912000pt;}
.ws97{word-spacing:-0.816000pt;}
.wsdb{word-spacing:-0.768000pt;}
.ws84{word-spacing:-0.765440pt;}
.ws121{word-spacing:-0.672000pt;}
.wsac{word-spacing:-0.647680pt;}
.wsfa{word-spacing:-0.624000pt;}
.wse7{word-spacing:-0.576000pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws27{word-spacing:-0.384000pt;}
.ws136{word-spacing:-0.353280pt;}
.ws95{word-spacing:-0.336000pt;}
.ws12a{word-spacing:-0.294400pt;}
.ws2a{word-spacing:-0.288000pt;}
.ws13f{word-spacing:-0.235520pt;}
.ws96{word-spacing:-0.192000pt;}
.ws65{word-spacing:-0.144000pt;}
.ws7c{word-spacing:-0.117760pt;}
.ws60{word-spacing:-0.096000pt;}
.ws15{word-spacing:-0.085760pt;}
.ws14{word-spacing:0.000000pt;}
.ws9c{word-spacing:0.048000pt;}
.ws9a{word-spacing:0.096000pt;}
.ws7a{word-spacing:0.117760pt;}
.wsc7{word-spacing:0.144000pt;}
.ws68{word-spacing:0.192000pt;}
.ws4c{word-spacing:0.240000pt;}
.ws34{word-spacing:0.288000pt;}
.ws1f{word-spacing:0.336000pt;}
.ws4a{word-spacing:0.353280pt;}
.wsbd{word-spacing:0.432000pt;}
.ws9b{word-spacing:0.480000pt;}
.wsc6{word-spacing:0.528000pt;}
.ws81{word-spacing:0.529920pt;}
.ws32{word-spacing:0.624000pt;}
.ws59{word-spacing:0.647680pt;}
.wsfb{word-spacing:0.672000pt;}
.ws104{word-spacing:0.720000pt;}
.ws18{word-spacing:0.814720pt;}
.wse0{word-spacing:0.816000pt;}
.ws26{word-spacing:0.912000pt;}
.ws138{word-spacing:0.942080pt;}
.ws16{word-spacing:0.943360pt;}
.ws21{word-spacing:0.960000pt;}
.wse4{word-spacing:1.000960pt;}
.ws72{word-spacing:1.008000pt;}
.ws49{word-spacing:1.059840pt;}
.ws25{word-spacing:1.104000pt;}
.ws129{word-spacing:1.113600pt;}
.ws20{word-spacing:1.152000pt;}
.ws85{word-spacing:1.177600pt;}
.ws7e{word-spacing:1.295360pt;}
.ws24{word-spacing:1.296000pt;}
.ws53{word-spacing:1.344000pt;}
.ws1c{word-spacing:1.361920pt;}
.ws1d{word-spacing:1.392000pt;}
.wsce{word-spacing:1.413120pt;}
.wsd0{word-spacing:1.440000pt;}
.ws116{word-spacing:1.488000pt;}
.wsd8{word-spacing:1.530880pt;}
.ws105{word-spacing:1.536000pt;}
.ws69{word-spacing:1.632000pt;}
.ws17{word-spacing:1.672320pt;}
.ws12d{word-spacing:1.707520pt;}
.ws94{word-spacing:1.728000pt;}
.wscf{word-spacing:1.825280pt;}
.ws109{word-spacing:1.920000pt;}
.ws93{word-spacing:1.943040pt;}
.ws71{word-spacing:1.968000pt;}
.ws33{word-spacing:2.160000pt;}
.ws54{word-spacing:2.208000pt;}
.ws22{word-spacing:2.256000pt;}
.wsd3{word-spacing:2.400000pt;}
.wsaf{word-spacing:2.472960pt;}
.ws23{word-spacing:2.544000pt;}
.wsa3{word-spacing:2.590720pt;}
.ws106{word-spacing:2.640000pt;}
.ws4b{word-spacing:2.784000pt;}
.wsb1{word-spacing:2.928000pt;}
.ws12c{word-spacing:2.944000pt;}
.wse8{word-spacing:3.024000pt;}
.ws92{word-spacing:3.120640pt;}
.wsab{word-spacing:3.238400pt;}
.ws70{word-spacing:3.264000pt;}
.ws107{word-spacing:3.360000pt;}
.ws108{word-spacing:3.456000pt;}
.ws9d{word-spacing:3.552000pt;}
.wsf1{word-spacing:3.591680pt;}
.ws6e{word-spacing:3.648000pt;}
.ws1e{word-spacing:3.696000pt;}
.ws55{word-spacing:3.768320pt;}
.wsf4{word-spacing:3.840000pt;}
.wsd7{word-spacing:3.886080pt;}
.wsd1{word-spacing:3.888000pt;}
.ws2e{word-spacing:4.080000pt;}
.ws2d{word-spacing:4.128000pt;}
.ws6f{word-spacing:4.176000pt;}
.ws102{word-spacing:4.320000pt;}
.ws5a{word-spacing:4.357120pt;}
.wsdc{word-spacing:4.464000pt;}
.ws5b{word-spacing:4.474880pt;}
.ws91{word-spacing:4.710400pt;}
.ws103{word-spacing:4.752000pt;}
.wse5{word-spacing:4.828160pt;}
.wsb9{word-spacing:4.848000pt;}
.ws120{word-spacing:4.887040pt;}
.wsbb{word-spacing:4.944000pt;}
.wsda{word-spacing:5.004800pt;}
.ws6c{word-spacing:5.088000pt;}
.ws7b{word-spacing:5.122560pt;}
.ws30{word-spacing:5.328000pt;}
.ws31{word-spacing:5.376000pt;}
.wsb0{word-spacing:5.472000pt;}
.ws6a{word-spacing:5.568000pt;}
.wsa4{word-spacing:5.652480pt;}
.wsaa{word-spacing:5.770240pt;}
.ws6d{word-spacing:5.808000pt;}
.ws6b{word-spacing:6.096000pt;}
.wsb2{word-spacing:6.240000pt;}
.wsc1{word-spacing:6.300160pt;}
.wsa5{word-spacing:6.417920pt;}
.ws35{word-spacing:6.672000pt;}
.ws9e{word-spacing:6.864000pt;}
.ws100{word-spacing:6.947840pt;}
.wsfe{word-spacing:7.056000pt;}
.wsad{word-spacing:7.065600pt;}
.ws3f{word-spacing:7.104000pt;}
.ws115{word-spacing:7.200000pt;}
.ws8b{word-spacing:7.296000pt;}
.ws3c{word-spacing:7.344000pt;}
.ws3e{word-spacing:7.392000pt;}
.ws87{word-spacing:7.418880pt;}
.ws98{word-spacing:7.488000pt;}
.ws88{word-spacing:7.595520pt;}
.wsfd{word-spacing:7.680000pt;}
.ws80{word-spacing:7.713280pt;}
.ws39{word-spacing:7.920000pt;}
.ws8a{word-spacing:7.968000pt;}
.ws99{word-spacing:8.016000pt;}
.ws12b{word-spacing:8.066560pt;}
.wse2{word-spacing:8.160000pt;}
.wsc5{word-spacing:8.243200pt;}
.ws50{word-spacing:8.304000pt;}
.ws5e{word-spacing:8.360960pt;}
.ws3b{word-spacing:8.544000pt;}
.ws36{word-spacing:8.592000pt;}
.ws110{word-spacing:8.688000pt;}
.wse6{word-spacing:8.784000pt;}
.ws8f{word-spacing:8.832000pt;}
.ws19{word-spacing:8.937600pt;}
.ws90{word-spacing:8.949760pt;}
.ws10d{word-spacing:8.976000pt;}
.wsf3{word-spacing:9.008640pt;}
.wsb3{word-spacing:9.312000pt;}
.ws114{word-spacing:9.408000pt;}
.wsb5{word-spacing:9.479680pt;}
.wsca{word-spacing:9.597440pt;}
.ws3a{word-spacing:9.888000pt;}
.wsec{word-spacing:9.936000pt;}
.ws11f{word-spacing:9.950720pt;}
.wsbc{word-spacing:10.080000pt;}
.ws7f{word-spacing:10.127360pt;}
.ws7d{word-spacing:10.245120pt;}
.ws13e{word-spacing:10.539520pt;}
.ws10f{word-spacing:10.608000pt;}
.wsdd{word-spacing:10.704000pt;}
.wsde{word-spacing:10.752000pt;}
.wsc4{word-spacing:10.775040pt;}
.ws83{word-spacing:10.892800pt;}
.ws133{word-spacing:11.187200pt;}
.wseb{word-spacing:11.328000pt;}
.wsa7{word-spacing:11.422720pt;}
.wsae{word-spacing:11.540480pt;}
.wsfc{word-spacing:12.000000pt;}
.wscb{word-spacing:12.070400pt;}
.ws82{word-spacing:12.188160pt;}
.wsea{word-spacing:12.192000pt;}
.ws37{word-spacing:12.432000pt;}
.ws41{word-spacing:12.624000pt;}
.wsd9{word-spacing:12.718080pt;}
.wsa8{word-spacing:12.835840pt;}
.ws38{word-spacing:13.008000pt;}
.ws40{word-spacing:13.152000pt;}
.ws67{word-spacing:13.248000pt;}
.wsf6{word-spacing:13.365760pt;}
.wsf7{word-spacing:13.483520pt;}
.ws10c{word-spacing:13.776000pt;}
.ws64{word-spacing:13.920000pt;}
.ws10a{word-spacing:13.954560pt;}
.ws113{word-spacing:14.072320pt;}
.ws66{word-spacing:14.448000pt;}
.wsee{word-spacing:14.544000pt;}
.wsb8{word-spacing:14.602240pt;}
.wsf9{word-spacing:14.720000pt;}
.ws111{word-spacing:15.249920pt;}
.ws56{word-spacing:15.367680pt;}
.wsbe{word-spacing:15.897600pt;}
.wscd{word-spacing:16.015360pt;}
.wsb6{word-spacing:16.545280pt;}
.wsf2{word-spacing:16.663040pt;}
.ws10e{word-spacing:17.088000pt;}
.wsc8{word-spacing:17.192960pt;}
.ws11a{word-spacing:17.310720pt;}
.ws1b{word-spacing:17.790080pt;}
.ws11c{word-spacing:17.840640pt;}
.ws13b{word-spacing:17.958400pt;}
.ws126{word-spacing:18.488320pt;}
.ws125{word-spacing:18.606080pt;}
.wsd2{word-spacing:19.008000pt;}
.wsa6{word-spacing:19.077120pt;}
.wsf0{word-spacing:19.724800pt;}
.ws8d{word-spacing:19.842560pt;}
.wsc2{word-spacing:20.112000pt;}
.wsc3{word-spacing:20.832000pt;}
.ws117{word-spacing:21.137920pt;}
.wsf5{word-spacing:21.785600pt;}
.ws12e{word-spacing:22.315520pt;}
.ws8e{word-spacing:22.433280pt;}
.wsc9{word-spacing:22.963200pt;}
.wscc{word-spacing:23.080960pt;}
.ws5f{word-spacing:23.669760pt;}
.ws8c{word-spacing:24.199680pt;}
.ws131{word-spacing:24.317440pt;}
.wsbf{word-spacing:25.495040pt;}
.wsc0{word-spacing:25.612800pt;}
.ws124{word-spacing:26.142720pt;}
.ws137{word-spacing:26.260480pt;}
.ws139{word-spacing:26.790400pt;}
.ws13a{word-spacing:26.908160pt;}
.ws123{word-spacing:27.438080pt;}
.ws140{word-spacing:28.497920pt;}
.ws11b{word-spacing:28.674560pt;}
.ws12f{word-spacing:28.792320pt;}
.ws132{word-spacing:30.087680pt;}
.ws119{word-spacing:30.617600pt;}
.ws128{word-spacing:30.735360pt;}
.ws134{word-spacing:31.383040pt;}
.ws13c{word-spacing:32.030720pt;}
.ws135{word-spacing:39.685120pt;}
._c{margin-left:-4.487168pt;}
._6{margin-left:-3.413376pt;}
._1{margin-left:-2.182592pt;}
._0{margin-left:-1.041984pt;}
._2{width:0.889344pt;}
._3{width:1.878336pt;}
._7{width:3.475456pt;}
._4{width:4.387968pt;}
._b{width:6.288320pt;}
._a{width:7.895616pt;}
._9{width:9.136640pt;}
._12{width:10.226688pt;}
._e{width:11.187200pt;}
._10{width:12.541440pt;}
._8{width:13.646528pt;}
._15{width:17.156096pt;}
._f{width:18.664960pt;}
._d{width:21.377472pt;}
._14{width:25.409472pt;}
._11{width:26.691712pt;}
._13{width:29.368832pt;}
._5{width:215.184000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:40.322720pt;}
.y2{bottom:52.640000pt;}
.y121{bottom:86.064000pt;}
.y179{bottom:86.068000pt;}
.y2d{bottom:86.072000pt;}
.ya9{bottom:86.076000pt;}
.yff{bottom:86.080000pt;}
.y83{bottom:90.080000pt;}
.y22d{bottom:90.418560pt;}
.y219{bottom:90.548480pt;}
.y82{bottom:99.824000pt;}
.yfe{bottom:99.828000pt;}
.y178{bottom:99.832000pt;}
.y2c{bottom:99.836000pt;}
.y13b{bottom:99.840000pt;}
.ya8{bottom:103.840000pt;}
.y22c{bottom:107.214080pt;}
.y247{bottom:107.244160pt;}
.y274{bottom:107.267200pt;}
.y218{bottom:107.344000pt;}
.y81{bottom:113.588000pt;}
.yfd{bottom:113.592000pt;}
.ye4{bottom:113.596000pt;}
.ya7{bottom:113.600000pt;}
.y2b{bottom:117.600000pt;}
.y25f{bottom:124.000000pt;}
.y22b{bottom:124.009600pt;}
.y1ff{bottom:124.028160pt;}
.y246{bottom:124.039680pt;}
.y273{bottom:124.062720pt;}
.y217{bottom:124.139520pt;}
.y80{bottom:127.508000pt;}
.yfc{bottom:127.512000pt;}
.y58{bottom:127.516000pt;}
.y2a{bottom:127.520000pt;}
.ya6{bottom:131.520000pt;}
.y22a{bottom:140.967040pt;}
.y1fe{bottom:140.985600pt;}
.y245{bottom:140.997120pt;}
.y25e{bottom:141.008640pt;}
.y272{bottom:141.020160pt;}
.y216{bottom:141.096960pt;}
.y15d{bottom:141.264000pt;}
.y188{bottom:141.268000pt;}
.y7f{bottom:141.272000pt;}
.yfb{bottom:141.276000pt;}
.y13a{bottom:141.280000pt;}
.y57{bottom:145.280000pt;}
.y29{bottom:146.396000pt;}
.yc7{bottom:155.020000pt;}
.y15c{bottom:155.028000pt;}
.y187{bottom:155.032000pt;}
.y7e{bottom:155.036000pt;}
.y139{bottom:155.040000pt;}
.y229{bottom:157.762560pt;}
.y1fd{bottom:157.781120pt;}
.y244{bottom:157.792640pt;}
.y25d{bottom:157.804160pt;}
.y271{bottom:157.815680pt;}
.y215{bottom:157.892480pt;}
.y56{bottom:159.040000pt;}
.y28{bottom:161.120000pt;}
.y55{bottom:168.784000pt;}
.y15b{bottom:168.792000pt;}
.y120{bottom:168.796000pt;}
.y110{bottom:168.800000pt;}
.y7d{bottom:172.800000pt;}
.y228{bottom:174.720000pt;}
.y1fc{bottom:174.738560pt;}
.y243{bottom:174.750080pt;}
.y25c{bottom:174.761600pt;}
.y1e3{bottom:174.762240pt;}
.y270{bottom:174.773120pt;}
.y214{bottom:174.849920pt;}
.y27{bottom:175.676000pt;}
.y54{bottom:182.704000pt;}
.ye3{bottom:182.712000pt;}
.y11f{bottom:182.716000pt;}
.y7c{bottom:182.720000pt;}
.ya5{bottom:186.720000pt;}
.y26{bottom:190.400000pt;}
.y227{bottom:191.531520pt;}
.y1fb{bottom:191.534080pt;}
.y242{bottom:191.545600pt;}
.y25b{bottom:191.557120pt;}
.y1e2{bottom:191.557760pt;}
.y26f{bottom:191.568640pt;}
.y213{bottom:191.645440pt;}
.y53{bottom:196.468000pt;}
.y7b{bottom:196.476000pt;}
.y138{bottom:196.480000pt;}
.ya4{bottom:198.560000pt;}
.yfa{bottom:200.480000pt;}
.y25{bottom:204.956000pt;}
.y226{bottom:208.488960pt;}
.y1fa{bottom:208.491520pt;}
.y241{bottom:208.503040pt;}
.y1b6{bottom:208.511360pt;}
.y25a{bottom:208.514560pt;}
.y1e1{bottom:208.515200pt;}
.y26e{bottom:208.526080pt;}
.y212{bottom:208.602880pt;}
.yf9{bottom:210.212000pt;}
.y52{bottom:210.232000pt;}
.ye2{bottom:210.236000pt;}
.y1a1{bottom:210.240000pt;}
.y137{bottom:214.240000pt;}
.ya3{bottom:214.400000pt;}
.y24{bottom:219.680000pt;}
.y172{bottom:223.952000pt;}
.yf8{bottom:223.976000pt;}
.y136{bottom:223.980000pt;}
.y186{bottom:223.992000pt;}
.y51{bottom:223.996000pt;}
.y1cb{bottom:224.000000pt;}
.y1a8{bottom:225.284480pt;}
.y1f9{bottom:225.287040pt;}
.y240{bottom:225.298560pt;}
.y1b5{bottom:225.306880pt;}
.y259{bottom:225.310080pt;}
.y1e0{bottom:225.310720pt;}
.y26d{bottom:225.321600pt;}
.y155{bottom:225.331200pt;}
.y1c8{bottom:225.335680pt;}
.y211{bottom:225.398400pt;}
.ye1{bottom:228.000000pt;}
.ya2{bottom:230.240000pt;}
.y23{bottom:234.236000pt;}
.y171{bottom:237.716000pt;}
.yf7{bottom:237.740000pt;}
.y135{bottom:237.744000pt;}
.y10f{bottom:237.756000pt;}
.y7a{bottom:237.760000pt;}
.y50{bottom:241.760000pt;}
.y225{bottom:242.080000pt;}
.y1a0{bottom:242.082560pt;}
.y23f{bottom:242.094080pt;}
.y1a7{bottom:242.098560pt;}
.y1b4{bottom:242.102400pt;}
.y258{bottom:242.105600pt;}
.y1df{bottom:242.106240pt;}
.y26c{bottom:242.117120pt;}
.y154{bottom:242.126720pt;}
.y1c7{bottom:242.131200pt;}
.y210{bottom:242.193920pt;}
.ya1{bottom:250.080000pt;}
.y170{bottom:251.636000pt;}
.yf6{bottom:251.660000pt;}
.y134{bottom:251.664000pt;}
.y177{bottom:251.668000pt;}
.y10e{bottom:251.676000pt;}
.y4f{bottom:251.680000pt;}
.y79{bottom:255.680000pt;}
.y22{bottom:256.796000pt;}
.y1c6{bottom:258.764800pt;}
.y1f8{bottom:259.044480pt;}
.y19f{bottom:259.047040pt;}
.y23e{bottom:259.051520pt;}
.y1a6{bottom:259.056000pt;}
.y1b3{bottom:259.059840pt;}
.y257{bottom:259.063040pt;}
.y1de{bottom:259.063680pt;}
.y26b{bottom:259.074560pt;}
.y153{bottom:259.084160pt;}
.ye0{bottom:259.091840pt;}
.y20f{bottom:259.151360pt;}
.y224{bottom:259.155707pt;}
.ya0{bottom:259.840000pt;}
.y16f{bottom:265.400000pt;}
.yf5{bottom:265.424000pt;}
.y133{bottom:265.428000pt;}
.y15a{bottom:265.432000pt;}
.y78{bottom:265.436000pt;}
.y1ca{bottom:265.440000pt;}
.yc6{bottom:269.440000pt;}
.y1c5{bottom:275.560320pt;}
.y19e{bottom:275.842560pt;}
.y23d{bottom:275.847040pt;}
.y1a5{bottom:275.851520pt;}
.y1b2{bottom:275.855360pt;}
.y256{bottom:275.858560pt;}
.y1dd{bottom:275.859200pt;}
.y1f7{bottom:275.861760pt;}
.y26a{bottom:275.870080pt;}
.y152{bottom:275.879680pt;}
.ydf{bottom:275.887360pt;}
.y20e{bottom:275.946880pt;}
.y223{bottom:275.951227pt;}
.y9f{bottom:277.760000pt;}
.y16e{bottom:279.164000pt;}
.yf4{bottom:279.188000pt;}
.y132{bottom:279.192000pt;}
.yc5{bottom:279.196000pt;}
.y77{bottom:279.200000pt;}
.y21{bottom:279.512000pt;}
.y9e{bottom:287.520000pt;}
.y4e{bottom:288.651520pt;}
.y23c{bottom:292.804480pt;}
.y19d{bottom:292.808960pt;}
.y1b1{bottom:292.812800pt;}
.y1c9{bottom:292.816000pt;}
.y1dc{bottom:292.816640pt;}
.y1f6{bottom:292.819200pt;}
.y269{bottom:292.827520pt;}
.y151{bottom:292.837120pt;}
.y1c4{bottom:292.841600pt;}
.yde{bottom:292.844800pt;}
.y20d{bottom:292.904320pt;}
.y222{bottom:292.908667pt;}
.y16d{bottom:292.928000pt;}
.yf3{bottom:292.952000pt;}
.y131{bottom:292.956000pt;}
.y76{bottom:292.960000pt;}
.y20{bottom:294.236000pt;}
.y159{bottom:296.960000pt;}
.y4d{bottom:305.447040pt;}
.y16c{bottom:306.848000pt;}
.yf2{bottom:306.872000pt;}
.y130{bottom:306.876000pt;}
.yc4{bottom:306.880000pt;}
.y1f{bottom:308.960000pt;}
.y23b{bottom:309.600000pt;}
.y19c{bottom:309.604480pt;}
.y75{bottom:309.607040pt;}
.y1b0{bottom:309.608320pt;}
.y9d{bottom:309.611520pt;}
.y1db{bottom:309.612160pt;}
.y1f5{bottom:309.614720pt;}
.y268{bottom:309.623040pt;}
.y150{bottom:309.632640pt;}
.y1c3{bottom:309.637120pt;}
.ydd{bottom:309.640320pt;}
.y20c{bottom:309.699840pt;}
.y221{bottom:309.704187pt;}
.y10d{bottom:310.880000pt;}
.y16b{bottom:320.612000pt;}
.yf1{bottom:320.636000pt;}
.y158{bottom:320.640000pt;}
.y4c{bottom:322.404480pt;}
.y1e{bottom:323.516000pt;}
.y10c{bottom:324.640000pt;}
.yc3{bottom:325.280000pt;}
.y1af{bottom:326.094720pt;}
.y74{bottom:326.402560pt;}
.y9c{bottom:326.407040pt;}
.y1da{bottom:326.407680pt;}
.y23a{bottom:326.409600pt;}
.y1f4{bottom:326.410240pt;}
.y11e{bottom:326.414080pt;}
.y267{bottom:326.418560pt;}
.y19b{bottom:326.421120pt;}
.y14f{bottom:326.428160pt;}
.y1c2{bottom:326.432640pt;}
.ydc{bottom:326.435840pt;}
.y185{bottom:326.465280pt;}
.y20b{bottom:326.495360pt;}
.y220{bottom:326.499707pt;}
.y16a{bottom:334.376000pt;}
.y12f{bottom:334.400000pt;}
.yc2{bottom:337.436000pt;}
.y1d{bottom:338.240000pt;}
.yf0{bottom:338.400000pt;}
.y4b{bottom:339.211520pt;}
.y1ae{bottom:343.052160pt;}
.y9b{bottom:343.364480pt;}
.y1d9{bottom:343.365120pt;}
.y239{bottom:343.367040pt;}
.y1f3{bottom:343.367680pt;}
.y11d{bottom:343.371520pt;}
.y73{bottom:343.374720pt;}
.y266{bottom:343.376000pt;}
.y19a{bottom:343.378560pt;}
.y14e{bottom:343.385600pt;}
.y1c1{bottom:343.390080pt;}
.ydb{bottom:343.393280pt;}
.y184{bottom:343.422720pt;}
.y20a{bottom:343.452800pt;}
.y21f{bottom:343.457147pt;}
.y169{bottom:348.140000pt;}
.y10b{bottom:348.160000pt;}
.yc1{bottom:351.356000pt;}
.yef{bottom:352.160000pt;}
.y1c{bottom:352.796000pt;}
.y4a{bottom:356.168960pt;}
.y1ad{bottom:359.847680pt;}
.y255{bottom:360.160000pt;}
.y1d8{bottom:360.160640pt;}
.y9a{bottom:360.162560pt;}
.y1f2{bottom:360.163200pt;}
.y11c{bottom:360.167040pt;}
.y72{bottom:360.170240pt;}
.y265{bottom:360.171520pt;}
.y199{bottom:360.174080pt;}
.y12e{bottom:360.178560pt;}
.y14d{bottom:360.181120pt;}
.y1c0{bottom:360.185600pt;}
.yda{bottom:360.188800pt;}
.y183{bottom:360.218240pt;}
.y209{bottom:360.248320pt;}
.y21e{bottom:360.252667pt;}
.y168{bottom:362.060000pt;}
.yee{bottom:362.080000pt;}
.yc0{bottom:365.120000pt;}
.y1b{bottom:367.520000pt;}
.y49{bottom:372.964480pt;}
.y167{bottom:375.824000pt;}
.y1d7{bottom:377.118080pt;}
.y238{bottom:377.120000pt;}
.y1f1{bottom:377.120640pt;}
.y11b{bottom:377.124480pt;}
.y71{bottom:377.127680pt;}
.y143{bottom:377.128960pt;}
.y198{bottom:377.131520pt;}
.y10a{bottom:377.136000pt;}
.y14c{bottom:377.138560pt;}
.y1bf{bottom:377.143040pt;}
.yd9{bottom:377.146240pt;}
.y99{bottom:377.150080pt;}
.y176{bottom:377.154560pt;}
.y182{bottom:377.175680pt;}
.y254{bottom:377.187200pt;}
.y208{bottom:377.205760pt;}
.y21d{bottom:377.210107pt;}
.ybf{bottom:378.880000pt;}
.y1a{bottom:382.076000pt;}
.y166{bottom:389.588000pt;}
.y48{bottom:389.762560pt;}
.y1d6{bottom:393.913600pt;}
.y1f0{bottom:393.916160pt;}
.y237{bottom:393.920000pt;}
.y70{bottom:393.923200pt;}
.ybe{bottom:393.924480pt;}
.y197{bottom:393.927040pt;}
.y109{bottom:393.931520pt;}
.y14b{bottom:393.934080pt;}
.y1be{bottom:393.938560pt;}
.yd8{bottom:393.941760pt;}
.y98{bottom:393.945600pt;}
.y11a{bottom:393.950080pt;}
.y181{bottom:393.971200pt;}
.y253{bottom:393.982720pt;}
.y207{bottom:394.001280pt;}
.y21c{bottom:394.005627pt;}
.y19{bottom:396.800000pt;}
.y165{bottom:403.352000pt;}
.y47{bottom:406.743040pt;}
.y1ef{bottom:410.402560pt;}
.y1d5{bottom:410.458880pt;}
.y6f{bottom:410.718720pt;}
.y142{bottom:410.722560pt;}
.y108{bottom:410.727040pt;}
.y14a{bottom:410.729600pt;}
.y1bd{bottom:410.734080pt;}
.yd7{bottom:410.737280pt;}
.ybd{bottom:410.738560pt;}
.y97{bottom:410.741120pt;}
.y119{bottom:410.745600pt;}
.y1ac{bottom:410.748160pt;}
.y264{bottom:410.759680pt;}
.y180{bottom:410.766720pt;}
.y252{bottom:410.778240pt;}
.y206{bottom:410.796800pt;}
.y21b{bottom:410.801147pt;}
.y18{bottom:411.356000pt;}
.y164{bottom:417.272000pt;}
.y46{bottom:423.538560pt;}
.y17{bottom:426.080000pt;}
.y1ee{bottom:427.434747pt;}
.y6e{bottom:427.676160pt;}
.y107{bottom:427.684480pt;}
.y149{bottom:427.687040pt;}
.y141{bottom:427.691520pt;}
.yd6{bottom:427.694720pt;}
.ybc{bottom:427.696000pt;}
.y96{bottom:427.698560pt;}
.y118{bottom:427.703040pt;}
.y1ab{bottom:427.705600pt;}
.y1a4{bottom:427.714560pt;}
.y196{bottom:427.717120pt;}
.y17f{bottom:427.724160pt;}
.y251{bottom:427.735680pt;}
.y1d4{bottom:427.740160pt;}
.y205{bottom:427.754240pt;}
.y21a{bottom:427.758587pt;}
.y163{bottom:431.036000pt;}
.y45{bottom:440.496000pt;}
.y16{bottom:441.280000pt;}
.y6d{bottom:444.162560pt;}
.y236{bottom:444.480000pt;}
.y148{bottom:444.482560pt;}
.y140{bottom:444.487040pt;}
.yd5{bottom:444.490240pt;}
.ybb{bottom:444.491520pt;}
.y95{bottom:444.494080pt;}
.y117{bottom:444.498560pt;}
.y1aa{bottom:444.501120pt;}
.y106{bottom:444.505600pt;}
.y1a3{bottom:444.510080pt;}
.y195{bottom:444.512640pt;}
.y17e{bottom:444.519680pt;}
.y250{bottom:444.531200pt;}
.y1d3{bottom:444.535680pt;}
.y204{bottom:444.549760pt;}
.y1ed{bottom:444.554107pt;}
.y162{bottom:448.800000pt;}
.y44{bottom:457.291520pt;}
.y161{bottom:458.560000pt;}
.y15{bottom:458.868000pt;}
.y6c{bottom:461.120000pt;}
.y13f{bottom:461.444480pt;}
.yd4{bottom:461.447680pt;}
.yba{bottom:461.448960pt;}
.y94{bottom:461.451520pt;}
.y116{bottom:461.456000pt;}
.y1a9{bottom:461.458560pt;}
.y105{bottom:461.463040pt;}
.y1a2{bottom:461.467520pt;}
.y194{bottom:461.470080pt;}
.y17d{bottom:461.477120pt;}
.y24f{bottom:461.488640pt;}
.y1d2{bottom:461.493120pt;}
.y203{bottom:461.507200pt;}
.y1ec{bottom:461.511547pt;}
.y14{bottom:472.632000pt;}
.y43{bottom:474.248960pt;}
.y6b{bottom:477.930240pt;}
.yd3{bottom:478.243200pt;}
.yb9{bottom:478.244480pt;}
.y93{bottom:478.247040pt;}
.y115{bottom:478.251520pt;}
.y160{bottom:478.254080pt;}
.y104{bottom:478.258560pt;}
.y13e{bottom:478.263040pt;}
.y193{bottom:478.265600pt;}
.y17c{bottom:478.272640pt;}
.y24e{bottom:478.284160pt;}
.y1d1{bottom:478.288640pt;}
.y202{bottom:478.302720pt;}
.y1eb{bottom:478.307067pt;}
.y13{bottom:486.396000pt;}
.y42{bottom:491.044480pt;}
.y6a{bottom:494.725760pt;}
.yd2{bottom:495.038720pt;}
.y235{bottom:495.040000pt;}
.y92{bottom:495.042560pt;}
.y114{bottom:495.047040pt;}
.y15f{bottom:495.049600pt;}
.y103{bottom:495.054080pt;}
.y13d{bottom:495.058560pt;}
.y192{bottom:495.061120pt;}
.y17b{bottom:495.068160pt;}
.y24d{bottom:495.079680pt;}
.y1d0{bottom:495.084160pt;}
.y201{bottom:495.098240pt;}
.y1ea{bottom:495.102587pt;}
.y12{bottom:500.160000pt;}
.y41{bottom:507.840000pt;}
.yd1{bottom:511.996160pt;}
.yed{bottom:512.004480pt;}
.y69{bottom:512.007040pt;}
.y102{bottom:512.011520pt;}
.y91{bottom:512.016000pt;}
.yb8{bottom:512.018560pt;}
.y157{bottom:512.023040pt;}
.y17a{bottom:512.025600pt;}
.y234{bottom:512.032640pt;}
.y24c{bottom:512.037120pt;}
.y1cf{bottom:512.041600pt;}
.y200{bottom:512.055680pt;}
.y1e9{bottom:512.060027pt;}
.y11{bottom:514.080000pt;}
.y10{bottom:527.840000pt;}
.yd0{bottom:528.482560pt;}
.y68{bottom:528.802560pt;}
.y101{bottom:528.807040pt;}
.y90{bottom:528.811520pt;}
.yb7{bottom:528.814080pt;}
.y156{bottom:528.818560pt;}
.y113{bottom:528.821120pt;}
.y233{bottom:528.828160pt;}
.y24b{bottom:528.832640pt;}
.y1ce{bottom:528.837120pt;}
.y12d{bottom:528.851200pt;}
.y1e8{bottom:528.855547pt;}
.y40{bottom:529.600000pt;}
.yf{bottom:541.596000pt;}
.y3f{bottom:544.800000pt;}
.ycf{bottom:545.440000pt;}
.y100{bottom:545.764480pt;}
.y8f{bottom:545.768960pt;}
.yb6{bottom:545.771520pt;}
.yec{bottom:545.776000pt;}
.y112{bottom:545.778560pt;}
.y232{bottom:545.785600pt;}
.y24a{bottom:545.790080pt;}
.y1cd{bottom:545.794560pt;}
.y67{bottom:545.804160pt;}
.y12c{bottom:545.808640pt;}
.y1e7{bottom:545.812987pt;}
.ye{bottom:555.360000pt;}
.yce{bottom:562.250240pt;}
.y8e{bottom:562.564480pt;}
.yb5{bottom:562.567040pt;}
.yeb{bottom:562.571520pt;}
.y111{bottom:562.574080pt;}
.y231{bottom:562.581120pt;}
.y249{bottom:562.585600pt;}
.y1cc{bottom:562.590080pt;}
.y66{bottom:562.599680pt;}
.y12b{bottom:562.604160pt;}
.y1e6{bottom:562.608507pt;}
.y3e{bottom:569.107867pt;}
.yd{bottom:569.280000pt;}
.yb4{bottom:579.362560pt;}
.yea{bottom:579.367040pt;}
.ycd{bottom:579.369600pt;}
.y13c{bottom:579.374080pt;}
.y230{bottom:579.376640pt;}
.y8d{bottom:579.381120pt;}
.y1bc{bottom:579.385600pt;}
.y65{bottom:579.395200pt;}
.y12a{bottom:579.399680pt;}
.y1e5{bottom:579.404027pt;}
.yc{bottom:583.679867pt;}
.y3d{bottom:583.831867pt;}
.y263{bottom:596.320000pt;}
.ye9{bottom:596.324480pt;}
.ycc{bottom:596.327040pt;}
.yb3{bottom:596.331520pt;}
.y15e{bottom:596.334080pt;}
.y8c{bottom:596.338560pt;}
.y191{bottom:596.339200pt;}
.y1bb{bottom:596.343040pt;}
.y64{bottom:596.352640pt;}
.y129{bottom:596.357120pt;}
.y1e4{bottom:596.361467pt;}
.y3c{bottom:598.555867pt;}
.y3b{bottom:613.111867pt;}
.ycb{bottom:613.122560pt;}
.yb2{bottom:613.127040pt;}
.ye8{bottom:613.129600pt;}
.y8b{bottom:613.134080pt;}
.y190{bottom:613.134720pt;}
.y1ba{bottom:613.138560pt;}
.y175{bottom:613.141120pt;}
.y262{bottom:613.145600pt;}
.y63{bottom:613.148160pt;}
.y128{bottom:613.152640pt;}
.y147{bottom:613.156987pt;}
.yb{bottom:613.440000pt;}
.y3a{bottom:627.835867pt;}
.yb1{bottom:630.084480pt;}
.yca{bottom:630.087040pt;}
.y8a{bottom:630.091520pt;}
.y18f{bottom:630.092160pt;}
.y1b9{bottom:630.096000pt;}
.y174{bottom:630.098560pt;}
.y261{bottom:630.103040pt;}
.y62{bottom:630.105600pt;}
.y127{bottom:630.110080pt;}
.y146{bottom:630.114427pt;}
.ya{bottom:636.141440pt;}
.yc9{bottom:646.882560pt;}
.y89{bottom:646.887040pt;}
.y18e{bottom:646.887680pt;}
.y1b8{bottom:646.891520pt;}
.y173{bottom:646.894080pt;}
.yb0{bottom:646.898560pt;}
.y61{bottom:646.901120pt;}
.y126{bottom:646.905600pt;}
.y145{bottom:646.909947pt;}
.y39{bottom:650.395867pt;}
.y9{bottom:662.230720pt;}
.y22f{bottom:663.840000pt;}
.y88{bottom:663.844480pt;}
.y18d{bottom:663.845120pt;}
.y1b7{bottom:663.848960pt;}
.ye7{bottom:663.851520pt;}
.yaf{bottom:663.856000pt;}
.y60{bottom:663.858560pt;}
.y125{bottom:663.863040pt;}
.y144{bottom:663.867387pt;}
.y38{bottom:665.119867pt;}
.y37{bottom:679.843867pt;}
.y248{bottom:680.640000pt;}
.y18c{bottom:680.640640pt;}
.yc8{bottom:680.644480pt;}
.ye6{bottom:680.647040pt;}
.yae{bottom:680.651520pt;}
.y5f{bottom:680.654080pt;}
.y124{bottom:680.658560pt;}
.y87{bottom:680.662907pt;}
.y8{bottom:688.320000pt;}
.y36{bottom:694.399867pt;}
.y18b{bottom:697.127040pt;}
.ye5{bottom:697.442560pt;}
.yad{bottom:697.447040pt;}
.y5e{bottom:697.449600pt;}
.y123{bottom:697.454080pt;}
.y86{bottom:697.458427pt;}
.y7{bottom:711.839867pt;}
.y18a{bottom:714.084480pt;}
.yac{bottom:714.404480pt;}
.y5d{bottom:714.407040pt;}
.y122{bottom:714.411520pt;}
.y85{bottom:714.415867pt;}
.y35{bottom:716.959867pt;}
.y6{bottom:728.941440pt;}
.y189{bottom:730.887547pt;}
.y22e{bottom:731.200000pt;}
.y5c{bottom:731.202560pt;}
.yab{bottom:731.207040pt;}
.y84{bottom:731.211387pt;}
.y34{bottom:739.675867pt;}
.y260{bottom:748.160000pt;}
.yaa{bottom:748.164480pt;}
.y5b{bottom:748.168827pt;}
.y33{bottom:754.399867pt;}
.y5{bottom:755.030720pt;}
.y5a{bottom:764.964347pt;}
.y32{bottom:768.955867pt;}
.y4{bottom:781.120000pt;}
.y59{bottom:781.759867pt;}
.y31{bottom:783.679867pt;}
.y30{bottom:798.723200pt;}
.y2f{bottom:815.518720pt;}
.y2e{bottom:832.800000pt;}
.y1{bottom:835.839867pt;}
.h35{height:26.117188pt;}
.hd{height:28.078125pt;}
.h6{height:33.257812pt;}
.h21{height:33.328125pt;}
.h3{height:37.624687pt;}
.h32{height:39.905000pt;}
.he{height:40.796250pt;}
.h24{height:40.882500pt;}
.h2{height:42.117188pt;}
.ha{height:42.133188pt;}
.h16{height:42.149188pt;}
.hb{height:42.165188pt;}
.h33{height:51.617670pt;}
.h34{height:51.627910pt;}
.h31{height:51.635590pt;}
.h37{height:51.646363pt;}
.h9{height:51.663750pt;}
.h14{height:52.296250pt;}
.h26{height:53.485825pt;}
.h13{height:53.513985pt;}
.h38{height:53.531905pt;}
.h2c{height:53.542145pt;}
.h28{height:53.542678pt;}
.h2d{height:53.552385pt;}
.h30{height:53.564652pt;}
.h19{height:53.570305pt;}
.h2f{height:53.577985pt;}
.h29{height:53.581078pt;}
.h23{height:53.588225pt;}
.hf{height:53.598465pt;}
.h36{height:53.603585pt;}
.h17{height:53.606145pt;}
.h2b{height:53.613825pt;}
.h1c{height:53.616385pt;}
.h1e{height:53.616918pt;}
.h18{height:53.626625pt;}
.h15{height:53.631745pt;}
.h22{height:53.633772pt;}
.h27{height:53.634305pt;}
.h11{height:53.644545pt;}
.h2e{height:53.645078pt;}
.h20{height:53.652225pt;}
.h2a{height:53.654785pt;}
.h12{height:53.655318pt;}
.h25{height:53.661932pt;}
.h1b{height:53.662465pt;}
.h1f{height:53.672172pt;}
.h1a{height:53.672705pt;}
.h10{height:53.680385pt;}
.h1d{height:53.691158pt;}
.hc{height:56.156250pt;}
.h4{height:58.977187pt;}
.h8{height:65.702812pt;}
.h5{height:65.976207pt;}
.h7{height:88.761740pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.120000pt;}
.x3{left:104.000000pt;}
.x6{left:109.121920pt;}
.x4{left:113.600000pt;}
.x7{left:122.872960pt;}
.x5{left:338.400000pt;}
.x2{left:486.573280pt;}
}




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