
    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_5ee1b6c0fd8ff61d6f2c0f2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_61f4b8c30d6237c19bd46ec4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d7e3b99b86379fa326f60414.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e86e50c7871421a4c2370974.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_632b1c72d6e0d3d3ef7081a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3b259861464bec64371726ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2019a5c6a99a8ba8927e7fc7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1b3300eeceb80c0176b5cd5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_1ef49f5bf9455571f3c6b8e7.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.036000px;}
.v1{vertical-align:23.659800px;}
.v5{vertical-align:27.110040px;}
.ls49{letter-spacing:-2.583360px;}
.ls16{letter-spacing:-2.538000px;}
.ls1d{letter-spacing:-2.322000px;}
.ls36{letter-spacing:-2.268000px;}
.ls2e{letter-spacing:-2.185920px;}
.ls56{letter-spacing:-2.171520px;}
.ls6a{letter-spacing:-1.920960px;}
.ls5{letter-spacing:-1.881360px;}
.ls6f{letter-spacing:-1.854720px;}
.ls14{letter-spacing:-1.782000px;}
.ls1e{letter-spacing:-1.728000px;}
.lsa{letter-spacing:-1.723680px;}
.ls41{letter-spacing:-1.722240px;}
.ls1f{letter-spacing:-1.674000px;}
.ls34{letter-spacing:-1.673280px;}
.ls57{letter-spacing:-1.670400px;}
.ls8{letter-spacing:-1.627920px;}
.ls10{letter-spacing:-1.620000px;}
.ls6b{letter-spacing:-1.589760px;}
.lse{letter-spacing:-1.566000px;}
.ls9{letter-spacing:-1.532160px;}
.ls53{letter-spacing:-1.523520px;}
.ls2a{letter-spacing:-1.512000px;}
.ls28{letter-spacing:-1.494000px;}
.ls11{letter-spacing:-1.458000px;}
.ls2b{letter-spacing:-1.457280px;}
.ls58{letter-spacing:-1.419840px;}
.ls20{letter-spacing:-1.404000px;}
.lsd{letter-spacing:-1.324800px;}
.ls12{letter-spacing:-1.296000px;}
.ls7{letter-spacing:-1.244880px;}
.ls15{letter-spacing:-1.242000px;}
.ls38{letter-spacing:-1.192320px;}
.ls3{letter-spacing:-1.157760px;}
.ls21{letter-spacing:-1.134000px;}
.ls2d{letter-spacing:-1.126080px;}
.lsf{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-1.061280px;}
.ls6d{letter-spacing:-1.059840px;}
.lsb{letter-spacing:-1.053360px;}
.ls29{letter-spacing:-1.026000px;}
.ls5d{letter-spacing:-0.960480px;}
.ls35{letter-spacing:-0.918000px;}
.ls6{letter-spacing:-0.916560px;}
.ls44{letter-spacing:-0.861120px;}
.ls2c{letter-spacing:-0.810000px;}
.ls4e{letter-spacing:-0.793440px;}
.lsc{letter-spacing:-0.766080px;}
.ls4a{letter-spacing:-0.728640px;}
.ls22{letter-spacing:-0.648000px;}
.ls39{letter-spacing:-0.596160px;}
.ls67{letter-spacing:-0.594000px;}
.ls3a{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.378000px;}
.ls1c{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.054000px;}
.ls59{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.162000px;}
.ls5b{letter-spacing:0.728640px;}
.ls3b{letter-spacing:0.918000px;}
.ls3d{letter-spacing:1.434240px;}
.ls47{letter-spacing:1.457280px;}
.ls24{letter-spacing:1.458000px;}
.ls5e{letter-spacing:1.620000px;}
.ls65{letter-spacing:2.185920px;}
.ls32{letter-spacing:2.322000px;}
.ls25{letter-spacing:2.848320px;}
.ls30{letter-spacing:3.078000px;}
.ls50{letter-spacing:3.576960px;}
.ls31{letter-spacing:3.780000px;}
.ls3f{letter-spacing:4.305600px;}
.ls43{letter-spacing:5.238000px;}
.ls54{letter-spacing:5.762880px;}
.ls4d{letter-spacing:5.940000px;}
.ls37{letter-spacing:6.491520px;}
.ls4c{letter-spacing:6.642000px;}
.ls4f{letter-spacing:7.220160px;}
.ls70{letter-spacing:7.312896px;}
.ls48{letter-spacing:7.398000px;}
.ls60{letter-spacing:7.948800px;}
.ls26{letter-spacing:8.100000px;}
.ls61{letter-spacing:8.611200px;}
.ls3c{letter-spacing:9.339840px;}
.ls1{letter-spacing:9.396000px;}
.ls33{letter-spacing:9.558000px;}
.ls73{letter-spacing:10.532160px;}
.ls51{letter-spacing:10.797120px;}
.ls66{letter-spacing:10.962000px;}
.ls45{letter-spacing:11.128320px;}
.ls46{letter-spacing:12.254400px;}
.ls62{letter-spacing:12.983040px;}
.ls68{letter-spacing:13.711680px;}
.ls40{letter-spacing:13.878000px;}
.ls5a{letter-spacing:14.374080px;}
.ls4b{letter-spacing:15.102720px;}
.ls5c{letter-spacing:15.831360px;}
.ls72{letter-spacing:17.229024px;}
.ls5f{letter-spacing:18.198000px;}
.ls69{letter-spacing:18.745920px;}
.ls55{letter-spacing:23.051520px;}
.ls64{letter-spacing:25.171200px;}
.ls42{letter-spacing:26.628480px;}
.ls6c{letter-spacing:27.357120px;}
.ls6e{letter-spacing:30.271680px;}
.ls63{letter-spacing:37.756800px;}
.ls52{letter-spacing:38.340000px;}
.ls71{letter-spacing:68.425920px;}
.ls3e{letter-spacing:119.099520px;}
.ls0{letter-spacing:1082.360880px;}
.ls2f{letter-spacing:1429.399440px;}
.ls23{letter-spacing:1700.112240px;}
.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;}
}
.ws112{word-spacing:-66.240000px;}
.ws2{word-spacing:-21.641760px;}
.ws3{word-spacing:-20.588400px;}
.ws4{word-spacing:-16.560000px;}
.ws137{word-spacing:-15.963840px;}
.wsd1{word-spacing:-15.698880px;}
.ws12e{word-spacing:-15.500160px;}
.ws7f{word-spacing:-15.433920px;}
.ws9d{word-spacing:-15.367680px;}
.wsb1{word-spacing:-15.235200px;}
.ws4a{word-spacing:-15.102720px;}
.wsfa{word-spacing:-15.036480px;}
.ws12a{word-spacing:-14.970240px;}
.wse5{word-spacing:-14.837760px;}
.ws129{word-spacing:-14.639040px;}
.ws4c{word-spacing:-14.374080px;}
.ws6{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.122000px;}
.ws11c{word-spacing:-12.906000px;}
.ws48{word-spacing:-12.690000px;}
.ws11a{word-spacing:-12.582000px;}
.wsa{word-spacing:-12.420000px;}
.wsf3{word-spacing:-12.258000px;}
.ws9{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:-12.042000px;}
.ws45{word-spacing:-12.011760px;}
.wsd{word-spacing:-11.988000px;}
.ws5{word-spacing:-11.934000px;}
.ws8{word-spacing:-11.880000px;}
.ws49{word-spacing:-11.826000px;}
.ws11b{word-spacing:-11.718000px;}
.ws11{word-spacing:-11.556000px;}
.ws47{word-spacing:-11.178000px;}
.ws10{word-spacing:-11.070000px;}
.ws1{word-spacing:-10.998720px;}
.ws46{word-spacing:-10.746000px;}
.wsf{word-spacing:-10.638000px;}
.wsc{word-spacing:-10.584000px;}
.ws13{word-spacing:-10.530000px;}
.ws12{word-spacing:-10.476000px;}
.ws4b{word-spacing:-10.440000px;}
.wse{word-spacing:-9.882000px;}
.wsed{word-spacing:-9.646560px;}
.ws103{word-spacing:-9.479520px;}
.wsff{word-spacing:-9.072000px;}
.wsfe{word-spacing:-9.020160px;}
.ws4d{word-spacing:-9.000000px;}
.wsfd{word-spacing:-8.769600px;}
.ws124{word-spacing:-8.352000px;}
.wsfc{word-spacing:-8.268480px;}
.ws1e{word-spacing:-4.309200px;}
.ws10e{word-spacing:-3.908160px;}
.ws71{word-spacing:-3.709440px;}
.ws87{word-spacing:-3.576960px;}
.ws12c{word-spacing:-3.179520px;}
.ws7b{word-spacing:-3.078000px;}
.wsbd{word-spacing:-2.980800px;}
.wsbe{word-spacing:-2.848320px;}
.ws2f{word-spacing:-2.592000px;}
.ws8b{word-spacing:-2.450880px;}
.ws11d{word-spacing:-2.384640px;}
.ws7d{word-spacing:-2.322000px;}
.ws72{word-spacing:-2.252160px;}
.ws8a{word-spacing:-2.119680px;}
.ws101{word-spacing:-2.106000px;}
.ws57{word-spacing:-1.890000px;}
.ws54{word-spacing:-1.836000px;}
.ws7e{word-spacing:-1.782000px;}
.ws108{word-spacing:-1.722240px;}
.ws7c{word-spacing:-1.620000px;}
.ws8d{word-spacing:-1.523520px;}
.ws8c{word-spacing:-1.391040px;}
.ws56{word-spacing:-1.188000px;}
.wsef{word-spacing:-1.080000px;}
.wsbf{word-spacing:-1.059840px;}
.wsa9{word-spacing:-0.918000px;}
.ws6a{word-spacing:-0.861120px;}
.wsf2{word-spacing:-0.756000px;}
.ws70{word-spacing:-0.728640px;}
.wsc2{word-spacing:-0.702000px;}
.ws4f{word-spacing:-0.540000px;}
.wsf9{word-spacing:-0.432000px;}
.ws2a{word-spacing:-0.378000px;}
.ws8f{word-spacing:-0.331200px;}
.ws13d{word-spacing:-0.264960px;}
.ws28{word-spacing:-0.216000px;}
.ws24{word-spacing:-0.162000px;}
.ws89{word-spacing:-0.132480px;}
.ws15{word-spacing:-0.096480px;}
.ws14{word-spacing:0.000000px;}
.ws78{word-spacing:0.054000px;}
.ws117{word-spacing:0.066240px;}
.ws39{word-spacing:0.162000px;}
.ws111{word-spacing:0.216000px;}
.wsee{word-spacing:0.264960px;}
.ws1f{word-spacing:0.287280px;}
.ws38{word-spacing:0.324000px;}
.ws23{word-spacing:0.378000px;}
.wse4{word-spacing:0.397440px;}
.ws80{word-spacing:0.418320px;}
.ws110{word-spacing:0.432000px;}
.ws2b{word-spacing:0.540000px;}
.wsa0{word-spacing:0.596160px;}
.ws29{word-spacing:0.702000px;}
.ws6d{word-spacing:0.728640px;}
.ws79{word-spacing:0.756000px;}
.ws44{word-spacing:0.864000px;}
.ws18{word-spacing:0.916560px;}
.ws12d{word-spacing:0.918000px;}
.ws4e{word-spacing:0.956160px;}
.ws1c{word-spacing:0.957600px;}
.ws139{word-spacing:0.993600px;}
.ws3e{word-spacing:1.026000px;}
.ws16{word-spacing:1.061280px;}
.ws27{word-spacing:1.080000px;}
.wsd7{word-spacing:1.126080px;}
.wse3{word-spacing:1.192320px;}
.ws76{word-spacing:1.242000px;}
.ws25{word-spacing:1.296000px;}
.ws20{word-spacing:1.324800px;}
.ws5d{word-spacing:1.404000px;}
.ws5f{word-spacing:1.457280px;}
.ws53{word-spacing:1.458000px;}
.ws131{word-spacing:1.523520px;}
.ws26{word-spacing:1.566000px;}
.ws36{word-spacing:1.620000px;}
.ws1a{word-spacing:1.627920px;}
.ws35{word-spacing:1.674000px;}
.wscd{word-spacing:1.722240px;}
.ws3d{word-spacing:1.728000px;}
.ws55{word-spacing:1.782000px;}
.wseb{word-spacing:1.836000px;}
.ws107{word-spacing:1.854720px;}
.ws17{word-spacing:1.881360px;}
.ws133{word-spacing:1.920960px;}
.ws9a{word-spacing:1.998000px;}
.ws6e{word-spacing:2.053440px;}
.ws93{word-spacing:2.185920px;}
.ws102{word-spacing:2.214000px;}
.ws9b{word-spacing:2.268000px;}
.ws3b{word-spacing:2.322000px;}
.ws3c{word-spacing:2.430000px;}
.ws3a{word-spacing:2.484000px;}
.ws2c{word-spacing:2.538000px;}
.wse7{word-spacing:2.583360px;}
.ws7a{word-spacing:2.700000px;}
.wsb7{word-spacing:2.782080px;}
.ws63{word-spacing:2.914560px;}
.ws51{word-spacing:2.916000px;}
.ws5a{word-spacing:2.970000px;}
.ws5e{word-spacing:3.132000px;}
.ws52{word-spacing:3.186000px;}
.ws116{word-spacing:3.240000px;}
.wsbc{word-spacing:3.312000px;}
.ws99{word-spacing:3.402000px;}
.ws8e{word-spacing:3.510720px;}
.ws2e{word-spacing:3.564000px;}
.ws5b{word-spacing:3.618000px;}
.ws88{word-spacing:3.643200px;}
.ws5c{word-spacing:3.780000px;}
.ws120{word-spacing:3.908160px;}
.wsb0{word-spacing:3.942000px;}
.ws95{word-spacing:4.158000px;}
.ws60{word-spacing:4.239360px;}
.wsa1{word-spacing:4.371840px;}
.wsc1{word-spacing:4.698000px;}
.wsdf{word-spacing:4.703040px;}
.ws98{word-spacing:4.860000px;}
.ws81{word-spacing:4.901760px;}
.wsc6{word-spacing:5.034240px;}
.ws97{word-spacing:5.076000px;}
.ws59{word-spacing:5.184000px;}
.ws58{word-spacing:5.292000px;}
.ws96{word-spacing:5.562000px;}
.wsca{word-spacing:5.630400px;}
.ws69{word-spacing:5.762880px;}
.ws119{word-spacing:6.102000px;}
.ws94{word-spacing:6.160320px;}
.wsd9{word-spacing:6.318000px;}
.ws62{word-spacing:6.359040px;}
.ws2d{word-spacing:6.480000px;}
.ws61{word-spacing:6.491520px;}
.ws10f{word-spacing:6.756480px;}
.wsf1{word-spacing:6.858000px;}
.ws118{word-spacing:6.888960px;}
.wsf0{word-spacing:7.020000px;}
.wsd8{word-spacing:7.087680px;}
.wsa8{word-spacing:7.220160px;}
.ws42{word-spacing:7.452000px;}
.wsa3{word-spacing:7.617600px;}
.ws13e{word-spacing:7.683840px;}
.ws21{word-spacing:7.722000px;}
.ws65{word-spacing:7.816320px;}
.wsaa{word-spacing:7.884000px;}
.wsf7{word-spacing:7.938000px;}
.ws64{word-spacing:7.948800px;}
.ws40{word-spacing:8.100000px;}
.ws41{word-spacing:8.208000px;}
.ws22{word-spacing:8.262000px;}
.ws1d{word-spacing:8.426880px;}
.wsec{word-spacing:8.478000px;}
.wsd2{word-spacing:8.544960px;}
.wse6{word-spacing:8.677440px;}
.ws31{word-spacing:8.964000px;}
.ws77{word-spacing:9.180000px;}
.wsa7{word-spacing:9.207360px;}
.ws86{word-spacing:9.273600px;}
.ws75{word-spacing:9.396000px;}
.wsc0{word-spacing:9.406080px;}
.ws43{word-spacing:9.504000px;}
.wsf8{word-spacing:9.666000px;}
.wsea{word-spacing:9.671040px;}
.ws74{word-spacing:9.720000px;}
.wse0{word-spacing:9.737280px;}
.ws90{word-spacing:9.936000px;}
.wsa6{word-spacing:10.068480px;}
.wsc7{word-spacing:10.465920px;}
.ws9c{word-spacing:10.638000px;}
.wsa5{word-spacing:10.664640px;}
.ws6c{word-spacing:10.797120px;}
.ws3f{word-spacing:10.800000px;}
.wsad{word-spacing:10.854000px;}
.ws37{word-spacing:10.962000px;}
.ws30{word-spacing:11.124000px;}
.ws115{word-spacing:11.340000px;}
.wsd6{word-spacing:11.393280px;}
.ws83{word-spacing:11.525760px;}
.wsae{word-spacing:11.556000px;}
.wsaf{word-spacing:11.880000px;}
.wsc8{word-spacing:11.923200px;}
.ws121{word-spacing:12.042000px;}
.ws85{word-spacing:12.121920px;}
.ws33{word-spacing:12.204000px;}
.wsb5{word-spacing:12.254400px;}
.ws126{word-spacing:12.651840px;}
.wsc3{word-spacing:12.798000px;}
.wse2{word-spacing:12.850560px;}
.wsd5{word-spacing:12.983040px;}
.wsce{word-spacing:13.380480px;}
.ws66{word-spacing:13.579200px;}
.wse1{word-spacing:13.711680px;}
.wsd0{word-spacing:14.202000px;}
.ws105{word-spacing:14.307840px;}
.ws73{word-spacing:14.440320px;}
.ws34{word-spacing:14.688000px;}
.ws114{word-spacing:15.036480px;}
.wsb9{word-spacing:15.168960px;}
.ws32{word-spacing:15.390000px;}
.ws68{word-spacing:15.500160px;}
.wsac{word-spacing:15.660000px;}
.ws67{word-spacing:15.698880px;}
.ws6b{word-spacing:15.831360px;}
.ws1b{word-spacing:15.896160px;}
.wsab{word-spacing:16.200000px;}
.ws135{word-spacing:16.228800px;}
.wsa2{word-spacing:16.427520px;}
.wsf4{word-spacing:16.560000px;}
.wsc4{word-spacing:17.118000px;}
.wsd3{word-spacing:17.156160px;}
.wscf{word-spacing:17.288640px;}
.ws136{word-spacing:17.686080px;}
.wsc5{word-spacing:17.820000px;}
.wsf5{word-spacing:17.884800px;}
.ws92{word-spacing:18.017280px;}
.ws13a{word-spacing:18.613440px;}
.wsdc{word-spacing:18.745920px;}
.ws13b{word-spacing:19.143360px;}
.ws109{word-spacing:19.278000px;}
.ws122{word-spacing:19.342080px;}
.wscc{word-spacing:19.474560px;}
.ws128{word-spacing:19.818000px;}
.ws125{word-spacing:19.872000px;}
.ws10a{word-spacing:19.980000px;}
.wsfb{word-spacing:20.070720px;}
.ws106{word-spacing:20.203200px;}
.ws127{word-spacing:20.520000px;}
.ws82{word-spacing:20.799360px;}
.ws104{word-spacing:20.931840px;}
.ws100{word-spacing:21.461760px;}
.ws50{word-spacing:21.762000px;}
.wsb8{word-spacing:22.190400px;}
.wsa4{word-spacing:22.322880px;}
.ws9f{word-spacing:22.720320px;}
.ws113{word-spacing:22.919040px;}
.ws9e{word-spacing:23.051520px;}
.wsdd{word-spacing:23.647680px;}
.wsba{word-spacing:24.376320px;}
.wsbb{word-spacing:24.508800px;}
.wsb4{word-spacing:25.104960px;}
.ws10c{word-spacing:25.237440px;}
.ws10d{word-spacing:25.634880px;}
.wse8{word-spacing:25.833600px;}
.ws132{word-spacing:26.496000px;}
.ws11f{word-spacing:26.628480px;}
.ws123{word-spacing:27.224640px;}
.ws11e{word-spacing:27.357120px;}
.wse9{word-spacing:27.622080px;}
.wsb2{word-spacing:27.754560px;}
.wsb3{word-spacing:27.953280px;}
.wsd4{word-spacing:28.085760px;}
.wscb{word-spacing:28.681920px;}
.ws12b{word-spacing:28.814400px;}
.wsda{word-spacing:29.410560px;}
.wsdb{word-spacing:29.543040px;}
.ws130{word-spacing:31.596480px;}
.ws12f{word-spacing:31.728960px;}
.ws84{word-spacing:32.391360px;}
.ws13f{word-spacing:33.716160px;}
.ws140{word-spacing:33.848640px;}
.ws6f{word-spacing:36.034560px;}
.wsde{word-spacing:37.359360px;}
.wsc9{word-spacing:38.021760px;}
.wsf6{word-spacing:38.718000px;}
.wsb6{word-spacing:38.750400px;}
.ws91{word-spacing:38.882880px;}
.ws10b{word-spacing:42.393600px;}
.ws13c{word-spacing:43.188480px;}
.ws138{word-spacing:69.883200px;}
.ws19{word-spacing:78.235920px;}
.ws134{word-spacing:99.360000px;}
._15{margin-left:-9.230040px;}
._d{margin-left:-5.980104px;}
._8{margin-left:-4.516632px;}
._1{margin-left:-2.503656px;}
._0{margin-left:-1.172232px;}
._2{width:1.024632px;}
._6{width:2.145600px;}
._9{width:3.473784px;}
._e{width:4.481352px;}
._7{width:5.564736px;}
._5{width:7.577280px;}
._c{width:9.253512px;}
._f{width:11.465280px;}
._a{width:12.536064px;}
._4{width:14.291352px;}
._3{width:15.369480px;}
._10{width:18.343152px;}
._11{width:24.544008px;}
._16{width:25.899840px;}
._17{width:29.635200px;}
._1d{width:32.483664px;}
._13{width:58.935096px;}
._12{width:82.211256px;}
._1a{width:87.232032px;}
._19{width:98.181144px;}
._14{width:101.482992px;}
._1e{width:123.535872px;}
._18{width:140.218344px;}
._1b{width:143.450640px;}
._1c{width:161.415144px;}
._b{width:242.082000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y153{bottom:3.960000px;}
.y151{bottom:4.140000px;}
.y150{bottom:23.040000px;}
.y3{bottom:45.363060px;}
.y2{bottom:59.220000px;}
.y200{bottom:96.799500px;}
.y5b{bottom:96.822000px;}
.y170{bottom:96.826500px;}
.ybc{bottom:96.831000px;}
.y85{bottom:96.835500px;}
.yab{bottom:101.340000px;}
.y1d0{bottom:105.863760px;}
.y2c{bottom:106.186500px;}
.y273{bottom:108.720000px;}
.y288{bottom:108.758880px;}
.y25f{bottom:108.761760px;}
.y2bc{bottom:108.779760px;}
.y1ff{bottom:112.284000px;}
.y5a{bottom:112.306500px;}
.y16f{bottom:112.311000px;}
.yaa{bottom:112.315500px;}
.y1e1{bottom:112.320000px;}
.y1ab{bottom:116.327370px;}
.y84{bottom:116.820000px;}
.y1cf{bottom:124.940880px;}
.y289{bottom:127.620000px;}
.y2a4{bottom:127.632960px;}
.y287{bottom:127.653840px;}
.y25e{bottom:127.656720px;}
.y2bb{bottom:127.674720px;}
.y272{bottom:127.695600px;}
.y1fe{bottom:127.768500px;}
.y106{bottom:127.786890px;}
.y59{bottom:127.791000px;}
.yec{bottom:127.795500px;}
.ya9{bottom:127.800000px;}
.y2b{bottom:131.566500px;}
.y83{bottom:132.300000px;}
.y1aa{bottom:135.404490px;}
.y1b6{bottom:141.864480px;}
.y1fd{bottom:143.428500px;}
.y82{bottom:143.446500px;}
.y58{bottom:143.451000px;}
.yeb{bottom:143.455500px;}
.y1ce{bottom:143.835840px;}
.y2a3{bottom:146.527920px;}
.y24f{bottom:146.540880px;}
.y1e0{bottom:146.548080px;}
.y286{bottom:146.548800px;}
.y25d{bottom:146.551680px;}
.y2ba{bottom:146.569680px;}
.y271{bottom:146.590560px;}
.y22a{bottom:146.640240px;}
.y105{bottom:146.681850px;}
.ya8{bottom:147.960000px;}
.y2a{bottom:148.131000px;}
.y1a9{bottom:154.299450px;}
.y1b5{bottom:156.801600px;}
.y1fc{bottom:158.913000px;}
.y133{bottom:158.926500px;}
.y81{bottom:158.931000px;}
.y57{bottom:158.935500px;}
.y190{bottom:158.940000px;}
.y1cd{bottom:162.730800px;}
.ycf{bottom:163.440000px;}
.y29{bottom:164.695500px;}
.y2a2{bottom:165.605040px;}
.y24e{bottom:165.618000px;}
.y1df{bottom:165.625200px;}
.y285{bottom:165.625920px;}
.y25c{bottom:165.628800px;}
.y2b9{bottom:165.646800px;}
.y270{bottom:165.667680px;}
.y229{bottom:165.717360px;}
.y104{bottom:165.758970px;}
.y1a8{bottom:169.236570px;}
.y1fb{bottom:174.397500px;}
.y132{bottom:174.411000px;}
.y80{bottom:174.415500px;}
.y17c{bottom:174.420000px;}
.y56{bottom:178.920000px;}
.y28{bottom:181.260000px;}
.y1cc{bottom:181.807920px;}
.y2a1{bottom:184.500000px;}
.y24d{bottom:184.512960px;}
.y1de{bottom:184.520160px;}
.y284{bottom:184.520880px;}
.y25b{bottom:184.523760px;}
.y2b8{bottom:184.541760px;}
.y26f{bottom:184.562640px;}
.y228{bottom:184.612320px;}
.y103{bottom:184.653930px;}
.ya7{bottom:189.877500px;}
.y1fa{bottom:189.882000px;}
.y230{bottom:189.891000px;}
.y131{bottom:189.895500px;}
.yce{bottom:189.900000px;}
.y55{bottom:194.400000px;}
.y27{bottom:197.635500px;}
.y1cb{bottom:200.702880px;}
.y24c{bottom:203.590080px;}
.y1dd{bottom:203.597280px;}
.y283{bottom:203.598000px;}
.y25a{bottom:203.600880px;}
.y2b7{bottom:203.618880px;}
.y26e{bottom:203.639760px;}
.y2a0{bottom:203.642640px;}
.y227{bottom:203.689440px;}
.y102{bottom:203.731050px;}
.ya6{bottom:205.537500px;}
.y1f9{bottom:205.542000px;}
.y54{bottom:205.546500px;}
.y22f{bottom:205.551000px;}
.y7f{bottom:205.555500px;}
.y148{bottom:205.560000px;}
.ybb{bottom:210.060000px;}
.y26{bottom:214.200000px;}
.y1ca{bottom:219.790080px;}
.ya5{bottom:221.022000px;}
.y1f8{bottom:221.026500px;}
.y53{bottom:221.031000px;}
.y22e{bottom:221.035500px;}
.ycd{bottom:221.040000px;}
.y24b{bottom:222.485040px;}
.y1dc{bottom:222.492240px;}
.y282{bottom:222.492960px;}
.y17b{bottom:222.495840px;}
.y147{bottom:222.508800px;}
.y2b6{bottom:222.513840px;}
.y123{bottom:222.529680px;}
.y26d{bottom:222.534720px;}
.y29f{bottom:222.537600px;}
.y226{bottom:222.584400px;}
.y101{bottom:222.626010px;}
.y7e{bottom:225.540000px;}
.y25{bottom:230.575500px;}
.ya4{bottom:236.506500px;}
.y7d{bottom:236.511000px;}
.y52{bottom:236.515500px;}
.y16e{bottom:236.520000px;}
.y1c9{bottom:238.685040px;}
.y22d{bottom:241.020000px;}
.y24a{bottom:241.380000px;}
.y1db{bottom:241.387200px;}
.y281{bottom:241.387920px;}
.y17a{bottom:241.390800px;}
.y146{bottom:241.403760px;}
.y2b5{bottom:241.408800px;}
.y122{bottom:241.424640px;}
.y26c{bottom:241.429680px;}
.y29e{bottom:241.432560px;}
.ycc{bottom:241.450560px;}
.yea{bottom:241.458480px;}
.y225{bottom:241.479360px;}
.y100{bottom:241.520970px;}
.y19e{bottom:246.245040px;}
.y24{bottom:247.140000px;}
.ya3{bottom:251.991000px;}
.y7c{bottom:251.995500px;}
.y51{bottom:256.500000px;}
.y1c8{bottom:257.595840px;}
.y1da{bottom:260.150400px;}
.y280{bottom:260.465040px;}
.y179{bottom:260.467920px;}
.y249{bottom:260.472960px;}
.y145{bottom:260.480880px;}
.y2b4{bottom:260.485920px;}
.y121{bottom:260.501760px;}
.y26b{bottom:260.506800px;}
.y29d{bottom:260.509680px;}
.ycb{bottom:260.527680px;}
.ye9{bottom:260.535600px;}
.y224{bottom:260.556480px;}
.yff{bottom:260.598090px;}
.y23{bottom:263.515500px;}
.y19d{bottom:265.185210px;}
.ya2{bottom:267.475500px;}
.y50{bottom:267.480000px;}
.y130{bottom:271.980000px;}
.y167{bottom:272.707920px;}
.y1c7{bottom:276.672960px;}
.y1d9{bottom:279.045360px;}
.y27f{bottom:279.360000px;}
.y178{bottom:279.362880px;}
.y248{bottom:279.367920px;}
.y144{bottom:279.375840px;}
.y2b3{bottom:279.380880px;}
.y120{bottom:279.396720px;}
.y26a{bottom:279.401760px;}
.y29c{bottom:279.404640px;}
.yca{bottom:279.422640px;}
.ye8{bottom:279.430560px;}
.y223{bottom:279.451440px;}
.yfe{bottom:279.493050px;}
.y1f7{bottom:283.131000px;}
.ya1{bottom:283.135500px;}
.y19c{bottom:284.080170px;}
.y4f{bottom:286.961760px;}
.y7b{bottom:287.640000px;}
.y22{bottom:288.895500px;}
.y166{bottom:291.602880px;}
.y1c6{bottom:295.567920px;}
.yfd{bottom:298.205850px;}
.y259{bottom:298.440000px;}
.y247{bottom:298.445040px;}
.y143{bottom:298.452960px;}
.y2b2{bottom:298.458000px;}
.y27e{bottom:298.468800px;}
.y11f{bottom:298.473840px;}
.y269{bottom:298.478880px;}
.y29b{bottom:298.481760px;}
.y1d8{bottom:298.486800px;}
.yc9{bottom:298.499760px;}
.ye7{bottom:298.507680px;}
.y222{bottom:298.528560px;}
.y7a{bottom:298.611000px;}
.y1f6{bottom:298.615500px;}
.y22c{bottom:298.620000px;}
.ya0{bottom:303.120000px;}
.y19b{bottom:303.157290px;}
.y4e{bottom:305.856720px;}
.y165{bottom:310.690080px;}
.y9f{bottom:314.086500px;}
.y12f{bottom:314.091000px;}
.y79{bottom:314.095500px;}
.y20f{bottom:314.100000px;}
.y21{bottom:314.451000px;}
.y1c5{bottom:314.645040px;}
.y246{bottom:317.340000px;}
.y142{bottom:317.347920px;}
.y2b1{bottom:317.352960px;}
.y27d{bottom:317.363760px;}
.y11e{bottom:317.368800px;}
.y258{bottom:317.373840px;}
.y29a{bottom:317.376720px;}
.y1d7{bottom:317.381760px;}
.yc8{bottom:317.394720px;}
.ye6{bottom:317.402640px;}
.y221{bottom:317.423520px;}
.yfc{bottom:317.465130px;}
.y1f5{bottom:318.600000px;}
.y19a{bottom:322.052250px;}
.y4d{bottom:324.751680px;}
.y9e{bottom:329.571000px;}
.y12e{bottom:329.575500px;}
.y1f4{bottom:329.580000px;}
.y164{bottom:329.585040px;}
.y20{bottom:331.015500px;}
.y1c4{bottom:333.547920px;}
.y78{bottom:334.080000px;}
.y141{bottom:336.425040px;}
.y20e{bottom:336.430080px;}
.y245{bottom:336.432960px;}
.y27c{bottom:336.440880px;}
.y11d{bottom:336.445920px;}
.y257{bottom:336.450960px;}
.y299{bottom:336.453840px;}
.y1d6{bottom:336.458880px;}
.yc7{bottom:336.471840px;}
.y22b{bottom:336.474720px;}
.ye5{bottom:336.479760px;}
.y220{bottom:336.500640px;}
.yfb{bottom:336.542250px;}
.y199{bottom:341.129370px;}
.y4c{bottom:343.828800px;}
.y9d{bottom:345.231000px;}
.y12d{bottom:345.235500px;}
.y77{bottom:345.240000px;}
.y1f{bottom:347.580000px;}
.y163{bottom:348.500880px;}
.y1c3{bottom:352.442880px;}
.y20d{bottom:355.325040px;}
.y140{bottom:355.327920px;}
.y16d{bottom:355.335840px;}
.y11c{bottom:355.340880px;}
.y256{bottom:355.345920px;}
.y298{bottom:355.348800px;}
.y1d5{bottom:355.353840px;}
.yba{bottom:355.366800px;}
.y18f{bottom:355.369680px;}
.ye4{bottom:355.374720px;}
.y21f{bottom:355.395600px;}
.yfa{bottom:355.437210px;}
.y1a7{bottom:355.900890px;}
.y198{bottom:356.066490px;}
.y1b4{bottom:356.598000px;}
.y9c{bottom:360.715500px;}
.y4b{bottom:362.723760px;}
.y1e{bottom:363.955500px;}
.y12c{bottom:365.220000px;}
.y162{bottom:367.578000px;}
.y1f3{bottom:369.545040px;}
.y1c2{bottom:371.532960px;}
.y2b0{bottom:374.220000px;}
.y13f{bottom:374.222880px;}
.y16c{bottom:374.230800px;}
.y11b{bottom:374.235840px;}
.y255{bottom:374.240880px;}
.y297{bottom:374.243760px;}
.y1d4{bottom:374.248800px;}
.yb9{bottom:374.261760px;}
.y18e{bottom:374.264640px;}
.ye3{bottom:374.269680px;}
.y21e{bottom:374.290560px;}
.yf9{bottom:374.332170px;}
.y1a6{bottom:374.795850px;}
.y1b3{bottom:375.492960px;}
.y12b{bottom:376.195500px;}
.y211{bottom:376.200000px;}
.y1d{bottom:380.520000px;}
.y9b{bottom:380.700000px;}
.y4a{bottom:381.800880px;}
.y161{bottom:386.472960px;}
.y1f2{bottom:388.442880px;}
.y1c1{bottom:390.427920px;}
.y244{bottom:393.300000px;}
.y210{bottom:393.305040px;}
.y76{bottom:393.307920px;}
.y11a{bottom:393.312960px;}
.y254{bottom:393.318000px;}
.y296{bottom:393.320880px;}
.y1d3{bottom:393.325920px;}
.y13e{bottom:393.330240px;}
.y20c{bottom:393.333840px;}
.yb8{bottom:393.338880px;}
.y18d{bottom:393.341760px;}
.ye2{bottom:393.346800px;}
.y2af{bottom:393.349680px;}
.y21d{bottom:393.367680px;}
.yf8{bottom:393.409290px;}
.y1a5{bottom:393.872970px;}
.y1b2{bottom:394.570080px;}
.y9a{bottom:396.180000px;}
.y1c{bottom:396.895500px;}
.y49{bottom:400.695840px;}
.y160{bottom:405.550080px;}
.y99{bottom:407.340000px;}
.y1f1{bottom:407.634330px;}
.y1c0{bottom:409.505040px;}
.y75{bottom:412.202880px;}
.y119{bottom:412.207920px;}
.y253{bottom:412.212960px;}
.y295{bottom:412.215840px;}
.y1d2{bottom:412.220880px;}
.y13d{bottom:412.225200px;}
.y20b{bottom:412.228800px;}
.yb7{bottom:412.233840px;}
.y18c{bottom:412.236720px;}
.ye1{bottom:412.241760px;}
.y2ae{bottom:412.244640px;}
.y243{bottom:412.249680px;}
.y21c{bottom:412.262640px;}
.yf7{bottom:412.304250px;}
.y1a4{bottom:412.767930px;}
.y1b{bottom:413.460000px;}
.y1b1{bottom:413.465040px;}
.y48{bottom:419.772960px;}
.y15f{bottom:424.445040px;}
.y1f0{bottom:426.529290px;}
.y1bf{bottom:428.415840px;}
.y1a{bottom:429.835500px;}
.y27b{bottom:431.280000px;}
.y74{bottom:431.285040px;}
.y16b{bottom:431.290080px;}
.y294{bottom:431.292960px;}
.y1d1{bottom:431.298000px;}
.y13c{bottom:431.302320px;}
.y20a{bottom:431.305920px;}
.yb6{bottom:431.310960px;}
.y18b{bottom:431.313840px;}
.ye0{bottom:431.318880px;}
.y2ad{bottom:431.321760px;}
.y242{bottom:431.326800px;}
.y21b{bottom:431.339760px;}
.yf6{bottom:431.381370px;}
.y1a3{bottom:431.845050px;}
.y1b0{bottom:432.374970px;}
.y47{bottom:438.667920px;}
.y15e{bottom:443.342880px;}
.y1ef{bottom:445.606410px;}
.y19{bottom:446.400000px;}
.y1a2{bottom:446.782170px;}
.y1be{bottom:447.310800px;}
.y1af{bottom:447.312090px;}
.y16a{bottom:450.185040px;}
.y293{bottom:450.187920px;}
.y73{bottom:450.192960px;}
.y12a{bottom:450.195840px;}
.y13b{bottom:450.197280px;}
.y209{bottom:450.200880px;}
.yb5{bottom:450.205920px;}
.y18a{bottom:450.208800px;}
.ydf{bottom:450.213840px;}
.y2ac{bottom:450.216720px;}
.y118{bottom:450.218880px;}
.y241{bottom:450.221760px;}
.y21a{bottom:450.234720px;}
.yf5{bottom:450.276330px;}
.y46{bottom:457.562880px;}
.y15d{bottom:462.432960px;}
.y18{bottom:462.775500px;}
.y1ee{bottom:464.501370px;}
.y1bd{bottom:466.387920px;}
.y252{bottom:469.080000px;}
.y292{bottom:469.082880px;}
.y72{bottom:469.087920px;}
.y129{bottom:469.090800px;}
.y13a{bottom:469.092240px;}
.y208{bottom:469.095840px;}
.yb4{bottom:469.100880px;}
.y189{bottom:469.103760px;}
.yde{bottom:469.108800px;}
.y2ab{bottom:469.111680px;}
.y117{bottom:469.113840px;}
.y240{bottom:469.116720px;}
.y219{bottom:469.129680px;}
.yf4{bottom:469.171290px;}
.y45{bottom:476.660880px;}
.y17{bottom:479.340000px;}
.y15c{bottom:481.327920px;}
.y1ed{bottom:483.396330px;}
.y1bc{bottom:485.282880px;}
.y291{bottom:488.160000px;}
.y71{bottom:488.165040px;}
.y128{bottom:488.167920px;}
.y139{bottom:488.169360px;}
.y207{bottom:488.172960px;}
.yb3{bottom:488.178000px;}
.y188{bottom:488.180880px;}
.ydd{bottom:488.185920px;}
.y2aa{bottom:488.188800px;}
.y116{bottom:488.190960px;}
.y23f{bottom:488.193840px;}
.y268{bottom:488.198880px;}
.y218{bottom:488.206800px;}
.yf3{bottom:488.248410px;}
.y44{bottom:495.555840px;}
.y16{bottom:496.440000px;}
.y15b{bottom:500.405040px;}
.y1ec{bottom:503.549850px;}
.y1bb{bottom:504.365040px;}
.y127{bottom:507.062880px;}
.y138{bottom:507.064320px;}
.y98{bottom:507.067920px;}
.y70{bottom:507.072960px;}
.y187{bottom:507.075840px;}
.ydc{bottom:507.080880px;}
.y2a9{bottom:507.083760px;}
.y115{bottom:507.085920px;}
.y23e{bottom:507.088800px;}
.y267{bottom:507.093840px;}
.y217{bottom:507.101760px;}
.y290{bottom:507.122490px;}
.yf2{bottom:507.143370px;}
.y43{bottom:514.632960px;}
.y15{bottom:516.226500px;}
.y15a{bottom:519.300000px;}
.y1eb{bottom:522.626970px;}
.y1ba{bottom:523.265040px;}
.y137{bottom:526.141440px;}
.y97{bottom:526.145040px;}
.y6f{bottom:526.150080px;}
.y169{bottom:526.152960px;}
.ydb{bottom:526.158000px;}
.y2a8{bottom:526.160880px;}
.y114{bottom:526.163040px;}
.y23d{bottom:526.165920px;}
.y266{bottom:526.170960px;}
.y216{bottom:526.178880px;}
.y28f{bottom:526.199610px;}
.yf1{bottom:526.220490px;}
.y14{bottom:531.711000px;}
.y42{bottom:533.527920px;}
.y159{bottom:534.960000px;}
.y1ea{bottom:541.521930px;}
.y1b9{bottom:542.162880px;}
.y136{bottom:544.688640px;}
.y251{bottom:545.040000px;}
.y6e{bottom:545.045040px;}
.y168{bottom:545.047920px;}
.yda{bottom:545.052960px;}
.y2a7{bottom:545.055840px;}
.y113{bottom:545.058000px;}
.y23c{bottom:545.060880px;}
.y265{bottom:545.065920px;}
.y96{bottom:545.068800px;}
.y215{bottom:545.073840px;}
.y28e{bottom:545.094570px;}
.yf0{bottom:545.115450px;}
.y13{bottom:547.195500px;}
.y41{bottom:552.422880px;}
.y158{bottom:554.760000px;}
.y1e9{bottom:560.599050px;}
.y1b8{bottom:561.261450px;}
.y12{bottom:562.680000px;}
.y135{bottom:563.583600px;}
.y27a{bottom:563.940000px;}
.yb2{bottom:563.942880px;}
.yd9{bottom:563.947920px;}
.y6d{bottom:563.950800px;}
.y112{bottom:563.952960px;}
.y23b{bottom:563.955840px;}
.y264{bottom:563.960880px;}
.y95{bottom:563.963760px;}
.y214{bottom:563.968800px;}
.y28d{bottom:563.989530px;}
.yef{bottom:564.010410px;}
.y197{bottom:567.024330px;}
.y40{bottom:571.507920px;}
.y157{bottom:574.380000px;}
.y1b7{bottom:576.198570px;}
.y11{bottom:578.340000px;}
.y1e8{bottom:579.494010px;}
.yd8{bottom:583.025040px;}
.y6c{bottom:583.027920px;}
.y111{bottom:583.030080px;}
.yb1{bottom:583.032960px;}
.y263{bottom:583.038000px;}
.y94{bottom:583.040880px;}
.y213{bottom:583.045920px;}
.y186{bottom:583.053840px;}
.y28c{bottom:583.066650px;}
.y206{bottom:583.070970px;}
.yee{bottom:583.087530px;}
.y196{bottom:585.919290px;}
.y3f{bottom:590.402880px;}
.y10{bottom:593.820000px;}
.y156{bottom:594.180000px;}
.y1e7{bottom:599.647530px;}
.y110{bottom:601.577280px;}
.y6b{bottom:601.922880px;}
.yb0{bottom:601.927920px;}
.y262{bottom:601.932960px;}
.y93{bottom:601.935840px;}
.y212{bottom:601.940880px;}
.y185{bottom:601.948800px;}
.y134{bottom:601.956720px;}
.y28b{bottom:601.961610px;}
.y205{bottom:601.965930px;}
.yed{bottom:601.982490px;}
.y195{bottom:604.996410px;}
.yf{bottom:609.295500px;}
.y3e{bottom:609.505050px;}
.y155{bottom:613.980000px;}
.y1e6{bottom:618.542490px;}
.y1ae{bottom:620.480010px;}
.y10f{bottom:620.654400px;}
.y2a6{bottom:621.000000px;}
.yaf{bottom:621.005040px;}
.y261{bottom:621.010080px;}
.y92{bottom:621.012960px;}
.y126{bottom:621.018000px;}
.y184{bottom:621.025920px;}
.yc6{bottom:621.033840px;}
.y28a{bottom:621.038730px;}
.y204{bottom:621.043050px;}
.y6a{bottom:621.059610px;}
.y194{bottom:623.891370px;}
.ye{bottom:624.780000px;}
.y1a1{bottom:627.137130px;}
.y3d{bottom:628.400010px;}
.y154{bottom:633.600000px;}
.y1e5{bottom:637.437450px;}
.y1ad{bottom:639.374970px;}
.y23a{bottom:639.900000px;}
.yd7{bottom:639.905040px;}
.y91{bottom:639.907920px;}
.yae{bottom:639.912960px;}
.y10e{bottom:639.913680px;}
.y183{bottom:639.920880px;}
.yc5{bottom:639.928800px;}
.y177{bottom:639.933690px;}
.y203{bottom:639.938010px;}
.y69{bottom:639.954570px;}
.yd{bottom:640.440000px;}
.y193{bottom:642.968490px;}
.y1a0{bottom:646.214250px;}
.y3c{bottom:647.294970px;}
.y152{bottom:653.400000px;}
.y1ac{bottom:654.312090px;}
.yc{bottom:656.639850px;}
.y1e4{bottom:657.773130px;}
.y260{bottom:658.800000px;}
.y90{bottom:658.802880px;}
.yad{bottom:658.807920px;}
.y10d{bottom:658.808640px;}
.y182{bottom:658.815840px;}
.yc4{bottom:658.823760px;}
.y176{bottom:658.828650px;}
.yd6{bottom:658.832970px;}
.y68{bottom:658.849530px;}
.y19f{bottom:661.151370px;}
.y192{bottom:661.863450px;}
.y3b{bottom:666.372090px;}
.y14f{bottom:673.020000px;}
.y1e3{bottom:676.668090px;}
.y191{bottom:676.800570px;}
.y250{bottom:677.880000px;}
.yac{bottom:677.885040px;}
.y10c{bottom:677.885760px;}
.y8f{bottom:677.887920px;}
.y181{bottom:677.892960px;}
.yc3{bottom:677.900880px;}
.y175{bottom:677.905770px;}
.yd5{bottom:677.910090px;}
.y67{bottom:677.926650px;}
.y3a{bottom:685.267050px;}
.yb{bottom:690.120000px;}
.y1e2{bottom:695.563050px;}
.y202{bottom:696.457290px;}
.y239{bottom:696.780000px;}
.y10b{bottom:696.780720px;}
.y8e{bottom:696.782880px;}
.y125{bottom:696.787920px;}
.yc2{bottom:696.795840px;}
.y174{bottom:696.800730px;}
.yd4{bottom:696.805050px;}
.y66{bottom:696.821610px;}
.y39{bottom:703.980720px;}
.y201{bottom:715.534410px;}
.ya{bottom:715.659120px;}
.y10a{bottom:715.857840px;}
.y238{bottom:715.860000px;}
.y124{bottom:715.865040px;}
.yc1{bottom:715.872960px;}
.y173{bottom:715.877850px;}
.y8d{bottom:715.880880px;}
.yd3{bottom:715.882170px;}
.y65{bottom:715.898730px;}
.y38{bottom:723.240000px;}
.y109{bottom:734.752800px;}
.y279{bottom:734.760000px;}
.yc0{bottom:734.767920px;}
.y172{bottom:734.772810px;}
.y8c{bottom:734.775840px;}
.yd2{bottom:734.777130px;}
.y237{bottom:734.793120px;}
.y64{bottom:734.793690px;}
.y9{bottom:745.009560px;}
.y37{bottom:747.720000px;}
.y108{bottom:753.303450px;}
.yd1{bottom:753.324330px;}
.ybf{bottom:753.662880px;}
.y171{bottom:753.667770px;}
.y8b{bottom:753.670800px;}
.y278{bottom:753.675840px;}
.y236{bottom:753.688080px;}
.y63{bottom:753.688650px;}
.y36{bottom:764.275500px;}
.y107{bottom:772.380570px;}
.yd0{bottom:772.401450px;}
.y2bd{bottom:772.740000px;}
.y180{bottom:772.744320px;}
.ybe{bottom:772.744890px;}
.y8a{bottom:772.747920px;}
.y14e{bottom:772.749210px;}
.y277{bottom:772.752960px;}
.y235{bottom:772.765200px;}
.y62{bottom:772.765770px;}
.y8{bottom:774.360000px;}
.y35{bottom:780.651000px;}
.y17f{bottom:791.639280px;}
.y89{bottom:791.642880px;}
.y14d{bottom:791.644170px;}
.y276{bottom:791.647920px;}
.ybd{bottom:791.655840px;}
.y234{bottom:791.660160px;}
.y61{bottom:791.660730px;}
.y34{bottom:797.215500px;}
.y7{bottom:800.819850px;}
.y17e{bottom:810.716400px;}
.y2a5{bottom:810.720000px;}
.y14c{bottom:810.721290px;}
.y275{bottom:810.725040px;}
.y88{bottom:810.732960px;}
.y233{bottom:810.737280px;}
.y60{bottom:810.737850px;}
.y33{bottom:813.775350px;}
.y6{bottom:820.059120px;}
.y17d{bottom:829.263600px;}
.y14b{bottom:829.616250px;}
.y274{bottom:829.620000px;}
.y87{bottom:829.627920px;}
.y232{bottom:829.632240px;}
.y5f{bottom:829.632810px;}
.y32{bottom:839.155350px;}
.y231{bottom:848.345040px;}
.y14a{bottom:848.693370px;}
.y86{bottom:848.705040px;}
.y5e{bottom:848.709930px;}
.y5{bottom:849.409560px;}
.y31{bottom:855.719850px;}
.y149{bottom:867.240570px;}
.y5d{bottom:867.604890px;}
.y30{bottom:872.095350px;}
.y4{bottom:878.760000px;}
.y5c{bottom:886.499850px;}
.y2f{bottom:888.659850px;}
.y2e{bottom:919.260000px;}
.y2d{bottom:938.159850px;}
.y1{bottom:940.319850px;}
.h2d{height:18.900000px;}
.h2f{height:19.080000px;}
.h2e{height:19.081500px;}
.h14{height:31.587891px;}
.h5{height:37.415039px;}
.hd{height:37.469039px;}
.h2c{height:37.981500px;}
.he{height:41.405977px;}
.h3{height:42.327773px;}
.h2a{height:44.860781px;}
.h10{height:44.893125px;}
.h2{height:47.381836px;}
.h9{height:47.399836px;}
.ha{height:47.513672px;}
.h30{height:49.623891px;}
.h8{height:58.121719px;}
.hf{height:58.140319px;}
.hb{height:58.175719px;}
.h1c{height:58.283437px;}
.h38{height:59.944633px;}
.h37{height:60.068473px;}
.h15{height:60.163513px;}
.h3b{height:60.183073px;}
.h39{height:60.198073px;}
.h34{height:60.221113px;}
.h1e{height:60.235513px;}
.h24{height:60.246433px;}
.h28{height:60.255073px;}
.h21{height:60.266593px;}
.h31{height:60.267193px;}
.h22{height:60.270073px;}
.h29{height:60.280993px;}
.h1b{height:60.286753px;}
.h32{height:60.298273px;}
.h27{height:60.298873px;}
.h11{height:60.301753px;}
.h36{height:60.316153px;}
.h13{height:60.318433px;}
.h23{height:60.319033px;}
.h25{height:60.329953px;}
.h20{height:60.338593px;}
.h35{height:60.342073px;}
.h1a{height:60.349513px;}
.h17{height:60.350113px;}
.h3a{height:60.350713px;}
.h16{height:60.358753px;}
.h26{height:60.361633px;}
.h2b{height:60.365113px;}
.h12{height:60.370273px;}
.h18{height:60.381793px;}
.h19{height:60.382393px;}
.h33{height:60.384673px;}
.h1f{height:60.390433px;}
.h1d{height:60.402553px;}
.hc{height:63.175781px;}
.h3c{height:63.853946px;}
.h3d{height:64.083746px;}
.h4{height:66.349336px;}
.h7{height:73.915664px;}
.h6{height:99.856958px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:166.320000px;}
.w4{width:171.900000px;}
.w2{width:190.260000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:9.720000px;}
.xf{left:11.340000px;}
.xc{left:15.480000px;}
.x9{left:31.500000px;}
.xa{left:50.760000px;}
.x13{left:71.280000px;}
.x12{left:75.240000px;}
.x11{left:79.200000px;}
.x14{left:80.640000px;}
.x10{left:91.080000px;}
.x1{left:95.760000px;}
.x1d{left:106.125120px;}
.x19{left:123.279840px;}
.x3{left:127.800000px;}
.x1e{left:138.235680px;}
.x7{left:149.767920px;}
.x17{left:159.464880px;}
.x15{left:169.020000px;}
.x6{left:175.850640px;}
.x1c{left:177.101280px;}
.x8{left:181.619280px;}
.x5{left:207.712080px;}
.x1a{left:214.492320px;}
.xb{left:287.460000px;}
.x18{left:361.414080px;}
.x4{left:369.360000px;}
.xd{left:454.500000px;}
.x2{left:547.394940px;}
.x1b{left:624.882240px;}
.x16{left:627.102720px;}
@media print{
.v6{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.032000pt;}
.v1{vertical-align:21.030933pt;}
.v5{vertical-align:24.097813pt;}
.ls49{letter-spacing:-2.296320pt;}
.ls16{letter-spacing:-2.256000pt;}
.ls1d{letter-spacing:-2.064000pt;}
.ls36{letter-spacing:-2.016000pt;}
.ls2e{letter-spacing:-1.943040pt;}
.ls56{letter-spacing:-1.930240pt;}
.ls6a{letter-spacing:-1.707520pt;}
.ls5{letter-spacing:-1.672320pt;}
.ls6f{letter-spacing:-1.648640pt;}
.ls14{letter-spacing:-1.584000pt;}
.ls1e{letter-spacing:-1.536000pt;}
.lsa{letter-spacing:-1.532160pt;}
.ls41{letter-spacing:-1.530880pt;}
.ls1f{letter-spacing:-1.488000pt;}
.ls34{letter-spacing:-1.487360pt;}
.ls57{letter-spacing:-1.484800pt;}
.ls8{letter-spacing:-1.447040pt;}
.ls10{letter-spacing:-1.440000pt;}
.ls6b{letter-spacing:-1.413120pt;}
.lse{letter-spacing:-1.392000pt;}
.ls9{letter-spacing:-1.361920pt;}
.ls53{letter-spacing:-1.354240pt;}
.ls2a{letter-spacing:-1.344000pt;}
.ls28{letter-spacing:-1.328000pt;}
.ls11{letter-spacing:-1.296000pt;}
.ls2b{letter-spacing:-1.295360pt;}
.ls58{letter-spacing:-1.262080pt;}
.ls20{letter-spacing:-1.248000pt;}
.lsd{letter-spacing:-1.177600pt;}
.ls12{letter-spacing:-1.152000pt;}
.ls7{letter-spacing:-1.106560pt;}
.ls15{letter-spacing:-1.104000pt;}
.ls38{letter-spacing:-1.059840pt;}
.ls3{letter-spacing:-1.029120pt;}
.ls21{letter-spacing:-1.008000pt;}
.ls2d{letter-spacing:-1.000960pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.943360pt;}
.ls6d{letter-spacing:-0.942080pt;}
.lsb{letter-spacing:-0.936320pt;}
.ls29{letter-spacing:-0.912000pt;}
.ls5d{letter-spacing:-0.853760pt;}
.ls35{letter-spacing:-0.816000pt;}
.ls6{letter-spacing:-0.814720pt;}
.ls44{letter-spacing:-0.765440pt;}
.ls2c{letter-spacing:-0.720000pt;}
.ls4e{letter-spacing:-0.705280pt;}
.lsc{letter-spacing:-0.680960pt;}
.ls4a{letter-spacing:-0.647680pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls39{letter-spacing:-0.529920pt;}
.ls67{letter-spacing:-0.528000pt;}
.ls3a{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.048000pt;}
.ls59{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.144000pt;}
.ls5b{letter-spacing:0.647680pt;}
.ls3b{letter-spacing:0.816000pt;}
.ls3d{letter-spacing:1.274880pt;}
.ls47{letter-spacing:1.295360pt;}
.ls24{letter-spacing:1.296000pt;}
.ls5e{letter-spacing:1.440000pt;}
.ls65{letter-spacing:1.943040pt;}
.ls32{letter-spacing:2.064000pt;}
.ls25{letter-spacing:2.531840pt;}
.ls30{letter-spacing:2.736000pt;}
.ls50{letter-spacing:3.179520pt;}
.ls31{letter-spacing:3.360000pt;}
.ls3f{letter-spacing:3.827200pt;}
.ls43{letter-spacing:4.656000pt;}
.ls54{letter-spacing:5.122560pt;}
.ls4d{letter-spacing:5.280000pt;}
.ls37{letter-spacing:5.770240pt;}
.ls4c{letter-spacing:5.904000pt;}
.ls4f{letter-spacing:6.417920pt;}
.ls70{letter-spacing:6.500352pt;}
.ls48{letter-spacing:6.576000pt;}
.ls60{letter-spacing:7.065600pt;}
.ls26{letter-spacing:7.200000pt;}
.ls61{letter-spacing:7.654400pt;}
.ls3c{letter-spacing:8.302080pt;}
.ls1{letter-spacing:8.352000pt;}
.ls33{letter-spacing:8.496000pt;}
.ls73{letter-spacing:9.361920pt;}
.ls51{letter-spacing:9.597440pt;}
.ls66{letter-spacing:9.744000pt;}
.ls45{letter-spacing:9.891840pt;}
.ls46{letter-spacing:10.892800pt;}
.ls62{letter-spacing:11.540480pt;}
.ls68{letter-spacing:12.188160pt;}
.ls40{letter-spacing:12.336000pt;}
.ls5a{letter-spacing:12.776960pt;}
.ls4b{letter-spacing:13.424640pt;}
.ls5c{letter-spacing:14.072320pt;}
.ls72{letter-spacing:15.314688pt;}
.ls5f{letter-spacing:16.176000pt;}
.ls69{letter-spacing:16.663040pt;}
.ls55{letter-spacing:20.490240pt;}
.ls64{letter-spacing:22.374400pt;}
.ls42{letter-spacing:23.669760pt;}
.ls6c{letter-spacing:24.317440pt;}
.ls6e{letter-spacing:26.908160pt;}
.ls63{letter-spacing:33.561600pt;}
.ls52{letter-spacing:34.080000pt;}
.ls71{letter-spacing:60.823040pt;}
.ls3e{letter-spacing:105.866240pt;}
.ls0{letter-spacing:962.098560pt;}
.ls2f{letter-spacing:1270.577280pt;}
.ls23{letter-spacing:1511.210880pt;}
.ws112{word-spacing:-58.880000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws3{word-spacing:-18.300800pt;}
.ws4{word-spacing:-14.720000pt;}
.ws137{word-spacing:-14.190080pt;}
.wsd1{word-spacing:-13.954560pt;}
.ws12e{word-spacing:-13.777920pt;}
.ws7f{word-spacing:-13.719040pt;}
.ws9d{word-spacing:-13.660160pt;}
.wsb1{word-spacing:-13.542400pt;}
.ws4a{word-spacing:-13.424640pt;}
.wsfa{word-spacing:-13.365760pt;}
.ws12a{word-spacing:-13.306880pt;}
.wse5{word-spacing:-13.189120pt;}
.ws129{word-spacing:-13.012480pt;}
.ws4c{word-spacing:-12.776960pt;}
.ws6{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.664000pt;}
.ws11c{word-spacing:-11.472000pt;}
.ws48{word-spacing:-11.280000pt;}
.ws11a{word-spacing:-11.184000pt;}
.wsa{word-spacing:-11.040000pt;}
.wsf3{word-spacing:-10.896000pt;}
.ws9{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.704000pt;}
.ws45{word-spacing:-10.677120pt;}
.wsd{word-spacing:-10.656000pt;}
.ws5{word-spacing:-10.608000pt;}
.ws8{word-spacing:-10.560000pt;}
.ws49{word-spacing:-10.512000pt;}
.ws11b{word-spacing:-10.416000pt;}
.ws11{word-spacing:-10.272000pt;}
.ws47{word-spacing:-9.936000pt;}
.ws10{word-spacing:-9.840000pt;}
.ws1{word-spacing:-9.776640pt;}
.ws46{word-spacing:-9.552000pt;}
.wsf{word-spacing:-9.456000pt;}
.wsc{word-spacing:-9.408000pt;}
.ws13{word-spacing:-9.360000pt;}
.ws12{word-spacing:-9.312000pt;}
.ws4b{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.784000pt;}
.wsed{word-spacing:-8.574720pt;}
.ws103{word-spacing:-8.426240pt;}
.wsff{word-spacing:-8.064000pt;}
.wsfe{word-spacing:-8.017920pt;}
.ws4d{word-spacing:-8.000000pt;}
.wsfd{word-spacing:-7.795200pt;}
.ws124{word-spacing:-7.424000pt;}
.wsfc{word-spacing:-7.349760pt;}
.ws1e{word-spacing:-3.830400pt;}
.ws10e{word-spacing:-3.473920pt;}
.ws71{word-spacing:-3.297280pt;}
.ws87{word-spacing:-3.179520pt;}
.ws12c{word-spacing:-2.826240pt;}
.ws7b{word-spacing:-2.736000pt;}
.wsbd{word-spacing:-2.649600pt;}
.wsbe{word-spacing:-2.531840pt;}
.ws2f{word-spacing:-2.304000pt;}
.ws8b{word-spacing:-2.178560pt;}
.ws11d{word-spacing:-2.119680pt;}
.ws7d{word-spacing:-2.064000pt;}
.ws72{word-spacing:-2.001920pt;}
.ws8a{word-spacing:-1.884160pt;}
.ws101{word-spacing:-1.872000pt;}
.ws57{word-spacing:-1.680000pt;}
.ws54{word-spacing:-1.632000pt;}
.ws7e{word-spacing:-1.584000pt;}
.ws108{word-spacing:-1.530880pt;}
.ws7c{word-spacing:-1.440000pt;}
.ws8d{word-spacing:-1.354240pt;}
.ws8c{word-spacing:-1.236480pt;}
.ws56{word-spacing:-1.056000pt;}
.wsef{word-spacing:-0.960000pt;}
.wsbf{word-spacing:-0.942080pt;}
.wsa9{word-spacing:-0.816000pt;}
.ws6a{word-spacing:-0.765440pt;}
.wsf2{word-spacing:-0.672000pt;}
.ws70{word-spacing:-0.647680pt;}
.wsc2{word-spacing:-0.624000pt;}
.ws4f{word-spacing:-0.480000pt;}
.wsf9{word-spacing:-0.384000pt;}
.ws2a{word-spacing:-0.336000pt;}
.ws8f{word-spacing:-0.294400pt;}
.ws13d{word-spacing:-0.235520pt;}
.ws28{word-spacing:-0.192000pt;}
.ws24{word-spacing:-0.144000pt;}
.ws89{word-spacing:-0.117760pt;}
.ws15{word-spacing:-0.085760pt;}
.ws14{word-spacing:0.000000pt;}
.ws78{word-spacing:0.048000pt;}
.ws117{word-spacing:0.058880pt;}
.ws39{word-spacing:0.144000pt;}
.ws111{word-spacing:0.192000pt;}
.wsee{word-spacing:0.235520pt;}
.ws1f{word-spacing:0.255360pt;}
.ws38{word-spacing:0.288000pt;}
.ws23{word-spacing:0.336000pt;}
.wse4{word-spacing:0.353280pt;}
.ws80{word-spacing:0.371840pt;}
.ws110{word-spacing:0.384000pt;}
.ws2b{word-spacing:0.480000pt;}
.wsa0{word-spacing:0.529920pt;}
.ws29{word-spacing:0.624000pt;}
.ws6d{word-spacing:0.647680pt;}
.ws79{word-spacing:0.672000pt;}
.ws44{word-spacing:0.768000pt;}
.ws18{word-spacing:0.814720pt;}
.ws12d{word-spacing:0.816000pt;}
.ws4e{word-spacing:0.849920pt;}
.ws1c{word-spacing:0.851200pt;}
.ws139{word-spacing:0.883200pt;}
.ws3e{word-spacing:0.912000pt;}
.ws16{word-spacing:0.943360pt;}
.ws27{word-spacing:0.960000pt;}
.wsd7{word-spacing:1.000960pt;}
.wse3{word-spacing:1.059840pt;}
.ws76{word-spacing:1.104000pt;}
.ws25{word-spacing:1.152000pt;}
.ws20{word-spacing:1.177600pt;}
.ws5d{word-spacing:1.248000pt;}
.ws5f{word-spacing:1.295360pt;}
.ws53{word-spacing:1.296000pt;}
.ws131{word-spacing:1.354240pt;}
.ws26{word-spacing:1.392000pt;}
.ws36{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.447040pt;}
.ws35{word-spacing:1.488000pt;}
.wscd{word-spacing:1.530880pt;}
.ws3d{word-spacing:1.536000pt;}
.ws55{word-spacing:1.584000pt;}
.wseb{word-spacing:1.632000pt;}
.ws107{word-spacing:1.648640pt;}
.ws17{word-spacing:1.672320pt;}
.ws133{word-spacing:1.707520pt;}
.ws9a{word-spacing:1.776000pt;}
.ws6e{word-spacing:1.825280pt;}
.ws93{word-spacing:1.943040pt;}
.ws102{word-spacing:1.968000pt;}
.ws9b{word-spacing:2.016000pt;}
.ws3b{word-spacing:2.064000pt;}
.ws3c{word-spacing:2.160000pt;}
.ws3a{word-spacing:2.208000pt;}
.ws2c{word-spacing:2.256000pt;}
.wse7{word-spacing:2.296320pt;}
.ws7a{word-spacing:2.400000pt;}
.wsb7{word-spacing:2.472960pt;}
.ws63{word-spacing:2.590720pt;}
.ws51{word-spacing:2.592000pt;}
.ws5a{word-spacing:2.640000pt;}
.ws5e{word-spacing:2.784000pt;}
.ws52{word-spacing:2.832000pt;}
.ws116{word-spacing:2.880000pt;}
.wsbc{word-spacing:2.944000pt;}
.ws99{word-spacing:3.024000pt;}
.ws8e{word-spacing:3.120640pt;}
.ws2e{word-spacing:3.168000pt;}
.ws5b{word-spacing:3.216000pt;}
.ws88{word-spacing:3.238400pt;}
.ws5c{word-spacing:3.360000pt;}
.ws120{word-spacing:3.473920pt;}
.wsb0{word-spacing:3.504000pt;}
.ws95{word-spacing:3.696000pt;}
.ws60{word-spacing:3.768320pt;}
.wsa1{word-spacing:3.886080pt;}
.wsc1{word-spacing:4.176000pt;}
.wsdf{word-spacing:4.180480pt;}
.ws98{word-spacing:4.320000pt;}
.ws81{word-spacing:4.357120pt;}
.wsc6{word-spacing:4.474880pt;}
.ws97{word-spacing:4.512000pt;}
.ws59{word-spacing:4.608000pt;}
.ws58{word-spacing:4.704000pt;}
.ws96{word-spacing:4.944000pt;}
.wsca{word-spacing:5.004800pt;}
.ws69{word-spacing:5.122560pt;}
.ws119{word-spacing:5.424000pt;}
.ws94{word-spacing:5.475840pt;}
.wsd9{word-spacing:5.616000pt;}
.ws62{word-spacing:5.652480pt;}
.ws2d{word-spacing:5.760000pt;}
.ws61{word-spacing:5.770240pt;}
.ws10f{word-spacing:6.005760pt;}
.wsf1{word-spacing:6.096000pt;}
.ws118{word-spacing:6.123520pt;}
.wsf0{word-spacing:6.240000pt;}
.wsd8{word-spacing:6.300160pt;}
.wsa8{word-spacing:6.417920pt;}
.ws42{word-spacing:6.624000pt;}
.wsa3{word-spacing:6.771200pt;}
.ws13e{word-spacing:6.830080pt;}
.ws21{word-spacing:6.864000pt;}
.ws65{word-spacing:6.947840pt;}
.wsaa{word-spacing:7.008000pt;}
.wsf7{word-spacing:7.056000pt;}
.ws64{word-spacing:7.065600pt;}
.ws40{word-spacing:7.200000pt;}
.ws41{word-spacing:7.296000pt;}
.ws22{word-spacing:7.344000pt;}
.ws1d{word-spacing:7.490560pt;}
.wsec{word-spacing:7.536000pt;}
.wsd2{word-spacing:7.595520pt;}
.wse6{word-spacing:7.713280pt;}
.ws31{word-spacing:7.968000pt;}
.ws77{word-spacing:8.160000pt;}
.wsa7{word-spacing:8.184320pt;}
.ws86{word-spacing:8.243200pt;}
.ws75{word-spacing:8.352000pt;}
.wsc0{word-spacing:8.360960pt;}
.ws43{word-spacing:8.448000pt;}
.wsf8{word-spacing:8.592000pt;}
.wsea{word-spacing:8.596480pt;}
.ws74{word-spacing:8.640000pt;}
.wse0{word-spacing:8.655360pt;}
.ws90{word-spacing:8.832000pt;}
.wsa6{word-spacing:8.949760pt;}
.wsc7{word-spacing:9.303040pt;}
.ws9c{word-spacing:9.456000pt;}
.wsa5{word-spacing:9.479680pt;}
.ws6c{word-spacing:9.597440pt;}
.ws3f{word-spacing:9.600000pt;}
.wsad{word-spacing:9.648000pt;}
.ws37{word-spacing:9.744000pt;}
.ws30{word-spacing:9.888000pt;}
.ws115{word-spacing:10.080000pt;}
.wsd6{word-spacing:10.127360pt;}
.ws83{word-spacing:10.245120pt;}
.wsae{word-spacing:10.272000pt;}
.wsaf{word-spacing:10.560000pt;}
.wsc8{word-spacing:10.598400pt;}
.ws121{word-spacing:10.704000pt;}
.ws85{word-spacing:10.775040pt;}
.ws33{word-spacing:10.848000pt;}
.wsb5{word-spacing:10.892800pt;}
.ws126{word-spacing:11.246080pt;}
.wsc3{word-spacing:11.376000pt;}
.wse2{word-spacing:11.422720pt;}
.wsd5{word-spacing:11.540480pt;}
.wsce{word-spacing:11.893760pt;}
.ws66{word-spacing:12.070400pt;}
.wse1{word-spacing:12.188160pt;}
.wsd0{word-spacing:12.624000pt;}
.ws105{word-spacing:12.718080pt;}
.ws73{word-spacing:12.835840pt;}
.ws34{word-spacing:13.056000pt;}
.ws114{word-spacing:13.365760pt;}
.wsb9{word-spacing:13.483520pt;}
.ws32{word-spacing:13.680000pt;}
.ws68{word-spacing:13.777920pt;}
.wsac{word-spacing:13.920000pt;}
.ws67{word-spacing:13.954560pt;}
.ws6b{word-spacing:14.072320pt;}
.ws1b{word-spacing:14.129920pt;}
.wsab{word-spacing:14.400000pt;}
.ws135{word-spacing:14.425600pt;}
.wsa2{word-spacing:14.602240pt;}
.wsf4{word-spacing:14.720000pt;}
.wsc4{word-spacing:15.216000pt;}
.wsd3{word-spacing:15.249920pt;}
.wscf{word-spacing:15.367680pt;}
.ws136{word-spacing:15.720960pt;}
.wsc5{word-spacing:15.840000pt;}
.wsf5{word-spacing:15.897600pt;}
.ws92{word-spacing:16.015360pt;}
.ws13a{word-spacing:16.545280pt;}
.wsdc{word-spacing:16.663040pt;}
.ws13b{word-spacing:17.016320pt;}
.ws109{word-spacing:17.136000pt;}
.ws122{word-spacing:17.192960pt;}
.wscc{word-spacing:17.310720pt;}
.ws128{word-spacing:17.616000pt;}
.ws125{word-spacing:17.664000pt;}
.ws10a{word-spacing:17.760000pt;}
.wsfb{word-spacing:17.840640pt;}
.ws106{word-spacing:17.958400pt;}
.ws127{word-spacing:18.240000pt;}
.ws82{word-spacing:18.488320pt;}
.ws104{word-spacing:18.606080pt;}
.ws100{word-spacing:19.077120pt;}
.ws50{word-spacing:19.344000pt;}
.wsb8{word-spacing:19.724800pt;}
.wsa4{word-spacing:19.842560pt;}
.ws9f{word-spacing:20.195840pt;}
.ws113{word-spacing:20.372480pt;}
.ws9e{word-spacing:20.490240pt;}
.wsdd{word-spacing:21.020160pt;}
.wsba{word-spacing:21.667840pt;}
.wsbb{word-spacing:21.785600pt;}
.wsb4{word-spacing:22.315520pt;}
.ws10c{word-spacing:22.433280pt;}
.ws10d{word-spacing:22.786560pt;}
.wse8{word-spacing:22.963200pt;}
.ws132{word-spacing:23.552000pt;}
.ws11f{word-spacing:23.669760pt;}
.ws123{word-spacing:24.199680pt;}
.ws11e{word-spacing:24.317440pt;}
.wse9{word-spacing:24.552960pt;}
.wsb2{word-spacing:24.670720pt;}
.wsb3{word-spacing:24.847360pt;}
.wsd4{word-spacing:24.965120pt;}
.wscb{word-spacing:25.495040pt;}
.ws12b{word-spacing:25.612800pt;}
.wsda{word-spacing:26.142720pt;}
.wsdb{word-spacing:26.260480pt;}
.ws130{word-spacing:28.085760pt;}
.ws12f{word-spacing:28.203520pt;}
.ws84{word-spacing:28.792320pt;}
.ws13f{word-spacing:29.969920pt;}
.ws140{word-spacing:30.087680pt;}
.ws6f{word-spacing:32.030720pt;}
.wsde{word-spacing:33.208320pt;}
.wsc9{word-spacing:33.797120pt;}
.wsf6{word-spacing:34.416000pt;}
.wsb6{word-spacing:34.444800pt;}
.ws91{word-spacing:34.562560pt;}
.ws10b{word-spacing:37.683200pt;}
.ws13c{word-spacing:38.389760pt;}
.ws138{word-spacing:62.118400pt;}
.ws19{word-spacing:69.543040pt;}
.ws134{word-spacing:88.320000pt;}
._15{margin-left:-8.204480pt;}
._d{margin-left:-5.315648pt;}
._8{margin-left:-4.014784pt;}
._1{margin-left:-2.225472pt;}
._0{margin-left:-1.041984pt;}
._2{width:0.910784pt;}
._6{width:1.907200pt;}
._9{width:3.087808pt;}
._e{width:3.983424pt;}
._7{width:4.946432pt;}
._5{width:6.735360pt;}
._c{width:8.225344pt;}
._f{width:10.191360pt;}
._a{width:11.143168pt;}
._4{width:12.703424pt;}
._3{width:13.661760pt;}
._10{width:16.305024pt;}
._11{width:21.816896pt;}
._16{width:23.022080pt;}
._17{width:26.342400pt;}
._1d{width:28.874368pt;}
._13{width:52.386752pt;}
._12{width:73.076672pt;}
._1a{width:77.539584pt;}
._19{width:87.272128pt;}
._14{width:90.207104pt;}
._1e{width:109.809664pt;}
._18{width:124.638528pt;}
._1b{width:127.511680pt;}
._1c{width:143.480128pt;}
._b{width:215.184000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:3.520000pt;}
.y151{bottom:3.680000pt;}
.y150{bottom:20.480000pt;}
.y3{bottom:40.322720pt;}
.y2{bottom:52.640000pt;}
.y200{bottom:86.044000pt;}
.y5b{bottom:86.064000pt;}
.y170{bottom:86.068000pt;}
.ybc{bottom:86.072000pt;}
.y85{bottom:86.076000pt;}
.yab{bottom:90.080000pt;}
.y1d0{bottom:94.101120pt;}
.y2c{bottom:94.388000pt;}
.y273{bottom:96.640000pt;}
.y288{bottom:96.674560pt;}
.y25f{bottom:96.677120pt;}
.y2bc{bottom:96.693120pt;}
.y1ff{bottom:99.808000pt;}
.y5a{bottom:99.828000pt;}
.y16f{bottom:99.832000pt;}
.yaa{bottom:99.836000pt;}
.y1e1{bottom:99.840000pt;}
.y1ab{bottom:103.402107pt;}
.y84{bottom:103.840000pt;}
.y1cf{bottom:111.058560pt;}
.y289{bottom:113.440000pt;}
.y2a4{bottom:113.451520pt;}
.y287{bottom:113.470080pt;}
.y25e{bottom:113.472640pt;}
.y2bb{bottom:113.488640pt;}
.y272{bottom:113.507200pt;}
.y1fe{bottom:113.572000pt;}
.y106{bottom:113.588347pt;}
.y59{bottom:113.592000pt;}
.yec{bottom:113.596000pt;}
.ya9{bottom:113.600000pt;}
.y2b{bottom:116.948000pt;}
.y83{bottom:117.600000pt;}
.y1aa{bottom:120.359547pt;}
.y1b6{bottom:126.101760pt;}
.y1fd{bottom:127.492000pt;}
.y82{bottom:127.508000pt;}
.y58{bottom:127.512000pt;}
.yeb{bottom:127.516000pt;}
.y1ce{bottom:127.854080pt;}
.y2a3{bottom:130.247040pt;}
.y24f{bottom:130.258560pt;}
.y1e0{bottom:130.264960pt;}
.y286{bottom:130.265600pt;}
.y25d{bottom:130.268160pt;}
.y2ba{bottom:130.284160pt;}
.y271{bottom:130.302720pt;}
.y22a{bottom:130.346880pt;}
.y105{bottom:130.383867pt;}
.ya8{bottom:131.520000pt;}
.y2a{bottom:131.672000pt;}
.y1a9{bottom:137.155067pt;}
.y1b5{bottom:139.379200pt;}
.y1fc{bottom:141.256000pt;}
.y133{bottom:141.268000pt;}
.y81{bottom:141.272000pt;}
.y57{bottom:141.276000pt;}
.y190{bottom:141.280000pt;}
.y1cd{bottom:144.649600pt;}
.ycf{bottom:145.280000pt;}
.y29{bottom:146.396000pt;}
.y2a2{bottom:147.204480pt;}
.y24e{bottom:147.216000pt;}
.y1df{bottom:147.222400pt;}
.y285{bottom:147.223040pt;}
.y25c{bottom:147.225600pt;}
.y2b9{bottom:147.241600pt;}
.y270{bottom:147.260160pt;}
.y229{bottom:147.304320pt;}
.y104{bottom:147.341307pt;}
.y1a8{bottom:150.432507pt;}
.y1fb{bottom:155.020000pt;}
.y132{bottom:155.032000pt;}
.y80{bottom:155.036000pt;}
.y17c{bottom:155.040000pt;}
.y56{bottom:159.040000pt;}
.y28{bottom:161.120000pt;}
.y1cc{bottom:161.607040pt;}
.y2a1{bottom:164.000000pt;}
.y24d{bottom:164.011520pt;}
.y1de{bottom:164.017920pt;}
.y284{bottom:164.018560pt;}
.y25b{bottom:164.021120pt;}
.y2b8{bottom:164.037120pt;}
.y26f{bottom:164.055680pt;}
.y228{bottom:164.099840pt;}
.y103{bottom:164.136827pt;}
.ya7{bottom:168.780000pt;}
.y1fa{bottom:168.784000pt;}
.y230{bottom:168.792000pt;}
.y131{bottom:168.796000pt;}
.yce{bottom:168.800000pt;}
.y55{bottom:172.800000pt;}
.y27{bottom:175.676000pt;}
.y1cb{bottom:178.402560pt;}
.y24c{bottom:180.968960pt;}
.y1dd{bottom:180.975360pt;}
.y283{bottom:180.976000pt;}
.y25a{bottom:180.978560pt;}
.y2b7{bottom:180.994560pt;}
.y26e{bottom:181.013120pt;}
.y2a0{bottom:181.015680pt;}
.y227{bottom:181.057280pt;}
.y102{bottom:181.094267pt;}
.ya6{bottom:182.700000pt;}
.y1f9{bottom:182.704000pt;}
.y54{bottom:182.708000pt;}
.y22f{bottom:182.712000pt;}
.y7f{bottom:182.716000pt;}
.y148{bottom:182.720000pt;}
.ybb{bottom:186.720000pt;}
.y26{bottom:190.400000pt;}
.y1ca{bottom:195.368960pt;}
.ya5{bottom:196.464000pt;}
.y1f8{bottom:196.468000pt;}
.y53{bottom:196.472000pt;}
.y22e{bottom:196.476000pt;}
.ycd{bottom:196.480000pt;}
.y24b{bottom:197.764480pt;}
.y1dc{bottom:197.770880pt;}
.y282{bottom:197.771520pt;}
.y17b{bottom:197.774080pt;}
.y147{bottom:197.785600pt;}
.y2b6{bottom:197.790080pt;}
.y123{bottom:197.804160pt;}
.y26d{bottom:197.808640pt;}
.y29f{bottom:197.811200pt;}
.y226{bottom:197.852800pt;}
.y101{bottom:197.889787pt;}
.y7e{bottom:200.480000pt;}
.y25{bottom:204.956000pt;}
.ya4{bottom:210.228000pt;}
.y7d{bottom:210.232000pt;}
.y52{bottom:210.236000pt;}
.y16e{bottom:210.240000pt;}
.y1c9{bottom:212.164480pt;}
.y22d{bottom:214.240000pt;}
.y24a{bottom:214.560000pt;}
.y1db{bottom:214.566400pt;}
.y281{bottom:214.567040pt;}
.y17a{bottom:214.569600pt;}
.y146{bottom:214.581120pt;}
.y2b5{bottom:214.585600pt;}
.y122{bottom:214.599680pt;}
.y26c{bottom:214.604160pt;}
.y29e{bottom:214.606720pt;}
.ycc{bottom:214.622720pt;}
.yea{bottom:214.629760pt;}
.y225{bottom:214.648320pt;}
.y100{bottom:214.685307pt;}
.y19e{bottom:218.884480pt;}
.y24{bottom:219.680000pt;}
.ya3{bottom:223.992000pt;}
.y7c{bottom:223.996000pt;}
.y51{bottom:228.000000pt;}
.y1c8{bottom:228.974080pt;}
.y1da{bottom:231.244800pt;}
.y280{bottom:231.524480pt;}
.y179{bottom:231.527040pt;}
.y249{bottom:231.531520pt;}
.y145{bottom:231.538560pt;}
.y2b4{bottom:231.543040pt;}
.y121{bottom:231.557120pt;}
.y26b{bottom:231.561600pt;}
.y29d{bottom:231.564160pt;}
.ycb{bottom:231.580160pt;}
.ye9{bottom:231.587200pt;}
.y224{bottom:231.605760pt;}
.yff{bottom:231.642747pt;}
.y23{bottom:234.236000pt;}
.y19d{bottom:235.720187pt;}
.ya2{bottom:237.756000pt;}
.y50{bottom:237.760000pt;}
.y130{bottom:241.760000pt;}
.y167{bottom:242.407040pt;}
.y1c7{bottom:245.931520pt;}
.y1d9{bottom:248.040320pt;}
.y27f{bottom:248.320000pt;}
.y178{bottom:248.322560pt;}
.y248{bottom:248.327040pt;}
.y144{bottom:248.334080pt;}
.y2b3{bottom:248.338560pt;}
.y120{bottom:248.352640pt;}
.y26a{bottom:248.357120pt;}
.y29c{bottom:248.359680pt;}
.yca{bottom:248.375680pt;}
.ye8{bottom:248.382720pt;}
.y223{bottom:248.401280pt;}
.yfe{bottom:248.438267pt;}
.y1f7{bottom:251.672000pt;}
.ya1{bottom:251.676000pt;}
.y19c{bottom:252.515707pt;}
.y4f{bottom:255.077120pt;}
.y7b{bottom:255.680000pt;}
.y22{bottom:256.796000pt;}
.y166{bottom:259.202560pt;}
.y1c6{bottom:262.727040pt;}
.yfd{bottom:265.071867pt;}
.y259{bottom:265.280000pt;}
.y247{bottom:265.284480pt;}
.y143{bottom:265.291520pt;}
.y2b2{bottom:265.296000pt;}
.y27e{bottom:265.305600pt;}
.y11f{bottom:265.310080pt;}
.y269{bottom:265.314560pt;}
.y29b{bottom:265.317120pt;}
.y1d8{bottom:265.321600pt;}
.yc9{bottom:265.333120pt;}
.ye7{bottom:265.340160pt;}
.y222{bottom:265.358720pt;}
.y7a{bottom:265.432000pt;}
.y1f6{bottom:265.436000pt;}
.y22c{bottom:265.440000pt;}
.ya0{bottom:269.440000pt;}
.y19b{bottom:269.473147pt;}
.y4e{bottom:271.872640pt;}
.y165{bottom:276.168960pt;}
.y9f{bottom:279.188000pt;}
.y12f{bottom:279.192000pt;}
.y79{bottom:279.196000pt;}
.y20f{bottom:279.200000pt;}
.y21{bottom:279.512000pt;}
.y1c5{bottom:279.684480pt;}
.y246{bottom:282.080000pt;}
.y142{bottom:282.087040pt;}
.y2b1{bottom:282.091520pt;}
.y27d{bottom:282.101120pt;}
.y11e{bottom:282.105600pt;}
.y258{bottom:282.110080pt;}
.y29a{bottom:282.112640pt;}
.y1d7{bottom:282.117120pt;}
.yc8{bottom:282.128640pt;}
.ye6{bottom:282.135680pt;}
.y221{bottom:282.154240pt;}
.yfc{bottom:282.191227pt;}
.y1f5{bottom:283.200000pt;}
.y19a{bottom:286.268667pt;}
.y4d{bottom:288.668160pt;}
.y9e{bottom:292.952000pt;}
.y12e{bottom:292.956000pt;}
.y1f4{bottom:292.960000pt;}
.y164{bottom:292.964480pt;}
.y20{bottom:294.236000pt;}
.y1c4{bottom:296.487040pt;}
.y78{bottom:296.960000pt;}
.y141{bottom:299.044480pt;}
.y20e{bottom:299.048960pt;}
.y245{bottom:299.051520pt;}
.y27c{bottom:299.058560pt;}
.y11d{bottom:299.063040pt;}
.y257{bottom:299.067520pt;}
.y299{bottom:299.070080pt;}
.y1d6{bottom:299.074560pt;}
.yc7{bottom:299.086080pt;}
.y22b{bottom:299.088640pt;}
.ye5{bottom:299.093120pt;}
.y220{bottom:299.111680pt;}
.yfb{bottom:299.148667pt;}
.y199{bottom:303.226107pt;}
.y4c{bottom:305.625600pt;}
.y9d{bottom:306.872000pt;}
.y12d{bottom:306.876000pt;}
.y77{bottom:306.880000pt;}
.y1f{bottom:308.960000pt;}
.y163{bottom:309.778560pt;}
.y1c3{bottom:313.282560pt;}
.y20d{bottom:315.844480pt;}
.y140{bottom:315.847040pt;}
.y16d{bottom:315.854080pt;}
.y11c{bottom:315.858560pt;}
.y256{bottom:315.863040pt;}
.y298{bottom:315.865600pt;}
.y1d5{bottom:315.870080pt;}
.yba{bottom:315.881600pt;}
.y18f{bottom:315.884160pt;}
.ye4{bottom:315.888640pt;}
.y21f{bottom:315.907200pt;}
.yfa{bottom:315.944187pt;}
.y1a7{bottom:316.356347pt;}
.y198{bottom:316.503547pt;}
.y1b4{bottom:316.976000pt;}
.y9c{bottom:320.636000pt;}
.y4b{bottom:322.421120pt;}
.y1e{bottom:323.516000pt;}
.y12c{bottom:324.640000pt;}
.y162{bottom:326.736000pt;}
.y1f3{bottom:328.484480pt;}
.y1c2{bottom:330.251520pt;}
.y2b0{bottom:332.640000pt;}
.y13f{bottom:332.642560pt;}
.y16c{bottom:332.649600pt;}
.y11b{bottom:332.654080pt;}
.y255{bottom:332.658560pt;}
.y297{bottom:332.661120pt;}
.y1d4{bottom:332.665600pt;}
.yb9{bottom:332.677120pt;}
.y18e{bottom:332.679680pt;}
.ye3{bottom:332.684160pt;}
.y21e{bottom:332.702720pt;}
.yf9{bottom:332.739707pt;}
.y1a6{bottom:333.151867pt;}
.y1b3{bottom:333.771520pt;}
.y12b{bottom:334.396000pt;}
.y211{bottom:334.400000pt;}
.y1d{bottom:338.240000pt;}
.y9b{bottom:338.400000pt;}
.y4a{bottom:339.378560pt;}
.y161{bottom:343.531520pt;}
.y1f2{bottom:345.282560pt;}
.y1c1{bottom:347.047040pt;}
.y244{bottom:349.600000pt;}
.y210{bottom:349.604480pt;}
.y76{bottom:349.607040pt;}
.y11a{bottom:349.611520pt;}
.y254{bottom:349.616000pt;}
.y296{bottom:349.618560pt;}
.y1d3{bottom:349.623040pt;}
.y13e{bottom:349.626880pt;}
.y20c{bottom:349.630080pt;}
.yb8{bottom:349.634560pt;}
.y18d{bottom:349.637120pt;}
.ye2{bottom:349.641600pt;}
.y2af{bottom:349.644160pt;}
.y21d{bottom:349.660160pt;}
.yf8{bottom:349.697147pt;}
.y1a5{bottom:350.109307pt;}
.y1b2{bottom:350.728960pt;}
.y9a{bottom:352.160000pt;}
.y1c{bottom:352.796000pt;}
.y49{bottom:356.174080pt;}
.y160{bottom:360.488960pt;}
.y99{bottom:362.080000pt;}
.y1f1{bottom:362.341627pt;}
.y1c0{bottom:364.004480pt;}
.y75{bottom:366.402560pt;}
.y119{bottom:366.407040pt;}
.y253{bottom:366.411520pt;}
.y295{bottom:366.414080pt;}
.y1d2{bottom:366.418560pt;}
.y13d{bottom:366.422400pt;}
.y20b{bottom:366.425600pt;}
.yb7{bottom:366.430080pt;}
.y18c{bottom:366.432640pt;}
.ye1{bottom:366.437120pt;}
.y2ae{bottom:366.439680pt;}
.y243{bottom:366.444160pt;}
.y21c{bottom:366.455680pt;}
.yf7{bottom:366.492667pt;}
.y1a4{bottom:366.904827pt;}
.y1b{bottom:367.520000pt;}
.y1b1{bottom:367.524480pt;}
.y48{bottom:373.131520pt;}
.y15f{bottom:377.284480pt;}
.y1f0{bottom:379.137147pt;}
.y1bf{bottom:380.814080pt;}
.y1a{bottom:382.076000pt;}
.y27b{bottom:383.360000pt;}
.y74{bottom:383.364480pt;}
.y16b{bottom:383.368960pt;}
.y294{bottom:383.371520pt;}
.y1d1{bottom:383.376000pt;}
.y13c{bottom:383.379840pt;}
.y20a{bottom:383.383040pt;}
.yb6{bottom:383.387520pt;}
.y18b{bottom:383.390080pt;}
.ye0{bottom:383.394560pt;}
.y2ad{bottom:383.397120pt;}
.y242{bottom:383.401600pt;}
.y21b{bottom:383.413120pt;}
.yf6{bottom:383.450107pt;}
.y1a3{bottom:383.862267pt;}
.y1b0{bottom:384.333307pt;}
.y47{bottom:389.927040pt;}
.y15e{bottom:394.082560pt;}
.y1ef{bottom:396.094587pt;}
.y19{bottom:396.800000pt;}
.y1a2{bottom:397.139707pt;}
.y1be{bottom:397.609600pt;}
.y1af{bottom:397.610747pt;}
.y16a{bottom:400.164480pt;}
.y293{bottom:400.167040pt;}
.y73{bottom:400.171520pt;}
.y12a{bottom:400.174080pt;}
.y13b{bottom:400.175360pt;}
.y209{bottom:400.178560pt;}
.yb5{bottom:400.183040pt;}
.y18a{bottom:400.185600pt;}
.ydf{bottom:400.190080pt;}
.y2ac{bottom:400.192640pt;}
.y118{bottom:400.194560pt;}
.y241{bottom:400.197120pt;}
.y21a{bottom:400.208640pt;}
.yf5{bottom:400.245627pt;}
.y46{bottom:406.722560pt;}
.y15d{bottom:411.051520pt;}
.y18{bottom:411.356000pt;}
.y1ee{bottom:412.890107pt;}
.y1bd{bottom:414.567040pt;}
.y252{bottom:416.960000pt;}
.y292{bottom:416.962560pt;}
.y72{bottom:416.967040pt;}
.y129{bottom:416.969600pt;}
.y13a{bottom:416.970880pt;}
.y208{bottom:416.974080pt;}
.yb4{bottom:416.978560pt;}
.y189{bottom:416.981120pt;}
.yde{bottom:416.985600pt;}
.y2ab{bottom:416.988160pt;}
.y117{bottom:416.990080pt;}
.y240{bottom:416.992640pt;}
.y219{bottom:417.004160pt;}
.yf4{bottom:417.041147pt;}
.y45{bottom:423.698560pt;}
.y17{bottom:426.080000pt;}
.y15c{bottom:427.847040pt;}
.y1ed{bottom:429.685627pt;}
.y1bc{bottom:431.362560pt;}
.y291{bottom:433.920000pt;}
.y71{bottom:433.924480pt;}
.y128{bottom:433.927040pt;}
.y139{bottom:433.928320pt;}
.y207{bottom:433.931520pt;}
.yb3{bottom:433.936000pt;}
.y188{bottom:433.938560pt;}
.ydd{bottom:433.943040pt;}
.y2aa{bottom:433.945600pt;}
.y116{bottom:433.947520pt;}
.y23f{bottom:433.950080pt;}
.y268{bottom:433.954560pt;}
.y218{bottom:433.961600pt;}
.yf3{bottom:433.998587pt;}
.y44{bottom:440.494080pt;}
.y16{bottom:441.280000pt;}
.y15b{bottom:444.804480pt;}
.y1ec{bottom:447.599867pt;}
.y1bb{bottom:448.324480pt;}
.y127{bottom:450.722560pt;}
.y138{bottom:450.723840pt;}
.y98{bottom:450.727040pt;}
.y70{bottom:450.731520pt;}
.y187{bottom:450.734080pt;}
.ydc{bottom:450.738560pt;}
.y2a9{bottom:450.741120pt;}
.y115{bottom:450.743040pt;}
.y23e{bottom:450.745600pt;}
.y267{bottom:450.750080pt;}
.y217{bottom:450.757120pt;}
.y290{bottom:450.775547pt;}
.yf2{bottom:450.794107pt;}
.y43{bottom:457.451520pt;}
.y15{bottom:458.868000pt;}
.y15a{bottom:461.600000pt;}
.y1eb{bottom:464.557307pt;}
.y1ba{bottom:465.124480pt;}
.y137{bottom:467.681280pt;}
.y97{bottom:467.684480pt;}
.y6f{bottom:467.688960pt;}
.y169{bottom:467.691520pt;}
.ydb{bottom:467.696000pt;}
.y2a8{bottom:467.698560pt;}
.y114{bottom:467.700480pt;}
.y23d{bottom:467.703040pt;}
.y266{bottom:467.707520pt;}
.y216{bottom:467.714560pt;}
.y28f{bottom:467.732987pt;}
.yf1{bottom:467.751547pt;}
.y14{bottom:472.632000pt;}
.y42{bottom:474.247040pt;}
.y159{bottom:475.520000pt;}
.y1ea{bottom:481.352827pt;}
.y1b9{bottom:481.922560pt;}
.y136{bottom:484.167680pt;}
.y251{bottom:484.480000pt;}
.y6e{bottom:484.484480pt;}
.y168{bottom:484.487040pt;}
.yda{bottom:484.491520pt;}
.y2a7{bottom:484.494080pt;}
.y113{bottom:484.496000pt;}
.y23c{bottom:484.498560pt;}
.y265{bottom:484.503040pt;}
.y96{bottom:484.505600pt;}
.y215{bottom:484.510080pt;}
.y28e{bottom:484.528507pt;}
.yf0{bottom:484.547067pt;}
.y13{bottom:486.396000pt;}
.y41{bottom:491.042560pt;}
.y158{bottom:493.120000pt;}
.y1e9{bottom:498.310267pt;}
.y1b8{bottom:498.899067pt;}
.y12{bottom:500.160000pt;}
.y135{bottom:500.963200pt;}
.y27a{bottom:501.280000pt;}
.yb2{bottom:501.282560pt;}
.yd9{bottom:501.287040pt;}
.y6d{bottom:501.289600pt;}
.y112{bottom:501.291520pt;}
.y23b{bottom:501.294080pt;}
.y264{bottom:501.298560pt;}
.y95{bottom:501.301120pt;}
.y214{bottom:501.305600pt;}
.y28d{bottom:501.324027pt;}
.yef{bottom:501.342587pt;}
.y197{bottom:504.021627pt;}
.y40{bottom:508.007040pt;}
.y157{bottom:510.560000pt;}
.y1b7{bottom:512.176507pt;}
.y11{bottom:514.080000pt;}
.y1e8{bottom:515.105787pt;}
.yd8{bottom:518.244480pt;}
.y6c{bottom:518.247040pt;}
.y111{bottom:518.248960pt;}
.yb1{bottom:518.251520pt;}
.y263{bottom:518.256000pt;}
.y94{bottom:518.258560pt;}
.y213{bottom:518.263040pt;}
.y186{bottom:518.270080pt;}
.y28c{bottom:518.281467pt;}
.y206{bottom:518.285307pt;}
.yee{bottom:518.300027pt;}
.y196{bottom:520.817147pt;}
.y3f{bottom:524.802560pt;}
.y10{bottom:527.840000pt;}
.y156{bottom:528.160000pt;}
.y1e7{bottom:533.020027pt;}
.y110{bottom:534.735360pt;}
.y6b{bottom:535.042560pt;}
.yb0{bottom:535.047040pt;}
.y262{bottom:535.051520pt;}
.y93{bottom:535.054080pt;}
.y212{bottom:535.058560pt;}
.y185{bottom:535.065600pt;}
.y134{bottom:535.072640pt;}
.y28b{bottom:535.076987pt;}
.y205{bottom:535.080827pt;}
.yed{bottom:535.095547pt;}
.y195{bottom:537.774587pt;}
.yf{bottom:541.596000pt;}
.y3e{bottom:541.782267pt;}
.y155{bottom:545.760000pt;}
.y1e6{bottom:549.815547pt;}
.y1ae{bottom:551.537787pt;}
.y10f{bottom:551.692800pt;}
.y2a6{bottom:552.000000pt;}
.yaf{bottom:552.004480pt;}
.y261{bottom:552.008960pt;}
.y92{bottom:552.011520pt;}
.y126{bottom:552.016000pt;}
.y184{bottom:552.023040pt;}
.yc6{bottom:552.030080pt;}
.y28a{bottom:552.034427pt;}
.y204{bottom:552.038267pt;}
.y6a{bottom:552.052987pt;}
.y194{bottom:554.570107pt;}
.ye{bottom:555.360000pt;}
.y1a1{bottom:557.455227pt;}
.y3d{bottom:558.577787pt;}
.y154{bottom:563.200000pt;}
.y1e5{bottom:566.611067pt;}
.y1ad{bottom:568.333307pt;}
.y23a{bottom:568.800000pt;}
.yd7{bottom:568.804480pt;}
.y91{bottom:568.807040pt;}
.yae{bottom:568.811520pt;}
.y10e{bottom:568.812160pt;}
.y183{bottom:568.818560pt;}
.yc5{bottom:568.825600pt;}
.y177{bottom:568.829947pt;}
.y203{bottom:568.833787pt;}
.y69{bottom:568.848507pt;}
.yd{bottom:569.280000pt;}
.y193{bottom:571.527547pt;}
.y1a0{bottom:574.412667pt;}
.y3c{bottom:575.373307pt;}
.y152{bottom:580.800000pt;}
.y1ac{bottom:581.610747pt;}
.yc{bottom:583.679867pt;}
.y1e4{bottom:584.687227pt;}
.y260{bottom:585.600000pt;}
.y90{bottom:585.602560pt;}
.yad{bottom:585.607040pt;}
.y10d{bottom:585.607680pt;}
.y182{bottom:585.614080pt;}
.yc4{bottom:585.621120pt;}
.y176{bottom:585.625467pt;}
.yd6{bottom:585.629307pt;}
.y68{bottom:585.644027pt;}
.y19f{bottom:587.690107pt;}
.y192{bottom:588.323067pt;}
.y3b{bottom:592.330747pt;}
.y14f{bottom:598.240000pt;}
.y1e3{bottom:601.482747pt;}
.y191{bottom:601.600507pt;}
.y250{bottom:602.560000pt;}
.yac{bottom:602.564480pt;}
.y10c{bottom:602.565120pt;}
.y8f{bottom:602.567040pt;}
.y181{bottom:602.571520pt;}
.yc3{bottom:602.578560pt;}
.y175{bottom:602.582907pt;}
.yd5{bottom:602.586747pt;}
.y67{bottom:602.601467pt;}
.y3a{bottom:609.126267pt;}
.yb{bottom:613.440000pt;}
.y1e2{bottom:618.278267pt;}
.y202{bottom:619.073147pt;}
.y239{bottom:619.360000pt;}
.y10b{bottom:619.360640pt;}
.y8e{bottom:619.362560pt;}
.y125{bottom:619.367040pt;}
.yc2{bottom:619.374080pt;}
.y174{bottom:619.378427pt;}
.yd4{bottom:619.382267pt;}
.y66{bottom:619.396987pt;}
.y39{bottom:625.760640pt;}
.y201{bottom:636.030587pt;}
.ya{bottom:636.141440pt;}
.y10a{bottom:636.318080pt;}
.y238{bottom:636.320000pt;}
.y124{bottom:636.324480pt;}
.yc1{bottom:636.331520pt;}
.y173{bottom:636.335867pt;}
.y8d{bottom:636.338560pt;}
.yd3{bottom:636.339707pt;}
.y65{bottom:636.354427pt;}
.y38{bottom:642.880000pt;}
.y109{bottom:653.113600pt;}
.y279{bottom:653.120000pt;}
.yc0{bottom:653.127040pt;}
.y172{bottom:653.131387pt;}
.y8c{bottom:653.134080pt;}
.yd2{bottom:653.135227pt;}
.y237{bottom:653.149440pt;}
.y64{bottom:653.149947pt;}
.y9{bottom:662.230720pt;}
.y37{bottom:664.640000pt;}
.y108{bottom:669.603067pt;}
.yd1{bottom:669.621627pt;}
.ybf{bottom:669.922560pt;}
.y171{bottom:669.926907pt;}
.y8b{bottom:669.929600pt;}
.y278{bottom:669.934080pt;}
.y236{bottom:669.944960pt;}
.y63{bottom:669.945467pt;}
.y36{bottom:679.356000pt;}
.y107{bottom:686.560507pt;}
.yd0{bottom:686.579067pt;}
.y2bd{bottom:686.880000pt;}
.y180{bottom:686.883840pt;}
.ybe{bottom:686.884347pt;}
.y8a{bottom:686.887040pt;}
.y14e{bottom:686.888187pt;}
.y277{bottom:686.891520pt;}
.y235{bottom:686.902400pt;}
.y62{bottom:686.902907pt;}
.y8{bottom:688.320000pt;}
.y35{bottom:693.912000pt;}
.y17f{bottom:703.679360pt;}
.y89{bottom:703.682560pt;}
.y14d{bottom:703.683707pt;}
.y276{bottom:703.687040pt;}
.ybd{bottom:703.694080pt;}
.y234{bottom:703.697920pt;}
.y61{bottom:703.698427pt;}
.y34{bottom:708.636000pt;}
.y7{bottom:711.839867pt;}
.y17e{bottom:720.636800pt;}
.y2a5{bottom:720.640000pt;}
.y14c{bottom:720.641147pt;}
.y275{bottom:720.644480pt;}
.y88{bottom:720.651520pt;}
.y233{bottom:720.655360pt;}
.y60{bottom:720.655867pt;}
.y33{bottom:723.355867pt;}
.y6{bottom:728.941440pt;}
.y17d{bottom:737.123200pt;}
.y14b{bottom:737.436667pt;}
.y274{bottom:737.440000pt;}
.y87{bottom:737.447040pt;}
.y232{bottom:737.450880pt;}
.y5f{bottom:737.451387pt;}
.y32{bottom:745.915867pt;}
.y231{bottom:754.084480pt;}
.y14a{bottom:754.394107pt;}
.y86{bottom:754.404480pt;}
.y5e{bottom:754.408827pt;}
.y5{bottom:755.030720pt;}
.y31{bottom:760.639867pt;}
.y149{bottom:770.880507pt;}
.y5d{bottom:771.204347pt;}
.y30{bottom:775.195867pt;}
.y4{bottom:781.120000pt;}
.y5c{bottom:787.999867pt;}
.y2f{bottom:789.919867pt;}
.y2e{bottom:817.120000pt;}
.y2d{bottom:833.919867pt;}
.y1{bottom:835.839867pt;}
.h2d{height:16.800000pt;}
.h2f{height:16.960000pt;}
.h2e{height:16.961333pt;}
.h14{height:28.078125pt;}
.h5{height:33.257812pt;}
.hd{height:33.305812pt;}
.h2c{height:33.761333pt;}
.he{height:36.805312pt;}
.h3{height:37.624687pt;}
.h2a{height:39.876250pt;}
.h10{height:39.905000pt;}
.h2{height:42.117188pt;}
.h9{height:42.133188pt;}
.ha{height:42.234375pt;}
.h30{height:44.110125pt;}
.h8{height:51.663750pt;}
.hf{height:51.680283pt;}
.hb{height:51.711750pt;}
.h1c{height:51.807500pt;}
.h38{height:53.284118pt;}
.h37{height:53.394198pt;}
.h15{height:53.478678pt;}
.h3b{height:53.496065pt;}
.h39{height:53.509398pt;}
.h34{height:53.529878pt;}
.h1e{height:53.542678pt;}
.h24{height:53.552385pt;}
.h28{height:53.560065pt;}
.h21{height:53.570305pt;}
.h31{height:53.570838pt;}
.h22{height:53.573398pt;}
.h29{height:53.583105pt;}
.h1b{height:53.588225pt;}
.h32{height:53.598465pt;}
.h27{height:53.598998pt;}
.h11{height:53.601558pt;}
.h36{height:53.614358pt;}
.h13{height:53.616385pt;}
.h23{height:53.616918pt;}
.h25{height:53.626625pt;}
.h20{height:53.634305pt;}
.h35{height:53.637398pt;}
.h1a{height:53.644012pt;}
.h17{height:53.644545pt;}
.h3a{height:53.645078pt;}
.h16{height:53.652225pt;}
.h26{height:53.654785pt;}
.h2b{height:53.657878pt;}
.h12{height:53.662465pt;}
.h18{height:53.672705pt;}
.h19{height:53.673238pt;}
.h33{height:53.675265pt;}
.h1f{height:53.680385pt;}
.h1d{height:53.691158pt;}
.hc{height:56.156250pt;}
.h3c{height:56.759063pt;}
.h3d{height:56.963330pt;}
.h4{height:58.977187pt;}
.h7{height:65.702812pt;}
.h6{height:88.761740pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:147.840000pt;}
.w4{width:152.800000pt;}
.w2{width:169.120000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:8.640000pt;}
.xf{left:10.080000pt;}
.xc{left:13.760000pt;}
.x9{left:28.000000pt;}
.xa{left:45.120000pt;}
.x13{left:63.360000pt;}
.x12{left:66.880000pt;}
.x11{left:70.400000pt;}
.x14{left:71.680000pt;}
.x10{left:80.960000pt;}
.x1{left:85.120000pt;}
.x1d{left:94.333440pt;}
.x19{left:109.582080pt;}
.x3{left:113.600000pt;}
.x1e{left:122.876160pt;}
.x7{left:133.127040pt;}
.x17{left:141.746560pt;}
.x15{left:150.240000pt;}
.x6{left:156.311680pt;}
.x1c{left:157.423360pt;}
.x8{left:161.439360pt;}
.x5{left:184.632960pt;}
.x1a{left:190.659840pt;}
.xb{left:255.520000pt;}
.x18{left:321.256960pt;}
.x4{left:328.320000pt;}
.xd{left:404.000000pt;}
.x2{left:486.573280pt;}
.x1b{left:555.450880pt;}
.x16{left:557.424640pt;}
}




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