
    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_7ee1681df1d030ed6f29b793.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_fc5959d00dd6482d18570e33.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_8305bc6304ac690061d32d8a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_aa80e01b14c3e53c48cae637.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_49b642c8faf893b85ae5e1d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.653000;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.268000;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_c3f50228e17fd9a265dbc2a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_8e60d2367d481cdaf0ab48d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_99d5e403bab5c297497e4b2f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;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_88b2339947b4dc323fdea776.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.362000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.200885;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_806cf4dee9ccdd0b037cb09a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.392000;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);}
.v1{vertical-align:-20.399963px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v6{vertical-align:-10.818028px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:13.438730px;}
.v3{vertical-align:18.203985px;}
.v2{vertical-align:20.399963px;}
.v9{vertical-align:29.168098px;}
.v8{vertical-align:44.985601px;}
.ls75{letter-spacing:-2.790000px;}
.ls89{letter-spacing:-1.980000px;}
.ls6f{letter-spacing:-1.305000px;}
.ls32{letter-spacing:-1.092000px;}
.ls73{letter-spacing:-1.080000px;}
.ls4c{letter-spacing:-0.938400px;}
.ls42{letter-spacing:-0.910800px;}
.ls6c{letter-spacing:-0.900000px;}
.ls74{letter-spacing:-0.855000px;}
.ls8c{letter-spacing:-0.810000px;}
.ls84{letter-spacing:-0.720000px;}
.ls86{letter-spacing:-0.675000px;}
.ls30{letter-spacing:-0.546000px;}
.ls8b{letter-spacing:-0.540000px;}
.ls6e{letter-spacing:-0.495000px;}
.ls2a{letter-spacing:-0.486000px;}
.ls85{letter-spacing:-0.450000px;}
.ls58{letter-spacing:-0.432000px;}
.ls8a{letter-spacing:-0.378000px;}
.ls33{letter-spacing:-0.336000px;}
.ls70{letter-spacing:-0.315000px;}
.ls1b{letter-spacing:-0.306000px;}
.ls2c{letter-spacing:-0.270000px;}
.ls4d{letter-spacing:-0.244800px;}
.ls41{letter-spacing:-0.237600px;}
.ls72{letter-spacing:-0.225000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls69{letter-spacing:-0.180000px;}
.ls67{letter-spacing:-0.175500px;}
.ls18{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.153000px;}
.ls5b{letter-spacing:-0.140400px;}
.ls80{letter-spacing:-0.135000px;}
.ls59{letter-spacing:-0.120000px;}
.ls2f{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.102000px;}
.ls6a{letter-spacing:-0.090000px;}
.ls40{letter-spacing:-0.079200px;}
.ls2e{letter-spacing:-0.060000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls6b{letter-spacing:-0.045000px;}
.ls51{letter-spacing:-0.035100px;}
.ls17{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000084px;}
.ls37{letter-spacing:0.000117px;}
.ls48{letter-spacing:0.000132px;}
.lse{letter-spacing:0.008964px;}
.ls2{letter-spacing:0.013223px;}
.ls47{letter-spacing:0.013794px;}
.ls3{letter-spacing:0.013956px;}
.ls38{letter-spacing:0.015482px;}
.ls5e{letter-spacing:0.016576px;}
.ls1f{letter-spacing:0.017550px;}
.ls36{letter-spacing:0.021001px;}
.ls45{letter-spacing:0.021601px;}
.ls4e{letter-spacing:0.025819px;}
.ls46{letter-spacing:0.030588px;}
.ls28{letter-spacing:0.035100px;}
.ls50{letter-spacing:0.037171px;}
.ls4f{letter-spacing:0.039045px;}
.ls71{letter-spacing:0.045000px;}
.ls27{letter-spacing:0.054000px;}
.ls54{letter-spacing:0.070200px;}
.ls66{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.105300px;}
.ls11{letter-spacing:0.108000px;}
.ls88{letter-spacing:0.135000px;}
.ls4{letter-spacing:0.140400px;}
.ls10{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.170075px;}
.ls52{letter-spacing:0.175499px;}
.ls9{letter-spacing:0.175500px;}
.ls5{letter-spacing:0.184829px;}
.ls43{letter-spacing:0.189018px;}
.ls31{letter-spacing:0.210000px;}
.ls3e{letter-spacing:0.210600px;}
.ls6{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.217717px;}
.ls60{letter-spacing:0.225000px;}
.ls15{letter-spacing:0.255000px;}
.lsf{letter-spacing:0.263249px;}
.ls8{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.280800px;}
.lsd{letter-spacing:0.285072px;}
.ls7d{letter-spacing:0.292500px;}
.ls3d{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.315000px;}
.ls5a{letter-spacing:0.315900px;}
.lsb{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.331666px;}
.ls14{letter-spacing:0.332307px;}
.ls55{letter-spacing:0.350999px;}
.ls7f{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.377999px;}
.ls25{letter-spacing:0.378000px;}
.ls35{letter-spacing:0.378001px;}
.ls19{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.453606px;}
.ls29{letter-spacing:0.456300px;}
.ls53{letter-spacing:0.471031px;}
.ls24{letter-spacing:0.486000px;}
.ls83{letter-spacing:0.495000px;}
.ls13{letter-spacing:0.510000px;}
.ls21{letter-spacing:0.540000px;}
.ls87{letter-spacing:0.585000px;}
.ls23{letter-spacing:0.593998px;}
.ls3c{letter-spacing:0.594000px;}
.ls7b{letter-spacing:0.630000px;}
.ls44{letter-spacing:0.648000px;}
.ls57{letter-spacing:0.660000px;}
.ls64{letter-spacing:0.675000px;}
.ls20{letter-spacing:0.702000px;}
.ls61{letter-spacing:0.765000px;}
.ls68{letter-spacing:0.772200px;}
.ls6d{letter-spacing:0.810000px;}
.ls7c{letter-spacing:0.823530px;}
.ls81{letter-spacing:0.855000px;}
.ls34{letter-spacing:0.864000px;}
.ls8e{letter-spacing:0.918000px;}
.ls56{letter-spacing:0.972000px;}
.ls5c{letter-spacing:1.020000px;}
.ls3f{letter-spacing:1.134000px;}
.ls5f{letter-spacing:1.136384px;}
.ls5d{letter-spacing:1.188000px;}
.ls77{letter-spacing:1.327500px;}
.ls82{letter-spacing:1.350000px;}
.ls78{letter-spacing:1.395000px;}
.ls79{letter-spacing:1.440000px;}
.ls63{letter-spacing:1.449037px;}
.ls65{letter-spacing:1.696432px;}
.ls7e{letter-spacing:1.799999px;}
.ls0{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls7a{letter-spacing:3.676424px;}
.ls76{letter-spacing:3.824968px;}
.ls8d{letter-spacing:6.120000px;}
.ls4a{letter-spacing:126.602405px;}
.ls3a{letter-spacing:127.987197px;}
.ls49{letter-spacing:133.742403px;}
.ls39{letter-spacing:133.966798px;}
.ls3b{letter-spacing:146.717989px;}
.ls4b{letter-spacing:158.915998px;}
.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;}
}
.ws8{word-spacing:-50.898000px;}
.ws1{word-spacing:-48.000000px;}
.ws7{word-spacing:-33.150001px;}
.ws2{word-spacing:-15.067500px;}
.ws21{word-spacing:-14.700000px;}
.ws26{word-spacing:-13.596000px;}
.ws84{word-spacing:-13.446000px;}
.ws40{word-spacing:-12.690000px;}
.ws5a{word-spacing:-12.636000px;}
.ws0{word-spacing:-12.480000px;}
.ws86{word-spacing:-12.420000px;}
.ws42{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws28{word-spacing:-12.258000px;}
.ws73{word-spacing:-12.204000px;}
.ws27{word-spacing:-12.150000px;}
.ws74{word-spacing:-11.934000px;}
.ws24{word-spacing:-11.880000px;}
.wsa7{word-spacing:-11.655000px;}
.wsa6{word-spacing:-11.610000px;}
.wsad{word-spacing:-11.025000px;}
.ws8b{word-spacing:-10.980000px;}
.ws8e{word-spacing:-10.440000px;}
.ws90{word-spacing:-10.395000px;}
.ws88{word-spacing:-10.215000px;}
.ws8a{word-spacing:-10.170000px;}
.wsaa{word-spacing:-10.125000px;}
.wsa8{word-spacing:-10.080000px;}
.wsac{word-spacing:-10.035000px;}
.ws8d{word-spacing:-9.990000px;}
.ws46{word-spacing:-9.900000px;}
.wsab{word-spacing:-9.855000px;}
.ws89{word-spacing:-9.765000px;}
.wsb8{word-spacing:-9.675000px;}
.wsa9{word-spacing:-9.585000px;}
.ws8f{word-spacing:-9.450000px;}
.ws2d{word-spacing:-9.282000px;}
.ws64{word-spacing:-9.016800px;}
.ws8c{word-spacing:-9.000000px;}
.ws5d{word-spacing:-8.935200px;}
.ws4d{word-spacing:-8.751600px;}
.ws85{word-spacing:-8.739900px;}
.ws43{word-spacing:-8.672400px;}
.ws23{word-spacing:-8.424000px;}
.ws75{word-spacing:-8.283600px;}
.ws6{word-spacing:-8.248500px;}
.ws41{word-spacing:-8.178300px;}
.ws5b{word-spacing:-8.143200px;}
.ws87{word-spacing:-8.108100px;}
.ws25{word-spacing:-8.073000px;}
.ws6d{word-spacing:-8.037900px;}
.ws4{word-spacing:-8.034000px;}
.ws22{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws6c{word-spacing:-7.932600px;}
.ws76{word-spacing:-7.827300px;}
.ws83{word-spacing:-7.792200px;}
.wsc7{word-spacing:-6.120000px;}
.ws5c{word-spacing:-5.754840px;}
.ws44{word-spacing:-5.585580px;}
.ws54{word-spacing:-5.508000px;}
.ws3e{word-spacing:-4.284000px;}
.ws94{word-spacing:-4.224000px;}
.wsc5{word-spacing:-3.960000px;}
.ws6a{word-spacing:-3.753600px;}
.ws58{word-spacing:-3.643200px;}
.wsb{word-spacing:-3.276000px;}
.wsd{word-spacing:-3.000000px;}
.ws1f{word-spacing:-2.040000px;}
.ws31{word-spacing:-1.944000px;}
.ws14{word-spacing:-1.890000px;}
.ws78{word-spacing:-1.860000px;}
.ws18{word-spacing:-1.836000px;}
.ws37{word-spacing:-1.800000px;}
.ws7e{word-spacing:-1.782000px;}
.ws93{word-spacing:-1.674000px;}
.ws7c{word-spacing:-1.620000px;}
.wsb0{word-spacing:-1.575000px;}
.ws1c{word-spacing:-1.530000px;}
.ws91{word-spacing:-1.512000px;}
.ws6e{word-spacing:-1.458000px;}
.ws13{word-spacing:-1.404000px;}
.wsc6{word-spacing:-1.386000px;}
.ws7d{word-spacing:-1.350000px;}
.ws1e{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.242000px;}
.ws1a{word-spacing:-1.188000px;}
.ws3c{word-spacing:-1.176000px;}
.wse{word-spacing:-1.134000px;}
.ws9b{word-spacing:-1.125000px;}
.ws17{word-spacing:-1.080000px;}
.ws95{word-spacing:-1.035000px;}
.ws36{word-spacing:-1.026000px;}
.ws20{word-spacing:-1.020000px;}
.ws53{word-spacing:-0.972000px;}
.ws3d{word-spacing:-0.966000px;}
.wsa{word-spacing:-0.960000px;}
.ws57{word-spacing:-0.950400px;}
.ws6b{word-spacing:-0.938400px;}
.ws3b{word-spacing:-0.924000px;}
.ws1b{word-spacing:-0.918000px;}
.ws59{word-spacing:-0.910800px;}
.wsaf{word-spacing:-0.900000px;}
.ws69{word-spacing:-0.897600px;}
.ws56{word-spacing:-0.871200px;}
.wsb4{word-spacing:-0.855000px;}
.wsa3{word-spacing:-0.810000px;}
.ws9a{word-spacing:-0.765000px;}
.ws39{word-spacing:-0.756000px;}
.ws97{word-spacing:-0.720000px;}
.ws9c{word-spacing:-0.675000px;}
.ws77{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.648000px;}
.ws52{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.594000px;}
.wsbe{word-spacing:-0.585000px;}
.ws38{word-spacing:-0.540000px;}
.wsbf{word-spacing:-0.495000px;}
.ws11{word-spacing:-0.486000px;}
.ws12{word-spacing:-0.432000px;}
.ws96{word-spacing:-0.405000px;}
.ws3a{word-spacing:-0.378000px;}
.ws32{word-spacing:-0.324000px;}
.ws7a{word-spacing:-0.315900px;}
.wsbb{word-spacing:-0.315000px;}
.ws30{word-spacing:-0.270000px;}
.wsb2{word-spacing:-0.225000px;}
.ws16{word-spacing:-0.216000px;}
.ws70{word-spacing:-0.210600px;}
.ws9d{word-spacing:-0.180000px;}
.ws15{word-spacing:-0.162000px;}
.ws6f{word-spacing:-0.108000px;}
.wsa2{word-spacing:-0.090000px;}
.ws35{word-spacing:-0.054000px;}
.wsb5{word-spacing:-0.045000px;}
.ws2e{word-spacing:-0.035100px;}
.ws9{word-spacing:0.000000px;}
.ws79{word-spacing:0.054000px;}
.ws34{word-spacing:0.108000px;}
.ws33{word-spacing:0.120000px;}
.ws3f{word-spacing:0.126000px;}
.ws71{word-spacing:0.162000px;}
.ws92{word-spacing:0.175500px;}
.wsc0{word-spacing:0.180000px;}
.ws51{word-spacing:0.216000px;}
.wsb1{word-spacing:0.225000px;}
.ws7f{word-spacing:0.270000px;}
.ws68{word-spacing:0.324000px;}
.ws9e{word-spacing:0.360000px;}
.ws80{word-spacing:0.378000px;}
.wsae{word-spacing:0.405000px;}
.ws67{word-spacing:0.432000px;}
.ws2f{word-spacing:0.486000px;}
.wsbc{word-spacing:0.495000px;}
.wsbd{word-spacing:0.540000px;}
.ws1d{word-spacing:0.561000px;}
.ws72{word-spacing:0.594000px;}
.wsa0{word-spacing:0.720000px;}
.ws9f{word-spacing:0.855000px;}
.wsc4{word-spacing:0.864000px;}
.ws99{word-spacing:0.900000px;}
.ws98{word-spacing:0.945000px;}
.ws50{word-spacing:0.972000px;}
.wsc1{word-spacing:0.990000px;}
.wsa1{word-spacing:1.080000px;}
.wsb3{word-spacing:1.125000px;}
.ws7b{word-spacing:1.134000px;}
.wsc8{word-spacing:1.188000px;}
.ws81{word-spacing:1.200000px;}
.ws82{word-spacing:1.242000px;}
.wsc3{word-spacing:1.296000px;}
.ws55{word-spacing:1.674000px;}
.wsa5{word-spacing:1.755000px;}
.wsa4{word-spacing:1.935000px;}
.wsb6{word-spacing:2.430000px;}
.wsb7{word-spacing:2.475000px;}
.wsb9{word-spacing:2.520000px;}
.wsba{word-spacing:2.565000px;}
.wsc2{word-spacing:3.780000px;}
.ws47{word-spacing:27.205198px;}
.ws45{word-spacing:32.630400px;}
.ws48{word-spacing:45.381591px;}
.ws2a{word-spacing:52.714196px;}
.ws5f{word-spacing:53.937602px;}
.ws60{word-spacing:54.508795px;}
.ws61{word-spacing:69.564003px;}
.ws4f{word-spacing:72.626398px;}
.ws62{word-spacing:73.521603px;}
.ws4c{word-spacing:76.190390px;}
.ws4a{word-spacing:76.467598px;}
.ws5e{word-spacing:80.661601px;}
.ws49{word-spacing:82.447199px;}
.ws63{word-spacing:86.251196px;}
.ws4b{word-spacing:95.198390px;}
.ws66{word-spacing:105.835197px;}
.ws2c{word-spacing:158.087996px;}
.ws2b{word-spacing:167.663996px;}
.ws29{word-spacing:328.860016px;}
.ws65{word-spacing:537.866409px;}
.ws4e{word-spacing:596.098818px;}
._4f{margin-left:-13.500000px;}
._4e{margin-left:-11.655000px;}
._4b{margin-left:-10.575000px;}
._6{margin-left:-8.633559px;}
._43{margin-left:-7.313927px;}
._3{margin-left:-5.244013px;}
._2{margin-left:-3.503986px;}
._0{margin-left:-1.776017px;}
._4{width:1.096355px;}
._5{width:2.248730px;}
._42{width:3.449635px;}
._41{width:4.584056px;}
._49{width:6.366018px;}
._4c{width:7.373557px;}
._47{width:8.436017px;}
._48{width:10.170000px;}
._4a{width:11.880000px;}
._46{width:12.960000px;}
._9{width:15.281992px;}
._50{width:16.515002px;}
._4d{width:18.156019px;}
._1e{width:36.065917px;}
._31{width:37.898334px;}
._1{width:42.427753px;}
._44{width:43.806096px;}
._45{width:45.583326px;}
._7{width:46.832977px;}
._1d{width:48.474072px;}
._8{width:49.947686px;}
._19{width:51.049276px;}
._1f{width:56.884788px;}
._22{width:58.885206px;}
._32{width:62.174397px;}
._25{width:63.835207px;}
._20{width:65.873978px;}
._21{width:67.977064px;}
._12{width:69.509996px;}
._13{width:73.710000px;}
._1b{width:79.085996px;}
._23{width:85.453881px;}
._2d{width:87.595199px;}
._26{width:90.763184px;}
._24{width:92.743211px;}
._d{width:96.486017px;}
._30{width:100.346390px;}
._33{width:104.390191px;}
._3c{width:110.200807px;}
._1c{width:113.022000px;}
._37{width:120.892831px;}
._28{width:122.760004px;}
._2b{width:128.779183px;}
._36{width:130.886402px;}
._34{width:132.528495px;}
._2a{width:139.946405px;}
._c{width:143.395814px;}
._35{width:147.532802px;}
._29{width:149.767210px;}
._e{width:176.610000px;}
._10{width:181.398000px;}
._17{width:187.781996px;}
._3f{width:189.393604px;}
._15{width:201.558000px;}
._18{width:221.718000px;}
._40{width:235.116462px;}
._16{width:278.628006px;}
._39{width:289.196805px;}
._27{width:292.558839px;}
._1a{width:299.724598px;}
._2c{width:307.454402px;}
._14{width:313.404006px;}
._a{width:318.477305px;}
._3e{width:320.097620px;}
._3a{width:322.115998px;}
._2f{width:324.640802px;}
._2e{width:334.461608px;}
._3b{width:338.335728px;}
._38{width:375.727210px;}
._3d{width:378.746420px;}
._b{width:385.378935px;}
._11{width:445.115986px;}
._f{width:605.106003px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fsd{font-size:25.740000px;}
.fsf{font-size:26.520000px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:39.599999px;}
.fse{font-size:40.800001px;}
.fsb{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y30{bottom:68.313899px;}
.y175{bottom:76.476755px;}
.ya6{bottom:81.300012px;}
.y1bf{bottom:81.544798px;}
.y12e{bottom:81.995546px;}
.y2f{bottom:83.307899px;}
.y174{bottom:89.223005px;}
.y58{bottom:91.059000px;}
.ycc{bottom:92.046298px;}
.y7c{bottom:95.784308px;}
.ya5{bottom:96.298511px;}
.y12d{bottom:96.994045px;}
.y2e{bottom:98.307899px;}
.y173{bottom:101.969255px;}
.y1be{bottom:103.293297px;}
.y57{bottom:106.057499px;}
.ycb{bottom:107.044798px;}
.y7b{bottom:110.782807px;}
.ya4{bottom:111.297010px;}
.y172{bottom:114.715505px;}
.yed{bottom:116.046298px;}
.y2d{bottom:117.636898px;}
.y1bd{bottom:118.293297px;}
.y56{bottom:121.055999px;}
.yca{bottom:122.050801px;}
.y7a{bottom:125.781307px;}
.y12c{bottom:126.195462px;}
.ya3{bottom:126.295509px;}
.y171{bottom:127.461755px;}
.yec{bottom:131.044798px;}
.y2c{bottom:132.636898px;}
.y55{bottom:136.054498px;}
.yc9{bottom:137.049300px;}
.y170{bottom:140.208005px;}
.y79{bottom:140.779806px;}
.y12b{bottom:141.193961px;}
.ya2{bottom:141.294009px;}
.y1bc{bottom:145.296298px;}
.yeb{bottom:146.050801px;}
.y54{bottom:151.052997px;}
.yc8{bottom:152.047799px;}
.y16f{bottom:152.954255px;}
.y78{bottom:155.781307px;}
.y12a{bottom:156.192460px;}
.ya1{bottom:156.292508px;}
.y1bb{bottom:160.294798px;}
.yea{bottom:161.049300px;}
.y16e{bottom:165.700505px;}
.y53{bottom:166.051496px;}
.yc7{bottom:167.046298px;}
.y77{bottom:170.779806px;}
.y129{bottom:171.190959px;}
.ya0{bottom:171.291007px;}
.y2b{bottom:171.690314px;}
.y1ba{bottom:175.293297px;}
.ye9{bottom:176.047799px;}
.y16d{bottom:178.446755px;}
.y52{bottom:181.049995px;}
.yc6{bottom:182.044798px;}
.y76{bottom:185.782807px;}
.y128{bottom:186.189459px;}
.y9f{bottom:186.289506px;}
.y2a{bottom:186.688813px;}
.y1b9{bottom:190.293297px;}
.ye8{bottom:191.046298px;}
.y16c{bottom:191.193006px;}
.yc5{bottom:197.044798px;}
.y75{bottom:200.781307px;}
.y127{bottom:201.204467px;}
.y9e{bottom:201.288005px;}
.y29{bottom:201.687313px;}
.y16b{bottom:203.939256px;}
.ye7{bottom:206.044798px;}
.yc4{bottom:212.053802px;}
.y51{bottom:213.805648px;}
.y74{bottom:215.779806px;}
.y126{bottom:216.202966px;}
.y9d{bottom:216.286504px;}
.y16a{bottom:216.685506px;}
.y28{bottom:216.685812px;}
.y1b8{bottom:217.303802px;}
.ye6{bottom:221.052302px;}
.yc3{bottom:227.052302px;}
.y50{bottom:228.804147px;}
.y169{bottom:229.431756px;}
.y73{bottom:230.778305px;}
.y125{bottom:231.201465px;}
.y9c{bottom:231.285004px;}
.y27{bottom:231.688813px;}
.y1b7{bottom:232.302302px;}
.ye5{bottom:236.050801px;}
.yc2{bottom:242.050801px;}
.y168{bottom:242.178006px;}
.y4f{bottom:243.802646px;}
.y124{bottom:246.199964px;}
.y9b{bottom:246.285004px;}
.y26{bottom:246.687313px;}
.y1b6{bottom:247.300801px;}
.ye4{bottom:251.049300px;}
.y167{bottom:254.924256px;}
.yc1{bottom:257.049300px;}
.y4e{bottom:258.801145px;}
.y123{bottom:261.198463px;}
.y25{bottom:261.685812px;}
.y1b5{bottom:262.299300px;}
.y72{bottom:263.797816px;}
.ye3{bottom:266.047799px;}
.y166{bottom:267.670506px;}
.yc0{bottom:272.047799px;}
.y4d{bottom:273.799644px;}
.y122{bottom:276.196963px;}
.y24{bottom:276.685812px;}
.y1b4{bottom:277.297799px;}
.y9a{bottom:278.779806px;}
.y71{bottom:278.796315px;}
.y165{bottom:280.416756px;}
.ye2{bottom:281.046298px;}
.ybf{bottom:287.046298px;}
.y4c{bottom:288.798144px;}
.y121{bottom:291.195462px;}
.y23{bottom:291.687313px;}
.y1b3{bottom:292.296298px;}
.y164{bottom:293.163007px;}
.y99{bottom:293.790312px;}
.y70{bottom:293.794814px;}
.ye1{bottom:296.044798px;}
.ybe{bottom:302.044798px;}
.y4b{bottom:303.796643px;}
.y163{bottom:305.909257px;}
.y120{bottom:306.193961px;}
.y22{bottom:306.685812px;}
.y1b2{bottom:307.294798px;}
.y98{bottom:308.788811px;}
.y6f{bottom:308.793313px;}
.ye0{bottom:311.050824px;}
.ybd{bottom:317.043297px;}
.y162{bottom:318.655507px;}
.y4a{bottom:318.795142px;}
.y11f{bottom:321.192460px;}
.y21{bottom:321.685812px;}
.y1b1{bottom:322.293297px;}
.y97{bottom:323.787310px;}
.y6e{bottom:323.791812px;}
.ydf{bottom:326.049323px;}
.y161{bottom:331.401757px;}
.y49{bottom:333.793641px;}
.y11e{bottom:336.190959px;}
.y20{bottom:336.685812px;}
.y1b0{bottom:337.293297px;}
.y96{bottom:338.785809px;}
.y6d{bottom:338.790312px;}
.yde{bottom:341.047822px;}
.y160{bottom:344.148007px;}
.y48{bottom:348.792140px;}
.y11d{bottom:351.189459px;}
.y1f{bottom:351.687313px;}
.y95{bottom:353.784308px;}
.y6c{bottom:353.788811px;}
.ydd{bottom:356.046321px;}
.y15f{bottom:356.894257px;}
.y47{bottom:363.790640px;}
.y1af{bottom:364.507018px;}
.y11c{bottom:366.196828px;}
.y1e{bottom:366.685812px;}
.y94{bottom:368.782807px;}
.y6b{bottom:368.787310px;}
.y15e{bottom:369.640507px;}
.ydc{bottom:371.044821px;}
.yd2{bottom:375.545233px;}
.y1ae{bottom:377.253268px;}
.y46{bottom:378.789139px;}
.y11b{bottom:381.195328px;}
.y1d{bottom:381.687313px;}
.y15d{bottom:382.386757px;}
.y93{bottom:383.781307px;}
.y6a{bottom:383.785809px;}
.ydb{bottom:386.049323px;}
.y1ad{bottom:389.999518px;}
.yd1{bottom:390.545233px;}
.y45{bottom:393.789139px;}
.y15c{bottom:395.133007px;}
.y11a{bottom:396.193827px;}
.y1c{bottom:396.685812px;}
.y92{bottom:398.779806px;}
.y69{bottom:398.784308px;}
.yda{bottom:401.047822px;}
.y1ac{bottom:402.745768px;}
.yd0{bottom:405.548234px;}
.y15b{bottom:407.879258px;}
.y119{bottom:411.192326px;}
.y1b{bottom:411.685812px;}
.y91{bottom:413.778305px;}
.y68{bottom:413.782807px;}
.y1ab{bottom:415.492018px;}
.yd9{bottom:416.046321px;}
.ycf{bottom:420.546733px;}
.y15a{bottom:420.625508px;}
.y118{bottom:426.190825px;}
.y44{bottom:426.537310px;}
.y1a{bottom:426.685812px;}
.y1aa{bottom:428.238268px;}
.y67{bottom:428.781307px;}
.yd8{bottom:431.044821px;}
.y159{bottom:433.371758px;}
.yce{bottom:435.545233px;}
.y1a9{bottom:440.984518px;}
.y117{bottom:441.189324px;}
.y43{bottom:441.535809px;}
.y19{bottom:441.685812px;}
.y66{bottom:443.779806px;}
.yd7{bottom:446.049323px;}
.y158{bottom:446.118008px;}
.ycd{bottom:450.543732px;}
.y1a8{bottom:453.730768px;}
.y116{bottom:456.187823px;}
.y42{bottom:456.534308px;}
.y18{bottom:456.723311px;}
.y65{bottom:458.778305px;}
.y157{bottom:458.864258px;}
.yd6{bottom:461.047822px;}
.y1a7{bottom:466.477018px;}
.y115{bottom:471.186323px;}
.y41{bottom:471.532807px;}
.y156{bottom:471.610508px;}
.yd5{bottom:476.046321px;}
.ybc{bottom:476.592306px;}
.y1a6{bottom:479.223269px;}
.y155{bottom:484.356758px;}
.y114{bottom:486.184822px;}
.y40{bottom:486.531307px;}
.yd4{bottom:491.044821px;}
.ybb{bottom:491.590805px;}
.y1a5{bottom:491.969519px;}
.y154{bottom:497.103008px;}
.y113{bottom:501.183321px;}
.y3f{bottom:501.529806px;}
.y17{bottom:503.973311px;}
.y1a4{bottom:504.715769px;}
.yd3{bottom:506.043320px;}
.y153{bottom:509.849258px;}
.y90{bottom:513.154806px;}
.y3e{bottom:516.529806px;}
.y1a3{bottom:517.462019px;}
.y16{bottom:520.470311px;}
.yba{bottom:521.715294px;}
.y152{bottom:522.599258px;}
.y8f{bottom:528.153305px;}
.y1a2{bottom:530.208269px;}
.y3d{bottom:531.534308px;}
.y112{bottom:533.061326px;}
.y15{bottom:536.967311px;}
.yb9{bottom:539.157294px;}
.y1a1{bottom:542.954519px;}
.y3c{bottom:546.532807px;}
.y111{bottom:548.059825px;}
.y151{bottom:549.599258px;}
.y14{bottom:553.464311px;}
.y1a0{bottom:555.700769px;}
.yb8{bottom:556.599295px;}
.y8e{bottom:558.380405px;}
.yf0{bottom:560.669567px;}
.y3b{bottom:561.531307px;}
.y110{bottom:563.058325px;}
.y150{bottom:564.599258px;}
.y19f{bottom:568.447019px;}
.y13{bottom:569.961311px;}
.yb7{bottom:574.041296px;}
.yef{bottom:575.668066px;}
.y8d{bottom:575.814305px;}
.y3a{bottom:576.529806px;}
.y10f{bottom:578.056824px;}
.y19e{bottom:581.193269px;}
.y12{bottom:586.458311px;}
.yee{bottom:590.666565px;}
.yb6{bottom:591.483297px;}
.y39{bottom:591.532807px;}
.y10e{bottom:593.055323px;}
.y8c{bottom:593.248205px;}
.y14f{bottom:593.794821px;}
.y19d{bottom:593.939520px;}
.y11{bottom:602.955311px;}
.y38{bottom:606.531307px;}
.y19c{bottom:606.685770px;}
.y10d{bottom:608.053822px;}
.y14e{bottom:608.799323px;}
.yb5{bottom:608.925298px;}
.y8b{bottom:610.682105px;}
.y19b{bottom:619.432020px;}
.y10{bottom:619.452311px;}
.y37{bottom:621.529806px;}
.y10c{bottom:623.052321px;}
.y14d{bottom:623.797822px;}
.yb4{bottom:626.367298px;}
.y8a{bottom:628.116005px;}
.y19a{bottom:632.178270px;}
.yf{bottom:635.949311px;}
.y36{bottom:636.528305px;}
.y10b{bottom:638.050821px;}
.y14c{bottom:638.796321px;}
.yb3{bottom:643.809299px;}
.y199{bottom:644.924520px;}
.y89{bottom:645.549905px;}
.ye{bottom:652.446311px;}
.y14b{bottom:653.794821px;}
.y198{bottom:657.670770px;}
.yb2{bottom:661.251300px;}
.y88{bottom:662.983805px;}
.y14a{bottom:668.796321px;}
.yd{bottom:668.943311px;}
.y197{bottom:670.417020px;}
.y10a{bottom:674.419821px;}
.yb1{bottom:678.693301px;}
.y87{bottom:680.417705px;}
.y196{bottom:683.163270px;}
.y149{bottom:683.794821px;}
.yc{bottom:685.440311px;}
.y64{bottom:687.903305px;}
.y109{bottom:689.419821px;}
.y195{bottom:695.909520px;}
.yb0{bottom:696.135302px;}
.y86{bottom:697.851605px;}
.y148{bottom:698.814285px;}
.yb{bottom:701.937311px;}
.y108{bottom:704.431778px;}
.y194{bottom:708.655771px;}
.yaf{bottom:713.577303px;}
.y147{bottom:713.812784px;}
.y85{bottom:715.285505px;}
.y63{bottom:718.069759px;}
.ya{bottom:718.434311px;}
.y107{bottom:719.430277px;}
.y193{bottom:721.402021px;}
.y146{bottom:728.811284px;}
.yae{bottom:731.019303px;}
.y80{bottom:732.715805px;}
.y84{bottom:732.719405px;}
.y192{bottom:734.148271px;}
.y106{bottom:734.428776px;}
.y62{bottom:735.510259px;}
.y145{bottom:743.809783px;}
.y191{bottom:746.894521px;}
.y8{bottom:748.434311px;}
.yad{bottom:748.461304px;}
.ya9{bottom:748.465805px;}
.y105{bottom:749.427276px;}
.y83{bottom:750.153305px;}
.y82{bottom:750.159604px;}
.y61{bottom:752.950759px;}
.y9{bottom:753.534302px;}
.y33{bottom:757.145396px;}
.y144{bottom:758.808282px;}
.y190{bottom:759.640771px;}
.y81{bottom:761.406005px;}
.yac{bottom:765.903305px;}
.yab{bottom:765.907805px;}
.y60{bottom:770.391259px;}
.y18f{bottom:772.387021px;}
.y143{bottom:773.806781px;}
.yaa{bottom:777.158405px;}
.y32{bottom:778.144646px;}
.y7{bottom:781.416260px;}
.y18e{bottom:785.133271px;}
.y104{bottom:785.796276px;}
.y5f{bottom:787.831759px;}
.y142{bottom:788.805280px;}
.y18d{bottom:797.879521px;}
.y31{bottom:799.143895px;}
.y103{bottom:800.794775px;}
.y141{bottom:803.803780px;}
.y5e{bottom:805.272259px;}
.y7f{bottom:808.457408px;}
.y18c{bottom:810.625771px;}
.y102{bottom:815.796276px;}
.y140{bottom:818.802279px;}
.y5d{bottom:822.712759px;}
.y18b{bottom:823.372022px;}
.y7e{bottom:823.455908px;}
.y6{bottom:826.422262px;}
.ya8{bottom:827.251318px;}
.y101{bottom:830.794775px;}
.y13f{bottom:833.800778px;}
.y18a{bottom:836.118272px;}
.y7d{bottom:838.454407px;}
.y5c{bottom:840.153259px;}
.ya7{bottom:842.249817px;}
.y100{bottom:845.794775px;}
.y13e{bottom:848.799277px;}
.y189{bottom:848.864522px;}
.yff{bottom:860.793274px;}
.y188{bottom:861.610772px;}
.y13d{bottom:863.797776px;}
.y5{bottom:871.428264px;}
.y187{bottom:874.357022px;}
.y13c{bottom:878.796276px;}
.y186{bottom:887.103272px;}
.y5b{bottom:889.321178px;}
.y13b{bottom:893.794775px;}
.yfe{bottom:893.809783px;}
.y185{bottom:899.849522px;}
.y5a{bottom:904.319677px;}
.y13a{bottom:908.799277px;}
.yfd{bottom:908.808282px;}
.y184{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y1c9{bottom:917.056781px;}
.y59{bottom:919.318176px;}
.y139{bottom:923.797776px;}
.yfc{bottom:923.806781px;}
.y183{bottom:925.342022px;}
.y34{bottom:926.409576px;}
.y1c8{bottom:932.055280px;}
.y182{bottom:938.088273px;}
.y138{bottom:938.796276px;}
.yfb{bottom:938.805280px;}
.y1c7{bottom:947.053780px;}
.y181{bottom:950.834523px;}
.y137{bottom:953.794775px;}
.yfa{bottom:953.803780px;}
.y1c6{bottom:962.052279px;}
.y180{bottom:963.580773px;}
.yf9{bottom:968.802279px;}
.y136{bottom:968.805280px;}
.y17f{bottom:976.327023px;}
.y1c5{bottom:977.050778px;}
.yf8{bottom:983.800778px;}
.y135{bottom:983.803780px;}
.y17e{bottom:989.073273px;}
.y1c4{bottom:992.049277px;}
.yf7{bottom:998.799277px;}
.y134{bottom:998.802279px;}
.y17d{bottom:1001.819523px;}
.y1c3{bottom:1007.047776px;}
.yf6{bottom:1013.797776px;}
.y133{bottom:1013.800778px;}
.y17c{bottom:1014.565773px;}
.y1c2{bottom:1022.046276px;}
.y17b{bottom:1027.312023px;}
.yf5{bottom:1028.796276px;}
.y132{bottom:1028.799277px;}
.y1c1{bottom:1037.044775px;}
.y17a{bottom:1040.058273px;}
.yf4{bottom:1043.794775px;}
.y131{bottom:1043.797776px;}
.y1c0{bottom:1052.043274px;}
.y179{bottom:1052.804524px;}
.yf3{bottom:1058.794775px;}
.y130{bottom:1058.796276px;}
.y178{bottom:1065.550774px;}
.yf2{bottom:1073.793274px;}
.y12f{bottom:1073.794775px;}
.y177{bottom:1078.297024px;}
.yf1{bottom:1088.793274px;}
.y176{bottom:1091.043274px;}
.y35{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.842749px;}
.h6{height:28.050293px;}
.hf{height:35.394000px;}
.hd{height:36.669000px;}
.he{height:36.681152px;}
.h7{height:38.826000px;}
.h8{height:38.838867px;}
.h1b{height:39.164399px;}
.h20{height:40.351201px;}
.h17{height:40.550399px;}
.h18{height:40.867199px;}
.hc{height:41.158746px;}
.h16{height:41.538000px;}
.h1c{height:41.779201px;}
.h15{height:42.084000px;}
.h1d{height:42.105601px;}
.h14{height:43.008000px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h26{height:44.505000px;}
.h27{height:45.090000px;}
.h3{height:45.744000px;}
.h25{height:46.080000px;}
.h12{height:47.454000px;}
.h9{height:51.840000px;}
.ha{height:53.406000px;}
.h24{height:54.095994px;}
.h23{height:54.102020px;}
.h11{height:54.108000px;}
.h21{height:55.277990px;}
.h22{height:55.289997px;}
.h13{height:55.296000px;}
.h10{height:77.652000px;}
.h19{height:85.827602px;}
.h1a{height:85.852800px;}
.h1e{height:87.090005px;}
.h1f{height:87.108004px;}
.h5{height:112.164000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:14.083055px;}
.x2{left:61.191450px;}
.x12{left:103.143745px;}
.xb{left:109.521904px;}
.xa{left:133.996940px;}
.x8{left:140.952747px;}
.x10{left:232.334404px;}
.x4{left:233.456406px;}
.x6{left:251.450226px;}
.x13{left:260.998948px;}
.xc{left:281.247308px;}
.x18{left:300.594589px;}
.x9{left:326.409439px;}
.x5{left:328.979393px;}
.x14{left:398.031142px;}
.xd{left:413.999092px;}
.x15{left:537.207581px;}
.xe{left:552.000471px;}
.x3{left:584.586594px;}
.x16{left:680.306866px;}
.xf{left:692.247764px;}
.x17{left:816.003571px;}
.x11{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v6{vertical-align:-9.616025pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:11.945538pt;}
.v3{vertical-align:16.181320pt;}
.v2{vertical-align:18.133301pt;}
.v9{vertical-align:25.927199pt;}
.v8{vertical-align:39.987200pt;}
.ls75{letter-spacing:-2.480000pt;}
.ls89{letter-spacing:-1.760000pt;}
.ls6f{letter-spacing:-1.160000pt;}
.ls32{letter-spacing:-0.970667pt;}
.ls73{letter-spacing:-0.960000pt;}
.ls4c{letter-spacing:-0.834133pt;}
.ls42{letter-spacing:-0.809600pt;}
.ls6c{letter-spacing:-0.800000pt;}
.ls74{letter-spacing:-0.760000pt;}
.ls8c{letter-spacing:-0.720000pt;}
.ls84{letter-spacing:-0.640000pt;}
.ls86{letter-spacing:-0.600000pt;}
.ls30{letter-spacing:-0.485333pt;}
.ls8b{letter-spacing:-0.480000pt;}
.ls6e{letter-spacing:-0.440000pt;}
.ls2a{letter-spacing:-0.432000pt;}
.ls85{letter-spacing:-0.400000pt;}
.ls58{letter-spacing:-0.384000pt;}
.ls8a{letter-spacing:-0.336000pt;}
.ls33{letter-spacing:-0.298667pt;}
.ls70{letter-spacing:-0.280000pt;}
.ls1b{letter-spacing:-0.272000pt;}
.ls2c{letter-spacing:-0.240000pt;}
.ls4d{letter-spacing:-0.217600pt;}
.ls41{letter-spacing:-0.211200pt;}
.ls72{letter-spacing:-0.200000pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls69{letter-spacing:-0.160000pt;}
.ls67{letter-spacing:-0.156000pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.136000pt;}
.ls5b{letter-spacing:-0.124800pt;}
.ls80{letter-spacing:-0.120000pt;}
.ls59{letter-spacing:-0.106667pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.090667pt;}
.ls6a{letter-spacing:-0.080000pt;}
.ls40{letter-spacing:-0.070400pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls6b{letter-spacing:-0.040000pt;}
.ls51{letter-spacing:-0.031200pt;}
.ls17{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000075pt;}
.ls37{letter-spacing:0.000104pt;}
.ls48{letter-spacing:0.000117pt;}
.lse{letter-spacing:0.007968pt;}
.ls2{letter-spacing:0.011754pt;}
.ls47{letter-spacing:0.012262pt;}
.ls3{letter-spacing:0.012405pt;}
.ls38{letter-spacing:0.013762pt;}
.ls5e{letter-spacing:0.014734pt;}
.ls1f{letter-spacing:0.015600pt;}
.ls36{letter-spacing:0.018668pt;}
.ls45{letter-spacing:0.019201pt;}
.ls4e{letter-spacing:0.022950pt;}
.ls46{letter-spacing:0.027189pt;}
.ls28{letter-spacing:0.031200pt;}
.ls50{letter-spacing:0.033041pt;}
.ls4f{letter-spacing:0.034707pt;}
.ls71{letter-spacing:0.040000pt;}
.ls27{letter-spacing:0.048000pt;}
.ls54{letter-spacing:0.062400pt;}
.ls66{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.093600pt;}
.ls11{letter-spacing:0.096000pt;}
.ls88{letter-spacing:0.120000pt;}
.ls4{letter-spacing:0.124800pt;}
.ls10{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.151178pt;}
.ls52{letter-spacing:0.155999pt;}
.ls9{letter-spacing:0.156000pt;}
.ls5{letter-spacing:0.164293pt;}
.ls43{letter-spacing:0.168016pt;}
.ls31{letter-spacing:0.186667pt;}
.ls3e{letter-spacing:0.187200pt;}
.ls6{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.193527pt;}
.ls60{letter-spacing:0.200000pt;}
.ls15{letter-spacing:0.226667pt;}
.lsf{letter-spacing:0.233999pt;}
.ls8{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.249600pt;}
.lsd{letter-spacing:0.253397pt;}
.ls7d{letter-spacing:0.260000pt;}
.ls3d{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.280000pt;}
.ls5a{letter-spacing:0.280800pt;}
.lsb{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.294814pt;}
.ls14{letter-spacing:0.295384pt;}
.ls55{letter-spacing:0.311999pt;}
.ls7f{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.335999pt;}
.ls25{letter-spacing:0.336000pt;}
.ls35{letter-spacing:0.336001pt;}
.ls19{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.403205pt;}
.ls29{letter-spacing:0.405600pt;}
.ls53{letter-spacing:0.418694pt;}
.ls24{letter-spacing:0.432000pt;}
.ls83{letter-spacing:0.440000pt;}
.ls13{letter-spacing:0.453333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls87{letter-spacing:0.520000pt;}
.ls23{letter-spacing:0.527999pt;}
.ls3c{letter-spacing:0.528000pt;}
.ls7b{letter-spacing:0.560000pt;}
.ls44{letter-spacing:0.576000pt;}
.ls57{letter-spacing:0.586667pt;}
.ls64{letter-spacing:0.600000pt;}
.ls20{letter-spacing:0.624000pt;}
.ls61{letter-spacing:0.680000pt;}
.ls68{letter-spacing:0.686400pt;}
.ls6d{letter-spacing:0.720000pt;}
.ls7c{letter-spacing:0.732027pt;}
.ls81{letter-spacing:0.760000pt;}
.ls34{letter-spacing:0.768000pt;}
.ls8e{letter-spacing:0.816000pt;}
.ls56{letter-spacing:0.864000pt;}
.ls5c{letter-spacing:0.906667pt;}
.ls3f{letter-spacing:1.008000pt;}
.ls5f{letter-spacing:1.010119pt;}
.ls5d{letter-spacing:1.056000pt;}
.ls77{letter-spacing:1.180000pt;}
.ls82{letter-spacing:1.200000pt;}
.ls78{letter-spacing:1.240000pt;}
.ls79{letter-spacing:1.280000pt;}
.ls63{letter-spacing:1.288033pt;}
.ls65{letter-spacing:1.507940pt;}
.ls7e{letter-spacing:1.599999pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls7a{letter-spacing:3.267932pt;}
.ls76{letter-spacing:3.399972pt;}
.ls8d{letter-spacing:5.440000pt;}
.ls4a{letter-spacing:112.535471pt;}
.ls3a{letter-spacing:113.766397pt;}
.ls49{letter-spacing:118.882136pt;}
.ls39{letter-spacing:119.081598pt;}
.ls3b{letter-spacing:130.415990pt;}
.ls4b{letter-spacing:141.258665pt;}
.ws8{word-spacing:-45.242667pt;}
.ws1{word-spacing:-42.666667pt;}
.ws7{word-spacing:-29.466667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws21{word-spacing:-13.066667pt;}
.ws26{word-spacing:-12.085333pt;}
.ws84{word-spacing:-11.952000pt;}
.ws40{word-spacing:-11.280000pt;}
.ws5a{word-spacing:-11.232000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws86{word-spacing:-11.040000pt;}
.ws42{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws28{word-spacing:-10.896000pt;}
.ws73{word-spacing:-10.848000pt;}
.ws27{word-spacing:-10.800000pt;}
.ws74{word-spacing:-10.608000pt;}
.ws24{word-spacing:-10.560000pt;}
.wsa7{word-spacing:-10.360000pt;}
.wsa6{word-spacing:-10.320000pt;}
.wsad{word-spacing:-9.800000pt;}
.ws8b{word-spacing:-9.760000pt;}
.ws8e{word-spacing:-9.280000pt;}
.ws90{word-spacing:-9.240000pt;}
.ws88{word-spacing:-9.080000pt;}
.ws8a{word-spacing:-9.040000pt;}
.wsaa{word-spacing:-9.000000pt;}
.wsa8{word-spacing:-8.960000pt;}
.wsac{word-spacing:-8.920000pt;}
.ws8d{word-spacing:-8.880000pt;}
.ws46{word-spacing:-8.800000pt;}
.wsab{word-spacing:-8.760000pt;}
.ws89{word-spacing:-8.680000pt;}
.wsb8{word-spacing:-8.600000pt;}
.wsa9{word-spacing:-8.520000pt;}
.ws8f{word-spacing:-8.400000pt;}
.ws2d{word-spacing:-8.250667pt;}
.ws64{word-spacing:-8.014934pt;}
.ws8c{word-spacing:-8.000000pt;}
.ws5d{word-spacing:-7.942400pt;}
.ws4d{word-spacing:-7.779200pt;}
.ws85{word-spacing:-7.768800pt;}
.ws43{word-spacing:-7.708800pt;}
.ws23{word-spacing:-7.488000pt;}
.ws75{word-spacing:-7.363200pt;}
.ws6{word-spacing:-7.332000pt;}
.ws41{word-spacing:-7.269600pt;}
.ws5b{word-spacing:-7.238400pt;}
.ws87{word-spacing:-7.207200pt;}
.ws25{word-spacing:-7.176000pt;}
.ws6d{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.141333pt;}
.ws22{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws6c{word-spacing:-7.051200pt;}
.ws76{word-spacing:-6.957600pt;}
.ws83{word-spacing:-6.926400pt;}
.wsc7{word-spacing:-5.440000pt;}
.ws5c{word-spacing:-5.115413pt;}
.ws44{word-spacing:-4.964960pt;}
.ws54{word-spacing:-4.896000pt;}
.ws3e{word-spacing:-3.808000pt;}
.ws94{word-spacing:-3.754667pt;}
.wsc5{word-spacing:-3.520000pt;}
.ws6a{word-spacing:-3.336533pt;}
.ws58{word-spacing:-3.238400pt;}
.wsb{word-spacing:-2.912000pt;}
.wsd{word-spacing:-2.666667pt;}
.ws1f{word-spacing:-1.813333pt;}
.ws31{word-spacing:-1.728000pt;}
.ws14{word-spacing:-1.680000pt;}
.ws78{word-spacing:-1.653333pt;}
.ws18{word-spacing:-1.632000pt;}
.ws37{word-spacing:-1.600000pt;}
.ws7e{word-spacing:-1.584000pt;}
.ws93{word-spacing:-1.488000pt;}
.ws7c{word-spacing:-1.440000pt;}
.wsb0{word-spacing:-1.400000pt;}
.ws1c{word-spacing:-1.360000pt;}
.ws91{word-spacing:-1.344000pt;}
.ws6e{word-spacing:-1.296000pt;}
.ws13{word-spacing:-1.248000pt;}
.wsc6{word-spacing:-1.232000pt;}
.ws7d{word-spacing:-1.200000pt;}
.ws1e{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.104000pt;}
.ws1a{word-spacing:-1.056000pt;}
.ws3c{word-spacing:-1.045333pt;}
.wse{word-spacing:-1.008000pt;}
.ws9b{word-spacing:-1.000000pt;}
.ws17{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.920000pt;}
.ws36{word-spacing:-0.912000pt;}
.ws20{word-spacing:-0.906667pt;}
.ws53{word-spacing:-0.864000pt;}
.ws3d{word-spacing:-0.858667pt;}
.wsa{word-spacing:-0.853333pt;}
.ws57{word-spacing:-0.844800pt;}
.ws6b{word-spacing:-0.834133pt;}
.ws3b{word-spacing:-0.821333pt;}
.ws1b{word-spacing:-0.816000pt;}
.ws59{word-spacing:-0.809600pt;}
.wsaf{word-spacing:-0.800000pt;}
.ws69{word-spacing:-0.797867pt;}
.ws56{word-spacing:-0.774400pt;}
.wsb4{word-spacing:-0.760000pt;}
.wsa3{word-spacing:-0.720000pt;}
.ws9a{word-spacing:-0.680000pt;}
.ws39{word-spacing:-0.672000pt;}
.ws97{word-spacing:-0.640000pt;}
.ws9c{word-spacing:-0.600000pt;}
.ws77{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.576000pt;}
.ws52{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.528000pt;}
.wsbe{word-spacing:-0.520000pt;}
.ws38{word-spacing:-0.480000pt;}
.wsbf{word-spacing:-0.440000pt;}
.ws11{word-spacing:-0.432000pt;}
.ws12{word-spacing:-0.384000pt;}
.ws96{word-spacing:-0.360000pt;}
.ws3a{word-spacing:-0.336000pt;}
.ws32{word-spacing:-0.288000pt;}
.ws7a{word-spacing:-0.280800pt;}
.wsbb{word-spacing:-0.280000pt;}
.ws30{word-spacing:-0.240000pt;}
.wsb2{word-spacing:-0.200000pt;}
.ws16{word-spacing:-0.192000pt;}
.ws70{word-spacing:-0.187200pt;}
.ws9d{word-spacing:-0.160000pt;}
.ws15{word-spacing:-0.144000pt;}
.ws6f{word-spacing:-0.096000pt;}
.wsa2{word-spacing:-0.080000pt;}
.ws35{word-spacing:-0.048000pt;}
.wsb5{word-spacing:-0.040000pt;}
.ws2e{word-spacing:-0.031200pt;}
.ws9{word-spacing:0.000000pt;}
.ws79{word-spacing:0.048000pt;}
.ws34{word-spacing:0.096000pt;}
.ws33{word-spacing:0.106667pt;}
.ws3f{word-spacing:0.112000pt;}
.ws71{word-spacing:0.144000pt;}
.ws92{word-spacing:0.156000pt;}
.wsc0{word-spacing:0.160000pt;}
.ws51{word-spacing:0.192000pt;}
.wsb1{word-spacing:0.200000pt;}
.ws7f{word-spacing:0.240000pt;}
.ws68{word-spacing:0.288000pt;}
.ws9e{word-spacing:0.320000pt;}
.ws80{word-spacing:0.336000pt;}
.wsae{word-spacing:0.360000pt;}
.ws67{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.432000pt;}
.wsbc{word-spacing:0.440000pt;}
.wsbd{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.498667pt;}
.ws72{word-spacing:0.528000pt;}
.wsa0{word-spacing:0.640000pt;}
.ws9f{word-spacing:0.760000pt;}
.wsc4{word-spacing:0.768000pt;}
.ws99{word-spacing:0.800000pt;}
.ws98{word-spacing:0.840000pt;}
.ws50{word-spacing:0.864000pt;}
.wsc1{word-spacing:0.880000pt;}
.wsa1{word-spacing:0.960000pt;}
.wsb3{word-spacing:1.000000pt;}
.ws7b{word-spacing:1.008000pt;}
.wsc8{word-spacing:1.056000pt;}
.ws81{word-spacing:1.066667pt;}
.ws82{word-spacing:1.104000pt;}
.wsc3{word-spacing:1.152000pt;}
.ws55{word-spacing:1.488000pt;}
.wsa5{word-spacing:1.560000pt;}
.wsa4{word-spacing:1.720000pt;}
.wsb6{word-spacing:2.160000pt;}
.wsb7{word-spacing:2.200000pt;}
.wsb9{word-spacing:2.240000pt;}
.wsba{word-spacing:2.280000pt;}
.wsc2{word-spacing:3.360000pt;}
.ws47{word-spacing:24.182398pt;}
.ws45{word-spacing:29.004800pt;}
.ws48{word-spacing:40.339192pt;}
.ws2a{word-spacing:46.857063pt;}
.ws5f{word-spacing:47.944535pt;}
.ws60{word-spacing:48.452262pt;}
.ws61{word-spacing:61.834669pt;}
.ws4f{word-spacing:64.556798pt;}
.ws62{word-spacing:65.352536pt;}
.ws4c{word-spacing:67.724791pt;}
.ws4a{word-spacing:67.971198pt;}
.ws5e{word-spacing:71.699201pt;}
.ws49{word-spacing:73.286399pt;}
.ws63{word-spacing:76.667730pt;}
.ws4b{word-spacing:84.620791pt;}
.ws66{word-spacing:94.075730pt;}
.ws2c{word-spacing:140.522663pt;}
.ws2b{word-spacing:149.034663pt;}
.ws29{word-spacing:292.320014pt;}
.ws65{word-spacing:478.103475pt;}
.ws4e{word-spacing:529.865616pt;}
._4f{margin-left:-12.000000pt;}
._4e{margin-left:-10.360000pt;}
._4b{margin-left:-9.400000pt;}
._6{margin-left:-7.674275pt;}
._43{margin-left:-6.501268pt;}
._3{margin-left:-4.661345pt;}
._2{margin-left:-3.114654pt;}
._0{margin-left:-1.578682pt;}
._4{width:0.974538pt;}
._5{width:1.998871pt;}
._42{width:3.066342pt;}
._41{width:4.074717pt;}
._49{width:5.658682pt;}
._4c{width:6.554273pt;}
._47{width:7.498682pt;}
._48{width:9.040000pt;}
._4a{width:10.560000pt;}
._46{width:11.520000pt;}
._9{width:13.583993pt;}
._50{width:14.680002pt;}
._4d{width:16.138684pt;}
._1e{width:32.058593pt;}
._31{width:33.687408pt;}
._1{width:37.713558pt;}
._44{width:38.938752pt;}
._45{width:40.518512pt;}
._7{width:41.629313pt;}
._1d{width:43.088064pt;}
._8{width:44.397943pt;}
._19{width:45.377134pt;}
._1f{width:50.564256pt;}
._22{width:52.342405pt;}
._32{width:55.266130pt;}
._25{width:56.742406pt;}
._20{width:58.554647pt;}
._21{width:60.424057pt;}
._12{width:61.786663pt;}
._13{width:65.520000pt;}
._1b{width:70.298663pt;}
._23{width:75.959005pt;}
._2d{width:77.862399pt;}
._26{width:80.678386pt;}
._24{width:82.438410pt;}
._d{width:85.765349pt;}
._30{width:89.196791pt;}
._33{width:92.791280pt;}
._3c{width:97.956272pt;}
._1c{width:100.464000pt;}
._37{width:107.460294pt;}
._28{width:109.120004pt;}
._2b{width:114.470385pt;}
._36{width:116.343469pt;}
._34{width:117.803107pt;}
._2a{width:124.396804pt;}
._c{width:127.462945pt;}
._35{width:131.140269pt;}
._29{width:133.126409pt;}
._e{width:156.986667pt;}
._10{width:161.242667pt;}
._17{width:166.917330pt;}
._3f{width:168.349871pt;}
._15{width:179.162667pt;}
._18{width:197.082667pt;}
._40{width:208.992411pt;}
._16{width:247.669339pt;}
._39{width:257.063826pt;}
._27{width:260.052302pt;}
._1a{width:266.421864pt;}
._2c{width:273.292801pt;}
._14{width:278.581339pt;}
._a{width:283.090938pt;}
._3e{width:284.531218pt;}
._3a{width:286.325332pt;}
._2f{width:288.569602pt;}
._2e{width:297.299207pt;}
._3b{width:300.742870pt;}
._38{width:333.979742pt;}
._3d{width:336.663484pt;}
._b{width:342.559053pt;}
._11{width:395.658654pt;}
._f{width:537.872003pt;}
.fsd{font-size:22.880000pt;}
.fsf{font-size:23.573334pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:35.199999pt;}
.fse{font-size:36.266668pt;}
.fsb{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y30{bottom:60.723466pt;}
.y175{bottom:67.979337pt;}
.ya6{bottom:72.266677pt;}
.y1bf{bottom:72.484265pt;}
.y12e{bottom:72.884930pt;}
.y2f{bottom:74.051466pt;}
.y174{bottom:79.309338pt;}
.y58{bottom:80.941334pt;}
.ycc{bottom:81.818932pt;}
.y7c{bottom:85.141607pt;}
.ya5{bottom:85.598676pt;}
.y12d{bottom:86.216929pt;}
.y2e{bottom:87.384799pt;}
.y173{bottom:90.639338pt;}
.y1be{bottom:91.816264pt;}
.y57{bottom:94.273333pt;}
.ycb{bottom:95.150931pt;}
.y7b{bottom:98.473607pt;}
.ya4{bottom:98.930676pt;}
.y172{bottom:101.969338pt;}
.yed{bottom:103.152265pt;}
.y2d{bottom:104.566132pt;}
.y1bd{bottom:105.149597pt;}
.y56{bottom:107.605332pt;}
.yca{bottom:108.489601pt;}
.y7a{bottom:111.805606pt;}
.y12c{bottom:112.173744pt;}
.ya3{bottom:112.262675pt;}
.y171{bottom:113.299338pt;}
.yec{bottom:116.484265pt;}
.y2c{bottom:117.899465pt;}
.y55{bottom:120.937331pt;}
.yc9{bottom:121.821600pt;}
.y170{bottom:124.629338pt;}
.y79{bottom:125.137605pt;}
.y12b{bottom:125.505743pt;}
.ya2{bottom:125.594674pt;}
.y1bc{bottom:129.152265pt;}
.yeb{bottom:129.822934pt;}
.y54{bottom:134.269331pt;}
.yc8{bottom:135.153599pt;}
.y16f{bottom:135.959338pt;}
.y78{bottom:138.472273pt;}
.y12a{bottom:138.837742pt;}
.ya1{bottom:138.926674pt;}
.y1bb{bottom:142.484265pt;}
.yea{bottom:143.154933pt;}
.y16e{bottom:147.289338pt;}
.y53{bottom:147.601330pt;}
.yc7{bottom:148.485599pt;}
.y77{bottom:151.804272pt;}
.y129{bottom:152.169742pt;}
.ya0{bottom:152.258673pt;}
.y2b{bottom:152.613613pt;}
.y1ba{bottom:155.816264pt;}
.ye9{bottom:156.486933pt;}
.y16d{bottom:158.619338pt;}
.y52{bottom:160.933329pt;}
.yc6{bottom:161.817598pt;}
.y76{bottom:165.140273pt;}
.y128{bottom:165.501741pt;}
.y9f{bottom:165.590672pt;}
.y2a{bottom:165.945612pt;}
.y1b9{bottom:169.149597pt;}
.ye8{bottom:169.818932pt;}
.y16c{bottom:169.949338pt;}
.yc5{bottom:175.150931pt;}
.y75{bottom:178.472273pt;}
.y127{bottom:178.848415pt;}
.y9e{bottom:178.922671pt;}
.y29{bottom:179.277611pt;}
.y16b{bottom:181.279338pt;}
.ye7{bottom:183.150931pt;}
.yc4{bottom:188.492269pt;}
.y51{bottom:190.049465pt;}
.y74{bottom:191.804272pt;}
.y126{bottom:192.180414pt;}
.y9d{bottom:192.254671pt;}
.y16a{bottom:192.609339pt;}
.y28{bottom:192.609610pt;}
.y1b8{bottom:193.158936pt;}
.ye6{bottom:196.490935pt;}
.yc3{bottom:201.824268pt;}
.y50{bottom:203.381464pt;}
.y169{bottom:203.939339pt;}
.y73{bottom:205.136271pt;}
.y125{bottom:205.512413pt;}
.y9c{bottom:205.586670pt;}
.y27{bottom:205.945612pt;}
.y1b7{bottom:206.490935pt;}
.ye5{bottom:209.822934pt;}
.yc2{bottom:215.156267pt;}
.y168{bottom:215.269339pt;}
.y4f{bottom:216.713463pt;}
.y124{bottom:218.844413pt;}
.y9b{bottom:218.920003pt;}
.y26{bottom:219.277611pt;}
.y1b6{bottom:219.822934pt;}
.ye4{bottom:223.154933pt;}
.y167{bottom:226.599339pt;}
.yc1{bottom:228.488267pt;}
.y4e{bottom:230.045462pt;}
.y123{bottom:232.176412pt;}
.y25{bottom:232.609610pt;}
.y1b5{bottom:233.154933pt;}
.y72{bottom:234.486947pt;}
.ye3{bottom:236.486933pt;}
.y166{bottom:237.929339pt;}
.yc0{bottom:241.820266pt;}
.y4d{bottom:243.377462pt;}
.y122{bottom:245.508411pt;}
.y24{bottom:245.942944pt;}
.y1b4{bottom:246.486933pt;}
.y9a{bottom:247.804272pt;}
.y71{bottom:247.818946pt;}
.y165{bottom:249.259339pt;}
.ye2{bottom:249.818932pt;}
.ybf{bottom:255.152265pt;}
.y4c{bottom:256.709461pt;}
.y121{bottom:258.840410pt;}
.y23{bottom:259.277611pt;}
.y1b3{bottom:259.818932pt;}
.y164{bottom:260.589339pt;}
.y99{bottom:261.146944pt;}
.y70{bottom:261.150946pt;}
.ye1{bottom:263.150931pt;}
.ybe{bottom:268.484265pt;}
.y4b{bottom:270.041460pt;}
.y163{bottom:271.919339pt;}
.y120{bottom:272.172410pt;}
.y22{bottom:272.609610pt;}
.y1b2{bottom:273.150931pt;}
.y98{bottom:274.478943pt;}
.y6f{bottom:274.482945pt;}
.ye0{bottom:276.489621pt;}
.ybd{bottom:281.816264pt;}
.y162{bottom:283.249339pt;}
.y4a{bottom:283.373460pt;}
.y11f{bottom:285.504409pt;}
.y21{bottom:285.942944pt;}
.y1b1{bottom:286.482930pt;}
.y97{bottom:287.810942pt;}
.y6e{bottom:287.814944pt;}
.ydf{bottom:289.821620pt;}
.y161{bottom:294.579339pt;}
.y49{bottom:296.705459pt;}
.y11e{bottom:298.836408pt;}
.y20{bottom:299.276277pt;}
.y1b0{bottom:299.816264pt;}
.y96{bottom:301.142941pt;}
.y6d{bottom:301.146944pt;}
.yde{bottom:303.153620pt;}
.y160{bottom:305.909340pt;}
.y48{bottom:310.037458pt;}
.y11d{bottom:312.168408pt;}
.y1f{bottom:312.610944pt;}
.y95{bottom:314.474941pt;}
.y6c{bottom:314.478943pt;}
.ydd{bottom:316.485619pt;}
.y15f{bottom:317.239340pt;}
.y47{bottom:323.369457pt;}
.y1af{bottom:324.006238pt;}
.y11c{bottom:325.508292pt;}
.y1e{bottom:325.942944pt;}
.y94{bottom:327.806940pt;}
.y6b{bottom:327.810942pt;}
.y15e{bottom:328.569340pt;}
.ydc{bottom:329.817618pt;}
.yd2{bottom:333.817984pt;}
.y1ae{bottom:335.336238pt;}
.y46{bottom:336.701457pt;}
.y11b{bottom:338.840291pt;}
.y1d{bottom:339.277611pt;}
.y15d{bottom:339.899340pt;}
.y93{bottom:341.138939pt;}
.y6a{bottom:341.142941pt;}
.ydb{bottom:343.154954pt;}
.y1ad{bottom:346.666238pt;}
.yd1{bottom:347.151318pt;}
.y45{bottom:350.034790pt;}
.y15c{bottom:351.229340pt;}
.y11a{bottom:352.172290pt;}
.y1c{bottom:352.609610pt;}
.y92{bottom:354.470939pt;}
.y69{bottom:354.474941pt;}
.yda{bottom:356.486953pt;}
.y1ac{bottom:357.996238pt;}
.yd0{bottom:360.487319pt;}
.y15b{bottom:362.559340pt;}
.y119{bottom:365.504290pt;}
.y1b{bottom:365.942944pt;}
.y91{bottom:367.802938pt;}
.y68{bottom:367.806940pt;}
.y1ab{bottom:369.326238pt;}
.yd9{bottom:369.818952pt;}
.ycf{bottom:373.819319pt;}
.y15a{bottom:373.889340pt;}
.y118{bottom:378.836289pt;}
.y44{bottom:379.144275pt;}
.y1a{bottom:379.276277pt;}
.y1aa{bottom:380.656238pt;}
.y67{bottom:381.138939pt;}
.yd8{bottom:383.150952pt;}
.y159{bottom:385.219340pt;}
.yce{bottom:387.151318pt;}
.y1a9{bottom:391.986238pt;}
.y117{bottom:392.168288pt;}
.y43{bottom:392.476275pt;}
.y19{bottom:392.609610pt;}
.y66{bottom:394.470939pt;}
.yd7{bottom:396.488287pt;}
.y158{bottom:396.549340pt;}
.ycd{bottom:400.483317pt;}
.y1a8{bottom:403.316238pt;}
.y116{bottom:405.500288pt;}
.y42{bottom:405.808274pt;}
.y18{bottom:405.976276pt;}
.y65{bottom:407.802938pt;}
.y157{bottom:407.879340pt;}
.yd6{bottom:409.820286pt;}
.y1a7{bottom:414.646239pt;}
.y115{bottom:418.832287pt;}
.y41{bottom:419.140273pt;}
.y156{bottom:419.209341pt;}
.yd5{bottom:423.152286pt;}
.ybc{bottom:423.637605pt;}
.y1a6{bottom:425.976239pt;}
.y155{bottom:430.539341pt;}
.y114{bottom:432.164286pt;}
.y40{bottom:432.472273pt;}
.yd4{bottom:436.484285pt;}
.ybb{bottom:436.969604pt;}
.y1a5{bottom:437.306239pt;}
.y154{bottom:441.869341pt;}
.y113{bottom:445.496285pt;}
.y3f{bottom:445.804272pt;}
.y17{bottom:447.976276pt;}
.y1a4{bottom:448.636239pt;}
.yd3{bottom:449.816284pt;}
.y153{bottom:453.199341pt;}
.y90{bottom:456.137605pt;}
.y3e{bottom:459.137605pt;}
.y1a3{bottom:459.966239pt;}
.y16{bottom:462.640276pt;}
.yba{bottom:463.746928pt;}
.y152{bottom:464.532674pt;}
.y8f{bottom:469.469604pt;}
.y1a2{bottom:471.296239pt;}
.y3d{bottom:472.474941pt;}
.y112{bottom:473.832290pt;}
.y15{bottom:477.304276pt;}
.yb9{bottom:479.250928pt;}
.y1a1{bottom:482.626239pt;}
.y3c{bottom:485.806940pt;}
.y111{bottom:487.164289pt;}
.y151{bottom:488.532674pt;}
.y14{bottom:491.968276pt;}
.y1a0{bottom:493.956239pt;}
.yb8{bottom:494.754929pt;}
.y8e{bottom:496.338137pt;}
.yf0{bottom:498.372948pt;}
.y3b{bottom:499.138939pt;}
.y110{bottom:500.496288pt;}
.y150{bottom:501.866007pt;}
.y19f{bottom:505.286239pt;}
.y13{bottom:506.632276pt;}
.yb7{bottom:510.258930pt;}
.yef{bottom:511.704947pt;}
.y8d{bottom:511.834938pt;}
.y3a{bottom:512.470939pt;}
.y10f{bottom:513.828288pt;}
.y19e{bottom:516.616239pt;}
.y12{bottom:521.296276pt;}
.yee{bottom:525.036947pt;}
.yb6{bottom:525.762931pt;}
.y39{bottom:525.806940pt;}
.y10e{bottom:527.160287pt;}
.y8c{bottom:527.331738pt;}
.y14f{bottom:527.817618pt;}
.y19d{bottom:527.946240pt;}
.y11{bottom:535.960276pt;}
.y38{bottom:539.138939pt;}
.y19c{bottom:539.276240pt;}
.y10d{bottom:540.492286pt;}
.y14e{bottom:541.154954pt;}
.yb5{bottom:541.266931pt;}
.y8b{bottom:542.828538pt;}
.y19b{bottom:550.606240pt;}
.y10{bottom:550.624276pt;}
.y37{bottom:552.470939pt;}
.y10c{bottom:553.824286pt;}
.y14d{bottom:554.486953pt;}
.yb4{bottom:556.770932pt;}
.y8a{bottom:558.325338pt;}
.y19a{bottom:561.936240pt;}
.yf{bottom:565.288276pt;}
.y36{bottom:565.802938pt;}
.y10b{bottom:567.156285pt;}
.y14c{bottom:567.818952pt;}
.yb3{bottom:572.274933pt;}
.y199{bottom:573.266240pt;}
.y89{bottom:573.822138pt;}
.ye{bottom:579.952276pt;}
.y14b{bottom:581.150952pt;}
.y198{bottom:584.596240pt;}
.yb2{bottom:587.778933pt;}
.y88{bottom:589.318938pt;}
.y14a{bottom:594.485619pt;}
.yd{bottom:594.616276pt;}
.y197{bottom:595.926240pt;}
.y10a{bottom:599.484285pt;}
.yb1{bottom:603.282934pt;}
.y87{bottom:604.815738pt;}
.y196{bottom:607.256240pt;}
.y149{bottom:607.817618pt;}
.yc{bottom:609.280276pt;}
.y64{bottom:611.469604pt;}
.y109{bottom:612.817618pt;}
.y195{bottom:618.586240pt;}
.yb0{bottom:618.786935pt;}
.y86{bottom:620.312538pt;}
.y148{bottom:621.168254pt;}
.yb{bottom:623.944276pt;}
.y108{bottom:626.161580pt;}
.y194{bottom:629.916240pt;}
.yaf{bottom:634.290936pt;}
.y147{bottom:634.500253pt;}
.y85{bottom:635.809338pt;}
.y63{bottom:638.284230pt;}
.ya{bottom:638.608276pt;}
.y107{bottom:639.493580pt;}
.y193{bottom:641.246241pt;}
.y146{bottom:647.832252pt;}
.yae{bottom:649.794936pt;}
.y80{bottom:651.302938pt;}
.y84{bottom:651.306138pt;}
.y192{bottom:652.576241pt;}
.y106{bottom:652.825579pt;}
.y62{bottom:653.786897pt;}
.y145{bottom:661.164251pt;}
.y191{bottom:663.906241pt;}
.y8{bottom:665.274943pt;}
.yad{bottom:665.298937pt;}
.ya9{bottom:665.302938pt;}
.y105{bottom:666.157578pt;}
.y83{bottom:666.802938pt;}
.y82{bottom:666.808537pt;}
.y61{bottom:669.289563pt;}
.y9{bottom:669.808268pt;}
.y33{bottom:673.018130pt;}
.y144{bottom:674.496251pt;}
.y190{bottom:675.236241pt;}
.y81{bottom:676.805337pt;}
.yac{bottom:680.802938pt;}
.yab{bottom:680.806938pt;}
.y60{bottom:684.792230pt;}
.y18f{bottom:686.566241pt;}
.y143{bottom:687.828250pt;}
.yaa{bottom:690.807472pt;}
.y32{bottom:691.684130pt;}
.y7{bottom:694.592232pt;}
.y18e{bottom:697.896241pt;}
.y104{bottom:698.485578pt;}
.y5f{bottom:700.294897pt;}
.y142{bottom:701.160249pt;}
.y18d{bottom:709.226241pt;}
.y31{bottom:710.350129pt;}
.y103{bottom:711.817578pt;}
.y141{bottom:714.492249pt;}
.y5e{bottom:715.797564pt;}
.y7f{bottom:718.628807pt;}
.y18c{bottom:720.556241pt;}
.y102{bottom:725.152245pt;}
.y140{bottom:727.824248pt;}
.y5d{bottom:731.300230pt;}
.y18b{bottom:731.886241pt;}
.y7e{bottom:731.960807pt;}
.y6{bottom:734.597566pt;}
.ya8{bottom:735.334505pt;}
.y101{bottom:738.484244pt;}
.y13f{bottom:741.156247pt;}
.y18a{bottom:743.216241pt;}
.y7d{bottom:745.292806pt;}
.y5c{bottom:746.802897pt;}
.ya7{bottom:748.666504pt;}
.y100{bottom:751.817578pt;}
.y13e{bottom:754.488246pt;}
.y189{bottom:754.546242pt;}
.yff{bottom:765.149577pt;}
.y188{bottom:765.876242pt;}
.y13d{bottom:767.820246pt;}
.y5{bottom:774.602901pt;}
.y187{bottom:777.206242pt;}
.y13c{bottom:781.152245pt;}
.y186{bottom:788.536242pt;}
.y5b{bottom:790.507714pt;}
.y13b{bottom:794.484244pt;}
.yfe{bottom:794.497585pt;}
.y185{bottom:799.866242pt;}
.y5a{bottom:803.839713pt;}
.y13a{bottom:807.821580pt;}
.yfd{bottom:807.829584pt;}
.y184{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y1c9{bottom:815.161583pt;}
.y59{bottom:817.171712pt;}
.y139{bottom:821.153579pt;}
.yfc{bottom:821.161583pt;}
.y183{bottom:822.526242pt;}
.y34{bottom:823.475179pt;}
.y1c8{bottom:828.493583pt;}
.y182{bottom:833.856242pt;}
.y138{bottom:834.485578pt;}
.yfb{bottom:834.493583pt;}
.y1c7{bottom:841.825582pt;}
.y181{bottom:845.186242pt;}
.y137{bottom:847.817578pt;}
.yfa{bottom:847.825582pt;}
.y1c6{bottom:855.157581pt;}
.y180{bottom:856.516242pt;}
.yf9{bottom:861.157581pt;}
.y136{bottom:861.160249pt;}
.y17f{bottom:867.846243pt;}
.y1c5{bottom:868.489580pt;}
.yf8{bottom:874.489580pt;}
.y135{bottom:874.492249pt;}
.y17e{bottom:879.176243pt;}
.y1c4{bottom:881.821580pt;}
.yf7{bottom:887.821580pt;}
.y134{bottom:887.824248pt;}
.y17d{bottom:890.506243pt;}
.y1c3{bottom:895.153579pt;}
.yf6{bottom:901.153579pt;}
.y133{bottom:901.156247pt;}
.y17c{bottom:901.836243pt;}
.y1c2{bottom:908.485578pt;}
.y17b{bottom:913.166243pt;}
.yf5{bottom:914.485578pt;}
.y132{bottom:914.488246pt;}
.y1c1{bottom:921.817578pt;}
.y17a{bottom:924.496243pt;}
.yf4{bottom:927.817578pt;}
.y131{bottom:927.820246pt;}
.y1c0{bottom:935.149577pt;}
.y179{bottom:935.826243pt;}
.yf3{bottom:941.150911pt;}
.y130{bottom:941.152245pt;}
.y178{bottom:947.156243pt;}
.yf2{bottom:954.482910pt;}
.y12f{bottom:954.484244pt;}
.y177{bottom:958.486243pt;}
.yf1{bottom:967.816243pt;}
.y176{bottom:969.816243pt;}
.y35{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:21.193555pt;}
.h6{height:24.933594pt;}
.hf{height:31.461333pt;}
.hd{height:32.594667pt;}
.he{height:32.605469pt;}
.h7{height:34.512000pt;}
.h8{height:34.523438pt;}
.h1b{height:34.812799pt;}
.h20{height:35.867734pt;}
.h17{height:36.044799pt;}
.h18{height:36.326399pt;}
.hc{height:36.585552pt;}
.h16{height:36.922667pt;}
.h1c{height:37.137068pt;}
.h15{height:37.408000pt;}
.h1d{height:37.427201pt;}
.h14{height:38.229333pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h26{height:39.560000pt;}
.h27{height:40.080000pt;}
.h3{height:40.661333pt;}
.h25{height:40.960000pt;}
.h12{height:42.181333pt;}
.h9{height:46.080000pt;}
.ha{height:47.472000pt;}
.h24{height:48.085328pt;}
.h23{height:48.090684pt;}
.h11{height:48.096000pt;}
.h21{height:49.135991pt;}
.h22{height:49.146664pt;}
.h13{height:49.152000pt;}
.h10{height:69.024000pt;}
.h19{height:76.291202pt;}
.h1a{height:76.313600pt;}
.h1e{height:77.413338pt;}
.h1f{height:77.429337pt;}
.h5{height:99.701333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:12.518271pt;}
.x2{left:54.392400pt;}
.x12{left:91.683329pt;}
.xb{left:97.352804pt;}
.xa{left:119.108391pt;}
.x8{left:125.291331pt;}
.x10{left:206.519470pt;}
.x4{left:207.516805pt;}
.x6{left:223.511312pt;}
.x13{left:231.999065pt;}
.xc{left:249.997607pt;}
.x18{left:267.195190pt;}
.x9{left:290.141724pt;}
.x5{left:292.426127pt;}
.x14{left:353.805460pt;}
.xd{left:367.999192pt;}
.x15{left:477.517850pt;}
.xe{left:490.667086pt;}
.x3{left:519.632528pt;}
.x16{left:604.717214pt;}
.xf{left:615.331346pt;}
.x17{left:725.336507pt;}
.x11{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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