
    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_86aefa30fe5f41e08662de24.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_1c05d9ef1b0e219bd1168883.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_7cba27fd59719024301ae0f7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_062d2e47c7767c9c15d58d11.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_7d3249b84016cfef2a2b174b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_dfb7925a99075423159d1e9a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.078613;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_1f2f441f39a254b9dee4cbea.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_4faa3c4748f798a052a2dec4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v4{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.520000px;}
.v2{vertical-align:85.200000px;}
.ls64{letter-spacing:-9.828000px;}
.ls36{letter-spacing:-7.344000px;}
.ls6d{letter-spacing:-7.200000px;}
.ls69{letter-spacing:-6.300000px;}
.ls82{letter-spacing:-2.574000px;}
.ls55{letter-spacing:-2.457000px;}
.ls7a{letter-spacing:-1.296000px;}
.ls8e{letter-spacing:-1.188000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls78{letter-spacing:-1.008000px;}
.ls79{letter-spacing:-0.864000px;}
.ls83{letter-spacing:-0.858000px;}
.ls49{letter-spacing:-0.819000px;}
.ls7b{letter-spacing:-0.792000px;}
.ls4a{letter-spacing:-0.756000px;}
.ls84{letter-spacing:-0.726000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls81{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.648000px;}
.ls65{letter-spacing:-0.630000px;}
.ls8d{letter-spacing:-0.594000px;}
.ls2c{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.528000px;}
.ls2d{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.462000px;}
.ls66{letter-spacing:-0.441000px;}
.ls35{letter-spacing:-0.432000px;}
.ls94{letter-spacing:-0.396000px;}
.ls23{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.330000px;}
.ls68{letter-spacing:-0.315000px;}
.ls20{letter-spacing:-0.288000px;}
.ls93{letter-spacing:-0.264000px;}
.ls6a{letter-spacing:-0.252000px;}
.ls29{letter-spacing:-0.216000px;}
.ls8f{letter-spacing:-0.198000px;}
.ls28{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132000px;}
.ls4b{letter-spacing:-0.126000px;}
.ls22{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.066000px;}
.lsc{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.063000px;}
.ls13{letter-spacing:0.066000px;}
.ls27{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.075600px;}
.ls60{letter-spacing:0.107100px;}
.ls95{letter-spacing:0.132000px;}
.ls18{letter-spacing:0.144000px;}
.ls96{letter-spacing:0.198000px;}
.ls1a{letter-spacing:0.216000px;}
.ls92{letter-spacing:0.264000px;}
.ls21{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.330000px;}
.ls19{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.378000px;}
.ls87{letter-spacing:0.396000px;}
.ls2e{letter-spacing:0.432000px;}
.ls8b{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.528000px;}
.ls7{letter-spacing:0.554400px;}
.ls1f{letter-spacing:0.556200px;}
.ls44{letter-spacing:0.567000px;}
.ls1d{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.594000px;}
.ls24{letter-spacing:0.648000px;}
.ls88{letter-spacing:0.660000px;}
.ls6c{letter-spacing:0.693000px;}
.ls25{letter-spacing:0.720000px;}
.ls8c{letter-spacing:0.726000px;}
.ls31{letter-spacing:0.792000px;}
.ls3f{letter-spacing:0.864000px;}
.ls71{letter-spacing:0.878400px;}
.ls70{letter-spacing:0.900000px;}
.ls1e{letter-spacing:0.936000px;}
.ls1b{letter-spacing:1.008000px;}
.ls3e{letter-spacing:1.080000px;}
.ls63{letter-spacing:1.108800px;}
.ls1c{letter-spacing:1.224000px;}
.ls7c{letter-spacing:1.296000px;}
.ls32{letter-spacing:1.512000px;}
.lsa{letter-spacing:1.557600px;}
.ls97{letter-spacing:1.735800px;}
.ls4d{letter-spacing:1.858500px;}
.ls5c{letter-spacing:1.890000px;}
.ls4c{letter-spacing:1.902600px;}
.ls4f{letter-spacing:1.921500px;}
.ls38{letter-spacing:2.232000px;}
.ls39{letter-spacing:2.304000px;}
.ls67{letter-spacing:2.376000px;}
.ls7e{letter-spacing:2.574000px;}
.ls62{letter-spacing:2.772000px;}
.ls5e{letter-spacing:2.872800px;}
.ls53{letter-spacing:2.904300px;}
.ls6e{letter-spacing:3.168000px;}
.ls61{letter-spacing:3.244500px;}
.ls14{letter-spacing:3.564000px;}
.ls2a{letter-spacing:3.600000px;}
.ls76{letter-spacing:3.672000px;}
.ls72{letter-spacing:3.744000px;}
.ls40{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls37{letter-spacing:4.392000px;}
.ls54{letter-spacing:4.410000px;}
.ls5a{letter-spacing:4.422600px;}
.ls5d{letter-spacing:4.428900px;}
.ls4e{letter-spacing:4.435200px;}
.ls41{letter-spacing:4.447800px;}
.ls45{letter-spacing:4.454100px;}
.ls52{letter-spacing:4.460400px;}
.ls46{letter-spacing:4.466700px;}
.ls42{letter-spacing:4.473000px;}
.ls59{letter-spacing:4.491900px;}
.ls6{letter-spacing:4.857600px;}
.ls77{letter-spacing:4.896000px;}
.ls48{letter-spacing:5.040000px;}
.ls5f{letter-spacing:5.112000px;}
.ls16{letter-spacing:5.197134px;}
.ls51{letter-spacing:5.544000px;}
.ls9{letter-spacing:5.662800px;}
.ls90{letter-spacing:5.695800px;}
.lsd{letter-spacing:5.700000px;}
.lsb{letter-spacing:5.742000px;}
.ls6f{letter-spacing:5.760000px;}
.ls7d{letter-spacing:6.000000px;}
.ls98{letter-spacing:6.243600px;}
.ls3d{letter-spacing:6.336000px;}
.ls9b{letter-spacing:6.360000px;}
.ls50{letter-spacing:6.426000px;}
.ls2{letter-spacing:6.600000px;}
.ls1{letter-spacing:6.616667px;}
.ls9a{letter-spacing:7.042200px;}
.ls99{letter-spacing:7.161000px;}
.ls4{letter-spacing:7.200000px;}
.ls5b{letter-spacing:7.749000px;}
.ls26{letter-spacing:7.920000px;}
.ls56{letter-spacing:8.757000px;}
.ls91{letter-spacing:8.989200px;}
.ls34{letter-spacing:9.144000px;}
.ls58{letter-spacing:9.311400px;}
.ls43{letter-spacing:9.450000px;}
.ls89{letter-spacing:9.768000px;}
.ls7f{letter-spacing:10.098000px;}
.ls3a{letter-spacing:10.195200px;}
.ls3{letter-spacing:10.200000px;}
.ls75{letter-spacing:10.224000px;}
.ls3c{letter-spacing:10.260000px;}
.ls3b{letter-spacing:10.267200px;}
.ls33{letter-spacing:10.512000px;}
.ls80{letter-spacing:10.956000px;}
.ls74{letter-spacing:11.088000px;}
.ls73{letter-spacing:11.232000px;}
.ls86{letter-spacing:11.352000px;}
.ls85{letter-spacing:11.748000px;}
.ls8a{letter-spacing:19.800000px;}
.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;}
}
.ws7e{word-spacing:-38.346000px;}
.ws0{word-spacing:-27.432000px;}
.ws74{word-spacing:-22.860000px;}
.ws22{word-spacing:-20.232000px;}
.ws92{word-spacing:-19.800000px;}
.ws65{word-spacing:-18.720000px;}
.ws66{word-spacing:-18.684000px;}
.ws67{word-spacing:-18.662400px;}
.ws43{word-spacing:-18.648000px;}
.ws61{word-spacing:-18.576000px;}
.ws26{word-spacing:-18.360000px;}
.ws32{word-spacing:-18.216000px;}
.ws24{word-spacing:-18.144000px;}
.ws33{word-spacing:-18.072000px;}
.ws72{word-spacing:-18.000000px;}
.ws41{word-spacing:-17.928000px;}
.ws27{word-spacing:-17.856000px;}
.ws31{word-spacing:-17.784000px;}
.ws51{word-spacing:-17.703000px;}
.ws3b{word-spacing:-17.640000px;}
.ws28{word-spacing:-17.568000px;}
.ws23{word-spacing:-17.424000px;}
.ws3a{word-spacing:-17.352000px;}
.ws25{word-spacing:-17.280000px;}
.ws14{word-spacing:-16.860000px;}
.ws7f{word-spacing:-16.764000px;}
.ws93{word-spacing:-16.500000px;}
.ws1{word-spacing:-16.302000px;}
.ws80{word-spacing:-16.236000px;}
.ws47{word-spacing:-16.065000px;}
.ws8b{word-spacing:-15.972000px;}
.ws8c{word-spacing:-15.906000px;}
.ws2{word-spacing:-15.840000px;}
.ws48{word-spacing:-15.561000px;}
.ws4a{word-spacing:-15.435000px;}
.ws5b{word-spacing:-15.246000px;}
.ws57{word-spacing:-14.931000px;}
.ws49{word-spacing:-14.805000px;}
.ws81{word-spacing:-11.748000px;}
.ws83{word-spacing:-11.352000px;}
.ws68{word-spacing:-11.232000px;}
.ws69{word-spacing:-11.088000px;}
.ws7d{word-spacing:-10.956000px;}
.ws6a{word-spacing:-10.224000px;}
.ws5{word-spacing:-10.200000px;}
.ws7a{word-spacing:-10.098000px;}
.ws87{word-spacing:-9.768000px;}
.ws55{word-spacing:-8.757000px;}
.wse{word-spacing:-7.200000px;}
.ws4{word-spacing:-6.600000px;}
.ws97{word-spacing:-6.360000px;}
.ws42{word-spacing:-6.336000px;}
.ws76{word-spacing:-6.000000px;}
.ws56{word-spacing:-5.733000px;}
.ws6{word-spacing:-5.700000px;}
.ws4b{word-spacing:-5.040000px;}
.ws6d{word-spacing:-4.896000px;}
.ws53{word-spacing:-4.410000px;}
.ws16{word-spacing:-4.200000px;}
.ws44{word-spacing:-4.026000px;}
.ws6b{word-spacing:-3.672000px;}
.ws39{word-spacing:-3.600000px;}
.ws11{word-spacing:-3.564000px;}
.ws78{word-spacing:-2.574000px;}
.ws75{word-spacing:-1.296000px;}
.ws1b{word-spacing:-1.224000px;}
.ws1a{word-spacing:-1.008000px;}
.ws21{word-spacing:-0.936000px;}
.ws60{word-spacing:-0.864000px;}
.ws38{word-spacing:-0.792000px;}
.ws82{word-spacing:-0.726000px;}
.ws2f{word-spacing:-0.720000px;}
.ws63{word-spacing:-0.693000px;}
.ws85{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.594000px;}
.ws1f{word-spacing:-0.576000px;}
.ws4d{word-spacing:-0.567000px;}
.ws13{word-spacing:-0.528000px;}
.ws17{word-spacing:-0.504000px;}
.ws8a{word-spacing:-0.462000px;}
.ws36{word-spacing:-0.432000px;}
.ws84{word-spacing:-0.396000px;}
.ws62{word-spacing:-0.378000px;}
.ws19{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.330000px;}
.ws1d{word-spacing:-0.288000px;}
.ws8f{word-spacing:-0.264000px;}
.ws73{word-spacing:-0.216000px;}
.ws95{word-spacing:-0.198000px;}
.ws18{word-spacing:-0.144000px;}
.ws94{word-spacing:-0.132000px;}
.ws30{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.066000px;}
.ws58{word-spacing:-0.063000px;}
.ws46{word-spacing:-0.060000px;}
.ws15{word-spacing:-0.043200px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.066000px;}
.ws1e{word-spacing:0.072000px;}
.ws50{word-spacing:0.126000px;}
.ws9{word-spacing:0.132000px;}
.ws29{word-spacing:0.144000px;}
.ws89{word-spacing:0.198000px;}
.ws2a{word-spacing:0.216000px;}
.ws5f{word-spacing:0.252000px;}
.ws8d{word-spacing:0.264000px;}
.ws1c{word-spacing:0.288000px;}
.ws5d{word-spacing:0.315000px;}
.ws7{word-spacing:0.330000px;}
.ws20{word-spacing:0.360000px;}
.ws8e{word-spacing:0.396000px;}
.ws3c{word-spacing:0.432000px;}
.ws5a{word-spacing:0.441000px;}
.wsd{word-spacing:0.462000px;}
.ws3d{word-spacing:0.504000px;}
.wsc{word-spacing:0.528000px;}
.ws2e{word-spacing:0.576000px;}
.ws86{word-spacing:0.594000px;}
.ws59{word-spacing:0.630000px;}
.ws35{word-spacing:0.648000px;}
.ws77{word-spacing:0.660000px;}
.ws34{word-spacing:0.720000px;}
.ws7c{word-spacing:0.726000px;}
.ws4f{word-spacing:0.756000px;}
.ws71{word-spacing:0.792000px;}
.ws4e{word-spacing:0.819000px;}
.ws7b{word-spacing:0.858000px;}
.ws6f{word-spacing:0.864000px;}
.ws6e{word-spacing:1.008000px;}
.ws2d{word-spacing:1.080000px;}
.ws88{word-spacing:1.188000px;}
.ws70{word-spacing:1.296000px;}
.ws54{word-spacing:2.457000px;}
.ws79{word-spacing:2.574000px;}
.ws3f{word-spacing:2.736000px;}
.ws6c{word-spacing:3.240000px;}
.ws37{word-spacing:3.384000px;}
.ws4c{word-spacing:3.906000px;}
.ws5c{word-spacing:4.076100px;}
.ws45{word-spacing:4.620000px;}
.ws2c{word-spacing:5.040000px;}
.ws40{word-spacing:5.400000px;}
.ws96{word-spacing:5.478000px;}
.ws10{word-spacing:5.544000px;}
.ws52{word-spacing:5.733000px;}
.ws90{word-spacing:6.138000px;}
.ws5e{word-spacing:6.300000px;}
.ws64{word-spacing:7.200000px;}
.ws3e{word-spacing:7.344000px;}
.ws91{word-spacing:7.458000px;}
.wsb{word-spacing:8.118000px;}
._17{margin-left:-14.671800px;}
._15{margin-left:-13.206600px;}
._1b{margin-left:-11.368200px;}
._7{margin-left:-10.149000px;}
._10{margin-left:-8.963400px;}
._9{margin-left:-7.875600px;}
._1{margin-left:-6.586800px;}
._d{margin-left:-5.110200px;}
._14{margin-left:-3.859200px;}
._5{margin-left:-2.814000px;}
._4{margin-left:-1.806000px;}
._b{width:1.231800px;}
._c{width:2.436000px;}
._3{width:4.266000px;}
._a{width:5.407200px;}
._2{width:6.600000px;}
._e{width:7.675800px;}
._f{width:8.764800px;}
._8{width:10.200000px;}
._0{width:11.259600px;}
._11{width:12.273600px;}
._13{width:13.292400px;}
._1a{width:14.703000px;}
._16{width:15.721200px;}
._6{width:17.401200px;}
._18{width:20.081400px;}
._19{width:21.370800px;}
._12{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs6{font-size:208.962000px;}
.y0{bottom:0.000000px;}
.y1{bottom:75.341850px;}
.y23{bottom:76.339350px;}
.y211{bottom:141.436500px;}
.y17e{bottom:141.499800px;}
.y1ef{bottom:141.610350px;}
.y133{bottom:143.205450px;}
.y8d{bottom:143.814300px;}
.y1c3{bottom:143.964300px;}
.yad{bottom:144.114300px;}
.y22{bottom:144.425100px;}
.y10a{bottom:144.516450px;}
.ye5{bottom:144.630300px;}
.y257{bottom:144.652800px;}
.y1cb{bottom:144.930300px;}
.y1ca{bottom:145.074300px;}
.y234{bottom:145.111800px;}
.y6a{bottom:145.258350px;}
.y1b4{bottom:145.284300px;}
.y198{bottom:145.628700px;}
.y47{bottom:145.864950px;}
.ycf{bottom:145.914300px;}
.y15a{bottom:146.369100px;}
.y17d{bottom:159.502050px;}
.y210{bottom:161.088000px;}
.y132{bottom:161.207700px;}
.y109{bottom:162.361200px;}
.y46{bottom:162.364950px;}
.y1ee{bottom:163.210350px;}
.y21{bottom:164.076600px;}
.y256{bottom:164.304300px;}
.y159{bottom:164.812350px;}
.y233{bottom:164.911800px;}
.y8c{bottom:164.964300px;}
.y1c2{bottom:165.564300px;}
.yac{bottom:165.714300px;}
.ye4{bottom:166.374300px;}
.y197{bottom:166.472700px;}
.y1c9{bottom:166.674300px;}
.y69{bottom:166.714350px;}
.y1b3{bottom:167.028300px;}
.yce{bottom:167.514300px;}
.y45{bottom:173.311950px;}
.y17c{bottom:176.748300px;}
.y131{bottom:179.209950px;}
.y20f{bottom:180.739500px;}
.y108{bottom:180.804450px;}
.y158{bottom:183.255600px;}
.y20{bottom:183.728100px;}
.y255{bottom:183.955800px;}
.y232{bottom:184.711800px;}
.y1ed{bottom:184.810350px;}
.y8b{bottom:186.114300px;}
.y1c1{bottom:187.164300px;}
.yab{bottom:187.314300px;}
.y196{bottom:187.316700px;}
.ye3{bottom:188.118300px;}
.y68{bottom:188.170350px;}
.y1c8{bottom:188.418300px;}
.y1b2{bottom:188.628300px;}
.ycd{bottom:189.114300px;}
.y44{bottom:189.813450px;}
.y17b{bottom:193.994550px;}
.y130{bottom:197.054700px;}
.y107{bottom:199.247700px;}
.y20e{bottom:200.391000px;}
.y157{bottom:201.698850px;}
.y1f{bottom:203.379600px;}
.y254{bottom:203.607300px;}
.y231{bottom:204.511800px;}
.y1ec{bottom:206.410350px;}
.y1c0{bottom:208.764300px;}
.y195{bottom:208.772700px;}
.yaa{bottom:208.914300px;}
.y67{bottom:209.626350px;}
.ye2{bottom:209.862300px;}
.y1c7{bottom:210.162300px;}
.y1b1{bottom:210.228300px;}
.ycc{bottom:210.714300px;}
.y43{bottom:211.864950px;}
.y106{bottom:217.690950px;}
.y20d{bottom:220.042500px;}
.y8a{bottom:221.814300px;}
.y1e{bottom:223.031100px;}
.y253{bottom:223.258800px;}
.y17a{bottom:224.108550px;}
.y230{bottom:224.311800px;}
.y12f{bottom:227.660550px;}
.y1eb{bottom:228.010350px;}
.y194{bottom:230.228700px;}
.ya9{bottom:230.514300px;}
.y66{bottom:231.082350px;}
.ye1{bottom:231.606300px;}
.y1b0{bottom:231.828300px;}
.y1c6{bottom:231.906300px;}
.ycb{bottom:232.314300px;}
.y156{bottom:233.102700px;}
.y105{bottom:236.134200px;}
.y20c{bottom:239.694000px;}
.y1d{bottom:242.682600px;}
.y252{bottom:242.910300px;}
.y22f{bottom:244.111800px;}
.y179{bottom:244.952550px;}
.y1bf{bottom:245.364300px;}
.y1ea{bottom:249.610350px;}
.y42{bottom:250.417800px;}
.y193{bottom:251.684700px;}
.ya8{bottom:252.114300px;}
.y65{bottom:252.538350px;}
.ye0{bottom:253.350300px;}
.y1af{bottom:253.428300px;}
.y1c5{bottom:253.650300px;}
.yca{bottom:253.914300px;}
.y104{bottom:254.577450px;}
.y155{bottom:255.296700px;}
.y20b{bottom:259.345500px;}
.y1c{bottom:262.334100px;}
.y251{bottom:262.561800px;}
.y22e{bottom:263.911800px;}
.y12e{bottom:263.948700px;}
.y178{bottom:265.796550px;}
.y1e9{bottom:271.210350px;}
.y41{bottom:272.017800px;}
.y89{bottom:272.064300px;}
.y103{bottom:273.020700px;}
.y192{bottom:273.140700px;}
.ya7{bottom:273.714300px;}
.y64{bottom:273.994350px;}
.y1ae{bottom:275.028300px;}
.ydf{bottom:275.094300px;}
.y1c4{bottom:275.394300px;}
.yc9{bottom:275.514300px;}
.y154{bottom:277.490700px;}
.y20a{bottom:278.997000px;}
.y1b{bottom:281.985600px;}
.y22d{bottom:283.711800px;}
.y12d{bottom:285.404700px;}
.y177{bottom:286.640550px;}
.y102{bottom:291.463950px;}
.y1e8{bottom:292.810350px;}
.y88{bottom:293.214300px;}
.y40{bottom:293.413800px;}
.y191{bottom:294.596700px;}
.ya6{bottom:295.314300px;}
.y63{bottom:295.450350px;}
.y1ad{bottom:296.772300px;}
.yde{bottom:296.838300px;}
.yc8{bottom:297.114300px;}
.y1be{bottom:297.138300px;}
.y209{bottom:298.648500px;}
.y153{bottom:299.684700px;}
.y250{bottom:300.061800px;}
.y1a{bottom:301.637100px;}
.y22c{bottom:303.511800px;}
.y12c{bottom:306.860700px;}
.y176{bottom:307.484550px;}
.y101{bottom:309.907200px;}
.y87{bottom:314.364300px;}
.y1e7{bottom:314.410350px;}
.y3f{bottom:314.707800px;}
.y190{bottom:316.052700px;}
.y62{bottom:316.906350px;}
.ya5{bottom:316.914300px;}
.y1ac{bottom:318.516300px;}
.ydd{bottom:318.582300px;}
.y1bd{bottom:318.882300px;}
.y19{bottom:321.288600px;}
.y152{bottom:321.878700px;}
.y22b{bottom:323.311800px;}
.y260{bottom:325.111800px;}
.y208{bottom:326.802450px;}
.y175{bottom:328.328550px;}
.y100{bottom:328.350450px;}
.yc7{bottom:333.714300px;}
.y86{bottom:335.514300px;}
.y3e{bottom:336.001800px;}
.y1e6{bottom:336.010350px;}
.y18f{bottom:337.508700px;}
.y24f{bottom:337.555800px;}
.y61{bottom:338.362350px;}
.ya4{bottom:338.514300px;}
.y1ab{bottom:340.260300px;}
.ydc{bottom:340.326300px;}
.y1bc{bottom:340.626300px;}
.y25f{bottom:343.111800px;}
.y151{bottom:344.072700px;}
.yff{bottom:346.793700px;}
.y174{bottom:349.172550px;}
.y18{bottom:349.442550px;}
.yc6{bottom:355.314300px;}
.y85{bottom:356.664300px;}
.y3d{bottom:357.295800px;}
.y1e5{bottom:357.610350px;}
.y12b{bottom:358.178700px;}
.y18e{bottom:358.964700px;}
.y24e{bottom:359.011800px;}
.y60{bottom:359.818350px;}
.ya3{bottom:360.114300px;}
.y22a{bottom:361.111800px;}
.y1aa{bottom:362.004300px;}
.ydb{bottom:362.070300px;}
.y1bb{bottom:362.370300px;}
.yfe{bottom:365.236950px;}
.y150{bottom:366.266700px;}
.y173{bottom:370.016550px;}
.y207{bottom:374.592900px;}
.y12a{bottom:376.023450px;}
.y84{bottom:377.814300px;}
.y3c{bottom:378.589800px;}
.y25e{bottom:379.111800px;}
.y1e4{bottom:379.210350px;}
.y18d{bottom:380.420700px;}
.y24d{bottom:380.461800px;}
.y5f{bottom:381.274350px;}
.yfd{bottom:383.680200px;}
.y1a9{bottom:383.748300px;}
.yda{bottom:383.814300px;}
.y1ba{bottom:384.114300px;}
.y14f{bottom:388.460700px;}
.y172{bottom:390.860550px;}
.y17{bottom:392.324550px;}
.y129{bottom:393.868200px;}
.y206{bottom:394.244400px;}
.ya2{bottom:396.714300px;}
.y229{bottom:398.911800px;}
.y83{bottom:398.964300px;}
.y3b{bottom:399.883800px;}
.y1e3{bottom:400.810350px;}
.y18c{bottom:401.876700px;}
.yfc{bottom:402.123450px;}
.y5e{bottom:402.730350px;}
.y1a8{bottom:405.492300px;}
.yd9{bottom:405.564300px;}
.y1b9{bottom:405.858300px;}
.yc5{bottom:407.010300px;}
.y14e{bottom:410.654700px;}
.y171{bottom:411.704550px;}
.y128{bottom:411.712950px;}
.y16{bottom:411.976050px;}
.y205{bottom:413.895900px;}
.y25d{bottom:418.711800px;}
.y82{bottom:420.114300px;}
.y228{bottom:420.511800px;}
.yfb{bottom:420.566700px;}
.y3a{bottom:421.177800px;}
.y1e2{bottom:422.410350px;}
.y18b{bottom:423.332700px;}
.y5d{bottom:424.186350px;}
.y1a7{bottom:427.236300px;}
.y1b8{bottom:427.602300px;}
.y24c{bottom:428.011800px;}
.yc4{bottom:428.754300px;}
.y127{bottom:429.557700px;}
.y15{bottom:431.627550px;}
.y170{bottom:432.548550px;}
.y204{bottom:433.547400px;}
.y25c{bottom:438.511800px;}
.yfa{bottom:439.009950px;}
.yd8{bottom:440.670300px;}
.y81{bottom:441.264300px;}
.y227{bottom:442.111800px;}
.y39{bottom:442.471800px;}
.y1e1{bottom:444.010350px;}
.y18a{bottom:444.788700px;}
.y14d{bottom:445.591200px;}
.y5c{bottom:445.642350px;}
.y24b{bottom:445.861800px;}
.y126{bottom:447.402450px;}
.ya1{bottom:448.314300px;}
.y1a6{bottom:448.980300px;}
.y1b7{bottom:449.346300px;}
.yc3{bottom:450.498300px;}
.y14{bottom:451.279050px;}
.y203{bottom:453.198900px;}
.y16f{bottom:453.392550px;}
.yf9{bottom:457.453200px;}
.y80{bottom:462.414300px;}
.y24a{bottom:463.711800px;}
.y38{bottom:463.765800px;}
.y14c{bottom:464.191950px;}
.y125{bottom:465.247200px;}
.y1e0{bottom:465.610350px;}
.y189{bottom:466.244700px;}
.y5b{bottom:467.098350px;}
.ya0{bottom:469.914300px;}
.y1a5{bottom:470.724300px;}
.y13{bottom:470.930550px;}
.y1b6{bottom:471.090300px;}
.yc2{bottom:472.242300px;}
.y202{bottom:472.850400px;}
.y25b{bottom:473.311800px;}
.y16e{bottom:474.236550px;}
.yf8{bottom:475.896450px;}
.y249{bottom:481.561800px;}
.y14b{bottom:482.792700px;}
.y124{bottom:483.091950px;}
.y7f{bottom:483.564300px;}
.y37{bottom:485.059800px;}
.y1df{bottom:487.210350px;}
.y188{bottom:487.700700px;}
.y5a{bottom:488.554350px;}
.y12{bottom:490.582050px;}
.y9f{bottom:491.514300px;}
.y1a4{bottom:492.468300px;}
.y201{bottom:492.501900px;}
.y1b5{bottom:492.834300px;}
.y25a{bottom:493.111800px;}
.yc1{bottom:493.986300px;}
.yf7{bottom:494.339700px;}
.y16d{bottom:495.080550px;}
.y123{bottom:500.936700px;}
.y14a{bottom:501.393450px;}
.y226{bottom:503.311800px;}
.y7e{bottom:504.714300px;}
.y36{bottom:506.353800px;}
.y1de{bottom:508.810350px;}
.y187{bottom:509.156700px;}
.y59{bottom:510.010350px;}
.y11{bottom:510.233550px;}
.y200{bottom:512.153400px;}
.yf6{bottom:512.782950px;}
.y259{bottom:512.911800px;}
.y9e{bottom:513.114300px;}
.y1a3{bottom:514.212300px;}
.yd7{bottom:514.578300px;}
.yc0{bottom:515.730300px;}
.y16c{bottom:515.924550px;}
.y122{bottom:518.781450px;}
.y149{bottom:519.994200px;}
.y225{bottom:520.411800px;}
.y248{bottom:520.860300px;}
.y7d{bottom:525.864300px;}
.y35{bottom:527.647800px;}
.y10{bottom:529.885050px;}
.y1dd{bottom:530.410350px;}
.y186{bottom:530.612700px;}
.yf5{bottom:531.226200px;}
.y1ff{bottom:531.804900px;}
.y258{bottom:532.711800px;}
.y9d{bottom:534.714300px;}
.y1a2{bottom:535.956300px;}
.yd6{bottom:536.322300px;}
.y121{bottom:536.626200px;}
.y16b{bottom:536.768550px;}
.ybf{bottom:537.474300px;}
.y148{bottom:538.594950px;}
.y247{bottom:540.511800px;}
.y58{bottom:546.310350px;}
.y7c{bottom:547.014300px;}
.y34{bottom:548.941800px;}
.yf{bottom:549.536550px;}
.yf4{bottom:549.669450px;}
.y1fe{bottom:551.456400px;}
.y1dc{bottom:552.010350px;}
.y185{bottom:552.068700px;}
.y224{bottom:552.511800px;}
.y120{bottom:554.470950px;}
.y9c{bottom:556.314300px;}
.y147{bottom:557.195700px;}
.y16a{bottom:557.612550px;}
.y1a1{bottom:557.700300px;}
.yd5{bottom:558.066300px;}
.ybe{bottom:559.218300px;}
.yf3{bottom:568.112700px;}
.y7b{bottom:568.164300px;}
.ye{bottom:569.188050px;}
.y33{bottom:570.235800px;}
.y223{bottom:572.311800px;}
.y11f{bottom:572.315700px;}
.y184{bottom:573.524700px;}
.y1db{bottom:573.610350px;}
.y246{bottom:574.984800px;}
.y146{bottom:575.796450px;}
.y9b{bottom:577.914300px;}
.y169{bottom:578.456550px;}
.y1a0{bottom:579.444300px;}
.y1fd{bottom:579.610350px;}
.yd4{bottom:579.810300px;}
.ybd{bottom:580.962300px;}
.yf2{bottom:586.555950px;}
.yd{bottom:588.839550px;}
.y7a{bottom:589.314300px;}
.y11e{bottom:590.160450px;}
.y32{bottom:591.529800px;}
.y222{bottom:592.111800px;}
.y145{bottom:594.397200px;}
.y245{bottom:594.636300px;}
.y183{bottom:594.980700px;}
.y1da{bottom:595.210350px;}
.y57{bottom:597.382350px;}
.y168{bottom:599.300550px;}
.y19f{bottom:601.188300px;}
.yd3{bottom:601.554300px;}
.ybc{bottom:602.706300px;}
.y11d{bottom:608.005200px;}
.yc{bottom:608.491050px;}
.y79{bottom:610.464300px;}
.y221{bottom:611.911800px;}
.y31{bottom:612.823800px;}
.y144{bottom:612.997950px;}
.y244{bottom:614.287800px;}
.y9a{bottom:614.670300px;}
.y182{bottom:616.436700px;}
.y1d9{bottom:616.810350px;}
.yf1{bottom:617.761800px;}
.y56{bottom:618.838350px;}
.y19e{bottom:622.932300px;}
.yd2{bottom:623.298300px;}
.ybb{bottom:624.450300px;}
.y11c{bottom:625.849950px;}
.y1fc{bottom:627.330300px;}
.yb{bottom:628.142550px;}
.y143{bottom:631.598700px;}
.y78{bottom:631.614300px;}
.y220{bottom:631.711800px;}
.y243{bottom:633.939300px;}
.y30{bottom:634.117800px;}
.y167{bottom:634.400550px;}
.y99{bottom:636.414300px;}
.y181{bottom:637.892700px;}
.y1d8{bottom:638.410350px;}
.yf0{bottom:639.811800px;}
.y55{bottom:640.294350px;}
.y11b{bottom:643.694700px;}
.y19d{bottom:644.676300px;}
.yd1{bottom:645.042300px;}
.yba{bottom:646.194300px;}
.y1fb{bottom:648.786300px;}
.y142{bottom:650.199450px;}
.y21f{bottom:651.511800px;}
.y77{bottom:652.764300px;}
.y242{bottom:653.590800px;}
.y2f{bottom:655.435800px;}
.ya{bottom:656.296500px;}
.y180{bottom:659.348700px;}
.y1d7{bottom:660.010350px;}
.y11a{bottom:661.539450px;}
.y54{bottom:661.750350px;}
.yef{bottom:661.861800px;}
.y19c{bottom:666.420300px;}
.yd0{bottom:666.786300px;}
.yb9{bottom:667.938300px;}
.y141{bottom:668.800200px;}
.y1fa{bottom:670.242300px;}
.y21e{bottom:671.311800px;}
.y241{bottom:673.242300px;}
.y76{bottom:673.914300px;}
.y2e{bottom:676.729800px;}
.y119{bottom:679.384200px;}
.y17f{bottom:680.804700px;}
.y1d6{bottom:681.610350px;}
.y53{bottom:683.206350px;}
.y166{bottom:683.754300px;}
.yee{bottom:683.911800px;}
.y140{bottom:687.400950px;}
.y19b{bottom:688.164300px;}
.y98{bottom:688.530300px;}
.yb8{bottom:689.682300px;}
.y21d{bottom:691.111800px;}
.y1f9{bottom:691.698300px;}
.y240{bottom:692.893800px;}
.y75{bottom:695.064300px;}
.y118{bottom:697.228950px;}
.y2d{bottom:698.023800px;}
.y165{bottom:701.000550px;}
.y1d5{bottom:703.210350px;}
.y52{bottom:704.662350px;}
.yed{bottom:705.961800px;}
.y13f{bottom:706.001700px;}
.y9{bottom:707.445000px;}
.y97{bottom:710.274300px;}
.y21c{bottom:710.911800px;}
.yb7{bottom:711.426300px;}
.y23f{bottom:712.545300px;}
.y1f8{bottom:713.154300px;}
.y117{bottom:715.073700px;}
.y74{bottom:716.214300px;}
.y2c{bottom:719.317800px;}
.y13e{bottom:724.602450px;}
.y1d4{bottom:724.810350px;}
.y19a{bottom:724.914300px;}
.y51{bottom:726.118350px;}
.y8{bottom:727.096500px;}
.y21b{bottom:730.711800px;}
.y164{bottom:731.006400px;}
.y96{bottom:732.018300px;}
.y23e{bottom:732.196800px;}
.y116{bottom:732.918450px;}
.yb6{bottom:733.170300px;}
.y1f7{bottom:734.610300px;}
.y73{bottom:737.364300px;}
.y2b{bottom:740.641800px;}
.y13d{bottom:743.203200px;}
.yec{bottom:743.461800px;}
.y1d3{bottom:746.410350px;}
.y199{bottom:746.514300px;}
.y50{bottom:747.574350px;}
.y21a{bottom:750.511800px;}
.y115{bottom:750.763200px;}
.y23d{bottom:751.848300px;}
.y95{bottom:753.762300px;}
.yb5{bottom:754.914300px;}
.y1f6{bottom:756.066300px;}
.y72{bottom:758.514300px;}
.y163{bottom:760.386600px;}
.y13c{bottom:761.803950px;}
.y2a{bottom:761.935800px;}
.yeb{bottom:765.511800px;}
.y1d2{bottom:768.010350px;}
.y7{bottom:768.202500px;}
.y114{bottom:768.607950px;}
.y4f{bottom:769.030350px;}
.y219{bottom:770.311800px;}
.y23c{bottom:771.499800px;}
.y94{bottom:775.506300px;}
.yb4{bottom:776.514300px;}
.y1f5{bottom:777.522300px;}
.y162{bottom:777.632850px;}
.y71{bottom:779.664300px;}
.y13b{bottom:780.404700px;}
.y29{bottom:783.229800px;}
.y113{bottom:786.452700px;}
.y1d1{bottom:789.610350px;}
.y218{bottom:790.111800px;}
.y4e{bottom:790.486350px;}
.y23b{bottom:791.151300px;}
.y161{bottom:794.879100px;}
.y93{bottom:797.250300px;}
.yb3{bottom:798.114300px;}
.y6{bottom:798.649500px;}
.y1f4{bottom:798.978300px;}
.y13a{bottom:799.005450px;}
.y70{bottom:800.814300px;}
.y112{bottom:804.297450px;}
.y28{bottom:804.523800px;}
.y217{bottom:809.911800px;}
.y23a{bottom:810.802800px;}
.y1d0{bottom:811.210350px;}
.y4d{bottom:811.942350px;}
.y160{bottom:812.125350px;}
.y139{bottom:817.606200px;}
.yea{bottom:818.461800px;}
.y92{bottom:818.994300px;}
.yb2{bottom:819.714300px;}
.y1f3{bottom:820.434300px;}
.y6f{bottom:821.964300px;}
.y111{bottom:822.142200px;}
.y26{bottom:825.811800px;}
.y27{bottom:825.817800px;}
.y5{bottom:829.096500px;}
.y15f{bottom:829.371600px;}
.y216{bottom:829.711800px;}
.y239{bottom:830.454300px;}
.y1cf{bottom:832.810350px;}
.y4c{bottom:833.398350px;}
.y138{bottom:836.206950px;}
.y110{bottom:839.986950px;}
.ye9{bottom:840.511800px;}
.y91{bottom:840.738300px;}
.yb1{bottom:841.314300px;}
.y1f2{bottom:841.890300px;}
.y6e{bottom:843.114300px;}
.y15e{bottom:846.617850px;}
.y215{bottom:849.511800px;}
.y238{bottom:850.105800px;}
.y1ce{bottom:854.410350px;}
.y137{bottom:854.807700px;}
.y4b{bottom:854.854350px;}
.y10f{bottom:857.831700px;}
.y90{bottom:862.482300px;}
.ye8{bottom:862.561800px;}
.yb0{bottom:862.914300px;}
.y1f1{bottom:863.346300px;}
.y15d{bottom:863.864100px;}
.y6d{bottom:864.264300px;}
.y214{bottom:869.311800px;}
.y237{bottom:869.757300px;}
.y136{bottom:873.408450px;}
.y10e{bottom:875.676450px;}
.y1cd{bottom:876.010350px;}
.y4a{bottom:876.310350px;}
.y15c{bottom:881.110350px;}
.y4{bottom:884.206800px;}
.y8f{bottom:884.226300px;}
.yaf{bottom:884.514300px;}
.ye7{bottom:884.611800px;}
.y1f0{bottom:884.802300px;}
.y6c{bottom:885.414300px;}
.y213{bottom:889.111800px;}
.y236{bottom:889.408800px;}
.y25{bottom:889.705800px;}
.y135{bottom:892.009200px;}
.y10d{bottom:893.521200px;}
.y1cc{bottom:897.610350px;}
.y8e{bottom:905.970300px;}
.yae{bottom:906.114300px;}
.y49{bottom:906.258300px;}
.y6b{bottom:906.564300px;}
.ye6{bottom:906.661800px;}
.y15b{bottom:906.870300px;}
.y212{bottom:908.911800px;}
.y235{bottom:909.060300px;}
.y24{bottom:909.208800px;}
.y134{bottom:910.609950px;}
.y3{bottom:910.711800px;}
.y10c{bottom:911.365950px;}
.y48{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y10b{bottom:929.210700px;}
.hc{height:30.568359px;}
.h8{height:35.663086px;}
.h3{height:40.757812px;}
.h2{height:43.989258px;}
.he{height:47.988281px;}
.hd{height:48.399902px;}
.h12{height:50.244141px;}
.h5{height:50.947266px;}
.h10{height:52.756348px;}
.hf{height:53.494629px;}
.h4{height:56.041992px;}
.h11{height:60.292969px;}
.h7{height:61.136719px;}
.hb{height:62.914031px;}
.ha{height:63.226031px;}
.h6{height:86.610352px;}
.h9{height:177.434042px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x1{left:95.574750px;}
.x5{left:97.795350px;}
.x8{left:119.045250px;}
.x7{left:135.297300px;}
.x9{left:140.301900px;}
.x6{left:150.670350px;}
.xc{left:199.865850px;}
.x4{left:212.438550px;}
.xd{left:243.031200px;}
.xb{left:509.980350px;}
.xa{left:518.943600px;}
.x2{left:575.539350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.573333pt;}
.v2{vertical-align:75.733333pt;}
.ls64{letter-spacing:-8.736000pt;}
.ls36{letter-spacing:-6.528000pt;}
.ls6d{letter-spacing:-6.400000pt;}
.ls69{letter-spacing:-5.600000pt;}
.ls82{letter-spacing:-2.288000pt;}
.ls55{letter-spacing:-2.184000pt;}
.ls7a{letter-spacing:-1.152000pt;}
.ls8e{letter-spacing:-1.056000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls78{letter-spacing:-0.896000pt;}
.ls79{letter-spacing:-0.768000pt;}
.ls83{letter-spacing:-0.762667pt;}
.ls49{letter-spacing:-0.728000pt;}
.ls7b{letter-spacing:-0.704000pt;}
.ls4a{letter-spacing:-0.672000pt;}
.ls84{letter-spacing:-0.645333pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls81{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls65{letter-spacing:-0.560000pt;}
.ls8d{letter-spacing:-0.528000pt;}
.ls2c{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.469333pt;}
.ls2d{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.410667pt;}
.ls66{letter-spacing:-0.392000pt;}
.ls35{letter-spacing:-0.384000pt;}
.ls94{letter-spacing:-0.352000pt;}
.ls23{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.293333pt;}
.ls68{letter-spacing:-0.280000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls93{letter-spacing:-0.234667pt;}
.ls6a{letter-spacing:-0.224000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls8f{letter-spacing:-0.176000pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls4b{letter-spacing:-0.112000pt;}
.ls22{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.058667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.056000pt;}
.ls13{letter-spacing:0.058667pt;}
.ls27{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.067200pt;}
.ls60{letter-spacing:0.095200pt;}
.ls95{letter-spacing:0.117333pt;}
.ls18{letter-spacing:0.128000pt;}
.ls96{letter-spacing:0.176000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls92{letter-spacing:0.234667pt;}
.ls21{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.293333pt;}
.ls19{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.336000pt;}
.ls87{letter-spacing:0.352000pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls8b{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.469333pt;}
.ls7{letter-spacing:0.492800pt;}
.ls1f{letter-spacing:0.494400pt;}
.ls44{letter-spacing:0.504000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.528000pt;}
.ls24{letter-spacing:0.576000pt;}
.ls88{letter-spacing:0.586667pt;}
.ls6c{letter-spacing:0.616000pt;}
.ls25{letter-spacing:0.640000pt;}
.ls8c{letter-spacing:0.645333pt;}
.ls31{letter-spacing:0.704000pt;}
.ls3f{letter-spacing:0.768000pt;}
.ls71{letter-spacing:0.780800pt;}
.ls70{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls1b{letter-spacing:0.896000pt;}
.ls3e{letter-spacing:0.960000pt;}
.ls63{letter-spacing:0.985600pt;}
.ls1c{letter-spacing:1.088000pt;}
.ls7c{letter-spacing:1.152000pt;}
.ls32{letter-spacing:1.344000pt;}
.lsa{letter-spacing:1.384533pt;}
.ls97{letter-spacing:1.542933pt;}
.ls4d{letter-spacing:1.652000pt;}
.ls5c{letter-spacing:1.680000pt;}
.ls4c{letter-spacing:1.691200pt;}
.ls4f{letter-spacing:1.708000pt;}
.ls38{letter-spacing:1.984000pt;}
.ls39{letter-spacing:2.048000pt;}
.ls67{letter-spacing:2.112000pt;}
.ls7e{letter-spacing:2.288000pt;}
.ls62{letter-spacing:2.464000pt;}
.ls5e{letter-spacing:2.553600pt;}
.ls53{letter-spacing:2.581600pt;}
.ls6e{letter-spacing:2.816000pt;}
.ls61{letter-spacing:2.884000pt;}
.ls14{letter-spacing:3.168000pt;}
.ls2a{letter-spacing:3.200000pt;}
.ls76{letter-spacing:3.264000pt;}
.ls72{letter-spacing:3.328000pt;}
.ls40{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls37{letter-spacing:3.904000pt;}
.ls54{letter-spacing:3.920000pt;}
.ls5a{letter-spacing:3.931200pt;}
.ls5d{letter-spacing:3.936800pt;}
.ls4e{letter-spacing:3.942400pt;}
.ls41{letter-spacing:3.953600pt;}
.ls45{letter-spacing:3.959200pt;}
.ls52{letter-spacing:3.964800pt;}
.ls46{letter-spacing:3.970400pt;}
.ls42{letter-spacing:3.976000pt;}
.ls59{letter-spacing:3.992800pt;}
.ls6{letter-spacing:4.317867pt;}
.ls77{letter-spacing:4.352000pt;}
.ls48{letter-spacing:4.480000pt;}
.ls5f{letter-spacing:4.544000pt;}
.ls16{letter-spacing:4.619675pt;}
.ls51{letter-spacing:4.928000pt;}
.ls9{letter-spacing:5.033600pt;}
.ls90{letter-spacing:5.062933pt;}
.lsd{letter-spacing:5.066667pt;}
.lsb{letter-spacing:5.104000pt;}
.ls6f{letter-spacing:5.120000pt;}
.ls7d{letter-spacing:5.333333pt;}
.ls98{letter-spacing:5.549867pt;}
.ls3d{letter-spacing:5.632000pt;}
.ls9b{letter-spacing:5.653333pt;}
.ls50{letter-spacing:5.712000pt;}
.ls2{letter-spacing:5.866667pt;}
.ls1{letter-spacing:5.881481pt;}
.ls9a{letter-spacing:6.259733pt;}
.ls99{letter-spacing:6.365333pt;}
.ls4{letter-spacing:6.400000pt;}
.ls5b{letter-spacing:6.888000pt;}
.ls26{letter-spacing:7.040000pt;}
.ls56{letter-spacing:7.784000pt;}
.ls91{letter-spacing:7.990400pt;}
.ls34{letter-spacing:8.128000pt;}
.ls58{letter-spacing:8.276800pt;}
.ls43{letter-spacing:8.400000pt;}
.ls89{letter-spacing:8.682667pt;}
.ls7f{letter-spacing:8.976000pt;}
.ls3a{letter-spacing:9.062400pt;}
.ls3{letter-spacing:9.066667pt;}
.ls75{letter-spacing:9.088000pt;}
.ls3c{letter-spacing:9.120000pt;}
.ls3b{letter-spacing:9.126400pt;}
.ls33{letter-spacing:9.344000pt;}
.ls80{letter-spacing:9.738667pt;}
.ls74{letter-spacing:9.856000pt;}
.ls73{letter-spacing:9.984000pt;}
.ls86{letter-spacing:10.090667pt;}
.ls85{letter-spacing:10.442667pt;}
.ls8a{letter-spacing:17.600000pt;}
.ws7e{word-spacing:-34.085333pt;}
.ws0{word-spacing:-24.384000pt;}
.ws74{word-spacing:-20.320000pt;}
.ws22{word-spacing:-17.984000pt;}
.ws92{word-spacing:-17.600000pt;}
.ws65{word-spacing:-16.640000pt;}
.ws66{word-spacing:-16.608000pt;}
.ws67{word-spacing:-16.588800pt;}
.ws43{word-spacing:-16.576000pt;}
.ws61{word-spacing:-16.512000pt;}
.ws26{word-spacing:-16.320000pt;}
.ws32{word-spacing:-16.192000pt;}
.ws24{word-spacing:-16.128000pt;}
.ws33{word-spacing:-16.064000pt;}
.ws72{word-spacing:-16.000000pt;}
.ws41{word-spacing:-15.936000pt;}
.ws27{word-spacing:-15.872000pt;}
.ws31{word-spacing:-15.808000pt;}
.ws51{word-spacing:-15.736000pt;}
.ws3b{word-spacing:-15.680000pt;}
.ws28{word-spacing:-15.616000pt;}
.ws23{word-spacing:-15.488000pt;}
.ws3a{word-spacing:-15.424000pt;}
.ws25{word-spacing:-15.360000pt;}
.ws14{word-spacing:-14.986667pt;}
.ws7f{word-spacing:-14.901333pt;}
.ws93{word-spacing:-14.666667pt;}
.ws1{word-spacing:-14.490667pt;}
.ws80{word-spacing:-14.432000pt;}
.ws47{word-spacing:-14.280000pt;}
.ws8b{word-spacing:-14.197333pt;}
.ws8c{word-spacing:-14.138667pt;}
.ws2{word-spacing:-14.080000pt;}
.ws48{word-spacing:-13.832000pt;}
.ws4a{word-spacing:-13.720000pt;}
.ws5b{word-spacing:-13.552000pt;}
.ws57{word-spacing:-13.272000pt;}
.ws49{word-spacing:-13.160000pt;}
.ws81{word-spacing:-10.442667pt;}
.ws83{word-spacing:-10.090667pt;}
.ws68{word-spacing:-9.984000pt;}
.ws69{word-spacing:-9.856000pt;}
.ws7d{word-spacing:-9.738667pt;}
.ws6a{word-spacing:-9.088000pt;}
.ws5{word-spacing:-9.066667pt;}
.ws7a{word-spacing:-8.976000pt;}
.ws87{word-spacing:-8.682667pt;}
.ws55{word-spacing:-7.784000pt;}
.wse{word-spacing:-6.400000pt;}
.ws4{word-spacing:-5.866667pt;}
.ws97{word-spacing:-5.653333pt;}
.ws42{word-spacing:-5.632000pt;}
.ws76{word-spacing:-5.333333pt;}
.ws56{word-spacing:-5.096000pt;}
.ws6{word-spacing:-5.066667pt;}
.ws4b{word-spacing:-4.480000pt;}
.ws6d{word-spacing:-4.352000pt;}
.ws53{word-spacing:-3.920000pt;}
.ws16{word-spacing:-3.733333pt;}
.ws44{word-spacing:-3.578667pt;}
.ws6b{word-spacing:-3.264000pt;}
.ws39{word-spacing:-3.200000pt;}
.ws11{word-spacing:-3.168000pt;}
.ws78{word-spacing:-2.288000pt;}
.ws75{word-spacing:-1.152000pt;}
.ws1b{word-spacing:-1.088000pt;}
.ws1a{word-spacing:-0.896000pt;}
.ws21{word-spacing:-0.832000pt;}
.ws60{word-spacing:-0.768000pt;}
.ws38{word-spacing:-0.704000pt;}
.ws82{word-spacing:-0.645333pt;}
.ws2f{word-spacing:-0.640000pt;}
.ws63{word-spacing:-0.616000pt;}
.ws85{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.528000pt;}
.ws1f{word-spacing:-0.512000pt;}
.ws4d{word-spacing:-0.504000pt;}
.ws13{word-spacing:-0.469333pt;}
.ws17{word-spacing:-0.448000pt;}
.ws8a{word-spacing:-0.410667pt;}
.ws36{word-spacing:-0.384000pt;}
.ws84{word-spacing:-0.352000pt;}
.ws62{word-spacing:-0.336000pt;}
.ws19{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.293333pt;}
.ws1d{word-spacing:-0.256000pt;}
.ws8f{word-spacing:-0.234667pt;}
.ws73{word-spacing:-0.192000pt;}
.ws95{word-spacing:-0.176000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws94{word-spacing:-0.117333pt;}
.ws30{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.058667pt;}
.ws58{word-spacing:-0.056000pt;}
.ws46{word-spacing:-0.053333pt;}
.ws15{word-spacing:-0.038400pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.058667pt;}
.ws1e{word-spacing:0.064000pt;}
.ws50{word-spacing:0.112000pt;}
.ws9{word-spacing:0.117333pt;}
.ws29{word-spacing:0.128000pt;}
.ws89{word-spacing:0.176000pt;}
.ws2a{word-spacing:0.192000pt;}
.ws5f{word-spacing:0.224000pt;}
.ws8d{word-spacing:0.234667pt;}
.ws1c{word-spacing:0.256000pt;}
.ws5d{word-spacing:0.280000pt;}
.ws7{word-spacing:0.293333pt;}
.ws20{word-spacing:0.320000pt;}
.ws8e{word-spacing:0.352000pt;}
.ws3c{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.392000pt;}
.wsd{word-spacing:0.410667pt;}
.ws3d{word-spacing:0.448000pt;}
.wsc{word-spacing:0.469333pt;}
.ws2e{word-spacing:0.512000pt;}
.ws86{word-spacing:0.528000pt;}
.ws59{word-spacing:0.560000pt;}
.ws35{word-spacing:0.576000pt;}
.ws77{word-spacing:0.586667pt;}
.ws34{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.645333pt;}
.ws4f{word-spacing:0.672000pt;}
.ws71{word-spacing:0.704000pt;}
.ws4e{word-spacing:0.728000pt;}
.ws7b{word-spacing:0.762667pt;}
.ws6f{word-spacing:0.768000pt;}
.ws6e{word-spacing:0.896000pt;}
.ws2d{word-spacing:0.960000pt;}
.ws88{word-spacing:1.056000pt;}
.ws70{word-spacing:1.152000pt;}
.ws54{word-spacing:2.184000pt;}
.ws79{word-spacing:2.288000pt;}
.ws3f{word-spacing:2.432000pt;}
.ws6c{word-spacing:2.880000pt;}
.ws37{word-spacing:3.008000pt;}
.ws4c{word-spacing:3.472000pt;}
.ws5c{word-spacing:3.623200pt;}
.ws45{word-spacing:4.106667pt;}
.ws2c{word-spacing:4.480000pt;}
.ws40{word-spacing:4.800000pt;}
.ws96{word-spacing:4.869333pt;}
.ws10{word-spacing:4.928000pt;}
.ws52{word-spacing:5.096000pt;}
.ws90{word-spacing:5.456000pt;}
.ws5e{word-spacing:5.600000pt;}
.ws64{word-spacing:6.400000pt;}
.ws3e{word-spacing:6.528000pt;}
.ws91{word-spacing:6.629333pt;}
.wsb{word-spacing:7.216000pt;}
._17{margin-left:-13.041600pt;}
._15{margin-left:-11.739200pt;}
._1b{margin-left:-10.105067pt;}
._7{margin-left:-9.021333pt;}
._10{margin-left:-7.967467pt;}
._9{margin-left:-7.000533pt;}
._1{margin-left:-5.854933pt;}
._d{margin-left:-4.542400pt;}
._14{margin-left:-3.430400pt;}
._5{margin-left:-2.501333pt;}
._4{margin-left:-1.605333pt;}
._b{width:1.094933pt;}
._c{width:2.165333pt;}
._3{width:3.792000pt;}
._a{width:4.806400pt;}
._2{width:5.866667pt;}
._e{width:6.822933pt;}
._f{width:7.790933pt;}
._8{width:9.066667pt;}
._0{width:10.008533pt;}
._11{width:10.909867pt;}
._13{width:11.815467pt;}
._1a{width:13.069333pt;}
._16{width:13.974400pt;}
._6{width:15.467733pt;}
._18{width:17.850133pt;}
._19{width:18.996267pt;}
._12{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs6{font-size:185.744000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.970533pt;}
.y23{bottom:67.857200pt;}
.y211{bottom:125.721333pt;}
.y17e{bottom:125.777600pt;}
.y1ef{bottom:125.875867pt;}
.y133{bottom:127.293733pt;}
.y8d{bottom:127.834933pt;}
.y1c3{bottom:127.968267pt;}
.yad{bottom:128.101600pt;}
.y22{bottom:128.377867pt;}
.y10a{bottom:128.459067pt;}
.ye5{bottom:128.560267pt;}
.y257{bottom:128.580267pt;}
.y1cb{bottom:128.826933pt;}
.y1ca{bottom:128.954933pt;}
.y234{bottom:128.988267pt;}
.y6a{bottom:129.118533pt;}
.y1b4{bottom:129.141600pt;}
.y198{bottom:129.447733pt;}
.y47{bottom:129.657733pt;}
.ycf{bottom:129.701600pt;}
.y15a{bottom:130.105867pt;}
.y17d{bottom:141.779600pt;}
.y210{bottom:143.189333pt;}
.y132{bottom:143.295733pt;}
.y109{bottom:144.321067pt;}
.y46{bottom:144.324400pt;}
.y1ee{bottom:145.075867pt;}
.y21{bottom:145.845867pt;}
.y256{bottom:146.048267pt;}
.y159{bottom:146.499867pt;}
.y233{bottom:146.588267pt;}
.y8c{bottom:146.634933pt;}
.y1c2{bottom:147.168267pt;}
.yac{bottom:147.301600pt;}
.ye4{bottom:147.888267pt;}
.y197{bottom:147.975733pt;}
.y1c9{bottom:148.154933pt;}
.y69{bottom:148.190533pt;}
.y1b3{bottom:148.469600pt;}
.yce{bottom:148.901600pt;}
.y45{bottom:154.055067pt;}
.y17c{bottom:157.109600pt;}
.y131{bottom:159.297733pt;}
.y20f{bottom:160.657333pt;}
.y108{bottom:160.715067pt;}
.y158{bottom:162.893867pt;}
.y20{bottom:163.313867pt;}
.y255{bottom:163.516267pt;}
.y232{bottom:164.188267pt;}
.y1ed{bottom:164.275867pt;}
.y8b{bottom:165.434933pt;}
.y1c1{bottom:166.368267pt;}
.yab{bottom:166.501600pt;}
.y196{bottom:166.503733pt;}
.ye3{bottom:167.216267pt;}
.y68{bottom:167.262533pt;}
.y1c8{bottom:167.482933pt;}
.y1b2{bottom:167.669600pt;}
.ycd{bottom:168.101600pt;}
.y44{bottom:168.723067pt;}
.y17b{bottom:172.439600pt;}
.y130{bottom:175.159733pt;}
.y107{bottom:177.109067pt;}
.y20e{bottom:178.125333pt;}
.y157{bottom:179.287867pt;}
.y1f{bottom:180.781867pt;}
.y254{bottom:180.984267pt;}
.y231{bottom:181.788267pt;}
.y1ec{bottom:183.475867pt;}
.y1c0{bottom:185.568267pt;}
.y195{bottom:185.575733pt;}
.yaa{bottom:185.701600pt;}
.y67{bottom:186.334533pt;}
.ye2{bottom:186.544267pt;}
.y1c7{bottom:186.810933pt;}
.y1b1{bottom:186.869600pt;}
.ycc{bottom:187.301600pt;}
.y43{bottom:188.324400pt;}
.y106{bottom:193.503067pt;}
.y20d{bottom:195.593333pt;}
.y8a{bottom:197.168267pt;}
.y1e{bottom:198.249867pt;}
.y253{bottom:198.452267pt;}
.y17a{bottom:199.207600pt;}
.y230{bottom:199.388267pt;}
.y12f{bottom:202.364933pt;}
.y1eb{bottom:202.675867pt;}
.y194{bottom:204.647733pt;}
.ya9{bottom:204.901600pt;}
.y66{bottom:205.406533pt;}
.ye1{bottom:205.872267pt;}
.y1b0{bottom:206.069600pt;}
.y1c6{bottom:206.138933pt;}
.ycb{bottom:206.501600pt;}
.y156{bottom:207.202400pt;}
.y105{bottom:209.897067pt;}
.y20c{bottom:213.061333pt;}
.y1d{bottom:215.717867pt;}
.y252{bottom:215.920267pt;}
.y22f{bottom:216.988267pt;}
.y179{bottom:217.735600pt;}
.y1bf{bottom:218.101600pt;}
.y1ea{bottom:221.875867pt;}
.y42{bottom:222.593600pt;}
.y193{bottom:223.719733pt;}
.ya8{bottom:224.101600pt;}
.y65{bottom:224.478533pt;}
.ye0{bottom:225.200267pt;}
.y1af{bottom:225.269600pt;}
.y1c5{bottom:225.466933pt;}
.yca{bottom:225.701600pt;}
.y104{bottom:226.291067pt;}
.y155{bottom:226.930400pt;}
.y20b{bottom:230.529333pt;}
.y1c{bottom:233.185867pt;}
.y251{bottom:233.388267pt;}
.y22e{bottom:234.588267pt;}
.y12e{bottom:234.621067pt;}
.y178{bottom:236.263600pt;}
.y1e9{bottom:241.075867pt;}
.y41{bottom:241.793600pt;}
.y89{bottom:241.834933pt;}
.y103{bottom:242.685067pt;}
.y192{bottom:242.791733pt;}
.ya7{bottom:243.301600pt;}
.y64{bottom:243.550533pt;}
.y1ae{bottom:244.469600pt;}
.ydf{bottom:244.528267pt;}
.y1c4{bottom:244.794933pt;}
.yc9{bottom:244.901600pt;}
.y154{bottom:246.658400pt;}
.y20a{bottom:247.997333pt;}
.y1b{bottom:250.653867pt;}
.y22d{bottom:252.188267pt;}
.y12d{bottom:253.693067pt;}
.y177{bottom:254.791600pt;}
.y102{bottom:259.079067pt;}
.y1e8{bottom:260.275867pt;}
.y88{bottom:260.634933pt;}
.y40{bottom:260.812267pt;}
.y191{bottom:261.863733pt;}
.ya6{bottom:262.501600pt;}
.y63{bottom:262.622533pt;}
.y1ad{bottom:263.797600pt;}
.yde{bottom:263.856267pt;}
.yc8{bottom:264.101600pt;}
.y1be{bottom:264.122933pt;}
.y209{bottom:265.465333pt;}
.y153{bottom:266.386400pt;}
.y250{bottom:266.721600pt;}
.y1a{bottom:268.121867pt;}
.y22c{bottom:269.788267pt;}
.y12c{bottom:272.765067pt;}
.y176{bottom:273.319600pt;}
.y101{bottom:275.473067pt;}
.y87{bottom:279.434933pt;}
.y1e7{bottom:279.475867pt;}
.y3f{bottom:279.740267pt;}
.y190{bottom:280.935733pt;}
.y62{bottom:281.694533pt;}
.ya5{bottom:281.701600pt;}
.y1ac{bottom:283.125600pt;}
.ydd{bottom:283.184267pt;}
.y1bd{bottom:283.450933pt;}
.y19{bottom:285.589867pt;}
.y152{bottom:286.114400pt;}
.y22b{bottom:287.388267pt;}
.y260{bottom:288.988267pt;}
.y208{bottom:290.491067pt;}
.y175{bottom:291.847600pt;}
.y100{bottom:291.867067pt;}
.yc7{bottom:296.634933pt;}
.y86{bottom:298.234933pt;}
.y3e{bottom:298.668267pt;}
.y1e6{bottom:298.675867pt;}
.y18f{bottom:300.007733pt;}
.y24f{bottom:300.049600pt;}
.y61{bottom:300.766533pt;}
.ya4{bottom:300.901600pt;}
.y1ab{bottom:302.453600pt;}
.ydc{bottom:302.512267pt;}
.y1bc{bottom:302.778933pt;}
.y25f{bottom:304.988267pt;}
.y151{bottom:305.842400pt;}
.yff{bottom:308.261067pt;}
.y174{bottom:310.375600pt;}
.y18{bottom:310.615600pt;}
.yc6{bottom:315.834933pt;}
.y85{bottom:317.034933pt;}
.y3d{bottom:317.596267pt;}
.y1e5{bottom:317.875867pt;}
.y12b{bottom:318.381067pt;}
.y18e{bottom:319.079733pt;}
.y24e{bottom:319.121600pt;}
.y60{bottom:319.838533pt;}
.ya3{bottom:320.101600pt;}
.y22a{bottom:320.988267pt;}
.y1aa{bottom:321.781600pt;}
.ydb{bottom:321.840267pt;}
.y1bb{bottom:322.106933pt;}
.yfe{bottom:324.655067pt;}
.y150{bottom:325.570400pt;}
.y173{bottom:328.903600pt;}
.y207{bottom:332.971467pt;}
.y12a{bottom:334.243067pt;}
.y84{bottom:335.834933pt;}
.y3c{bottom:336.524267pt;}
.y25e{bottom:336.988267pt;}
.y1e4{bottom:337.075867pt;}
.y18d{bottom:338.151733pt;}
.y24d{bottom:338.188267pt;}
.y5f{bottom:338.910533pt;}
.yfd{bottom:341.049067pt;}
.y1a9{bottom:341.109600pt;}
.yda{bottom:341.168267pt;}
.y1ba{bottom:341.434933pt;}
.y14f{bottom:345.298400pt;}
.y172{bottom:347.431600pt;}
.y17{bottom:348.732933pt;}
.y129{bottom:350.105067pt;}
.y206{bottom:350.439467pt;}
.ya2{bottom:352.634933pt;}
.y229{bottom:354.588267pt;}
.y83{bottom:354.634933pt;}
.y3b{bottom:355.452267pt;}
.y1e3{bottom:356.275867pt;}
.y18c{bottom:357.223733pt;}
.yfc{bottom:357.443067pt;}
.y5e{bottom:357.982533pt;}
.y1a8{bottom:360.437600pt;}
.yd9{bottom:360.501600pt;}
.y1b9{bottom:360.762933pt;}
.yc5{bottom:361.786933pt;}
.y14e{bottom:365.026400pt;}
.y171{bottom:365.959600pt;}
.y128{bottom:365.967067pt;}
.y16{bottom:366.200933pt;}
.y205{bottom:367.907467pt;}
.y25d{bottom:372.188267pt;}
.y82{bottom:373.434933pt;}
.y228{bottom:373.788267pt;}
.yfb{bottom:373.837067pt;}
.y3a{bottom:374.380267pt;}
.y1e2{bottom:375.475867pt;}
.y18b{bottom:376.295733pt;}
.y5d{bottom:377.054533pt;}
.y1a7{bottom:379.765600pt;}
.y1b8{bottom:380.090933pt;}
.y24c{bottom:380.454933pt;}
.yc4{bottom:381.114933pt;}
.y127{bottom:381.829067pt;}
.y15{bottom:383.668933pt;}
.y170{bottom:384.487600pt;}
.y204{bottom:385.375467pt;}
.y25c{bottom:389.788267pt;}
.yfa{bottom:390.231067pt;}
.yd8{bottom:391.706933pt;}
.y81{bottom:392.234933pt;}
.y227{bottom:392.988267pt;}
.y39{bottom:393.308267pt;}
.y1e1{bottom:394.675867pt;}
.y18a{bottom:395.367733pt;}
.y14d{bottom:396.081067pt;}
.y5c{bottom:396.126533pt;}
.y24b{bottom:396.321600pt;}
.y126{bottom:397.691067pt;}
.ya1{bottom:398.501600pt;}
.y1a6{bottom:399.093600pt;}
.y1b7{bottom:399.418933pt;}
.yc3{bottom:400.442933pt;}
.y14{bottom:401.136933pt;}
.y203{bottom:402.843467pt;}
.y16f{bottom:403.015600pt;}
.yf9{bottom:406.625067pt;}
.y80{bottom:411.034933pt;}
.y24a{bottom:412.188267pt;}
.y38{bottom:412.236267pt;}
.y14c{bottom:412.615067pt;}
.y125{bottom:413.553067pt;}
.y1e0{bottom:413.875867pt;}
.y189{bottom:414.439733pt;}
.y5b{bottom:415.198533pt;}
.ya0{bottom:417.701600pt;}
.y1a5{bottom:418.421600pt;}
.y13{bottom:418.604933pt;}
.y1b6{bottom:418.746933pt;}
.yc2{bottom:419.770933pt;}
.y202{bottom:420.311467pt;}
.y25b{bottom:420.721600pt;}
.y16e{bottom:421.543600pt;}
.yf8{bottom:423.019067pt;}
.y249{bottom:428.054933pt;}
.y14b{bottom:429.149067pt;}
.y124{bottom:429.415067pt;}
.y7f{bottom:429.834933pt;}
.y37{bottom:431.164267pt;}
.y1df{bottom:433.075867pt;}
.y188{bottom:433.511733pt;}
.y5a{bottom:434.270533pt;}
.y12{bottom:436.072933pt;}
.y9f{bottom:436.901600pt;}
.y1a4{bottom:437.749600pt;}
.y201{bottom:437.779467pt;}
.y1b5{bottom:438.074933pt;}
.y25a{bottom:438.321600pt;}
.yc1{bottom:439.098933pt;}
.yf7{bottom:439.413067pt;}
.y16d{bottom:440.071600pt;}
.y123{bottom:445.277067pt;}
.y14a{bottom:445.683067pt;}
.y226{bottom:447.388267pt;}
.y7e{bottom:448.634933pt;}
.y36{bottom:450.092267pt;}
.y1de{bottom:452.275867pt;}
.y187{bottom:452.583733pt;}
.y59{bottom:453.342533pt;}
.y11{bottom:453.540933pt;}
.y200{bottom:455.247467pt;}
.yf6{bottom:455.807067pt;}
.y259{bottom:455.921600pt;}
.y9e{bottom:456.101600pt;}
.y1a3{bottom:457.077600pt;}
.yd7{bottom:457.402933pt;}
.yc0{bottom:458.426933pt;}
.y16c{bottom:458.599600pt;}
.y122{bottom:461.139067pt;}
.y149{bottom:462.217067pt;}
.y225{bottom:462.588267pt;}
.y248{bottom:462.986933pt;}
.y7d{bottom:467.434933pt;}
.y35{bottom:469.020267pt;}
.y10{bottom:471.008933pt;}
.y1dd{bottom:471.475867pt;}
.y186{bottom:471.655733pt;}
.yf5{bottom:472.201067pt;}
.y1ff{bottom:472.715467pt;}
.y258{bottom:473.521600pt;}
.y9d{bottom:475.301600pt;}
.y1a2{bottom:476.405600pt;}
.yd6{bottom:476.730933pt;}
.y121{bottom:477.001067pt;}
.y16b{bottom:477.127600pt;}
.ybf{bottom:477.754933pt;}
.y148{bottom:478.751067pt;}
.y247{bottom:480.454933pt;}
.y58{bottom:485.609200pt;}
.y7c{bottom:486.234933pt;}
.y34{bottom:487.948267pt;}
.yf{bottom:488.476933pt;}
.yf4{bottom:488.595067pt;}
.y1fe{bottom:490.183467pt;}
.y1dc{bottom:490.675867pt;}
.y185{bottom:490.727733pt;}
.y224{bottom:491.121600pt;}
.y120{bottom:492.863067pt;}
.y9c{bottom:494.501600pt;}
.y147{bottom:495.285067pt;}
.y16a{bottom:495.655600pt;}
.y1a1{bottom:495.733600pt;}
.yd5{bottom:496.058933pt;}
.ybe{bottom:497.082933pt;}
.yf3{bottom:504.989067pt;}
.y7b{bottom:505.034933pt;}
.ye{bottom:505.944933pt;}
.y33{bottom:506.876267pt;}
.y223{bottom:508.721600pt;}
.y11f{bottom:508.725067pt;}
.y184{bottom:509.799733pt;}
.y1db{bottom:509.875867pt;}
.y246{bottom:511.097600pt;}
.y146{bottom:511.819067pt;}
.y9b{bottom:513.701600pt;}
.y169{bottom:514.183600pt;}
.y1a0{bottom:515.061600pt;}
.y1fd{bottom:515.209200pt;}
.yd4{bottom:515.386933pt;}
.ybd{bottom:516.410933pt;}
.yf2{bottom:521.383067pt;}
.yd{bottom:523.412933pt;}
.y7a{bottom:523.834933pt;}
.y11e{bottom:524.587067pt;}
.y32{bottom:525.804267pt;}
.y222{bottom:526.321600pt;}
.y145{bottom:528.353067pt;}
.y245{bottom:528.565600pt;}
.y183{bottom:528.871733pt;}
.y1da{bottom:529.075867pt;}
.y57{bottom:531.006533pt;}
.y168{bottom:532.711600pt;}
.y19f{bottom:534.389600pt;}
.yd3{bottom:534.714933pt;}
.ybc{bottom:535.738933pt;}
.y11d{bottom:540.449067pt;}
.yc{bottom:540.880933pt;}
.y79{bottom:542.634933pt;}
.y221{bottom:543.921600pt;}
.y31{bottom:544.732267pt;}
.y144{bottom:544.887067pt;}
.y244{bottom:546.033600pt;}
.y9a{bottom:546.373600pt;}
.y182{bottom:547.943733pt;}
.y1d9{bottom:548.275867pt;}
.yf1{bottom:549.121600pt;}
.y56{bottom:550.078533pt;}
.y19e{bottom:553.717600pt;}
.yd2{bottom:554.042933pt;}
.ybb{bottom:555.066933pt;}
.y11c{bottom:556.311067pt;}
.y1fc{bottom:557.626933pt;}
.yb{bottom:558.348933pt;}
.y143{bottom:561.421067pt;}
.y78{bottom:561.434933pt;}
.y220{bottom:561.521600pt;}
.y243{bottom:563.501600pt;}
.y30{bottom:563.660267pt;}
.y167{bottom:563.911600pt;}
.y99{bottom:565.701600pt;}
.y181{bottom:567.015733pt;}
.y1d8{bottom:567.475867pt;}
.yf0{bottom:568.721600pt;}
.y55{bottom:569.150533pt;}
.y11b{bottom:572.173067pt;}
.y19d{bottom:573.045600pt;}
.yd1{bottom:573.370933pt;}
.yba{bottom:574.394933pt;}
.y1fb{bottom:576.698933pt;}
.y142{bottom:577.955067pt;}
.y21f{bottom:579.121600pt;}
.y77{bottom:580.234933pt;}
.y242{bottom:580.969600pt;}
.y2f{bottom:582.609600pt;}
.ya{bottom:583.374667pt;}
.y180{bottom:586.087733pt;}
.y1d7{bottom:586.675867pt;}
.y11a{bottom:588.035067pt;}
.y54{bottom:588.222533pt;}
.yef{bottom:588.321600pt;}
.y19c{bottom:592.373600pt;}
.yd0{bottom:592.698933pt;}
.yb9{bottom:593.722933pt;}
.y141{bottom:594.489067pt;}
.y1fa{bottom:595.770933pt;}
.y21e{bottom:596.721600pt;}
.y241{bottom:598.437600pt;}
.y76{bottom:599.034933pt;}
.y2e{bottom:601.537600pt;}
.y119{bottom:603.897067pt;}
.y17f{bottom:605.159733pt;}
.y1d6{bottom:605.875867pt;}
.y53{bottom:607.294533pt;}
.y166{bottom:607.781600pt;}
.yee{bottom:607.921600pt;}
.y140{bottom:611.023067pt;}
.y19b{bottom:611.701600pt;}
.y98{bottom:612.026933pt;}
.yb8{bottom:613.050933pt;}
.y21d{bottom:614.321600pt;}
.y1f9{bottom:614.842933pt;}
.y240{bottom:615.905600pt;}
.y75{bottom:617.834933pt;}
.y118{bottom:619.759067pt;}
.y2d{bottom:620.465600pt;}
.y165{bottom:623.111600pt;}
.y1d5{bottom:625.075867pt;}
.y52{bottom:626.366533pt;}
.yed{bottom:627.521600pt;}
.y13f{bottom:627.557067pt;}
.y9{bottom:628.840000pt;}
.y97{bottom:631.354933pt;}
.y21c{bottom:631.921600pt;}
.yb7{bottom:632.378933pt;}
.y23f{bottom:633.373600pt;}
.y1f8{bottom:633.914933pt;}
.y117{bottom:635.621067pt;}
.y74{bottom:636.634933pt;}
.y2c{bottom:639.393600pt;}
.y13e{bottom:644.091067pt;}
.y1d4{bottom:644.275867pt;}
.y19a{bottom:644.368267pt;}
.y51{bottom:645.438533pt;}
.y8{bottom:646.308000pt;}
.y21b{bottom:649.521600pt;}
.y164{bottom:649.783467pt;}
.y96{bottom:650.682933pt;}
.y23e{bottom:650.841600pt;}
.y116{bottom:651.483067pt;}
.yb6{bottom:651.706933pt;}
.y1f7{bottom:652.986933pt;}
.y73{bottom:655.434933pt;}
.y2b{bottom:658.348267pt;}
.y13d{bottom:660.625067pt;}
.yec{bottom:660.854933pt;}
.y1d3{bottom:663.475867pt;}
.y199{bottom:663.568267pt;}
.y50{bottom:664.510533pt;}
.y21a{bottom:667.121600pt;}
.y115{bottom:667.345067pt;}
.y23d{bottom:668.309600pt;}
.y95{bottom:670.010933pt;}
.yb5{bottom:671.034933pt;}
.y1f6{bottom:672.058933pt;}
.y72{bottom:674.234933pt;}
.y163{bottom:675.899200pt;}
.y13c{bottom:677.159067pt;}
.y2a{bottom:677.276267pt;}
.yeb{bottom:680.454933pt;}
.y1d2{bottom:682.675867pt;}
.y7{bottom:682.846667pt;}
.y114{bottom:683.207067pt;}
.y4f{bottom:683.582533pt;}
.y219{bottom:684.721600pt;}
.y23c{bottom:685.777600pt;}
.y94{bottom:689.338933pt;}
.yb4{bottom:690.234933pt;}
.y1f5{bottom:691.130933pt;}
.y162{bottom:691.229200pt;}
.y71{bottom:693.034933pt;}
.y13b{bottom:693.693067pt;}
.y29{bottom:696.204267pt;}
.y113{bottom:699.069067pt;}
.y1d1{bottom:701.875867pt;}
.y218{bottom:702.321600pt;}
.y4e{bottom:702.654533pt;}
.y23b{bottom:703.245600pt;}
.y161{bottom:706.559200pt;}
.y93{bottom:708.666933pt;}
.yb3{bottom:709.434933pt;}
.y6{bottom:709.910667pt;}
.y1f4{bottom:710.202933pt;}
.y13a{bottom:710.227067pt;}
.y70{bottom:711.834933pt;}
.y112{bottom:714.931067pt;}
.y28{bottom:715.132267pt;}
.y217{bottom:719.921600pt;}
.y23a{bottom:720.713600pt;}
.y1d0{bottom:721.075867pt;}
.y4d{bottom:721.726533pt;}
.y160{bottom:721.889200pt;}
.y139{bottom:726.761067pt;}
.yea{bottom:727.521600pt;}
.y92{bottom:727.994933pt;}
.yb2{bottom:728.634933pt;}
.y1f3{bottom:729.274933pt;}
.y6f{bottom:730.634933pt;}
.y111{bottom:730.793067pt;}
.y26{bottom:734.054933pt;}
.y27{bottom:734.060267pt;}
.y5{bottom:736.974667pt;}
.y15f{bottom:737.219200pt;}
.y216{bottom:737.521600pt;}
.y239{bottom:738.181600pt;}
.y1cf{bottom:740.275867pt;}
.y4c{bottom:740.798533pt;}
.y138{bottom:743.295067pt;}
.y110{bottom:746.655067pt;}
.ye9{bottom:747.121600pt;}
.y91{bottom:747.322933pt;}
.yb1{bottom:747.834933pt;}
.y1f2{bottom:748.346933pt;}
.y6e{bottom:749.434933pt;}
.y15e{bottom:752.549200pt;}
.y215{bottom:755.121600pt;}
.y238{bottom:755.649600pt;}
.y1ce{bottom:759.475867pt;}
.y137{bottom:759.829067pt;}
.y4b{bottom:759.870533pt;}
.y10f{bottom:762.517067pt;}
.y90{bottom:766.650933pt;}
.ye8{bottom:766.721600pt;}
.yb0{bottom:767.034933pt;}
.y1f1{bottom:767.418933pt;}
.y15d{bottom:767.879200pt;}
.y6d{bottom:768.234933pt;}
.y214{bottom:772.721600pt;}
.y237{bottom:773.117600pt;}
.y136{bottom:776.363067pt;}
.y10e{bottom:778.379067pt;}
.y1cd{bottom:778.675867pt;}
.y4a{bottom:778.942533pt;}
.y15c{bottom:783.209200pt;}
.y4{bottom:785.961600pt;}
.y8f{bottom:785.978933pt;}
.yaf{bottom:786.234933pt;}
.ye7{bottom:786.321600pt;}
.y1f0{bottom:786.490933pt;}
.y6c{bottom:787.034933pt;}
.y213{bottom:790.321600pt;}
.y236{bottom:790.585600pt;}
.y25{bottom:790.849600pt;}
.y135{bottom:792.897067pt;}
.y10d{bottom:794.241067pt;}
.y1cc{bottom:797.875867pt;}
.y8e{bottom:805.306933pt;}
.yae{bottom:805.434933pt;}
.y49{bottom:805.562933pt;}
.y6b{bottom:805.834933pt;}
.ye6{bottom:805.921600pt;}
.y15b{bottom:806.106933pt;}
.y212{bottom:807.921600pt;}
.y235{bottom:808.053600pt;}
.y24{bottom:808.185600pt;}
.y134{bottom:809.431067pt;}
.y3{bottom:809.521600pt;}
.y10c{bottom:810.103067pt;}
.y48{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y10b{bottom:825.965067pt;}
.hc{height:27.171875pt;}
.h8{height:31.700521pt;}
.h3{height:36.229167pt;}
.h2{height:39.101562pt;}
.he{height:42.656250pt;}
.hd{height:43.022135pt;}
.h12{height:44.661458pt;}
.h5{height:45.286458pt;}
.h10{height:46.894531pt;}
.hf{height:47.550781pt;}
.h4{height:49.815104pt;}
.h11{height:53.593750pt;}
.h7{height:54.343750pt;}
.hb{height:55.923583pt;}
.ha{height:56.200917pt;}
.h6{height:76.986979pt;}
.h9{height:157.719148pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x1{left:84.955333pt;}
.x5{left:86.929200pt;}
.x8{left:105.818000pt;}
.x7{left:120.264267pt;}
.x9{left:124.712800pt;}
.x6{left:133.929200pt;}
.xc{left:177.658533pt;}
.x4{left:188.834267pt;}
.xd{left:216.027733pt;}
.xb{left:453.315867pt;}
.xa{left:461.283200pt;}
.x2{left:511.590533pt;}
}




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