
    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_ea48a86ca859ef34b6a9be96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_781f64d0c8f8df80f9269812.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_a907879adef982e4fe7cbf92.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_448099455042fb3534f1cf2f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_77ac29ba18bbf5c4f7e90416.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fd770c679604b48d76b30b73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_240235157ae2360a565a698c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_63bd4924cc9291ec52426dfc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eee066ec0614509444ad724f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bbffab6ada60c0c3786d77cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2d02c0d252bf576bbafc80bc.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_eb63475e3fce5d228ec4bed3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_621e829c7e3011feb57186ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:22.579200px;}
.v1{vertical-align:30.381600px;}
.ls99{letter-spacing:-2.640000px;}
.ls4a{letter-spacing:-1.665000px;}
.lsa{letter-spacing:-0.780000px;}
.ls47{letter-spacing:-0.360000px;}
.ls32{letter-spacing:-0.240000px;}
.ls89{letter-spacing:-0.180000px;}
.ls98{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.120000px;}
.lsa5{letter-spacing:-0.096000px;}
.ls50{letter-spacing:-0.090000px;}
.ls4f{letter-spacing:-0.060000px;}
.ls54{letter-spacing:-0.048000px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls66{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.060000px;}
.ls8c{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.120000px;}
.ls59{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls9e{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.240000px;}
.ls64{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.300000px;}
.ls5c{letter-spacing:0.336000px;}
.ls40{letter-spacing:0.360000px;}
.ls8f{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.480000px;}
.ls8b{letter-spacing:0.528000px;}
.ls7d{letter-spacing:0.534876px;}
.ls7{letter-spacing:0.540000px;}
.ls6a{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.600000px;}
.ls8d{letter-spacing:0.624000px;}
.ls11{letter-spacing:0.660000px;}
.ls65{letter-spacing:0.672000px;}
.ls13{letter-spacing:0.720000px;}
.ls75{letter-spacing:0.748826px;}
.ls92{letter-spacing:0.768000px;}
.ls49{letter-spacing:0.780000px;}
.ls4e{letter-spacing:0.816000px;}
.ls20{letter-spacing:0.840000px;}
.ls69{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.900000px;}
.ls6c{letter-spacing:0.912000px;}
.ls1a{letter-spacing:0.960000px;}
.ls6b{letter-spacing:1.008000px;}
.ls80{letter-spacing:1.016264px;}
.ls23{letter-spacing:1.020000px;}
.ls5b{letter-spacing:1.056000px;}
.ls10{letter-spacing:1.080000px;}
.ls90{letter-spacing:1.104000px;}
.ls78{letter-spacing:1.123240px;}
.ls28{letter-spacing:1.140000px;}
.ls45{letter-spacing:1.200000px;}
.ls76{letter-spacing:1.230215px;}
.ls52{letter-spacing:1.248000px;}
.ls24{letter-spacing:1.260000px;}
.ls7e{letter-spacing:1.283702px;}
.ls5a{letter-spacing:1.296000px;}
.ls14{letter-spacing:1.320000px;}
.ls25{letter-spacing:1.380000px;}
.ls9a{letter-spacing:1.392000px;}
.ls1c{letter-spacing:1.440000px;}
.ls7a{letter-spacing:1.444165px;}
.ls9d{letter-spacing:1.488000px;}
.ls79{letter-spacing:1.497653px;}
.ls2d{letter-spacing:1.500000px;}
.ls58{letter-spacing:1.536000px;}
.ls73{letter-spacing:1.551140px;}
.ls18{letter-spacing:1.560000px;}
.ls57{letter-spacing:1.584000px;}
.ls72{letter-spacing:1.604628px;}
.ls6d{letter-spacing:1.620000px;}
.lsa0{letter-spacing:1.632000px;}
.ls7b{letter-spacing:1.658116px;}
.lse{letter-spacing:1.680000px;}
.ls77{letter-spacing:1.711603px;}
.lsa4{letter-spacing:1.728000px;}
.ls1b{letter-spacing:1.740000px;}
.ls7c{letter-spacing:1.765091px;}
.ls8e{letter-spacing:1.776000px;}
.ls35{letter-spacing:1.800000px;}
.ls74{letter-spacing:1.818578px;}
.ls97{letter-spacing:1.824000px;}
.ls34{letter-spacing:1.860000px;}
.ls51{letter-spacing:1.872000px;}
.ls46{letter-spacing:1.920000px;}
.ls70{letter-spacing:1.925554px;}
.lsa3{letter-spacing:1.968000px;}
.ls71{letter-spacing:1.979041px;}
.ls2b{letter-spacing:1.980000px;}
.ls6f{letter-spacing:2.016000px;}
.ls7f{letter-spacing:2.032529px;}
.ls1d{letter-spacing:2.040000px;}
.ls6e{letter-spacing:2.064000px;}
.ls48{letter-spacing:2.100000px;}
.ls2a{letter-spacing:2.160000px;}
.ls29{letter-spacing:2.220000px;}
.ls9c{letter-spacing:2.256000px;}
.ls19{letter-spacing:2.280000px;}
.ls1e{letter-spacing:2.340000px;}
.lsa1{letter-spacing:2.352000px;}
.ls8{letter-spacing:2.400000px;}
.ls3{letter-spacing:2.460000px;}
.ls91{letter-spacing:2.496000px;}
.ls44{letter-spacing:2.520000px;}
.ls43{letter-spacing:2.580000px;}
.ls53{letter-spacing:2.592000px;}
.lsb{letter-spacing:2.640000px;}
.ls33{letter-spacing:2.700000px;}
.ls41{letter-spacing:2.820000px;}
.ls56{letter-spacing:2.832000px;}
.ls68{letter-spacing:2.880000px;}
.lsa2{letter-spacing:2.928000px;}
.ls17{letter-spacing:2.940000px;}
.ls4c{letter-spacing:3.000000px;}
.ls27{letter-spacing:3.060000px;}
.ls96{letter-spacing:3.072000px;}
.ls30{letter-spacing:3.120000px;}
.ls9b{letter-spacing:3.168000px;}
.ls84{letter-spacing:3.180000px;}
.ls16{letter-spacing:3.240000px;}
.ls3f{letter-spacing:3.300000px;}
.ls5e{letter-spacing:3.360000px;}
.ls26{letter-spacing:3.420000px;}
.ls2f{letter-spacing:3.480000px;}
.ls4{letter-spacing:3.540000px;}
.ls95{letter-spacing:3.600000px;}
.ls88{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.020000px;}
.ls3e{letter-spacing:4.080000px;}
.ls61{letter-spacing:4.140000px;}
.ls86{letter-spacing:4.200000px;}
.ls93{letter-spacing:4.224000px;}
.ls85{letter-spacing:4.320000px;}
.ls60{letter-spacing:4.380000px;}
.ls2e{letter-spacing:4.440000px;}
.ls63{letter-spacing:4.500000px;}
.ls62{letter-spacing:4.740000px;}
.ls9f{letter-spacing:4.800000px;}
.ls94{letter-spacing:5.088000px;}
.ls55{letter-spacing:5.220000px;}
.ls42{letter-spacing:5.340000px;}
.ls21{letter-spacing:5.460000px;}
.ls87{letter-spacing:5.520000px;}
.ls67{letter-spacing:5.820000px;}
.ls5f{letter-spacing:5.880000px;}
.ls82{letter-spacing:6.180000px;}
.lsf{letter-spacing:6.660000px;}
.ls83{letter-spacing:7.080000px;}
.ls4b{letter-spacing:7.320000px;}
.ls4d{letter-spacing:7.440000px;}
.ls8a{letter-spacing:7.620000px;}
.ls81{letter-spacing:9.000000px;}
.ls0{letter-spacing:59.532876px;}
.ls36{letter-spacing:104.821800px;}
.ls38{letter-spacing:105.712200px;}
.ls3c{letter-spacing:105.712800px;}
.ls3b{letter-spacing:106.603200px;}
.ls3d{letter-spacing:110.165400px;}
.ls39{letter-spacing:122.587800px;}
.ls37{letter-spacing:215.821800px;}
.ls3a{letter-spacing:230.496000px;}
.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:-35.194800px;}
.wsc{word-spacing:-19.020000px;}
.ws11{word-spacing:-18.420000px;}
.ws6d{word-spacing:-18.360000px;}
.ws8a{word-spacing:-18.000000px;}
.ws7f{word-spacing:-17.700000px;}
.ws2f{word-spacing:-17.520000px;}
.wsf{word-spacing:-17.460000px;}
.ws10{word-spacing:-17.040000px;}
.ws6b{word-spacing:-16.920000px;}
.ws30{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.wsb5{word-spacing:-16.620000px;}
.wsb1{word-spacing:-16.560000px;}
.wsb6{word-spacing:-16.500000px;}
.ws89{word-spacing:-16.320000px;}
.wscd{word-spacing:-16.224000px;}
.wsb4{word-spacing:-16.200000px;}
.ws26{word-spacing:-16.020000px;}
.ws7e{word-spacing:-15.900000px;}
.wsb0{word-spacing:-15.780000px;}
.ws2e{word-spacing:-15.660000px;}
.ws65{word-spacing:-15.600000px;}
.wsb7{word-spacing:-15.480000px;}
.wsb2{word-spacing:-15.360000px;}
.ws81{word-spacing:-15.300000px;}
.ws80{word-spacing:-15.180000px;}
.ws82{word-spacing:-15.120000px;}
.wse{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.880000px;}
.wsb3{word-spacing:-14.820000px;}
.ws12{word-spacing:-14.760000px;}
.wsc8{word-spacing:-14.496000px;}
.wsed{word-spacing:-14.256000px;}
.wseb{word-spacing:-14.160000px;}
.wsef{word-spacing:-14.016000px;}
.wsc9{word-spacing:-13.536000px;}
.ws6c{word-spacing:-13.500000px;}
.wsec{word-spacing:-13.440000px;}
.ws9a{word-spacing:-13.371900px;}
.ws4{word-spacing:-13.344000px;}
.wscb{word-spacing:-13.200000px;}
.wsca{word-spacing:-13.008000px;}
.wsc6{word-spacing:-12.912000px;}
.wsee{word-spacing:-12.816000px;}
.wsce{word-spacing:-12.768000px;}
.ws3{word-spacing:-12.510000px;}
.wsea{word-spacing:-12.480000px;}
.wscc{word-spacing:-12.432000px;}
.wsf0{word-spacing:-12.384000px;}
.ws99{word-spacing:-12.240000px;}
.ws27{word-spacing:-12.000000px;}
.wsc7{word-spacing:-11.856000px;}
.ws8f{word-spacing:-11.568000px;}
.ws9b{word-spacing:-10.697550px;}
.ws8d{word-spacing:-10.416000px;}
.ws1{word-spacing:-10.210662px;}
.wscf{word-spacing:-9.360000px;}
.ws8e{word-spacing:-7.824000px;}
.ws92{word-spacing:-7.392000px;}
.ws2a{word-spacing:-6.996000px;}
.ws91{word-spacing:-6.048000px;}
.wse5{word-spacing:-4.224000px;}
.wsbc{word-spacing:-4.080000px;}
.ws8b{word-spacing:-3.552000px;}
.wsbb{word-spacing:-3.240000px;}
.wse7{word-spacing:-3.072000px;}
.ws17{word-spacing:-3.000000px;}
.ws6{word-spacing:-2.886000px;}
.wsd3{word-spacing:-2.700000px;}
.ws97{word-spacing:-2.640000px;}
.ws94{word-spacing:-2.580000px;}
.ws53{word-spacing:-2.475000px;}
.ws18{word-spacing:-2.220000px;}
.wsbd{word-spacing:-2.100000px;}
.wsae{word-spacing:-2.032529px;}
.wsa9{word-spacing:-1.979041px;}
.ws9f{word-spacing:-1.925554px;}
.ws75{word-spacing:-1.920000px;}
.wse9{word-spacing:-1.824000px;}
.wsa0{word-spacing:-1.818578px;}
.ws95{word-spacing:-1.800000px;}
.wsd7{word-spacing:-1.776000px;}
.wsab{word-spacing:-1.765091px;}
.wsa3{word-spacing:-1.711603px;}
.wsfe{word-spacing:-1.680000px;}
.wsaa{word-spacing:-1.658116px;}
.wsbf{word-spacing:-1.620000px;}
.wsa8{word-spacing:-1.604628px;}
.wsf3{word-spacing:-1.584000px;}
.wsa4{word-spacing:-1.551140px;}
.wsa6{word-spacing:-1.497653px;}
.wsa7{word-spacing:-1.444165px;}
.ws93{word-spacing:-1.320000px;}
.wsad{word-spacing:-1.283702px;}
.ws71{word-spacing:-1.260000px;}
.wsf2{word-spacing:-1.248000px;}
.wsa2{word-spacing:-1.230215px;}
.ws76{word-spacing:-1.140000px;}
.wsa5{word-spacing:-1.123240px;}
.ws98{word-spacing:-1.080000px;}
.wsde{word-spacing:-1.056000px;}
.ws20{word-spacing:-1.020000px;}
.wsaf{word-spacing:-1.016264px;}
.ws67{word-spacing:-0.960000px;}
.ws8c{word-spacing:-0.912000px;}
.ws22{word-spacing:-0.900000px;}
.ws2c{word-spacing:-0.864000px;}
.ws83{word-spacing:-0.840000px;}
.ws52{word-spacing:-0.810000px;}
.wsa1{word-spacing:-0.748826px;}
.ws1b{word-spacing:-0.720000px;}
.wsdc{word-spacing:-0.624000px;}
.ws66{word-spacing:-0.600000px;}
.wsdb{word-spacing:-0.576000px;}
.ws6f{word-spacing:-0.540000px;}
.wsac{word-spacing:-0.534876px;}
.ws19{word-spacing:-0.480000px;}
.ws90{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.420000px;}
.ws31{word-spacing:-0.360000px;}
.ws6a{word-spacing:-0.336000px;}
.wsb{word-spacing:-0.300000px;}
.ws9c{word-spacing:-0.288000px;}
.ws79{word-spacing:-0.240000px;}
.ws7{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.060000px;}
.wse3{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wse2{word-spacing:0.048000px;}
.ws5e{word-spacing:0.060000px;}
.ws61{word-spacing:0.090000px;}
.wsfb{word-spacing:0.096000px;}
.wsa{word-spacing:0.120000px;}
.wsf9{word-spacing:0.144000px;}
.wsc3{word-spacing:0.180000px;}
.ws21{word-spacing:0.240000px;}
.ws64{word-spacing:0.288000px;}
.wse8{word-spacing:0.336000px;}
.ws32{word-spacing:0.360000px;}
.wsf8{word-spacing:0.384000px;}
.wse6{word-spacing:0.432000px;}
.ws7a{word-spacing:0.600000px;}
.wse0{word-spacing:0.720000px;}
.wsc1{word-spacing:0.780000px;}
.ws33{word-spacing:0.840000px;}
.ws3c{word-spacing:0.900000px;}
.ws69{word-spacing:0.912000px;}
.ws9d{word-spacing:0.960000px;}
.wsc5{word-spacing:1.080000px;}
.ws70{word-spacing:1.200000px;}
.wsd9{word-spacing:1.248000px;}
.ws9e{word-spacing:1.296000px;}
.wsc4{word-spacing:1.320000px;}
.wsf1{word-spacing:1.344000px;}
.wsd5{word-spacing:1.392000px;}
.ws88{word-spacing:1.488000px;}
.ws1e{word-spacing:1.560000px;}
.ws1d{word-spacing:1.620000px;}
.ws51{word-spacing:1.665000px;}
.ws1c{word-spacing:1.680000px;}
.ws37{word-spacing:1.740000px;}
.ws7d{word-spacing:1.824000px;}
.ws84{word-spacing:1.860000px;}
.ws63{word-spacing:1.968000px;}
.ws96{word-spacing:1.980000px;}
.ws16{word-spacing:2.040000px;}
.wsdf{word-spacing:2.064000px;}
.ws78{word-spacing:2.100000px;}
.wsfc{word-spacing:2.112000px;}
.ws5f{word-spacing:2.160000px;}
.wsc0{word-spacing:2.340000px;}
.wsd4{word-spacing:2.352000px;}
.ws7b{word-spacing:2.400000px;}
.ws85{word-spacing:2.460000px;}
.wsfa{word-spacing:2.544000px;}
.wsbe{word-spacing:2.580000px;}
.wsf4{word-spacing:2.592000px;}
.ws3d{word-spacing:2.640000px;}
.wsf5{word-spacing:2.688000px;}
.ws34{word-spacing:2.700000px;}
.wsd6{word-spacing:2.736000px;}
.ws38{word-spacing:2.760000px;}
.ws23{word-spacing:2.820000px;}
.wse4{word-spacing:2.832000px;}
.wsb8{word-spacing:2.940000px;}
.wsda{word-spacing:2.976000px;}
.ws36{word-spacing:3.000000px;}
.ws2b{word-spacing:3.060000px;}
.wsf7{word-spacing:3.072000px;}
.ws1f{word-spacing:3.120000px;}
.ws3a{word-spacing:3.180000px;}
.wsdd{word-spacing:3.216000px;}
.ws50{word-spacing:3.240000px;}
.ws35{word-spacing:3.300000px;}
.ws4f{word-spacing:3.360000px;}
.wse1{word-spacing:3.408000px;}
.wsd8{word-spacing:3.456000px;}
.wsd0{word-spacing:3.480000px;}
.wsfd{word-spacing:3.504000px;}
.ws13{word-spacing:3.540000px;}
.ws2d{word-spacing:3.552000px;}
.ws74{word-spacing:3.600000px;}
.wsf6{word-spacing:3.696000px;}
.ws25{word-spacing:3.720000px;}
.ws1a{word-spacing:3.780000px;}
.wsba{word-spacing:3.840000px;}
.wsc2{word-spacing:3.900000px;}
.ws68{word-spacing:3.936000px;}
.ws62{word-spacing:3.984000px;}
.ws24{word-spacing:4.020000px;}
.wsb9{word-spacing:4.080000px;}
.ws4e{word-spacing:4.140000px;}
.ws77{word-spacing:4.260000px;}
.ws86{word-spacing:4.380000px;}
.ws6e{word-spacing:4.440000px;}
.ws7c{word-spacing:4.500000px;}
.ws60{word-spacing:4.560000px;}
.ws4c{word-spacing:4.620000px;}
.ws4d{word-spacing:4.740000px;}
.ws39{word-spacing:4.800000px;}
.ws3b{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws87{word-spacing:5.160000px;}
.wsd1{word-spacing:5.460000px;}
.wsd2{word-spacing:5.520000px;}
.ws72{word-spacing:6.240000px;}
.ws3e{word-spacing:21.600000px;}
.ws54{word-spacing:30.105000px;}
.ws58{word-spacing:46.440000px;}
.ws5a{word-spacing:47.295000px;}
.ws59{word-spacing:58.545000px;}
.ws42{word-spacing:62.550000px;}
.ws41{word-spacing:63.405000px;}
.ws5c{word-spacing:68.940000px;}
.ws40{word-spacing:78.885000px;}
.ws5b{word-spacing:80.190000px;}
.ws3f{word-spacing:83.385000px;}
.ws56{word-spacing:87.390000px;}
.ws48{word-spacing:97.065000px;}
.ws45{word-spacing:97.920000px;}
.ws47{word-spacing:98.730000px;}
.ws29{word-spacing:101.499600px;}
.ws5d{word-spacing:106.552800px;}
.ws28{word-spacing:106.848000px;}
.ws44{word-spacing:119.070000px;}
.ws57{word-spacing:122.940000px;}
.ws55{word-spacing:125.415000px;}
.ws4b{word-spacing:132.303000px;}
.ws49{word-spacing:186.300000px;}
.ws46{word-spacing:187.110000px;}
.ws4a{word-spacing:220.050000px;}
.ws43{word-spacing:238.365000px;}
._b{margin-left:-2898.096000px;}
._4a{margin-left:-2874.288000px;}
._5{margin-left:-6.651600px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._6{width:1.093200px;}
._a2{width:2.094000px;}
._a{width:3.096000px;}
._8{width:4.704000px;}
._7{width:6.096000px;}
._9{width:8.040000px;}
._a0{width:10.545000px;}
._a1{width:15.138000px;}
._9f{width:19.836000px;}
._9e{width:22.512000px;}
._4f{width:35.820000px;}
._79{width:37.080000px;}
._7c{width:57.690000px;}
._3{width:59.606214px;}
._95{width:60.795000px;}
._85{width:69.192600px;}
._8c{width:70.773600px;}
._4e{width:74.700000px;}
._78{width:83.205000px;}
._84{width:84.705000px;}
._90{width:91.440000px;}
._93{width:95.400000px;}
._5d{width:108.315000px;}
._5e{width:109.731000px;}
._8f{width:116.955000px;}
._69{width:119.463600px;}
._64{width:121.065000px;}
._5c{width:124.398000px;}
._56{width:125.664000px;}
._6a{width:128.115000px;}
._3d{width:131.136000px;}
._97{width:138.645000px;}
._70{width:141.138000px;}
._51{width:142.740000px;}
._81{width:144.444000px;}
._66{width:147.729000px;}
._3e{width:149.568000px;}
._39{width:153.852000px;}
._3f{width:156.096000px;}
._6b{width:159.075000px;}
._19{width:163.248000px;}
._53{width:164.307600px;}
._86{width:166.149000px;}
._96{width:169.794000px;}
._50{width:171.495000px;}
._1b{width:173.472000px;}
._91{width:177.042600px;}
._98{width:179.052000px;}
._5b{width:180.576000px;}
._21{width:181.832400px;}
._8e{width:183.555000px;}
._31{width:191.006400px;}
._16{width:192.672000px;}
._57{width:193.680000px;}
._1a{width:194.880000px;}
._7a{width:201.477000px;}
._4b{width:202.875000px;}
._9b{width:203.931000px;}
._63{width:205.470000px;}
._48{width:207.360000px;}
._40{width:214.952400px;}
._68{width:216.681000px;}
._76{width:218.655000px;}
._27{width:219.840000px;}
._94{width:225.231000px;}
._35{width:226.800000px;}
._62{width:227.841000px;}
._55{width:228.915000px;}
._46{width:230.646000px;}
._13{width:233.088000px;}
._92{width:235.637400px;}
._14{width:240.240000px;}
._6f{width:243.072000px;}
._42{width:244.656000px;}
._67{width:249.294000px;}
._10{width:252.144000px;}
._7f{width:253.575000px;}
._2b{width:255.600000px;}
._49{width:262.992000px;}
._74{width:270.915000px;}
._2e{width:272.256000px;}
._22{width:274.944000px;}
._61{width:279.315000px;}
._1e{width:282.536400px;}
._44{width:283.920000px;}
._15{width:287.712000px;}
._1f{width:293.136000px;}
._60{width:294.255000px;}
._77{width:297.270000px;}
._65{width:301.770000px;}
._18{width:302.784000px;}
._26{width:304.238400px;}
._38{width:306.192000px;}
._5f{width:309.240000px;}
._20{width:310.998000px;}
._1c{width:313.584000px;}
._3b{width:316.320000px;}
._33{width:320.448000px;}
._2a{width:321.896400px;}
._4c{width:323.820000px;}
._47{width:325.056000px;}
._34{width:328.764000px;}
._23{width:334.752000px;}
._28{width:335.808000px;}
._11{width:337.680000px;}
._25{width:338.880000px;}
._83{width:341.910000px;}
._17{width:344.256000px;}
._24{width:348.240000px;}
._41{width:351.312000px;}
._30{width:355.392000px;}
._12{width:357.936000px;}
._80{width:359.820000px;}
._58{width:365.580000px;}
._2f{width:378.240000px;}
._36{width:381.600000px;}
._75{width:383.355000px;}
._7e{width:386.055000px;}
._52{width:393.075000px;}
._82{width:394.620000px;}
._59{width:399.330000px;}
._5a{width:400.545000px;}
._1d{width:409.776000px;}
._2d{width:415.104000px;}
._3a{width:420.864000px;}
._8a{width:423.540000px;}
._54{width:427.680000px;}
._32{width:432.000000px;}
._43{width:434.208000px;}
._45{width:436.224000px;}
._7b{width:437.355000px;}
._9d{width:438.480000px;}
._9c{width:441.045000px;}
._37{width:446.544000px;}
._29{width:450.150000px;}
._8b{width:458.505000px;}
._3c{width:461.286000px;}
._71{width:465.480000px;}
._8d{width:493.515000px;}
._4d{width:501.075000px;}
._f{width:511.440000px;}
._99{width:518.580000px;}
._6e{width:522.369000px;}
._9a{width:528.480000px;}
._7d{width:548.505000px;}
._e{width:566.262000px;}
._2c{width:593.904000px;}
._72{width:595.530000px;}
._6d{width:599.626800px;}
._d{width:601.680000px;}
._6c{width:621.720000px;}
._73{width:632.539200px;}
._89{width:639.720000px;}
._87{width:654.750000px;}
._88{width:669.780000px;}
._c{width:1194.096000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:27.984000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fsd{font-size:42.790200px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:53.487600px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fse{font-size:64.185000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2c{bottom:47.777250px;}
.y240{bottom:80.263500px;}
.y1a0{bottom:82.870200px;}
.y15b{bottom:82.899450px;}
.y157{bottom:82.905450px;}
.y198{bottom:83.177400px;}
.y159{bottom:83.566650px;}
.y5f{bottom:83.635350px;}
.y11a{bottom:83.637750px;}
.y7f{bottom:83.770350px;}
.y114{bottom:84.925050px;}
.y110{bottom:84.929250px;}
.yb5{bottom:86.002800px;}
.y29{bottom:87.912300px;}
.y1ff{bottom:89.121900px;}
.y190{bottom:89.630850px;}
.y109{bottom:90.827550px;}
.ydc{bottom:93.510150px;}
.y153{bottom:93.512100px;}
.y23f{bottom:95.263500px;}
.y19f{bottom:98.614200px;}
.y15a{bottom:98.643450px;}
.y156{bottom:98.649450px;}
.y197{bottom:98.921400px;}
.y158{bottom:99.310650px;}
.y119{bottom:99.381750px;}
.y11e{bottom:99.405750px;}
.y113{bottom:100.669050px;}
.y10f{bottom:100.673250px;}
.y5e{bottom:101.635350px;}
.y7e{bottom:101.770350px;}
.yb4{bottom:102.502800px;}
.y28{bottom:102.908550px;}
.y1fe{bottom:104.121900px;}
.y108{bottom:107.327550px;}
.y18f{bottom:107.630850px;}
.ydb{bottom:109.012650px;}
.y23e{bottom:110.263500px;}
.y152{bottom:111.512100px;}
.y19e{bottom:114.358200px;}
.y155{bottom:114.393450px;}
.y196{bottom:114.665400px;}
.y118{bottom:115.125750px;}
.y11d{bottom:115.149750px;}
.y112{bottom:116.413050px;}
.y10e{bottom:116.417250px;}
.y27{bottom:117.904800px;}
.y1fd{bottom:119.121900px;}
.y5d{bottom:119.635350px;}
.y7d{bottom:119.770350px;}
.y107{bottom:123.827550px;}
.yda{bottom:124.515150px;}
.y23d{bottom:125.263500px;}
.y18e{bottom:125.630850px;}
.yb3{bottom:128.009250px;}
.y151{bottom:129.512100px;}
.y19d{bottom:130.102200px;}
.y154{bottom:130.137450px;}
.y195{bottom:130.409400px;}
.y117{bottom:130.869750px;}
.y11c{bottom:130.893750px;}
.y111{bottom:132.157050px;}
.y10d{bottom:132.161250px;}
.y1fc{bottom:134.121900px;}
.y5c{bottom:137.635350px;}
.y7c{bottom:137.770350px;}
.yd9{bottom:140.017650px;}
.y23c{bottom:140.263500px;}
.y18d{bottom:143.630850px;}
.yb2{bottom:144.261150px;}
.y19c{bottom:145.846200px;}
.y194{bottom:146.153400px;}
.y116{bottom:146.613750px;}
.y11b{bottom:146.637750px;}
.y150{bottom:147.512100px;}
.y1fb{bottom:149.121900px;}
.y106{bottom:149.203050px;}
.y23b{bottom:155.263500px;}
.yd8{bottom:155.512800px;}
.y5b{bottom:155.635350px;}
.y7b{bottom:155.770350px;}
.yb1{bottom:160.513200px;}
.y19b{bottom:161.590200px;}
.y18c{bottom:161.630850px;}
.y193{bottom:161.897400px;}
.y1fa{bottom:164.121900px;}
.y105{bottom:164.705550px;}
.y14f{bottom:165.512100px;}
.y23a{bottom:170.263500px;}
.y24{bottom:170.510550px;}
.yd7{bottom:171.015300px;}
.y5a{bottom:173.635350px;}
.y7a{bottom:173.770350px;}
.yb0{bottom:176.765100px;}
.y19a{bottom:177.334200px;}
.y192{bottom:177.641400px;}
.y1f9{bottom:179.121900px;}
.y18b{bottom:179.630850px;}
.y104{bottom:180.208050px;}
.y14e{bottom:183.512100px;}
.y239{bottom:185.263500px;}
.yd6{bottom:186.517800px;}
.y23{bottom:188.510550px;}
.y59{bottom:191.635350px;}
.y79{bottom:191.770350px;}
.yaf{bottom:193.017150px;}
.y191{bottom:193.385400px;}
.y1f8{bottom:194.121900px;}
.y103{bottom:195.710550px;}
.y18a{bottom:197.630850px;}
.y1bd{bottom:199.854000px;}
.y238{bottom:200.263500px;}
.y14d{bottom:201.512100px;}
.yd5{bottom:202.020300px;}
.y1a7{bottom:204.498980px;}
.y22{bottom:206.510550px;}
.y1f7{bottom:209.121900px;}
.yae{bottom:209.517150px;}
.y58{bottom:209.635350px;}
.y78{bottom:209.770350px;}
.y102{bottom:211.213050px;}
.y237{bottom:215.263500px;}
.y189{bottom:215.630850px;}
.yd4{bottom:217.522800px;}
.y14c{bottom:219.512100px;}
.y1f6{bottom:224.121900px;}
.y21{bottom:224.510550px;}
.yad{bottom:225.769050px;}
.y101{bottom:226.715550px;}
.y1b2{bottom:227.070747px;}
.y57{bottom:227.635350px;}
.y77{bottom:227.770350px;}
.y236{bottom:230.263500px;}
.yd3{bottom:233.025300px;}
.y188{bottom:233.630850px;}
.y14b{bottom:237.512100px;}
.y1f5{bottom:239.121900px;}
.y100{bottom:242.218050px;}
.yac{bottom:242.269050px;}
.y26{bottom:242.510550px;}
.y235{bottom:245.263500px;}
.y56{bottom:245.635350px;}
.y76{bottom:245.770350px;}
.yd2{bottom:248.527800px;}
.y1c7{bottom:249.629233px;}
.y187{bottom:251.630850px;}
.y1f4{bottom:254.121900px;}
.y14a{bottom:255.512100px;}
.yff{bottom:257.720550px;}
.yab{bottom:258.521100px;}
.y20{bottom:260.107800px;}
.y234{bottom:260.263500px;}
.y25{bottom:260.510550px;}
.y55{bottom:263.635350px;}
.y75{bottom:263.770350px;}
.yd1{bottom:264.030300px;}
.y1f3{bottom:269.121900px;}
.y186{bottom:269.630850px;}
.y1a5{bottom:272.174166px;}
.yfe{bottom:273.215550px;}
.y149{bottom:273.512100px;}
.yaa{bottom:274.773000px;}
.y233{bottom:275.263500px;}
.yd0{bottom:279.532800px;}
.y54{bottom:281.635350px;}
.y74{bottom:281.770350px;}
.y1f2{bottom:284.121900px;}
.y185{bottom:287.630850px;}
.yfd{bottom:288.718050px;}
.y232{bottom:290.263500px;}
.ya9{bottom:291.024900px;}
.y148{bottom:291.512100px;}
.y1b5{bottom:294.732561px;}
.ycf{bottom:295.035300px;}
.y1f1{bottom:299.121900px;}
.y53{bottom:299.635350px;}
.y73{bottom:299.770350px;}
.yfc{bottom:304.220550px;}
.y231{bottom:305.263500px;}
.y184{bottom:305.630850px;}
.ya8{bottom:307.280850px;}
.y147{bottom:309.512100px;}
.yce{bottom:310.537800px;}
.y1f0{bottom:314.121900px;}
.y1a2{bottom:317.290957px;}
.y52{bottom:317.635350px;}
.y72{bottom:317.770350px;}
.yfb{bottom:319.723050px;}
.y230{bottom:320.263500px;}
.ya7{bottom:323.532900px;}
.y183{bottom:323.630850px;}
.ycd{bottom:326.040300px;}
.y146{bottom:327.512100px;}
.y1ef{bottom:329.121900px;}
.y1cc{bottom:329.812900px;}
.y1f{bottom:335.164200px;}
.yfa{bottom:335.225550px;}
.y22f{bottom:335.263500px;}
.y1df{bottom:335.365350px;}
.y51{bottom:335.635350px;}
.y71{bottom:335.770350px;}
.ya6{bottom:339.784800px;}
.y1c3{bottom:339.862814px;}
.ycc{bottom:341.542800px;}
.y182{bottom:341.630850px;}
.y1ee{bottom:344.121900px;}
.y145{bottom:345.512100px;}
.y22e{bottom:350.263500px;}
.yf9{bottom:350.728050px;}
.y50{bottom:353.635350px;}
.y70{bottom:353.770350px;}
.ya5{bottom:356.032800px;}
.ycb{bottom:357.045300px;}
.y1ed{bottom:359.121900px;}
.y181{bottom:359.630850px;}
.y1ab{bottom:362.407747px;}
.y1e{bottom:362.509200px;}
.y144{bottom:363.512100px;}
.y22d{bottom:365.263500px;}
.yf8{bottom:366.230550px;}
.y1c8{bottom:369.982200px;}
.y4f{bottom:371.635350px;}
.y6f{bottom:371.770350px;}
.ya4{bottom:372.284850px;}
.yca{bottom:372.579450px;}
.y1ec{bottom:374.121900px;}
.y180{bottom:377.630850px;}
.y22c{bottom:380.263500px;}
.y1d{bottom:380.509200px;}
.y143{bottom:381.512100px;}
.yf7{bottom:381.733050px;}
.y1b0{bottom:384.979514px;}
.yc9{bottom:388.081950px;}
.ya3{bottom:388.536750px;}
.y1eb{bottom:389.121900px;}
.y4e{bottom:389.635350px;}
.y6e{bottom:389.770350px;}
.y22b{bottom:395.263500px;}
.y17f{bottom:395.630850px;}
.yf6{bottom:397.235550px;}
.y1c{bottom:398.509200px;}
.y142{bottom:399.512100px;}
.yc8{bottom:403.584450px;}
.y1ea{bottom:404.121900px;}
.ya2{bottom:404.788800px;}
.y1b6{bottom:407.524538px;}
.y4d{bottom:407.635350px;}
.y6d{bottom:407.770350px;}
.y22a{bottom:410.263500px;}
.y122{bottom:410.349750px;}
.yf5{bottom:412.738050px;}
.y17e{bottom:413.630850px;}
.y1b{bottom:416.509200px;}
.y141{bottom:417.512100px;}
.yc7{bottom:419.086950px;}
.y1e9{bottom:419.121900px;}
.ya1{bottom:421.044600px;}
.y229{bottom:425.263500px;}
.y4c{bottom:425.635350px;}
.y6c{bottom:425.770350px;}
.y121{bottom:426.093750px;}
.yf4{bottom:428.240550px;}
.y1b8{bottom:430.069561px;}
.y17d{bottom:431.630850px;}
.y1e8{bottom:434.121900px;}
.y1a{bottom:434.509200px;}
.yc6{bottom:434.589450px;}
.y140{bottom:435.512100px;}
.ya0{bottom:437.292600px;}
.y228{bottom:440.263500px;}
.y120{bottom:441.837750px;}
.y4b{bottom:443.635350px;}
.yf3{bottom:443.743050px;}
.y6b{bottom:443.770350px;}
.y1e7{bottom:449.121900px;}
.y17c{bottom:449.630850px;}
.yc5{bottom:450.091950px;}
.y19{bottom:452.509200px;}
.y1c1{bottom:452.641419px;}
.y13f{bottom:453.512100px;}
.y9f{bottom:453.548700px;}
.y227{bottom:455.263500px;}
.y11f{bottom:457.581750px;}
.yf2{bottom:459.245550px;}
.y4a{bottom:461.635350px;}
.y6a{bottom:461.770350px;}
.y10c{bottom:461.957250px;}
.y1e6{bottom:464.121900px;}
.yc4{bottom:465.594450px;}
.y17b{bottom:467.630850px;}
.y9e{bottom:469.796700px;}
.y226{bottom:470.263500px;}
.y18{bottom:470.509200px;}
.y13e{bottom:471.512100px;}
.yf1{bottom:474.748050px;}
.y1ad{bottom:475.199724px;}
.y10b{bottom:477.701250px;}
.y49{bottom:479.635350px;}
.y69{bottom:479.770350px;}
.yc3{bottom:481.096950px;}
.y225{bottom:485.263500px;}
.y17a{bottom:485.630850px;}
.y9d{bottom:486.048600px;}
.y17{bottom:488.509200px;}
.y13d{bottom:489.512100px;}
.yf0{bottom:490.300500px;}
.yc2{bottom:496.599450px;}
.y1e5{bottom:497.230350px;}
.y48{bottom:497.635350px;}
.y1b4{bottom:497.744747px;}
.y68{bottom:497.770350px;}
.y224{bottom:500.263500px;}
.y9c{bottom:502.304550px;}
.y179{bottom:503.630850px;}
.yef{bottom:505.803000px;}
.y16{bottom:506.509200px;}
.y13c{bottom:507.512100px;}
.yc1{bottom:512.101950px;}
.y223{bottom:515.263500px;}
.y47{bottom:515.635350px;}
.y67{bottom:515.770350px;}
.y9b{bottom:518.556450px;}
.y1b7{bottom:520.303142px;}
.yee{bottom:521.305500px;}
.y178{bottom:521.630850px;}
.y15{bottom:524.509200px;}
.y13b{bottom:525.512100px;}
.y222{bottom:530.263500px;}
.y46{bottom:533.635350px;}
.y66{bottom:533.770350px;}
.y9a{bottom:534.808500px;}
.yed{bottom:536.808000px;}
.y177{bottom:539.630850px;}
.yc0{bottom:540.361950px;}
.y14{bottom:542.509200px;}
.y1bb{bottom:542.861538px;}
.y13a{bottom:543.512100px;}
.y221{bottom:545.263500px;}
.y99{bottom:551.056500px;}
.y45{bottom:551.635350px;}
.y65{bottom:551.770350px;}
.yec{bottom:552.310500px;}
.y176{bottom:557.630850px;}
.y220{bottom:560.263500px;}
.y13{bottom:560.509200px;}
.y139{bottom:561.512100px;}
.y1af{bottom:565.433305px;}
.y98{bottom:567.308400px;}
.yeb{bottom:567.813000px;}
.ybd{bottom:568.588200px;}
.ybe{bottom:568.599450px;}
.ybf{bottom:568.610700px;}
.y1e4{bottom:569.365350px;}
.y44{bottom:569.635350px;}
.y64{bottom:569.770350px;}
.y21f{bottom:575.263500px;}
.y175{bottom:575.630850px;}
.y12{bottom:578.509200px;}
.y138{bottom:579.512100px;}
.yea{bottom:583.315500px;}
.y97{bottom:583.560450px;}
.ybc{bottom:583.584450px;}
.y63{bottom:587.770350px;}
.y1b9{bottom:587.978328px;}
.y21e{bottom:590.263500px;}
.y174{bottom:593.630850px;}
.y11{bottom:596.509200px;}
.y137{bottom:597.512100px;}
.ye9{bottom:598.818000px;}
.y96{bottom:599.812350px;}
.y43{bottom:605.230350px;}
.y21d{bottom:605.263500px;}
.y62{bottom:605.770350px;}
.y1aa{bottom:610.536724px;}
.y173{bottom:611.630850px;}
.ybb{bottom:611.844450px;}
.ye8{bottom:614.320500px;}
.y10{bottom:614.509200px;}
.y136{bottom:615.512100px;}
.y95{bottom:616.064250px;}
.y21c{bottom:620.263500px;}
.y1e3{bottom:623.365350px;}
.y61{bottom:623.770350px;}
.yb9{bottom:626.840700px;}
.ye7{bottom:629.823000px;}
.y94{bottom:632.316300px;}
.y1ac{bottom:633.095119px;}
.y135{bottom:633.512100px;}
.y21b{bottom:635.263500px;}
.y60{bottom:641.770350px;}
.yba{bottom:641.836950px;}
.ye6{bottom:645.325500px;}
.y172{bottom:647.225850px;}
.y93{bottom:648.568200px;}
.y25c{bottom:650.263500px;}
.y21a{bottom:650.265900px;}
.y134{bottom:651.512100px;}
.y1a4{bottom:655.653514px;}
.yf{bottom:659.667300px;}
.y42{bottom:659.770350px;}
.y92{bottom:664.828200px;}
.y25b{bottom:665.263500px;}
.y219{bottom:665.265900px;}
.y133{bottom:669.512100px;}
.yb8{bottom:670.096950px;}
.ye{bottom:672.118050px;}
.ye5{bottom:673.585500px;}
.y41{bottom:677.770350px;}
.y1c4{bottom:678.225372px;}
.y25a{bottom:680.263500px;}
.y218{bottom:680.265900px;}
.y91{bottom:681.076200px;}
.y132{bottom:687.512100px;}
.y259{bottom:695.263500px;}
.y217{bottom:695.265900px;}
.y1de{bottom:695.380350px;}
.y40{bottom:695.770350px;}
.y90{bottom:697.324200px;}
.y1c0{bottom:700.770395px;}
.y171{bottom:701.263500px;}
.ye2{bottom:701.811750px;}
.ye3{bottom:701.823000px;}
.ye4{bottom:701.834250px;}
.yb7{bottom:701.860350px;}
.y1c9{bottom:704.013199px;}
.y131{bottom:705.512100px;}
.yd{bottom:709.258950px;}
.y258{bottom:710.263500px;}
.y216{bottom:710.265900px;}
.y1e2{bottom:713.365350px;}
.y8f{bottom:713.576100px;}
.y3f{bottom:713.770350px;}
.y170{bottom:716.263500px;}
.ye1{bottom:716.808000px;}
.yc{bottom:722.758950px;}
.y1a3{bottom:723.328700px;}
.y130{bottom:723.512100px;}
.y257{bottom:725.263500px;}
.y215{bottom:725.265900px;}
.y8e{bottom:729.828150px;}
.yb{bottom:730.833600px;}
.y16f{bottom:731.263500px;}
.y1dd{bottom:731.635350px;}
.y3e{bottom:731.770350px;}
.y1cb{bottom:732.361706px;}
.y256{bottom:740.263500px;}
.y214{bottom:740.265900px;}
.y12f{bottom:741.512100px;}
.ye0{bottom:745.056750px;}
.y1c6{bottom:745.900558px;}
.y8d{bottom:746.080050px;}
.y16e{bottom:746.263500px;}
.y1dc{bottom:749.635350px;}
.ya{bottom:749.758950px;}
.y3d{bottom:749.770350px;}
.ydf{bottom:752.549250px;}
.y255{bottom:755.263500px;}
.y213{bottom:755.265900px;}
.y12e{bottom:759.512100px;}
.y16d{bottom:761.263500px;}
.y8c{bottom:762.332100px;}
.y1e1{bottom:767.365350px;}
.y1db{bottom:767.635350px;}
.y3c{bottom:767.770350px;}
.y1c5{bottom:768.458953px;}
.y254{bottom:770.263500px;}
.y212{bottom:770.265900px;}
.y16c{bottom:776.263500px;}
.y12d{bottom:777.512100px;}
.y9{bottom:778.480800px;}
.y8b{bottom:778.584000px;}
.y253{bottom:785.263500px;}
.y211{bottom:785.265900px;}
.y1da{bottom:785.635350px;}
.y3b{bottom:785.770350px;}
.yde{bottom:788.301750px;}
.y1ba{bottom:790.990514px;}
.y16b{bottom:791.263500px;}
.y8a{bottom:794.843700px;}
.y12c{bottom:795.512100px;}
.y252{bottom:800.263500px;}
.y210{bottom:800.265900px;}
.y1d9{bottom:803.635350px;}
.y3a{bottom:803.770350px;}
.y16a{bottom:806.263500px;}
.y12b{bottom:813.512100px;}
.y1bf{bottom:813.549000px;}
.y251{bottom:815.263500px;}
.y20f{bottom:815.265900px;}
.ydd{bottom:820.075350px;}
.y169{bottom:821.263500px;}
.y1d8{bottom:821.635350px;}
.y39{bottom:821.770350px;}
.y89{bottom:823.847700px;}
.y8{bottom:824.685300px;}
.y250{bottom:830.263500px;}
.y20e{bottom:830.265900px;}
.y12a{bottom:831.512100px;}
.y1bc{bottom:836.107305px;}
.y168{bottom:836.263500px;}
.y1be{bottom:839.265300px;}
.y1e0{bottom:839.365350px;}
.y1d7{bottom:839.635350px;}
.y38{bottom:839.770350px;}
.y24f{bottom:845.263500px;}
.y20d{bottom:845.265900px;}
.y129{bottom:849.512100px;}
.y167{bottom:851.263500px;}
.y88{bottom:852.851700px;}
.y1d6{bottom:857.635350px;}
.y37{bottom:857.770350px;}
.y1a1{bottom:858.665700px;}
.y24e{bottom:860.263500px;}
.y20c{bottom:860.265900px;}
.y7{bottom:861.114450px;}
.y166{bottom:866.263500px;}
.y128{bottom:867.512100px;}
.y24d{bottom:875.263500px;}
.y20b{bottom:875.265900px;}
.y1d5{bottom:875.635350px;}
.y36{bottom:875.770350px;}
.y1ae{bottom:881.237467px;}
.y165{bottom:881.263500px;}
.y87{bottom:885.250350px;}
.y24c{bottom:890.263500px;}
.y20a{bottom:890.265900px;}
.y1d4{bottom:893.635350px;}
.y35{bottom:893.770350px;}
.y164{bottom:896.263500px;}
.y6{bottom:897.575250px;}
.y127{bottom:902.352750px;}
.y1b3{bottom:903.782491px;}
.y86{bottom:904.750350px;}
.y24b{bottom:905.263500px;}
.y209{bottom:905.265900px;}
.y1ca{bottom:907.181068px;}
.y163{bottom:911.263500px;}
.y1d3{bottom:911.635350px;}
.y34{bottom:911.770350px;}
.y126{bottom:917.958750px;}
.y24a{bottom:920.263500px;}
.y208{bottom:920.265900px;}
.y85{bottom:924.250350px;}
.y162{bottom:926.263500px;}
.y1c2{bottom:926.354348px;}
.y1d2{bottom:929.635350px;}
.y33{bottom:929.770350px;}
.y125{bottom:932.320350px;}
.y5{bottom:934.036050px;}
.y249{bottom:935.263500px;}
.y207{bottom:935.265900px;}
.y161{bottom:941.263500px;}
.y1d1{bottom:947.635350px;}
.y32{bottom:947.770350px;}
.y124{bottom:947.920350px;}
.y1a9{bottom:948.899281px;}
.y248{bottom:950.263500px;}
.y206{bottom:950.265900px;}
.y160{bottom:956.263500px;}
.y247{bottom:965.263500px;}
.y205{bottom:965.265900px;}
.y123{bottom:965.515350px;}
.y31{bottom:965.770350px;}
.y84{bottom:968.320350px;}
.y1cf{bottom:969.943800px;}
.y4{bottom:970.496850px;}
.y15f{bottom:971.263500px;}
.y1b1{bottom:971.457676px;}
.y246{bottom:980.263500px;}
.y204{bottom:980.265900px;}
.y1d0{bottom:983.230350px;}
.y30{bottom:983.770350px;}
.y83{bottom:983.920350px;}
.y15e{bottom:986.263500px;}
.y1ce{bottom:987.374100px;}
.y1a6{bottom:994.002700px;}
.y245{bottom:995.263500px;}
.y203{bottom:995.265900px;}
.y82{bottom:1001.515350px;}
.y2f{bottom:1001.770350px;}
.y1cd{bottom:1006.013100px;}
.y3{bottom:1006.926000px;}
.y244{bottom:1010.263500px;}
.y202{bottom:1010.265900px;}
.y1a8{bottom:1016.561095px;}
.y15d{bottom:1019.367600px;}
.y2e{bottom:1019.770350px;}
.y243{bottom:1025.263500px;}
.y201{bottom:1025.265900px;}
.y81{bottom:1037.365350px;}
.y15c{bottom:1037.367600px;}
.y2d{bottom:1037.770350px;}
.y242{bottom:1040.263500px;}
.y200{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.yb6{bottom:1132.414800px;}
.y10a{bottom:1132.415550px;}
.y80{bottom:1132.418700px;}
.y115{bottom:1132.421700px;}
.y241{bottom:1132.423500px;}
.y199{bottom:1132.457400px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h21{height:29.000389px;}
.h2{height:30.597656px;}
.h19{height:31.245117px;}
.h18{height:31.267090px;}
.h1c{height:31.296490px;}
.h1d{height:31.297090px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.h11{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h1f{height:37.164480px;}
.h1e{height:37.520508px;}
.h17{height:41.576119px;}
.hd{height:41.689453px;}
.h14{height:42.022561px;}
.h12{height:42.023161px;}
.h15{height:42.038161px;}
.h16{height:42.038761px;}
.h13{height:42.054361px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.718034px;}
.h9{height:43.740234px;}
.h22{height:44.597292px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h1b{height:61.282090px;}
.h1a{height:91.297090px;}
.h4{height:92.168262px;}
.h20{height:850.383000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:653.256000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x31{left:78.651600px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.920400px;}
.x46{left:102.047250px;}
.x4{left:106.299150px;}
.xc{left:110.540400px;}
.x44{left:123.319350px;}
.x3{left:125.427900px;}
.x3c{left:130.458000px;}
.x6{left:131.811000px;}
.xb{left:144.710400px;}
.x40{left:176.090105px;}
.x41{left:181.177050px;}
.x5{left:212.876400px;}
.x43{left:215.530350px;}
.x1c{left:246.323400px;}
.x2c{left:259.697850px;}
.x1a{left:262.497300px;}
.x2e{left:264.895350px;}
.x2b{left:266.042850px;}
.x15{left:277.328400px;}
.x18{left:278.989500px;}
.x20{left:280.656450px;}
.x1b{left:283.336200px;}
.x17{left:286.665300px;}
.x19{left:290.321550px;}
.x1f{left:298.814700px;}
.x3e{left:308.981938px;}
.x24{left:312.847650px;}
.x28{left:318.033900px;}
.x23{left:319.192650px;}
.x2f{left:428.515350px;}
.x2d{left:438.156600px;}
.x9{left:455.041500px;}
.xd{left:457.130400px;}
.x29{left:464.643900px;}
.x26{left:472.721400px;}
.x25{left:474.453900px;}
.x22{left:478.345350px;}
.x7{left:480.471000px;}
.x47{left:482.627250px;}
.x1d{left:485.625300px;}
.x3d{left:487.923300px;}
.xe{left:491.150400px;}
.x35{left:492.438450px;}
.x12{left:502.075350px;}
.x45{left:503.887350px;}
.x37{left:512.362200px;}
.x3f{left:516.931711px;}
.x33{left:524.470350px;}
.x27{left:544.192650px;}
.x32{left:548.755350px;}
.x13{left:552.955350px;}
.x42{left:570.680400px;}
.x14{left:578.050350px;}
.x3a{left:579.428850px;}
.x34{left:588.445350px;}
.x36{left:603.853950px;}
.x11{left:612.925350px;}
.x3b{left:615.475950px;}
.x30{left:626.020350px;}
.x2a{left:647.265150px;}
.x10{left:663.492300px;}
.x1e{left:687.141300px;}
.x2{left:693.365400px;}
.x38{left:721.717650px;}
.xf{left:728.391600px;}
.x39{left:743.868150px;}
.x21{left:749.656350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:20.070400pt;}
.v1{vertical-align:27.005867pt;}
.ls99{letter-spacing:-2.346667pt;}
.ls4a{letter-spacing:-1.480000pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls47{letter-spacing:-0.320000pt;}
.ls32{letter-spacing:-0.213333pt;}
.ls89{letter-spacing:-0.160000pt;}
.ls98{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.106667pt;}
.lsa5{letter-spacing:-0.085333pt;}
.ls50{letter-spacing:-0.080000pt;}
.ls4f{letter-spacing:-0.053333pt;}
.ls54{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls66{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.053333pt;}
.ls8c{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls59{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9e{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls64{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.266667pt;}
.ls5c{letter-spacing:0.298667pt;}
.ls40{letter-spacing:0.320000pt;}
.ls8f{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls8b{letter-spacing:0.469333pt;}
.ls7d{letter-spacing:0.475445pt;}
.ls7{letter-spacing:0.480000pt;}
.ls6a{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls8d{letter-spacing:0.554667pt;}
.ls11{letter-spacing:0.586667pt;}
.ls65{letter-spacing:0.597333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls75{letter-spacing:0.665623pt;}
.ls92{letter-spacing:0.682667pt;}
.ls49{letter-spacing:0.693333pt;}
.ls4e{letter-spacing:0.725333pt;}
.ls20{letter-spacing:0.746667pt;}
.ls69{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls6c{letter-spacing:0.810667pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls6b{letter-spacing:0.896000pt;}
.ls80{letter-spacing:0.903346pt;}
.ls23{letter-spacing:0.906667pt;}
.ls5b{letter-spacing:0.938667pt;}
.ls10{letter-spacing:0.960000pt;}
.ls90{letter-spacing:0.981333pt;}
.ls78{letter-spacing:0.998435pt;}
.ls28{letter-spacing:1.013333pt;}
.ls45{letter-spacing:1.066667pt;}
.ls76{letter-spacing:1.093524pt;}
.ls52{letter-spacing:1.109333pt;}
.ls24{letter-spacing:1.120000pt;}
.ls7e{letter-spacing:1.141069pt;}
.ls5a{letter-spacing:1.152000pt;}
.ls14{letter-spacing:1.173333pt;}
.ls25{letter-spacing:1.226667pt;}
.ls9a{letter-spacing:1.237333pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls7a{letter-spacing:1.283702pt;}
.ls9d{letter-spacing:1.322667pt;}
.ls79{letter-spacing:1.331247pt;}
.ls2d{letter-spacing:1.333333pt;}
.ls58{letter-spacing:1.365333pt;}
.ls73{letter-spacing:1.378791pt;}
.ls18{letter-spacing:1.386667pt;}
.ls57{letter-spacing:1.408000pt;}
.ls72{letter-spacing:1.426336pt;}
.ls6d{letter-spacing:1.440000pt;}
.lsa0{letter-spacing:1.450667pt;}
.ls7b{letter-spacing:1.473881pt;}
.lse{letter-spacing:1.493333pt;}
.ls77{letter-spacing:1.521425pt;}
.lsa4{letter-spacing:1.536000pt;}
.ls1b{letter-spacing:1.546667pt;}
.ls7c{letter-spacing:1.568970pt;}
.ls8e{letter-spacing:1.578667pt;}
.ls35{letter-spacing:1.600000pt;}
.ls74{letter-spacing:1.616514pt;}
.ls97{letter-spacing:1.621333pt;}
.ls34{letter-spacing:1.653333pt;}
.ls51{letter-spacing:1.664000pt;}
.ls46{letter-spacing:1.706667pt;}
.ls70{letter-spacing:1.711603pt;}
.lsa3{letter-spacing:1.749333pt;}
.ls71{letter-spacing:1.759148pt;}
.ls2b{letter-spacing:1.760000pt;}
.ls6f{letter-spacing:1.792000pt;}
.ls7f{letter-spacing:1.806692pt;}
.ls1d{letter-spacing:1.813333pt;}
.ls6e{letter-spacing:1.834667pt;}
.ls48{letter-spacing:1.866667pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls29{letter-spacing:1.973333pt;}
.ls9c{letter-spacing:2.005333pt;}
.ls19{letter-spacing:2.026667pt;}
.ls1e{letter-spacing:2.080000pt;}
.lsa1{letter-spacing:2.090667pt;}
.ls8{letter-spacing:2.133333pt;}
.ls3{letter-spacing:2.186667pt;}
.ls91{letter-spacing:2.218667pt;}
.ls44{letter-spacing:2.240000pt;}
.ls43{letter-spacing:2.293333pt;}
.ls53{letter-spacing:2.304000pt;}
.lsb{letter-spacing:2.346667pt;}
.ls33{letter-spacing:2.400000pt;}
.ls41{letter-spacing:2.506667pt;}
.ls56{letter-spacing:2.517333pt;}
.ls68{letter-spacing:2.560000pt;}
.lsa2{letter-spacing:2.602667pt;}
.ls17{letter-spacing:2.613333pt;}
.ls4c{letter-spacing:2.666667pt;}
.ls27{letter-spacing:2.720000pt;}
.ls96{letter-spacing:2.730667pt;}
.ls30{letter-spacing:2.773333pt;}
.ls9b{letter-spacing:2.816000pt;}
.ls84{letter-spacing:2.826667pt;}
.ls16{letter-spacing:2.880000pt;}
.ls3f{letter-spacing:2.933333pt;}
.ls5e{letter-spacing:2.986667pt;}
.ls26{letter-spacing:3.040000pt;}
.ls2f{letter-spacing:3.093333pt;}
.ls4{letter-spacing:3.146667pt;}
.ls95{letter-spacing:3.200000pt;}
.ls88{letter-spacing:3.360000pt;}
.ls15{letter-spacing:3.573333pt;}
.ls3e{letter-spacing:3.626667pt;}
.ls61{letter-spacing:3.680000pt;}
.ls86{letter-spacing:3.733333pt;}
.ls93{letter-spacing:3.754667pt;}
.ls85{letter-spacing:3.840000pt;}
.ls60{letter-spacing:3.893333pt;}
.ls2e{letter-spacing:3.946667pt;}
.ls63{letter-spacing:4.000000pt;}
.ls62{letter-spacing:4.213333pt;}
.ls9f{letter-spacing:4.266667pt;}
.ls94{letter-spacing:4.522667pt;}
.ls55{letter-spacing:4.640000pt;}
.ls42{letter-spacing:4.746667pt;}
.ls21{letter-spacing:4.853333pt;}
.ls87{letter-spacing:4.906667pt;}
.ls67{letter-spacing:5.173333pt;}
.ls5f{letter-spacing:5.226667pt;}
.ls82{letter-spacing:5.493333pt;}
.lsf{letter-spacing:5.920000pt;}
.ls83{letter-spacing:6.293333pt;}
.ls4b{letter-spacing:6.506667pt;}
.ls4d{letter-spacing:6.613333pt;}
.ls8a{letter-spacing:6.773333pt;}
.ls81{letter-spacing:8.000000pt;}
.ls0{letter-spacing:52.918112pt;}
.ls36{letter-spacing:93.174933pt;}
.ls38{letter-spacing:93.966400pt;}
.ls3c{letter-spacing:93.966933pt;}
.ls3b{letter-spacing:94.758400pt;}
.ls3d{letter-spacing:97.924800pt;}
.ls39{letter-spacing:108.966933pt;}
.ls37{letter-spacing:191.841600pt;}
.ls3a{letter-spacing:204.885333pt;}
.ws0{word-spacing:-31.284267pt;}
.wsc{word-spacing:-16.906667pt;}
.ws11{word-spacing:-16.373333pt;}
.ws6d{word-spacing:-16.320000pt;}
.ws8a{word-spacing:-16.000000pt;}
.ws7f{word-spacing:-15.733333pt;}
.ws2f{word-spacing:-15.573333pt;}
.wsf{word-spacing:-15.520000pt;}
.ws10{word-spacing:-15.146667pt;}
.ws6b{word-spacing:-15.040000pt;}
.ws30{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.wsb5{word-spacing:-14.773333pt;}
.wsb1{word-spacing:-14.720000pt;}
.wsb6{word-spacing:-14.666667pt;}
.ws89{word-spacing:-14.506667pt;}
.wscd{word-spacing:-14.421333pt;}
.wsb4{word-spacing:-14.400000pt;}
.ws26{word-spacing:-14.240000pt;}
.ws7e{word-spacing:-14.133333pt;}
.wsb0{word-spacing:-14.026667pt;}
.ws2e{word-spacing:-13.920000pt;}
.ws65{word-spacing:-13.866667pt;}
.wsb7{word-spacing:-13.760000pt;}
.wsb2{word-spacing:-13.653333pt;}
.ws81{word-spacing:-13.600000pt;}
.ws80{word-spacing:-13.493333pt;}
.ws82{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.333333pt;}
.wsd{word-spacing:-13.226667pt;}
.wsb3{word-spacing:-13.173333pt;}
.ws12{word-spacing:-13.120000pt;}
.wsc8{word-spacing:-12.885333pt;}
.wsed{word-spacing:-12.672000pt;}
.wseb{word-spacing:-12.586667pt;}
.wsef{word-spacing:-12.458667pt;}
.wsc9{word-spacing:-12.032000pt;}
.ws6c{word-spacing:-12.000000pt;}
.wsec{word-spacing:-11.946667pt;}
.ws9a{word-spacing:-11.886133pt;}
.ws4{word-spacing:-11.861333pt;}
.wscb{word-spacing:-11.733333pt;}
.wsca{word-spacing:-11.562667pt;}
.wsc6{word-spacing:-11.477333pt;}
.wsee{word-spacing:-11.392000pt;}
.wsce{word-spacing:-11.349333pt;}
.ws3{word-spacing:-11.120000pt;}
.wsea{word-spacing:-11.093333pt;}
.wscc{word-spacing:-11.050667pt;}
.wsf0{word-spacing:-11.008000pt;}
.ws99{word-spacing:-10.880000pt;}
.ws27{word-spacing:-10.666667pt;}
.wsc7{word-spacing:-10.538667pt;}
.ws8f{word-spacing:-10.282667pt;}
.ws9b{word-spacing:-9.508933pt;}
.ws8d{word-spacing:-9.258667pt;}
.ws1{word-spacing:-9.076144pt;}
.wscf{word-spacing:-8.320000pt;}
.ws8e{word-spacing:-6.954667pt;}
.ws92{word-spacing:-6.570667pt;}
.ws2a{word-spacing:-6.218667pt;}
.ws91{word-spacing:-5.376000pt;}
.wse5{word-spacing:-3.754667pt;}
.wsbc{word-spacing:-3.626667pt;}
.ws8b{word-spacing:-3.157333pt;}
.wsbb{word-spacing:-2.880000pt;}
.wse7{word-spacing:-2.730667pt;}
.ws17{word-spacing:-2.666667pt;}
.ws6{word-spacing:-2.565333pt;}
.wsd3{word-spacing:-2.400000pt;}
.ws97{word-spacing:-2.346667pt;}
.ws94{word-spacing:-2.293333pt;}
.ws53{word-spacing:-2.200000pt;}
.ws18{word-spacing:-1.973333pt;}
.wsbd{word-spacing:-1.866667pt;}
.wsae{word-spacing:-1.806692pt;}
.wsa9{word-spacing:-1.759148pt;}
.ws9f{word-spacing:-1.711603pt;}
.ws75{word-spacing:-1.706667pt;}
.wse9{word-spacing:-1.621333pt;}
.wsa0{word-spacing:-1.616514pt;}
.ws95{word-spacing:-1.600000pt;}
.wsd7{word-spacing:-1.578667pt;}
.wsab{word-spacing:-1.568970pt;}
.wsa3{word-spacing:-1.521425pt;}
.wsfe{word-spacing:-1.493333pt;}
.wsaa{word-spacing:-1.473881pt;}
.wsbf{word-spacing:-1.440000pt;}
.wsa8{word-spacing:-1.426336pt;}
.wsf3{word-spacing:-1.408000pt;}
.wsa4{word-spacing:-1.378791pt;}
.wsa6{word-spacing:-1.331247pt;}
.wsa7{word-spacing:-1.283702pt;}
.ws93{word-spacing:-1.173333pt;}
.wsad{word-spacing:-1.141069pt;}
.ws71{word-spacing:-1.120000pt;}
.wsf2{word-spacing:-1.109333pt;}
.wsa2{word-spacing:-1.093524pt;}
.ws76{word-spacing:-1.013333pt;}
.wsa5{word-spacing:-0.998435pt;}
.ws98{word-spacing:-0.960000pt;}
.wsde{word-spacing:-0.938667pt;}
.ws20{word-spacing:-0.906667pt;}
.wsaf{word-spacing:-0.903346pt;}
.ws67{word-spacing:-0.853333pt;}
.ws8c{word-spacing:-0.810667pt;}
.ws22{word-spacing:-0.800000pt;}
.ws2c{word-spacing:-0.768000pt;}
.ws83{word-spacing:-0.746667pt;}
.ws52{word-spacing:-0.720000pt;}
.wsa1{word-spacing:-0.665623pt;}
.ws1b{word-spacing:-0.640000pt;}
.wsdc{word-spacing:-0.554667pt;}
.ws66{word-spacing:-0.533333pt;}
.wsdb{word-spacing:-0.512000pt;}
.ws6f{word-spacing:-0.480000pt;}
.wsac{word-spacing:-0.475445pt;}
.ws19{word-spacing:-0.426667pt;}
.ws90{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.373333pt;}
.ws31{word-spacing:-0.320000pt;}
.ws6a{word-spacing:-0.298667pt;}
.wsb{word-spacing:-0.266667pt;}
.ws9c{word-spacing:-0.256000pt;}
.ws79{word-spacing:-0.213333pt;}
.ws7{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.053333pt;}
.wse3{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wse2{word-spacing:0.042667pt;}
.ws5e{word-spacing:0.053333pt;}
.ws61{word-spacing:0.080000pt;}
.wsfb{word-spacing:0.085333pt;}
.wsa{word-spacing:0.106667pt;}
.wsf9{word-spacing:0.128000pt;}
.wsc3{word-spacing:0.160000pt;}
.ws21{word-spacing:0.213333pt;}
.ws64{word-spacing:0.256000pt;}
.wse8{word-spacing:0.298667pt;}
.ws32{word-spacing:0.320000pt;}
.wsf8{word-spacing:0.341333pt;}
.wse6{word-spacing:0.384000pt;}
.ws7a{word-spacing:0.533333pt;}
.wse0{word-spacing:0.640000pt;}
.wsc1{word-spacing:0.693333pt;}
.ws33{word-spacing:0.746667pt;}
.ws3c{word-spacing:0.800000pt;}
.ws69{word-spacing:0.810667pt;}
.ws9d{word-spacing:0.853333pt;}
.wsc5{word-spacing:0.960000pt;}
.ws70{word-spacing:1.066667pt;}
.wsd9{word-spacing:1.109333pt;}
.ws9e{word-spacing:1.152000pt;}
.wsc4{word-spacing:1.173333pt;}
.wsf1{word-spacing:1.194667pt;}
.wsd5{word-spacing:1.237333pt;}
.ws88{word-spacing:1.322667pt;}
.ws1e{word-spacing:1.386667pt;}
.ws1d{word-spacing:1.440000pt;}
.ws51{word-spacing:1.480000pt;}
.ws1c{word-spacing:1.493333pt;}
.ws37{word-spacing:1.546667pt;}
.ws7d{word-spacing:1.621333pt;}
.ws84{word-spacing:1.653333pt;}
.ws63{word-spacing:1.749333pt;}
.ws96{word-spacing:1.760000pt;}
.ws16{word-spacing:1.813333pt;}
.wsdf{word-spacing:1.834667pt;}
.ws78{word-spacing:1.866667pt;}
.wsfc{word-spacing:1.877333pt;}
.ws5f{word-spacing:1.920000pt;}
.wsc0{word-spacing:2.080000pt;}
.wsd4{word-spacing:2.090667pt;}
.ws7b{word-spacing:2.133333pt;}
.ws85{word-spacing:2.186667pt;}
.wsfa{word-spacing:2.261333pt;}
.wsbe{word-spacing:2.293333pt;}
.wsf4{word-spacing:2.304000pt;}
.ws3d{word-spacing:2.346667pt;}
.wsf5{word-spacing:2.389333pt;}
.ws34{word-spacing:2.400000pt;}
.wsd6{word-spacing:2.432000pt;}
.ws38{word-spacing:2.453333pt;}
.ws23{word-spacing:2.506667pt;}
.wse4{word-spacing:2.517333pt;}
.wsb8{word-spacing:2.613333pt;}
.wsda{word-spacing:2.645333pt;}
.ws36{word-spacing:2.666667pt;}
.ws2b{word-spacing:2.720000pt;}
.wsf7{word-spacing:2.730667pt;}
.ws1f{word-spacing:2.773333pt;}
.ws3a{word-spacing:2.826667pt;}
.wsdd{word-spacing:2.858667pt;}
.ws50{word-spacing:2.880000pt;}
.ws35{word-spacing:2.933333pt;}
.ws4f{word-spacing:2.986667pt;}
.wse1{word-spacing:3.029333pt;}
.wsd8{word-spacing:3.072000pt;}
.wsd0{word-spacing:3.093333pt;}
.wsfd{word-spacing:3.114667pt;}
.ws13{word-spacing:3.146667pt;}
.ws2d{word-spacing:3.157333pt;}
.ws74{word-spacing:3.200000pt;}
.wsf6{word-spacing:3.285333pt;}
.ws25{word-spacing:3.306667pt;}
.ws1a{word-spacing:3.360000pt;}
.wsba{word-spacing:3.413333pt;}
.wsc2{word-spacing:3.466667pt;}
.ws68{word-spacing:3.498667pt;}
.ws62{word-spacing:3.541333pt;}
.ws24{word-spacing:3.573333pt;}
.wsb9{word-spacing:3.626667pt;}
.ws4e{word-spacing:3.680000pt;}
.ws77{word-spacing:3.786667pt;}
.ws86{word-spacing:3.893333pt;}
.ws6e{word-spacing:3.946667pt;}
.ws7c{word-spacing:4.000000pt;}
.ws60{word-spacing:4.053333pt;}
.ws4c{word-spacing:4.106667pt;}
.ws4d{word-spacing:4.213333pt;}
.ws39{word-spacing:4.266667pt;}
.ws3b{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws87{word-spacing:4.586667pt;}
.wsd1{word-spacing:4.853333pt;}
.wsd2{word-spacing:4.906667pt;}
.ws72{word-spacing:5.546667pt;}
.ws3e{word-spacing:19.200000pt;}
.ws54{word-spacing:26.760000pt;}
.ws58{word-spacing:41.280000pt;}
.ws5a{word-spacing:42.040000pt;}
.ws59{word-spacing:52.040000pt;}
.ws42{word-spacing:55.600000pt;}
.ws41{word-spacing:56.360000pt;}
.ws5c{word-spacing:61.280000pt;}
.ws40{word-spacing:70.120000pt;}
.ws5b{word-spacing:71.280000pt;}
.ws3f{word-spacing:74.120000pt;}
.ws56{word-spacing:77.680000pt;}
.ws48{word-spacing:86.280000pt;}
.ws45{word-spacing:87.040000pt;}
.ws47{word-spacing:87.760000pt;}
.ws29{word-spacing:90.221867pt;}
.ws5d{word-spacing:94.713600pt;}
.ws28{word-spacing:94.976000pt;}
.ws44{word-spacing:105.840000pt;}
.ws57{word-spacing:109.280000pt;}
.ws55{word-spacing:111.480000pt;}
.ws4b{word-spacing:117.602667pt;}
.ws49{word-spacing:165.600000pt;}
.ws46{word-spacing:166.320000pt;}
.ws4a{word-spacing:195.600000pt;}
.ws43{word-spacing:211.880000pt;}
._b{margin-left:-2576.085333pt;}
._4a{margin-left:-2554.922667pt;}
._5{margin-left:-5.912533pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._6{width:0.971733pt;}
._a2{width:1.861333pt;}
._a{width:2.752000pt;}
._8{width:4.181333pt;}
._7{width:5.418667pt;}
._9{width:7.146667pt;}
._a0{width:9.373333pt;}
._a1{width:13.456000pt;}
._9f{width:17.632000pt;}
._9e{width:20.010667pt;}
._4f{width:31.840000pt;}
._79{width:32.960000pt;}
._7c{width:51.280000pt;}
._3{width:52.983301pt;}
._95{width:54.040000pt;}
._85{width:61.504533pt;}
._8c{width:62.909867pt;}
._4e{width:66.400000pt;}
._78{width:73.960000pt;}
._84{width:75.293333pt;}
._90{width:81.280000pt;}
._93{width:84.800000pt;}
._5d{width:96.280000pt;}
._5e{width:97.538667pt;}
._8f{width:103.960000pt;}
._69{width:106.189867pt;}
._64{width:107.613333pt;}
._5c{width:110.576000pt;}
._56{width:111.701333pt;}
._6a{width:113.880000pt;}
._3d{width:116.565333pt;}
._97{width:123.240000pt;}
._70{width:125.456000pt;}
._51{width:126.880000pt;}
._81{width:128.394667pt;}
._66{width:131.314667pt;}
._3e{width:132.949333pt;}
._39{width:136.757333pt;}
._3f{width:138.752000pt;}
._6b{width:141.400000pt;}
._19{width:145.109333pt;}
._53{width:146.051200pt;}
._86{width:147.688000pt;}
._96{width:150.928000pt;}
._50{width:152.440000pt;}
._1b{width:154.197333pt;}
._91{width:157.371200pt;}
._98{width:159.157333pt;}
._5b{width:160.512000pt;}
._21{width:161.628800pt;}
._8e{width:163.160000pt;}
._31{width:169.783467pt;}
._16{width:171.264000pt;}
._57{width:172.160000pt;}
._1a{width:173.226667pt;}
._7a{width:179.090667pt;}
._4b{width:180.333333pt;}
._9b{width:181.272000pt;}
._63{width:182.640000pt;}
._48{width:184.320000pt;}
._40{width:191.068800pt;}
._68{width:192.605333pt;}
._76{width:194.360000pt;}
._27{width:195.413333pt;}
._94{width:200.205333pt;}
._35{width:201.600000pt;}
._62{width:202.525333pt;}
._55{width:203.480000pt;}
._46{width:205.018667pt;}
._13{width:207.189333pt;}
._92{width:209.455467pt;}
._14{width:213.546667pt;}
._6f{width:216.064000pt;}
._42{width:217.472000pt;}
._67{width:221.594667pt;}
._10{width:224.128000pt;}
._7f{width:225.400000pt;}
._2b{width:227.200000pt;}
._49{width:233.770667pt;}
._74{width:240.813333pt;}
._2e{width:242.005333pt;}
._22{width:244.394667pt;}
._61{width:248.280000pt;}
._1e{width:251.143467pt;}
._44{width:252.373333pt;}
._15{width:255.744000pt;}
._1f{width:260.565333pt;}
._60{width:261.560000pt;}
._77{width:264.240000pt;}
._65{width:268.240000pt;}
._18{width:269.141333pt;}
._26{width:270.434133pt;}
._38{width:272.170667pt;}
._5f{width:274.880000pt;}
._20{width:276.442667pt;}
._1c{width:278.741333pt;}
._3b{width:281.173333pt;}
._33{width:284.842667pt;}
._2a{width:286.130133pt;}
._4c{width:287.840000pt;}
._47{width:288.938667pt;}
._34{width:292.234667pt;}
._23{width:297.557333pt;}
._28{width:298.496000pt;}
._11{width:300.160000pt;}
._25{width:301.226667pt;}
._83{width:303.920000pt;}
._17{width:306.005333pt;}
._24{width:309.546667pt;}
._41{width:312.277333pt;}
._30{width:315.904000pt;}
._12{width:318.165333pt;}
._80{width:319.840000pt;}
._58{width:324.960000pt;}
._2f{width:336.213333pt;}
._36{width:339.200000pt;}
._75{width:340.760000pt;}
._7e{width:343.160000pt;}
._52{width:349.400000pt;}
._82{width:350.773333pt;}
._59{width:354.960000pt;}
._5a{width:356.040000pt;}
._1d{width:364.245333pt;}
._2d{width:368.981333pt;}
._3a{width:374.101333pt;}
._8a{width:376.480000pt;}
._54{width:380.160000pt;}
._32{width:384.000000pt;}
._43{width:385.962667pt;}
._45{width:387.754667pt;}
._7b{width:388.760000pt;}
._9d{width:389.760000pt;}
._9c{width:392.040000pt;}
._37{width:396.928000pt;}
._29{width:400.133333pt;}
._8b{width:407.560000pt;}
._3c{width:410.032000pt;}
._71{width:413.760000pt;}
._8d{width:438.680000pt;}
._4d{width:445.400000pt;}
._f{width:454.613333pt;}
._99{width:460.960000pt;}
._6e{width:464.328000pt;}
._9a{width:469.760000pt;}
._7d{width:487.560000pt;}
._e{width:503.344000pt;}
._2c{width:527.914667pt;}
._72{width:529.360000pt;}
._6d{width:533.001600pt;}
._d{width:534.826667pt;}
._6c{width:552.640000pt;}
._73{width:562.257067pt;}
._89{width:568.640000pt;}
._87{width:582.000000pt;}
._88{width:595.360000pt;}
._c{width:1061.418667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:24.874667pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fsd{font-size:38.035733pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:47.544533pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fse{font-size:57.053333pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2c{bottom:42.468667pt;}
.y240{bottom:71.345333pt;}
.y1a0{bottom:73.662400pt;}
.y15b{bottom:73.688400pt;}
.y157{bottom:73.693733pt;}
.y198{bottom:73.935467pt;}
.y159{bottom:74.281467pt;}
.y5f{bottom:74.342533pt;}
.y11a{bottom:74.344667pt;}
.y7f{bottom:74.462533pt;}
.y114{bottom:75.488933pt;}
.y110{bottom:75.492667pt;}
.yb5{bottom:76.446933pt;}
.y29{bottom:78.144267pt;}
.y1ff{bottom:79.219467pt;}
.y190{bottom:79.671867pt;}
.y109{bottom:80.735600pt;}
.ydc{bottom:83.120133pt;}
.y153{bottom:83.121867pt;}
.y23f{bottom:84.678667pt;}
.y19f{bottom:87.657067pt;}
.y15a{bottom:87.683067pt;}
.y156{bottom:87.688400pt;}
.y197{bottom:87.930133pt;}
.y158{bottom:88.276133pt;}
.y119{bottom:88.339333pt;}
.y11e{bottom:88.360667pt;}
.y113{bottom:89.483600pt;}
.y10f{bottom:89.487333pt;}
.y5e{bottom:90.342533pt;}
.y7e{bottom:90.462533pt;}
.yb4{bottom:91.113600pt;}
.y28{bottom:91.474267pt;}
.y1fe{bottom:92.552800pt;}
.y108{bottom:95.402267pt;}
.y18f{bottom:95.671867pt;}
.ydb{bottom:96.900133pt;}
.y23e{bottom:98.012000pt;}
.y152{bottom:99.121867pt;}
.y19e{bottom:101.651733pt;}
.y155{bottom:101.683067pt;}
.y196{bottom:101.924800pt;}
.y118{bottom:102.334000pt;}
.y11d{bottom:102.355333pt;}
.y112{bottom:103.478267pt;}
.y10e{bottom:103.482000pt;}
.y27{bottom:104.804267pt;}
.y1fd{bottom:105.886133pt;}
.y5d{bottom:106.342533pt;}
.y7d{bottom:106.462533pt;}
.y107{bottom:110.068933pt;}
.yda{bottom:110.680133pt;}
.y23d{bottom:111.345333pt;}
.y18e{bottom:111.671867pt;}
.yb3{bottom:113.786000pt;}
.y151{bottom:115.121867pt;}
.y19d{bottom:115.646400pt;}
.y154{bottom:115.677733pt;}
.y195{bottom:115.919467pt;}
.y117{bottom:116.328667pt;}
.y11c{bottom:116.350000pt;}
.y111{bottom:117.472933pt;}
.y10d{bottom:117.476667pt;}
.y1fc{bottom:119.219467pt;}
.y5c{bottom:122.342533pt;}
.y7c{bottom:122.462533pt;}
.yd9{bottom:124.460133pt;}
.y23c{bottom:124.678667pt;}
.y18d{bottom:127.671867pt;}
.yb2{bottom:128.232133pt;}
.y19c{bottom:129.641067pt;}
.y194{bottom:129.914133pt;}
.y116{bottom:130.323333pt;}
.y11b{bottom:130.344667pt;}
.y150{bottom:131.121867pt;}
.y1fb{bottom:132.552800pt;}
.y106{bottom:132.624933pt;}
.y23b{bottom:138.012000pt;}
.yd8{bottom:138.233600pt;}
.y5b{bottom:138.342533pt;}
.y7b{bottom:138.462533pt;}
.yb1{bottom:142.678400pt;}
.y19b{bottom:143.635733pt;}
.y18c{bottom:143.671867pt;}
.y193{bottom:143.908800pt;}
.y1fa{bottom:145.886133pt;}
.y105{bottom:146.404933pt;}
.y14f{bottom:147.121867pt;}
.y23a{bottom:151.345333pt;}
.y24{bottom:151.564933pt;}
.yd7{bottom:152.013600pt;}
.y5a{bottom:154.342533pt;}
.y7a{bottom:154.462533pt;}
.yb0{bottom:157.124533pt;}
.y19a{bottom:157.630400pt;}
.y192{bottom:157.903467pt;}
.y1f9{bottom:159.219467pt;}
.y18b{bottom:159.671867pt;}
.y104{bottom:160.184933pt;}
.y14e{bottom:163.121867pt;}
.y239{bottom:164.678667pt;}
.yd6{bottom:165.793600pt;}
.y23{bottom:167.564933pt;}
.y59{bottom:170.342533pt;}
.y79{bottom:170.462533pt;}
.yaf{bottom:171.570800pt;}
.y191{bottom:171.898133pt;}
.y1f8{bottom:172.552800pt;}
.y103{bottom:173.964933pt;}
.y18a{bottom:175.671867pt;}
.y1bd{bottom:177.648000pt;}
.y238{bottom:178.012000pt;}
.y14d{bottom:179.121867pt;}
.yd5{bottom:179.573600pt;}
.y1a7{bottom:181.776871pt;}
.y22{bottom:183.564933pt;}
.y1f7{bottom:185.886133pt;}
.yae{bottom:186.237467pt;}
.y58{bottom:186.342533pt;}
.y78{bottom:186.462533pt;}
.y102{bottom:187.744933pt;}
.y237{bottom:191.345333pt;}
.y189{bottom:191.671867pt;}
.yd4{bottom:193.353600pt;}
.y14c{bottom:195.121867pt;}
.y1f6{bottom:199.219467pt;}
.y21{bottom:199.564933pt;}
.yad{bottom:200.683600pt;}
.y101{bottom:201.524933pt;}
.y1b2{bottom:201.840664pt;}
.y57{bottom:202.342533pt;}
.y77{bottom:202.462533pt;}
.y236{bottom:204.678667pt;}
.yd3{bottom:207.133600pt;}
.y188{bottom:207.671867pt;}
.y14b{bottom:211.121867pt;}
.y1f5{bottom:212.552800pt;}
.y100{bottom:215.304933pt;}
.yac{bottom:215.350267pt;}
.y26{bottom:215.564933pt;}
.y235{bottom:218.012000pt;}
.y56{bottom:218.342533pt;}
.y76{bottom:218.462533pt;}
.yd2{bottom:220.913600pt;}
.y1c7{bottom:221.892652pt;}
.y187{bottom:223.671867pt;}
.y1f4{bottom:225.886133pt;}
.y14a{bottom:227.121867pt;}
.yff{bottom:229.084933pt;}
.yab{bottom:229.796533pt;}
.y20{bottom:231.206933pt;}
.y234{bottom:231.345333pt;}
.y25{bottom:231.564933pt;}
.y55{bottom:234.342533pt;}
.y75{bottom:234.462533pt;}
.yd1{bottom:234.693600pt;}
.y1f3{bottom:239.219467pt;}
.y186{bottom:239.671867pt;}
.y1a5{bottom:241.932592pt;}
.yfe{bottom:242.858267pt;}
.y149{bottom:243.121867pt;}
.yaa{bottom:244.242667pt;}
.y233{bottom:244.678667pt;}
.yd0{bottom:248.473600pt;}
.y54{bottom:250.342533pt;}
.y74{bottom:250.462533pt;}
.y1f2{bottom:252.552800pt;}
.y185{bottom:255.671867pt;}
.yfd{bottom:256.638267pt;}
.y232{bottom:258.012000pt;}
.ya9{bottom:258.688800pt;}
.y148{bottom:259.121867pt;}
.y1b5{bottom:261.984499pt;}
.ycf{bottom:262.253600pt;}
.y1f1{bottom:265.886133pt;}
.y53{bottom:266.342533pt;}
.y73{bottom:266.462533pt;}
.yfc{bottom:270.418267pt;}
.y231{bottom:271.345333pt;}
.y184{bottom:271.671867pt;}
.ya8{bottom:273.138533pt;}
.y147{bottom:275.121867pt;}
.yce{bottom:276.033600pt;}
.y1f0{bottom:279.219467pt;}
.y1a2{bottom:282.036406pt;}
.y52{bottom:282.342533pt;}
.y72{bottom:282.462533pt;}
.yfb{bottom:284.198267pt;}
.y230{bottom:284.678667pt;}
.ya7{bottom:287.584800pt;}
.y183{bottom:287.671867pt;}
.ycd{bottom:289.813600pt;}
.y146{bottom:291.121867pt;}
.y1ef{bottom:292.552800pt;}
.y1cc{bottom:293.167022pt;}
.y1f{bottom:297.923733pt;}
.yfa{bottom:297.978267pt;}
.y22f{bottom:298.012000pt;}
.y1df{bottom:298.102533pt;}
.y51{bottom:298.342533pt;}
.y71{bottom:298.462533pt;}
.ya6{bottom:302.030933pt;}
.y1c3{bottom:302.100279pt;}
.ycc{bottom:303.593600pt;}
.y182{bottom:303.671867pt;}
.y1ee{bottom:305.886133pt;}
.y145{bottom:307.121867pt;}
.y22e{bottom:311.345333pt;}
.yf9{bottom:311.758267pt;}
.y50{bottom:314.342533pt;}
.y70{bottom:314.462533pt;}
.ya5{bottom:316.473600pt;}
.ycb{bottom:317.373600pt;}
.y1ed{bottom:319.219467pt;}
.y181{bottom:319.671867pt;}
.y1ab{bottom:322.140220pt;}
.y1e{bottom:322.230400pt;}
.y144{bottom:323.121867pt;}
.y22d{bottom:324.678667pt;}
.yf8{bottom:325.538267pt;}
.y1c8{bottom:328.873067pt;}
.y4f{bottom:330.342533pt;}
.y6f{bottom:330.462533pt;}
.ya4{bottom:330.919867pt;}
.yca{bottom:331.181733pt;}
.y1ec{bottom:332.552800pt;}
.y180{bottom:335.671867pt;}
.y22c{bottom:338.012000pt;}
.y1d{bottom:338.230400pt;}
.y143{bottom:339.121867pt;}
.yf7{bottom:339.318267pt;}
.y1b0{bottom:342.204013pt;}
.yc9{bottom:344.961733pt;}
.ya3{bottom:345.366000pt;}
.y1eb{bottom:345.886133pt;}
.y4e{bottom:346.342533pt;}
.y6e{bottom:346.462533pt;}
.y22b{bottom:351.345333pt;}
.y17f{bottom:351.671867pt;}
.yf6{bottom:353.098267pt;}
.y1c{bottom:354.230400pt;}
.y142{bottom:355.121867pt;}
.yc8{bottom:358.741733pt;}
.y1ea{bottom:359.219467pt;}
.ya2{bottom:359.812267pt;}
.y1b6{bottom:362.244034pt;}
.y4d{bottom:362.342533pt;}
.y6d{bottom:362.462533pt;}
.y22a{bottom:364.678667pt;}
.y122{bottom:364.755333pt;}
.yf5{bottom:366.878267pt;}
.y17e{bottom:367.671867pt;}
.y1b{bottom:370.230400pt;}
.y141{bottom:371.121867pt;}
.yc7{bottom:372.521733pt;}
.y1e9{bottom:372.552800pt;}
.ya1{bottom:374.261867pt;}
.y229{bottom:378.012000pt;}
.y4c{bottom:378.342533pt;}
.y6c{bottom:378.462533pt;}
.y121{bottom:378.750000pt;}
.yf4{bottom:380.658267pt;}
.y1b8{bottom:382.284054pt;}
.y17d{bottom:383.671867pt;}
.y1e8{bottom:385.886133pt;}
.y1a{bottom:386.230400pt;}
.yc6{bottom:386.301733pt;}
.y140{bottom:387.121867pt;}
.ya0{bottom:388.704533pt;}
.y228{bottom:391.345333pt;}
.y120{bottom:392.744667pt;}
.y4b{bottom:394.342533pt;}
.yf3{bottom:394.438267pt;}
.y6b{bottom:394.462533pt;}
.y1e7{bottom:399.219467pt;}
.y17c{bottom:399.671867pt;}
.yc5{bottom:400.081733pt;}
.y19{bottom:402.230400pt;}
.y1c1{bottom:402.347928pt;}
.y13f{bottom:403.121867pt;}
.y9f{bottom:403.154400pt;}
.y227{bottom:404.678667pt;}
.y11f{bottom:406.739333pt;}
.yf2{bottom:408.218267pt;}
.y4a{bottom:410.342533pt;}
.y6a{bottom:410.462533pt;}
.y10c{bottom:410.628667pt;}
.y1e6{bottom:412.552800pt;}
.yc4{bottom:413.861733pt;}
.y17b{bottom:415.671867pt;}
.y9e{bottom:417.597067pt;}
.y226{bottom:418.012000pt;}
.y18{bottom:418.230400pt;}
.y13e{bottom:419.121867pt;}
.yf1{bottom:421.998267pt;}
.y1ad{bottom:422.399754pt;}
.y10b{bottom:424.623333pt;}
.y49{bottom:426.342533pt;}
.y69{bottom:426.462533pt;}
.yc3{bottom:427.641733pt;}
.y225{bottom:431.345333pt;}
.y17a{bottom:431.671867pt;}
.y9d{bottom:432.043200pt;}
.y17{bottom:434.230400pt;}
.y13d{bottom:435.121867pt;}
.yf0{bottom:435.822667pt;}
.yc2{bottom:441.421733pt;}
.y1e5{bottom:441.982533pt;}
.y48{bottom:442.342533pt;}
.y1b4{bottom:442.439775pt;}
.y68{bottom:442.462533pt;}
.y224{bottom:444.678667pt;}
.y9c{bottom:446.492933pt;}
.y179{bottom:447.671867pt;}
.yef{bottom:449.602667pt;}
.y16{bottom:450.230400pt;}
.y13c{bottom:451.121867pt;}
.yc1{bottom:455.201733pt;}
.y223{bottom:458.012000pt;}
.y47{bottom:458.342533pt;}
.y67{bottom:458.462533pt;}
.y9b{bottom:460.939067pt;}
.y1b7{bottom:462.491682pt;}
.yee{bottom:463.382667pt;}
.y178{bottom:463.671867pt;}
.y15{bottom:466.230400pt;}
.y13b{bottom:467.121867pt;}
.y222{bottom:471.345333pt;}
.y46{bottom:474.342533pt;}
.y66{bottom:474.462533pt;}
.y9a{bottom:475.385333pt;}
.yed{bottom:477.162667pt;}
.y177{bottom:479.671867pt;}
.yc0{bottom:480.321733pt;}
.y14{bottom:482.230400pt;}
.y1bb{bottom:482.543589pt;}
.y13a{bottom:483.121867pt;}
.y221{bottom:484.678667pt;}
.y99{bottom:489.828000pt;}
.y45{bottom:490.342533pt;}
.y65{bottom:490.462533pt;}
.yec{bottom:490.942667pt;}
.y176{bottom:495.671867pt;}
.y220{bottom:498.012000pt;}
.y13{bottom:498.230400pt;}
.y139{bottom:499.121867pt;}
.y1af{bottom:502.607382pt;}
.y98{bottom:504.274133pt;}
.yeb{bottom:504.722667pt;}
.ybd{bottom:505.411733pt;}
.ybe{bottom:505.421733pt;}
.ybf{bottom:505.431733pt;}
.y1e4{bottom:506.102533pt;}
.y44{bottom:506.342533pt;}
.y64{bottom:506.462533pt;}
.y21f{bottom:511.345333pt;}
.y175{bottom:511.671867pt;}
.y12{bottom:514.230400pt;}
.y138{bottom:515.121867pt;}
.yea{bottom:518.502667pt;}
.y97{bottom:518.720400pt;}
.ybc{bottom:518.741733pt;}
.y63{bottom:522.462533pt;}
.y1b9{bottom:522.647403pt;}
.y21e{bottom:524.678667pt;}
.y174{bottom:527.671867pt;}
.y11{bottom:530.230400pt;}
.y137{bottom:531.121867pt;}
.ye9{bottom:532.282667pt;}
.y96{bottom:533.166533pt;}
.y43{bottom:537.982533pt;}
.y21d{bottom:538.012000pt;}
.y62{bottom:538.462533pt;}
.y1aa{bottom:542.699310pt;}
.y173{bottom:543.671867pt;}
.ybb{bottom:543.861733pt;}
.ye8{bottom:546.062667pt;}
.y10{bottom:546.230400pt;}
.y136{bottom:547.121867pt;}
.y95{bottom:547.612667pt;}
.y21c{bottom:551.345333pt;}
.y1e3{bottom:554.102533pt;}
.y61{bottom:554.462533pt;}
.yb9{bottom:557.191733pt;}
.ye7{bottom:559.842667pt;}
.y94{bottom:562.058933pt;}
.y1ac{bottom:562.751217pt;}
.y135{bottom:563.121867pt;}
.y21b{bottom:564.678667pt;}
.y60{bottom:570.462533pt;}
.yba{bottom:570.521733pt;}
.ye6{bottom:573.622667pt;}
.y172{bottom:575.311867pt;}
.y93{bottom:576.505067pt;}
.y25c{bottom:578.012000pt;}
.y21a{bottom:578.014133pt;}
.y134{bottom:579.121867pt;}
.y1a4{bottom:582.803124pt;}
.yf{bottom:586.370933pt;}
.y42{bottom:586.462533pt;}
.y92{bottom:590.958400pt;}
.y25b{bottom:591.345333pt;}
.y219{bottom:591.347467pt;}
.y133{bottom:595.121867pt;}
.yb8{bottom:595.641733pt;}
.ye{bottom:597.438267pt;}
.ye5{bottom:598.742667pt;}
.y41{bottom:602.462533pt;}
.y1c4{bottom:602.866997pt;}
.y25a{bottom:604.678667pt;}
.y218{bottom:604.680800pt;}
.y91{bottom:605.401067pt;}
.y132{bottom:611.121867pt;}
.y259{bottom:618.012000pt;}
.y217{bottom:618.014133pt;}
.y1de{bottom:618.115867pt;}
.y40{bottom:618.462533pt;}
.y90{bottom:619.843733pt;}
.y1c0{bottom:622.907018pt;}
.y171{bottom:623.345333pt;}
.ye2{bottom:623.832667pt;}
.ye3{bottom:623.842667pt;}
.ye4{bottom:623.852667pt;}
.yb7{bottom:623.875867pt;}
.y1c9{bottom:625.789510pt;}
.y131{bottom:627.121867pt;}
.yd{bottom:630.452400pt;}
.y258{bottom:631.345333pt;}
.y216{bottom:631.347467pt;}
.y1e2{bottom:634.102533pt;}
.y8f{bottom:634.289867pt;}
.y3f{bottom:634.462533pt;}
.y170{bottom:636.678667pt;}
.ye1{bottom:637.162667pt;}
.yc{bottom:642.452400pt;}
.y1a3{bottom:642.958845pt;}
.y130{bottom:643.121867pt;}
.y257{bottom:644.678667pt;}
.y215{bottom:644.680800pt;}
.y8e{bottom:648.736133pt;}
.yb{bottom:649.629867pt;}
.y16f{bottom:650.012000pt;}
.y1dd{bottom:650.342533pt;}
.y3e{bottom:650.462533pt;}
.y1cb{bottom:650.988183pt;}
.y256{bottom:658.012000pt;}
.y214{bottom:658.014133pt;}
.y12f{bottom:659.121867pt;}
.ye0{bottom:662.272667pt;}
.y1c6{bottom:663.022718pt;}
.y8d{bottom:663.182267pt;}
.y16e{bottom:663.345333pt;}
.y1dc{bottom:666.342533pt;}
.ya{bottom:666.452400pt;}
.y3d{bottom:666.462533pt;}
.ydf{bottom:668.932667pt;}
.y255{bottom:671.345333pt;}
.y213{bottom:671.347467pt;}
.y12e{bottom:675.121867pt;}
.y16d{bottom:676.678667pt;}
.y8c{bottom:677.628533pt;}
.y1e1{bottom:682.102533pt;}
.y1db{bottom:682.342533pt;}
.y3c{bottom:682.462533pt;}
.y1c5{bottom:683.074625pt;}
.y254{bottom:684.678667pt;}
.y212{bottom:684.680800pt;}
.y16c{bottom:690.012000pt;}
.y12d{bottom:691.121867pt;}
.y9{bottom:691.982933pt;}
.y8b{bottom:692.074667pt;}
.y253{bottom:698.012000pt;}
.y211{bottom:698.014133pt;}
.y1da{bottom:698.342533pt;}
.y3b{bottom:698.462533pt;}
.yde{bottom:700.712667pt;}
.y1ba{bottom:703.102679pt;}
.y16b{bottom:703.345333pt;}
.y8a{bottom:706.527733pt;}
.y12c{bottom:707.121867pt;}
.y252{bottom:711.345333pt;}
.y210{bottom:711.347467pt;}
.y1d9{bottom:714.342533pt;}
.y3a{bottom:714.462533pt;}
.y16a{bottom:716.678667pt;}
.y12b{bottom:723.121867pt;}
.y1bf{bottom:723.154667pt;}
.y251{bottom:724.678667pt;}
.y20f{bottom:724.680800pt;}
.ydd{bottom:728.955867pt;}
.y169{bottom:730.012000pt;}
.y1d8{bottom:730.342533pt;}
.y39{bottom:730.462533pt;}
.y89{bottom:732.309067pt;}
.y8{bottom:733.053600pt;}
.y250{bottom:738.012000pt;}
.y20e{bottom:738.014133pt;}
.y12a{bottom:739.121867pt;}
.y1bc{bottom:743.206493pt;}
.y168{bottom:743.345333pt;}
.y1be{bottom:746.013600pt;}
.y1e0{bottom:746.102533pt;}
.y1d7{bottom:746.342533pt;}
.y38{bottom:746.462533pt;}
.y24f{bottom:751.345333pt;}
.y20d{bottom:751.347467pt;}
.y129{bottom:755.121867pt;}
.y167{bottom:756.678667pt;}
.y88{bottom:758.090400pt;}
.y1d6{bottom:762.342533pt;}
.y37{bottom:762.462533pt;}
.y1a1{bottom:763.258400pt;}
.y24e{bottom:764.678667pt;}
.y20c{bottom:764.680800pt;}
.y7{bottom:765.435067pt;}
.y166{bottom:770.012000pt;}
.y128{bottom:771.121867pt;}
.y24d{bottom:778.012000pt;}
.y20b{bottom:778.014133pt;}
.y1d5{bottom:778.342533pt;}
.y36{bottom:778.462533pt;}
.y1ae{bottom:783.322193pt;}
.y165{bottom:783.345333pt;}
.y87{bottom:786.889200pt;}
.y24c{bottom:791.345333pt;}
.y20a{bottom:791.347467pt;}
.y1d4{bottom:794.342533pt;}
.y35{bottom:794.462533pt;}
.y164{bottom:796.678667pt;}
.y6{bottom:797.844667pt;}
.y127{bottom:802.091333pt;}
.y1b3{bottom:803.362214pt;}
.y86{bottom:804.222533pt;}
.y24b{bottom:804.678667pt;}
.y209{bottom:804.680800pt;}
.y1ca{bottom:806.383172pt;}
.y163{bottom:810.012000pt;}
.y1d3{bottom:810.342533pt;}
.y34{bottom:810.462533pt;}
.y126{bottom:815.963333pt;}
.y24a{bottom:818.012000pt;}
.y208{bottom:818.014133pt;}
.y85{bottom:821.555867pt;}
.y162{bottom:823.345333pt;}
.y1c2{bottom:823.426087pt;}
.y1d2{bottom:826.342533pt;}
.y33{bottom:826.462533pt;}
.y125{bottom:828.729200pt;}
.y5{bottom:830.254267pt;}
.y249{bottom:831.345333pt;}
.y207{bottom:831.347467pt;}
.y161{bottom:836.678667pt;}
.y1d1{bottom:842.342533pt;}
.y32{bottom:842.462533pt;}
.y124{bottom:842.595867pt;}
.y1a9{bottom:843.466028pt;}
.y248{bottom:844.678667pt;}
.y206{bottom:844.680800pt;}
.y160{bottom:850.012000pt;}
.y247{bottom:858.012000pt;}
.y205{bottom:858.014133pt;}
.y123{bottom:858.235867pt;}
.y31{bottom:858.462533pt;}
.y84{bottom:860.729200pt;}
.y1cf{bottom:862.172267pt;}
.y4{bottom:862.663867pt;}
.y15f{bottom:863.345333pt;}
.y1b1{bottom:863.517935pt;}
.y246{bottom:871.345333pt;}
.y204{bottom:871.347467pt;}
.y1d0{bottom:873.982533pt;}
.y30{bottom:874.462533pt;}
.y83{bottom:874.595867pt;}
.y15e{bottom:876.678667pt;}
.y1ce{bottom:877.665867pt;}
.y1a6{bottom:883.557955pt;}
.y245{bottom:884.678667pt;}
.y203{bottom:884.680800pt;}
.y82{bottom:890.235867pt;}
.y2f{bottom:890.462533pt;}
.y1cd{bottom:894.233867pt;}
.y3{bottom:895.045333pt;}
.y244{bottom:898.012000pt;}
.y202{bottom:898.014133pt;}
.y1a8{bottom:903.609862pt;}
.y15d{bottom:906.104533pt;}
.y2e{bottom:906.462533pt;}
.y243{bottom:911.345333pt;}
.y201{bottom:911.347467pt;}
.y81{bottom:922.102533pt;}
.y15c{bottom:922.104533pt;}
.y2d{bottom:922.462533pt;}
.y242{bottom:924.678667pt;}
.y200{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.yb6{bottom:1006.590933pt;}
.y10a{bottom:1006.591600pt;}
.y80{bottom:1006.594400pt;}
.y115{bottom:1006.597067pt;}
.y241{bottom:1006.598667pt;}
.y199{bottom:1006.628800pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h21{height:25.778124pt;}
.h2{height:27.197917pt;}
.h19{height:27.773438pt;}
.h18{height:27.792969pt;}
.h1c{height:27.819102pt;}
.h1d{height:27.819635pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.h11{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h1f{height:33.035093pt;}
.h1e{height:33.351562pt;}
.h17{height:36.956550pt;}
.hd{height:37.057292pt;}
.h14{height:37.353387pt;}
.h12{height:37.353921pt;}
.h15{height:37.367254pt;}
.h16{height:37.367788pt;}
.h13{height:37.381654pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.860475pt;}
.h9{height:38.880208pt;}
.h22{height:39.642038pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h1b{height:54.472969pt;}
.h1a{height:81.152969pt;}
.h4{height:81.927344pt;}
.h20{height:755.896000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:580.672000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x31{left:69.912533pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818133pt;}
.x46{left:90.708667pt;}
.x4{left:94.488133pt;}
.xc{left:98.258133pt;}
.x44{left:109.617200pt;}
.x3{left:111.491467pt;}
.x3c{left:115.962667pt;}
.x6{left:117.165333pt;}
.xb{left:128.631467pt;}
.x40{left:156.524538pt;}
.x41{left:161.046267pt;}
.x5{left:189.223467pt;}
.x43{left:191.582533pt;}
.x1c{left:218.954133pt;}
.x2c{left:230.842533pt;}
.x1a{left:233.330933pt;}
.x2e{left:235.462533pt;}
.x2b{left:236.482533pt;}
.x15{left:246.514133pt;}
.x18{left:247.990667pt;}
.x20{left:249.472400pt;}
.x1b{left:251.854400pt;}
.x17{left:254.813600pt;}
.x19{left:258.063600pt;}
.x1f{left:265.613067pt;}
.x3e{left:274.650612pt;}
.x24{left:278.086800pt;}
.x28{left:282.696800pt;}
.x23{left:283.726800pt;}
.x2f{left:380.902533pt;}
.x2d{left:389.472533pt;}
.x9{left:404.481333pt;}
.xd{left:406.338133pt;}
.x29{left:413.016800pt;}
.x26{left:420.196800pt;}
.x25{left:421.736800pt;}
.x22{left:425.195867pt;}
.x7{left:427.085333pt;}
.x47{left:429.002000pt;}
.x1d{left:431.666933pt;}
.x3d{left:433.709600pt;}
.xe{left:436.578133pt;}
.x35{left:437.723067pt;}
.x12{left:446.289200pt;}
.x45{left:447.899867pt;}
.x37{left:455.433067pt;}
.x3f{left:459.494854pt;}
.x33{left:466.195867pt;}
.x27{left:483.726800pt;}
.x32{left:487.782533pt;}
.x13{left:491.515867pt;}
.x42{left:507.271467pt;}
.x14{left:513.822533pt;}
.x3a{left:515.047867pt;}
.x34{left:523.062533pt;}
.x36{left:536.759067pt;}
.x11{left:544.822533pt;}
.x3b{left:547.089733pt;}
.x30{left:556.462533pt;}
.x2a{left:575.346800pt;}
.x10{left:589.770933pt;}
.x1e{left:610.792267pt;}
.x2{left:616.324800pt;}
.x38{left:641.526800pt;}
.xf{left:647.459200pt;}
.x39{left:661.216133pt;}
.x21{left:666.361200pt;}
}




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