
    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_d2581984ab1427f472b694b2.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_005dbb3ce94bc985284d8b92.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_ed5e849ef4105ba40c93143f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_5a6ad128be41c9a8541e5b3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.844727;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_229ee0e8b92d6231e89cf32e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_07605e944ebcf3d346f0d6d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.873535;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_7c9519c9f4c5cece9766d5e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765625;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_c123d83f0bb86e7ee64d2ba3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.828125;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_6517eae6e706a316307d2ccc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_8c5204e2caeede2d99e3a0c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c68a9c0888f91d156f706eba.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.256945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256945,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256945,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.032000px;}
.v2{vertical-align:8.652600px;}
.v3{vertical-align:39.555000px;}
.v1{vertical-align:73.224000px;}
.ls58{letter-spacing:-28.512000px;}
.ls5f{letter-spacing:-24.240000px;}
.ls5d{letter-spacing:-20.006400px;}
.ls4d{letter-spacing:-14.851200px;}
.lsc5{letter-spacing:-13.080000px;}
.ls5a{letter-spacing:-12.283200px;}
.ls18{letter-spacing:-11.750400px;}
.ls23{letter-spacing:-11.673600px;}
.ls77{letter-spacing:-9.601200px;}
.ls75{letter-spacing:-8.716800px;}
.ls78{letter-spacing:-8.668800px;}
.ls79{letter-spacing:-8.179200px;}
.ls90{letter-spacing:-7.894800px;}
.ls91{letter-spacing:-7.756800px;}
.ls61{letter-spacing:-7.279200px;}
.lsad{letter-spacing:-7.065600px;}
.ls93{letter-spacing:-6.739200px;}
.lsca{letter-spacing:-6.711600px;}
.ls3d{letter-spacing:-6.480000px;}
.ls94{letter-spacing:-6.199200px;}
.ls1f{letter-spacing:-6.018000px;}
.lsa7{letter-spacing:-5.817600px;}
.ls8f{letter-spacing:-5.529600px;}
.ls3e{letter-spacing:-5.160000px;}
.ls54{letter-spacing:-4.920000px;}
.ls9f{letter-spacing:-4.563000px;}
.ls2b{letter-spacing:-4.032000px;}
.ls71{letter-spacing:-3.456000px;}
.ls62{letter-spacing:-3.412800px;}
.lsb2{letter-spacing:-3.369600px;}
.ls6b{letter-spacing:-3.302400px;}
.ls30{letter-spacing:-3.283200px;}
.lsac{letter-spacing:-3.269188px;}
.lsa{letter-spacing:-3.254400px;}
.ls95{letter-spacing:-3.244800px;}
.ls70{letter-spacing:-3.240000px;}
.ls8e{letter-spacing:-3.208800px;}
.ls41{letter-spacing:-3.196800px;}
.lsc1{letter-spacing:-3.173400px;}
.ls3a{letter-spacing:-3.168000px;}
.ls59{letter-spacing:-3.139200px;}
.ls3c{letter-spacing:-3.120000px;}
.ls5c{letter-spacing:-3.091200px;}
.lsb9{letter-spacing:-3.088800px;}
.ls3{letter-spacing:-3.082378px;}
.ls1c{letter-spacing:-3.081600px;}
.ls7f{letter-spacing:-3.072000px;}
.ls40{letter-spacing:-3.067200px;}
.ls7a{letter-spacing:-3.052800px;}
.ls63{letter-spacing:-3.024000px;}
.ls6d{letter-spacing:-2.995200px;}
.ls9{letter-spacing:-2.908800px;}
.ls39{letter-spacing:-2.880000px;}
.ls72{letter-spacing:-2.872800px;}
.ls1b{letter-spacing:-2.851200px;}
.lsc2{letter-spacing:-2.838000px;}
.ls2a{letter-spacing:-2.837187px;}
.lsba{letter-spacing:-2.822400px;}
.ls45{letter-spacing:-2.808000px;}
.ls81{letter-spacing:-2.802162px;}
.ls8{letter-spacing:-2.764800px;}
.ls28{letter-spacing:-2.745600px;}
.ls46{letter-spacing:-2.743200px;}
.lsc4{letter-spacing:-2.688000px;}
.ls27{letter-spacing:-2.649600px;}
.lsc8{letter-spacing:-2.613600px;}
.lsb{letter-spacing:-2.592000px;}
.ls31{letter-spacing:-2.570400px;}
.ls84{letter-spacing:-2.521946px;}
.ls33{letter-spacing:-2.521944px;}
.ls7c{letter-spacing:-2.184000px;}
.ls8d{letter-spacing:-2.016000px;}
.ls85{letter-spacing:-1.927200px;}
.ls67{letter-spacing:-1.843200px;}
.lsa0{letter-spacing:-1.840800px;}
.ls35{letter-spacing:-1.747200px;}
.ls2f{letter-spacing:-1.728000px;}
.lsa4{letter-spacing:-1.677000px;}
.ls6a{letter-spacing:-1.627200px;}
.ls37{letter-spacing:-1.468800px;}
.ls50{letter-spacing:-1.380000px;}
.ls9d{letter-spacing:-1.267200px;}
.ls7d{letter-spacing:-1.248000px;}
.lsb0{letter-spacing:-1.220400px;}
.ls12{letter-spacing:-1.188000px;}
.lsb7{letter-spacing:-0.936000px;}
.lsaa{letter-spacing:-0.832003px;}
.lsa9{letter-spacing:-0.691202px;}
.ls53{letter-spacing:-0.516000px;}
.ls64{letter-spacing:-0.420000px;}
.ls57{letter-spacing:-0.396000px;}
.ls26{letter-spacing:-0.364800px;}
.ls4f{letter-spacing:-0.336000px;}
.lsc7{letter-spacing:-0.334800px;}
.ls10{letter-spacing:-0.324000px;}
.ls7b{letter-spacing:-0.312000px;}
.ls42{letter-spacing:-0.302400px;}
.ls66{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.280800px;}
.ls13{letter-spacing:-0.276000px;}
.lsb1{letter-spacing:-0.270000px;}
.ls8b{letter-spacing:-0.264000px;}
.ls38{letter-spacing:-0.259200px;}
.ls8c{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.248400px;}
.ls55{letter-spacing:-0.240000px;}
.ls6e{letter-spacing:-0.235200px;}
.ls88{letter-spacing:-0.224400px;}
.ls6f{letter-spacing:-0.218400px;}
.lsbe{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.192000px;}
.ls69{letter-spacing:-0.187200px;}
.ls65{letter-spacing:-0.168000px;}
.ls9e{letter-spacing:-0.156000px;}
.ls36{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.140400px;}
.ls51{letter-spacing:-0.120000px;}
.ls68{letter-spacing:-0.115200px;}
.lsbf{letter-spacing:-0.100800px;}
.ls11{letter-spacing:-0.097200px;}
.lsbc{letter-spacing:-0.090000px;}
.ls4b{letter-spacing:-0.086400px;}
.ls2e{letter-spacing:-0.076800px;}
.lsa2{letter-spacing:-0.070200px;}
.ls56{letter-spacing:-0.060000px;}
.ls9c{letter-spacing:-0.057600px;}
.ls49{letter-spacing:-0.048000px;}
.lsd{letter-spacing:-0.021600px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.014400px;}
.ls17{letter-spacing:0.021600px;}
.ls98{letter-spacing:0.039000px;}
.ls86{letter-spacing:0.039600px;}
.lsb6{letter-spacing:0.043200px;}
.ls74{letter-spacing:0.052800px;}
.ls22{letter-spacing:0.057600px;}
.lsa5{letter-spacing:0.062400px;}
.lscb{letter-spacing:0.075600px;}
.ls87{letter-spacing:0.079200px;}
.ls92{letter-spacing:0.084000px;}
.lsc9{letter-spacing:0.092400px;}
.ls47{letter-spacing:0.096000px;}
.ls5e{letter-spacing:0.100800px;}
.ls8a{letter-spacing:0.132000px;}
.ls7e{letter-spacing:0.134400px;}
.ls99{letter-spacing:0.140400px;}
.ls5b{letter-spacing:0.144000px;}
.ls89{letter-spacing:0.145200px;}
.ls9b{letter-spacing:0.156000px;}
.ls44{letter-spacing:0.168000px;}
.lsc6{letter-spacing:0.172200px;}
.lsbb{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.183600px;}
.ls43{letter-spacing:0.184800px;}
.lsa3{letter-spacing:0.187200px;}
.ls2c{letter-spacing:0.192000px;}
.lsa1{letter-spacing:0.195000px;}
.lsaf{letter-spacing:0.201600px;}
.ls4a{letter-spacing:0.211200px;}
.lsb4{letter-spacing:0.216000px;}
.ls48{letter-spacing:0.220800px;}
.ls1e{letter-spacing:0.230400px;}
.lsa8{letter-spacing:0.237600px;}
.ls52{letter-spacing:0.240000px;}
.ls96{letter-spacing:0.244800px;}
.lsae{letter-spacing:0.252000px;}
.ls25{letter-spacing:0.288000px;}
.ls73{letter-spacing:0.290400px;}
.lsa6{letter-spacing:0.296400px;}
.ls6c{letter-spacing:0.302400px;}
.lsc3{letter-spacing:0.316800px;}
.ls76{letter-spacing:0.324000px;}
.ls3f{letter-spacing:0.336000px;}
.ls34{letter-spacing:0.345600px;}
.ls4e{letter-spacing:0.352800px;}
.ls14{letter-spacing:0.356400px;}
.ls4c{letter-spacing:0.360000px;}
.lsb8{letter-spacing:0.364800px;}
.ls24{letter-spacing:0.384000px;}
.ls19{letter-spacing:0.388800px;}
.lsb5{letter-spacing:0.420000px;}
.ls21{letter-spacing:0.422400px;}
.ls5{letter-spacing:8.304000px;}
.ls1a{letter-spacing:9.688800px;}
.lsc0{letter-spacing:9.936000px;}
.ls4{letter-spacing:11.348732px;}
.ls0{letter-spacing:11.820000px;}
.ls1{letter-spacing:11.880000px;}
.ls9a{letter-spacing:18.096000px;}
.ls15{letter-spacing:24.732000px;}
.ls7{letter-spacing:24.948000px;}
.ls83{letter-spacing:26.004000px;}
.ls29{letter-spacing:26.880000px;}
.lsb3{letter-spacing:27.120000px;}
.ls32{letter-spacing:35.424000px;}
.ls80{letter-spacing:43.920000px;}
.ls20{letter-spacing:43.929600px;}
.lsbd{letter-spacing:48.168000px;}
.ls3b{letter-spacing:48.240000px;}
.ls60{letter-spacing:49.680000px;}
.ls82{letter-spacing:55.968000px;}
.lsab{letter-spacing:110.544000px;}
.ls97{letter-spacing:138.138000px;}
.ls6{letter-spacing:1608.876000px;}
.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;}
}
.ws0{word-spacing:-190.336817px;}
.ws1{word-spacing:-187.254439px;}
.ws29{word-spacing:-168.858000px;}
.ws97{word-spacing:-168.000000px;}
.ws2a{word-spacing:-155.730042px;}
.ws43{word-spacing:-153.208098px;}
.ws35{word-spacing:-152.892855px;}
.ws4f{word-spacing:-142.272000px;}
.ws23{word-spacing:-140.104800px;}
.wsc1{word-spacing:-139.680000px;}
.wsb{word-spacing:-139.507200px;}
.ws102{word-spacing:-139.449600px;}
.ws52{word-spacing:-139.392000px;}
.wsc2{word-spacing:-139.363200px;}
.ws96{word-spacing:-139.276800px;}
.wsaa{word-spacing:-139.219200px;}
.ws7c{word-spacing:-139.132800px;}
.ws53{word-spacing:-139.104000px;}
.wse{word-spacing:-139.017600px;}
.wsf8{word-spacing:-138.902400px;}
.wsb2{word-spacing:-138.426803px;}
.wsb6{word-spacing:-135.904857px;}
.wsb3{word-spacing:-135.624641px;}
.wsce{word-spacing:-135.532800px;}
.wsa9{word-spacing:-134.092800px;}
.wsa8{word-spacing:-133.603200px;}
.wsa3{word-spacing:-131.762400px;}
.wsa4{word-spacing:-131.524800px;}
.ws24{word-spacing:-127.564800px;}
.ws100{word-spacing:-127.327200px;}
.ws10b{word-spacing:-124.614000px;}
.ws10a{word-spacing:-124.278600px;}
.ws113{word-spacing:-122.680200px;}
.ws114{word-spacing:-122.508000px;}
.wscb{word-spacing:-119.557200px;}
.ws55{word-spacing:-115.680000px;}
.ws54{word-spacing:-115.440000px;}
.wsef{word-spacing:-115.355620px;}
.ws7b{word-spacing:-113.760000px;}
.wsfb{word-spacing:-113.544000px;}
.ws57{word-spacing:-113.400000px;}
.wsf0{word-spacing:-112.086432px;}
.ws56{word-spacing:-112.080000px;}
.wsf2{word-spacing:-107.913600px;}
.ws10d{word-spacing:-107.568000px;}
.ws10c{word-spacing:-107.244000px;}
.ws9f{word-spacing:-106.704000px;}
.ws112{word-spacing:-106.440000px;}
.ws61{word-spacing:-103.960800px;}
.ws60{word-spacing:-103.896000px;}
.wsa2{word-spacing:-103.831200px;}
.wsa1{word-spacing:-103.680000px;}
.ws58{word-spacing:-103.636800px;}
.ws59{word-spacing:-103.507200px;}
.ws88{word-spacing:-103.291200px;}
.ws87{word-spacing:-99.424800px;}
.ws2b{word-spacing:-96.038400px;}
.ws2f{word-spacing:-96.000000px;}
.ws101{word-spacing:-95.980800px;}
.ws45{word-spacing:-95.961600px;}
.ws30{word-spacing:-95.904000px;}
.ws3a{word-spacing:-95.808000px;}
.ws2c{word-spacing:-95.673600px;}
.ws2e{word-spacing:-95.616000px;}
.ws3d{word-spacing:-95.539200px;}
.ws31{word-spacing:-95.251200px;}
.wsca{word-spacing:-94.848000px;}
.ws85{word-spacing:-94.320000px;}
.ws3f{word-spacing:-93.888000px;}
.ws32{word-spacing:-92.966400px;}
.ws33{word-spacing:-92.870400px;}
.ws42{word-spacing:-92.332800px;}
.ws10e{word-spacing:-92.160000px;}
.wsaf{word-spacing:-91.968000px;}
.wsb1{word-spacing:-91.776000px;}
.ws82{word-spacing:-91.756800px;}
.wsd2{word-spacing:-91.603200px;}
.ws95{word-spacing:-91.545600px;}
.ws44{word-spacing:-90.631195px;}
.ws36{word-spacing:-90.178179px;}
.ws34{word-spacing:-89.662115px;}
.wsa{word-spacing:-89.640000px;}
.wsc9{word-spacing:-89.318400px;}
.wsf1{word-spacing:-87.782400px;}
.ws6a{word-spacing:-84.016800px;}
.ws5d{word-spacing:-84.000000px;}
.ws99{word-spacing:-83.966400px;}
.ws2d{word-spacing:-83.942400px;}
.ws89{word-spacing:-83.848800px;}
.ws5c{word-spacing:-83.832000px;}
.wsb0{word-spacing:-83.798400px;}
.ws5f{word-spacing:-83.664000px;}
.ws8b{word-spacing:-83.496000px;}
.ws9c{word-spacing:-83.445600px;}
.wsc5{word-spacing:-83.412000px;}
.ws5a{word-spacing:-83.361600px;}
.ws6b{word-spacing:-83.328000px;}
.ws8a{word-spacing:-83.244000px;}
.wsc6{word-spacing:-81.648000px;}
.ws41{word-spacing:-81.093600px;}
.ws3{word-spacing:-80.561985px;}
.wsb5{word-spacing:-80.552233px;}
.wsc7{word-spacing:-80.455200px;}
.ws11d{word-spacing:-80.208000px;}
.ws11c{word-spacing:-80.064000px;}
.ws1b{word-spacing:-78.516000px;}
.wsac{word-spacing:-77.688000px;}
.ws51{word-spacing:-77.644800px;}
.ws7a{word-spacing:-77.472000px;}
.wsd{word-spacing:-77.241600px;}
.wsc3{word-spacing:-77.011200px;}
.ws50{word-spacing:-76.896000px;}
.wsc{word-spacing:-76.752000px;}
.wsae{word-spacing:-76.440000px;}
.ws79{word-spacing:-76.320000px;}
.wsad{word-spacing:-75.504000px;}
.wsc0{word-spacing:-75.456000px;}
.ws83{word-spacing:-74.841600px;}
.ws27{word-spacing:-71.726400px;}
.ws25{word-spacing:-71.712000px;}
.ws109{word-spacing:-71.611200px;}
.ws92{word-spacing:-71.524800px;}
.ws94{word-spacing:-71.424000px;}
.ws5{word-spacing:-71.160000px;}
.ws4{word-spacing:-71.100000px;}
.ws93{word-spacing:-70.084800px;}
.ws2{word-spacing:-69.213253px;}
.wsb4{word-spacing:-69.062400px;}
.ws69{word-spacing:-68.812800px;}
.ws6{word-spacing:-67.584000px;}
.ws11f{word-spacing:-66.720000px;}
.wsbc{word-spacing:-65.881200px;}
.wsb9{word-spacing:-65.736000px;}
.wsbb{word-spacing:-65.511600px;}
.wsbf{word-spacing:-65.472000px;}
.wsb7{word-spacing:-63.808800px;}
.wsec{word-spacing:-63.308998px;}
.wsed{word-spacing:-63.168197px;}
.ws106{word-spacing:-60.516000px;}
.ws6f{word-spacing:-60.000000px;}
.wsf9{word-spacing:-59.976000px;}
.ws8{word-spacing:-59.760000px;}
.ws74{word-spacing:-59.700000px;}
.ws73{word-spacing:-59.520000px;}
.ws19{word-spacing:-59.484000px;}
.ws7e{word-spacing:-59.428800px;}
.wsa0{word-spacing:-58.276800px;}
.ws7{word-spacing:-57.677958px;}
.ws9d{word-spacing:-57.456000px;}
.ws9e{word-spacing:-57.240000px;}
.ws108{word-spacing:-54.172800px;}
.ws1a{word-spacing:-54.140400px;}
.ws10{word-spacing:-53.967600px;}
.ws1d{word-spacing:-53.805600px;}
.ws11{word-spacing:-53.784000px;}
.ws12{word-spacing:-53.762400px;}
.ws14{word-spacing:-53.643600px;}
.ws107{word-spacing:-53.568000px;}
.ws13{word-spacing:-53.535600px;}
.wsf7{word-spacing:-53.514000px;}
.ws115{word-spacing:-53.449200px;}
.ws38{word-spacing:-53.184000px;}
.ws46{word-spacing:-53.068800px;}
.ws3e{word-spacing:-52.569600px;}
.wsf6{word-spacing:-52.563600px;}
.ws39{word-spacing:-52.512000px;}
.ws3c{word-spacing:-52.416000px;}
.ws48{word-spacing:-52.224000px;}
.ws3b{word-spacing:-52.032000px;}
.ws49{word-spacing:-51.993600px;}
.wsf{word-spacing:-51.192000px;}
.ws116{word-spacing:-51.170400px;}
.ws47{word-spacing:-48.844800px;}
.ws67{word-spacing:-47.808000px;}
.ws111{word-spacing:-47.520000px;}
.ws5b{word-spacing:-46.519200px;}
.wsd3{word-spacing:-46.183200px;}
.ws9a{word-spacing:-46.132800px;}
.ws84{word-spacing:-45.796800px;}
.ws40{word-spacing:-45.657600px;}
.ws98{word-spacing:-44.654400px;}
.ws37{word-spacing:-44.544000px;}
.ws103{word-spacing:-44.460000px;}
.ws104{word-spacing:-44.280000px;}
.ws9b{word-spacing:-44.268000px;}
.ws105{word-spacing:-44.190000px;}
.wsa6{word-spacing:-44.182800px;}
.wsd9{word-spacing:-42.000000px;}
.ws117{word-spacing:-41.924400px;}
.wsd1{word-spacing:-41.832000px;}
.wsf3{word-spacing:-41.580000px;}
.wsf5{word-spacing:-41.529600px;}
.wsf4{word-spacing:-41.160000px;}
.ws11e{word-spacing:-40.104000px;}
.wscc{word-spacing:-40.051200px;}
.ws28{word-spacing:-40.032000px;}
.ws4b{word-spacing:-39.456000px;}
.ws4e{word-spacing:-39.340800px;}
.ws4a{word-spacing:-39.168000px;}
.wse6{word-spacing:-39.140400px;}
.wsa5{word-spacing:-39.091200px;}
.wsde{word-spacing:-39.039000px;}
.wse2{word-spacing:-39.031200px;}
.wse0{word-spacing:-38.984400px;}
.ws4d{word-spacing:-38.937600px;}
.wse4{word-spacing:-38.906400px;}
.wsdb{word-spacing:-38.883000px;}
.wse5{word-spacing:-38.844000px;}
.wse1{word-spacing:-38.773800px;}
.wsda{word-spacing:-38.688000px;}
.wse3{word-spacing:-37.167000px;}
.wsdd{word-spacing:-37.003200px;}
.ws4c{word-spacing:-36.374400px;}
.wsfd{word-spacing:-35.899200px;}
.wsfc{word-spacing:-35.856000px;}
.ws91{word-spacing:-35.769600px;}
.wsd0{word-spacing:-35.632800px;}
.ws7f{word-spacing:-35.568000px;}
.ws7d{word-spacing:-35.424000px;}
.ws90{word-spacing:-35.308800px;}
.ws80{word-spacing:-35.280000px;}
.wsff{word-spacing:-34.920000px;}
.wsdc{word-spacing:-34.281000px;}
.wsfa{word-spacing:-33.960000px;}
.ws26{word-spacing:-33.609600px;}
.ws6d{word-spacing:-32.880000px;}
.ws86{word-spacing:-32.760000px;}
.wsbe{word-spacing:-32.604000px;}
.wsba{word-spacing:-32.551200px;}
.ws71{word-spacing:-32.520000px;}
.wsb8{word-spacing:-32.511600px;}
.wsbd{word-spacing:-32.472000px;}
.ws8c{word-spacing:-32.148000px;}
.ws6c{word-spacing:-30.240000px;}
.ws77{word-spacing:-29.520000px;}
.ws78{word-spacing:-29.460000px;}
.ws76{word-spacing:-29.244000px;}
.ws75{word-spacing:-29.124000px;}
.ws70{word-spacing:-29.004000px;}
.ws1c{word-spacing:-28.684800px;}
.wsa7{word-spacing:-28.069200px;}
.ws16{word-spacing:-27.216000px;}
.ws17{word-spacing:-27.118800px;}
.ws15{word-spacing:-26.892000px;}
.wsee{word-spacing:-26.688000px;}
.ws66{word-spacing:-26.284800px;}
.ws18{word-spacing:-26.028000px;}
.ws68{word-spacing:-25.718400px;}
.wsc4{word-spacing:-25.632000px;}
.ws63{word-spacing:-23.836800px;}
.ws110{word-spacing:-23.808000px;}
.ws62{word-spacing:-23.712000px;}
.ws64{word-spacing:-23.616000px;}
.ws65{word-spacing:-23.568000px;}
.ws72{word-spacing:-23.040000px;}
.ws119{word-spacing:-21.504000px;}
.ws11a{word-spacing:-21.243600px;}
.wscf{word-spacing:-20.748000px;}
.wsdf{word-spacing:-20.670000px;}
.wscd{word-spacing:-20.664000px;}
.wsd4{word-spacing:-18.072000px;}
.wsd8{word-spacing:-17.956800px;}
.wse9{word-spacing:-17.949600px;}
.wsea{word-spacing:-17.712000px;}
.wsd6{word-spacing:-17.654400px;}
.wsd5{word-spacing:-17.460000px;}
.wsd7{word-spacing:-16.444800px;}
.ws118{word-spacing:-14.456400px;}
.wse7{word-spacing:-11.894400px;}
.ws81{word-spacing:-3.024000px;}
.ws11b{word-spacing:-2.880000px;}
.wse8{word-spacing:-1.800000px;}
.ws20{word-spacing:-0.496800px;}
.ws22{word-spacing:-0.129600px;}
.ws9{word-spacing:0.000000px;}
.wsc8{word-spacing:0.576000px;}
.ws8e{word-spacing:0.633600px;}
.ws5e{word-spacing:3.864000px;}
.ws1e{word-spacing:11.318400px;}
.wsab{word-spacing:20.904000px;}
.ws1f{word-spacing:24.624000px;}
.ws21{word-spacing:24.991200px;}
.ws8d{word-spacing:35.856000px;}
.ws6e{word-spacing:65.520000px;}
.ws8f{word-spacing:69.984000px;}
.wsfe{word-spacing:185.513400px;}
.wseb{word-spacing:700.108200px;}
.ws10f{word-spacing:3118.905600px;}
._16{margin-left:-31.050852px;}
._10{margin-left:-25.242162px;}
._f{margin-left:-24.206919px;}
._27{margin-left:-23.064000px;}
._1f{margin-left:-19.995600px;}
._5{margin-left:-18.916341px;}
._15{margin-left:-16.632000px;}
._14{margin-left:-15.403659px;}
._13{margin-left:-12.672000px;}
._e{margin-left:-11.054532px;}
._9{margin-left:-9.840000px;}
._d{margin-left:-8.722638px;}
._4{margin-left:-7.338744px;}
._1{margin-left:-6.282679px;}
._2{margin-left:-4.737988px;}
._0{margin-left:-2.811502px;}
._3{margin-left:-1.657362px;}
._8{width:1.251502px;}
._b{width:2.640000px;}
._a{width:3.960000px;}
._19{width:5.876106px;}
._11{width:7.265441px;}
._12{width:8.384720px;}
._c{width:9.759280px;}
._6{width:11.349316px;}
._7{width:12.469010px;}
._18{width:14.448000px;}
._1c{width:15.552000px;}
._1b{width:17.472000px;}
._1d{width:21.120000px;}
._1a{width:25.632000px;}
._29{width:31.023242px;}
._28{width:33.624000px;}
._17{width:66.162019px;}
._1e{width:138.138000px;}
._26{width:947.018988px;}
._24{width:978.016482px;}
._25{width:1040.234988px;}
._23{width:2386.545992px;}
._20{width:2654.389494px;}
._22{width:2839.981494px;}
._21{width:2886.325494px;}
.fc15{color:rgb(157,144,160);}
.fc17{color:transparent;}
.fc14{color:rgb(41,127,213);}
.fc13{color:rgb(0,32,96);}
.fc12{color:rgb(255,192,0);}
.fc11{color:rgb(79,129,189);}
.fcf{color:rgb(31,73,125);}
.fcd{color:rgb(37,51,86);}
.fc0{color:rgb(98,157,209);}
.fc19{color:rgb(48,53,109);}
.fc1{color:rgb(0,0,0);}
.fc18{color:rgb(35,79,119);}
.fc4{color:rgb(255,255,255);}
.fc10{color:rgb(144,162,207);}
.fc6{color:rgb(64,64,64);}
.fce{color:rgb(192,0,0);}
.fc9{color:rgb(38,38,38);}
.fc2{color:rgb(74,102,172);}
.fc3{color:rgb(36,40,82);}
.fc1a{color:rgb(247,150,70);}
.fc7{color:rgb(66,73,150);}
.fcc{color:rgb(0,112,192);}
.fc5{color:rgb(255,112,1);}
.fc16{color:rgb(255,0,0);}
.fc8{color:rgb(148,84,195);}
.fca{color:rgb(7,44,98);}
.fcb{color:rgb(31,95,160);}
.fs1a{font-size:48.000000px;}
.fs19{font-size:64.000200px;}
.fs17{font-size:72.000000px;}
.fs18{font-size:78.000000px;}
.fs16{font-size:84.000000px;}
.fs11{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fs3{font-size:116.757000px;}
.fs2{font-size:120.000000px;}
.fs14{font-size:132.000000px;}
.fs1{font-size:140.107800px;}
.fs9{font-size:144.000000px;}
.fs12{font-size:156.000000px;}
.fsd{font-size:168.000000px;}
.fs4{font-size:180.000000px;}
.fsc{font-size:192.000000px;}
.fs10{font-size:216.000000px;}
.fs1c{font-size:228.000000px;}
.fs1b{font-size:233.513400px;}
.fsf{font-size:240.000000px;}
.fs1d{font-size:246.000000px;}
.fs15{font-size:258.000000px;}
.fs8{font-size:264.000000px;}
.fs13{font-size:280.216200px;}
.fs5{font-size:288.000000px;}
.fsb{font-size:315.243000px;}
.fsa{font-size:354.000000px;}
.fs0{font-size:385.297200px;}
.fs7{font-size:432.000000px;}
.fse{font-size:1200.000000px;}
.y15f{bottom:-22.602450px;}
.ydb{bottom:-11.381400px;}
.yf0{bottom:-9.053250px;}
.ye9{bottom:-4.470450px;}
.y0{bottom:0.000000px;}
.yeb{bottom:0.091050px;}
.ydd{bottom:0.235050px;}
.yf2{bottom:0.235950px;}
.yd9{bottom:0.236100px;}
.yee{bottom:0.236250px;}
.yd7{bottom:0.236700px;}
.y159{bottom:0.262950px;}
.y15b{bottom:0.285450px;}
.y11a{bottom:3.207150px;}
.ye7{bottom:3.536550px;}
.ye5{bottom:3.742050px;}
.y157{bottom:6.415950px;}
.y15d{bottom:8.019000px;}
.y55{bottom:12.721800px;}
.y197{bottom:13.433250px;}
.y8{bottom:13.859850px;}
.y92{bottom:15.800100px;}
.y95{bottom:17.186250px;}
.y7{bottom:18.442350px;}
.y56{bottom:19.849800px;}
.y1b{bottom:19.857300px;}
.yc3{bottom:19.868850px;}
.ya1{bottom:22.895250px;}
.ya5{bottom:23.543400px;}
.ya2{bottom:24.487800px;}
.yc7{bottom:39.221850px;}
.y91{bottom:44.792100px;}
.y36{bottom:76.561350px;}
.ya0{bottom:77.657700px;}
.y1c{bottom:78.549300px;}
.yae{bottom:78.900000px;}
.y111{bottom:85.757100px;}
.ycd{bottom:88.591800px;}
.ya4{bottom:93.221850px;}
.y4c{bottom:97.597500px;}
.y80{bottom:98.091750px;}
.y2f{bottom:98.814300px;}
.y6{bottom:100.536900px;}
.yf6{bottom:103.250850px;}
.y110{bottom:104.769600px;}
.y75{bottom:107.604450px;}
.yb4{bottom:114.892500px;}
.y168{bottom:114.894300px;}
.y145{bottom:116.520300px;}
.y18{bottom:121.673250px;}
.y11f{bottom:122.372250px;}
.y10f{bottom:123.255600px;}
.y7c{bottom:125.895600px;}
.y17b{bottom:126.767700px;}
.y185{bottom:127.461000px;}
.y144{bottom:136.014300px;}
.y7f{bottom:137.079750px;}
.yd8{bottom:140.883000px;}
.yd5{bottom:141.119100px;}
.y9f{bottom:141.149700px;}
.yad{bottom:141.900000px;}
.yf5{bottom:142.238850px;}
.yc2{bottom:144.799800px;}
.y7e{bottom:145.401750px;}
.y10e{bottom:147.258150px;}
.y35{bottom:150.577350px;}
.y184{bottom:152.451000px;}
.yda{bottom:152.500500px;}
.y5{bottom:153.546900px;}
.y4b{bottom:154.150050px;}
.y143{bottom:156.012300px;}
.y17{bottom:157.178250px;}
.yed{bottom:162.210000px;}
.ye3{bottom:162.446250px;}
.y14a{bottom:163.946700px;}
.y17a{bottom:163.991700px;}
.y54{bottom:169.760400px;}
.y6b{bottom:170.392650px;}
.y14d{bottom:170.397750px;}
.y182{bottom:171.133350px;}
.y16e{bottom:171.469200px;}
.yef{bottom:171.499500px;}
.y2e{bottom:172.800900px;}
.y74{bottom:173.596800px;}
.yc1{bottom:174.796800px;}
.y142{bottom:175.506300px;}
.y167{bottom:175.878300px;}
.y183{bottom:177.945000px;}
.y8d{bottom:179.139900px;}
.y14c{bottom:180.003000px;}
.y41{bottom:180.364350px;}
.y9e{bottom:183.152700px;}
.y7d{bottom:184.389750px;}
.y12b{bottom:186.370500px;}
.yb3{bottom:187.393500px;}
.y10d{bottom:195.255600px;}
.y141{bottom:195.504300px;}
.y5f{bottom:198.361950px;}
.y7b{bottom:199.407600px;}
.y179{bottom:201.215700px;}
.yfc{bottom:201.219300px;}
.y53{bottom:202.250400px;}
.y20{bottom:202.904250px;}
.yc0{bottom:204.307800px;}
.yac{bottom:204.900000px;}
.y62{bottom:205.842450px;}
.y73{bottom:206.116800px;}
.y4{bottom:207.036900px;}
.y16{bottom:208.181250px;}
.y196{bottom:208.998450px;}
.y13b{bottom:211.407300px;}
.y151{bottom:212.431350px;}
.y140{bottom:215.502300px;}
.y181{bottom:218.626350px;}
.y10c{bottom:219.258150px;}
.y11e{bottom:220.547850px;}
.y6a{bottom:223.882650px;}
.y34{bottom:224.089350px;}
.y15{bottom:225.866250px;}
.y2d{bottom:227.316900px;}
.y12a{bottom:231.856500px;}
.ycc{bottom:233.394750px;}
.y52{bottom:234.740400px;}
.y40{bottom:234.880350px;}
.y13f{bottom:234.996300px;}
.y166{bottom:236.898300px;}
.y5e{bottom:237.349950px;}
.y178{bottom:238.439700px;}
.y72{bottom:238.606800px;}
.yfb{bottom:240.207300px;}
.y8c{bottom:245.625900px;}
.y9d{bottom:246.137700px;}
.y195{bottom:251.988450px;}
.y149{bottom:255.288900px;}
.y27{bottom:256.095900px;}
.y16d{bottom:257.977200px;}
.y14b{bottom:258.272700px;}
.yb2{bottom:259.894500px;}
.y3{bottom:262.528350px;}
.y1f{bottom:262.916250px;}
.y61{bottom:263.551950px;}
.y7a{bottom:264.423600px;}
.y13a{bottom:264.927300px;}
.y180{bottom:266.632350px;}
.y10b{bottom:267.250050px;}
.y17c{bottom:267.458100px;}
.yab{bottom:267.900000px;}
.ya3{bottom:273.253950px;}
.y148{bottom:275.286900px;}
.y177{bottom:275.663700px;}
.y14{bottom:275.870250px;}
.y69{bottom:277.402650px;}
.y71{bottom:280.096800px;}
.y2c{bottom:280.318350px;}
.y150{bottom:285.439350px;}
.y10a{bottom:286.262550px;}
.y51{bottom:288.260400px;}
.y3f{bottom:288.892350px;}
.y147{bottom:294.780900px;}
.y194{bottom:294.978450px;}
.y165{bottom:297.378300px;}
.y129{bottom:297.838500px;}
.y33{bottom:298.069350px;}
.y1a{bottom:298.559250px;}
.ycb{bottom:299.376750px;}
.yc6{bottom:302.006250px;}
.y9c{bottom:309.122700px;}
.y109{bottom:309.253050px;}
.y8b{bottom:311.607900px;}
.y84{bottom:311.653050px;}
.yf4{bottom:311.830650px;}
.y60{bottom:312.559950px;}
.y176{bottom:312.695700px;}
.y139{bottom:318.417300px;}
.y50{bottom:320.750400px;}
.y70{bottom:321.106800px;}
.y13{bottom:325.874250px;}
.y108{bottom:328.265550px;}
.y26{bottom:329.103900px;}
.y2{bottom:329.187000px;}
.yaa{bottom:330.900000px;}
.yb1{bottom:331.900500px;}
.y135{bottom:331.917300px;}
.y5d{bottom:332.857950px;}
.y10{bottom:334.406700px;}
.y18a{bottom:335.613300px;}
.y79{bottom:337.935600px;}
.y193{bottom:338.478450px;}
.y175{bottom:341.687700px;}
.y128{bottom:343.324500px;}
.y3e{bottom:343.408350px;}
.yca{bottom:344.862750px;}
.y16c{bottom:344.971200px;}
.y83{bottom:350.641050px;}
.yf3{bottom:350.818650px;}
.y107{bottom:351.763050px;}
.y4f{bottom:352.760400px;}
.y2b{bottom:352.798350px;}
.y4a{bottom:353.146050px;}
.y19{bottom:354.061650px;}
.y90{bottom:354.624450px;}
.y164{bottom:354.869700px;}
.y11d{bottom:354.931800px;}
.y14f{bottom:358.447350px;}
.y17f{bottom:366.145800px;}
.y13e{bottom:366.254250px;}
.y138{bottom:371.427300px;}
.y32{bottom:371.581350px;}
.y5c{bottom:371.845950px;}
.y174{bottom:371.975700px;}
.y9b{bottom:372.614700px;}
.y124{bottom:375.250350px;}
.yc5{bottom:375.518250px;}
.y12{bottom:376.364250px;}
.y8a{bottom:378.093900px;}
.y192{bottom:381.468450px;}
.y134{bottom:381.927300px;}
.y15c{bottom:382.375500px;}
.y1e{bottom:383.481150px;}
.y68{bottom:383.902650px;}
.y146{bottom:386.981550px;}
.yf{bottom:387.416700px;}
.y189{bottom:388.623300px;}
.y155{bottom:390.397050px;}
.y39{bottom:393.037200px;}
.ya9{bottom:393.900000px;}
.y114{bottom:397.373400px;}
.y3d{bottom:397.924350px;}
.y106{bottom:400.260600px;}
.y25{bottom:401.583900px;}
.y78{bottom:402.447600px;}
.y163{bottom:402.875700px;}
.y6f{bottom:404.139900px;}
.yb0{bottom:404.401500px;}
.y4e{bottom:406.250400px;}
.y127{bottom:409.810500px;}
.y173{bottom:410.207700px;}
.yfa{bottom:410.678400px;}
.yc9{bottom:411.348750px;}
.y86{bottom:413.771400px;}
.ybd{bottom:417.730350px;}
.y45{bottom:417.858450px;}
.y49{bottom:419.632050px;}
.ybf{bottom:421.142850px;}
.y105{bottom:423.758100px;}
.y137{bottom:424.917300px;}
.y2a{bottom:425.806350px;}
.y8f{bottom:426.102450px;}
.y11{bottom:426.368250px;}
.y191{bottom:426.973500px;}
.ydc{bottom:428.602500px;}
.yd3{bottom:428.837550px;}
.y1{bottom:430.134900px;}
.y133{bottom:431.427300px;}
.y16b{bottom:431.479200px;}
.y17e{bottom:432.627300px;}
.y9a{bottom:435.599700px;}
.y67{bottom:437.392650px;}
.y4d{bottom:438.740400px;}
.yb{bottom:440.701500px;}
.ye{bottom:440.906700px;}
.y188{bottom:442.113300px;}
.y89{bottom:444.579900px;}
.y31{bottom:445.597350px;}
.y44{bottom:446.850450px;}
.y104{bottom:447.258150px;}
.yf1{bottom:447.294000px;}
.yde{bottom:447.529950px;}
.yc4{bottom:449.030250px;}
.yf9{bottom:449.666400px;}
.y1d{bottom:450.999150px;}
.y85{bottom:452.759400px;}
.y156{bottom:453.486000px;}
.y162{bottom:453.878250px;}
.y126{bottom:454.792500px;}
.y18d{bottom:455.680500px;}
.ya8{bottom:457.402500px;}
.y15a{bottom:459.616500px;}
.y158{bottom:459.639000px;}
.y154{bottom:459.922050px;}
.y5b{bottom:467.857950px;}
.y6e{bottom:470.625900px;}
.y123{bottom:473.266350px;}
.y24{bottom:474.591900px;}
.y82{bottom:475.332300px;}
.y43{bottom:475.338450px;}
.y77{bottom:475.959600px;}
.yaf{bottom:476.902500px;}
.yc8{bottom:477.330750px;}
.y136{bottom:478.407300px;}
.y190{bottom:478.957500px;}
.y132{bottom:481.407300px;}
.y3c{bottom:483.940350px;}
.y38{bottom:485.165550px;}
.y48{bottom:486.118050px;}
.yf8{bottom:487.862400px;}
.y18c{bottom:488.170500px;}
.y66{bottom:490.882650px;}
.y172{bottom:492.050550px;}
.yd{bottom:494.396700px;}
.y187{bottom:495.603300px;}
.y103{bottom:495.755550px;}
.y99{bottom:498.584700px;}
.y29{bottom:498.814350px;}
.y11c{bottom:499.660950px;}
.ya{bottom:502.368900px;}
.y42{bottom:504.330450px;}
.y5a{bottom:506.341950px;}
.ye6{bottom:507.658500px;}
.y88{bottom:510.561900px;}
.yea{bottom:511.104000px;}
.ye1{bottom:511.195050px;}
.y81{bottom:514.320300px;}
.y161{bottom:515.375700px;}
.ye8{bottom:515.665500px;}
.y18e{bottom:516.009600px;}
.y6d{bottom:516.111900px;}
.y102{bottom:518.765550px;}
.y13d{bottom:518.821500px;}
.y30{bottom:521.597400px;}
.yd2{bottom:523.701750px;}
.yf7{bottom:526.850400px;}
.y153{bottom:529.897050px;}
.y18f{bottom:530.473500px;}
.y171{bottom:537.032550px;}
.yd6{bottom:537.796500px;}
.yd4{bottom:538.033200px;}
.y76{bottom:540.939600px;}
.y18b{bottom:541.660500px;}
.y101{bottom:542.263050px;}
.ybc{bottom:542.929350px;}
.ya7{bottom:547.402500px;}
.y23{bottom:547.599900px;}
.ye4{bottom:551.448000px;}
.y47{bottom:552.100050px;}
.y15e{bottom:552.499500px;}
.ye0{bottom:555.190050px;}
.yec{bottom:556.489500px;}
.ye2{bottom:556.725600px;}
.y130{bottom:559.495200px;}
.y98{bottom:561.569700px;}
.y131{bottom:562.097400px;}
.y100{bottom:566.260650px;}
.yd1{bottom:570.693750px;}
.y122{bottom:571.282350px;}
.y9{bottom:571.747200px;}
.y12f{bottom:592.003200px;}
.y125{bottom:603.797550px;}
.yb9{bottom:614.351700px;}
.y118{bottom:615.178800px;}
.ybb{bottom:616.441350px;}
.y65{bottom:622.464150px;}
.y6c{bottom:623.782500px;}
.y3b{bottom:623.836500px;}
.y12e{bottom:624.511200px;}
.y28{bottom:624.636900px;}
.y14e{bottom:625.222650px;}
.y87{bottom:627.736500px;}
.y58{bottom:628.570500px;}
.y46{bottom:628.642500px;}
.ya6{bottom:629.615550px;}
.yfe{bottom:631.540800px;}
.y22{bottom:631.912050px;}
.y37{bottom:632.499600px;}
.y117{bottom:633.674850px;}
.y13c{bottom:635.104800px;}
.y16a{bottom:637.894950px;}
.y152{bottom:639.139950px;}
.y11b{bottom:640.510500px;}
.y97{bottom:643.109100px;}
.ycf{bottom:645.057750px;}
.ydf{bottom:649.252950px;}
.yb8{bottom:650.351700px;}
.y8e{bottom:650.405400px;}
.yd0{bottom:655.848900px;}
.y160{bottom:656.444400px;}
.yc{bottom:659.628150px;}
.y170{bottom:660.372000px;}
.y59{bottom:662.493300px;}
.y186{bottom:666.405000px;}
.ybe{bottom:667.647750px;}
.y121{bottom:673.085250px;}
.y3a{bottom:678.862500px;}
.yfd{bottom:680.548800px;}
.y17d{bottom:681.135150px;}
.y21{bottom:681.159450px;}
.y64{bottom:683.964150px;}
.yb7{bottom:686.351700px;}
.y12d{bottom:689.500200px;}
.yba{bottom:689.953350px;}
.y57{bottom:702.082500px;}
.y169{bottom:703.362450px;}
.yce{bottom:706.077750px;}
.y16f{bottom:709.380000px;}
.y96{bottom:716.621100px;}
.y12c{bottom:721.495200px;}
.yb6{bottom:722.351700px;}
.y113{bottom:729.927300px;}
.y120{bottom:734.090700px;}
.y94{bottom:736.932450px;}
.y63{bottom:744.984150px;}
.y119{bottom:750.549000px;}
.y116{bottom:753.756150px;}
.y112{bottom:755.919300px;}
.yb5{bottom:758.351700px;}
.y93{bottom:768.927450px;}
.yff{bottom:791.751150px;}
.y115{bottom:794.256150px;}
.h29{height:1.404000px;}
.h24{height:2.124000px;}
.h32{height:2.932500px;}
.h2c{height:4.450500px;}
.h3c{height:6.612000px;}
.h3d{height:6.789000px;}
.h3f{height:7.984500px;}
.h2b{height:9.289500px;}
.h23{height:11.617500px;}
.h2a{height:13.555500px;}
.h25{height:13.738500px;}
.h22{height:13.740000px;}
.h28{height:18.087000px;}
.h27{height:18.118500px;}
.h33{height:34.992188px;}
.h3b{height:36.253500px;}
.h3e{height:38.869500px;}
.h31{height:45.812643px;}
.h2d{height:50.062500px;}
.h38{height:51.679688px;}
.h2e{height:55.986328px;}
.h21{height:58.406250px;}
.h30{height:58.715100px;}
.h26{height:60.292969px;}
.h1d{height:65.812500px;}
.h42{height:66.656250px;}
.h15{height:66.750000px;}
.h16{height:68.906250px;}
.h41{height:72.938250px;}
.h43{height:73.706250px;}
.hb{height:73.933594px;}
.h2f{height:75.093750px;}
.h8{height:77.519531px;}
.h17{height:83.437500px;}
.h5{height:86.132812px;}
.h47{height:87.480469px;}
.h39{height:91.234688px;}
.h36{height:91.875000px;}
.h4{height:96.290319px;}
.h3{height:98.964844px;}
.h18{height:100.125000px;}
.h1f{height:101.062500px;}
.hd{height:103.359375px;}
.h46{height:104.976562px;}
.h1c{height:111.972656px;}
.h2{height:115.547888px;}
.h11{height:120.585938px;}
.h3a{height:125.156250px;}
.h1a{height:128.625000px;}
.h6{height:129.199219px;}
.h10{height:137.812500px;}
.h9{height:150.743531px;}
.h35{height:155.039062px;}
.h19{height:158.343750px;}
.h37{height:163.652344px;}
.h40{height:171.046875px;}
.h44{height:172.265625px;}
.h45{height:176.572266px;}
.h14{height:178.136719px;}
.h1b{height:189.492188px;}
.h34{height:192.580143px;}
.h13{height:197.929688px;}
.h20{height:212.774414px;}
.hc{height:217.722656px;}
.h1e{height:231.096270px;}
.h7{height:237.515625px;}
.hf{height:259.983119px;}
.ha{height:287.929688px;}
.he{height:291.946289px;}
.h1{height:317.757310px;}
.h0{height:810.000000px;}
.h12{height:861.328125px;}
.w6{width:5.016000px;}
.wb{width:6.526500px;}
.w5{width:16.381500px;}
.w7{width:23.956500px;}
.wa{width:26.563500px;}
.w3{width:50.365500px;}
.w2{width:58.639500px;}
.w1{width:65.527500px;}
.wd{width:81.067500px;}
.w4{width:89.487000px;}
.w9{width:240.057000px;}
.w8{width:325.144500px;}
.wc{width:704.905500px;}
.w0{width:1440.000000px;}
.xae{left:-1001.213400px;}
.x74{left:-430.386900px;}
.xa9{left:-149.010900px;}
.xab{left:-2.724900px;}
.x6d{left:-1.445100px;}
.x0{left:0.000000px;}
.x23{left:10.800000px;}
.x34{left:14.953800px;}
.x7{left:24.300000px;}
.x35{left:30.307950px;}
.x91{left:40.836900px;}
.xc1{left:72.256500px;}
.xa7{left:78.287100px;}
.xb2{left:87.157950px;}
.xaf{left:110.666400px;}
.x48{left:118.901700px;}
.x61{left:120.315750px;}
.x26{left:122.179200px;}
.x4c{left:124.576200px;}
.x60{left:126.147750px;}
.x29{left:128.491200px;}
.x2b{left:129.600000px;}
.x27{left:130.891200px;}
.x4d{left:133.229250px;}
.x1{left:134.614200px;}
.x19{left:140.400000px;}
.x70{left:141.413100px;}
.x69{left:145.382550px;}
.x84{left:148.211700px;}
.xc{left:149.657100px;}
.x8{left:152.357100px;}
.x52{left:153.375000px;}
.x50{left:156.429450px;}
.x42{left:159.709950px;}
.xb6{left:163.089000px;}
.x62{left:166.323750px;}
.x2e{left:169.328700px;}
.xb5{left:170.670000px;}
.x38{left:174.999150px;}
.x2c{left:183.600000px;}
.x1a{left:186.112200px;}
.x51{left:187.732500px;}
.x36{left:188.999850px;}
.xa5{left:196.778850px;}
.x47{left:201.144300px;}
.x49{left:202.900800px;}
.x25{left:205.063950px;}
.x2f{left:208.824000px;}
.x37{left:210.569850px;}
.x18{left:212.210550px;}
.x28{left:217.171200px;}
.x8b{left:220.548150px;}
.xa8{left:227.298000px;}
.x39{left:228.999150px;}
.x30{left:230.460000px;}
.xb1{left:233.162700px;}
.x89{left:236.532150px;}
.x1b{left:242.210400px;}
.x45{left:246.547500px;}
.x22{left:254.057100px;}
.x1c{left:255.110400px;}
.xa6{left:256.275600px;}
.xb7{left:262.944000px;}
.x68{left:264.300000px;}
.x8c{left:267.220650px;}
.x8d{left:268.459500px;}
.x15{left:272.734350px;}
.xb8{left:278.419800px;}
.x82{left:279.492150px;}
.x40{left:286.685550px;}
.xb{left:303.755250px;}
.x3f{left:307.169550px;}
.x2a{left:319.004700px;}
.xb9{left:321.717450px;}
.x44{left:323.999850px;}
.x83{left:330.720150px;}
.x99{left:335.718300px;}
.x9a{left:339.534300px;}
.x9b{left:342.396300px;}
.x98{left:344.058300px;}
.xbf{left:346.229550px;}
.x46{left:347.989500px;}
.x81{left:357.316650px;}
.x5{left:364.135500px;}
.x9c{left:366.084300px;}
.x80{left:377.800650px;}
.x14{left:379.654350px;}
.x24{left:380.973450px;}
.xbe{left:392.429550px;}
.x66{left:409.308000px;}
.xb0{left:421.657050px;}
.x13{left:428.210400px;}
.xbd{left:452.069550px;}
.xaa{left:471.574500px;}
.x3c{left:486.449400px;}
.x3b{left:489.185400px;}
.x1d{left:492.468450px;}
.xac{left:503.658000px;}
.x9d{left:515.721000px;}
.x4{left:520.075500px;}
.xa1{left:526.244550px;}
.xa0{left:529.730550px;}
.x9f{left:531.080550px;}
.xd{left:537.023250px;}
.x9e{left:538.874550px;}
.x3e{left:544.168350px;}
.x9{left:545.785050px;}
.x88{left:557.556600px;}
.x73{left:561.000000px;}
.x3d{left:564.400350px;}
.xbb{left:577.334550px;}
.x75{left:579.279000px;}
.x76{left:586.117500px;}
.xbc{left:599.042550px;}
.x92{left:602.857200px;}
.xba{left:634.540950px;}
.x93{left:643.345200px;}
.x4a{left:650.028000px;}
.xc0{left:657.239550px;}
.x63{left:672.503850px;}
.x20{left:683.248950px;}
.x5f{left:690.430200px;}
.xa2{left:700.329150px;}
.xa3{left:721.505850px;}
.x7f{left:734.985300px;}
.x7e{left:755.217300px;}
.x87{left:756.385200px;}
.x85{left:769.813950px;}
.x86{left:781.027200px;}
.x6b{left:796.235400px;}
.x6c{left:797.829900px;}
.x6e{left:799.275000px;}
.x94{left:805.395450px;}
.x7d{left:811.437900px;}
.x7c{left:814.173900px;}
.x96{left:818.760450px;}
.xb4{left:820.761900px;}
.x1e{left:826.240950px;}
.x97{left:830.154450px;}
.x3{left:834.025500px;}
.x95{left:846.408450px;}
.xb3{left:868.740000px;}
.x17{left:871.572900px;}
.x71{left:881.389200px;}
.x77{left:882.835500px;}
.x6a{left:885.420600px;}
.x31{left:887.820000px;}
.x3a{left:889.904250px;}
.x72{left:893.291250px;}
.x78{left:894.736500px;}
.x8e{left:905.842350px;}
.x5e{left:908.308350px;}
.xf{left:911.189250px;}
.x5a{left:915.252750px;}
.x5b{left:922.073850px;}
.x5d{left:932.824350px;}
.x43{left:937.548000px;}
.x41{left:940.493700px;}
.x21{left:950.908950px;}
.x53{left:961.644000px;}
.x33{left:964.147500px;}
.x8a{left:965.542050px;}
.x6f{left:970.574400px;}
.x59{left:971.628600px;}
.x65{left:972.769350px;}
.x64{left:974.700000px;}
.xe{left:990.812250px;}
.x90{left:992.372400px;}
.xa{left:993.383100px;}
.x7b{left:1001.594250px;}
.x8f{left:1005.405000px;}
.x10{left:1010.144250px;}
.x16{left:1011.900900px;}
.x7a{left:1023.554250px;}
.x2{left:1026.408150px;}
.x6{left:1033.825500px;}
.x1f{left:1053.040950px;}
.xa4{left:1062.180600px;}
.x12{left:1075.167300px;}
.xad{left:1079.500500px;}
.x4e{left:1083.564000px;}
.x79{left:1091.820000px;}
.x54{left:1104.562500px;}
.x67{left:1128.750000px;}
.x56{left:1137.798600px;}
.x11{left:1141.144800px;}
.x58{left:1146.978600px;}
.x4b{left:1150.567500px;}
.x55{left:1161.828600px;}
.x32{left:1163.676000px;}
.x5c{left:1165.953750px;}
.x4f{left:1176.503850px;}
.x2d{left:1224.389100px;}
.x57{left:1272.798600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.584000pt;}
.v2{vertical-align:7.691200pt;}
.v3{vertical-align:35.160000pt;}
.v1{vertical-align:65.088000pt;}
.ls58{letter-spacing:-25.344000pt;}
.ls5f{letter-spacing:-21.546667pt;}
.ls5d{letter-spacing:-17.783467pt;}
.ls4d{letter-spacing:-13.201067pt;}
.lsc5{letter-spacing:-11.626667pt;}
.ls5a{letter-spacing:-10.918400pt;}
.ls18{letter-spacing:-10.444800pt;}
.ls23{letter-spacing:-10.376533pt;}
.ls77{letter-spacing:-8.534400pt;}
.ls75{letter-spacing:-7.748267pt;}
.ls78{letter-spacing:-7.705600pt;}
.ls79{letter-spacing:-7.270400pt;}
.ls90{letter-spacing:-7.017600pt;}
.ls91{letter-spacing:-6.894933pt;}
.ls61{letter-spacing:-6.470400pt;}
.lsad{letter-spacing:-6.280533pt;}
.ls93{letter-spacing:-5.990400pt;}
.lsca{letter-spacing:-5.965867pt;}
.ls3d{letter-spacing:-5.760000pt;}
.ls94{letter-spacing:-5.510400pt;}
.ls1f{letter-spacing:-5.349333pt;}
.lsa7{letter-spacing:-5.171200pt;}
.ls8f{letter-spacing:-4.915200pt;}
.ls3e{letter-spacing:-4.586667pt;}
.ls54{letter-spacing:-4.373333pt;}
.ls9f{letter-spacing:-4.056000pt;}
.ls2b{letter-spacing:-3.584000pt;}
.ls71{letter-spacing:-3.072000pt;}
.ls62{letter-spacing:-3.033600pt;}
.lsb2{letter-spacing:-2.995200pt;}
.ls6b{letter-spacing:-2.935467pt;}
.ls30{letter-spacing:-2.918400pt;}
.lsac{letter-spacing:-2.905945pt;}
.lsa{letter-spacing:-2.892800pt;}
.ls95{letter-spacing:-2.884267pt;}
.ls70{letter-spacing:-2.880000pt;}
.ls8e{letter-spacing:-2.852267pt;}
.ls41{letter-spacing:-2.841600pt;}
.lsc1{letter-spacing:-2.820800pt;}
.ls3a{letter-spacing:-2.816000pt;}
.ls59{letter-spacing:-2.790400pt;}
.ls3c{letter-spacing:-2.773333pt;}
.ls5c{letter-spacing:-2.747733pt;}
.lsb9{letter-spacing:-2.745600pt;}
.ls3{letter-spacing:-2.739891pt;}
.ls1c{letter-spacing:-2.739200pt;}
.ls7f{letter-spacing:-2.730667pt;}
.ls40{letter-spacing:-2.726400pt;}
.ls7a{letter-spacing:-2.713600pt;}
.ls63{letter-spacing:-2.688000pt;}
.ls6d{letter-spacing:-2.662400pt;}
.ls9{letter-spacing:-2.585600pt;}
.ls39{letter-spacing:-2.560000pt;}
.ls72{letter-spacing:-2.553600pt;}
.ls1b{letter-spacing:-2.534400pt;}
.lsc2{letter-spacing:-2.522667pt;}
.ls2a{letter-spacing:-2.521944pt;}
.lsba{letter-spacing:-2.508800pt;}
.ls45{letter-spacing:-2.496000pt;}
.ls81{letter-spacing:-2.490811pt;}
.ls8{letter-spacing:-2.457600pt;}
.ls28{letter-spacing:-2.440533pt;}
.ls46{letter-spacing:-2.438400pt;}
.lsc4{letter-spacing:-2.389333pt;}
.ls27{letter-spacing:-2.355200pt;}
.lsc8{letter-spacing:-2.323200pt;}
.lsb{letter-spacing:-2.304000pt;}
.ls31{letter-spacing:-2.284800pt;}
.ls84{letter-spacing:-2.241730pt;}
.ls33{letter-spacing:-2.241728pt;}
.ls7c{letter-spacing:-1.941333pt;}
.ls8d{letter-spacing:-1.792000pt;}
.ls85{letter-spacing:-1.713067pt;}
.ls67{letter-spacing:-1.638400pt;}
.lsa0{letter-spacing:-1.636267pt;}
.ls35{letter-spacing:-1.553067pt;}
.ls2f{letter-spacing:-1.536000pt;}
.lsa4{letter-spacing:-1.490667pt;}
.ls6a{letter-spacing:-1.446400pt;}
.ls37{letter-spacing:-1.305600pt;}
.ls50{letter-spacing:-1.226667pt;}
.ls9d{letter-spacing:-1.126400pt;}
.ls7d{letter-spacing:-1.109333pt;}
.lsb0{letter-spacing:-1.084800pt;}
.ls12{letter-spacing:-1.056000pt;}
.lsb7{letter-spacing:-0.832000pt;}
.lsaa{letter-spacing:-0.739558pt;}
.lsa9{letter-spacing:-0.614402pt;}
.ls53{letter-spacing:-0.458667pt;}
.ls64{letter-spacing:-0.373333pt;}
.ls57{letter-spacing:-0.352000pt;}
.ls26{letter-spacing:-0.324267pt;}
.ls4f{letter-spacing:-0.298667pt;}
.lsc7{letter-spacing:-0.297600pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls7b{letter-spacing:-0.277333pt;}
.ls42{letter-spacing:-0.268800pt;}
.ls66{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.249600pt;}
.ls13{letter-spacing:-0.245333pt;}
.lsb1{letter-spacing:-0.240000pt;}
.ls8b{letter-spacing:-0.234667pt;}
.ls38{letter-spacing:-0.230400pt;}
.ls8c{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.220800pt;}
.ls55{letter-spacing:-0.213333pt;}
.ls6e{letter-spacing:-0.209067pt;}
.ls88{letter-spacing:-0.199467pt;}
.ls6f{letter-spacing:-0.194133pt;}
.lsbe{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.170667pt;}
.ls69{letter-spacing:-0.166400pt;}
.ls65{letter-spacing:-0.149333pt;}
.ls9e{letter-spacing:-0.138667pt;}
.ls36{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.124800pt;}
.ls51{letter-spacing:-0.106667pt;}
.ls68{letter-spacing:-0.102400pt;}
.lsbf{letter-spacing:-0.089600pt;}
.ls11{letter-spacing:-0.086400pt;}
.lsbc{letter-spacing:-0.080000pt;}
.ls4b{letter-spacing:-0.076800pt;}
.ls2e{letter-spacing:-0.068267pt;}
.lsa2{letter-spacing:-0.062400pt;}
.ls56{letter-spacing:-0.053333pt;}
.ls9c{letter-spacing:-0.051200pt;}
.ls49{letter-spacing:-0.042667pt;}
.lsd{letter-spacing:-0.019200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.012800pt;}
.ls17{letter-spacing:0.019200pt;}
.ls98{letter-spacing:0.034667pt;}
.ls86{letter-spacing:0.035200pt;}
.lsb6{letter-spacing:0.038400pt;}
.ls74{letter-spacing:0.046933pt;}
.ls22{letter-spacing:0.051200pt;}
.lsa5{letter-spacing:0.055467pt;}
.lscb{letter-spacing:0.067200pt;}
.ls87{letter-spacing:0.070400pt;}
.ls92{letter-spacing:0.074667pt;}
.lsc9{letter-spacing:0.082133pt;}
.ls47{letter-spacing:0.085333pt;}
.ls5e{letter-spacing:0.089600pt;}
.ls8a{letter-spacing:0.117333pt;}
.ls7e{letter-spacing:0.119467pt;}
.ls99{letter-spacing:0.124800pt;}
.ls5b{letter-spacing:0.128000pt;}
.ls89{letter-spacing:0.129067pt;}
.ls9b{letter-spacing:0.138667pt;}
.ls44{letter-spacing:0.149333pt;}
.lsc6{letter-spacing:0.153067pt;}
.lsbb{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.163200pt;}
.ls43{letter-spacing:0.164267pt;}
.lsa3{letter-spacing:0.166400pt;}
.ls2c{letter-spacing:0.170667pt;}
.lsa1{letter-spacing:0.173333pt;}
.lsaf{letter-spacing:0.179200pt;}
.ls4a{letter-spacing:0.187733pt;}
.lsb4{letter-spacing:0.192000pt;}
.ls48{letter-spacing:0.196267pt;}
.ls1e{letter-spacing:0.204800pt;}
.lsa8{letter-spacing:0.211200pt;}
.ls52{letter-spacing:0.213333pt;}
.ls96{letter-spacing:0.217600pt;}
.lsae{letter-spacing:0.224000pt;}
.ls25{letter-spacing:0.256000pt;}
.ls73{letter-spacing:0.258133pt;}
.lsa6{letter-spacing:0.263467pt;}
.ls6c{letter-spacing:0.268800pt;}
.lsc3{letter-spacing:0.281600pt;}
.ls76{letter-spacing:0.288000pt;}
.ls3f{letter-spacing:0.298667pt;}
.ls34{letter-spacing:0.307200pt;}
.ls4e{letter-spacing:0.313600pt;}
.ls14{letter-spacing:0.316800pt;}
.ls4c{letter-spacing:0.320000pt;}
.lsb8{letter-spacing:0.324267pt;}
.ls24{letter-spacing:0.341333pt;}
.ls19{letter-spacing:0.345600pt;}
.lsb5{letter-spacing:0.373333pt;}
.ls21{letter-spacing:0.375467pt;}
.ls5{letter-spacing:7.381333pt;}
.ls1a{letter-spacing:8.612267pt;}
.lsc0{letter-spacing:8.832000pt;}
.ls4{letter-spacing:10.087762pt;}
.ls0{letter-spacing:10.506667pt;}
.ls1{letter-spacing:10.560000pt;}
.ls9a{letter-spacing:16.085333pt;}
.ls15{letter-spacing:21.984000pt;}
.ls7{letter-spacing:22.176000pt;}
.ls83{letter-spacing:23.114667pt;}
.ls29{letter-spacing:23.893333pt;}
.lsb3{letter-spacing:24.106667pt;}
.ls32{letter-spacing:31.488000pt;}
.ls80{letter-spacing:39.040000pt;}
.ls20{letter-spacing:39.048533pt;}
.lsbd{letter-spacing:42.816000pt;}
.ls3b{letter-spacing:42.880000pt;}
.ls60{letter-spacing:44.160000pt;}
.ls82{letter-spacing:49.749333pt;}
.lsab{letter-spacing:98.261333pt;}
.ls97{letter-spacing:122.789333pt;}
.ls6{letter-spacing:1430.112000pt;}
.ws0{word-spacing:-169.188282pt;}
.ws1{word-spacing:-166.448390pt;}
.ws29{word-spacing:-150.096000pt;}
.ws97{word-spacing:-149.333333pt;}
.ws2a{word-spacing:-138.426704pt;}
.ws43{word-spacing:-136.184976pt;}
.ws35{word-spacing:-135.904760pt;}
.ws4f{word-spacing:-126.464000pt;}
.ws23{word-spacing:-124.537600pt;}
.wsc1{word-spacing:-124.160000pt;}
.wsb{word-spacing:-124.006400pt;}
.ws102{word-spacing:-123.955200pt;}
.ws52{word-spacing:-123.904000pt;}
.wsc2{word-spacing:-123.878400pt;}
.ws96{word-spacing:-123.801600pt;}
.wsaa{word-spacing:-123.750400pt;}
.ws7c{word-spacing:-123.673600pt;}
.ws53{word-spacing:-123.648000pt;}
.wse{word-spacing:-123.571200pt;}
.wsf8{word-spacing:-123.468800pt;}
.wsb2{word-spacing:-123.046047pt;}
.wsb6{word-spacing:-120.804317pt;}
.wsb3{word-spacing:-120.555236pt;}
.wsce{word-spacing:-120.473600pt;}
.wsa9{word-spacing:-119.193600pt;}
.wsa8{word-spacing:-118.758400pt;}
.wsa3{word-spacing:-117.122133pt;}
.wsa4{word-spacing:-116.910933pt;}
.ws24{word-spacing:-113.390933pt;}
.ws100{word-spacing:-113.179733pt;}
.ws10b{word-spacing:-110.768000pt;}
.ws10a{word-spacing:-110.469867pt;}
.ws113{word-spacing:-109.049067pt;}
.ws114{word-spacing:-108.896000pt;}
.wscb{word-spacing:-106.273067pt;}
.ws55{word-spacing:-102.826667pt;}
.ws54{word-spacing:-102.613333pt;}
.wsef{word-spacing:-102.538329pt;}
.ws7b{word-spacing:-101.120000pt;}
.wsfb{word-spacing:-100.928000pt;}
.ws57{word-spacing:-100.800000pt;}
.wsf0{word-spacing:-99.632384pt;}
.ws56{word-spacing:-99.626667pt;}
.wsf2{word-spacing:-95.923200pt;}
.ws10d{word-spacing:-95.616000pt;}
.ws10c{word-spacing:-95.328000pt;}
.ws9f{word-spacing:-94.848000pt;}
.ws112{word-spacing:-94.613333pt;}
.ws61{word-spacing:-92.409600pt;}
.ws60{word-spacing:-92.352000pt;}
.wsa2{word-spacing:-92.294400pt;}
.wsa1{word-spacing:-92.160000pt;}
.ws58{word-spacing:-92.121600pt;}
.ws59{word-spacing:-92.006400pt;}
.ws88{word-spacing:-91.814400pt;}
.ws87{word-spacing:-88.377600pt;}
.ws2b{word-spacing:-85.367467pt;}
.ws2f{word-spacing:-85.333333pt;}
.ws101{word-spacing:-85.316267pt;}
.ws45{word-spacing:-85.299200pt;}
.ws30{word-spacing:-85.248000pt;}
.ws3a{word-spacing:-85.162667pt;}
.ws2c{word-spacing:-85.043200pt;}
.ws2e{word-spacing:-84.992000pt;}
.ws3d{word-spacing:-84.923733pt;}
.ws31{word-spacing:-84.667733pt;}
.wsca{word-spacing:-84.309333pt;}
.ws85{word-spacing:-83.840000pt;}
.ws3f{word-spacing:-83.456000pt;}
.ws32{word-spacing:-82.636800pt;}
.ws33{word-spacing:-82.551467pt;}
.ws42{word-spacing:-82.073600pt;}
.ws10e{word-spacing:-81.920000pt;}
.wsaf{word-spacing:-81.749333pt;}
.wsb1{word-spacing:-81.578667pt;}
.ws82{word-spacing:-81.561600pt;}
.wsd2{word-spacing:-81.425067pt;}
.ws95{word-spacing:-81.373867pt;}
.ws44{word-spacing:-80.561062pt;}
.ws36{word-spacing:-80.158381pt;}
.ws34{word-spacing:-79.699657pt;}
.wsa{word-spacing:-79.680000pt;}
.wsc9{word-spacing:-79.394133pt;}
.wsf1{word-spacing:-78.028800pt;}
.ws6a{word-spacing:-74.681600pt;}
.ws5d{word-spacing:-74.666667pt;}
.ws99{word-spacing:-74.636800pt;}
.ws2d{word-spacing:-74.615467pt;}
.ws89{word-spacing:-74.532267pt;}
.ws5c{word-spacing:-74.517333pt;}
.wsb0{word-spacing:-74.487467pt;}
.ws5f{word-spacing:-74.368000pt;}
.ws8b{word-spacing:-74.218667pt;}
.ws9c{word-spacing:-74.173867pt;}
.wsc5{word-spacing:-74.144000pt;}
.ws5a{word-spacing:-74.099200pt;}
.ws6b{word-spacing:-74.069333pt;}
.ws8a{word-spacing:-73.994667pt;}
.wsc6{word-spacing:-72.576000pt;}
.ws41{word-spacing:-72.083200pt;}
.ws3{word-spacing:-71.610653pt;}
.wsb5{word-spacing:-71.601985pt;}
.wsc7{word-spacing:-71.515733pt;}
.ws11d{word-spacing:-71.296000pt;}
.ws11c{word-spacing:-71.168000pt;}
.ws1b{word-spacing:-69.792000pt;}
.wsac{word-spacing:-69.056000pt;}
.ws51{word-spacing:-69.017600pt;}
.ws7a{word-spacing:-68.864000pt;}
.wsd{word-spacing:-68.659200pt;}
.wsc3{word-spacing:-68.454400pt;}
.ws50{word-spacing:-68.352000pt;}
.wsc{word-spacing:-68.224000pt;}
.wsae{word-spacing:-67.946667pt;}
.ws79{word-spacing:-67.840000pt;}
.wsad{word-spacing:-67.114667pt;}
.wsc0{word-spacing:-67.072000pt;}
.ws83{word-spacing:-66.525867pt;}
.ws27{word-spacing:-63.756800pt;}
.ws25{word-spacing:-63.744000pt;}
.ws109{word-spacing:-63.654400pt;}
.ws92{word-spacing:-63.577600pt;}
.ws94{word-spacing:-63.488000pt;}
.ws5{word-spacing:-63.253333pt;}
.ws4{word-spacing:-63.200000pt;}
.ws93{word-spacing:-62.297600pt;}
.ws2{word-spacing:-61.522892pt;}
.wsb4{word-spacing:-61.388800pt;}
.ws69{word-spacing:-61.166933pt;}
.ws6{word-spacing:-60.074667pt;}
.ws11f{word-spacing:-59.306667pt;}
.wsbc{word-spacing:-58.561067pt;}
.wsb9{word-spacing:-58.432000pt;}
.wsbb{word-spacing:-58.232533pt;}
.wsbf{word-spacing:-58.197333pt;}
.wsb7{word-spacing:-56.718933pt;}
.wsec{word-spacing:-56.274665pt;}
.wsed{word-spacing:-56.149509pt;}
.ws106{word-spacing:-53.792000pt;}
.ws6f{word-spacing:-53.333333pt;}
.wsf9{word-spacing:-53.312000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws74{word-spacing:-53.066667pt;}
.ws73{word-spacing:-52.906667pt;}
.ws19{word-spacing:-52.874667pt;}
.ws7e{word-spacing:-52.825600pt;}
.wsa0{word-spacing:-51.801600pt;}
.ws7{word-spacing:-51.269296pt;}
.ws9d{word-spacing:-51.072000pt;}
.ws9e{word-spacing:-50.880000pt;}
.ws108{word-spacing:-48.153600pt;}
.ws1a{word-spacing:-48.124800pt;}
.ws10{word-spacing:-47.971200pt;}
.ws1d{word-spacing:-47.827200pt;}
.ws11{word-spacing:-47.808000pt;}
.ws12{word-spacing:-47.788800pt;}
.ws14{word-spacing:-47.683200pt;}
.ws107{word-spacing:-47.616000pt;}
.ws13{word-spacing:-47.587200pt;}
.wsf7{word-spacing:-47.568000pt;}
.ws115{word-spacing:-47.510400pt;}
.ws38{word-spacing:-47.274667pt;}
.ws46{word-spacing:-47.172267pt;}
.ws3e{word-spacing:-46.728533pt;}
.wsf6{word-spacing:-46.723200pt;}
.ws39{word-spacing:-46.677333pt;}
.ws3c{word-spacing:-46.592000pt;}
.ws48{word-spacing:-46.421333pt;}
.ws3b{word-spacing:-46.250667pt;}
.ws49{word-spacing:-46.216533pt;}
.wsf{word-spacing:-45.504000pt;}
.ws116{word-spacing:-45.484800pt;}
.ws47{word-spacing:-43.417600pt;}
.ws67{word-spacing:-42.496000pt;}
.ws111{word-spacing:-42.240000pt;}
.ws5b{word-spacing:-41.350400pt;}
.wsd3{word-spacing:-41.051733pt;}
.ws9a{word-spacing:-41.006933pt;}
.ws84{word-spacing:-40.708267pt;}
.ws40{word-spacing:-40.584533pt;}
.ws98{word-spacing:-39.692800pt;}
.ws37{word-spacing:-39.594667pt;}
.ws103{word-spacing:-39.520000pt;}
.ws104{word-spacing:-39.360000pt;}
.ws9b{word-spacing:-39.349333pt;}
.ws105{word-spacing:-39.280000pt;}
.wsa6{word-spacing:-39.273600pt;}
.wsd9{word-spacing:-37.333333pt;}
.ws117{word-spacing:-37.266133pt;}
.wsd1{word-spacing:-37.184000pt;}
.wsf3{word-spacing:-36.960000pt;}
.wsf5{word-spacing:-36.915200pt;}
.wsf4{word-spacing:-36.586667pt;}
.ws11e{word-spacing:-35.648000pt;}
.wscc{word-spacing:-35.601067pt;}
.ws28{word-spacing:-35.584000pt;}
.ws4b{word-spacing:-35.072000pt;}
.ws4e{word-spacing:-34.969600pt;}
.ws4a{word-spacing:-34.816000pt;}
.wse6{word-spacing:-34.791467pt;}
.wsa5{word-spacing:-34.747733pt;}
.wsde{word-spacing:-34.701333pt;}
.wse2{word-spacing:-34.694400pt;}
.wse0{word-spacing:-34.652800pt;}
.ws4d{word-spacing:-34.611200pt;}
.wse4{word-spacing:-34.583467pt;}
.wsdb{word-spacing:-34.562667pt;}
.wse5{word-spacing:-34.528000pt;}
.wse1{word-spacing:-34.465600pt;}
.wsda{word-spacing:-34.389333pt;}
.wse3{word-spacing:-33.037333pt;}
.wsdd{word-spacing:-32.891733pt;}
.ws4c{word-spacing:-32.332800pt;}
.wsfd{word-spacing:-31.910400pt;}
.wsfc{word-spacing:-31.872000pt;}
.ws91{word-spacing:-31.795200pt;}
.wsd0{word-spacing:-31.673600pt;}
.ws7f{word-spacing:-31.616000pt;}
.ws7d{word-spacing:-31.488000pt;}
.ws90{word-spacing:-31.385600pt;}
.ws80{word-spacing:-31.360000pt;}
.wsff{word-spacing:-31.040000pt;}
.wsdc{word-spacing:-30.472000pt;}
.wsfa{word-spacing:-30.186667pt;}
.ws26{word-spacing:-29.875200pt;}
.ws6d{word-spacing:-29.226667pt;}
.ws86{word-spacing:-29.120000pt;}
.wsbe{word-spacing:-28.981333pt;}
.wsba{word-spacing:-28.934400pt;}
.ws71{word-spacing:-28.906667pt;}
.wsb8{word-spacing:-28.899200pt;}
.wsbd{word-spacing:-28.864000pt;}
.ws8c{word-spacing:-28.576000pt;}
.ws6c{word-spacing:-26.880000pt;}
.ws77{word-spacing:-26.240000pt;}
.ws78{word-spacing:-26.186667pt;}
.ws76{word-spacing:-25.994667pt;}
.ws75{word-spacing:-25.888000pt;}
.ws70{word-spacing:-25.781333pt;}
.ws1c{word-spacing:-25.497600pt;}
.wsa7{word-spacing:-24.950400pt;}
.ws16{word-spacing:-24.192000pt;}
.ws17{word-spacing:-24.105600pt;}
.ws15{word-spacing:-23.904000pt;}
.wsee{word-spacing:-23.722667pt;}
.ws66{word-spacing:-23.364267pt;}
.ws18{word-spacing:-23.136000pt;}
.ws68{word-spacing:-22.860800pt;}
.wsc4{word-spacing:-22.784000pt;}
.ws63{word-spacing:-21.188267pt;}
.ws110{word-spacing:-21.162667pt;}
.ws62{word-spacing:-21.077333pt;}
.ws64{word-spacing:-20.992000pt;}
.ws65{word-spacing:-20.949333pt;}
.ws72{word-spacing:-20.480000pt;}
.ws119{word-spacing:-19.114667pt;}
.ws11a{word-spacing:-18.883200pt;}
.wscf{word-spacing:-18.442667pt;}
.wsdf{word-spacing:-18.373333pt;}
.wscd{word-spacing:-18.368000pt;}
.wsd4{word-spacing:-16.064000pt;}
.wsd8{word-spacing:-15.961600pt;}
.wse9{word-spacing:-15.955200pt;}
.wsea{word-spacing:-15.744000pt;}
.wsd6{word-spacing:-15.692800pt;}
.wsd5{word-spacing:-15.520000pt;}
.wsd7{word-spacing:-14.617600pt;}
.ws118{word-spacing:-12.850133pt;}
.wse7{word-spacing:-10.572800pt;}
.ws81{word-spacing:-2.688000pt;}
.ws11b{word-spacing:-2.560000pt;}
.wse8{word-spacing:-1.600000pt;}
.ws20{word-spacing:-0.441600pt;}
.ws22{word-spacing:-0.115200pt;}
.ws9{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.512000pt;}
.ws8e{word-spacing:0.563200pt;}
.ws5e{word-spacing:3.434667pt;}
.ws1e{word-spacing:10.060800pt;}
.wsab{word-spacing:18.581333pt;}
.ws1f{word-spacing:21.888000pt;}
.ws21{word-spacing:22.214400pt;}
.ws8d{word-spacing:31.872000pt;}
.ws6e{word-spacing:58.240000pt;}
.ws8f{word-spacing:62.208000pt;}
.wsfe{word-spacing:164.900800pt;}
.wseb{word-spacing:622.318400pt;}
.ws10f{word-spacing:2772.360533pt;}
._16{margin-left:-27.600757pt;}
._10{margin-left:-22.437478pt;}
._f{margin-left:-21.517261pt;}
._27{margin-left:-20.501333pt;}
._1f{margin-left:-17.773867pt;}
._5{margin-left:-16.814525pt;}
._15{margin-left:-14.784000pt;}
._14{margin-left:-13.692141pt;}
._13{margin-left:-11.264000pt;}
._e{margin-left:-9.826251pt;}
._9{margin-left:-8.746667pt;}
._d{margin-left:-7.753456pt;}
._4{margin-left:-6.523328pt;}
._1{margin-left:-5.584604pt;}
._2{margin-left:-4.211545pt;}
._0{margin-left:-2.499113pt;}
._3{margin-left:-1.473210pt;}
._8{width:1.112446pt;}
._b{width:2.346667pt;}
._a{width:3.520000pt;}
._19{width:5.223205pt;}
._11{width:6.458170pt;}
._12{width:7.453085pt;}
._c{width:8.674915pt;}
._6{width:10.088281pt;}
._7{width:11.083565pt;}
._18{width:12.842667pt;}
._1c{width:13.824000pt;}
._1b{width:15.530667pt;}
._1d{width:18.773333pt;}
._1a{width:22.784000pt;}
._29{width:27.576215pt;}
._28{width:29.888000pt;}
._17{width:58.810684pt;}
._1e{width:122.789333pt;}
._26{width:841.794656pt;}
._24{width:869.347984pt;}
._25{width:924.653323pt;}
._23{width:2121.374215pt;}
._20{width:2359.457328pt;}
._22{width:2524.427995pt;}
._21{width:2565.622661pt;}
.fs1a{font-size:42.666667pt;}
.fs19{font-size:56.889067pt;}
.fs17{font-size:64.000000pt;}
.fs18{font-size:69.333333pt;}
.fs16{font-size:74.666667pt;}
.fs11{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fs3{font-size:103.784000pt;}
.fs2{font-size:106.666667pt;}
.fs14{font-size:117.333333pt;}
.fs1{font-size:124.540267pt;}
.fs9{font-size:128.000000pt;}
.fs12{font-size:138.666667pt;}
.fsd{font-size:149.333333pt;}
.fs4{font-size:160.000000pt;}
.fsc{font-size:170.666667pt;}
.fs10{font-size:192.000000pt;}
.fs1c{font-size:202.666667pt;}
.fs1b{font-size:207.567467pt;}
.fsf{font-size:213.333333pt;}
.fs1d{font-size:218.666667pt;}
.fs15{font-size:229.333333pt;}
.fs8{font-size:234.666667pt;}
.fs13{font-size:249.081067pt;}
.fs5{font-size:256.000000pt;}
.fsb{font-size:280.216000pt;}
.fsa{font-size:314.666667pt;}
.fs0{font-size:342.486400pt;}
.fs7{font-size:384.000000pt;}
.fse{font-size:1066.666667pt;}
.y15f{bottom:-20.091067pt;}
.ydb{bottom:-10.116800pt;}
.yf0{bottom:-8.047333pt;}
.ye9{bottom:-3.973733pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:0.080933pt;}
.ydd{bottom:0.208933pt;}
.yf2{bottom:0.209733pt;}
.yd9{bottom:0.209867pt;}
.yee{bottom:0.210000pt;}
.yd7{bottom:0.210400pt;}
.y159{bottom:0.233733pt;}
.y15b{bottom:0.253733pt;}
.y11a{bottom:2.850800pt;}
.ye7{bottom:3.143600pt;}
.ye5{bottom:3.326267pt;}
.y157{bottom:5.703067pt;}
.y15d{bottom:7.128000pt;}
.y55{bottom:11.308267pt;}
.y197{bottom:11.940667pt;}
.y8{bottom:12.319867pt;}
.y92{bottom:14.044533pt;}
.y95{bottom:15.276667pt;}
.y7{bottom:16.393200pt;}
.y56{bottom:17.644267pt;}
.y1b{bottom:17.650933pt;}
.yc3{bottom:17.661200pt;}
.ya1{bottom:20.351333pt;}
.ya5{bottom:20.927467pt;}
.ya2{bottom:21.766933pt;}
.yc7{bottom:34.863867pt;}
.y91{bottom:39.815200pt;}
.y36{bottom:68.054533pt;}
.ya0{bottom:69.029067pt;}
.y1c{bottom:69.821600pt;}
.yae{bottom:70.133333pt;}
.y111{bottom:76.228533pt;}
.ycd{bottom:78.748267pt;}
.ya4{bottom:82.863867pt;}
.y4c{bottom:86.753333pt;}
.y80{bottom:87.192667pt;}
.y2f{bottom:87.834933pt;}
.y6{bottom:89.366133pt;}
.yf6{bottom:91.778533pt;}
.y110{bottom:93.128533pt;}
.y75{bottom:95.648400pt;}
.yb4{bottom:102.126667pt;}
.y168{bottom:102.128267pt;}
.y145{bottom:103.573600pt;}
.y18{bottom:108.154000pt;}
.y11f{bottom:108.775333pt;}
.y10f{bottom:109.560533pt;}
.y7c{bottom:111.907200pt;}
.y17b{bottom:112.682400pt;}
.y185{bottom:113.298667pt;}
.y144{bottom:120.901600pt;}
.y7f{bottom:121.848667pt;}
.yd8{bottom:125.229333pt;}
.yd5{bottom:125.439200pt;}
.y9f{bottom:125.466400pt;}
.yad{bottom:126.133333pt;}
.yf5{bottom:126.434533pt;}
.yc2{bottom:128.710933pt;}
.y7e{bottom:129.246000pt;}
.y10e{bottom:130.896133pt;}
.y35{bottom:133.846533pt;}
.y184{bottom:135.512000pt;}
.yda{bottom:135.556000pt;}
.y5{bottom:136.486133pt;}
.y4b{bottom:137.022267pt;}
.y143{bottom:138.677600pt;}
.y17{bottom:139.714000pt;}
.yed{bottom:144.186667pt;}
.ye3{bottom:144.396667pt;}
.y14a{bottom:145.730400pt;}
.y17a{bottom:145.770400pt;}
.y54{bottom:150.898133pt;}
.y6b{bottom:151.460133pt;}
.y14d{bottom:151.464667pt;}
.y182{bottom:152.118533pt;}
.y16e{bottom:152.417067pt;}
.yef{bottom:152.444000pt;}
.y2e{bottom:153.600800pt;}
.y74{bottom:154.308267pt;}
.yc1{bottom:155.374933pt;}
.y142{bottom:156.005600pt;}
.y167{bottom:156.336267pt;}
.y183{bottom:158.173333pt;}
.y8d{bottom:159.235467pt;}
.y14c{bottom:160.002667pt;}
.y41{bottom:160.323867pt;}
.y9e{bottom:162.802400pt;}
.y7d{bottom:163.902000pt;}
.y12b{bottom:165.662667pt;}
.yb3{bottom:166.572000pt;}
.y10d{bottom:173.560533pt;}
.y141{bottom:173.781600pt;}
.y5f{bottom:176.321733pt;}
.y7b{bottom:177.251200pt;}
.y179{bottom:178.858400pt;}
.yfc{bottom:178.861600pt;}
.y53{bottom:179.778133pt;}
.y20{bottom:180.359333pt;}
.yc0{bottom:181.606933pt;}
.yac{bottom:182.133333pt;}
.y62{bottom:182.971067pt;}
.y73{bottom:183.214933pt;}
.y4{bottom:184.032800pt;}
.y16{bottom:185.050000pt;}
.y196{bottom:185.776400pt;}
.y13b{bottom:187.917600pt;}
.y151{bottom:188.827867pt;}
.y140{bottom:191.557600pt;}
.y181{bottom:194.334533pt;}
.y10c{bottom:194.896133pt;}
.y11e{bottom:196.042533pt;}
.y6a{bottom:199.006800pt;}
.y34{bottom:199.190533pt;}
.y15{bottom:200.770000pt;}
.y2d{bottom:202.059467pt;}
.y12a{bottom:206.094667pt;}
.ycc{bottom:207.462000pt;}
.y52{bottom:208.658133pt;}
.y40{bottom:208.782533pt;}
.y13f{bottom:208.885600pt;}
.y166{bottom:210.576267pt;}
.y5e{bottom:210.977733pt;}
.y178{bottom:211.946400pt;}
.y72{bottom:212.094933pt;}
.yfb{bottom:213.517600pt;}
.y8c{bottom:218.334133pt;}
.y9d{bottom:218.789067pt;}
.y195{bottom:223.989733pt;}
.y149{bottom:226.923467pt;}
.y27{bottom:227.640800pt;}
.y16d{bottom:229.313067pt;}
.y14b{bottom:229.575733pt;}
.yb2{bottom:231.017333pt;}
.y3{bottom:233.358533pt;}
.y1f{bottom:233.703333pt;}
.y61{bottom:234.268400pt;}
.y7a{bottom:235.043200pt;}
.y13a{bottom:235.490933pt;}
.y180{bottom:237.006533pt;}
.y10b{bottom:237.555600pt;}
.y17c{bottom:237.740533pt;}
.yab{bottom:238.133333pt;}
.ya3{bottom:242.892400pt;}
.y148{bottom:244.699467pt;}
.y177{bottom:245.034400pt;}
.y14{bottom:245.218000pt;}
.y69{bottom:246.580133pt;}
.y71{bottom:248.974933pt;}
.y2c{bottom:249.171867pt;}
.y150{bottom:253.723867pt;}
.y10a{bottom:254.455600pt;}
.y51{bottom:256.231467pt;}
.y3f{bottom:256.793200pt;}
.y147{bottom:262.027467pt;}
.y194{bottom:262.203067pt;}
.y165{bottom:264.336267pt;}
.y129{bottom:264.745333pt;}
.y33{bottom:264.950533pt;}
.y1a{bottom:265.386000pt;}
.ycb{bottom:266.112667pt;}
.yc6{bottom:268.450000pt;}
.y9c{bottom:274.775733pt;}
.y109{bottom:274.891600pt;}
.y8b{bottom:276.984800pt;}
.y84{bottom:277.024933pt;}
.yf4{bottom:277.182800pt;}
.y60{bottom:277.831067pt;}
.y176{bottom:277.951733pt;}
.y139{bottom:283.037600pt;}
.y50{bottom:285.111467pt;}
.y70{bottom:285.428267pt;}
.y13{bottom:289.666000pt;}
.y108{bottom:291.791600pt;}
.y26{bottom:292.536800pt;}
.y2{bottom:292.610667pt;}
.yaa{bottom:294.133333pt;}
.yb1{bottom:295.022667pt;}
.y135{bottom:295.037600pt;}
.y5d{bottom:295.873733pt;}
.y10{bottom:297.250400pt;}
.y18a{bottom:298.322933pt;}
.y79{bottom:300.387200pt;}
.y193{bottom:300.869733pt;}
.y175{bottom:303.722400pt;}
.y128{bottom:305.177333pt;}
.y3e{bottom:305.251867pt;}
.yca{bottom:306.544667pt;}
.y16c{bottom:306.641067pt;}
.y83{bottom:311.680933pt;}
.yf3{bottom:311.838800pt;}
.y107{bottom:312.678267pt;}
.y4f{bottom:313.564800pt;}
.y2b{bottom:313.598533pt;}
.y4a{bottom:313.907600pt;}
.y19{bottom:314.721467pt;}
.y90{bottom:315.221733pt;}
.y164{bottom:315.439733pt;}
.y11d{bottom:315.494933pt;}
.y14f{bottom:318.619867pt;}
.y17f{bottom:325.462933pt;}
.y13e{bottom:325.559333pt;}
.y138{bottom:330.157600pt;}
.y32{bottom:330.294533pt;}
.y5c{bottom:330.529733pt;}
.y174{bottom:330.645067pt;}
.y9b{bottom:331.213067pt;}
.y124{bottom:333.555867pt;}
.yc5{bottom:333.794000pt;}
.y12{bottom:334.546000pt;}
.y8a{bottom:336.083467pt;}
.y192{bottom:339.083067pt;}
.y134{bottom:339.490933pt;}
.y15c{bottom:339.889333pt;}
.y1e{bottom:340.872133pt;}
.y68{bottom:341.246800pt;}
.y146{bottom:343.983600pt;}
.yf{bottom:344.370400pt;}
.y189{bottom:345.442933pt;}
.y155{bottom:347.019600pt;}
.y39{bottom:349.366400pt;}
.ya9{bottom:350.133333pt;}
.y114{bottom:353.220800pt;}
.y3d{bottom:353.710533pt;}
.y106{bottom:355.787200pt;}
.y25{bottom:356.963467pt;}
.y78{bottom:357.731200pt;}
.y163{bottom:358.111733pt;}
.y6f{bottom:359.235467pt;}
.yb0{bottom:359.468000pt;}
.y4e{bottom:361.111467pt;}
.y127{bottom:364.276000pt;}
.y173{bottom:364.629067pt;}
.yfa{bottom:365.047467pt;}
.yc9{bottom:365.643333pt;}
.y86{bottom:367.796800pt;}
.ybd{bottom:371.315867pt;}
.y45{bottom:371.429733pt;}
.y49{bottom:373.006267pt;}
.ybf{bottom:374.349200pt;}
.y105{bottom:376.673867pt;}
.y137{bottom:377.704267pt;}
.y2a{bottom:378.494533pt;}
.y8f{bottom:378.757733pt;}
.y11{bottom:378.994000pt;}
.y191{bottom:379.532000pt;}
.ydc{bottom:380.980000pt;}
.yd3{bottom:381.188933pt;}
.y1{bottom:382.342133pt;}
.y133{bottom:383.490933pt;}
.y16b{bottom:383.537067pt;}
.y17e{bottom:384.557600pt;}
.y9a{bottom:387.199733pt;}
.y67{bottom:388.793467pt;}
.y4d{bottom:389.991467pt;}
.yb{bottom:391.734667pt;}
.ye{bottom:391.917067pt;}
.y188{bottom:392.989600pt;}
.y89{bottom:395.182133pt;}
.y31{bottom:396.086533pt;}
.y44{bottom:397.200400pt;}
.y104{bottom:397.562800pt;}
.yf1{bottom:397.594667pt;}
.yde{bottom:397.804400pt;}
.yc4{bottom:399.138000pt;}
.yf9{bottom:399.703467pt;}
.y1d{bottom:400.888133pt;}
.y85{bottom:402.452800pt;}
.y156{bottom:403.098667pt;}
.y162{bottom:403.447333pt;}
.y126{bottom:404.260000pt;}
.y18d{bottom:405.049333pt;}
.ya8{bottom:406.580000pt;}
.y15a{bottom:408.548000pt;}
.y158{bottom:408.568000pt;}
.y154{bottom:408.819600pt;}
.y5b{bottom:415.873733pt;}
.y6e{bottom:418.334133pt;}
.y123{bottom:420.681200pt;}
.y24{bottom:421.859467pt;}
.y82{bottom:422.517600pt;}
.y43{bottom:422.523067pt;}
.y77{bottom:423.075200pt;}
.yaf{bottom:423.913333pt;}
.yc8{bottom:424.294000pt;}
.y136{bottom:425.250933pt;}
.y190{bottom:425.740000pt;}
.y132{bottom:427.917600pt;}
.y3c{bottom:430.169200pt;}
.y38{bottom:431.258267pt;}
.y48{bottom:432.104933pt;}
.yf8{bottom:433.655467pt;}
.y18c{bottom:433.929333pt;}
.y66{bottom:436.340133pt;}
.y172{bottom:437.378267pt;}
.yd{bottom:439.463733pt;}
.y187{bottom:440.536267pt;}
.y103{bottom:440.671600pt;}
.y99{bottom:443.186400pt;}
.y29{bottom:443.390533pt;}
.y11c{bottom:444.143067pt;}
.ya{bottom:446.550133pt;}
.y42{bottom:448.293733pt;}
.y5a{bottom:450.081733pt;}
.ye6{bottom:451.252000pt;}
.y88{bottom:453.832800pt;}
.yea{bottom:454.314667pt;}
.ye1{bottom:454.395600pt;}
.y81{bottom:457.173600pt;}
.y161{bottom:458.111733pt;}
.ye8{bottom:458.369333pt;}
.y18e{bottom:458.675200pt;}
.y6d{bottom:458.766133pt;}
.y102{bottom:461.124933pt;}
.y13d{bottom:461.174667pt;}
.y30{bottom:463.642133pt;}
.yd2{bottom:465.512667pt;}
.yf7{bottom:468.311467pt;}
.y153{bottom:471.019600pt;}
.y18f{bottom:471.532000pt;}
.y171{bottom:477.362267pt;}
.yd6{bottom:478.041333pt;}
.yd4{bottom:478.251733pt;}
.y76{bottom:480.835200pt;}
.y18b{bottom:481.476000pt;}
.y101{bottom:482.011600pt;}
.ybc{bottom:482.603867pt;}
.ya7{bottom:486.580000pt;}
.y23{bottom:486.755467pt;}
.ye4{bottom:490.176000pt;}
.y47{bottom:490.755600pt;}
.y15e{bottom:491.110667pt;}
.ye0{bottom:493.502267pt;}
.yec{bottom:494.657333pt;}
.ye2{bottom:494.867200pt;}
.y130{bottom:497.329067pt;}
.y98{bottom:499.173067pt;}
.y131{bottom:499.642133pt;}
.y100{bottom:503.342800pt;}
.yd1{bottom:507.283333pt;}
.y122{bottom:507.806533pt;}
.y9{bottom:508.219733pt;}
.y12f{bottom:526.225067pt;}
.y125{bottom:536.708933pt;}
.yb9{bottom:546.090400pt;}
.y118{bottom:546.825600pt;}
.ybb{bottom:547.947867pt;}
.y65{bottom:553.301467pt;}
.y6c{bottom:554.473333pt;}
.y3b{bottom:554.521333pt;}
.y12e{bottom:555.121067pt;}
.y28{bottom:555.232800pt;}
.y14e{bottom:555.753467pt;}
.y87{bottom:557.988000pt;}
.y58{bottom:558.729333pt;}
.y46{bottom:558.793333pt;}
.ya6{bottom:559.658267pt;}
.yfe{bottom:561.369600pt;}
.y22{bottom:561.699600pt;}
.y37{bottom:562.221867pt;}
.y117{bottom:563.266533pt;}
.y13c{bottom:564.537600pt;}
.y16a{bottom:567.017733pt;}
.y152{bottom:568.124400pt;}
.y11b{bottom:569.342667pt;}
.y97{bottom:571.652533pt;}
.ycf{bottom:573.384667pt;}
.ydf{bottom:577.113733pt;}
.yb8{bottom:578.090400pt;}
.y8e{bottom:578.138133pt;}
.yd0{bottom:582.976800pt;}
.y160{bottom:583.506133pt;}
.yc{bottom:586.336133pt;}
.y170{bottom:586.997333pt;}
.y59{bottom:588.882933pt;}
.y186{bottom:592.360000pt;}
.ybe{bottom:593.464667pt;}
.y121{bottom:598.298000pt;}
.y3a{bottom:603.433333pt;}
.yfd{bottom:604.932267pt;}
.y17d{bottom:605.453467pt;}
.y21{bottom:605.475067pt;}
.y64{bottom:607.968133pt;}
.yb7{bottom:610.090400pt;}
.y12d{bottom:612.889067pt;}
.yba{bottom:613.291867pt;}
.y57{bottom:624.073333pt;}
.y169{bottom:625.211067pt;}
.yce{bottom:627.624667pt;}
.y16f{bottom:630.560000pt;}
.y96{bottom:636.996533pt;}
.y12c{bottom:641.329067pt;}
.yb6{bottom:642.090400pt;}
.y113{bottom:648.824267pt;}
.y120{bottom:652.525067pt;}
.y94{bottom:655.051067pt;}
.y63{bottom:662.208133pt;}
.y119{bottom:667.154667pt;}
.y116{bottom:670.005467pt;}
.y112{bottom:671.928267pt;}
.yb5{bottom:674.090400pt;}
.y93{bottom:683.491067pt;}
.yff{bottom:703.778800pt;}
.y115{bottom:706.005467pt;}
.h29{height:1.248000pt;}
.h24{height:1.888000pt;}
.h32{height:2.606667pt;}
.h2c{height:3.956000pt;}
.h3c{height:5.877333pt;}
.h3d{height:6.034667pt;}
.h3f{height:7.097333pt;}
.h2b{height:8.257333pt;}
.h23{height:10.326667pt;}
.h2a{height:12.049333pt;}
.h25{height:12.212000pt;}
.h22{height:12.213333pt;}
.h28{height:16.077333pt;}
.h27{height:16.105333pt;}
.h33{height:31.104167pt;}
.h3b{height:32.225333pt;}
.h3e{height:34.550667pt;}
.h31{height:40.722349pt;}
.h2d{height:44.500000pt;}
.h38{height:45.937500pt;}
.h2e{height:49.765625pt;}
.h21{height:51.916667pt;}
.h30{height:52.191200pt;}
.h26{height:53.593750pt;}
.h1d{height:58.500000pt;}
.h42{height:59.250000pt;}
.h15{height:59.333333pt;}
.h16{height:61.250000pt;}
.h41{height:64.834000pt;}
.h43{height:65.516667pt;}
.hb{height:65.718750pt;}
.h2f{height:66.750000pt;}
.h8{height:68.906250pt;}
.h17{height:74.166667pt;}
.h5{height:76.562500pt;}
.h47{height:77.760417pt;}
.h39{height:81.097500pt;}
.h36{height:81.666667pt;}
.h4{height:85.591395pt;}
.h3{height:87.968750pt;}
.h18{height:89.000000pt;}
.h1f{height:89.833333pt;}
.hd{height:91.875000pt;}
.h46{height:93.312500pt;}
.h1c{height:99.531250pt;}
.h2{height:102.709234pt;}
.h11{height:107.187500pt;}
.h3a{height:111.250000pt;}
.h1a{height:114.333333pt;}
.h6{height:114.843750pt;}
.h10{height:122.500000pt;}
.h9{height:133.994250pt;}
.h35{height:137.812500pt;}
.h19{height:140.750000pt;}
.h37{height:145.468750pt;}
.h40{height:152.041667pt;}
.h44{height:153.125000pt;}
.h45{height:156.953125pt;}
.h14{height:158.343750pt;}
.h1b{height:168.437500pt;}
.h34{height:171.182349pt;}
.h13{height:175.937500pt;}
.h20{height:189.132812pt;}
.hc{height:193.531250pt;}
.h1e{height:205.418907pt;}
.h7{height:211.125000pt;}
.hf{height:231.096105pt;}
.ha{height:255.937500pt;}
.he{height:259.507812pt;}
.h1{height:282.450942pt;}
.h0{height:720.000000pt;}
.h12{height:765.625000pt;}
.w6{width:4.458667pt;}
.wb{width:5.801333pt;}
.w5{width:14.561333pt;}
.w7{width:21.294667pt;}
.wa{width:23.612000pt;}
.w3{width:44.769333pt;}
.w2{width:52.124000pt;}
.w1{width:58.246667pt;}
.wd{width:72.060000pt;}
.w4{width:79.544000pt;}
.w9{width:213.384000pt;}
.w8{width:289.017333pt;}
.wc{width:626.582667pt;}
.w0{width:1280.000000pt;}
.xae{left:-889.967467pt;}
.x74{left:-382.566133pt;}
.xa9{left:-132.454133pt;}
.xab{left:-2.422133pt;}
.x6d{left:-1.284533pt;}
.x0{left:0.000000pt;}
.x23{left:9.600000pt;}
.x34{left:13.292267pt;}
.x7{left:21.600000pt;}
.x35{left:26.940400pt;}
.x91{left:36.299467pt;}
.xc1{left:64.228000pt;}
.xa7{left:69.588533pt;}
.xb2{left:77.473733pt;}
.xaf{left:98.370133pt;}
.x48{left:105.690400pt;}
.x61{left:106.947333pt;}
.x26{left:108.603733pt;}
.x4c{left:110.734400pt;}
.x60{left:112.131333pt;}
.x29{left:114.214400pt;}
.x2b{left:115.200000pt;}
.x27{left:116.347733pt;}
.x4d{left:118.426000pt;}
.x1{left:119.657067pt;}
.x19{left:124.800000pt;}
.x70{left:125.700533pt;}
.x69{left:129.228933pt;}
.x84{left:131.743733pt;}
.xc{left:133.028533pt;}
.x8{left:135.428533pt;}
.x52{left:136.333333pt;}
.x50{left:139.048400pt;}
.x42{left:141.964400pt;}
.xb6{left:144.968000pt;}
.x62{left:147.843333pt;}
.x2e{left:150.514400pt;}
.xb5{left:151.706667pt;}
.x38{left:155.554800pt;}
.x2c{left:163.200000pt;}
.x1a{left:165.433067pt;}
.x51{left:166.873333pt;}
.x36{left:167.999867pt;}
.xa5{left:174.914533pt;}
.x47{left:178.794933pt;}
.x49{left:180.356267pt;}
.x25{left:182.279067pt;}
.x2f{left:185.621333pt;}
.x37{left:187.173200pt;}
.x18{left:188.631600pt;}
.x28{left:193.041067pt;}
.x8b{left:196.042800pt;}
.xa8{left:202.042667pt;}
.x39{left:203.554800pt;}
.x30{left:204.853333pt;}
.xb1{left:207.255733pt;}
.x89{left:210.250800pt;}
.x1b{left:215.298133pt;}
.x45{left:219.153333pt;}
.x22{left:225.828533pt;}
.x1c{left:226.764800pt;}
.xa6{left:227.800533pt;}
.xb7{left:233.728000pt;}
.x68{left:234.933333pt;}
.x8c{left:237.529467pt;}
.x8d{left:238.630667pt;}
.x15{left:242.430533pt;}
.xb8{left:247.484267pt;}
.x82{left:248.437467pt;}
.x40{left:254.831600pt;}
.xb{left:270.004667pt;}
.x3f{left:273.039600pt;}
.x2a{left:283.559733pt;}
.xb9{left:285.971067pt;}
.x44{left:287.999867pt;}
.x83{left:293.973467pt;}
.x99{left:298.416267pt;}
.x9a{left:301.808267pt;}
.x9b{left:304.352267pt;}
.x98{left:305.829600pt;}
.xbf{left:307.759600pt;}
.x46{left:309.324000pt;}
.x81{left:317.614800pt;}
.x5{left:323.676000pt;}
.x9c{left:325.408267pt;}
.x80{left:335.822800pt;}
.x14{left:337.470533pt;}
.x24{left:338.643067pt;}
.xbe{left:348.826267pt;}
.x66{left:363.829333pt;}
.xb0{left:374.806267pt;}
.x13{left:380.631467pt;}
.xbd{left:401.839600pt;}
.xaa{left:419.177333pt;}
.x3c{left:432.399467pt;}
.x3b{left:434.831467pt;}
.x1d{left:437.749733pt;}
.xac{left:447.696000pt;}
.x9d{left:458.418667pt;}
.x4{left:462.289333pt;}
.xa1{left:467.772933pt;}
.xa0{left:470.871600pt;}
.x9f{left:472.071600pt;}
.xd{left:477.354000pt;}
.x9e{left:478.999600pt;}
.x3e{left:483.705200pt;}
.x9{left:485.142267pt;}
.x88{left:495.605867pt;}
.x73{left:498.666667pt;}
.x3d{left:501.689200pt;}
.xbb{left:513.186267pt;}
.x75{left:514.914667pt;}
.x76{left:520.993333pt;}
.xbc{left:532.482267pt;}
.x92{left:535.873067pt;}
.xba{left:564.036400pt;}
.x93{left:571.862400pt;}
.x4a{left:577.802667pt;}
.xc0{left:584.212933pt;}
.x63{left:597.781200pt;}
.x20{left:607.332400pt;}
.x5f{left:613.715733pt;}
.xa2{left:622.514800pt;}
.xa3{left:641.338533pt;}
.x7f{left:653.320267pt;}
.x7e{left:671.304267pt;}
.x87{left:672.342400pt;}
.x85{left:684.279067pt;}
.x86{left:694.246400pt;}
.x6b{left:707.764800pt;}
.x6c{left:709.182133pt;}
.x6e{left:710.466667pt;}
.x94{left:715.907067pt;}
.x7d{left:721.278133pt;}
.x7c{left:723.710133pt;}
.x96{left:727.787067pt;}
.xb4{left:729.566133pt;}
.x1e{left:734.436400pt;}
.x97{left:737.915067pt;}
.x3{left:741.356000pt;}
.x95{left:752.363067pt;}
.xb3{left:772.213333pt;}
.x17{left:774.731467pt;}
.x71{left:783.457067pt;}
.x77{left:784.742667pt;}
.x6a{left:787.040533pt;}
.x31{left:789.173333pt;}
.x3a{left:791.026000pt;}
.x72{left:794.036667pt;}
.x78{left:795.321333pt;}
.x8e{left:805.193200pt;}
.x5e{left:807.385200pt;}
.xf{left:809.946000pt;}
.x5a{left:813.558000pt;}
.x5b{left:819.621200pt;}
.x5d{left:829.177200pt;}
.x43{left:833.376000pt;}
.x41{left:835.994400pt;}
.x21{left:845.252400pt;}
.x53{left:854.794667pt;}
.x33{left:857.020000pt;}
.x8a{left:858.259600pt;}
.x6f{left:862.732800pt;}
.x59{left:863.669867pt;}
.x65{left:864.683867pt;}
.x64{left:866.400000pt;}
.xe{left:880.722000pt;}
.x90{left:882.108800pt;}
.xa{left:883.007200pt;}
.x7b{left:890.306000pt;}
.x8f{left:893.693333pt;}
.x10{left:897.906000pt;}
.x16{left:899.467467pt;}
.x7a{left:909.826000pt;}
.x2{left:912.362800pt;}
.x6{left:918.956000pt;}
.x1f{left:936.036400pt;}
.xa4{left:944.160533pt;}
.x12{left:955.704267pt;}
.xad{left:959.556000pt;}
.x4e{left:963.168000pt;}
.x79{left:970.506667pt;}
.x54{left:981.833333pt;}
.x67{left:1003.333333pt;}
.x56{left:1011.376533pt;}
.x11{left:1014.350933pt;}
.x58{left:1019.536533pt;}
.x4b{left:1022.726667pt;}
.x55{left:1032.736533pt;}
.x32{left:1034.378667pt;}
.x5c{left:1036.403333pt;}
.x4f{left:1045.781200pt;}
.x2d{left:1088.345867pt;}
.x57{left:1131.376533pt;}
}




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