
    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_98d87432e385f4d454c32e88.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989258;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_4b9b3a48515ad6ec49eb5fbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_64ccc3ffa27f10e131c9f738.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3a272352a807135148ad5817.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fb4dc117535ff920bb5689e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_828ed7dc40201af654dd5a0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_247acde4e938e507331976a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_1a3ffb475e41c9212af1b329.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010742;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_f6be443f98b24c58f665070d.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e7b0cde7fc6a4839708f75ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_58e62026904390f04d91452a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:20.903040px;}
.v1{vertical-align:27.722520px;}
.v3{vertical-align:31.696560px;}
.v2{vertical-align:36.018000px;}
.v4{vertical-align:43.546680px;}
.v6{vertical-align:48.576960px;}
.v5{vertical-align:63.728280px;}
.v8{vertical-align:69.480000px;}
.ls67{letter-spacing:-0.504000px;}
.ls66{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.378000px;}
.ls1e{letter-spacing:-0.335160px;}
.ls7c{letter-spacing:-0.329400px;}
.ls29{letter-spacing:-0.300600px;}
.ls8f{letter-spacing:-0.240480px;}
.ls6f{letter-spacing:-0.216000px;}
.ls90{letter-spacing:-0.197640px;}
.ls4d{letter-spacing:-0.167760px;}
.ls11{letter-spacing:-0.162000px;}
.ls27{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.143640px;}
.ls7e{letter-spacing:-0.131760px;}
.ls8e{letter-spacing:-0.120240px;}
.ls38{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.095760px;}
.ls5c{letter-spacing:-0.083880px;}
.ls1{letter-spacing:-0.072000px;}
.ls70{letter-spacing:-0.065880px;}
.ls4e{letter-spacing:-0.060120px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.060120px;}
.ls4{letter-spacing:0.065880px;}
.ls5d{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.095760px;}
.ls7{letter-spacing:0.108000px;}
.ls6b{letter-spacing:0.111996px;}
.ls25{letter-spacing:0.120240px;}
.ls24{letter-spacing:0.122400px;}
.ls56{letter-spacing:0.129600px;}
.ls7d{letter-spacing:0.131760px;}
.ls59{letter-spacing:0.136800px;}
.ls26{letter-spacing:0.140040px;}
.ls1d{letter-spacing:0.143640px;}
.ls2{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.167760px;}
.lsa{letter-spacing:0.183600px;}
.ls19{letter-spacing:0.191520px;}
.ls91{letter-spacing:0.197640px;}
.lsd{letter-spacing:0.210600px;}
.ls12{letter-spacing:0.216000px;}
.ls50{letter-spacing:0.251640px;}
.ls30{letter-spacing:0.275400px;}
.ls39{letter-spacing:0.285192px;}
.ls5e{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.307800px;}
.lsc{letter-spacing:0.361800px;}
.ls1f{letter-spacing:0.383040px;}
.ls8d{letter-spacing:0.487512px;}
.ls23{letter-spacing:0.504000px;}
.lse{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.856800px;}
.ls5f{letter-spacing:1.224000px;}
.ls6c{letter-spacing:1.584000px;}
.ls6e{letter-spacing:2.289600px;}
.ls22{letter-spacing:4.104000px;}
.ls21{letter-spacing:4.464000px;}
.ls71{letter-spacing:4.802400px;}
.ls65{letter-spacing:5.544000px;}
.ls64{letter-spacing:5.904000px;}
.ls8a{letter-spacing:6.192720px;}
.ls62{letter-spacing:6.984000px;}
.ls54{letter-spacing:7.704000px;}
.ls6d{letter-spacing:8.056800px;}
.ls73{letter-spacing:9.129600px;}
.ls5a{letter-spacing:10.936800px;}
.ls5b{letter-spacing:10.944000px;}
.ls61{letter-spacing:13.104000px;}
.ls53{letter-spacing:15.984000px;}
.ls88{letter-spacing:17.655840px;}
.ls87{letter-spacing:17.998416px;}
.ls8b{letter-spacing:20.422800px;}
.ls57{letter-spacing:20.649600px;}
.ls58{letter-spacing:20.664000px;}
.ls55{letter-spacing:25.344000px;}
.ls8c{letter-spacing:27.864000px;}
.ls86{letter-spacing:31.029480px;}
.ls89{letter-spacing:34.587000px;}
.ls63{letter-spacing:54.864000px;}
.ls34{letter-spacing:55.566000px;}
.ls79{letter-spacing:57.264480px;}
.ls15{letter-spacing:62.291880px;}
.ls3a{letter-spacing:63.546840px;}
.ls60{letter-spacing:63.571320px;}
.ls18{letter-spacing:64.446480px;}
.ls4c{letter-spacing:69.473880px;}
.ls4b{letter-spacing:70.575120px;}
.ls4a{letter-spacing:75.602520px;}
.ls33{letter-spacing:76.788000px;}
.ls74{letter-spacing:78.475320px;}
.ls20{letter-spacing:79.576560px;}
.ls78{letter-spacing:89.296200px;}
.ls7a{letter-spacing:91.785960px;}
.ls75{letter-spacing:96.329772px;}
.ls17{letter-spacing:117.018720px;}
.ls52{letter-spacing:119.304000px;}
.ls7b{letter-spacing:128.509920px;}
.ls31{letter-spacing:130.788000px;}
.ls2c{letter-spacing:136.890000px;}
.ls51{letter-spacing:136.944000px;}
.ls2d{letter-spacing:151.686000px;}
.ls68{letter-spacing:151.985160px;}
.ls3e{letter-spacing:165.952080px;}
.ls80{letter-spacing:167.614560px;}
.ls3f{letter-spacing:171.027360px;}
.ls48{letter-spacing:175.336560px;}
.ls6{letter-spacing:181.548000px;}
.ls10{letter-spacing:181.926000px;}
.ls44{letter-spacing:182.518560px;}
.ls49{letter-spacing:186.109560px;}
.ls45{letter-spacing:192.956400px;}
.lsf{letter-spacing:196.668000px;}
.ls46{letter-spacing:203.777280px;}
.ls40{letter-spacing:204.495480px;}
.ls3b{letter-spacing:205.931880px;}
.ls47{letter-spacing:209.187720px;}
.ls77{letter-spacing:213.607044px;}
.ls41{letter-spacing:215.651520px;}
.ls81{letter-spacing:219.077280px;}
.ls3c{letter-spacing:222.115320px;}
.ls3d{letter-spacing:222.498360px;}
.ls7f{letter-spacing:223.045200px;}
.ls84{letter-spacing:227.734560px;}
.ls42{letter-spacing:229.345200px;}
.ls83{letter-spacing:229.538160px;}
.ls82{letter-spacing:230.981040px;}
.ls35{letter-spacing:233.010000px;}
.ls43{letter-spacing:240.836400px;}
.ls9{letter-spacing:242.119800px;}
.ls16{letter-spacing:244.810440px;}
.ls32{letter-spacing:251.046000px;}
.ls85{letter-spacing:289.297440px;}
.ls5{letter-spacing:307.908000px;}
.ls2b{letter-spacing:310.788000px;}
.ls37{letter-spacing:359.046000px;}
.ls2e{letter-spacing:369.468000px;}
.ls2f{letter-spacing:401.868000px;}
.ls6a{letter-spacing:454.374360px;}
.ls8{letter-spacing:454.788000px;}
.lsb{letter-spacing:476.010000px;}
.ls69{letter-spacing:543.641760px;}
.ls2a{letter-spacing:747.450000px;}
.ls76{letter-spacing:950.034960px;}
.ls4f{letter-spacing:1310.976720px;}
.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;}
}
.ws54{word-spacing:-72.000000px;}
.ws31{word-spacing:-21.137760px;}
.ws36{word-spacing:-20.886120px;}
.ws39{word-spacing:-20.160000px;}
.ws38{word-spacing:-20.016000px;}
.ws21{word-spacing:-19.944000px;}
.ws20{word-spacing:-19.872000px;}
.ws55{word-spacing:-19.512000px;}
.ws85{word-spacing:-18.512280px;}
.ws79{word-spacing:-18.446400px;}
.ws5f{word-spacing:-18.380520px;}
.ws61{word-spacing:-18.314640px;}
.ws60{word-spacing:-18.248760px;}
.ws90{word-spacing:-18.144000px;}
.ws37{word-spacing:-17.928000px;}
.ws24{word-spacing:-16.833600px;}
.ws23{word-spacing:-16.773480px;}
.ws22{word-spacing:-16.713360px;}
.ws82{word-spacing:-16.593120px;}
.ws83{word-spacing:-16.472880px;}
.ws25{word-spacing:-16.412760px;}
.ws7{word-spacing:-15.228000px;}
.ws8{word-spacing:-15.174000px;}
.ws6{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.012000px;}
.ws2e{word-spacing:-14.904000px;}
.ws4{word-spacing:-14.850000px;}
.ws9{word-spacing:-14.634000px;}
.ws13{word-spacing:-13.502160px;}
.ws17{word-spacing:-13.454280px;}
.ws14{word-spacing:-13.406400px;}
.ws15{word-spacing:-13.310640px;}
.ws12{word-spacing:-13.214880px;}
.ws16{word-spacing:-13.167000px;}
.ws84{word-spacing:-10.808640px;}
.ws2b{word-spacing:-3.024000px;}
.ws87{word-spacing:-2.664000px;}
.ws8f{word-spacing:-2.503440px;}
.ws29{word-spacing:-2.304000px;}
.ws3c{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.512000px;}
.ws7b{word-spacing:-1.449360px;}
.ws51{word-spacing:-1.224000px;}
.ws78{word-spacing:-1.053360px;}
.ws35{word-spacing:-0.901800px;}
.ws2d{word-spacing:-0.541080px;}
.ws52{word-spacing:-0.504000px;}
.ws67{word-spacing:-0.395280px;}
.ws1f{word-spacing:-0.383040px;}
.ws62{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.251640px;}
.ws5c{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.191520px;}
.ws2c{word-spacing:-0.180360px;}
.ws33{word-spacing:-0.167760px;}
.ws30{word-spacing:-0.162000px;}
.ws2{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.143640px;}
.wsf{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.095760px;}
.ws3b{word-spacing:-0.072000px;}
.wsc{word-spacing:-0.065880px;}
.ws34{word-spacing:-0.060120px;}
.ws2f{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.072000px;}
.ws1a{word-spacing:0.095760px;}
.ws10{word-spacing:0.108000px;}
.ws86{word-spacing:0.120240px;}
.ws28{word-spacing:0.144000px;}
.wse{word-spacing:0.162000px;}
.ws3a{word-spacing:0.167760px;}
.ws7e{word-spacing:0.197640px;}
.ws1{word-spacing:0.216000px;}
.wsd{word-spacing:0.270000px;}
.ws40{word-spacing:0.288000px;}
.ws7c{word-spacing:0.329400px;}
.ws1b{word-spacing:0.335160px;}
.ws19{word-spacing:0.383040px;}
.ws32{word-spacing:0.419400px;}
.ws5d{word-spacing:0.432000px;}
.ws1c{word-spacing:0.478800px;}
.ws2a{word-spacing:0.576000px;}
.ws11{word-spacing:0.648000px;}
.ws71{word-spacing:0.936000px;}
.ws89{word-spacing:1.054080px;}
.ws57{word-spacing:1.296000px;}
.ws58{word-spacing:1.368000px;}
.ws6b{word-spacing:1.656000px;}
.ws53{word-spacing:2.016000px;}
.ws81{word-spacing:2.344680px;}
.ws6c{word-spacing:2.376000px;}
.ws8e{word-spacing:2.503440px;}
.ws72{word-spacing:3.096000px;}
.ws7a{word-spacing:3.228120px;}
.ws7f{word-spacing:3.787560px;}
.ws70{word-spacing:4.176000px;}
.ws7d{word-spacing:4.282200px;}
.ws27{word-spacing:4.536000px;}
.ws26{word-spacing:4.608000px;}
.ws63{word-spacing:4.896000px;}
.ws4a{word-spacing:5.256000px;}
.ws77{word-spacing:5.410440px;}
.ws68{word-spacing:5.616000px;}
.ws76{word-spacing:5.793480px;}
.ws5e{word-spacing:6.048000px;}
.ws8a{word-spacing:6.126840px;}
.ws4d{word-spacing:6.336000px;}
.ws5b{word-spacing:7.056000px;}
.ws47{word-spacing:7.776000px;}
.ws50{word-spacing:8.136000px;}
.ws4c{word-spacing:8.496000px;}
.ws6e{word-spacing:8.856000px;}
.ws74{word-spacing:9.001440px;}
.ws80{word-spacing:9.138240px;}
.ws73{word-spacing:9.216000px;}
.ws4e{word-spacing:10.296000px;}
.ws4f{word-spacing:10.656000px;}
.ws44{word-spacing:11.016000px;}
.ws8b{word-spacing:11.133720px;}
.ws66{word-spacing:11.736000px;}
.ws6f{word-spacing:12.096000px;}
.ws59{word-spacing:13.176000px;}
.ws65{word-spacing:13.896000px;}
.ws6d{word-spacing:14.256000px;}
.ws64{word-spacing:14.976000px;}
.ws6a{word-spacing:15.336000px;}
.ws41{word-spacing:16.056000px;}
.ws42{word-spacing:16.128000px;}
.ws69{word-spacing:17.136000px;}
.ws88{word-spacing:17.655840px;}
.ws56{word-spacing:17.856000px;}
.ws8c{word-spacing:19.764000px;}
.ws46{word-spacing:20.304000px;}
.ws45{word-spacing:20.376000px;}
.ws4b{word-spacing:20.736000px;}
.ws8d{word-spacing:23.387400px;}
.ws48{word-spacing:25.200000px;}
.ws49{word-spacing:25.416000px;}
.ws43{word-spacing:26.856000px;}
.ws75{word-spacing:28.105560px;}
.ws5a{word-spacing:30.096000px;}
.ws3e{word-spacing:38.016000px;}
.ws3f{word-spacing:141.336000px;}
._81{margin-left:-289.400400px;}
._1{margin-left:-18.590400px;}
._4{margin-left:-10.598400px;}
._5{margin-left:-5.558400px;}
._3{margin-left:-4.032000px;}
._2{margin-left:-2.376000px;}
._6{margin-left:-1.094400px;}
._0{width:1.022400px;}
._82{width:2.635200px;}
._4d{width:4.449600px;}
._50{width:6.048000px;}
._51{width:10.872000px;}
._53{width:15.076800px;}
._4e{width:16.099200px;}
._52{width:18.691200px;}
._4f{width:27.547200px;}
._4c{width:37.987200px;}
._60{width:52.380720px;}
._19{width:56.833560px;}
._1d{width:58.698720px;}
._1c{width:62.148240px;}
._10{width:66.840480px;}
._4b{width:69.330240px;}
._21{width:72.011520px;}
._45{width:73.017000px;}
._3d{width:77.883840px;}
._14{width:79.480800px;}
._62{width:80.722800px;}
._69{width:82.271880px;}
._74{width:84.593880px;}
._20{width:86.088240px;}
._5f{width:89.391960px;}
._c{width:90.493200px;}
._25{width:92.982960px;}
._18{width:94.515120px;}
._13{width:95.760000px;}
._1f{width:98.297640px;}
._16{width:104.713560px;}
._26{width:106.868160px;}
._1a{width:114.433200px;}
._58{width:118.007280px;}
._54{width:121.327920px;}
._5d{width:123.274080px;}
._17{width:125.972280px;}
._24{width:127.408680px;}
._15{width:128.605680px;}
._12{width:130.042080px;}
._6f{width:131.239080px;}
._46{width:133.722000px;}
._36{width:140.767200px;}
._33{width:142.203600px;}
._32{width:150.726240px;}
._37{width:151.923240px;}
._e{width:156.423960px;}
._34{width:158.387040px;}
._11{width:160.589520px;}
._35{width:163.780560px;}
._43{width:164.898720px;}
._44{width:168.250320px;}
._48{width:170.787960px;}
._1e{width:173.086200px;}
._47{width:177.443280px;}
._f{width:179.214840px;}
._77{width:181.549440px;}
._41{width:183.811320px;}
._61{width:184.864680px;}
._5b{width:188.182440px;}
._27{width:189.987840px;}
._78{width:198.215640px;}
._6b{width:199.659600px;}
._3f{width:201.670560px;}
._3c{width:204.639120px;}
._40{width:206.362800px;}
._1b{width:207.703440px;}
._4a{width:209.618640px;}
._76{width:210.961080px;}
._23{width:213.018120px;}
._22{width:215.651520px;}
._39{width:219.386160px;}
._49{width:224.444520px;}
._7d{width:225.510120px;}
._d{width:228.962160px;}
._2e{width:230.063400px;}
._3a{width:235.665360px;}
._31{width:239.830920px;}
._3b{width:241.602480px;}
._64{width:242.751600px;}
._7f{width:246.071160px;}
._2f{width:249.119640px;}
._30{width:251.896680px;}
._7e{width:255.081600px;}
._7b{width:256.111200px;}
._7a{width:259.856640px;}
._2d{width:261.137520px;}
._2b{width:263.531520px;}
._28{width:265.190400px;}
._80{width:267.534000px;}
._79{width:270.900720px;}
._2c{width:274.352400px;}
._38{width:278.517960px;}
._29{width:281.151360px;}
._2a{width:286.274520px;}
._7c{width:289.357560px;}
._55{width:323.604000px;}
._42{width:338.703120px;}
._5a{width:357.759360px;}
._3e{width:379.353240px;}
._63{width:387.061920px;}
._66{width:392.424480px;}
._9{width:496.854000px;}
._5e{width:504.956520px;}
._6d{width:518.441760px;}
._75{width:542.525400px;}
._5c{width:553.284360px;}
._a{width:604.908000px;}
._57{width:651.868956px;}
._67{width:654.981480px;}
._73{width:676.606320px;}
._65{width:721.534680px;}
._71{width:828.385920px;}
._7{width:843.984000px;}
._b{width:847.271160px;}
._70{width:919.805760px;}
._6e{width:1006.595280px;}
._56{width:1059.471720px;}
._72{width:1071.537480px;}
._59{width:1097.792640px;}
._6c{width:1113.959160px;}
._68{width:1265.420520px;}
._8{width:1327.509720px;}
._6a{width:1497.813120px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs1{font-size:96.120000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:2.610000px;}
.y18b{bottom:2.970000px;}
.y1f8{bottom:3.780000px;}
.y16a{bottom:5.760000px;}
.y179{bottom:5.850000px;}
.ya2{bottom:8.550000px;}
.y285{bottom:25.020000px;}
.y175{bottom:45.450000px;}
.y14d{bottom:63.720000px;}
.yf{bottom:83.880000px;}
.y183{bottom:85.140000px;}
.yfa{bottom:97.380000px;}
.yf7{bottom:119.790000px;}
.y2f3{bottom:121.320000px;}
.y17b{bottom:124.830000px;}
.y14b{bottom:124.920000px;}
.y214{bottom:128.700000px;}
.y9a{bottom:133.749000px;}
.y9d{bottom:133.760970px;}
.ya0{bottom:133.772940px;}
.yf6{bottom:136.174500px;}
.y16c{bottom:144.630000px;}
.y2f2{bottom:144.643500px;}
.y99{bottom:147.514500px;}
.y9c{bottom:147.526470px;}
.y9f{bottom:147.538440px;}
.yf5{bottom:149.940000px;}
.y147{bottom:149.947740px;}
.y213{bottom:152.460000px;}
.y276{bottom:160.917930px;}
.y98{bottom:161.280000px;}
.y9b{bottom:161.291970px;}
.y9e{bottom:161.303940px;}
.y146{bottom:163.809000px;}
.y14a{bottom:163.820970px;}
.y2f1{bottom:166.416840px;}
.yf2{bottom:175.062240px;}
.y212{bottom:176.310000px;}
.y275{bottom:176.850000px;}
.y145{bottom:177.574500px;}
.y149{bottom:177.586470px;}
.y97{bottom:186.319710px;}
.y2f0{bottom:188.289000px;}
.yf1{bottom:188.827740px;}
.y144{bottom:191.340000px;}
.y148{bottom:191.351970px;}
.y211{bottom:200.070000px;}
.y93{bottom:200.169000px;}
.y96{bottom:200.180970px;}
.y274{bottom:202.403790px;}
.yf0{bottom:202.593240px;}
.y2ef{bottom:210.062340px;}
.y271{bottom:210.327930px;}
.y92{bottom:213.934500px;}
.y95{bottom:213.946470px;}
.y143{bottom:216.450000px;}
.yef{bottom:216.454500px;}
.yf4{bottom:216.466470px;}
.y273{bottom:218.335860px;}
.y210{bottom:223.920000px;}
.y270{bottom:226.260000px;}
.y91{bottom:227.700000px;}
.y94{bottom:227.711970px;}
.yee{bottom:230.220000px;}
.yf3{bottom:230.231970px;}
.y2ee{bottom:231.934500px;}
.y272{bottom:234.172170px;}
.y142{bottom:243.993240px;}
.y20f{bottom:252.180000px;}
.y8e{bottom:252.817740px;}
.y2ed{bottom:253.707840px;}
.y39{bottom:254.426490px;}
.yed{bottom:255.243240px;}
.y141{bottom:257.854500px;}
.y26f{bottom:259.737930px;}
.y8d{bottom:266.583240px;}
.yec{bottom:269.104500px;}
.y140{bottom:271.620000px;}
.ye7{bottom:275.052240px;}
.y2ec{bottom:275.580000px;}
.y26e{bottom:275.670000px;}
.y20e{bottom:277.380000px;}
.y38{bottom:278.730000px;}
.y8c{bottom:280.348740px;}
.y90{bottom:280.350000px;}
.y247{bottom:281.700000px;}
.yeb{bottom:282.870000px;}
.ye6{bottom:288.913500px;}
.y8b{bottom:294.210000px;}
.y8f{bottom:294.221970px;}
.y13f{bottom:296.640000px;}
.y13e{bottom:296.643240px;}
.y26d{bottom:301.227930px;}
.y2eb{bottom:302.400000px;}
.ye5{bottom:302.679000px;}
.yea{bottom:302.690970px;}
.y20d{bottom:307.080000px;}
.y37{bottom:307.719000px;}
.y246{bottom:309.960000px;}
.y13d{bottom:310.408740px;}
.ye4{bottom:316.444500px;}
.ye9{bottom:316.456470px;}
.y26c{bottom:317.160000px;}
.y2be{bottom:318.330000px;}
.y8a{bottom:319.230000px;}
.y13c{bottom:324.270000px;}
.y20c{bottom:327.780000px;}
.y36{bottom:330.034500px;}
.y2ea{bottom:330.144660px;}
.ye3{bottom:330.210000px;}
.ye8{bottom:330.221970px;}
.y89{bottom:333.010980px;}
.y245{bottom:333.720000px;}
.y26b{bottom:342.717930px;}
.y2bd{bottom:345.537450px;}
.y88{bottom:346.872240px;}
.y20b{bottom:348.480000px;}
.y13b{bottom:349.290000px;}
.y2e9{bottom:352.016820px;}
.y35{bottom:352.350000px;}
.ye2{bottom:355.327740px;}
.y244{bottom:357.570000px;}
.y26a{bottom:358.650000px;}
.y87{bottom:360.637740px;}
.y13a{bottom:363.063240px;}
.ye1{bottom:369.093240px;}
.y20a{bottom:369.180000px;}
.y2bc{bottom:369.840960px;}
.y2e8{bottom:373.790160px;}
.y86{bottom:374.403240px;}
.y139{bottom:376.924500px;}
.y34{bottom:379.170000px;}
.y243{bottom:381.330000px;}
.ye0{bottom:382.858740px;}
.y269{bottom:384.207930px;}
.y85{bottom:388.264500px;}
.y209{bottom:389.880000px;}
.y29d{bottom:390.420000px;}
.y138{bottom:390.690000px;}
.y2bb{bottom:394.234650px;}
.y2e7{bottom:395.662320px;}
.ydf{bottom:396.720000px;}
.y268{bottom:400.140000px;}
.y84{bottom:402.030000px;}
.y242{bottom:405.180000px;}
.y33{bottom:405.904500px;}
.y187{bottom:408.510000px;}
.y227{bottom:413.460000px;}
.y137{bottom:415.713240px;}
.y29c{bottom:417.240000px;}
.y2e6{bottom:417.435660px;}
.y2ba{bottom:418.538160px;}
.y208{bottom:419.580000px;}
.y32{bottom:421.470000px;}
.ydb{bottom:421.747740px;}
.y2f4{bottom:424.890000px;}
.y267{bottom:425.705760px;}
.y182{bottom:426.150000px;}
.y83{bottom:427.048740px;}
.y241{bottom:428.940000px;}
.y136{bottom:429.574500px;}
.y1ea{bottom:432.810000px;}
.y264{bottom:433.713690px;}
.y226{bottom:434.160000px;}
.yda{bottom:435.513240px;}
.yde{bottom:435.525210px;}
.y2e5{bottom:439.307820px;}
.y207{bottom:440.280000px;}
.y82{bottom:440.910000px;}
.y266{bottom:441.637830px;}
.y29b{bottom:442.797930px;}
.y2b9{bottom:442.841670px;}
.y135{bottom:443.340000px;}
.y7e{bottom:446.857740px;}
.y31{bottom:448.213500px;}
.yd9{bottom:449.374500px;}
.ydd{bottom:449.386470px;}
.y263{bottom:449.550000px;}
.y186{bottom:451.810980px;}
.y240{bottom:452.790000px;}
.y1e9{bottom:452.880000px;}
.y225{bottom:454.950000px;}
.y265{bottom:457.474140px;}
.y29a{bottom:458.730000px;}
.y7d{bottom:460.719000px;}
.y81{bottom:460.730970px;}
.y206{bottom:460.980000px;}
.y2e4{bottom:461.081160px;}
.yd8{bottom:463.140000px;}
.ydc{bottom:463.151970px;}
.y2b8{bottom:467.235360px;}
.y134{bottom:468.363240px;}
.y30{bottom:469.813500px;}
.y185{bottom:471.605490px;}
.y7c{bottom:474.484500px;}
.y80{bottom:474.496470px;}
.y23f{bottom:476.550000px;}
.y224{bottom:478.350000px;}
.y1d2{bottom:481.422690px;}
.y1d8{bottom:481.434660px;}
.y1de{bottom:481.446630px;}
.y1e8{bottom:481.470570px;}
.y205{bottom:481.680000px;}
.y133{bottom:482.224500px;}
.y2e3{bottom:482.953320px;}
.y261{bottom:483.123690px;}
.y262{bottom:483.135660px;}
.y299{bottom:484.290000px;}
.y2f{bottom:485.379000px;}
.y2b7{bottom:487.029870px;}
.yd5{bottom:488.166480px;}
.y7b{bottom:488.250000px;}
.y7f{bottom:488.261970px;}
.y184{bottom:491.400000px;}
.y132{bottom:495.990000px;}
.y1d1{bottom:497.259000px;}
.y1d7{bottom:497.270970px;}
.y1dd{bottom:497.282940px;}
.y1e2{bottom:497.294910px;}
.y1e7{bottom:497.306880px;}
.y260{bottom:498.960000px;}
.y23e{bottom:500.400000px;}
.y2e{bottom:500.863500px;}
.y223{bottom:501.930000px;}
.yd4{bottom:502.027740px;}
.y204{bottom:502.380000px;}
.y2e2{bottom:504.726660px;}
.y298{bottom:509.943690px;}
.y2b6{bottom:511.423560px;}
.y1d0{bottom:513.095310px;}
.y1d6{bottom:513.107280px;}
.y1dc{bottom:513.119250px;}
.y1e1{bottom:513.131220px;}
.y1e6{bottom:513.143190px;}
.y77{bottom:513.367740px;}
.yd3{bottom:515.793240px;}
.y12d{bottom:521.016480px;}
.y2d{bottom:522.369000px;}
.y203{bottom:523.080000px;}
.y23d{bottom:524.160000px;}
.y25e{bottom:524.613690px;}
.y25f{bottom:524.625660px;}
.y297{bottom:525.780000px;}
.y17a{bottom:526.050000px;}
.y2e1{bottom:526.500000px;}
.y76{bottom:527.133240px;}
.y7a{bottom:527.145210px;}
.y1cf{bottom:529.027380px;}
.y1d5{bottom:529.039350px;}
.y1db{bottom:529.051320px;}
.y1e0{bottom:529.063290px;}
.y1e5{bottom:529.075260px;}
.yd2{bottom:529.558740px;}
.yd7{bottom:529.570710px;}
.y222{bottom:531.540000px;}
.y181{bottom:531.927090px;}
.y12c{bottom:534.877740px;}
.y131{bottom:534.889710px;}
.y2b5{bottom:535.727070px;}
.y1b2{bottom:537.480000px;}
.y2c{bottom:537.840000px;}
.y25d{bottom:540.450000px;}
.y75{bottom:540.898740px;}
.y79{bottom:540.910710px;}
.yd1{bottom:543.420000px;}
.yd6{bottom:543.431970px;}
.y202{bottom:543.780000px;}
.y1ce{bottom:544.863690px;}
.y1d4{bottom:544.875660px;}
.y1da{bottom:544.887630px;}
.y1df{bottom:544.899600px;}
.y1e4{bottom:544.911570px;}
.y23c{bottom:548.010000px;}
.y12b{bottom:548.643240px;}
.y130{bottom:548.655210px;}
.y296{bottom:551.431620px;}
.y180{bottom:551.721600px;}
.y2e0{bottom:553.410000px;}
.y74{bottom:554.760000px;}
.y78{bottom:554.771970px;}
.y2b4{bottom:555.521580px;}
.y221{bottom:559.800000px;}
.y1cd{bottom:560.700000px;}
.y1d3{bottom:560.711970px;}
.y1d9{bottom:560.723940px;}
.y1e3{bottom:560.747880px;}
.y12a{bottom:562.408740px;}
.y12f{bottom:562.420710px;}
.y201{bottom:564.480000px;}
.y2b{bottom:564.660000px;}
.y25c{bottom:566.103690px;}
.y295{bottom:567.267930px;}
.yd0{bottom:568.447740px;}
.y1b1{bottom:569.335500px;}
.y17f{bottom:571.516110px;}
.y23b{bottom:571.770000px;}
.y129{bottom:576.270000px;}
.y12e{bottom:576.281970px;}
.y1ad{bottom:578.245500px;}
.y6f{bottom:579.804210px;}
.y2b3{bottom:579.915270px;}
.y2df{bottom:581.670000px;}
.y25b{bottom:581.940000px;}
.ycf{bottom:582.213240px;}
.y294{bottom:583.200000px;}
.y1ca{bottom:586.353690px;}
.y1cb{bottom:586.365660px;}
.y1b0{bottom:587.155500px;}
.y220{bottom:588.150000px;}
.y200{bottom:591.120000px;}
.y2a{bottom:591.390000px;}
.y17e{bottom:591.400800px;}
.y6a{bottom:593.557740px;}
.y6e{bottom:593.569710px;}
.y73{bottom:593.581680px;}
.y23a{bottom:595.620000px;}
.yce{bottom:596.074500px;}
.y1ac{bottom:596.160000px;}
.y125{bottom:601.302240px;}
.y1c9{bottom:602.190000px;}
.y1cc{bottom:602.201970px;}
.y2b2{bottom:604.218780px;}
.y1af{bottom:605.070000px;}
.y2de{bottom:605.520000px;}
.y29{bottom:607.050000px;}
.y69{bottom:607.323240px;}
.y6d{bottom:607.335210px;}
.y72{bottom:607.347180px;}
.y25a{bottom:607.593690px;}
.y293{bottom:608.757930px;}
.ycd{bottom:609.840000px;}
.y17d{bottom:611.195310px;}
.y21f{bottom:611.910000px;}
.y1ab{bottom:613.980000px;}
.y124{bottom:615.067740px;}
.y1ff{bottom:617.130000px;}
.y239{bottom:619.380000px;}
.y68{bottom:621.184500px;}
.y6c{bottom:621.196470px;}
.y71{bottom:621.208440px;}
.y28{bottom:622.530000px;}
.y1ae{bottom:622.890000px;}
.y259{bottom:623.430000px;}
.y292{bottom:624.690000px;}
.y1c8{bottom:627.840000px;}
.y2b1{bottom:628.612470px;}
.y123{bottom:628.929000px;}
.y128{bottom:628.940970px;}
.y2dd{bottom:629.280000px;}
.ycc{bottom:629.647740px;}
.y17c{bottom:631.080000px;}
.y67{bottom:634.950000px;}
.y6b{bottom:634.961970px;}
.y70{bottom:634.973940px;}
.y21e{bottom:640.260000px;}
.y1fe{bottom:641.610000px;}
.y122{bottom:642.694500px;}
.y127{bottom:642.706470px;}
.y238{bottom:643.230000px;}
.ycb{bottom:643.413240px;}
.y27{bottom:643.954500px;}
.y258{bottom:649.083690px;}
.y291{bottom:650.250000px;}
.y1a7{bottom:650.515500px;}
.y2b0{bottom:652.915980px;}
.y1c7{bottom:653.490000px;}
.y121{bottom:656.460000px;}
.y126{bottom:656.471970px;}
.yca{bottom:657.274500px;}
.y2dc{bottom:657.630000px;}
.y1aa{bottom:659.425500px;}
.y26{bottom:659.520000px;}
.y62{bottom:659.985480px;}
.y21d{bottom:664.020000px;}
.y257{bottom:664.920000px;}
.y178{bottom:665.640000px;}
.y1fd{bottom:666.810000px;}
.y1a6{bottom:668.335500px;}
.yc9{bottom:671.040000px;}
.y237{bottom:671.490000px;}
.y61{bottom:673.846740px;}
.ye{bottom:674.280000px;}
.y290{bottom:675.900000px;}
.y2af{bottom:677.219490px;}
.y1a8{bottom:677.245500px;}
.y1c6{bottom:679.050000px;}
.y11e{bottom:681.577740px;}
.y25{bottom:686.250000px;}
.y60{bottom:687.612240px;}
.y2db{bottom:690.120000px;}
.y256{bottom:691.740000px;}
.y1fc{bottom:692.010000px;}
.y177{bottom:692.015310px;}
.y21c{bottom:692.280000px;}
.y1a9{bottom:695.160000px;}
.y11d{bottom:695.343240px;}
.y66{bottom:695.452590px;}
.yc8{bottom:696.060000px;}
.y2ae{bottom:697.104180px;}
.y5f{bottom:701.377740px;}
.y28e{bottom:701.557380px;}
.yd{bottom:702.630000px;}
.y1a5{bottom:704.070000px;}
.y234{bottom:704.526660px;}
.y1c5{bottom:704.703690px;}
.y11c{bottom:709.108740px;}
.y120{bottom:709.120710px;}
.y65{bottom:709.218090px;}
.yc7{bottom:709.932240px;}
.y176{bottom:711.900000px;}
.y24{bottom:715.050000px;}
.y5e{bottom:715.239000px;}
.y236{bottom:715.413330px;}
.y21b{bottom:716.130000px;}
.y255{bottom:717.120000px;}
.y1fb{bottom:717.210000px;}
.y28d{bottom:717.393690px;}
.y2da{bottom:719.640000px;}
.y1c4{bottom:720.540000px;}
.y2ad{bottom:721.407690px;}
.y11b{bottom:722.970000px;}
.y11f{bottom:722.981970px;}
.yc6{bottom:723.697740px;}
.y232{bottom:726.300000px;}
.y5d{bottom:729.004500px;}
.y64{bottom:729.016470px;}
.yc{bottom:730.890000px;}
.y1a1{bottom:731.695500px;}
.y28c{bottom:733.230000px;}
.y28f{bottom:733.241970px;}
.y235{bottom:737.285490px;}
.yc5{bottom:737.463240px;}
.y1fa{bottom:739.350000px;}
.y21a{bottom:739.890000px;}
.y1a4{bottom:740.605500px;}
.y23{bottom:741.870000px;}
.y5c{bottom:742.770000px;}
.y63{bottom:742.781970px;}
.y254{bottom:745.470000px;}
.y2ac{bottom:745.801380px;}
.y1c3{bottom:746.191620px;}
.y174{bottom:746.550000px;}
.y11a{bottom:747.994500px;}
.y233{bottom:748.172160px;}
.y2d9{bottom:749.250000px;}
.y1a0{bottom:749.515500px;}
.yc4{bottom:751.228740px;}
.y1a2{bottom:758.425500px;}
.y28b{bottom:758.883690px;}
.y119{bottom:761.760000px;}
.y1c2{bottom:762.027930px;}
.yb{bottom:762.210000px;}
.yc3{bottom:765.090000px;}
.y16b{bottom:767.070000px;}
.y19f{bottom:767.335500px;}
.y5b{bottom:767.880000px;}
.y219{bottom:768.240000px;}
.y1f9{bottom:768.330000px;}
.y2ab{bottom:770.104890px;}
.y22{bottom:772.924500px;}
.y173{bottom:772.947090px;}
.y253{bottom:773.730000px;}
.y28a{bottom:774.720000px;}
.y1a3{bottom:776.245500px;}
.y1c1{bottom:777.960000px;}
.y2d8{bottom:778.860000px;}
.y231{bottom:779.766660px;}
.y118{bottom:781.560000px;}
.y5a{bottom:781.650000px;}
.yc2{bottom:784.890000px;}
.y19e{bottom:785.250000px;}
.y21{bottom:788.490000px;}
.y218{bottom:792.720000px;}
.y172{bottom:792.741600px;}
.ya{bottom:793.530000px;}
.y2aa{bottom:794.408400px;}
.y117{bottom:795.333240px;}
.y59{bottom:795.439710px;}
.y252{bottom:797.490000px;}
.yc1{bottom:798.684210px;}
.y289{bottom:800.370000px;}
.y230{bottom:801.540000px;}
.y1c0{bottom:803.517930px;}
.y2d7{bottom:808.376310px;}
.y116{bottom:809.194500px;}
.y55{bottom:809.289000px;}
.y58{bottom:809.300970px;}
.y20{bottom:810.004500px;}
.yc0{bottom:812.449710px;}
.y171{bottom:812.536110px;}
.y19c{bottom:812.781000px;}
.y1f7{bottom:815.670000px;}
.y2a9{bottom:818.802090px;}
.y1bf{bottom:819.450000px;}
.y2d6{bottom:820.620000px;}
.y251{bottom:821.340000px;}
.y115{bottom:822.960000px;}
.y54{bottom:823.054500px;}
.y57{bottom:823.066470px;}
.y9{bottom:824.760000px;}
.y1f{bottom:825.570000px;}
.y288{bottom:826.023690px;}
.ybc{bottom:826.299000px;}
.ybf{bottom:826.310970px;}
.y19b{bottom:830.695500px;}
.y170{bottom:832.420800px;}
.y22f{bottom:833.670000px;}
.y53{bottom:836.820000px;}
.y56{bottom:836.831970px;}
.y19d{bottom:839.605500px;}
.ybb{bottom:840.064500px;}
.ybe{bottom:840.076470px;}
.y1f6{bottom:840.150000px;}
.y287{bottom:841.860000px;}
.y2a8{bottom:843.105600px;}
.y1be{bottom:845.010000px;}
.y250{bottom:845.100000px;}
.y1e{bottom:847.800000px;}
.y114{bottom:847.979850px;}
.y19a{bottom:848.515500px;}
.y16f{bottom:852.215310px;}
.yba{bottom:853.830000px;}
.ybd{bottom:853.841970px;}
.y8{bottom:856.080000px;}
.y22e{bottom:857.430000px;}
.y284{bottom:858.330000px;}
.y113{bottom:861.844500px;}
.y50{bottom:861.939000px;}
.y2d5{bottom:862.370730px;}
.y1f5{bottom:865.350000px;}
.y1d{bottom:865.710000px;}
.y199{bottom:866.335500px;}
.y2a7{bottom:867.499290px;}
.y286{bottom:867.510000px;}
.y1bd{bottom:870.659850px;}
.y16e{bottom:872.100000px;}
.y24f{bottom:873.450000px;}
.y2d4{bottom:874.530000px;}
.y112{bottom:875.610000px;}
.y4f{bottom:875.704500px;}
.y52{bottom:875.716470px;}
.yb9{bottom:878.940000px;}
.y22d{bottom:881.280000px;}
.y1c{bottom:883.530000px;}
.y198{bottom:884.250000px;}
.y7{bottom:887.400000px;}
.y4e{bottom:889.470000px;}
.y51{bottom:889.481970px;}
.y1f4{bottom:890.550000px;}
.y2a6{bottom:891.802800px;}
.y16d{bottom:891.900000px;}
.yb8{bottom:892.710000px;}
.y1bc{bottom:896.313690px;}
.y24e{bottom:897.210000px;}
.y283{bottom:899.190000px;}
.y111{bottom:900.636480px;}
.y22c{bottom:905.040000px;}
.y1b{bottom:905.841000px;}
.yb7{bottom:906.480000px;}
.yb0{bottom:906.487740px;}
.y19{bottom:908.190000px;}
.y1f3{bottom:911.250000px;}
.y194{bottom:911.875500px;}
.y1bb{bottom:912.150000px;}
.y110{bottom:914.497740px;}
.y4d{bottom:914.580000px;}
.y2a5{bottom:916.106310px;}
.y2d1{bottom:916.275960px;}
.y6{bottom:918.720000px;}
.yaf{bottom:920.349000px;}
.yb3{bottom:920.360970px;}
.yb6{bottom:920.372940px;}
.y197{bottom:920.785500px;}
.y24d{bottom:921.060000px;}
.y1a{bottom:923.755500px;}
.y18{bottom:923.850000px;}
.y282{bottom:924.840000px;}
.y2ce{bottom:926.180730px;}
.y2d3{bottom:926.186490px;}
.y169{bottom:926.550000px;}
.y10f{bottom:928.263240px;}
.y4c{bottom:928.354500px;}
.y160{bottom:928.999710px;}
.y22b{bottom:929.610000px;}
.y193{bottom:929.695500px;}
.yae{bottom:934.114500px;}
.yb2{bottom:934.126470px;}
.yb5{bottom:934.138440px;}
.y2d0{bottom:936.070470px;}
.y1f2{bottom:936.450000px;}
.y1ba{bottom:937.710000px;}
.y2cd{bottom:938.340000px;}
.y195{bottom:938.605500px;}
.y2a4{bottom:940.500000px;}
.y10e{bottom:942.028740px;}
.y4b{bottom:942.120000px;}
.y15c{bottom:942.849000px;}
.y15f{bottom:942.860970px;}
.y24c{bottom:944.820000px;}
.y192{bottom:947.515500px;}
.yad{bottom:947.880000px;}
.yb1{bottom:947.891970px;}
.yb4{bottom:947.903940px;}
.y5{bottom:950.040000px;}
.y2d2{bottom:950.483250px;}
.y17{bottom:950.490000px;}
.y281{bottom:952.740000px;}
.y10d{bottom:955.890000px;}
.y196{bottom:956.425500px;}
.y15b{bottom:956.614500px;}
.y15e{bottom:956.626470px;}
.y168{bottom:958.500000px;}
.y2cf{bottom:960.373980px;}
.y1f1{bottom:961.650000px;}
.y2a3{bottom:965.340000px;}
.y191{bottom:965.430000px;}
.y1b9{bottom:965.610000px;}
.y47{bottom:967.243500px;}
.y24b{bottom:968.670000px;}
.y15a{bottom:970.380000px;}
.y15d{bottom:970.391970px;}
.y16{bottom:972.000000px;}
.yac{bottom:972.990000px;}
.y107{bottom:975.702240px;}
.y10c{bottom:975.714210px;}
.y4a{bottom:981.000000px;}
.y46{bottom:981.009000px;}
.y4{bottom:981.270000px;}
.y167{bottom:982.260000px;}
.y1f0{bottom:982.350000px;}
.y280{bottom:983.967930px;}
.yab{bottom:986.763240px;}
.y106{bottom:989.467740px;}
.y10b{bottom:989.479710px;}
.y2c6{bottom:990.001800px;}
.y2a2{bottom:991.716660px;}
.y24a{bottom:992.430000px;}
.y1b8{bottom:992.805660px;}
.y190{bottom:992.970000px;}
.y15{bottom:993.609000px;}
.y45{bottom:994.774500px;}
.y49{bottom:994.786470px;}
.y154{bottom:995.506740px;}
.y2cb{bottom:999.889740px;}
.y27f{bottom:999.900000px;}
.yaa{bottom:1000.528740px;}
.y18f{bottom:1001.880000px;}
.y105{bottom:1003.233240px;}
.y10a{bottom:1003.245210px;}
.y1ef{bottom:1007.550000px;}
.y44{bottom:1008.540000px;}
.y48{bottom:1008.551970px;}
.y14{bottom:1009.080000px;}
.y153{bottom:1009.272240px;}
.y159{bottom:1009.284210px;}
.y2c8{bottom:1009.884690px;}
.y2c2{bottom:1009.886490px;}
.y166{bottom:1010.610000px;}
.y3{bottom:1012.590000px;}
.y2a1{bottom:1013.490000px;}
.y1b7{bottom:1013.682330px;}
.ya9{bottom:1014.390000px;}
.y104{bottom:1017.094500px;}
.y109{bottom:1017.106470px;}
.y2ca{bottom:1019.774430px;}
.y249{bottom:1020.780000px;}
.y2c1{bottom:1022.040000px;}
.y152{bottom:1023.037740px;}
.y158{bottom:1023.049710px;}
.y27e{bottom:1025.457930px;}
.y2c5{bottom:1029.681000px;}
.y103{bottom:1030.860000px;}
.y108{bottom:1030.871970px;}
.y1ee{bottom:1032.750000px;}
.y40{bottom:1033.657740px;}
.y2cc{bottom:1034.173170px;}
.y2c7{bottom:1034.188200px;}
.y2c3{bottom:1034.190000px;}
.y1b6{bottom:1034.559000px;}
.y13{bottom:1035.900000px;}
.y151{bottom:1036.899000px;}
.y157{bottom:1036.910970px;}
.y1ed{bottom:1037.250000px;}
.y18e{bottom:1038.415500px;}
.y165{bottom:1038.870000px;}
.ya8{bottom:1039.414500px;}
.y2a0{bottom:1039.873320px;}
.y27d{bottom:1041.390000px;}
.y2{bottom:1042.650000px;}
.y2c9{bottom:1044.077940px;}
.y248{bottom:1044.540000px;}
.yf9{bottom:1047.330000px;}
.y43{bottom:1047.420000px;}
.y3f{bottom:1047.423240px;}
.y150{bottom:1050.664500px;}
.y156{bottom:1050.676470px;}
.ya7{bottom:1053.180000px;}
.y2c4{bottom:1053.984510px;}
.y1b5{bottom:1054.353510px;}
.y102{bottom:1055.886480px;}
.y18d{bottom:1056.330000px;}
.y1ec{bottom:1057.950000px;}
.y3e{bottom:1061.188740px;}
.y42{bottom:1061.200710px;}
.y29f{bottom:1061.646660px;}
.y164{bottom:1062.720000px;}
.y14f{bottom:1064.430000px;}
.y155{bottom:1064.441970px;}
.y12{bottom:1064.610000px;}
.y27c{bottom:1066.943790px;}
.y22a{bottom:1066.950000px;}
.y217{bottom:1068.390000px;}
.y101{bottom:1069.747740px;}
.y18c{bottom:1074.150000px;}
.y279{bottom:1074.867930px;}
.y3d{bottom:1075.050000px;}
.y41{bottom:1075.061970px;}
.y1b4{bottom:1075.140000px;}
.ya6{bottom:1078.297740px;}
.y14c{bottom:1080.990000px;}
.y27b{bottom:1082.875860px;}
.y29e{bottom:1083.420000px;}
.y100{bottom:1083.513240px;}
.y2c0{bottom:1083.596310px;}
.y163{bottom:1086.480000px;}
.y14e{bottom:1089.540000px;}
.y229{bottom:1090.800000px;}
.y18a{bottom:1092.060000px;}
.ya5{bottom:1092.063240px;}
.y216{bottom:1092.150000px;}
.y11{bottom:1092.690000px;}
.y1eb{bottom:1092.960000px;}
.yff{bottom:1097.278740px;}
.y27a{bottom:1098.712170px;}
.y3c{bottom:1100.074500px;}
.y1b3{bottom:1101.690000px;}
.yfd{bottom:1103.313240px;}
.y1{bottom:1104.300000px;}
.ya4{bottom:1105.828740px;}
.y2bf{bottom:1107.990000px;}
.y162{bottom:1110.330000px;}
.y189{bottom:1110.510000px;}
.yfe{bottom:1111.140000px;}
.y3b{bottom:1113.840000px;}
.y228{bottom:1114.560000px;}
.y215{bottom:1116.000000px;}
.yfc{bottom:1117.078740px;}
.ya3{bottom:1119.690000px;}
.y278{bottom:1124.373690px;}
.yfb{bottom:1130.940000px;}
.ya1{bottom:1136.160000px;}
.y10{bottom:1136.970000px;}
.y188{bottom:1139.760000px;}
.y161{bottom:1140.030000px;}
.y277{bottom:1140.210000px;}
.y3a{bottom:1141.200000px;}
.h12{height:19.800000px;}
.h1a{height:19.890000px;}
.h28{height:25.198500px;}
.hc{height:34.857949px;}
.h1d{height:35.551500px;}
.h9{height:39.313477px;}
.h10{height:42.806777px;}
.hf{height:42.923672px;}
.h17{height:43.769004px;}
.h13{height:45.900000px;}
.h29{height:47.962441px;}
.hb{height:48.410156px;}
.ha{height:48.788156px;}
.h7{height:52.312500px;}
.h24{height:52.417969px;}
.h16{height:52.558594px;}
.h23{height:53.749863px;}
.h5{height:53.896641px;}
.h30{height:55.728113px;}
.h34{height:55.762313px;}
.h33{height:55.791472px;}
.h31{height:55.802632px;}
.h2d{height:56.610000px;}
.h11{height:58.976511px;}
.h8{height:59.060391px;}
.h19{height:59.490000px;}
.h6{height:60.944062px;}
.he{height:62.580469px;}
.h4{height:64.546875px;}
.h3{height:69.837187px;}
.h21{height:74.620232px;}
.h2c{height:74.955392px;}
.h15{height:74.971500px;}
.h26{height:75.600000px;}
.h2{height:78.468750px;}
.h1f{height:84.050156px;}
.h1e{height:84.428156px;}
.hd{height:89.919949px;}
.h2e{height:92.345964px;}
.h20{height:98.251069px;}
.h1c{height:99.178500px;}
.h32{height:102.473601px;}
.h35{height:102.510681px;}
.h2a{height:102.607071px;}
.h2f{height:104.335312px;}
.h22{height:106.316792px;}
.h2b{height:106.651952px;}
.h14{height:108.630000px;}
.h27{height:121.500000px;}
.h1b{height:138.868500px;}
.h18{height:158.670000px;}
.h25{height:263.700000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:99.900000px;}
.w6{width:116.010000px;}
.w7{width:119.250000px;}
.w9{width:137.160000px;}
.w4{width:224.730000px;}
.w2{width:399.600000px;}
.w5{width:455.220000px;}
.wa{width:462.330000px;}
.w8{width:540.540000px;}
.w1{width:892.500000px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x1a{left:8.100000px;}
.x14{left:18.990000px;}
.x53{left:20.790000px;}
.x2{left:106.290000px;}
.x5d{left:110.074410px;}
.x6{left:114.390000px;}
.x18{left:116.010000px;}
.x11{left:121.410000px;}
.x3{left:124.290000px;}
.xf{left:125.370000px;}
.x2f{left:127.440000px;}
.x70{left:129.330000px;}
.x5c{left:130.410000px;}
.x23{left:133.290000px;}
.x6c{left:135.630000px;}
.x5a{left:138.241800px;}
.x4{left:142.290000px;}
.x19{left:153.180000px;}
.x71{left:159.507270px;}
.xc{left:161.270640px;}
.x5b{left:170.193780px;}
.x59{left:178.202970px;}
.x5e{left:196.654680px;}
.x39{left:214.737210px;}
.x30{left:216.006030px;}
.x38{left:218.699280px;}
.x37{left:220.674330px;}
.x3a{left:223.738650px;}
.x52{left:244.890000px;}
.x51{left:252.630000px;}
.xd{left:261.172260px;}
.x15{left:262.353780px;}
.x58{left:266.220000px;}
.x12{left:272.076390px;}
.x8{left:273.870000px;}
.x3c{left:284.223060px;}
.x32{left:285.479910px;}
.x7{left:287.014500px;}
.x1{left:289.080000px;}
.x3b{left:290.160180px;}
.x31{left:291.237480px;}
.x3d{left:293.224500px;}
.x9{left:299.520000px;}
.x1f{left:323.190000px;}
.xa{left:325.085940px;}
.x1c{left:331.020000px;}
.x1b{left:335.972790px;}
.x1e{left:339.120000px;}
.x5f{left:343.873530px;}
.x1d{left:352.170000px;}
.x24{left:353.418480px;}
.x6d{left:356.390640px;}
.x3e{left:357.395670px;}
.x33{left:359.095410px;}
.x26{left:361.067310px;}
.x5{left:364.140000px;}
.x3f{left:367.390620px;}
.x40{left:370.814040px;}
.x25{left:374.114610px;}
.xb{left:380.890080px;}
.x61{left:420.736950px;}
.x6e{left:422.918370px;}
.x62{left:425.411280px;}
.x13{left:428.220000px;}
.x41{left:431.035110px;}
.x43{left:433.010160px;}
.x27{left:434.323710px;}
.x10{left:436.326660px;}
.x16{left:437.498820px;}
.x42{left:438.683940px;}
.x60{left:441.162720px;}
.xe{left:447.210000px;}
.x17{left:448.295760px;}
.x55{left:457.904790px;}
.x28{left:500.649480px;}
.x45{left:504.638640px;}
.x2a{left:508.298310px;}
.x64{left:509.389650px;}
.x44{left:511.030620px;}
.x47{left:512.658540px;}
.x46{left:514.633590px;}
.x63{left:517.671180px;}
.x29{left:521.345610px;}
.x20{left:555.210000px;}
.x22{left:563.319000px;}
.x66{left:573.733080px;}
.x67{left:575.807220px;}
.x4b{left:579.522960px;}
.x2b{left:582.907320px;}
.x48{left:583.939890px;}
.x4a{left:585.914940px;}
.x49{left:587.267550px;}
.x34{left:591.552810px;}
.x4c{left:593.025120px;}
.x65{left:594.158850px;}
.x56{left:634.759650px;}
.x36{left:650.409300px;}
.x35{left:656.083080px;}
.x69{left:664.829910px;}
.x68{left:670.676580px;}
.x21{left:682.560000px;}
.x57{left:705.696930px;}
.x72{left:707.040000px;}
.x2c{left:716.636160px;}
.x4e{left:720.996390px;}
.x50{left:722.337030px;}
.x2e{left:724.284990px;}
.x4f{left:727.017300px;}
.x4d{left:728.381880px;}
.x6f{left:731.343060px;}
.x2d{left:737.332290px;}
.x6b{left:738.903150px;}
.x6a{left:744.473880px;}
.x54{left:786.240000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:18.580480pt;}
.v1{vertical-align:24.642240pt;}
.v3{vertical-align:28.174720pt;}
.v2{vertical-align:32.016000pt;}
.v4{vertical-align:38.708160pt;}
.v6{vertical-align:43.179520pt;}
.v5{vertical-align:56.647360pt;}
.v8{vertical-align:61.760000pt;}
.ls67{letter-spacing:-0.448000pt;}
.ls66{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.336000pt;}
.ls1e{letter-spacing:-0.297920pt;}
.ls7c{letter-spacing:-0.292800pt;}
.ls29{letter-spacing:-0.267200pt;}
.ls8f{letter-spacing:-0.213760pt;}
.ls6f{letter-spacing:-0.192000pt;}
.ls90{letter-spacing:-0.175680pt;}
.ls4d{letter-spacing:-0.149120pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.127680pt;}
.ls7e{letter-spacing:-0.117120pt;}
.ls8e{letter-spacing:-0.106880pt;}
.ls38{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.085120pt;}
.ls5c{letter-spacing:-0.074560pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls70{letter-spacing:-0.058560pt;}
.ls4e{letter-spacing:-0.053440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.053440pt;}
.ls4{letter-spacing:0.058560pt;}
.ls5d{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.085120pt;}
.ls7{letter-spacing:0.096000pt;}
.ls6b{letter-spacing:0.099552pt;}
.ls25{letter-spacing:0.106880pt;}
.ls24{letter-spacing:0.108800pt;}
.ls56{letter-spacing:0.115200pt;}
.ls7d{letter-spacing:0.117120pt;}
.ls59{letter-spacing:0.121600pt;}
.ls26{letter-spacing:0.124480pt;}
.ls1d{letter-spacing:0.127680pt;}
.ls2{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.149120pt;}
.lsa{letter-spacing:0.163200pt;}
.ls19{letter-spacing:0.170240pt;}
.ls91{letter-spacing:0.175680pt;}
.lsd{letter-spacing:0.187200pt;}
.ls12{letter-spacing:0.192000pt;}
.ls50{letter-spacing:0.223680pt;}
.ls30{letter-spacing:0.244800pt;}
.ls39{letter-spacing:0.253504pt;}
.ls5e{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.273600pt;}
.lsc{letter-spacing:0.321600pt;}
.ls1f{letter-spacing:0.340480pt;}
.ls8d{letter-spacing:0.433344pt;}
.ls23{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.761600pt;}
.ls5f{letter-spacing:1.088000pt;}
.ls6c{letter-spacing:1.408000pt;}
.ls6e{letter-spacing:2.035200pt;}
.ls22{letter-spacing:3.648000pt;}
.ls21{letter-spacing:3.968000pt;}
.ls71{letter-spacing:4.268800pt;}
.ls65{letter-spacing:4.928000pt;}
.ls64{letter-spacing:5.248000pt;}
.ls8a{letter-spacing:5.504640pt;}
.ls62{letter-spacing:6.208000pt;}
.ls54{letter-spacing:6.848000pt;}
.ls6d{letter-spacing:7.161600pt;}
.ls73{letter-spacing:8.115200pt;}
.ls5a{letter-spacing:9.721600pt;}
.ls5b{letter-spacing:9.728000pt;}
.ls61{letter-spacing:11.648000pt;}
.ls53{letter-spacing:14.208000pt;}
.ls88{letter-spacing:15.694080pt;}
.ls87{letter-spacing:15.998592pt;}
.ls8b{letter-spacing:18.153600pt;}
.ls57{letter-spacing:18.355200pt;}
.ls58{letter-spacing:18.368000pt;}
.ls55{letter-spacing:22.528000pt;}
.ls8c{letter-spacing:24.768000pt;}
.ls86{letter-spacing:27.581760pt;}
.ls89{letter-spacing:30.744000pt;}
.ls63{letter-spacing:48.768000pt;}
.ls34{letter-spacing:49.392000pt;}
.ls79{letter-spacing:50.901760pt;}
.ls15{letter-spacing:55.370560pt;}
.ls3a{letter-spacing:56.486080pt;}
.ls60{letter-spacing:56.507840pt;}
.ls18{letter-spacing:57.285760pt;}
.ls4c{letter-spacing:61.754560pt;}
.ls4b{letter-spacing:62.733440pt;}
.ls4a{letter-spacing:67.202240pt;}
.ls33{letter-spacing:68.256000pt;}
.ls74{letter-spacing:69.755840pt;}
.ls20{letter-spacing:70.734720pt;}
.ls78{letter-spacing:79.374400pt;}
.ls7a{letter-spacing:81.587520pt;}
.ls75{letter-spacing:85.626464pt;}
.ls17{letter-spacing:104.016640pt;}
.ls52{letter-spacing:106.048000pt;}
.ls7b{letter-spacing:114.231040pt;}
.ls31{letter-spacing:116.256000pt;}
.ls2c{letter-spacing:121.680000pt;}
.ls51{letter-spacing:121.728000pt;}
.ls2d{letter-spacing:134.832000pt;}
.ls68{letter-spacing:135.097920pt;}
.ls3e{letter-spacing:147.512960pt;}
.ls80{letter-spacing:148.990720pt;}
.ls3f{letter-spacing:152.024320pt;}
.ls48{letter-spacing:155.854720pt;}
.ls6{letter-spacing:161.376000pt;}
.ls10{letter-spacing:161.712000pt;}
.ls44{letter-spacing:162.238720pt;}
.ls49{letter-spacing:165.430720pt;}
.ls45{letter-spacing:171.516800pt;}
.lsf{letter-spacing:174.816000pt;}
.ls46{letter-spacing:181.135360pt;}
.ls40{letter-spacing:181.773760pt;}
.ls3b{letter-spacing:183.050560pt;}
.ls47{letter-spacing:185.944640pt;}
.ls77{letter-spacing:189.872928pt;}
.ls41{letter-spacing:191.690240pt;}
.ls81{letter-spacing:194.735360pt;}
.ls3c{letter-spacing:197.435840pt;}
.ls3d{letter-spacing:197.776320pt;}
.ls7f{letter-spacing:198.262400pt;}
.ls84{letter-spacing:202.430720pt;}
.ls42{letter-spacing:203.862400pt;}
.ls83{letter-spacing:204.033920pt;}
.ls82{letter-spacing:205.316480pt;}
.ls35{letter-spacing:207.120000pt;}
.ls43{letter-spacing:214.076800pt;}
.ls9{letter-spacing:215.217600pt;}
.ls16{letter-spacing:217.609280pt;}
.ls32{letter-spacing:223.152000pt;}
.ls85{letter-spacing:257.153280pt;}
.ls5{letter-spacing:273.696000pt;}
.ls2b{letter-spacing:276.256000pt;}
.ls37{letter-spacing:319.152000pt;}
.ls2e{letter-spacing:328.416000pt;}
.ls2f{letter-spacing:357.216000pt;}
.ls6a{letter-spacing:403.888320pt;}
.ls8{letter-spacing:404.256000pt;}
.lsb{letter-spacing:423.120000pt;}
.ls69{letter-spacing:483.237120pt;}
.ls2a{letter-spacing:664.400000pt;}
.ls76{letter-spacing:844.475520pt;}
.ls4f{letter-spacing:1165.312640pt;}
.ws54{word-spacing:-64.000000pt;}
.ws31{word-spacing:-18.789120pt;}
.ws36{word-spacing:-18.565440pt;}
.ws39{word-spacing:-17.920000pt;}
.ws38{word-spacing:-17.792000pt;}
.ws21{word-spacing:-17.728000pt;}
.ws20{word-spacing:-17.664000pt;}
.ws55{word-spacing:-17.344000pt;}
.ws85{word-spacing:-16.455360pt;}
.ws79{word-spacing:-16.396800pt;}
.ws5f{word-spacing:-16.338240pt;}
.ws61{word-spacing:-16.279680pt;}
.ws60{word-spacing:-16.221120pt;}
.ws90{word-spacing:-16.128000pt;}
.ws37{word-spacing:-15.936000pt;}
.ws24{word-spacing:-14.963200pt;}
.ws23{word-spacing:-14.909760pt;}
.ws22{word-spacing:-14.856320pt;}
.ws82{word-spacing:-14.749440pt;}
.ws83{word-spacing:-14.642560pt;}
.ws25{word-spacing:-14.589120pt;}
.ws7{word-spacing:-13.536000pt;}
.ws8{word-spacing:-13.488000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws2e{word-spacing:-13.248000pt;}
.ws4{word-spacing:-13.200000pt;}
.ws9{word-spacing:-13.008000pt;}
.ws13{word-spacing:-12.001920pt;}
.ws17{word-spacing:-11.959360pt;}
.ws14{word-spacing:-11.916800pt;}
.ws15{word-spacing:-11.831680pt;}
.ws12{word-spacing:-11.746560pt;}
.ws16{word-spacing:-11.704000pt;}
.ws84{word-spacing:-9.607680pt;}
.ws2b{word-spacing:-2.688000pt;}
.ws87{word-spacing:-2.368000pt;}
.ws8f{word-spacing:-2.225280pt;}
.ws29{word-spacing:-2.048000pt;}
.ws3c{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.344000pt;}
.ws7b{word-spacing:-1.288320pt;}
.ws51{word-spacing:-1.088000pt;}
.ws78{word-spacing:-0.936320pt;}
.ws35{word-spacing:-0.801600pt;}
.ws2d{word-spacing:-0.480960pt;}
.ws52{word-spacing:-0.448000pt;}
.ws67{word-spacing:-0.351360pt;}
.ws1f{word-spacing:-0.340480pt;}
.ws62{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.223680pt;}
.ws5c{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.170240pt;}
.ws2c{word-spacing:-0.160320pt;}
.ws33{word-spacing:-0.149120pt;}
.ws30{word-spacing:-0.144000pt;}
.ws2{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.127680pt;}
.wsf{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.085120pt;}
.ws3b{word-spacing:-0.064000pt;}
.wsc{word-spacing:-0.058560pt;}
.ws34{word-spacing:-0.053440pt;}
.ws2f{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.085120pt;}
.ws10{word-spacing:0.096000pt;}
.ws86{word-spacing:0.106880pt;}
.ws28{word-spacing:0.128000pt;}
.wse{word-spacing:0.144000pt;}
.ws3a{word-spacing:0.149120pt;}
.ws7e{word-spacing:0.175680pt;}
.ws1{word-spacing:0.192000pt;}
.wsd{word-spacing:0.240000pt;}
.ws40{word-spacing:0.256000pt;}
.ws7c{word-spacing:0.292800pt;}
.ws1b{word-spacing:0.297920pt;}
.ws19{word-spacing:0.340480pt;}
.ws32{word-spacing:0.372800pt;}
.ws5d{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.425600pt;}
.ws2a{word-spacing:0.512000pt;}
.ws11{word-spacing:0.576000pt;}
.ws71{word-spacing:0.832000pt;}
.ws89{word-spacing:0.936960pt;}
.ws57{word-spacing:1.152000pt;}
.ws58{word-spacing:1.216000pt;}
.ws6b{word-spacing:1.472000pt;}
.ws53{word-spacing:1.792000pt;}
.ws81{word-spacing:2.084160pt;}
.ws6c{word-spacing:2.112000pt;}
.ws8e{word-spacing:2.225280pt;}
.ws72{word-spacing:2.752000pt;}
.ws7a{word-spacing:2.869440pt;}
.ws7f{word-spacing:3.366720pt;}
.ws70{word-spacing:3.712000pt;}
.ws7d{word-spacing:3.806400pt;}
.ws27{word-spacing:4.032000pt;}
.ws26{word-spacing:4.096000pt;}
.ws63{word-spacing:4.352000pt;}
.ws4a{word-spacing:4.672000pt;}
.ws77{word-spacing:4.809280pt;}
.ws68{word-spacing:4.992000pt;}
.ws76{word-spacing:5.149760pt;}
.ws5e{word-spacing:5.376000pt;}
.ws8a{word-spacing:5.446080pt;}
.ws4d{word-spacing:5.632000pt;}
.ws5b{word-spacing:6.272000pt;}
.ws47{word-spacing:6.912000pt;}
.ws50{word-spacing:7.232000pt;}
.ws4c{word-spacing:7.552000pt;}
.ws6e{word-spacing:7.872000pt;}
.ws74{word-spacing:8.001280pt;}
.ws80{word-spacing:8.122880pt;}
.ws73{word-spacing:8.192000pt;}
.ws4e{word-spacing:9.152000pt;}
.ws4f{word-spacing:9.472000pt;}
.ws44{word-spacing:9.792000pt;}
.ws8b{word-spacing:9.896640pt;}
.ws66{word-spacing:10.432000pt;}
.ws6f{word-spacing:10.752000pt;}
.ws59{word-spacing:11.712000pt;}
.ws65{word-spacing:12.352000pt;}
.ws6d{word-spacing:12.672000pt;}
.ws64{word-spacing:13.312000pt;}
.ws6a{word-spacing:13.632000pt;}
.ws41{word-spacing:14.272000pt;}
.ws42{word-spacing:14.336000pt;}
.ws69{word-spacing:15.232000pt;}
.ws88{word-spacing:15.694080pt;}
.ws56{word-spacing:15.872000pt;}
.ws8c{word-spacing:17.568000pt;}
.ws46{word-spacing:18.048000pt;}
.ws45{word-spacing:18.112000pt;}
.ws4b{word-spacing:18.432000pt;}
.ws8d{word-spacing:20.788800pt;}
.ws48{word-spacing:22.400000pt;}
.ws49{word-spacing:22.592000pt;}
.ws43{word-spacing:23.872000pt;}
.ws75{word-spacing:24.982720pt;}
.ws5a{word-spacing:26.752000pt;}
.ws3e{word-spacing:33.792000pt;}
.ws3f{word-spacing:125.632000pt;}
._81{margin-left:-257.244800pt;}
._1{margin-left:-16.524800pt;}
._4{margin-left:-9.420800pt;}
._5{margin-left:-4.940800pt;}
._3{margin-left:-3.584000pt;}
._2{margin-left:-2.112000pt;}
._6{margin-left:-0.972800pt;}
._0{width:0.908800pt;}
._82{width:2.342400pt;}
._4d{width:3.955200pt;}
._50{width:5.376000pt;}
._51{width:9.664000pt;}
._53{width:13.401600pt;}
._4e{width:14.310400pt;}
._52{width:16.614400pt;}
._4f{width:24.486400pt;}
._4c{width:33.766400pt;}
._60{width:46.560640pt;}
._19{width:50.518720pt;}
._1d{width:52.176640pt;}
._1c{width:55.242880pt;}
._10{width:59.413760pt;}
._4b{width:61.626880pt;}
._21{width:64.010240pt;}
._45{width:64.904000pt;}
._3d{width:69.230080pt;}
._14{width:70.649600pt;}
._62{width:71.753600pt;}
._69{width:73.130560pt;}
._74{width:75.194560pt;}
._20{width:76.522880pt;}
._5f{width:79.459520pt;}
._c{width:80.438400pt;}
._25{width:82.651520pt;}
._18{width:84.013440pt;}
._13{width:85.120000pt;}
._1f{width:87.375680pt;}
._16{width:93.078720pt;}
._26{width:94.993920pt;}
._1a{width:101.718400pt;}
._58{width:104.895360pt;}
._54{width:107.847040pt;}
._5d{width:109.576960pt;}
._17{width:111.975360pt;}
._24{width:113.252160pt;}
._15{width:114.316160pt;}
._12{width:115.592960pt;}
._6f{width:116.656960pt;}
._46{width:118.864000pt;}
._36{width:125.126400pt;}
._33{width:126.403200pt;}
._32{width:133.978880pt;}
._37{width:135.042880pt;}
._e{width:139.043520pt;}
._34{width:140.788480pt;}
._11{width:142.746240pt;}
._35{width:145.582720pt;}
._43{width:146.576640pt;}
._44{width:149.555840pt;}
._48{width:151.811520pt;}
._1e{width:153.854400pt;}
._47{width:157.727360pt;}
._f{width:159.302080pt;}
._77{width:161.377280pt;}
._41{width:163.387840pt;}
._61{width:164.324160pt;}
._5b{width:167.273280pt;}
._27{width:168.878080pt;}
._78{width:176.191680pt;}
._6b{width:177.475200pt;}
._3f{width:179.262720pt;}
._3c{width:181.901440pt;}
._40{width:183.433600pt;}
._1b{width:184.625280pt;}
._4a{width:186.327680pt;}
._76{width:187.520960pt;}
._23{width:189.349440pt;}
._22{width:191.690240pt;}
._39{width:195.009920pt;}
._49{width:199.506240pt;}
._7d{width:200.453440pt;}
._d{width:203.521920pt;}
._2e{width:204.500800pt;}
._3a{width:209.480320pt;}
._31{width:213.183040pt;}
._3b{width:214.757760pt;}
._64{width:215.779200pt;}
._7f{width:218.729920pt;}
._2f{width:221.439680pt;}
._30{width:223.908160pt;}
._7e{width:226.739200pt;}
._7b{width:227.654400pt;}
._7a{width:230.983680pt;}
._2d{width:232.122240pt;}
._2b{width:234.250240pt;}
._28{width:235.724800pt;}
._80{width:237.808000pt;}
._79{width:240.800640pt;}
._2c{width:243.868800pt;}
._38{width:247.571520pt;}
._29{width:249.912320pt;}
._2a{width:254.466240pt;}
._7c{width:257.206720pt;}
._55{width:287.648000pt;}
._42{width:301.069440pt;}
._5a{width:318.008320pt;}
._3e{width:337.202880pt;}
._63{width:344.055040pt;}
._66{width:348.821760pt;}
._9{width:441.648000pt;}
._5e{width:448.850240pt;}
._6d{width:460.837120pt;}
._75{width:482.244800pt;}
._5c{width:491.808320pt;}
._a{width:537.696000pt;}
._57{width:579.439072pt;}
._67{width:582.205760pt;}
._73{width:601.427840pt;}
._65{width:641.364160pt;}
._71{width:736.343040pt;}
._7{width:750.208000pt;}
._b{width:753.129920pt;}
._70{width:817.605120pt;}
._6e{width:894.751360pt;}
._56{width:941.752640pt;}
._72{width:952.477760pt;}
._59{width:975.815680pt;}
._6c{width:990.185920pt;}
._68{width:1124.818240pt;}
._8{width:1180.008640pt;}
._6a{width:1331.389440pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs1{font-size:85.440000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:2.320000pt;}
.y18b{bottom:2.640000pt;}
.y1f8{bottom:3.360000pt;}
.y16a{bottom:5.120000pt;}
.y179{bottom:5.200000pt;}
.ya2{bottom:7.600000pt;}
.y285{bottom:22.240000pt;}
.y175{bottom:40.400000pt;}
.y14d{bottom:56.640000pt;}
.yf{bottom:74.560000pt;}
.y183{bottom:75.680000pt;}
.yfa{bottom:86.560000pt;}
.yf7{bottom:106.480000pt;}
.y2f3{bottom:107.840000pt;}
.y17b{bottom:110.960000pt;}
.y14b{bottom:111.040000pt;}
.y214{bottom:114.400000pt;}
.y9a{bottom:118.888000pt;}
.y9d{bottom:118.898640pt;}
.ya0{bottom:118.909280pt;}
.yf6{bottom:121.044000pt;}
.y16c{bottom:128.560000pt;}
.y2f2{bottom:128.572000pt;}
.y99{bottom:131.124000pt;}
.y9c{bottom:131.134640pt;}
.y9f{bottom:131.145280pt;}
.yf5{bottom:133.280000pt;}
.y147{bottom:133.286880pt;}
.y213{bottom:135.520000pt;}
.y276{bottom:143.038160pt;}
.y98{bottom:143.360000pt;}
.y9b{bottom:143.370640pt;}
.y9e{bottom:143.381280pt;}
.y146{bottom:145.608000pt;}
.y14a{bottom:145.618640pt;}
.y2f1{bottom:147.926080pt;}
.yf2{bottom:155.610880pt;}
.y212{bottom:156.720000pt;}
.y275{bottom:157.200000pt;}
.y145{bottom:157.844000pt;}
.y149{bottom:157.854640pt;}
.y97{bottom:165.617520pt;}
.y2f0{bottom:167.368000pt;}
.yf1{bottom:167.846880pt;}
.y144{bottom:170.080000pt;}
.y148{bottom:170.090640pt;}
.y211{bottom:177.840000pt;}
.y93{bottom:177.928000pt;}
.y96{bottom:177.938640pt;}
.y274{bottom:179.914480pt;}
.yf0{bottom:180.082880pt;}
.y2ef{bottom:186.722080pt;}
.y271{bottom:186.958160pt;}
.y92{bottom:190.164000pt;}
.y95{bottom:190.174640pt;}
.y143{bottom:192.400000pt;}
.yef{bottom:192.404000pt;}
.yf4{bottom:192.414640pt;}
.y273{bottom:194.076320pt;}
.y210{bottom:199.040000pt;}
.y270{bottom:201.120000pt;}
.y91{bottom:202.400000pt;}
.y94{bottom:202.410640pt;}
.yee{bottom:204.640000pt;}
.yf3{bottom:204.650640pt;}
.y2ee{bottom:206.164000pt;}
.y272{bottom:208.153040pt;}
.y142{bottom:216.882880pt;}
.y20f{bottom:224.160000pt;}
.y8e{bottom:224.726880pt;}
.y2ed{bottom:225.518080pt;}
.y39{bottom:226.156880pt;}
.yed{bottom:226.882880pt;}
.y141{bottom:229.204000pt;}
.y26f{bottom:230.878160pt;}
.y8d{bottom:236.962880pt;}
.yec{bottom:239.204000pt;}
.y140{bottom:241.440000pt;}
.ye7{bottom:244.490880pt;}
.y2ec{bottom:244.960000pt;}
.y26e{bottom:245.040000pt;}
.y20e{bottom:246.560000pt;}
.y38{bottom:247.760000pt;}
.y8c{bottom:249.198880pt;}
.y90{bottom:249.200000pt;}
.y247{bottom:250.400000pt;}
.yeb{bottom:251.440000pt;}
.ye6{bottom:256.812000pt;}
.y8b{bottom:261.520000pt;}
.y8f{bottom:261.530640pt;}
.y13f{bottom:263.680000pt;}
.y13e{bottom:263.682880pt;}
.y26d{bottom:267.758160pt;}
.y2eb{bottom:268.800000pt;}
.ye5{bottom:269.048000pt;}
.yea{bottom:269.058640pt;}
.y20d{bottom:272.960000pt;}
.y37{bottom:273.528000pt;}
.y246{bottom:275.520000pt;}
.y13d{bottom:275.918880pt;}
.ye4{bottom:281.284000pt;}
.ye9{bottom:281.294640pt;}
.y26c{bottom:281.920000pt;}
.y2be{bottom:282.960000pt;}
.y8a{bottom:283.760000pt;}
.y13c{bottom:288.240000pt;}
.y20c{bottom:291.360000pt;}
.y36{bottom:293.364000pt;}
.y2ea{bottom:293.461920pt;}
.ye3{bottom:293.520000pt;}
.ye8{bottom:293.530640pt;}
.y89{bottom:296.009760pt;}
.y245{bottom:296.640000pt;}
.y26b{bottom:304.638160pt;}
.y2bd{bottom:307.144400pt;}
.y88{bottom:308.330880pt;}
.y20b{bottom:309.760000pt;}
.y13b{bottom:310.480000pt;}
.y2e9{bottom:312.903840pt;}
.y35{bottom:313.200000pt;}
.ye2{bottom:315.846880pt;}
.y244{bottom:317.840000pt;}
.y26a{bottom:318.800000pt;}
.y87{bottom:320.566880pt;}
.y13a{bottom:322.722880pt;}
.ye1{bottom:328.082880pt;}
.y20a{bottom:328.160000pt;}
.y2bc{bottom:328.747520pt;}
.y2e8{bottom:332.257920pt;}
.y86{bottom:332.802880pt;}
.y139{bottom:335.044000pt;}
.y34{bottom:337.040000pt;}
.y243{bottom:338.960000pt;}
.ye0{bottom:340.318880pt;}
.y269{bottom:341.518160pt;}
.y85{bottom:345.124000pt;}
.y209{bottom:346.560000pt;}
.y29d{bottom:347.040000pt;}
.y138{bottom:347.280000pt;}
.y2bb{bottom:350.430800pt;}
.y2e7{bottom:351.699840pt;}
.ydf{bottom:352.640000pt;}
.y268{bottom:355.680000pt;}
.y84{bottom:357.360000pt;}
.y242{bottom:360.160000pt;}
.y33{bottom:360.804000pt;}
.y187{bottom:363.120000pt;}
.y227{bottom:367.520000pt;}
.y137{bottom:369.522880pt;}
.y29c{bottom:370.880000pt;}
.y2e6{bottom:371.053920pt;}
.y2ba{bottom:372.033920pt;}
.y208{bottom:372.960000pt;}
.y32{bottom:374.640000pt;}
.ydb{bottom:374.886880pt;}
.y2f4{bottom:377.680000pt;}
.y267{bottom:378.405120pt;}
.y182{bottom:378.800000pt;}
.y83{bottom:379.598880pt;}
.y241{bottom:381.280000pt;}
.y136{bottom:381.844000pt;}
.y1ea{bottom:384.720000pt;}
.y264{bottom:385.523280pt;}
.y226{bottom:385.920000pt;}
.yda{bottom:387.122880pt;}
.yde{bottom:387.133520pt;}
.y2e5{bottom:390.495840pt;}
.y207{bottom:391.360000pt;}
.y82{bottom:391.920000pt;}
.y266{bottom:392.566960pt;}
.y29b{bottom:393.598160pt;}
.y2b9{bottom:393.637040pt;}
.y135{bottom:394.080000pt;}
.y7e{bottom:397.206880pt;}
.y31{bottom:398.412000pt;}
.yd9{bottom:399.444000pt;}
.ydd{bottom:399.454640pt;}
.y263{bottom:399.600000pt;}
.y186{bottom:401.609760pt;}
.y240{bottom:402.480000pt;}
.y1e9{bottom:402.560000pt;}
.y225{bottom:404.400000pt;}
.y265{bottom:406.643680pt;}
.y29a{bottom:407.760000pt;}
.y7d{bottom:409.528000pt;}
.y81{bottom:409.538640pt;}
.y206{bottom:409.760000pt;}
.y2e4{bottom:409.849920pt;}
.yd8{bottom:411.680000pt;}
.ydc{bottom:411.690640pt;}
.y2b8{bottom:415.320320pt;}
.y134{bottom:416.322880pt;}
.y30{bottom:417.612000pt;}
.y185{bottom:419.204880pt;}
.y7c{bottom:421.764000pt;}
.y80{bottom:421.774640pt;}
.y23f{bottom:423.600000pt;}
.y224{bottom:425.200000pt;}
.y1d2{bottom:427.931280pt;}
.y1d8{bottom:427.941920pt;}
.y1de{bottom:427.952560pt;}
.y1e8{bottom:427.973840pt;}
.y205{bottom:428.160000pt;}
.y133{bottom:428.644000pt;}
.y2e3{bottom:429.291840pt;}
.y261{bottom:429.443280pt;}
.y262{bottom:429.453920pt;}
.y299{bottom:430.480000pt;}
.y2f{bottom:431.448000pt;}
.y2b7{bottom:432.915440pt;}
.yd5{bottom:433.925760pt;}
.y7b{bottom:434.000000pt;}
.y7f{bottom:434.010640pt;}
.y184{bottom:436.800000pt;}
.y132{bottom:440.880000pt;}
.y1d1{bottom:442.008000pt;}
.y1d7{bottom:442.018640pt;}
.y1dd{bottom:442.029280pt;}
.y1e2{bottom:442.039920pt;}
.y1e7{bottom:442.050560pt;}
.y260{bottom:443.520000pt;}
.y23e{bottom:444.800000pt;}
.y2e{bottom:445.212000pt;}
.y223{bottom:446.160000pt;}
.yd4{bottom:446.246880pt;}
.y204{bottom:446.560000pt;}
.y2e2{bottom:448.645920pt;}
.y298{bottom:453.283280pt;}
.y2b6{bottom:454.598720pt;}
.y1d0{bottom:456.084720pt;}
.y1d6{bottom:456.095360pt;}
.y1dc{bottom:456.106000pt;}
.y1e1{bottom:456.116640pt;}
.y1e6{bottom:456.127280pt;}
.y77{bottom:456.326880pt;}
.yd3{bottom:458.482880pt;}
.y12d{bottom:463.125760pt;}
.y2d{bottom:464.328000pt;}
.y203{bottom:464.960000pt;}
.y23d{bottom:465.920000pt;}
.y25e{bottom:466.323280pt;}
.y25f{bottom:466.333920pt;}
.y297{bottom:467.360000pt;}
.y17a{bottom:467.600000pt;}
.y2e1{bottom:468.000000pt;}
.y76{bottom:468.562880pt;}
.y7a{bottom:468.573520pt;}
.y1cf{bottom:470.246560pt;}
.y1d5{bottom:470.257200pt;}
.y1db{bottom:470.267840pt;}
.y1e0{bottom:470.278480pt;}
.y1e5{bottom:470.289120pt;}
.yd2{bottom:470.718880pt;}
.yd7{bottom:470.729520pt;}
.y222{bottom:472.480000pt;}
.y181{bottom:472.824080pt;}
.y12c{bottom:475.446880pt;}
.y131{bottom:475.457520pt;}
.y2b5{bottom:476.201840pt;}
.y1b2{bottom:477.760000pt;}
.y2c{bottom:478.080000pt;}
.y25d{bottom:480.400000pt;}
.y75{bottom:480.798880pt;}
.y79{bottom:480.809520pt;}
.yd1{bottom:483.040000pt;}
.yd6{bottom:483.050640pt;}
.y202{bottom:483.360000pt;}
.y1ce{bottom:484.323280pt;}
.y1d4{bottom:484.333920pt;}
.y1da{bottom:484.344560pt;}
.y1df{bottom:484.355200pt;}
.y1e4{bottom:484.365840pt;}
.y23c{bottom:487.120000pt;}
.y12b{bottom:487.682880pt;}
.y130{bottom:487.693520pt;}
.y296{bottom:490.161440pt;}
.y180{bottom:490.419200pt;}
.y2e0{bottom:491.920000pt;}
.y74{bottom:493.120000pt;}
.y78{bottom:493.130640pt;}
.y2b4{bottom:493.796960pt;}
.y221{bottom:497.600000pt;}
.y1cd{bottom:498.400000pt;}
.y1d3{bottom:498.410640pt;}
.y1d9{bottom:498.421280pt;}
.y1e3{bottom:498.442560pt;}
.y12a{bottom:499.918880pt;}
.y12f{bottom:499.929520pt;}
.y201{bottom:501.760000pt;}
.y2b{bottom:501.920000pt;}
.y25c{bottom:503.203280pt;}
.y295{bottom:504.238160pt;}
.yd0{bottom:505.286880pt;}
.y1b1{bottom:506.076000pt;}
.y17f{bottom:508.014320pt;}
.y23b{bottom:508.240000pt;}
.y129{bottom:512.240000pt;}
.y12e{bottom:512.250640pt;}
.y1ad{bottom:513.996000pt;}
.y6f{bottom:515.381520pt;}
.y2b3{bottom:515.480240pt;}
.y2df{bottom:517.040000pt;}
.y25b{bottom:517.280000pt;}
.ycf{bottom:517.522880pt;}
.y294{bottom:518.400000pt;}
.y1ca{bottom:521.203280pt;}
.y1cb{bottom:521.213920pt;}
.y1b0{bottom:521.916000pt;}
.y220{bottom:522.800000pt;}
.y200{bottom:525.440000pt;}
.y2a{bottom:525.680000pt;}
.y17e{bottom:525.689600pt;}
.y6a{bottom:527.606880pt;}
.y6e{bottom:527.617520pt;}
.y73{bottom:527.628160pt;}
.y23a{bottom:529.440000pt;}
.yce{bottom:529.844000pt;}
.y1ac{bottom:529.920000pt;}
.y125{bottom:534.490880pt;}
.y1c9{bottom:535.280000pt;}
.y1cc{bottom:535.290640pt;}
.y2b2{bottom:537.083360pt;}
.y1af{bottom:537.840000pt;}
.y2de{bottom:538.240000pt;}
.y29{bottom:539.600000pt;}
.y69{bottom:539.842880pt;}
.y6d{bottom:539.853520pt;}
.y72{bottom:539.864160pt;}
.y25a{bottom:540.083280pt;}
.y293{bottom:541.118160pt;}
.ycd{bottom:542.080000pt;}
.y17d{bottom:543.284720pt;}
.y21f{bottom:543.920000pt;}
.y1ab{bottom:545.760000pt;}
.y124{bottom:546.726880pt;}
.y1ff{bottom:548.560000pt;}
.y239{bottom:550.560000pt;}
.y68{bottom:552.164000pt;}
.y6c{bottom:552.174640pt;}
.y71{bottom:552.185280pt;}
.y28{bottom:553.360000pt;}
.y1ae{bottom:553.680000pt;}
.y259{bottom:554.160000pt;}
.y292{bottom:555.280000pt;}
.y1c8{bottom:558.080000pt;}
.y2b1{bottom:558.766640pt;}
.y123{bottom:559.048000pt;}
.y128{bottom:559.058640pt;}
.y2dd{bottom:559.360000pt;}
.ycc{bottom:559.686880pt;}
.y17c{bottom:560.960000pt;}
.y67{bottom:564.400000pt;}
.y6b{bottom:564.410640pt;}
.y70{bottom:564.421280pt;}
.y21e{bottom:569.120000pt;}
.y1fe{bottom:570.320000pt;}
.y122{bottom:571.284000pt;}
.y127{bottom:571.294640pt;}
.y238{bottom:571.760000pt;}
.ycb{bottom:571.922880pt;}
.y27{bottom:572.404000pt;}
.y258{bottom:576.963280pt;}
.y291{bottom:578.000000pt;}
.y1a7{bottom:578.236000pt;}
.y2b0{bottom:580.369760pt;}
.y1c7{bottom:580.880000pt;}
.y121{bottom:583.520000pt;}
.y126{bottom:583.530640pt;}
.yca{bottom:584.244000pt;}
.y2dc{bottom:584.560000pt;}
.y1aa{bottom:586.156000pt;}
.y26{bottom:586.240000pt;}
.y62{bottom:586.653760pt;}
.y21d{bottom:590.240000pt;}
.y257{bottom:591.040000pt;}
.y178{bottom:591.680000pt;}
.y1fd{bottom:592.720000pt;}
.y1a6{bottom:594.076000pt;}
.yc9{bottom:596.480000pt;}
.y237{bottom:596.880000pt;}
.y61{bottom:598.974880pt;}
.ye{bottom:599.360000pt;}
.y290{bottom:600.800000pt;}
.y2af{bottom:601.972880pt;}
.y1a8{bottom:601.996000pt;}
.y1c6{bottom:603.600000pt;}
.y11e{bottom:605.846880pt;}
.y25{bottom:610.000000pt;}
.y60{bottom:611.210880pt;}
.y2db{bottom:613.440000pt;}
.y256{bottom:614.880000pt;}
.y1fc{bottom:615.120000pt;}
.y177{bottom:615.124720pt;}
.y21c{bottom:615.360000pt;}
.y1a9{bottom:617.920000pt;}
.y11d{bottom:618.082880pt;}
.y66{bottom:618.180080pt;}
.yc8{bottom:618.720000pt;}
.y2ae{bottom:619.648160pt;}
.y5f{bottom:623.446880pt;}
.y28e{bottom:623.606560pt;}
.yd{bottom:624.560000pt;}
.y1a5{bottom:625.840000pt;}
.y234{bottom:626.245920pt;}
.y1c5{bottom:626.403280pt;}
.y11c{bottom:630.318880pt;}
.y120{bottom:630.329520pt;}
.y65{bottom:630.416080pt;}
.yc7{bottom:631.050880pt;}
.y176{bottom:632.800000pt;}
.y24{bottom:635.600000pt;}
.y5e{bottom:635.768000pt;}
.y236{bottom:635.922960pt;}
.y21b{bottom:636.560000pt;}
.y255{bottom:637.440000pt;}
.y1fb{bottom:637.520000pt;}
.y28d{bottom:637.683280pt;}
.y2da{bottom:639.680000pt;}
.y1c4{bottom:640.480000pt;}
.y2ad{bottom:641.251280pt;}
.y11b{bottom:642.640000pt;}
.y11f{bottom:642.650640pt;}
.yc6{bottom:643.286880pt;}
.y232{bottom:645.600000pt;}
.y5d{bottom:648.004000pt;}
.y64{bottom:648.014640pt;}
.yc{bottom:649.680000pt;}
.y1a1{bottom:650.396000pt;}
.y28c{bottom:651.760000pt;}
.y28f{bottom:651.770640pt;}
.y235{bottom:655.364880pt;}
.yc5{bottom:655.522880pt;}
.y1fa{bottom:657.200000pt;}
.y21a{bottom:657.680000pt;}
.y1a4{bottom:658.316000pt;}
.y23{bottom:659.440000pt;}
.y5c{bottom:660.240000pt;}
.y63{bottom:660.250640pt;}
.y254{bottom:662.640000pt;}
.y2ac{bottom:662.934560pt;}
.y1c3{bottom:663.281440pt;}
.y174{bottom:663.600000pt;}
.y11a{bottom:664.884000pt;}
.y233{bottom:665.041920pt;}
.y2d9{bottom:666.000000pt;}
.y1a0{bottom:666.236000pt;}
.yc4{bottom:667.758880pt;}
.y1a2{bottom:674.156000pt;}
.y28b{bottom:674.563280pt;}
.y119{bottom:677.120000pt;}
.y1c2{bottom:677.358160pt;}
.yb{bottom:677.520000pt;}
.yc3{bottom:680.080000pt;}
.y16b{bottom:681.840000pt;}
.y19f{bottom:682.076000pt;}
.y5b{bottom:682.560000pt;}
.y219{bottom:682.880000pt;}
.y1f9{bottom:682.960000pt;}
.y2ab{bottom:684.537680pt;}
.y22{bottom:687.044000pt;}
.y173{bottom:687.064080pt;}
.y253{bottom:687.760000pt;}
.y28a{bottom:688.640000pt;}
.y1a3{bottom:689.996000pt;}
.y1c1{bottom:691.520000pt;}
.y2d8{bottom:692.320000pt;}
.y231{bottom:693.125920pt;}
.y118{bottom:694.720000pt;}
.y5a{bottom:694.800000pt;}
.yc2{bottom:697.680000pt;}
.y19e{bottom:698.000000pt;}
.y21{bottom:700.880000pt;}
.y218{bottom:704.640000pt;}
.y172{bottom:704.659200pt;}
.ya{bottom:705.360000pt;}
.y2aa{bottom:706.140800pt;}
.y117{bottom:706.962880pt;}
.y59{bottom:707.057520pt;}
.y252{bottom:708.880000pt;}
.yc1{bottom:709.941520pt;}
.y289{bottom:711.440000pt;}
.y230{bottom:712.480000pt;}
.y1c0{bottom:714.238160pt;}
.y2d7{bottom:718.556720pt;}
.y116{bottom:719.284000pt;}
.y55{bottom:719.368000pt;}
.y58{bottom:719.378640pt;}
.y20{bottom:720.004000pt;}
.yc0{bottom:722.177520pt;}
.y171{bottom:722.254320pt;}
.y19c{bottom:722.472000pt;}
.y1f7{bottom:725.040000pt;}
.y2a9{bottom:727.824080pt;}
.y1bf{bottom:728.400000pt;}
.y2d6{bottom:729.440000pt;}
.y251{bottom:730.080000pt;}
.y115{bottom:731.520000pt;}
.y54{bottom:731.604000pt;}
.y57{bottom:731.614640pt;}
.y9{bottom:733.120000pt;}
.y1f{bottom:733.840000pt;}
.y288{bottom:734.243280pt;}
.ybc{bottom:734.488000pt;}
.ybf{bottom:734.498640pt;}
.y19b{bottom:738.396000pt;}
.y170{bottom:739.929600pt;}
.y22f{bottom:741.040000pt;}
.y53{bottom:743.840000pt;}
.y56{bottom:743.850640pt;}
.y19d{bottom:746.316000pt;}
.ybb{bottom:746.724000pt;}
.ybe{bottom:746.734640pt;}
.y1f6{bottom:746.800000pt;}
.y287{bottom:748.320000pt;}
.y2a8{bottom:749.427200pt;}
.y1be{bottom:751.120000pt;}
.y250{bottom:751.200000pt;}
.y1e{bottom:753.600000pt;}
.y114{bottom:753.759867pt;}
.y19a{bottom:754.236000pt;}
.y16f{bottom:757.524720pt;}
.yba{bottom:758.960000pt;}
.ybd{bottom:758.970640pt;}
.y8{bottom:760.960000pt;}
.y22e{bottom:762.160000pt;}
.y284{bottom:762.960000pt;}
.y113{bottom:766.084000pt;}
.y50{bottom:766.168000pt;}
.y2d5{bottom:766.551760pt;}
.y1f5{bottom:769.200000pt;}
.y1d{bottom:769.520000pt;}
.y199{bottom:770.076000pt;}
.y2a7{bottom:771.110480pt;}
.y286{bottom:771.120000pt;}
.y1bd{bottom:773.919867pt;}
.y16e{bottom:775.200000pt;}
.y24f{bottom:776.400000pt;}
.y2d4{bottom:777.360000pt;}
.y112{bottom:778.320000pt;}
.y4f{bottom:778.404000pt;}
.y52{bottom:778.414640pt;}
.yb9{bottom:781.280000pt;}
.y22d{bottom:783.360000pt;}
.y1c{bottom:785.360000pt;}
.y198{bottom:786.000000pt;}
.y7{bottom:788.800000pt;}
.y4e{bottom:790.640000pt;}
.y51{bottom:790.650640pt;}
.y1f4{bottom:791.600000pt;}
.y2a6{bottom:792.713600pt;}
.y16d{bottom:792.800000pt;}
.yb8{bottom:793.520000pt;}
.y1bc{bottom:796.723280pt;}
.y24e{bottom:797.520000pt;}
.y283{bottom:799.280000pt;}
.y111{bottom:800.565760pt;}
.y22c{bottom:804.480000pt;}
.y1b{bottom:805.192000pt;}
.yb7{bottom:805.760000pt;}
.yb0{bottom:805.766880pt;}
.y19{bottom:807.280000pt;}
.y1f3{bottom:810.000000pt;}
.y194{bottom:810.556000pt;}
.y1bb{bottom:810.800000pt;}
.y110{bottom:812.886880pt;}
.y4d{bottom:812.960000pt;}
.y2a5{bottom:814.316720pt;}
.y2d1{bottom:814.467520pt;}
.y6{bottom:816.640000pt;}
.yaf{bottom:818.088000pt;}
.yb3{bottom:818.098640pt;}
.yb6{bottom:818.109280pt;}
.y197{bottom:818.476000pt;}
.y24d{bottom:818.720000pt;}
.y1a{bottom:821.116000pt;}
.y18{bottom:821.200000pt;}
.y282{bottom:822.080000pt;}
.y2ce{bottom:823.271760pt;}
.y2d3{bottom:823.276880pt;}
.y169{bottom:823.600000pt;}
.y10f{bottom:825.122880pt;}
.y4c{bottom:825.204000pt;}
.y160{bottom:825.777520pt;}
.y22b{bottom:826.320000pt;}
.y193{bottom:826.396000pt;}
.yae{bottom:830.324000pt;}
.yb2{bottom:830.334640pt;}
.yb5{bottom:830.345280pt;}
.y2d0{bottom:832.062640pt;}
.y1f2{bottom:832.400000pt;}
.y1ba{bottom:833.520000pt;}
.y2cd{bottom:834.080000pt;}
.y195{bottom:834.316000pt;}
.y2a4{bottom:836.000000pt;}
.y10e{bottom:837.358880pt;}
.y4b{bottom:837.440000pt;}
.y15c{bottom:838.088000pt;}
.y15f{bottom:838.098640pt;}
.y24c{bottom:839.840000pt;}
.y192{bottom:842.236000pt;}
.yad{bottom:842.560000pt;}
.yb1{bottom:842.570640pt;}
.yb4{bottom:842.581280pt;}
.y5{bottom:844.480000pt;}
.y2d2{bottom:844.874000pt;}
.y17{bottom:844.880000pt;}
.y281{bottom:846.880000pt;}
.y10d{bottom:849.680000pt;}
.y196{bottom:850.156000pt;}
.y15b{bottom:850.324000pt;}
.y15e{bottom:850.334640pt;}
.y168{bottom:852.000000pt;}
.y2cf{bottom:853.665760pt;}
.y1f1{bottom:854.800000pt;}
.y2a3{bottom:858.080000pt;}
.y191{bottom:858.160000pt;}
.y1b9{bottom:858.320000pt;}
.y47{bottom:859.772000pt;}
.y24b{bottom:861.040000pt;}
.y15a{bottom:862.560000pt;}
.y15d{bottom:862.570640pt;}
.y16{bottom:864.000000pt;}
.yac{bottom:864.880000pt;}
.y107{bottom:867.290880pt;}
.y10c{bottom:867.301520pt;}
.y4a{bottom:872.000000pt;}
.y46{bottom:872.008000pt;}
.y4{bottom:872.240000pt;}
.y167{bottom:873.120000pt;}
.y1f0{bottom:873.200000pt;}
.y280{bottom:874.638160pt;}
.yab{bottom:877.122880pt;}
.y106{bottom:879.526880pt;}
.y10b{bottom:879.537520pt;}
.y2c6{bottom:880.001600pt;}
.y2a2{bottom:881.525920pt;}
.y24a{bottom:882.160000pt;}
.y1b8{bottom:882.493920pt;}
.y190{bottom:882.640000pt;}
.y15{bottom:883.208000pt;}
.y45{bottom:884.244000pt;}
.y49{bottom:884.254640pt;}
.y154{bottom:884.894880pt;}
.y2cb{bottom:888.790880pt;}
.y27f{bottom:888.800000pt;}
.yaa{bottom:889.358880pt;}
.y18f{bottom:890.560000pt;}
.y105{bottom:891.762880pt;}
.y10a{bottom:891.773520pt;}
.y1ef{bottom:895.600000pt;}
.y44{bottom:896.480000pt;}
.y48{bottom:896.490640pt;}
.y14{bottom:896.960000pt;}
.y153{bottom:897.130880pt;}
.y159{bottom:897.141520pt;}
.y2c8{bottom:897.675280pt;}
.y2c2{bottom:897.676880pt;}
.y166{bottom:898.320000pt;}
.y3{bottom:900.080000pt;}
.y2a1{bottom:900.880000pt;}
.y1b7{bottom:901.050960pt;}
.ya9{bottom:901.680000pt;}
.y104{bottom:904.084000pt;}
.y109{bottom:904.094640pt;}
.y2ca{bottom:906.466160pt;}
.y249{bottom:907.360000pt;}
.y2c1{bottom:908.480000pt;}
.y152{bottom:909.366880pt;}
.y158{bottom:909.377520pt;}
.y27e{bottom:911.518160pt;}
.y2c5{bottom:915.272000pt;}
.y103{bottom:916.320000pt;}
.y108{bottom:916.330640pt;}
.y1ee{bottom:918.000000pt;}
.y40{bottom:918.806880pt;}
.y2cc{bottom:919.265040pt;}
.y2c7{bottom:919.278400pt;}
.y2c3{bottom:919.280000pt;}
.y1b6{bottom:919.608000pt;}
.y13{bottom:920.800000pt;}
.y151{bottom:921.688000pt;}
.y157{bottom:921.698640pt;}
.y1ed{bottom:922.000000pt;}
.y18e{bottom:923.036000pt;}
.y165{bottom:923.440000pt;}
.ya8{bottom:923.924000pt;}
.y2a0{bottom:924.331840pt;}
.y27d{bottom:925.680000pt;}
.y2{bottom:926.800000pt;}
.y2c9{bottom:928.069280pt;}
.y248{bottom:928.480000pt;}
.yf9{bottom:930.960000pt;}
.y43{bottom:931.040000pt;}
.y3f{bottom:931.042880pt;}
.y150{bottom:933.924000pt;}
.y156{bottom:933.934640pt;}
.ya7{bottom:936.160000pt;}
.y2c4{bottom:936.875120pt;}
.y1b5{bottom:937.203120pt;}
.y102{bottom:938.565760pt;}
.y18d{bottom:938.960000pt;}
.y1ec{bottom:940.400000pt;}
.y3e{bottom:943.278880pt;}
.y42{bottom:943.289520pt;}
.y29f{bottom:943.685920pt;}
.y164{bottom:944.640000pt;}
.y14f{bottom:946.160000pt;}
.y155{bottom:946.170640pt;}
.y12{bottom:946.320000pt;}
.y27c{bottom:948.394480pt;}
.y22a{bottom:948.400000pt;}
.y217{bottom:949.680000pt;}
.y101{bottom:950.886880pt;}
.y18c{bottom:954.800000pt;}
.y279{bottom:955.438160pt;}
.y3d{bottom:955.600000pt;}
.y41{bottom:955.610640pt;}
.y1b4{bottom:955.680000pt;}
.ya6{bottom:958.486880pt;}
.y14c{bottom:960.880000pt;}
.y27b{bottom:962.556320pt;}
.y29e{bottom:963.040000pt;}
.y100{bottom:963.122880pt;}
.y2c0{bottom:963.196720pt;}
.y163{bottom:965.760000pt;}
.y14e{bottom:968.480000pt;}
.y229{bottom:969.600000pt;}
.y18a{bottom:970.720000pt;}
.ya5{bottom:970.722880pt;}
.y216{bottom:970.800000pt;}
.y11{bottom:971.280000pt;}
.y1eb{bottom:971.520000pt;}
.yff{bottom:975.358880pt;}
.y27a{bottom:976.633040pt;}
.y3c{bottom:977.844000pt;}
.y1b3{bottom:979.280000pt;}
.yfd{bottom:980.722880pt;}
.y1{bottom:981.600000pt;}
.ya4{bottom:982.958880pt;}
.y2bf{bottom:984.880000pt;}
.y162{bottom:986.960000pt;}
.y189{bottom:987.120000pt;}
.yfe{bottom:987.680000pt;}
.y3b{bottom:990.080000pt;}
.y228{bottom:990.720000pt;}
.y215{bottom:992.000000pt;}
.yfc{bottom:992.958880pt;}
.ya3{bottom:995.280000pt;}
.y278{bottom:999.443280pt;}
.yfb{bottom:1005.280000pt;}
.ya1{bottom:1009.920000pt;}
.y10{bottom:1010.640000pt;}
.y188{bottom:1013.120000pt;}
.y161{bottom:1013.360000pt;}
.y277{bottom:1013.520000pt;}
.y3a{bottom:1014.400000pt;}
.h12{height:17.600000pt;}
.h1a{height:17.680000pt;}
.h28{height:22.398667pt;}
.hc{height:30.984844pt;}
.h1d{height:31.601333pt;}
.h9{height:34.945312pt;}
.h10{height:38.050469pt;}
.hf{height:38.154375pt;}
.h17{height:38.905781pt;}
.h13{height:40.800000pt;}
.h29{height:42.633281pt;}
.hb{height:43.031250pt;}
.ha{height:43.367250pt;}
.h7{height:46.500000pt;}
.h24{height:46.593750pt;}
.h16{height:46.718750pt;}
.h23{height:47.777656pt;}
.h5{height:47.908125pt;}
.h30{height:49.536100pt;}
.h34{height:49.566500pt;}
.h33{height:49.592420pt;}
.h31{height:49.602340pt;}
.h2d{height:50.320000pt;}
.h11{height:52.423565pt;}
.h8{height:52.498125pt;}
.h19{height:52.880000pt;}
.h6{height:54.172500pt;}
.he{height:55.627084pt;}
.h4{height:57.375000pt;}
.h3{height:62.077500pt;}
.h21{height:66.329095pt;}
.h2c{height:66.627015pt;}
.h15{height:66.641333pt;}
.h26{height:67.200000pt;}
.h2{height:69.750000pt;}
.h1f{height:74.711250pt;}
.h1e{height:75.047250pt;}
.hd{height:79.928844pt;}
.h2e{height:82.085301pt;}
.h20{height:87.334284pt;}
.h1c{height:88.158667pt;}
.h32{height:91.087645pt;}
.h35{height:91.120605pt;}
.h2a{height:91.206285pt;}
.h2f{height:92.742500pt;}
.h22{height:94.503815pt;}
.h2b{height:94.801735pt;}
.h14{height:96.560000pt;}
.h27{height:108.000000pt;}
.h1b{height:123.438667pt;}
.h18{height:141.040000pt;}
.h25{height:234.400000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:88.800000pt;}
.w6{width:103.120000pt;}
.w7{width:106.000000pt;}
.w9{width:121.920000pt;}
.w4{width:199.760000pt;}
.w2{width:355.200000pt;}
.w5{width:404.640000pt;}
.wa{width:410.960000pt;}
.w8{width:480.480000pt;}
.w1{width:793.333333pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.200000pt;}
.x14{left:16.880000pt;}
.x53{left:18.480000pt;}
.x2{left:94.480000pt;}
.x5d{left:97.843920pt;}
.x6{left:101.680000pt;}
.x18{left:103.120000pt;}
.x11{left:107.920000pt;}
.x3{left:110.480000pt;}
.xf{left:111.440000pt;}
.x2f{left:113.280000pt;}
.x70{left:114.960000pt;}
.x5c{left:115.920000pt;}
.x23{left:118.480000pt;}
.x6c{left:120.560000pt;}
.x5a{left:122.881600pt;}
.x4{left:126.480000pt;}
.x19{left:136.160000pt;}
.x71{left:141.784240pt;}
.xc{left:143.351680pt;}
.x5b{left:151.283360pt;}
.x59{left:158.402640pt;}
.x5e{left:174.804160pt;}
.x39{left:190.877520pt;}
.x30{left:192.005360pt;}
.x38{left:194.399360pt;}
.x37{left:196.154960pt;}
.x3a{left:198.878800pt;}
.x52{left:217.680000pt;}
.x51{left:224.560000pt;}
.xd{left:232.153120pt;}
.x15{left:233.203360pt;}
.x58{left:236.640000pt;}
.x12{left:241.845680pt;}
.x8{left:243.440000pt;}
.x3c{left:252.642720pt;}
.x32{left:253.759920pt;}
.x7{left:255.124000pt;}
.x1{left:256.960000pt;}
.x3b{left:257.920160pt;}
.x31{left:258.877760pt;}
.x3d{left:260.644000pt;}
.x9{left:266.240000pt;}
.x1f{left:287.280000pt;}
.xa{left:288.965280pt;}
.x1c{left:294.240000pt;}
.x1b{left:298.642480pt;}
.x1e{left:301.440000pt;}
.x5f{left:305.665360pt;}
.x1d{left:313.040000pt;}
.x24{left:314.149760pt;}
.x6d{left:316.791680pt;}
.x3e{left:317.685040pt;}
.x33{left:319.195920pt;}
.x26{left:320.948720pt;}
.x5{left:323.680000pt;}
.x3f{left:326.569440pt;}
.x40{left:329.612480pt;}
.x25{left:332.546320pt;}
.xb{left:338.568960pt;}
.x61{left:373.988400pt;}
.x6e{left:375.927440pt;}
.x62{left:378.143360pt;}
.x13{left:380.640000pt;}
.x41{left:383.142320pt;}
.x43{left:384.897920pt;}
.x27{left:386.065520pt;}
.x10{left:387.845920pt;}
.x16{left:388.887840pt;}
.x42{left:389.941280pt;}
.x60{left:392.144640pt;}
.xe{left:397.520000pt;}
.x17{left:398.485120pt;}
.x55{left:407.026480pt;}
.x28{left:445.021760pt;}
.x45{left:448.567680pt;}
.x2a{left:451.820720pt;}
.x64{left:452.790800pt;}
.x44{left:454.249440pt;}
.x47{left:455.696480pt;}
.x46{left:457.452080pt;}
.x63{left:460.152160pt;}
.x29{left:463.418320pt;}
.x20{left:493.520000pt;}
.x22{left:500.728000pt;}
.x66{left:509.984960pt;}
.x67{left:511.828640pt;}
.x4b{left:515.131520pt;}
.x2b{left:518.139840pt;}
.x48{left:519.057680pt;}
.x4a{left:520.813280pt;}
.x49{left:522.015600pt;}
.x34{left:525.824720pt;}
.x4c{left:527.133440pt;}
.x65{left:528.141200pt;}
.x56{left:564.230800pt;}
.x36{left:578.141600pt;}
.x35{left:583.184960pt;}
.x69{left:590.959920pt;}
.x68{left:596.156960pt;}
.x21{left:606.720000pt;}
.x57{left:627.286160pt;}
.x72{left:628.480000pt;}
.x2c{left:637.009920pt;}
.x4e{left:640.885680pt;}
.x50{left:642.077360pt;}
.x2e{left:643.808880pt;}
.x4f{left:646.237600pt;}
.x4d{left:647.450560pt;}
.x6f{left:650.082720pt;}
.x2d{left:655.406480pt;}
.x6b{left:656.802800pt;}
.x6a{left:661.754560pt;}
.x54{left:698.880000pt;}
}




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