
    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_2c96493693e19d84d5a35b2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_c0344698eb82e4d0624ff4fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_b0c3ceeb453e1173611547dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_d430fdad81f61fb543ad6a7f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_21649360bf5f353c221ad153.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_97d0cfa9f1873807f8ed4985.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_17ae06bf5cd30c5e90dcf2eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862793;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_72ca9a98bf43b7cc49b899c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-5.996736px;}
.ls1{letter-spacing:-2.371968px;}
.ls8b{letter-spacing:-0.032400px;}
.ls25{letter-spacing:-0.028800px;}
.ls43{letter-spacing:-0.021600px;}
.ls24{letter-spacing:-0.014400px;}
.lscc{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010800px;}
.ls2b{letter-spacing:0.014400px;}
.ls41{letter-spacing:0.021600px;}
.lsbe{letter-spacing:0.054000px;}
.lsc1{letter-spacing:0.116928px;}
.ls90{letter-spacing:0.121894px;}
.lsbb{letter-spacing:0.125280px;}
.lsa1{letter-spacing:0.166920px;}
.ls6f{letter-spacing:0.170496px;}
.ls8d{letter-spacing:0.178778px;}
.ls70{letter-spacing:0.181152px;}
.ls9b{letter-spacing:0.186904px;}
.lsb0{letter-spacing:0.191808px;}
.ls91{letter-spacing:0.195030px;}
.ls64{letter-spacing:0.200448px;}
.lsb8{letter-spacing:0.208800px;}
.ls76{letter-spacing:0.211283px;}
.ls77{letter-spacing:0.217152px;}
.ls62{letter-spacing:0.219409px;}
.lsc3{letter-spacing:0.225504px;}
.lsb3{letter-spacing:0.234432px;}
.lsaf{letter-spacing:0.239760px;}
.lsb1{letter-spacing:0.242208px;}
.lsa3{letter-spacing:0.243788px;}
.ls63{letter-spacing:0.260041px;}
.ls95{letter-spacing:0.265680px;}
.ls7c{letter-spacing:0.267264px;}
.ls89{letter-spacing:0.268167px;}
.lsae{letter-spacing:0.275616px;}
.ls4f{letter-spacing:0.276000px;}
.lsad{letter-spacing:0.276120px;}
.lsab{letter-spacing:0.276293px;}
.ls93{letter-spacing:0.276600px;}
.ls6a{letter-spacing:0.283968px;}
.ls6{letter-spacing:0.291600px;}
.ls2c{letter-spacing:0.298080px;}
.lsb2{letter-spacing:0.298368px;}
.ls69{letter-spacing:0.300672px;}
.ls5f{letter-spacing:0.304560px;}
.ls7e{letter-spacing:0.309024px;}
.ls7b{letter-spacing:0.325008px;}
.ls96{letter-spacing:0.325051px;}
.ls88{letter-spacing:0.330480px;}
.lsa{letter-spacing:0.331800px;}
.ls82{letter-spacing:0.333177px;}
.lsc4{letter-spacing:0.334080px;}
.lsa7{letter-spacing:0.351648px;}
.ls6d{letter-spacing:0.356040px;}
.lsac{letter-spacing:0.356640px;}
.ls6c{letter-spacing:0.356976px;}
.ls74{letter-spacing:0.367632px;}
.ls9d{letter-spacing:0.373808px;}
.ls67{letter-spacing:0.375840px;}
.ls7a{letter-spacing:0.376800px;}
.ls6b{letter-spacing:0.377400px;}
.ls75{letter-spacing:0.378288px;}
.lsc0{letter-spacing:0.384192px;}
.ls8c{letter-spacing:0.387600px;}
.ls83{letter-spacing:0.394272px;}
.ls68{letter-spacing:0.395280px;}
.ls61{letter-spacing:0.401760px;}
.ls9e{letter-spacing:0.452880px;}
.ls60{letter-spacing:0.479520px;}
.ls65{letter-spacing:0.498960px;}
.ls86{letter-spacing:0.518400px;}
.ls78{letter-spacing:0.524880px;}
.ls2d{letter-spacing:0.531360px;}
.ls8e{letter-spacing:0.544320px;}
.ls80{letter-spacing:0.549600px;}
.lsbc{letter-spacing:0.550800px;}
.ls66{letter-spacing:0.570240px;}
.ls84{letter-spacing:0.574800px;}
.ls6e{letter-spacing:0.576720px;}
.ls2a{letter-spacing:0.583200px;}
.ls7{letter-spacing:0.596160px;}
.ls27{letter-spacing:0.602640px;}
.ls97{letter-spacing:0.622080px;}
.lsbf{letter-spacing:0.628560px;}
.ls29{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.654480px;}
.ls4{letter-spacing:0.667440px;}
.lsa4{letter-spacing:0.673920px;}
.ls8f{letter-spacing:0.706320px;}
.ls23{letter-spacing:0.725760px;}
.lsa6{letter-spacing:0.732240px;}
.ls2e{letter-spacing:0.745200px;}
.ls5{letter-spacing:0.751680px;}
.lsa2{letter-spacing:0.771120px;}
.ls73{letter-spacing:0.797040px;}
.ls28{letter-spacing:0.803520px;}
.ls7d{letter-spacing:0.848880px;}
.ls71{letter-spacing:0.946080px;}
.lsa0{letter-spacing:0.949800px;}
.lsb7{letter-spacing:0.952560px;}
.ls2f{letter-spacing:1.023840px;}
.lsba{letter-spacing:1.043280px;}
.lsc7{letter-spacing:1.209600px;}
.lsb6{letter-spacing:1.396800px;}
.lsb5{letter-spacing:1.436400px;}
.lsaa{letter-spacing:1.549200px;}
.lsa9{letter-spacing:1.588200px;}
.ls85{letter-spacing:1.877400px;}
.ls98{letter-spacing:2.000400px;}
.ls79{letter-spacing:2.268600px;}
.lsc2{letter-spacing:2.647200px;}
.ls99{letter-spacing:2.758800px;}
.ls87{letter-spacing:3.184800px;}
.ls7f{letter-spacing:3.346800px;}
.lsc6{letter-spacing:4.144800px;}
.lsbd{letter-spacing:4.475400px;}
.ls3{letter-spacing:4.801680px;}
.ls9a{letter-spacing:6.466800px;}
.ls9c{letter-spacing:9.551400px;}
.ls9f{letter-spacing:9.691200px;}
.lsc9{letter-spacing:9.906000px;}
.ls8a{letter-spacing:10.597800px;}
.ls94{letter-spacing:10.840800px;}
.ls72{letter-spacing:11.070600px;}
.ls92{letter-spacing:12.730800px;}
.lsb9{letter-spacing:13.666200px;}
.lsb4{letter-spacing:15.219000px;}
.lsc5{letter-spacing:15.462600px;}
.lsa5{letter-spacing:20.016000px;}
.lsca{letter-spacing:27.331800px;}
.lscb{letter-spacing:39.868200px;}
.lsc8{letter-spacing:39.873000px;}
.lsa8{letter-spacing:46.479000px;}
.ls81{letter-spacing:59.628000px;}
.ls9{letter-spacing:60.005340px;}
.lsb{letter-spacing:81.503400px;}
.ls3b{letter-spacing:89.513400px;}
.ls1a{letter-spacing:114.052200px;}
.ls58{letter-spacing:581.306400px;}
.ls45{letter-spacing:639.346200px;}
.ls4e{letter-spacing:766.125600px;}
.ls5e{letter-spacing:849.355200px;}
.ls51{letter-spacing:912.015600px;}
.ls4a{letter-spacing:957.294000px;}
.ls21{letter-spacing:1079.593800px;}
.ls4b{letter-spacing:1080.367200px;}
.ls44{letter-spacing:1097.833800px;}
.ls5d{letter-spacing:1126.321800px;}
.ls15{letter-spacing:1142.564400px;}
.ls20{letter-spacing:1180.494600px;}
.ls59{letter-spacing:1208.242200px;}
.ls5c{letter-spacing:1214.107200px;}
.ls4c{letter-spacing:1224.774000px;}
.ls5a{letter-spacing:1229.350200px;}
.ls56{letter-spacing:1250.200800px;}
.ls46{letter-spacing:1269.279000px;}
.ls52{letter-spacing:1271.277000px;}
.ls5b{letter-spacing:1285.134600px;}
.ls47{letter-spacing:1295.962200px;}
.ls49{letter-spacing:1331.798400px;}
.ls53{letter-spacing:1345.559400px;}
.ls31{letter-spacing:1352.874600px;}
.ls36{letter-spacing:1358.697600px;}
.ls55{letter-spacing:1360.254600px;}
.ls12{letter-spacing:1375.948800px;}
.ls50{letter-spacing:1382.233200px;}
.ls48{letter-spacing:1390.579800px;}
.ls54{letter-spacing:1408.046400px;}
.ls57{letter-spacing:1420.293000px;}
.ls1b{letter-spacing:1480.459800px;}
.lsf{letter-spacing:1507.014600px;}
.ls4d{letter-spacing:1546.072800px;}
.ls32{letter-spacing:1551.229200px;}
.ls19{letter-spacing:1555.612200px;}
.ls3a{letter-spacing:1569.082800px;}
.ls33{letter-spacing:1572.337800px;}
.ls30{letter-spacing:1599.214800px;}
.ls40{letter-spacing:1627.960800px;}
.ls18{letter-spacing:1700.019000px;}
.ls1f{letter-spacing:1730.215200px;}
.ls3e{letter-spacing:1731.021000px;}
.ls1c{letter-spacing:1731.053400px;}
.ls34{letter-spacing:1743.235200px;}
.ls35{letter-spacing:1766.502600px;}
.ls37{letter-spacing:1767.856200px;}
.ls39{letter-spacing:1789.738200px;}
.ls22{letter-spacing:1792.314600px;}
.ls16{letter-spacing:1794.153000px;}
.ls13{letter-spacing:1795.119600px;}
.ls14{letter-spacing:1795.345200px;}
.ls17{letter-spacing:1797.504600px;}
.ls1e{letter-spacing:1856.221200px;}
.ls1d{letter-spacing:1858.284000px;}
.ls11{letter-spacing:1863.730200px;}
.ls3c{letter-spacing:1892.798400px;}
.ls3f{letter-spacing:1904.767800px;}
.ls38{letter-spacing:1909.846200px;}
.ls3d{letter-spacing:1930.084800px;}
.ls42{letter-spacing:1947.729000px;}
.ls10{letter-spacing:1984.619400px;}
.lse{letter-spacing:2000.725200px;}
.lsd{letter-spacing:2016.741600px;}
.lsc{letter-spacing:2048.452800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-4.866480px;}
.wsce{word-spacing:-1.108080px;}
.ws24{word-spacing:-1.088640px;}
.wsc5{word-spacing:-1.017360px;}
.ws3f{word-spacing:-1.010880px;}
.ws4d{word-spacing:-0.913680px;}
.ws19{word-spacing:-0.868320px;}
.ws40{word-spacing:-0.861840px;}
.wsab{word-spacing:-0.835920px;}
.ws4{word-spacing:-0.816480px;}
.ws22{word-spacing:-0.810000px;}
.wsb1{word-spacing:-0.797040px;}
.ws9{word-spacing:-0.790560px;}
.ws86{word-spacing:-0.771120px;}
.wsae{word-spacing:-0.738720px;}
.ws3{word-spacing:-0.732240px;}
.wsf{word-spacing:-0.719280px;}
.ws1c{word-spacing:-0.712800px;}
.wsd5{word-spacing:-0.693360px;}
.ws9d{word-spacing:-0.686880px;}
.ws14{word-spacing:-0.667440px;}
.ws6{word-spacing:-0.660960px;}
.ws1e{word-spacing:-0.648000px;}
.ws3b{word-spacing:-0.641520px;}
.ws35{word-spacing:-0.635040px;}
.ws85{word-spacing:-0.609120px;}
.ws21{word-spacing:-0.596160px;}
.ws49{word-spacing:-0.589680px;}
.ws63{word-spacing:-0.583200px;}
.ws34{word-spacing:-0.563760px;}
.ws30{word-spacing:-0.544320px;}
.wsaa{word-spacing:-0.506160px;}
.wsd9{word-spacing:-0.467712px;}
.ws31{word-spacing:-0.466560px;}
.ws37{word-spacing:-0.460080px;}
.wsa2{word-spacing:-0.455071px;}
.ws61{word-spacing:-0.447552px;}
.ws36{word-spacing:-0.440640px;}
.ws42{word-spacing:-0.431568px;}
.ws41{word-spacing:-0.420912px;}
.wsde{word-spacing:-0.417600px;}
.ws55{word-spacing:-0.414440px;}
.ws3c{word-spacing:-0.410256px;}
.ws93{word-spacing:-0.406313px;}
.wsb2{word-spacing:-0.404928px;}
.ws65{word-spacing:-0.395280px;}
.ws50{word-spacing:-0.392544px;}
.ws38{word-spacing:-0.381935px;}
.ws4a{word-spacing:-0.378288px;}
.ws2f{word-spacing:-0.369360px;}
.ws39{word-spacing:-0.367488px;}
.ws20{word-spacing:-0.362880px;}
.wsb9{word-spacing:-0.359136px;}
.wsb7{word-spacing:-0.357556px;}
.ws5{word-spacing:-0.356400px;}
.wsbd{word-spacing:-0.351648px;}
.ws4b{word-spacing:-0.350784px;}
.ws67{word-spacing:-0.349430px;}
.ws33{word-spacing:-0.341303px;}
.ws90{word-spacing:-0.330480px;}
.wsbc{word-spacing:-0.325728px;}
.wsac{word-spacing:-0.325051px;}
.wsdc{word-spacing:-0.309024px;}
.ws32{word-spacing:-0.300672px;}
.wsba{word-spacing:-0.293040px;}
.ws47{word-spacing:-0.292546px;}
.wscd{word-spacing:-0.292320px;}
.wsbe{word-spacing:-0.287712px;}
.ws3a{word-spacing:-0.283968px;}
.ws8c{word-spacing:-0.276293px;}
.wsa1{word-spacing:-0.268167px;}
.ws7f{word-spacing:-0.260041px;}
.wsbb{word-spacing:-0.245088px;}
.ws3e{word-spacing:-0.234432px;}
.ws3d{word-spacing:-0.223776px;}
.wscf{word-spacing:-0.208800px;}
.ws8b{word-spacing:-0.203157px;}
.wsda{word-spacing:-0.200448px;}
.wsd3{word-spacing:-0.162000px;}
.wsa0{word-spacing:-0.129600px;}
.wsb{word-spacing:-0.118800px;}
.ws51{word-spacing:-0.108000px;}
.wse6{word-spacing:-0.097200px;}
.ws28{word-spacing:-0.093600px;}
.ws1f{word-spacing:-0.086400px;}
.wsdb{word-spacing:-0.083520px;}
.ws6b{word-spacing:-0.075600px;}
.ws16{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.064800px;}
.wsc{word-spacing:-0.057600px;}
.ws25{word-spacing:-0.050400px;}
.wsd{word-spacing:-0.043200px;}
.ws7{word-spacing:0.000000px;}
.ws0{word-spacing:2.204928px;}
.ws1{word-spacing:5.829696px;}
.ws5e{word-spacing:9.065520px;}
.ws69{word-spacing:9.195120px;}
.ws64{word-spacing:9.221040px;}
.ws8d{word-spacing:9.318240px;}
.ws60{word-spacing:9.396000px;}
.ws6a{word-spacing:9.408960px;}
.wsd0{word-spacing:9.428400px;}
.ws96{word-spacing:9.454320px;}
.wsd4{word-spacing:9.551520px;}
.wsa6{word-spacing:9.583920px;}
.ws8e{word-spacing:9.707040px;}
.ws6c{word-spacing:9.720000px;}
.wsd1{word-spacing:9.797760px;}
.ws43{word-spacing:9.836640px;}
.ws44{word-spacing:9.856080px;}
.wsc9{word-spacing:10.095840px;}
.ws66{word-spacing:10.180080px;}
.ws97{word-spacing:10.193040px;}
.wsa7{word-spacing:10.257840px;}
.wsb8{word-spacing:10.400400px;}
.wsca{word-spacing:10.510560px;}
.ws80{word-spacing:10.620720px;}
.ws6e{word-spacing:10.633680px;}
.ws5c{word-spacing:10.672560px;}
.wsa4{word-spacing:10.743840px;}
.ws6d{word-spacing:10.860480px;}
.ws75{word-spacing:10.951200px;}
.wsb4{word-spacing:11.074320px;}
.ws76{word-spacing:11.080800px;}
.ws70{word-spacing:11.087280px;}
.wsc8{word-spacing:11.119680px;}
.wsa5{word-spacing:11.139120px;}
.ws91{word-spacing:11.333520px;}
.ws57{word-spacing:11.372400px;}
.ws5d{word-spacing:11.378880px;}
.ws73{word-spacing:11.424240px;}
.ws89{word-spacing:11.450160px;}
.ws71{word-spacing:11.618640px;}
.ws92{word-spacing:11.702880px;}
.ws95{word-spacing:11.780640px;}
.ws88{word-spacing:12.007440px;}
.ws74{word-spacing:12.111120px;}
.ws7e{word-spacing:12.240720px;}
.ws4f{word-spacing:12.266640px;}
.ws54{word-spacing:12.305520px;}
.ws6f{word-spacing:12.363840px;}
.ws52{word-spacing:12.370320px;}
.ws8f{word-spacing:12.389760px;}
.ws53{word-spacing:12.428640px;}
.wsd2{word-spacing:12.674880px;}
.ws98{word-spacing:12.759120px;}
.ws72{word-spacing:12.823920px;}
.ws99{word-spacing:12.901680px;}
.wsad{word-spacing:12.947040px;}
.ws82{word-spacing:12.972960px;}
.wsdd{word-spacing:13.011840px;}
.wscc{word-spacing:13.109040px;}
.wsd8{word-spacing:13.245120px;}
.ws5a{word-spacing:13.465440px;}
.ws7a{word-spacing:13.484880px;}
.ws9e{word-spacing:13.653360px;}
.wsd7{word-spacing:13.860720px;}
.ws79{word-spacing:13.944960px;}
.wse1{word-spacing:13.980120px;}
.wsc2{word-spacing:14.009760px;}
.wsc3{word-spacing:14.042160px;}
.ws9f{word-spacing:14.055120px;}
.ws45{word-spacing:14.119920px;}
.ws46{word-spacing:14.262480px;}
.wse2{word-spacing:14.268960px;}
.wse3{word-spacing:14.294880px;}
.ws84{word-spacing:14.379120px;}
.wse0{word-spacing:14.381880px;}
.wsc4{word-spacing:14.405040px;}
.wsc1{word-spacing:14.534640px;}
.ws81{word-spacing:14.690160px;}
.ws62{word-spacing:14.962320px;}
.ws8a{word-spacing:15.351120px;}
.ws94{word-spacing:15.804720px;}
.ws58{word-spacing:15.934320px;}
.ws56{word-spacing:16.627680px;}
.wsbf{word-spacing:16.776720px;}
.ws68{word-spacing:17.217360px;}
.wsdf{word-spacing:17.820000px;}
.ws48{word-spacing:17.832960px;}
.wse4{word-spacing:18.124560px;}
.wse5{word-spacing:18.137520px;}
.wsa3{word-spacing:18.493920px;}
.wsb0{word-spacing:18.617040px;}
.wsaf{word-spacing:18.798480px;}
.wsc6{word-spacing:18.979920px;}
.ws83{word-spacing:19.938960px;}
.ws78{word-spacing:20.230560px;}
.ws5b{word-spacing:20.405520px;}
.wsb5{word-spacing:20.988720px;}
.wsb3{word-spacing:21.636720px;}
.wsb6{word-spacing:21.766320px;}
.ws9b{word-spacing:22.790160px;}
.ws9c{word-spacing:22.880880px;}
.ws9a{word-spacing:23.412240px;}
.ws77{word-spacing:24.293520px;}
.wsa9{word-spacing:24.675840px;}
.wsc0{word-spacing:25.395120px;}
.wse7{word-spacing:25.751520px;}
.wse8{word-spacing:25.978320px;}
.ws5f{word-spacing:26.107920px;}
.ws59{word-spacing:26.198640px;}
.wsc7{word-spacing:26.328240px;}
.ws87{word-spacing:28.168560px;}
.ws7b{word-spacing:30.190320px;}
.wsa8{word-spacing:33.754320px;}
.wseb{word-spacing:37.707120px;}
.wsec{word-spacing:38.484720px;}
.wsed{word-spacing:38.607840px;}
.wscb{word-spacing:38.990160px;}
.ws7d{word-spacing:41.446080px;}
.ws7c{word-spacing:41.679360px;}
.ws4e{word-spacing:44.400960px;}
.wse9{word-spacing:105.241680px;}
.wsea{word-spacing:105.358320px;}
.ws4c{word-spacing:149.493600px;}
.ws8{word-spacing:669.019800px;}
.ws2d{word-spacing:788.780400px;}
.ws2b{word-spacing:849.290400px;}
.wsd6{word-spacing:983.731200px;}
.ws2c{word-spacing:986.683800px;}
.ws2e{word-spacing:1420.453800px;}
.ws17{word-spacing:1612.524600px;}
.ws13{word-spacing:1769.692800px;}
.ws1b{word-spacing:1779.551400px;}
.ws15{word-spacing:1782.035400px;}
.ws26{word-spacing:1876.746600px;}
.ws29{word-spacing:1895.484600px;}
.ws27{word-spacing:1921.887000px;}
.ws1d{word-spacing:1941.129600px;}
.ws18{word-spacing:1975.330200px;}
.ws1a{word-spacing:1981.582200px;}
.ws12{word-spacing:1982.473800px;}
.wse{word-spacing:2020.548000px;}
.ws10{word-spacing:2023.927800px;}
.ws23{word-spacing:2057.778000px;}
.ws11{word-spacing:2062.406400px;}
.ws2a{word-spacing:2068.840200px;}
._1{margin-left:-4.176000px;}
._7{margin-left:-3.045600px;}
._0{margin-left:-1.169280px;}
._3{width:1.002240px;}
._5{width:2.242080px;}
._2{width:3.507840px;}
._6{width:4.600800px;}
._9{width:5.767200px;}
._a{width:6.868800px;}
._8{width:8.035200px;}
._b{width:9.914400px;}
._c{width:14.001120px;}
._4{width:1260.054600px;}
.fc5{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc4{color:rgb(123,123,123);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(90,90,90);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:53.280000px;}
.fs0{font-size:64.800000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:81.262699px;}
.fs5{font-size:83.520000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:167.040000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:4.680000px;}
.y1ca{bottom:6.480000px;}
.y1cc{bottom:6.840000px;}
.y1cf{bottom:7.200000px;}
.y192{bottom:10.800000px;}
.y18e{bottom:11.160000px;}
.y1{bottom:12.755859px;}
.y1b{bottom:43.922871px;}
.y1c{bottom:51.998730px;}
.y23c{bottom:114.482871px;}
.y1e9{bottom:122.402871px;}
.y11d{bottom:124.922871px;}
.y22d{bottom:131.402871px;}
.y1f3{bottom:136.082871px;}
.y40{bottom:138.242841px;}
.yab{bottom:140.402841px;}
.y1fd{bottom:144.722841px;}
.y1e8{bottom:147.602841px;}
.ydd{bottom:147.962841px;}
.y11c{bottom:150.122841px;}
.y18{bottom:150.482841px;}
.y22c{bottom:156.602841px;}
.y95{bottom:157.682841px;}
.y1f2{bottom:161.282841px;}
.y24d{bottom:162.002841px;}
.yaa{bottom:165.602841px;}
.y215{bottom:167.042841px;}
.y1fc{bottom:169.562841px;}
.y141{bottom:171.362841px;}
.ydc{bottom:173.162841px;}
.y3f{bottom:174.242841px;}
.y11b{bottom:175.322841px;}
.y1e7{bottom:181.802841px;}
.y94{bottom:182.882841px;}
.yfb{bottom:183.602841px;}
.y20a{bottom:187.922841px;}
.y17{bottom:190.442841px;}
.ya9{bottom:190.802841px;}
.y1fb{bottom:194.762841px;}
.y24c{bottom:195.122841px;}
.y1f1{bottom:195.842841px;}
.y3e{bottom:199.442841px;}
.y214{bottom:201.242841px;}
.ydb{bottom:207.362841px;}
.y93{bottom:208.082841px;}
.yfa{bottom:208.802841px;}
.y17f{bottom:209.162841px;}
.y19b{bottom:209.522841px;}
.y209{bottom:213.122841px;}
.y140{bottom:214.922841px;}
.y13f{bottom:215.205003px;}
.y11a{bottom:215.282841px;}
.ya8{bottom:216.002841px;}
.y79{bottom:218.882841px;}
.ycc{bottom:219.962841px;}
.y22b{bottom:221.762841px;}
.y3d{bottom:224.642841px;}
.y1f0{bottom:228.602841px;}
.y1fa{bottom:229.322841px;}
.y16{bottom:230.762841px;}
.y17e{bottom:234.362841px;}
.y208{bottom:237.962841px;}
.yda{bottom:240.482841px;}
.y22a{bottom:246.962841px;}
.y92{bottom:248.042841px;}
.y78{bottom:249.122841px;}
.y3c{bottom:249.842841px;}
.ya7{bottom:250.562841px;}
.y19a{bottom:251.078700px;}
.yf9{bottom:252.362841px;}
.yf8{bottom:252.645003px;}
.y13e{bottom:258.842841px;}
.y17d{bottom:259.562841px;}
.ycb{bottom:260.282841px;}
.y119{bottom:265.682841px;}
.y1d2{bottom:269.282841px;}
.y15{bottom:270.722841px;}
.y91{bottom:273.242841px;}
.y1f9{bottom:273.602841px;}
.y77{bottom:274.322841px;}
.y3b{bottom:275.042841px;}
.y262{bottom:280.802841px;}
.y207{bottom:281.522841px;}
.y206{bottom:281.805003px;}
.y199{bottom:283.838700px;}
.y13d{bottom:284.042841px;}
.yca{bottom:285.482841px;}
.y1de{bottom:289.082841px;}
.y1ae{bottom:290.162841px;}
.y118{bottom:290.882841px;}
.ya6{bottom:294.842841px;}
.yf7{bottom:296.642841px;}
.y229{bottom:298.082841px;}
.y90{bottom:298.442841px;}
.y76{bottom:299.522841px;}
.y3a{bottom:300.242841px;}
.y17c{bottom:302.762841px;}
.y17b{bottom:303.045003px;}
.y1d1{bottom:303.482841px;}
.y26d{bottom:304.562841px;}
.y261{bottom:306.002841px;}
.y1f8{bottom:307.802841px;}
.y14{bottom:311.042841px;}
.y239{bottom:311.762841px;}
.y1dd{bottom:314.282841px;}
.y153{bottom:315.002841px;}
.y117{bottom:316.082841px;}
.y198{bottom:316.958700px;}
.ya5{bottom:320.042841px;}
.yf6{bottom:321.842841px;}
.y13c{bottom:324.362841px;}
.y75{bottom:324.722841px;}
.y39{bottom:325.802841px;}
.y1ad{bottom:330.122841px;}
.y8f{bottom:333.002841px;}
.y152{bottom:340.202841px;}
.y1d0{bottom:340.922841px;}
.ya4{bottom:344.882841px;}
.y260{bottom:345.962841px;}
.y17a{bottom:347.042841px;}
.y228{bottom:349.202841px;}
.y13b{bottom:349.562841px;}
.y74{bottom:349.922841px;}
.y197{bottom:350.078700px;}
.yc9{bottom:350.642841px;}
.y13{bottom:351.362841px;}
.y251{bottom:353.882841px;}
.y1dc{bottom:354.242841px;}
.y116{bottom:356.402841px;}
.y244{bottom:358.202841px;}
.y25c{bottom:358.562841px;}
.y38{bottom:361.802841px;}
.yb9{bottom:363.242841px;}
.y1ac{bottom:364.322841px;}
.y162{bottom:365.402841px;}
.y8e{bottom:365.762841px;}
.y26c{bottom:370.082841px;}
.y1ce{bottom:370.598700px;}
.y25f{bottom:371.162841px;}
.y179{bottom:372.242841px;}
.y73{bottom:375.122841px;}
.yc8{bottom:375.842841px;}
.y250{bottom:379.082841px;}
.y1db{bottom:379.442841px;}
.y115{bottom:381.242841px;}
.y196{bottom:383.198700px;}
.y151{bottom:383.762841px;}
.y150{bottom:384.045003px;}
.y37{bottom:387.002841px;}
.ya3{bottom:388.442841px;}
.ya2{bottom:388.725003px;}
.y13a{bottom:389.522841px;}
.y161{bottom:390.602841px;}
.y205{bottom:390.962841px;}
.y12{bottom:391.322841px;}
.y243{bottom:392.762841px;}
.y26b{bottom:395.282841px;}
.y1cd{bottom:396.158700px;}
.y25e{bottom:396.362841px;}
.y178{bottom:397.442841px;}
.y72{bottom:400.322841px;}
.yc7{bottom:402.122841px;}
.y1da{bottom:404.642841px;}
.y1ab{bottom:405.518700px;}
.y114{bottom:406.442841px;}
.y36{bottom:412.202841px;}
.yb8{bottom:413.642841px;}
.y139{bottom:414.722841px;}
.y227{bottom:415.802841px;}
.y204{bottom:416.162841px;}
.y195{bottom:416.318700px;}
.y25b{bottom:418.322841px;}
.y1cb{bottom:419.918700px;}
.y177{bottom:422.642841px;}
.y58{bottom:423.002841px;}
.y256{bottom:424.082841px;}
.yc6{bottom:426.962841px;}
.y14f{bottom:428.042841px;}
.y1d9{bottom:429.842841px;}
.y160{bottom:430.922841px;}
.y11{bottom:431.642841px;}
.ya1{bottom:432.722841px;}
.y26a{bottom:435.242841px;}
.y242{bottom:437.042841px;}
.y35{bottom:437.402841px;}
.y1aa{bottom:438.638700px;}
.yb7{bottom:438.842841px;}
.y71{bottom:439.562841px;}
.y8b{bottom:443.522841px;}
.y1c9{bottom:444.038700px;}
.y24f{bottom:446.402841px;}
.y176{bottom:447.842841px;}
.y57{bottom:448.562841px;}
.y255{bottom:449.282841px;}
.y194{bottom:449.438700px;}
.y203{bottom:450.722841px;}
.y25a{bottom:451.082841px;}
.y14e{bottom:452.882841px;}
.yc5{bottom:453.242841px;}
.y1d8{bottom:455.042841px;}
.y15f{bottom:456.122841px;}
.y113{bottom:456.842841px;}
.ya0{bottom:457.922841px;}
.y138{bottom:458.282841px;}
.y137{bottom:458.565003px;}
.y269{bottom:460.442841px;}
.y34{bottom:462.602841px;}
.yb6{bottom:464.042841px;}
.y25d{bottom:469.082841px;}
.y1c8{bottom:469.598700px;}
.y10{bottom:471.602841px;}
.y1a9{bottom:471.758700px;}
.y70{bottom:472.682841px;}
.y254{bottom:474.482841px;}
.y241{bottom:477.002841px;}
.y14d{bottom:478.082841px;}
.yc4{bottom:479.162841px;}
.y226{bottom:481.322841px;}
.y193{bottom:482.558700px;}
.y9f{bottom:483.122841px;}
.y56{bottom:484.562841px;}
.y1e6{bottom:485.282841px;}
.y268{bottom:485.642841px;}
.y33{bottom:487.802841px;}
.yb5{bottom:489.242841px;}
.y175{bottom:491.402841px;}
.y174{bottom:491.685003px;}
.yd9{bottom:492.842841px;}
.y8a{bottom:493.922841px;}
.y202{bottom:495.002841px;}
.y112{bottom:497.162841px;}
.y1d7{bottom:498.602841px;}
.y1d6{bottom:498.885003px;}
.y15e{bottom:499.322841px;}
.y15d{bottom:499.605003px;}
.y253{bottom:499.682841px;}
.y240{bottom:502.202841px;}
.y136{bottom:502.562841px;}
.y6f{bottom:502.922841px;}
.yc3{bottom:504.362841px;}
.y1a8{bottom:505.238700px;}
.y225{bottom:506.522841px;}
.y9e{bottom:508.322841px;}
.y55{bottom:510.122841px;}
.y1e5{bottom:510.482841px;}
.y267{bottom:510.842841px;}
.yf{bottom:511.922841px;}
.y1bc{bottom:512.642841px;}
.y32{bottom:513.002841px;}
.y191{bottom:515.678700px;}
.yd8{bottom:517.682841px;}
.y14c{bottom:518.402841px;}
.y89{bottom:519.122841px;}
.y1c7{bottom:519.482841px;}
.y1c6{bottom:519.765003px;}
.y201{bottom:520.202841px;}
.y111{bottom:522.362841px;}
.yb4{bottom:523.442841px;}
.y23f{bottom:527.402841px;}
.yf5{bottom:527.762841px;}
.y6e{bottom:528.122841px;}
.yc2{bottom:529.562841px;}
.y224{bottom:531.362841px;}
.y9d{bottom:533.522841px;}
.y252{bottom:534.242841px;}
.y173{bottom:535.322841px;}
.y258{bottom:537.482841px;}
.y31{bottom:538.202841px;}
.y238{bottom:541.082841px;}
.y1d5{bottom:542.522841px;}
.y14b{bottom:543.602841px;}
.yd7{bottom:543.962841px;}
.y1e4{bottom:545.042841px;}
.y200{bottom:545.402841px;}
.y54{bottom:546.482841px;}
.y110{bottom:547.562841px;}
.y190{bottom:548.438700px;}
.y1a7{bottom:551.162841px;}
.ye{bottom:552.242841px;}
.y23e{bottom:552.602841px;}
.yf4{bottom:552.962841px;}
.y6d{bottom:553.322841px;}
.y1bb{bottom:553.838700px;}
.y266{bottom:554.402841px;}
.y265{bottom:554.685003px;}
.y9c{bottom:558.722841px;}
.yf1{bottom:559.082841px;}
.y172{bottom:560.522841px;}
.y30{bottom:563.042841px;}
.y1c5{bottom:563.402841px;}
.y223{bottom:565.922841px;}
.y237{bottom:566.282841px;}
.yb3{bottom:567.722841px;}
.yd6{bottom:568.802841px;}
.yc1{bottom:570.602841px;}
.y12d{bottom:570.962841px;}
.y10f{bottom:572.762841px;}
.y257{bottom:576.002841px;}
.y1a6{bottom:576.362841px;}
.yf3{bottom:578.162841px;}
.y6c{bottom:578.522841px;}
.y1ff{bottom:579.602841px;}
.y18f{bottom:581.558700px;}
.y24b{bottom:582.482841px;}
.y53{bottom:583.202841px;}
.yf0{bottom:583.922841px;}
.y171{bottom:585.722841px;}
.y1ba{bottom:586.598700px;}
.y23d{bottom:586.802841px;}
.y2f{bottom:588.242841px;}
.y1c4{bottom:588.602841px;}
.y1e3{bottom:588.962841px;}
.y236{bottom:591.482841px;}
.yd{bottom:592.202841px;}
.y264{bottom:592.562841px;}
.y9b{bottom:592.922841px;}
.y15c{bottom:594.002841px;}
.yd5{bottom:595.082841px;}
.y23b{bottom:595.802841px;}
.y88{bottom:597.602841px;}
.y10e{bottom:597.962841px;}
.y6b{bottom:603.362841px;}
.y24a{bottom:607.682841px;}
.y14a{bottom:608.762841px;}
.yef{bottom:609.122841px;}
.y222{bottom:610.202841px;}
.yc0{bottom:610.922841px;}
.y1fe{bottom:612.722841px;}
.y2e{bottom:614.162841px;}
.y18d{bottom:615.398700px;}
.yb2{bottom:618.122841px;}
.y52{bottom:619.202841px;}
.y1b9{bottom:619.718700px;}
.y1a5{bottom:619.922841px;}
.y1a4{bottom:620.205003px;}
.yd4{bottom:620.282841px;}
.y12c{bottom:621.002841px;}
.y87{bottom:622.802841px;}
.y10d{bottom:623.162841px;}
.y263{bottom:625.682841px;}
.y9a{bottom:626.042841px;}
.y6a{bottom:628.562841px;}
.y1c3{bottom:628.922841px;}
.y235{bottom:631.802841px;}
.yc{bottom:632.522841px;}
.y249{bottom:632.882841px;}
.y149{bottom:633.962841px;}
.yee{bottom:634.322841px;}
.y221{bottom:635.402841px;}
.ybf{bottom:636.122841px;}
.y1e2{bottom:639.362841px;}
.y23a{bottom:639.645003px;}
.yb1{bottom:643.322841px;}
.y51{bottom:644.402841px;}
.y12b{bottom:646.202841px;}
.yd3{bottom:646.562841px;}
.y86{bottom:648.002841px;}
.y2d{bottom:650.162841px;}
.y170{bottom:651.242841px;}
.y1b8{bottom:652.838700px;}
.y69{bottom:653.762841px;}
.y1c2{bottom:654.122841px;}
.y234{bottom:657.002841px;}
.y248{bottom:658.082841px;}
.y1d4{bottom:658.442841px;}
.y15b{bottom:659.162841px;}
.yed{bottom:659.522841px;}
.y220{bottom:660.602841px;}
.ybe{bottom:661.322841px;}
.yf2{bottom:663.122841px;}
.y1a3{bottom:663.842841px;}
.y1e1{bottom:664.562841px;}
.y1f7{bottom:668.162841px;}
.yb0{bottom:668.522841px;}
.yb{bottom:669.242841px;}
.y50{bottom:669.602841px;}
.y1ef{bottom:671.042841px;}
.yd2{bottom:671.762841px;}
.y2c{bottom:675.362841px;}
.y16f{bottom:676.442841px;}
.y148{bottom:677.522841px;}
.y147{bottom:677.805003px;}
.y68{bottom:678.962841px;}
.y1c1{bottom:679.322841px;}
.y233{bottom:682.202841px;}
.y85{bottom:682.562841px;}
.y247{bottom:683.282841px;}
.y1d3{bottom:683.642841px;}
.yec{bottom:684.722841px;}
.y21f{bottom:685.802841px;}
.y1b7{bottom:686.318700px;}
.y12a{bottom:686.522841px;}
.y10c{bottom:688.322841px;}
.yaf{bottom:693.722841px;}
.y4f{bottom:695.162841px;}
.y27e{bottom:695.522841px;}
.ya{bottom:696.242841px;}
.yd1{bottom:696.962841px;}
.y1a2{bottom:698.042841px;}
.y1e0{bottom:699.122841px;}
.y15a{bottom:699.482841px;}
.y2b{bottom:700.922841px;}
.y16e{bottom:701.282841px;}
.y1f6{bottom:702.722841px;}
.y67{bottom:704.162841px;}
.ybd{bottom:704.882841px;}
.ybc{bottom:705.165003px;}
.y135{bottom:708.842841px;}
.yeb{bottom:709.922841px;}
.y21e{bottom:711.002841px;}
.y1ee{bottom:711.362841px;}
.y129{bottom:711.722841px;}
.y10b{bottom:713.522841px;}
.y276{bottom:716.042841px;}
.y232{bottom:716.762841px;}
.y246{bottom:717.842841px;}
.yd0{bottom:721.802841px;}
.y1c0{bottom:722.522841px;}
.y1bf{bottom:722.805003px;}
.y279{bottom:723.962841px;}
.y84{bottom:726.482841px;}
.yae{bottom:727.922841px;}
.y66{bottom:729.362841px;}
.y4e{bottom:731.162841px;}
.y1df{bottom:732.242841px;}
.y134{bottom:734.042841px;}
.yea{bottom:735.122841px;}
.y1b6{bottom:735.482841px;}
.y1b5{bottom:735.765003px;}
.y27d{bottom:735.842841px;}
.y21d{bottom:736.202841px;}
.y1ed{bottom:736.562841px;}
.y2a{bottom:736.922841px;}
.y10a{bottom:738.722841px;}
.y1a1{bottom:739.238700px;}
.y1f5{bottom:741.242841px;}
.y159{bottom:743.042841px;}
.y158{bottom:743.325003px;}
.y278{bottom:745.922841px;}
.y146{bottom:747.002841px;}
.y9{bottom:747.722841px;}
.ycf{bottom:748.082841px;}
.ybb{bottom:748.802841px;}
.y83{bottom:751.682841px;}
.y65{bottom:754.562841px;}
.y18c{bottom:755.282841px;}
.y18b{bottom:755.565003px;}
.y245{bottom:756.002841px;}
.y4d{bottom:756.362841px;}
.ye9{bottom:759.962841px;}
.y213{bottom:760.682841px;}
.y21c{bottom:761.042841px;}
.y29{bottom:762.122841px;}
.y109{bottom:763.922841px;}
.yad{bottom:766.442841px;}
.y16d{bottom:766.802841px;}
.y1ec{bottom:771.122841px;}
.y1a0{bottom:772.358700px;}
.yce{bottom:773.282841px;}
.yba{bottom:774.002841px;}
.y27c{bottom:776.162841px;}
.y128{bottom:776.882841px;}
.y133{bottom:777.242841px;}
.y132{bottom:777.525003px;}
.y64{bottom:779.762841px;}
.y275{bottom:781.202841px;}
.y4c{bottom:781.562841px;}
.y212{bottom:785.882841px;}
.ye8{bottom:786.242841px;}
.y145{bottom:786.962841px;}
.y21b{bottom:787.322841px;}
.y28{bottom:787.682841px;}
.y108{bottom:789.122841px;}
.y16c{bottom:792.002841px;}
.y187{bottom:794.882841px;}
.y82{bottom:795.242841px;}
.y81{bottom:795.525003px;}
.y277{bottom:796.322841px;}
.ycd{bottom:798.122841px;}
.yac{bottom:799.202841px;}
.y27b{bottom:801.002841px;}
.y127{bottom:802.082841px;}
.y63{bottom:804.962841px;}
.y19f{bottom:805.478700px;}
.y274{bottom:806.402841px;}
.y4b{bottom:807.122841px;}
.y8{bottom:807.842841px;}
.y1eb{bottom:809.282841px;}
.y211{bottom:811.082841px;}
.ye7{bottom:811.442841px;}
.y144{bottom:812.162841px;}
.y21a{bottom:812.522841px;}
.y1b4{bottom:813.962841px;}
.y8d{bottom:814.322841px;}
.y16b{bottom:817.202841px;}
.y131{bottom:821.522841px;}
.y27{bottom:823.682841px;}
.y18a{bottom:824.402841px;}
.y27a{bottom:826.202841px;}
.y126{bottom:827.282841px;}
.y62{bottom:830.162841px;}
.y273{bottom:831.602841px;}
.y210{bottom:836.282841px;}
.ye6{bottom:836.642841px;}
.y157{bottom:837.362841px;}
.y219{bottom:837.722841px;}
.y19e{bottom:838.238700px;}
.y80{bottom:839.522841px;}
.y16a{bottom:842.402841px;}
.y4a{bottom:843.122841px;}
.y186{bottom:845.282841px;}
.y26{bottom:848.882841px;}
.yfe{bottom:849.602841px;}
.y231{bottom:851.402841px;}
.y125{bottom:852.482841px;}
.y1b3{bottom:855.158700px;}
.y61{bottom:855.362841px;}
.y107{bottom:857.882841px;}
.y106{bottom:858.165003px;}
.y20f{bottom:861.482841px;}
.y130{bottom:861.842841px;}
.ye5{bottom:862.922841px;}
.y7f{bottom:864.722841px;}
.y169{bottom:867.602841px;}
.y49{bottom:868.322841px;}
.y185{bottom:870.482841px;}
.y272{bottom:871.922841px;}
.y19d{bottom:872.078700px;}
.y25{bottom:874.442841px;}
.y230{bottom:876.602841px;}
.y124{bottom:877.682841px;}
.y60{bottom:880.562841px;}
.y1be{bottom:885.962841px;}
.y1bd{bottom:886.245003px;}
.y20e{bottom:886.682841px;}
.y12f{bottom:887.042841px;}
.y218{bottom:887.762841px;}
.y1b2{bottom:887.918700px;}
.ye4{bottom:888.122841px;}
.y7e{bottom:889.922841px;}
.y48{bottom:893.522841px;}
.y184{bottom:895.682841px;}
.y271{bottom:897.122841px;}
.yfd{bottom:900.002841px;}
.y105{bottom:901.802841px;}
.y156{bottom:902.882841px;}
.y7{bottom:905.402841px;}
.y5f{bottom:905.762841px;}
.y24{bottom:910.442841px;}
.y168{bottom:911.162841px;}
.y167{bottom:911.445003px;}
.y12e{bottom:911.882841px;}
.ye3{bottom:913.322841px;}
.y217{bottom:914.042841px;}
.y8c{bottom:915.122841px;}
.y123{bottom:917.642841px;}
.y47{bottom:918.722841px;}
.y183{bottom:920.882841px;}
.y1b1{bottom:921.038700px;}
.y143{bottom:921.242841px;}
.y142{bottom:921.525003px;}
.y270{bottom:922.322841px;}
.yfc{bottom:925.202841px;}
.y22f{bottom:926.642841px;}
.y104{bottom:927.002841px;}
.y7d{bottom:929.882841px;}
.y5e{bottom:930.962841px;}
.y23{bottom:935.642841px;}
.ye2{bottom:938.162841px;}
.y216{bottom:939.242841px;}
.y122{bottom:942.842841px;}
.y46{bottom:944.282841px;}
.y6{bottom:945.362841px;}
.y182{bottom:945.722841px;}
.y20d{bottom:951.842841px;}
.y103{bottom:952.202841px;}
.y1b0{bottom:954.158700px;}
.y7c{bottom:955.082841px;}
.y5d{bottom:956.162841px;}
.y189{bottom:958.322841px;}
.y188{bottom:958.605003px;}
.y22{bottom:961.202841px;}
.y26f{bottom:962.282841px;}
.ye1{bottom:964.442841px;}
.y99{bottom:965.162841px;}
.y121{bottom:968.042841px;}
.y20c{bottom:977.042841px;}
.y102{bottom:977.402841px;}
.y45{bottom:980.282841px;}
.y5c{bottom:981.002841px;}
.y5{bottom:985.682841px;}
.y155{bottom:986.402841px;}
.y154{bottom:986.685003px;}
.y26e{bottom:987.482841px;}
.y1af{bottom:987.998700px;}
.y181{bottom:989.282841px;}
.y180{bottom:989.565003px;}
.ye0{bottom:989.642841px;}
.y98{bottom:990.362841px;}
.y22e{bottom:992.162841px;}
.y120{bottom:993.242841px;}
.y21{bottom:997.202841px;}
.y101{bottom:1002.602841px;}
.y44{bottom:1005.482841px;}
.y5b{bottom:1006.202841px;}
.y19c{bottom:1008.362841px;}
.y24e{bottom:1011.602841px;}
.ydf{bottom:1014.842841px;}
.y97{bottom:1015.562841px;}
.y20b{bottom:1017.362841px;}
.y20{bottom:1022.402841px;}
.y4{bottom:1025.642841px;}
.y100{bottom:1027.802841px;}
.y43{bottom:1030.682841px;}
.y5a{bottom:1031.402841px;}
.y166{bottom:1033.562841px;}
.y11f{bottom:1036.802841px;}
.y11e{bottom:1037.085003px;}
.yde{bottom:1039.682841px;}
.y96{bottom:1040.762841px;}
.y1f4{bottom:1042.562841px;}
.y1f{bottom:1048.322841px;}
.y7b{bottom:1049.042841px;}
.y7a{bottom:1049.325003px;}
.yff{bottom:1053.002841px;}
.y42{bottom:1055.882841px;}
.y59{bottom:1056.602841px;}
.y165{bottom:1058.762841px;}
.y3{bottom:1065.962841px;}
.y1ea{bottom:1067.762841px;}
.y41{bottom:1081.082841px;}
.y1e{bottom:1096.202841px;}
.y259{bottom:1101.962841px;}
.y164{bottom:1102.322841px;}
.y163{bottom:1102.605003px;}
.y2{bottom:1106.282841px;}
.y1a{bottom:1160.282841px;}
.y19{bottom:1180.442841px;}
.h5{height:20.160000px;}
.h15{height:23.760000px;}
.h14{height:24.119940px;}
.h13{height:24.119985px;}
.h16{height:25.559985px;}
.hd{height:32.759955px;}
.hf{height:32.760000px;}
.h11{height:32.760045px;}
.h12{height:33.119940px;}
.hc{height:33.119985px;}
.he{height:33.120000px;}
.h10{height:33.120030px;}
.hb{height:36.473906px;}
.h3{height:53.441016px;}
.h9{height:55.666406px;}
.ha{height:57.093750px;}
.h7{height:59.378906px;}
.h8{height:67.017919px;}
.h6{height:89.068359px;}
.h4{height:137.759063px;}
.h2{height:1237.322850px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w3{width:8.279984px;}
.w4{width:16.920000px;}
.w18{width:91.439985px;}
.w6{width:95.039985px;}
.w7{width:95.400015px;}
.wc{width:97.199985px;}
.wb{width:97.559970px;}
.w13{width:97.560015px;}
.w1a{width:103.680000px;}
.w8{width:115.920000px;}
.w19{width:117.000000px;}
.w12{width:124.199985px;}
.wf{width:139.680000px;}
.w16{width:181.440000px;}
.w1b{width:197.280000px;}
.wd{width:197.640000px;}
.wa{width:198.000000px;}
.w17{width:215.280000px;}
.w15{width:216.000000px;}
.w10{width:236.520000px;}
.we{width:236.880000px;}
.w14{width:247.320000px;}
.w11{width:247.680000px;}
.w9{width:328.320000px;}
.w5{width:329.040000px;}
.w2{width:867.401700px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:5.400000px;}
.x1{left:12.755851px;}
.x1e{left:15.540450px;}
.x28{left:18.452400px;}
.x1c{left:20.617200px;}
.x1a{left:24.100200px;}
.x46{left:27.311100px;}
.x26{left:30.094350px;}
.x38{left:32.732550px;}
.x37{left:36.789750px;}
.x30{left:40.030050px;}
.x29{left:42.330600px;}
.x34{left:43.594350px;}
.x47{left:47.478300px;}
.x48{left:49.375350px;}
.x2f{left:51.454350px;}
.x2b{left:54.858600px;}
.x3a{left:56.004750px;}
.x20{left:61.406400px;}
.x39{left:63.581400px;}
.x22{left:64.776600px;}
.x3e{left:72.094350px;}
.x1f{left:73.139400px;}
.x21{left:81.502200px;}
.x2a{left:83.677200px;}
.x3b{left:90.221400px;}
.x6{left:115.559999px;}
.x3f{left:126.330600px;}
.x17{left:129.395850px;}
.xb{left:132.059999px;}
.x41{left:138.858600px;}
.x12{left:142.559999px;}
.xc{left:147.121499px;}
.x40{left:155.584200px;}
.x16{left:157.765048px;}
.x32{left:163.595850px;}
.x3{left:164.962649px;}
.xd{left:169.559999px;}
.x42{left:192.035850px;}
.x23{left:243.191398px;}
.x15{left:248.112299px;}
.x24{left:250.715850px;}
.x2d{left:258.995850px;}
.xf{left:260.817899px;}
.x59{left:275.138549px;}
.xe{left:278.378548px;}
.x50{left:280.626299px;}
.x52{left:293.684698px;}
.x14{left:295.342499px;}
.x49{left:297.956098px;}
.x2c{left:305.899199px;}
.x31{left:308.212948px;}
.x5f{left:309.412648px;}
.x4b{left:312.467998px;}
.x3c{left:314.181899px;}
.x4c{left:315.503548px;}
.x4e{left:318.654298px;}
.x5e{left:320.579098px;}
.x58{left:322.269899px;}
.x11{left:323.561998px;}
.x4d{left:324.969298px;}
.x60{left:327.144598px;}
.x55{left:340.347898px;}
.x9{left:380.886448px;}
.x43{left:390.035850px;}
.x33{left:411.275850px;}
.x56{left:432.369749px;}
.x13{left:438.635850px;}
.xa{left:442.955850px;}
.x25{left:448.715850px;}
.x19{left:458.435850px;}
.x3d{left:464.555850px;}
.x44{left:481.475850px;}
.x2e{left:495.875850px;}
.x4{left:521.540699px;}
.x57{left:527.474699px;}
.x35{left:535.475850px;}
.x27{left:546.275850px;}
.x1b{left:553.475850px;}
.x5b{left:555.734848px;}
.x7{left:558.825299px;}
.x5a{left:563.114848px;}
.x4f{left:570.674849px;}
.x51{left:575.174849px;}
.x5c{left:579.674849px;}
.x5{left:581.893798px;}
.x5d{left:594.614848px;}
.x45{left:598.475850px;}
.x8{left:623.987398px;}
.x36{left:633.035850px;}
.x1d{left:648.875850px;}
.x54{left:659.414699px;}
.x53{left:693.974699px;}
.x10{left:715.320149px;}
.x4a{left:751.320149px;}
.x2{left:752.909849px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-5.330432pt;}
.ls1{letter-spacing:-2.108416pt;}
.ls8b{letter-spacing:-0.028800pt;}
.ls25{letter-spacing:-0.025600pt;}
.ls43{letter-spacing:-0.019200pt;}
.ls24{letter-spacing:-0.012800pt;}
.lscc{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009600pt;}
.ls2b{letter-spacing:0.012800pt;}
.ls41{letter-spacing:0.019200pt;}
.lsbe{letter-spacing:0.048000pt;}
.lsc1{letter-spacing:0.103936pt;}
.ls90{letter-spacing:0.108350pt;}
.lsbb{letter-spacing:0.111360pt;}
.lsa1{letter-spacing:0.148373pt;}
.ls6f{letter-spacing:0.151552pt;}
.ls8d{letter-spacing:0.158914pt;}
.ls70{letter-spacing:0.161024pt;}
.ls9b{letter-spacing:0.166137pt;}
.lsb0{letter-spacing:0.170496pt;}
.ls91{letter-spacing:0.173360pt;}
.ls64{letter-spacing:0.178176pt;}
.lsb8{letter-spacing:0.185600pt;}
.ls76{letter-spacing:0.187807pt;}
.ls77{letter-spacing:0.193024pt;}
.ls62{letter-spacing:0.195030pt;}
.lsc3{letter-spacing:0.200448pt;}
.lsb3{letter-spacing:0.208384pt;}
.lsaf{letter-spacing:0.213120pt;}
.lsb1{letter-spacing:0.215296pt;}
.lsa3{letter-spacing:0.216701pt;}
.ls63{letter-spacing:0.231147pt;}
.ls95{letter-spacing:0.236160pt;}
.ls7c{letter-spacing:0.237568pt;}
.ls89{letter-spacing:0.238371pt;}
.lsae{letter-spacing:0.244992pt;}
.ls4f{letter-spacing:0.245333pt;}
.lsad{letter-spacing:0.245440pt;}
.lsab{letter-spacing:0.245594pt;}
.ls93{letter-spacing:0.245867pt;}
.ls6a{letter-spacing:0.252416pt;}
.ls6{letter-spacing:0.259200pt;}
.ls2c{letter-spacing:0.264960pt;}
.lsb2{letter-spacing:0.265216pt;}
.ls69{letter-spacing:0.267264pt;}
.ls5f{letter-spacing:0.270720pt;}
.ls7e{letter-spacing:0.274688pt;}
.ls7b{letter-spacing:0.288896pt;}
.ls96{letter-spacing:0.288934pt;}
.ls88{letter-spacing:0.293760pt;}
.lsa{letter-spacing:0.294933pt;}
.ls82{letter-spacing:0.296157pt;}
.lsc4{letter-spacing:0.296960pt;}
.lsa7{letter-spacing:0.312576pt;}
.ls6d{letter-spacing:0.316480pt;}
.lsac{letter-spacing:0.317013pt;}
.ls6c{letter-spacing:0.317312pt;}
.ls74{letter-spacing:0.326784pt;}
.ls9d{letter-spacing:0.332274pt;}
.ls67{letter-spacing:0.334080pt;}
.ls7a{letter-spacing:0.334933pt;}
.ls6b{letter-spacing:0.335467pt;}
.ls75{letter-spacing:0.336256pt;}
.lsc0{letter-spacing:0.341504pt;}
.ls8c{letter-spacing:0.344533pt;}
.ls83{letter-spacing:0.350464pt;}
.ls68{letter-spacing:0.351360pt;}
.ls61{letter-spacing:0.357120pt;}
.ls9e{letter-spacing:0.402560pt;}
.ls60{letter-spacing:0.426240pt;}
.ls65{letter-spacing:0.443520pt;}
.ls86{letter-spacing:0.460800pt;}
.ls78{letter-spacing:0.466560pt;}
.ls2d{letter-spacing:0.472320pt;}
.ls8e{letter-spacing:0.483840pt;}
.ls80{letter-spacing:0.488533pt;}
.lsbc{letter-spacing:0.489600pt;}
.ls66{letter-spacing:0.506880pt;}
.ls84{letter-spacing:0.510933pt;}
.ls6e{letter-spacing:0.512640pt;}
.ls2a{letter-spacing:0.518400pt;}
.ls7{letter-spacing:0.529920pt;}
.ls27{letter-spacing:0.535680pt;}
.ls97{letter-spacing:0.552960pt;}
.lsbf{letter-spacing:0.558720pt;}
.ls29{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.581760pt;}
.ls4{letter-spacing:0.593280pt;}
.lsa4{letter-spacing:0.599040pt;}
.ls8f{letter-spacing:0.627840pt;}
.ls23{letter-spacing:0.645120pt;}
.lsa6{letter-spacing:0.650880pt;}
.ls2e{letter-spacing:0.662400pt;}
.ls5{letter-spacing:0.668160pt;}
.lsa2{letter-spacing:0.685440pt;}
.ls73{letter-spacing:0.708480pt;}
.ls28{letter-spacing:0.714240pt;}
.ls7d{letter-spacing:0.754560pt;}
.ls71{letter-spacing:0.840960pt;}
.lsa0{letter-spacing:0.844267pt;}
.lsb7{letter-spacing:0.846720pt;}
.ls2f{letter-spacing:0.910080pt;}
.lsba{letter-spacing:0.927360pt;}
.lsc7{letter-spacing:1.075200pt;}
.lsb6{letter-spacing:1.241600pt;}
.lsb5{letter-spacing:1.276800pt;}
.lsaa{letter-spacing:1.377067pt;}
.lsa9{letter-spacing:1.411733pt;}
.ls85{letter-spacing:1.668800pt;}
.ls98{letter-spacing:1.778133pt;}
.ls79{letter-spacing:2.016533pt;}
.lsc2{letter-spacing:2.353067pt;}
.ls99{letter-spacing:2.452267pt;}
.ls87{letter-spacing:2.830933pt;}
.ls7f{letter-spacing:2.974933pt;}
.lsc6{letter-spacing:3.684267pt;}
.lsbd{letter-spacing:3.978133pt;}
.ls3{letter-spacing:4.268160pt;}
.ls9a{letter-spacing:5.748267pt;}
.ls9c{letter-spacing:8.490133pt;}
.ls9f{letter-spacing:8.614400pt;}
.lsc9{letter-spacing:8.805333pt;}
.ls8a{letter-spacing:9.420267pt;}
.ls94{letter-spacing:9.636267pt;}
.ls72{letter-spacing:9.840533pt;}
.ls92{letter-spacing:11.316267pt;}
.lsb9{letter-spacing:12.147733pt;}
.lsb4{letter-spacing:13.528000pt;}
.lsc5{letter-spacing:13.744533pt;}
.lsa5{letter-spacing:17.792000pt;}
.lsca{letter-spacing:24.294933pt;}
.lscb{letter-spacing:35.438400pt;}
.lsc8{letter-spacing:35.442667pt;}
.lsa8{letter-spacing:41.314667pt;}
.ls81{letter-spacing:53.002667pt;}
.ls9{letter-spacing:53.338080pt;}
.lsb{letter-spacing:72.447467pt;}
.ls3b{letter-spacing:79.567467pt;}
.ls1a{letter-spacing:101.379733pt;}
.ls58{letter-spacing:516.716800pt;}
.ls45{letter-spacing:568.307733pt;}
.ls4e{letter-spacing:681.000533pt;}
.ls5e{letter-spacing:754.982400pt;}
.ls51{letter-spacing:810.680533pt;}
.ls4a{letter-spacing:850.928000pt;}
.ls21{letter-spacing:959.638933pt;}
.ls4b{letter-spacing:960.326400pt;}
.ls44{letter-spacing:975.852267pt;}
.ls5d{letter-spacing:1001.174933pt;}
.ls15{letter-spacing:1015.612800pt;}
.ls20{letter-spacing:1049.328533pt;}
.ls59{letter-spacing:1073.993067pt;}
.ls5c{letter-spacing:1079.206400pt;}
.ls4c{letter-spacing:1088.688000pt;}
.ls5a{letter-spacing:1092.755733pt;}
.ls56{letter-spacing:1111.289600pt;}
.ls46{letter-spacing:1128.248000pt;}
.ls52{letter-spacing:1130.024000pt;}
.ls5b{letter-spacing:1142.341867pt;}
.ls47{letter-spacing:1151.966400pt;}
.ls49{letter-spacing:1183.820800pt;}
.ls53{letter-spacing:1196.052800pt;}
.ls31{letter-spacing:1202.555200pt;}
.ls36{letter-spacing:1207.731200pt;}
.ls55{letter-spacing:1209.115200pt;}
.ls12{letter-spacing:1223.065600pt;}
.ls50{letter-spacing:1228.651733pt;}
.ls48{letter-spacing:1236.070933pt;}
.ls54{letter-spacing:1251.596800pt;}
.ls57{letter-spacing:1262.482667pt;}
.ls1b{letter-spacing:1315.964267pt;}
.lsf{letter-spacing:1339.568533pt;}
.ls4d{letter-spacing:1374.286933pt;}
.ls32{letter-spacing:1378.870400pt;}
.ls19{letter-spacing:1382.766400pt;}
.ls3a{letter-spacing:1394.740267pt;}
.ls33{letter-spacing:1397.633600pt;}
.ls30{letter-spacing:1421.524267pt;}
.ls40{letter-spacing:1447.076267pt;}
.ls18{letter-spacing:1511.128000pt;}
.ls1f{letter-spacing:1537.969067pt;}
.ls3e{letter-spacing:1538.685333pt;}
.ls1c{letter-spacing:1538.714133pt;}
.ls34{letter-spacing:1549.542400pt;}
.ls35{letter-spacing:1570.224533pt;}
.ls37{letter-spacing:1571.427733pt;}
.ls39{letter-spacing:1590.878400pt;}
.ls22{letter-spacing:1593.168533pt;}
.ls16{letter-spacing:1594.802667pt;}
.ls13{letter-spacing:1595.661867pt;}
.ls14{letter-spacing:1595.862400pt;}
.ls17{letter-spacing:1597.781867pt;}
.ls1e{letter-spacing:1649.974400pt;}
.ls1d{letter-spacing:1651.808000pt;}
.ls11{letter-spacing:1656.649067pt;}
.ls3c{letter-spacing:1682.487467pt;}
.ls3f{letter-spacing:1693.126933pt;}
.ls38{letter-spacing:1697.641067pt;}
.ls3d{letter-spacing:1715.630933pt;}
.ls42{letter-spacing:1731.314667pt;}
.ls10{letter-spacing:1764.106133pt;}
.lse{letter-spacing:1778.422400pt;}
.lsd{letter-spacing:1792.659200pt;}
.lsc{letter-spacing:1820.846933pt;}
.ws2{word-spacing:-4.325760pt;}
.wsce{word-spacing:-0.984960pt;}
.ws24{word-spacing:-0.967680pt;}
.wsc5{word-spacing:-0.904320pt;}
.ws3f{word-spacing:-0.898560pt;}
.ws4d{word-spacing:-0.812160pt;}
.ws19{word-spacing:-0.771840pt;}
.ws40{word-spacing:-0.766080pt;}
.wsab{word-spacing:-0.743040pt;}
.ws4{word-spacing:-0.725760pt;}
.ws22{word-spacing:-0.720000pt;}
.wsb1{word-spacing:-0.708480pt;}
.ws9{word-spacing:-0.702720pt;}
.ws86{word-spacing:-0.685440pt;}
.wsae{word-spacing:-0.656640pt;}
.ws3{word-spacing:-0.650880pt;}
.wsf{word-spacing:-0.639360pt;}
.ws1c{word-spacing:-0.633600pt;}
.wsd5{word-spacing:-0.616320pt;}
.ws9d{word-spacing:-0.610560pt;}
.ws14{word-spacing:-0.593280pt;}
.ws6{word-spacing:-0.587520pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws3b{word-spacing:-0.570240pt;}
.ws35{word-spacing:-0.564480pt;}
.ws85{word-spacing:-0.541440pt;}
.ws21{word-spacing:-0.529920pt;}
.ws49{word-spacing:-0.524160pt;}
.ws63{word-spacing:-0.518400pt;}
.ws34{word-spacing:-0.501120pt;}
.ws30{word-spacing:-0.483840pt;}
.wsaa{word-spacing:-0.449920pt;}
.wsd9{word-spacing:-0.415744pt;}
.ws31{word-spacing:-0.414720pt;}
.ws37{word-spacing:-0.408960pt;}
.wsa2{word-spacing:-0.404508pt;}
.ws61{word-spacing:-0.397824pt;}
.ws36{word-spacing:-0.391680pt;}
.ws42{word-spacing:-0.383616pt;}
.ws41{word-spacing:-0.374144pt;}
.wsde{word-spacing:-0.371200pt;}
.ws55{word-spacing:-0.368391pt;}
.ws3c{word-spacing:-0.364672pt;}
.ws93{word-spacing:-0.361168pt;}
.wsb2{word-spacing:-0.359936pt;}
.ws65{word-spacing:-0.351360pt;}
.ws50{word-spacing:-0.348928pt;}
.ws38{word-spacing:-0.339497pt;}
.ws4a{word-spacing:-0.336256pt;}
.ws2f{word-spacing:-0.328320pt;}
.ws39{word-spacing:-0.326656pt;}
.ws20{word-spacing:-0.322560pt;}
.wsb9{word-spacing:-0.319232pt;}
.wsb7{word-spacing:-0.317827pt;}
.ws5{word-spacing:-0.316800pt;}
.wsbd{word-spacing:-0.312576pt;}
.ws4b{word-spacing:-0.311808pt;}
.ws67{word-spacing:-0.310604pt;}
.ws33{word-spacing:-0.303381pt;}
.ws90{word-spacing:-0.293760pt;}
.wsbc{word-spacing:-0.289536pt;}
.wsac{word-spacing:-0.288934pt;}
.wsdc{word-spacing:-0.274688pt;}
.ws32{word-spacing:-0.267264pt;}
.wsba{word-spacing:-0.260480pt;}
.ws47{word-spacing:-0.260041pt;}
.wscd{word-spacing:-0.259840pt;}
.wsbe{word-spacing:-0.255744pt;}
.ws3a{word-spacing:-0.252416pt;}
.ws8c{word-spacing:-0.245594pt;}
.wsa1{word-spacing:-0.238371pt;}
.ws7f{word-spacing:-0.231147pt;}
.wsbb{word-spacing:-0.217856pt;}
.ws3e{word-spacing:-0.208384pt;}
.ws3d{word-spacing:-0.198912pt;}
.wscf{word-spacing:-0.185600pt;}
.ws8b{word-spacing:-0.180584pt;}
.wsda{word-spacing:-0.178176pt;}
.wsd3{word-spacing:-0.144000pt;}
.wsa0{word-spacing:-0.115200pt;}
.wsb{word-spacing:-0.105600pt;}
.ws51{word-spacing:-0.096000pt;}
.wse6{word-spacing:-0.086400pt;}
.ws28{word-spacing:-0.083200pt;}
.ws1f{word-spacing:-0.076800pt;}
.wsdb{word-spacing:-0.074240pt;}
.ws6b{word-spacing:-0.067200pt;}
.ws16{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.057600pt;}
.wsc{word-spacing:-0.051200pt;}
.ws25{word-spacing:-0.044800pt;}
.wsd{word-spacing:-0.038400pt;}
.ws7{word-spacing:0.000000pt;}
.ws0{word-spacing:1.959936pt;}
.ws1{word-spacing:5.181952pt;}
.ws5e{word-spacing:8.058240pt;}
.ws69{word-spacing:8.173440pt;}
.ws64{word-spacing:8.196480pt;}
.ws8d{word-spacing:8.282880pt;}
.ws60{word-spacing:8.352000pt;}
.ws6a{word-spacing:8.363520pt;}
.wsd0{word-spacing:8.380800pt;}
.ws96{word-spacing:8.403840pt;}
.wsd4{word-spacing:8.490240pt;}
.wsa6{word-spacing:8.519040pt;}
.ws8e{word-spacing:8.628480pt;}
.ws6c{word-spacing:8.640000pt;}
.wsd1{word-spacing:8.709120pt;}
.ws43{word-spacing:8.743680pt;}
.ws44{word-spacing:8.760960pt;}
.wsc9{word-spacing:8.974080pt;}
.ws66{word-spacing:9.048960pt;}
.ws97{word-spacing:9.060480pt;}
.wsa7{word-spacing:9.118080pt;}
.wsb8{word-spacing:9.244800pt;}
.wsca{word-spacing:9.342720pt;}
.ws80{word-spacing:9.440640pt;}
.ws6e{word-spacing:9.452160pt;}
.ws5c{word-spacing:9.486720pt;}
.wsa4{word-spacing:9.550080pt;}
.ws6d{word-spacing:9.653760pt;}
.ws75{word-spacing:9.734400pt;}
.wsb4{word-spacing:9.843840pt;}
.ws76{word-spacing:9.849600pt;}
.ws70{word-spacing:9.855360pt;}
.wsc8{word-spacing:9.884160pt;}
.wsa5{word-spacing:9.901440pt;}
.ws91{word-spacing:10.074240pt;}
.ws57{word-spacing:10.108800pt;}
.ws5d{word-spacing:10.114560pt;}
.ws73{word-spacing:10.154880pt;}
.ws89{word-spacing:10.177920pt;}
.ws71{word-spacing:10.327680pt;}
.ws92{word-spacing:10.402560pt;}
.ws95{word-spacing:10.471680pt;}
.ws88{word-spacing:10.673280pt;}
.ws74{word-spacing:10.765440pt;}
.ws7e{word-spacing:10.880640pt;}
.ws4f{word-spacing:10.903680pt;}
.ws54{word-spacing:10.938240pt;}
.ws6f{word-spacing:10.990080pt;}
.ws52{word-spacing:10.995840pt;}
.ws8f{word-spacing:11.013120pt;}
.ws53{word-spacing:11.047680pt;}
.wsd2{word-spacing:11.266560pt;}
.ws98{word-spacing:11.341440pt;}
.ws72{word-spacing:11.399040pt;}
.ws99{word-spacing:11.468160pt;}
.wsad{word-spacing:11.508480pt;}
.ws82{word-spacing:11.531520pt;}
.wsdd{word-spacing:11.566080pt;}
.wscc{word-spacing:11.652480pt;}
.wsd8{word-spacing:11.773440pt;}
.ws5a{word-spacing:11.969280pt;}
.ws7a{word-spacing:11.986560pt;}
.ws9e{word-spacing:12.136320pt;}
.wsd7{word-spacing:12.320640pt;}
.ws79{word-spacing:12.395520pt;}
.wse1{word-spacing:12.426773pt;}
.wsc2{word-spacing:12.453120pt;}
.wsc3{word-spacing:12.481920pt;}
.ws9f{word-spacing:12.493440pt;}
.ws45{word-spacing:12.551040pt;}
.ws46{word-spacing:12.677760pt;}
.wse2{word-spacing:12.683520pt;}
.wse3{word-spacing:12.706560pt;}
.ws84{word-spacing:12.781440pt;}
.wse0{word-spacing:12.783893pt;}
.wsc4{word-spacing:12.804480pt;}
.wsc1{word-spacing:12.919680pt;}
.ws81{word-spacing:13.057920pt;}
.ws62{word-spacing:13.299840pt;}
.ws8a{word-spacing:13.645440pt;}
.ws94{word-spacing:14.048640pt;}
.ws58{word-spacing:14.163840pt;}
.ws56{word-spacing:14.780160pt;}
.wsbf{word-spacing:14.912640pt;}
.ws68{word-spacing:15.304320pt;}
.wsdf{word-spacing:15.840000pt;}
.ws48{word-spacing:15.851520pt;}
.wse4{word-spacing:16.110720pt;}
.wse5{word-spacing:16.122240pt;}
.wsa3{word-spacing:16.439040pt;}
.wsb0{word-spacing:16.548480pt;}
.wsaf{word-spacing:16.709760pt;}
.wsc6{word-spacing:16.871040pt;}
.ws83{word-spacing:17.723520pt;}
.ws78{word-spacing:17.982720pt;}
.ws5b{word-spacing:18.138240pt;}
.wsb5{word-spacing:18.656640pt;}
.wsb3{word-spacing:19.232640pt;}
.wsb6{word-spacing:19.347840pt;}
.ws9b{word-spacing:20.257920pt;}
.ws9c{word-spacing:20.338560pt;}
.ws9a{word-spacing:20.810880pt;}
.ws77{word-spacing:21.594240pt;}
.wsa9{word-spacing:21.934080pt;}
.wsc0{word-spacing:22.573440pt;}
.wse7{word-spacing:22.890240pt;}
.wse8{word-spacing:23.091840pt;}
.ws5f{word-spacing:23.207040pt;}
.ws59{word-spacing:23.287680pt;}
.wsc7{word-spacing:23.402880pt;}
.ws87{word-spacing:25.038720pt;}
.ws7b{word-spacing:26.835840pt;}
.wsa8{word-spacing:30.003840pt;}
.wseb{word-spacing:33.517440pt;}
.wsec{word-spacing:34.208640pt;}
.wsed{word-spacing:34.318080pt;}
.wscb{word-spacing:34.657920pt;}
.ws7d{word-spacing:36.840960pt;}
.ws7c{word-spacing:37.048320pt;}
.ws4e{word-spacing:39.467520pt;}
.wse9{word-spacing:93.548160pt;}
.wsea{word-spacing:93.651840pt;}
.ws4c{word-spacing:132.883200pt;}
.ws8{word-spacing:594.684267pt;}
.ws2d{word-spacing:701.138133pt;}
.ws2b{word-spacing:754.924800pt;}
.wsd6{word-spacing:874.427733pt;}
.ws2c{word-spacing:877.052267pt;}
.ws2e{word-spacing:1262.625600pt;}
.ws17{word-spacing:1433.355200pt;}
.ws13{word-spacing:1573.060267pt;}
.ws1b{word-spacing:1581.823467pt;}
.ws15{word-spacing:1584.031467pt;}
.ws26{word-spacing:1668.219200pt;}
.ws29{word-spacing:1684.875200pt;}
.ws27{word-spacing:1708.344000pt;}
.ws1d{word-spacing:1725.448533pt;}
.ws18{word-spacing:1755.849067pt;}
.ws1a{word-spacing:1761.406400pt;}
.ws12{word-spacing:1762.198933pt;}
.wse{word-spacing:1796.042667pt;}
.ws10{word-spacing:1799.046933pt;}
.ws23{word-spacing:1829.136000pt;}
.ws11{word-spacing:1833.250133pt;}
.ws2a{word-spacing:1838.969067pt;}
._1{margin-left:-3.712000pt;}
._7{margin-left:-2.707200pt;}
._0{margin-left:-1.039360pt;}
._3{width:0.890880pt;}
._5{width:1.992960pt;}
._2{width:3.118080pt;}
._6{width:4.089600pt;}
._9{width:5.126400pt;}
._a{width:6.105600pt;}
._8{width:7.142400pt;}
._b{width:8.812800pt;}
._c{width:12.445440pt;}
._4{width:1120.048533pt;}
.fs6{font-size:47.360000pt;}
.fs0{font-size:57.600000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:72.233510pt;}
.fs5{font-size:74.240000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:148.480000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:4.160000pt;}
.y1ca{bottom:5.760000pt;}
.y1cc{bottom:6.080000pt;}
.y1cf{bottom:6.400000pt;}
.y192{bottom:9.600000pt;}
.y18e{bottom:9.920000pt;}
.y1{bottom:11.338541pt;}
.y1b{bottom:39.042552pt;}
.y1c{bottom:46.221093pt;}
.y23c{bottom:101.762552pt;}
.y1e9{bottom:108.802552pt;}
.y11d{bottom:111.042552pt;}
.y22d{bottom:116.802552pt;}
.y1f3{bottom:120.962552pt;}
.y40{bottom:122.882525pt;}
.yab{bottom:124.802525pt;}
.y1fd{bottom:128.642525pt;}
.y1e8{bottom:131.202525pt;}
.ydd{bottom:131.522525pt;}
.y11c{bottom:133.442525pt;}
.y18{bottom:133.762525pt;}
.y22c{bottom:139.202525pt;}
.y95{bottom:140.162525pt;}
.y1f2{bottom:143.362525pt;}
.y24d{bottom:144.002525pt;}
.yaa{bottom:147.202525pt;}
.y215{bottom:148.482525pt;}
.y1fc{bottom:150.722525pt;}
.y141{bottom:152.322525pt;}
.ydc{bottom:153.922525pt;}
.y3f{bottom:154.882525pt;}
.y11b{bottom:155.842525pt;}
.y1e7{bottom:161.602525pt;}
.y94{bottom:162.562525pt;}
.yfb{bottom:163.202525pt;}
.y20a{bottom:167.042525pt;}
.y17{bottom:169.282525pt;}
.ya9{bottom:169.602525pt;}
.y1fb{bottom:173.122525pt;}
.y24c{bottom:173.442525pt;}
.y1f1{bottom:174.082525pt;}
.y3e{bottom:177.282525pt;}
.y214{bottom:178.882525pt;}
.ydb{bottom:184.322525pt;}
.y93{bottom:184.962525pt;}
.yfa{bottom:185.602525pt;}
.y17f{bottom:185.922525pt;}
.y19b{bottom:186.242525pt;}
.y209{bottom:189.442525pt;}
.y140{bottom:191.042525pt;}
.y13f{bottom:191.293336pt;}
.y11a{bottom:191.362525pt;}
.ya8{bottom:192.002525pt;}
.y79{bottom:194.562525pt;}
.ycc{bottom:195.522525pt;}
.y22b{bottom:197.122525pt;}
.y3d{bottom:199.682525pt;}
.y1f0{bottom:203.202525pt;}
.y1fa{bottom:203.842525pt;}
.y16{bottom:205.122525pt;}
.y17e{bottom:208.322525pt;}
.y208{bottom:211.522525pt;}
.yda{bottom:213.762525pt;}
.y22a{bottom:219.522525pt;}
.y92{bottom:220.482525pt;}
.y78{bottom:221.442525pt;}
.y3c{bottom:222.082525pt;}
.ya7{bottom:222.722525pt;}
.y19a{bottom:223.181067pt;}
.yf9{bottom:224.322525pt;}
.yf8{bottom:224.573336pt;}
.y13e{bottom:230.082525pt;}
.y17d{bottom:230.722525pt;}
.ycb{bottom:231.362525pt;}
.y119{bottom:236.162525pt;}
.y1d2{bottom:239.362525pt;}
.y15{bottom:240.642525pt;}
.y91{bottom:242.882525pt;}
.y1f9{bottom:243.202525pt;}
.y77{bottom:243.842525pt;}
.y3b{bottom:244.482525pt;}
.y262{bottom:249.602525pt;}
.y207{bottom:250.242525pt;}
.y206{bottom:250.493336pt;}
.y199{bottom:252.301067pt;}
.y13d{bottom:252.482525pt;}
.yca{bottom:253.762525pt;}
.y1de{bottom:256.962525pt;}
.y1ae{bottom:257.922525pt;}
.y118{bottom:258.562525pt;}
.ya6{bottom:262.082525pt;}
.yf7{bottom:263.682525pt;}
.y229{bottom:264.962525pt;}
.y90{bottom:265.282525pt;}
.y76{bottom:266.242525pt;}
.y3a{bottom:266.882525pt;}
.y17c{bottom:269.122525pt;}
.y17b{bottom:269.373336pt;}
.y1d1{bottom:269.762525pt;}
.y26d{bottom:270.722525pt;}
.y261{bottom:272.002525pt;}
.y1f8{bottom:273.602525pt;}
.y14{bottom:276.482525pt;}
.y239{bottom:277.122525pt;}
.y1dd{bottom:279.362525pt;}
.y153{bottom:280.002525pt;}
.y117{bottom:280.962525pt;}
.y198{bottom:281.741067pt;}
.ya5{bottom:284.482525pt;}
.yf6{bottom:286.082525pt;}
.y13c{bottom:288.322525pt;}
.y75{bottom:288.642525pt;}
.y39{bottom:289.602525pt;}
.y1ad{bottom:293.442525pt;}
.y8f{bottom:296.002525pt;}
.y152{bottom:302.402525pt;}
.y1d0{bottom:303.042525pt;}
.ya4{bottom:306.562525pt;}
.y260{bottom:307.522525pt;}
.y17a{bottom:308.482525pt;}
.y228{bottom:310.402525pt;}
.y13b{bottom:310.722525pt;}
.y74{bottom:311.042525pt;}
.y197{bottom:311.181067pt;}
.yc9{bottom:311.682525pt;}
.y13{bottom:312.322525pt;}
.y251{bottom:314.562525pt;}
.y1dc{bottom:314.882525pt;}
.y116{bottom:316.802525pt;}
.y244{bottom:318.402525pt;}
.y25c{bottom:318.722525pt;}
.y38{bottom:321.602525pt;}
.yb9{bottom:322.882525pt;}
.y1ac{bottom:323.842525pt;}
.y162{bottom:324.802525pt;}
.y8e{bottom:325.122525pt;}
.y26c{bottom:328.962525pt;}
.y1ce{bottom:329.421067pt;}
.y25f{bottom:329.922525pt;}
.y179{bottom:330.882525pt;}
.y73{bottom:333.442525pt;}
.yc8{bottom:334.082525pt;}
.y250{bottom:336.962525pt;}
.y1db{bottom:337.282525pt;}
.y115{bottom:338.882525pt;}
.y196{bottom:340.621067pt;}
.y151{bottom:341.122525pt;}
.y150{bottom:341.373336pt;}
.y37{bottom:344.002525pt;}
.ya3{bottom:345.282525pt;}
.ya2{bottom:345.533336pt;}
.y13a{bottom:346.242525pt;}
.y161{bottom:347.202525pt;}
.y205{bottom:347.522525pt;}
.y12{bottom:347.842525pt;}
.y243{bottom:349.122525pt;}
.y26b{bottom:351.362525pt;}
.y1cd{bottom:352.141067pt;}
.y25e{bottom:352.322525pt;}
.y178{bottom:353.282525pt;}
.y72{bottom:355.842525pt;}
.yc7{bottom:357.442525pt;}
.y1da{bottom:359.682525pt;}
.y1ab{bottom:360.461067pt;}
.y114{bottom:361.282525pt;}
.y36{bottom:366.402525pt;}
.yb8{bottom:367.682525pt;}
.y139{bottom:368.642525pt;}
.y227{bottom:369.602525pt;}
.y204{bottom:369.922525pt;}
.y195{bottom:370.061067pt;}
.y25b{bottom:371.842525pt;}
.y1cb{bottom:373.261067pt;}
.y177{bottom:375.682525pt;}
.y58{bottom:376.002525pt;}
.y256{bottom:376.962525pt;}
.yc6{bottom:379.522525pt;}
.y14f{bottom:380.482525pt;}
.y1d9{bottom:382.082525pt;}
.y160{bottom:383.042525pt;}
.y11{bottom:383.682525pt;}
.ya1{bottom:384.642525pt;}
.y26a{bottom:386.882525pt;}
.y242{bottom:388.482525pt;}
.y35{bottom:388.802525pt;}
.y1aa{bottom:389.901067pt;}
.yb7{bottom:390.082525pt;}
.y71{bottom:390.722525pt;}
.y8b{bottom:394.242525pt;}
.y1c9{bottom:394.701067pt;}
.y24f{bottom:396.802525pt;}
.y176{bottom:398.082525pt;}
.y57{bottom:398.722525pt;}
.y255{bottom:399.362525pt;}
.y194{bottom:399.501067pt;}
.y203{bottom:400.642525pt;}
.y25a{bottom:400.962525pt;}
.y14e{bottom:402.562525pt;}
.yc5{bottom:402.882525pt;}
.y1d8{bottom:404.482525pt;}
.y15f{bottom:405.442525pt;}
.y113{bottom:406.082525pt;}
.ya0{bottom:407.042525pt;}
.y138{bottom:407.362525pt;}
.y137{bottom:407.613336pt;}
.y269{bottom:409.282525pt;}
.y34{bottom:411.202525pt;}
.yb6{bottom:412.482525pt;}
.y25d{bottom:416.962525pt;}
.y1c8{bottom:417.421067pt;}
.y10{bottom:419.202525pt;}
.y1a9{bottom:419.341067pt;}
.y70{bottom:420.162525pt;}
.y254{bottom:421.762525pt;}
.y241{bottom:424.002525pt;}
.y14d{bottom:424.962525pt;}
.yc4{bottom:425.922525pt;}
.y226{bottom:427.842525pt;}
.y193{bottom:428.941067pt;}
.y9f{bottom:429.442525pt;}
.y56{bottom:430.722525pt;}
.y1e6{bottom:431.362525pt;}
.y268{bottom:431.682525pt;}
.y33{bottom:433.602525pt;}
.yb5{bottom:434.882525pt;}
.y175{bottom:436.802525pt;}
.y174{bottom:437.053336pt;}
.yd9{bottom:438.082525pt;}
.y8a{bottom:439.042525pt;}
.y202{bottom:440.002525pt;}
.y112{bottom:441.922525pt;}
.y1d7{bottom:443.202525pt;}
.y1d6{bottom:443.453336pt;}
.y15e{bottom:443.842525pt;}
.y15d{bottom:444.093336pt;}
.y253{bottom:444.162525pt;}
.y240{bottom:446.402525pt;}
.y136{bottom:446.722525pt;}
.y6f{bottom:447.042525pt;}
.yc3{bottom:448.322525pt;}
.y1a8{bottom:449.101067pt;}
.y225{bottom:450.242525pt;}
.y9e{bottom:451.842525pt;}
.y55{bottom:453.442525pt;}
.y1e5{bottom:453.762525pt;}
.y267{bottom:454.082525pt;}
.yf{bottom:455.042525pt;}
.y1bc{bottom:455.682525pt;}
.y32{bottom:456.002525pt;}
.y191{bottom:458.381067pt;}
.yd8{bottom:460.162525pt;}
.y14c{bottom:460.802525pt;}
.y89{bottom:461.442525pt;}
.y1c7{bottom:461.762525pt;}
.y1c6{bottom:462.013336pt;}
.y201{bottom:462.402525pt;}
.y111{bottom:464.322525pt;}
.yb4{bottom:465.282525pt;}
.y23f{bottom:468.802525pt;}
.yf5{bottom:469.122525pt;}
.y6e{bottom:469.442525pt;}
.yc2{bottom:470.722525pt;}
.y224{bottom:472.322525pt;}
.y9d{bottom:474.242525pt;}
.y252{bottom:474.882525pt;}
.y173{bottom:475.842525pt;}
.y258{bottom:477.762525pt;}
.y31{bottom:478.402525pt;}
.y238{bottom:480.962525pt;}
.y1d5{bottom:482.242525pt;}
.y14b{bottom:483.202525pt;}
.yd7{bottom:483.522525pt;}
.y1e4{bottom:484.482525pt;}
.y200{bottom:484.802525pt;}
.y54{bottom:485.762525pt;}
.y110{bottom:486.722525pt;}
.y190{bottom:487.501067pt;}
.y1a7{bottom:489.922525pt;}
.ye{bottom:490.882525pt;}
.y23e{bottom:491.202525pt;}
.yf4{bottom:491.522525pt;}
.y6d{bottom:491.842525pt;}
.y1bb{bottom:492.301067pt;}
.y266{bottom:492.802525pt;}
.y265{bottom:493.053336pt;}
.y9c{bottom:496.642525pt;}
.yf1{bottom:496.962525pt;}
.y172{bottom:498.242525pt;}
.y30{bottom:500.482525pt;}
.y1c5{bottom:500.802525pt;}
.y223{bottom:503.042525pt;}
.y237{bottom:503.362525pt;}
.yb3{bottom:504.642525pt;}
.yd6{bottom:505.602525pt;}
.yc1{bottom:507.202525pt;}
.y12d{bottom:507.522525pt;}
.y10f{bottom:509.122525pt;}
.y257{bottom:512.002525pt;}
.y1a6{bottom:512.322525pt;}
.yf3{bottom:513.922525pt;}
.y6c{bottom:514.242525pt;}
.y1ff{bottom:515.202525pt;}
.y18f{bottom:516.941067pt;}
.y24b{bottom:517.762525pt;}
.y53{bottom:518.402525pt;}
.yf0{bottom:519.042525pt;}
.y171{bottom:520.642525pt;}
.y1ba{bottom:521.421067pt;}
.y23d{bottom:521.602525pt;}
.y2f{bottom:522.882525pt;}
.y1c4{bottom:523.202525pt;}
.y1e3{bottom:523.522525pt;}
.y236{bottom:525.762525pt;}
.yd{bottom:526.402525pt;}
.y264{bottom:526.722525pt;}
.y9b{bottom:527.042525pt;}
.y15c{bottom:528.002525pt;}
.yd5{bottom:528.962525pt;}
.y23b{bottom:529.602525pt;}
.y88{bottom:531.202525pt;}
.y10e{bottom:531.522525pt;}
.y6b{bottom:536.322525pt;}
.y24a{bottom:540.162525pt;}
.y14a{bottom:541.122525pt;}
.yef{bottom:541.442525pt;}
.y222{bottom:542.402525pt;}
.yc0{bottom:543.042525pt;}
.y1fe{bottom:544.642525pt;}
.y2e{bottom:545.922525pt;}
.y18d{bottom:547.021067pt;}
.yb2{bottom:549.442525pt;}
.y52{bottom:550.402525pt;}
.y1b9{bottom:550.861067pt;}
.y1a5{bottom:551.042525pt;}
.y1a4{bottom:551.293336pt;}
.yd4{bottom:551.362525pt;}
.y12c{bottom:552.002525pt;}
.y87{bottom:553.602525pt;}
.y10d{bottom:553.922525pt;}
.y263{bottom:556.162525pt;}
.y9a{bottom:556.482525pt;}
.y6a{bottom:558.722525pt;}
.y1c3{bottom:559.042525pt;}
.y235{bottom:561.602525pt;}
.yc{bottom:562.242525pt;}
.y249{bottom:562.562525pt;}
.y149{bottom:563.522525pt;}
.yee{bottom:563.842525pt;}
.y221{bottom:564.802525pt;}
.ybf{bottom:565.442525pt;}
.y1e2{bottom:568.322525pt;}
.y23a{bottom:568.573336pt;}
.yb1{bottom:571.842525pt;}
.y51{bottom:572.802525pt;}
.y12b{bottom:574.402525pt;}
.yd3{bottom:574.722525pt;}
.y86{bottom:576.002525pt;}
.y2d{bottom:577.922525pt;}
.y170{bottom:578.882525pt;}
.y1b8{bottom:580.301067pt;}
.y69{bottom:581.122525pt;}
.y1c2{bottom:581.442525pt;}
.y234{bottom:584.002525pt;}
.y248{bottom:584.962525pt;}
.y1d4{bottom:585.282525pt;}
.y15b{bottom:585.922525pt;}
.yed{bottom:586.242525pt;}
.y220{bottom:587.202525pt;}
.ybe{bottom:587.842525pt;}
.yf2{bottom:589.442525pt;}
.y1a3{bottom:590.082525pt;}
.y1e1{bottom:590.722525pt;}
.y1f7{bottom:593.922525pt;}
.yb0{bottom:594.242525pt;}
.yb{bottom:594.882525pt;}
.y50{bottom:595.202525pt;}
.y1ef{bottom:596.482525pt;}
.yd2{bottom:597.122525pt;}
.y2c{bottom:600.322525pt;}
.y16f{bottom:601.282525pt;}
.y148{bottom:602.242525pt;}
.y147{bottom:602.493336pt;}
.y68{bottom:603.522525pt;}
.y1c1{bottom:603.842525pt;}
.y233{bottom:606.402525pt;}
.y85{bottom:606.722525pt;}
.y247{bottom:607.362525pt;}
.y1d3{bottom:607.682525pt;}
.yec{bottom:608.642525pt;}
.y21f{bottom:609.602525pt;}
.y1b7{bottom:610.061067pt;}
.y12a{bottom:610.242525pt;}
.y10c{bottom:611.842525pt;}
.yaf{bottom:616.642525pt;}
.y4f{bottom:617.922525pt;}
.y27e{bottom:618.242525pt;}
.ya{bottom:618.882525pt;}
.yd1{bottom:619.522525pt;}
.y1a2{bottom:620.482525pt;}
.y1e0{bottom:621.442525pt;}
.y15a{bottom:621.762525pt;}
.y2b{bottom:623.042525pt;}
.y16e{bottom:623.362525pt;}
.y1f6{bottom:624.642525pt;}
.y67{bottom:625.922525pt;}
.ybd{bottom:626.562525pt;}
.ybc{bottom:626.813336pt;}
.y135{bottom:630.082525pt;}
.yeb{bottom:631.042525pt;}
.y21e{bottom:632.002525pt;}
.y1ee{bottom:632.322525pt;}
.y129{bottom:632.642525pt;}
.y10b{bottom:634.242525pt;}
.y276{bottom:636.482525pt;}
.y232{bottom:637.122525pt;}
.y246{bottom:638.082525pt;}
.yd0{bottom:641.602525pt;}
.y1c0{bottom:642.242525pt;}
.y1bf{bottom:642.493336pt;}
.y279{bottom:643.522525pt;}
.y84{bottom:645.762525pt;}
.yae{bottom:647.042525pt;}
.y66{bottom:648.322525pt;}
.y4e{bottom:649.922525pt;}
.y1df{bottom:650.882525pt;}
.y134{bottom:652.482525pt;}
.yea{bottom:653.442525pt;}
.y1b6{bottom:653.762525pt;}
.y1b5{bottom:654.013336pt;}
.y27d{bottom:654.082525pt;}
.y21d{bottom:654.402525pt;}
.y1ed{bottom:654.722525pt;}
.y2a{bottom:655.042525pt;}
.y10a{bottom:656.642525pt;}
.y1a1{bottom:657.101067pt;}
.y1f5{bottom:658.882525pt;}
.y159{bottom:660.482525pt;}
.y158{bottom:660.733336pt;}
.y278{bottom:663.042525pt;}
.y146{bottom:664.002525pt;}
.y9{bottom:664.642525pt;}
.ycf{bottom:664.962525pt;}
.ybb{bottom:665.602525pt;}
.y83{bottom:668.162525pt;}
.y65{bottom:670.722525pt;}
.y18c{bottom:671.362525pt;}
.y18b{bottom:671.613336pt;}
.y245{bottom:672.002525pt;}
.y4d{bottom:672.322525pt;}
.ye9{bottom:675.522525pt;}
.y213{bottom:676.162525pt;}
.y21c{bottom:676.482525pt;}
.y29{bottom:677.442525pt;}
.y109{bottom:679.042525pt;}
.yad{bottom:681.282525pt;}
.y16d{bottom:681.602525pt;}
.y1ec{bottom:685.442525pt;}
.y1a0{bottom:686.541067pt;}
.yce{bottom:687.362525pt;}
.yba{bottom:688.002525pt;}
.y27c{bottom:689.922525pt;}
.y128{bottom:690.562525pt;}
.y133{bottom:690.882525pt;}
.y132{bottom:691.133336pt;}
.y64{bottom:693.122525pt;}
.y275{bottom:694.402525pt;}
.y4c{bottom:694.722525pt;}
.y212{bottom:698.562525pt;}
.ye8{bottom:698.882525pt;}
.y145{bottom:699.522525pt;}
.y21b{bottom:699.842525pt;}
.y28{bottom:700.162525pt;}
.y108{bottom:701.442525pt;}
.y16c{bottom:704.002525pt;}
.y187{bottom:706.562525pt;}
.y82{bottom:706.882525pt;}
.y81{bottom:707.133336pt;}
.y277{bottom:707.842525pt;}
.ycd{bottom:709.442525pt;}
.yac{bottom:710.402525pt;}
.y27b{bottom:712.002525pt;}
.y127{bottom:712.962525pt;}
.y63{bottom:715.522525pt;}
.y19f{bottom:715.981067pt;}
.y274{bottom:716.802525pt;}
.y4b{bottom:717.442525pt;}
.y8{bottom:718.082525pt;}
.y1eb{bottom:719.362525pt;}
.y211{bottom:720.962525pt;}
.ye7{bottom:721.282525pt;}
.y144{bottom:721.922525pt;}
.y21a{bottom:722.242525pt;}
.y1b4{bottom:723.522525pt;}
.y8d{bottom:723.842525pt;}
.y16b{bottom:726.402525pt;}
.y131{bottom:730.242525pt;}
.y27{bottom:732.162525pt;}
.y18a{bottom:732.802525pt;}
.y27a{bottom:734.402525pt;}
.y126{bottom:735.362525pt;}
.y62{bottom:737.922525pt;}
.y273{bottom:739.202525pt;}
.y210{bottom:743.362525pt;}
.ye6{bottom:743.682525pt;}
.y157{bottom:744.322525pt;}
.y219{bottom:744.642525pt;}
.y19e{bottom:745.101067pt;}
.y80{bottom:746.242525pt;}
.y16a{bottom:748.802525pt;}
.y4a{bottom:749.442525pt;}
.y186{bottom:751.362525pt;}
.y26{bottom:754.562525pt;}
.yfe{bottom:755.202525pt;}
.y231{bottom:756.802525pt;}
.y125{bottom:757.762525pt;}
.y1b3{bottom:760.141067pt;}
.y61{bottom:760.322525pt;}
.y107{bottom:762.562525pt;}
.y106{bottom:762.813336pt;}
.y20f{bottom:765.762525pt;}
.y130{bottom:766.082525pt;}
.ye5{bottom:767.042525pt;}
.y7f{bottom:768.642525pt;}
.y169{bottom:771.202525pt;}
.y49{bottom:771.842525pt;}
.y185{bottom:773.762525pt;}
.y272{bottom:775.042525pt;}
.y19d{bottom:775.181067pt;}
.y25{bottom:777.282525pt;}
.y230{bottom:779.202525pt;}
.y124{bottom:780.162525pt;}
.y60{bottom:782.722525pt;}
.y1be{bottom:787.522525pt;}
.y1bd{bottom:787.773336pt;}
.y20e{bottom:788.162525pt;}
.y12f{bottom:788.482525pt;}
.y218{bottom:789.122525pt;}
.y1b2{bottom:789.261067pt;}
.ye4{bottom:789.442525pt;}
.y7e{bottom:791.042525pt;}
.y48{bottom:794.242525pt;}
.y184{bottom:796.162525pt;}
.y271{bottom:797.442525pt;}
.yfd{bottom:800.002525pt;}
.y105{bottom:801.602525pt;}
.y156{bottom:802.562525pt;}
.y7{bottom:804.802525pt;}
.y5f{bottom:805.122525pt;}
.y24{bottom:809.282525pt;}
.y168{bottom:809.922525pt;}
.y167{bottom:810.173336pt;}
.y12e{bottom:810.562525pt;}
.ye3{bottom:811.842525pt;}
.y217{bottom:812.482525pt;}
.y8c{bottom:813.442525pt;}
.y123{bottom:815.682525pt;}
.y47{bottom:816.642525pt;}
.y183{bottom:818.562525pt;}
.y1b1{bottom:818.701067pt;}
.y143{bottom:818.882525pt;}
.y142{bottom:819.133336pt;}
.y270{bottom:819.842525pt;}
.yfc{bottom:822.402525pt;}
.y22f{bottom:823.682525pt;}
.y104{bottom:824.002525pt;}
.y7d{bottom:826.562525pt;}
.y5e{bottom:827.522525pt;}
.y23{bottom:831.682525pt;}
.ye2{bottom:833.922525pt;}
.y216{bottom:834.882525pt;}
.y122{bottom:838.082525pt;}
.y46{bottom:839.362525pt;}
.y6{bottom:840.322525pt;}
.y182{bottom:840.642525pt;}
.y20d{bottom:846.082525pt;}
.y103{bottom:846.402525pt;}
.y1b0{bottom:848.141067pt;}
.y7c{bottom:848.962525pt;}
.y5d{bottom:849.922525pt;}
.y189{bottom:851.842525pt;}
.y188{bottom:852.093336pt;}
.y22{bottom:854.402525pt;}
.y26f{bottom:855.362525pt;}
.ye1{bottom:857.282525pt;}
.y99{bottom:857.922525pt;}
.y121{bottom:860.482525pt;}
.y20c{bottom:868.482525pt;}
.y102{bottom:868.802525pt;}
.y45{bottom:871.362525pt;}
.y5c{bottom:872.002525pt;}
.y5{bottom:876.162525pt;}
.y155{bottom:876.802525pt;}
.y154{bottom:877.053336pt;}
.y26e{bottom:877.762525pt;}
.y1af{bottom:878.221067pt;}
.y181{bottom:879.362525pt;}
.y180{bottom:879.613336pt;}
.ye0{bottom:879.682525pt;}
.y98{bottom:880.322525pt;}
.y22e{bottom:881.922525pt;}
.y120{bottom:882.882525pt;}
.y21{bottom:886.402525pt;}
.y101{bottom:891.202525pt;}
.y44{bottom:893.762525pt;}
.y5b{bottom:894.402525pt;}
.y19c{bottom:896.322525pt;}
.y24e{bottom:899.202525pt;}
.ydf{bottom:902.082525pt;}
.y97{bottom:902.722525pt;}
.y20b{bottom:904.322525pt;}
.y20{bottom:908.802525pt;}
.y4{bottom:911.682525pt;}
.y100{bottom:913.602525pt;}
.y43{bottom:916.162525pt;}
.y5a{bottom:916.802525pt;}
.y166{bottom:918.722525pt;}
.y11f{bottom:921.602525pt;}
.y11e{bottom:921.853336pt;}
.yde{bottom:924.162525pt;}
.y96{bottom:925.122525pt;}
.y1f4{bottom:926.722525pt;}
.y1f{bottom:931.842525pt;}
.y7b{bottom:932.482525pt;}
.y7a{bottom:932.733336pt;}
.yff{bottom:936.002525pt;}
.y42{bottom:938.562525pt;}
.y59{bottom:939.202525pt;}
.y165{bottom:941.122525pt;}
.y3{bottom:947.522525pt;}
.y1ea{bottom:949.122525pt;}
.y41{bottom:960.962525pt;}
.y1e{bottom:974.402525pt;}
.y259{bottom:979.522525pt;}
.y164{bottom:979.842525pt;}
.y163{bottom:980.093336pt;}
.y2{bottom:983.362525pt;}
.y1a{bottom:1031.362525pt;}
.y19{bottom:1049.282525pt;}
.h5{height:17.920000pt;}
.h15{height:21.120000pt;}
.h14{height:21.439947pt;}
.h13{height:21.439987pt;}
.h16{height:22.719987pt;}
.hd{height:29.119960pt;}
.hf{height:29.120000pt;}
.h11{height:29.120040pt;}
.h12{height:29.439947pt;}
.hc{height:29.439987pt;}
.he{height:29.440000pt;}
.h10{height:29.440027pt;}
.hb{height:32.421250pt;}
.h3{height:47.503125pt;}
.h9{height:49.481250pt;}
.ha{height:50.750000pt;}
.h7{height:52.781250pt;}
.h8{height:59.571484pt;}
.h6{height:79.171875pt;}
.h4{height:122.452500pt;}
.h2{height:1099.842533pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w3{width:7.359985pt;}
.w4{width:15.040000pt;}
.w18{width:81.279987pt;}
.w6{width:84.479987pt;}
.w7{width:84.800013pt;}
.wc{width:86.399987pt;}
.wb{width:86.719973pt;}
.w13{width:86.720013pt;}
.w1a{width:92.160000pt;}
.w8{width:103.040000pt;}
.w19{width:104.000000pt;}
.w12{width:110.399987pt;}
.wf{width:124.160000pt;}
.w16{width:161.280000pt;}
.w1b{width:175.360000pt;}
.wd{width:175.680000pt;}
.wa{width:176.000000pt;}
.w17{width:191.360000pt;}
.w15{width:192.000000pt;}
.w10{width:210.240000pt;}
.we{width:210.560000pt;}
.w14{width:219.840000pt;}
.w11{width:220.160000pt;}
.w9{width:291.840000pt;}
.w5{width:292.480000pt;}
.w2{width:771.023733pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:4.800000pt;}
.x1{left:11.338535pt;}
.x1e{left:13.813733pt;}
.x28{left:16.402133pt;}
.x1c{left:18.326400pt;}
.x1a{left:21.422400pt;}
.x46{left:24.276533pt;}
.x26{left:26.750533pt;}
.x38{left:29.095600pt;}
.x37{left:32.702000pt;}
.x30{left:35.582267pt;}
.x29{left:37.627200pt;}
.x34{left:38.750533pt;}
.x47{left:42.202933pt;}
.x48{left:43.889200pt;}
.x2f{left:45.737200pt;}
.x2b{left:48.763200pt;}
.x3a{left:49.782000pt;}
.x20{left:54.583467pt;}
.x39{left:56.516800pt;}
.x22{left:57.579200pt;}
.x3e{left:64.083867pt;}
.x1f{left:65.012800pt;}
.x21{left:72.446400pt;}
.x2a{left:74.379733pt;}
.x3b{left:80.196800pt;}
.x6{left:102.719999pt;}
.x3f{left:112.293867pt;}
.x17{left:115.018533pt;}
.xb{left:117.386665pt;}
.x41{left:123.429867pt;}
.x12{left:126.719999pt;}
.xc{left:130.774665pt;}
.x40{left:138.297067pt;}
.x16{left:140.235599pt;}
.x32{left:145.418533pt;}
.x3{left:146.633465pt;}
.xd{left:150.719999pt;}
.x42{left:170.698533pt;}
.x23{left:216.170132pt;}
.x15{left:220.544265pt;}
.x24{left:222.858533pt;}
.x2d{left:230.218533pt;}
.xf{left:231.838132pt;}
.x59{left:244.567599pt;}
.xe{left:247.447599pt;}
.x50{left:249.445599pt;}
.x52{left:261.053065pt;}
.x14{left:262.526665pt;}
.x49{left:264.849865pt;}
.x2c{left:271.910399pt;}
.x31{left:273.967065pt;}
.x5f{left:275.033465pt;}
.x4b{left:277.749332pt;}
.x3c{left:279.272799pt;}
.x4c{left:280.447599pt;}
.x4e{left:283.248265pt;}
.x5e{left:284.959199pt;}
.x58{left:286.462132pt;}
.x11{left:287.610665pt;}
.x4d{left:288.861599pt;}
.x60{left:290.795199pt;}
.x55{left:302.531465pt;}
.x9{left:338.565732pt;}
.x43{left:346.698533pt;}
.x33{left:365.578533pt;}
.x56{left:384.328665pt;}
.x13{left:389.898533pt;}
.xa{left:393.738533pt;}
.x25{left:398.858533pt;}
.x19{left:407.498533pt;}
.x3d{left:412.938533pt;}
.x44{left:427.978533pt;}
.x2e{left:440.778533pt;}
.x4{left:463.591732pt;}
.x57{left:468.866399pt;}
.x35{left:475.978533pt;}
.x27{left:485.578533pt;}
.x1b{left:491.978533pt;}
.x5b{left:493.986532pt;}
.x7{left:496.733599pt;}
.x5a{left:500.546532pt;}
.x4f{left:507.266532pt;}
.x51{left:511.266532pt;}
.x5c{left:515.266532pt;}
.x5{left:517.238932pt;}
.x5d{left:528.546532pt;}
.x45{left:531.978533pt;}
.x8{left:554.655465pt;}
.x36{left:562.698533pt;}
.x1d{left:576.778533pt;}
.x54{left:586.146399pt;}
.x53{left:616.866399pt;}
.x10{left:635.840132pt;}
.x4a{left:667.840132pt;}
.x2{left:669.253199pt;}
}




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