
    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_230e71c2510d782ad23703f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.101562;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_91e00cdcb189eeeb26616891.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_644af35a6c376241ed081566.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_9bcb5674f696acd5f4110ef8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aeaa2e2f8527e5363fbd7086.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102539;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_dec01e997d3afd5ae1616d9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_34305e5e71716c770c42896f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_daef3078e9001f2c58debb99.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_8219670fcacfba0c578f6628.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ecf80d6889bc4deaed94d7d1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.092773;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_546d49252c3cd835ba17c717.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.765625;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.824160px;}
.v1{vertical-align:38.154240px;}
.v2{vertical-align:70.560000px;}
.ls4a{letter-spacing:-1.440000px;}
.ls3f{letter-spacing:-1.059840px;}
.lsc{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.861120px;}
.ls3b{letter-spacing:-0.728640px;}
.ls18{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.596160px;}
.ls69{letter-spacing:-0.576000px;}
.ls3a{letter-spacing:-0.463680px;}
.ls42{letter-spacing:-0.432000px;}
.ls3c{letter-spacing:-0.397440px;}
.ls58{letter-spacing:-0.358560px;}
.ls27{letter-spacing:-0.336960px;}
.ls8{letter-spacing:-0.331200px;}
.lsb{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.264960px;}
.ls65{letter-spacing:-0.239040px;}
.lsd{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.132480px;}
.ls64{letter-spacing:-0.119520px;}
.ls2c{letter-spacing:-0.072000px;}
.ls56{letter-spacing:-0.059760px;}
.ls7{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.059760px;}
.ls1b{letter-spacing:0.072000px;}
.ls53{letter-spacing:0.119520px;}
.ls36{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.144000px;}
.ls5a{letter-spacing:0.179280px;}
.ls66{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.191520px;}
.ls14{letter-spacing:0.216000px;}
.ls57{letter-spacing:0.239040px;}
.ls63{letter-spacing:0.268920px;}
.ls12{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.331200px;}
.lsa{letter-spacing:0.336960px;}
.ls54{letter-spacing:0.358560px;}
.ls5b{letter-spacing:0.360000px;}
.ls62{letter-spacing:0.382464px;}
.ls9{letter-spacing:0.383040px;}
.ls22{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls4e{letter-spacing:1.440000px;}
.ls1c{letter-spacing:2.160000px;}
.ls46{letter-spacing:2.880000px;}
.ls15{letter-spacing:2.887200px;}
.ls67{letter-spacing:3.047040px;}
.ls16{letter-spacing:3.600000px;}
.ls20{letter-spacing:3.749760px;}
.ls1f{letter-spacing:4.320000px;}
.ls17{letter-spacing:5.040000px;}
.ls4b{letter-spacing:5.760000px;}
.ls24{letter-spacing:6.480000px;}
.ls48{letter-spacing:7.200000px;}
.ls19{letter-spacing:7.920000px;}
.ls2{letter-spacing:8.640000px;}
.ls11{letter-spacing:9.360000px;}
.ls26{letter-spacing:10.080000px;}
.ls1a{letter-spacing:10.800000px;}
.ls5c{letter-spacing:11.520000px;}
.ls37{letter-spacing:12.240000px;}
.ls2a{letter-spacing:12.960000px;}
.ls23{letter-spacing:15.840000px;}
.ls44{letter-spacing:16.560000px;}
.ls28{letter-spacing:17.280000px;}
.ls1e{letter-spacing:18.000000px;}
.ls40{letter-spacing:18.144000px;}
.ls47{letter-spacing:18.720000px;}
.ls4d{letter-spacing:19.440000px;}
.ls6a{letter-spacing:20.160000px;}
.ls2b{letter-spacing:20.880000px;}
.ls49{letter-spacing:21.600000px;}
.ls45{letter-spacing:21.744000px;}
.ls29{letter-spacing:22.320000px;}
.ls38{letter-spacing:23.040000px;}
.ls68{letter-spacing:24.480000px;}
.ls5d{letter-spacing:25.200000px;}
.ls13{letter-spacing:26.640000px;}
.ls5{letter-spacing:30.240000px;}
.ls41{letter-spacing:31.104000px;}
.ls1d{letter-spacing:33.984000px;}
.ls4c{letter-spacing:34.560000px;}
.ls21{letter-spacing:37.440000px;}
.ls10{letter-spacing:38.160000px;}
.ls61{letter-spacing:38.880000px;}
.ls5f{letter-spacing:44.594640px;}
.ls3{letter-spacing:48.960000px;}
.ls5e{letter-spacing:51.120000px;}
.ls25{letter-spacing:61.200000px;}
.lsf{letter-spacing:64.016640px;}
.ls60{letter-spacing:96.480000px;}
.ls2f{letter-spacing:136.056960px;}
.ls34{letter-spacing:172.820160px;}
.ls32{letter-spacing:172.840032px;}
.ls4f{letter-spacing:176.397120px;}
.ls52{letter-spacing:182.160000px;}
.ls33{letter-spacing:183.617280px;}
.ls2e{letter-spacing:185.008320px;}
.ls50{letter-spacing:199.448640px;}
.ls55{letter-spacing:199.598400px;}
.ls51{letter-spacing:226.077120px;}
.ls31{letter-spacing:314.640000px;}
.ls2d{letter-spacing:347.760000px;}
.ls30{letter-spacing:398.897280px;}
.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;}
}
.ws1d{word-spacing:-59.760000px;}
.wsa8{word-spacing:-21.396960px;}
.ws50{word-spacing:-20.723040px;}
.ws61{word-spacing:-18.720000px;}
.ws1e{word-spacing:-18.288000px;}
.ws89{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws31{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws60{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws1f{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.wsbc{word-spacing:-17.280000px;}
.ws88{word-spacing:-17.064000px;}
.ws6f{word-spacing:-16.891200px;}
.ws69{word-spacing:-16.692480px;}
.ws0{word-spacing:-16.560000px;}
.ws68{word-spacing:-16.427520px;}
.ws7e{word-spacing:-16.295040px;}
.ws6b{word-spacing:-16.228800px;}
.ws6d{word-spacing:-16.162560px;}
.ws6a{word-spacing:-16.096320px;}
.ws6e{word-spacing:-15.963840px;}
.ws6c{word-spacing:-15.831360px;}
.ws70{word-spacing:-15.698880px;}
.wscf{word-spacing:-15.500160px;}
.wsaf{word-spacing:-15.298560px;}
.wsb9{word-spacing:-15.179040px;}
.wsb8{word-spacing:-15.059520px;}
.wscb{word-spacing:-14.999760px;}
.wsba{word-spacing:-14.940000px;}
.wsae{word-spacing:-14.880240px;}
.wsca{word-spacing:-14.820480px;}
.wsbb{word-spacing:-14.581440px;}
.ws9f{word-spacing:-12.240000px;}
.ws42{word-spacing:-4.464000px;}
.wsd4{word-spacing:-4.438080px;}
.ws3b{word-spacing:-4.320000px;}
.ws43{word-spacing:-4.176000px;}
.ws44{word-spacing:-4.032000px;}
.wsc5{word-spacing:-3.744000px;}
.wsd2{word-spacing:-3.709440px;}
.ws3a{word-spacing:-3.600000px;}
.wsd5{word-spacing:-3.576960px;}
.wsdf{word-spacing:-3.456000px;}
.wse0{word-spacing:-3.312000px;}
.wscd{word-spacing:-3.168000px;}
.ws8e{word-spacing:-3.024000px;}
.ws8c{word-spacing:-2.880000px;}
.wse2{word-spacing:-2.592000px;}
.ws62{word-spacing:-2.160000px;}
.ws2a{word-spacing:-1.872000px;}
.ws7b{word-spacing:-1.589760px;}
.ws34{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.152000px;}
.ws79{word-spacing:-1.059840px;}
.wsbd{word-spacing:-0.896400px;}
.wsa0{word-spacing:-0.864000px;}
.ws75{word-spacing:-0.861120px;}
.ws77{word-spacing:-0.728640px;}
.ws30{word-spacing:-0.720000px;}
.wse1{word-spacing:-0.576000px;}
.ws7{word-spacing:-0.574560px;}
.wsa9{word-spacing:-0.505440px;}
.ws8d{word-spacing:-0.504000px;}
.ws4c{word-spacing:-0.432000px;}
.wsb3{word-spacing:-0.358560px;}
.ws9{word-spacing:-0.336960px;}
.ws76{word-spacing:-0.331200px;}
.ws23{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.191520px;}
.wsb7{word-spacing:-0.179280px;}
.ws19{word-spacing:-0.144000px;}
.ws78{word-spacing:-0.132480px;}
.wsb5{word-spacing:-0.119520px;}
.wsb1{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.wsb0{word-spacing:0.059760px;}
.wsb6{word-spacing:0.119520px;}
.ws74{word-spacing:0.132480px;}
.ws3c{word-spacing:0.144000px;}
.ws10{word-spacing:0.216000px;}
.wsb4{word-spacing:0.239040px;}
.wsd3{word-spacing:0.264960px;}
.wsd{word-spacing:0.288000px;}
.wsd0{word-spacing:0.298800px;}
.ws6{word-spacing:0.331200px;}
.ws52{word-spacing:0.336960px;}
.wsb2{word-spacing:0.358560px;}
.ws80{word-spacing:0.397440px;}
.ws82{word-spacing:0.463680px;}
.ws4b{word-spacing:0.576000px;}
.ws7a{word-spacing:0.596160px;}
.ws2b{word-spacing:0.720000px;}
.wsd1{word-spacing:0.728640px;}
.ws81{word-spacing:0.861120px;}
.wse{word-spacing:0.936000px;}
.ws4a{word-spacing:1.008000px;}
.ws7c{word-spacing:1.059840px;}
.wse7{word-spacing:1.296000px;}
.ws55{word-spacing:1.440000px;}
.wsd8{word-spacing:1.584000px;}
.wsa6{word-spacing:1.656000px;}
.ws95{word-spacing:1.728000px;}
.wse6{word-spacing:1.872000px;}
.ws9d{word-spacing:2.016000px;}
.ws35{word-spacing:2.160000px;}
.wseb{word-spacing:2.304000px;}
.ws65{word-spacing:2.448000px;}
.wsd6{word-spacing:2.583360px;}
.ws7f{word-spacing:2.592000px;}
.ws92{word-spacing:2.664000px;}
.ws17{word-spacing:2.736000px;}
.ws18{word-spacing:2.880000px;}
.wsd7{word-spacing:2.914560px;}
.wsd9{word-spacing:2.952000px;}
.ws2d{word-spacing:3.168000px;}
.ws8f{word-spacing:3.312000px;}
.ws90{word-spacing:3.456000px;}
.wsb{word-spacing:3.600000px;}
.wsda{word-spacing:3.744000px;}
.ws9e{word-spacing:3.888000px;}
.ws49{word-spacing:4.176000px;}
.ws39{word-spacing:4.320000px;}
.wsc3{word-spacing:4.608000px;}
.ws2e{word-spacing:5.040000px;}
.ws3f{word-spacing:5.328000px;}
.ws54{word-spacing:5.616000px;}
.ws53{word-spacing:5.760000px;}
.wse3{word-spacing:5.904000px;}
.wse4{word-spacing:6.048000px;}
.ws9c{word-spacing:6.336000px;}
.ws41{word-spacing:6.480000px;}
.ws11{word-spacing:6.768000px;}
.wsc1{word-spacing:6.984000px;}
.wsac{word-spacing:7.056000px;}
.wsab{word-spacing:7.200000px;}
.ws94{word-spacing:7.344000px;}
.wsad{word-spacing:7.488000px;}
.ws1b{word-spacing:7.920000px;}
.wsdb{word-spacing:8.064000px;}
.wsdc{word-spacing:8.208000px;}
.ws14{word-spacing:8.640000px;}
.ws25{word-spacing:8.928000px;}
.ws2f{word-spacing:9.216000px;}
.ws29{word-spacing:9.360000px;}
.ws5d{word-spacing:9.936000px;}
.ws20{word-spacing:10.080000px;}
.ws37{word-spacing:10.296000px;}
.ws16{word-spacing:10.368000px;}
.ws4d{word-spacing:10.800000px;}
.ws96{word-spacing:11.088000px;}
.ws46{word-spacing:11.520000px;}
.wsbf{word-spacing:11.808000px;}
.wse8{word-spacing:11.952000px;}
.ws83{word-spacing:12.240000px;}
.wsea{word-spacing:12.312000px;}
.wsaa{word-spacing:12.816000px;}
.ws66{word-spacing:12.960000px;}
.ws38{word-spacing:13.680000px;}
.wse5{word-spacing:13.824000px;}
.ws3e{word-spacing:14.400000px;}
.wsbe{word-spacing:14.688000px;}
.ws4e{word-spacing:15.120000px;}
.wsf{word-spacing:15.840000px;}
.ws58{word-spacing:16.128000px;}
.ws5c{word-spacing:16.560000px;}
.ws64{word-spacing:17.136000px;}
.ws40{word-spacing:17.280000px;}
.ws87{word-spacing:17.784000px;}
.ws86{word-spacing:17.856000px;}
.ws85{word-spacing:18.000000px;}
.wsc{word-spacing:18.720000px;}
.ws97{word-spacing:19.008000px;}
.wsc0{word-spacing:19.368000px;}
.ws93{word-spacing:19.440000px;}
.ws91{word-spacing:20.016000px;}
.ws32{word-spacing:20.160000px;}
.wsed{word-spacing:20.304000px;}
.ws33{word-spacing:20.448000px;}
.ws8a{word-spacing:20.736000px;}
.ws8b{word-spacing:20.808000px;}
.ws67{word-spacing:20.880000px;}
.ws4f{word-spacing:21.600000px;}
.wsce{word-spacing:22.176000px;}
.ws51{word-spacing:22.320000px;}
.wsa1{word-spacing:22.896000px;}
.ws7d{word-spacing:23.040000px;}
.wsde{word-spacing:24.480000px;}
.wsdd{word-spacing:24.768000px;}
.wsa3{word-spacing:25.056000px;}
.ws36{word-spacing:25.200000px;}
.wsc2{word-spacing:25.632000px;}
.ws3d{word-spacing:25.920000px;}
.wse9{word-spacing:26.640000px;}
.ws24{word-spacing:28.080000px;}
.wsc6{word-spacing:28.800000px;}
.wsa5{word-spacing:29.520000px;}
.ws1a{word-spacing:30.240000px;}
.ws9b{word-spacing:30.960000px;}
.wsec{word-spacing:31.248000px;}
.ws63{word-spacing:31.536000px;}
.ws1c{word-spacing:31.680000px;}
.ws5f{word-spacing:32.256000px;}
.ws5e{word-spacing:32.400000px;}
.wsa4{word-spacing:34.560000px;}
.ws13{word-spacing:35.280000px;}
.ws12{word-spacing:35.568000px;}
.wsc9{word-spacing:36.000000px;}
.ws56{word-spacing:36.720000px;}
.ws57{word-spacing:37.008000px;}
.ws48{word-spacing:37.728000px;}
.ws21{word-spacing:38.160000px;}
.ws22{word-spacing:38.304000px;}
.wsa7{word-spacing:38.736000px;}
.wscc{word-spacing:39.168000px;}
.ws27{word-spacing:39.600000px;}
.ws28{word-spacing:39.888000px;}
.wsa{word-spacing:40.608000px;}
.ws15{word-spacing:41.040000px;}
.ws84{word-spacing:41.760000px;}
.ws9a{word-spacing:42.336000px;}
.ws98{word-spacing:42.480000px;}
.ws99{word-spacing:43.200000px;}
.ws72{word-spacing:48.816000px;}
.ws71{word-spacing:48.960000px;}
.ws73{word-spacing:49.248000px;}
.wsc4{word-spacing:51.120000px;}
.wsa2{word-spacing:51.408000px;}
.ws5a{word-spacing:61.200000px;}
.ws5b{word-spacing:61.488000px;}
.ws59{word-spacing:61.920000px;}
.ws45{word-spacing:82.800000px;}
.ws26{word-spacing:84.960000px;}
.wsc7{word-spacing:96.480000px;}
.wsc8{word-spacing:96.768000px;}
._41{margin-left:-96.691968px;}
._3d{margin-left:-16.115040px;}
._3a{margin-left:-12.540672px;}
._39{margin-left:-11.507328px;}
._37{margin-left:-9.216000px;}
._1c{margin-left:-4.536000px;}
._10{margin-left:-3.528000px;}
._24{margin-left:-2.376000px;}
._1{margin-left:-1.092960px;}
._0{width:1.139328px;}
._3{width:2.952000px;}
._4{width:4.176000px;}
._8{width:6.120000px;}
._9{width:7.420032px;}
._a{width:9.241344px;}
._e{width:10.702656px;}
._18{width:12.096000px;}
._1d{width:13.680000px;}
._7{width:15.213312px;}
._6{width:16.428672px;}
._5{width:19.308672px;}
._17{width:21.036672px;}
._20{width:22.464000px;}
._3f{width:23.472000px;}
._21{width:24.480000px;}
._19{width:26.064000px;}
._14{width:27.181152px;}
._29{width:28.293696px;}
._f{width:29.592000px;}
._1e{width:31.104000px;}
._1f{width:32.256000px;}
._28{width:33.373152px;}
._3e{width:34.560000px;}
._25{width:36.216000px;}
._23{width:37.296000px;}
._11{width:38.701152px;}
._2{width:40.273344px;}
._b{width:41.747904px;}
._38{width:42.768000px;}
._40{width:43.992000px;}
._d{width:47.998656px;}
._c{width:49.777344px;}
._3b{width:50.904000px;}
._3c{width:51.971328px;}
._15{width:53.784000px;}
._16{width:54.889344px;}
._26{width:60.768000px;}
._27{width:61.860672px;}
._13{width:68.340960px;}
._12{width:69.408000px;}
._1b{width:73.800000px;}
._1a{width:75.108960px;}
._22{width:82.584000px;}
._42{width:96.408000px;}
._31{width:142.879680px;}
._34{width:151.888320px;}
._30{width:183.584160px;}
._2d{width:190.638720px;}
._2e{width:203.396544px;}
._2b{width:219.956544px;}
._2a{width:224.540352px;}
._36{width:230.639040px;}
._35{width:235.158624px;}
._2c{width:241.179840px;}
._33{width:259.197120px;}
._43{width:380.648160px;}
._2f{width:399.082752px;}
._32{width:445.132800px;}
._44{width:472.779360px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y126{bottom:3.240000px;}
.y97{bottom:3.600000px;}
.ya8{bottom:3.779850px;}
.y14a{bottom:20.520000px;}
.y96{bottom:22.500000px;}
.ya2{bottom:22.680000px;}
.y1e3{bottom:37.620000px;}
.y1e8{bottom:37.800000px;}
.yac{bottom:41.580000px;}
.ya6{bottom:41.760000px;}
.y201{bottom:54.900000px;}
.y1f5{bottom:55.080000px;}
.y2{bottom:57.060000px;}
.y123{bottom:58.860000px;}
.y9a{bottom:60.480000px;}
.ybe{bottom:60.660000px;}
.y145{bottom:72.180000px;}
.y1{bottom:77.760000px;}
.y15f{bottom:106.740000px;}
.y1a9{bottom:111.060000px;}
.y93{bottom:116.100000px;}
.y219{bottom:122.549040px;}
.y1ec{bottom:123.480000px;}
.y181{bottom:126.720000px;}
.y1c8{bottom:126.900000px;}
.y144{bottom:127.800000px;}
.y44{bottom:130.500000px;}
.ye9{bottom:130.860000px;}
.yfa{bottom:135.180000px;}
.y1eb{bottom:135.354420px;}
.y23a{bottom:139.500000px;}
.y19c{bottom:140.220000px;}
.y138{bottom:141.300000px;}
.y81{bottom:141.480000px;}
.y1a8{bottom:142.200000px;}
.y1ed{bottom:144.000000px;}
.y92{bottom:147.060000px;}
.y148{bottom:148.308120px;}
.y22{bottom:149.940000px;}
.y218{bottom:150.982560px;}
.y1ea{bottom:152.640000px;}
.y117{bottom:154.080000px;}
.y141{bottom:155.522880px;}
.y143{bottom:156.953700px;}
.yca{bottom:157.680000px;}
.y180{bottom:157.860000px;}
.y1a4{bottom:158.580000px;}
.y43{bottom:161.460000px;}
.ye8{bottom:161.820000px;}
.y147{bottom:165.414420px;}
.yf9{bottom:166.140000px;}
.y239{bottom:170.460000px;}
.y19b{bottom:171.180000px;}
.y5d{bottom:171.540000px;}
.y80{bottom:172.440000px;}
.y1a7{bottom:173.160000px;}
.y142{bottom:174.060000px;}
.y140{bottom:174.600000px;}
.y1e7{bottom:176.040000px;}
.y91{bottom:178.200000px;}
.y217{bottom:179.416080px;}
.y21{bottom:180.900000px;}
.y146{bottom:182.700000px;}
.y116{bottom:185.040000px;}
.y1e6{bottom:187.914420px;}
.yc9{bottom:188.640000px;}
.y17f{bottom:188.820000px;}
.y1c7{bottom:189.000000px;}
.y1a3{bottom:189.540000px;}
.y42{bottom:192.600000px;}
.ye7{bottom:192.960000px;}
.y1e9{bottom:196.560000px;}
.yf8{bottom:197.280000px;}
.y238{bottom:201.600000px;}
.y19a{bottom:202.320000px;}
.y5c{bottom:202.680000px;}
.y7f{bottom:203.580000px;}
.y1a6{bottom:204.300000px;}
.y1e5{bottom:205.200000px;}
.y216{bottom:207.849600px;}
.y90{bottom:209.160000px;}
.y20{bottom:212.040000px;}
.y137{bottom:214.740000px;}
.y115{bottom:216.180000px;}
.yc8{bottom:219.780000px;}
.y17e{bottom:219.960000px;}
.y1a2{bottom:220.680000px;}
.y1c6{bottom:223.380000px;}
.y41{bottom:223.560000px;}
.ye6{bottom:223.920000px;}
.yf7{bottom:228.240000px;}
.y1e2{bottom:228.600000px;}
.yea{bottom:231.300000px;}
.y237{bottom:232.560000px;}
.y199{bottom:233.280000px;}
.y5b{bottom:233.640000px;}
.y7e{bottom:234.540000px;}
.y13f{bottom:235.225800px;}
.y215{bottom:236.465280px;}
.y1e1{bottom:240.294420px;}
.y8f{bottom:240.300000px;}
.y1f{bottom:243.000000px;}
.y136{bottom:243.842400px;}
.y114{bottom:247.140000px;}
.y1a5{bottom:247.320000px;}
.y1e4{bottom:248.940000px;}
.yc7{bottom:250.740000px;}
.y17d{bottom:250.920000px;}
.y1a1{bottom:251.640000px;}
.y130{bottom:252.507600px;}
.y13e{bottom:252.511380px;}
.y1c5{bottom:254.340000px;}
.y40{bottom:254.700000px;}
.ye5{bottom:255.060000px;}
.y1e0{bottom:257.580000px;}
.yf6{bottom:259.380000px;}
.y135{bottom:261.127980px;}
.y236{bottom:263.700000px;}
.y198{bottom:264.420000px;}
.y5a{bottom:264.780000px;}
.y214{bottom:264.898800px;}
.y12f{bottom:269.793180px;}
.y13d{bottom:269.796960px;}
.y12b{bottom:269.808120px;}
.y8e{bottom:271.260000px;}
.y7d{bottom:273.240000px;}
.y1e{bottom:274.140000px;}
.y134{bottom:278.234280px;}
.y113{bottom:278.280000px;}
.yc6{bottom:280.459440px;}
.y17c{bottom:282.060000px;}
.y1a0{bottom:282.600000px;}
.y1c4{bottom:285.480000px;}
.y3f{bottom:285.660000px;}
.ye4{bottom:286.020000px;}
.y129{bottom:286.560000px;}
.y12e{bottom:286.899480px;}
.y13c{bottom:286.903260px;}
.y12a{bottom:286.914420px;}
.yf5{bottom:290.340000px;}
.y213{bottom:293.332320px;}
.y235{bottom:294.660000px;}
.y197{bottom:295.380000px;}
.y133{bottom:295.519860px;}
.y59{bottom:295.740000px;}
.y1df{bottom:302.040000px;}
.y8d{bottom:302.400000px;}
.y12d{bottom:304.185060px;}
.y13b{bottom:304.188840px;}
.y1d{bottom:305.100000px;}
.yc5{bottom:308.892960px;}
.y112{bottom:309.240000px;}
.y132{bottom:312.805440px;}
.y17b{bottom:313.020000px;}
.y7c{bottom:313.200000px;}
.y19f{bottom:313.740000px;}
.y1c3{bottom:316.440000px;}
.y3e{bottom:316.800000px;}
.ye3{bottom:316.980000px;}
.yf4{bottom:321.300000px;}
.y12c{bottom:321.470640px;}
.y13a{bottom:321.474420px;}
.y212{bottom:321.765840px;}
.y234{bottom:325.800000px;}
.y196{bottom:326.520000px;}
.y58{bottom:326.880000px;}
.y131{bottom:330.091020px;}
.y8c{bottom:333.360000px;}
.y1c{bottom:336.240000px;}
.yc4{bottom:337.326480px;}
.y139{bottom:338.760000px;}
.y111{bottom:340.380000px;}
.y17a{bottom:344.160000px;}
.y7b{bottom:344.340000px;}
.y19e{bottom:344.700000px;}
.y1c2{bottom:347.580000px;}
.y3d{bottom:347.760000px;}
.ye2{bottom:348.120000px;}
.y211{bottom:350.199360px;}
.yf3{bottom:352.440000px;}
.y1de{bottom:354.600000px;}
.y233{bottom:356.760000px;}
.y195{bottom:357.480000px;}
.y57{bottom:357.840000px;}
.y8b{bottom:364.500000px;}
.yc3{bottom:365.760000px;}
.y1b{bottom:367.200000px;}
.y122{bottom:370.800000px;}
.y110{bottom:371.340000px;}
.y7a{bottom:375.300000px;}
.y19d{bottom:375.840000px;}
.y179{bottom:378.540000px;}
.y210{bottom:378.632880px;}
.y3c{bottom:378.900000px;}
.ye1{bottom:379.080000px;}
.y1c1{bottom:381.780000px;}
.yc1{bottom:382.140000px;}
.yf2{bottom:383.400000px;}
.y1dd{bottom:385.560000px;}
.yeb{bottom:386.460000px;}
.y232{bottom:387.900000px;}
.y194{bottom:388.620000px;}
.y56{bottom:388.980000px;}
.y125{bottom:391.685040px;}
.y121{bottom:392.583600px;}
.y128{bottom:392.585040px;}
.yc0{bottom:395.285040px;}
.y8a{bottom:395.460000px;}
.y1a{bottom:398.160000px;}
.y120{bottom:401.940000px;}
.y10f{bottom:402.300000px;}
.yc2{bottom:404.640000px;}
.y79{bottom:406.440000px;}
.y20f{bottom:407.066400px;}
.y178{bottom:409.500000px;}
.y3b{bottom:409.860000px;}
.ye0{bottom:410.220000px;}
.y124{bottom:410.580000px;}
.y127{bottom:411.480000px;}
.y1c0{bottom:412.920000px;}
.ybf{bottom:414.180000px;}
.yf1{bottom:414.540000px;}
.y1dc{bottom:416.700000px;}
.y231{bottom:418.860000px;}
.y193{bottom:419.580000px;}
.y55{bottom:419.940000px;}
.y89{bottom:426.600000px;}
.y19{bottom:429.300000px;}
.y10e{bottom:433.440000px;}
.y20e{bottom:435.499920px;}
.y78{bottom:437.400000px;}
.ybd{bottom:439.740000px;}
.y177{bottom:440.640000px;}
.y3a{bottom:441.000000px;}
.ydf{bottom:441.180000px;}
.y1bf{bottom:443.880000px;}
.yf0{bottom:445.500000px;}
.y1db{bottom:447.660000px;}
.y230{bottom:450.000000px;}
.y192{bottom:450.720000px;}
.y54{bottom:454.320000px;}
.y88{bottom:457.560000px;}
.y18{bottom:460.260000px;}
.ybc{bottom:462.425040px;}
.y20d{bottom:463.933440px;}
.y10d{bottom:464.400000px;}
.y11f{bottom:464.580000px;}
.y77{bottom:468.540000px;}
.y176{bottom:471.600000px;}
.y39{bottom:471.960000px;}
.yde{bottom:472.320000px;}
.y1be{bottom:475.020000px;}
.yef{bottom:476.640000px;}
.y1da{bottom:478.800000px;}
.y22f{bottom:480.960000px;}
.ybb{bottom:481.320000px;}
.y191{bottom:481.680000px;}
.y53{bottom:485.280000px;}
.y87{bottom:488.700000px;}
.y17{bottom:491.400000px;}
.y20c{bottom:492.549120px;}
.y10c{bottom:495.540000px;}
.y76{bottom:499.500000px;}
.y175{bottom:502.740000px;}
.y38{bottom:503.100000px;}
.ydd{bottom:503.280000px;}
.y1bd{bottom:505.980000px;}
.yee{bottom:507.600000px;}
.y1d9{bottom:509.760000px;}
.y22e{bottom:512.100000px;}
.y190{bottom:512.820000px;}
.y52{bottom:516.420000px;}
.y86{bottom:519.660000px;}
.y20b{bottom:520.982640px;}
.y16{bottom:522.360000px;}
.y10b{bottom:526.500000px;}
.yba{bottom:529.560000px;}
.y75{bottom:530.640000px;}
.y174{bottom:533.700000px;}
.y37{bottom:534.060000px;}
.ydc{bottom:534.420000px;}
.yed{bottom:538.740000px;}
.y1d8{bottom:540.900000px;}
.y22d{bottom:543.060000px;}
.y1bc{bottom:545.220000px;}
.y51{bottom:547.380000px;}
.y20a{bottom:549.416160px;}
.y85{bottom:550.800000px;}
.y18f{bottom:551.520000px;}
.y15{bottom:553.500000px;}
.yb4{bottom:555.120000px;}
.y10a{bottom:557.640000px;}
.y74{bottom:561.600000px;}
.y173{bottom:564.660000px;}
.y36{bottom:565.200000px;}
.yb9{bottom:568.267920px;}
.yfe{bottom:569.700000px;}
.ydb{bottom:569.880000px;}
.y1d7{bottom:571.860000px;}
.y22c{bottom:574.200000px;}
.yb6{bottom:577.805040px;}
.y209{bottom:577.849680px;}
.y50{bottom:578.520000px;}
.y84{bottom:581.760000px;}
.y14{bottom:584.460000px;}
.yb3{bottom:587.160000px;}
.yb8{bottom:587.162880px;}
.y1bb{bottom:588.240000px;}
.y18e{bottom:591.480000px;}
.y73{bottom:592.740000px;}
.y172{bottom:595.800000px;}
.y35{bottom:596.160000px;}
.y109{bottom:596.340000px;}
.yb5{bottom:596.700000px;}
.yfd{bottom:600.840000px;}
.y1d6{bottom:603.000000px;}
.y22b{bottom:605.160000px;}
.yb7{bottom:606.240000px;}
.y208{bottom:606.283200px;}
.y4f{bottom:609.480000px;}
.y83{bottom:612.900000px;}
.y13{bottom:615.600000px;}
.yda{bottom:617.590800px;}
.y1ba{bottom:619.200000px;}
.y18d{bottom:622.620000px;}
.y72{bottom:623.700000px;}
.y171{bottom:626.760000px;}
.y34{bottom:627.120000px;}
.yb2{bottom:631.800000px;}
.y1d5{bottom:633.960000px;}
.y207{bottom:634.716720px;}
.yec{bottom:634.860000px;}
.y108{bottom:635.586300px;}
.y22a{bottom:636.120000px;}
.y4e{bottom:640.620000px;}
.y82{bottom:643.860000px;}
.yb1{bottom:644.940000px;}
.yd9{bottom:646.206480px;}
.y12{bottom:646.560000px;}
.y1b9{bottom:650.340000px;}
.y18c{bottom:653.580000px;}
.y71{bottom:654.840000px;}
.y170{bottom:657.900000px;}
.y4c{bottom:658.260000px;}
.y107{bottom:659.700000px;}
.yfc{bottom:662.940000px;}
.y206{bottom:663.150240px;}
.y1d4{bottom:665.100000px;}
.y33{bottom:665.820000px;}
.y229{bottom:667.260000px;}
.yb0{bottom:670.500000px;}
.yd8{bottom:674.640000px;}
.y4d{bottom:674.820000px;}
.y1b8{bottom:681.300000px;}
.yaf{bottom:683.643600px;}
.y18b{bottom:684.720000px;}
.y11{bottom:685.260000px;}
.y70{bottom:685.800000px;}
.y16f{bottom:688.860000px;}
.y4b{bottom:689.220000px;}
.yd7{bottom:690.840000px;}
.y205{bottom:691.583760px;}
.yae{bottom:693.000000px;}
.yfb{bottom:693.900000px;}
.y1d3{bottom:696.060000px;}
.y228{bottom:698.220000px;}
.y106{bottom:702.720000px;}
.yd6{bottom:703.980000px;}
.y32{bottom:705.960000px;}
.y1b7{bottom:712.440000px;}
.y18a{bottom:715.680000px;}
.y6f{bottom:716.940000px;}
.y16e{bottom:720.000000px;}
.y204{bottom:720.017280px;}
.y4a{bottom:720.360000px;}
.y11e{bottom:725.040000px;}
.y10{bottom:725.400000px;}
.y1d2{bottom:727.200000px;}
.yab{bottom:728.100000px;}
.y227{bottom:729.360000px;}
.yd4{bottom:729.540000px;}
.y105{bottom:733.680000px;}
.y31{bottom:736.920000px;}
.yaa{bottom:741.245040px;}
.yd5{bottom:742.680000px;}
.y1b6{bottom:743.400000px;}
.y189{bottom:746.820000px;}
.y6e{bottom:747.900000px;}
.y203{bottom:748.632960px;}
.yad{bottom:750.780000px;}
.y16d{bottom:750.960000px;}
.y49{bottom:751.320000px;}
.y11d{bottom:756.000000px;}
.yf{bottom:756.360000px;}
.y1d1{bottom:758.160000px;}
.ya9{bottom:760.140000px;}
.y226{bottom:760.320000px;}
.y104{bottom:764.820000px;}
.y30{bottom:768.060000px;}
.yd1{bottom:768.240000px;}
.y1b5{bottom:774.540000px;}
.y202{bottom:777.066480px;}
.y188{bottom:777.780000px;}
.yd2{bottom:778.680000px;}
.y6d{bottom:779.040000px;}
.yd3{bottom:781.380000px;}
.y16c{bottom:782.100000px;}
.y48{bottom:782.460000px;}
.ya5{bottom:785.700000px;}
.y11c{bottom:787.140000px;}
.ye{bottom:787.500000px;}
.y225{bottom:791.460000px;}
.y1d0{bottom:792.540000px;}
.y103{bottom:795.780000px;}
.ya4{bottom:798.842880px;}
.y2f{bottom:799.020000px;}
.y1b4{bottom:805.500000px;}
.yce{bottom:806.940000px;}
.ya7{bottom:808.380000px;}
.y187{bottom:808.920000px;}
.y6c{bottom:810.000000px;}
.y16b{bottom:813.060000px;}
.y47{bottom:813.420000px;}
.ycf{bottom:817.380000px;}
.ya3{bottom:817.920000px;}
.y11b{bottom:818.100000px;}
.yd{bottom:818.460000px;}
.yd0{bottom:820.080000px;}
.y200{bottom:821.700000px;}
.y224{bottom:822.420000px;}
.y1cf{bottom:823.500000px;}
.y102{bottom:826.920000px;}
.y2e{bottom:830.160000px;}
.y1b3{bottom:836.640000px;}
.y186{bottom:839.880000px;}
.y6b{bottom:841.140000px;}
.y1ff{bottom:842.214420px;}
.ya1{bottom:843.480000px;}
.y16a{bottom:844.200000px;}
.y46{bottom:844.560000px;}
.ycd{bottom:845.640000px;}
.y11a{bottom:849.240000px;}
.yc{bottom:849.600000px;}
.y223{bottom:853.560000px;}
.y1ce{bottom:854.640000px;}
.ya0{bottom:856.620000px;}
.y101{bottom:857.880000px;}
.y1fe{bottom:859.500000px;}
.y2d{bottom:861.120000px;}
.y1b2{bottom:867.600000px;}
.y185{bottom:871.020000px;}
.y6a{bottom:872.100000px;}
.y169{bottom:875.160000px;}
.y64{bottom:875.520000px;}
.y119{bottom:880.200000px;}
.yb{bottom:880.560000px;}
.y99{bottom:882.180000px;}
.y45{bottom:883.260000px;}
.ycc{bottom:884.340000px;}
.y222{bottom:884.520000px;}
.y1cd{bottom:885.600000px;}
.y100{bottom:889.020000px;}
.y1fd{bottom:891.360000px;}
.y2c{bottom:892.260000px;}
.y9f{bottom:895.327920px;}
.y1b1{bottom:898.740000px;}
.y184{bottom:901.980000px;}
.y69{bottom:903.240000px;}
.y9c{bottom:904.865040px;}
.y63{bottom:906.660000px;}
.y168{bottom:909.540000px;}
.y118{bottom:911.340000px;}
.ya{bottom:911.700000px;}
.y1fc{bottom:911.880000px;}
.y98{bottom:914.220000px;}
.y9e{bottom:914.222880px;}
.y221{bottom:915.660000px;}
.y1cc{bottom:916.740000px;}
.yff{bottom:919.980000px;}
.y2b{bottom:923.220000px;}
.y9b{bottom:923.760000px;}
.y1b0{bottom:929.700000px;}
.y183{bottom:933.120000px;}
.y9d{bottom:933.300000px;}
.y68{bottom:934.200000px;}
.y62{bottom:937.620000px;}
.y9{bottom:942.660000px;}
.y1f9{bottom:943.920000px;}
.y220{bottom:946.620000px;}
.y167{bottom:948.240000px;}
.y1cb{bottom:951.120000px;}
.y2a{bottom:954.360000px;}
.y95{bottom:958.860000px;}
.y1af{bottom:960.840000px;}
.y1fb{bottom:964.434420px;}
.ycb{bottom:964.440000px;}
.y67{bottom:965.340000px;}
.y182{bottom:967.320000px;}
.y61{bottom:968.760000px;}
.y94{bottom:972.000000px;}
.y1f8{bottom:973.080000px;}
.y21f{bottom:977.760000px;}
.y1fa{bottom:981.720000px;}
.y8{bottom:981.900000px;}
.y1ca{bottom:982.080000px;}
.y29{bottom:985.320000px;}
.y166{bottom:986.946480px;}
.y1ae{bottom:995.220000px;}
.y66{bottom:996.300000px;}
.y60{bottom:999.720000px;}
.y21e{bottom:1008.720000px;}
.y1c9{bottom:1013.220000px;}
.y1f4{bottom:1013.580000px;}
.y165{bottom:1015.380000px;}
.y28{bottom:1016.460000px;}
.y5f{bottom:1030.860000px;}
.y15e{bottom:1031.580000px;}
.y7{bottom:1033.920000px;}
.y1f7{bottom:1034.094420px;}
.y65{bottom:1035.540000px;}
.y21d{bottom:1039.860000px;}
.y1f3{bottom:1042.740000px;}
.y15d{bottom:1043.403120px;}
.y157{bottom:1043.433000px;}
.y1ad{bottom:1044.180000px;}
.y27{bottom:1047.420000px;}
.y1f6{bottom:1051.380000px;}
.y164{bottom:1052.077680px;}
.y15c{bottom:1060.688700px;}
.y156{bottom:1060.718580px;}
.y14e{bottom:1063.634400px;}
.y14d{bottom:1067.227920px;}
.y163{bottom:1069.363260px;}
.y151{bottom:1069.368840px;}
.y5e{bottom:1069.560000px;}
.y21c{bottom:1070.820000px;}
.y6{bottom:1073.886480px;}
.y1ac{bottom:1075.320000px;}
.y15b{bottom:1077.974280px;}
.y155{bottom:1078.004160px;}
.y26{bottom:1078.560000px;}
.y1f2{bottom:1083.420000px;}
.y14c{bottom:1086.305040px;}
.y162{bottom:1086.648840px;}
.y150{bottom:1086.654420px;}
.y15a{bottom:1095.259860px;}
.y154{bottom:1095.289740px;}
.y1f1{bottom:1095.294420px;}
.y5{bottom:1101.609000px;}
.y21b{bottom:1101.960000px;}
.y161{bottom:1103.934420px;}
.y14f{bottom:1103.940000px;}
.y14b{bottom:1105.200000px;}
.y1ab{bottom:1106.280000px;}
.y25{bottom:1109.520000px;}
.y159{bottom:1112.545440px;}
.y153{bottom:1112.575320px;}
.y1f0{bottom:1112.580000px;}
.y160{bottom:1121.220000px;}
.y4{bottom:1129.140000px;}
.y158{bottom:1129.831020px;}
.y152{bottom:1129.860900px;}
.y21a{bottom:1132.920000px;}
.y1ef{bottom:1135.980000px;}
.y1aa{bottom:1137.240000px;}
.y24{bottom:1140.660000px;}
.y149{bottom:1153.080000px;}
.y1ee{bottom:1156.320000px;}
.y23{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h18{height:18.900000px;}
.h27{height:34.560000px;}
.h1a{height:37.029375px;}
.ha{height:37.800000px;}
.hd{height:37.980000px;}
.h14{height:37.981500px;}
.h2c{height:51.658500px;}
.h2a{height:51.660000px;}
.h2b{height:51.840000px;}
.h23{height:52.435898px;}
.h22{height:52.931953px;}
.h29{height:53.252930px;}
.h13{height:56.880000px;}
.h11{height:56.881500px;}
.hf{height:57.060000px;}
.h1b{height:58.089375px;}
.hc{height:58.121719px;}
.h1c{height:58.283437px;}
.h4{height:58.671562px;}
.h19{height:58.736250px;}
.h9{height:59.027344px;}
.h3{height:63.175781px;}
.h1d{height:63.351562px;}
.h2{height:63.773438px;}
.h8{height:63.843750px;}
.h7{height:64.160156px;}
.h2f{height:68.938500px;}
.h2e{height:68.940000px;}
.h2d{height:69.120000px;}
.h1f{height:74.160000px;}
.h6{height:75.067383px;}
.hb{height:75.780000px;}
.h16{height:75.960000px;}
.h5{height:85.333008px;}
.h26{height:86.218500px;}
.h25{height:86.756113px;}
.h17{height:95.547319px;}
.h12{height:96.275959px;}
.h10{height:96.825802px;}
.h1e{height:97.181584px;}
.h28{height:120.780000px;}
.h21{height:122.995898px;}
.h15{height:134.251403px;}
.he{height:134.430199px;}
.h20{height:134.607184px;}
.h24{height:155.338500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:80.641500px;}
.w4{width:91.441500px;}
.w3{width:95.940000px;}
.w2{width:98.640000px;}
.wd{width:108.721500px;}
.wc{width:117.180000px;}
.wb{width:121.140000px;}
.w5{width:126.541500px;}
.w6{width:141.120000px;}
.w8{width:184.320000px;}
.w7{width:237.060000px;}
.w9{width:255.960000px;}
.we{width:260.820000px;}
.wf{width:281.340000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:7.740000px;}
.xb{left:9.360000px;}
.x2c{left:10.440000px;}
.x20{left:15.480000px;}
.x1e{left:16.560000px;}
.xd{left:17.640000px;}
.x8{left:21.240000px;}
.x1c{left:23.400000px;}
.x2b{left:25.020000px;}
.x13{left:26.820000px;}
.x17{left:28.080000px;}
.x9{left:30.060000px;}
.x15{left:32.040000px;}
.x12{left:33.300000px;}
.xf{left:34.740000px;}
.x10{left:35.820000px;}
.x26{left:38.880000px;}
.x1b{left:40.860000px;}
.x22{left:48.060000px;}
.x24{left:59.580000px;}
.x2{left:106.200000px;}
.x14{left:114.840000px;}
.x3a{left:126.543960px;}
.x5{left:133.200000px;}
.x61{left:137.160000px;}
.x6{left:139.320000px;}
.x3b{left:143.460000px;}
.x39{left:156.600000px;}
.x4{left:159.300000px;}
.x7{left:229.140000px;}
.x36{left:235.980000px;}
.x2e{left:239.768640px;}
.x62{left:243.000000px;}
.x2d{left:247.866480px;}
.x63{left:250.740000px;}
.x38{left:258.480000px;}
.x50{left:259.920000px;}
.x56{left:262.980000px;}
.x57{left:266.939100px;}
.x42{left:270.365580px;}
.x51{left:275.935680px;}
.x3c{left:277.728480px;}
.x3{left:295.380000px;}
.xa{left:328.500000px;}
.x34{left:344.880000px;}
.x37{left:352.620000px;}
.x3d{left:356.040000px;}
.x3f{left:366.115680px;}
.x43{left:369.910800px;}
.x3e{left:374.760000px;}
.xc{left:425.160000px;}
.x1{left:432.900000px;}
.x52{left:437.400000px;}
.x44{left:451.438380px;}
.x32{left:452.880000px;}
.x58{left:455.750820px;}
.x46{left:459.356580px;}
.x59{left:462.040560px;}
.x41{left:463.860720px;}
.x45{left:467.454060px;}
.x40{left:470.700000px;}
.x53{left:472.316760px;}
.x64{left:504.540000px;}
.x65{left:512.280000px;}
.xe{left:517.500000px;}
.x35{left:529.920000px;}
.x25{left:532.433520px;}
.x16{left:545.580000px;}
.x28{left:546.660000px;}
.x29{left:552.787200px;}
.x21{left:554.580000px;}
.x2f{left:562.887360px;}
.x1d{left:563.930640px;}
.x5a{left:566.426340px;}
.x5d{left:570.400380px;}
.x5c{left:571.655340px;}
.x47{left:572.945400px;}
.x4c{left:574.558920px;}
.x5b{left:577.586520px;}
.x54{left:579.058200px;}
.x4a{left:581.760000px;}
.x48{left:584.643420px;}
.x4b{left:586.794780px;}
.x49{left:588.423240px;}
.x11{left:644.760000px;}
.x18{left:660.060000px;}
.x19{left:661.865040px;}
.x23{left:663.840000px;}
.x2a{left:667.070640px;}
.x1f{left:672.120000px;}
.x55{left:673.381080px;}
.x5e{left:674.460000px;}
.x27{left:678.960000px;}
.x31{left:680.941440px;}
.x30{left:682.200000px;}
.x60{left:683.453880px;}
.x1a{left:690.132960px;}
.x4f{left:691.926480px;}
.x4d{left:693.540000px;}
.x4e{left:697.319820px;}
.x5f{left:707.761260px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:30.065920pt;}
.v1{vertical-align:33.914880pt;}
.v2{vertical-align:62.720000pt;}
.ls4a{letter-spacing:-1.280000pt;}
.ls3f{letter-spacing:-0.942080pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.765440pt;}
.ls3b{letter-spacing:-0.647680pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.529920pt;}
.ls69{letter-spacing:-0.512000pt;}
.ls3a{letter-spacing:-0.412160pt;}
.ls42{letter-spacing:-0.384000pt;}
.ls3c{letter-spacing:-0.353280pt;}
.ls58{letter-spacing:-0.318720pt;}
.ls27{letter-spacing:-0.299520pt;}
.ls8{letter-spacing:-0.294400pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.235520pt;}
.ls65{letter-spacing:-0.212480pt;}
.lsd{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.117760pt;}
.ls64{letter-spacing:-0.106240pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls56{letter-spacing:-0.053120pt;}
.ls7{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.053120pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls53{letter-spacing:0.106240pt;}
.ls36{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5a{letter-spacing:0.159360pt;}
.ls66{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.170240pt;}
.ls14{letter-spacing:0.192000pt;}
.ls57{letter-spacing:0.212480pt;}
.ls63{letter-spacing:0.239040pt;}
.ls12{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.294400pt;}
.lsa{letter-spacing:0.299520pt;}
.ls54{letter-spacing:0.318720pt;}
.ls5b{letter-spacing:0.320000pt;}
.ls62{letter-spacing:0.339968pt;}
.ls9{letter-spacing:0.340480pt;}
.ls22{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls4e{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls46{letter-spacing:2.560000pt;}
.ls15{letter-spacing:2.566400pt;}
.ls67{letter-spacing:2.708480pt;}
.ls16{letter-spacing:3.200000pt;}
.ls20{letter-spacing:3.333120pt;}
.ls1f{letter-spacing:3.840000pt;}
.ls17{letter-spacing:4.480000pt;}
.ls4b{letter-spacing:5.120000pt;}
.ls24{letter-spacing:5.760000pt;}
.ls48{letter-spacing:6.400000pt;}
.ls19{letter-spacing:7.040000pt;}
.ls2{letter-spacing:7.680000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls26{letter-spacing:8.960000pt;}
.ls1a{letter-spacing:9.600000pt;}
.ls5c{letter-spacing:10.240000pt;}
.ls37{letter-spacing:10.880000pt;}
.ls2a{letter-spacing:11.520000pt;}
.ls23{letter-spacing:14.080000pt;}
.ls44{letter-spacing:14.720000pt;}
.ls28{letter-spacing:15.360000pt;}
.ls1e{letter-spacing:16.000000pt;}
.ls40{letter-spacing:16.128000pt;}
.ls47{letter-spacing:16.640000pt;}
.ls4d{letter-spacing:17.280000pt;}
.ls6a{letter-spacing:17.920000pt;}
.ls2b{letter-spacing:18.560000pt;}
.ls49{letter-spacing:19.200000pt;}
.ls45{letter-spacing:19.328000pt;}
.ls29{letter-spacing:19.840000pt;}
.ls38{letter-spacing:20.480000pt;}
.ls68{letter-spacing:21.760000pt;}
.ls5d{letter-spacing:22.400000pt;}
.ls13{letter-spacing:23.680000pt;}
.ls5{letter-spacing:26.880000pt;}
.ls41{letter-spacing:27.648000pt;}
.ls1d{letter-spacing:30.208000pt;}
.ls4c{letter-spacing:30.720000pt;}
.ls21{letter-spacing:33.280000pt;}
.ls10{letter-spacing:33.920000pt;}
.ls61{letter-spacing:34.560000pt;}
.ls5f{letter-spacing:39.639680pt;}
.ls3{letter-spacing:43.520000pt;}
.ls5e{letter-spacing:45.440000pt;}
.ls25{letter-spacing:54.400000pt;}
.lsf{letter-spacing:56.903680pt;}
.ls60{letter-spacing:85.760000pt;}
.ls2f{letter-spacing:120.939520pt;}
.ls34{letter-spacing:153.617920pt;}
.ls32{letter-spacing:153.635584pt;}
.ls4f{letter-spacing:156.797440pt;}
.ls52{letter-spacing:161.920000pt;}
.ls33{letter-spacing:163.215360pt;}
.ls2e{letter-spacing:164.451840pt;}
.ls50{letter-spacing:177.287680pt;}
.ls55{letter-spacing:177.420800pt;}
.ls51{letter-spacing:200.957440pt;}
.ls31{letter-spacing:279.680000pt;}
.ls2d{letter-spacing:309.120000pt;}
.ls30{letter-spacing:354.575360pt;}
.ws1d{word-spacing:-53.120000pt;}
.wsa8{word-spacing:-19.019520pt;}
.ws50{word-spacing:-18.420480pt;}
.ws61{word-spacing:-16.640000pt;}
.ws1e{word-spacing:-16.256000pt;}
.ws89{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws31{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws60{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.wsbc{word-spacing:-15.360000pt;}
.ws88{word-spacing:-15.168000pt;}
.ws6f{word-spacing:-15.014400pt;}
.ws69{word-spacing:-14.837760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws68{word-spacing:-14.602240pt;}
.ws7e{word-spacing:-14.484480pt;}
.ws6b{word-spacing:-14.425600pt;}
.ws6d{word-spacing:-14.366720pt;}
.ws6a{word-spacing:-14.307840pt;}
.ws6e{word-spacing:-14.190080pt;}
.ws6c{word-spacing:-14.072320pt;}
.ws70{word-spacing:-13.954560pt;}
.wscf{word-spacing:-13.777920pt;}
.wsaf{word-spacing:-13.598720pt;}
.wsb9{word-spacing:-13.492480pt;}
.wsb8{word-spacing:-13.386240pt;}
.wscb{word-spacing:-13.333120pt;}
.wsba{word-spacing:-13.280000pt;}
.wsae{word-spacing:-13.226880pt;}
.wsca{word-spacing:-13.173760pt;}
.wsbb{word-spacing:-12.961280pt;}
.ws9f{word-spacing:-10.880000pt;}
.ws42{word-spacing:-3.968000pt;}
.wsd4{word-spacing:-3.944960pt;}
.ws3b{word-spacing:-3.840000pt;}
.ws43{word-spacing:-3.712000pt;}
.ws44{word-spacing:-3.584000pt;}
.wsc5{word-spacing:-3.328000pt;}
.wsd2{word-spacing:-3.297280pt;}
.ws3a{word-spacing:-3.200000pt;}
.wsd5{word-spacing:-3.179520pt;}
.wsdf{word-spacing:-3.072000pt;}
.wse0{word-spacing:-2.944000pt;}
.wscd{word-spacing:-2.816000pt;}
.ws8e{word-spacing:-2.688000pt;}
.ws8c{word-spacing:-2.560000pt;}
.wse2{word-spacing:-2.304000pt;}
.ws62{word-spacing:-1.920000pt;}
.ws2a{word-spacing:-1.664000pt;}
.ws7b{word-spacing:-1.413120pt;}
.ws34{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.024000pt;}
.ws79{word-spacing:-0.942080pt;}
.wsbd{word-spacing:-0.796800pt;}
.wsa0{word-spacing:-0.768000pt;}
.ws75{word-spacing:-0.765440pt;}
.ws77{word-spacing:-0.647680pt;}
.ws30{word-spacing:-0.640000pt;}
.wse1{word-spacing:-0.512000pt;}
.ws7{word-spacing:-0.510720pt;}
.wsa9{word-spacing:-0.449280pt;}
.ws8d{word-spacing:-0.448000pt;}
.ws4c{word-spacing:-0.384000pt;}
.wsb3{word-spacing:-0.318720pt;}
.ws9{word-spacing:-0.299520pt;}
.ws76{word-spacing:-0.294400pt;}
.ws23{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.170240pt;}
.wsb7{word-spacing:-0.159360pt;}
.ws19{word-spacing:-0.128000pt;}
.ws78{word-spacing:-0.117760pt;}
.wsb5{word-spacing:-0.106240pt;}
.wsb1{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.053120pt;}
.wsb6{word-spacing:0.106240pt;}
.ws74{word-spacing:0.117760pt;}
.ws3c{word-spacing:0.128000pt;}
.ws10{word-spacing:0.192000pt;}
.wsb4{word-spacing:0.212480pt;}
.wsd3{word-spacing:0.235520pt;}
.wsd{word-spacing:0.256000pt;}
.wsd0{word-spacing:0.265600pt;}
.ws6{word-spacing:0.294400pt;}
.ws52{word-spacing:0.299520pt;}
.wsb2{word-spacing:0.318720pt;}
.ws80{word-spacing:0.353280pt;}
.ws82{word-spacing:0.412160pt;}
.ws4b{word-spacing:0.512000pt;}
.ws7a{word-spacing:0.529920pt;}
.ws2b{word-spacing:0.640000pt;}
.wsd1{word-spacing:0.647680pt;}
.ws81{word-spacing:0.765440pt;}
.wse{word-spacing:0.832000pt;}
.ws4a{word-spacing:0.896000pt;}
.ws7c{word-spacing:0.942080pt;}
.wse7{word-spacing:1.152000pt;}
.ws55{word-spacing:1.280000pt;}
.wsd8{word-spacing:1.408000pt;}
.wsa6{word-spacing:1.472000pt;}
.ws95{word-spacing:1.536000pt;}
.wse6{word-spacing:1.664000pt;}
.ws9d{word-spacing:1.792000pt;}
.ws35{word-spacing:1.920000pt;}
.wseb{word-spacing:2.048000pt;}
.ws65{word-spacing:2.176000pt;}
.wsd6{word-spacing:2.296320pt;}
.ws7f{word-spacing:2.304000pt;}
.ws92{word-spacing:2.368000pt;}
.ws17{word-spacing:2.432000pt;}
.ws18{word-spacing:2.560000pt;}
.wsd7{word-spacing:2.590720pt;}
.wsd9{word-spacing:2.624000pt;}
.ws2d{word-spacing:2.816000pt;}
.ws8f{word-spacing:2.944000pt;}
.ws90{word-spacing:3.072000pt;}
.wsb{word-spacing:3.200000pt;}
.wsda{word-spacing:3.328000pt;}
.ws9e{word-spacing:3.456000pt;}
.ws49{word-spacing:3.712000pt;}
.ws39{word-spacing:3.840000pt;}
.wsc3{word-spacing:4.096000pt;}
.ws2e{word-spacing:4.480000pt;}
.ws3f{word-spacing:4.736000pt;}
.ws54{word-spacing:4.992000pt;}
.ws53{word-spacing:5.120000pt;}
.wse3{word-spacing:5.248000pt;}
.wse4{word-spacing:5.376000pt;}
.ws9c{word-spacing:5.632000pt;}
.ws41{word-spacing:5.760000pt;}
.ws11{word-spacing:6.016000pt;}
.wsc1{word-spacing:6.208000pt;}
.wsac{word-spacing:6.272000pt;}
.wsab{word-spacing:6.400000pt;}
.ws94{word-spacing:6.528000pt;}
.wsad{word-spacing:6.656000pt;}
.ws1b{word-spacing:7.040000pt;}
.wsdb{word-spacing:7.168000pt;}
.wsdc{word-spacing:7.296000pt;}
.ws14{word-spacing:7.680000pt;}
.ws25{word-spacing:7.936000pt;}
.ws2f{word-spacing:8.192000pt;}
.ws29{word-spacing:8.320000pt;}
.ws5d{word-spacing:8.832000pt;}
.ws20{word-spacing:8.960000pt;}
.ws37{word-spacing:9.152000pt;}
.ws16{word-spacing:9.216000pt;}
.ws4d{word-spacing:9.600000pt;}
.ws96{word-spacing:9.856000pt;}
.ws46{word-spacing:10.240000pt;}
.wsbf{word-spacing:10.496000pt;}
.wse8{word-spacing:10.624000pt;}
.ws83{word-spacing:10.880000pt;}
.wsea{word-spacing:10.944000pt;}
.wsaa{word-spacing:11.392000pt;}
.ws66{word-spacing:11.520000pt;}
.ws38{word-spacing:12.160000pt;}
.wse5{word-spacing:12.288000pt;}
.ws3e{word-spacing:12.800000pt;}
.wsbe{word-spacing:13.056000pt;}
.ws4e{word-spacing:13.440000pt;}
.wsf{word-spacing:14.080000pt;}
.ws58{word-spacing:14.336000pt;}
.ws5c{word-spacing:14.720000pt;}
.ws64{word-spacing:15.232000pt;}
.ws40{word-spacing:15.360000pt;}
.ws87{word-spacing:15.808000pt;}
.ws86{word-spacing:15.872000pt;}
.ws85{word-spacing:16.000000pt;}
.wsc{word-spacing:16.640000pt;}
.ws97{word-spacing:16.896000pt;}
.wsc0{word-spacing:17.216000pt;}
.ws93{word-spacing:17.280000pt;}
.ws91{word-spacing:17.792000pt;}
.ws32{word-spacing:17.920000pt;}
.wsed{word-spacing:18.048000pt;}
.ws33{word-spacing:18.176000pt;}
.ws8a{word-spacing:18.432000pt;}
.ws8b{word-spacing:18.496000pt;}
.ws67{word-spacing:18.560000pt;}
.ws4f{word-spacing:19.200000pt;}
.wsce{word-spacing:19.712000pt;}
.ws51{word-spacing:19.840000pt;}
.wsa1{word-spacing:20.352000pt;}
.ws7d{word-spacing:20.480000pt;}
.wsde{word-spacing:21.760000pt;}
.wsdd{word-spacing:22.016000pt;}
.wsa3{word-spacing:22.272000pt;}
.ws36{word-spacing:22.400000pt;}
.wsc2{word-spacing:22.784000pt;}
.ws3d{word-spacing:23.040000pt;}
.wse9{word-spacing:23.680000pt;}
.ws24{word-spacing:24.960000pt;}
.wsc6{word-spacing:25.600000pt;}
.wsa5{word-spacing:26.240000pt;}
.ws1a{word-spacing:26.880000pt;}
.ws9b{word-spacing:27.520000pt;}
.wsec{word-spacing:27.776000pt;}
.ws63{word-spacing:28.032000pt;}
.ws1c{word-spacing:28.160000pt;}
.ws5f{word-spacing:28.672000pt;}
.ws5e{word-spacing:28.800000pt;}
.wsa4{word-spacing:30.720000pt;}
.ws13{word-spacing:31.360000pt;}
.ws12{word-spacing:31.616000pt;}
.wsc9{word-spacing:32.000000pt;}
.ws56{word-spacing:32.640000pt;}
.ws57{word-spacing:32.896000pt;}
.ws48{word-spacing:33.536000pt;}
.ws21{word-spacing:33.920000pt;}
.ws22{word-spacing:34.048000pt;}
.wsa7{word-spacing:34.432000pt;}
.wscc{word-spacing:34.816000pt;}
.ws27{word-spacing:35.200000pt;}
.ws28{word-spacing:35.456000pt;}
.wsa{word-spacing:36.096000pt;}
.ws15{word-spacing:36.480000pt;}
.ws84{word-spacing:37.120000pt;}
.ws9a{word-spacing:37.632000pt;}
.ws98{word-spacing:37.760000pt;}
.ws99{word-spacing:38.400000pt;}
.ws72{word-spacing:43.392000pt;}
.ws71{word-spacing:43.520000pt;}
.ws73{word-spacing:43.776000pt;}
.wsc4{word-spacing:45.440000pt;}
.wsa2{word-spacing:45.696000pt;}
.ws5a{word-spacing:54.400000pt;}
.ws5b{word-spacing:54.656000pt;}
.ws59{word-spacing:55.040000pt;}
.ws45{word-spacing:73.600000pt;}
.ws26{word-spacing:75.520000pt;}
.wsc7{word-spacing:85.760000pt;}
.wsc8{word-spacing:86.016000pt;}
._41{margin-left:-85.948416pt;}
._3d{margin-left:-14.324480pt;}
._3a{margin-left:-11.147264pt;}
._39{margin-left:-10.228736pt;}
._37{margin-left:-8.192000pt;}
._1c{margin-left:-4.032000pt;}
._10{margin-left:-3.136000pt;}
._24{margin-left:-2.112000pt;}
._1{margin-left:-0.971520pt;}
._0{width:1.012736pt;}
._3{width:2.624000pt;}
._4{width:3.712000pt;}
._8{width:5.440000pt;}
._9{width:6.595584pt;}
._a{width:8.214528pt;}
._e{width:9.513472pt;}
._18{width:10.752000pt;}
._1d{width:12.160000pt;}
._7{width:13.522944pt;}
._6{width:14.603264pt;}
._5{width:17.163264pt;}
._17{width:18.699264pt;}
._20{width:19.968000pt;}
._3f{width:20.864000pt;}
._21{width:21.760000pt;}
._19{width:23.168000pt;}
._14{width:24.161024pt;}
._29{width:25.149952pt;}
._f{width:26.304000pt;}
._1e{width:27.648000pt;}
._1f{width:28.672000pt;}
._28{width:29.665024pt;}
._3e{width:30.720000pt;}
._25{width:32.192000pt;}
._23{width:33.152000pt;}
._11{width:34.401024pt;}
._2{width:35.798528pt;}
._b{width:37.109248pt;}
._38{width:38.016000pt;}
._40{width:39.104000pt;}
._d{width:42.665472pt;}
._c{width:44.246528pt;}
._3b{width:45.248000pt;}
._3c{width:46.196736pt;}
._15{width:47.808000pt;}
._16{width:48.790528pt;}
._26{width:54.016000pt;}
._27{width:54.987264pt;}
._13{width:60.747520pt;}
._12{width:61.696000pt;}
._1b{width:65.600000pt;}
._1a{width:66.763520pt;}
._22{width:73.408000pt;}
._42{width:85.696000pt;}
._31{width:127.004160pt;}
._34{width:135.011840pt;}
._30{width:163.185920pt;}
._2d{width:169.456640pt;}
._2e{width:180.796928pt;}
._2b{width:195.516928pt;}
._2a{width:199.591424pt;}
._36{width:205.012480pt;}
._35{width:209.029888pt;}
._2c{width:214.382080pt;}
._33{width:230.397440pt;}
._43{width:338.353920pt;}
._2f{width:354.740224pt;}
._32{width:395.673600pt;}
._44{width:420.248320pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:2.880000pt;}
.y97{bottom:3.200000pt;}
.ya8{bottom:3.359867pt;}
.y14a{bottom:18.240000pt;}
.y96{bottom:20.000000pt;}
.ya2{bottom:20.160000pt;}
.y1e3{bottom:33.440000pt;}
.y1e8{bottom:33.600000pt;}
.yac{bottom:36.960000pt;}
.ya6{bottom:37.120000pt;}
.y201{bottom:48.800000pt;}
.y1f5{bottom:48.960000pt;}
.y2{bottom:50.720000pt;}
.y123{bottom:52.320000pt;}
.y9a{bottom:53.760000pt;}
.ybe{bottom:53.920000pt;}
.y145{bottom:64.160000pt;}
.y1{bottom:69.120000pt;}
.y15f{bottom:94.880000pt;}
.y1a9{bottom:98.720000pt;}
.y93{bottom:103.200000pt;}
.y219{bottom:108.932480pt;}
.y1ec{bottom:109.760000pt;}
.y181{bottom:112.640000pt;}
.y1c8{bottom:112.800000pt;}
.y144{bottom:113.600000pt;}
.y44{bottom:116.000000pt;}
.ye9{bottom:116.320000pt;}
.yfa{bottom:120.160000pt;}
.y1eb{bottom:120.315040pt;}
.y23a{bottom:124.000000pt;}
.y19c{bottom:124.640000pt;}
.y138{bottom:125.600000pt;}
.y81{bottom:125.760000pt;}
.y1a8{bottom:126.400000pt;}
.y1ed{bottom:128.000000pt;}
.y92{bottom:130.720000pt;}
.y148{bottom:131.829440pt;}
.y22{bottom:133.280000pt;}
.y218{bottom:134.206720pt;}
.y1ea{bottom:135.680000pt;}
.y117{bottom:136.960000pt;}
.y141{bottom:138.242560pt;}
.y143{bottom:139.514400pt;}
.yca{bottom:140.160000pt;}
.y180{bottom:140.320000pt;}
.y1a4{bottom:140.960000pt;}
.y43{bottom:143.520000pt;}
.ye8{bottom:143.840000pt;}
.y147{bottom:147.035040pt;}
.yf9{bottom:147.680000pt;}
.y239{bottom:151.520000pt;}
.y19b{bottom:152.160000pt;}
.y5d{bottom:152.480000pt;}
.y80{bottom:153.280000pt;}
.y1a7{bottom:153.920000pt;}
.y142{bottom:154.720000pt;}
.y140{bottom:155.200000pt;}
.y1e7{bottom:156.480000pt;}
.y91{bottom:158.400000pt;}
.y217{bottom:159.480960pt;}
.y21{bottom:160.800000pt;}
.y146{bottom:162.400000pt;}
.y116{bottom:164.480000pt;}
.y1e6{bottom:167.035040pt;}
.yc9{bottom:167.680000pt;}
.y17f{bottom:167.840000pt;}
.y1c7{bottom:168.000000pt;}
.y1a3{bottom:168.480000pt;}
.y42{bottom:171.200000pt;}
.ye7{bottom:171.520000pt;}
.y1e9{bottom:174.720000pt;}
.yf8{bottom:175.360000pt;}
.y238{bottom:179.200000pt;}
.y19a{bottom:179.840000pt;}
.y5c{bottom:180.160000pt;}
.y7f{bottom:180.960000pt;}
.y1a6{bottom:181.600000pt;}
.y1e5{bottom:182.400000pt;}
.y216{bottom:184.755200pt;}
.y90{bottom:185.920000pt;}
.y20{bottom:188.480000pt;}
.y137{bottom:190.880000pt;}
.y115{bottom:192.160000pt;}
.yc8{bottom:195.360000pt;}
.y17e{bottom:195.520000pt;}
.y1a2{bottom:196.160000pt;}
.y1c6{bottom:198.560000pt;}
.y41{bottom:198.720000pt;}
.ye6{bottom:199.040000pt;}
.yf7{bottom:202.880000pt;}
.y1e2{bottom:203.200000pt;}
.yea{bottom:205.600000pt;}
.y237{bottom:206.720000pt;}
.y199{bottom:207.360000pt;}
.y5b{bottom:207.680000pt;}
.y7e{bottom:208.480000pt;}
.y13f{bottom:209.089600pt;}
.y215{bottom:210.191360pt;}
.y1e1{bottom:213.595040pt;}
.y8f{bottom:213.600000pt;}
.y1f{bottom:216.000000pt;}
.y136{bottom:216.748800pt;}
.y114{bottom:219.680000pt;}
.y1a5{bottom:219.840000pt;}
.y1e4{bottom:221.280000pt;}
.yc7{bottom:222.880000pt;}
.y17d{bottom:223.040000pt;}
.y1a1{bottom:223.680000pt;}
.y130{bottom:224.451200pt;}
.y13e{bottom:224.454560pt;}
.y1c5{bottom:226.080000pt;}
.y40{bottom:226.400000pt;}
.ye5{bottom:226.720000pt;}
.y1e0{bottom:228.960000pt;}
.yf6{bottom:230.560000pt;}
.y135{bottom:232.113760pt;}
.y236{bottom:234.400000pt;}
.y198{bottom:235.040000pt;}
.y5a{bottom:235.360000pt;}
.y214{bottom:235.465600pt;}
.y12f{bottom:239.816160pt;}
.y13d{bottom:239.819520pt;}
.y12b{bottom:239.829440pt;}
.y8e{bottom:241.120000pt;}
.y7d{bottom:242.880000pt;}
.y1e{bottom:243.680000pt;}
.y134{bottom:247.319360pt;}
.y113{bottom:247.360000pt;}
.yc6{bottom:249.297280pt;}
.y17c{bottom:250.720000pt;}
.y1a0{bottom:251.200000pt;}
.y1c4{bottom:253.760000pt;}
.y3f{bottom:253.920000pt;}
.ye4{bottom:254.240000pt;}
.y129{bottom:254.720000pt;}
.y12e{bottom:255.021760pt;}
.y13c{bottom:255.025120pt;}
.y12a{bottom:255.035040pt;}
.yf5{bottom:258.080000pt;}
.y213{bottom:260.739840pt;}
.y235{bottom:261.920000pt;}
.y197{bottom:262.560000pt;}
.y133{bottom:262.684320pt;}
.y59{bottom:262.880000pt;}
.y1df{bottom:268.480000pt;}
.y8d{bottom:268.800000pt;}
.y12d{bottom:270.386720pt;}
.y13b{bottom:270.390080pt;}
.y1d{bottom:271.200000pt;}
.yc5{bottom:274.571520pt;}
.y112{bottom:274.880000pt;}
.y132{bottom:278.049280pt;}
.y17b{bottom:278.240000pt;}
.y7c{bottom:278.400000pt;}
.y19f{bottom:278.880000pt;}
.y1c3{bottom:281.280000pt;}
.y3e{bottom:281.600000pt;}
.ye3{bottom:281.760000pt;}
.yf4{bottom:285.600000pt;}
.y12c{bottom:285.751680pt;}
.y13a{bottom:285.755040pt;}
.y212{bottom:286.014080pt;}
.y234{bottom:289.600000pt;}
.y196{bottom:290.240000pt;}
.y58{bottom:290.560000pt;}
.y131{bottom:293.414240pt;}
.y8c{bottom:296.320000pt;}
.y1c{bottom:298.880000pt;}
.yc4{bottom:299.845760pt;}
.y139{bottom:301.120000pt;}
.y111{bottom:302.560000pt;}
.y17a{bottom:305.920000pt;}
.y7b{bottom:306.080000pt;}
.y19e{bottom:306.400000pt;}
.y1c2{bottom:308.960000pt;}
.y3d{bottom:309.120000pt;}
.ye2{bottom:309.440000pt;}
.y211{bottom:311.288320pt;}
.yf3{bottom:313.280000pt;}
.y1de{bottom:315.200000pt;}
.y233{bottom:317.120000pt;}
.y195{bottom:317.760000pt;}
.y57{bottom:318.080000pt;}
.y8b{bottom:324.000000pt;}
.yc3{bottom:325.120000pt;}
.y1b{bottom:326.400000pt;}
.y122{bottom:329.600000pt;}
.y110{bottom:330.080000pt;}
.y7a{bottom:333.600000pt;}
.y19d{bottom:334.080000pt;}
.y179{bottom:336.480000pt;}
.y210{bottom:336.562560pt;}
.y3c{bottom:336.800000pt;}
.ye1{bottom:336.960000pt;}
.y1c1{bottom:339.360000pt;}
.yc1{bottom:339.680000pt;}
.yf2{bottom:340.800000pt;}
.y1dd{bottom:342.720000pt;}
.yeb{bottom:343.520000pt;}
.y232{bottom:344.800000pt;}
.y194{bottom:345.440000pt;}
.y56{bottom:345.760000pt;}
.y125{bottom:348.164480pt;}
.y121{bottom:348.963200pt;}
.y128{bottom:348.964480pt;}
.yc0{bottom:351.364480pt;}
.y8a{bottom:351.520000pt;}
.y1a{bottom:353.920000pt;}
.y120{bottom:357.280000pt;}
.y10f{bottom:357.600000pt;}
.yc2{bottom:359.680000pt;}
.y79{bottom:361.280000pt;}
.y20f{bottom:361.836800pt;}
.y178{bottom:364.000000pt;}
.y3b{bottom:364.320000pt;}
.ye0{bottom:364.640000pt;}
.y124{bottom:364.960000pt;}
.y127{bottom:365.760000pt;}
.y1c0{bottom:367.040000pt;}
.ybf{bottom:368.160000pt;}
.yf1{bottom:368.480000pt;}
.y1dc{bottom:370.400000pt;}
.y231{bottom:372.320000pt;}
.y193{bottom:372.960000pt;}
.y55{bottom:373.280000pt;}
.y89{bottom:379.200000pt;}
.y19{bottom:381.600000pt;}
.y10e{bottom:385.280000pt;}
.y20e{bottom:387.111040pt;}
.y78{bottom:388.800000pt;}
.ybd{bottom:390.880000pt;}
.y177{bottom:391.680000pt;}
.y3a{bottom:392.000000pt;}
.ydf{bottom:392.160000pt;}
.y1bf{bottom:394.560000pt;}
.yf0{bottom:396.000000pt;}
.y1db{bottom:397.920000pt;}
.y230{bottom:400.000000pt;}
.y192{bottom:400.640000pt;}
.y54{bottom:403.840000pt;}
.y88{bottom:406.720000pt;}
.y18{bottom:409.120000pt;}
.ybc{bottom:411.044480pt;}
.y20d{bottom:412.385280pt;}
.y10d{bottom:412.800000pt;}
.y11f{bottom:412.960000pt;}
.y77{bottom:416.480000pt;}
.y176{bottom:419.200000pt;}
.y39{bottom:419.520000pt;}
.yde{bottom:419.840000pt;}
.y1be{bottom:422.240000pt;}
.yef{bottom:423.680000pt;}
.y1da{bottom:425.600000pt;}
.y22f{bottom:427.520000pt;}
.ybb{bottom:427.840000pt;}
.y191{bottom:428.160000pt;}
.y53{bottom:431.360000pt;}
.y87{bottom:434.400000pt;}
.y17{bottom:436.800000pt;}
.y20c{bottom:437.821440pt;}
.y10c{bottom:440.480000pt;}
.y76{bottom:444.000000pt;}
.y175{bottom:446.880000pt;}
.y38{bottom:447.200000pt;}
.ydd{bottom:447.360000pt;}
.y1bd{bottom:449.760000pt;}
.yee{bottom:451.200000pt;}
.y1d9{bottom:453.120000pt;}
.y22e{bottom:455.200000pt;}
.y190{bottom:455.840000pt;}
.y52{bottom:459.040000pt;}
.y86{bottom:461.920000pt;}
.y20b{bottom:463.095680pt;}
.y16{bottom:464.320000pt;}
.y10b{bottom:468.000000pt;}
.yba{bottom:470.720000pt;}
.y75{bottom:471.680000pt;}
.y174{bottom:474.400000pt;}
.y37{bottom:474.720000pt;}
.ydc{bottom:475.040000pt;}
.yed{bottom:478.880000pt;}
.y1d8{bottom:480.800000pt;}
.y22d{bottom:482.720000pt;}
.y1bc{bottom:484.640000pt;}
.y51{bottom:486.560000pt;}
.y20a{bottom:488.369920pt;}
.y85{bottom:489.600000pt;}
.y18f{bottom:490.240000pt;}
.y15{bottom:492.000000pt;}
.yb4{bottom:493.440000pt;}
.y10a{bottom:495.680000pt;}
.y74{bottom:499.200000pt;}
.y173{bottom:501.920000pt;}
.y36{bottom:502.400000pt;}
.yb9{bottom:505.127040pt;}
.yfe{bottom:506.400000pt;}
.ydb{bottom:506.560000pt;}
.y1d7{bottom:508.320000pt;}
.y22c{bottom:510.400000pt;}
.yb6{bottom:513.604480pt;}
.y209{bottom:513.644160pt;}
.y50{bottom:514.240000pt;}
.y84{bottom:517.120000pt;}
.y14{bottom:519.520000pt;}
.yb3{bottom:521.920000pt;}
.yb8{bottom:521.922560pt;}
.y1bb{bottom:522.880000pt;}
.y18e{bottom:525.760000pt;}
.y73{bottom:526.880000pt;}
.y172{bottom:529.600000pt;}
.y35{bottom:529.920000pt;}
.y109{bottom:530.080000pt;}
.yb5{bottom:530.400000pt;}
.yfd{bottom:534.080000pt;}
.y1d6{bottom:536.000000pt;}
.y22b{bottom:537.920000pt;}
.yb7{bottom:538.880000pt;}
.y208{bottom:538.918400pt;}
.y4f{bottom:541.760000pt;}
.y83{bottom:544.800000pt;}
.y13{bottom:547.200000pt;}
.yda{bottom:548.969600pt;}
.y1ba{bottom:550.400000pt;}
.y18d{bottom:553.440000pt;}
.y72{bottom:554.400000pt;}
.y171{bottom:557.120000pt;}
.y34{bottom:557.440000pt;}
.yb2{bottom:561.600000pt;}
.y1d5{bottom:563.520000pt;}
.y207{bottom:564.192640pt;}
.yec{bottom:564.320000pt;}
.y108{bottom:564.965600pt;}
.y22a{bottom:565.440000pt;}
.y4e{bottom:569.440000pt;}
.y82{bottom:572.320000pt;}
.yb1{bottom:573.280000pt;}
.yd9{bottom:574.405760pt;}
.y12{bottom:574.720000pt;}
.y1b9{bottom:578.080000pt;}
.y18c{bottom:580.960000pt;}
.y71{bottom:582.080000pt;}
.y170{bottom:584.800000pt;}
.y4c{bottom:585.120000pt;}
.y107{bottom:586.400000pt;}
.yfc{bottom:589.280000pt;}
.y206{bottom:589.466880pt;}
.y1d4{bottom:591.200000pt;}
.y33{bottom:591.840000pt;}
.y229{bottom:593.120000pt;}
.yb0{bottom:596.000000pt;}
.yd8{bottom:599.680000pt;}
.y4d{bottom:599.840000pt;}
.y1b8{bottom:605.600000pt;}
.yaf{bottom:607.683200pt;}
.y18b{bottom:608.640000pt;}
.y11{bottom:609.120000pt;}
.y70{bottom:609.600000pt;}
.y16f{bottom:612.320000pt;}
.y4b{bottom:612.640000pt;}
.yd7{bottom:614.080000pt;}
.y205{bottom:614.741120pt;}
.yae{bottom:616.000000pt;}
.yfb{bottom:616.800000pt;}
.y1d3{bottom:618.720000pt;}
.y228{bottom:620.640000pt;}
.y106{bottom:624.640000pt;}
.yd6{bottom:625.760000pt;}
.y32{bottom:627.520000pt;}
.y1b7{bottom:633.280000pt;}
.y18a{bottom:636.160000pt;}
.y6f{bottom:637.280000pt;}
.y16e{bottom:640.000000pt;}
.y204{bottom:640.015360pt;}
.y4a{bottom:640.320000pt;}
.y11e{bottom:644.480000pt;}
.y10{bottom:644.800000pt;}
.y1d2{bottom:646.400000pt;}
.yab{bottom:647.200000pt;}
.y227{bottom:648.320000pt;}
.yd4{bottom:648.480000pt;}
.y105{bottom:652.160000pt;}
.y31{bottom:655.040000pt;}
.yaa{bottom:658.884480pt;}
.yd5{bottom:660.160000pt;}
.y1b6{bottom:660.800000pt;}
.y189{bottom:663.840000pt;}
.y6e{bottom:664.800000pt;}
.y203{bottom:665.451520pt;}
.yad{bottom:667.360000pt;}
.y16d{bottom:667.520000pt;}
.y49{bottom:667.840000pt;}
.y11d{bottom:672.000000pt;}
.yf{bottom:672.320000pt;}
.y1d1{bottom:673.920000pt;}
.ya9{bottom:675.680000pt;}
.y226{bottom:675.840000pt;}
.y104{bottom:679.840000pt;}
.y30{bottom:682.720000pt;}
.yd1{bottom:682.880000pt;}
.y1b5{bottom:688.480000pt;}
.y202{bottom:690.725760pt;}
.y188{bottom:691.360000pt;}
.yd2{bottom:692.160000pt;}
.y6d{bottom:692.480000pt;}
.yd3{bottom:694.560000pt;}
.y16c{bottom:695.200000pt;}
.y48{bottom:695.520000pt;}
.ya5{bottom:698.400000pt;}
.y11c{bottom:699.680000pt;}
.ye{bottom:700.000000pt;}
.y225{bottom:703.520000pt;}
.y1d0{bottom:704.480000pt;}
.y103{bottom:707.360000pt;}
.ya4{bottom:710.082560pt;}
.y2f{bottom:710.240000pt;}
.y1b4{bottom:716.000000pt;}
.yce{bottom:717.280000pt;}
.ya7{bottom:718.560000pt;}
.y187{bottom:719.040000pt;}
.y6c{bottom:720.000000pt;}
.y16b{bottom:722.720000pt;}
.y47{bottom:723.040000pt;}
.ycf{bottom:726.560000pt;}
.ya3{bottom:727.040000pt;}
.y11b{bottom:727.200000pt;}
.yd{bottom:727.520000pt;}
.yd0{bottom:728.960000pt;}
.y200{bottom:730.400000pt;}
.y224{bottom:731.040000pt;}
.y1cf{bottom:732.000000pt;}
.y102{bottom:735.040000pt;}
.y2e{bottom:737.920000pt;}
.y1b3{bottom:743.680000pt;}
.y186{bottom:746.560000pt;}
.y6b{bottom:747.680000pt;}
.y1ff{bottom:748.635040pt;}
.ya1{bottom:749.760000pt;}
.y16a{bottom:750.400000pt;}
.y46{bottom:750.720000pt;}
.ycd{bottom:751.680000pt;}
.y11a{bottom:754.880000pt;}
.yc{bottom:755.200000pt;}
.y223{bottom:758.720000pt;}
.y1ce{bottom:759.680000pt;}
.ya0{bottom:761.440000pt;}
.y101{bottom:762.560000pt;}
.y1fe{bottom:764.000000pt;}
.y2d{bottom:765.440000pt;}
.y1b2{bottom:771.200000pt;}
.y185{bottom:774.240000pt;}
.y6a{bottom:775.200000pt;}
.y169{bottom:777.920000pt;}
.y64{bottom:778.240000pt;}
.y119{bottom:782.400000pt;}
.yb{bottom:782.720000pt;}
.y99{bottom:784.160000pt;}
.y45{bottom:785.120000pt;}
.ycc{bottom:786.080000pt;}
.y222{bottom:786.240000pt;}
.y1cd{bottom:787.200000pt;}
.y100{bottom:790.240000pt;}
.y1fd{bottom:792.320000pt;}
.y2c{bottom:793.120000pt;}
.y9f{bottom:795.847040pt;}
.y1b1{bottom:798.880000pt;}
.y184{bottom:801.760000pt;}
.y69{bottom:802.880000pt;}
.y9c{bottom:804.324480pt;}
.y63{bottom:805.920000pt;}
.y168{bottom:808.480000pt;}
.y118{bottom:810.080000pt;}
.ya{bottom:810.400000pt;}
.y1fc{bottom:810.560000pt;}
.y98{bottom:812.640000pt;}
.y9e{bottom:812.642560pt;}
.y221{bottom:813.920000pt;}
.y1cc{bottom:814.880000pt;}
.yff{bottom:817.760000pt;}
.y2b{bottom:820.640000pt;}
.y9b{bottom:821.120000pt;}
.y1b0{bottom:826.400000pt;}
.y183{bottom:829.440000pt;}
.y9d{bottom:829.600000pt;}
.y68{bottom:830.400000pt;}
.y62{bottom:833.440000pt;}
.y9{bottom:837.920000pt;}
.y1f9{bottom:839.040000pt;}
.y220{bottom:841.440000pt;}
.y167{bottom:842.880000pt;}
.y1cb{bottom:845.440000pt;}
.y2a{bottom:848.320000pt;}
.y95{bottom:852.320000pt;}
.y1af{bottom:854.080000pt;}
.y1fb{bottom:857.275040pt;}
.ycb{bottom:857.280000pt;}
.y67{bottom:858.080000pt;}
.y182{bottom:859.840000pt;}
.y61{bottom:861.120000pt;}
.y94{bottom:864.000000pt;}
.y1f8{bottom:864.960000pt;}
.y21f{bottom:869.120000pt;}
.y1fa{bottom:872.640000pt;}
.y8{bottom:872.800000pt;}
.y1ca{bottom:872.960000pt;}
.y29{bottom:875.840000pt;}
.y166{bottom:877.285760pt;}
.y1ae{bottom:884.640000pt;}
.y66{bottom:885.600000pt;}
.y60{bottom:888.640000pt;}
.y21e{bottom:896.640000pt;}
.y1c9{bottom:900.640000pt;}
.y1f4{bottom:900.960000pt;}
.y165{bottom:902.560000pt;}
.y28{bottom:903.520000pt;}
.y5f{bottom:916.320000pt;}
.y15e{bottom:916.960000pt;}
.y7{bottom:919.040000pt;}
.y1f7{bottom:919.195040pt;}
.y65{bottom:920.480000pt;}
.y21d{bottom:924.320000pt;}
.y1f3{bottom:926.880000pt;}
.y15d{bottom:927.469440pt;}
.y157{bottom:927.496000pt;}
.y1ad{bottom:928.160000pt;}
.y27{bottom:931.040000pt;}
.y1f6{bottom:934.560000pt;}
.y164{bottom:935.180160pt;}
.y15c{bottom:942.834400pt;}
.y156{bottom:942.860960pt;}
.y14e{bottom:945.452800pt;}
.y14d{bottom:948.647040pt;}
.y163{bottom:950.545120pt;}
.y151{bottom:950.550080pt;}
.y5e{bottom:950.720000pt;}
.y21c{bottom:951.840000pt;}
.y6{bottom:954.565760pt;}
.y1ac{bottom:955.840000pt;}
.y15b{bottom:958.199360pt;}
.y155{bottom:958.225920pt;}
.y26{bottom:958.720000pt;}
.y1f2{bottom:963.040000pt;}
.y14c{bottom:965.604480pt;}
.y162{bottom:965.910080pt;}
.y150{bottom:965.915040pt;}
.y15a{bottom:973.564320pt;}
.y154{bottom:973.590880pt;}
.y1f1{bottom:973.595040pt;}
.y5{bottom:979.208000pt;}
.y21b{bottom:979.520000pt;}
.y161{bottom:981.275040pt;}
.y14f{bottom:981.280000pt;}
.y14b{bottom:982.400000pt;}
.y1ab{bottom:983.360000pt;}
.y25{bottom:986.240000pt;}
.y159{bottom:988.929280pt;}
.y153{bottom:988.955840pt;}
.y1f0{bottom:988.960000pt;}
.y160{bottom:996.640000pt;}
.y4{bottom:1003.680000pt;}
.y158{bottom:1004.294240pt;}
.y152{bottom:1004.320800pt;}
.y21a{bottom:1007.040000pt;}
.y1ef{bottom:1009.760000pt;}
.y1aa{bottom:1010.880000pt;}
.y24{bottom:1013.920000pt;}
.y149{bottom:1024.960000pt;}
.y1ee{bottom:1027.840000pt;}
.y23{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h18{height:16.800000pt;}
.h27{height:30.720000pt;}
.h1a{height:32.915000pt;}
.ha{height:33.600000pt;}
.hd{height:33.760000pt;}
.h14{height:33.761333pt;}
.h2c{height:45.918667pt;}
.h2a{height:45.920000pt;}
.h2b{height:46.080000pt;}
.h23{height:46.609688pt;}
.h22{height:47.050625pt;}
.h29{height:47.335938pt;}
.h13{height:50.560000pt;}
.h11{height:50.561333pt;}
.hf{height:50.720000pt;}
.h1b{height:51.635000pt;}
.hc{height:51.663750pt;}
.h1c{height:51.807500pt;}
.h4{height:52.152500pt;}
.h19{height:52.210000pt;}
.h9{height:52.468750pt;}
.h3{height:56.156250pt;}
.h1d{height:56.312500pt;}
.h2{height:56.687500pt;}
.h8{height:56.750000pt;}
.h7{height:57.031250pt;}
.h2f{height:61.278667pt;}
.h2e{height:61.280000pt;}
.h2d{height:61.440000pt;}
.h1f{height:65.920000pt;}
.h6{height:66.726562pt;}
.hb{height:67.360000pt;}
.h16{height:67.520000pt;}
.h5{height:75.851562pt;}
.h26{height:76.638667pt;}
.h25{height:77.116545pt;}
.h17{height:84.930950pt;}
.h12{height:85.578630pt;}
.h10{height:86.067380pt;}
.h1e{height:86.383630pt;}
.h28{height:107.360000pt;}
.h21{height:109.329688pt;}
.h15{height:119.334580pt;}
.he{height:119.493510pt;}
.h20{height:119.650830pt;}
.h24{height:138.078667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:71.681333pt;}
.w4{width:81.281333pt;}
.w3{width:85.280000pt;}
.w2{width:87.680000pt;}
.wd{width:96.641333pt;}
.wc{width:104.160000pt;}
.wb{width:107.680000pt;}
.w5{width:112.481333pt;}
.w6{width:125.440000pt;}
.w8{width:163.840000pt;}
.w7{width:210.720000pt;}
.w9{width:227.520000pt;}
.we{width:231.840000pt;}
.wf{width:250.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:6.880000pt;}
.xb{left:8.320000pt;}
.x2c{left:9.280000pt;}
.x20{left:13.760000pt;}
.x1e{left:14.720000pt;}
.xd{left:15.680000pt;}
.x8{left:18.880000pt;}
.x1c{left:20.800000pt;}
.x2b{left:22.240000pt;}
.x13{left:23.840000pt;}
.x17{left:24.960000pt;}
.x9{left:26.720000pt;}
.x15{left:28.480000pt;}
.x12{left:29.600000pt;}
.xf{left:30.880000pt;}
.x10{left:31.840000pt;}
.x26{left:34.560000pt;}
.x1b{left:36.320000pt;}
.x22{left:42.720000pt;}
.x24{left:52.960000pt;}
.x2{left:94.400000pt;}
.x14{left:102.080000pt;}
.x3a{left:112.483520pt;}
.x5{left:118.400000pt;}
.x61{left:121.920000pt;}
.x6{left:123.840000pt;}
.x3b{left:127.520000pt;}
.x39{left:139.200000pt;}
.x4{left:141.600000pt;}
.x7{left:203.680000pt;}
.x36{left:209.760000pt;}
.x2e{left:213.127680pt;}
.x62{left:216.000000pt;}
.x2d{left:220.325760pt;}
.x63{left:222.880000pt;}
.x38{left:229.760000pt;}
.x50{left:231.040000pt;}
.x56{left:233.760000pt;}
.x57{left:237.279200pt;}
.x42{left:240.324960pt;}
.x51{left:245.276160pt;}
.x3c{left:246.869760pt;}
.x3{left:262.560000pt;}
.xa{left:292.000000pt;}
.x34{left:306.560000pt;}
.x37{left:313.440000pt;}
.x3d{left:316.480000pt;}
.x3f{left:325.436160pt;}
.x43{left:328.809600pt;}
.x3e{left:333.120000pt;}
.xc{left:377.920000pt;}
.x1{left:384.800000pt;}
.x52{left:388.800000pt;}
.x44{left:401.278560pt;}
.x32{left:402.560000pt;}
.x58{left:405.111840pt;}
.x46{left:408.316960pt;}
.x59{left:410.702720pt;}
.x41{left:412.320640pt;}
.x45{left:415.514720pt;}
.x40{left:418.400000pt;}
.x53{left:419.837120pt;}
.x64{left:448.480000pt;}
.x65{left:455.360000pt;}
.xe{left:460.000000pt;}
.x35{left:471.040000pt;}
.x25{left:473.274240pt;}
.x16{left:484.960000pt;}
.x28{left:485.920000pt;}
.x29{left:491.366400pt;}
.x21{left:492.960000pt;}
.x2f{left:500.344320pt;}
.x1d{left:501.271680pt;}
.x5a{left:503.490080pt;}
.x5d{left:507.022560pt;}
.x5c{left:508.138080pt;}
.x47{left:509.284800pt;}
.x4c{left:510.719040pt;}
.x5b{left:513.410240pt;}
.x54{left:514.718400pt;}
.x4a{left:517.120000pt;}
.x48{left:519.683040pt;}
.x4b{left:521.595360pt;}
.x49{left:523.042880pt;}
.x11{left:573.120000pt;}
.x18{left:586.720000pt;}
.x19{left:588.324480pt;}
.x23{left:590.080000pt;}
.x2a{left:592.951680pt;}
.x1f{left:597.440000pt;}
.x55{left:598.560960pt;}
.x5e{left:599.520000pt;}
.x27{left:603.520000pt;}
.x31{left:605.281280pt;}
.x30{left:606.400000pt;}
.x60{left:607.514560pt;}
.x1a{left:613.451520pt;}
.x4f{left:615.045760pt;}
.x4d{left:616.480000pt;}
.x4e{left:619.839840pt;}
.x5f{left:629.121120pt;}
}




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