
    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_7d9ecdc296054d67185e41ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6edd498977eef1d8fbfb85de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0f658358794f11465493c604.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.670898;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_903731981421bf352aa9d555.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3b67108da199cdf2ecb9b885.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_3718f56eeedb6c39e6b137ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_db48fc1513f3bd1eadb2a6cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_93ce174a3bc58145968795cc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_badfa6404410671c31d484e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_622bde6f141e3faabe9b9aae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;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:ffd;src:url('chunks/assets/font_ef7c180bf53302c80a39f7cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.913086;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:ffe;src:url('chunks/assets/font_e3933c1968f13d755e328a39.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.913086;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:fff;src:url('chunks/assets/font_99b505a20ab37d332fdd2c8c.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_831a9aa0b87876f7f7bef391.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-27.000000px;}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-14.760000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.124000px;}
.v8{vertical-align:14.760000px;}
.v6{vertical-align:17.640000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.v9{vertical-align:27.000000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls60{letter-spacing:-0.480960px;}
.lsb{letter-spacing:-0.420840px;}
.lsf{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.300600px;}
.ls15{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.240480px;}
.ls10{letter-spacing:-0.216000px;}
.ls3a{letter-spacing:-0.180360px;}
.ls46{letter-spacing:-0.170640px;}
.ls3b{letter-spacing:-0.167760px;}
.ls7{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.120240px;}
.ls47{letter-spacing:-0.113760px;}
.ls18{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.060120px;}
.ls2b{letter-spacing:-0.051120px;}
.ls0{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.060120px;}
.ls6{letter-spacing:0.072000px;}
.ls3c{letter-spacing:0.083880px;}
.ls56{letter-spacing:0.090000px;}
.ls37{letter-spacing:0.095760px;}
.ls2a{letter-spacing:0.102240px;}
.ls11{letter-spacing:0.120240px;}
.ls1a{letter-spacing:0.136800px;}
.ls55{letter-spacing:0.140040px;}
.ls1{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.151200px;}
.lse{letter-spacing:0.165600px;}
.lsc{letter-spacing:0.167760px;}
.ls44{letter-spacing:0.170640px;}
.ls3d{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.180360px;}
.ls30{letter-spacing:0.191520px;}
.ls59{letter-spacing:0.216000px;}
.ls62{letter-spacing:0.234468px;}
.ls57{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.360000px;}
.ls58{letter-spacing:0.450000px;}
.ls52{letter-spacing:0.720000px;}
.ls61{letter-spacing:0.781560px;}
.ls14{letter-spacing:1.080000px;}
.ls3f{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.512000px;}
.ls32{letter-spacing:1.719360px;}
.ls40{letter-spacing:1.800000px;}
.ls36{letter-spacing:2.079360px;}
.ls25{letter-spacing:2.232000px;}
.ls41{letter-spacing:2.520000px;}
.ls5{letter-spacing:2.585160px;}
.ls21{letter-spacing:2.880000px;}
.ls4{letter-spacing:2.945880px;}
.ls13{letter-spacing:3.240000px;}
.ls1e{letter-spacing:3.600000px;}
.ls5c{letter-spacing:3.667320px;}
.ls43{letter-spacing:3.960000px;}
.ls24{letter-spacing:4.130640px;}
.ls42{letter-spacing:4.320000px;}
.ls38{letter-spacing:4.680000px;}
.ls19{letter-spacing:5.040000px;}
.ls5a{letter-spacing:5.110200px;}
.ls16{letter-spacing:5.400000px;}
.ls2d{letter-spacing:5.760000px;}
.ls2e{letter-spacing:6.120000px;}
.ls1c{letter-spacing:6.134400px;}
.ls63{letter-spacing:6.192360px;}
.ls5e{letter-spacing:6.913800px;}
.ls45{letter-spacing:7.200000px;}
.ls12{letter-spacing:7.560000px;}
.ls17{letter-spacing:7.920000px;}
.ls49{letter-spacing:8.280000px;}
.ls39{letter-spacing:9.000000px;}
.ls54{letter-spacing:9.090000px;}
.ls31{letter-spacing:9.258480px;}
.ls4a{letter-spacing:9.360000px;}
.ls4b{letter-spacing:9.720000px;}
.ls5d{letter-spacing:9.799560px;}
.ls4f{letter-spacing:10.800000px;}
.ls34{letter-spacing:11.160000px;}
.ls53{letter-spacing:11.880000px;}
.ls3{letter-spacing:11.963880px;}
.ls3e{letter-spacing:12.600000px;}
.ls48{letter-spacing:13.320000px;}
.ls51{letter-spacing:14.040000px;}
.ls4e{letter-spacing:14.421600px;}
.ls20{letter-spacing:15.840000px;}
.ls28{letter-spacing:16.056000px;}
.lsd{letter-spacing:16.920000px;}
.ls1f{letter-spacing:17.280000px;}
.ls35{letter-spacing:18.360000px;}
.ls4d{letter-spacing:19.440000px;}
.ls22{letter-spacing:19.800000px;}
.ls23{letter-spacing:20.016000px;}
.ls33{letter-spacing:20.078280px;}
.ls29{letter-spacing:20.576880px;}
.ls26{letter-spacing:21.456000px;}
.ls4c{letter-spacing:24.120000px;}
.ls50{letter-spacing:102.240000px;}
.ls2{letter-spacing:847.728000px;}
.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;}
}
.wsb7{word-spacing:-72.000000px;}
.wsb9{word-spacing:-71.856000px;}
.ws143{word-spacing:-60.120000px;}
.wsb8{word-spacing:-51.222240px;}
.wsbb{word-spacing:-51.120000px;}
.wsba{word-spacing:-51.068880px;}
.wsbd{word-spacing:-30.981600px;}
.wsbc{word-spacing:-30.976632px;}
.ws105{word-spacing:-21.137760px;}
.wsda{word-spacing:-21.053880px;}
.wsd9{word-spacing:-20.970000px;}
.ws116{word-spacing:-20.802240px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws106{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws8d{word-spacing:-17.784000px;}
.wse4{word-spacing:-17.712000px;}
.ws25{word-spacing:-17.640000px;}
.ws11e{word-spacing:-16.272000px;}
.wsf5{word-spacing:-15.210360px;}
.ws13e{word-spacing:-15.090120px;}
.ws8{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.969880px;}
.ws12c{word-spacing:-14.909760px;}
.wsce{word-spacing:-14.849640px;}
.wsbe{word-spacing:-14.789520px;}
.ws144{word-spacing:-14.729400px;}
.wsbf{word-spacing:-14.609160px;}
.ws145{word-spacing:-14.549040px;}
.ws1{word-spacing:-13.344000px;}
.wseb{word-spacing:-12.513600px;}
.wsc4{word-spacing:-12.065760px;}
.ws3{word-spacing:-11.970000px;}
.ws7{word-spacing:-9.720000px;}
.wsc2{word-spacing:-4.464000px;}
.ws85{word-spacing:-4.392000px;}
.ws56{word-spacing:-4.320000px;}
.ws88{word-spacing:-4.104000px;}
.wsa0{word-spacing:-4.032000px;}
.ws2a{word-spacing:-3.960000px;}
.ws18{word-spacing:-3.744000px;}
.ws138{word-spacing:-3.667320px;}
.ws17{word-spacing:-3.600000px;}
.ws89{word-spacing:-3.384000px;}
.ws8b{word-spacing:-3.312000px;}
.ws133{word-spacing:-3.306600px;}
.ws59{word-spacing:-3.240000px;}
.wsa6{word-spacing:-3.024000px;}
.ws4d{word-spacing:-2.952000px;}
.ws4c{word-spacing:-2.880000px;}
.ws92{word-spacing:-2.664000px;}
.wsdd{word-spacing:-2.592000px;}
.ws31{word-spacing:-2.520000px;}
.ws15b{word-spacing:-2.344680px;}
.ws91{word-spacing:-2.304000px;}
.ws131{word-spacing:-2.224440px;}
.ws6a{word-spacing:-2.160000px;}
.wse3{word-spacing:-1.944000px;}
.wsa7{word-spacing:-1.872000px;}
.wse9{word-spacing:-1.863720px;}
.ws78{word-spacing:-1.800000px;}
.ws137{word-spacing:-1.623240px;}
.ws81{word-spacing:-1.584000px;}
.ws97{word-spacing:-1.512000px;}
.ws60{word-spacing:-1.503000px;}
.ws6c{word-spacing:-1.440000px;}
.ws9c{word-spacing:-1.224000px;}
.ws84{word-spacing:-1.152000px;}
.wsec{word-spacing:-1.142280px;}
.ws2e{word-spacing:-1.080000px;}
.ws161{word-spacing:-0.901800px;}
.ws2b{word-spacing:-0.864000px;}
.ws14f{word-spacing:-0.841680px;}
.ws5d{word-spacing:-0.792000px;}
.wsd5{word-spacing:-0.781560px;}
.ws160{word-spacing:-0.721440px;}
.ws7a{word-spacing:-0.720000px;}
.ws13b{word-spacing:-0.541080px;}
.wsb{word-spacing:-0.504000px;}
.ws134{word-spacing:-0.480960px;}
.ws4b{word-spacing:-0.432000px;}
.wsef{word-spacing:-0.420840px;}
.ws13f{word-spacing:-0.360720px;}
.ws3a{word-spacing:-0.360000px;}
.ws13a{word-spacing:-0.288000px;}
.ws26{word-spacing:-0.251640px;}
.ws121{word-spacing:-0.216000px;}
.ws158{word-spacing:-0.191520px;}
.wsf1{word-spacing:-0.180360px;}
.wsee{word-spacing:-0.170640px;}
.ws107{word-spacing:-0.167760px;}
.ws16{word-spacing:-0.144000px;}
.wsd4{word-spacing:-0.120240px;}
.ws154{word-spacing:-0.083880px;}
.ws3b{word-spacing:-0.072000px;}
.ws21{word-spacing:-0.060120px;}
.ws0{word-spacing:0.000000px;}
.ws162{word-spacing:0.060120px;}
.ws99{word-spacing:0.072000px;}
.wsdc{word-spacing:0.083880px;}
.wsfc{word-spacing:0.113760px;}
.ws123{word-spacing:0.120240px;}
.ws93{word-spacing:0.144000px;}
.ws108{word-spacing:0.167760px;}
.wsfb{word-spacing:0.170640px;}
.wsed{word-spacing:0.180360px;}
.ws5c{word-spacing:0.216000px;}
.ws64{word-spacing:0.240480px;}
.ws73{word-spacing:0.288000px;}
.wsf2{word-spacing:0.300600px;}
.ws27{word-spacing:0.360000px;}
.ws130{word-spacing:0.420840px;}
.ws135{word-spacing:0.541080px;}
.ws8a{word-spacing:0.576000px;}
.ws47{word-spacing:0.648000px;}
.wsf3{word-spacing:0.661320px;}
.ws33{word-spacing:0.720000px;}
.wsc9{word-spacing:0.936000px;}
.wsf0{word-spacing:0.961920px;}
.ws6d{word-spacing:1.008000px;}
.ws14a{word-spacing:1.022040px;}
.ws34{word-spacing:1.080000px;}
.ws149{word-spacing:1.262520px;}
.ws4e{word-spacing:1.296000px;}
.ws136{word-spacing:1.322640px;}
.ws36{word-spacing:1.368000px;}
.ws150{word-spacing:1.382760px;}
.ws35{word-spacing:1.440000px;}
.wsfa{word-spacing:1.563120px;}
.ws152{word-spacing:1.623240px;}
.ws53{word-spacing:1.656000px;}
.ws13d{word-spacing:1.683360px;}
.ws58{word-spacing:1.728000px;}
.ws54{word-spacing:1.800000px;}
.ws62{word-spacing:1.923840px;}
.wsa2{word-spacing:2.016000px;}
.ws61{word-spacing:2.044080px;}
.wsc3{word-spacing:2.088000px;}
.ws48{word-spacing:2.160000px;}
.ws1f{word-spacing:2.284560px;}
.ws20{word-spacing:2.344680px;}
.wsa3{word-spacing:2.376000px;}
.ws10d{word-spacing:2.404800px;}
.ws55{word-spacing:2.448000px;}
.ws39{word-spacing:2.520000px;}
.ws1a{word-spacing:2.645280px;}
.ws1b{word-spacing:2.705400px;}
.ws65{word-spacing:2.736000px;}
.ws63{word-spacing:2.765520px;}
.wsad{word-spacing:2.808000px;}
.ws142{word-spacing:2.825640px;}
.ws43{word-spacing:2.880000px;}
.ws124{word-spacing:2.952000px;}
.ws15c{word-spacing:3.006000px;}
.ws1c{word-spacing:3.066120px;}
.wsd{word-spacing:3.096000px;}
.wscd{word-spacing:3.126240px;}
.ws7c{word-spacing:3.168000px;}
.ws5a{word-spacing:3.240000px;}
.wsf4{word-spacing:3.366720px;}
.wsab{word-spacing:3.456000px;}
.ws141{word-spacing:3.486960px;}
.ws10{word-spacing:3.528000px;}
.ws11{word-spacing:3.600000px;}
.ws163{word-spacing:3.607200px;}
.ws140{word-spacing:3.787560px;}
.ws80{word-spacing:3.816000px;}
.wsd8{word-spacing:3.847680px;}
.ws70{word-spacing:3.888000px;}
.ws13{word-spacing:3.960000px;}
.ws164{word-spacing:4.088160px;}
.ws10a{word-spacing:4.176000px;}
.wsd7{word-spacing:4.208400px;}
.ws15{word-spacing:4.248000px;}
.ws68{word-spacing:4.320000px;}
.ws15d{word-spacing:4.448880px;}
.ws3d{word-spacing:4.536000px;}
.ws151{word-spacing:4.569120px;}
.ws28{word-spacing:4.608000px;}
.ws5b{word-spacing:4.680000px;}
.wse5{word-spacing:4.896000px;}
.ws132{word-spacing:4.929840px;}
.ws8c{word-spacing:4.968000px;}
.ws40{word-spacing:5.040000px;}
.ws3f{word-spacing:5.256000px;}
.ws12f{word-spacing:5.290560px;}
.wsa4{word-spacing:5.328000px;}
.ws32{word-spacing:5.400000px;}
.ws94{word-spacing:5.616000px;}
.ws153{word-spacing:5.651280px;}
.wsd2{word-spacing:5.688000px;}
.ws75{word-spacing:5.760000px;}
.ws15a{word-spacing:5.891760px;}
.ws14b{word-spacing:5.951880px;}
.wsac{word-spacing:5.976000px;}
.ws159{word-spacing:6.012000px;}
.wsc5{word-spacing:6.048000px;}
.ws9b{word-spacing:6.120000px;}
.ws155{word-spacing:6.312600px;}
.ws95{word-spacing:6.336000px;}
.ws1e{word-spacing:6.372720px;}
.wsb6{word-spacing:6.408000px;}
.ws5f{word-spacing:6.480000px;}
.ws1d{word-spacing:6.613200px;}
.ws4a{word-spacing:6.696000px;}
.ws14d{word-spacing:6.733440px;}
.ws49{word-spacing:6.768000px;}
.ws14e{word-spacing:6.973920px;}
.ws14c{word-spacing:7.034040px;}
.ws3c{word-spacing:7.056000px;}
.ws15e{word-spacing:7.094160px;}
.ws87{word-spacing:7.128000px;}
.ws12{word-spacing:7.200000px;}
.ws67{word-spacing:7.416000px;}
.ws86{word-spacing:7.488000px;}
.ws66{word-spacing:7.560000px;}
.ws10f{word-spacing:7.695360px;}
.ws9a{word-spacing:7.776000px;}
.ws10e{word-spacing:7.815600px;}
.wscc{word-spacing:7.848000px;}
.ws42{word-spacing:7.920000px;}
.ws102{word-spacing:8.136000px;}
.ws139{word-spacing:8.176320px;}
.ws10b{word-spacing:8.208000px;}
.ws9f{word-spacing:8.280000px;}
.ws6b{word-spacing:8.496000px;}
.wsa8{word-spacing:8.568000px;}
.wsc{word-spacing:8.640000px;}
.ws113{word-spacing:8.856000px;}
.ws15f{word-spacing:8.897760px;}
.ws8e{word-spacing:8.928000px;}
.ws8f{word-spacing:9.000000px;}
.ws12d{word-spacing:9.138240px;}
.wsfd{word-spacing:9.216000px;}
.ws146{word-spacing:9.258480px;}
.ws6f{word-spacing:9.288000px;}
.ws6e{word-spacing:9.360000px;}
.ws41{word-spacing:9.576000px;}
.ws109{word-spacing:9.648000px;}
.wsd1{word-spacing:9.720000px;}
.ws148{word-spacing:9.859680px;}
.ws147{word-spacing:9.919800px;}
.ws101{word-spacing:9.936000px;}
.ws100{word-spacing:10.008000px;}
.wsaf{word-spacing:10.080000px;}
.wsb0{word-spacing:10.296000px;}
.ws13c{word-spacing:10.340640px;}
.wsea{word-spacing:10.368000px;}
.ws96{word-spacing:10.440000px;}
.ws122{word-spacing:10.656000px;}
.ws57{word-spacing:10.728000px;}
.ws69{word-spacing:10.800000px;}
.ws7e{word-spacing:11.016000px;}
.ws7d{word-spacing:11.088000px;}
.ws3e{word-spacing:11.160000px;}
.ws10c{word-spacing:11.362680px;}
.ws114{word-spacing:11.376000px;}
.ws126{word-spacing:11.448000px;}
.ws74{word-spacing:11.520000px;}
.ws19{word-spacing:11.783520px;}
.wsc6{word-spacing:11.808000px;}
.wsde{word-spacing:11.880000px;}
.wsa5{word-spacing:12.096000px;}
.wsf7{word-spacing:12.168000px;}
.ws12b{word-spacing:12.240000px;}
.wse7{word-spacing:12.456000px;}
.ws11a{word-spacing:12.528000px;}
.ws90{word-spacing:12.600000px;}
.ws119{word-spacing:12.816000px;}
.ws110{word-spacing:12.888000px;}
.wse6{word-spacing:12.960000px;}
.ws125{word-spacing:13.104000px;}
.wsdf{word-spacing:13.176000px;}
.wse0{word-spacing:13.320000px;}
.wsfe{word-spacing:13.536000px;}
.wsb1{word-spacing:13.608000px;}
.ws79{word-spacing:13.680000px;}
.ws83{word-spacing:13.896000px;}
.ws82{word-spacing:13.968000px;}
.wsaa{word-spacing:14.040000px;}
.wsb4{word-spacing:14.256000px;}
.ws76{word-spacing:14.328000px;}
.ws77{word-spacing:14.400000px;}
.ws2d{word-spacing:14.616000px;}
.ws2c{word-spacing:14.760000px;}
.wsa1{word-spacing:15.120000px;}
.wsf6{word-spacing:15.336000px;}
.ws104{word-spacing:15.408000px;}
.ws7b{word-spacing:15.480000px;}
.wsc1{word-spacing:15.768000px;}
.wsc0{word-spacing:15.840000px;}
.wsff{word-spacing:16.200000px;}
.wsb5{word-spacing:16.416000px;}
.ws2f{word-spacing:16.560000px;}
.ws12e{word-spacing:16.833600px;}
.ws29{word-spacing:16.848000px;}
.ws72{word-spacing:16.920000px;}
.wsb2{word-spacing:17.136000px;}
.ws30{word-spacing:17.208000px;}
.wsb3{word-spacing:17.280000px;}
.ws52{word-spacing:17.568000px;}
.ws51{word-spacing:17.640000px;}
.wsca{word-spacing:17.856000px;}
.wsd6{word-spacing:17.915760px;}
.wsd3{word-spacing:18.000000px;}
.wscb{word-spacing:18.216000px;}
.ws129{word-spacing:18.360000px;}
.wsa{word-spacing:18.576000px;}
.wse8{word-spacing:19.008000px;}
.ws5e{word-spacing:19.080000px;}
.ws38{word-spacing:19.296000px;}
.ws37{word-spacing:19.440000px;}
.wsf9{word-spacing:19.656000px;}
.wsf8{word-spacing:19.728000px;}
.wsae{word-spacing:19.800000px;}
.ws11b{word-spacing:20.016000px;}
.ws11c{word-spacing:20.160000px;}
.ws115{word-spacing:20.376000px;}
.ws12a{word-spacing:20.520000px;}
.ws7f{word-spacing:20.880000px;}
.ws103{word-spacing:21.096000px;}
.ws156{word-spacing:21.168000px;}
.ws157{word-spacing:21.240000px;}
.ws44{word-spacing:21.960000px;}
.ws45{word-spacing:22.176000px;}
.ws50{word-spacing:22.248000px;}
.ws4f{word-spacing:22.320000px;}
.ws46{word-spacing:22.536000px;}
.wsc8{word-spacing:22.608000px;}
.ws9d{word-spacing:22.896000px;}
.wsc7{word-spacing:22.968000px;}
.ws9e{word-spacing:23.400000px;}
.wsdb{word-spacing:23.760000px;}
.ws120{word-spacing:24.120000px;}
.ws112{word-spacing:24.408000px;}
.ws111{word-spacing:24.480000px;}
.wse1{word-spacing:25.416000px;}
.wse2{word-spacing:25.848000px;}
.ws71{word-spacing:26.280000px;}
.wsf{word-spacing:26.856000px;}
.ws98{word-spacing:26.928000px;}
.wse{word-spacing:27.000000px;}
.wsa9{word-spacing:28.080000px;}
.ws23{word-spacing:28.617120px;}
.ws22{word-spacing:28.737360px;}
.wsd0{word-spacing:28.800000px;}
.wscf{word-spacing:29.088000px;}
.ws24{word-spacing:29.338560px;}
.ws14{word-spacing:29.520000px;}
.ws11d{word-spacing:31.680000px;}
.ws127{word-spacing:34.128000px;}
.ws117{word-spacing:40.176000px;}
.ws118{word-spacing:40.320000px;}
.ws128{word-spacing:63.720000px;}
.ws11f{word-spacing:89.568000px;}
._c{margin-left:-8.496000px;}
._b{margin-left:-6.912000px;}
._5{margin-left:-3.960000px;}
._9{margin-left:-2.304000px;}
._2{margin-left:-1.224000px;}
._4{width:1.080000px;}
._1{width:2.592000px;}
._3{width:3.888000px;}
._8{width:5.328000px;}
._6{width:6.492960px;}
._7{width:8.496000px;}
._f{width:9.720000px;}
._d{width:11.592000px;}
._a{width:12.778560px;}
._14{width:13.874400px;}
._10{width:15.120000px;}
._13{width:19.944000px;}
._16{width:20.952000px;}
._e{width:23.472000px;}
._12{width:40.320000px;}
._15{width:63.360000px;}
._11{width:83.520000px;}
._0{width:92.476800px;}
._17{width:846.000000px;}
._18{width:849.288960px;}
.fc6{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(59,76,167);}
.fc2{color:rgb(49,50,45);}
.fc1{color:rgb(61,58,61);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.880000px;}
.fsb{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.880000px;}
.fs8{font-size:48.000000px;}
.fse{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fsf{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:83.880000px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y194{bottom:1.620000px;}
.y200{bottom:2.610000px;}
.y123{bottom:2.880000px;}
.y20e{bottom:2.970000px;}
.y12a{bottom:3.240000px;}
.y1a3{bottom:3.330000px;}
.y142{bottom:3.870000px;}
.y1a4{bottom:4.410000px;}
.y210{bottom:10.260000px;}
.y130{bottom:10.350000px;}
.y125{bottom:10.440000px;}
.y12e{bottom:19.350000px;}
.y19d{bottom:19.440000px;}
.y19f{bottom:19.530000px;}
.y19e{bottom:20.430000px;}
.y190{bottom:20.520000px;}
.y1d9{bottom:24.570000px;}
.y13d{bottom:37.710000px;}
.y1ff{bottom:38.340000px;}
.y122{bottom:40.050000px;}
.y24{bottom:48.045600px;}
.y29{bottom:50.217750px;}
.y20c{bottom:53.910000px;}
.ye9{bottom:54.360000px;}
.y127{bottom:54.900000px;}
.y145{bottom:54.990000px;}
.y70{bottom:59.490000px;}
.ye7{bottom:60.390000px;}
.y54{bottom:60.570000px;}
.y2c{bottom:63.717750px;}
.y5{bottom:66.525004px;}
.y167{bottom:72.270000px;}
.y132{bottom:89.460000px;}
.y4{bottom:97.125005px;}
.y2a{bottom:108.773550px;}
.y6f{bottom:111.213360px;}
.yf3{bottom:111.217860px;}
.yb0{bottom:111.226680px;}
.y101{bottom:111.231180px;}
.yec{bottom:111.235500px;}
.y102{bottom:111.242700px;}
.y90{bottom:121.410000px;}
.yce{bottom:126.540000px;}
.y1fd{bottom:128.340000px;}
.y6e{bottom:128.497860px;}
.yf2{bottom:128.502360px;}
.yaf{bottom:128.511180px;}
.y100{bottom:128.515680px;}
.yb3{bottom:131.760000px;}
.y2b{bottom:132.159150px;}
.yeb{bottom:133.740000px;}
.y11f{bottom:135.000000px;}
.y1ea{bottom:136.800000px;}
.ydc{bottom:136.890000px;}
.y21{bottom:139.264499px;}
.y6d{bottom:145.692180px;}
.yf1{bottom:145.696680px;}
.yae{bottom:145.705500px;}
.yea{bottom:146.880000px;}
.yff{bottom:150.930000px;}
.y8f{bottom:152.460000px;}
.ycd{bottom:157.590000px;}
.y1fc{bottom:159.390000px;}
.yb2{bottom:162.810000px;}
.y6c{bottom:162.976680px;}
.yf0{bottom:162.981180px;}
.yfe{bottom:162.985500px;}
.y11e{bottom:166.050000px;}
.y1e9{bottom:167.850000px;}
.yd8{bottom:167.940000px;}
.yad{bottom:168.210000px;}
.y107{bottom:180.256680px;}
.y6b{bottom:180.261180px;}
.yef{bottom:180.265680px;}
.yac{bottom:181.440000px;}
.y8e{bottom:183.510000px;}
.yfd{bottom:185.490000px;}
.ycc{bottom:188.640000px;}
.y1fb{bottom:190.440000px;}
.yb1{bottom:193.860000px;}
.y18{bottom:196.933500px;}
.y11d{bottom:197.100000px;}
.y106{bottom:197.451000px;}
.y6a{bottom:197.455500px;}
.yfc{bottom:198.630000px;}
.y1e8{bottom:198.900000px;}
.yd7{bottom:198.990000px;}
.ye6{bottom:201.600000px;}
.yee{bottom:202.680000px;}
.y1f9{bottom:207.270000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.ye8{bottom:212.220000px;}
.y8d{bottom:214.560000px;}
.y105{bottom:214.735500px;}
.y51{bottom:215.499150px;}
.yed{bottom:215.910000px;}
.y3d{bottom:216.437250px;}
.ycb{bottom:219.690000px;}
.y69{bottom:219.960000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yab{bottom:224.910000px;}
.y1fa{bottom:227.700000px;}
.y11c{bottom:228.150000px;}
.y1e7{bottom:229.950000px;}
.yd6{bottom:230.040000px;}
.y68{bottom:233.190000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ye5{bottom:235.170000px;}
.y104{bottom:237.240000px;}
.y50{bottom:244.899150px;}
.yb5{bottom:244.980000px;}
.y8c{bottom:245.610000px;}
.y103{bottom:250.380000px;}
.yca{bottom:250.740000px;}
.yaa{bottom:255.960000px;}
.y1f8{bottom:259.020000px;}
.y11b{bottom:259.200000px;}
.y4f{bottom:259.299150px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1e6{bottom:261.000000px;}
.yd5{bottom:261.090000px;}
.yb4{bottom:263.520000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y8b{bottom:276.660000px;}
.yc9{bottom:281.790000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ya9{bottom:287.010000px;}
.y4e{bottom:288.699150px;}
.y11a{bottom:290.250000px;}
.y1e5{bottom:292.050000px;}
.yd4{bottom:292.140000px;}
.y8a{bottom:307.710000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yc8{bottom:312.840000px;}
.ya8{bottom:318.060000px;}
.y4d{bottom:318.099150px;}
.y175{bottom:320.130000px;}
.y119{bottom:321.300000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1e4{bottom:323.100000px;}
.yd3{bottom:323.190000px;}
.y4c{bottom:332.499150px;}
.y171{bottom:336.870000px;}
.y164{bottom:337.410000px;}
.y89{bottom:338.760000px;}
.yc7{bottom:343.890000px;}
.y4b{bottom:346.899150px;}
.yf{bottom:348.133500px;}
.ya7{bottom:349.110000px;}
.y118{bottom:352.350000px;}
.y1e3{bottom:354.150000px;}
.yd2{bottom:354.240000px;}
.y174{bottom:357.381180px;}
.y4a{bottom:361.299150px;}
.y163{bottom:368.460000px;}
.ye4{bottom:369.180000px;}
.y88{bottom:369.810000px;}
.y173{bottom:374.665680px;}
.yc6{bottom:374.940000px;}
.y49{bottom:375.699150px;}
.ya6{bottom:380.160000px;}
.y13a{bottom:381.240000px;}
.y117{bottom:383.400000px;}
.y1bc{bottom:384.210000px;}
.y1e2{bottom:385.200000px;}
.yd1{bottom:385.290000px;}
.ye{bottom:386.785499px;}
.ye3{bottom:387.720000px;}
.y15d{bottom:388.890000px;}
.y48{bottom:390.099150px;}
.y172{bottom:391.860000px;}
.y162{bottom:399.510000px;}
.y87{bottom:400.860000px;}
.y1bb{bottom:404.257860px;}
.yd0{bottom:405.090000px;}
.yc5{bottom:405.990000px;}
.y16e{bottom:406.170000px;}
.yd{bottom:408.044999px;}
.ya5{bottom:411.210000px;}
.y139{bottom:412.290000px;}
.y116{bottom:414.450000px;}
.y1e1{bottom:416.250000px;}
.ydb{bottom:416.340000px;}
.y47{bottom:419.499150px;}
.y15c{bottom:419.940000px;}
.y1ba{bottom:421.452180px;}
.ycf{bottom:421.560000px;}
.y12c{bottom:422.280000px;}
.y161{bottom:430.560000px;}
.y86{bottom:431.910000px;}
.y170{bottom:433.530000px;}
.y46{bottom:433.899150px;}
.y1e0{bottom:435.688740px;}
.yda{bottom:436.140000px;}
.yc4{bottom:437.040000px;}
.y16d{bottom:437.220000px;}
.y1b9{bottom:438.736680px;}
.y10a{bottom:439.470000px;}
.ya4{bottom:442.260000px;}
.y138{bottom:443.340000px;}
.y115{bottom:445.500000px;}
.ye2{bottom:447.390000px;}
.y45{bottom:448.299150px;}
.y1df{bottom:449.550000px;}
.y15b{bottom:450.990000px;}
.yd9{bottom:452.610000px;}
.y12b{bottom:453.330000px;}
.y1b8{bottom:456.021180px;}
.y213{bottom:458.190000px;}
.y30{bottom:458.548650px;}
.y1de{bottom:460.710000px;}
.y160{bottom:461.610000px;}
.y85{bottom:462.960000px;}
.yc3{bottom:468.090000px;}
.y16c{bottom:468.270000px;}
.y126{bottom:470.160000px;}
.y14d{bottom:470.340000px;}
.y1b7{bottom:473.215500px;}
.ya3{bottom:473.310000px;}
.y114{bottom:474.120000px;}
.y137{bottom:474.390000px;}
.y44{bottom:477.699150px;}
.ye1{bottom:478.440000px;}
.y212{bottom:478.890000px;}
.y1dd{bottom:481.131000px;}
.y15a{bottom:482.040000px;}
.y205{bottom:483.750000px;}
.y153{bottom:485.460000px;}
.y1ae{bottom:486.540000px;}
.y1b6{bottom:490.500000px;}
.y129{bottom:490.585500px;}
.y131{bottom:491.220000px;}
.y43{bottom:492.099150px;}
.y15f{bottom:492.660000px;}
.y84{bottom:494.010000px;}
.y20a{bottom:494.100000px;}
.y209{bottom:494.370000px;}
.y211{bottom:495.720000px;}
.y1dc{bottom:498.415500px;}
.yc2{bottom:499.140000px;}
.y16b{bottom:499.320000px;}
.y14c{bottom:501.390000px;}
.y113{bottom:502.380000px;}
.yc{bottom:502.864502px;}
.ya2{bottom:504.360000px;}
.y42{bottom:506.499150px;}
.y1ad{bottom:506.587680px;}
.y128{bottom:507.870000px;}
.ye0{bottom:509.490000px;}
.y207{bottom:511.200000px;}
.y1b5{bottom:511.290000px;}
.y136{bottom:511.636680px;}
.y159{bottom:513.090000px;}
.y204{bottom:514.800000px;}
.y1db{bottom:515.700000px;}
.y166{bottom:516.150000px;}
.y152{bottom:516.510000px;}
.y2f{bottom:517.579650px;}
.yb{bottom:520.864502px;}
.y41{bottom:520.899150px;}
.y1ac{bottom:523.872180px;}
.y83{bottom:525.060000px;}
.y1b4{bottom:528.480000px;}
.y135{bottom:528.921180px;}
.y157{bottom:529.920000px;}
.y15e{bottom:530.010000px;}
.yc1{bottom:530.190000px;}
.y202{bottom:531.630000px;}
.y208{bottom:531.720000px;}
.y14b{bottom:532.440000px;}
.y14f{bottom:533.340000px;}
.y112{bottom:533.430000px;}
.ya1{bottom:535.320000px;}
.y16a{bottom:536.661180px;}
.y227{bottom:537.660000px;}
.y1d7{bottom:538.470000px;}
.ya{bottom:538.864499px;}
.y124{bottom:539.100000px;}
.ydf{bottom:540.540000px;}
.y1ab{bottom:541.066500px;}
.y1b3{bottom:545.760000px;}
.y1da{bottom:546.030000px;}
.y134{bottom:546.205680px;}
.y20f{bottom:547.470000px;}
.y158{bottom:550.350000px;}
.y203{bottom:552.060000px;}
.y169{bottom:553.855500px;}
.y151{bottom:553.855680px;}
.y1b2{bottom:554.400000px;}
.y82{bottom:556.020000px;}
.y9{bottom:556.864499px;}
.y1aa{bottom:558.351000px;}
.y52{bottom:558.876150px;}
.y1d6{bottom:559.170000px;}
.yde{bottom:560.250000px;}
.yc0{bottom:561.240000px;}
.y206{bottom:562.950000px;}
.y133{bottom:563.400000px;}
.y14a{bottom:563.490000px;}
.y111{bottom:564.480000px;}
.ya0{bottom:566.370000px;}
.y226{bottom:568.710000px;}
.y150{bottom:571.050000px;}
.y168{bottom:571.140000px;}
.yfb{bottom:571.590000px;}
.y19c{bottom:573.930000px;}
.y1a9{bottom:575.635500px;}
.ydd{bottom:576.720000px;}
.y27{bottom:580.590300px;}
.y18f{bottom:586.062180px;}
.y81{bottom:587.070000px;}
.y225{bottom:588.753180px;}
.y1b1{bottom:588.870000px;}
.y1d5{bottom:590.220000px;}
.y156{bottom:592.020000px;}
.ybf{bottom:592.290000px;}
.y1a8{bottom:592.920000px;}
.y140{bottom:593.190000px;}
.y201{bottom:593.730000px;}
.y19b{bottom:593.977860px;}
.y149{bottom:594.540000px;}
.y12f{bottom:594.720000px;}
.y110{bottom:595.530000px;}
.y9f{bottom:597.420000px;}
.yfa{bottom:602.640000px;}
.y18e{bottom:603.346680px;}
.y224{bottom:606.037680px;}
.y1b0{bottom:606.870000px;}
.y19a{bottom:611.172180px;}
.y14e{bottom:612.720000px;}
.y165{bottom:612.810000px;}
.y1a7{bottom:613.620000px;}
.y13f{bottom:613.890000px;}
.y80{bottom:618.120000px;}
.y18d{bottom:620.631180px;}
.y1d4{bottom:621.270000px;}
.y3c{bottom:623.124000px;}
.y223{bottom:623.322180px;}
.ybe{bottom:623.340000px;}
.y148{bottom:625.590000px;}
.y10f{bottom:626.580000px;}
.y199{bottom:628.456680px;}
.y9e{bottom:628.470000px;}
.y230{bottom:629.100000px;}
.y13c{bottom:630.720000px;}
.y1a6{bottom:630.900000px;}
.yf9{bottom:633.690000px;}
.y18c{bottom:637.825500px;}
.y222{bottom:640.516500px;}
.y1d3{bottom:641.309040px;}
.y1af{bottom:641.340000px;}
.y1f6{bottom:642.330000px;}
.y144{bottom:642.420000px;}
.y8{bottom:645.510000px;}
.y198{bottom:645.741180px;}
.y1a5{bottom:648.090000px;}
.y22f{bottom:649.165500px;}
.y7f{bottom:649.170000px;}
.y13e{bottom:651.150000px;}
.ybd{bottom:654.390000px;}
.y18b{bottom:655.110000px;}
.y1a2{bottom:656.730000px;}
.y10e{bottom:657.630000px;}
.y221{bottom:657.801000px;}
.y1d2{bottom:658.503360px;}
.y9d{bottom:659.520000px;}
.y1f5{bottom:661.770000px;}
.y147{bottom:662.845500px;}
.y197{bottom:662.935500px;}
.yf8{bottom:664.740000px;}
.y22e{bottom:666.450000px;}
.y7{bottom:666.771000px;}
.y220{bottom:675.085500px;}
.y1a1{bottom:675.090000px;}
.y1d1{bottom:675.787860px;}
.y18a{bottom:675.900000px;}
.y146{bottom:680.130000px;}
.y7e{bottom:680.220000px;}
.y13b{bottom:682.470000px;}
.yf7{bottom:684.450000px;}
.ybc{bottom:685.440000px;}
.y1f4{bottom:687.150000px;}
.y10d{bottom:688.680000px;}
.y9c{bottom:690.570000px;}
.y23{bottom:692.046000px;}
.y1a0{bottom:692.370000px;}
.y1d0{bottom:693.072360px;}
.y189{bottom:693.090000px;}
.y67{bottom:694.530000px;}
.y26{bottom:700.491600px;}
.yf6{bottom:700.920000px;}
.y196{bottom:701.010000px;}
.y22d{bottom:704.430000px;}
.y1cf{bottom:710.266680px;}
.y188{bottom:710.370000px;}
.y7d{bottom:711.270000px;}
.y21f{bottom:713.070000px;}
.y66{bottom:716.220000px;}
.ybb{bottom:716.490000px;}
.y195{bottom:718.200000px;}
.y10c{bottom:719.730000px;}
.y9b{bottom:721.620000px;}
.y143{bottom:721.710000px;}
.y6{bottom:726.298500px;}
.y1ce{bottom:727.551180px;}
.y187{bottom:727.560000px;}
.y21e{bottom:730.260000px;}
.y16f{bottom:731.880000px;}
.y193{bottom:735.480000px;}
.y65{bottom:737.190000px;}
.y25{bottom:740.091600px;}
.y7c{bottom:742.320000px;}
.y192{bottom:744.120000px;}
.y1cd{bottom:744.745500px;}
.y186{bottom:744.840000px;}
.yba{bottom:747.540000px;}
.y1f3{bottom:749.250000px;}
.y10b{bottom:752.400000px;}
.y3{bottom:752.599495px;}
.y9a{bottom:752.670000px;}
.y21d{bottom:756.180000px;}
.y64{bottom:757.890000px;}
.y191{bottom:761.310000px;}
.y1cc{bottom:762.030000px;}
.y185{bottom:762.120000px;}
.y22c{bottom:764.820000px;}
.y1f2{bottom:768.690000px;}
.y7b{bottom:773.370000px;}
.y21c{bottom:773.460000px;}
.y63{bottom:778.590000px;}
.y184{bottom:779.310000px;}
.y22{bottom:779.691750px;}
.y1cb{bottom:782.820000px;}
.y99{bottom:783.720000px;}
.y21b{bottom:790.650000px;}
.y2e{bottom:796.218750px;}
.y40{bottom:796.361250px;}
.y183{bottom:796.590000px;}
.y62{bottom:799.290000px;}
.y1ca{bottom:800.010000px;}
.y1f1{bottom:803.250000px;}
.y7a{bottom:804.420000px;}
.y21a{bottom:808.650000px;}
.yb9{bottom:809.640000px;}
.y182{bottom:813.870000px;}
.y98{bottom:814.770000px;}
.y1c9{bottom:817.290000px;}
.y3f{bottom:817.961250px;}
.y61{bottom:819.990000px;}
.y1f0{bottom:828.630000px;}
.y181{bottom:831.060000px;}
.y1c8{bottom:834.570000px;}
.y79{bottom:835.470000px;}
.y2d{bottom:835.818750px;}
.y3e{bottom:839.561250px;}
.y60{bottom:840.690000px;}
.y219{bottom:843.210000px;}
.y97{bottom:845.820000px;}
.y180{bottom:848.340000px;}
.y1c7{bottom:851.760000px;}
.y1ef{bottom:859.680000px;}
.y3b{bottom:861.161700px;}
.y5f{bottom:861.390000px;}
.y17f{bottom:865.620000px;}
.y78{bottom:866.520000px;}
.y1c6{bottom:869.040000px;}
.yb8{bottom:871.740000px;}
.y1d8{bottom:873.000000px;}
.y96{bottom:876.870000px;}
.y218{bottom:877.680000px;}
.y2{bottom:879.369000px;}
.y5e{bottom:882.090000px;}
.y3a{bottom:882.761700px;}
.y17e{bottom:882.810000px;}
.y1c5{bottom:886.320000px;}
.y28{bottom:888.161400px;}
.y1ee{bottom:890.640000px;}
.yf5{bottom:896.940000px;}
.y77{bottom:897.570000px;}
.y17d{bottom:900.090000px;}
.y5d{bottom:902.790000px;}
.y1c4{bottom:903.510000px;}
.y39{bottom:904.361700px;}
.y95{bottom:907.920000px;}
.y1ed{bottom:910.170000px;}
.y217{bottom:912.150000px;}
.yf4{bottom:915.480000px;}
.y17c{bottom:917.370000px;}
.y1c3{bottom:920.790000px;}
.y5c{bottom:923.490000px;}
.y1ec{bottom:925.200000px;}
.y38{bottom:925.961700px;}
.y76{bottom:928.620000px;}
.yb7{bottom:933.840000px;}
.y17b{bottom:934.560000px;}
.y1c2{bottom:938.070000px;}
.y94{bottom:938.970000px;}
.y5b{bottom:944.190000px;}
.y1eb{bottom:944.640000px;}
.y216{bottom:946.620000px;}
.y37{bottom:947.561700px;}
.y121{bottom:950.670000px;}
.y17a{bottom:951.840000px;}
.y1c1{bottom:955.260000px;}
.y22b{bottom:956.070000px;}
.y109{bottom:959.040000px;}
.y75{bottom:959.670000px;}
.y5a{bottom:964.890000px;}
.y1{bottom:966.726000px;}
.y179{bottom:969.120000px;}
.y36{bottom:969.161700px;}
.y93{bottom:970.020000px;}
.y1f7{bottom:971.370000px;}
.y1c0{bottom:972.540000px;}
.y22a{bottom:974.070000px;}
.y108{bottom:977.580000px;}
.y215{bottom:981.900000px;}
.y59{bottom:985.590000px;}
.y178{bottom:987.120000px;}
.y1bf{bottom:989.820000px;}
.y74{bottom:990.720000px;}
.y35{bottom:990.761700px;}
.y229{bottom:994.950000px;}
.yb6{bottom:995.940000px;}
.y214{bottom:999.900000px;}
.y92{bottom:1001.070000px;}
.y177{bottom:1005.120000px;}
.y58{bottom:1006.290000px;}
.y1be{bottom:1007.820000px;}
.y20b{bottom:1009.260000px;}
.y228{bottom:1011.420000px;}
.y34{bottom:1012.361700px;}
.y73{bottom:1021.770000px;}
.y154{bottom:1023.120000px;}
.y120{bottom:1024.206750px;}
.y1fe{bottom:1024.830000px;}
.y1bd{bottom:1025.820000px;}
.y176{bottom:1026.000000px;}
.y57{bottom:1026.990000px;}
.y20d{bottom:1027.440000px;}
.y91{bottom:1032.120000px;}
.y33{bottom:1033.961700px;}
.y72{bottom:1041.840000px;}
.y155{bottom:1042.470000px;}
.y12d{bottom:1043.820000px;}
.y56{bottom:1046.700000px;}
.y32{bottom:1055.561700px;}
.y141{bottom:1059.300000px;}
.y71{bottom:1060.380000px;}
.y55{bottom:1063.170000px;}
.y31{bottom:1077.161700px;}
.y53{bottom:1116.900000px;}
.h46{height:8.550000px;}
.h39{height:8.640000px;}
.h33{height:17.190000px;}
.h32{height:17.191500px;}
.h34{height:17.280000px;}
.h3c{height:18.360000px;}
.h2c{height:20.700000px;}
.h3a{height:21.447070px;}
.h15{height:27.907031px;}
.h7{height:32.130000px;}
.h42{height:32.449922px;}
.h3f{height:34.366992px;}
.h37{height:34.470000px;}
.h3b{height:34.471500px;}
.h35{height:34.560000px;}
.h10{height:34.968750px;}
.h27{height:36.180000px;}
.h19{height:36.571289px;}
.h1a{height:36.597656px;}
.h13{height:38.759766px;}
.h1c{height:40.745391px;}
.h3d{height:41.398500px;}
.h38{height:41.743477px;}
.h22{height:43.141739px;}
.h16{height:43.152539px;}
.h21{height:43.170539px;}
.h6{height:45.900000px;}
.h11{height:47.988281px;}
.hd{height:48.082031px;}
.h3{height:48.195000px;}
.h18{height:48.761719px;}
.h36{height:48.787031px;}
.h24{height:48.796875px;}
.h1b{height:49.992188px;}
.h14{height:51.679688px;}
.h2b{height:51.750000px;}
.h2e{height:51.751500px;}
.he{height:52.453125px;}
.hc{height:54.577125px;}
.h2{height:55.080000px;}
.h41{height:55.170000px;}
.h12{height:56.569922px;}
.h17{height:56.848359px;}
.h23{height:56.880000px;}
.h20{height:61.366992px;}
.h1f{height:63.400781px;}
.h26{height:68.938500px;}
.h2d{height:69.030000px;}
.hb{height:69.937500px;}
.h44{height:70.740000px;}
.h1e{height:71.191500px;}
.h3e{height:74.970000px;}
.h5{height:78.030000px;}
.h30{height:86.220000px;}
.h31{height:86.311500px;}
.h1d{height:89.296875px;}
.h9{height:96.164062px;}
.h29{height:103.498500px;}
.ha{height:113.700000px;}
.h4{height:119.055004px;}
.h2a{height:361.350000px;}
.h25{height:411.570000px;}
.h28{height:449.100000px;}
.h45{height:461.790000px;}
.h43{height:461.880000px;}
.h2f{height:461.881500px;}
.hf{height:468.250500px;}
.h40{height:712.348500px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:37.170000px;}
.wd{width:77.940000px;}
.wc{width:78.030000px;}
.we{width:78.120000px;}
.w11{width:87.568500px;}
.w13{width:87.660000px;}
.w12{width:87.661500px;}
.w14{width:87.750000px;}
.w1a{width:116.910000px;}
.w1b{width:117.000000px;}
.w15{width:175.230000px;}
.w16{width:175.318500px;}
.wf{width:175.320000px;}
.w17{width:175.411500px;}
.w18{width:212.670000px;}
.w19{width:233.820000px;}
.wa{width:233.910000px;}
.wb{width:468.090000px;}
.w10{width:525.960000px;}
.w2{width:637.794021px;}
.w6{width:664.830000px;}
.w5{width:697.750500px;}
.w9{width:701.280000px;}
.w8{width:702.000000px;}
.w4{width:705.916500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x28{left:9.270000px;}
.x48{left:13.770000px;}
.x46{left:17.100000px;}
.x39{left:18.360000px;}
.x45{left:19.620000px;}
.x37{left:22.140000px;}
.x47{left:23.220000px;}
.x1e{left:24.480000px;}
.x38{left:25.830000px;}
.x54{left:26.910000px;}
.x3a{left:29.610000px;}
.x68{left:31.770000px;}
.x5e{left:33.930000px;}
.x30{left:35.280000px;}
.x5a{left:36.360000px;}
.x36{left:38.970000px;}
.x3f{left:40.050000px;}
.x5c{left:41.490000px;}
.x44{left:43.740000px;}
.x5d{left:45.360000px;}
.x6c{left:46.440000px;}
.x4b{left:52.650000px;}
.x52{left:53.910000px;}
.x23{left:58.950000px;}
.x50{left:60.930000px;}
.x4d{left:63.450000px;}
.x4e{left:65.790000px;}
.x4f{left:68.310000px;}
.x25{left:70.380000px;}
.x8{left:72.832650px;}
.x4c{left:75.600000px;}
.x9{left:83.125650px;}
.xa{left:86.332650px;}
.x51{left:87.660000px;}
.xc{left:94.500150px;}
.x57{left:95.580000px;}
.x7{left:96.625650px;}
.x5{left:99.832650px;}
.x1{left:102.045000px;}
.x19{left:103.500000px;}
.x2{left:106.297500px;}
.x5f{left:107.549100px;}
.xb{left:108.631500px;}
.x55{left:109.980000px;}
.x1f{left:112.050000px;}
.x1d{left:115.650000px;}
.x53{left:120.690000px;}
.x6{left:121.843500px;}
.x6d{left:124.380000px;}
.x20{left:130.680000px;}
.x67{left:134.640000px;}
.x2a{left:138.600000px;}
.x6e{left:143.280000px;}
.x27{left:148.320000px;}
.x22{left:149.760000px;}
.x6f{left:151.470000px;}
.xf{left:162.000000px;}
.x3b{left:171.270000px;}
.xd{left:176.193300px;}
.x66{left:180.540000px;}
.x49{left:182.250000px;}
.x4a{left:194.400000px;}
.x14{left:195.930000px;}
.x13{left:200.430000px;}
.x4{left:203.484001px;}
.x2f{left:207.360000px;}
.x3e{left:236.250000px;}
.x2b{left:241.560000px;}
.x63{left:260.100000px;}
.x6b{left:261.450000px;}
.x3d{left:283.320000px;}
.x1a{left:287.820000px;}
.x6a{left:289.350000px;}
.x15{left:295.740000px;}
.x3c{left:309.690000px;}
.x69{left:315.720000px;}
.x56{left:320.670000px;}
.x10{left:341.370000px;}
.x26{left:343.620000px;}
.x65{left:346.590000px;}
.x1b{left:351.000000px;}
.x40{left:370.890000px;}
.x29{left:377.280000px;}
.x2d{left:415.260000px;}
.x31{left:419.940000px;}
.xe{left:422.100000px;}
.x5b{left:437.580000px;}
.x12{left:446.040000px;}
.x61{left:448.740000px;}
.x11{left:450.540000px;}
.x3{left:454.959000px;}
.x60{left:457.740000px;}
.x2e{left:459.000000px;}
.x64{left:486.000000px;}
.x16{left:493.020000px;}
.x32{left:497.880000px;}
.x41{left:546.210000px;}
.x58{left:554.490000px;}
.x33{left:575.910000px;}
.x42{left:633.870000px;}
.x34{left:653.940000px;}
.x59{left:671.400000px;}
.x1c{left:710.100000px;}
.x43{left:721.620000px;}
.x35{left:731.880000px;}
.x17{left:772.830000px;}
.x62{left:789.390000px;}
.x24{left:793.890000px;}
.x21{left:796.140000px;}
.x2c{left:798.570000px;}
@media print{
.va{vertical-align:-24.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-13.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.888000pt;}
.v8{vertical-align:13.120000pt;}
.v6{vertical-align:15.680000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.v9{vertical-align:24.000000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls60{letter-spacing:-0.427520pt;}
.lsb{letter-spacing:-0.374080pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.267200pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.213760pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls3a{letter-spacing:-0.160320pt;}
.ls46{letter-spacing:-0.151680pt;}
.ls3b{letter-spacing:-0.149120pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.106880pt;}
.ls47{letter-spacing:-0.101120pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.053440pt;}
.ls2b{letter-spacing:-0.045440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.053440pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3c{letter-spacing:0.074560pt;}
.ls56{letter-spacing:0.080000pt;}
.ls37{letter-spacing:0.085120pt;}
.ls2a{letter-spacing:0.090880pt;}
.ls11{letter-spacing:0.106880pt;}
.ls1a{letter-spacing:0.121600pt;}
.ls55{letter-spacing:0.124480pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.134400pt;}
.lse{letter-spacing:0.147200pt;}
.lsc{letter-spacing:0.149120pt;}
.ls44{letter-spacing:0.151680pt;}
.ls3d{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.160320pt;}
.ls30{letter-spacing:0.170240pt;}
.ls59{letter-spacing:0.192000pt;}
.ls62{letter-spacing:0.208416pt;}
.ls57{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls58{letter-spacing:0.400000pt;}
.ls52{letter-spacing:0.640000pt;}
.ls61{letter-spacing:0.694720pt;}
.ls14{letter-spacing:0.960000pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.344000pt;}
.ls32{letter-spacing:1.528320pt;}
.ls40{letter-spacing:1.600000pt;}
.ls36{letter-spacing:1.848320pt;}
.ls25{letter-spacing:1.984000pt;}
.ls41{letter-spacing:2.240000pt;}
.ls5{letter-spacing:2.297920pt;}
.ls21{letter-spacing:2.560000pt;}
.ls4{letter-spacing:2.618560pt;}
.ls13{letter-spacing:2.880000pt;}
.ls1e{letter-spacing:3.200000pt;}
.ls5c{letter-spacing:3.259840pt;}
.ls43{letter-spacing:3.520000pt;}
.ls24{letter-spacing:3.671680pt;}
.ls42{letter-spacing:3.840000pt;}
.ls38{letter-spacing:4.160000pt;}
.ls19{letter-spacing:4.480000pt;}
.ls5a{letter-spacing:4.542400pt;}
.ls16{letter-spacing:4.800000pt;}
.ls2d{letter-spacing:5.120000pt;}
.ls2e{letter-spacing:5.440000pt;}
.ls1c{letter-spacing:5.452800pt;}
.ls63{letter-spacing:5.504320pt;}
.ls5e{letter-spacing:6.145600pt;}
.ls45{letter-spacing:6.400000pt;}
.ls12{letter-spacing:6.720000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls49{letter-spacing:7.360000pt;}
.ls39{letter-spacing:8.000000pt;}
.ls54{letter-spacing:8.080000pt;}
.ls31{letter-spacing:8.229760pt;}
.ls4a{letter-spacing:8.320000pt;}
.ls4b{letter-spacing:8.640000pt;}
.ls5d{letter-spacing:8.710720pt;}
.ls4f{letter-spacing:9.600000pt;}
.ls34{letter-spacing:9.920000pt;}
.ls53{letter-spacing:10.560000pt;}
.ls3{letter-spacing:10.634560pt;}
.ls3e{letter-spacing:11.200000pt;}
.ls48{letter-spacing:11.840000pt;}
.ls51{letter-spacing:12.480000pt;}
.ls4e{letter-spacing:12.819200pt;}
.ls20{letter-spacing:14.080000pt;}
.ls28{letter-spacing:14.272000pt;}
.lsd{letter-spacing:15.040000pt;}
.ls1f{letter-spacing:15.360000pt;}
.ls35{letter-spacing:16.320000pt;}
.ls4d{letter-spacing:17.280000pt;}
.ls22{letter-spacing:17.600000pt;}
.ls23{letter-spacing:17.792000pt;}
.ls33{letter-spacing:17.847360pt;}
.ls29{letter-spacing:18.290560pt;}
.ls26{letter-spacing:19.072000pt;}
.ls4c{letter-spacing:21.440000pt;}
.ls50{letter-spacing:90.880000pt;}
.ls2{letter-spacing:753.536000pt;}
.wsb7{word-spacing:-64.000000pt;}
.wsb9{word-spacing:-63.872000pt;}
.ws143{word-spacing:-53.440000pt;}
.wsb8{word-spacing:-45.530880pt;}
.wsbb{word-spacing:-45.440000pt;}
.wsba{word-spacing:-45.394560pt;}
.wsbd{word-spacing:-27.539200pt;}
.wsbc{word-spacing:-27.534784pt;}
.ws105{word-spacing:-18.789120pt;}
.wsda{word-spacing:-18.714560pt;}
.wsd9{word-spacing:-18.640000pt;}
.ws116{word-spacing:-18.490880pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws106{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws8d{word-spacing:-15.808000pt;}
.wse4{word-spacing:-15.744000pt;}
.ws25{word-spacing:-15.680000pt;}
.ws11e{word-spacing:-14.464000pt;}
.wsf5{word-spacing:-13.520320pt;}
.ws13e{word-spacing:-13.413440pt;}
.ws8{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.306560pt;}
.ws12c{word-spacing:-13.253120pt;}
.wsce{word-spacing:-13.199680pt;}
.wsbe{word-spacing:-13.146240pt;}
.ws144{word-spacing:-13.092800pt;}
.wsbf{word-spacing:-12.985920pt;}
.ws145{word-spacing:-12.932480pt;}
.ws1{word-spacing:-11.861333pt;}
.wseb{word-spacing:-11.123200pt;}
.wsc4{word-spacing:-10.725120pt;}
.ws3{word-spacing:-10.640000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsc2{word-spacing:-3.968000pt;}
.ws85{word-spacing:-3.904000pt;}
.ws56{word-spacing:-3.840000pt;}
.ws88{word-spacing:-3.648000pt;}
.wsa0{word-spacing:-3.584000pt;}
.ws2a{word-spacing:-3.520000pt;}
.ws18{word-spacing:-3.328000pt;}
.ws138{word-spacing:-3.259840pt;}
.ws17{word-spacing:-3.200000pt;}
.ws89{word-spacing:-3.008000pt;}
.ws8b{word-spacing:-2.944000pt;}
.ws133{word-spacing:-2.939200pt;}
.ws59{word-spacing:-2.880000pt;}
.wsa6{word-spacing:-2.688000pt;}
.ws4d{word-spacing:-2.624000pt;}
.ws4c{word-spacing:-2.560000pt;}
.ws92{word-spacing:-2.368000pt;}
.wsdd{word-spacing:-2.304000pt;}
.ws31{word-spacing:-2.240000pt;}
.ws15b{word-spacing:-2.084160pt;}
.ws91{word-spacing:-2.048000pt;}
.ws131{word-spacing:-1.977280pt;}
.ws6a{word-spacing:-1.920000pt;}
.wse3{word-spacing:-1.728000pt;}
.wsa7{word-spacing:-1.664000pt;}
.wse9{word-spacing:-1.656640pt;}
.ws78{word-spacing:-1.600000pt;}
.ws137{word-spacing:-1.442880pt;}
.ws81{word-spacing:-1.408000pt;}
.ws97{word-spacing:-1.344000pt;}
.ws60{word-spacing:-1.336000pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws9c{word-spacing:-1.088000pt;}
.ws84{word-spacing:-1.024000pt;}
.wsec{word-spacing:-1.015360pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws161{word-spacing:-0.801600pt;}
.ws2b{word-spacing:-0.768000pt;}
.ws14f{word-spacing:-0.748160pt;}
.ws5d{word-spacing:-0.704000pt;}
.wsd5{word-spacing:-0.694720pt;}
.ws160{word-spacing:-0.641280pt;}
.ws7a{word-spacing:-0.640000pt;}
.ws13b{word-spacing:-0.480960pt;}
.wsb{word-spacing:-0.448000pt;}
.ws134{word-spacing:-0.427520pt;}
.ws4b{word-spacing:-0.384000pt;}
.wsef{word-spacing:-0.374080pt;}
.ws13f{word-spacing:-0.320640pt;}
.ws3a{word-spacing:-0.320000pt;}
.ws13a{word-spacing:-0.256000pt;}
.ws26{word-spacing:-0.223680pt;}
.ws121{word-spacing:-0.192000pt;}
.ws158{word-spacing:-0.170240pt;}
.wsf1{word-spacing:-0.160320pt;}
.wsee{word-spacing:-0.151680pt;}
.ws107{word-spacing:-0.149120pt;}
.ws16{word-spacing:-0.128000pt;}
.wsd4{word-spacing:-0.106880pt;}
.ws154{word-spacing:-0.074560pt;}
.ws3b{word-spacing:-0.064000pt;}
.ws21{word-spacing:-0.053440pt;}
.ws0{word-spacing:0.000000pt;}
.ws162{word-spacing:0.053440pt;}
.ws99{word-spacing:0.064000pt;}
.wsdc{word-spacing:0.074560pt;}
.wsfc{word-spacing:0.101120pt;}
.ws123{word-spacing:0.106880pt;}
.ws93{word-spacing:0.128000pt;}
.ws108{word-spacing:0.149120pt;}
.wsfb{word-spacing:0.151680pt;}
.wsed{word-spacing:0.160320pt;}
.ws5c{word-spacing:0.192000pt;}
.ws64{word-spacing:0.213760pt;}
.ws73{word-spacing:0.256000pt;}
.wsf2{word-spacing:0.267200pt;}
.ws27{word-spacing:0.320000pt;}
.ws130{word-spacing:0.374080pt;}
.ws135{word-spacing:0.480960pt;}
.ws8a{word-spacing:0.512000pt;}
.ws47{word-spacing:0.576000pt;}
.wsf3{word-spacing:0.587840pt;}
.ws33{word-spacing:0.640000pt;}
.wsc9{word-spacing:0.832000pt;}
.wsf0{word-spacing:0.855040pt;}
.ws6d{word-spacing:0.896000pt;}
.ws14a{word-spacing:0.908480pt;}
.ws34{word-spacing:0.960000pt;}
.ws149{word-spacing:1.122240pt;}
.ws4e{word-spacing:1.152000pt;}
.ws136{word-spacing:1.175680pt;}
.ws36{word-spacing:1.216000pt;}
.ws150{word-spacing:1.229120pt;}
.ws35{word-spacing:1.280000pt;}
.wsfa{word-spacing:1.389440pt;}
.ws152{word-spacing:1.442880pt;}
.ws53{word-spacing:1.472000pt;}
.ws13d{word-spacing:1.496320pt;}
.ws58{word-spacing:1.536000pt;}
.ws54{word-spacing:1.600000pt;}
.ws62{word-spacing:1.710080pt;}
.wsa2{word-spacing:1.792000pt;}
.ws61{word-spacing:1.816960pt;}
.wsc3{word-spacing:1.856000pt;}
.ws48{word-spacing:1.920000pt;}
.ws1f{word-spacing:2.030720pt;}
.ws20{word-spacing:2.084160pt;}
.wsa3{word-spacing:2.112000pt;}
.ws10d{word-spacing:2.137600pt;}
.ws55{word-spacing:2.176000pt;}
.ws39{word-spacing:2.240000pt;}
.ws1a{word-spacing:2.351360pt;}
.ws1b{word-spacing:2.404800pt;}
.ws65{word-spacing:2.432000pt;}
.ws63{word-spacing:2.458240pt;}
.wsad{word-spacing:2.496000pt;}
.ws142{word-spacing:2.511680pt;}
.ws43{word-spacing:2.560000pt;}
.ws124{word-spacing:2.624000pt;}
.ws15c{word-spacing:2.672000pt;}
.ws1c{word-spacing:2.725440pt;}
.wsd{word-spacing:2.752000pt;}
.wscd{word-spacing:2.778880pt;}
.ws7c{word-spacing:2.816000pt;}
.ws5a{word-spacing:2.880000pt;}
.wsf4{word-spacing:2.992640pt;}
.wsab{word-spacing:3.072000pt;}
.ws141{word-spacing:3.099520pt;}
.ws10{word-spacing:3.136000pt;}
.ws11{word-spacing:3.200000pt;}
.ws163{word-spacing:3.206400pt;}
.ws140{word-spacing:3.366720pt;}
.ws80{word-spacing:3.392000pt;}
.wsd8{word-spacing:3.420160pt;}
.ws70{word-spacing:3.456000pt;}
.ws13{word-spacing:3.520000pt;}
.ws164{word-spacing:3.633920pt;}
.ws10a{word-spacing:3.712000pt;}
.wsd7{word-spacing:3.740800pt;}
.ws15{word-spacing:3.776000pt;}
.ws68{word-spacing:3.840000pt;}
.ws15d{word-spacing:3.954560pt;}
.ws3d{word-spacing:4.032000pt;}
.ws151{word-spacing:4.061440pt;}
.ws28{word-spacing:4.096000pt;}
.ws5b{word-spacing:4.160000pt;}
.wse5{word-spacing:4.352000pt;}
.ws132{word-spacing:4.382080pt;}
.ws8c{word-spacing:4.416000pt;}
.ws40{word-spacing:4.480000pt;}
.ws3f{word-spacing:4.672000pt;}
.ws12f{word-spacing:4.702720pt;}
.wsa4{word-spacing:4.736000pt;}
.ws32{word-spacing:4.800000pt;}
.ws94{word-spacing:4.992000pt;}
.ws153{word-spacing:5.023360pt;}
.wsd2{word-spacing:5.056000pt;}
.ws75{word-spacing:5.120000pt;}
.ws15a{word-spacing:5.237120pt;}
.ws14b{word-spacing:5.290560pt;}
.wsac{word-spacing:5.312000pt;}
.ws159{word-spacing:5.344000pt;}
.wsc5{word-spacing:5.376000pt;}
.ws9b{word-spacing:5.440000pt;}
.ws155{word-spacing:5.611200pt;}
.ws95{word-spacing:5.632000pt;}
.ws1e{word-spacing:5.664640pt;}
.wsb6{word-spacing:5.696000pt;}
.ws5f{word-spacing:5.760000pt;}
.ws1d{word-spacing:5.878400pt;}
.ws4a{word-spacing:5.952000pt;}
.ws14d{word-spacing:5.985280pt;}
.ws49{word-spacing:6.016000pt;}
.ws14e{word-spacing:6.199040pt;}
.ws14c{word-spacing:6.252480pt;}
.ws3c{word-spacing:6.272000pt;}
.ws15e{word-spacing:6.305920pt;}
.ws87{word-spacing:6.336000pt;}
.ws12{word-spacing:6.400000pt;}
.ws67{word-spacing:6.592000pt;}
.ws86{word-spacing:6.656000pt;}
.ws66{word-spacing:6.720000pt;}
.ws10f{word-spacing:6.840320pt;}
.ws9a{word-spacing:6.912000pt;}
.ws10e{word-spacing:6.947200pt;}
.wscc{word-spacing:6.976000pt;}
.ws42{word-spacing:7.040000pt;}
.ws102{word-spacing:7.232000pt;}
.ws139{word-spacing:7.267840pt;}
.ws10b{word-spacing:7.296000pt;}
.ws9f{word-spacing:7.360000pt;}
.ws6b{word-spacing:7.552000pt;}
.wsa8{word-spacing:7.616000pt;}
.wsc{word-spacing:7.680000pt;}
.ws113{word-spacing:7.872000pt;}
.ws15f{word-spacing:7.909120pt;}
.ws8e{word-spacing:7.936000pt;}
.ws8f{word-spacing:8.000000pt;}
.ws12d{word-spacing:8.122880pt;}
.wsfd{word-spacing:8.192000pt;}
.ws146{word-spacing:8.229760pt;}
.ws6f{word-spacing:8.256000pt;}
.ws6e{word-spacing:8.320000pt;}
.ws41{word-spacing:8.512000pt;}
.ws109{word-spacing:8.576000pt;}
.wsd1{word-spacing:8.640000pt;}
.ws148{word-spacing:8.764160pt;}
.ws147{word-spacing:8.817600pt;}
.ws101{word-spacing:8.832000pt;}
.ws100{word-spacing:8.896000pt;}
.wsaf{word-spacing:8.960000pt;}
.wsb0{word-spacing:9.152000pt;}
.ws13c{word-spacing:9.191680pt;}
.wsea{word-spacing:9.216000pt;}
.ws96{word-spacing:9.280000pt;}
.ws122{word-spacing:9.472000pt;}
.ws57{word-spacing:9.536000pt;}
.ws69{word-spacing:9.600000pt;}
.ws7e{word-spacing:9.792000pt;}
.ws7d{word-spacing:9.856000pt;}
.ws3e{word-spacing:9.920000pt;}
.ws10c{word-spacing:10.100160pt;}
.ws114{word-spacing:10.112000pt;}
.ws126{word-spacing:10.176000pt;}
.ws74{word-spacing:10.240000pt;}
.ws19{word-spacing:10.474240pt;}
.wsc6{word-spacing:10.496000pt;}
.wsde{word-spacing:10.560000pt;}
.wsa5{word-spacing:10.752000pt;}
.wsf7{word-spacing:10.816000pt;}
.ws12b{word-spacing:10.880000pt;}
.wse7{word-spacing:11.072000pt;}
.ws11a{word-spacing:11.136000pt;}
.ws90{word-spacing:11.200000pt;}
.ws119{word-spacing:11.392000pt;}
.ws110{word-spacing:11.456000pt;}
.wse6{word-spacing:11.520000pt;}
.ws125{word-spacing:11.648000pt;}
.wsdf{word-spacing:11.712000pt;}
.wse0{word-spacing:11.840000pt;}
.wsfe{word-spacing:12.032000pt;}
.wsb1{word-spacing:12.096000pt;}
.ws79{word-spacing:12.160000pt;}
.ws83{word-spacing:12.352000pt;}
.ws82{word-spacing:12.416000pt;}
.wsaa{word-spacing:12.480000pt;}
.wsb4{word-spacing:12.672000pt;}
.ws76{word-spacing:12.736000pt;}
.ws77{word-spacing:12.800000pt;}
.ws2d{word-spacing:12.992000pt;}
.ws2c{word-spacing:13.120000pt;}
.wsa1{word-spacing:13.440000pt;}
.wsf6{word-spacing:13.632000pt;}
.ws104{word-spacing:13.696000pt;}
.ws7b{word-spacing:13.760000pt;}
.wsc1{word-spacing:14.016000pt;}
.wsc0{word-spacing:14.080000pt;}
.wsff{word-spacing:14.400000pt;}
.wsb5{word-spacing:14.592000pt;}
.ws2f{word-spacing:14.720000pt;}
.ws12e{word-spacing:14.963200pt;}
.ws29{word-spacing:14.976000pt;}
.ws72{word-spacing:15.040000pt;}
.wsb2{word-spacing:15.232000pt;}
.ws30{word-spacing:15.296000pt;}
.wsb3{word-spacing:15.360000pt;}
.ws52{word-spacing:15.616000pt;}
.ws51{word-spacing:15.680000pt;}
.wsca{word-spacing:15.872000pt;}
.wsd6{word-spacing:15.925120pt;}
.wsd3{word-spacing:16.000000pt;}
.wscb{word-spacing:16.192000pt;}
.ws129{word-spacing:16.320000pt;}
.wsa{word-spacing:16.512000pt;}
.wse8{word-spacing:16.896000pt;}
.ws5e{word-spacing:16.960000pt;}
.ws38{word-spacing:17.152000pt;}
.ws37{word-spacing:17.280000pt;}
.wsf9{word-spacing:17.472000pt;}
.wsf8{word-spacing:17.536000pt;}
.wsae{word-spacing:17.600000pt;}
.ws11b{word-spacing:17.792000pt;}
.ws11c{word-spacing:17.920000pt;}
.ws115{word-spacing:18.112000pt;}
.ws12a{word-spacing:18.240000pt;}
.ws7f{word-spacing:18.560000pt;}
.ws103{word-spacing:18.752000pt;}
.ws156{word-spacing:18.816000pt;}
.ws157{word-spacing:18.880000pt;}
.ws44{word-spacing:19.520000pt;}
.ws45{word-spacing:19.712000pt;}
.ws50{word-spacing:19.776000pt;}
.ws4f{word-spacing:19.840000pt;}
.ws46{word-spacing:20.032000pt;}
.wsc8{word-spacing:20.096000pt;}
.ws9d{word-spacing:20.352000pt;}
.wsc7{word-spacing:20.416000pt;}
.ws9e{word-spacing:20.800000pt;}
.wsdb{word-spacing:21.120000pt;}
.ws120{word-spacing:21.440000pt;}
.ws112{word-spacing:21.696000pt;}
.ws111{word-spacing:21.760000pt;}
.wse1{word-spacing:22.592000pt;}
.wse2{word-spacing:22.976000pt;}
.ws71{word-spacing:23.360000pt;}
.wsf{word-spacing:23.872000pt;}
.ws98{word-spacing:23.936000pt;}
.wse{word-spacing:24.000000pt;}
.wsa9{word-spacing:24.960000pt;}
.ws23{word-spacing:25.437440pt;}
.ws22{word-spacing:25.544320pt;}
.wsd0{word-spacing:25.600000pt;}
.wscf{word-spacing:25.856000pt;}
.ws24{word-spacing:26.078720pt;}
.ws14{word-spacing:26.240000pt;}
.ws11d{word-spacing:28.160000pt;}
.ws127{word-spacing:30.336000pt;}
.ws117{word-spacing:35.712000pt;}
.ws118{word-spacing:35.840000pt;}
.ws128{word-spacing:56.640000pt;}
.ws11f{word-spacing:79.616000pt;}
._c{margin-left:-7.552000pt;}
._b{margin-left:-6.144000pt;}
._5{margin-left:-3.520000pt;}
._9{margin-left:-2.048000pt;}
._2{margin-left:-1.088000pt;}
._4{width:0.960000pt;}
._1{width:2.304000pt;}
._3{width:3.456000pt;}
._8{width:4.736000pt;}
._6{width:5.771520pt;}
._7{width:7.552000pt;}
._f{width:8.640000pt;}
._d{width:10.304000pt;}
._a{width:11.358720pt;}
._14{width:12.332800pt;}
._10{width:13.440000pt;}
._13{width:17.728000pt;}
._16{width:18.624000pt;}
._e{width:20.864000pt;}
._12{width:35.840000pt;}
._15{width:56.320000pt;}
._11{width:74.240000pt;}
._0{width:82.201600pt;}
._17{width:752.000000pt;}
._18{width:754.923520pt;}
.fs10{font-size:26.560000pt;}
.fsb{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.560000pt;}
.fs8{font-size:42.666667pt;}
.fse{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fsf{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:74.560000pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y194{bottom:1.440000pt;}
.y200{bottom:2.320000pt;}
.y123{bottom:2.560000pt;}
.y20e{bottom:2.640000pt;}
.y12a{bottom:2.880000pt;}
.y1a3{bottom:2.960000pt;}
.y142{bottom:3.440000pt;}
.y1a4{bottom:3.920000pt;}
.y210{bottom:9.120000pt;}
.y130{bottom:9.200000pt;}
.y125{bottom:9.280000pt;}
.y12e{bottom:17.200000pt;}
.y19d{bottom:17.280000pt;}
.y19f{bottom:17.360000pt;}
.y19e{bottom:18.160000pt;}
.y190{bottom:18.240000pt;}
.y1d9{bottom:21.840000pt;}
.y13d{bottom:33.520000pt;}
.y1ff{bottom:34.080000pt;}
.y122{bottom:35.600000pt;}
.y24{bottom:42.707200pt;}
.y29{bottom:44.638000pt;}
.y20c{bottom:47.920000pt;}
.ye9{bottom:48.320000pt;}
.y127{bottom:48.800000pt;}
.y145{bottom:48.880000pt;}
.y70{bottom:52.880000pt;}
.ye7{bottom:53.680000pt;}
.y54{bottom:53.840000pt;}
.y2c{bottom:56.638000pt;}
.y5{bottom:59.133337pt;}
.y167{bottom:64.240000pt;}
.y132{bottom:79.520000pt;}
.y4{bottom:86.333337pt;}
.y2a{bottom:96.687600pt;}
.y6f{bottom:98.856320pt;}
.yf3{bottom:98.860320pt;}
.yb0{bottom:98.868160pt;}
.y101{bottom:98.872160pt;}
.yec{bottom:98.876000pt;}
.y102{bottom:98.882400pt;}
.y90{bottom:107.920000pt;}
.yce{bottom:112.480000pt;}
.y1fd{bottom:114.080000pt;}
.y6e{bottom:114.220320pt;}
.yf2{bottom:114.224320pt;}
.yaf{bottom:114.232160pt;}
.y100{bottom:114.236160pt;}
.yb3{bottom:117.120000pt;}
.y2b{bottom:117.474800pt;}
.yeb{bottom:118.880000pt;}
.y11f{bottom:120.000000pt;}
.y1ea{bottom:121.600000pt;}
.ydc{bottom:121.680000pt;}
.y21{bottom:123.790666pt;}
.y6d{bottom:129.504160pt;}
.yf1{bottom:129.508160pt;}
.yae{bottom:129.516000pt;}
.yea{bottom:130.560000pt;}
.yff{bottom:134.160000pt;}
.y8f{bottom:135.520000pt;}
.ycd{bottom:140.080000pt;}
.y1fc{bottom:141.680000pt;}
.yb2{bottom:144.720000pt;}
.y6c{bottom:144.868160pt;}
.yf0{bottom:144.872160pt;}
.yfe{bottom:144.876000pt;}
.y11e{bottom:147.600000pt;}
.y1e9{bottom:149.200000pt;}
.yd8{bottom:149.280000pt;}
.yad{bottom:149.520000pt;}
.y107{bottom:160.228160pt;}
.y6b{bottom:160.232160pt;}
.yef{bottom:160.236160pt;}
.yac{bottom:161.280000pt;}
.y8e{bottom:163.120000pt;}
.yfd{bottom:164.880000pt;}
.ycc{bottom:167.680000pt;}
.y1fb{bottom:169.280000pt;}
.yb1{bottom:172.320000pt;}
.y18{bottom:175.052000pt;}
.y11d{bottom:175.200000pt;}
.y106{bottom:175.512000pt;}
.y6a{bottom:175.516000pt;}
.yfc{bottom:176.560000pt;}
.y1e8{bottom:176.800000pt;}
.yd7{bottom:176.880000pt;}
.ye6{bottom:179.200000pt;}
.yee{bottom:180.160000pt;}
.y1f9{bottom:184.240000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.ye8{bottom:188.640000pt;}
.y8d{bottom:190.720000pt;}
.y105{bottom:190.876000pt;}
.y51{bottom:191.554800pt;}
.yed{bottom:191.920000pt;}
.y3d{bottom:192.388667pt;}
.ycb{bottom:195.280000pt;}
.y69{bottom:195.520000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yab{bottom:199.920000pt;}
.y1fa{bottom:202.400000pt;}
.y11c{bottom:202.800000pt;}
.y1e7{bottom:204.400000pt;}
.yd6{bottom:204.480000pt;}
.y68{bottom:207.280000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ye5{bottom:209.040000pt;}
.y104{bottom:210.880000pt;}
.y50{bottom:217.688133pt;}
.yb5{bottom:217.760000pt;}
.y8c{bottom:218.320000pt;}
.y103{bottom:222.560000pt;}
.yca{bottom:222.880000pt;}
.yaa{bottom:227.520000pt;}
.y1f8{bottom:230.240000pt;}
.y11b{bottom:230.400000pt;}
.y4f{bottom:230.488133pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1e6{bottom:232.000000pt;}
.yd5{bottom:232.080000pt;}
.yb4{bottom:234.240000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y8b{bottom:245.920000pt;}
.yc9{bottom:250.480000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ya9{bottom:255.120000pt;}
.y4e{bottom:256.621467pt;}
.y11a{bottom:258.000000pt;}
.y1e5{bottom:259.600000pt;}
.yd4{bottom:259.680000pt;}
.y8a{bottom:273.520000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yc8{bottom:278.080000pt;}
.ya8{bottom:282.720000pt;}
.y4d{bottom:282.754800pt;}
.y175{bottom:284.560000pt;}
.y119{bottom:285.600000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1e4{bottom:287.200000pt;}
.yd3{bottom:287.280000pt;}
.y4c{bottom:295.554800pt;}
.y171{bottom:299.440000pt;}
.y164{bottom:299.920000pt;}
.y89{bottom:301.120000pt;}
.yc7{bottom:305.680000pt;}
.y4b{bottom:308.354800pt;}
.yf{bottom:309.452000pt;}
.ya7{bottom:310.320000pt;}
.y118{bottom:313.200000pt;}
.y1e3{bottom:314.800000pt;}
.yd2{bottom:314.880000pt;}
.y174{bottom:317.672160pt;}
.y4a{bottom:321.154800pt;}
.y163{bottom:327.520000pt;}
.ye4{bottom:328.160000pt;}
.y88{bottom:328.720000pt;}
.y173{bottom:333.036160pt;}
.yc6{bottom:333.280000pt;}
.y49{bottom:333.954800pt;}
.ya6{bottom:337.920000pt;}
.y13a{bottom:338.880000pt;}
.y117{bottom:340.800000pt;}
.y1bc{bottom:341.520000pt;}
.y1e2{bottom:342.400000pt;}
.yd1{bottom:342.480000pt;}
.ye{bottom:343.809333pt;}
.ye3{bottom:344.640000pt;}
.y15d{bottom:345.680000pt;}
.y48{bottom:346.754800pt;}
.y172{bottom:348.320000pt;}
.y162{bottom:355.120000pt;}
.y87{bottom:356.320000pt;}
.y1bb{bottom:359.340320pt;}
.yd0{bottom:360.080000pt;}
.yc5{bottom:360.880000pt;}
.y16e{bottom:361.040000pt;}
.yd{bottom:362.706666pt;}
.ya5{bottom:365.520000pt;}
.y139{bottom:366.480000pt;}
.y116{bottom:368.400000pt;}
.y1e1{bottom:370.000000pt;}
.ydb{bottom:370.080000pt;}
.y47{bottom:372.888133pt;}
.y15c{bottom:373.280000pt;}
.y1ba{bottom:374.624160pt;}
.ycf{bottom:374.720000pt;}
.y12c{bottom:375.360000pt;}
.y161{bottom:382.720000pt;}
.y86{bottom:383.920000pt;}
.y170{bottom:385.360000pt;}
.y46{bottom:385.688133pt;}
.y1e0{bottom:387.278880pt;}
.yda{bottom:387.680000pt;}
.yc4{bottom:388.480000pt;}
.y16d{bottom:388.640000pt;}
.y1b9{bottom:389.988160pt;}
.y10a{bottom:390.640000pt;}
.ya4{bottom:393.120000pt;}
.y138{bottom:394.080000pt;}
.y115{bottom:396.000000pt;}
.ye2{bottom:397.680000pt;}
.y45{bottom:398.488133pt;}
.y1df{bottom:399.600000pt;}
.y15b{bottom:400.880000pt;}
.yd9{bottom:402.320000pt;}
.y12b{bottom:402.960000pt;}
.y1b8{bottom:405.352160pt;}
.y213{bottom:407.280000pt;}
.y30{bottom:407.598800pt;}
.y1de{bottom:409.520000pt;}
.y160{bottom:410.320000pt;}
.y85{bottom:411.520000pt;}
.yc3{bottom:416.080000pt;}
.y16c{bottom:416.240000pt;}
.y126{bottom:417.920000pt;}
.y14d{bottom:418.080000pt;}
.y1b7{bottom:420.636000pt;}
.ya3{bottom:420.720000pt;}
.y114{bottom:421.440000pt;}
.y137{bottom:421.680000pt;}
.y44{bottom:424.621467pt;}
.ye1{bottom:425.280000pt;}
.y212{bottom:425.680000pt;}
.y1dd{bottom:427.672000pt;}
.y15a{bottom:428.480000pt;}
.y205{bottom:430.000000pt;}
.y153{bottom:431.520000pt;}
.y1ae{bottom:432.480000pt;}
.y1b6{bottom:436.000000pt;}
.y129{bottom:436.076000pt;}
.y131{bottom:436.640000pt;}
.y43{bottom:437.421467pt;}
.y15f{bottom:437.920000pt;}
.y84{bottom:439.120000pt;}
.y20a{bottom:439.200000pt;}
.y209{bottom:439.440000pt;}
.y211{bottom:440.640000pt;}
.y1dc{bottom:443.036000pt;}
.yc2{bottom:443.680000pt;}
.y16b{bottom:443.840000pt;}
.y14c{bottom:445.680000pt;}
.y113{bottom:446.560000pt;}
.yc{bottom:446.990669pt;}
.ya2{bottom:448.320000pt;}
.y42{bottom:450.221467pt;}
.y1ad{bottom:450.300160pt;}
.y128{bottom:451.440000pt;}
.ye0{bottom:452.880000pt;}
.y207{bottom:454.400000pt;}
.y1b5{bottom:454.480000pt;}
.y136{bottom:454.788160pt;}
.y159{bottom:456.080000pt;}
.y204{bottom:457.600000pt;}
.y1db{bottom:458.400000pt;}
.y166{bottom:458.800000pt;}
.y152{bottom:459.120000pt;}
.y2f{bottom:460.070800pt;}
.yb{bottom:462.990669pt;}
.y41{bottom:463.021467pt;}
.y1ac{bottom:465.664160pt;}
.y83{bottom:466.720000pt;}
.y1b4{bottom:469.760000pt;}
.y135{bottom:470.152160pt;}
.y157{bottom:471.040000pt;}
.y15e{bottom:471.120000pt;}
.yc1{bottom:471.280000pt;}
.y202{bottom:472.560000pt;}
.y208{bottom:472.640000pt;}
.y14b{bottom:473.280000pt;}
.y14f{bottom:474.080000pt;}
.y112{bottom:474.160000pt;}
.ya1{bottom:475.840000pt;}
.y16a{bottom:477.032160pt;}
.y227{bottom:477.920000pt;}
.y1d7{bottom:478.640000pt;}
.ya{bottom:478.990666pt;}
.y124{bottom:479.200000pt;}
.ydf{bottom:480.480000pt;}
.y1ab{bottom:480.948000pt;}
.y1b3{bottom:485.120000pt;}
.y1da{bottom:485.360000pt;}
.y134{bottom:485.516160pt;}
.y20f{bottom:486.640000pt;}
.y158{bottom:489.200000pt;}
.y203{bottom:490.720000pt;}
.y169{bottom:492.316000pt;}
.y151{bottom:492.316160pt;}
.y1b2{bottom:492.800000pt;}
.y82{bottom:494.240000pt;}
.y9{bottom:494.990666pt;}
.y1aa{bottom:496.312000pt;}
.y52{bottom:496.778800pt;}
.y1d6{bottom:497.040000pt;}
.yde{bottom:498.000000pt;}
.yc0{bottom:498.880000pt;}
.y206{bottom:500.400000pt;}
.y133{bottom:500.800000pt;}
.y14a{bottom:500.880000pt;}
.y111{bottom:501.760000pt;}
.ya0{bottom:503.440000pt;}
.y226{bottom:505.520000pt;}
.y150{bottom:507.600000pt;}
.y168{bottom:507.680000pt;}
.yfb{bottom:508.080000pt;}
.y19c{bottom:510.160000pt;}
.y1a9{bottom:511.676000pt;}
.ydd{bottom:512.640000pt;}
.y27{bottom:516.080267pt;}
.y18f{bottom:520.944160pt;}
.y81{bottom:521.840000pt;}
.y225{bottom:523.336160pt;}
.y1b1{bottom:523.440000pt;}
.y1d5{bottom:524.640000pt;}
.y156{bottom:526.240000pt;}
.ybf{bottom:526.480000pt;}
.y1a8{bottom:527.040000pt;}
.y140{bottom:527.280000pt;}
.y201{bottom:527.760000pt;}
.y19b{bottom:527.980320pt;}
.y149{bottom:528.480000pt;}
.y12f{bottom:528.640000pt;}
.y110{bottom:529.360000pt;}
.y9f{bottom:531.040000pt;}
.yfa{bottom:535.680000pt;}
.y18e{bottom:536.308160pt;}
.y224{bottom:538.700160pt;}
.y1b0{bottom:539.440000pt;}
.y19a{bottom:543.264160pt;}
.y14e{bottom:544.640000pt;}
.y165{bottom:544.720000pt;}
.y1a7{bottom:545.440000pt;}
.y13f{bottom:545.680000pt;}
.y80{bottom:549.440000pt;}
.y18d{bottom:551.672160pt;}
.y1d4{bottom:552.240000pt;}
.y3c{bottom:553.888000pt;}
.y223{bottom:554.064160pt;}
.ybe{bottom:554.080000pt;}
.y148{bottom:556.080000pt;}
.y10f{bottom:556.960000pt;}
.y199{bottom:558.628160pt;}
.y9e{bottom:558.640000pt;}
.y230{bottom:559.200000pt;}
.y13c{bottom:560.640000pt;}
.y1a6{bottom:560.800000pt;}
.yf9{bottom:563.280000pt;}
.y18c{bottom:566.956000pt;}
.y222{bottom:569.348000pt;}
.y1d3{bottom:570.052480pt;}
.y1af{bottom:570.080000pt;}
.y1f6{bottom:570.960000pt;}
.y144{bottom:571.040000pt;}
.y8{bottom:573.786667pt;}
.y198{bottom:573.992160pt;}
.y1a5{bottom:576.080000pt;}
.y22f{bottom:577.036000pt;}
.y7f{bottom:577.040000pt;}
.y13e{bottom:578.800000pt;}
.ybd{bottom:581.680000pt;}
.y18b{bottom:582.320000pt;}
.y1a2{bottom:583.760000pt;}
.y10e{bottom:584.560000pt;}
.y221{bottom:584.712000pt;}
.y1d2{bottom:585.336320pt;}
.y9d{bottom:586.240000pt;}
.y1f5{bottom:588.240000pt;}
.y147{bottom:589.196000pt;}
.y197{bottom:589.276000pt;}
.yf8{bottom:590.880000pt;}
.y22e{bottom:592.400000pt;}
.y7{bottom:592.685334pt;}
.y220{bottom:600.076000pt;}
.y1a1{bottom:600.080000pt;}
.y1d1{bottom:600.700320pt;}
.y18a{bottom:600.800000pt;}
.y146{bottom:604.560000pt;}
.y7e{bottom:604.640000pt;}
.y13b{bottom:606.640000pt;}
.yf7{bottom:608.400000pt;}
.ybc{bottom:609.280000pt;}
.y1f4{bottom:610.800000pt;}
.y10d{bottom:612.160000pt;}
.y9c{bottom:613.840000pt;}
.y23{bottom:615.152000pt;}
.y1a0{bottom:615.440000pt;}
.y1d0{bottom:616.064320pt;}
.y189{bottom:616.080000pt;}
.y67{bottom:617.360000pt;}
.y26{bottom:622.659200pt;}
.yf6{bottom:623.040000pt;}
.y196{bottom:623.120000pt;}
.y22d{bottom:626.160000pt;}
.y1cf{bottom:631.348160pt;}
.y188{bottom:631.440000pt;}
.y7d{bottom:632.240000pt;}
.y21f{bottom:633.840000pt;}
.y66{bottom:636.640000pt;}
.ybb{bottom:636.880000pt;}
.y195{bottom:638.400000pt;}
.y10c{bottom:639.760000pt;}
.y9b{bottom:641.440000pt;}
.y143{bottom:641.520000pt;}
.y6{bottom:645.598667pt;}
.y1ce{bottom:646.712160pt;}
.y187{bottom:646.720000pt;}
.y21e{bottom:649.120000pt;}
.y16f{bottom:650.560000pt;}
.y193{bottom:653.760000pt;}
.y65{bottom:655.280000pt;}
.y25{bottom:657.859200pt;}
.y7c{bottom:659.840000pt;}
.y192{bottom:661.440000pt;}
.y1cd{bottom:661.996000pt;}
.y186{bottom:662.080000pt;}
.yba{bottom:664.480000pt;}
.y1f3{bottom:666.000000pt;}
.y10b{bottom:668.800000pt;}
.y3{bottom:668.977329pt;}
.y9a{bottom:669.040000pt;}
.y21d{bottom:672.160000pt;}
.y64{bottom:673.680000pt;}
.y191{bottom:676.720000pt;}
.y1cc{bottom:677.360000pt;}
.y185{bottom:677.440000pt;}
.y22c{bottom:679.840000pt;}
.y1f2{bottom:683.280000pt;}
.y7b{bottom:687.440000pt;}
.y21c{bottom:687.520000pt;}
.y63{bottom:692.080000pt;}
.y184{bottom:692.720000pt;}
.y22{bottom:693.059333pt;}
.y1cb{bottom:695.840000pt;}
.y99{bottom:696.640000pt;}
.y21b{bottom:702.800000pt;}
.y2e{bottom:707.750000pt;}
.y40{bottom:707.876667pt;}
.y183{bottom:708.080000pt;}
.y62{bottom:710.480000pt;}
.y1ca{bottom:711.120000pt;}
.y1f1{bottom:714.000000pt;}
.y7a{bottom:715.040000pt;}
.y21a{bottom:718.800000pt;}
.yb9{bottom:719.680000pt;}
.y182{bottom:723.440000pt;}
.y98{bottom:724.240000pt;}
.y1c9{bottom:726.480000pt;}
.y3f{bottom:727.076667pt;}
.y61{bottom:728.880000pt;}
.y1f0{bottom:736.560000pt;}
.y181{bottom:738.720000pt;}
.y1c8{bottom:741.840000pt;}
.y79{bottom:742.640000pt;}
.y2d{bottom:742.950000pt;}
.y3e{bottom:746.276667pt;}
.y60{bottom:747.280000pt;}
.y219{bottom:749.520000pt;}
.y97{bottom:751.840000pt;}
.y180{bottom:754.080000pt;}
.y1c7{bottom:757.120000pt;}
.y1ef{bottom:764.160000pt;}
.y3b{bottom:765.477067pt;}
.y5f{bottom:765.680000pt;}
.y17f{bottom:769.440000pt;}
.y78{bottom:770.240000pt;}
.y1c6{bottom:772.480000pt;}
.yb8{bottom:774.880000pt;}
.y1d8{bottom:776.000000pt;}
.y96{bottom:779.440000pt;}
.y218{bottom:780.160000pt;}
.y2{bottom:781.661334pt;}
.y5e{bottom:784.080000pt;}
.y3a{bottom:784.677067pt;}
.y17e{bottom:784.720000pt;}
.y1c5{bottom:787.840000pt;}
.y28{bottom:789.476800pt;}
.y1ee{bottom:791.680000pt;}
.yf5{bottom:797.280000pt;}
.y77{bottom:797.840000pt;}
.y17d{bottom:800.080000pt;}
.y5d{bottom:802.480000pt;}
.y1c4{bottom:803.120000pt;}
.y39{bottom:803.877067pt;}
.y95{bottom:807.040000pt;}
.y1ed{bottom:809.040000pt;}
.y217{bottom:810.800000pt;}
.yf4{bottom:813.760000pt;}
.y17c{bottom:815.440000pt;}
.y1c3{bottom:818.480000pt;}
.y5c{bottom:820.880000pt;}
.y1ec{bottom:822.400000pt;}
.y38{bottom:823.077067pt;}
.y76{bottom:825.440000pt;}
.yb7{bottom:830.080000pt;}
.y17b{bottom:830.720000pt;}
.y1c2{bottom:833.840000pt;}
.y94{bottom:834.640000pt;}
.y5b{bottom:839.280000pt;}
.y1eb{bottom:839.680000pt;}
.y216{bottom:841.440000pt;}
.y37{bottom:842.277067pt;}
.y121{bottom:845.040000pt;}
.y17a{bottom:846.080000pt;}
.y1c1{bottom:849.120000pt;}
.y22b{bottom:849.840000pt;}
.y109{bottom:852.480000pt;}
.y75{bottom:853.040000pt;}
.y5a{bottom:857.680000pt;}
.y1{bottom:859.312000pt;}
.y179{bottom:861.440000pt;}
.y36{bottom:861.477067pt;}
.y93{bottom:862.240000pt;}
.y1f7{bottom:863.440000pt;}
.y1c0{bottom:864.480000pt;}
.y22a{bottom:865.840000pt;}
.y108{bottom:868.960000pt;}
.y215{bottom:872.800000pt;}
.y59{bottom:876.080000pt;}
.y178{bottom:877.440000pt;}
.y1bf{bottom:879.840000pt;}
.y74{bottom:880.640000pt;}
.y35{bottom:880.677067pt;}
.y229{bottom:884.400000pt;}
.yb6{bottom:885.280000pt;}
.y214{bottom:888.800000pt;}
.y92{bottom:889.840000pt;}
.y177{bottom:893.440000pt;}
.y58{bottom:894.480000pt;}
.y1be{bottom:895.840000pt;}
.y20b{bottom:897.120000pt;}
.y228{bottom:899.040000pt;}
.y34{bottom:899.877067pt;}
.y73{bottom:908.240000pt;}
.y154{bottom:909.440000pt;}
.y120{bottom:910.406000pt;}
.y1fe{bottom:910.960000pt;}
.y1bd{bottom:911.840000pt;}
.y176{bottom:912.000000pt;}
.y57{bottom:912.880000pt;}
.y20d{bottom:913.280000pt;}
.y91{bottom:917.440000pt;}
.y33{bottom:919.077067pt;}
.y72{bottom:926.080000pt;}
.y155{bottom:926.640000pt;}
.y12d{bottom:927.840000pt;}
.y56{bottom:930.400000pt;}
.y32{bottom:938.277067pt;}
.y141{bottom:941.600000pt;}
.y71{bottom:942.560000pt;}
.y55{bottom:945.040000pt;}
.y31{bottom:957.477067pt;}
.y53{bottom:992.800000pt;}
.h46{height:7.600000pt;}
.h39{height:7.680000pt;}
.h33{height:15.280000pt;}
.h32{height:15.281333pt;}
.h34{height:15.360000pt;}
.h3c{height:16.320000pt;}
.h2c{height:18.400000pt;}
.h3a{height:19.064063pt;}
.h15{height:24.806250pt;}
.h7{height:28.560000pt;}
.h42{height:28.844375pt;}
.h3f{height:30.548438pt;}
.h37{height:30.640000pt;}
.h3b{height:30.641333pt;}
.h35{height:30.720000pt;}
.h10{height:31.083333pt;}
.h27{height:32.160000pt;}
.h19{height:32.507812pt;}
.h1a{height:32.531250pt;}
.h13{height:34.453125pt;}
.h1c{height:36.218125pt;}
.h3d{height:36.798667pt;}
.h38{height:37.105312pt;}
.h22{height:38.348213pt;}
.h16{height:38.357812pt;}
.h21{height:38.373813pt;}
.h6{height:40.800000pt;}
.h11{height:42.656250pt;}
.hd{height:42.739583pt;}
.h3{height:42.840000pt;}
.h18{height:43.343750pt;}
.h36{height:43.366250pt;}
.h24{height:43.375000pt;}
.h1b{height:44.437500pt;}
.h14{height:45.937500pt;}
.h2b{height:46.000000pt;}
.h2e{height:46.001333pt;}
.he{height:46.625000pt;}
.hc{height:48.513000pt;}
.h2{height:48.960000pt;}
.h41{height:49.040000pt;}
.h12{height:50.284375pt;}
.h17{height:50.531875pt;}
.h23{height:50.560000pt;}
.h20{height:54.548437pt;}
.h1f{height:56.356250pt;}
.h26{height:61.278667pt;}
.h2d{height:61.360000pt;}
.hb{height:62.166667pt;}
.h44{height:62.880000pt;}
.h1e{height:63.281333pt;}
.h3e{height:66.640000pt;}
.h5{height:69.360000pt;}
.h30{height:76.640000pt;}
.h31{height:76.721333pt;}
.h1d{height:79.375000pt;}
.h9{height:85.479167pt;}
.h29{height:91.998667pt;}
.ha{height:101.066667pt;}
.h4{height:105.826671pt;}
.h2a{height:321.200000pt;}
.h25{height:365.840000pt;}
.h28{height:399.200000pt;}
.h45{height:410.480000pt;}
.h43{height:410.560000pt;}
.h2f{height:410.561333pt;}
.hf{height:416.222667pt;}
.h40{height:633.198667pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:33.040000pt;}
.wd{width:69.280000pt;}
.wc{width:69.360000pt;}
.we{width:69.440000pt;}
.w11{width:77.838667pt;}
.w13{width:77.920000pt;}
.w12{width:77.921333pt;}
.w14{width:78.000000pt;}
.w1a{width:103.920000pt;}
.w1b{width:104.000000pt;}
.w15{width:155.760000pt;}
.w16{width:155.838667pt;}
.wf{width:155.840000pt;}
.w17{width:155.921333pt;}
.w18{width:189.040000pt;}
.w19{width:207.840000pt;}
.wa{width:207.920000pt;}
.wb{width:416.080000pt;}
.w10{width:467.520000pt;}
.w2{width:566.928019pt;}
.w6{width:590.960000pt;}
.w5{width:620.222667pt;}
.w9{width:623.360000pt;}
.w8{width:624.000000pt;}
.w4{width:627.481333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x28{left:8.240000pt;}
.x48{left:12.240000pt;}
.x46{left:15.200000pt;}
.x39{left:16.320000pt;}
.x45{left:17.440000pt;}
.x37{left:19.680000pt;}
.x47{left:20.640000pt;}
.x1e{left:21.760000pt;}
.x38{left:22.960000pt;}
.x54{left:23.920000pt;}
.x3a{left:26.320000pt;}
.x68{left:28.240000pt;}
.x5e{left:30.160000pt;}
.x30{left:31.360000pt;}
.x5a{left:32.320000pt;}
.x36{left:34.640000pt;}
.x3f{left:35.600000pt;}
.x5c{left:36.880000pt;}
.x44{left:38.880000pt;}
.x5d{left:40.320000pt;}
.x6c{left:41.280000pt;}
.x4b{left:46.800000pt;}
.x52{left:47.920000pt;}
.x23{left:52.400000pt;}
.x50{left:54.160000pt;}
.x4d{left:56.400000pt;}
.x4e{left:58.480000pt;}
.x4f{left:60.720000pt;}
.x25{left:62.560000pt;}
.x8{left:64.740133pt;}
.x4c{left:67.200000pt;}
.x9{left:73.889467pt;}
.xa{left:76.740133pt;}
.x51{left:77.920000pt;}
.xc{left:84.000133pt;}
.x57{left:84.960000pt;}
.x7{left:85.889467pt;}
.x5{left:88.740133pt;}
.x1{left:90.706667pt;}
.x19{left:92.000000pt;}
.x2{left:94.486667pt;}
.x5f{left:95.599200pt;}
.xb{left:96.561333pt;}
.x55{left:97.760000pt;}
.x1f{left:99.600000pt;}
.x1d{left:102.800000pt;}
.x53{left:107.280000pt;}
.x6{left:108.305333pt;}
.x6d{left:110.560000pt;}
.x20{left:116.160000pt;}
.x67{left:119.680000pt;}
.x2a{left:123.200000pt;}
.x6e{left:127.360000pt;}
.x27{left:131.840000pt;}
.x22{left:133.120000pt;}
.x6f{left:134.640000pt;}
.xf{left:144.000000pt;}
.x3b{left:152.240000pt;}
.xd{left:156.616267pt;}
.x66{left:160.480000pt;}
.x49{left:162.000000pt;}
.x4a{left:172.800000pt;}
.x14{left:174.160000pt;}
.x13{left:178.160000pt;}
.x4{left:180.874667pt;}
.x2f{left:184.320000pt;}
.x3e{left:210.000000pt;}
.x2b{left:214.720000pt;}
.x63{left:231.200000pt;}
.x6b{left:232.400000pt;}
.x3d{left:251.840000pt;}
.x1a{left:255.840000pt;}
.x6a{left:257.200000pt;}
.x15{left:262.880000pt;}
.x3c{left:275.280000pt;}
.x69{left:280.640000pt;}
.x56{left:285.040000pt;}
.x10{left:303.440000pt;}
.x26{left:305.440000pt;}
.x65{left:308.080000pt;}
.x1b{left:312.000000pt;}
.x40{left:329.680000pt;}
.x29{left:335.360000pt;}
.x2d{left:369.120000pt;}
.x31{left:373.280000pt;}
.xe{left:375.200000pt;}
.x5b{left:388.960000pt;}
.x12{left:396.480000pt;}
.x61{left:398.880000pt;}
.x11{left:400.480000pt;}
.x3{left:404.408000pt;}
.x60{left:406.880000pt;}
.x2e{left:408.000000pt;}
.x64{left:432.000000pt;}
.x16{left:438.240000pt;}
.x32{left:442.560000pt;}
.x41{left:485.520000pt;}
.x58{left:492.880000pt;}
.x33{left:511.920000pt;}
.x42{left:563.440000pt;}
.x34{left:581.280000pt;}
.x59{left:596.800000pt;}
.x1c{left:631.200000pt;}
.x43{left:641.440000pt;}
.x35{left:650.560000pt;}
.x17{left:686.960000pt;}
.x62{left:701.680000pt;}
.x24{left:705.680000pt;}
.x21{left:707.680000pt;}
.x2c{left:709.840000pt;}
}




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