
    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_1183844dbcbcb21e65cb5056.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.152344;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_3d47ad39c8bc65f764365c42.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.152344;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_5cfdbaebb3a844b88c91facb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717285;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_d6f51c4a41dc54849768c3e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.719727;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_e20e5c3fcedc17152d3cf859.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_052e7508519914557d88ce06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eca9bf239a8dac7f9da19a46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_d573a6bea2f0f09a1dbd60fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.113281;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_5239113dc1a7f96f0fa80e51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_db862f171340152def60fc31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_4bb94d28b82d8b4a4cb6c1ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5228eab60ba82c621dceafe7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_444582bcfc87a802818ee7e3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_12919baa028b821c90d7cf23.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a332b73c8b493d9389e335db.woff2')format("woff");}.fff{font-family:fff;line-height:0.719727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e35e10ff34dbb1fd96f38b76.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.865234;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.246063,0.044192,-0.044192,0.246063,0,0);-ms-transform:matrix(0.246063,0.044192,-0.044192,0.246063,0,0);-webkit-transform:matrix(0.246063,0.044192,-0.044192,0.246063,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);}
.v1{vertical-align:-45.420000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.799940px;}
.v3{vertical-align:25.200000px;}
.v2{vertical-align:136.800180px;}
.ls23{letter-spacing:-65.088000px;}
.ls1e{letter-spacing:-43.334400px;}
.ls67{letter-spacing:-11.988000px;}
.ls8e{letter-spacing:-0.108000px;}
.ls4e{letter-spacing:-0.086400px;}
.ls4a{letter-spacing:-0.084000px;}
.ls5{letter-spacing:-0.076800px;}
.ls49{letter-spacing:-0.067200px;}
.ls65{letter-spacing:-0.064800px;}
.ls3{letter-spacing:-0.057600px;}
.ls3e{letter-spacing:-0.050400px;}
.ls55{letter-spacing:-0.048000px;}
.ls20{letter-spacing:-0.043200px;}
.ls34{letter-spacing:-0.042000px;}
.ls45{letter-spacing:-0.038400px;}
.lsf{letter-spacing:-0.036000px;}
.ls6e{letter-spacing:-0.033600px;}
.lsac{letter-spacing:-0.033000px;}
.lsd{letter-spacing:-0.028800px;}
.lsaa{letter-spacing:-0.026400px;}
.ls78{letter-spacing:-0.025200px;}
.ls77{letter-spacing:-0.024000px;}
.ls6{letter-spacing:-0.021600px;}
.lsad{letter-spacing:-0.019800px;}
.ls57{letter-spacing:-0.019200px;}
.ls87{letter-spacing:-0.016800px;}
.ls72{letter-spacing:-0.015000px;}
.lsc{letter-spacing:-0.014400px;}
.ls48{letter-spacing:-0.013200px;}
.ls68{letter-spacing:-0.012000px;}
.ls69{letter-spacing:-0.010800px;}
.ls6f{letter-spacing:-0.008400px;}
.lsab{letter-spacing:-0.006600px;}
.ls79{letter-spacing:-0.006300px;}
.ls2{letter-spacing:0.000000px;}
.ls8f{letter-spacing:0.000852px;}
.ls86{letter-spacing:0.004007px;}
.ls85{letter-spacing:0.004607px;}
.ls84{letter-spacing:0.004800px;}
.lsb{letter-spacing:0.005340px;}
.ls9f{letter-spacing:0.005628px;}
.ls75{letter-spacing:0.006300px;}
.lsa6{letter-spacing:0.006444px;}
.ls7c{letter-spacing:0.006480px;}
.ls6d{letter-spacing:0.006600px;}
.ls7a{letter-spacing:0.006720px;}
.lsa{letter-spacing:0.007032px;}
.lse{letter-spacing:0.007200px;}
.ls30{letter-spacing:0.008400px;}
.ls60{letter-spacing:0.008904px;}
.ls5c{letter-spacing:0.009000px;}
.ls9a{letter-spacing:0.009372px;}
.ls56{letter-spacing:0.009600px;}
.ls18{letter-spacing:0.010548px;}
.ls38{letter-spacing:0.010560px;}
.ls3a{letter-spacing:0.010800px;}
.ls90{letter-spacing:0.011718px;}
.ls14{letter-spacing:0.012000px;}
.ls8a{letter-spacing:0.012480px;}
.ls13{letter-spacing:0.012600px;}
.lsa8{letter-spacing:0.013200px;}
.ls5b{letter-spacing:0.013710px;}
.ls97{letter-spacing:0.014040px;}
.ls93{letter-spacing:0.014064px;}
.ls0{letter-spacing:0.014400px;}
.ls52{letter-spacing:0.014628px;}
.ls70{letter-spacing:0.014646px;}
.ls74{letter-spacing:0.015000px;}
.ls28{letter-spacing:0.015234px;}
.ls3c{letter-spacing:0.016200px;}
.ls3f{letter-spacing:0.016380px;}
.ls46{letter-spacing:0.016404px;}
.ls53{letter-spacing:0.016452px;}
.ls36{letter-spacing:0.016680px;}
.ls16{letter-spacing:0.016800px;}
.ls1a{letter-spacing:0.018720px;}
.ls76{letter-spacing:0.018900px;}
.ls1{letter-spacing:0.019200px;}
.ls2d{letter-spacing:0.019320px;}
.ls2f{letter-spacing:0.019800px;}
.ls92{letter-spacing:0.020100px;}
.ls9{letter-spacing:0.021600px;}
.ls61{letter-spacing:0.021936px;}
.ls2a{letter-spacing:0.022200px;}
.ls8{letter-spacing:0.024000px;}
.ls66{letter-spacing:0.024900px;}
.ls26{letter-spacing:0.025200px;}
.ls6b{letter-spacing:0.025620px;}
.lsa9{letter-spacing:0.026400px;}
.ls4b{letter-spacing:0.027000px;}
.ls7f{letter-spacing:0.028140px;}
.ls10{letter-spacing:0.028800px;}
.ls73{letter-spacing:0.030000px;}
.ls27{letter-spacing:0.032400px;}
.ls82{letter-spacing:0.033000px;}
.ls41{letter-spacing:0.033600px;}
.ls81{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.038400px;}
.ls8b{letter-spacing:0.042180px;}
.ls25{letter-spacing:0.043200px;}
.ls5d{letter-spacing:0.045000px;}
.ls31{letter-spacing:0.046800px;}
.ls5f{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.050400px;}
.ls24{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.057600px;}
.ls15{letter-spacing:0.062400px;}
.ls7{letter-spacing:0.064800px;}
.ls19{letter-spacing:0.067200px;}
.ls7e{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.075000px;}
.ls4{letter-spacing:0.076800px;}
.ls32{letter-spacing:0.079200px;}
.ls42{letter-spacing:0.082680px;}
.ls43{letter-spacing:0.082800px;}
.ls12{letter-spacing:0.084000px;}
.ls2c{letter-spacing:0.084600px;}
.ls4d{letter-spacing:0.086400px;}
.ls1f{letter-spacing:0.096000px;}
.ls83{letter-spacing:0.100800px;}
.ls21{letter-spacing:0.105600px;}
.ls33{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.109200px;}
.ls8c{letter-spacing:0.298800px;}
.lsa5{letter-spacing:0.367200px;}
.lsa2{letter-spacing:1.272000px;}
.ls5e{letter-spacing:1.494000px;}
.ls59{letter-spacing:3.084480px;}
.ls5a{letter-spacing:3.096000px;}
.ls58{letter-spacing:3.292800px;}
.lsa0{letter-spacing:6.054492px;}
.lsa1{letter-spacing:6.694692px;}
.ls63{letter-spacing:10.440000px;}
.ls62{letter-spacing:10.473414px;}
.ls64{letter-spacing:10.497600px;}
.ls37{letter-spacing:10.831200px;}
.ls3d{letter-spacing:10.831800px;}
.ls9c{letter-spacing:12.241980px;}
.ls7b{letter-spacing:16.265400px;}
.ls54{letter-spacing:17.395200px;}
.ls6c{letter-spacing:18.214500px;}
.ls7d{letter-spacing:20.087640px;}
.ls35{letter-spacing:20.093400px;}
.ls99{letter-spacing:28.557660px;}
.ls9e{letter-spacing:29.677572px;}
.ls4c{letter-spacing:34.066200px;}
.ls88{letter-spacing:34.066800px;}
.ls4f{letter-spacing:35.677572px;}
.ls98{letter-spacing:48.468300px;}
.ls94{letter-spacing:51.042780px;}
.ls89{letter-spacing:52.831716px;}
.ls9b{letter-spacing:59.312148px;}
.ls2e{letter-spacing:65.158800px;}
.ls1b{letter-spacing:68.093400px;}
.ls6a{letter-spacing:69.281340px;}
.ls91{letter-spacing:76.308402px;}
.ls80{letter-spacing:79.831716px;}
.ls3b{letter-spacing:82.177200px;}
.ls39{letter-spacing:82.177560px;}
.ls50{letter-spacing:82.177572px;}
.ls29{letter-spacing:85.700886px;}
.ls71{letter-spacing:88.635474px;}
.ls40{letter-spacing:91.831740px;}
.ls96{letter-spacing:92.089500px;}
.ls95{letter-spacing:103.308402px;}
.ls9d{letter-spacing:113.058582px;}
.lsa7{letter-spacing:129.719676px;}
.ls47{letter-spacing:133.831716px;}
.lsa3{letter-spacing:202.927752px;}
.lsa4{letter-spacing:203.109732px;}
.ls8d{letter-spacing:388.608000px;}
.ls44{letter-spacing:394.027200px;}
.ls17{letter-spacing:401.976000px;}
.ls51{letter-spacing:407.592000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(220,230,242),0 0.015em rgb(220,230,242),0.015em 0 rgb(220,230,242),0 -0.015em  rgb(220,230,242);}
.sc2{text-shadow:-0.015em 0 rgb(228,108,10),0 0.015em rgb(228,108,10),0.015em 0 rgb(228,108,10),0 -0.015em  rgb(228,108,10);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(220,230,242);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(228,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3d{word-spacing:-407.700000px;}
.ws36{word-spacing:-394.195200px;}
.ws75{word-spacing:-388.800000px;}
.ws72{word-spacing:-60.091200px;}
.ws71{word-spacing:-60.004800px;}
.ws79{word-spacing:-33.384000px;}
.ws7b{word-spacing:-33.360000px;}
.ws7a{word-spacing:-33.336000px;}
.ws76{word-spacing:-30.045600px;}
.ws77{word-spacing:-30.024000px;}
.ws63{word-spacing:-26.707200px;}
.ws1a{word-spacing:-23.368800px;}
.ws42{word-spacing:-17.491200px;}
.ws48{word-spacing:-3.388800px;}
.ws4c{word-spacing:-3.186000px;}
.ws74{word-spacing:-1.294800px;}
.ws70{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.396000px;}
.ws20{word-spacing:-0.369600px;}
.ws2c{word-spacing:-0.324000px;}
.ws3a{word-spacing:-0.302400px;}
.ws34{word-spacing:-0.294000px;}
.ws1d{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.280800px;}
.ws2a{word-spacing:-0.277200px;}
.ws2{word-spacing:-0.268800px;}
.ws1f{word-spacing:-0.264000px;}
.ws37{word-spacing:-0.259200px;}
.ws17{word-spacing:-0.252000px;}
.ws1b{word-spacing:-0.249600px;}
.ws29{word-spacing:-0.244200px;}
.ws73{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.237600px;}
.ws19{word-spacing:-0.235200px;}
.ws1c{word-spacing:-0.230400px;}
.ws15{word-spacing:-0.218400px;}
.ws2b{word-spacing:-0.217800px;}
.ws14{word-spacing:-0.216000px;}
.ws3{word-spacing:-0.211200px;}
.ws35{word-spacing:-0.210000px;}
.ws28{word-spacing:-0.202800px;}
.ws6f{word-spacing:-0.201600px;}
.ws61{word-spacing:-0.195000px;}
.ws1e{word-spacing:-0.194400px;}
.ws5{word-spacing:-0.192000px;}
.ws7e{word-spacing:-0.187200px;}
.ws16{word-spacing:-0.184800px;}
.ws23{word-spacing:-0.172800px;}
.ws18{word-spacing:-0.168000px;}
.ws62{word-spacing:-0.165000px;}
.ws22{word-spacing:-0.162000px;}
.ws3f{word-spacing:-0.158400px;}
.ws38{word-spacing:-0.153600px;}
.ws24{word-spacing:-0.151200px;}
.ws60{word-spacing:-0.150000px;}
.ws3e{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.140400px;}
.ws6b{word-spacing:-0.138000px;}
.ws51{word-spacing:-0.135000px;}
.ws1{word-spacing:-0.134400px;}
.ws5f{word-spacing:-0.132000px;}
.ws25{word-spacing:-0.129600px;}
.ws41{word-spacing:-0.124800px;}
.ws8{word-spacing:-0.120000px;}
.ws39{word-spacing:-0.118800px;}
.ws33{word-spacing:-0.117600px;}
.ws4{word-spacing:-0.115200px;}
.ws26{word-spacing:-0.109200px;}
.ws7{word-spacing:-0.108000px;}
.ws44{word-spacing:-0.105600px;}
.ws2e{word-spacing:-0.100800px;}
.ws4f{word-spacing:-0.099000px;}
.ws5c{word-spacing:-0.097200px;}
.ws31{word-spacing:-0.096000px;}
.ws11{word-spacing:-0.093600px;}
.ws2f{word-spacing:-0.092400px;}
.ws4e{word-spacing:-0.090000px;}
.ws6a{word-spacing:-0.088200px;}
.ws6{word-spacing:-0.086400px;}
.ws84{word-spacing:-0.085800px;}
.ws9{word-spacing:-0.084000px;}
.ws69{word-spacing:-0.081900px;}
.ws12{word-spacing:-0.079200px;}
.ws47{word-spacing:-0.076800px;}
.ws5d{word-spacing:-0.075600px;}
.ws85{word-spacing:-0.072600px;}
.wsf{word-spacing:-0.072000px;}
.ws67{word-spacing:-0.069300px;}
.ws55{word-spacing:-0.067200px;}
.ws6e{word-spacing:-0.066000px;}
.ws5a{word-spacing:-0.064800px;}
.ws65{word-spacing:-0.063000px;}
.ws64{word-spacing:-0.060000px;}
.ws80{word-spacing:-0.059400px;}
.wse{word-spacing:-0.057600px;}
.ws68{word-spacing:-0.056700px;}
.ws50{word-spacing:-0.054000px;}
.ws81{word-spacing:-0.052800px;}
.ws5e{word-spacing:-0.050400px;}
.ws43{word-spacing:-0.048000px;}
.ws86{word-spacing:-0.046200px;}
.ws83{word-spacing:-0.044000px;}
.ws10{word-spacing:-0.043200px;}
.ws2d{word-spacing:-0.042000px;}
.ws7f{word-spacing:-0.039600px;}
.ws66{word-spacing:-0.037800px;}
.ws13{word-spacing:-0.036000px;}
.ws82{word-spacing:-0.033000px;}
.wsa{word-spacing:0.000000px;}
.ws52{word-spacing:16.291200px;}
.ws46{word-spacing:17.270400px;}
.ws40{word-spacing:17.299200px;}
.ws45{word-spacing:17.312160px;}
.ws53{word-spacing:19.920000px;}
.ws49{word-spacing:19.936140px;}
.ws54{word-spacing:19.987200px;}
.ws4b{word-spacing:20.016000px;}
.ws4a{word-spacing:20.086800px;}
.ws7c{word-spacing:30.504000px;}
.ws57{word-spacing:37.152000px;}
.ws4d{word-spacing:43.416000px;}
.wsc{word-spacing:51.222000px;}
.ws0{word-spacing:56.158200px;}
.ws59{word-spacing:56.174400px;}
.ws58{word-spacing:56.232000px;}
.ws7d{word-spacing:58.008000px;}
.ws78{word-spacing:63.942480px;}
.ws56{word-spacing:68.198400px;}
.ws5b{word-spacing:149.479032px;}
.ws3c{word-spacing:150.661200px;}
.ws30{word-spacing:178.466400px;}
.ws6d{word-spacing:452.697840px;}
.ws3b{word-spacing:772.265820px;}
.ws6c{word-spacing:1312.890600px;}
.ws32{word-spacing:1798.089360px;}
._21{margin-left:-407.583600px;}
._2f{margin-left:-403.945320px;}
._e{margin-left:-401.994120px;}
._1c{margin-left:-394.009920px;}
._2e{margin-left:-388.593720px;}
._1e{margin-left:-60.350400px;}
._2c{margin-left:-59.184000px;}
._2{margin-left:-49.032000px;}
._1b{margin-left:-47.380200px;}
._1d{margin-left:-43.142400px;}
._2d{margin-left:-40.032000px;}
._18{margin-left:-38.232000px;}
._1a{margin-left:-37.128000px;}
._34{margin-left:-32.437740px;}
._3{margin-left:-26.688000px;}
._19{margin-left:-24.105600px;}
._4{margin-left:-23.104800px;}
._30{margin-left:-20.016000px;}
._22{margin-left:-17.421000px;}
._2b{margin-left:-16.070400px;}
._10{margin-left:-15.012000px;}
._9{margin-left:-12.808800px;}
._8{margin-left:-10.008000px;}
._b{margin-left:-8.013600px;}
._a{margin-left:-6.793200px;}
._2a{margin-left:-5.737014px;}
._f{margin-left:-4.687200px;}
._13{margin-left:-3.614400px;}
._1{margin-left:-1.080000px;}
._0{width:1.021260px;}
._14{width:2.066400px;}
._23{width:3.353988px;}
._11{width:4.356000px;}
._24{width:7.056000px;}
._12{width:8.366400px;}
._27{width:11.040000px;}
._28{width:12.206772px;}
._33{width:13.630140px;}
._26{width:15.527448px;}
._25{width:16.535292px;}
._7{width:19.669800px;}
._29{width:20.836800px;}
._36{width:24.383700px;}
._32{width:25.510140px;}
._31{width:28.570140px;}
._37{width:36.331200px;}
._35{width:38.388000px;}
._38{width:53.568000px;}
._6{width:136.987800px;}
._c{width:347.886000px;}
._5{width:371.623200px;}
._d{width:401.976000px;}
._20{width:407.624400px;}
._16{width:444.678000px;}
._17{width:512.178000px;}
._15{width:753.198600px;}
._1f{width:919.200000px;}
.fc1e{color:rgb(0,102,255);}
.fc1d{color:rgb(160,136,26);}
.fca{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc13{color:rgb(53,122,236);}
.fc15{color:rgb(112,48,160);}
.fc9{color:rgb(102,153,255);}
.fc5{color:rgb(79,129,189);}
.fc3{color:rgb(31,73,125);}
.fc17{color:rgb(102,0,102);}
.fc10{color:rgb(220,230,242);}
.fc1{color:rgb(148,138,84);}
.fc18{color:rgb(128,100,162);}
.fcb{color:rgb(0,112,192);}
.fcc{color:rgb(127,127,127);}
.fc1a{color:rgb(205,255,6);}
.fc4{color:rgb(0,0,0);}
.fc19{color:rgb(192,80,77);}
.fc2{color:rgb(94,90,78);}
.fc0{color:rgb(255,255,255);}
.fc8{color:rgb(0,128,0);}
.fcd{color:rgb(255,102,0);}
.fc6{color:rgb(255,0,0);}
.fc12{color:rgb(242,242,242);}
.fce{color:rgb(228,108,10);}
.fcf{color:rgb(185,205,229);}
.fc14{color:rgb(192,0,0);}
.fc16{color:rgb(146,208,80);}
.fc1b{color:rgb(0,210,255);}
.fc11{color:rgb(0,176,80);}
.fc1c{color:rgb(0,51,102);}
.fs11{font-size:12.000000px;}
.fs1e{font-size:43.999968px;}
.fs1a{font-size:55.999968px;}
.fs15{font-size:60.000000px;}
.fs17{font-size:63.000000px;}
.fs19{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs13{font-size:83.999989px;}
.fs0{font-size:84.000000px;}
.fs14{font-size:90.000000px;}
.fsf{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fs12{font-size:132.000000px;}
.fs18{font-size:138.000000px;}
.fse{font-size:144.000000px;}
.fs16{font-size:150.000000px;}
.fsb{font-size:156.000000px;}
.fs6{font-size:168.000000px;}
.fsa{font-size:180.000000px;}
.fs1{font-size:192.000000px;}
.fsd{font-size:198.000000px;}
.fs10{font-size:210.000000px;}
.fs4{font-size:216.000000px;}
.fsc{font-size:222.000000px;}
.fs1c{font-size:240.000000px;}
.fs7{font-size:264.000000px;}
.fs8{font-size:288.000000px;}
.fs9{font-size:396.000000px;}
.fs1b{font-size:432.000000px;}
.fs1d{font-size:996.000000px;}
.y144{bottom:-13.417580px;}
.yf6{bottom:-4.425020px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y2{bottom:6.787405px;}
.y136{bottom:15.579300px;}
.yf5{bottom:25.574965px;}
.y14b{bottom:26.849995px;}
.y180{bottom:38.474995px;}
.y15f{bottom:39.599980px;}
.y1af{bottom:40.537435px;}
.y143{bottom:41.062429px;}
.y8e{bottom:41.287405px;}
.ya9{bottom:41.474995px;}
.y135{bottom:44.079300px;}
.y10b{bottom:45.974950px;}
.y27{bottom:46.151320px;}
.yb{bottom:46.912435px;}
.y172{bottom:47.099950px;}
.y12c{bottom:48.412435px;}
.y13b{bottom:48.974950px;}
.y11c{bottom:49.349995px;}
.y4c{bottom:51.787435px;}
.y249{bottom:52.327435px;}
.y142{bottom:55.522405px;}
.yf4{bottom:55.575010px;}
.y1d4{bottom:55.724980px;}
.y22a{bottom:57.337420px;}
.y124{bottom:58.349950px;}
.y20e{bottom:59.287405px;}
.y1c0{bottom:59.662405px;}
.y156{bottom:59.662435px;}
.y204{bottom:60.037375px;}
.y18e{bottom:64.349980px;}
.y93{bottom:66.412375px;}
.y1b2{bottom:66.412405px;}
.y21c{bottom:66.599950px;}
.y1ae{bottom:69.037420px;}
.ydf{bottom:71.249995px;}
.y26{bottom:71.651320px;}
.ya8{bottom:71.662375px;}
.y12b{bottom:72.412375px;}
.y1c5{bottom:73.162375px;}
.y33{bottom:74.474950px;}
.y11b{bottom:74.849950px;}
.y1e8{bottom:76.162405px;}
.y248{bottom:77.287405px;}
.y12e{bottom:77.309250px;}
.y84{bottom:78.704980px;}
.y141{bottom:82.582405px;}
.yf3{bottom:84.074995px;}
.y7d{bottom:84.412390px;}
.y6f{bottom:86.807620px;}
.y1d3{bottom:88.724950px;}
.y13c{bottom:91.912390px;}
.y90{bottom:93.037420px;}
.ybe{bottom:93.787390px;}
.y10f{bottom:95.287405px;}
.y18d{bottom:95.474950px;}
.y247{bottom:95.827405px;}
.y1ad{bottom:97.537420px;}
.y1bb{bottom:98.024980px;}
.y177{bottom:98.099965px;}
.yde{bottom:98.249995px;}
.y25{bottom:98.651320px;}
.y17f{bottom:99.037405px;}
.y229{bottom:99.787405px;}
.yc3{bottom:100.537390px;}
.y1f5{bottom:100.769965px;}
.y32{bottom:101.474995px;}
.y152{bottom:101.662375px;}
.y203{bottom:105.037420px;}
.y162{bottom:105.782185px;}
.y8b{bottom:106.349965px;}
.y42{bottom:107.024980px;}
.y22e{bottom:107.099965px;}
.y1a1{bottom:108.974950px;}
.y4b{bottom:109.267480px;}
.y6e{bottom:109.307635px;}
.y7c{bottom:111.412420px;}
.yb8{bottom:111.412435px;}
.y21b{bottom:111.599965px;}
.y1e7{bottom:112.162360px;}
.y68{bottom:112.661125px;}
.y20d{bottom:113.287315px;}
.yf2{bottom:114.074980px;}
.y12d{bottom:115.854600px;}
.y38{bottom:116.026735px;}
.y58{bottom:117.412390px;}
.y11a{bottom:118.724965px;}
.y246{bottom:120.787375px;}
.y8d{bottom:122.287390px;}
.ya7{bottom:122.662315px;}
.ydd{bottom:123.989980px;}
.y24{bottom:124.151320px;}
.y1ac{bottom:126.037465px;}
.y6d{bottom:130.307605px;}
.y17e{bottom:132.037465px;}
.y31{bottom:132.974965px;}
.y1d2{bottom:133.724965px;}
.y176{bottom:134.099965px;}
.yb1{bottom:134.287315px;}
.y1bf{bottom:134.474965px;}
.y67{bottom:135.161215px;}
.y1c7{bottom:137.204980px;}
.y245{bottom:139.327465px;}
.yb7{bottom:139.912465px;}
.y1d7{bottom:140.849965px;}
.y161{bottom:141.782215px;}
.y140{bottom:142.582315px;}
.y7b{bottom:142.912315px;}
.yf1{bottom:144.074980px;}
.y18c{bottom:144.974965px;}
.ybd{bottom:146.287465px;}
.y151{bottom:146.662465px;}
.y83{bottom:147.704980px;}
.y1e6{bottom:148.162315px;}
.y37{bottom:149.026765px;}
.y8{bottom:149.099965px;}
.y228{bottom:149.587330px;}
.y23{bottom:149.651380px;}
.y202{bottom:150.037315px;}
.y22d{bottom:150.599965px;}
.y6c{bottom:152.807665px;}
.y10e{bottom:153.412465px;}
.y1ab{bottom:154.537465px;}
.ydc{bottom:155.249980px;}
.y1f4{bottom:156.029980px;}
.y66{bottom:156.161065px;}
.y12f{bottom:156.559650px;}
.y21a{bottom:156.599965px;}
.y1c4{bottom:157.162465px;}
.y41{bottom:158.024980px;}
.y15e{bottom:158.662465px;}
.y119{bottom:161.084980px;}
.y17d{bottom:163.537465px;}
.y1ba{bottom:164.024980px;}
.y244{bottom:164.287465px;}
.y30{bottom:165.974965px;}
.y1d1{bottom:166.724965px;}
.y171{bottom:167.099965px;}
.y20c{bottom:167.287315px;}
.y175{bottom:170.099965px;}
.ya6{bottom:172.162465px;}
.y6b{bottom:173.807665px;}
.yf0{bottom:174.074980px;}
.y22{bottom:175.151380px;}
.y15d{bottom:176.662315px;}
.y1d6{bottom:176.849965px;}
.y65{bottom:177.161065px;}
.y4a{bottom:179.287315px;}
.y36{bottom:180.526765px;}
.y7{bottom:181.619980px;}
.ydb{bottom:182.069980px;}
.y19c{bottom:182.287315px;}
.y1e5{bottom:184.162465px;}
.y243{bottom:184.327315px;}
.y201{bottom:186.037465px;}
.y1f3{bottom:187.769965px;}
.y219{bottom:192.599965px;}
.y22c{bottom:194.099965px;}
.y6a{bottom:194.807665px;}
.yb6{bottom:196.349965px;}
.y17c{bottom:196.537315px;}
.y2f{bottom:197.474965px;}
.y227{bottom:198.787315px;}
.y21{bottom:202.151380px;}
.y15b{bottom:202.964665px;}
.yb0{bottom:203.287315px;}
.yef{bottom:204.074980px;}
.y13f{bottom:204.142330px;}
.y174{bottom:206.099965px;}
.y19b{bottom:207.787315px;}
.y242{bottom:207.787465px;}
.y167{bottom:210.241030px;}
.y82{bottom:210.404980px;}
.y40{bottom:210.524980px;}
.y1c3{bottom:211.162465px;}
.y13a{bottom:211.692150px;}
.y10d{bottom:211.724965px;}
.y35{bottom:213.526765px;}
.y118{bottom:213.584980px;}
.y9c{bottom:215.190865px;}
.yda{bottom:216.989980px;}
.y6{bottom:219.599965px;}
.y10{bottom:219.704980px;}
.y20b{bottom:221.287315px;}
.y87{bottom:222.974965px;}
.y89{bottom:223.162315px;}
.ya5{bottom:223.162465px;}
.y20{bottom:227.651230px;}
.y241{bottom:227.827465px;}
.y17b{bottom:228.037465px;}
.y168{bottom:228.301030px;}
.y1b9{bottom:230.024980px;}
.y2e{bottom:230.474965px;}
.y226{bottom:230.587330px;}
.y200{bottom:231.037315px;}
.y56{bottom:231.757330px;}
.y19a{bottom:231.787315px;}
.yee{bottom:232.574980px;}
.y16e{bottom:233.662315px;}
.y130{bottom:235.810050px;}
.y22b{bottom:236.099965px;}
.y49{bottom:236.767330px;}
.y218{bottom:237.599965px;}
.y7a{bottom:239.827315px;}
.y173{bottom:242.099965px;}
.y81{bottom:242.204980px;}
.y1f2{bottom:243.029980px;}
.y34{bottom:245.026765px;}
.y1c6{bottom:246.464965px;}
.y166{bottom:247.741030px;}
.yd9{bottom:248.489980px;}
.y240{bottom:251.287315px;}
.y1a7{bottom:252.974965px;}
.y1f{bottom:253.151230px;}
.y189{bottom:254.099965px;}
.y98{bottom:254.707315px;}
.y1e4{bottom:256.162315px;}
.y139{bottom:256.310100px;}
.y199{bottom:257.287315px;}
.y1d0{bottom:258.224965px;}
.y10c{bottom:261.224965px;}
.y2d{bottom:261.974965px;}
.y3f{bottom:262.004965px;}
.yed{bottom:262.574980px;}
.y86{bottom:264.974965px;}
.y88{bottom:265.162315px;}
.y117{bottom:265.724965px;}
.y9b{bottom:270.690865px;}
.yaf{bottom:270.787315px;}
.y23f{bottom:271.327315px;}
.y5{bottom:271.537315px;}
.y1f1{bottom:273.269965px;}
.y217{bottom:273.599965px;}
.y15c{bottom:274.601665px;}
.ya4{bottom:275.662315px;}
.y1ff{bottom:276.037315px;}
.y225{bottom:278.587330px;}
.yd8{bottom:279.989980px;}
.y1e{bottom:280.151230px;}
.y150{bottom:281.662315px;}
.y198{bottom:282.787315px;}
.y170{bottom:287.099965px;}
.yf{bottom:288.704980px;}
.y1cf{bottom:291.224965px;}
.y16d{bottom:292.162315px;}
.yec{bottom:292.574980px;}
.y63{bottom:293.849965px;}
.y18b{bottom:294.224965px;}
.y101{bottom:294.247315px;}
.y23e{bottom:294.787315px;}
.y1b8{bottom:297.524980px;}
.y14a{bottom:300.224965px;}
.y138{bottom:300.928200px;}
.y1d{bottom:305.651230px;}
.y48{bottom:305.767330px;}
.y116{bottom:308.084980px;}
.y197{bottom:308.287315px;}
.y80{bottom:311.204980px;}
.y20a{bottom:311.287315px;}
.yd7{bottom:311.489980px;}
.y18a{bottom:313.724965px;}
.y79{bottom:314.287315px;}
.y23d{bottom:314.827315px;}
.y131{bottom:315.060300px;}
.y188{bottom:317.662315px;}
.y216{bottom:318.599965px;}
.y1fe{bottom:321.037315px;}
.y1dc{bottom:321.224965px;}
.yeb{bottom:322.574980px;}
.y100{bottom:324.247315px;}
.y14f{bottom:326.662315px;}
.y62{bottom:326.849815px;}
.y155{bottom:327.037315px;}
.y224{bottom:327.787315px;}
.y1e3{bottom:328.162315px;}
.y1f0{bottom:328.529980px;}
.y4{bottom:328.537315px;}
.y1c{bottom:331.151230px;}
.y55{bottom:333.697315px;}
.y196{bottom:333.787315px;}
.y149{bottom:336.224965px;}
.y57{bottom:337.912315px;}
.y23c{bottom:338.287315px;}
.ya3{bottom:338.662315px;}
.yae{bottom:339.787315px;}
.yd6{bottom:344.069980px;}
.y137{bottom:345.546150px;}
.y10a{bottom:345.974965px;}
.y16c{bottom:349.162315px;}
.yea{bottom:352.574980px;}
.yff{bottom:354.787315px;}
.y29{bottom:356.651230px;}
.y1ef{bottom:356.849965px;}
.y1b1{bottom:357.704980px;}
.y23b{bottom:357.787315px;}
.y195{bottom:358.747315px;}
.y61{bottom:359.849965px;}
.y115{bottom:360.584980px;}
.ybc{bottom:360.787315px;}
.y1b7{bottom:363.524980px;}
.y215{bottom:363.599965px;}
.y1e2{bottom:364.162315px;}
.y1db{bottom:364.724965px;}
.y209{bottom:365.287315px;}
.y1fd{bottom:366.037315px;}
.y78{bottom:366.787315px;}
.y187{bottom:367.162315px;}
.y1ce{bottom:369.224965px;}
.y153{bottom:369.599965px;}
.y1a5{bottom:369.701980px;}
.y148{bottom:372.224965px;}
.y85{bottom:373.724965px;}
.yc9{bottom:374.380618px;}
.y47{bottom:374.767330px;}
.y23a{bottom:377.287315px;}
.y123{bottom:379.349965px;}
.yd5{bottom:380.069980px;}
.ye9{bottom:381.074980px;}
.y223{bottom:381.787315px;}
.yfe{bottom:383.287315px;}
.y1b{bottom:383.651230px;}
.y15a{bottom:384.104815px;}
.y1ee{bottom:385.349965px;}
.y3{bottom:385.537315px;}
.y194{bottom:387.787315px;}
.ya2{bottom:388.162315px;}
.y3e{bottom:389.024980px;}
.y60{bottom:391.349815px;}
.y71{bottom:391.649815px;}
.y5b{bottom:391.649965px;}
.y132{bottom:394.310700px;}
.y97{bottom:394.807330px;}
.y159{bottom:395.114665px;}
.y239{bottom:397.327315px;}
.y1fc{bottom:402.037315px;}
.y16f{bottom:405.599965px;}
.y64{bottom:406.949965px;}
.y16b{bottom:407.662315px;}
.y147{bottom:408.224965px;}
.yad{bottom:408.787315px;}
.y1a{bottom:409.151230px;}
.y165{bottom:409.428730px;}
.y122{bottom:410.849965px;}
.ye8{bottom:411.074980px;}
.ybb{bottom:411.787315px;}
.yfd{bottom:412.027315px;}
.y114{bottom:412.724965px;}
.y193{bottom:413.287315px;}
.y222{bottom:413.587330px;}
.y1ed{bottom:413.849965px;}
.y1cd{bottom:414.224965px;}
.yd4{bottom:414.749980px;}
.y109{bottom:415.537315px;}
.yc8{bottom:416.287315px;}
.y186{bottom:418.162315px;}
.y238{bottom:420.787315px;}
.y9a{bottom:421.478065px;}
.y208{bottom:421.687330px;}
.y70{bottom:423.149815px;}
.y5a{bottom:423.149965px;}
.y1c2{bottom:424.162315px;}
.y5f{bottom:424.349815px;}
.y1b0{bottom:426.704980px;}
.y77{bottom:426.967330px;}
.y54{bottom:429.037315px;}
.y1b6{bottom:431.024980px;}
.y1be{bottom:432.412315px;}
.y96{bottom:433.807330px;}
.y19{bottom:434.651230px;}
.y1e1{bottom:436.162315px;}
.y192{bottom:438.787315px;}
.ya1{bottom:439.162315px;}
.y3d{bottom:440.024980px;}
.yd3{bottom:440.489980px;}
.y237{bottom:440.827315px;}
.ye7{bottom:441.074980px;}
.y1ec{bottom:442.349965px;}
.y46{bottom:443.767330px;}
.y121{bottom:443.849965px;}
.y146{bottom:444.224965px;}
.yfc{bottom:446.527315px;}
.y1fb{bottom:447.037315px;}
.y1cc{bottom:447.224965px;}
.yc7{bottom:447.787315px;}
.ycb{bottom:449.099965px;}
.y7f{bottom:450.224965px;}
.y1da{bottom:451.724965px;}
.y113{bottom:455.084980px;}
.y5e{bottom:455.849815px;}
.yba{bottom:461.287315px;}
.y18{bottom:461.651230px;}
.y14e{bottom:461.662315px;}
.y221{bottom:462.787315px;}
.y158{bottom:463.153615px;}
.y191{bottom:464.287315px;}
.y16a{bottom:464.662315px;}
.y12a{bottom:467.287315px;}
.y185{bottom:468.082315px;}
.y214{bottom:468.787315px;}
.ye6{bottom:471.074980px;}
.yd2{bottom:471.989980px;}
.y1e0{bottom:472.162315px;}
.y133{bottom:473.561100px;}
.y1eb{bottom:473.849965px;}
.y95{bottom:475.207315px;}
.y120{bottom:475.349965px;}
.yac{bottom:476.287315px;}
.y1c1{bottom:476.662315px;}
.y99{bottom:476.978065px;}
.y2c{bottom:479.849965px;}
.y145{bottom:480.224965px;}
.yc6{bottom:480.787315px;}
.y1fa{bottom:483.037315px;}
.yca{bottom:483.224965px;}
.y236{bottom:484.327315px;}
.y207{bottom:485.287315px;}
.y17{bottom:487.151230px;}
.y108{bottom:487.162315px;}
.y5d{bottom:488.849815px;}
.y190{bottom:489.787315px;}
.ya0{bottom:490.162315px;}
.y3c{bottom:492.524980px;}
.y1cb{bottom:493.724965px;}
.ye{bottom:495.704980px;}
.y220{bottom:496.087330px;}
.y69{bottom:496.843465px;}
.y1b5{bottom:498.524980px;}
.y129{bottom:498.787315px;}
.y213{bottom:500.287315px;}
.y1bd{bottom:500.662315px;}
.ye5{bottom:501.074980px;}
.yd1{bottom:503.489980px;}
.y76{bottom:506.467330px;}
.y53{bottom:507.037315px;}
.y1a4{bottom:507.221965px;}
.y7e{bottom:507.224965px;}
.y112{bottom:507.584980px;}
.y235{bottom:507.787315px;}
.y11f{bottom:508.349965px;}
.y182{bottom:508.724965px;}
.yfb{bottom:509.527315px;}
.yb9{bottom:512.287315px;}
.y16{bottom:512.651230px;}
.y45{bottom:512.767330px;}
.y18f{bottom:513.787315px;}
.y1ea{bottom:518.849965px;}
.y5c{bottom:520.349815px;}
.y169{bottom:521.662315px;}
.y1a9{bottom:521.849965px;}
.y164{bottom:524.513680px;}
.y1ca{bottom:525.224965px;}
.y106{bottom:526.162315px;}
.y234{bottom:527.827315px;}
.y1f9{bottom:528.037315px;}
.y184{bottom:529.162315px;}
.y2b{bottom:529.349965px;}
.ye4{bottom:529.574980px;}
.y128{bottom:531.787315px;}
.yd0{bottom:536.249980px;}
.y92{bottom:536.662315px;}
.y1d9{bottom:537.224965px;}
.y17a{bottom:537.787315px;}
.y15{bottom:538.151230px;}
.y206{bottom:539.287315px;}
.y9f{bottom:539.662315px;}
.y107{bottom:539.849965px;}
.y13e{bottom:541.162315px;}
.y212{bottom:542.287315px;}
.y3b{bottom:543.524980px;}
.y21f{bottom:543.787315px;}
.yfa{bottom:544.027315px;}
.y1df{bottom:544.162315px;}
.yab{bottom:545.287315px;}
.yc5{bottom:548.287315px;}
.y52{bottom:550.893715px;}
.y233{bottom:551.287315px;}
.y134{bottom:552.811350px;}
.y1c9{bottom:557.744980px;}
.ye3{bottom:559.574980px;}
.y111{bottom:559.724965px;}
.y8a{bottom:561.787315px;}
.ycf{bottom:561.989980px;}
.y163{bottom:562.013680px;}
.y105{bottom:562.162315px;}
.y1a6{bottom:562.462315px;}
.y127{bottom:563.287315px;}
.y1a8{bottom:563.849965px;}
.y1a3{bottom:564.221965px;}
.yd{bottom:564.224965px;}
.y14{bottom:565.151230px;}
.y157{bottom:565.162315px;}
.y91{bottom:568.162315px;}
.yc0{bottom:569.962315px;}
.y1b4{bottom:570.224965px;}
.y160{bottom:570.518530px;}
.y179{bottom:570.787315px;}
.y232{bottom:571.327315px;}
.y8c{bottom:571.912315px;}
.y13d{bottom:572.362315px;}
.y1f8{bottom:573.037315px;}
.y1bc{bottom:573.974965px;}
.y21e{bottom:575.587330px;}
.y73{bottom:576.550465px;}
.y183{bottom:578.662315px;}
.yf9{bottom:579.787315px;}
.y1de{bottom:580.162315px;}
.y44{bottom:581.287315px;}
.y19e{bottom:581.849965px;}
.y51{bottom:582.393565px;}
.y211{bottom:582.787315px;}
.y1d8{bottom:583.724965px;}
.y75{bottom:584.287315px;}
.ye2{bottom:588.974965px;}
.y28{bottom:590.651230px;}
.y9e{bottom:592.162315px;}
.y205{bottom:593.287315px;}
.y1e9{bottom:593.849965px;}
.yce{bottom:594.569980px;}
.y231{bottom:594.787315px;}
.y126{bottom:596.287315px;}
.y14d{bottom:596.662315px;}
.y104{bottom:598.162315px;}
.yc4{bottom:599.287315px;}
.y1c8{bottom:600.224965px;}
.y72{bottom:600.550465px;}
.y110{bottom:601.724965px;}
.yc2{bottom:602.287315px;}
.yf8{bottom:608.527315px;}
.y11e{bottom:608.662315px;}
.y1f7{bottom:609.037315px;}
.y19d{bottom:610.349965px;}
.yaa{bottom:612.787315px;}
.ye1{bottom:613.574980px;}
.ya{bottom:614.287315px;}
.y230{bottom:614.827315px;}
.y50{bottom:615.393565px;}
.y13{bottom:616.151230px;}
.y1dd{bottom:616.162315px;}
.y8f{bottom:619.162315px;}
.y210{bottom:624.787315px;}
.y125{bottom:627.787315px;}
.ycd{bottom:630.809965px;}
.y154{bottom:633.224965px;}
.y103{bottom:634.162315px;}
.y22f{bottom:638.287315px;}
.y12{bottom:641.651230px;}
.y14c{bottom:641.662315px;}
.ye0{bottom:642.974965px;}
.yf7{bottom:644.287315px;}
.y181{bottom:646.724965px;}
.y4f{bottom:646.893565px;}
.yb3{bottom:649.349815px;}
.y9{bottom:650.287315px;}
.y3a{bottom:663.224965px;}
.ycc{bottom:675.749830px;}
.y4d{bottom:677.099815px;}
.yc1{bottom:687.806065px;}
.yc{bottom:689.024815px;}
.y1a2{bottom:689.036515px;}
.yb5{bottom:689.849965px;}
.y1a0{bottom:698.287315px;}
.y1f6{bottom:708.243565px;}
.y74{bottom:714.524815px;}
.y9d{bottom:715.649815px;}
.y11d{bottom:717.712315px;}
.y39{bottom:720.224965px;}
.y59{bottom:720.712315px;}
.y94{bottom:720.899815px;}
.y2a{bottom:722.306065px;}
.y178{bottom:722.493565px;}
.y4e{bottom:722.962315px;}
.y43{bottom:724.087315px;}
.y11{bottom:724.743565px;}
.y1b3{bottom:725.399815px;}
.y21d{bottom:726.056065px;}
.y102{bottom:726.487465px;}
.yb2{bottom:728.868565px;}
.y1aa{bottom:729.993565px;}
.y1d5{bottom:730.931215px;}
.ybf{bottom:731.306065px;}
.y20f{bottom:733.181215px;}
.yb4{bottom:746.849965px;}
.y19f{bottom:755.287465px;}
.h19{height:52.453125px;}
.h1f{height:55.576172px;}
.h25{height:58.354980px;}
.h29{height:61.133789px;}
.h12{height:61.154297px;}
.ha{height:61.195312px;}
.h7{height:66.691406px;}
.h2b{height:69.937500px;}
.h2a{height:73.500000px;}
.h1b{height:77.806631px;}
.h2{height:77.806641px;}
.h9{height:78.679688px;}
.h1d{height:83.364258px;}
.h24{height:86.671875px;}
.h21{height:87.363281px;}
.h22{height:87.421875px;}
.h32{height:87.656250px;}
.h16{height:88.921875px;}
.h4{height:100.037109px;}
.h13{height:104.835938px;}
.h23{height:108.339844px;}
.h5{height:111.152344px;}
.h1a{height:122.267578px;}
.h2e{height:122.390625px;}
.h26{height:127.825195px;}
.h2c{height:130.007812px;}
.h1c{height:133.382812px;}
.h20{height:138.940430px;}
.h30{height:139.875000px;}
.h18{height:151.675781px;}
.h8{height:155.613281px;}
.h2f{height:157.359375px;}
.h15{height:158.003906px;}
.h14{height:158.004506px;}
.hf{height:166.728516px;}
.h3{height:177.843750px;}
.h11{height:183.401367px;}
.h17{height:194.516602px;}
.he{height:195.011719px;}
.h6{height:200.074219px;}
.h10{height:205.631836px;}
.h28{height:206.578125px;}
.hb{height:244.535156px;}
.hc{height:266.765625px;}
.hd{height:269.156250px;}
.h27{height:270.182992px;}
.h2d{height:309.867188px;}
.h1e{height:578.781750px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.h31{height:922.564453px;}
.w2{width:986.727000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:10.799999px;}
.x6e{left:14.444531px;}
.x86{left:18.342540px;}
.x94{left:20.242440px;}
.x7c{left:31.987560px;}
.x5b{left:33.194534px;}
.x6f{left:39.300000px;}
.x19{left:40.425000px;}
.x10{left:49.049985px;}
.x7b{left:53.174985px;}
.x85{left:54.981810px;}
.x4e{left:56.339039px;}
.x4b{left:57.487560px;}
.x3a{left:59.174985px;}
.xc7{left:63.674985px;}
.xb{left:64.799985px;}
.x45{left:66.112560px;}
.x67{left:71.548520px;}
.x93{left:74.734555px;}
.xbd{left:78.674985px;}
.x4c{left:80.317140px;}
.x48{left:82.987560px;}
.x8f{left:84.780450px;}
.x15{left:89.549985px;}
.x49{left:91.612545px;}
.xaa{left:94.424985px;}
.xc2{left:96.299985px;}
.x32{left:97.339796px;}
.x3b{left:99.674985px;}
.x37{left:101.156232px;}
.x9d{left:102.487545px;}
.xab{left:105.112545px;}
.x6d{left:106.835850px;}
.x3c{left:108.487545px;}
.x13{left:109.999200px;}
.x84{left:113.731620px;}
.x31{left:118.596150px;}
.x27{left:120.706905px;}
.x38{left:121.771710px;}
.x28{left:123.060180px;}
.x5e{left:125.549985px;}
.x8e{left:133.987545px;}
.xa7{left:139.965525px;}
.x59{left:142.612530px;}
.x16{left:146.769705px;}
.x11{left:149.548515px;}
.x68{left:150.708675px;}
.xba{left:151.713555px;}
.x3e{left:153.137385px;}
.x78{left:155.362500px;}
.x66{left:157.830750px;}
.x65{left:160.052985px;}
.x1f{left:162.682305px;}
.x6c{left:163.934745px;}
.x47{left:167.876640px;}
.x4d{left:172.486530px;}
.x92{left:176.550000px;}
.x5f{left:179.550000px;}
.x9b{left:180.654401px;}
.x4f{left:182.453249px;}
.x9f{left:183.511950px;}
.x44{left:194.204274px;}
.x69{left:201.331527px;}
.xb4{left:205.800000px;}
.xbc{left:207.675000px;}
.xa0{left:210.511950px;}
.x1a{left:214.151055px;}
.x87{left:216.434295px;}
.x9{left:219.112500px;}
.x80{left:222.487560px;}
.xc1{left:224.180910px;}
.x3d{left:225.950385px;}
.x60{left:228.244349px;}
.xd{left:230.983560px;}
.xc5{left:236.175000px;}
.x5a{left:241.117410px;}
.x26{left:244.428060px;}
.x3f{left:249.526320px;}
.x82{left:252.037860px;}
.xa{left:257.586750px;}
.xe{left:259.490925px;}
.xbe{left:265.643310px;}
.x73{left:270.112500px;}
.x7a{left:273.226785px;}
.x50{left:279.748200px;}
.xa4{left:282.402585px;}
.x90{left:285.302985px;}
.x5d{left:288.967935px;}
.x63{left:293.476020px;}
.x4a{left:294.834585px;}
.x24{left:298.813161px;}
.x33{left:303.636540px;}
.x9a{left:305.344857px;}
.x20{left:307.272630px;}
.xb2{left:309.046635px;}
.x8{left:312.540285px;}
.xbb{left:313.739985px;}
.x54{left:315.229635px;}
.x39{left:322.770735px;}
.x58{left:324.181335px;}
.x57{left:329.683290px;}
.xae{left:332.878185px;}
.x1{left:336.078149px;}
.x64{left:341.385885px;}
.x88{left:344.669055px;}
.x55{left:349.050000px;}
.x89{left:351.383895px;}
.x7d{left:356.361045px;}
.x61{left:362.400585px;}
.xb5{left:363.675000px;}
.xc6{left:375.632490px;}
.xb6{left:376.876185px;}
.xb0{left:378.985485px;}
.xad{left:380.737500px;}
.xbf{left:382.993395px;}
.xc0{left:384.862560px;}
.x25{left:386.544870px;}
.x77{left:393.817035px;}
.x21{left:396.250170px;}
.x56{left:403.050000px;}
.xc4{left:404.242410px;}
.xa5{left:409.386885px;}
.x5c{left:412.643235px;}
.xaf{left:415.741335px;}
.xa3{left:421.102980px;}
.x46{left:423.300000px;}
.x95{left:426.751155px;}
.x98{left:431.788746px;}
.x62{left:438.928410px;}
.xc3{left:442.055835px;}
.x79{left:446.533995px;}
.x43{left:449.298047px;}
.x3{left:463.413285px;}
.x91{left:465.675000px;}
.x2c{left:467.422470px;}
.x2d{left:471.094101px;}
.x8a{left:479.618505px;}
.x14{left:481.975785px;}
.x2f{left:483.335070px;}
.xac{left:485.759385px;}
.x2a{left:487.270365px;}
.xf{left:488.963100px;}
.x2b{left:492.543810px;}
.x29{left:496.933950px;}
.x2e{left:500.414415px;}
.x42{left:502.735545px;}
.x34{left:504.314850px;}
.x1e{left:506.762418px;}
.x1b{left:507.817107px;}
.x1d{left:509.095915px;}
.x97{left:517.328320px;}
.x22{left:521.160300px;}
.x2{left:523.823430px;}
.x23{left:527.942550px;}
.x1c{left:529.306365px;}
.x5{left:546.300000px;}
.xc{left:555.300000px;}
.xb8{left:560.737500px;}
.xa2{left:578.175017px;}
.x8b{left:608.485920px;}
.xa1{left:619.017795px;}
.x8c{left:621.282795px;}
.xb9{left:635.925000px;}
.x6a{left:644.362500px;}
.x4{left:670.987500px;}
.xa6{left:678.299850px;}
.x81{left:686.924850px;}
.x6b{left:688.424850px;}
.x9e{left:699.286350px;}
.x36{left:701.892535px;}
.x35{left:709.657665px;}
.x7f{left:712.424850px;}
.xb7{left:725.535330px;}
.xb1{left:733.800000px;}
.x7e{left:738.475563px;}
.x53{left:746.000077px;}
.x41{left:752.086965px;}
.x40{left:758.907270px;}
.x9c{left:763.424850px;}
.x12{left:767.115750px;}
.x8d{left:781.458540px;}
.x99{left:788.031282px;}
.x52{left:804.195692px;}
.x74{left:818.362328px;}
.x51{left:829.087050px;}
.x83{left:831.487500px;}
.x75{left:863.128125px;}
.x17{left:864.299850px;}
.xa9{left:865.425000px;}
.x7{left:870.094950px;}
.x70{left:875.778345px;}
.x72{left:877.114454px;}
.x76{left:880.688655px;}
.x71{left:891.616230px;}
.x96{left:898.243365px;}
.x18{left:904.799850px;}
.xb3{left:928.237500px;}
.x30{left:936.227700px;}
.xa8{left:984.487500px;}
@media print{
.v1{vertical-align:-40.373333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.599947pt;}
.v3{vertical-align:22.400000pt;}
.v2{vertical-align:121.600160pt;}
.ls23{letter-spacing:-57.856000pt;}
.ls1e{letter-spacing:-38.519467pt;}
.ls67{letter-spacing:-10.656000pt;}
.ls8e{letter-spacing:-0.096000pt;}
.ls4e{letter-spacing:-0.076800pt;}
.ls4a{letter-spacing:-0.074667pt;}
.ls5{letter-spacing:-0.068267pt;}
.ls49{letter-spacing:-0.059733pt;}
.ls65{letter-spacing:-0.057600pt;}
.ls3{letter-spacing:-0.051200pt;}
.ls3e{letter-spacing:-0.044800pt;}
.ls55{letter-spacing:-0.042667pt;}
.ls20{letter-spacing:-0.038400pt;}
.ls34{letter-spacing:-0.037333pt;}
.ls45{letter-spacing:-0.034133pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls6e{letter-spacing:-0.029867pt;}
.lsac{letter-spacing:-0.029333pt;}
.lsd{letter-spacing:-0.025600pt;}
.lsaa{letter-spacing:-0.023467pt;}
.ls78{letter-spacing:-0.022400pt;}
.ls77{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:-0.019200pt;}
.lsad{letter-spacing:-0.017600pt;}
.ls57{letter-spacing:-0.017067pt;}
.ls87{letter-spacing:-0.014933pt;}
.ls72{letter-spacing:-0.013333pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls48{letter-spacing:-0.011733pt;}
.ls68{letter-spacing:-0.010667pt;}
.ls69{letter-spacing:-0.009600pt;}
.ls6f{letter-spacing:-0.007467pt;}
.lsab{letter-spacing:-0.005867pt;}
.ls79{letter-spacing:-0.005600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8f{letter-spacing:0.000757pt;}
.ls86{letter-spacing:0.003562pt;}
.ls85{letter-spacing:0.004095pt;}
.ls84{letter-spacing:0.004267pt;}
.lsb{letter-spacing:0.004747pt;}
.ls9f{letter-spacing:0.005003pt;}
.ls75{letter-spacing:0.005600pt;}
.lsa6{letter-spacing:0.005728pt;}
.ls7c{letter-spacing:0.005760pt;}
.ls6d{letter-spacing:0.005867pt;}
.ls7a{letter-spacing:0.005973pt;}
.lsa{letter-spacing:0.006251pt;}
.lse{letter-spacing:0.006400pt;}
.ls30{letter-spacing:0.007467pt;}
.ls60{letter-spacing:0.007915pt;}
.ls5c{letter-spacing:0.008000pt;}
.ls9a{letter-spacing:0.008331pt;}
.ls56{letter-spacing:0.008533pt;}
.ls18{letter-spacing:0.009376pt;}
.ls38{letter-spacing:0.009387pt;}
.ls3a{letter-spacing:0.009600pt;}
.ls90{letter-spacing:0.010416pt;}
.ls14{letter-spacing:0.010667pt;}
.ls8a{letter-spacing:0.011093pt;}
.ls13{letter-spacing:0.011200pt;}
.lsa8{letter-spacing:0.011733pt;}
.ls5b{letter-spacing:0.012187pt;}
.ls97{letter-spacing:0.012480pt;}
.ls93{letter-spacing:0.012501pt;}
.ls0{letter-spacing:0.012800pt;}
.ls52{letter-spacing:0.013003pt;}
.ls70{letter-spacing:0.013019pt;}
.ls74{letter-spacing:0.013333pt;}
.ls28{letter-spacing:0.013541pt;}
.ls3c{letter-spacing:0.014400pt;}
.ls3f{letter-spacing:0.014560pt;}
.ls46{letter-spacing:0.014581pt;}
.ls53{letter-spacing:0.014624pt;}
.ls36{letter-spacing:0.014827pt;}
.ls16{letter-spacing:0.014933pt;}
.ls1a{letter-spacing:0.016640pt;}
.ls76{letter-spacing:0.016800pt;}
.ls1{letter-spacing:0.017067pt;}
.ls2d{letter-spacing:0.017173pt;}
.ls2f{letter-spacing:0.017600pt;}
.ls92{letter-spacing:0.017867pt;}
.ls9{letter-spacing:0.019200pt;}
.ls61{letter-spacing:0.019499pt;}
.ls2a{letter-spacing:0.019733pt;}
.ls8{letter-spacing:0.021333pt;}
.ls66{letter-spacing:0.022133pt;}
.ls26{letter-spacing:0.022400pt;}
.ls6b{letter-spacing:0.022773pt;}
.lsa9{letter-spacing:0.023467pt;}
.ls4b{letter-spacing:0.024000pt;}
.ls7f{letter-spacing:0.025013pt;}
.ls10{letter-spacing:0.025600pt;}
.ls73{letter-spacing:0.026667pt;}
.ls27{letter-spacing:0.028800pt;}
.ls82{letter-spacing:0.029333pt;}
.ls41{letter-spacing:0.029867pt;}
.ls81{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.034133pt;}
.ls8b{letter-spacing:0.037493pt;}
.ls25{letter-spacing:0.038400pt;}
.ls5d{letter-spacing:0.040000pt;}
.ls31{letter-spacing:0.041600pt;}
.ls5f{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.044800pt;}
.ls24{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.051200pt;}
.ls15{letter-spacing:0.055467pt;}
.ls7{letter-spacing:0.057600pt;}
.ls19{letter-spacing:0.059733pt;}
.ls7e{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.066667pt;}
.ls4{letter-spacing:0.068267pt;}
.ls32{letter-spacing:0.070400pt;}
.ls42{letter-spacing:0.073493pt;}
.ls43{letter-spacing:0.073600pt;}
.ls12{letter-spacing:0.074667pt;}
.ls2c{letter-spacing:0.075200pt;}
.ls4d{letter-spacing:0.076800pt;}
.ls1f{letter-spacing:0.085333pt;}
.ls83{letter-spacing:0.089600pt;}
.ls21{letter-spacing:0.093867pt;}
.ls33{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.097067pt;}
.ls8c{letter-spacing:0.265600pt;}
.lsa5{letter-spacing:0.326400pt;}
.lsa2{letter-spacing:1.130667pt;}
.ls5e{letter-spacing:1.328000pt;}
.ls59{letter-spacing:2.741760pt;}
.ls5a{letter-spacing:2.752000pt;}
.ls58{letter-spacing:2.926933pt;}
.lsa0{letter-spacing:5.381771pt;}
.lsa1{letter-spacing:5.950837pt;}
.ls63{letter-spacing:9.280000pt;}
.ls62{letter-spacing:9.309701pt;}
.ls64{letter-spacing:9.331200pt;}
.ls37{letter-spacing:9.627733pt;}
.ls3d{letter-spacing:9.628267pt;}
.ls9c{letter-spacing:10.881760pt;}
.ls7b{letter-spacing:14.458133pt;}
.ls54{letter-spacing:15.462400pt;}
.ls6c{letter-spacing:16.190667pt;}
.ls7d{letter-spacing:17.855680pt;}
.ls35{letter-spacing:17.860800pt;}
.ls99{letter-spacing:25.384587pt;}
.ls9e{letter-spacing:26.380064pt;}
.ls4c{letter-spacing:30.281067pt;}
.ls88{letter-spacing:30.281600pt;}
.ls4f{letter-spacing:31.713397pt;}
.ls98{letter-spacing:43.082933pt;}
.ls94{letter-spacing:45.371360pt;}
.ls89{letter-spacing:46.961525pt;}
.ls9b{letter-spacing:52.721909pt;}
.ls2e{letter-spacing:57.918933pt;}
.ls1b{letter-spacing:60.527467pt;}
.ls6a{letter-spacing:61.583413pt;}
.ls91{letter-spacing:67.829691pt;}
.ls80{letter-spacing:70.961525pt;}
.ls3b{letter-spacing:73.046400pt;}
.ls39{letter-spacing:73.046720pt;}
.ls50{letter-spacing:73.046731pt;}
.ls29{letter-spacing:76.178565pt;}
.ls71{letter-spacing:78.787088pt;}
.ls40{letter-spacing:81.628213pt;}
.ls96{letter-spacing:81.857333pt;}
.ls95{letter-spacing:91.829691pt;}
.ls9d{letter-spacing:100.496517pt;}
.lsa7{letter-spacing:115.306379pt;}
.ls47{letter-spacing:118.961525pt;}
.lsa3{letter-spacing:180.380224pt;}
.lsa4{letter-spacing:180.541984pt;}
.ls8d{letter-spacing:345.429333pt;}
.ls44{letter-spacing:350.246400pt;}
.ls17{letter-spacing:357.312000pt;}
.ls51{letter-spacing:362.304000pt;}
.ws3d{word-spacing:-362.400000pt;}
.ws36{word-spacing:-350.395733pt;}
.ws75{word-spacing:-345.600000pt;}
.ws72{word-spacing:-53.414400pt;}
.ws71{word-spacing:-53.337600pt;}
.ws79{word-spacing:-29.674667pt;}
.ws7b{word-spacing:-29.653333pt;}
.ws7a{word-spacing:-29.632000pt;}
.ws76{word-spacing:-26.707200pt;}
.ws77{word-spacing:-26.688000pt;}
.ws63{word-spacing:-23.739733pt;}
.ws1a{word-spacing:-20.772267pt;}
.ws42{word-spacing:-15.547733pt;}
.ws48{word-spacing:-3.012267pt;}
.ws4c{word-spacing:-2.832000pt;}
.ws74{word-spacing:-1.150933pt;}
.ws70{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.352000pt;}
.ws20{word-spacing:-0.328533pt;}
.ws2c{word-spacing:-0.288000pt;}
.ws3a{word-spacing:-0.268800pt;}
.ws34{word-spacing:-0.261333pt;}
.ws1d{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.249600pt;}
.ws2a{word-spacing:-0.246400pt;}
.ws2{word-spacing:-0.238933pt;}
.ws1f{word-spacing:-0.234667pt;}
.ws37{word-spacing:-0.230400pt;}
.ws17{word-spacing:-0.224000pt;}
.ws1b{word-spacing:-0.221867pt;}
.ws29{word-spacing:-0.217067pt;}
.ws73{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.211200pt;}
.ws19{word-spacing:-0.209067pt;}
.ws1c{word-spacing:-0.204800pt;}
.ws15{word-spacing:-0.194133pt;}
.ws2b{word-spacing:-0.193600pt;}
.ws14{word-spacing:-0.192000pt;}
.ws3{word-spacing:-0.187733pt;}
.ws35{word-spacing:-0.186667pt;}
.ws28{word-spacing:-0.180267pt;}
.ws6f{word-spacing:-0.179200pt;}
.ws61{word-spacing:-0.173333pt;}
.ws1e{word-spacing:-0.172800pt;}
.ws5{word-spacing:-0.170667pt;}
.ws7e{word-spacing:-0.166400pt;}
.ws16{word-spacing:-0.164267pt;}
.ws23{word-spacing:-0.153600pt;}
.ws18{word-spacing:-0.149333pt;}
.ws62{word-spacing:-0.146667pt;}
.ws22{word-spacing:-0.144000pt;}
.ws3f{word-spacing:-0.140800pt;}
.ws38{word-spacing:-0.136533pt;}
.ws24{word-spacing:-0.134400pt;}
.ws60{word-spacing:-0.133333pt;}
.ws3e{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.124800pt;}
.ws6b{word-spacing:-0.122667pt;}
.ws51{word-spacing:-0.120000pt;}
.ws1{word-spacing:-0.119467pt;}
.ws5f{word-spacing:-0.117333pt;}
.ws25{word-spacing:-0.115200pt;}
.ws41{word-spacing:-0.110933pt;}
.ws8{word-spacing:-0.106667pt;}
.ws39{word-spacing:-0.105600pt;}
.ws33{word-spacing:-0.104533pt;}
.ws4{word-spacing:-0.102400pt;}
.ws26{word-spacing:-0.097067pt;}
.ws7{word-spacing:-0.096000pt;}
.ws44{word-spacing:-0.093867pt;}
.ws2e{word-spacing:-0.089600pt;}
.ws4f{word-spacing:-0.088000pt;}
.ws5c{word-spacing:-0.086400pt;}
.ws31{word-spacing:-0.085333pt;}
.ws11{word-spacing:-0.083200pt;}
.ws2f{word-spacing:-0.082133pt;}
.ws4e{word-spacing:-0.080000pt;}
.ws6a{word-spacing:-0.078400pt;}
.ws6{word-spacing:-0.076800pt;}
.ws84{word-spacing:-0.076267pt;}
.ws9{word-spacing:-0.074667pt;}
.ws69{word-spacing:-0.072800pt;}
.ws12{word-spacing:-0.070400pt;}
.ws47{word-spacing:-0.068267pt;}
.ws5d{word-spacing:-0.067200pt;}
.ws85{word-spacing:-0.064533pt;}
.wsf{word-spacing:-0.064000pt;}
.ws67{word-spacing:-0.061600pt;}
.ws55{word-spacing:-0.059733pt;}
.ws6e{word-spacing:-0.058667pt;}
.ws5a{word-spacing:-0.057600pt;}
.ws65{word-spacing:-0.056000pt;}
.ws64{word-spacing:-0.053333pt;}
.ws80{word-spacing:-0.052800pt;}
.wse{word-spacing:-0.051200pt;}
.ws68{word-spacing:-0.050400pt;}
.ws50{word-spacing:-0.048000pt;}
.ws81{word-spacing:-0.046933pt;}
.ws5e{word-spacing:-0.044800pt;}
.ws43{word-spacing:-0.042667pt;}
.ws86{word-spacing:-0.041067pt;}
.ws83{word-spacing:-0.039111pt;}
.ws10{word-spacing:-0.038400pt;}
.ws2d{word-spacing:-0.037333pt;}
.ws7f{word-spacing:-0.035200pt;}
.ws66{word-spacing:-0.033600pt;}
.ws13{word-spacing:-0.032000pt;}
.ws82{word-spacing:-0.029333pt;}
.wsa{word-spacing:0.000000pt;}
.ws52{word-spacing:14.481067pt;}
.ws46{word-spacing:15.351467pt;}
.ws40{word-spacing:15.377067pt;}
.ws45{word-spacing:15.388587pt;}
.ws53{word-spacing:17.706667pt;}
.ws49{word-spacing:17.721013pt;}
.ws54{word-spacing:17.766400pt;}
.ws4b{word-spacing:17.792000pt;}
.ws4a{word-spacing:17.854933pt;}
.ws7c{word-spacing:27.114667pt;}
.ws57{word-spacing:33.024000pt;}
.ws4d{word-spacing:38.592000pt;}
.wsc{word-spacing:45.530667pt;}
.ws0{word-spacing:49.918400pt;}
.ws59{word-spacing:49.932800pt;}
.ws58{word-spacing:49.984000pt;}
.ws7d{word-spacing:51.562667pt;}
.ws78{word-spacing:56.837760pt;}
.ws56{word-spacing:60.620800pt;}
.ws5b{word-spacing:132.870251pt;}
.ws3c{word-spacing:133.921067pt;}
.ws30{word-spacing:158.636800pt;}
.ws6d{word-spacing:402.398080pt;}
.ws3b{word-spacing:686.458507pt;}
.ws6c{word-spacing:1167.013867pt;}
.ws32{word-spacing:1598.301653pt;}
._21{margin-left:-362.296533pt;}
._2f{margin-left:-359.062507pt;}
._e{margin-left:-357.328107pt;}
._1c{margin-left:-350.231040pt;}
._2e{margin-left:-345.416640pt;}
._1e{margin-left:-53.644800pt;}
._2c{margin-left:-52.608000pt;}
._2{margin-left:-43.584000pt;}
._1b{margin-left:-42.115733pt;}
._1d{margin-left:-38.348800pt;}
._2d{margin-left:-35.584000pt;}
._18{margin-left:-33.984000pt;}
._1a{margin-left:-33.002667pt;}
._34{margin-left:-28.833547pt;}
._3{margin-left:-23.722667pt;}
._19{margin-left:-21.427200pt;}
._4{margin-left:-20.537600pt;}
._30{margin-left:-17.792000pt;}
._22{margin-left:-15.485333pt;}
._2b{margin-left:-14.284800pt;}
._10{margin-left:-13.344000pt;}
._9{margin-left:-11.385600pt;}
._8{margin-left:-8.896000pt;}
._b{margin-left:-7.123200pt;}
._a{margin-left:-6.038400pt;}
._2a{margin-left:-5.099568pt;}
._f{margin-left:-4.166400pt;}
._13{margin-left:-3.212800pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.907787pt;}
._14{width:1.836800pt;}
._23{width:2.981323pt;}
._11{width:3.872000pt;}
._24{width:6.272000pt;}
._12{width:7.436800pt;}
._27{width:9.813333pt;}
._28{width:10.850464pt;}
._33{width:12.115680pt;}
._26{width:13.802176pt;}
._25{width:14.698037pt;}
._7{width:17.484267pt;}
._29{width:18.521600pt;}
._36{width:21.674400pt;}
._32{width:22.675680pt;}
._31{width:25.395680pt;}
._37{width:32.294400pt;}
._35{width:34.122667pt;}
._38{width:47.616000pt;}
._6{width:121.766933pt;}
._c{width:309.232000pt;}
._5{width:330.331733pt;}
._d{width:357.312000pt;}
._20{width:362.332800pt;}
._16{width:395.269333pt;}
._17{width:455.269333pt;}
._15{width:669.509867pt;}
._1f{width:817.066667pt;}
.fs11{font-size:10.666667pt;}
.fs1e{font-size:39.111083pt;}
.fs1a{font-size:49.777749pt;}
.fs15{font-size:53.333333pt;}
.fs17{font-size:56.000000pt;}
.fs19{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs13{font-size:74.666657pt;}
.fs0{font-size:74.666667pt;}
.fs14{font-size:80.000000pt;}
.fsf{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fs12{font-size:117.333333pt;}
.fs18{font-size:122.666667pt;}
.fse{font-size:128.000000pt;}
.fs16{font-size:133.333333pt;}
.fsb{font-size:138.666667pt;}
.fs6{font-size:149.333333pt;}
.fsa{font-size:160.000000pt;}
.fs1{font-size:170.666667pt;}
.fsd{font-size:176.000000pt;}
.fs10{font-size:186.666667pt;}
.fs4{font-size:192.000000pt;}
.fsc{font-size:197.333333pt;}
.fs1c{font-size:213.333333pt;}
.fs7{font-size:234.666667pt;}
.fs8{font-size:256.000000pt;}
.fs9{font-size:352.000000pt;}
.fs1b{font-size:384.000000pt;}
.fs1d{font-size:885.333333pt;}
.y144{bottom:-11.926738pt;}
.yf6{bottom:-3.933351pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y2{bottom:6.033249pt;}
.y136{bottom:13.848267pt;}
.yf5{bottom:22.733302pt;}
.y14b{bottom:23.866662pt;}
.y180{bottom:34.199996pt;}
.y15f{bottom:35.199982pt;}
.y1af{bottom:36.033276pt;}
.y143{bottom:36.499937pt;}
.y8e{bottom:36.699916pt;}
.ya9{bottom:36.866662pt;}
.y135{bottom:39.181600pt;}
.y10b{bottom:40.866622pt;}
.y27{bottom:41.023396pt;}
.yb{bottom:41.699942pt;}
.y172{bottom:41.866622pt;}
.y12c{bottom:43.033276pt;}
.y13b{bottom:43.533289pt;}
.y11c{bottom:43.866662pt;}
.y4c{bottom:46.033276pt;}
.y249{bottom:46.513276pt;}
.y142{bottom:49.353249pt;}
.yf4{bottom:49.400009pt;}
.y1d4{bottom:49.533316pt;}
.y22a{bottom:50.966596pt;}
.y124{bottom:51.866622pt;}
.y20e{bottom:52.699916pt;}
.y1c0{bottom:53.033249pt;}
.y156{bottom:53.033276pt;}
.y204{bottom:53.366556pt;}
.y18e{bottom:57.199982pt;}
.y93{bottom:59.033222pt;}
.y1b2{bottom:59.033249pt;}
.y21c{bottom:59.199956pt;}
.y1ae{bottom:61.366596pt;}
.ydf{bottom:63.333329pt;}
.y26{bottom:63.690062pt;}
.ya8{bottom:63.699889pt;}
.y12b{bottom:64.366556pt;}
.y1c5{bottom:65.033222pt;}
.y33{bottom:66.199956pt;}
.y11b{bottom:66.533289pt;}
.y1e8{bottom:67.699916pt;}
.y248{bottom:68.699916pt;}
.y12e{bottom:68.719333pt;}
.y84{bottom:69.959982pt;}
.y141{bottom:73.406582pt;}
.yf3{bottom:74.733329pt;}
.y7d{bottom:75.033236pt;}
.y6f{bottom:77.162329pt;}
.y1d3{bottom:78.866622pt;}
.y13c{bottom:81.699902pt;}
.y90{bottom:82.699929pt;}
.ybe{bottom:83.366569pt;}
.y10f{bottom:84.699916pt;}
.y18d{bottom:84.866622pt;}
.y247{bottom:85.179916pt;}
.y1ad{bottom:86.699929pt;}
.y1bb{bottom:87.133316pt;}
.y177{bottom:87.199969pt;}
.yde{bottom:87.333329pt;}
.y25{bottom:87.690062pt;}
.y17f{bottom:88.033249pt;}
.y229{bottom:88.699916pt;}
.yc3{bottom:89.366569pt;}
.y1f5{bottom:89.573302pt;}
.y32{bottom:90.199996pt;}
.y152{bottom:90.366556pt;}
.y203{bottom:93.366596pt;}
.y162{bottom:94.028609pt;}
.y8b{bottom:94.533302pt;}
.y42{bottom:95.133316pt;}
.y22e{bottom:95.199969pt;}
.y1a1{bottom:96.866622pt;}
.y4b{bottom:97.126649pt;}
.y6e{bottom:97.162342pt;}
.y7c{bottom:99.033262pt;}
.yb8{bottom:99.033276pt;}
.y21b{bottom:99.199969pt;}
.y1e7{bottom:99.699876pt;}
.y68{bottom:100.143222pt;}
.y20d{bottom:100.699836pt;}
.yf2{bottom:101.399982pt;}
.y12d{bottom:102.981867pt;}
.y38{bottom:103.134876pt;}
.y58{bottom:104.366569pt;}
.y11a{bottom:105.533302pt;}
.y246{bottom:107.366556pt;}
.y8d{bottom:108.699902pt;}
.ya7{bottom:109.033169pt;}
.ydd{bottom:110.213316pt;}
.y24{bottom:110.356729pt;}
.y1ac{bottom:112.033302pt;}
.y6d{bottom:115.828982pt;}
.y17e{bottom:117.366636pt;}
.y31{bottom:118.199969pt;}
.y1d2{bottom:118.866636pt;}
.y176{bottom:119.199969pt;}
.yb1{bottom:119.366502pt;}
.y1bf{bottom:119.533302pt;}
.y67{bottom:120.143302pt;}
.y1c7{bottom:121.959982pt;}
.y245{bottom:123.846636pt;}
.yb7{bottom:124.366636pt;}
.y1d7{bottom:125.199969pt;}
.y161{bottom:126.028636pt;}
.y140{bottom:126.739836pt;}
.y7b{bottom:127.033169pt;}
.yf1{bottom:128.066649pt;}
.y18c{bottom:128.866636pt;}
.ybd{bottom:130.033302pt;}
.y151{bottom:130.366636pt;}
.y83{bottom:131.293316pt;}
.y1e6{bottom:131.699836pt;}
.y37{bottom:132.468236pt;}
.y8{bottom:132.533302pt;}
.y228{bottom:132.966516pt;}
.y23{bottom:133.023449pt;}
.y202{bottom:133.366502pt;}
.y22d{bottom:133.866636pt;}
.y6c{bottom:135.829036pt;}
.y10e{bottom:136.366636pt;}
.y1ab{bottom:137.366636pt;}
.ydc{bottom:137.999982pt;}
.y1f4{bottom:138.693316pt;}
.y66{bottom:138.809836pt;}
.y12f{bottom:139.164133pt;}
.y21a{bottom:139.199969pt;}
.y1c4{bottom:139.699969pt;}
.y41{bottom:140.466649pt;}
.y15e{bottom:141.033302pt;}
.y119{bottom:143.186649pt;}
.y17d{bottom:145.366636pt;}
.y1ba{bottom:145.799982pt;}
.y244{bottom:146.033302pt;}
.y30{bottom:147.533302pt;}
.y1d1{bottom:148.199969pt;}
.y171{bottom:148.533302pt;}
.y20c{bottom:148.699836pt;}
.y175{bottom:151.199969pt;}
.ya6{bottom:153.033302pt;}
.y6b{bottom:154.495702pt;}
.yf0{bottom:154.733316pt;}
.y22{bottom:155.690116pt;}
.y15d{bottom:157.033169pt;}
.y1d6{bottom:157.199969pt;}
.y65{bottom:157.476502pt;}
.y4a{bottom:159.366502pt;}
.y36{bottom:160.468236pt;}
.y7{bottom:161.439982pt;}
.ydb{bottom:161.839982pt;}
.y19c{bottom:162.033169pt;}
.y1e5{bottom:163.699969pt;}
.y243{bottom:163.846502pt;}
.y201{bottom:165.366636pt;}
.y1f3{bottom:166.906636pt;}
.y219{bottom:171.199969pt;}
.y22c{bottom:172.533302pt;}
.y6a{bottom:173.162369pt;}
.yb6{bottom:174.533302pt;}
.y17c{bottom:174.699836pt;}
.y2f{bottom:175.533302pt;}
.y227{bottom:176.699836pt;}
.y21{bottom:179.690116pt;}
.y15b{bottom:180.413036pt;}
.yb0{bottom:180.699836pt;}
.yef{bottom:181.399982pt;}
.y13f{bottom:181.459849pt;}
.y174{bottom:183.199969pt;}
.y19b{bottom:184.699836pt;}
.y242{bottom:184.699969pt;}
.y167{bottom:186.880916pt;}
.y82{bottom:187.026649pt;}
.y40{bottom:187.133316pt;}
.y1c3{bottom:187.699969pt;}
.y13a{bottom:188.170800pt;}
.y10d{bottom:188.199969pt;}
.y35{bottom:189.801569pt;}
.y118{bottom:189.853316pt;}
.y9c{bottom:191.280769pt;}
.yda{bottom:192.879982pt;}
.y6{bottom:195.199969pt;}
.y10{bottom:195.293316pt;}
.y20b{bottom:196.699836pt;}
.y87{bottom:198.199969pt;}
.y89{bottom:198.366502pt;}
.ya5{bottom:198.366636pt;}
.y20{bottom:202.356649pt;}
.y241{bottom:202.513302pt;}
.y17b{bottom:202.699969pt;}
.y168{bottom:202.934249pt;}
.y1b9{bottom:204.466649pt;}
.y2e{bottom:204.866636pt;}
.y226{bottom:204.966516pt;}
.y200{bottom:205.366502pt;}
.y56{bottom:206.006516pt;}
.y19a{bottom:206.033169pt;}
.yee{bottom:206.733316pt;}
.y16e{bottom:207.699836pt;}
.y130{bottom:209.608933pt;}
.y22b{bottom:209.866636pt;}
.y49{bottom:210.459849pt;}
.y218{bottom:211.199969pt;}
.y7a{bottom:213.179836pt;}
.y173{bottom:215.199969pt;}
.y81{bottom:215.293316pt;}
.y1f2{bottom:216.026649pt;}
.y34{bottom:217.801569pt;}
.y1c6{bottom:219.079969pt;}
.y166{bottom:220.214249pt;}
.yd9{bottom:220.879982pt;}
.y240{bottom:223.366502pt;}
.y1a7{bottom:224.866636pt;}
.y1f{bottom:225.023316pt;}
.y189{bottom:225.866636pt;}
.y98{bottom:226.406502pt;}
.y1e4{bottom:227.699836pt;}
.y139{bottom:227.831200pt;}
.y199{bottom:228.699836pt;}
.y1d0{bottom:229.533302pt;}
.y10c{bottom:232.199969pt;}
.y2d{bottom:232.866636pt;}
.y3f{bottom:232.893302pt;}
.yed{bottom:233.399982pt;}
.y86{bottom:235.533302pt;}
.y88{bottom:235.699836pt;}
.y117{bottom:236.199969pt;}
.y9b{bottom:240.614102pt;}
.yaf{bottom:240.699836pt;}
.y23f{bottom:241.179836pt;}
.y5{bottom:241.366502pt;}
.y1f1{bottom:242.906636pt;}
.y217{bottom:243.199969pt;}
.y15c{bottom:244.090369pt;}
.ya4{bottom:245.033169pt;}
.y1ff{bottom:245.366502pt;}
.y225{bottom:247.633182pt;}
.yd8{bottom:248.879982pt;}
.y1e{bottom:249.023316pt;}
.y150{bottom:250.366502pt;}
.y198{bottom:251.366502pt;}
.y170{bottom:255.199969pt;}
.yf{bottom:256.626649pt;}
.y1cf{bottom:258.866636pt;}
.y16d{bottom:259.699836pt;}
.yec{bottom:260.066649pt;}
.y63{bottom:261.199969pt;}
.y18b{bottom:261.533302pt;}
.y101{bottom:261.553169pt;}
.y23e{bottom:262.033169pt;}
.y1b8{bottom:264.466649pt;}
.y14a{bottom:266.866636pt;}
.y138{bottom:267.491733pt;}
.y1d{bottom:271.689982pt;}
.y48{bottom:271.793182pt;}
.y116{bottom:273.853316pt;}
.y197{bottom:274.033169pt;}
.y80{bottom:276.626649pt;}
.y20a{bottom:276.699836pt;}
.yd7{bottom:276.879982pt;}
.y18a{bottom:278.866636pt;}
.y79{bottom:279.366502pt;}
.y23d{bottom:279.846502pt;}
.y131{bottom:280.053600pt;}
.y188{bottom:282.366502pt;}
.y216{bottom:283.199969pt;}
.y1fe{bottom:285.366502pt;}
.y1dc{bottom:285.533302pt;}
.yeb{bottom:286.733316pt;}
.y100{bottom:288.219836pt;}
.y14f{bottom:290.366502pt;}
.y62{bottom:290.533169pt;}
.y155{bottom:290.699836pt;}
.y224{bottom:291.366502pt;}
.y1e3{bottom:291.699836pt;}
.y1f0{bottom:292.026649pt;}
.y4{bottom:292.033169pt;}
.y1c{bottom:294.356649pt;}
.y55{bottom:296.619836pt;}
.y196{bottom:296.699836pt;}
.y149{bottom:298.866636pt;}
.y57{bottom:300.366502pt;}
.y23c{bottom:300.699836pt;}
.ya3{bottom:301.033169pt;}
.yae{bottom:302.033169pt;}
.yd6{bottom:305.839982pt;}
.y137{bottom:307.152133pt;}
.y10a{bottom:307.533302pt;}
.y16c{bottom:310.366502pt;}
.yea{bottom:313.399982pt;}
.yff{bottom:315.366502pt;}
.y29{bottom:317.023316pt;}
.y1ef{bottom:317.199969pt;}
.y1b1{bottom:317.959982pt;}
.y23b{bottom:318.033169pt;}
.y195{bottom:318.886502pt;}
.y61{bottom:319.866636pt;}
.y115{bottom:320.519982pt;}
.ybc{bottom:320.699836pt;}
.y1b7{bottom:323.133316pt;}
.y215{bottom:323.199969pt;}
.y1e2{bottom:323.699836pt;}
.y1db{bottom:324.199969pt;}
.y209{bottom:324.699836pt;}
.y1fd{bottom:325.366502pt;}
.y78{bottom:326.033169pt;}
.y187{bottom:326.366502pt;}
.y1ce{bottom:328.199969pt;}
.y153{bottom:328.533302pt;}
.y1a5{bottom:328.623982pt;}
.y148{bottom:330.866636pt;}
.y85{bottom:332.199969pt;}
.yc9{bottom:332.782772pt;}
.y47{bottom:333.126516pt;}
.y23a{bottom:335.366502pt;}
.y123{bottom:337.199969pt;}
.yd5{bottom:337.839982pt;}
.ye9{bottom:338.733316pt;}
.y223{bottom:339.366502pt;}
.yfe{bottom:340.699836pt;}
.y1b{bottom:341.023316pt;}
.y15a{bottom:341.426502pt;}
.y1ee{bottom:342.533302pt;}
.y3{bottom:342.699836pt;}
.y194{bottom:344.699836pt;}
.ya2{bottom:345.033169pt;}
.y3e{bottom:345.799982pt;}
.y60{bottom:347.866502pt;}
.y71{bottom:348.133169pt;}
.y5b{bottom:348.133302pt;}
.y132{bottom:350.498400pt;}
.y97{bottom:350.939849pt;}
.y159{bottom:351.213036pt;}
.y239{bottom:353.179836pt;}
.y1fc{bottom:357.366502pt;}
.y16f{bottom:360.533302pt;}
.y64{bottom:361.733302pt;}
.y16b{bottom:362.366502pt;}
.y147{bottom:362.866636pt;}
.yad{bottom:363.366502pt;}
.y1a{bottom:363.689982pt;}
.y165{bottom:363.936649pt;}
.y122{bottom:365.199969pt;}
.ye8{bottom:365.399982pt;}
.ybb{bottom:366.033169pt;}
.yfd{bottom:366.246502pt;}
.y114{bottom:366.866636pt;}
.y193{bottom:367.366502pt;}
.y222{bottom:367.633182pt;}
.y1ed{bottom:367.866636pt;}
.y1cd{bottom:368.199969pt;}
.yd4{bottom:368.666649pt;}
.y109{bottom:369.366502pt;}
.yc8{bottom:370.033169pt;}
.y186{bottom:371.699836pt;}
.y238{bottom:374.033169pt;}
.y9a{bottom:374.647169pt;}
.y208{bottom:374.833182pt;}
.y70{bottom:376.133169pt;}
.y5a{bottom:376.133302pt;}
.y1c2{bottom:377.033169pt;}
.y5f{bottom:377.199836pt;}
.y1b0{bottom:379.293316pt;}
.y77{bottom:379.526516pt;}
.y54{bottom:381.366502pt;}
.y1b6{bottom:383.133316pt;}
.y1be{bottom:384.366502pt;}
.y96{bottom:385.606516pt;}
.y19{bottom:386.356649pt;}
.y1e1{bottom:387.699836pt;}
.y192{bottom:390.033169pt;}
.ya1{bottom:390.366502pt;}
.y3d{bottom:391.133316pt;}
.yd3{bottom:391.546649pt;}
.y237{bottom:391.846502pt;}
.ye7{bottom:392.066649pt;}
.y1ec{bottom:393.199969pt;}
.y46{bottom:394.459849pt;}
.y121{bottom:394.533302pt;}
.y146{bottom:394.866636pt;}
.yfc{bottom:396.913169pt;}
.y1fb{bottom:397.366502pt;}
.y1cc{bottom:397.533302pt;}
.yc7{bottom:398.033169pt;}
.ycb{bottom:399.199969pt;}
.y7f{bottom:400.199969pt;}
.y1da{bottom:401.533302pt;}
.y113{bottom:404.519982pt;}
.y5e{bottom:405.199836pt;}
.yba{bottom:410.033169pt;}
.y18{bottom:410.356649pt;}
.y14e{bottom:410.366502pt;}
.y221{bottom:411.366502pt;}
.y158{bottom:411.692102pt;}
.y191{bottom:412.699836pt;}
.y16a{bottom:413.033169pt;}
.y12a{bottom:415.366502pt;}
.y185{bottom:416.073169pt;}
.y214{bottom:416.699836pt;}
.ye6{bottom:418.733316pt;}
.yd2{bottom:419.546649pt;}
.y1e0{bottom:419.699836pt;}
.y133{bottom:420.943200pt;}
.y1eb{bottom:421.199969pt;}
.y95{bottom:422.406502pt;}
.y120{bottom:422.533302pt;}
.yac{bottom:423.366502pt;}
.y1c1{bottom:423.699836pt;}
.y99{bottom:423.980502pt;}
.y2c{bottom:426.533302pt;}
.y145{bottom:426.866636pt;}
.yc6{bottom:427.366502pt;}
.y1fa{bottom:429.366502pt;}
.yca{bottom:429.533302pt;}
.y236{bottom:430.513169pt;}
.y207{bottom:431.366502pt;}
.y17{bottom:433.023316pt;}
.y108{bottom:433.033169pt;}
.y5d{bottom:434.533169pt;}
.y190{bottom:435.366502pt;}
.ya0{bottom:435.699836pt;}
.y3c{bottom:437.799982pt;}
.y1cb{bottom:438.866636pt;}
.ye{bottom:440.626649pt;}
.y220{bottom:440.966516pt;}
.y69{bottom:441.638636pt;}
.y1b5{bottom:443.133316pt;}
.y129{bottom:443.366502pt;}
.y213{bottom:444.699836pt;}
.y1bd{bottom:445.033169pt;}
.ye5{bottom:445.399982pt;}
.yd1{bottom:447.546649pt;}
.y76{bottom:450.193182pt;}
.y53{bottom:450.699836pt;}
.y1a4{bottom:450.863969pt;}
.y7e{bottom:450.866636pt;}
.y112{bottom:451.186649pt;}
.y235{bottom:451.366502pt;}
.y11f{bottom:451.866636pt;}
.y182{bottom:452.199969pt;}
.yfb{bottom:452.913169pt;}
.yb9{bottom:455.366502pt;}
.y16{bottom:455.689982pt;}
.y45{bottom:455.793182pt;}
.y18f{bottom:456.699836pt;}
.y1ea{bottom:461.199969pt;}
.y5c{bottom:462.533169pt;}
.y169{bottom:463.699836pt;}
.y1a9{bottom:463.866636pt;}
.y164{bottom:466.234382pt;}
.y1ca{bottom:466.866636pt;}
.y106{bottom:467.699836pt;}
.y234{bottom:469.179836pt;}
.y1f9{bottom:469.366502pt;}
.y184{bottom:470.366502pt;}
.y2b{bottom:470.533302pt;}
.ye4{bottom:470.733316pt;}
.y128{bottom:472.699836pt;}
.yd0{bottom:476.666649pt;}
.y92{bottom:477.033169pt;}
.y1d9{bottom:477.533302pt;}
.y17a{bottom:478.033169pt;}
.y15{bottom:478.356649pt;}
.y206{bottom:479.366502pt;}
.y9f{bottom:479.699836pt;}
.y107{bottom:479.866636pt;}
.y13e{bottom:481.033169pt;}
.y212{bottom:482.033169pt;}
.y3b{bottom:483.133316pt;}
.y21f{bottom:483.366502pt;}
.yfa{bottom:483.579836pt;}
.y1df{bottom:483.699836pt;}
.yab{bottom:484.699836pt;}
.yc5{bottom:487.366502pt;}
.y52{bottom:489.683302pt;}
.y233{bottom:490.033169pt;}
.y134{bottom:491.387867pt;}
.y1c9{bottom:495.773316pt;}
.ye3{bottom:497.399982pt;}
.y111{bottom:497.533302pt;}
.y8a{bottom:499.366502pt;}
.ycf{bottom:499.546649pt;}
.y163{bottom:499.567716pt;}
.y105{bottom:499.699836pt;}
.y1a6{bottom:499.966502pt;}
.y127{bottom:500.699836pt;}
.y1a8{bottom:501.199969pt;}
.y1a3{bottom:501.530636pt;}
.yd{bottom:501.533302pt;}
.y14{bottom:502.356649pt;}
.y157{bottom:502.366502pt;}
.y91{bottom:505.033169pt;}
.yc0{bottom:506.633169pt;}
.y1b4{bottom:506.866636pt;}
.y160{bottom:507.127582pt;}
.y179{bottom:507.366502pt;}
.y232{bottom:507.846502pt;}
.y8c{bottom:508.366502pt;}
.y13d{bottom:508.766502pt;}
.y1f8{bottom:509.366502pt;}
.y1bc{bottom:510.199969pt;}
.y21e{bottom:511.633182pt;}
.y73{bottom:512.489302pt;}
.y183{bottom:514.366502pt;}
.yf9{bottom:515.366502pt;}
.y1de{bottom:515.699836pt;}
.y44{bottom:516.699836pt;}
.y19e{bottom:517.199969pt;}
.y51{bottom:517.683169pt;}
.y211{bottom:518.033169pt;}
.y1d8{bottom:518.866636pt;}
.y75{bottom:519.366502pt;}
.ye2{bottom:523.533302pt;}
.y28{bottom:525.023316pt;}
.y9e{bottom:526.366502pt;}
.y205{bottom:527.366502pt;}
.y1e9{bottom:527.866636pt;}
.yce{bottom:528.506649pt;}
.y231{bottom:528.699836pt;}
.y126{bottom:530.033169pt;}
.y14d{bottom:530.366502pt;}
.y104{bottom:531.699836pt;}
.yc4{bottom:532.699836pt;}
.y1c8{bottom:533.533302pt;}
.y72{bottom:533.822636pt;}
.y110{bottom:534.866636pt;}
.yc2{bottom:535.366502pt;}
.yf8{bottom:540.913169pt;}
.y11e{bottom:541.033169pt;}
.y1f7{bottom:541.366502pt;}
.y19d{bottom:542.533302pt;}
.yaa{bottom:544.699836pt;}
.ye1{bottom:545.399982pt;}
.ya{bottom:546.033169pt;}
.y230{bottom:546.513169pt;}
.y50{bottom:547.016502pt;}
.y13{bottom:547.689982pt;}
.y1dd{bottom:547.699836pt;}
.y8f{bottom:550.366502pt;}
.y210{bottom:555.366502pt;}
.y125{bottom:558.033169pt;}
.ycd{bottom:560.719969pt;}
.y154{bottom:562.866636pt;}
.y103{bottom:563.699836pt;}
.y22f{bottom:567.366502pt;}
.y12{bottom:570.356649pt;}
.y14c{bottom:570.366502pt;}
.ye0{bottom:571.533302pt;}
.yf7{bottom:572.699836pt;}
.y181{bottom:574.866636pt;}
.y4f{bottom:575.016502pt;}
.yb3{bottom:577.199836pt;}
.y9{bottom:578.033169pt;}
.y3a{bottom:589.533302pt;}
.ycc{bottom:600.666516pt;}
.y4d{bottom:601.866502pt;}
.yc1{bottom:611.383169pt;}
.yc{bottom:612.466502pt;}
.y1a2{bottom:612.476902pt;}
.yb5{bottom:613.199969pt;}
.y1a0{bottom:620.699836pt;}
.y1f6{bottom:629.549836pt;}
.y74{bottom:635.133169pt;}
.y9d{bottom:636.133169pt;}
.y11d{bottom:637.966502pt;}
.y39{bottom:640.199969pt;}
.y59{bottom:640.633169pt;}
.y94{bottom:640.799836pt;}
.y2a{bottom:642.049836pt;}
.y178{bottom:642.216502pt;}
.y4e{bottom:642.633169pt;}
.y43{bottom:643.633169pt;}
.y11{bottom:644.216502pt;}
.y1b3{bottom:644.799836pt;}
.y21d{bottom:645.383169pt;}
.y102{bottom:645.766636pt;}
.yb2{bottom:647.883169pt;}
.y1aa{bottom:648.883169pt;}
.y1d5{bottom:649.716636pt;}
.ybf{bottom:650.049836pt;}
.y20f{bottom:651.716636pt;}
.yb4{bottom:663.866636pt;}
.y19f{bottom:671.366636pt;}
.h19{height:46.625000pt;}
.h1f{height:49.401042pt;}
.h25{height:51.871094pt;}
.h29{height:54.341146pt;}
.h12{height:54.359375pt;}
.ha{height:54.395833pt;}
.h7{height:59.281250pt;}
.h2b{height:62.166667pt;}
.h2a{height:65.333333pt;}
.h1b{height:69.161449pt;}
.h2{height:69.161458pt;}
.h9{height:69.937500pt;}
.h1d{height:74.101562pt;}
.h24{height:77.041667pt;}
.h21{height:77.656250pt;}
.h22{height:77.708333pt;}
.h32{height:77.916667pt;}
.h16{height:79.041667pt;}
.h4{height:88.921875pt;}
.h13{height:93.187500pt;}
.h23{height:96.302083pt;}
.h5{height:98.802083pt;}
.h1a{height:108.682292pt;}
.h2e{height:108.791667pt;}
.h26{height:113.622396pt;}
.h2c{height:115.562500pt;}
.h1c{height:118.562500pt;}
.h20{height:123.502604pt;}
.h30{height:124.333333pt;}
.h18{height:134.822917pt;}
.h8{height:138.322917pt;}
.h2f{height:139.875000pt;}
.h15{height:140.447917pt;}
.h14{height:140.448450pt;}
.hf{height:148.203125pt;}
.h3{height:158.083333pt;}
.h11{height:163.023438pt;}
.h17{height:172.903646pt;}
.he{height:173.343750pt;}
.h6{height:177.843750pt;}
.h10{height:182.783854pt;}
.h28{height:183.625000pt;}
.hb{height:217.364583pt;}
.hc{height:237.125000pt;}
.hd{height:239.250000pt;}
.h27{height:240.162660pt;}
.h2d{height:275.437500pt;}
.h1e{height:514.472667pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.h31{height:820.057292pt;}
.w2{width:877.090667pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.599999pt;}
.x6e{left:12.839583pt;}
.x86{left:16.304480pt;}
.x94{left:17.993280pt;}
.x7c{left:28.433387pt;}
.x5b{left:29.506252pt;}
.x6f{left:34.933333pt;}
.x19{left:35.933333pt;}
.x10{left:43.599987pt;}
.x7b{left:47.266653pt;}
.x85{left:48.872720pt;}
.x4e{left:50.079145pt;}
.x4b{left:51.100053pt;}
.x3a{left:52.599987pt;}
.xc7{left:56.599987pt;}
.xb{left:57.599987pt;}
.x45{left:58.766720pt;}
.x67{left:63.598684pt;}
.x93{left:66.430716pt;}
.xbd{left:69.933320pt;}
.x4c{left:71.393013pt;}
.x48{left:73.766720pt;}
.x8f{left:75.360400pt;}
.x15{left:79.599987pt;}
.x49{left:81.433373pt;}
.xaa{left:83.933320pt;}
.xc2{left:85.599987pt;}
.x32{left:86.524263pt;}
.x3b{left:88.599987pt;}
.x37{left:89.916651pt;}
.x9d{left:91.100040pt;}
.xab{left:93.433373pt;}
.x6d{left:94.965200pt;}
.x3c{left:96.433373pt;}
.x13{left:97.777067pt;}
.x84{left:101.094773pt;}
.x31{left:105.418800pt;}
.x27{left:107.295027pt;}
.x38{left:108.241520pt;}
.x28{left:109.386827pt;}
.x5e{left:111.599987pt;}
.x8e{left:119.100040pt;}
.xa7{left:124.413800pt;}
.x59{left:126.766693pt;}
.x16{left:130.461960pt;}
.x11{left:132.932013pt;}
.x68{left:133.963267pt;}
.xba{left:134.856493pt;}
.x3e{left:136.122120pt;}
.x78{left:138.100000pt;}
.x66{left:140.294000pt;}
.x65{left:142.269320pt;}
.x1f{left:144.606493pt;}
.x6c{left:145.719773pt;}
.x47{left:149.223680pt;}
.x4d{left:153.321360pt;}
.x92{left:156.933333pt;}
.x5f{left:159.600000pt;}
.x9b{left:160.581689pt;}
.x4f{left:162.180665pt;}
.x9f{left:163.121733pt;}
.x44{left:172.626021pt;}
.x69{left:178.961358pt;}
.xb4{left:182.933333pt;}
.xbc{left:184.600000pt;}
.xa0{left:187.121733pt;}
.x1a{left:190.356493pt;}
.x87{left:192.386040pt;}
.x9{left:194.766667pt;}
.x80{left:197.766720pt;}
.xc1{left:199.271920pt;}
.x3d{left:200.844787pt;}
.x60{left:202.883865pt;}
.xd{left:205.318720pt;}
.xc5{left:209.933333pt;}
.x5a{left:214.326587pt;}
.x26{left:217.269387pt;}
.x3f{left:221.801173pt;}
.x82{left:224.033653pt;}
.xa{left:228.966000pt;}
.xe{left:230.658600pt;}
.xbe{left:236.127387pt;}
.x73{left:240.100000pt;}
.x7a{left:242.868253pt;}
.x50{left:248.665067pt;}
.xa4{left:251.024520pt;}
.x90{left:253.602653pt;}
.x5d{left:256.860387pt;}
.x63{left:260.867573pt;}
.x4a{left:262.075187pt;}
.x24{left:265.611699pt;}
.x33{left:269.899147pt;}
.x9a{left:271.417651pt;}
.x20{left:273.131227pt;}
.xb2{left:274.708120pt;}
.x8{left:277.813587pt;}
.xbb{left:278.879987pt;}
.x54{left:280.204120pt;}
.x39{left:286.907320pt;}
.x58{left:288.161187pt;}
.x57{left:293.051813pt;}
.xae{left:295.891720pt;}
.x1{left:298.736132pt;}
.x64{left:303.454120pt;}
.x88{left:306.372493pt;}
.x55{left:310.266667pt;}
.x89{left:312.341240pt;}
.x7d{left:316.765373pt;}
.x61{left:322.133853pt;}
.xb5{left:323.266667pt;}
.xc6{left:333.895547pt;}
.xb6{left:335.001053pt;}
.xb0{left:336.875987pt;}
.xad{left:338.433333pt;}
.xbf{left:340.438573pt;}
.xc0{left:342.100053pt;}
.x25{left:343.595440pt;}
.x77{left:350.059587pt;}
.x21{left:352.222373pt;}
.x56{left:358.266667pt;}
.xc4{left:359.326587pt;}
.xa5{left:363.899453pt;}
.x5c{left:366.793987pt;}
.xaf{left:369.547853pt;}
.xa3{left:374.313760pt;}
.x46{left:376.266667pt;}
.x95{left:379.334360pt;}
.x98{left:383.812219pt;}
.x62{left:390.158587pt;}
.xc3{left:392.938520pt;}
.x79{left:396.919107pt;}
.x43{left:399.376042pt;}
.x3{left:411.922920pt;}
.x91{left:413.933333pt;}
.x2c{left:415.486640pt;}
.x2d{left:418.750312pt;}
.x8a{left:426.327560pt;}
.x14{left:428.422920pt;}
.x2f{left:429.631173pt;}
.xac{left:431.786120pt;}
.x2a{left:433.129213pt;}
.xf{left:434.633867pt;}
.x2b{left:437.816720pt;}
.x29{left:441.719067pt;}
.x2e{left:444.812813pt;}
.x42{left:446.876040pt;}
.x34{left:448.279867pt;}
.x1e{left:450.455483pt;}
.x1b{left:451.392984pt;}
.x1d{left:452.529703pt;}
.x97{left:459.847396pt;}
.x22{left:463.253600pt;}
.x2{left:465.620827pt;}
.x23{left:469.282267pt;}
.x1c{left:470.494547pt;}
.x5{left:485.600000pt;}
.xc{left:493.600000pt;}
.xb8{left:498.433333pt;}
.xa2{left:513.933349pt;}
.x8b{left:540.876373pt;}
.xa1{left:550.238040pt;}
.x8c{left:552.251373pt;}
.xb9{left:565.266667pt;}
.x6a{left:572.766667pt;}
.x4{left:596.433333pt;}
.xa6{left:602.933200pt;}
.x81{left:610.599867pt;}
.x6b{left:611.933200pt;}
.x9e{left:621.587867pt;}
.x36{left:623.904476pt;}
.x35{left:630.806813pt;}
.x7f{left:633.266533pt;}
.xb7{left:644.920293pt;}
.xb1{left:652.266667pt;}
.x7e{left:656.422722pt;}
.x53{left:663.111180pt;}
.x41{left:668.521747pt;}
.x40{left:674.584240pt;}
.x9c{left:678.599867pt;}
.x12{left:681.880667pt;}
.x8d{left:694.629813pt;}
.x99{left:700.472251pt;}
.x52{left:714.840615pt;}
.x74{left:727.433180pt;}
.x51{left:736.966267pt;}
.x83{left:739.100000pt;}
.x75{left:767.225000pt;}
.x17{left:768.266533pt;}
.xa9{left:769.266667pt;}
.x7{left:773.417733pt;}
.x70{left:778.469640pt;}
.x72{left:779.657292pt;}
.x76{left:782.834360pt;}
.x71{left:792.547760pt;}
.x96{left:798.438547pt;}
.x18{left:804.266533pt;}
.xb3{left:825.100000pt;}
.x30{left:832.202400pt;}
.xa8{left:875.100000pt;}
}




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