
    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_f892e357fa161c9c931c3954.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_3d5b786f8c497ce9d215e962.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106000;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_782f2edd78bffc904eaccea8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.057000;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_65e049a118e90c59ae6e942f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_d88908f3e7dc7005fd58df84.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_42d71c1d56b270240cec877b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_85d07e0f3625dd24d9bb9a4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_e792b7a3480b65f709054b0e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ace037b4accb11773808320.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861000;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_8a8bac89a96d1b696f7afc08.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.596000;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_fad33066306549c2072f454f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.839000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c13e2eec45c0d234e93948cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925781;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-21.780000px;}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.834000px;}
.ls4c{letter-spacing:-7.986000px;}
.ls2f{letter-spacing:-4.752000px;}
.ls46{letter-spacing:-4.158000px;}
.ls55{letter-spacing:-3.894000px;}
.ls52{letter-spacing:-2.706000px;}
.ls26{letter-spacing:-2.310000px;}
.ls1a{letter-spacing:-2.046000px;}
.ls24{letter-spacing:-1.584000px;}
.ls45{letter-spacing:-1.188000px;}
.ls4d{letter-spacing:-1.122000px;}
.ls54{letter-spacing:-1.056000px;}
.ls29{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.858000px;}
.ls3b{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.726000px;}
.ls43{letter-spacing:-0.660000px;}
.ls4e{letter-spacing:-0.604800px;}
.ls47{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.594000px;}
.ls20{letter-spacing:-0.529200px;}
.ls3a{letter-spacing:-0.528000px;}
.ls17{letter-spacing:-0.462000px;}
.ls3f{letter-spacing:-0.453600px;}
.ls49{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.396000px;}
.ls4{letter-spacing:-0.378000px;}
.ls2{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.302400px;}
.lsf{letter-spacing:-0.264000px;}
.ls3c{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.198000px;}
.ls28{letter-spacing:-0.151200px;}
.ls8{letter-spacing:-0.132000px;}
.ls3d{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.066000px;}
.ls42{letter-spacing:-0.060000px;}
.ls19{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.020047px;}
.ls1{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000075px;}
.ls34{letter-spacing:0.018967px;}
.ls41{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.066000px;}
.ls35{letter-spacing:0.132000px;}
.ls37{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.264000px;}
.lse{letter-spacing:0.270000px;}
.ls48{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.330000px;}
.lsc{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.396000px;}
.ls2d{letter-spacing:0.462000px;}
.ls50{letter-spacing:0.481920px;}
.ls7{letter-spacing:0.486000px;}
.ls11{letter-spacing:0.495000px;}
.ls5{letter-spacing:0.528000px;}
.ls9{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.594000px;}
.ls22{letter-spacing:0.660000px;}
.ls40{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.726000px;}
.ls10{letter-spacing:0.792000px;}
.ls30{letter-spacing:0.858000px;}
.ls3e{letter-spacing:0.900000px;}
.ls32{letter-spacing:0.924000px;}
.ls44{letter-spacing:0.990000px;}
.ls0{letter-spacing:1.020600px;}
.ls31{letter-spacing:1.056000px;}
.ls1b{letter-spacing:1.122000px;}
.ls4b{letter-spacing:1.188000px;}
.ls2b{letter-spacing:1.254000px;}
.ls39{letter-spacing:1.386000px;}
.ls1d{letter-spacing:1.452000px;}
.ls1c{letter-spacing:1.716000px;}
.ls4a{letter-spacing:1.848000px;}
.ls23{letter-spacing:1.914000px;}
.ls1f{letter-spacing:1.980000px;}
.ls27{letter-spacing:2.046000px;}
.ls3{letter-spacing:2.088000px;}
.ls53{letter-spacing:2.244000px;}
.ls51{letter-spacing:2.574000px;}
.ls4f{letter-spacing:3.828000px;}
.ls2e{letter-spacing:4.026000px;}
.ls2a{letter-spacing:4.752000px;}
.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;}
}
.wscd{word-spacing:-75.070800px;}
.ws74{word-spacing:-20.865600px;}
.wsd7{word-spacing:-20.714400px;}
.ws4{word-spacing:-20.638800px;}
.wsc5{word-spacing:-20.412000px;}
.ws81{word-spacing:-16.566000px;}
.ws10{word-spacing:-15.390000px;}
.wsf{word-spacing:-15.012000px;}
.ws35{word-spacing:-14.958000px;}
.ws4b{word-spacing:-14.520000px;}
.ws6a{word-spacing:-14.454000px;}
.ws91{word-spacing:-14.405400px;}
.wsbe{word-spacing:-14.388000px;}
.ws11{word-spacing:-14.148000px;}
.wsaf{word-spacing:-13.992000px;}
.ws99{word-spacing:-13.926000px;}
.ws7c{word-spacing:-13.794000px;}
.ws89{word-spacing:-13.728000px;}
.ws7d{word-spacing:-13.464000px;}
.ws96{word-spacing:-13.398000px;}
.ws21{word-spacing:-13.332000px;}
.wsc6{word-spacing:-13.266000px;}
.ws6d{word-spacing:-13.200000px;}
.ws6c{word-spacing:-13.068000px;}
.ws20{word-spacing:-13.002000px;}
.wsd4{word-spacing:-12.936000px;}
.ws95{word-spacing:-12.870000px;}
.ws34{word-spacing:-12.804000px;}
.ws67{word-spacing:-12.738000px;}
.wsc7{word-spacing:-12.672000px;}
.ws47{word-spacing:-12.606000px;}
.ws6b{word-spacing:-12.540000px;}
.ws68{word-spacing:-12.408000px;}
.ws4a{word-spacing:-12.342000px;}
.wsa3{word-spacing:-12.276000px;}
.ws69{word-spacing:-12.210000px;}
.wsdb{word-spacing:-12.144000px;}
.wsce{word-spacing:-12.078000px;}
.wsae{word-spacing:-11.946000px;}
.wse0{word-spacing:-11.814000px;}
.ws63{word-spacing:-11.682000px;}
.wsc0{word-spacing:-11.418000px;}
.ws92{word-spacing:-11.399287px;}
.wsb0{word-spacing:-11.352000px;}
.wsab{word-spacing:-10.494000px;}
.wsd5{word-spacing:-9.834000px;}
.wsde{word-spacing:-8.646000px;}
.ws82{word-spacing:-7.788000px;}
.wscf{word-spacing:-7.128000px;}
.wsd0{word-spacing:-5.950800px;}
.wsbf{word-spacing:-4.554000px;}
.wsd9{word-spacing:-4.158000px;}
.wsa4{word-spacing:-3.600000px;}
.ws72{word-spacing:-3.564000px;}
.wscc{word-spacing:-3.432000px;}
.wsda{word-spacing:-3.366000px;}
.wsa8{word-spacing:-3.234000px;}
.ws38{word-spacing:-3.168000px;}
.ws18{word-spacing:-3.102000px;}
.wsba{word-spacing:-3.036000px;}
.wsb6{word-spacing:-3.000000px;}
.ws31{word-spacing:-2.970000px;}
.ws9c{word-spacing:-2.904000px;}
.ws9d{word-spacing:-2.880000px;}
.ws6f{word-spacing:-2.838000px;}
.wsb7{word-spacing:-2.820000px;}
.ws77{word-spacing:-2.772000px;}
.ws78{word-spacing:-2.706000px;}
.ws86{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.604000px;}
.ws2c{word-spacing:-2.574000px;}
.ws7{word-spacing:-2.508000px;}
.ws7a{word-spacing:-2.442000px;}
.ws9f{word-spacing:-2.400000px;}
.ws98{word-spacing:-2.376000px;}
.ws30{word-spacing:-2.310000px;}
.ws4d{word-spacing:-2.244000px;}
.ws70{word-spacing:-2.178000px;}
.ws61{word-spacing:-2.112000px;}
.ws3{word-spacing:-2.088000px;}
.wsdc{word-spacing:-2.046000px;}
.ws56{word-spacing:-1.980000px;}
.ws9e{word-spacing:-1.920000px;}
.ws16{word-spacing:-1.914000px;}
.ws5a{word-spacing:-1.848000px;}
.ws36{word-spacing:-1.782000px;}
.ws3c{word-spacing:-1.716000px;}
.ws37{word-spacing:-1.650000px;}
.ws2f{word-spacing:-1.584000px;}
.ws1d{word-spacing:-1.518000px;}
.ws4f{word-spacing:-1.452000px;}
.ws97{word-spacing:-1.386000px;}
.wsa2{word-spacing:-1.320000px;}
.wsd2{word-spacing:-1.296000px;}
.ws1c{word-spacing:-1.254000px;}
.ws5{word-spacing:-1.188000px;}
.ws49{word-spacing:-1.122000px;}
.ws57{word-spacing:-1.056000px;}
.ws9{word-spacing:-0.990000px;}
.ws23{word-spacing:-0.924000px;}
.wsa0{word-spacing:-0.900000px;}
.ws39{word-spacing:-0.858000px;}
.ws5f{word-spacing:-0.792000px;}
.wsad{word-spacing:-0.726000px;}
.ws46{word-spacing:-0.660000px;}
.ws42{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.540000px;}
.wsa{word-spacing:-0.528000px;}
.ws22{word-spacing:-0.495000px;}
.ws13{word-spacing:-0.486000px;}
.ws52{word-spacing:-0.462000px;}
.ws3e{word-spacing:-0.396000px;}
.ws19{word-spacing:-0.330000px;}
.ws1b{word-spacing:-0.270000px;}
.ws27{word-spacing:-0.264000px;}
.ws8a{word-spacing:-0.198000px;}
.ws75{word-spacing:-0.132000px;}
.ws88{word-spacing:-0.120000px;}
.ws8f{word-spacing:-0.066000px;}
.wsbd{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048600px;}
.ws93{word-spacing:-0.018967px;}
.ws1{word-spacing:0.000000px;}
.ws94{word-spacing:0.020047px;}
.ws3b{word-spacing:0.066000px;}
.ws8{word-spacing:0.132000px;}
.wsac{word-spacing:0.151200px;}
.ws6{word-spacing:0.198000px;}
.ws1e{word-spacing:0.264000px;}
.ws12{word-spacing:0.302400px;}
.ws4c{word-spacing:0.330000px;}
.ws2{word-spacing:0.360000px;}
.ws9a{word-spacing:0.378000px;}
.ws17{word-spacing:0.396000px;}
.wsa1{word-spacing:0.453600px;}
.ws33{word-spacing:0.462000px;}
.ws32{word-spacing:0.528000px;}
.ws64{word-spacing:0.529200px;}
.ws2b{word-spacing:0.594000px;}
.wsbc{word-spacing:0.660000px;}
.ws5d{word-spacing:0.726000px;}
.ws1f{word-spacing:0.792000px;}
.ws15{word-spacing:0.858000px;}
.ws1a{word-spacing:0.924000px;}
.ws6e{word-spacing:0.990000px;}
.ws3a{word-spacing:1.056000px;}
.ws2e{word-spacing:1.122000px;}
.wsd3{word-spacing:1.134000px;}
.ws79{word-spacing:1.188000px;}
.wsb2{word-spacing:1.254000px;}
.ws84{word-spacing:1.320000px;}
.ws44{word-spacing:1.386000px;}
.ws51{word-spacing:1.452000px;}
.wsb4{word-spacing:1.518000px;}
.ws71{word-spacing:1.584000px;}
.ws3f{word-spacing:1.650000px;}
.ws26{word-spacing:1.716000px;}
.ws66{word-spacing:1.782000px;}
.ws8e{word-spacing:1.848000px;}
.wsb5{word-spacing:1.914000px;}
.ws5c{word-spacing:1.980000px;}
.ws3d{word-spacing:2.046000px;}
.wsb9{word-spacing:2.112000px;}
.ws76{word-spacing:2.244000px;}
.ws55{word-spacing:2.310000px;}
.wsd1{word-spacing:2.322000px;}
.wsa5{word-spacing:2.340000px;}
.ws83{word-spacing:2.376000px;}
.ws59{word-spacing:2.442000px;}
.ws60{word-spacing:2.508000px;}
.wse{word-spacing:2.520000px;}
.ws90{word-spacing:2.574000px;}
.ws62{word-spacing:2.640000px;}
.wsa7{word-spacing:2.700000px;}
.ws5b{word-spacing:2.706000px;}
.ws2d{word-spacing:2.772000px;}
.ws58{word-spacing:2.838000px;}
.ws7f{word-spacing:2.970000px;}
.ws54{word-spacing:3.036000px;}
.wsc8{word-spacing:3.102000px;}
.ws73{word-spacing:3.120000px;}
.ws41{word-spacing:3.168000px;}
.ws25{word-spacing:3.234000px;}
.ws65{word-spacing:3.300000px;}
.wsaa{word-spacing:3.498000px;}
.wscb{word-spacing:3.630000px;}
.ws50{word-spacing:3.696000px;}
.ws4e{word-spacing:3.762000px;}
.ws24{word-spacing:3.828000px;}
.ws8c{word-spacing:3.894000px;}
.ws5e{word-spacing:3.960000px;}
.ws48{word-spacing:4.026000px;}
.ws8d{word-spacing:4.092000px;}
.wsb1{word-spacing:4.158000px;}
.ws9b{word-spacing:4.224000px;}
.ws85{word-spacing:4.290000px;}
.wsd{word-spacing:4.326000px;}
.wsd8{word-spacing:4.356000px;}
.ws40{word-spacing:4.422000px;}
.ws53{word-spacing:4.488000px;}
.wsb3{word-spacing:4.554000px;}
.ws80{word-spacing:4.620000px;}
.wsc1{word-spacing:4.686000px;}
.wsa9{word-spacing:4.752000px;}
.wsdf{word-spacing:4.818000px;}
.wsc4{word-spacing:4.950000px;}
.wsbb{word-spacing:5.016000px;}
.wsc9{word-spacing:5.148000px;}
.wsd6{word-spacing:5.214000px;}
.wsc3{word-spacing:5.346000px;}
.wsc{word-spacing:5.544000px;}
.wsb8{word-spacing:5.610000px;}
.ws43{word-spacing:5.676000px;}
.wsa6{word-spacing:5.700000px;}
.wsc2{word-spacing:5.742000px;}
.wsca{word-spacing:5.808000px;}
.ws8b{word-spacing:5.940000px;}
.ws29{word-spacing:6.006000px;}
.wsdd{word-spacing:6.072000px;}
.ws2a{word-spacing:6.270000px;}
.ws45{word-spacing:6.336000px;}
.ws28{word-spacing:6.666000px;}
.ws7b{word-spacing:6.780000px;}
.ws87{word-spacing:9.000000px;}
.ws7e{word-spacing:9.570000px;}
._b{margin-left:-11.969400px;}
._d{margin-left:-10.213920px;}
._10{margin-left:-8.778000px;}
._9{margin-left:-7.742760px;}
._6{margin-left:-6.592320px;}
._8{margin-left:-5.490600px;}
._4{margin-left:-4.452000px;}
._0{margin-left:-2.692440px;}
._2{margin-left:-1.274400px;}
._1{width:1.117800px;}
._3{width:2.588400px;}
._5{width:4.326000px;}
._a{width:5.938800px;}
._c{width:6.985200px;}
._e{width:8.186400px;}
._f{width:10.441200px;}
._11{width:36.935880px;}
._7{width:46.596000px;}
.fc2{color:rgb(146,146,146);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(100,99,99);}
.fsb{font-size:15.966000px;}
.fs9{font-size:18.967200px;}
.fsa{font-size:20.047200px;}
.fs8{font-size:24.009000px;}
.fsd{font-size:31.320000px;}
.fsc{font-size:38.280000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs0{font-size:48.600000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y29{bottom:70.883850px;}
.y23b{bottom:97.263450px;}
.y11{bottom:99.911700px;}
.y2a0{bottom:99.927450px;}
.y95{bottom:102.299250px;}
.y288{bottom:102.608250px;}
.y137{bottom:103.225800px;}
.y225{bottom:103.569000px;}
.y11e{bottom:103.600350px;}
.y1a3{bottom:105.544350px;}
.y1b4{bottom:105.545850px;}
.y123{bottom:105.767700px;}
.y2fc{bottom:106.455150px;}
.y2bc{bottom:106.540800px;}
.y5a{bottom:106.542300px;}
.y27{bottom:106.543800px;}
.y42{bottom:106.545300px;}
.ya4{bottom:106.546800px;}
.y25b{bottom:106.549950px;}
.y24f{bottom:107.852250px;}
.y188{bottom:109.505550px;}
.y10{bottom:111.913200px;}
.y206{bottom:114.023400px;}
.y197{bottom:114.556350px;}
.y29f{bottom:114.925950px;}
.y23a{bottom:115.263450px;}
.y1d1{bottom:116.345850px;}
.y153{bottom:117.017400px;}
.y287{bottom:120.609750px;}
.y136{bottom:121.225800px;}
.y224{bottom:121.570500px;}
.y11d{bottom:121.601850px;}
.y1a2{bottom:123.545850px;}
.y1b3{bottom:123.547350px;}
.y122{bottom:123.769200px;}
.yf{bottom:123.914700px;}
.y2fb{bottom:124.456650px;}
.y2bb{bottom:124.542300px;}
.y59{bottom:124.543800px;}
.y26{bottom:124.545300px;}
.y41{bottom:124.546800px;}
.ya3{bottom:124.548300px;}
.y24e{bottom:125.853750px;}
.y94{bottom:129.793950px;}
.y29e{bottom:129.924450px;}
.y205{bottom:132.024900px;}
.y196{bottom:132.556350px;}
.y25a{bottom:134.044500px;}
.y1d0{bottom:134.347350px;}
.ye{bottom:135.916200px;}
.y223{bottom:139.572000px;}
.y1a1{bottom:141.547350px;}
.y1b2{bottom:141.548850px;}
.y1eb{bottom:141.554850px;}
.y2ba{bottom:142.543800px;}
.y58{bottom:142.545300px;}
.y25{bottom:142.546800px;}
.y40{bottom:142.548300px;}
.ya2{bottom:142.549800px;}
.y152{bottom:144.511950px;}
.y29d{bottom:144.922950px;}
.yd{bottom:147.917700px;}
.y286{bottom:148.104300px;}
.y11c{bottom:149.096400px;}
.y204{bottom:150.026400px;}
.y195{bottom:150.556350px;}
.y121{bottom:151.263750px;}
.y2fa{bottom:151.951200px;}
.y1cf{bottom:152.348850px;}
.y187{bottom:153.014400px;}
.y24d{bottom:153.348450px;}
.y1a0{bottom:159.548850px;}
.y1b1{bottom:159.550350px;}
.ye7{bottom:159.554850px;}
.y1ea{bottom:159.556350px;}
.y2b9{bottom:160.545300px;}
.y57{bottom:160.546800px;}
.y24{bottom:160.548300px;}
.y3f{bottom:160.549800px;}
.y156{bottom:161.742000px;}
.yc{bottom:164.171700px;}
.y29c{bottom:164.376450px;}
.y222{bottom:167.066700px;}
.y203{bottom:168.027900px;}
.y194{bottom:168.556350px;}
.ya1{bottom:170.044500px;}
.y1ce{bottom:170.350350px;}
.y186{bottom:171.015900px;}
.y93{bottom:173.296800px;}
.yb{bottom:176.173200px;}
.y19f{bottom:177.550350px;}
.y1b0{bottom:177.551850px;}
.ye6{bottom:177.556350px;}
.y2b8{bottom:178.546800px;}
.y56{bottom:178.548300px;}
.y23{bottom:178.549800px;}
.y202{bottom:186.029400px;}
.y193{bottom:186.556350px;}
.y1e9{bottom:187.051050px;}
.y151{bottom:188.019300px;}
.y3e{bottom:188.044500px;}
.y1cd{bottom:188.351850px;}
.y185{bottom:189.017400px;}
.y92{bottom:191.298300px;}
.y285{bottom:191.616150px;}
.y11b{bottom:192.605250px;}
.y120{bottom:194.775600px;}
.y2f9{bottom:195.445050px;}
.y19e{bottom:195.551850px;}
.y1af{bottom:195.553350px;}
.ybe{bottom:196.450650px;}
.y2e3{bottom:196.455150px;}
.y2b7{bottom:196.548300px;}
.y55{bottom:196.549800px;}
.y24c{bottom:196.857300px;}
.y104{bottom:204.015750px;}
.y201{bottom:204.030900px;}
.ye5{bottom:205.051050px;}
.y150{bottom:206.020800px;}
.y22{bottom:206.044500px;}
.y1cc{bottom:206.353350px;}
.y91{bottom:209.299800px;}
.y221{bottom:210.578550px;}
.y11a{bottom:210.606750px;}
.y11f{bottom:212.775600px;}
.y2f8{bottom:213.446550px;}
.y29b{bottom:213.460050px;}
.y192{bottom:213.550350px;}
.y19d{bottom:213.553350px;}
.y1ae{bottom:213.554850px;}
.ya0{bottom:213.556350px;}
.ybd{bottom:214.452150px;}
.y2e2{bottom:214.456650px;}
.y2b6{bottom:214.549800px;}
.y24b{bottom:214.858800px;}
.y184{bottom:216.511950px;}
.y284{bottom:219.110850px;}
.y103{bottom:222.017250px;}
.y200{bottom:222.032400px;}
.y14f{bottom:224.022300px;}
.y54{bottom:224.044500px;}
.y1cb{bottom:224.354850px;}
.y90{bottom:227.301300px;}
.y119{bottom:228.608250px;}
.y1e8{bottom:230.561250px;}
.y2f7{bottom:231.448050px;}
.y29a{bottom:231.461550px;}
.y191{bottom:231.551850px;}
.y3d{bottom:231.554850px;}
.y1ad{bottom:231.556350px;}
.ybc{bottom:232.453650px;}
.y2b3{bottom:232.455150px;}
.y24a{bottom:232.860300px;}
.y220{bottom:238.073250px;}
.y102{bottom:240.018750px;}
.y1ff{bottom:240.033900px;}
.y9f{bottom:241.051050px;}
.y2e1{bottom:241.951200px;}
.y14e{bottom:242.023800px;}
.y2b5{bottom:242.044500px;}
.y1ca{bottom:242.356350px;}
.y8f{bottom:245.302800px;}
.ye4{bottom:248.562750px;}
.y299{bottom:249.463050px;}
.y7c{bottom:249.551850px;}
.y190{bottom:249.553350px;}
.yc9{bottom:249.554850px;}
.y21{bottom:249.556350px;}
.y2d6{bottom:250.446150px;}
.ybb{bottom:250.455150px;}
.y2b2{bottom:250.456650px;}
.y172{bottom:254.996700px;}
.y118{bottom:256.102950px;}
.y101{bottom:258.020250px;}
.y1fe{bottom:258.035400px;}
.y1ac{bottom:259.051050px;}
.y183{bottom:260.005800px;}
.y171{bottom:260.188650px;}
.y249{bottom:260.354850px;}
.y283{bottom:262.622700px;}
.y8e{bottom:263.304300px;}
.y170{bottom:265.980750px;}
.y2f6{bottom:267.451050px;}
.y7b{bottom:267.553350px;}
.y18f{bottom:267.554850px;}
.y53{bottom:267.556350px;}
.y2d5{bottom:268.447650px;}
.y72{bottom:268.452150px;}
.yba{bottom:268.456650px;}
.y14d{bottom:269.518500px;}
.y1c9{bottom:269.850900px;}
.y16f{bottom:271.142700px;}
.y100{bottom:276.021750px;}
.ye3{bottom:276.057450px;}
.y298{bottom:276.957750px;}
.y20{bottom:277.051050px;}
.y16e{bottom:277.144950px;}
.y2b1{bottom:277.951200px;}
.y182{bottom:278.007300px;}
.y8d{bottom:281.305800px;}
.y21f{bottom:281.581950px;}
.y16d{bottom:282.997050px;}
.y9e{bottom:284.561250px;}
.y1fd{bottom:285.036750px;}
.y2f5{bottom:285.452550px;}
.y2e0{bottom:285.463050px;}
.y7a{bottom:285.554850px;}
.y18e{bottom:285.556350px;}
.y2d4{bottom:286.449150px;}
.y71{bottom:286.453650px;}
.y16c{bottom:288.189000px;}
.y282{bottom:290.117250px;}
.y16b{bottom:293.771100px;}
.yff{bottom:294.023250px;}
.y52{bottom:295.051050px;}
.yb9{bottom:295.951200px;}
.y181{bottom:296.008800px;}
.y16a{bottom:298.002600px;}
.y21e{bottom:299.583450px;}
.y117{bottom:299.613300px;}
.y1ab{bottom:302.561250px;}
.y9d{bottom:302.562750px;}
.y1fc{bottom:303.036750px;}
.y169{bottom:303.194550px;}
.y2f4{bottom:303.454050px;}
.y79{bottom:303.556350px;}
.y248{bottom:303.865200px;}
.y2d3{bottom:304.450650px;}
.y70{bottom:304.455150px;}
.y168{bottom:308.776650px;}
.y8c{bottom:308.800350px;}
.yfe{bottom:312.024750px;}
.y2df{bottom:312.957750px;}
.y167{bottom:313.008150px;}
.y14c{bottom:313.009350px;}
.y18d{bottom:313.051050px;}
.y1c8{bottom:313.362750px;}
.y180{bottom:314.010300px;}
.y21d{bottom:317.584950px;}
.y116{bottom:317.614800px;}
.y166{bottom:318.200100px;}
.ye2{bottom:319.566150px;}
.y1e7{bottom:319.569150px;}
.y297{bottom:320.449950px;}
.y3c{bottom:320.559750px;}
.y1f{bottom:320.561250px;}
.y19c{bottom:320.562750px;}
.y1fb{bottom:321.036750px;}
.y2b0{bottom:321.443550px;}
.y239{bottom:321.444900px;}
.y2f3{bottom:321.455550px;}
.y247{bottom:321.866700px;}
.y2d2{bottom:322.452150px;}
.y6f{bottom:322.456650px;}
.y165{bottom:323.782200px;}
.y164{bottom:328.013700px;}
.y9c{bottom:330.057450px;}
.y14b{bottom:331.010850px;}
.y78{bottom:331.051050px;}
.y17f{bottom:332.011800px;}
.y163{bottom:333.205650px;}
.y281{bottom:333.623100px;}
.ye1{bottom:337.567650px;}
.y296{bottom:338.451450px;}
.y2fd{bottom:338.559750px;}
.y3b{bottom:338.561250px;}
.y1e{bottom:338.562750px;}
.y162{bottom:338.787750px;}
.y1fa{bottom:339.036750px;}
.y2af{bottom:339.445050px;}
.y238{bottom:339.446400px;}
.y2f2{bottom:339.457050px;}
.yb8{bottom:339.463050px;}
.y2d1{bottom:340.453650px;}
.y1c7{bottom:340.857450px;}
.y161{bottom:343.019250px;}
.y21c{bottom:345.079650px;}
.y115{bottom:345.109350px;}
.y1e6{bottom:347.063850px;}
.yfd{bottom:348.027750px;}
.y19b{bottom:348.057450px;}
.y160{bottom:348.210911px;}
.y14a{bottom:349.012350px;}
.y246{bottom:349.361400px;}
.y6e{bottom:349.951200px;}
.y17e{bottom:350.013300px;}
.y280{bottom:351.624600px;}
.y8b{bottom:352.312200px;}
.y15f{bottom:354.213161px;}
.ye0{bottom:355.569150px;}
.y295{bottom:356.452950px;}
.y2de{bottom:356.463450px;}
.y2b4{bottom:356.561250px;}
.y3a{bottom:356.562750px;}
.y2ae{bottom:357.446550px;}
.y237{bottom:357.447900px;}
.y2f1{bottom:357.458550px;}
.y4d{bottom:358.449150px;}
.y2d0{bottom:358.455150px;}
.y15e{bottom:360.185400px;}
.y1f9{bottom:366.024750px;}
.yfc{bottom:366.029250px;}
.y1d{bottom:366.057450px;}
.y15d{bottom:366.187650px;}
.yb7{bottom:366.957750px;}
.y149{bottom:367.013850px;}
.y17d{bottom:368.014800px;}
.y27f{bottom:369.626100px;}
.y15c{bottom:372.189900px;}
.y9b{bottom:373.569150px;}
.y294{bottom:374.454450px;}
.y2dd{bottom:374.464950px;}
.y77{bottom:374.561250px;}
.y2a2{bottom:374.562750px;}
.y2ad{bottom:375.448050px;}
.y2f0{bottom:375.460050px;}
.y4c{bottom:376.450650px;}
.y259{bottom:376.456650px;}
.y15b{bottom:378.192150px;}
.y8a{bottom:379.806900px;}
.y135{bottom:381.813750px;}
.ydf{bottom:383.063850px;}
.y1f8{bottom:384.026250px;}
.yfb{bottom:384.030750px;}
.y39{bottom:384.057450px;}
.y15a{bottom:384.194400px;}
.y1c6{bottom:384.369300px;}
.y148{bottom:385.015350px;}
.y2cb{bottom:385.027350px;}
.y17c{bottom:386.016300px;}
.y27e{bottom:387.627600px;}
.y236{bottom:388.203900px;}
.y21b{bottom:388.575000px;}
.y114{bottom:388.619700px;}
.y159{bottom:390.196650px;}
.y1e5{bottom:390.562200px;}
.y19a{bottom:391.569150px;}
.y2dc{bottom:392.466450px;}
.y76{bottom:392.562750px;}
.y245{bottom:392.873100px;}
.y2ac{bottom:393.449550px;}
.y6d{bottom:393.460050px;}
.y2ef{bottom:393.461550px;}
.y4b{bottom:394.452150px;}
.y158{bottom:396.198900px;}
.y134{bottom:399.813750px;}
.y9a{bottom:401.063850px;}
.y1f7{bottom:402.027750px;}
.yfa{bottom:402.032250px;}
.y2a1{bottom:402.057450px;}
.y147{bottom:403.016850px;}
.y1e2{bottom:403.022850px;}
.y2ca{bottom:403.028850px;}
.y258{bottom:403.951200px;}
.y17b{bottom:404.017800px;}
.y27d{bottom:405.629100px;}
.y235{bottom:406.205400px;}
.y21a{bottom:406.576500px;}
.y113{bottom:406.621200px;}
.y1e4{bottom:408.563700px;}
.y1c{bottom:409.566150px;}
.y2cc{bottom:409.567650px;}
.y51{bottom:409.569150px;}
.y293{bottom:410.457450px;}
.yb6{bottom:410.467950px;}
.y2ab{bottom:411.451050px;}
.y273{bottom:411.460050px;}
.y6c{bottom:411.461550px;}
.y2ee{bottom:411.463050px;}
.y1c5{bottom:411.863850px;}
.y30c{bottom:412.452150px;}
.y4a{bottom:412.453650px;}
.y157{bottom:415.633950px;}
.y199{bottom:419.063850px;}
.y1f6{bottom:420.029250px;}
.y75{bottom:420.057450px;}
.y244{bottom:420.367800px;}
.y146{bottom:421.018350px;}
.y1e1{bottom:421.024350px;}
.y2c9{bottom:421.030350px;}
.y17a{bottom:422.019300px;}
.y89{bottom:423.318750px;}
.y234{bottom:424.206900px;}
.y219{bottom:424.578000px;}
.y1e3{bottom:426.565200px;}
.yde{bottom:426.568200px;}
.y1b{bottom:427.567650px;}
.yc5{bottom:427.569150px;}
.y292{bottom:428.458950px;}
.yb5{bottom:428.469450px;}
.y2aa{bottom:429.452550px;}
.y272{bottom:429.461550px;}
.y6b{bottom:429.463050px;}
.y30b{bottom:430.453650px;}
.y49{bottom:430.455150px;}
.y27c{bottom:433.123650px;}
.y112{bottom:434.115900px;}
.y50{bottom:437.063850px;}
.y1f5{bottom:438.030750px;}
.yf9{bottom:438.035250px;}
.y2ed{bottom:438.957750px;}
.y145{bottom:439.019850px;}
.y1e0{bottom:439.025850px;}
.y179{bottom:440.020800px;}
.y218{bottom:442.579500px;}
.y99{bottom:444.566700px;}
.ydd{bottom:444.569700px;}
.y1a{bottom:445.569150px;}
.y291{bottom:446.460450px;}
.y2a9{bottom:447.454050px;}
.y257{bottom:447.457050px;}
.yd6{bottom:447.460050px;}
.y271{bottom:447.463050px;}
.y1aa{bottom:448.030350px;}
.y30a{bottom:448.455150px;}
.y48{bottom:448.456650px;}
.y2c8{bottom:448.524900px;}
.y88{bottom:450.813300px;}
.y233{bottom:454.962900px;}
.yc4{bottom:455.063850px;}
.y1c4{bottom:455.371200px;}
.yb4{bottom:455.964150px;}
.y1f4{bottom:456.032250px;}
.yf8{bottom:456.036750px;}
.y6a{bottom:456.957750px;}
.y144{bottom:457.021350px;}
.y1df{bottom:457.027350px;}
.y178{bottom:458.022300px;}
.y217{bottom:460.581000px;}
.y98{bottom:462.568200px;}
.ydc{bottom:462.571200px;}
.y74{bottom:463.569150px;}
.y243{bottom:463.875150px;}
.y290{bottom:464.461950px;}
.y2a8{bottom:465.455550px;}
.y256{bottom:465.458550px;}
.yd5{bottom:465.461550px;}
.y1a9{bottom:466.030350px;}
.y309{bottom:466.456650px;}
.y232{bottom:472.964400px;}
.y19{bottom:473.063850px;}
.y1c3{bottom:473.372700px;}
.y1f3{bottom:474.033750px;}
.y270{bottom:474.957750px;}
.y143{bottom:475.022850px;}
.y1de{bottom:475.028850px;}
.y47{bottom:475.951200px;}
.y177{bottom:476.023800px;}
.y27b{bottom:476.629500px;}
.y111{bottom:477.623250px;}
.y216{bottom:478.582500px;}
.y4f{bottom:480.569700px;}
.ydb{bottom:480.572700px;}
.y242{bottom:481.876650px;}
.y2ec{bottom:482.463450px;}
.y2a7{bottom:483.457050px;}
.y255{bottom:483.460050px;}
.yd4{bottom:483.463050px;}
.yf7{bottom:483.531450px;}
.y1a8{bottom:484.030350px;}
.y231{bottom:490.965900px;}
.y73{bottom:491.063850px;}
.y1c2{bottom:491.374200px;}
.y2c7{bottom:492.032250px;}
.y1f2{bottom:492.035250px;}
.y142{bottom:493.024350px;}
.y1dd{bottom:493.030350px;}
.y308{bottom:493.951200px;}
.y87{bottom:494.325150px;}
.y27a{bottom:494.631000px;}
.y110{bottom:495.624750px;}
.y215{bottom:496.584000px;}
.y4e{bottom:498.571200px;}
.yc3{bottom:498.572700px;}
.yda{bottom:498.574200px;}
.yb3{bottom:499.471500px;}
.y2db{bottom:499.473000px;}
.y241{bottom:499.878150px;}
.y69{bottom:500.460450px;}
.y28f{bottom:500.464950px;}
.y1bc{bottom:500.467950px;}
.y2a6{bottom:501.458550px;}
.y254{bottom:501.461550px;}
.y1a7{bottom:502.030350px;}
.y176{bottom:503.518500px;}
.y230{bottom:508.967400px;}
.y127{bottom:509.043300px;}
.y1c1{bottom:509.375700px;}
.y2c6{bottom:510.033750px;}
.y1f1{bottom:510.036750px;}
.yd3{bottom:510.957750px;}
.y141{bottom:511.025850px;}
.y131{bottom:511.027350px;}
.ya{bottom:511.911750px;}
.y279{bottom:512.632500px;}
.y10f{bottom:513.626250px;}
.y214{bottom:514.585500px;}
.y18{bottom:516.572700px;}
.yc2{bottom:516.574200px;}
.yd9{bottom:516.575700px;}
.yb2{bottom:517.473000px;}
.y2da{bottom:517.474500px;}
.y240{bottom:517.879650px;}
.y26f{bottom:518.454450px;}
.y68{bottom:518.461950px;}
.y28e{bottom:518.466450px;}
.y2cf{bottom:518.467950px;}
.y1bb{bottom:518.469450px;}
.y46{bottom:519.460050px;}
.y253{bottom:519.463050px;}
.y1a6{bottom:520.030350px;}
.y1dc{bottom:520.524900px;}
.y86{bottom:521.819850px;}
.y108{bottom:525.496800px;}
.y22f{bottom:526.968900px;}
.yf6{bottom:527.041650px;}
.y2c5{bottom:528.035250px;}
.y140{bottom:529.027350px;}
.y130{bottom:529.028850px;}
.y9{bottom:529.913250px;}
.y278{bottom:530.634000px;}
.y10e{bottom:531.627750px;}
.y213{bottom:532.587000px;}
.y17{bottom:534.574200px;}
.yc1{bottom:534.575700px;}
.yb1{bottom:535.474500px;}
.y2d9{bottom:535.476000px;}
.y26e{bottom:536.455950px;}
.y67{bottom:536.463450px;}
.y28d{bottom:536.467950px;}
.y2ce{bottom:536.469450px;}
.y126{bottom:536.537850px;}
.y1c0{bottom:536.870400px;}
.y307{bottom:537.458550px;}
.y45{bottom:537.461550px;}
.y38{bottom:537.463050px;}
.y1f0{bottom:537.531300px;}
.y1a5{bottom:538.030350px;}
.yd8{bottom:544.070400px;}
.y22e{bottom:544.970400px;}
.yf5{bottom:545.043150px;}
.y23f{bottom:545.374350px;}
.y1ba{bottom:545.964150px;}
.y2c4{bottom:546.036750px;}
.y252{bottom:546.957750px;}
.y13f{bottom:547.028850px;}
.y12f{bottom:547.030350px;}
.y8{bottom:547.914750px;}
.y277{bottom:548.635500px;}
.y212{bottom:550.588500px;}
.y16{bottom:552.575700px;}
.y107{bottom:552.991350px;}
.yb0{bottom:553.476000px;}
.y26d{bottom:554.457450px;}
.y66{bottom:554.464950px;}
.yd2{bottom:554.466450px;}
.y28c{bottom:554.469450px;}
.y306{bottom:555.460050px;}
.y44{bottom:555.463050px;}
.y10d{bottom:559.122300px;}
.yc0{bottom:562.070400px;}
.y2d8{bottom:562.970550px;}
.y22d{bottom:562.971900px;}
.y2cd{bottom:563.964150px;}
.y1db{bottom:564.024750px;}
.y37{bottom:564.957750px;}
.y13e{bottom:565.030350px;}
.y85{bottom:565.331550px;}
.y7{bottom:565.916250px;}
.y211{bottom:568.590000px;}
.y18c{bottom:571.473000px;}
.y26c{bottom:572.458950px;}
.y65{bottom:572.466450px;}
.yd1{bottom:572.467950px;}
.yf4{bottom:572.537850px;}
.y305{bottom:573.461550px;}
.y2c3{bottom:573.531300px;}
.y12e{bottom:574.524900px;}
.y276{bottom:576.130200px;}
.y3{bottom:578.914350px;}
.y125{bottom:580.025700px;}
.y15{bottom:580.070400px;}
.y1bf{bottom:580.380600px;}
.yaf{bottom:580.970550px;}
.y22c{bottom:580.973400px;}
.y1ef{bottom:581.040150px;}
.y28b{bottom:581.964150px;}
.y1da{bottom:582.026250px;}
.y43{bottom:582.957750px;}
.y6{bottom:583.917750px;}
.y210{bottom:586.591500px;}
.yd7{bottom:587.579100px;}
.y23e{bottom:588.884550px;}
.y1b9{bottom:589.471500px;}
.y18b{bottom:589.474500px;}
.y26b{bottom:590.460450px;}
.y64{bottom:590.467950px;}
.yd0{bottom:590.469450px;}
.y304{bottom:591.463050px;}
.y13d{bottom:592.524900px;}
.y84{bottom:592.826250px;}
.y2{bottom:596.914350px;}
.y124{bottom:598.027200px;}
.y1be{bottom:598.382100px;}
.y1ee{bottom:599.041650px;}
.y1d9{bottom:600.027750px;}
.y5{bottom:601.919250px;}
.y10c{bottom:602.634150px;}
.ybf{bottom:605.580600px;}
.y2d7{bottom:606.458400px;}
.y23d{bottom:606.886050px;}
.y1b8{bottom:607.473000px;}
.y18a{bottom:607.476000px;}
.y26a{bottom:608.461950px;}
.y36{bottom:608.466450px;}
.y22b{bottom:608.468100px;}
.y63{bottom:608.469450px;}
.y20f{bottom:614.086050px;}
.y106{bottom:616.003200px;}
.yf3{bottom:616.028700px;}
.y2c2{bottom:617.032650px;}
.y1ed{bottom:617.043150px;}
.ycf{bottom:617.964150px;}
.y1d8{bottom:618.029250px;}
.y12d{bottom:618.030750px;}
.y1a4{bottom:618.033750px;}
.y303{bottom:618.957750px;}
.y275{bottom:619.642050px;}
.y14{bottom:623.582100px;}
.yae{bottom:624.459900px;}
.y2eb{bottom:625.460850px;}
.y28a{bottom:625.473000px;}
.y1b7{bottom:625.474500px;}
.y155{bottom:625.476000px;}
.y1bd{bottom:625.876800px;}
.y269{bottom:626.463450px;}
.y35{bottom:626.467950px;}
.y263{bottom:627.460050px;}
.y10b{bottom:630.128700px;}
.y105{bottom:634.003200px;}
.yf2{bottom:634.030200px;}
.y23c{bottom:634.380750px;}
.y189{bottom:634.970550px;}
.y2c1{bottom:635.034150px;}
.y62{bottom:635.964150px;}
.y1d7{bottom:636.030750px;}
.y12c{bottom:636.032250px;}
.y13c{bottom:636.035250px;}
.y83{bottom:636.338100px;}
.y133{bottom:640.901850px;}
.yad{bottom:642.461400px;}
.y2ea{bottom:643.462350px;}
.y289{bottom:643.474500px;}
.y1b6{bottom:643.476000px;}
.y2a5{bottom:644.464950px;}
.y34{bottom:644.469450px;}
.y1ec{bottom:644.537850px;}
.y1{bottom:644.678100px;}
.y262{bottom:645.461550px;}
.y274{bottom:647.136600px;}
.y22a{bottom:647.723400px;}
.y13{bottom:651.076800px;}
.yf1{bottom:652.031700px;}
.y154{bottom:652.970550px;}
.y2c0{bottom:653.035650px;}
.y1d6{bottom:654.032250px;}
.y12b{bottom:654.033750px;}
.y13b{bottom:654.036750px;}
.y20e{bottom:657.597900px;}
.yac{bottom:660.462900px;}
.y2e9{bottom:661.463850px;}
.yce{bottom:661.471500px;}
.y251{bottom:661.476000px;}
.y268{bottom:662.466450px;}
.y302{bottom:662.469450px;}
.y261{bottom:663.463050px;}
.y82{bottom:663.832650px;}
.y229{bottom:665.724900px;}
.y132{bottom:668.396550px;}
.yf0{bottom:670.033200px;}
.y1b5{bottom:670.970550px;}
.y2bf{bottom:671.037150px;}
.y33{bottom:671.964150px;}
.y1d5{bottom:672.033750px;}
.y12a{bottom:672.035250px;}
.yab{bottom:678.464400px;}
.y2e8{bottom:679.465350px;}
.y61{bottom:679.471500px;}
.ycd{bottom:679.473000px;}
.y20c{bottom:680.466450px;}
.y267{bottom:680.467950px;}
.y13a{bottom:681.531300px;}
.y228{bottom:683.726400px;}
.y20d{bottom:685.092600px;}
.yef{bottom:688.034700px;}
.y250{bottom:688.970550px;}
.y2be{bottom:689.038650px;}
.y301{bottom:689.964150px;}
.y1d4{bottom:690.035250px;}
.y129{bottom:690.036750px;}
.y260{bottom:690.957750px;}
.yaa{bottom:696.465900px;}
.y2e7{bottom:697.466850px;}
.y60{bottom:697.473000px;}
.ycc{bottom:697.474500px;}
.y20b{bottom:698.467950px;}
.y266{bottom:698.469450px;}
.y227{bottom:701.727900px;}
.yee{bottom:706.036200px;}
.y2bd{bottom:707.040150px;}
.y1d3{bottom:708.036750px;}
.ya9{bottom:714.467400px;}
.y2e6{bottom:715.468350px;}
.y32{bottom:715.471350px;}
.y5f{bottom:715.474500px;}
.ycb{bottom:715.476000px;}
.y20a{bottom:716.469450px;}
.y128{bottom:717.531300px;}
.yed{bottom:724.037700px;}
.y139{bottom:725.040150px;}
.y175{bottom:725.041650px;}
.y265{bottom:725.964150px;}
.y226{bottom:729.222600px;}
.ya8{bottom:732.468900px;}
.y2e5{bottom:733.469850px;}
.y31{bottom:733.472850px;}
.y300{bottom:733.474500px;}
.y5e{bottom:733.476000px;}
.y25f{bottom:734.469450px;}
.y1d2{bottom:735.531300px;}
.yec{bottom:742.039200px;}
.yca{bottom:742.970550px;}
.y138{bottom:743.041650px;}
.y174{bottom:743.043150px;}
.y209{bottom:743.964150px;}
.ya7{bottom:750.470400px;}
.y2e4{bottom:751.471350px;}
.y30{bottom:751.474350px;}
.y2ff{bottom:751.476000px;}
.yeb{bottom:760.040700px;}
.y5d{bottom:760.970550px;}
.y198{bottom:761.041650px;}
.yc8{bottom:761.043150px;}
.y25e{bottom:761.964150px;}
.ya6{bottom:768.471900px;}
.y2a4{bottom:769.472850px;}
.y264{bottom:769.474350px;}
.y2f{bottom:769.475850px;}
.y173{bottom:770.537850px;}
.yea{bottom:778.042200px;}
.y2fe{bottom:778.970550px;}
.y81{bottom:779.043150px;}
.ya5{bottom:786.473400px;}
.y2a3{bottom:787.474350px;}
.y208{bottom:787.475850px;}
.yc7{bottom:788.537850px;}
.ye9{bottom:796.043700px;}
.y2e{bottom:796.970550px;}
.y97{bottom:797.043150px;}
.y5c{bottom:804.474900px;}
.y25d{bottom:805.475850px;}
.y80{bottom:806.537850px;}
.ye8{bottom:814.045200px;}
.y207{bottom:814.970550px;}
.y5b{bottom:822.476400px;}
.y96{bottom:824.537850px;}
.yc6{bottom:832.046700px;}
.y25c{bottom:832.970550px;}
.y10a{bottom:835.215300px;}
.y2d{bottom:840.477900px;}
.y7f{bottom:850.048200px;}
.y2c{bottom:858.479400px;}
.y12{bottom:860.415300px;}
.y109{bottom:864.725550px;}
.y7e{bottom:868.049700px;}
.y2b{bottom:876.480900px;}
.y4{bottom:889.919250px;}
.y2a{bottom:894.482400px;}
.y7d{bottom:895.544250px;}
.y28{bottom:934.435800px;}
.h12{height:9.308178px;}
.h11{height:13.371482px;}
.hf{height:13.997247px;}
.h10{height:13.998402px;}
.hd{height:16.002092px;}
.he{height:16.014003px;}
.h17{height:25.164000px;}
.h6{height:30.618164px;}
.h8{height:41.176758px;}
.h18{height:42.984000px;}
.h2{height:44.470898px;}
.ha{height:47.760000px;}
.h7{height:49.412109px;}
.h13{height:52.074000px;}
.h5{height:52.536000px;}
.h16{height:52.590000px;}
.h14{height:52.602000px;}
.h15{height:54.226758px;}
.h9{height:54.902344px;}
.hb{height:55.703320px;}
.h3{height:57.312000px;}
.h4{height:69.176953px;}
.hc{height:421.155000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w2{width:297.720000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:85.039350px;}
.x17{left:102.050400px;}
.x2{left:106.299150px;}
.x3{left:127.559100px;}
.x6{left:164.567850px;}
.x7{left:180.667500px;}
.x1{left:221.102400px;}
.x14{left:273.101700px;}
.x9{left:277.903200px;}
.x12{left:282.105000px;}
.xa{left:285.105900px;}
.x10{left:291.108300px;}
.xc{left:295.909950px;}
.xd{left:299.511300px;}
.x11{left:306.564000px;}
.xf{left:319.468781px;}
.xb{left:321.119400px;}
.x13{left:325.170900px;}
.x8{left:328.322100px;}
.x16{left:347.979450px;}
.x15{left:357.132750px;}
.xe{left:375.139650px;}
.x5{left:570.248700px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.408000pt;}
.ls4c{letter-spacing:-7.098667pt;}
.ls2f{letter-spacing:-4.224000pt;}
.ls46{letter-spacing:-3.696000pt;}
.ls55{letter-spacing:-3.461333pt;}
.ls52{letter-spacing:-2.405333pt;}
.ls26{letter-spacing:-2.053333pt;}
.ls1a{letter-spacing:-1.818667pt;}
.ls24{letter-spacing:-1.408000pt;}
.ls45{letter-spacing:-1.056000pt;}
.ls4d{letter-spacing:-0.997333pt;}
.ls54{letter-spacing:-0.938667pt;}
.ls29{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.762667pt;}
.ls3b{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.645333pt;}
.ls43{letter-spacing:-0.586667pt;}
.ls4e{letter-spacing:-0.537600pt;}
.ls47{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls20{letter-spacing:-0.470400pt;}
.ls3a{letter-spacing:-0.469333pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls3f{letter-spacing:-0.403200pt;}
.ls49{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls4{letter-spacing:-0.336000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.268800pt;}
.lsf{letter-spacing:-0.234667pt;}
.ls3c{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.176000pt;}
.ls28{letter-spacing:-0.134400pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls3d{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls42{letter-spacing:-0.053333pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.017820pt;}
.ls1{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000067pt;}
.ls34{letter-spacing:0.016860pt;}
.ls41{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.058667pt;}
.ls35{letter-spacing:0.117333pt;}
.ls37{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.240000pt;}
.ls48{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.293333pt;}
.lsc{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.352000pt;}
.ls2d{letter-spacing:0.410667pt;}
.ls50{letter-spacing:0.428373pt;}
.ls7{letter-spacing:0.432000pt;}
.ls11{letter-spacing:0.440000pt;}
.ls5{letter-spacing:0.469333pt;}
.ls9{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls22{letter-spacing:0.586667pt;}
.ls40{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.645333pt;}
.ls10{letter-spacing:0.704000pt;}
.ls30{letter-spacing:0.762667pt;}
.ls3e{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.821333pt;}
.ls44{letter-spacing:0.880000pt;}
.ls0{letter-spacing:0.907200pt;}
.ls31{letter-spacing:0.938667pt;}
.ls1b{letter-spacing:0.997333pt;}
.ls4b{letter-spacing:1.056000pt;}
.ls2b{letter-spacing:1.114667pt;}
.ls39{letter-spacing:1.232000pt;}
.ls1d{letter-spacing:1.290667pt;}
.ls1c{letter-spacing:1.525333pt;}
.ls4a{letter-spacing:1.642667pt;}
.ls23{letter-spacing:1.701333pt;}
.ls1f{letter-spacing:1.760000pt;}
.ls27{letter-spacing:1.818667pt;}
.ls3{letter-spacing:1.856000pt;}
.ls53{letter-spacing:1.994667pt;}
.ls51{letter-spacing:2.288000pt;}
.ls4f{letter-spacing:3.402667pt;}
.ls2e{letter-spacing:3.578667pt;}
.ls2a{letter-spacing:4.224000pt;}
.wscd{word-spacing:-66.729600pt;}
.ws74{word-spacing:-18.547200pt;}
.wsd7{word-spacing:-18.412800pt;}
.ws4{word-spacing:-18.345600pt;}
.wsc5{word-spacing:-18.144000pt;}
.ws81{word-spacing:-14.725333pt;}
.ws10{word-spacing:-13.680000pt;}
.wsf{word-spacing:-13.344000pt;}
.ws35{word-spacing:-13.296000pt;}
.ws4b{word-spacing:-12.906667pt;}
.ws6a{word-spacing:-12.848000pt;}
.ws91{word-spacing:-12.804800pt;}
.wsbe{word-spacing:-12.789333pt;}
.ws11{word-spacing:-12.576000pt;}
.wsaf{word-spacing:-12.437333pt;}
.ws99{word-spacing:-12.378667pt;}
.ws7c{word-spacing:-12.261333pt;}
.ws89{word-spacing:-12.202667pt;}
.ws7d{word-spacing:-11.968000pt;}
.ws96{word-spacing:-11.909333pt;}
.ws21{word-spacing:-11.850667pt;}
.wsc6{word-spacing:-11.792000pt;}
.ws6d{word-spacing:-11.733333pt;}
.ws6c{word-spacing:-11.616000pt;}
.ws20{word-spacing:-11.557333pt;}
.wsd4{word-spacing:-11.498667pt;}
.ws95{word-spacing:-11.440000pt;}
.ws34{word-spacing:-11.381333pt;}
.ws67{word-spacing:-11.322667pt;}
.wsc7{word-spacing:-11.264000pt;}
.ws47{word-spacing:-11.205333pt;}
.ws6b{word-spacing:-11.146667pt;}
.ws68{word-spacing:-11.029333pt;}
.ws4a{word-spacing:-10.970667pt;}
.wsa3{word-spacing:-10.912000pt;}
.ws69{word-spacing:-10.853333pt;}
.wsdb{word-spacing:-10.794667pt;}
.wsce{word-spacing:-10.736000pt;}
.wsae{word-spacing:-10.618667pt;}
.wse0{word-spacing:-10.501333pt;}
.ws63{word-spacing:-10.384000pt;}
.wsc0{word-spacing:-10.149333pt;}
.ws92{word-spacing:-10.132700pt;}
.wsb0{word-spacing:-10.090667pt;}
.wsab{word-spacing:-9.328000pt;}
.wsd5{word-spacing:-8.741333pt;}
.wsde{word-spacing:-7.685333pt;}
.ws82{word-spacing:-6.922667pt;}
.wscf{word-spacing:-6.336000pt;}
.wsd0{word-spacing:-5.289600pt;}
.wsbf{word-spacing:-4.048000pt;}
.wsd9{word-spacing:-3.696000pt;}
.wsa4{word-spacing:-3.200000pt;}
.ws72{word-spacing:-3.168000pt;}
.wscc{word-spacing:-3.050667pt;}
.wsda{word-spacing:-2.992000pt;}
.wsa8{word-spacing:-2.874667pt;}
.ws38{word-spacing:-2.816000pt;}
.ws18{word-spacing:-2.757333pt;}
.wsba{word-spacing:-2.698667pt;}
.wsb6{word-spacing:-2.666667pt;}
.ws31{word-spacing:-2.640000pt;}
.ws9c{word-spacing:-2.581333pt;}
.ws9d{word-spacing:-2.560000pt;}
.ws6f{word-spacing:-2.522667pt;}
.wsb7{word-spacing:-2.506667pt;}
.ws77{word-spacing:-2.464000pt;}
.ws78{word-spacing:-2.405333pt;}
.ws86{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.314667pt;}
.ws2c{word-spacing:-2.288000pt;}
.ws7{word-spacing:-2.229333pt;}
.ws7a{word-spacing:-2.170667pt;}
.ws9f{word-spacing:-2.133333pt;}
.ws98{word-spacing:-2.112000pt;}
.ws30{word-spacing:-2.053333pt;}
.ws4d{word-spacing:-1.994667pt;}
.ws70{word-spacing:-1.936000pt;}
.ws61{word-spacing:-1.877333pt;}
.ws3{word-spacing:-1.856000pt;}
.wsdc{word-spacing:-1.818667pt;}
.ws56{word-spacing:-1.760000pt;}
.ws9e{word-spacing:-1.706667pt;}
.ws16{word-spacing:-1.701333pt;}
.ws5a{word-spacing:-1.642667pt;}
.ws36{word-spacing:-1.584000pt;}
.ws3c{word-spacing:-1.525333pt;}
.ws37{word-spacing:-1.466667pt;}
.ws2f{word-spacing:-1.408000pt;}
.ws1d{word-spacing:-1.349333pt;}
.ws4f{word-spacing:-1.290667pt;}
.ws97{word-spacing:-1.232000pt;}
.wsa2{word-spacing:-1.173333pt;}
.wsd2{word-spacing:-1.152000pt;}
.ws1c{word-spacing:-1.114667pt;}
.ws5{word-spacing:-1.056000pt;}
.ws49{word-spacing:-0.997333pt;}
.ws57{word-spacing:-0.938667pt;}
.ws9{word-spacing:-0.880000pt;}
.ws23{word-spacing:-0.821333pt;}
.wsa0{word-spacing:-0.800000pt;}
.ws39{word-spacing:-0.762667pt;}
.ws5f{word-spacing:-0.704000pt;}
.wsad{word-spacing:-0.645333pt;}
.ws46{word-spacing:-0.586667pt;}
.ws42{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.480000pt;}
.wsa{word-spacing:-0.469333pt;}
.ws22{word-spacing:-0.440000pt;}
.ws13{word-spacing:-0.432000pt;}
.ws52{word-spacing:-0.410667pt;}
.ws3e{word-spacing:-0.352000pt;}
.ws19{word-spacing:-0.293333pt;}
.ws1b{word-spacing:-0.240000pt;}
.ws27{word-spacing:-0.234667pt;}
.ws8a{word-spacing:-0.176000pt;}
.ws75{word-spacing:-0.117333pt;}
.ws88{word-spacing:-0.106667pt;}
.ws8f{word-spacing:-0.058667pt;}
.wsbd{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.043200pt;}
.ws93{word-spacing:-0.016860pt;}
.ws1{word-spacing:0.000000pt;}
.ws94{word-spacing:0.017820pt;}
.ws3b{word-spacing:0.058667pt;}
.ws8{word-spacing:0.117333pt;}
.wsac{word-spacing:0.134400pt;}
.ws6{word-spacing:0.176000pt;}
.ws1e{word-spacing:0.234667pt;}
.ws12{word-spacing:0.268800pt;}
.ws4c{word-spacing:0.293333pt;}
.ws2{word-spacing:0.320000pt;}
.ws9a{word-spacing:0.336000pt;}
.ws17{word-spacing:0.352000pt;}
.wsa1{word-spacing:0.403200pt;}
.ws33{word-spacing:0.410667pt;}
.ws32{word-spacing:0.469333pt;}
.ws64{word-spacing:0.470400pt;}
.ws2b{word-spacing:0.528000pt;}
.wsbc{word-spacing:0.586667pt;}
.ws5d{word-spacing:0.645333pt;}
.ws1f{word-spacing:0.704000pt;}
.ws15{word-spacing:0.762667pt;}
.ws1a{word-spacing:0.821333pt;}
.ws6e{word-spacing:0.880000pt;}
.ws3a{word-spacing:0.938667pt;}
.ws2e{word-spacing:0.997333pt;}
.wsd3{word-spacing:1.008000pt;}
.ws79{word-spacing:1.056000pt;}
.wsb2{word-spacing:1.114667pt;}
.ws84{word-spacing:1.173333pt;}
.ws44{word-spacing:1.232000pt;}
.ws51{word-spacing:1.290667pt;}
.wsb4{word-spacing:1.349333pt;}
.ws71{word-spacing:1.408000pt;}
.ws3f{word-spacing:1.466667pt;}
.ws26{word-spacing:1.525333pt;}
.ws66{word-spacing:1.584000pt;}
.ws8e{word-spacing:1.642667pt;}
.wsb5{word-spacing:1.701333pt;}
.ws5c{word-spacing:1.760000pt;}
.ws3d{word-spacing:1.818667pt;}
.wsb9{word-spacing:1.877333pt;}
.ws76{word-spacing:1.994667pt;}
.ws55{word-spacing:2.053333pt;}
.wsd1{word-spacing:2.064000pt;}
.wsa5{word-spacing:2.080000pt;}
.ws83{word-spacing:2.112000pt;}
.ws59{word-spacing:2.170667pt;}
.ws60{word-spacing:2.229333pt;}
.wse{word-spacing:2.240000pt;}
.ws90{word-spacing:2.288000pt;}
.ws62{word-spacing:2.346667pt;}
.wsa7{word-spacing:2.400000pt;}
.ws5b{word-spacing:2.405333pt;}
.ws2d{word-spacing:2.464000pt;}
.ws58{word-spacing:2.522667pt;}
.ws7f{word-spacing:2.640000pt;}
.ws54{word-spacing:2.698667pt;}
.wsc8{word-spacing:2.757333pt;}
.ws73{word-spacing:2.773333pt;}
.ws41{word-spacing:2.816000pt;}
.ws25{word-spacing:2.874667pt;}
.ws65{word-spacing:2.933333pt;}
.wsaa{word-spacing:3.109333pt;}
.wscb{word-spacing:3.226667pt;}
.ws50{word-spacing:3.285333pt;}
.ws4e{word-spacing:3.344000pt;}
.ws24{word-spacing:3.402667pt;}
.ws8c{word-spacing:3.461333pt;}
.ws5e{word-spacing:3.520000pt;}
.ws48{word-spacing:3.578667pt;}
.ws8d{word-spacing:3.637333pt;}
.wsb1{word-spacing:3.696000pt;}
.ws9b{word-spacing:3.754667pt;}
.ws85{word-spacing:3.813333pt;}
.wsd{word-spacing:3.845333pt;}
.wsd8{word-spacing:3.872000pt;}
.ws40{word-spacing:3.930667pt;}
.ws53{word-spacing:3.989333pt;}
.wsb3{word-spacing:4.048000pt;}
.ws80{word-spacing:4.106667pt;}
.wsc1{word-spacing:4.165333pt;}
.wsa9{word-spacing:4.224000pt;}
.wsdf{word-spacing:4.282667pt;}
.wsc4{word-spacing:4.400000pt;}
.wsbb{word-spacing:4.458667pt;}
.wsc9{word-spacing:4.576000pt;}
.wsd6{word-spacing:4.634667pt;}
.wsc3{word-spacing:4.752000pt;}
.wsc{word-spacing:4.928000pt;}
.wsb8{word-spacing:4.986667pt;}
.ws43{word-spacing:5.045333pt;}
.wsa6{word-spacing:5.066667pt;}
.wsc2{word-spacing:5.104000pt;}
.wsca{word-spacing:5.162667pt;}
.ws8b{word-spacing:5.280000pt;}
.ws29{word-spacing:5.338667pt;}
.wsdd{word-spacing:5.397333pt;}
.ws2a{word-spacing:5.573333pt;}
.ws45{word-spacing:5.632000pt;}
.ws28{word-spacing:5.925333pt;}
.ws7b{word-spacing:6.026667pt;}
.ws87{word-spacing:8.000000pt;}
.ws7e{word-spacing:8.506667pt;}
._b{margin-left:-10.639467pt;}
._d{margin-left:-9.079040pt;}
._10{margin-left:-7.802667pt;}
._9{margin-left:-6.882453pt;}
._6{margin-left:-5.859840pt;}
._8{margin-left:-4.880533pt;}
._4{margin-left:-3.957333pt;}
._0{margin-left:-2.393280pt;}
._2{margin-left:-1.132800pt;}
._1{width:0.993600pt;}
._3{width:2.300800pt;}
._5{width:3.845333pt;}
._a{width:5.278933pt;}
._c{width:6.209067pt;}
._e{width:7.276800pt;}
._f{width:9.281067pt;}
._11{width:32.831893pt;}
._7{width:41.418667pt;}
.fsb{font-size:14.192000pt;}
.fs9{font-size:16.859733pt;}
.fsa{font-size:17.819733pt;}
.fs8{font-size:21.341333pt;}
.fsd{font-size:27.840000pt;}
.fsc{font-size:34.026667pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs0{font-size:43.200000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:63.007867pt;}
.y23b{bottom:86.456400pt;}
.y11{bottom:88.810400pt;}
.y2a0{bottom:88.824400pt;}
.y95{bottom:90.932667pt;}
.y288{bottom:91.207333pt;}
.y137{bottom:91.756267pt;}
.y225{bottom:92.061333pt;}
.y11e{bottom:92.089200pt;}
.y1a3{bottom:93.817200pt;}
.y1b4{bottom:93.818533pt;}
.y123{bottom:94.015733pt;}
.y2fc{bottom:94.626800pt;}
.y2bc{bottom:94.702933pt;}
.y5a{bottom:94.704267pt;}
.y27{bottom:94.705600pt;}
.y42{bottom:94.706933pt;}
.ya4{bottom:94.708267pt;}
.y25b{bottom:94.711067pt;}
.y24f{bottom:95.868667pt;}
.y188{bottom:97.338267pt;}
.y10{bottom:99.478400pt;}
.y206{bottom:101.354133pt;}
.y197{bottom:101.827867pt;}
.y29f{bottom:102.156400pt;}
.y23a{bottom:102.456400pt;}
.y1d1{bottom:103.418533pt;}
.y153{bottom:104.015467pt;}
.y287{bottom:107.208667pt;}
.y136{bottom:107.756267pt;}
.y224{bottom:108.062667pt;}
.y11d{bottom:108.090533pt;}
.y1a2{bottom:109.818533pt;}
.y1b3{bottom:109.819867pt;}
.y122{bottom:110.017067pt;}
.yf{bottom:110.146400pt;}
.y2fb{bottom:110.628133pt;}
.y2bb{bottom:110.704267pt;}
.y59{bottom:110.705600pt;}
.y26{bottom:110.706933pt;}
.y41{bottom:110.708267pt;}
.ya3{bottom:110.709600pt;}
.y24e{bottom:111.870000pt;}
.y94{bottom:115.372400pt;}
.y29e{bottom:115.488400pt;}
.y205{bottom:117.355467pt;}
.y196{bottom:117.827867pt;}
.y25a{bottom:119.150667pt;}
.y1d0{bottom:119.419867pt;}
.ye{bottom:120.814400pt;}
.y223{bottom:124.064000pt;}
.y1a1{bottom:125.819867pt;}
.y1b2{bottom:125.821200pt;}
.y1eb{bottom:125.826533pt;}
.y2ba{bottom:126.705600pt;}
.y58{bottom:126.706933pt;}
.y25{bottom:126.708267pt;}
.y40{bottom:126.709600pt;}
.ya2{bottom:126.710933pt;}
.y152{bottom:128.455067pt;}
.y29d{bottom:128.820400pt;}
.yd{bottom:131.482400pt;}
.y286{bottom:131.648267pt;}
.y11c{bottom:132.530133pt;}
.y204{bottom:133.356800pt;}
.y195{bottom:133.827867pt;}
.y121{bottom:134.456667pt;}
.y2fa{bottom:135.067733pt;}
.y1cf{bottom:135.421200pt;}
.y187{bottom:136.012800pt;}
.y24d{bottom:136.309733pt;}
.y1a0{bottom:141.821200pt;}
.y1b1{bottom:141.822533pt;}
.ye7{bottom:141.826533pt;}
.y1ea{bottom:141.827867pt;}
.y2b9{bottom:142.706933pt;}
.y57{bottom:142.708267pt;}
.y24{bottom:142.709600pt;}
.y3f{bottom:142.710933pt;}
.y156{bottom:143.770667pt;}
.yc{bottom:145.930400pt;}
.y29c{bottom:146.112400pt;}
.y222{bottom:148.503733pt;}
.y203{bottom:149.358133pt;}
.y194{bottom:149.827867pt;}
.ya1{bottom:151.150667pt;}
.y1ce{bottom:151.422533pt;}
.y186{bottom:152.014133pt;}
.y93{bottom:154.041600pt;}
.yb{bottom:156.598400pt;}
.y19f{bottom:157.822533pt;}
.y1b0{bottom:157.823867pt;}
.ye6{bottom:157.827867pt;}
.y2b8{bottom:158.708267pt;}
.y56{bottom:158.709600pt;}
.y23{bottom:158.710933pt;}
.y202{bottom:165.359467pt;}
.y193{bottom:165.827867pt;}
.y1e9{bottom:166.267600pt;}
.y151{bottom:167.128267pt;}
.y3e{bottom:167.150667pt;}
.y1cd{bottom:167.423867pt;}
.y185{bottom:168.015467pt;}
.y92{bottom:170.042933pt;}
.y285{bottom:170.325467pt;}
.y11b{bottom:171.204667pt;}
.y120{bottom:173.133867pt;}
.y2f9{bottom:173.728933pt;}
.y19e{bottom:173.823867pt;}
.y1af{bottom:173.825200pt;}
.ybe{bottom:174.622800pt;}
.y2e3{bottom:174.626800pt;}
.y2b7{bottom:174.709600pt;}
.y55{bottom:174.710933pt;}
.y24c{bottom:174.984267pt;}
.y104{bottom:181.347333pt;}
.y201{bottom:181.360800pt;}
.ye5{bottom:182.267600pt;}
.y150{bottom:183.129600pt;}
.y22{bottom:183.150667pt;}
.y1cc{bottom:183.425200pt;}
.y91{bottom:186.044267pt;}
.y221{bottom:187.180933pt;}
.y11a{bottom:187.206000pt;}
.y11f{bottom:189.133867pt;}
.y2f8{bottom:189.730267pt;}
.y29b{bottom:189.742267pt;}
.y192{bottom:189.822533pt;}
.y19d{bottom:189.825200pt;}
.y1ae{bottom:189.826533pt;}
.ya0{bottom:189.827867pt;}
.ybd{bottom:190.624133pt;}
.y2e2{bottom:190.628133pt;}
.y2b6{bottom:190.710933pt;}
.y24b{bottom:190.985600pt;}
.y184{bottom:192.455067pt;}
.y284{bottom:194.765200pt;}
.y103{bottom:197.348667pt;}
.y200{bottom:197.362133pt;}
.y14f{bottom:199.130933pt;}
.y54{bottom:199.150667pt;}
.y1cb{bottom:199.426533pt;}
.y90{bottom:202.045600pt;}
.y119{bottom:203.207333pt;}
.y1e8{bottom:204.943333pt;}
.y2f7{bottom:205.731600pt;}
.y29a{bottom:205.743600pt;}
.y191{bottom:205.823867pt;}
.y3d{bottom:205.826533pt;}
.y1ad{bottom:205.827867pt;}
.ybc{bottom:206.625467pt;}
.y2b3{bottom:206.626800pt;}
.y24a{bottom:206.986933pt;}
.y220{bottom:211.620667pt;}
.y102{bottom:213.350000pt;}
.y1ff{bottom:213.363467pt;}
.y9f{bottom:214.267600pt;}
.y2e1{bottom:215.067733pt;}
.y14e{bottom:215.132267pt;}
.y2b5{bottom:215.150667pt;}
.y1ca{bottom:215.427867pt;}
.y8f{bottom:218.046933pt;}
.ye4{bottom:220.944667pt;}
.y299{bottom:221.744933pt;}
.y7c{bottom:221.823867pt;}
.y190{bottom:221.825200pt;}
.yc9{bottom:221.826533pt;}
.y21{bottom:221.827867pt;}
.y2d6{bottom:222.618800pt;}
.ybb{bottom:222.626800pt;}
.y2b2{bottom:222.628133pt;}
.y172{bottom:226.663733pt;}
.y118{bottom:227.647067pt;}
.y101{bottom:229.351333pt;}
.y1fe{bottom:229.364800pt;}
.y1ac{bottom:230.267600pt;}
.y183{bottom:231.116267pt;}
.y171{bottom:231.278800pt;}
.y249{bottom:231.426533pt;}
.y283{bottom:233.442400pt;}
.y8e{bottom:234.048267pt;}
.y170{bottom:236.427333pt;}
.y2f6{bottom:237.734267pt;}
.y7b{bottom:237.825200pt;}
.y18f{bottom:237.826533pt;}
.y53{bottom:237.827867pt;}
.y2d5{bottom:238.620133pt;}
.y72{bottom:238.624133pt;}
.yba{bottom:238.628133pt;}
.y14d{bottom:239.572000pt;}
.y1c9{bottom:239.867467pt;}
.y16f{bottom:241.015733pt;}
.y100{bottom:245.352667pt;}
.ye3{bottom:245.384400pt;}
.y298{bottom:246.184667pt;}
.y20{bottom:246.267600pt;}
.y16e{bottom:246.351067pt;}
.y2b1{bottom:247.067733pt;}
.y182{bottom:247.117600pt;}
.y8d{bottom:250.049600pt;}
.y21f{bottom:250.295067pt;}
.y16d{bottom:251.552933pt;}
.y9e{bottom:252.943333pt;}
.y1fd{bottom:253.366000pt;}
.y2f5{bottom:253.735600pt;}
.y2e0{bottom:253.744933pt;}
.y7a{bottom:253.826533pt;}
.y18e{bottom:253.827867pt;}
.y2d4{bottom:254.621467pt;}
.y71{bottom:254.625467pt;}
.y16c{bottom:256.168000pt;}
.y282{bottom:257.882000pt;}
.y16b{bottom:261.129867pt;}
.yff{bottom:261.354000pt;}
.y52{bottom:262.267600pt;}
.yb9{bottom:263.067733pt;}
.y181{bottom:263.118933pt;}
.y16a{bottom:264.891200pt;}
.y21e{bottom:266.296400pt;}
.y117{bottom:266.322933pt;}
.y1ab{bottom:268.943333pt;}
.y9d{bottom:268.944667pt;}
.y1fc{bottom:269.366000pt;}
.y169{bottom:269.506267pt;}
.y2f4{bottom:269.736933pt;}
.y79{bottom:269.827867pt;}
.y248{bottom:270.102400pt;}
.y2d3{bottom:270.622800pt;}
.y70{bottom:270.626800pt;}
.y168{bottom:274.468133pt;}
.y8c{bottom:274.489200pt;}
.yfe{bottom:277.355333pt;}
.y2df{bottom:278.184667pt;}
.y167{bottom:278.229467pt;}
.y14c{bottom:278.230533pt;}
.y18d{bottom:278.267600pt;}
.y1c8{bottom:278.544667pt;}
.y180{bottom:279.120267pt;}
.y21d{bottom:282.297733pt;}
.y116{bottom:282.324267pt;}
.y166{bottom:282.844533pt;}
.ye2{bottom:284.058800pt;}
.y1e7{bottom:284.061467pt;}
.y297{bottom:284.844400pt;}
.y3c{bottom:284.942000pt;}
.y1f{bottom:284.943333pt;}
.y19c{bottom:284.944667pt;}
.y1fb{bottom:285.366000pt;}
.y2b0{bottom:285.727600pt;}
.y239{bottom:285.728800pt;}
.y2f3{bottom:285.738267pt;}
.y247{bottom:286.103733pt;}
.y2d2{bottom:286.624133pt;}
.y6f{bottom:286.628133pt;}
.y165{bottom:287.806400pt;}
.y164{bottom:291.567733pt;}
.y9c{bottom:293.384400pt;}
.y14b{bottom:294.231867pt;}
.y78{bottom:294.267600pt;}
.y17f{bottom:295.121600pt;}
.y163{bottom:296.182800pt;}
.y281{bottom:296.553867pt;}
.ye1{bottom:300.060133pt;}
.y296{bottom:300.845733pt;}
.y2fd{bottom:300.942000pt;}
.y3b{bottom:300.943333pt;}
.y1e{bottom:300.944667pt;}
.y162{bottom:301.144667pt;}
.y1fa{bottom:301.366000pt;}
.y2af{bottom:301.728933pt;}
.y238{bottom:301.730133pt;}
.y2f2{bottom:301.739600pt;}
.yb8{bottom:301.744933pt;}
.y2d1{bottom:302.625467pt;}
.y1c7{bottom:302.984400pt;}
.y161{bottom:304.906000pt;}
.y21c{bottom:306.737467pt;}
.y115{bottom:306.763867pt;}
.y1e6{bottom:308.501200pt;}
.yfd{bottom:309.358000pt;}
.y19b{bottom:309.384400pt;}
.y160{bottom:309.520810pt;}
.y14a{bottom:310.233200pt;}
.y246{bottom:310.543467pt;}
.y6e{bottom:311.067733pt;}
.y17e{bottom:311.122933pt;}
.y280{bottom:312.555200pt;}
.y8b{bottom:313.166400pt;}
.y15f{bottom:314.856143pt;}
.ye0{bottom:316.061467pt;}
.y295{bottom:316.847067pt;}
.y2de{bottom:316.856400pt;}
.y2b4{bottom:316.943333pt;}
.y3a{bottom:316.944667pt;}
.y2ae{bottom:317.730267pt;}
.y237{bottom:317.731467pt;}
.y2f1{bottom:317.740933pt;}
.y4d{bottom:318.621467pt;}
.y2d0{bottom:318.626800pt;}
.y15e{bottom:320.164800pt;}
.y1f9{bottom:325.355333pt;}
.yfc{bottom:325.359333pt;}
.y1d{bottom:325.384400pt;}
.y15d{bottom:325.500133pt;}
.yb7{bottom:326.184667pt;}
.y149{bottom:326.234533pt;}
.y17d{bottom:327.124267pt;}
.y27f{bottom:328.556533pt;}
.y15c{bottom:330.835467pt;}
.y9b{bottom:332.061467pt;}
.y294{bottom:332.848400pt;}
.y2dd{bottom:332.857733pt;}
.y77{bottom:332.943333pt;}
.y2a2{bottom:332.944667pt;}
.y2ad{bottom:333.731600pt;}
.y2f0{bottom:333.742267pt;}
.y4c{bottom:334.622800pt;}
.y259{bottom:334.628133pt;}
.y15b{bottom:336.170800pt;}
.y8a{bottom:337.606133pt;}
.y135{bottom:339.390000pt;}
.ydf{bottom:340.501200pt;}
.y1f8{bottom:341.356667pt;}
.yfb{bottom:341.360667pt;}
.y39{bottom:341.384400pt;}
.y15a{bottom:341.506133pt;}
.y1c6{bottom:341.661600pt;}
.y148{bottom:342.235867pt;}
.y2cb{bottom:342.246533pt;}
.y17c{bottom:343.125600pt;}
.y27e{bottom:344.557867pt;}
.y236{bottom:345.070133pt;}
.y21b{bottom:345.400000pt;}
.y114{bottom:345.439733pt;}
.y159{bottom:346.841467pt;}
.y1e5{bottom:347.166400pt;}
.y19a{bottom:348.061467pt;}
.y2dc{bottom:348.859067pt;}
.y76{bottom:348.944667pt;}
.y245{bottom:349.220533pt;}
.y2ac{bottom:349.732933pt;}
.y6d{bottom:349.742267pt;}
.y2ef{bottom:349.743600pt;}
.y4b{bottom:350.624133pt;}
.y158{bottom:352.176800pt;}
.y134{bottom:355.390000pt;}
.y9a{bottom:356.501200pt;}
.y1f7{bottom:357.358000pt;}
.yfa{bottom:357.362000pt;}
.y2a1{bottom:357.384400pt;}
.y147{bottom:358.237200pt;}
.y1e2{bottom:358.242533pt;}
.y2ca{bottom:358.247867pt;}
.y258{bottom:359.067733pt;}
.y17b{bottom:359.126933pt;}
.y27d{bottom:360.559200pt;}
.y235{bottom:361.071467pt;}
.y21a{bottom:361.401333pt;}
.y113{bottom:361.441067pt;}
.y1e4{bottom:363.167733pt;}
.y1c{bottom:364.058800pt;}
.y2cc{bottom:364.060133pt;}
.y51{bottom:364.061467pt;}
.y293{bottom:364.851067pt;}
.yb6{bottom:364.860400pt;}
.y2ab{bottom:365.734267pt;}
.y273{bottom:365.742267pt;}
.y6c{bottom:365.743600pt;}
.y2ee{bottom:365.744933pt;}
.y1c5{bottom:366.101200pt;}
.y30c{bottom:366.624133pt;}
.y4a{bottom:366.625467pt;}
.y157{bottom:369.452400pt;}
.y199{bottom:372.501200pt;}
.y1f6{bottom:373.359333pt;}
.y75{bottom:373.384400pt;}
.y244{bottom:373.660267pt;}
.y146{bottom:374.238533pt;}
.y1e1{bottom:374.243867pt;}
.y2c9{bottom:374.249200pt;}
.y17a{bottom:375.128267pt;}
.y89{bottom:376.283333pt;}
.y234{bottom:377.072800pt;}
.y219{bottom:377.402667pt;}
.y1e3{bottom:379.169067pt;}
.yde{bottom:379.171733pt;}
.y1b{bottom:380.060133pt;}
.yc5{bottom:380.061467pt;}
.y292{bottom:380.852400pt;}
.yb5{bottom:380.861733pt;}
.y2aa{bottom:381.735600pt;}
.y272{bottom:381.743600pt;}
.y6b{bottom:381.744933pt;}
.y30b{bottom:382.625467pt;}
.y49{bottom:382.626800pt;}
.y27c{bottom:384.998800pt;}
.y112{bottom:385.880800pt;}
.y50{bottom:388.501200pt;}
.y1f5{bottom:389.360667pt;}
.yf9{bottom:389.364667pt;}
.y2ed{bottom:390.184667pt;}
.y145{bottom:390.239867pt;}
.y1e0{bottom:390.245200pt;}
.y179{bottom:391.129600pt;}
.y218{bottom:393.404000pt;}
.y99{bottom:395.170400pt;}
.ydd{bottom:395.173067pt;}
.y1a{bottom:396.061467pt;}
.y291{bottom:396.853733pt;}
.y2a9{bottom:397.736933pt;}
.y257{bottom:397.739600pt;}
.yd6{bottom:397.742267pt;}
.y271{bottom:397.744933pt;}
.y1aa{bottom:398.249200pt;}
.y30a{bottom:398.626800pt;}
.y48{bottom:398.628133pt;}
.y2c8{bottom:398.688800pt;}
.y88{bottom:400.722933pt;}
.y233{bottom:404.411467pt;}
.yc4{bottom:404.501200pt;}
.y1c4{bottom:404.774400pt;}
.yb4{bottom:405.301467pt;}
.y1f4{bottom:405.362000pt;}
.yf8{bottom:405.366000pt;}
.y6a{bottom:406.184667pt;}
.y144{bottom:406.241200pt;}
.y1df{bottom:406.246533pt;}
.y178{bottom:407.130933pt;}
.y217{bottom:409.405333pt;}
.y98{bottom:411.171733pt;}
.ydc{bottom:411.174400pt;}
.y74{bottom:412.061467pt;}
.y243{bottom:412.333467pt;}
.y290{bottom:412.855067pt;}
.y2a8{bottom:413.738267pt;}
.y256{bottom:413.740933pt;}
.yd5{bottom:413.743600pt;}
.y1a9{bottom:414.249200pt;}
.y309{bottom:414.628133pt;}
.y232{bottom:420.412800pt;}
.y19{bottom:420.501200pt;}
.y1c3{bottom:420.775733pt;}
.y1f3{bottom:421.363333pt;}
.y270{bottom:422.184667pt;}
.y143{bottom:422.242533pt;}
.y1de{bottom:422.247867pt;}
.y47{bottom:423.067733pt;}
.y177{bottom:423.132267pt;}
.y27b{bottom:423.670667pt;}
.y111{bottom:424.554000pt;}
.y216{bottom:425.406667pt;}
.y4f{bottom:427.173067pt;}
.ydb{bottom:427.175733pt;}
.y242{bottom:428.334800pt;}
.y2ec{bottom:428.856400pt;}
.y2a7{bottom:429.739600pt;}
.y255{bottom:429.742267pt;}
.yd4{bottom:429.744933pt;}
.yf7{bottom:429.805733pt;}
.y1a8{bottom:430.249200pt;}
.y231{bottom:436.414133pt;}
.y73{bottom:436.501200pt;}
.y1c2{bottom:436.777067pt;}
.y2c7{bottom:437.362000pt;}
.y1f2{bottom:437.364667pt;}
.y142{bottom:438.243867pt;}
.y1dd{bottom:438.249200pt;}
.y308{bottom:439.067733pt;}
.y87{bottom:439.400133pt;}
.y27a{bottom:439.672000pt;}
.y110{bottom:440.555333pt;}
.y215{bottom:441.408000pt;}
.y4e{bottom:443.174400pt;}
.yc3{bottom:443.175733pt;}
.yda{bottom:443.177067pt;}
.yb3{bottom:443.974667pt;}
.y2db{bottom:443.976000pt;}
.y241{bottom:444.336133pt;}
.y69{bottom:444.853733pt;}
.y28f{bottom:444.857733pt;}
.y1bc{bottom:444.860400pt;}
.y2a6{bottom:445.740933pt;}
.y254{bottom:445.743600pt;}
.y1a7{bottom:446.249200pt;}
.y176{bottom:447.572000pt;}
.y230{bottom:452.415467pt;}
.y127{bottom:452.482933pt;}
.y1c1{bottom:452.778400pt;}
.y2c6{bottom:453.363333pt;}
.y1f1{bottom:453.366000pt;}
.yd3{bottom:454.184667pt;}
.y141{bottom:454.245200pt;}
.y131{bottom:454.246533pt;}
.ya{bottom:455.032667pt;}
.y279{bottom:455.673333pt;}
.y10f{bottom:456.556667pt;}
.y214{bottom:457.409333pt;}
.y18{bottom:459.175733pt;}
.yc2{bottom:459.177067pt;}
.yd9{bottom:459.178400pt;}
.yb2{bottom:459.976000pt;}
.y2da{bottom:459.977333pt;}
.y240{bottom:460.337467pt;}
.y26f{bottom:460.848400pt;}
.y68{bottom:460.855067pt;}
.y28e{bottom:460.859067pt;}
.y2cf{bottom:460.860400pt;}
.y1bb{bottom:460.861733pt;}
.y46{bottom:461.742267pt;}
.y253{bottom:461.744933pt;}
.y1a6{bottom:462.249200pt;}
.y1dc{bottom:462.688800pt;}
.y86{bottom:463.839867pt;}
.y108{bottom:467.108267pt;}
.y22f{bottom:468.416800pt;}
.yf6{bottom:468.481467pt;}
.y2c5{bottom:469.364667pt;}
.y140{bottom:470.246533pt;}
.y130{bottom:470.247867pt;}
.y9{bottom:471.034000pt;}
.y278{bottom:471.674667pt;}
.y10e{bottom:472.558000pt;}
.y213{bottom:473.410667pt;}
.y17{bottom:475.177067pt;}
.yc1{bottom:475.178400pt;}
.yb1{bottom:475.977333pt;}
.y2d9{bottom:475.978667pt;}
.y26e{bottom:476.849733pt;}
.y67{bottom:476.856400pt;}
.y28d{bottom:476.860400pt;}
.y2ce{bottom:476.861733pt;}
.y126{bottom:476.922533pt;}
.y1c0{bottom:477.218133pt;}
.y307{bottom:477.740933pt;}
.y45{bottom:477.743600pt;}
.y38{bottom:477.744933pt;}
.y1f0{bottom:477.805600pt;}
.y1a5{bottom:478.249200pt;}
.yd8{bottom:483.618133pt;}
.y22e{bottom:484.418133pt;}
.yf5{bottom:484.482800pt;}
.y23f{bottom:484.777200pt;}
.y1ba{bottom:485.301467pt;}
.y2c4{bottom:485.366000pt;}
.y252{bottom:486.184667pt;}
.y13f{bottom:486.247867pt;}
.y12f{bottom:486.249200pt;}
.y8{bottom:487.035333pt;}
.y277{bottom:487.676000pt;}
.y212{bottom:489.412000pt;}
.y16{bottom:491.178400pt;}
.y107{bottom:491.547867pt;}
.yb0{bottom:491.978667pt;}
.y26d{bottom:492.851067pt;}
.y66{bottom:492.857733pt;}
.yd2{bottom:492.859067pt;}
.y28c{bottom:492.861733pt;}
.y306{bottom:493.742267pt;}
.y44{bottom:493.744933pt;}
.y10d{bottom:496.997600pt;}
.yc0{bottom:499.618133pt;}
.y2d8{bottom:500.418267pt;}
.y22d{bottom:500.419467pt;}
.y2cd{bottom:501.301467pt;}
.y1db{bottom:501.355333pt;}
.y37{bottom:502.184667pt;}
.y13e{bottom:502.249200pt;}
.y85{bottom:502.516933pt;}
.y7{bottom:503.036667pt;}
.y211{bottom:505.413333pt;}
.y18c{bottom:507.976000pt;}
.y26c{bottom:508.852400pt;}
.y65{bottom:508.859067pt;}
.yd1{bottom:508.860400pt;}
.yf4{bottom:508.922533pt;}
.y305{bottom:509.743600pt;}
.y2c3{bottom:509.805600pt;}
.y12e{bottom:510.688800pt;}
.y276{bottom:512.115733pt;}
.y3{bottom:514.590533pt;}
.y125{bottom:515.578400pt;}
.y15{bottom:515.618133pt;}
.y1bf{bottom:515.893867pt;}
.yaf{bottom:516.418267pt;}
.y22c{bottom:516.420800pt;}
.y1ef{bottom:516.480133pt;}
.y28b{bottom:517.301467pt;}
.y1da{bottom:517.356667pt;}
.y43{bottom:518.184667pt;}
.y6{bottom:519.038000pt;}
.y210{bottom:521.414667pt;}
.yd7{bottom:522.292533pt;}
.y23e{bottom:523.452933pt;}
.y1b9{bottom:523.974667pt;}
.y18b{bottom:523.977333pt;}
.y26b{bottom:524.853733pt;}
.y64{bottom:524.860400pt;}
.yd0{bottom:524.861733pt;}
.y304{bottom:525.744933pt;}
.y13d{bottom:526.688800pt;}
.y84{bottom:526.956667pt;}
.y2{bottom:530.590533pt;}
.y124{bottom:531.579733pt;}
.y1be{bottom:531.895200pt;}
.y1ee{bottom:532.481467pt;}
.y1d9{bottom:533.358000pt;}
.y5{bottom:535.039333pt;}
.y10c{bottom:535.674800pt;}
.ybf{bottom:538.293867pt;}
.y2d7{bottom:539.074133pt;}
.y23d{bottom:539.454267pt;}
.y1b8{bottom:539.976000pt;}
.y18a{bottom:539.978667pt;}
.y26a{bottom:540.855067pt;}
.y36{bottom:540.859067pt;}
.y22b{bottom:540.860533pt;}
.y63{bottom:540.861733pt;}
.y20f{bottom:545.854267pt;}
.y106{bottom:547.558400pt;}
.yf3{bottom:547.581067pt;}
.y2c2{bottom:548.473467pt;}
.y1ed{bottom:548.482800pt;}
.ycf{bottom:549.301467pt;}
.y1d8{bottom:549.359333pt;}
.y12d{bottom:549.360667pt;}
.y1a4{bottom:549.363333pt;}
.y303{bottom:550.184667pt;}
.y275{bottom:550.792933pt;}
.y14{bottom:554.295200pt;}
.yae{bottom:555.075467pt;}
.y2eb{bottom:555.965200pt;}
.y28a{bottom:555.976000pt;}
.y1b7{bottom:555.977333pt;}
.y155{bottom:555.978667pt;}
.y1bd{bottom:556.334933pt;}
.y269{bottom:556.856400pt;}
.y35{bottom:556.860400pt;}
.y263{bottom:557.742267pt;}
.y10b{bottom:560.114400pt;}
.y105{bottom:563.558400pt;}
.yf2{bottom:563.582400pt;}
.y23c{bottom:563.894000pt;}
.y189{bottom:564.418267pt;}
.y2c1{bottom:564.474800pt;}
.y62{bottom:565.301467pt;}
.y1d7{bottom:565.360667pt;}
.y12c{bottom:565.362000pt;}
.y13c{bottom:565.364667pt;}
.y83{bottom:565.633867pt;}
.y133{bottom:569.690533pt;}
.yad{bottom:571.076800pt;}
.y2ea{bottom:571.966533pt;}
.y289{bottom:571.977333pt;}
.y1b6{bottom:571.978667pt;}
.y2a5{bottom:572.857733pt;}
.y34{bottom:572.861733pt;}
.y1ec{bottom:572.922533pt;}
.y1{bottom:573.047200pt;}
.y262{bottom:573.743600pt;}
.y274{bottom:575.232533pt;}
.y22a{bottom:575.754133pt;}
.y13{bottom:578.734933pt;}
.yf1{bottom:579.583733pt;}
.y154{bottom:580.418267pt;}
.y2c0{bottom:580.476133pt;}
.y1d6{bottom:581.362000pt;}
.y12b{bottom:581.363333pt;}
.y13b{bottom:581.366000pt;}
.y20e{bottom:584.531467pt;}
.yac{bottom:587.078133pt;}
.y2e9{bottom:587.967867pt;}
.yce{bottom:587.974667pt;}
.y251{bottom:587.978667pt;}
.y268{bottom:588.859067pt;}
.y302{bottom:588.861733pt;}
.y261{bottom:589.744933pt;}
.y82{bottom:590.073467pt;}
.y229{bottom:591.755467pt;}
.y132{bottom:594.130267pt;}
.yf0{bottom:595.585067pt;}
.y1b5{bottom:596.418267pt;}
.y2bf{bottom:596.477467pt;}
.y33{bottom:597.301467pt;}
.y1d5{bottom:597.363333pt;}
.y12a{bottom:597.364667pt;}
.yab{bottom:603.079467pt;}
.y2e8{bottom:603.969200pt;}
.y61{bottom:603.974667pt;}
.ycd{bottom:603.976000pt;}
.y20c{bottom:604.859067pt;}
.y267{bottom:604.860400pt;}
.y13a{bottom:605.805600pt;}
.y228{bottom:607.756800pt;}
.y20d{bottom:608.971200pt;}
.yef{bottom:611.586400pt;}
.y250{bottom:612.418267pt;}
.y2be{bottom:612.478800pt;}
.y301{bottom:613.301467pt;}
.y1d4{bottom:613.364667pt;}
.y129{bottom:613.366000pt;}
.y260{bottom:614.184667pt;}
.yaa{bottom:619.080800pt;}
.y2e7{bottom:619.970533pt;}
.y60{bottom:619.976000pt;}
.ycc{bottom:619.977333pt;}
.y20b{bottom:620.860400pt;}
.y266{bottom:620.861733pt;}
.y227{bottom:623.758133pt;}
.yee{bottom:627.587733pt;}
.y2bd{bottom:628.480133pt;}
.y1d3{bottom:629.366000pt;}
.ya9{bottom:635.082133pt;}
.y2e6{bottom:635.971867pt;}
.y32{bottom:635.974533pt;}
.y5f{bottom:635.977333pt;}
.ycb{bottom:635.978667pt;}
.y20a{bottom:636.861733pt;}
.y128{bottom:637.805600pt;}
.yed{bottom:643.589067pt;}
.y139{bottom:644.480133pt;}
.y175{bottom:644.481467pt;}
.y265{bottom:645.301467pt;}
.y226{bottom:648.197867pt;}
.ya8{bottom:651.083467pt;}
.y2e5{bottom:651.973200pt;}
.y31{bottom:651.975867pt;}
.y300{bottom:651.977333pt;}
.y5e{bottom:651.978667pt;}
.y25f{bottom:652.861733pt;}
.y1d2{bottom:653.805600pt;}
.yec{bottom:659.590400pt;}
.yca{bottom:660.418267pt;}
.y138{bottom:660.481467pt;}
.y174{bottom:660.482800pt;}
.y209{bottom:661.301467pt;}
.ya7{bottom:667.084800pt;}
.y2e4{bottom:667.974533pt;}
.y30{bottom:667.977200pt;}
.y2ff{bottom:667.978667pt;}
.yeb{bottom:675.591733pt;}
.y5d{bottom:676.418267pt;}
.y198{bottom:676.481467pt;}
.yc8{bottom:676.482800pt;}
.y25e{bottom:677.301467pt;}
.ya6{bottom:683.086133pt;}
.y2a4{bottom:683.975867pt;}
.y264{bottom:683.977200pt;}
.y2f{bottom:683.978533pt;}
.y173{bottom:684.922533pt;}
.yea{bottom:691.593067pt;}
.y2fe{bottom:692.418267pt;}
.y81{bottom:692.482800pt;}
.ya5{bottom:699.087467pt;}
.y2a3{bottom:699.977200pt;}
.y208{bottom:699.978533pt;}
.yc7{bottom:700.922533pt;}
.ye9{bottom:707.594400pt;}
.y2e{bottom:708.418267pt;}
.y97{bottom:708.482800pt;}
.y5c{bottom:715.088800pt;}
.y25d{bottom:715.978533pt;}
.y80{bottom:716.922533pt;}
.ye8{bottom:723.595733pt;}
.y207{bottom:724.418267pt;}
.y5b{bottom:731.090133pt;}
.y96{bottom:732.922533pt;}
.yc6{bottom:739.597067pt;}
.y25c{bottom:740.418267pt;}
.y10a{bottom:742.413600pt;}
.y2d{bottom:747.091467pt;}
.y7f{bottom:755.598400pt;}
.y2c{bottom:763.092800pt;}
.y12{bottom:764.813600pt;}
.y109{bottom:768.644933pt;}
.y7e{bottom:771.599733pt;}
.y2b{bottom:779.094133pt;}
.y4{bottom:791.039333pt;}
.y2a{bottom:795.095467pt;}
.y7d{bottom:796.039333pt;}
.y28{bottom:830.609600pt;}
.h12{height:8.273936pt;}
.h11{height:11.885762pt;}
.hf{height:12.441997pt;}
.h10{height:12.443024pt;}
.hd{height:14.224082pt;}
.he{height:14.234669pt;}
.h17{height:22.368000pt;}
.h6{height:27.216146pt;}
.h8{height:36.601562pt;}
.h18{height:38.208000pt;}
.h2{height:39.529687pt;}
.ha{height:42.453333pt;}
.h7{height:43.921875pt;}
.h13{height:46.288000pt;}
.h5{height:46.698667pt;}
.h16{height:46.746667pt;}
.h14{height:46.757333pt;}
.h15{height:48.201562pt;}
.h9{height:48.802083pt;}
.hb{height:49.514062pt;}
.h3{height:50.944000pt;}
.h4{height:61.490625pt;}
.hc{height:374.360000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w2{width:264.640000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:75.590533pt;}
.x17{left:90.711467pt;}
.x2{left:94.488133pt;}
.x3{left:113.385867pt;}
.x6{left:146.282533pt;}
.x7{left:160.593333pt;}
.x1{left:196.535467pt;}
.x14{left:242.757067pt;}
.x9{left:247.025067pt;}
.x12{left:250.760000pt;}
.xa{left:253.427467pt;}
.x10{left:258.762933pt;}
.xc{left:263.031067pt;}
.xd{left:266.232267pt;}
.x11{left:272.501333pt;}
.xf{left:283.972250pt;}
.xb{left:285.439467pt;}
.x13{left:289.040800pt;}
.x8{left:291.841867pt;}
.x16{left:309.315067pt;}
.x15{left:317.451333pt;}
.xe{left:333.457467pt;}
.x5{left:506.887733pt;}
}




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