
    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_b3e884d40d7c729bad61fed3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_6b54a3c62ca50171bdc5958a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2b977093ff40e9b8f802877c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.833984;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_2289459ea105ee8229aff0f8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.866211;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_54414f11145c4689c05fe566.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4cb35d72ef7c01d2279768c2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_06bf16befb82a3796f0541d2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1aa824c6f9803f304214eeb2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.931152;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_e7c6de8517657fbde373a930.woff')format("woff");}.ff9{font-family:ff9;line-height:0.888184;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_b3e5c281dca44c2efd2d17f1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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.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);}
.m3{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:24.444000px;}
.v7{vertical-align:27.264000px;}
.v3{vertical-align:37.884000px;}
.v6{vertical-align:85.800000px;}
.ls4a{letter-spacing:-11.025000px;}
.ls6e{letter-spacing:-7.524000px;}
.ls61{letter-spacing:-6.600000px;}
.ls6f{letter-spacing:-2.574000px;}
.ls26{letter-spacing:-1.152000px;}
.ls27{letter-spacing:-1.008000px;}
.ls24{letter-spacing:-0.936000px;}
.ls6d{letter-spacing:-0.924000px;}
.ls41{letter-spacing:-0.882000px;}
.ls48{letter-spacing:-0.864000px;}
.ls38{letter-spacing:-0.792000px;}
.ls56{letter-spacing:-0.726000px;}
.ls36{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.594000px;}
.ls49{letter-spacing:-0.576000px;}
.ls65{letter-spacing:-0.528000px;}
.ls2c{letter-spacing:-0.504000px;}
.ls71{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.399000px;}
.ls70{letter-spacing:-0.396000px;}
.ls25{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.342000px;}
.ls62{letter-spacing:-0.330000px;}
.ls40{letter-spacing:-0.315000px;}
.ls9{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.285000px;}
.lsb{letter-spacing:-0.264000px;}
.lsd{letter-spacing:-0.228000px;}
.ls15{letter-spacing:-0.216000px;}
.ls60{letter-spacing:-0.198000px;}
.ls44{letter-spacing:-0.189000px;}
.lsc{letter-spacing:-0.171000px;}
.ls2e{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.132000px;}
.ls7b{letter-spacing:-0.079200px;}
.ls33{letter-spacing:-0.072000px;}
.ls57{letter-spacing:-0.066000px;}
.ls43{letter-spacing:-0.063000px;}
.ls28{letter-spacing:-0.057000px;}
.ls8{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.001800px;}
.ls3e{letter-spacing:0.009000px;}
.lsf{letter-spacing:0.066000px;}
.ls32{letter-spacing:0.072000px;}
.ls4e{letter-spacing:0.126000px;}
.ls51{letter-spacing:0.132000px;}
.ls12{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.189000px;}
.ls52{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.216000px;}
.ls54{letter-spacing:0.264000px;}
.ls2b{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.330000px;}
.ls18{letter-spacing:0.360000px;}
.ls3f{letter-spacing:0.378000px;}
.ls5f{letter-spacing:0.396000px;}
.ls37{letter-spacing:0.432000px;}
.ls64{letter-spacing:0.462000px;}
.ls1e{letter-spacing:0.489600px;}
.ls21{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.506400px;}
.ls29{letter-spacing:0.517200px;}
.ls5b{letter-spacing:0.528000px;}
.ls1f{letter-spacing:0.576000px;}
.ls5c{letter-spacing:0.594000px;}
.ls47{letter-spacing:0.630000px;}
.ls79{letter-spacing:0.660000px;}
.ls3d{letter-spacing:0.693000px;}
.ls13{letter-spacing:0.726000px;}
.ls4d{letter-spacing:0.756000px;}
.ls11{letter-spacing:0.792000px;}
.ls4c{letter-spacing:0.819000px;}
.ls73{letter-spacing:0.858000px;}
.ls1b{letter-spacing:0.864000px;}
.ls42{letter-spacing:0.882000px;}
.ls78{letter-spacing:0.924000px;}
.ls1c{letter-spacing:0.936000px;}
.ls6{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.008000px;}
.ls74{letter-spacing:1.056000px;}
.ls1d{letter-spacing:1.152000px;}
.ls2a{letter-spacing:1.224000px;}
.ls19{letter-spacing:1.296000px;}
.ls2d{letter-spacing:1.584000px;}
.ls7{letter-spacing:1.716000px;}
.ls46{letter-spacing:2.023200px;}
.ls4b{letter-spacing:2.520000px;}
.ls3c{letter-spacing:3.038400px;}
.ls20{letter-spacing:3.528000px;}
.ls3b{letter-spacing:3.744000px;}
.ls0{letter-spacing:4.200000px;}
.ls10{letter-spacing:4.209829px;}
.ls35{letter-spacing:4.809600px;}
.ls39{letter-spacing:4.896000px;}
.ls4f{letter-spacing:5.400000px;}
.ls3{letter-spacing:5.460000px;}
.ls34{letter-spacing:5.688000px;}
.ls3a{letter-spacing:5.760000px;}
.ls7a{letter-spacing:5.880000px;}
.ls55{letter-spacing:6.000000px;}
.ls7c{letter-spacing:6.552000px;}
.ls1{letter-spacing:6.600000px;}
.ls6c{letter-spacing:7.134600px;}
.ls4{letter-spacing:7.200000px;}
.ls50{letter-spacing:8.388000px;}
.ls2{letter-spacing:10.200000px;}
.ls5e{letter-spacing:10.428000px;}
.ls69{letter-spacing:10.494000px;}
.ls5d{letter-spacing:10.626000px;}
.ls66{letter-spacing:10.692000px;}
.ls6b{letter-spacing:10.758000px;}
.ls68{letter-spacing:10.824000px;}
.ls75{letter-spacing:10.890000px;}
.ls58{letter-spacing:10.956000px;}
.ls6a{letter-spacing:11.022000px;}
.ls59{letter-spacing:11.088000px;}
.ls72{letter-spacing:11.286000px;}
.ls63{letter-spacing:11.418000px;}
.ls67{letter-spacing:11.484000px;}
.ls76{letter-spacing:11.656800px;}
.ls5a{letter-spacing:11.748000px;}
.ls77{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;}
}
.ws2e{word-spacing:-57.000000px;}
.ws1{word-spacing:-38.862000px;}
.ws8a{word-spacing:-38.346000px;}
.ws13{word-spacing:-35.616000px;}
.ws2{word-spacing:-27.432000px;}
.ws6e{word-spacing:-22.860000px;}
.ws4a{word-spacing:-20.232000px;}
.ws49{word-spacing:-19.872000px;}
.ws95{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.536000px;}
.ws2c{word-spacing:-19.296000px;}
.ws7d{word-spacing:-18.546000px;}
.ws4b{word-spacing:-18.144000px;}
.ws45{word-spacing:-17.784000px;}
.ws4d{word-spacing:-17.703000px;}
.ws0{word-spacing:-16.860000px;}
.ws63{word-spacing:-16.434000px;}
.ws64{word-spacing:-16.302000px;}
.ws62{word-spacing:-15.708000px;}
.ws41{word-spacing:-14.079000px;}
.ws2d{word-spacing:-12.139200px;}
.ws74{word-spacing:-11.748000px;}
.ws7f{word-spacing:-11.484000px;}
.ws78{word-spacing:-11.418000px;}
.ws8b{word-spacing:-11.286000px;}
.ws14{word-spacing:-11.127600px;}
.ws72{word-spacing:-11.088000px;}
.ws92{word-spacing:-11.048400px;}
.ws88{word-spacing:-11.022000px;}
.ws71{word-spacing:-10.956000px;}
.ws8f{word-spacing:-10.890000px;}
.ws84{word-spacing:-10.824000px;}
.ws89{word-spacing:-10.758000px;}
.ws76{word-spacing:-10.626000px;}
.ws87{word-spacing:-10.494000px;}
.ws7a{word-spacing:-10.428000px;}
.ws8{word-spacing:-10.200000px;}
.ws65{word-spacing:-7.200000px;}
.ws94{word-spacing:-6.552000px;}
.ws66{word-spacing:-6.000000px;}
.ws93{word-spacing:-5.880000px;}
.ws96{word-spacing:-5.760000px;}
.ws9{word-spacing:-5.460000px;}
.ws5e{word-spacing:-5.400000px;}
.ws5{word-spacing:-4.200000px;}
.ws21{word-spacing:-3.528000px;}
.ws34{word-spacing:-1.728000px;}
.wse{word-spacing:-1.716000px;}
.ws3a{word-spacing:-1.584000px;}
.ws24{word-spacing:-1.296000px;}
.ws3b{word-spacing:-1.224000px;}
.ws28{word-spacing:-1.152000px;}
.ws35{word-spacing:-1.080000px;}
.ws8e{word-spacing:-1.056000px;}
.ws25{word-spacing:-1.008000px;}
.wsd{word-spacing:-0.990000px;}
.ws27{word-spacing:-0.936000px;}
.ws8d{word-spacing:-0.924000px;}
.ws50{word-spacing:-0.882000px;}
.ws26{word-spacing:-0.864000px;}
.ws8c{word-spacing:-0.858000px;}
.ws5c{word-spacing:-0.819000px;}
.ws1a{word-spacing:-0.792000px;}
.ws5d{word-spacing:-0.756000px;}
.ws17{word-spacing:-0.726000px;}
.ws52{word-spacing:-0.693000px;}
.ws91{word-spacing:-0.660000px;}
.ws59{word-spacing:-0.630000px;}
.ws75{word-spacing:-0.594000px;}
.ws2a{word-spacing:-0.576000px;}
.ws2b{word-spacing:-0.504000px;}
.ws79{word-spacing:-0.462000px;}
.ws46{word-spacing:-0.432000px;}
.ws7c{word-spacing:-0.396000px;}
.ws54{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.330000px;}
.ws3c{word-spacing:-0.288000px;}
.ws6c{word-spacing:-0.264000px;}
.ws1f{word-spacing:-0.216000px;}
.ws6a{word-spacing:-0.198000px;}
.ws55{word-spacing:-0.189000px;}
.ws1e{word-spacing:-0.144000px;}
.ws68{word-spacing:-0.132000px;}
.ws5b{word-spacing:-0.126000px;}
.ws44{word-spacing:-0.072000px;}
.ws18{word-spacing:-0.066000px;}
.ws38{word-spacing:-0.057000px;}
.ws4{word-spacing:0.000000px;}
.ws37{word-spacing:0.057000px;}
.ws51{word-spacing:0.063000px;}
.ws6b{word-spacing:0.066000px;}
.ws42{word-spacing:0.072000px;}
.ws19{word-spacing:0.132000px;}
.ws3d{word-spacing:0.144000px;}
.ws36{word-spacing:0.171000px;}
.ws53{word-spacing:0.189000px;}
.ws6f{word-spacing:0.198000px;}
.ws1b{word-spacing:0.216000px;}
.ws11{word-spacing:0.228000px;}
.wsc{word-spacing:0.264000px;}
.ws3f{word-spacing:0.285000px;}
.ws2f{word-spacing:0.288000px;}
.ws7{word-spacing:0.300000px;}
.ws4e{word-spacing:0.315000px;}
.ws77{word-spacing:0.330000px;}
.ws3e{word-spacing:0.342000px;}
.ws31{word-spacing:0.360000px;}
.ws85{word-spacing:0.396000px;}
.ws12{word-spacing:0.399000px;}
.ws1c{word-spacing:0.432000px;}
.ws86{word-spacing:0.462000px;}
.ws39{word-spacing:0.504000px;}
.ws7b{word-spacing:0.528000px;}
.ws58{word-spacing:0.576000px;}
.wsa{word-spacing:0.594000px;}
.ws30{word-spacing:0.648000px;}
.ws23{word-spacing:0.720000px;}
.ws67{word-spacing:0.726000px;}
.ws47{word-spacing:0.792000px;}
.ws57{word-spacing:0.864000px;}
.ws4f{word-spacing:0.882000px;}
.ws80{word-spacing:0.924000px;}
.ws33{word-spacing:1.008000px;}
.ws32{word-spacing:1.152000px;}
.ws6d{word-spacing:2.442000px;}
.ws82{word-spacing:2.574000px;}
.ws5a{word-spacing:2.583000px;}
.ws22{word-spacing:2.808000px;}
.ws15{word-spacing:2.940000px;}
.ws16{word-spacing:3.360000px;}
.ws4c{word-spacing:3.528000px;}
.ws40{word-spacing:3.933000px;}
.ws70{word-spacing:4.092000px;}
.ws90{word-spacing:4.200000px;}
.ws56{word-spacing:4.284000px;}
.ws7e{word-spacing:4.422000px;}
.ws1d{word-spacing:4.464000px;}
.ws6{word-spacing:4.620000px;}
.wsf{word-spacing:5.073000px;}
.ws5f{word-spacing:5.082000px;}
.ws10{word-spacing:5.244000px;}
.ws48{word-spacing:5.256000px;}
.ws83{word-spacing:5.346000px;}
.ws43{word-spacing:5.760000px;}
.ws73{word-spacing:6.600000px;}
.ws60{word-spacing:7.344000px;}
.ws81{word-spacing:7.524000px;}
.ws69{word-spacing:8.118000px;}
.ws29{word-spacing:8.280000px;}
.ws61{word-spacing:9.648000px;}
._15{margin-left:-20.383200px;}
._16{margin-left:-14.217600px;}
._a{margin-left:-10.972200px;}
._8{margin-left:-9.229200px;}
._11{margin-left:-8.135400px;}
._2{margin-left:-6.969600px;}
._1{margin-left:-4.989600px;}
._12{margin-left:-3.614400px;}
._3{margin-left:-2.607000px;}
._5{margin-left:-1.200000px;}
._4{width:1.914600px;}
._6{width:3.138600px;}
._0{width:4.200000px;}
._d{width:5.210400px;}
._b{width:6.372600px;}
._10{width:7.693800px;}
._c{width:8.925000px;}
._9{width:10.200000px;}
._e{width:11.212200px;}
._13{width:12.250800px;}
._19{width:13.837800px;}
._14{width:14.839200px;}
._1a{width:15.961800px;}
._7{width:17.391000px;}
._18{width:20.142600px;}
._17{width:21.158400px;}
._f{width:56.923800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs9{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:61.200000px;}
.fsc{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fsa{font-size:209.926800px;}
.y0{bottom:0.000000px;}
.y25{bottom:60.941850px;}
.y24{bottom:75.341850px;}
.y1{bottom:76.339350px;}
.yba{bottom:140.298450px;}
.y23{bottom:140.299950px;}
.y10f{bottom:140.302950px;}
.y94{bottom:140.308950px;}
.y12d{bottom:140.310450px;}
.yea{bottom:140.313450px;}
.y1ff{bottom:142.334550px;}
.y24a{bottom:142.411800px;}
.y1b7{bottom:143.158350px;}
.y4a{bottom:143.410350px;}
.y18f{bottom:143.478900px;}
.y16a{bottom:144.392850px;}
.y1da{bottom:144.417450px;}
.y191{bottom:144.835200px;}
.y226{bottom:144.928800px;}
.y150{bottom:145.860900px;}
.y6d{bottom:145.864950px;}
.y25f{bottom:146.311800px;}
.yb9{bottom:156.799950px;}
.y22{bottom:156.801450px;}
.y10e{bottom:156.804450px;}
.y93{bottom:156.810450px;}
.y12c{bottom:156.811950px;}
.ye9{bottom:156.814950px;}
.y1b6{bottom:161.160600px;}
.y18e{bottom:161.481000px;}
.y249{bottom:162.211800px;}
.y169{bottom:162.237600px;}
.y1fe{bottom:162.580050px;}
.y14f{bottom:163.563900px;}
.y1d9{bottom:164.514450px;}
.y190{bottom:164.635200px;}
.y49{bottom:164.866350px;}
.y225{bottom:165.025800px;}
.y25e{bottom:166.111800px;}
.yb8{bottom:173.301450px;}
.y21{bottom:173.302950px;}
.y10d{bottom:173.305950px;}
.y92{bottom:173.311950px;}
.y12b{bottom:173.313450px;}
.y1b5{bottom:179.162850px;}
.y18d{bottom:179.782500px;}
.y168{bottom:179.940600px;}
.y14e{bottom:181.266900px;}
.y248{bottom:182.011800px;}
.y1fd{bottom:182.825550px;}
.y6c{bottom:183.066300px;}
.y1d8{bottom:184.611450px;}
.y224{bottom:185.122800px;}
.y25d{bottom:185.911800px;}
.y48{bottom:186.322350px;}
.yb7{bottom:189.802950px;}
.y20{bottom:189.804450px;}
.y10c{bottom:189.807450px;}
.y91{bottom:189.813450px;}
.y12a{bottom:195.364950px;}
.y1b4{bottom:197.165100px;}
.y167{bottom:197.643600px;}
.y18c{bottom:198.084000px;}
.ye8{bottom:198.210300px;}
.y14d{bottom:198.969900px;}
.y247{bottom:201.811800px;}
.y1fc{bottom:203.071050px;}
.y1d7{bottom:204.708450px;}
.y6b{bottom:204.972300px;}
.y223{bottom:205.219800px;}
.y25c{bottom:205.711800px;}
.yb6{bottom:206.304450px;}
.y1f{bottom:206.305950px;}
.y10b{bottom:206.308950px;}
.y47{bottom:207.778350px;}
.y90{bottom:211.864950px;}
.y1b3{bottom:215.167350px;}
.y166{bottom:215.346600px;}
.y18b{bottom:216.385500px;}
.y14c{bottom:216.672900px;}
.ye7{bottom:219.666300px;}
.y246{bottom:221.611800px;}
.y8f{bottom:222.801450px;}
.yb5{bottom:222.805950px;}
.y1e{bottom:222.807450px;}
.y10a{bottom:222.810450px;}
.yc6{bottom:222.811950px;}
.y1fb{bottom:223.316550px;}
.y1d6{bottom:224.805450px;}
.y222{bottom:225.316800px;}
.y25b{bottom:225.511800px;}
.y6a{bottom:226.878300px;}
.y46{bottom:229.234350px;}
.y129{bottom:231.864300px;}
.y1b2{bottom:233.169600px;}
.y14b{bottom:234.375900px;}
.y18a{bottom:234.687000px;}
.y8e{bottom:239.302950px;}
.yb4{bottom:239.307450px;}
.y1d{bottom:239.308950px;}
.y109{bottom:239.311950px;}
.yc5{bottom:239.313450px;}
.y26d{bottom:241.111800px;}
.ye6{bottom:241.122300px;}
.y245{bottom:241.411800px;}
.y1fa{bottom:243.562050px;}
.y1d5{bottom:244.929450px;}
.y221{bottom:245.413800px;}
.y165{bottom:245.826450px;}
.y69{bottom:248.784300px;}
.y45{bottom:250.690350px;}
.y1b1{bottom:251.171850px;}
.y14a{bottom:252.042600px;}
.y189{bottom:252.988500px;}
.y128{bottom:253.608300px;}
.yc4{bottom:255.801450px;}
.y8d{bottom:255.804450px;}
.yb3{bottom:255.808950px;}
.y1c{bottom:255.810450px;}
.y108{bottom:255.813450px;}
.y26c{bottom:259.111800px;}
.y244{bottom:261.211800px;}
.ye5{bottom:262.578300px;}
.y1f9{bottom:263.807550px;}
.y1d4{bottom:265.026450px;}
.y220{bottom:265.510800px;}
.y25a{bottom:266.911800px;}
.y164{bottom:267.120450px;}
.y1b0{bottom:269.174100px;}
.y149{bottom:269.745600px;}
.y68{bottom:270.690300px;}
.y188{bottom:271.290000px;}
.y44{bottom:272.146350px;}
.yc3{bottom:272.302950px;}
.y8c{bottom:272.305950px;}
.yb2{bottom:272.310450px;}
.y1b{bottom:272.311950px;}
.y127{bottom:275.352300px;}
.y26b{bottom:277.111800px;}
.y107{bottom:277.864950px;}
.y243{bottom:281.011800px;}
.ye4{bottom:284.034300px;}
.y1f8{bottom:284.053050px;}
.y1d3{bottom:285.123450px;}
.y21f{bottom:285.607800px;}
.y1af{bottom:287.176350px;}
.y148{bottom:287.448600px;}
.y163{bottom:288.414450px;}
.yc2{bottom:288.804450px;}
.y8b{bottom:288.807450px;}
.yb1{bottom:288.811950px;}
.y1a{bottom:288.813450px;}
.y187{bottom:289.591500px;}
.y67{bottom:292.596300px;}
.y43{bottom:293.602350px;}
.y26a{bottom:295.111800px;}
.y126{bottom:297.096300px;}
.y242{bottom:300.811800px;}
.y1f7{bottom:304.298550px;}
.y147{bottom:305.151600px;}
.y1ae{bottom:305.178600px;}
.y1d2{bottom:305.220450px;}
.yc1{bottom:305.305950px;}
.y8a{bottom:305.308950px;}
.yb0{bottom:305.313450px;}
.ye3{bottom:305.490300px;}
.y21e{bottom:305.704800px;}
.y259{bottom:308.311800px;}
.y162{bottom:309.708450px;}
.y19{bottom:310.864950px;}
.y269{bottom:313.111800px;}
.y66{bottom:314.502300px;}
.y42{bottom:315.058350px;}
.y125{bottom:318.840300px;}
.y106{bottom:318.846300px;}
.y241{bottom:320.611800px;}
.y186{bottom:320.650500px;}
.yc0{bottom:321.807450px;}
.y89{bottom:321.810450px;}
.y1f6{bottom:324.544050px;}
.y1d1{bottom:325.317450px;}
.y21d{bottom:325.801800px;}
.ye2{bottom:326.946300px;}
.yaf{bottom:327.364950px;}
.y258{bottom:329.911800px;}
.y161{bottom:331.002450px;}
.y146{bottom:335.612100px;}
.y1ad{bottom:335.938350px;}
.y65{bottom:336.408300px;}
.y41{bottom:336.514350px;}
.ybf{bottom:338.308950px;}
.y88{bottom:338.311950px;}
.y185{bottom:339.093750px;}
.y240{bottom:340.411800px;}
.y124{bottom:340.584300px;}
.y105{bottom:340.590300px;}
.y1f5{bottom:344.789550px;}
.y1d0{bottom:345.414450px;}
.y21c{bottom:345.898800px;}
.y18{bottom:346.643100px;}
.ye1{bottom:348.402300px;}
.y257{bottom:351.511800px;}
.y268{bottom:352.711800px;}
.y145{bottom:353.315100px;}
.y1ac{bottom:353.940600px;}
.ybe{bottom:354.810450px;}
.y87{bottom:354.813450px;}
.y184{bottom:357.537000px;}
.y40{bottom:357.970350px;}
.y64{bottom:358.158300px;}
.y23f{bottom:360.211800px;}
.y123{bottom:362.328300px;}
.y104{bottom:362.334300px;}
.y1f4{bottom:365.035050px;}
.y160{bottom:365.046450px;}
.y1cf{bottom:365.511450px;}
.y21b{bottom:365.995800px;}
.yae{bottom:366.114300px;}
.y17{bottom:367.037100px;}
.ye0{bottom:369.858300px;}
.y144{bottom:371.018100px;}
.ybd{bottom:371.311950px;}
.y1ab{bottom:371.938350px;}
.y267{bottom:372.511800px;}
.y86{bottom:376.864950px;}
.y3f{bottom:379.426350px;}
.y23e{bottom:380.011800px;}
.y63{bottom:380.064300px;}
.y15f{bottom:382.749450px;}
.y122{bottom:384.072300px;}
.y103{bottom:384.078300px;}
.y1f3{bottom:385.280550px;}
.y1ce{bottom:385.608450px;}
.y21a{bottom:386.092800px;}
.y16{bottom:387.431100px;}
.yad{bottom:387.714300px;}
.ybc{bottom:387.813450px;}
.y143{bottom:388.721100px;}
.y183{bottom:388.743000px;}
.y1aa{bottom:389.940600px;}
.ydf{bottom:391.314300px;}
.y256{bottom:399.511800px;}
.y23d{bottom:399.811800px;}
.y15e{bottom:400.452450px;}
.y3e{bottom:400.882350px;}
.y62{bottom:401.970300px;}
.y1f2{bottom:405.526050px;}
.y1cd{bottom:405.705450px;}
.y121{bottom:405.816300px;}
.y102{bottom:405.822300px;}
.y219{bottom:406.189800px;}
.y15{bottom:407.825100px;}
.y1a9{bottom:407.942850px;}
.yac{bottom:409.314300px;}
.ybb{bottom:409.864950px;}
.y182{bottom:410.793000px;}
.yde{bottom:412.770300px;}
.y266{bottom:413.911800px;}
.y85{bottom:416.520300px;}
.y255{bottom:417.511800px;}
.y15d{bottom:418.155450px;}
.y142{bottom:419.181600px;}
.y23c{bottom:419.611800px;}
.y3d{bottom:422.338350px;}
.y61{bottom:423.876300px;}
.y1f1{bottom:425.771550px;}
.y1cc{bottom:425.802450px;}
.y218{bottom:426.286800px;}
.y120{bottom:427.560300px;}
.y101{bottom:427.566300px;}
.y14{bottom:428.219100px;}
.yab{bottom:430.914300px;}
.y181{bottom:432.843000px;}
.y265{bottom:433.711800px;}
.ydd{bottom:434.226300px;}
.y254{bottom:435.511800px;}
.y15c{bottom:435.852450px;}
.y141{bottom:436.884600px;}
.y84{bottom:437.880300px;}
.y1a8{bottom:438.632850px;}
.y23b{bottom:439.411800px;}
.y3c{bottom:443.794350px;}
.y60{bottom:445.782300px;}
.y1f0{bottom:446.017050px;}
.y217{bottom:446.383800px;}
.y13{bottom:448.613100px;}
.y11f{bottom:449.304300px;}
.y100{bottom:449.310300px;}
.yaa{bottom:452.514300px;}
.y253{bottom:453.511800px;}
.y15b{bottom:453.555450px;}
.y1cb{bottom:454.406400px;}
.y140{bottom:454.587600px;}
.y180{bottom:454.893000px;}
.ydc{bottom:455.682300px;}
.y83{bottom:459.174300px;}
.y1a7{bottom:460.232850px;}
.y3b{bottom:465.250350px;}
.y1ef{bottom:466.262550px;}
.y216{bottom:466.480800px;}
.y5f{bottom:467.688300px;}
.y12{bottom:469.007100px;}
.y11e{bottom:471.048300px;}
.yff{bottom:471.054300px;}
.y15a{bottom:471.258450px;}
.y252{bottom:471.511800px;}
.y13f{bottom:472.287750px;}
.y264{bottom:473.311800px;}
.ya9{bottom:474.114300px;}
.y17f{bottom:476.943000px;}
.ydb{bottom:477.138300px;}
.y82{bottom:480.468300px;}
.y23a{bottom:480.811800px;}
.y1a6{bottom:481.832850px;}
.y1ee{bottom:486.508050px;}
.y215{bottom:486.577800px;}
.y3a{bottom:486.706350px;}
.y11{bottom:489.401100px;}
.y5e{bottom:489.594300px;}
.y13e{bottom:489.954450px;}
.y11d{bottom:492.792300px;}
.yfe{bottom:492.798300px;}
.y263{bottom:493.111800px;}
.ya8{bottom:495.714300px;}
.yda{bottom:498.594300px;}
.y17e{bottom:498.993000px;}
.y81{bottom:501.762300px;}
.y159{bottom:501.834300px;}
.y1ca{bottom:503.002350px;}
.y1a5{bottom:503.432850px;}
.y214{bottom:506.674800px;}
.y1ed{bottom:506.753550px;}
.y13d{bottom:507.657450px;}
.y39{bottom:508.162350px;}
.y10{bottom:509.795100px;}
.y251{bottom:511.111800px;}
.y5d{bottom:511.500300px;}
.y262{bottom:512.911800px;}
.y11c{bottom:514.536300px;}
.yfd{bottom:514.542300px;}
.ya7{bottom:517.314300px;}
.yd9{bottom:520.050300px;}
.y17d{bottom:521.043000px;}
.y239{bottom:522.211800px;}
.y80{bottom:523.056300px;}
.y158{bottom:523.128300px;}
.y1a4{bottom:524.888850px;}
.y1c9{bottom:524.908350px;}
.y213{bottom:526.771800px;}
.y1ec{bottom:526.999050px;}
.y38{bottom:529.618350px;}
.yf{bottom:530.189100px;}
.y250{bottom:530.911800px;}
.y261{bottom:532.711800px;}
.y5c{bottom:533.406300px;}
.y11b{bottom:536.280300px;}
.yfc{bottom:536.286300px;}
.y13c{bottom:538.117950px;}
.ya6{bottom:538.914300px;}
.yd8{bottom:541.506300px;}
.y17c{bottom:543.093000px;}
.y238{bottom:543.811800px;}
.y7f{bottom:544.350300px;}
.y157{bottom:544.422300px;}
.y1a3{bottom:546.344850px;}
.y1c8{bottom:546.814350px;}
.y212{bottom:546.868800px;}
.y1eb{bottom:547.244550px;}
.y37{bottom:551.074350px;}
.y260{bottom:552.511800px;}
.y5b{bottom:555.312300px;}
.y13b{bottom:555.820950px;}
.y11a{bottom:558.024300px;}
.yfb{bottom:558.030300px;}
.ye{bottom:559.092900px;}
.ya5{bottom:560.514300px;}
.yd7{bottom:562.962300px;}
.y237{bottom:565.411800px;}
.y7e{bottom:565.644300px;}
.y156{bottom:565.716300px;}
.y211{bottom:566.965800px;}
.y1ea{bottom:567.490050px;}
.y1a2{bottom:567.800850px;}
.y1c7{bottom:568.720350px;}
.y24f{bottom:572.311800px;}
.y36{bottom:572.530350px;}
.y13a{bottom:573.523950px;}
.y5a{bottom:577.218300px;}
.y17b{bottom:577.919100px;}
.y119{bottom:579.768300px;}
.yfa{bottom:579.774300px;}
.ya4{bottom:582.114300px;}
.yd6{bottom:584.418300px;}
.y7d{bottom:586.938300px;}
.y155{bottom:587.010300px;}
.y236{bottom:587.011800px;}
.y210{bottom:587.062800px;}
.y1e9{bottom:587.735550px;}
.y1a1{bottom:589.256850px;}
.y1c6{bottom:590.626350px;}
.y139{bottom:591.226950px;}
.y24e{bottom:592.111800px;}
.y35{bottom:593.986350px;}
.y17a{bottom:596.362350px;}
.y59{bottom:599.124300px;}
.y118{bottom:601.512300px;}
.yf9{bottom:601.518300px;}
.ya3{bottom:603.714300px;}
.yd5{bottom:605.874300px;}
.y20f{bottom:607.159800px;}
.y1e8{bottom:607.981050px;}
.y7c{bottom:608.232300px;}
.y154{bottom:608.304300px;}
.y138{bottom:608.929950px;}
.y1a0{bottom:610.712850px;}
.y24d{bottom:611.911800px;}
.y1c5{bottom:612.532350px;}
.y179{bottom:614.805600px;}
.y34{bottom:615.442350px;}
.y58{bottom:621.030300px;}
.y117{bottom:623.256300px;}
.yf8{bottom:623.262300px;}
.ya2{bottom:625.314300px;}
.yd{bottom:625.698900px;}
.y235{bottom:626.611800px;}
.y137{bottom:626.632950px;}
.y20e{bottom:627.256800px;}
.yd4{bottom:627.330300px;}
.y1e7{bottom:628.226550px;}
.y7b{bottom:629.526300px;}
.y153{bottom:629.598300px;}
.y24c{bottom:631.711800px;}
.y19f{bottom:632.168850px;}
.y178{bottom:633.248850px;}
.y1c4{bottom:634.438350px;}
.y33{bottom:636.898350px;}
.y57{bottom:642.936300px;}
.y234{bottom:643.711800px;}
.y116{bottom:645.000300px;}
.yf7{bottom:645.006300px;}
.yc{bottom:646.092900px;}
.ya1{bottom:646.914300px;}
.y20d{bottom:647.353800px;}
.y1e6{bottom:648.472050px;}
.yd3{bottom:648.786300px;}
.y7a{bottom:650.820300px;}
.y152{bottom:650.892300px;}
.y24b{bottom:651.511800px;}
.y19e{bottom:653.624850px;}
.y1c3{bottom:656.344350px;}
.y136{bottom:657.093450px;}
.y32{bottom:658.354350px;}
.y31{bottom:658.360350px;}
.y177{bottom:664.406700px;}
.y56{bottom:664.842300px;}
.y115{bottom:666.744300px;}
.yf6{bottom:666.750300px;}
.y20c{bottom:667.450800px;}
.ya0{bottom:668.514300px;}
.y1e5{bottom:668.717550px;}
.yd2{bottom:670.242300px;}
.y233{bottom:671.311800px;}
.y79{bottom:672.120300px;}
.y151{bottom:672.186300px;}
.y135{bottom:674.796450px;}
.y19d{bottom:675.080850px;}
.y1c2{bottom:678.250350px;}
.y176{bottom:686.312700px;}
.y55{bottom:686.748300px;}
.y20b{bottom:687.547800px;}
.y114{bottom:688.488300px;}
.yf5{bottom:688.494300px;}
.yb{bottom:688.656900px;}
.y1e4{bottom:688.963050px;}
.y9f{bottom:690.114300px;}
.y232{bottom:691.111800px;}
.yd1{bottom:691.698300px;}
.y134{bottom:692.499450px;}
.y78{bottom:693.480300px;}
.y19c{bottom:696.536850px;}
.y1c1{bottom:700.156350px;}
.y20a{bottom:707.644800px;}
.y175{bottom:708.218700px;}
.y54{bottom:708.654300px;}
.y1e3{bottom:709.208550px;}
.y133{bottom:710.185950px;}
.y113{bottom:710.232300px;}
.yf4{bottom:710.238300px;}
.y231{bottom:710.911800px;}
.y9e{bottom:711.714300px;}
.yd0{bottom:713.154300px;}
.y77{bottom:714.774300px;}
.y19b{bottom:717.992850px;}
.ya{bottom:719.868900px;}
.y1c0{bottom:722.062350px;}
.y30{bottom:722.702850px;}
.y209{bottom:727.741800px;}
.y132{bottom:727.888950px;}
.y1e2{bottom:729.454050px;}
.y174{bottom:730.124700px;}
.y53{bottom:730.560300px;}
.y230{bottom:730.711800px;}
.y112{bottom:731.976300px;}
.yf3{bottom:731.982300px;}
.y9d{bottom:733.314300px;}
.ycf{bottom:734.610300px;}
.y76{bottom:736.068300px;}
.y19a{bottom:739.448850px;}
.y2f{bottom:742.354350px;}
.y1bf{bottom:743.968350px;}
.y208{bottom:747.838800px;}
.y22f{bottom:750.511800px;}
.y9{bottom:751.080900px;}
.y173{bottom:752.030700px;}
.y52{bottom:752.466300px;}
.y111{bottom:753.720300px;}
.yf2{bottom:753.726300px;}
.y9c{bottom:754.914300px;}
.yce{bottom:756.066300px;}
.y75{bottom:757.362300px;}
.y1e1{bottom:758.208000px;}
.y131{bottom:758.349450px;}
.y2e{bottom:762.005850px;}
.y1be{bottom:765.874350px;}
.y207{bottom:767.935800px;}
.y22e{bottom:770.311800px;}
.y199{bottom:773.695200px;}
.y172{bottom:773.936700px;}
.y51{bottom:774.372300px;}
.yf1{bottom:775.470300px;}
.y110{bottom:775.506300px;}
.y130{bottom:776.052450px;}
.y9b{bottom:776.514300px;}
.ycd{bottom:777.522300px;}
.y74{bottom:778.656300px;}
.y2d{bottom:781.657350px;}
.y8{bottom:782.292900px;}
.y1bd{bottom:787.780350px;}
.y206{bottom:788.032800px;}
.y22d{bottom:790.111800px;}
.y198{bottom:791.539950px;}
.y12f{bottom:793.755450px;}
.y171{bottom:795.842700px;}
.y50{bottom:796.278300px;}
.yf0{bottom:797.250300px;}
.y9a{bottom:798.114300px;}
.ycc{bottom:798.978300px;}
.y73{bottom:799.950300px;}
.y2c{bottom:801.308850px;}
.y1e0{bottom:807.238800px;}
.y205{bottom:808.129800px;}
.y197{bottom:809.384700px;}
.y1bc{bottom:809.686350px;}
.y22c{bottom:809.911800px;}
.y12e{bottom:811.458450px;}
.y170{bottom:817.748700px;}
.y4f{bottom:818.184300px;}
.yef{bottom:818.994300px;}
.y99{bottom:819.714300px;}
.ycb{bottom:820.434300px;}
.y2b{bottom:820.954350px;}
.y72{bottom:821.244300px;}
.y196{bottom:827.229450px;}
.y1df{bottom:827.484300px;}
.y204{bottom:828.226800px;}
.y22b{bottom:829.711800px;}
.y1bb{bottom:831.592350px;}
.y7{bottom:838.154400px;}
.y16f{bottom:839.654700px;}
.y4e{bottom:840.090300px;}
.y2a{bottom:840.605850px;}
.yee{bottom:840.738300px;}
.y98{bottom:841.314300px;}
.yca{bottom:841.890300px;}
.y71{bottom:842.538300px;}
.y195{bottom:845.074200px;}
.y1de{bottom:847.729800px;}
.y203{bottom:848.323800px;}
.y22a{bottom:849.511800px;}
.y1ba{bottom:853.498350px;}
.y6{bottom:856.754400px;}
.y29{bottom:860.257350px;}
.y4d{bottom:861.996300px;}
.yed{bottom:862.482300px;}
.y97{bottom:862.914300px;}
.y194{bottom:862.918950px;}
.yc9{bottom:863.346300px;}
.y70{bottom:863.832300px;}
.y1dd{bottom:867.975300px;}
.y202{bottom:868.420800px;}
.y229{bottom:869.311800px;}
.y16e{bottom:874.306200px;}
.y5{bottom:875.354400px;}
.y4{bottom:875.356800px;}
.y1b9{bottom:875.404350px;}
.y28{bottom:879.908850px;}
.y4c{bottom:883.902300px;}
.yec{bottom:884.226300px;}
.y96{bottom:884.514300px;}
.yc8{bottom:884.802300px;}
.y6f{bottom:885.126300px;}
.y1dc{bottom:888.220800px;}
.y201{bottom:888.517800px;}
.y228{bottom:889.111800px;}
.y16d{bottom:892.607700px;}
.y193{bottom:893.521200px;}
.y1b8{bottom:897.310350px;}
.y27{bottom:899.560350px;}
.y4b{bottom:905.808300px;}
.yeb{bottom:905.970300px;}
.y95{bottom:906.114300px;}
.yc7{bottom:906.258300px;}
.y6e{bottom:906.420300px;}
.y1db{bottom:908.466300px;}
.y200{bottom:908.614800px;}
.y227{bottom:908.911800px;}
.y3{bottom:910.111800px;}
.y16c{bottom:910.909200px;}
.y192{bottom:911.365950px;}
.y26{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y16b{bottom:929.210700px;}
.h9{height:26.199902px;}
.hb{height:28.198242px;}
.h12{height:30.568359px;}
.hd{height:32.226562px;}
.h3{height:35.663086px;}
.h20{height:39.990234px;}
.h2{height:40.283203px;}
.he{height:40.757812px;}
.h4{height:43.989258px;}
.hc{height:44.311523px;}
.h1f{height:45.536133px;}
.ha{height:48.399902px;}
.h15{height:48.453902px;}
.h21{height:50.244141px;}
.h5{height:50.947266px;}
.h18{height:53.494629px;}
.h1b{height:53.506029px;}
.h1d{height:53.512629px;}
.h1c{height:53.518629px;}
.h19{height:53.560629px;}
.h1a{height:53.639829px;}
.h7{height:56.041992px;}
.hf{height:56.065992px;}
.h1e{height:57.937195px;}
.h17{height:60.968719px;}
.h8{height:61.136719px;}
.h16{height:63.178031px;}
.h13{height:63.298031px;}
.h14{height:63.322031px;}
.h11{height:63.946031px;}
.h6{height:86.610352px;}
.h10{height:146.936719px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.xd{left:94.959300px;}
.x1{left:97.795350px;}
.x6{left:119.055150px;}
.xf{left:140.307150px;}
.x2{left:150.670350px;}
.xe{left:157.321050px;}
.x3{left:163.476000px;}
.x7{left:194.019600px;}
.x12{left:198.904650px;}
.x13{left:236.965050px;}
.x5{left:258.888450px;}
.xa{left:312.472050px;}
.x8{left:375.672450px;}
.x9{left:381.473250px;}
.x4{left:410.917350px;}
.x11{left:508.755750px;}
.x10{left:517.719000px;}
.xb{left:602.539350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:21.728000pt;}
.v7{vertical-align:24.234667pt;}
.v3{vertical-align:33.674667pt;}
.v6{vertical-align:76.266667pt;}
.ls4a{letter-spacing:-9.800000pt;}
.ls6e{letter-spacing:-6.688000pt;}
.ls61{letter-spacing:-5.866667pt;}
.ls6f{letter-spacing:-2.288000pt;}
.ls26{letter-spacing:-1.024000pt;}
.ls27{letter-spacing:-0.896000pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls6d{letter-spacing:-0.821333pt;}
.ls41{letter-spacing:-0.784000pt;}
.ls48{letter-spacing:-0.768000pt;}
.ls38{letter-spacing:-0.704000pt;}
.ls56{letter-spacing:-0.645333pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.528000pt;}
.ls49{letter-spacing:-0.512000pt;}
.ls65{letter-spacing:-0.469333pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls71{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.354667pt;}
.ls70{letter-spacing:-0.352000pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.304000pt;}
.ls62{letter-spacing:-0.293333pt;}
.ls40{letter-spacing:-0.280000pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.253333pt;}
.lsb{letter-spacing:-0.234667pt;}
.lsd{letter-spacing:-0.202667pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls60{letter-spacing:-0.176000pt;}
.ls44{letter-spacing:-0.168000pt;}
.lsc{letter-spacing:-0.152000pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.117333pt;}
.ls7b{letter-spacing:-0.070400pt;}
.ls33{letter-spacing:-0.064000pt;}
.ls57{letter-spacing:-0.058667pt;}
.ls43{letter-spacing:-0.056000pt;}
.ls28{letter-spacing:-0.050667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.001600pt;}
.ls3e{letter-spacing:0.008000pt;}
.lsf{letter-spacing:0.058667pt;}
.ls32{letter-spacing:0.064000pt;}
.ls4e{letter-spacing:0.112000pt;}
.ls51{letter-spacing:0.117333pt;}
.ls12{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.168000pt;}
.ls52{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls54{letter-spacing:0.234667pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.293333pt;}
.ls18{letter-spacing:0.320000pt;}
.ls3f{letter-spacing:0.336000pt;}
.ls5f{letter-spacing:0.352000pt;}
.ls37{letter-spacing:0.384000pt;}
.ls64{letter-spacing:0.410667pt;}
.ls1e{letter-spacing:0.435200pt;}
.ls21{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.450133pt;}
.ls29{letter-spacing:0.459733pt;}
.ls5b{letter-spacing:0.469333pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls5c{letter-spacing:0.528000pt;}
.ls47{letter-spacing:0.560000pt;}
.ls79{letter-spacing:0.586667pt;}
.ls3d{letter-spacing:0.616000pt;}
.ls13{letter-spacing:0.645333pt;}
.ls4d{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls4c{letter-spacing:0.728000pt;}
.ls73{letter-spacing:0.762667pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls42{letter-spacing:0.784000pt;}
.ls78{letter-spacing:0.821333pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls6{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.896000pt;}
.ls74{letter-spacing:0.938667pt;}
.ls1d{letter-spacing:1.024000pt;}
.ls2a{letter-spacing:1.088000pt;}
.ls19{letter-spacing:1.152000pt;}
.ls2d{letter-spacing:1.408000pt;}
.ls7{letter-spacing:1.525333pt;}
.ls46{letter-spacing:1.798400pt;}
.ls4b{letter-spacing:2.240000pt;}
.ls3c{letter-spacing:2.700800pt;}
.ls20{letter-spacing:3.136000pt;}
.ls3b{letter-spacing:3.328000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls10{letter-spacing:3.742070pt;}
.ls35{letter-spacing:4.275200pt;}
.ls39{letter-spacing:4.352000pt;}
.ls4f{letter-spacing:4.800000pt;}
.ls3{letter-spacing:4.853333pt;}
.ls34{letter-spacing:5.056000pt;}
.ls3a{letter-spacing:5.120000pt;}
.ls7a{letter-spacing:5.226667pt;}
.ls55{letter-spacing:5.333333pt;}
.ls7c{letter-spacing:5.824000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls6c{letter-spacing:6.341867pt;}
.ls4{letter-spacing:6.400000pt;}
.ls50{letter-spacing:7.456000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls5e{letter-spacing:9.269333pt;}
.ls69{letter-spacing:9.328000pt;}
.ls5d{letter-spacing:9.445333pt;}
.ls66{letter-spacing:9.504000pt;}
.ls6b{letter-spacing:9.562667pt;}
.ls68{letter-spacing:9.621333pt;}
.ls75{letter-spacing:9.680000pt;}
.ls58{letter-spacing:9.738667pt;}
.ls6a{letter-spacing:9.797333pt;}
.ls59{letter-spacing:9.856000pt;}
.ls72{letter-spacing:10.032000pt;}
.ls63{letter-spacing:10.149333pt;}
.ls67{letter-spacing:10.208000pt;}
.ls76{letter-spacing:10.361600pt;}
.ls5a{letter-spacing:10.442667pt;}
.ls77{letter-spacing:17.600000pt;}
.ws2e{word-spacing:-50.666667pt;}
.ws1{word-spacing:-34.544000pt;}
.ws8a{word-spacing:-34.085333pt;}
.ws13{word-spacing:-31.658667pt;}
.ws2{word-spacing:-24.384000pt;}
.ws6e{word-spacing:-20.320000pt;}
.ws4a{word-spacing:-17.984000pt;}
.ws49{word-spacing:-17.664000pt;}
.ws95{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.365333pt;}
.ws2c{word-spacing:-17.152000pt;}
.ws7d{word-spacing:-16.485333pt;}
.ws4b{word-spacing:-16.128000pt;}
.ws45{word-spacing:-15.808000pt;}
.ws4d{word-spacing:-15.736000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws63{word-spacing:-14.608000pt;}
.ws64{word-spacing:-14.490667pt;}
.ws62{word-spacing:-13.962667pt;}
.ws41{word-spacing:-12.514667pt;}
.ws2d{word-spacing:-10.790400pt;}
.ws74{word-spacing:-10.442667pt;}
.ws7f{word-spacing:-10.208000pt;}
.ws78{word-spacing:-10.149333pt;}
.ws8b{word-spacing:-10.032000pt;}
.ws14{word-spacing:-9.891200pt;}
.ws72{word-spacing:-9.856000pt;}
.ws92{word-spacing:-9.820800pt;}
.ws88{word-spacing:-9.797333pt;}
.ws71{word-spacing:-9.738667pt;}
.ws8f{word-spacing:-9.680000pt;}
.ws84{word-spacing:-9.621333pt;}
.ws89{word-spacing:-9.562667pt;}
.ws76{word-spacing:-9.445333pt;}
.ws87{word-spacing:-9.328000pt;}
.ws7a{word-spacing:-9.269333pt;}
.ws8{word-spacing:-9.066667pt;}
.ws65{word-spacing:-6.400000pt;}
.ws94{word-spacing:-5.824000pt;}
.ws66{word-spacing:-5.333333pt;}
.ws93{word-spacing:-5.226667pt;}
.ws96{word-spacing:-5.120000pt;}
.ws9{word-spacing:-4.853333pt;}
.ws5e{word-spacing:-4.800000pt;}
.ws5{word-spacing:-3.733333pt;}
.ws21{word-spacing:-3.136000pt;}
.ws34{word-spacing:-1.536000pt;}
.wse{word-spacing:-1.525333pt;}
.ws3a{word-spacing:-1.408000pt;}
.ws24{word-spacing:-1.152000pt;}
.ws3b{word-spacing:-1.088000pt;}
.ws28{word-spacing:-1.024000pt;}
.ws35{word-spacing:-0.960000pt;}
.ws8e{word-spacing:-0.938667pt;}
.ws25{word-spacing:-0.896000pt;}
.wsd{word-spacing:-0.880000pt;}
.ws27{word-spacing:-0.832000pt;}
.ws8d{word-spacing:-0.821333pt;}
.ws50{word-spacing:-0.784000pt;}
.ws26{word-spacing:-0.768000pt;}
.ws8c{word-spacing:-0.762667pt;}
.ws5c{word-spacing:-0.728000pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws5d{word-spacing:-0.672000pt;}
.ws17{word-spacing:-0.645333pt;}
.ws52{word-spacing:-0.616000pt;}
.ws91{word-spacing:-0.586667pt;}
.ws59{word-spacing:-0.560000pt;}
.ws75{word-spacing:-0.528000pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws2b{word-spacing:-0.448000pt;}
.ws79{word-spacing:-0.410667pt;}
.ws46{word-spacing:-0.384000pt;}
.ws7c{word-spacing:-0.352000pt;}
.ws54{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.293333pt;}
.ws3c{word-spacing:-0.256000pt;}
.ws6c{word-spacing:-0.234667pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws6a{word-spacing:-0.176000pt;}
.ws55{word-spacing:-0.168000pt;}
.ws1e{word-spacing:-0.128000pt;}
.ws68{word-spacing:-0.117333pt;}
.ws5b{word-spacing:-0.112000pt;}
.ws44{word-spacing:-0.064000pt;}
.ws18{word-spacing:-0.058667pt;}
.ws38{word-spacing:-0.050667pt;}
.ws4{word-spacing:0.000000pt;}
.ws37{word-spacing:0.050667pt;}
.ws51{word-spacing:0.056000pt;}
.ws6b{word-spacing:0.058667pt;}
.ws42{word-spacing:0.064000pt;}
.ws19{word-spacing:0.117333pt;}
.ws3d{word-spacing:0.128000pt;}
.ws36{word-spacing:0.152000pt;}
.ws53{word-spacing:0.168000pt;}
.ws6f{word-spacing:0.176000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws11{word-spacing:0.202667pt;}
.wsc{word-spacing:0.234667pt;}
.ws3f{word-spacing:0.253333pt;}
.ws2f{word-spacing:0.256000pt;}
.ws7{word-spacing:0.266667pt;}
.ws4e{word-spacing:0.280000pt;}
.ws77{word-spacing:0.293333pt;}
.ws3e{word-spacing:0.304000pt;}
.ws31{word-spacing:0.320000pt;}
.ws85{word-spacing:0.352000pt;}
.ws12{word-spacing:0.354667pt;}
.ws1c{word-spacing:0.384000pt;}
.ws86{word-spacing:0.410667pt;}
.ws39{word-spacing:0.448000pt;}
.ws7b{word-spacing:0.469333pt;}
.ws58{word-spacing:0.512000pt;}
.wsa{word-spacing:0.528000pt;}
.ws30{word-spacing:0.576000pt;}
.ws23{word-spacing:0.640000pt;}
.ws67{word-spacing:0.645333pt;}
.ws47{word-spacing:0.704000pt;}
.ws57{word-spacing:0.768000pt;}
.ws4f{word-spacing:0.784000pt;}
.ws80{word-spacing:0.821333pt;}
.ws33{word-spacing:0.896000pt;}
.ws32{word-spacing:1.024000pt;}
.ws6d{word-spacing:2.170667pt;}
.ws82{word-spacing:2.288000pt;}
.ws5a{word-spacing:2.296000pt;}
.ws22{word-spacing:2.496000pt;}
.ws15{word-spacing:2.613333pt;}
.ws16{word-spacing:2.986667pt;}
.ws4c{word-spacing:3.136000pt;}
.ws40{word-spacing:3.496000pt;}
.ws70{word-spacing:3.637333pt;}
.ws90{word-spacing:3.733333pt;}
.ws56{word-spacing:3.808000pt;}
.ws7e{word-spacing:3.930667pt;}
.ws1d{word-spacing:3.968000pt;}
.ws6{word-spacing:4.106667pt;}
.wsf{word-spacing:4.509333pt;}
.ws5f{word-spacing:4.517333pt;}
.ws10{word-spacing:4.661333pt;}
.ws48{word-spacing:4.672000pt;}
.ws83{word-spacing:4.752000pt;}
.ws43{word-spacing:5.120000pt;}
.ws73{word-spacing:5.866667pt;}
.ws60{word-spacing:6.528000pt;}
.ws81{word-spacing:6.688000pt;}
.ws69{word-spacing:7.216000pt;}
.ws29{word-spacing:7.360000pt;}
.ws61{word-spacing:8.576000pt;}
._15{margin-left:-18.118400pt;}
._16{margin-left:-12.637867pt;}
._a{margin-left:-9.753067pt;}
._8{margin-left:-8.203733pt;}
._11{margin-left:-7.231467pt;}
._2{margin-left:-6.195200pt;}
._1{margin-left:-4.435200pt;}
._12{margin-left:-3.212800pt;}
._3{margin-left:-2.317333pt;}
._5{margin-left:-1.066667pt;}
._4{width:1.701867pt;}
._6{width:2.789867pt;}
._0{width:3.733333pt;}
._d{width:4.631467pt;}
._b{width:5.664533pt;}
._10{width:6.838933pt;}
._c{width:7.933333pt;}
._9{width:9.066667pt;}
._e{width:9.966400pt;}
._13{width:10.889600pt;}
._19{width:12.300267pt;}
._14{width:13.190400pt;}
._1a{width:14.188267pt;}
._7{width:15.458667pt;}
._18{width:17.904533pt;}
._17{width:18.807467pt;}
._f{width:50.598933pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:54.400000pt;}
.fsc{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fsa{font-size:186.601600pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:54.170533pt;}
.y24{bottom:66.970533pt;}
.y1{bottom:67.857200pt;}
.yba{bottom:124.709733pt;}
.y23{bottom:124.711067pt;}
.y10f{bottom:124.713733pt;}
.y94{bottom:124.719067pt;}
.y12d{bottom:124.720400pt;}
.yea{bottom:124.723067pt;}
.y1ff{bottom:126.519600pt;}
.y24a{bottom:126.588267pt;}
.y1b7{bottom:127.251867pt;}
.y4a{bottom:127.475867pt;}
.y18f{bottom:127.536800pt;}
.y16a{bottom:128.349200pt;}
.y1da{bottom:128.371067pt;}
.y191{bottom:128.742400pt;}
.y226{bottom:128.825600pt;}
.y150{bottom:129.654133pt;}
.y6d{bottom:129.657733pt;}
.y25f{bottom:130.054933pt;}
.yb9{bottom:139.377733pt;}
.y22{bottom:139.379067pt;}
.y10e{bottom:139.381733pt;}
.y93{bottom:139.387067pt;}
.y12c{bottom:139.388400pt;}
.ye9{bottom:139.391067pt;}
.y1b6{bottom:143.253867pt;}
.y18e{bottom:143.538667pt;}
.y249{bottom:144.188267pt;}
.y169{bottom:144.211200pt;}
.y1fe{bottom:144.515600pt;}
.y14f{bottom:145.390133pt;}
.y1d9{bottom:146.235067pt;}
.y190{bottom:146.342400pt;}
.y49{bottom:146.547867pt;}
.y225{bottom:146.689600pt;}
.y25e{bottom:147.654933pt;}
.yb8{bottom:154.045733pt;}
.y21{bottom:154.047067pt;}
.y10d{bottom:154.049733pt;}
.y92{bottom:154.055067pt;}
.y12b{bottom:154.056400pt;}
.y1b5{bottom:159.255867pt;}
.y18d{bottom:159.806667pt;}
.y168{bottom:159.947200pt;}
.y14e{bottom:161.126133pt;}
.y248{bottom:161.788267pt;}
.y1fd{bottom:162.511600pt;}
.y6c{bottom:162.725600pt;}
.y1d8{bottom:164.099067pt;}
.y224{bottom:164.553600pt;}
.y25d{bottom:165.254933pt;}
.y48{bottom:165.619867pt;}
.yb7{bottom:168.713733pt;}
.y20{bottom:168.715067pt;}
.y10c{bottom:168.717733pt;}
.y91{bottom:168.723067pt;}
.y12a{bottom:173.657733pt;}
.y1b4{bottom:175.257867pt;}
.y167{bottom:175.683200pt;}
.y18c{bottom:176.074667pt;}
.ye8{bottom:176.186933pt;}
.y14d{bottom:176.862133pt;}
.y247{bottom:179.388267pt;}
.y1fc{bottom:180.507600pt;}
.y1d7{bottom:181.963067pt;}
.y6b{bottom:182.197600pt;}
.y223{bottom:182.417600pt;}
.y25c{bottom:182.854933pt;}
.yb6{bottom:183.381733pt;}
.y1f{bottom:183.383067pt;}
.y10b{bottom:183.385733pt;}
.y47{bottom:184.691867pt;}
.y90{bottom:188.324400pt;}
.y1b3{bottom:191.259867pt;}
.y166{bottom:191.419200pt;}
.y18b{bottom:192.342667pt;}
.y14c{bottom:192.598133pt;}
.ye7{bottom:195.258933pt;}
.y246{bottom:196.988267pt;}
.y8f{bottom:198.045733pt;}
.yb5{bottom:198.049733pt;}
.y1e{bottom:198.051067pt;}
.y10a{bottom:198.053733pt;}
.yc6{bottom:198.055067pt;}
.y1fb{bottom:198.503600pt;}
.y1d6{bottom:199.827067pt;}
.y222{bottom:200.281600pt;}
.y25b{bottom:200.454933pt;}
.y6a{bottom:201.669600pt;}
.y46{bottom:203.763867pt;}
.y129{bottom:206.101600pt;}
.y1b2{bottom:207.261867pt;}
.y14b{bottom:208.334133pt;}
.y18a{bottom:208.610667pt;}
.y8e{bottom:212.713733pt;}
.yb4{bottom:212.717733pt;}
.y1d{bottom:212.719067pt;}
.y109{bottom:212.721733pt;}
.yc5{bottom:212.723067pt;}
.y26d{bottom:214.321600pt;}
.ye6{bottom:214.330933pt;}
.y245{bottom:214.588267pt;}
.y1fa{bottom:216.499600pt;}
.y1d5{bottom:217.715067pt;}
.y221{bottom:218.145600pt;}
.y165{bottom:218.512400pt;}
.y69{bottom:221.141600pt;}
.y45{bottom:222.835867pt;}
.y1b1{bottom:223.263867pt;}
.y14a{bottom:224.037867pt;}
.y189{bottom:224.878667pt;}
.y128{bottom:225.429600pt;}
.yc4{bottom:227.379067pt;}
.y8d{bottom:227.381733pt;}
.yb3{bottom:227.385733pt;}
.y1c{bottom:227.387067pt;}
.y108{bottom:227.389733pt;}
.y26c{bottom:230.321600pt;}
.y244{bottom:232.188267pt;}
.ye5{bottom:233.402933pt;}
.y1f9{bottom:234.495600pt;}
.y1d4{bottom:235.579067pt;}
.y220{bottom:236.009600pt;}
.y25a{bottom:237.254933pt;}
.y164{bottom:237.440400pt;}
.y1b0{bottom:239.265867pt;}
.y149{bottom:239.773867pt;}
.y68{bottom:240.613600pt;}
.y188{bottom:241.146667pt;}
.y44{bottom:241.907867pt;}
.yc3{bottom:242.047067pt;}
.y8c{bottom:242.049733pt;}
.yb2{bottom:242.053733pt;}
.y1b{bottom:242.055067pt;}
.y127{bottom:244.757600pt;}
.y26b{bottom:246.321600pt;}
.y107{bottom:246.991067pt;}
.y243{bottom:249.788267pt;}
.ye4{bottom:252.474933pt;}
.y1f8{bottom:252.491600pt;}
.y1d3{bottom:253.443067pt;}
.y21f{bottom:253.873600pt;}
.y1af{bottom:255.267867pt;}
.y148{bottom:255.509867pt;}
.y163{bottom:256.368400pt;}
.yc2{bottom:256.715067pt;}
.y8b{bottom:256.717733pt;}
.yb1{bottom:256.721733pt;}
.y1a{bottom:256.723067pt;}
.y187{bottom:257.414667pt;}
.y67{bottom:260.085600pt;}
.y43{bottom:260.979867pt;}
.y26a{bottom:262.321600pt;}
.y126{bottom:264.085600pt;}
.y242{bottom:267.388267pt;}
.y1f7{bottom:270.487600pt;}
.y147{bottom:271.245867pt;}
.y1ae{bottom:271.269867pt;}
.y1d2{bottom:271.307067pt;}
.yc1{bottom:271.383067pt;}
.y8a{bottom:271.385733pt;}
.yb0{bottom:271.389733pt;}
.ye3{bottom:271.546933pt;}
.y21e{bottom:271.737600pt;}
.y259{bottom:274.054933pt;}
.y162{bottom:275.296400pt;}
.y19{bottom:276.324400pt;}
.y269{bottom:278.321600pt;}
.y66{bottom:279.557600pt;}
.y42{bottom:280.051867pt;}
.y125{bottom:283.413600pt;}
.y106{bottom:283.418933pt;}
.y241{bottom:284.988267pt;}
.y186{bottom:285.022667pt;}
.yc0{bottom:286.051067pt;}
.y89{bottom:286.053733pt;}
.y1f6{bottom:288.483600pt;}
.y1d1{bottom:289.171067pt;}
.y21d{bottom:289.601600pt;}
.ye2{bottom:290.618933pt;}
.yaf{bottom:290.991067pt;}
.y258{bottom:293.254933pt;}
.y161{bottom:294.224400pt;}
.y146{bottom:298.321867pt;}
.y1ad{bottom:298.611867pt;}
.y65{bottom:299.029600pt;}
.y41{bottom:299.123867pt;}
.ybf{bottom:300.719067pt;}
.y88{bottom:300.721733pt;}
.y185{bottom:301.416667pt;}
.y240{bottom:302.588267pt;}
.y124{bottom:302.741600pt;}
.y105{bottom:302.746933pt;}
.y1f5{bottom:306.479600pt;}
.y1d0{bottom:307.035067pt;}
.y21c{bottom:307.465600pt;}
.y18{bottom:308.127200pt;}
.ye1{bottom:309.690933pt;}
.y257{bottom:312.454933pt;}
.y268{bottom:313.521600pt;}
.y145{bottom:314.057867pt;}
.y1ac{bottom:314.613867pt;}
.ybe{bottom:315.387067pt;}
.y87{bottom:315.389733pt;}
.y184{bottom:317.810667pt;}
.y40{bottom:318.195867pt;}
.y64{bottom:318.362933pt;}
.y23f{bottom:320.188267pt;}
.y123{bottom:322.069600pt;}
.y104{bottom:322.074933pt;}
.y1f4{bottom:324.475600pt;}
.y160{bottom:324.485733pt;}
.y1cf{bottom:324.899067pt;}
.y21b{bottom:325.329600pt;}
.yae{bottom:325.434933pt;}
.y17{bottom:326.255200pt;}
.ye0{bottom:328.762933pt;}
.y144{bottom:329.793867pt;}
.ybd{bottom:330.055067pt;}
.y1ab{bottom:330.611867pt;}
.y267{bottom:331.121600pt;}
.y86{bottom:334.991067pt;}
.y3f{bottom:337.267867pt;}
.y23e{bottom:337.788267pt;}
.y63{bottom:337.834933pt;}
.y15f{bottom:340.221733pt;}
.y122{bottom:341.397600pt;}
.y103{bottom:341.402933pt;}
.y1f3{bottom:342.471600pt;}
.y1ce{bottom:342.763067pt;}
.y21a{bottom:343.193600pt;}
.y16{bottom:344.383200pt;}
.yad{bottom:344.634933pt;}
.ybc{bottom:344.723067pt;}
.y143{bottom:345.529867pt;}
.y183{bottom:345.549333pt;}
.y1aa{bottom:346.613867pt;}
.ydf{bottom:347.834933pt;}
.y256{bottom:355.121600pt;}
.y23d{bottom:355.388267pt;}
.y15e{bottom:355.957733pt;}
.y3e{bottom:356.339867pt;}
.y62{bottom:357.306933pt;}
.y1f2{bottom:360.467600pt;}
.y1cd{bottom:360.627067pt;}
.y121{bottom:360.725600pt;}
.y102{bottom:360.730933pt;}
.y219{bottom:361.057600pt;}
.y15{bottom:362.511200pt;}
.y1a9{bottom:362.615867pt;}
.yac{bottom:363.834933pt;}
.ybb{bottom:364.324400pt;}
.y182{bottom:365.149333pt;}
.yde{bottom:366.906933pt;}
.y266{bottom:367.921600pt;}
.y85{bottom:370.240267pt;}
.y255{bottom:371.121600pt;}
.y15d{bottom:371.693733pt;}
.y142{bottom:372.605867pt;}
.y23c{bottom:372.988267pt;}
.y3d{bottom:375.411867pt;}
.y61{bottom:376.778933pt;}
.y1f1{bottom:378.463600pt;}
.y1cc{bottom:378.491067pt;}
.y218{bottom:378.921600pt;}
.y120{bottom:380.053600pt;}
.y101{bottom:380.058933pt;}
.y14{bottom:380.639200pt;}
.yab{bottom:383.034933pt;}
.y181{bottom:384.749333pt;}
.y265{bottom:385.521600pt;}
.ydd{bottom:385.978933pt;}
.y254{bottom:387.121600pt;}
.y15c{bottom:387.424400pt;}
.y141{bottom:388.341867pt;}
.y84{bottom:389.226933pt;}
.y1a8{bottom:389.895867pt;}
.y23b{bottom:390.588267pt;}
.y3c{bottom:394.483867pt;}
.y60{bottom:396.250933pt;}
.y1f0{bottom:396.459600pt;}
.y217{bottom:396.785600pt;}
.y13{bottom:398.767200pt;}
.y11f{bottom:399.381600pt;}
.y100{bottom:399.386933pt;}
.yaa{bottom:402.234933pt;}
.y253{bottom:403.121600pt;}
.y15b{bottom:403.160400pt;}
.y1cb{bottom:403.916800pt;}
.y140{bottom:404.077867pt;}
.y180{bottom:404.349333pt;}
.ydc{bottom:405.050933pt;}
.y83{bottom:408.154933pt;}
.y1a7{bottom:409.095867pt;}
.y3b{bottom:413.555867pt;}
.y1ef{bottom:414.455600pt;}
.y216{bottom:414.649600pt;}
.y5f{bottom:415.722933pt;}
.y12{bottom:416.895200pt;}
.y11e{bottom:418.709600pt;}
.yff{bottom:418.714933pt;}
.y15a{bottom:418.896400pt;}
.y252{bottom:419.121600pt;}
.y13f{bottom:419.811333pt;}
.y264{bottom:420.721600pt;}
.ya9{bottom:421.434933pt;}
.y17f{bottom:423.949333pt;}
.ydb{bottom:424.122933pt;}
.y82{bottom:427.082933pt;}
.y23a{bottom:427.388267pt;}
.y1a6{bottom:428.295867pt;}
.y1ee{bottom:432.451600pt;}
.y215{bottom:432.513600pt;}
.y3a{bottom:432.627867pt;}
.y11{bottom:435.023200pt;}
.y5e{bottom:435.194933pt;}
.y13e{bottom:435.515067pt;}
.y11d{bottom:438.037600pt;}
.yfe{bottom:438.042933pt;}
.y263{bottom:438.321600pt;}
.ya8{bottom:440.634933pt;}
.yda{bottom:443.194933pt;}
.y17e{bottom:443.549333pt;}
.y81{bottom:446.010933pt;}
.y159{bottom:446.074933pt;}
.y1ca{bottom:447.113200pt;}
.y1a5{bottom:447.495867pt;}
.y214{bottom:450.377600pt;}
.y1ed{bottom:450.447600pt;}
.y13d{bottom:451.251067pt;}
.y39{bottom:451.699867pt;}
.y10{bottom:453.151200pt;}
.y251{bottom:454.321600pt;}
.y5d{bottom:454.666933pt;}
.y262{bottom:455.921600pt;}
.y11c{bottom:457.365600pt;}
.yfd{bottom:457.370933pt;}
.ya7{bottom:459.834933pt;}
.yd9{bottom:462.266933pt;}
.y17d{bottom:463.149333pt;}
.y239{bottom:464.188267pt;}
.y80{bottom:464.938933pt;}
.y158{bottom:465.002933pt;}
.y1a4{bottom:466.567867pt;}
.y1c9{bottom:466.585200pt;}
.y213{bottom:468.241600pt;}
.y1ec{bottom:468.443600pt;}
.y38{bottom:470.771867pt;}
.yf{bottom:471.279200pt;}
.y250{bottom:471.921600pt;}
.y261{bottom:473.521600pt;}
.y5c{bottom:474.138933pt;}
.y11b{bottom:476.693600pt;}
.yfc{bottom:476.698933pt;}
.y13c{bottom:478.327067pt;}
.ya6{bottom:479.034933pt;}
.yd8{bottom:481.338933pt;}
.y17c{bottom:482.749333pt;}
.y238{bottom:483.388267pt;}
.y7f{bottom:483.866933pt;}
.y157{bottom:483.930933pt;}
.y1a3{bottom:485.639867pt;}
.y1c8{bottom:486.057200pt;}
.y212{bottom:486.105600pt;}
.y1eb{bottom:486.439600pt;}
.y37{bottom:489.843867pt;}
.y260{bottom:491.121600pt;}
.y5b{bottom:493.610933pt;}
.y13b{bottom:494.063067pt;}
.y11a{bottom:496.021600pt;}
.yfb{bottom:496.026933pt;}
.ye{bottom:496.971467pt;}
.ya5{bottom:498.234933pt;}
.yd7{bottom:500.410933pt;}
.y237{bottom:502.588267pt;}
.y7e{bottom:502.794933pt;}
.y156{bottom:502.858933pt;}
.y211{bottom:503.969600pt;}
.y1ea{bottom:504.435600pt;}
.y1a2{bottom:504.711867pt;}
.y1c7{bottom:505.529200pt;}
.y24f{bottom:508.721600pt;}
.y36{bottom:508.915867pt;}
.y13a{bottom:509.799067pt;}
.y5a{bottom:513.082933pt;}
.y17b{bottom:513.705867pt;}
.y119{bottom:515.349600pt;}
.yfa{bottom:515.354933pt;}
.ya4{bottom:517.434933pt;}
.yd6{bottom:519.482933pt;}
.y7d{bottom:521.722933pt;}
.y155{bottom:521.786933pt;}
.y236{bottom:521.788267pt;}
.y210{bottom:521.833600pt;}
.y1e9{bottom:522.431600pt;}
.y1a1{bottom:523.783867pt;}
.y1c6{bottom:525.001200pt;}
.y139{bottom:525.535067pt;}
.y24e{bottom:526.321600pt;}
.y35{bottom:527.987867pt;}
.y17a{bottom:530.099867pt;}
.y59{bottom:532.554933pt;}
.y118{bottom:534.677600pt;}
.yf9{bottom:534.682933pt;}
.ya3{bottom:536.634933pt;}
.yd5{bottom:538.554933pt;}
.y20f{bottom:539.697600pt;}
.y1e8{bottom:540.427600pt;}
.y7c{bottom:540.650933pt;}
.y154{bottom:540.714933pt;}
.y138{bottom:541.271067pt;}
.y1a0{bottom:542.855867pt;}
.y24d{bottom:543.921600pt;}
.y1c5{bottom:544.473200pt;}
.y179{bottom:546.493867pt;}
.y34{bottom:547.059867pt;}
.y58{bottom:552.026933pt;}
.y117{bottom:554.005600pt;}
.yf8{bottom:554.010933pt;}
.ya2{bottom:555.834933pt;}
.yd{bottom:556.176800pt;}
.y235{bottom:556.988267pt;}
.y137{bottom:557.007067pt;}
.y20e{bottom:557.561600pt;}
.yd4{bottom:557.626933pt;}
.y1e7{bottom:558.423600pt;}
.y7b{bottom:559.578933pt;}
.y153{bottom:559.642933pt;}
.y24c{bottom:561.521600pt;}
.y19f{bottom:561.927867pt;}
.y178{bottom:562.887867pt;}
.y1c4{bottom:563.945200pt;}
.y33{bottom:566.131867pt;}
.y57{bottom:571.498933pt;}
.y234{bottom:572.188267pt;}
.y116{bottom:573.333600pt;}
.yf7{bottom:573.338933pt;}
.yc{bottom:574.304800pt;}
.ya1{bottom:575.034933pt;}
.y20d{bottom:575.425600pt;}
.y1e6{bottom:576.419600pt;}
.yd3{bottom:576.698933pt;}
.y7a{bottom:578.506933pt;}
.y152{bottom:578.570933pt;}
.y24b{bottom:579.121600pt;}
.y19e{bottom:580.999867pt;}
.y1c3{bottom:583.417200pt;}
.y136{bottom:584.083067pt;}
.y32{bottom:585.203867pt;}
.y31{bottom:585.209200pt;}
.y177{bottom:590.583733pt;}
.y56{bottom:590.970933pt;}
.y115{bottom:592.661600pt;}
.yf6{bottom:592.666933pt;}
.y20c{bottom:593.289600pt;}
.ya0{bottom:594.234933pt;}
.y1e5{bottom:594.415600pt;}
.yd2{bottom:595.770933pt;}
.y233{bottom:596.721600pt;}
.y79{bottom:597.440267pt;}
.y151{bottom:597.498933pt;}
.y135{bottom:599.819067pt;}
.y19d{bottom:600.071867pt;}
.y1c2{bottom:602.889200pt;}
.y176{bottom:610.055733pt;}
.y55{bottom:610.442933pt;}
.y20b{bottom:611.153600pt;}
.y114{bottom:611.989600pt;}
.yf5{bottom:611.994933pt;}
.yb{bottom:612.139467pt;}
.y1e4{bottom:612.411600pt;}
.y9f{bottom:613.434933pt;}
.y232{bottom:614.321600pt;}
.yd1{bottom:614.842933pt;}
.y134{bottom:615.555067pt;}
.y78{bottom:616.426933pt;}
.y19c{bottom:619.143867pt;}
.y1c1{bottom:622.361200pt;}
.y20a{bottom:629.017600pt;}
.y175{bottom:629.527733pt;}
.y54{bottom:629.914933pt;}
.y1e3{bottom:630.407600pt;}
.y133{bottom:631.276400pt;}
.y113{bottom:631.317600pt;}
.yf4{bottom:631.322933pt;}
.y231{bottom:631.921600pt;}
.y9e{bottom:632.634933pt;}
.yd0{bottom:633.914933pt;}
.y77{bottom:635.354933pt;}
.y19b{bottom:638.215867pt;}
.ya{bottom:639.883467pt;}
.y1c0{bottom:641.833200pt;}
.y30{bottom:642.402533pt;}
.y209{bottom:646.881600pt;}
.y132{bottom:647.012400pt;}
.y1e2{bottom:648.403600pt;}
.y174{bottom:648.999733pt;}
.y53{bottom:649.386933pt;}
.y230{bottom:649.521600pt;}
.y112{bottom:650.645600pt;}
.yf3{bottom:650.650933pt;}
.y9d{bottom:651.834933pt;}
.ycf{bottom:652.986933pt;}
.y76{bottom:654.282933pt;}
.y19a{bottom:657.287867pt;}
.y2f{bottom:659.870533pt;}
.y1bf{bottom:661.305200pt;}
.y208{bottom:664.745600pt;}
.y22f{bottom:667.121600pt;}
.y9{bottom:667.627467pt;}
.y173{bottom:668.471733pt;}
.y52{bottom:668.858933pt;}
.y111{bottom:669.973600pt;}
.yf2{bottom:669.978933pt;}
.y9c{bottom:671.034933pt;}
.yce{bottom:672.058933pt;}
.y75{bottom:673.210933pt;}
.y1e1{bottom:673.962667pt;}
.y131{bottom:674.088400pt;}
.y2e{bottom:677.338533pt;}
.y1be{bottom:680.777200pt;}
.y207{bottom:682.609600pt;}
.y22e{bottom:684.721600pt;}
.y199{bottom:687.729067pt;}
.y172{bottom:687.943733pt;}
.y51{bottom:688.330933pt;}
.yf1{bottom:689.306933pt;}
.y110{bottom:689.338933pt;}
.y130{bottom:689.824400pt;}
.y9b{bottom:690.234933pt;}
.ycd{bottom:691.130933pt;}
.y74{bottom:692.138933pt;}
.y2d{bottom:694.806533pt;}
.y8{bottom:695.371467pt;}
.y1bd{bottom:700.249200pt;}
.y206{bottom:700.473600pt;}
.y22d{bottom:702.321600pt;}
.y198{bottom:703.591067pt;}
.y12f{bottom:705.560400pt;}
.y171{bottom:707.415733pt;}
.y50{bottom:707.802933pt;}
.yf0{bottom:708.666933pt;}
.y9a{bottom:709.434933pt;}
.ycc{bottom:710.202933pt;}
.y73{bottom:711.066933pt;}
.y2c{bottom:712.274533pt;}
.y1e0{bottom:717.545600pt;}
.y205{bottom:718.337600pt;}
.y197{bottom:719.453067pt;}
.y1bc{bottom:719.721200pt;}
.y22c{bottom:719.921600pt;}
.y12e{bottom:721.296400pt;}
.y170{bottom:726.887733pt;}
.y4f{bottom:727.274933pt;}
.yef{bottom:727.994933pt;}
.y99{bottom:728.634933pt;}
.ycb{bottom:729.274933pt;}
.y2b{bottom:729.737200pt;}
.y72{bottom:729.994933pt;}
.y196{bottom:735.315067pt;}
.y1df{bottom:735.541600pt;}
.y204{bottom:736.201600pt;}
.y22b{bottom:737.521600pt;}
.y1bb{bottom:739.193200pt;}
.y7{bottom:745.026133pt;}
.y16f{bottom:746.359733pt;}
.y4e{bottom:746.746933pt;}
.y2a{bottom:747.205200pt;}
.yee{bottom:747.322933pt;}
.y98{bottom:747.834933pt;}
.yca{bottom:748.346933pt;}
.y71{bottom:748.922933pt;}
.y195{bottom:751.177067pt;}
.y1de{bottom:753.537600pt;}
.y203{bottom:754.065600pt;}
.y22a{bottom:755.121600pt;}
.y1ba{bottom:758.665200pt;}
.y6{bottom:761.559467pt;}
.y29{bottom:764.673200pt;}
.y4d{bottom:766.218933pt;}
.yed{bottom:766.650933pt;}
.y97{bottom:767.034933pt;}
.y194{bottom:767.039067pt;}
.yc9{bottom:767.418933pt;}
.y70{bottom:767.850933pt;}
.y1dd{bottom:771.533600pt;}
.y202{bottom:771.929600pt;}
.y229{bottom:772.721600pt;}
.y16e{bottom:777.161067pt;}
.y5{bottom:778.092800pt;}
.y4{bottom:778.094933pt;}
.y1b9{bottom:778.137200pt;}
.y28{bottom:782.141200pt;}
.y4c{bottom:785.690933pt;}
.yec{bottom:785.978933pt;}
.y96{bottom:786.234933pt;}
.yc8{bottom:786.490933pt;}
.y6f{bottom:786.778933pt;}
.y1dc{bottom:789.529600pt;}
.y201{bottom:789.793600pt;}
.y228{bottom:790.321600pt;}
.y16d{bottom:793.429067pt;}
.y193{bottom:794.241067pt;}
.y1b8{bottom:797.609200pt;}
.y27{bottom:799.609200pt;}
.y4b{bottom:805.162933pt;}
.yeb{bottom:805.306933pt;}
.y95{bottom:805.434933pt;}
.yc7{bottom:805.562933pt;}
.y6e{bottom:805.706933pt;}
.y1db{bottom:807.525600pt;}
.y200{bottom:807.657600pt;}
.y227{bottom:807.921600pt;}
.y3{bottom:808.988267pt;}
.y16c{bottom:809.697067pt;}
.y192{bottom:810.103067pt;}
.y26{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y16b{bottom:825.965067pt;}
.h9{height:23.288802pt;}
.hb{height:25.065104pt;}
.h12{height:27.171875pt;}
.hd{height:28.645833pt;}
.h3{height:31.700521pt;}
.h20{height:35.546875pt;}
.h2{height:35.807292pt;}
.he{height:36.229167pt;}
.h4{height:39.101562pt;}
.hc{height:39.388021pt;}
.h1f{height:40.476562pt;}
.ha{height:43.022135pt;}
.h15{height:43.070135pt;}
.h21{height:44.661458pt;}
.h5{height:45.286458pt;}
.h18{height:47.550781pt;}
.h1b{height:47.560915pt;}
.h1d{height:47.566781pt;}
.h1c{height:47.572115pt;}
.h19{height:47.609448pt;}
.h1a{height:47.679848pt;}
.h7{height:49.815104pt;}
.hf{height:49.836437pt;}
.h1e{height:51.499729pt;}
.h17{height:54.194417pt;}
.h8{height:54.343750pt;}
.h16{height:56.158250pt;}
.h13{height:56.264917pt;}
.h14{height:56.286250pt;}
.h11{height:56.840917pt;}
.h6{height:76.986979pt;}
.h10{height:130.610417pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.xd{left:84.408267pt;}
.x1{left:86.929200pt;}
.x6{left:105.826800pt;}
.xf{left:124.717467pt;}
.x2{left:133.929200pt;}
.xe{left:139.840933pt;}
.x3{left:145.312000pt;}
.x7{left:172.461867pt;}
.x12{left:176.804133pt;}
.x13{left:210.635600pt;}
.x5{left:230.123067pt;}
.xa{left:277.752933pt;}
.x8{left:333.931067pt;}
.x9{left:339.087333pt;}
.x4{left:365.259867pt;}
.x11{left:452.227333pt;}
.x10{left:460.194667pt;}
.xb{left:535.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; }
  