
    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_acee4b1d931e480e6dd5bb90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_9057d5535988c53c33115543.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_6075693066fa7265f51b391f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.146000;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_d6785b7a22d076aa5b12f68b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_f1f8e2683509a4af9af6fa1e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_bc7323f427e40eab6cfeb83a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;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_c43a96baada91ab559556c54.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.685000;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_3d63d8bab24340da3fec8aaf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.684000;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_7ab970e1136dfe72dcb1e1fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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_cf6312948bc63060adbbeb26.woff2')format("woff");}.fff{font-family:fff;line-height:0.817000;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_db88463ecfea5281eb2ea320.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.400055px;}
.v2{vertical-align:-15.000183px;}
.v7{vertical-align:-12.750000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.000000px;}
.v5{vertical-align:20.351780px;}
.v1{vertical-align:24.000000px;}
.v6{vertical-align:60.000000px;}
.ls7b{letter-spacing:-3.840000px;}
.ls98{letter-spacing:-3.360000px;}
.ls97{letter-spacing:-3.240000px;}
.lsbe{letter-spacing:-2.295000px;}
.ls9c{letter-spacing:-2.193000px;}
.ls34{letter-spacing:-2.160000px;}
.ls4d{letter-spacing:-1.200000px;}
.ls4c{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.420000px;}
.lsbd{letter-spacing:-0.408000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9a{letter-spacing:-0.357000px;}
.lsbb{letter-spacing:-0.306000px;}
.ls1f{letter-spacing:-0.300000px;}
.lscf{letter-spacing:-0.255000px;}
.lsa{letter-spacing:-0.240000px;}
.ls9b{letter-spacing:-0.204000px;}
.ls21{letter-spacing:-0.180000px;}
.lsbc{letter-spacing:-0.153000px;}
.ls35{letter-spacing:-0.120000px;}
.ls69{letter-spacing:-0.102000px;}
.ls20{letter-spacing:-0.060000px;}
.ls99{letter-spacing:-0.051000px;}
.ls9{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.000020px;}
.ls47{letter-spacing:0.000037px;}
.lsb7{letter-spacing:0.025500px;}
.ls8e{letter-spacing:0.051000px;}
.ls23{letter-spacing:0.060000px;}
.lsbf{letter-spacing:0.076500px;}
.ls50{letter-spacing:0.090000px;}
.ls90{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.120000px;}
.ls8b{letter-spacing:0.153000px;}
.ls8a{letter-spacing:0.178500px;}
.ls8{letter-spacing:0.178791px;}
.ls17{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.185957px;}
.ls85{letter-spacing:0.204000px;}
.ls5f{letter-spacing:0.209925px;}
.ls3a{letter-spacing:0.209971px;}
.ls2c{letter-spacing:0.210000px;}
.ls38{letter-spacing:0.210022px;}
.ls6b{letter-spacing:0.211670px;}
.ls6d{letter-spacing:0.211756px;}
.ls53{letter-spacing:0.227983px;}
.lscd{letter-spacing:0.229500px;}
.ls54{letter-spacing:0.239960px;}
.ls1{letter-spacing:0.240000px;}
.ls56{letter-spacing:0.240595px;}
.lsc{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.255000px;}
.ls8d{letter-spacing:0.264000px;}
.ls1a{letter-spacing:0.269991px;}
.ls30{letter-spacing:0.270000px;}
.ls91{letter-spacing:0.288000px;}
.ls37{letter-spacing:0.299388px;}
.ls39{letter-spacing:0.299392px;}
.ls3{letter-spacing:0.300000px;}
.ls6c{letter-spacing:0.304885px;}
.ls9f{letter-spacing:0.306000px;}
.ls4f{letter-spacing:0.311983px;}
.ls5e{letter-spacing:0.319223px;}
.ls6a{letter-spacing:0.324111px;}
.ls55{letter-spacing:0.327008px;}
.ls1c{letter-spacing:0.330000px;}
.ls2a{letter-spacing:0.347394px;}
.ls28{letter-spacing:0.347992px;}
.ls86{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.390000px;}
.ls89{letter-spacing:0.408000px;}
.ls18{letter-spacing:0.420000px;}
.ls75{letter-spacing:0.429469px;}
.ls73{letter-spacing:0.429565px;}
.ls95{letter-spacing:0.433500px;}
.ls1d{letter-spacing:0.450000px;}
.ls87{letter-spacing:0.459000px;}
.ls6{letter-spacing:0.480000px;}
.lsc2{letter-spacing:0.484500px;}
.ls6f{letter-spacing:0.485962px;}
.ls71{letter-spacing:0.486598px;}
.ls8f{letter-spacing:0.510000px;}
.ls29{letter-spacing:0.513021px;}
.ls66{letter-spacing:0.524963px;}
.ls68{letter-spacing:0.525050px;}
.ls63{letter-spacing:0.539332px;}
.ls61{letter-spacing:0.539429px;}
.ls2f{letter-spacing:0.540000px;}
.lsc0{letter-spacing:0.561000px;}
.ls27{letter-spacing:0.597578px;}
.ls5{letter-spacing:0.600000px;}
.lsa3{letter-spacing:0.612000px;}
.ls74{letter-spacing:0.626528px;}
.ls2e{letter-spacing:0.630000px;}
.lsc6{letter-spacing:0.637500px;}
.ls19{letter-spacing:0.660000px;}
.ls92{letter-spacing:0.663000px;}
.ls70{letter-spacing:0.669675px;}
.ls6e{letter-spacing:0.673753px;}
.lscc{letter-spacing:0.683400px;}
.lsc7{letter-spacing:0.708874px;}
.ls8c{letter-spacing:0.714000px;}
.ls15{letter-spacing:0.720000px;}
.lsc5{letter-spacing:0.739500px;}
.ls72{letter-spacing:0.742759px;}
.ls24{letter-spacing:0.750000px;}
.ls62{letter-spacing:0.760188px;}
.lsa2{letter-spacing:0.765000px;}
.ls44{letter-spacing:0.774000px;}
.ls67{letter-spacing:0.778806px;}
.ls13{letter-spacing:0.780000px;}
.ls65{letter-spacing:0.789594px;}
.lsd1{letter-spacing:0.790500px;}
.ls60{letter-spacing:0.804060px;}
.ls46{letter-spacing:0.809993px;}
.ls31{letter-spacing:0.810000px;}
.lsaa{letter-spacing:0.816000px;}
.lsf{letter-spacing:0.840000px;}
.lsa4{letter-spacing:0.867000px;}
.ls2d{letter-spacing:0.870000px;}
.ls5c{letter-spacing:0.886047px;}
.ls5a{letter-spacing:0.886134px;}
.ls58{letter-spacing:0.886230px;}
.lsd{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.918000px;}
.ls36{letter-spacing:0.924000px;}
.lse{letter-spacing:0.960000px;}
.ls93{letter-spacing:0.969000px;}
.ls16{letter-spacing:1.020000px;}
.lsb4{letter-spacing:1.071000px;}
.ls1e{letter-spacing:1.080000px;}
.ls51{letter-spacing:1.110000px;}
.ls88{letter-spacing:1.122000px;}
.ls25{letter-spacing:1.140000px;}
.ls9e{letter-spacing:1.147500px;}
.lsb1{letter-spacing:1.173000px;}
.ls1b{letter-spacing:1.200000px;}
.ls14{letter-spacing:1.205982px;}
.lsba{letter-spacing:1.208677px;}
.lsa7{letter-spacing:1.224000px;}
.ls57{letter-spacing:1.253488px;}
.ls10{letter-spacing:1.260000px;}
.ls59{letter-spacing:1.271338px;}
.ls5d{letter-spacing:1.271521px;}
.ls12{letter-spacing:1.272000px;}
.ls96{letter-spacing:1.280077px;}
.ls40{letter-spacing:1.290000px;}
.ls2b{letter-spacing:1.320000px;}
.lsaf{letter-spacing:1.320890px;}
.lsb0{letter-spacing:1.326000px;}
.ls64{letter-spacing:1.350000px;}
.lsa6{letter-spacing:1.377000px;}
.ls3f{letter-spacing:1.380000px;}
.lsa8{letter-spacing:1.402500px;}
.ls5b{letter-spacing:1.410732px;}
.lsb5{letter-spacing:1.428000px;}
.ls43{letter-spacing:1.440000px;}
.lsb9{letter-spacing:1.479000px;}
.ls11{letter-spacing:1.500000px;}
.ls3e{letter-spacing:1.560000px;}
.lsc8{letter-spacing:1.560600px;}
.lsb8{letter-spacing:1.581000px;}
.lsab{letter-spacing:1.586100px;}
.ls80{letter-spacing:1.590000px;}
.lsce{letter-spacing:1.596300px;}
.ls3b{letter-spacing:1.620000px;}
.lsc4{letter-spacing:1.631991px;}
.lsca{letter-spacing:1.667700px;}
.ls4e{letter-spacing:1.680000px;}
.lsac{letter-spacing:1.683000px;}
.ls3c{letter-spacing:1.740000px;}
.ls41{letter-spacing:1.770000px;}
.lsb3{letter-spacing:1.795200px;}
.ls3d{letter-spacing:1.800000px;}
.lsad{letter-spacing:1.810500px;}
.lsae{letter-spacing:1.836000px;}
.ls7f{letter-spacing:1.860000px;}
.ls82{letter-spacing:1.920000px;}
.lsb6{letter-spacing:1.938000px;}
.ls42{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.040000px;}
.ls78{letter-spacing:2.100000px;}
.lsc9{letter-spacing:2.116500px;}
.ls83{letter-spacing:2.130000px;}
.ls9d{letter-spacing:2.152200px;}
.ls84{letter-spacing:2.160000px;}
.lsa1{letter-spacing:2.162374px;}
.lsa0{letter-spacing:2.203200px;}
.ls7a{letter-spacing:2.340000px;}
.lsd0{letter-spacing:2.397000px;}
.ls81{letter-spacing:2.400000px;}
.lscb{letter-spacing:2.407200px;}
.lsb2{letter-spacing:2.550000px;}
.ls79{letter-spacing:2.820000px;}
.lsa9{letter-spacing:2.907000px;}
.ls7e{letter-spacing:2.940000px;}
.ls7c{letter-spacing:3.000000px;}
.ls7d{letter-spacing:3.060000px;}
.ls94{letter-spacing:3.090600px;}
.lsc1{letter-spacing:3.141600px;}
.ls76{letter-spacing:3.197994px;}
.ls77{letter-spacing:3.420000px;}
.ls0{letter-spacing:3.990000px;}
.lsa5{letter-spacing:4.217700px;}
.lsc3{letter-spacing:4.911288px;}
.ls4b{letter-spacing:13.323329px;}
.ls4a{letter-spacing:13.863464px;}
.ls49{letter-spacing:16.624154px;}
.ls48{letter-spacing:241.045936px;}
.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;}
}
.wsba{word-spacing:-16.620000px;}
.wsb7{word-spacing:-16.560000px;}
.wsb9{word-spacing:-16.440000px;}
.wsa2{word-spacing:-16.080000px;}
.wsa3{word-spacing:-15.960000px;}
.ws36{word-spacing:-15.630000px;}
.ws81{word-spacing:-15.600000px;}
.ws35{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.000000px;}
.wsa1{word-spacing:-14.940000px;}
.wsbd{word-spacing:-14.832000px;}
.ws5{word-spacing:-14.640000px;}
.ws41{word-spacing:-14.544000px;}
.wsbe{word-spacing:-13.719000px;}
.wsdd{word-spacing:-13.566000px;}
.wsdc{word-spacing:-13.515000px;}
.ws100{word-spacing:-13.464000px;}
.wsdf{word-spacing:-13.413000px;}
.wsff{word-spacing:-13.387500px;}
.wsde{word-spacing:-13.362000px;}
.wsda{word-spacing:-13.056000px;}
.ws7{word-spacing:-13.005000px;}
.ws101{word-spacing:-12.954000px;}
.ws37{word-spacing:-12.840000px;}
.ws117{word-spacing:-12.801000px;}
.ws52{word-spacing:-12.750000px;}
.wsdb{word-spacing:-12.699000px;}
.ws51{word-spacing:-12.474000px;}
.ws102{word-spacing:-12.444000px;}
.ws2{word-spacing:-12.420000px;}
.wse0{word-spacing:-12.393000px;}
.ws4{word-spacing:-12.360000px;}
.wsb6{word-spacing:-11.760000px;}
.wsb8{word-spacing:-11.640000px;}
.ws1b{word-spacing:-11.520000px;}
.ws38{word-spacing:-11.424000px;}
.wsa4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.752000px;}
.wsbf{word-spacing:-10.557000px;}
.wsbc{word-spacing:-10.506000px;}
.ws50{word-spacing:-10.500000px;}
.wse1{word-spacing:-10.455000px;}
.wsbb{word-spacing:-10.149000px;}
.ws1{word-spacing:-9.996000px;}
.ws8{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.wsa6{word-spacing:-7.500000px;}
.ws68{word-spacing:-6.375000px;}
.wsc{word-spacing:-2.400000px;}
.ws9{word-spacing:-1.890000px;}
.wsc2{word-spacing:-1.740000px;}
.ws72{word-spacing:-1.560000px;}
.wsd{word-spacing:-1.500000px;}
.wsc1{word-spacing:-1.440000px;}
.wsea{word-spacing:-1.428000px;}
.ws98{word-spacing:-1.380000px;}
.ws96{word-spacing:-1.320000px;}
.wsc7{word-spacing:-1.275000px;}
.ws97{word-spacing:-1.260000px;}
.wsf6{word-spacing:-1.224000px;}
.ws85{word-spacing:-1.200000px;}
.wsf4{word-spacing:-1.173000px;}
.ws27{word-spacing:-1.140000px;}
.ws111{word-spacing:-1.122000px;}
.ws34{word-spacing:-1.080000px;}
.wscf{word-spacing:-1.071000px;}
.ws48{word-spacing:-1.020000px;}
.wscd{word-spacing:-0.969000px;}
.ws24{word-spacing:-0.960000px;}
.ws13{word-spacing:-0.900000px;}
.wsc9{word-spacing:-0.867000px;}
.ws16{word-spacing:-0.840000px;}
.wsd7{word-spacing:-0.816000px;}
.ws2d{word-spacing:-0.780000px;}
.wsd0{word-spacing:-0.765000px;}
.ws18{word-spacing:-0.720000px;}
.wsd1{word-spacing:-0.714000px;}
.ws10b{word-spacing:-0.663000px;}
.ws5d{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.612000px;}
.ws1d{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.570000px;}
.wsa7{word-spacing:-0.540000px;}
.ws10c{word-spacing:-0.510000px;}
.ws4b{word-spacing:-0.480000px;}
.wse2{word-spacing:-0.459000px;}
.ws30{word-spacing:-0.420000px;}
.wseb{word-spacing:-0.408000px;}
.ws2c{word-spacing:-0.360000px;}
.wse5{word-spacing:-0.357000px;}
.wse4{word-spacing:-0.306000px;}
.ws10{word-spacing:-0.300000px;}
.wscc{word-spacing:-0.264000px;}
.wsd3{word-spacing:-0.255000px;}
.ws11{word-spacing:-0.240000px;}
.ws113{word-spacing:-0.204000px;}
.ws71{word-spacing:-0.180000px;}
.wsfc{word-spacing:-0.153000px;}
.ws26{word-spacing:-0.120000px;}
.wsf9{word-spacing:-0.102000px;}
.ws15{word-spacing:-0.060000px;}
.wsd6{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.wsa{word-spacing:0.000000px;}
.wsf5{word-spacing:0.051000px;}
.ws28{word-spacing:0.060000px;}
.wsa0{word-spacing:0.102000px;}
.ws62{word-spacing:0.120000px;}
.ws106{word-spacing:0.153000px;}
.ws3a{word-spacing:0.180000px;}
.ws66{word-spacing:0.204000px;}
.wse{word-spacing:0.240000px;}
.wsc5{word-spacing:0.255000px;}
.ws47{word-spacing:0.300000px;}
.ws7d{word-spacing:0.306000px;}
.wsc6{word-spacing:0.357000px;}
.wsf{word-spacing:0.360000px;}
.wsf0{word-spacing:0.408000px;}
.ws69{word-spacing:0.420000px;}
.ws104{word-spacing:0.459000px;}
.ws31{word-spacing:0.480000px;}
.wsec{word-spacing:0.510000px;}
.ws84{word-spacing:0.540000px;}
.ws108{word-spacing:0.561000px;}
.ws5f{word-spacing:0.600000px;}
.wsca{word-spacing:0.612000px;}
.ws17{word-spacing:0.660000px;}
.ws7e{word-spacing:0.663000px;}
.ws114{word-spacing:0.714000px;}
.ws45{word-spacing:0.720000px;}
.wsfd{word-spacing:0.765000px;}
.ws2a{word-spacing:0.780000px;}
.wse3{word-spacing:0.816000px;}
.ws42{word-spacing:0.840000px;}
.wsd4{word-spacing:0.867000px;}
.wsf1{word-spacing:0.918000px;}
.ws4e{word-spacing:0.960000px;}
.ws118{word-spacing:0.969000px;}
.wsa5{word-spacing:1.020000px;}
.wsd9{word-spacing:1.071000px;}
.wsa8{word-spacing:1.080000px;}
.ws116{word-spacing:1.122000px;}
.ws8c{word-spacing:1.140000px;}
.wsce{word-spacing:1.173000px;}
.ws14{word-spacing:1.200000px;}
.ws8a{word-spacing:1.260000px;}
.ws6f{word-spacing:1.275000px;}
.ws8d{word-spacing:1.320000px;}
.wsd2{word-spacing:1.326000px;}
.wsd5{word-spacing:1.377000px;}
.ws115{word-spacing:1.428000px;}
.wse9{word-spacing:1.479000px;}
.ws12{word-spacing:1.500000px;}
.ws6c{word-spacing:1.530000px;}
.ws2b{word-spacing:1.560000px;}
.wsfa{word-spacing:1.581000px;}
.ws70{word-spacing:1.620000px;}
.wsfb{word-spacing:1.632000px;}
.ws44{word-spacing:1.680000px;}
.ws10a{word-spacing:1.734000px;}
.ws87{word-spacing:1.740000px;}
.ws23{word-spacing:1.800000px;}
.ws9f{word-spacing:1.836000px;}
.ws88{word-spacing:1.860000px;}
.ws29{word-spacing:1.920000px;}
.wsac{word-spacing:1.938000px;}
.ws20{word-spacing:1.980000px;}
.wse6{word-spacing:1.989000px;}
.ws4a{word-spacing:2.040000px;}
.ws2f{word-spacing:2.100000px;}
.ws43{word-spacing:2.160000px;}
.ws9a{word-spacing:2.220000px;}
.ws109{word-spacing:2.244000px;}
.ws3e{word-spacing:2.280000px;}
.wsaf{word-spacing:2.295000px;}
.ws61{word-spacing:2.340000px;}
.wsf3{word-spacing:2.346000px;}
.ws67{word-spacing:2.397000px;}
.ws1f{word-spacing:2.400000px;}
.wse7{word-spacing:2.448000px;}
.ws25{word-spacing:2.460000px;}
.ws8f{word-spacing:2.499000px;}
.ws65{word-spacing:2.520000px;}
.ws10d{word-spacing:2.550000px;}
.ws8b{word-spacing:2.580000px;}
.wscb{word-spacing:2.652000px;}
.ws49{word-spacing:2.700000px;}
.ws40{word-spacing:2.760000px;}
.wsb4{word-spacing:2.805000px;}
.ws4c{word-spacing:2.820000px;}
.ws103{word-spacing:2.856000px;}
.ws7f{word-spacing:2.907000px;}
.ws2e{word-spacing:2.940000px;}
.ws9b{word-spacing:2.958000px;}
.ws3c{word-spacing:3.000000px;}
.wsed{word-spacing:3.009000px;}
.ws39{word-spacing:3.060000px;}
.wsa9{word-spacing:3.120000px;}
.ws46{word-spacing:3.180000px;}
.wse8{word-spacing:3.213000px;}
.ws73{word-spacing:3.240000px;}
.ws33{word-spacing:3.300000px;}
.wsd8{word-spacing:3.315000px;}
.ws60{word-spacing:3.360000px;}
.wsf7{word-spacing:3.417000px;}
.ws63{word-spacing:3.420000px;}
.ws3b{word-spacing:3.480000px;}
.ws107{word-spacing:3.519000px;}
.ws8e{word-spacing:3.540000px;}
.wsee{word-spacing:3.570000px;}
.ws89{word-spacing:3.600000px;}
.ws64{word-spacing:3.720000px;}
.wsef{word-spacing:3.723000px;}
.ws4d{word-spacing:3.780000px;}
.wsc8{word-spacing:3.825000px;}
.ws32{word-spacing:3.840000px;}
.ws92{word-spacing:3.927000px;}
.ws6a{word-spacing:3.960000px;}
.ws21{word-spacing:4.080000px;}
.wsaa{word-spacing:4.140000px;}
.ws4f{word-spacing:4.200000px;}
.ws10e{word-spacing:4.233000px;}
.ws3f{word-spacing:4.260000px;}
.wsc4{word-spacing:4.320000px;}
.ws99{word-spacing:4.440000px;}
.ws6b{word-spacing:4.500000px;}
.wsb1{word-spacing:4.743000px;}
.ws110{word-spacing:4.794000px;}
.ws86{word-spacing:4.800000px;}
.ws112{word-spacing:5.100000px;}
.ws22{word-spacing:5.160000px;}
.wsf8{word-spacing:5.202000px;}
.ws9c{word-spacing:5.304000px;}
.ws5e{word-spacing:5.340000px;}
.wsfe{word-spacing:5.355000px;}
.ws7c{word-spacing:5.406000px;}
.ws77{word-spacing:5.457000px;}
.ws105{word-spacing:5.559000px;}
.wsad{word-spacing:5.610000px;}
.ws91{word-spacing:5.661000px;}
.wsc3{word-spacing:5.700000px;}
.ws94{word-spacing:5.814000px;}
.ws78{word-spacing:5.967000px;}
.ws7b{word-spacing:6.069000px;}
.ws83{word-spacing:6.120000px;}
.ws9e{word-spacing:6.324000px;}
.wsb0{word-spacing:6.426000px;}
.ws9d{word-spacing:6.681000px;}
.ws7a{word-spacing:6.732000px;}
.ws82{word-spacing:6.780000px;}
.ws90{word-spacing:6.936000px;}
.wsf2{word-spacing:7.293000px;}
.wsab{word-spacing:7.500000px;}
.ws79{word-spacing:7.548000px;}
.ws10f{word-spacing:7.701000px;}
.ws3d{word-spacing:7.800000px;}
.ws95{word-spacing:8.109000px;}
.wsae{word-spacing:8.364000px;}
.wsc0{word-spacing:8.640000px;}
.ws80{word-spacing:9.231000px;}
.ws6e{word-spacing:9.435000px;}
.ws76{word-spacing:9.741000px;}
.ws6d{word-spacing:9.996000px;}
.wsb3{word-spacing:10.863000px;}
.ws75{word-spacing:11.220000px;}
.ws74{word-spacing:14.025000px;}
.wsb2{word-spacing:15.555000px;}
.wsb5{word-spacing:16.371000px;}
.ws93{word-spacing:17.136000px;}
.ws1e{word-spacing:21.456000px;}
.ws5a{word-spacing:63.653100px;}
.ws1a{word-spacing:72.267000px;}
.ws58{word-spacing:146.732094px;}
.ws53{word-spacing:153.662994px;}
.ws54{word-spacing:166.361994px;}
.ws5b{word-spacing:174.929994px;}
.ws59{word-spacing:183.140994px;}
.ws55{word-spacing:211.242000px;}
.ws5c{word-spacing:217.412994px;}
.ws56{word-spacing:225.980994px;}
.ws57{word-spacing:260.814000px;}
._c{margin-left:-2959.377061px;}
._16{margin-left:-96.900000px;}
._8{margin-left:-72.675000px;}
._15{margin-left:-22.020013px;}
._3b{margin-left:-20.451000px;}
._3a{margin-left:-19.380000px;}
._39{margin-left:-18.309000px;}
._5{margin-left:-16.584000px;}
._30{margin-left:-14.835935px;}
._3d{margin-left:-13.566000px;}
._11{margin-left:-12.474000px;}
._31{margin-left:-11.265000px;}
._13{margin-left:-9.840000px;}
._14{margin-left:-8.688023px;}
._2e{margin-left:-5.886000px;}
._1{margin-left:-4.622700px;}
._2{margin-left:-2.760000px;}
._0{margin-left:-1.632000px;}
._3{width:1.194000px;}
._12{width:2.310000px;}
._b{width:3.360000px;}
._2f{width:4.499993px;}
._a{width:5.754000px;}
._d{width:7.728000px;}
._36{width:9.945000px;}
._33{width:11.020500px;}
._1c{width:12.717007px;}
._f{width:13.816800px;}
._17{width:15.453900px;}
._6{width:18.369000px;}
._10{width:20.526000px;}
._38{width:21.786000px;}
._32{width:23.296799px;}
._3e{width:24.321935px;}
._3c{width:25.428000px;}
._34{width:26.901000px;}
._35{width:28.866000px;}
._37{width:30.090000px;}
._2d{width:33.000000px;}
._e{width:36.000000px;}
._4{width:39.292401px;}
._19{width:49.827000px;}
._2a{width:51.000000px;}
._7{width:54.621000px;}
._18{width:65.943000px;}
._21{width:69.206989px;}
._23{width:72.857993px;}
._1e{width:76.704000px;}
._1f{width:95.063989px;}
._29{width:98.736000px;}
._24{width:100.368000px;}
._28{width:120.563989px;}
._20{width:134.079000px;}
._2c{width:146.063989px;}
._1a{width:165.801000px;}
._1b{width:172.461000px;}
._2b{width:192.678000px;}
._1d{width:200.634000px;}
._25{width:201.801900px;}
._27{width:223.635000px;}
._22{width:234.855000px;}
._26{width:238.062900px;}
._9{width:1723.442919px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y117{bottom:0.045273px;}
.y114{bottom:10.545273px;}
.y119{bottom:10.548157px;}
.y116{bottom:19.239441px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y181{bottom:112.696806px;}
.y26{bottom:112.938300px;}
.y139{bottom:113.425800px;}
.y140{bottom:113.464050px;}
.y164{bottom:114.115795px;}
.yc1{bottom:114.735168px;}
.y15c{bottom:114.735260px;}
.y8f{bottom:114.735306px;}
.yd9{bottom:114.874947px;}
.y1f8{bottom:116.614823px;}
.y27b{bottom:116.997307px;}
.y43{bottom:121.267365px;}
.y111{bottom:123.507305px;}
.y5d{bottom:123.517359px;}
.y180{bottom:127.690806px;}
.y1b6{bottom:128.051678px;}
.y138{bottom:128.419800px;}
.y13f{bottom:128.458050px;}
.y163{bottom:129.139795px;}
.y1f7{bottom:131.608823px;}
.y27a{bottom:131.991307px;}
.y239{bottom:132.004073px;}
.y25{bottom:133.032303px;}
.yc0{bottom:133.485168px;}
.y15b{bottom:133.485260px;}
.y8e{bottom:133.485306px;}
.y16e{bottom:133.624786px;}
.yd8{bottom:133.624947px;}
.y42{bottom:140.017365px;}
.y110{bottom:142.257305px;}
.y5c{bottom:142.267359px;}
.y17f{bottom:142.684806px;}
.y1b5{bottom:143.045678px;}
.y137{bottom:143.413800px;}
.y13e{bottom:143.452050px;}
.y162{bottom:144.133795px;}
.y1f6{bottom:146.602823px;}
.y279{bottom:146.985307px;}
.y238{bottom:146.998073px;}
.y24{bottom:150.491553px;}
.ybf{bottom:152.235168px;}
.y15a{bottom:152.235260px;}
.y8d{bottom:152.235306px;}
.y16d{bottom:152.374786px;}
.yd7{bottom:152.374947px;}
.y17e{bottom:157.678806px;}
.y1b4{bottom:158.039678px;}
.y136{bottom:158.407800px;}
.y13d{bottom:158.446050px;}
.y41{bottom:158.767365px;}
.y161{bottom:159.127795px;}
.y10f{bottom:161.007305px;}
.y5b{bottom:161.017359px;}
.y1f5{bottom:161.596823px;}
.y278{bottom:161.979307px;}
.y237{bottom:161.992073px;}
.y23{bottom:165.485553px;}
.ybe{bottom:170.985168px;}
.y159{bottom:170.985260px;}
.y8c{bottom:170.985306px;}
.y16c{bottom:171.124786px;}
.yd6{bottom:171.124947px;}
.y17d{bottom:172.672806px;}
.y1b3{bottom:173.033678px;}
.y135{bottom:173.401800px;}
.y13c{bottom:173.440050px;}
.y160{bottom:174.121795px;}
.y1f4{bottom:176.590823px;}
.y277{bottom:176.973307px;}
.y236{bottom:176.986073px;}
.y40{bottom:177.517365px;}
.y10e{bottom:179.757305px;}
.y5a{bottom:179.767359px;}
.y22{bottom:185.579556px;}
.y17c{bottom:187.666806px;}
.y1b2{bottom:188.027678px;}
.y134{bottom:188.395800px;}
.y13b{bottom:188.434050px;}
.y15f{bottom:189.115795px;}
.ybd{bottom:189.735168px;}
.y158{bottom:189.735260px;}
.y8b{bottom:189.735306px;}
.y16b{bottom:189.874786px;}
.yd5{bottom:189.874947px;}
.y1f3{bottom:191.584823px;}
.y276{bottom:191.967307px;}
.y235{bottom:191.980073px;}
.y3f{bottom:196.267365px;}
.y59{bottom:198.517359px;}
.y17b{bottom:202.660806px;}
.y1b1{bottom:203.021678px;}
.y21{bottom:203.044794px;}
.y133{bottom:203.389800px;}
.y13a{bottom:203.428050px;}
.y15e{bottom:204.115795px;}
.y1f2{bottom:206.578823px;}
.y275{bottom:206.961307px;}
.y234{bottom:206.974073px;}
.ybc{bottom:208.485168px;}
.y157{bottom:208.485260px;}
.y8a{bottom:208.485306px;}
.y16a{bottom:208.624786px;}
.yd4{bottom:208.624947px;}
.y3e{bottom:215.017365px;}
.y10d{bottom:217.257294px;}
.y58{bottom:217.267359px;}
.y17a{bottom:217.654806px;}
.y1b0{bottom:218.015678px;}
.y20{bottom:218.038794px;}
.y15d{bottom:219.109795px;}
.y1f1{bottom:221.572823px;}
.y274{bottom:221.955307px;}
.y233{bottom:221.968073px;}
.ybb{bottom:227.235168px;}
.y156{bottom:227.235260px;}
.y89{bottom:227.235306px;}
.y169{bottom:227.374786px;}
.yd3{bottom:227.374947px;}
.y179{bottom:232.648806px;}
.y1af{bottom:233.009678px;}
.y1f{bottom:233.032794px;}
.y3d{bottom:233.767365px;}
.y57{bottom:236.017359px;}
.y1f0{bottom:236.566823px;}
.y273{bottom:236.949307px;}
.y232{bottom:236.962073px;}
.yba{bottom:245.985168px;}
.y155{bottom:245.985260px;}
.y88{bottom:245.985306px;}
.y168{bottom:246.124786px;}
.yeb{bottom:246.124947px;}
.y178{bottom:247.642806px;}
.y1ae{bottom:248.003678px;}
.y1ef{bottom:251.560823px;}
.y272{bottom:251.943307px;}
.y231{bottom:251.956073px;}
.y3c{bottom:252.517365px;}
.y1e{bottom:253.126808px;}
.y56{bottom:254.767359px;}
.y177{bottom:262.636806px;}
.y1ad{bottom:262.997678px;}
.y10c{bottom:263.749789px;}
.yb9{bottom:264.735168px;}
.y154{bottom:264.735260px;}
.y87{bottom:264.735306px;}
.y167{bottom:264.874786px;}
.yea{bottom:264.874947px;}
.yd2{bottom:264.880947px;}
.y1ee{bottom:266.554823px;}
.y271{bottom:266.937307px;}
.y230{bottom:266.950073px;}
.y3b{bottom:271.267365px;}
.y55{bottom:273.517359px;}
.y176{bottom:277.630806px;}
.y1ac{bottom:277.991678px;}
.y1d{bottom:278.133910px;}
.y1ed{bottom:281.548823px;}
.y270{bottom:281.931307px;}
.y22f{bottom:281.944073px;}
.y10b{bottom:282.499789px;}
.yb8{bottom:283.485168px;}
.y153{bottom:283.485260px;}
.y86{bottom:283.485306px;}
.y166{bottom:283.624786px;}
.yd1{bottom:283.624947px;}
.y3a{bottom:290.017365px;}
.y54{bottom:292.267359px;}
.y1ab{bottom:292.985678px;}
.y1c{bottom:293.127910px;}
.y1ec{bottom:296.542823px;}
.y26f{bottom:296.925307px;}
.y22e{bottom:296.938073px;}
.y10a{bottom:301.249789px;}
.yb7{bottom:302.235168px;}
.y152{bottom:302.235260px;}
.y183{bottom:302.235306px;}
.y165{bottom:302.374786px;}
.ye9{bottom:302.374947px;}
.y1aa{bottom:307.979678px;}
.y39{bottom:308.767365px;}
.y53{bottom:311.017359px;}
.y1eb{bottom:311.536823px;}
.y26e{bottom:311.919307px;}
.y22d{bottom:311.932073px;}
.y109{bottom:319.999789px;}
.yb6{bottom:320.985168px;}
.y151{bottom:320.985260px;}
.y182{bottom:320.985306px;}
.y85{bottom:320.991306px;}
.yd0{bottom:321.124786px;}
.ye8{bottom:321.124947px;}
.y1a9{bottom:322.973678px;}
.y1b{bottom:323.944660px;}
.y1ea{bottom:326.530823px;}
.y26d{bottom:326.913307px;}
.y22c{bottom:326.926073px;}
.y38{bottom:327.517365px;}
.y52{bottom:329.767359px;}
.y1a8{bottom:337.967678px;}
.y108{bottom:338.749789px;}
.y1a{bottom:338.938660px;}
.yb5{bottom:339.735168px;}
.y150{bottom:339.735260px;}
.y84{bottom:339.735306px;}
.ycf{bottom:339.874786px;}
.ye7{bottom:339.874947px;}
.y1e9{bottom:341.524823px;}
.y26c{bottom:341.907307px;}
.y22b{bottom:341.920073px;}
.y37{bottom:346.267365px;}
.y51{bottom:348.517359px;}
.y1a7{bottom:352.961678px;}
.y1e8{bottom:356.518823px;}
.y26b{bottom:356.901307px;}
.y22a{bottom:356.914073px;}
.y107{bottom:357.499789px;}
.yb4{bottom:358.485168px;}
.y14f{bottom:358.485260px;}
.yce{bottom:358.624786px;}
.ye6{bottom:358.624947px;}
.y36{bottom:365.017365px;}
.y50{bottom:367.267359px;}
.y1a6{bottom:367.955678px;}
.y1e7{bottom:371.512823px;}
.y26a{bottom:371.895307px;}
.y229{bottom:371.908073px;}
.yb3{bottom:377.235168px;}
.y14e{bottom:377.235260px;}
.y83{bottom:377.235306px;}
.ycd{bottom:377.374786px;}
.ye5{bottom:377.374947px;}
.y1a5{bottom:382.949678px;}
.y35{bottom:383.767365px;}
.y113{bottom:385.624512px;}
.y4f{bottom:386.017359px;}
.y1e6{bottom:386.506823px;}
.y269{bottom:386.889307px;}
.y228{bottom:386.902073px;}
.y112{bottom:394.617296px;}
.yb2{bottom:395.985168px;}
.y14d{bottom:395.985260px;}
.ycc{bottom:396.124786px;}
.ye4{bottom:396.124947px;}
.y115{bottom:396.169785px;}
.y118{bottom:396.172668px;}
.y1a4{bottom:397.943678px;}
.y1e5{bottom:401.500823px;}
.y268{bottom:401.883307px;}
.y227{bottom:401.896073px;}
.y34{bottom:402.517365px;}
.y4e{bottom:404.767359px;}
.y1a3{bottom:412.937678px;}
.yb1{bottom:414.735168px;}
.y14c{bottom:414.735260px;}
.ycb{bottom:414.874786px;}
.ye3{bottom:414.874947px;}
.y1e4{bottom:416.494823px;}
.y267{bottom:416.877307px;}
.y226{bottom:416.890073px;}
.y33{bottom:421.267365px;}
.y4d{bottom:423.517359px;}
.y1a2{bottom:427.931678px;}
.y1e3{bottom:431.488823px;}
.y266{bottom:431.871307px;}
.y225{bottom:431.884073px;}
.yb0{bottom:433.485168px;}
.y14b{bottom:433.485260px;}
.y82{bottom:433.485306px;}
.yca{bottom:433.624786px;}
.ye2{bottom:433.624947px;}
.y32{bottom:440.017365px;}
.y4c{bottom:442.267359px;}
.y1a1{bottom:442.925678px;}
.y1e2{bottom:446.482823px;}
.y265{bottom:446.865307px;}
.y224{bottom:446.878073px;}
.yaf{bottom:452.235168px;}
.y14a{bottom:452.235260px;}
.y81{bottom:452.235306px;}
.yc9{bottom:452.374786px;}
.ye1{bottom:452.374947px;}
.y171{bottom:457.702933px;}
.y174{bottom:457.715683px;}
.y1a0{bottom:457.919678px;}
.y31{bottom:458.767365px;}
.y4b{bottom:461.017359px;}
.y1e1{bottom:461.476823px;}
.y264{bottom:461.859307px;}
.y223{bottom:461.872073px;}
.yae{bottom:470.985168px;}
.y149{bottom:470.985260px;}
.y80{bottom:470.985306px;}
.yc8{bottom:471.124786px;}
.ye0{bottom:471.124947px;}
.y170{bottom:472.696933px;}
.y173{bottom:472.709683px;}
.y1e0{bottom:476.470823px;}
.y263{bottom:476.853307px;}
.y222{bottom:476.866073px;}
.y30{bottom:477.517365px;}
.y4a{bottom:479.767359px;}
.y16f{bottom:487.690933px;}
.y172{bottom:487.703683px;}
.yad{bottom:489.735168px;}
.y148{bottom:489.735260px;}
.y7f{bottom:489.735306px;}
.yc7{bottom:489.874786px;}
.ydf{bottom:489.874947px;}
.y1df{bottom:491.464823px;}
.y19f{bottom:491.669678px;}
.y262{bottom:491.847307px;}
.y221{bottom:491.860073px;}
.y2f{bottom:496.267365px;}
.y11c{bottom:496.762809px;}
.y49{bottom:498.517359px;}
.y1de{bottom:506.458823px;}
.y261{bottom:506.841307px;}
.y220{bottom:506.854073px;}
.yac{bottom:508.485168px;}
.y147{bottom:508.485260px;}
.y7e{bottom:508.485306px;}
.yc6{bottom:508.624786px;}
.yde{bottom:508.624947px;}
.y11b{bottom:511.756809px;}
.y11e{bottom:511.769559px;}
.y2e{bottom:515.017365px;}
.y48{bottom:517.267359px;}
.y1dd{bottom:521.452823px;}
.y260{bottom:521.835307px;}
.y21f{bottom:521.848073px;}
.y11a{bottom:526.750809px;}
.y11d{bottom:526.763559px;}
.yab{bottom:527.235168px;}
.y146{bottom:527.235260px;}
.y7d{bottom:527.235306px;}
.yc5{bottom:527.374786px;}
.ydd{bottom:527.374947px;}
.y2d{bottom:533.767365px;}
.y47{bottom:536.017359px;}
.y1dc{bottom:536.446823px;}
.y25f{bottom:536.829307px;}
.y21e{bottom:536.842073px;}
.y145{bottom:545.985260px;}
.y7c{bottom:545.985306px;}
.yc4{bottom:546.124786px;}
.ydc{bottom:546.124947px;}
.y19e{bottom:549.934330px;}
.y1db{bottom:551.440823px;}
.y25e{bottom:551.823307px;}
.y21d{bottom:551.836073px;}
.y2c{bottom:552.517365px;}
.y46{bottom:554.767359px;}
.y144{bottom:564.735260px;}
.y7b{bottom:564.735306px;}
.yaa{bottom:564.741168px;}
.yc3{bottom:564.874786px;}
.ydb{bottom:564.874947px;}
.y19d{bottom:564.928330px;}
.y1da{bottom:566.434823px;}
.y25d{bottom:566.817307px;}
.y21c{bottom:566.830073px;}
.y19{bottom:572.461349px;}
.y45{bottom:573.517359px;}
.y19c{bottom:579.922330px;}
.y1d9{bottom:581.428823px;}
.y25c{bottom:581.811307px;}
.y21b{bottom:581.824073px;}
.ya9{bottom:583.485168px;}
.y143{bottom:583.485260px;}
.y7a{bottom:583.485306px;}
.yc2{bottom:583.624786px;}
.yda{bottom:583.624947px;}
.y2b{bottom:590.017365px;}
.y18{bottom:591.211349px;}
.y44{bottom:592.267359px;}
.y19b{bottom:594.916330px;}
.y1d8{bottom:596.422823px;}
.y25b{bottom:596.805307px;}
.y21a{bottom:596.818073px;}
.y142{bottom:602.235260px;}
.y79{bottom:602.235306px;}
.y19a{bottom:609.910330px;}
.y17{bottom:609.961349px;}
.y1d7{bottom:611.416823px;}
.y25a{bottom:611.799307px;}
.y219{bottom:611.812073px;}
.y141{bottom:620.985260px;}
.y78{bottom:620.985306px;}
.y199{bottom:624.904330px;}
.y1d6{bottom:626.410823px;}
.y259{bottom:626.793307px;}
.y218{bottom:626.806073px;}
.yef{bottom:626.882594px;}
.y16{bottom:628.711349px;}
.y77{bottom:639.735260px;}
.ya8{bottom:639.735306px;}
.y198{bottom:639.898330px;}
.y2a{bottom:641.017365px;}
.y1d5{bottom:641.404823px;}
.y258{bottom:641.787307px;}
.y217{bottom:641.800073px;}
.yee{bottom:641.876594px;}
.y15{bottom:647.461349px;}
.y197{bottom:654.892330px;}
.y1d4{bottom:656.398823px;}
.y257{bottom:656.781307px;}
.y216{bottom:656.794073px;}
.yed{bottom:656.870594px;}
.y76{bottom:658.485260px;}
.ya7{bottom:658.485306px;}
.y29{bottom:659.767365px;}
.y14{bottom:666.211349px;}
.y196{bottom:669.886330px;}
.y1d3{bottom:671.392823px;}
.y256{bottom:671.775307px;}
.y215{bottom:671.788073px;}
.y75{bottom:677.235260px;}
.ya6{bottom:677.235306px;}
.y195{bottom:684.880330px;}
.y13{bottom:684.961349px;}
.y106{bottom:685.083024px;}
.y1d2{bottom:686.386823px;}
.y255{bottom:686.769307px;}
.y214{bottom:686.782073px;}
.y74{bottom:695.985260px;}
.ya5{bottom:695.985306px;}
.y194{bottom:699.874330px;}
.y105{bottom:700.077024px;}
.y1d1{bottom:701.380823px;}
.y254{bottom:701.763307px;}
.y213{bottom:701.776073px;}
.y12{bottom:703.711349px;}
.y73{bottom:714.735260px;}
.ya4{bottom:714.735306px;}
.y193{bottom:714.868330px;}
.y1d0{bottom:716.374823px;}
.y253{bottom:716.757307px;}
.y212{bottom:716.770073px;}
.y104{bottom:718.870524px;}
.y11{bottom:722.461395px;}
.y1cf{bottom:731.368823px;}
.y252{bottom:731.751307px;}
.y211{bottom:731.764073px;}
.y72{bottom:733.485260px;}
.ya3{bottom:733.485306px;}
.y103{bottom:733.864524px;}
.y10{bottom:741.211395px;}
.y1ce{bottom:746.362823px;}
.y251{bottom:746.745307px;}
.y210{bottom:746.758073px;}
.y192{bottom:748.579330px;}
.y71{bottom:752.235260px;}
.ya2{bottom:752.235306px;}
.y102{bottom:752.581524px;}
.yf{bottom:759.961395px;}
.y1cd{bottom:761.356823px;}
.y250{bottom:761.739307px;}
.y20f{bottom:761.752073px;}
.y101{bottom:767.575524px;}
.y70{bottom:770.985260px;}
.ya1{bottom:770.985306px;}
.y1cc{bottom:776.350823px;}
.y24f{bottom:776.733307px;}
.y20e{bottom:776.746073px;}
.ye{bottom:778.711395px;}
.y191{bottom:782.329376px;}
.y100{bottom:786.292524px;}
.y6f{bottom:789.735260px;}
.ya0{bottom:789.735306px;}
.y1cb{bottom:791.344823px;}
.y24e{bottom:791.727307px;}
.y20d{bottom:791.740073px;}
.yd{bottom:797.461395px;}
.yff{bottom:805.009524px;}
.y1ca{bottom:806.338823px;}
.y24d{bottom:806.721307px;}
.y20c{bottom:806.734073px;}
.y6e{bottom:808.485260px;}
.y9f{bottom:808.485306px;}
.yc{bottom:816.211395px;}
.y190{bottom:819.914733px;}
.yfe{bottom:820.003524px;}
.y1c9{bottom:821.332823px;}
.y24c{bottom:821.715307px;}
.y20b{bottom:821.728073px;}
.y6d{bottom:827.235260px;}
.y9e{bottom:827.235306px;}
.y18f{bottom:834.908733px;}
.yb{bottom:834.961395px;}
.y1c8{bottom:836.326823px;}
.y24b{bottom:836.709307px;}
.y20a{bottom:836.722073px;}
.yfd{bottom:838.720524px;}
.y12b{bottom:843.783325px;}
.y6c{bottom:845.985260px;}
.y9d{bottom:845.985306px;}
.y175{bottom:845.991260px;}
.y1c7{bottom:851.320823px;}
.y24a{bottom:851.703307px;}
.y209{bottom:851.716073px;}
.yfc{bottom:853.714524px;}
.y12a{bottom:862.533325px;}
.y6b{bottom:864.735260px;}
.y9c{bottom:864.735306px;}
.y1c6{bottom:866.314823px;}
.y249{bottom:866.697307px;}
.y208{bottom:866.710073px;}
.y18e{bottom:868.619733px;}
.yfb{bottom:872.431524px;}
.ya{bottom:879.144153px;}
.y129{bottom:881.283325px;}
.y1c5{bottom:881.308823px;}
.y248{bottom:881.691307px;}
.y207{bottom:881.704073px;}
.y6a{bottom:883.485260px;}
.y9b{bottom:883.485306px;}
.y18d{bottom:883.613733px;}
.yfa{bottom:887.425524px;}
.y9{bottom:894.138153px;}
.y1c4{bottom:896.302823px;}
.y247{bottom:896.685307px;}
.y206{bottom:896.698073px;}
.y18c{bottom:898.607733px;}
.y128{bottom:900.033325px;}
.y69{bottom:902.235260px;}
.y9a{bottom:902.235306px;}
.yf9{bottom:906.142524px;}
.y1c3{bottom:911.296823px;}
.y246{bottom:911.679307px;}
.y205{bottom:911.692073px;}
.y18b{bottom:913.601733px;}
.y127{bottom:918.783325px;}
.y68{bottom:920.985260px;}
.y99{bottom:920.985306px;}
.yf8{bottom:921.136524px;}
.y1c2{bottom:926.290823px;}
.y245{bottom:926.673307px;}
.y204{bottom:926.686073px;}
.y18a{bottom:928.595733px;}
.y8{bottom:936.738190px;}
.y126{bottom:937.533325px;}
.y67{bottom:939.735260px;}
.y98{bottom:939.735306px;}
.y132{bottom:939.741260px;}
.yf7{bottom:939.853524px;}
.y1c1{bottom:941.284823px;}
.y244{bottom:941.667307px;}
.y203{bottom:941.680073px;}
.y189{bottom:943.589733px;}
.yf6{bottom:954.847524px;}
.y1c0{bottom:956.278823px;}
.y125{bottom:956.283325px;}
.y243{bottom:956.661307px;}
.y202{bottom:956.674073px;}
.y66{bottom:958.485260px;}
.y97{bottom:958.485306px;}
.y188{bottom:958.583733px;}
.y1bf{bottom:971.272823px;}
.y284{bottom:971.323823px;}
.y242{bottom:971.655307px;}
.y201{bottom:971.668073px;}
.yf5{bottom:973.564524px;}
.y187{bottom:973.577733px;}
.y124{bottom:975.033325px;}
.y65{bottom:977.235260px;}
.y96{bottom:977.235306px;}
.y7{bottom:981.424622px;}
.y1be{bottom:986.266823px;}
.y283{bottom:986.317823px;}
.y241{bottom:986.649307px;}
.y200{bottom:986.662073px;}
.yf4{bottom:988.558524px;}
.y186{bottom:988.571733px;}
.y123{bottom:993.783325px;}
.y64{bottom:995.985260px;}
.y95{bottom:995.985306px;}
.y131{bottom:995.988316px;}
.y1bd{bottom:1001.260823px;}
.y282{bottom:1001.311823px;}
.y240{bottom:1001.643307px;}
.y1ff{bottom:1001.656073px;}
.yf3{bottom:1007.275524px;}
.y6{bottom:1008.424622px;}
.y122{bottom:1012.533325px;}
.y63{bottom:1014.735260px;}
.y94{bottom:1014.735306px;}
.y130{bottom:1014.738316px;}
.y1bc{bottom:1016.254823px;}
.y281{bottom:1016.305823px;}
.y23f{bottom:1016.637307px;}
.y1fe{bottom:1016.650073px;}
.y185{bottom:1022.282733px;}
.y1bb{bottom:1031.248823px;}
.y121{bottom:1031.283325px;}
.y280{bottom:1031.299823px;}
.y23e{bottom:1031.631307px;}
.y1fd{bottom:1031.644073px;}
.y62{bottom:1033.485260px;}
.y93{bottom:1033.485306px;}
.y12f{bottom:1033.488316px;}
.yf2{bottom:1034.624274px;}
.y184{bottom:1037.276733px;}
.y1ba{bottom:1046.242823px;}
.y27f{bottom:1046.293823px;}
.y23d{bottom:1046.625307px;}
.y1fc{bottom:1046.638073px;}
.yf1{bottom:1049.618274px;}
.y120{bottom:1050.033325px;}
.y61{bottom:1052.235260px;}
.y92{bottom:1052.235306px;}
.y12e{bottom:1052.238316px;}
.y1b9{bottom:1061.236823px;}
.y27e{bottom:1061.287823px;}
.y23c{bottom:1061.619307px;}
.y1fb{bottom:1061.632073px;}
.yf0{bottom:1064.612274px;}
.y60{bottom:1070.985260px;}
.y91{bottom:1070.985306px;}
.y12d{bottom:1070.988316px;}
.y5{bottom:1076.132080px;}
.y1b8{bottom:1076.230823px;}
.y27d{bottom:1076.281823px;}
.y23b{bottom:1076.613307px;}
.y1fa{bottom:1076.626073px;}
.y11f{bottom:1087.533325px;}
.y28{bottom:1089.547394px;}
.y5f{bottom:1089.735260px;}
.y90{bottom:1089.735306px;}
.y12c{bottom:1089.738316px;}
.yec{bottom:1090.102844px;}
.y1b7{bottom:1091.224823px;}
.y27c{bottom:1091.275823px;}
.y23a{bottom:1091.607307px;}
.y1f9{bottom:1091.620073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y27{bottom:1127.482361px;}
.y5e{bottom:1127.482544px;}
.h14{height:29.250000px;}
.hc{height:33.129599px;}
.h2{height:33.840000px;}
.h15{height:40.030003px;}
.h17{height:40.570138px;}
.h16{height:42.610648px;}
.h4{height:44.676000px;}
.hb{height:47.328000px;}
.h13{height:52.173000px;}
.hd{height:53.160000px;}
.h11{height:53.481379px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h9{height:55.680000px;}
.h10{height:59.004000px;}
.h8{height:59.340000px;}
.ha{height:61.380000px;}
.hf{height:61.380183px;}
.h18{height:61.380641px;}
.h7{height:64.866000px;}
.he{height:71.208000px;}
.h6{height:85.056000px;}
.h12{height:107.304000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:142.725002px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:63.032106px;}
.x3{left:76.535402px;}
.x6{left:78.746400px;}
.x11{left:81.038265px;}
.x4{left:85.181849px;}
.xa{left:93.545402px;}
.x5{left:97.796100px;}
.x1d{left:102.048152px;}
.xb{left:105.971402px;}
.x1b{left:117.275396px;}
.xd{left:174.671997px;}
.x1a{left:180.878700px;}
.x15{left:183.675704px;}
.x16{left:272.951202px;}
.x12{left:364.458013px;}
.x18{left:416.210402px;}
.x13{left:452.484011px;}
.x7{left:459.215395px;}
.x14{left:461.485511px;}
.x8{left:476.210400px;}
.x1c{left:484.725290px;}
.xc{left:488.648540px;}
.xe{left:550.019247px;}
.xf{left:643.079269px;}
.x1{left:728.220612px;}
.x10{left:739.524765px;}
.x2{left:755.489868px;}
.x17{left:792.153442px;}
.x9{left:798.209564px;}
@media print{
.v3{vertical-align:-18.133382pt;}
.v2{vertical-align:-13.333496pt;}
.v7{vertical-align:-11.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.333333pt;}
.v5{vertical-align:18.090471pt;}
.v1{vertical-align:21.333333pt;}
.v6{vertical-align:53.333333pt;}
.ls7b{letter-spacing:-3.413333pt;}
.ls98{letter-spacing:-2.986667pt;}
.ls97{letter-spacing:-2.880000pt;}
.lsbe{letter-spacing:-2.040000pt;}
.ls9c{letter-spacing:-1.949333pt;}
.ls34{letter-spacing:-1.920000pt;}
.ls4d{letter-spacing:-1.066667pt;}
.ls4c{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.373333pt;}
.lsbd{letter-spacing:-0.362667pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9a{letter-spacing:-0.317333pt;}
.lsbb{letter-spacing:-0.272000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.lscf{letter-spacing:-0.226667pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls9b{letter-spacing:-0.181333pt;}
.ls21{letter-spacing:-0.160000pt;}
.lsbc{letter-spacing:-0.136000pt;}
.ls35{letter-spacing:-0.106667pt;}
.ls69{letter-spacing:-0.090667pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls99{letter-spacing:-0.045333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.000018pt;}
.ls47{letter-spacing:0.000033pt;}
.lsb7{letter-spacing:0.022667pt;}
.ls8e{letter-spacing:0.045333pt;}
.ls23{letter-spacing:0.053333pt;}
.lsbf{letter-spacing:0.068000pt;}
.ls50{letter-spacing:0.080000pt;}
.ls90{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.106667pt;}
.ls8b{letter-spacing:0.136000pt;}
.ls8a{letter-spacing:0.158667pt;}
.ls8{letter-spacing:0.158926pt;}
.ls17{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.165295pt;}
.ls85{letter-spacing:0.181333pt;}
.ls5f{letter-spacing:0.186600pt;}
.ls3a{letter-spacing:0.186641pt;}
.ls2c{letter-spacing:0.186667pt;}
.ls38{letter-spacing:0.186686pt;}
.ls6b{letter-spacing:0.188151pt;}
.ls6d{letter-spacing:0.188228pt;}
.ls53{letter-spacing:0.202651pt;}
.lscd{letter-spacing:0.204000pt;}
.ls54{letter-spacing:0.213298pt;}
.ls1{letter-spacing:0.213333pt;}
.ls56{letter-spacing:0.213863pt;}
.lsc{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.226667pt;}
.ls8d{letter-spacing:0.234667pt;}
.ls1a{letter-spacing:0.239992pt;}
.ls30{letter-spacing:0.240000pt;}
.ls91{letter-spacing:0.256000pt;}
.ls37{letter-spacing:0.266122pt;}
.ls39{letter-spacing:0.266126pt;}
.ls3{letter-spacing:0.266667pt;}
.ls6c{letter-spacing:0.271009pt;}
.ls9f{letter-spacing:0.272000pt;}
.ls4f{letter-spacing:0.277318pt;}
.ls5e{letter-spacing:0.283754pt;}
.ls6a{letter-spacing:0.288098pt;}
.ls55{letter-spacing:0.290674pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls2a{letter-spacing:0.308795pt;}
.ls28{letter-spacing:0.309326pt;}
.ls86{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.346667pt;}
.ls89{letter-spacing:0.362667pt;}
.ls18{letter-spacing:0.373333pt;}
.ls75{letter-spacing:0.381750pt;}
.ls73{letter-spacing:0.381836pt;}
.ls95{letter-spacing:0.385333pt;}
.ls1d{letter-spacing:0.400000pt;}
.ls87{letter-spacing:0.408000pt;}
.ls6{letter-spacing:0.426667pt;}
.lsc2{letter-spacing:0.430667pt;}
.ls6f{letter-spacing:0.431966pt;}
.ls71{letter-spacing:0.432531pt;}
.ls8f{letter-spacing:0.453333pt;}
.ls29{letter-spacing:0.456018pt;}
.ls66{letter-spacing:0.466634pt;}
.ls68{letter-spacing:0.466711pt;}
.ls63{letter-spacing:0.479406pt;}
.ls61{letter-spacing:0.479492pt;}
.ls2f{letter-spacing:0.480000pt;}
.lsc0{letter-spacing:0.498667pt;}
.ls27{letter-spacing:0.531180pt;}
.ls5{letter-spacing:0.533333pt;}
.lsa3{letter-spacing:0.544000pt;}
.ls74{letter-spacing:0.556914pt;}
.ls2e{letter-spacing:0.560000pt;}
.lsc6{letter-spacing:0.566667pt;}
.ls19{letter-spacing:0.586667pt;}
.ls92{letter-spacing:0.589333pt;}
.ls70{letter-spacing:0.595267pt;}
.ls6e{letter-spacing:0.598892pt;}
.lscc{letter-spacing:0.607467pt;}
.lsc7{letter-spacing:0.630110pt;}
.ls8c{letter-spacing:0.634667pt;}
.ls15{letter-spacing:0.640000pt;}
.lsc5{letter-spacing:0.657333pt;}
.ls72{letter-spacing:0.660230pt;}
.ls24{letter-spacing:0.666667pt;}
.ls62{letter-spacing:0.675723pt;}
.lsa2{letter-spacing:0.680000pt;}
.ls44{letter-spacing:0.688000pt;}
.ls67{letter-spacing:0.692272pt;}
.ls13{letter-spacing:0.693333pt;}
.ls65{letter-spacing:0.701862pt;}
.lsd1{letter-spacing:0.702667pt;}
.ls60{letter-spacing:0.714720pt;}
.ls46{letter-spacing:0.719993pt;}
.ls31{letter-spacing:0.720000pt;}
.lsaa{letter-spacing:0.725333pt;}
.lsf{letter-spacing:0.746667pt;}
.lsa4{letter-spacing:0.770667pt;}
.ls2d{letter-spacing:0.773333pt;}
.ls5c{letter-spacing:0.787598pt;}
.ls5a{letter-spacing:0.787674pt;}
.ls58{letter-spacing:0.787760pt;}
.lsd{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.816000pt;}
.ls36{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.853333pt;}
.ls93{letter-spacing:0.861333pt;}
.ls16{letter-spacing:0.906667pt;}
.lsb4{letter-spacing:0.952000pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls51{letter-spacing:0.986667pt;}
.ls88{letter-spacing:0.997333pt;}
.ls25{letter-spacing:1.013333pt;}
.ls9e{letter-spacing:1.020000pt;}
.lsb1{letter-spacing:1.042667pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls14{letter-spacing:1.071984pt;}
.lsba{letter-spacing:1.074379pt;}
.lsa7{letter-spacing:1.088000pt;}
.ls57{letter-spacing:1.114211pt;}
.ls10{letter-spacing:1.120000pt;}
.ls59{letter-spacing:1.130078pt;}
.ls5d{letter-spacing:1.130241pt;}
.ls12{letter-spacing:1.130667pt;}
.ls96{letter-spacing:1.137846pt;}
.ls40{letter-spacing:1.146667pt;}
.ls2b{letter-spacing:1.173333pt;}
.lsaf{letter-spacing:1.174124pt;}
.lsb0{letter-spacing:1.178667pt;}
.ls64{letter-spacing:1.200000pt;}
.lsa6{letter-spacing:1.224000pt;}
.ls3f{letter-spacing:1.226667pt;}
.lsa8{letter-spacing:1.246667pt;}
.ls5b{letter-spacing:1.253984pt;}
.lsb5{letter-spacing:1.269333pt;}
.ls43{letter-spacing:1.280000pt;}
.lsb9{letter-spacing:1.314667pt;}
.ls11{letter-spacing:1.333333pt;}
.ls3e{letter-spacing:1.386667pt;}
.lsc8{letter-spacing:1.387200pt;}
.lsb8{letter-spacing:1.405333pt;}
.lsab{letter-spacing:1.409867pt;}
.ls80{letter-spacing:1.413333pt;}
.lsce{letter-spacing:1.418933pt;}
.ls3b{letter-spacing:1.440000pt;}
.lsc4{letter-spacing:1.450658pt;}
.lsca{letter-spacing:1.482400pt;}
.ls4e{letter-spacing:1.493333pt;}
.lsac{letter-spacing:1.496000pt;}
.ls3c{letter-spacing:1.546667pt;}
.ls41{letter-spacing:1.573333pt;}
.lsb3{letter-spacing:1.595733pt;}
.ls3d{letter-spacing:1.600000pt;}
.lsad{letter-spacing:1.609333pt;}
.lsae{letter-spacing:1.632000pt;}
.ls7f{letter-spacing:1.653333pt;}
.ls82{letter-spacing:1.706667pt;}
.lsb6{letter-spacing:1.722667pt;}
.ls42{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.813333pt;}
.ls78{letter-spacing:1.866667pt;}
.lsc9{letter-spacing:1.881333pt;}
.ls83{letter-spacing:1.893333pt;}
.ls9d{letter-spacing:1.913067pt;}
.ls84{letter-spacing:1.920000pt;}
.lsa1{letter-spacing:1.922110pt;}
.lsa0{letter-spacing:1.958400pt;}
.ls7a{letter-spacing:2.080000pt;}
.lsd0{letter-spacing:2.130667pt;}
.ls81{letter-spacing:2.133333pt;}
.lscb{letter-spacing:2.139733pt;}
.lsb2{letter-spacing:2.266667pt;}
.ls79{letter-spacing:2.506667pt;}
.lsa9{letter-spacing:2.584000pt;}
.ls7e{letter-spacing:2.613333pt;}
.ls7c{letter-spacing:2.666667pt;}
.ls7d{letter-spacing:2.720000pt;}
.ls94{letter-spacing:2.747200pt;}
.lsc1{letter-spacing:2.792533pt;}
.ls76{letter-spacing:2.842661pt;}
.ls77{letter-spacing:3.040000pt;}
.ls0{letter-spacing:3.546667pt;}
.lsa5{letter-spacing:3.749067pt;}
.lsc3{letter-spacing:4.365590pt;}
.ls4b{letter-spacing:11.842960pt;}
.ls4a{letter-spacing:12.323079pt;}
.ls49{letter-spacing:14.777026pt;}
.ls48{letter-spacing:214.263054pt;}
.wsba{word-spacing:-14.773333pt;}
.wsb7{word-spacing:-14.720000pt;}
.wsb9{word-spacing:-14.613333pt;}
.wsa2{word-spacing:-14.293333pt;}
.wsa3{word-spacing:-14.186667pt;}
.ws36{word-spacing:-13.893333pt;}
.ws81{word-spacing:-13.866667pt;}
.ws35{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.333333pt;}
.wsa1{word-spacing:-13.280000pt;}
.wsbd{word-spacing:-13.184000pt;}
.ws5{word-spacing:-13.013333pt;}
.ws41{word-spacing:-12.928000pt;}
.wsbe{word-spacing:-12.194667pt;}
.wsdd{word-spacing:-12.058667pt;}
.wsdc{word-spacing:-12.013333pt;}
.ws100{word-spacing:-11.968000pt;}
.wsdf{word-spacing:-11.922667pt;}
.wsff{word-spacing:-11.900000pt;}
.wsde{word-spacing:-11.877333pt;}
.wsda{word-spacing:-11.605333pt;}
.ws7{word-spacing:-11.560000pt;}
.ws101{word-spacing:-11.514667pt;}
.ws37{word-spacing:-11.413333pt;}
.ws117{word-spacing:-11.378667pt;}
.ws52{word-spacing:-11.333333pt;}
.wsdb{word-spacing:-11.288000pt;}
.ws51{word-spacing:-11.088000pt;}
.ws102{word-spacing:-11.061333pt;}
.ws2{word-spacing:-11.040000pt;}
.wse0{word-spacing:-11.016000pt;}
.ws4{word-spacing:-10.986667pt;}
.wsb6{word-spacing:-10.453333pt;}
.wsb8{word-spacing:-10.346667pt;}
.ws1b{word-spacing:-10.240000pt;}
.ws38{word-spacing:-10.154667pt;}
.wsa4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.557333pt;}
.wsbf{word-spacing:-9.384000pt;}
.wsbc{word-spacing:-9.338667pt;}
.ws50{word-spacing:-9.333333pt;}
.wse1{word-spacing:-9.293333pt;}
.wsbb{word-spacing:-9.021333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws8{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.wsa6{word-spacing:-6.666667pt;}
.ws68{word-spacing:-5.666667pt;}
.wsc{word-spacing:-2.133333pt;}
.ws9{word-spacing:-1.680000pt;}
.wsc2{word-spacing:-1.546667pt;}
.ws72{word-spacing:-1.386667pt;}
.wsd{word-spacing:-1.333333pt;}
.wsc1{word-spacing:-1.280000pt;}
.wsea{word-spacing:-1.269333pt;}
.ws98{word-spacing:-1.226667pt;}
.ws96{word-spacing:-1.173333pt;}
.wsc7{word-spacing:-1.133333pt;}
.ws97{word-spacing:-1.120000pt;}
.wsf6{word-spacing:-1.088000pt;}
.ws85{word-spacing:-1.066667pt;}
.wsf4{word-spacing:-1.042667pt;}
.ws27{word-spacing:-1.013333pt;}
.ws111{word-spacing:-0.997333pt;}
.ws34{word-spacing:-0.960000pt;}
.wscf{word-spacing:-0.952000pt;}
.ws48{word-spacing:-0.906667pt;}
.wscd{word-spacing:-0.861333pt;}
.ws24{word-spacing:-0.853333pt;}
.ws13{word-spacing:-0.800000pt;}
.wsc9{word-spacing:-0.770667pt;}
.ws16{word-spacing:-0.746667pt;}
.wsd7{word-spacing:-0.725333pt;}
.ws2d{word-spacing:-0.693333pt;}
.wsd0{word-spacing:-0.680000pt;}
.ws18{word-spacing:-0.640000pt;}
.wsd1{word-spacing:-0.634667pt;}
.ws10b{word-spacing:-0.589333pt;}
.ws5d{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.544000pt;}
.ws1d{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.506667pt;}
.wsa7{word-spacing:-0.480000pt;}
.ws10c{word-spacing:-0.453333pt;}
.ws4b{word-spacing:-0.426667pt;}
.wse2{word-spacing:-0.408000pt;}
.ws30{word-spacing:-0.373333pt;}
.wseb{word-spacing:-0.362667pt;}
.ws2c{word-spacing:-0.320000pt;}
.wse5{word-spacing:-0.317333pt;}
.wse4{word-spacing:-0.272000pt;}
.ws10{word-spacing:-0.266667pt;}
.wscc{word-spacing:-0.234667pt;}
.wsd3{word-spacing:-0.226667pt;}
.ws11{word-spacing:-0.213333pt;}
.ws113{word-spacing:-0.181333pt;}
.ws71{word-spacing:-0.160000pt;}
.wsfc{word-spacing:-0.136000pt;}
.ws26{word-spacing:-0.106667pt;}
.wsf9{word-spacing:-0.090667pt;}
.ws15{word-spacing:-0.053333pt;}
.wsd6{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsa{word-spacing:0.000000pt;}
.wsf5{word-spacing:0.045333pt;}
.ws28{word-spacing:0.053333pt;}
.wsa0{word-spacing:0.090667pt;}
.ws62{word-spacing:0.106667pt;}
.ws106{word-spacing:0.136000pt;}
.ws3a{word-spacing:0.160000pt;}
.ws66{word-spacing:0.181333pt;}
.wse{word-spacing:0.213333pt;}
.wsc5{word-spacing:0.226667pt;}
.ws47{word-spacing:0.266667pt;}
.ws7d{word-spacing:0.272000pt;}
.wsc6{word-spacing:0.317333pt;}
.wsf{word-spacing:0.320000pt;}
.wsf0{word-spacing:0.362667pt;}
.ws69{word-spacing:0.373333pt;}
.ws104{word-spacing:0.408000pt;}
.ws31{word-spacing:0.426667pt;}
.wsec{word-spacing:0.453333pt;}
.ws84{word-spacing:0.480000pt;}
.ws108{word-spacing:0.498667pt;}
.ws5f{word-spacing:0.533333pt;}
.wsca{word-spacing:0.544000pt;}
.ws17{word-spacing:0.586667pt;}
.ws7e{word-spacing:0.589333pt;}
.ws114{word-spacing:0.634667pt;}
.ws45{word-spacing:0.640000pt;}
.wsfd{word-spacing:0.680000pt;}
.ws2a{word-spacing:0.693333pt;}
.wse3{word-spacing:0.725333pt;}
.ws42{word-spacing:0.746667pt;}
.wsd4{word-spacing:0.770667pt;}
.wsf1{word-spacing:0.816000pt;}
.ws4e{word-spacing:0.853333pt;}
.ws118{word-spacing:0.861333pt;}
.wsa5{word-spacing:0.906667pt;}
.wsd9{word-spacing:0.952000pt;}
.wsa8{word-spacing:0.960000pt;}
.ws116{word-spacing:0.997333pt;}
.ws8c{word-spacing:1.013333pt;}
.wsce{word-spacing:1.042667pt;}
.ws14{word-spacing:1.066667pt;}
.ws8a{word-spacing:1.120000pt;}
.ws6f{word-spacing:1.133333pt;}
.ws8d{word-spacing:1.173333pt;}
.wsd2{word-spacing:1.178667pt;}
.wsd5{word-spacing:1.224000pt;}
.ws115{word-spacing:1.269333pt;}
.wse9{word-spacing:1.314667pt;}
.ws12{word-spacing:1.333333pt;}
.ws6c{word-spacing:1.360000pt;}
.ws2b{word-spacing:1.386667pt;}
.wsfa{word-spacing:1.405333pt;}
.ws70{word-spacing:1.440000pt;}
.wsfb{word-spacing:1.450667pt;}
.ws44{word-spacing:1.493333pt;}
.ws10a{word-spacing:1.541333pt;}
.ws87{word-spacing:1.546667pt;}
.ws23{word-spacing:1.600000pt;}
.ws9f{word-spacing:1.632000pt;}
.ws88{word-spacing:1.653333pt;}
.ws29{word-spacing:1.706667pt;}
.wsac{word-spacing:1.722667pt;}
.ws20{word-spacing:1.760000pt;}
.wse6{word-spacing:1.768000pt;}
.ws4a{word-spacing:1.813333pt;}
.ws2f{word-spacing:1.866667pt;}
.ws43{word-spacing:1.920000pt;}
.ws9a{word-spacing:1.973333pt;}
.ws109{word-spacing:1.994667pt;}
.ws3e{word-spacing:2.026667pt;}
.wsaf{word-spacing:2.040000pt;}
.ws61{word-spacing:2.080000pt;}
.wsf3{word-spacing:2.085333pt;}
.ws67{word-spacing:2.130667pt;}
.ws1f{word-spacing:2.133333pt;}
.wse7{word-spacing:2.176000pt;}
.ws25{word-spacing:2.186667pt;}
.ws8f{word-spacing:2.221333pt;}
.ws65{word-spacing:2.240000pt;}
.ws10d{word-spacing:2.266667pt;}
.ws8b{word-spacing:2.293333pt;}
.wscb{word-spacing:2.357333pt;}
.ws49{word-spacing:2.400000pt;}
.ws40{word-spacing:2.453333pt;}
.wsb4{word-spacing:2.493333pt;}
.ws4c{word-spacing:2.506667pt;}
.ws103{word-spacing:2.538667pt;}
.ws7f{word-spacing:2.584000pt;}
.ws2e{word-spacing:2.613333pt;}
.ws9b{word-spacing:2.629333pt;}
.ws3c{word-spacing:2.666667pt;}
.wsed{word-spacing:2.674667pt;}
.ws39{word-spacing:2.720000pt;}
.wsa9{word-spacing:2.773333pt;}
.ws46{word-spacing:2.826667pt;}
.wse8{word-spacing:2.856000pt;}
.ws73{word-spacing:2.880000pt;}
.ws33{word-spacing:2.933333pt;}
.wsd8{word-spacing:2.946667pt;}
.ws60{word-spacing:2.986667pt;}
.wsf7{word-spacing:3.037333pt;}
.ws63{word-spacing:3.040000pt;}
.ws3b{word-spacing:3.093333pt;}
.ws107{word-spacing:3.128000pt;}
.ws8e{word-spacing:3.146667pt;}
.wsee{word-spacing:3.173333pt;}
.ws89{word-spacing:3.200000pt;}
.ws64{word-spacing:3.306667pt;}
.wsef{word-spacing:3.309333pt;}
.ws4d{word-spacing:3.360000pt;}
.wsc8{word-spacing:3.400000pt;}
.ws32{word-spacing:3.413333pt;}
.ws92{word-spacing:3.490667pt;}
.ws6a{word-spacing:3.520000pt;}
.ws21{word-spacing:3.626667pt;}
.wsaa{word-spacing:3.680000pt;}
.ws4f{word-spacing:3.733333pt;}
.ws10e{word-spacing:3.762667pt;}
.ws3f{word-spacing:3.786667pt;}
.wsc4{word-spacing:3.840000pt;}
.ws99{word-spacing:3.946667pt;}
.ws6b{word-spacing:4.000000pt;}
.wsb1{word-spacing:4.216000pt;}
.ws110{word-spacing:4.261333pt;}
.ws86{word-spacing:4.266667pt;}
.ws112{word-spacing:4.533333pt;}
.ws22{word-spacing:4.586667pt;}
.wsf8{word-spacing:4.624000pt;}
.ws9c{word-spacing:4.714667pt;}
.ws5e{word-spacing:4.746667pt;}
.wsfe{word-spacing:4.760000pt;}
.ws7c{word-spacing:4.805333pt;}
.ws77{word-spacing:4.850667pt;}
.ws105{word-spacing:4.941333pt;}
.wsad{word-spacing:4.986667pt;}
.ws91{word-spacing:5.032000pt;}
.wsc3{word-spacing:5.066667pt;}
.ws94{word-spacing:5.168000pt;}
.ws78{word-spacing:5.304000pt;}
.ws7b{word-spacing:5.394667pt;}
.ws83{word-spacing:5.440000pt;}
.ws9e{word-spacing:5.621333pt;}
.wsb0{word-spacing:5.712000pt;}
.ws9d{word-spacing:5.938667pt;}
.ws7a{word-spacing:5.984000pt;}
.ws82{word-spacing:6.026667pt;}
.ws90{word-spacing:6.165333pt;}
.wsf2{word-spacing:6.482667pt;}
.wsab{word-spacing:6.666667pt;}
.ws79{word-spacing:6.709333pt;}
.ws10f{word-spacing:6.845333pt;}
.ws3d{word-spacing:6.933333pt;}
.ws95{word-spacing:7.208000pt;}
.wsae{word-spacing:7.434667pt;}
.wsc0{word-spacing:7.680000pt;}
.ws80{word-spacing:8.205333pt;}
.ws6e{word-spacing:8.386667pt;}
.ws76{word-spacing:8.658667pt;}
.ws6d{word-spacing:8.885333pt;}
.wsb3{word-spacing:9.656000pt;}
.ws75{word-spacing:9.973333pt;}
.ws74{word-spacing:12.466667pt;}
.wsb2{word-spacing:13.826667pt;}
.wsb5{word-spacing:14.552000pt;}
.ws93{word-spacing:15.232000pt;}
.ws1e{word-spacing:19.072000pt;}
.ws5a{word-spacing:56.580533pt;}
.ws1a{word-spacing:64.237333pt;}
.ws58{word-spacing:130.428528pt;}
.ws53{word-spacing:136.589328pt;}
.ws54{word-spacing:147.877328pt;}
.ws5b{word-spacing:155.493328pt;}
.ws59{word-spacing:162.791994pt;}
.ws55{word-spacing:187.770667pt;}
.ws5c{word-spacing:193.255994pt;}
.ws56{word-spacing:200.871994pt;}
.ws57{word-spacing:231.834667pt;}
._c{margin-left:-2630.557387pt;}
._16{margin-left:-86.133333pt;}
._8{margin-left:-64.600000pt;}
._15{margin-left:-19.573345pt;}
._3b{margin-left:-18.178667pt;}
._3a{margin-left:-17.226667pt;}
._39{margin-left:-16.274667pt;}
._5{margin-left:-14.741333pt;}
._30{margin-left:-13.187498pt;}
._3d{margin-left:-12.058667pt;}
._11{margin-left:-11.088000pt;}
._31{margin-left:-10.013333pt;}
._13{margin-left:-8.746667pt;}
._14{margin-left:-7.722687pt;}
._2e{margin-left:-5.232000pt;}
._1{margin-left:-4.109067pt;}
._2{margin-left:-2.453333pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.061333pt;}
._12{width:2.053333pt;}
._b{width:2.986667pt;}
._2f{width:3.999994pt;}
._a{width:5.114667pt;}
._d{width:6.869333pt;}
._36{width:8.840000pt;}
._33{width:9.796000pt;}
._1c{width:11.304007pt;}
._f{width:12.281600pt;}
._17{width:13.736800pt;}
._6{width:16.328000pt;}
._10{width:18.245333pt;}
._38{width:19.365333pt;}
._32{width:20.708266pt;}
._3e{width:21.619498pt;}
._3c{width:22.602667pt;}
._34{width:23.912000pt;}
._35{width:25.658667pt;}
._37{width:26.746667pt;}
._2d{width:29.333333pt;}
._e{width:32.000000pt;}
._4{width:34.926578pt;}
._19{width:44.290667pt;}
._2a{width:45.333333pt;}
._7{width:48.552000pt;}
._18{width:58.616000pt;}
._21{width:61.517324pt;}
._23{width:64.762660pt;}
._1e{width:68.181333pt;}
._1f{width:84.501324pt;}
._29{width:87.765333pt;}
._24{width:89.216000pt;}
._28{width:107.167990pt;}
._20{width:119.181333pt;}
._2c{width:129.834657pt;}
._1a{width:147.378667pt;}
._1b{width:153.298667pt;}
._2b{width:171.269333pt;}
._1d{width:178.341333pt;}
._25{width:179.379467pt;}
._27{width:198.786667pt;}
._22{width:208.760000pt;}
._26{width:211.611467pt;}
._9{width:1531.949261pt;}
.fs7{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:0.040243pt;}
.y114{bottom:9.373576pt;}
.y119{bottom:9.376139pt;}
.y116{bottom:17.101725pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y181{bottom:100.174939pt;}
.y26{bottom:100.389600pt;}
.y139{bottom:100.822933pt;}
.y140{bottom:100.856933pt;}
.y164{bottom:101.436262pt;}
.yc1{bottom:101.986816pt;}
.y15c{bottom:101.986898pt;}
.y8f{bottom:101.986938pt;}
.yd9{bottom:102.111064pt;}
.y1f8{bottom:103.657620pt;}
.y27b{bottom:103.997606pt;}
.y43{bottom:107.793213pt;}
.y111{bottom:109.784271pt;}
.y5d{bottom:109.793208pt;}
.y180{bottom:113.502939pt;}
.y1b6{bottom:113.823714pt;}
.y138{bottom:114.150933pt;}
.y13f{bottom:114.184933pt;}
.y163{bottom:114.790929pt;}
.y1f7{bottom:116.985620pt;}
.y27a{bottom:117.325606pt;}
.y239{bottom:117.336954pt;}
.y25{bottom:118.250936pt;}
.yc0{bottom:118.653483pt;}
.y15b{bottom:118.653564pt;}
.y8e{bottom:118.653605pt;}
.y16e{bottom:118.777588pt;}
.yd8{bottom:118.777730pt;}
.y42{bottom:124.459880pt;}
.y110{bottom:126.450938pt;}
.y5c{bottom:126.459874pt;}
.y17f{bottom:126.830939pt;}
.y1b5{bottom:127.151714pt;}
.y137{bottom:127.478933pt;}
.y13e{bottom:127.512933pt;}
.y162{bottom:128.118929pt;}
.y1f6{bottom:130.313620pt;}
.y279{bottom:130.653606pt;}
.y238{bottom:130.664954pt;}
.y24{bottom:133.770270pt;}
.ybf{bottom:135.320150pt;}
.y15a{bottom:135.320231pt;}
.y8d{bottom:135.320272pt;}
.y16d{bottom:135.444255pt;}
.yd7{bottom:135.444397pt;}
.y17e{bottom:140.158939pt;}
.y1b4{bottom:140.479714pt;}
.y136{bottom:140.806933pt;}
.y13d{bottom:140.840933pt;}
.y41{bottom:141.126546pt;}
.y161{bottom:141.446929pt;}
.y10f{bottom:143.117605pt;}
.y5b{bottom:143.126541pt;}
.y1f5{bottom:143.641620pt;}
.y278{bottom:143.981606pt;}
.y237{bottom:143.992954pt;}
.y23{bottom:147.098270pt;}
.ybe{bottom:151.986816pt;}
.y159{bottom:151.986898pt;}
.y8c{bottom:151.986938pt;}
.y16c{bottom:152.110921pt;}
.yd6{bottom:152.111064pt;}
.y17d{bottom:153.486939pt;}
.y1b3{bottom:153.807714pt;}
.y135{bottom:154.134933pt;}
.y13c{bottom:154.168933pt;}
.y160{bottom:154.774929pt;}
.y1f4{bottom:156.969620pt;}
.y277{bottom:157.309606pt;}
.y236{bottom:157.320954pt;}
.y40{bottom:157.793213pt;}
.y10e{bottom:159.784271pt;}
.y5a{bottom:159.793208pt;}
.y22{bottom:164.959605pt;}
.y17c{bottom:166.814939pt;}
.y1b2{bottom:167.135714pt;}
.y134{bottom:167.462933pt;}
.y13b{bottom:167.496933pt;}
.y15f{bottom:168.102929pt;}
.ybd{bottom:168.653483pt;}
.y158{bottom:168.653564pt;}
.y8b{bottom:168.653605pt;}
.y16b{bottom:168.777588pt;}
.yd5{bottom:168.777730pt;}
.y1f3{bottom:170.297620pt;}
.y276{bottom:170.637606pt;}
.y235{bottom:170.648954pt;}
.y3f{bottom:174.459880pt;}
.y59{bottom:176.459874pt;}
.y17b{bottom:180.142939pt;}
.y1b1{bottom:180.463714pt;}
.y21{bottom:180.484262pt;}
.y133{bottom:180.790933pt;}
.y13a{bottom:180.824933pt;}
.y15e{bottom:181.436262pt;}
.y1f2{bottom:183.625620pt;}
.y275{bottom:183.965606pt;}
.y234{bottom:183.976954pt;}
.ybc{bottom:185.320150pt;}
.y157{bottom:185.320231pt;}
.y8a{bottom:185.320272pt;}
.y16a{bottom:185.444255pt;}
.yd4{bottom:185.444397pt;}
.y3e{bottom:191.126546pt;}
.y10d{bottom:193.117594pt;}
.y58{bottom:193.126541pt;}
.y17a{bottom:193.470939pt;}
.y1b0{bottom:193.791714pt;}
.y20{bottom:193.812262pt;}
.y15d{bottom:194.764262pt;}
.y1f1{bottom:196.953620pt;}
.y274{bottom:197.293606pt;}
.y233{bottom:197.304954pt;}
.ybb{bottom:201.986816pt;}
.y156{bottom:201.986898pt;}
.y89{bottom:201.986938pt;}
.y169{bottom:202.110921pt;}
.yd3{bottom:202.111064pt;}
.y179{bottom:206.798939pt;}
.y1af{bottom:207.119714pt;}
.y1f{bottom:207.140262pt;}
.y3d{bottom:207.793213pt;}
.y57{bottom:209.793208pt;}
.y1f0{bottom:210.281620pt;}
.y273{bottom:210.621606pt;}
.y232{bottom:210.632954pt;}
.yba{bottom:218.653483pt;}
.y155{bottom:218.653564pt;}
.y88{bottom:218.653605pt;}
.y168{bottom:218.777588pt;}
.yeb{bottom:218.777730pt;}
.y178{bottom:220.126939pt;}
.y1ae{bottom:220.447714pt;}
.y1ef{bottom:223.609620pt;}
.y272{bottom:223.949606pt;}
.y231{bottom:223.960954pt;}
.y3c{bottom:224.459880pt;}
.y1e{bottom:225.001607pt;}
.y56{bottom:226.459874pt;}
.y177{bottom:233.454939pt;}
.y1ad{bottom:233.775714pt;}
.y10c{bottom:234.444257pt;}
.yb9{bottom:235.320150pt;}
.y154{bottom:235.320231pt;}
.y87{bottom:235.320272pt;}
.y167{bottom:235.444255pt;}
.yea{bottom:235.444397pt;}
.yd2{bottom:235.449730pt;}
.y1ee{bottom:236.937620pt;}
.y271{bottom:237.277606pt;}
.y230{bottom:237.288954pt;}
.y3b{bottom:241.126546pt;}
.y55{bottom:243.126541pt;}
.y176{bottom:246.782939pt;}
.y1ac{bottom:247.103714pt;}
.y1d{bottom:247.230142pt;}
.y1ed{bottom:250.265620pt;}
.y270{bottom:250.605606pt;}
.y22f{bottom:250.616954pt;}
.y10b{bottom:251.110924pt;}
.yb8{bottom:251.986816pt;}
.y153{bottom:251.986898pt;}
.y86{bottom:251.986938pt;}
.y166{bottom:252.110921pt;}
.yd1{bottom:252.111064pt;}
.y3a{bottom:257.793213pt;}
.y54{bottom:259.793208pt;}
.y1ab{bottom:260.431714pt;}
.y1c{bottom:260.558142pt;}
.y1ec{bottom:263.593620pt;}
.y26f{bottom:263.933606pt;}
.y22e{bottom:263.944954pt;}
.y10a{bottom:267.777590pt;}
.yb7{bottom:268.653483pt;}
.y152{bottom:268.653564pt;}
.y183{bottom:268.653605pt;}
.y165{bottom:268.777588pt;}
.ye9{bottom:268.777730pt;}
.y1aa{bottom:273.759714pt;}
.y39{bottom:274.459880pt;}
.y53{bottom:276.459874pt;}
.y1eb{bottom:276.921620pt;}
.y26e{bottom:277.261606pt;}
.y22d{bottom:277.272954pt;}
.y109{bottom:284.444257pt;}
.yb6{bottom:285.320150pt;}
.y151{bottom:285.320231pt;}
.y182{bottom:285.320272pt;}
.y85{bottom:285.325605pt;}
.yd0{bottom:285.444255pt;}
.ye8{bottom:285.444397pt;}
.y1a9{bottom:287.087714pt;}
.y1b{bottom:287.950809pt;}
.y1ea{bottom:290.249620pt;}
.y26d{bottom:290.589606pt;}
.y22c{bottom:290.600954pt;}
.y38{bottom:291.126546pt;}
.y52{bottom:293.126541pt;}
.y1a8{bottom:300.415714pt;}
.y108{bottom:301.110924pt;}
.y1a{bottom:301.278809pt;}
.yb5{bottom:301.986816pt;}
.y150{bottom:301.986898pt;}
.y84{bottom:301.986938pt;}
.ycf{bottom:302.110921pt;}
.ye7{bottom:302.111064pt;}
.y1e9{bottom:303.577620pt;}
.y26c{bottom:303.917606pt;}
.y22b{bottom:303.928954pt;}
.y37{bottom:307.793213pt;}
.y51{bottom:309.793208pt;}
.y1a7{bottom:313.743714pt;}
.y1e8{bottom:316.905620pt;}
.y26b{bottom:317.245606pt;}
.y22a{bottom:317.256954pt;}
.y107{bottom:317.777590pt;}
.yb4{bottom:318.653483pt;}
.y14f{bottom:318.653564pt;}
.yce{bottom:318.777588pt;}
.ye6{bottom:318.777730pt;}
.y36{bottom:324.459880pt;}
.y50{bottom:326.459874pt;}
.y1a6{bottom:327.071714pt;}
.y1e7{bottom:330.233620pt;}
.y26a{bottom:330.573606pt;}
.y229{bottom:330.584954pt;}
.yb3{bottom:335.320150pt;}
.y14e{bottom:335.320231pt;}
.y83{bottom:335.320272pt;}
.ycd{bottom:335.444255pt;}
.ye5{bottom:335.444397pt;}
.y1a5{bottom:340.399714pt;}
.y35{bottom:341.126546pt;}
.y113{bottom:342.777344pt;}
.y4f{bottom:343.126541pt;}
.y1e6{bottom:343.561620pt;}
.y269{bottom:343.901606pt;}
.y228{bottom:343.912954pt;}
.y112{bottom:350.770930pt;}
.yb2{bottom:351.986816pt;}
.y14d{bottom:351.986898pt;}
.ycc{bottom:352.110921pt;}
.ye4{bottom:352.111064pt;}
.y115{bottom:352.150920pt;}
.y118{bottom:352.153483pt;}
.y1a4{bottom:353.727714pt;}
.y1e5{bottom:356.889620pt;}
.y268{bottom:357.229606pt;}
.y227{bottom:357.240954pt;}
.y34{bottom:357.793213pt;}
.y4e{bottom:359.793208pt;}
.y1a3{bottom:367.055714pt;}
.yb1{bottom:368.653483pt;}
.y14c{bottom:368.653564pt;}
.ycb{bottom:368.777588pt;}
.ye3{bottom:368.777730pt;}
.y1e4{bottom:370.217620pt;}
.y267{bottom:370.557606pt;}
.y226{bottom:370.568954pt;}
.y33{bottom:374.459880pt;}
.y4d{bottom:376.459874pt;}
.y1a2{bottom:380.383714pt;}
.y1e3{bottom:383.545620pt;}
.y266{bottom:383.885606pt;}
.y225{bottom:383.896954pt;}
.yb0{bottom:385.320150pt;}
.y14b{bottom:385.320231pt;}
.y82{bottom:385.320272pt;}
.yca{bottom:385.444255pt;}
.ye2{bottom:385.444397pt;}
.y32{bottom:391.126546pt;}
.y4c{bottom:393.126541pt;}
.y1a1{bottom:393.711714pt;}
.y1e2{bottom:396.873620pt;}
.y265{bottom:397.213606pt;}
.y224{bottom:397.224954pt;}
.yaf{bottom:401.986816pt;}
.y14a{bottom:401.986898pt;}
.y81{bottom:401.986938pt;}
.yc9{bottom:402.110921pt;}
.ye1{bottom:402.111064pt;}
.y171{bottom:406.847052pt;}
.y174{bottom:406.858385pt;}
.y1a0{bottom:407.039714pt;}
.y31{bottom:407.793213pt;}
.y4b{bottom:409.793208pt;}
.y1e1{bottom:410.201620pt;}
.y264{bottom:410.541606pt;}
.y223{bottom:410.552954pt;}
.yae{bottom:418.653483pt;}
.y149{bottom:418.653564pt;}
.y80{bottom:418.653605pt;}
.yc8{bottom:418.777588pt;}
.ye0{bottom:418.777730pt;}
.y170{bottom:420.175052pt;}
.y173{bottom:420.186385pt;}
.y1e0{bottom:423.529620pt;}
.y263{bottom:423.869606pt;}
.y222{bottom:423.880954pt;}
.y30{bottom:424.459880pt;}
.y4a{bottom:426.459874pt;}
.y16f{bottom:433.503052pt;}
.y172{bottom:433.514385pt;}
.yad{bottom:435.320150pt;}
.y148{bottom:435.320231pt;}
.y7f{bottom:435.320272pt;}
.yc7{bottom:435.444255pt;}
.ydf{bottom:435.444397pt;}
.y1df{bottom:436.857620pt;}
.y19f{bottom:437.039714pt;}
.y262{bottom:437.197606pt;}
.y221{bottom:437.208954pt;}
.y2f{bottom:441.126546pt;}
.y11c{bottom:441.566941pt;}
.y49{bottom:443.126541pt;}
.y1de{bottom:450.185620pt;}
.y261{bottom:450.525606pt;}
.y220{bottom:450.536954pt;}
.yac{bottom:451.986816pt;}
.y147{bottom:451.986898pt;}
.y7e{bottom:451.986938pt;}
.yc6{bottom:452.110921pt;}
.yde{bottom:452.111064pt;}
.y11b{bottom:454.894941pt;}
.y11e{bottom:454.906274pt;}
.y2e{bottom:457.793213pt;}
.y48{bottom:459.793208pt;}
.y1dd{bottom:463.513620pt;}
.y260{bottom:463.853606pt;}
.y21f{bottom:463.864954pt;}
.y11a{bottom:468.222941pt;}
.y11d{bottom:468.234274pt;}
.yab{bottom:468.653483pt;}
.y146{bottom:468.653564pt;}
.y7d{bottom:468.653605pt;}
.yc5{bottom:468.777588pt;}
.ydd{bottom:468.777730pt;}
.y2d{bottom:474.459880pt;}
.y47{bottom:476.459874pt;}
.y1dc{bottom:476.841620pt;}
.y25f{bottom:477.181606pt;}
.y21e{bottom:477.192954pt;}
.y145{bottom:485.320231pt;}
.y7c{bottom:485.320272pt;}
.yc4{bottom:485.444255pt;}
.ydc{bottom:485.444397pt;}
.y19e{bottom:488.830516pt;}
.y1db{bottom:490.169620pt;}
.y25e{bottom:490.509606pt;}
.y21d{bottom:490.520954pt;}
.y2c{bottom:491.126546pt;}
.y46{bottom:493.126541pt;}
.y144{bottom:501.986898pt;}
.y7b{bottom:501.986938pt;}
.yaa{bottom:501.992150pt;}
.yc3{bottom:502.110921pt;}
.ydb{bottom:502.111064pt;}
.y19d{bottom:502.158516pt;}
.y1da{bottom:503.497620pt;}
.y25d{bottom:503.837606pt;}
.y21c{bottom:503.848954pt;}
.y19{bottom:508.854533pt;}
.y45{bottom:509.793208pt;}
.y19c{bottom:515.486516pt;}
.y1d9{bottom:516.825620pt;}
.y25c{bottom:517.165606pt;}
.y21b{bottom:517.176954pt;}
.ya9{bottom:518.653483pt;}
.y143{bottom:518.653564pt;}
.y7a{bottom:518.653605pt;}
.yc2{bottom:518.777588pt;}
.yda{bottom:518.777730pt;}
.y2b{bottom:524.459880pt;}
.y18{bottom:525.521200pt;}
.y44{bottom:526.459874pt;}
.y19b{bottom:528.814516pt;}
.y1d8{bottom:530.153620pt;}
.y25b{bottom:530.493606pt;}
.y21a{bottom:530.504954pt;}
.y142{bottom:535.320231pt;}
.y79{bottom:535.320272pt;}
.y19a{bottom:542.142516pt;}
.y17{bottom:542.187866pt;}
.y1d7{bottom:543.481620pt;}
.y25a{bottom:543.821606pt;}
.y219{bottom:543.832954pt;}
.y141{bottom:551.986898pt;}
.y78{bottom:551.986938pt;}
.y199{bottom:555.470516pt;}
.y1d6{bottom:556.809620pt;}
.y259{bottom:557.149606pt;}
.y218{bottom:557.160954pt;}
.yef{bottom:557.228973pt;}
.y16{bottom:558.854533pt;}
.y77{bottom:568.653564pt;}
.ya8{bottom:568.653605pt;}
.y198{bottom:568.798516pt;}
.y2a{bottom:569.793213pt;}
.y1d5{bottom:570.137620pt;}
.y258{bottom:570.477606pt;}
.y217{bottom:570.488954pt;}
.yee{bottom:570.556973pt;}
.y15{bottom:575.521200pt;}
.y197{bottom:582.126516pt;}
.y1d4{bottom:583.465620pt;}
.y257{bottom:583.805606pt;}
.y216{bottom:583.816954pt;}
.yed{bottom:583.884973pt;}
.y76{bottom:585.320231pt;}
.ya7{bottom:585.320272pt;}
.y29{bottom:586.459880pt;}
.y14{bottom:592.187866pt;}
.y196{bottom:595.454516pt;}
.y1d3{bottom:596.793620pt;}
.y256{bottom:597.133606pt;}
.y215{bottom:597.144954pt;}
.y75{bottom:601.986898pt;}
.ya6{bottom:601.986938pt;}
.y195{bottom:608.782516pt;}
.y13{bottom:608.854533pt;}
.y106{bottom:608.962688pt;}
.y1d2{bottom:610.121620pt;}
.y255{bottom:610.461606pt;}
.y214{bottom:610.472954pt;}
.y74{bottom:618.653564pt;}
.ya5{bottom:618.653605pt;}
.y194{bottom:622.110516pt;}
.y105{bottom:622.290688pt;}
.y1d1{bottom:623.449620pt;}
.y254{bottom:623.789606pt;}
.y213{bottom:623.800954pt;}
.y12{bottom:625.521200pt;}
.y73{bottom:635.320231pt;}
.ya4{bottom:635.320272pt;}
.y193{bottom:635.438516pt;}
.y1d0{bottom:636.777620pt;}
.y253{bottom:637.117606pt;}
.y212{bottom:637.128954pt;}
.y104{bottom:638.996021pt;}
.y11{bottom:642.187907pt;}
.y1cf{bottom:650.105620pt;}
.y252{bottom:650.445606pt;}
.y211{bottom:650.456954pt;}
.y72{bottom:651.986898pt;}
.ya3{bottom:651.986938pt;}
.y103{bottom:652.324021pt;}
.y10{bottom:658.854574pt;}
.y1ce{bottom:663.433620pt;}
.y251{bottom:663.773606pt;}
.y210{bottom:663.784954pt;}
.y192{bottom:665.403849pt;}
.y71{bottom:668.653564pt;}
.ya2{bottom:668.653605pt;}
.y102{bottom:668.961355pt;}
.yf{bottom:675.521240pt;}
.y1cd{bottom:676.761620pt;}
.y250{bottom:677.101606pt;}
.y20f{bottom:677.112954pt;}
.y101{bottom:682.289355pt;}
.y70{bottom:685.320231pt;}
.ya1{bottom:685.320272pt;}
.y1cc{bottom:690.089620pt;}
.y24f{bottom:690.429606pt;}
.y20e{bottom:690.440954pt;}
.ye{bottom:692.187907pt;}
.y191{bottom:695.403890pt;}
.y100{bottom:698.926688pt;}
.y6f{bottom:701.986898pt;}
.ya0{bottom:701.986938pt;}
.y1cb{bottom:703.417620pt;}
.y24e{bottom:703.757606pt;}
.y20d{bottom:703.768954pt;}
.yd{bottom:708.854574pt;}
.yff{bottom:715.564021pt;}
.y1ca{bottom:716.745620pt;}
.y24d{bottom:717.085606pt;}
.y20c{bottom:717.096954pt;}
.y6e{bottom:718.653564pt;}
.y9f{bottom:718.653605pt;}
.yc{bottom:725.521240pt;}
.y190{bottom:728.813096pt;}
.yfe{bottom:728.892021pt;}
.y1c9{bottom:730.073620pt;}
.y24c{bottom:730.413606pt;}
.y20b{bottom:730.424954pt;}
.y6d{bottom:735.320231pt;}
.y9e{bottom:735.320272pt;}
.y18f{bottom:742.141096pt;}
.yb{bottom:742.187907pt;}
.y1c8{bottom:743.401620pt;}
.y24b{bottom:743.741606pt;}
.y20a{bottom:743.752954pt;}
.yfd{bottom:745.529355pt;}
.y12b{bottom:750.029622pt;}
.y6c{bottom:751.986898pt;}
.y9d{bottom:751.986938pt;}
.y175{bottom:751.992231pt;}
.y1c7{bottom:756.729620pt;}
.y24a{bottom:757.069606pt;}
.y209{bottom:757.080954pt;}
.yfc{bottom:758.857355pt;}
.y12a{bottom:766.696289pt;}
.y6b{bottom:768.653564pt;}
.y9c{bottom:768.653605pt;}
.y1c6{bottom:770.057620pt;}
.y249{bottom:770.397606pt;}
.y208{bottom:770.408954pt;}
.y18e{bottom:772.106430pt;}
.yfb{bottom:775.494688pt;}
.ya{bottom:781.461469pt;}
.y129{bottom:783.362956pt;}
.y1c5{bottom:783.385620pt;}
.y248{bottom:783.725606pt;}
.y207{bottom:783.736954pt;}
.y6a{bottom:785.320231pt;}
.y9b{bottom:785.320272pt;}
.y18d{bottom:785.434430pt;}
.yfa{bottom:788.822688pt;}
.y9{bottom:794.789469pt;}
.y1c4{bottom:796.713620pt;}
.y247{bottom:797.053606pt;}
.y206{bottom:797.064954pt;}
.y18c{bottom:798.762430pt;}
.y128{bottom:800.029622pt;}
.y69{bottom:801.986898pt;}
.y9a{bottom:801.986938pt;}
.yf9{bottom:805.460021pt;}
.y1c3{bottom:810.041620pt;}
.y246{bottom:810.381606pt;}
.y205{bottom:810.392954pt;}
.y18b{bottom:812.090430pt;}
.y127{bottom:816.696289pt;}
.y68{bottom:818.653564pt;}
.y99{bottom:818.653605pt;}
.yf8{bottom:818.788021pt;}
.y1c2{bottom:823.369620pt;}
.y245{bottom:823.709606pt;}
.y204{bottom:823.720954pt;}
.y18a{bottom:825.418430pt;}
.y8{bottom:832.656169pt;}
.y126{bottom:833.362956pt;}
.y67{bottom:835.320231pt;}
.y98{bottom:835.320272pt;}
.y132{bottom:835.325564pt;}
.yf7{bottom:835.425355pt;}
.y1c1{bottom:836.697620pt;}
.y244{bottom:837.037606pt;}
.y203{bottom:837.048954pt;}
.y189{bottom:838.746430pt;}
.yf6{bottom:848.753355pt;}
.y1c0{bottom:850.025620pt;}
.y125{bottom:850.029622pt;}
.y243{bottom:850.365606pt;}
.y202{bottom:850.376954pt;}
.y66{bottom:851.986898pt;}
.y97{bottom:851.986938pt;}
.y188{bottom:852.074430pt;}
.y1bf{bottom:863.353620pt;}
.y284{bottom:863.398954pt;}
.y242{bottom:863.693606pt;}
.y201{bottom:863.704954pt;}
.yf5{bottom:865.390688pt;}
.y187{bottom:865.402430pt;}
.y124{bottom:866.696289pt;}
.y65{bottom:868.653564pt;}
.y96{bottom:868.653605pt;}
.y7{bottom:872.377441pt;}
.y1be{bottom:876.681620pt;}
.y283{bottom:876.726954pt;}
.y241{bottom:877.021606pt;}
.y200{bottom:877.032954pt;}
.yf4{bottom:878.718688pt;}
.y186{bottom:878.730430pt;}
.y123{bottom:883.362956pt;}
.y64{bottom:885.320231pt;}
.y95{bottom:885.320272pt;}
.y131{bottom:885.322947pt;}
.y1bd{bottom:890.009620pt;}
.y282{bottom:890.054954pt;}
.y240{bottom:890.349606pt;}
.y1ff{bottom:890.360954pt;}
.yf3{bottom:895.356021pt;}
.y6{bottom:896.377441pt;}
.y122{bottom:900.029622pt;}
.y63{bottom:901.986898pt;}
.y94{bottom:901.986938pt;}
.y130{bottom:901.989614pt;}
.y1bc{bottom:903.337620pt;}
.y281{bottom:903.382954pt;}
.y23f{bottom:903.677606pt;}
.y1fe{bottom:903.688954pt;}
.y185{bottom:908.695763pt;}
.y1bb{bottom:916.665620pt;}
.y121{bottom:916.696289pt;}
.y280{bottom:916.710954pt;}
.y23e{bottom:917.005606pt;}
.y1fd{bottom:917.016954pt;}
.y62{bottom:918.653564pt;}
.y93{bottom:918.653605pt;}
.y12f{bottom:918.656281pt;}
.yf2{bottom:919.666021pt;}
.y184{bottom:922.023763pt;}
.y1ba{bottom:929.993620pt;}
.y27f{bottom:930.038954pt;}
.y23d{bottom:930.333606pt;}
.y1fc{bottom:930.344954pt;}
.yf1{bottom:932.994021pt;}
.y120{bottom:933.362956pt;}
.y61{bottom:935.320231pt;}
.y92{bottom:935.320272pt;}
.y12e{bottom:935.322947pt;}
.y1b9{bottom:943.321620pt;}
.y27e{bottom:943.366954pt;}
.y23c{bottom:943.661606pt;}
.y1fb{bottom:943.672954pt;}
.yf0{bottom:946.322021pt;}
.y60{bottom:951.986898pt;}
.y91{bottom:951.986938pt;}
.y12d{bottom:951.989614pt;}
.y5{bottom:956.561849pt;}
.y1b8{bottom:956.649620pt;}
.y27d{bottom:956.694954pt;}
.y23b{bottom:956.989606pt;}
.y1fa{bottom:957.000954pt;}
.y11f{bottom:966.696289pt;}
.y28{bottom:968.486572pt;}
.y5f{bottom:968.653564pt;}
.y90{bottom:968.653605pt;}
.y12c{bottom:968.656281pt;}
.yec{bottom:968.980306pt;}
.y1b7{bottom:969.977620pt;}
.y27c{bottom:970.022954pt;}
.y23a{bottom:970.317606pt;}
.y1f9{bottom:970.328954pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y27{bottom:1002.206543pt;}
.y5e{bottom:1002.206706pt;}
.h14{height:26.000000pt;}
.hc{height:29.448532pt;}
.h2{height:30.080000pt;}
.h15{height:35.582225pt;}
.h17{height:36.062345pt;}
.h16{height:37.876132pt;}
.h4{height:39.712000pt;}
.hb{height:42.069333pt;}
.h13{height:46.376000pt;}
.hd{height:47.253333pt;}
.h11{height:47.539004pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h9{height:49.493333pt;}
.h10{height:52.448000pt;}
.h8{height:52.746667pt;}
.ha{height:54.560000pt;}
.hf{height:54.560163pt;}
.h18{height:54.560570pt;}
.h7{height:57.658667pt;}
.he{height:63.296000pt;}
.h6{height:75.605333pt;}
.h12{height:95.381333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:126.866669pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:56.028539pt;}
.x3{left:68.031469pt;}
.x6{left:69.996800pt;}
.x11{left:72.034013pt;}
.x4{left:75.717199pt;}
.xa{left:83.151469pt;}
.x5{left:86.929867pt;}
.x1d{left:90.709469pt;}
.xb{left:94.196802pt;}
.x1b{left:104.244797pt;}
.xd{left:155.263997pt;}
.x1a{left:160.781067pt;}
.x15{left:163.267292pt;}
.x16{left:242.623290pt;}
.x12{left:323.962679pt;}
.x18{left:369.964802pt;}
.x13{left:402.208010pt;}
.x7{left:408.191462pt;}
.x14{left:410.209343pt;}
.x8{left:423.298134pt;}
.x1c{left:430.866924pt;}
.xc{left:434.354257pt;}
.xe{left:488.905997pt;}
.xf{left:571.626017pt;}
.x1{left:647.307210pt;}
.x10{left:657.355347pt;}
.x2{left:671.546549pt;}
.x17{left:704.136393pt;}
.x9{left:709.519613pt;}
}




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