
    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_df92482dc1dd12c097deda43.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_43e5806f4c8a558397b9e9b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_2b435574f5bddd3dd93180c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_36fb13ae8a02877a0c1222da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.849000;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_44b302d53271a795271ace0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_4ada90685a7d5c3a8fc52593.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_811aa5b84ce04dc0bbdeeb8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988000;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_f6147f5bf7205eaa7e736077.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_c64b48eb4c4207db27a3c0cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_39eb397a5f005e0ca6622792.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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_ba8fd7dc6b711791522f991e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.197000;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_66155cae414be3c3685723c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.555000;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_8d8d814a50f4abdd55c72b40.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.602000px;}
.v14{vertical-align:-12.528000px;}
.v11{vertical-align:-10.758000px;}
.v4{vertical-align:-5.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.326000px;}
.v7{vertical-align:11.472000px;}
.vc{vertical-align:12.960000px;}
.ve{vertical-align:20.130000px;}
.vb{vertical-align:23.718000px;}
.v6{vertical-align:25.074000px;}
.vd{vertical-align:29.622000px;}
.v5{vertical-align:35.760000px;}
.v10{vertical-align:41.106000px;}
.v12{vertical-align:42.474000px;}
.v3{vertical-align:48.564000px;}
.v9{vertical-align:52.200000px;}
.v13{vertical-align:65.070000px;}
.vf{vertical-align:72.330000px;}
.va{vertical-align:78.240000px;}
.v8{vertical-align:90.144000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.002400px;}
.ls7e{letter-spacing:0.400185px;}
.ls78{letter-spacing:0.406185px;}
.ls7a{letter-spacing:0.428370px;}
.ls77{letter-spacing:0.434370px;}
.ls7c{letter-spacing:0.446726px;}
.ls7d{letter-spacing:0.452726px;}
.ls1b{letter-spacing:0.470074px;}
.ls45{letter-spacing:0.642088px;}
.ls21{letter-spacing:0.648088px;}
.ls76{letter-spacing:0.747432px;}
.ls60{letter-spacing:0.812136px;}
.ls6b{letter-spacing:0.893818px;}
.ls19{letter-spacing:0.896400px;}
.ls12{letter-spacing:1.190400px;}
.ls16{letter-spacing:1.196400px;}
.ls64{letter-spacing:1.320088px;}
.ls20{letter-spacing:1.346045px;}
.ls4b{letter-spacing:1.568400px;}
.ls55{letter-spacing:1.610400px;}
.ls5c{letter-spacing:1.616400px;}
.ls15{letter-spacing:1.700136px;}
.ls2a{letter-spacing:1.706136px;}
.ls44{letter-spacing:1.724045px;}
.ls3d{letter-spacing:1.789690px;}
.ls2c{letter-spacing:1.793126px;}
.ls3c{letter-spacing:1.795690px;}
.ls47{letter-spacing:2.282400px;}
.ls3a{letter-spacing:2.288400px;}
.ls4e{letter-spacing:2.372400px;}
.ls59{letter-spacing:2.378400px;}
.ls38{letter-spacing:2.507453px;}
.ls52{letter-spacing:2.510400px;}
.ls2d{letter-spacing:2.780136px;}
.ls23{letter-spacing:2.786136px;}
.ls1a{letter-spacing:2.840172px;}
.ls39{letter-spacing:2.924136px;}
.ls41{letter-spacing:2.978172px;}
.ls37{letter-spacing:2.984172px;}
.ls43{letter-spacing:3.001690px;}
.ls30{letter-spacing:3.007690px;}
.ls53{letter-spacing:3.013709px;}
.ls24{letter-spacing:3.146074px;}
.ls2e{letter-spacing:3.152074px;}
.ls7b{letter-spacing:3.364500px;}
.ls4f{letter-spacing:3.663178px;}
.ls72{letter-spacing:3.875453px;}
.ls62{letter-spacing:3.935510px;}
.ls13{letter-spacing:4.034045px;}
.ls5f{letter-spacing:4.552090px;}
.ls31{letter-spacing:4.554845px;}
.ls27{letter-spacing:4.556045px;}
.ls5a{letter-spacing:4.557178px;}
.ls49{letter-spacing:4.562045px;}
.ls1f{letter-spacing:4.796170px;}
.ls26{letter-spacing:4.885690px;}
.ls1c{letter-spacing:4.934045px;}
.ls1{letter-spacing:6.149160px;}
.ls2{letter-spacing:6.198675px;}
.ls3{letter-spacing:6.198750px;}
.ls0{letter-spacing:6.202050px;}
.ls3b{letter-spacing:7.928045px;}
.lsa{letter-spacing:7.963949px;}
.ls28{letter-spacing:7.982136px;}
.ls8{letter-spacing:7.988467px;}
.lsb{letter-spacing:8.000074px;}
.ls74{letter-spacing:8.023939px;}
.ls9{letter-spacing:8.025427px;}
.ls2f{letter-spacing:9.506045px;}
.ls25{letter-spacing:9.512045px;}
.ls56{letter-spacing:14.071200px;}
.ls1d{letter-spacing:14.846400px;}
.ls5b{letter-spacing:15.650136px;}
.ls1e{letter-spacing:15.706272px;}
.ls22{letter-spacing:15.838800px;}
.ls46{letter-spacing:15.844800px;}
.ls35{letter-spacing:17.228400px;}
.ls71{letter-spacing:18.323453px;}
.ls42{letter-spacing:19.550045px;}
.ls66{letter-spacing:19.835510px;}
.ls6a{letter-spacing:19.934726px;}
.ls18{letter-spacing:20.782272px;}
.ls33{letter-spacing:20.800272px;}
.lsc{letter-spacing:21.200726px;}
.ls2b{letter-spacing:21.682272px;}
.ls54{letter-spacing:21.688272px;}
.ls51{letter-spacing:21.716400px;}
.ls36{letter-spacing:21.722400px;}
.ls75{letter-spacing:21.878016px;}
.ls73{letter-spacing:22.236672px;}
.lse{letter-spacing:22.474272px;}
.ls70{letter-spacing:22.664726px;}
.ls58{letter-spacing:22.900272px;}
.ls5e{letter-spacing:22.906272px;}
.ls6c{letter-spacing:22.930800px;}
.lsd{letter-spacing:23.408400px;}
.ls7{letter-spacing:23.527834px;}
.ls6e{letter-spacing:23.846400px;}
.ls6d{letter-spacing:23.852400px;}
.ls40{letter-spacing:23.978045px;}
.ls3f{letter-spacing:24.679690px;}
.ls5d{letter-spacing:24.749510px;}
.ls57{letter-spacing:24.755510px;}
.ls17{letter-spacing:24.860045px;}
.ls6f{letter-spacing:25.520074px;}
.ls48{letter-spacing:25.832045px;}
.ls14{letter-spacing:26.443690px;}
.ls69{letter-spacing:26.755738px;}
.ls63{letter-spacing:26.915510px;}
.ls50{letter-spacing:27.260726px;}
.ls32{letter-spacing:27.920136px;}
.ls11{letter-spacing:28.103126px;}
.ls67{letter-spacing:28.724074px;}
.ls10{letter-spacing:29.024726px;}
.ls65{letter-spacing:29.243510px;}
.ls4d{letter-spacing:29.452090px;}
.ls4c{letter-spacing:29.729510px;}
.ls68{letter-spacing:33.283277px;}
.ls5{letter-spacing:35.865600px;}
.ls6{letter-spacing:125.099453px;}
.ls79{letter-spacing:239.098500px;}
.ls61{letter-spacing:322.969200px;}
.ls34{letter-spacing:533.227200px;}
.ls3e{letter-spacing:708.391200px;}
.ls4a{letter-spacing:838.712136px;}
.ls29{letter-spacing:854.071200px;}
.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;}
}
.ws4{word-spacing:-34.465050px;}
.ws6{word-spacing:-33.721200px;}
.ws119{word-spacing:-31.890432px;}
.ws115{word-spacing:-31.143000px;}
.wsf8{word-spacing:-28.715287px;}
.ws10{word-spacing:-26.397082px;}
.ws31{word-spacing:-19.941274px;}
.ws11{word-spacing:-10.616218px;}
.ws15{word-spacing:-10.544486px;}
.ws3{word-spacing:-6.198750px;}
.ws10a{word-spacing:-4.734259px;}
.ws24{word-spacing:-4.375603px;}
.ws94{word-spacing:-4.303872px;}
.ws49{word-spacing:-4.160410px;}
.ws43{word-spacing:-4.088678px;}
.wsa7{word-spacing:-4.016947px;}
.ws7c{word-spacing:-3.945216px;}
.ws108{word-spacing:-3.801754px;}
.wsed{word-spacing:-3.730022px;}
.ws56{word-spacing:-3.658291px;}
.wsbc{word-spacing:-3.610915px;}
.wsb6{word-spacing:-3.586560px;}
.wsaf{word-spacing:-3.443098px;}
.wsad{word-spacing:-3.299635px;}
.wsae{word-spacing:-3.280310px;}
.wsc5{word-spacing:-3.156173px;}
.wseb{word-spacing:-3.084442px;}
.ws84{word-spacing:-3.012710px;}
.ws22{word-spacing:-2.940979px;}
.ws85{word-spacing:-2.869248px;}
.wsdb{word-spacing:-2.725786px;}
.ws97{word-spacing:-2.654054px;}
.ws23{word-spacing:-2.582323px;}
.wsfe{word-spacing:-2.438861px;}
.wsfa{word-spacing:-2.295398px;}
.wsf9{word-spacing:-2.223667px;}
.ws103{word-spacing:-2.151936px;}
.ws6e{word-spacing:-2.008474px;}
.ws5a{word-spacing:-1.936742px;}
.wsa1{word-spacing:-1.865011px;}
.wsfb{word-spacing:-1.793280px;}
.ws3c{word-spacing:-1.721549px;}
.ws80{word-spacing:-1.649818px;}
.wse5{word-spacing:-1.618915px;}
.ws10e{word-spacing:-1.578086px;}
.ws37{word-spacing:-1.506355px;}
.wsf3{word-spacing:-1.434624px;}
.ws7b{word-spacing:-1.362893px;}
.wsac{word-spacing:-1.291162px;}
.ws60{word-spacing:-1.219430px;}
.wsa4{word-spacing:-1.147699px;}
.wsf4{word-spacing:-1.075968px;}
.ws5f{word-spacing:-1.004237px;}
.ws73{word-spacing:-0.932506px;}
.wsc{word-spacing:-0.916364px;}
.ws26{word-spacing:-0.789043px;}
.ws2b{word-spacing:-0.717312px;}
.wse0{word-spacing:-0.645581px;}
.wsa3{word-spacing:-0.573850px;}
.ws106{word-spacing:-0.502118px;}
.ws41{word-spacing:-0.430387px;}
.wsa5{word-spacing:-0.358656px;}
.ws7e{word-spacing:-0.286925px;}
.ws7d{word-spacing:-0.215194px;}
.ws1e{word-spacing:-0.143462px;}
.ws58{word-spacing:-0.071731px;}
.ws112{word-spacing:-0.035866px;}
.ws100{word-spacing:-0.014899px;}
.ws101{word-spacing:-0.007210px;}
.ws105{word-spacing:-0.005626px;}
.ws107{word-spacing:-0.002736px;}
.wsf0{word-spacing:-0.002122px;}
.ws102{word-spacing:-0.001747px;}
.wsbf{word-spacing:-0.000326px;}
.ws7{word-spacing:0.000000px;}
.wsd2{word-spacing:0.001085px;}
.wsc1{word-spacing:0.071731px;}
.wsc2{word-spacing:0.079085px;}
.ws90{word-spacing:0.143462px;}
.ws3d{word-spacing:0.286925px;}
.ws62{word-spacing:0.358656px;}
.ws126{word-spacing:0.369542px;}
.ws127{word-spacing:0.372269px;}
.ws12e{word-spacing:0.375542px;}
.ws39{word-spacing:0.430387px;}
.ws6f{word-spacing:0.502118px;}
.ws9b{word-spacing:0.645581px;}
.ws0{word-spacing:0.694260px;}
.ws95{word-spacing:0.717312px;}
.ws4d{word-spacing:0.789043px;}
.wsc6{word-spacing:0.860774px;}
.ws96{word-spacing:0.932506px;}
.ws44{word-spacing:1.004237px;}
.wsb7{word-spacing:1.009085px;}
.ws2c{word-spacing:1.075968px;}
.ws25{word-spacing:1.147699px;}
.ws75{word-spacing:1.219430px;}
.ws71{word-spacing:1.291162px;}
.wsab{word-spacing:1.362893px;}
.wsb{word-spacing:1.374547px;}
.ws74{word-spacing:1.434624px;}
.ws55{word-spacing:1.506355px;}
.wsc7{word-spacing:1.578086px;}
.wsd1{word-spacing:1.649818px;}
.ws47{word-spacing:1.721549px;}
.wse1{word-spacing:1.793280px;}
.wsa2{word-spacing:1.865011px;}
.wse4{word-spacing:1.876358px;}
.wsf6{word-spacing:1.932701px;}
.ws21{word-spacing:1.936742px;}
.wsd7{word-spacing:2.008474px;}
.wsa8{word-spacing:2.075885px;}
.ws4a{word-spacing:2.080205px;}
.wse3{word-spacing:2.151936px;}
.ws59{word-spacing:2.223667px;}
.ws65{word-spacing:2.295398px;}
.ws40{word-spacing:2.367130px;}
.wscc{word-spacing:2.438861px;}
.ws2d{word-spacing:2.510592px;}
.ws1a{word-spacing:2.582323px;}
.ws4e{word-spacing:2.654054px;}
.wscf{word-spacing:2.725786px;}
.wsaa{word-spacing:2.797517px;}
.ws64{word-spacing:2.869248px;}
.wsbb{word-spacing:2.924064px;}
.ws66{word-spacing:2.940979px;}
.ws57{word-spacing:3.012710px;}
.wse2{word-spacing:3.084442px;}
.ws61{word-spacing:3.156173px;}
.ws52{word-spacing:3.227904px;}
.wsd8{word-spacing:3.299635px;}
.ws4b{word-spacing:3.443098px;}
.wsc0{word-spacing:3.514829px;}
.ws51{word-spacing:3.586560px;}
.ws3a{word-spacing:3.658291px;}
.ws42{word-spacing:3.730022px;}
.wsbe{word-spacing:3.801754px;}
.ws53{word-spacing:3.873485px;}
.wsda{word-spacing:3.910906px;}
.ws1f{word-spacing:3.945216px;}
.wsf5{word-spacing:4.007530px;}
.ws20{word-spacing:4.016947px;}
.ws83{word-spacing:4.088678px;}
.ws8d{word-spacing:4.160410px;}
.ws3b{word-spacing:4.232141px;}
.ws68{word-spacing:4.303872px;}
.ws1b{word-spacing:4.375603px;}
.wsec{word-spacing:4.447334px;}
.ws9{word-spacing:4.450913px;}
.ws30{word-spacing:4.519066px;}
.ws46{word-spacing:4.590797px;}
.wsea{word-spacing:4.662528px;}
.wsd{word-spacing:4.730016px;}
.ws28{word-spacing:4.734259px;}
.ws78{word-spacing:4.805990px;}
.wsd0{word-spacing:4.877722px;}
.ws8a{word-spacing:4.949453px;}
.wsa9{word-spacing:5.021184px;}
.wse7{word-spacing:5.072400px;}
.ws54{word-spacing:5.092915px;}
.ws81{word-spacing:5.164646px;}
.ws82{word-spacing:5.236378px;}
.wscb{word-spacing:5.308109px;}
.ws2f{word-spacing:5.379840px;}
.wsa{word-spacing:5.432732px;}
.ws17{word-spacing:5.451571px;}
.ws18{word-spacing:5.523302px;}
.ws7f{word-spacing:5.595034px;}
.ws76{word-spacing:5.666765px;}
.wsdc{word-spacing:5.738496px;}
.wsba{word-spacing:5.810227px;}
.ws69{word-spacing:5.881958px;}
.ws72{word-spacing:5.953690px;}
.ws19{word-spacing:6.025421px;}
.ws89{word-spacing:6.097152px;}
.ws6b{word-spacing:6.168883px;}
.ws6d{word-spacing:6.240614px;}
.ws5b{word-spacing:6.312346px;}
.ws5c{word-spacing:6.384077px;}
.ws86{word-spacing:6.455808px;}
.ws92{word-spacing:6.527539px;}
.wsc3{word-spacing:6.567485px;}
.ws32{word-spacing:6.599270px;}
.wsf1{word-spacing:6.671002px;}
.ws29{word-spacing:6.742733px;}
.ws99{word-spacing:6.814464px;}
.ws1d{word-spacing:6.886195px;}
.ws1c{word-spacing:6.957926px;}
.ws77{word-spacing:7.029658px;}
.ws79{word-spacing:7.101389px;}
.wsb8{word-spacing:7.244851px;}
.wsca{word-spacing:7.316582px;}
.wse6{word-spacing:7.388314px;}
.ws5e{word-spacing:7.460045px;}
.wsd9{word-spacing:7.531776px;}
.ws87{word-spacing:7.603507px;}
.ws2e{word-spacing:7.675238px;}
.ws6c{word-spacing:7.818701px;}
.ws45{word-spacing:7.890432px;}
.ws6a{word-spacing:7.962163px;}
.wsc4{word-spacing:7.972906px;}
.ws70{word-spacing:8.033894px;}
.ws63{word-spacing:8.105626px;}
.ws48{word-spacing:8.177357px;}
.ws50{word-spacing:8.249088px;}
.ws10d{word-spacing:8.320819px;}
.ws8f{word-spacing:8.536013px;}
.wse8{word-spacing:8.679475px;}
.wse9{word-spacing:8.751206px;}
.ws4c{word-spacing:8.822938px;}
.ws7a{word-spacing:8.894669px;}
.ws8c{word-spacing:8.966400px;}
.wsef{word-spacing:9.038131px;}
.ws8{word-spacing:9.098189px;}
.ws27{word-spacing:9.109862px;}
.ws8b{word-spacing:9.181594px;}
.ws3e{word-spacing:9.253325px;}
.ws8e{word-spacing:9.396787px;}
.wscd{word-spacing:9.468518px;}
.wsa6{word-spacing:9.540250px;}
.ws67{word-spacing:9.683712px;}
.wsde{word-spacing:9.827174px;}
.ws3f{word-spacing:9.898906px;}
.ws88{word-spacing:9.970637px;}
.ws109{word-spacing:10.042368px;}
.ws33{word-spacing:10.114099px;}
.wsf2{word-spacing:10.185830px;}
.wsee{word-spacing:10.329293px;}
.wsce{word-spacing:10.687949px;}
.ws5d{word-spacing:10.759680px;}
.ws98{word-spacing:10.903142px;}
.wsc8{word-spacing:10.935590px;}
.wsb5{word-spacing:11.118336px;}
.ws91{word-spacing:11.190067px;}
.ws9c{word-spacing:11.333530px;}
.wsfc{word-spacing:11.453750px;}
.wsfd{word-spacing:11.476992px;}
.ws34{word-spacing:11.548723px;}
.ws36{word-spacing:11.620454px;}
.wsff{word-spacing:11.692186px;}
.ws4f{word-spacing:11.763917px;}
.ws2a{word-spacing:11.835648px;}
.ws10f{word-spacing:12.122573px;}
.wsdf{word-spacing:12.481229px;}
.ws110{word-spacing:12.552960px;}
.ws9a{word-spacing:12.639581px;}
.ws2{word-spacing:12.988380px;}
.ws5{word-spacing:12.992580px;}
.ws1{word-spacing:13.035120px;}
.wsf7{word-spacing:13.413734px;}
.ws35{word-spacing:14.489702px;}
.ws10c{word-spacing:14.633165px;}
.ws104{word-spacing:15.207014px;}
.wsf{word-spacing:15.924326px;}
.wsc9{word-spacing:17.312400px;}
.ws10b{word-spacing:18.004531px;}
.wsdd{word-spacing:19.869542px;}
.wsbd{word-spacing:21.526214px;}
.ws14{word-spacing:29.338061px;}
.wse{word-spacing:47.772979px;}
.wsa0{word-spacing:51.789926px;}
.wsb1{word-spacing:53.541863px;}
.ws9f{word-spacing:55.878605px;}
.wsb9{word-spacing:61.439404px;}
.ws16{word-spacing:74.577113px;}
.wsb2{word-spacing:89.934620px;}
.wsb3{word-spacing:108.130999px;}
.ws11e{word-spacing:140.516772px;}
.ws113{word-spacing:144.320772px;}
.wsb0{word-spacing:151.789217px;}
.wsb4{word-spacing:159.120133px;}
.ws11f{word-spacing:170.018772px;}
.ws114{word-spacing:170.024772px;}
.ws11b{word-spacing:173.822772px;}
.ws117{word-spacing:221.277244px;}
.ws123{word-spacing:221.706653px;}
.ws116{word-spacing:225.089147px;}
.ws11d{word-spacing:225.506534px;}
.ws118{word-spacing:251.202662px;}
.ws120{word-spacing:255.004416px;}
.ws111{word-spacing:278.137728px;}
.ws38{word-spacing:293.165414px;}
.ws93{word-spacing:295.389082px;}
.wsd5{word-spacing:442.792109px;}
.wsd4{word-spacing:465.790906px;}
.wsd6{word-spacing:501.401088px;}
.ws122{word-spacing:706.407936px;}
.ws11c{word-spacing:729.017741px;}
.ws12d{word-spacing:740.782579px;}
.ws124{word-spacing:774.911232px;}
.ws11a{word-spacing:793.597210px;}
.ws129{word-spacing:802.703741px;}
.ws121{word-spacing:822.340032px;}
.ws12c{word-spacing:878.093232px;}
.wsd3{word-spacing:888.338525px;}
.ws128{word-spacing:896.779210px;}
.ws12a{word-spacing:906.570518px;}
.ws12b{word-spacing:932.982077px;}
.ws9d{word-spacing:987.523430px;}
.ws9e{word-spacing:1052.081510px;}
.ws125{word-spacing:1177.960579px;}
.ws12{word-spacing:2335.917139px;}
.ws13{word-spacing:2395.095379px;}
._1a{margin-left:-38.017536px;}
._18{margin-left:-35.865600px;}
._19{margin-left:-15.924326px;}
._96{margin-left:-13.610221px;}
._95{margin-left:-12.127899px;}
._41{margin-left:-10.493520px;}
._8{margin-left:-8.628480px;}
._2f{margin-left:-7.451057px;}
._2{margin-left:-6.198750px;}
._5{margin-left:-4.529280px;}
._3{margin-left:-2.728725px;}
._6{margin-left:-1.700784px;}
._1{width:1.504020px;}
._4{width:3.173760px;}
._94{width:4.217760px;}
._0{width:5.934300px;}
._77{width:7.060989px;}
._1e{width:8.464282px;}
._9a{width:12.337766px;}
._78{width:15.305633px;}
._45{width:17.319756px;}
._2d{width:18.868216px;}
._10{width:19.941274px;}
._b{width:22.189109px;}
._2b{width:23.952675px;}
._13{width:25.252322px;}
._2c{width:26.262437px;}
._27{width:27.649045px;}
._7{width:29.610557px;}
._16{width:30.703289px;}
._25{width:32.626373px;}
._21{width:34.292840px;}
._9{width:35.869121px;}
._46{width:36.906155px;}
._a{width:38.880032px;}
._2a{width:40.495595px;}
._7a{width:41.726189px;}
._24{width:42.941302px;}
._47{width:44.476283px;}
._1b{width:45.927358px;}
._48{width:47.423476px;}
._26{width:48.643679px;}
._93{width:49.721879px;}
._23{width:51.403733px;}
._92{width:52.414742px;}
._49{width:54.490514px;}
._29{width:57.270797px;}
._4a{width:58.750792px;}
._2e{width:60.254208px;}
._28{width:63.513772px;}
._f{width:65.275392px;}
._d{width:67.714253px;}
._20{width:70.009651px;}
._1f{width:71.745911px;}
._1c{width:72.950026px;}
._11{width:74.387590px;}
._55{width:77.958929px;}
._5f{width:79.047782px;}
._14{width:80.529969px;}
._44{width:86.077200px;}
._79{width:90.713450px;}
._31{width:96.273485px;}
._57{width:99.918622px;}
._43{width:103.292400px;}
._58{width:107.596800px;}
._72{width:108.879992px;}
._5a{width:112.495286px;}
._5b{width:119.504179px;}
._12{width:121.010534px;}
._65{width:126.739273px;}
._64{width:131.548111px;}
._6e{width:135.425567px;}
._68{width:142.199471px;}
._6c{width:144.700153px;}
._6b{width:147.633638px;}
._39{width:148.988038px;}
._a9{width:152.464666px;}
._6a{width:154.583397px;}
._a8{width:156.266419px;}
._75{width:159.054678px;}
._66{width:161.971143px;}
._33{width:163.403674px;}
._73{width:167.561539px;}
._34{width:169.429094px;}
._37{width:171.007181px;}
._76{width:177.292576px;}
._60{width:185.367427px;}
._38{width:196.474696px;}
._62{width:200.356531px;}
._a2{width:202.187942px;}
._69{width:205.021511px;}
._6f{width:206.493628px;}
._3c{width:207.856253px;}
._3f{width:212.632042px;}
._70{width:214.117273px;}
._4e{width:218.977528px;}
._67{width:222.607497px;}
._63{width:227.192917px;}
._74{width:229.577471px;}
._4c{width:235.713998px;}
._a3{width:240.133747px;}
._71{width:243.617308px;}
._3e{width:246.862535px;}
._4f{width:250.421833px;}
._a0{width:254.664209px;}
._7f{width:265.910498px;}
._a1{width:288.322637px;}
._4b{width:292.427338px;}
._42{width:298.114867px;}
._6d{width:313.364545px;}
._40{width:317.410560px;}
._b0{width:327.047866px;}
._4d{width:331.326413px;}
._35{width:337.351834px;}
._3d{width:349.145952px;}
._84{width:353.428108px;}
._30{width:355.407331px;}
._51{width:376.014950px;}
._3b{width:377.593037px;}
._32{width:396.030290px;}
._85{width:398.538547px;}
._36{width:421.420800px;}
._61{width:435.457927px;}
._3a{width:442.205261px;}
._a5{width:450.130399px;}
._7c{width:462.733382px;}
._89{width:466.681382px;}
._9f{width:473.654669px;}
._a6{width:496.310191px;}
._8d{width:521.342362px;}
._a4{width:556.062280px;}
._54{width:570.443275px;}
._ae{width:576.836669px;}
._56{width:603.474586px;}
._50{width:609.712274px;}
._99{width:625.799483px;}
._a7{width:641.820187px;}
._52{width:647.230618px;}
._97{width:652.952803px;}
._80{width:657.846835px;}
._9b{width:660.242621px;}
._b2{width:667.242309px;}
._b1{width:669.719371px;}
._9c{width:670.933509px;}
._98{width:679.160006px;}
._59{width:682.486384px;}
._53{width:698.542101px;}
._5c{width:725.025925px;}
._aa{width:726.632803px;}
._9e{width:731.973821px;}
._9d{width:733.468015px;}
._ad{width:744.619509px;}
._7b{width:749.519309px;}
._b3{width:754.940289px;}
._ac{width:763.424621px;}
._81{width:764.833802px;}
._ab{width:782.336006px;}
._7d{width:800.830792px;}
._8b{width:804.716349px;}
._82{width:807.373343px;}
._90{width:833.982407px;}
._88{width:835.814278px;}
._5d{width:843.210470px;}
._8c{width:847.255890px;}
._af{width:853.554874px;}
._83{width:871.451798px;}
._87{width:934.565040px;}
._8e{width:951.216893px;}
._5e{width:1065.782170px;}
._86{width:1068.364493px;}
._7e{width:1110.019555px;}
._8f{width:1122.739078px;}
._91{width:1129.031501px;}
._8a{width:1149.902102px;}
._22{width:1233.091865px;}
._15{width:2018.064816px;}
._1d{width:2032.288358px;}
._e{width:2077.888637px;}
._17{width:2187.945062px;}
._c{width:2257.431830px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(20,86,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.143000px;}
.fsa{font-size:35.865600px;}
.fsc{font-size:37.371600px;}
.fs8{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fs4{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs7{font-size:74.743800px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:99.180000px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.fs2{font-size:170.078400px;}
.y0{bottom:0.000000px;}
.y15{bottom:40.207500px;}
.y87{bottom:57.730500px;}
.y6b{bottom:57.732000px;}
.y2b{bottom:61.467000px;}
.y86{bottom:102.562500px;}
.yf3{bottom:103.080000px;}
.ydc{bottom:109.564500px;}
.y1f4{bottom:112.585500px;}
.y1e3{bottom:114.318000px;}
.y153{bottom:122.953500px;}
.yc0{bottom:122.971500px;}
.y99{bottom:125.736000px;}
.y6a{bottom:131.310000px;}
.y1cd{bottom:132.700500px;}
.yb1{bottom:132.817500px;}
.y19a{bottom:134.029500px;}
.y85{bottom:135.066000px;}
.yf2{bottom:135.582000px;}
.ydb{bottom:142.068000px;}
.y1f9{bottom:142.323000px;}
.y258{bottom:143.157000px;}
.y1f3{bottom:145.087500px;}
.y1e2{bottom:146.821500px;}
.y152{bottom:155.455500px;}
.ybf{bottom:155.473500px;}
.y98{bottom:158.238000px;}
.yb{bottom:159.621000px;}
.y1cc{bottom:165.204000px;}
.yb0{bottom:165.321000px;}
.y199{bottom:166.533000px;}
.y84{bottom:167.569500px;}
.yf1{bottom:168.085500px;}
.y22a{bottom:171.238500px;}
.yda{bottom:174.571500px;}
.y1f8{bottom:174.826500px;}
.y11e{bottom:174.955500px;}
.y69{bottom:174.984000px;}
.y1a4{bottom:175.930500px;}
.yed{bottom:177.531000px;}
.ybe{bottom:187.977000px;}
.y97{bottom:190.741500px;}
.y257{bottom:195.853500px;}
.y4f{bottom:196.338000px;}
.y1b2{bottom:196.551000px;}
.y1b0{bottom:196.555500px;}
.y1cb{bottom:197.707500px;}
.yaf{bottom:197.824500px;}
.y198{bottom:199.036500px;}
.y83{bottom:200.073000px;}
.yf0{bottom:200.589000px;}
.y151{bottom:202.027500px;}
.ya{bottom:204.267000px;}
.y135{bottom:206.370000px;}
.yd9{bottom:207.073500px;}
.y1f2{bottom:207.330000px;}
.y11d{bottom:207.459000px;}
.y68{bottom:207.487500px;}
.y1a3{bottom:208.434000px;}
.y1e1{bottom:209.062500px;}
.y134{bottom:211.260000px;}
.y136{bottom:212.640000px;}
.ybd{bottom:220.480500px;}
.y256{bottom:222.978000px;}
.y96{bottom:223.245000px;}
.y229{bottom:223.935000px;}
.y189{bottom:226.869000px;}
.y4e{bottom:228.840000px;}
.y131{bottom:228.907500px;}
.y1ca{bottom:230.209500px;}
.yae{bottom:230.326500px;}
.y197{bottom:231.538500px;}
.y130{bottom:232.897500px;}
.yef{bottom:233.091000px;}
.y132{bottom:236.029500px;}
.yd8{bottom:239.577000px;}
.y1f1{bottom:239.833500px;}
.y67{bottom:239.989500px;}
.y1a2{bottom:240.937500px;}
.y1e0{bottom:241.566000px;}
.y133{bottom:241.957500px;}
.y255{bottom:246.517500px;}
.y228{bottom:251.061000px;}
.ybc{bottom:252.984000px;}
.y95{bottom:255.748500px;}
.y188{bottom:259.372500px;}
.y4d{bottom:261.343500px;}
.y254{bottom:262.209000px;}
.yec{bottom:262.210500px;}
.y82{bottom:262.314000px;}
.y1c9{bottom:262.713000px;}
.yad{bottom:262.830000px;}
.y196{bottom:264.042000px;}
.y2a{bottom:266.049000px;}
.y1f7{bottom:269.571000px;}
.yd7{bottom:272.080500px;}
.y66{bottom:272.493000px;}
.y150{bottom:272.857500px;}
.y1a1{bottom:273.441000px;}
.y11c{bottom:273.442500px;}
.y1df{bottom:274.069500px;}
.y227{bottom:274.599000px;}
.y253{bottom:277.899000px;}
.yee{bottom:279.663000px;}
.y11b{bottom:279.712500px;}
.y163{bottom:282.727500px;}
.y1d0{bottom:285.486000px;}
.y226{bottom:290.290500px;}
.y187{bottom:291.876000px;}
.y252{bottom:293.590500px;}
.y4c{bottom:293.847000px;}
.yeb{bottom:294.714000px;}
.y81{bottom:294.817500px;}
.y1c8{bottom:295.216500px;}
.yac{bottom:295.333500px;}
.y119{bottom:295.980000px;}
.y195{bottom:296.545500px;}
.y1fb{bottom:299.310000px;}
.y1f0{bottom:302.074500px;}
.y11a{bottom:303.100500px;}
.y173{bottom:303.343500px;}
.yd6{bottom:304.582500px;}
.y65{bottom:304.996500px;}
.y14f{bottom:305.359500px;}
.y1a0{bottom:305.943000px;}
.y225{bottom:305.982000px;}
.y251{bottom:309.282000px;}
.ybb{bottom:315.225000px;}
.y162{bottom:315.828000px;}
.y29{bottom:316.485000px;}
.y94{bottom:317.989500px;}
.y224{bottom:321.673500px;}
.y12f{bottom:323.652000px;}
.yfc{bottom:323.686500px;}
.y186{bottom:324.378000px;}
.y250{bottom:324.973500px;}
.y4b{bottom:326.349000px;}
.yea{bottom:327.217500px;}
.y80{bottom:327.321000px;}
.y1c7{bottom:327.720000px;}
.yab{bottom:327.837000px;}
.y194{bottom:329.047500px;}
.y1af{bottom:329.049000px;}
.y9{bottom:329.655000px;}
.y1fa{bottom:331.813500px;}
.y118{bottom:333.010500px;}
.y1ef{bottom:334.578000px;}
.y1de{bottom:336.310500px;}
.y172{bottom:336.445500px;}
.y223{bottom:337.363500px;}
.y64{bottom:337.500000px;}
.y14e{bottom:337.863000px;}
.y19f{bottom:338.446500px;}
.y117{bottom:339.279000px;}
.y24f{bottom:340.663500px;}
.yd5{bottom:345.855000px;}
.yba{bottom:347.728500px;}
.y161{bottom:348.331500px;}
.y93{bottom:350.493000px;}
.y222{bottom:353.055000px;}
.y116{bottom:355.546500px;}
.y12e{bottom:356.155500px;}
.y24e{bottom:356.355000px;}
.y185{bottom:356.881500px;}
.ye9{bottom:359.719500px;}
.y7f{bottom:359.823000px;}
.yaa{bottom:360.339000px;}
.y193{bottom:361.551000px;}
.y1f6{bottom:364.315500px;}
.y28{bottom:366.921000px;}
.y221{bottom:368.746500px;}
.y1dd{bottom:368.814000px;}
.y171{bottom:368.947500px;}
.y63{bottom:370.002000px;}
.y8{bottom:370.003500px;}
.y14d{bottom:370.366500px;}
.y19e{bottom:370.950000px;}
.y24d{bottom:372.046500px;}
.yfb{bottom:375.258000px;}
.yb9{bottom:380.230500px;}
.y160{bottom:380.835000px;}
.y92{bottom:382.996500px;}
.y220{bottom:384.438000px;}
.y24c{bottom:387.738000px;}
.y4a{bottom:388.591500px;}
.yd4{bottom:389.529000px;}
.y1c6{bottom:389.961000px;}
.ye8{bottom:392.223000px;}
.y7e{bottom:392.326500px;}
.y192{bottom:394.054500px;}
.y1ee{bottom:396.819000px;}
.y21f{bottom:400.128000px;}
.y170{bottom:401.451000px;}
.y62{bottom:402.505500px;}
.y14c{bottom:402.870000px;}
.y24b{bottom:403.428000px;}
.y184{bottom:403.453500px;}
.yfa{bottom:406.342500px;}
.yc2{bottom:406.911000px;}
.yb8{bottom:412.734000px;}
.y15f{bottom:413.338500px;}
.y91{bottom:415.498500px;}
.y21e{bottom:415.819500px;}
.y27{bottom:417.355500px;}
.y12d{bottom:418.396500px;}
.y24a{bottom:419.119500px;}
.y105{bottom:419.406000px;}
.y49{bottom:421.095000px;}
.y1c5{bottom:422.464500px;}
.ya9{bottom:422.581500px;}
.yd3{bottom:422.629500px;}
.ye7{bottom:424.726500px;}
.y7d{bottom:424.830000px;}
.y1ae{bottom:426.558000px;}
.y1ed{bottom:429.322500px;}
.y1dc{bottom:431.055000px;}
.y21d{bottom:431.511000px;}
.y16f{bottom:433.954500px;}
.y249{bottom:434.811000px;}
.y61{bottom:435.009000px;}
.y14b{bottom:435.372000px;}
.yf9{bottom:436.827000px;}
.yb7{bottom:445.237500px;}
.y15e{bottom:445.840500px;}
.y21c{bottom:447.202500px;}
.y90{bottom:448.002000px;}
.y26{bottom:449.859000px;}
.y19d{bottom:450.024000px;}
.y248{bottom:450.502500px;}
.y12c{bottom:450.900000px;}
.y48{bottom:453.597000px;}
.y1c4{bottom:454.966500px;}
.ya8{bottom:455.083500px;}
.yd2{bottom:455.133000px;}
.y191{bottom:456.295500px;}
.y7c{bottom:457.333500px;}
.ye6{bottom:457.827000px;}
.y1f5{bottom:459.060000px;}
.y1ad{bottom:459.061500px;}
.y21b{bottom:462.892500px;}
.y1db{bottom:463.558500px;}
.y247{bottom:466.194000px;}
.y183{bottom:466.437000px;}
.y16e{bottom:466.456500px;}
.yf8{bottom:467.313000px;}
.y60{bottom:467.511000px;}
.y14a{bottom:467.875500px;}
.y1b1{bottom:467.967000px;}
.y115{bottom:468.225000px;}
.y104{bottom:470.977500px;}
.y143{bottom:473.556000px;}
.y7{bottom:476.599500px;}
.yb6{bottom:477.741000px;}
.y15d{bottom:478.344000px;}
.y21a{bottom:478.584000px;}
.y8f{bottom:480.505500px;}
.y246{bottom:481.884000px;}
.y25{bottom:482.362500px;}
.y12b{bottom:483.403500px;}
.y14{bottom:486.076500px;}
.y47{bottom:486.100500px;}
.y1c3{bottom:487.470000px;}
.ya7{bottom:487.587000px;}
.yd1{bottom:487.636500px;}
.y190{bottom:488.799000px;}
.y7b{bottom:489.835500px;}
.y1ac{bottom:491.563500px;}
.y219{bottom:494.275500px;}
.y1da{bottom:496.062000px;}
.y245{bottom:497.575500px;}
.yf7{bottom:497.799000px;}
.y182{bottom:498.940500px;}
.y16d{bottom:498.960000px;}
.y149{bottom:500.379000px;}
.y5f{bottom:500.613000px;}
.y114{bottom:500.727000px;}
.y103{bottom:502.062000px;}
.y142{bottom:506.059500px;}
.y218{bottom:509.967000px;}
.yb5{bottom:510.243000px;}
.y15c{bottom:510.847500px;}
.y8e{bottom:513.009000px;}
.y244{bottom:513.267000px;}
.y24{bottom:514.866000px;}
.y12a{bottom:515.907000px;}
.y46{bottom:518.604000px;}
.y1c2{bottom:519.973500px;}
.ya6{bottom:520.090500px;}
.yd0{bottom:520.140000px;}
.y6{bottom:521.244000px;}
.y18f{bottom:521.302500px;}
.y7a{bottom:522.339000px;}
.ye5{bottom:522.834000px;}
.y1ec{bottom:524.067000px;}
.y217{bottom:525.658500px;}
.y1d9{bottom:528.564000px;}
.yf6{bottom:528.882000px;}
.y243{bottom:528.958500px;}
.y181{bottom:531.444000px;}
.y16c{bottom:531.463500px;}
.y102{bottom:532.546500px;}
.y148{bottom:532.882500px;}
.y5e{bottom:533.115000px;}
.y113{bottom:533.230500px;}
.y141{bottom:538.563000px;}
.y216{bottom:541.348500px;}
.yb4{bottom:542.746500px;}
.y15b{bottom:543.351000px;}
.y242{bottom:544.648500px;}
.y8d{bottom:545.511000px;}
.y23{bottom:547.368000px;}
.y129{bottom:548.409000px;}
.y1c1{bottom:552.477000px;}
.ya5{bottom:552.594000px;}
.ycf{bottom:553.240500px;}
.y1ab{bottom:553.806000px;}
.ye4{bottom:555.336000px;}
.y215{bottom:557.040000px;}
.yf5{bottom:559.368000px;}
.y241{bottom:560.340000px;}
.y13{bottom:561.768000px;}
.y101{bottom:563.032500px;}
.y180{bottom:563.946000px;}
.y16b{bottom:563.967000px;}
.y112{bottom:565.734000px;}
.y79{bottom:568.911000px;}
.y140{bottom:571.065000px;}
.y214{bottom:572.731500px;}
.yb3{bottom:575.250000px;}
.y15a{bottom:575.853000px;}
.y240{bottom:576.031500px;}
.y8c{bottom:578.014500px;}
.y22{bottom:579.871500px;}
.y38{bottom:580.045500px;}
.y45{bottom:580.845000px;}
.y128{bottom:580.912500px;}
.y18e{bottom:583.543500px;}
.y1c0{bottom:584.979000px;}
.ya4{bottom:585.096000px;}
.y1aa{bottom:586.308000px;}
.y5d{bottom:587.100000px;}
.ye3{bottom:587.839500px;}
.y213{bottom:588.423000px;}
.y1d8{bottom:590.806500px;}
.y23f{bottom:591.723000px;}
.y12{bottom:592.254000px;}
.y100{bottom:593.518500px;}
.y147{bottom:595.123500px;}
.y17f{bottom:596.449500px;}
.y16a{bottom:596.469000px;}
.y111{bottom:598.237500px;}
.y13f{bottom:603.568500px;}
.y212{bottom:604.113000px;}
.yce{bottom:607.225500px;}
.y23e{bottom:607.413000px;}
.yb2{bottom:607.753500px;}
.y159{bottom:608.356500px;}
.yf4{bottom:609.588000px;}
.y19c{bottom:610.518000px;}
.y37{bottom:612.549000px;}
.y44{bottom:613.348500px;}
.y18d{bottom:616.047000px;}
.y1bf{bottom:617.482500px;}
.ya3{bottom:617.599500px;}
.y1eb{bottom:618.811500px;}
.y211{bottom:619.804500px;}
.ye2{bottom:620.343000px;}
.y11{bottom:622.738500px;}
.y23d{bottom:623.104500px;}
.y1d7{bottom:623.308500px;}
.yff{bottom:624.601500px;}
.y127{bottom:627.484500px;}
.y146{bottom:627.627000px;}
.y169{bottom:628.972500px;}
.y21{bottom:630.307500px;}
.y110{bottom:630.739500px;}
.y210{bottom:635.496000px;}
.y23c{bottom:638.796000px;}
.y78{bottom:639.351000px;}
.y5c{bottom:640.255500px;}
.y158{bottom:640.860000px;}
.y19b{bottom:643.021500px;}
.y36{bottom:645.051000px;}
.y43{bottom:645.852000px;}
.y1a9{bottom:648.550500px;}
.y5{bottom:648.759000px;}
.y1be{bottom:649.986000px;}
.ya2{bottom:650.103000px;}
.y20f{bottom:651.187500px;}
.ye1{bottom:652.846500px;}
.y10{bottom:653.224500px;}
.y23b{bottom:654.487500px;}
.yfe{bottom:655.087500px;}
.y17e{bottom:658.690500px;}
.ycd{bottom:660.129000px;}
.y168{bottom:661.476000px;}
.y20{bottom:662.811000px;}
.y13e{bottom:665.811000px;}
.y20e{bottom:666.877500px;}
.y23a{bottom:670.177500px;}
.y77{bottom:671.854500px;}
.y5b{bottom:672.759000px;}
.y157{bottom:673.363500px;}
.y35{bottom:677.554500px;}
.y18c{bottom:678.288000px;}
.y42{bottom:678.354000px;}
.y1a8{bottom:681.052500px;}
.y1ea{bottom:681.054000px;}
.y20d{bottom:682.569000px;}
.ya1{bottom:682.606500px;}
.yf{bottom:683.710500px;}
.ye0{bottom:685.348500px;}
.y1d6{bottom:685.551000px;}
.y239{bottom:685.869000px;}
.y17d{bottom:691.194000px;}
.ycc{bottom:692.632500px;}
.y10f{bottom:692.982000px;}
.y4{bottom:693.403500px;}
.y167{bottom:693.979500px;}
.y1f{bottom:695.314500px;}
.y20c{bottom:698.260500px;}
.y126{bottom:698.313000px;}
.y238{bottom:701.560500px;}
.y76{bottom:704.356500px;}
.y5a{bottom:705.262500px;}
.yfd{bottom:705.307500px;}
.y156{bottom:705.865500px;}
.y34{bottom:710.058000px;}
.y18b{bottom:710.791500px;}
.y41{bottom:710.857500px;}
.y1bd{bottom:712.227000px;}
.y1e9{bottom:713.556000px;}
.y20b{bottom:713.952000px;}
.ye{bottom:714.196500px;}
.ya0{bottom:715.108500px;}
.y237{bottom:717.252000px;}
.y1d5{bottom:718.054500px;}
.ydf{bottom:718.449000px;}
.y17c{bottom:723.697500px;}
.ycb{bottom:725.136000px;}
.y10e{bottom:725.484000px;}
.y166{bottom:726.481500px;}
.y20a{bottom:729.642000px;}
.y125{bottom:730.816500px;}
.y236{bottom:732.942000px;}
.y1cf{bottom:735.001500px;}
.y75{bottom:736.860000px;}
.y59{bottom:737.766000px;}
.y3{bottom:738.049500px;}
.y155{bottom:738.966000px;}
.y33{bottom:742.561500px;}
.y1a7{bottom:743.295000px;}
.y40{bottom:743.361000px;}
.yd{bottom:744.682500px;}
.y1bc{bottom:744.730500px;}
.y209{bottom:745.333500px;}
.y1e{bottom:745.750500px;}
.y9f{bottom:747.612000px;}
.y235{bottom:748.633500px;}
.y17b{bottom:756.201000px;}
.yca{bottom:757.639500px;}
.y10d{bottom:757.987500px;}
.y165{bottom:759.583500px;}
.y208{bottom:761.025000px;}
.y124{bottom:763.320000px;}
.y234{bottom:764.325000px;}
.y1ce{bottom:767.503500px;}
.y74{bottom:769.363500px;}
.y58{bottom:770.268000px;}
.y18a{bottom:773.034000px;}
.y32{bottom:775.063500px;}
.y1a6{bottom:775.798500px;}
.y3f{bottom:775.864500px;}
.y207{bottom:776.716500px;}
.y1bb{bottom:777.234000px;}
.y1d{bottom:778.252500px;}
.y233{bottom:780.016500px;}
.y9e{bottom:780.115500px;}
.y1d4{bottom:780.295500px;}
.yde{bottom:784.053000px;}
.y17a{bottom:788.703000px;}
.yc9{bottom:790.141500px;}
.y10c{bottom:790.491000px;}
.y154{bottom:790.597500px;}
.y206{bottom:792.406500px;}
.y232{bottom:795.706500px;}
.y13d{bottom:795.822000px;}
.y123{bottom:795.823500px;}
.yc3{bottom:800.007000px;}
.y73{bottom:801.867000px;}
.y57{bottom:802.771500px;}
.y31{bottom:807.567000px;}
.y205{bottom:808.098000px;}
.y1e8{bottom:808.300500px;}
.y3e{bottom:808.366500px;}
.y1ba{bottom:809.737500px;}
.yc{bottom:810.174000px;}
.y1c{bottom:810.756000px;}
.y164{bottom:811.213500px;}
.y231{bottom:811.398000px;}
.y9d{bottom:812.619000px;}
.y1d3{bottom:812.799000px;}
.y179{bottom:821.206500px;}
.yc8{bottom:822.645000px;}
.y10b{bottom:822.994500px;}
.y204{bottom:823.789500px;}
.y230{bottom:827.089500px;}
.y13c{bottom:828.325500px;}
.yc1{bottom:832.510500px;}
.y72{bottom:834.369000px;}
.y8b{bottom:835.275000px;}
.ydd{bottom:838.038000px;}
.y1a5{bottom:838.039500px;}
.y203{bottom:839.481000px;}
.y30{bottom:840.070500px;}
.y1b9{bottom:842.239500px;}
.y22f{bottom:842.781000px;}
.y9c{bottom:845.121000px;}
.y1d2{bottom:845.301000px;}
.y2{bottom:846.475500px;}
.y122{bottom:849.207000px;}
.y145{bottom:855.148500px;}
.y202{bottom:855.172500px;}
.y121{bottom:855.475500px;}
.y10a{bottom:855.496500px;}
.y22e{bottom:858.472500px;}
.y13b{bottom:860.829000px;}
.y1b{bottom:861.192000px;}
.y11f{bottom:862.746000px;}
.y56{bottom:865.014000px;}
.y71{bottom:866.872500px;}
.y8a{bottom:867.778500px;}
.yc7{bottom:869.217000px;}
.y1e7{bottom:870.543000px;}
.y3d{bottom:870.609000px;}
.y201{bottom:870.862500px;}
.y1b8{bottom:874.743000px;}
.y120{bottom:874.899000px;}
.y9b{bottom:877.624500px;}
.y1d1{bottom:877.804500px;}
.y22d{bottom:882.010500px;}
.y178{bottom:883.449000px;}
.y200{bottom:886.554000px;}
.y1a{bottom:893.695500px;}
.y2f{bottom:894.144000px;}
.y55{bottom:897.516000px;}
.y70{bottom:899.376000px;}
.y89{bottom:900.280500px;}
.y144{bottom:901.719000px;}
.y109{bottom:902.068500px;}
.y1{bottom:902.515500px;}
.y1e6{bottom:903.046500px;}
.y3c{bottom:903.112500px;}
.y22c{bottom:904.953000px;}
.y1b7{bottom:907.246500px;}
.y1ff{bottom:910.093500px;}
.y177{bottom:915.951000px;}
.y139{bottom:920.482500px;}
.y9a{bottom:924.196500px;}
.y19{bottom:926.197500px;}
.y54{bottom:930.019500px;}
.y6f{bottom:931.879500px;}
.y88{bottom:932.784000px;}
.y1fe{bottom:933.034500px;}
.y3b{bottom:935.614500px;}
.y13a{bottom:936.774000px;}
.y1b6{bottom:939.750000px;}
.yc6{bottom:940.047000px;}
.y137{bottom:944.925000px;}
.y176{bottom:948.454500px;}
.y138{bottom:948.915000px;}
.y1fd{bottom:955.975500px;}
.y18{bottom:958.701000px;}
.y22b{bottom:961.669500px;}
.y53{bottom:962.523000px;}
.y6e{bottom:964.381500px;}
.y1e5{bottom:965.287500px;}
.y3a{bottom:968.118000px;}
.y1b5{bottom:972.252000px;}
.yc5{bottom:972.549000px;}
.y108{bottom:972.898500px;}
.y2e{bottom:976.285500px;}
.y175{bottom:980.958000px;}
.y52{bottom:995.026500px;}
.y6d{bottom:996.885000px;}
.y1e4{bottom:997.791000px;}
.y39{bottom:1000.621500px;}
.y1b4{bottom:1004.755500px;}
.yc4{bottom:1005.052500px;}
.y107{bottom:1005.400500px;}
.y2d{bottom:1008.789000px;}
.y17{bottom:1009.137000px;}
.y1fc{bottom:1012.693500px;}
.y174{bottom:1013.461500px;}
.y51{bottom:1027.528500px;}
.y1b3{bottom:1058.830500px;}
.y6c{bottom:1059.127500px;}
.y106{bottom:1059.475500px;}
.y50{bottom:1060.032000px;}
.y2c{bottom:1062.862500px;}
.y16{bottom:1063.212000px;}
.h20{height:26.576410px;}
.h22{height:28.028700px;}
.h23{height:36.371250px;}
.h21{height:36.377250px;}
.h4{height:48.501859px;}
.h7{height:49.781453px;}
.h5{height:53.152819px;}
.h8{height:54.478819px;}
.h9{height:54.484819px;}
.h17{height:55.376486px;}
.h1c{height:55.735142px;}
.ha{height:56.057850px;}
.h1e{height:63.370090px;}
.h1d{height:63.376090px;}
.h3{height:63.783205px;}
.h15{height:66.721500px;}
.h13{height:71.665500px;}
.hc{height:75.194227px;}
.h6{height:76.539668px;}
.h10{height:79.775850px;}
.h19{height:80.714227px;}
.h18{height:90.887453px;}
.hd{height:91.795500px;}
.h11{height:91.801500px;}
.h1{height:91.865475px;}
.h1a{height:92.255453px;}
.hb{height:98.345453px;}
.h1b{height:118.222819px;}
.hf{height:120.283500px;}
.h2{height:126.028094px;}
.h16{height:127.438819px;}
.h14{height:140.413500px;}
.he{height:143.296819px;}
.h12{height:143.302819px;}
.h1f{height:918.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w1{width:1188.000000px;}
.x0{left:0.000000px;}
.x43{left:57.732000px;}
.x1{left:99.535500px;}
.x11{left:106.299000px;}
.x1d{left:119.247000px;}
.x41{left:120.507000px;}
.xd{left:128.937000px;}
.x12{left:133.198500px;}
.x45{left:135.019500px;}
.x16{left:138.564000px;}
.x4{left:141.700500px;}
.x40{left:150.196500px;}
.xc{left:153.481500px;}
.x25{left:155.962500px;}
.x48{left:157.938000px;}
.x49{left:159.928500px;}
.x27{left:162.928500px;}
.x3f{left:169.330500px;}
.x3d{left:171.823500px;}
.x13{left:174.444000px;}
.x3e{left:176.545500px;}
.x7{left:186.612000px;}
.x24{left:188.550000px;}
.x23{left:190.464000px;}
.x4e{left:200.796000px;}
.x3{left:207.541500px;}
.x37{left:210.972000px;}
.x44{left:218.167500px;}
.x42{left:221.158500px;}
.x38{left:223.947000px;}
.x4f{left:229.968000px;}
.xe{left:231.552000px;}
.x53{left:234.624000px;}
.x56{left:236.197500px;}
.x39{left:251.979000px;}
.x6{left:255.711000px;}
.x1e{left:261.534000px;}
.x29{left:267.535500px;}
.x20{left:271.548000px;}
.x47{left:278.317500px;}
.x2{left:288.595500px;}
.x4a{left:291.948000px;}
.x21{left:300.565500px;}
.x28{left:303.448500px;}
.x26{left:306.802500px;}
.x55{left:316.570500px;}
.x22{left:327.487500px;}
.x3a{left:329.172000px;}
.x31{left:336.523500px;}
.x3b{left:349.530000px;}
.x1a{left:359.835000px;}
.x18{left:362.055000px;}
.x14{left:370.041000px;}
.x1c{left:371.709000px;}
.xa{left:375.355500px;}
.x15{left:376.935000px;}
.x5{left:384.549000px;}
.x46{left:386.698500px;}
.x8{left:387.729000px;}
.x9{left:407.365500px;}
.x4b{left:417.259500px;}
.x10{left:419.542500px;}
.xb{left:426.180000px;}
.x51{left:448.734000px;}
.x1f{left:450.033000px;}
.xf{left:454.014000px;}
.x2d{left:456.843000px;}
.x2a{left:466.014000px;}
.x54{left:470.368500px;}
.x52{left:473.107500px;}
.x34{left:480.399000px;}
.x2c{left:501.784500px;}
.x2f{left:506.931000px;}
.x4c{left:509.595000px;}
.x57{left:518.938500px;}
.x50{left:521.481000px;}
.x17{left:527.001000px;}
.x32{left:528.189000px;}
.x58{left:531.915000px;}
.x33{left:533.911500px;}
.x3c{left:538.804500px;}
.x2b{left:540.588000px;}
.x35{left:551.301000px;}
.x36{left:557.022000px;}
.x2e{left:567.598500px;}
.x30{left:583.054500px;}
.x4d{left:585.502500px;}
.x1b{left:652.810500px;}
.x19{left:773.737500px;}
@media print{
.v2{vertical-align:-12.090667pt;}
.v14{vertical-align:-11.136000pt;}
.v11{vertical-align:-9.562667pt;}
.v4{vertical-align:-4.906667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.178667pt;}
.v7{vertical-align:10.197333pt;}
.vc{vertical-align:11.520000pt;}
.ve{vertical-align:17.893333pt;}
.vb{vertical-align:21.082667pt;}
.v6{vertical-align:22.288000pt;}
.vd{vertical-align:26.330667pt;}
.v5{vertical-align:31.786667pt;}
.v10{vertical-align:36.538667pt;}
.v12{vertical-align:37.754667pt;}
.v3{vertical-align:43.168000pt;}
.v9{vertical-align:46.400000pt;}
.v13{vertical-align:57.840000pt;}
.vf{vertical-align:64.293333pt;}
.va{vertical-align:69.546667pt;}
.v8{vertical-align:80.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.002133pt;}
.ls7e{letter-spacing:0.355720pt;}
.ls78{letter-spacing:0.361053pt;}
.ls7a{letter-spacing:0.380773pt;}
.ls77{letter-spacing:0.386106pt;}
.ls7c{letter-spacing:0.397090pt;}
.ls7d{letter-spacing:0.402423pt;}
.ls1b{letter-spacing:0.417843pt;}
.ls45{letter-spacing:0.570745pt;}
.ls21{letter-spacing:0.576078pt;}
.ls76{letter-spacing:0.664384pt;}
.ls60{letter-spacing:0.721899pt;}
.ls6b{letter-spacing:0.794505pt;}
.ls19{letter-spacing:0.796800pt;}
.ls12{letter-spacing:1.058133pt;}
.ls16{letter-spacing:1.063467pt;}
.ls64{letter-spacing:1.173411pt;}
.ls20{letter-spacing:1.196484pt;}
.ls4b{letter-spacing:1.394133pt;}
.ls55{letter-spacing:1.431467pt;}
.ls5c{letter-spacing:1.436800pt;}
.ls15{letter-spacing:1.511232pt;}
.ls2a{letter-spacing:1.516565pt;}
.ls44{letter-spacing:1.532484pt;}
.ls3d{letter-spacing:1.590835pt;}
.ls2c{letter-spacing:1.593890pt;}
.ls3c{letter-spacing:1.596169pt;}
.ls47{letter-spacing:2.028800pt;}
.ls3a{letter-spacing:2.034133pt;}
.ls4e{letter-spacing:2.108800pt;}
.ls59{letter-spacing:2.114133pt;}
.ls38{letter-spacing:2.228847pt;}
.ls52{letter-spacing:2.231467pt;}
.ls2d{letter-spacing:2.471232pt;}
.ls23{letter-spacing:2.476565pt;}
.ls1a{letter-spacing:2.524598pt;}
.ls39{letter-spacing:2.599232pt;}
.ls41{letter-spacing:2.647264pt;}
.ls37{letter-spacing:2.652598pt;}
.ls43{letter-spacing:2.668169pt;}
.ls30{letter-spacing:2.673502pt;}
.ls53{letter-spacing:2.678852pt;}
.ls24{letter-spacing:2.796510pt;}
.ls2e{letter-spacing:2.801843pt;}
.ls7b{letter-spacing:2.990667pt;}
.ls4f{letter-spacing:3.256158pt;}
.ls72{letter-spacing:3.444847pt;}
.ls62{letter-spacing:3.498231pt;}
.ls13{letter-spacing:3.585818pt;}
.ls5f{letter-spacing:4.046302pt;}
.ls31{letter-spacing:4.048751pt;}
.ls27{letter-spacing:4.049818pt;}
.ls5a{letter-spacing:4.050825pt;}
.ls49{letter-spacing:4.055151pt;}
.ls1f{letter-spacing:4.263262pt;}
.ls26{letter-spacing:4.342835pt;}
.ls1c{letter-spacing:4.385818pt;}
.ls1{letter-spacing:5.465920pt;}
.ls2{letter-spacing:5.509933pt;}
.ls3{letter-spacing:5.510000pt;}
.ls0{letter-spacing:5.512933pt;}
.ls3b{letter-spacing:7.047151pt;}
.lsa{letter-spacing:7.079066pt;}
.ls28{letter-spacing:7.095232pt;}
.ls8{letter-spacing:7.100860pt;}
.lsb{letter-spacing:7.111177pt;}
.ls74{letter-spacing:7.132390pt;}
.ls9{letter-spacing:7.133713pt;}
.ls2f{letter-spacing:8.449818pt;}
.ls25{letter-spacing:8.455151pt;}
.ls56{letter-spacing:12.507733pt;}
.ls1d{letter-spacing:13.196800pt;}
.ls5b{letter-spacing:13.911232pt;}
.ls1e{letter-spacing:13.961131pt;}
.ls22{letter-spacing:14.078933pt;}
.ls46{letter-spacing:14.084267pt;}
.ls35{letter-spacing:15.314133pt;}
.ls71{letter-spacing:16.287514pt;}
.ls42{letter-spacing:17.377818pt;}
.ls66{letter-spacing:17.631565pt;}
.ls6a{letter-spacing:17.719757pt;}
.ls18{letter-spacing:18.473131pt;}
.ls33{letter-spacing:18.489131pt;}
.lsc{letter-spacing:18.845090pt;}
.ls2b{letter-spacing:19.273131pt;}
.ls54{letter-spacing:19.278464pt;}
.ls51{letter-spacing:19.303467pt;}
.ls36{letter-spacing:19.308800pt;}
.ls75{letter-spacing:19.447125pt;}
.ls73{letter-spacing:19.765931pt;}
.lse{letter-spacing:19.977131pt;}
.ls70{letter-spacing:20.146423pt;}
.ls58{letter-spacing:20.355798pt;}
.ls5e{letter-spacing:20.361131pt;}
.ls6c{letter-spacing:20.382933pt;}
.lsd{letter-spacing:20.807467pt;}
.ls7{letter-spacing:20.913630pt;}
.ls6e{letter-spacing:21.196800pt;}
.ls6d{letter-spacing:21.202133pt;}
.ls40{letter-spacing:21.313818pt;}
.ls3f{letter-spacing:21.937502pt;}
.ls5d{letter-spacing:21.999565pt;}
.ls57{letter-spacing:22.004898pt;}
.ls17{letter-spacing:22.097818pt;}
.ls6f{letter-spacing:22.684510pt;}
.ls48{letter-spacing:22.961818pt;}
.ls14{letter-spacing:23.505502pt;}
.ls69{letter-spacing:23.782878pt;}
.ls63{letter-spacing:23.924898pt;}
.ls50{letter-spacing:24.231757pt;}
.ls32{letter-spacing:24.817899pt;}
.ls11{letter-spacing:24.980557pt;}
.ls67{letter-spacing:25.532510pt;}
.ls10{letter-spacing:25.799757pt;}
.ls65{letter-spacing:25.994231pt;}
.ls4d{letter-spacing:26.179635pt;}
.ls4c{letter-spacing:26.426231pt;}
.ls68{letter-spacing:29.585135pt;}
.ls5{letter-spacing:31.880533pt;}
.ls6{letter-spacing:111.199514pt;}
.ls79{letter-spacing:212.532000pt;}
.ls61{letter-spacing:287.083733pt;}
.ls34{letter-spacing:473.979733pt;}
.ls3e{letter-spacing:629.681067pt;}
.ls4a{letter-spacing:745.521899pt;}
.ls29{letter-spacing:759.174400pt;}
.ws4{word-spacing:-30.635600pt;}
.ws6{word-spacing:-29.974400pt;}
.ws119{word-spacing:-28.347051pt;}
.ws115{word-spacing:-27.682667pt;}
.wsf8{word-spacing:-25.524700pt;}
.ws10{word-spacing:-23.464073pt;}
.ws31{word-spacing:-17.725577pt;}
.ws11{word-spacing:-9.436638pt;}
.ws15{word-spacing:-9.372877pt;}
.ws3{word-spacing:-5.510000pt;}
.ws10a{word-spacing:-4.208230pt;}
.ws24{word-spacing:-3.889425pt;}
.ws94{word-spacing:-3.825664pt;}
.ws49{word-spacing:-3.698142pt;}
.ws43{word-spacing:-3.634381pt;}
.wsa7{word-spacing:-3.570620pt;}
.ws7c{word-spacing:-3.506859pt;}
.ws108{word-spacing:-3.379337pt;}
.wsed{word-spacing:-3.315575pt;}
.ws56{word-spacing:-3.251814pt;}
.wsbc{word-spacing:-3.209702pt;}
.wsb6{word-spacing:-3.188053pt;}
.wsaf{word-spacing:-3.060531pt;}
.wsad{word-spacing:-2.933009pt;}
.wsae{word-spacing:-2.915831pt;}
.wsc5{word-spacing:-2.805487pt;}
.wseb{word-spacing:-2.741726pt;}
.ws84{word-spacing:-2.677965pt;}
.ws22{word-spacing:-2.614204pt;}
.ws85{word-spacing:-2.550443pt;}
.wsdb{word-spacing:-2.422921pt;}
.ws97{word-spacing:-2.359159pt;}
.ws23{word-spacing:-2.295398pt;}
.wsfe{word-spacing:-2.167876pt;}
.wsfa{word-spacing:-2.040354pt;}
.wsf9{word-spacing:-1.976593pt;}
.ws103{word-spacing:-1.912832pt;}
.ws6e{word-spacing:-1.785310pt;}
.ws5a{word-spacing:-1.721549pt;}
.wsa1{word-spacing:-1.657788pt;}
.wsfb{word-spacing:-1.594027pt;}
.ws3c{word-spacing:-1.530266pt;}
.ws80{word-spacing:-1.466505pt;}
.wse5{word-spacing:-1.439036pt;}
.ws10e{word-spacing:-1.402743pt;}
.ws37{word-spacing:-1.338982pt;}
.wsf3{word-spacing:-1.275221pt;}
.ws7b{word-spacing:-1.211460pt;}
.wsac{word-spacing:-1.147699pt;}
.ws60{word-spacing:-1.083938pt;}
.wsa4{word-spacing:-1.020177pt;}
.wsf4{word-spacing:-0.956416pt;}
.ws5f{word-spacing:-0.892655pt;}
.ws73{word-spacing:-0.828894pt;}
.wsc{word-spacing:-0.814546pt;}
.ws26{word-spacing:-0.701372pt;}
.ws2b{word-spacing:-0.637611pt;}
.wse0{word-spacing:-0.573850pt;}
.wsa3{word-spacing:-0.510089pt;}
.ws106{word-spacing:-0.446327pt;}
.ws41{word-spacing:-0.382566pt;}
.wsa5{word-spacing:-0.318805pt;}
.ws7e{word-spacing:-0.255044pt;}
.ws7d{word-spacing:-0.191283pt;}
.ws1e{word-spacing:-0.127522pt;}
.ws58{word-spacing:-0.063761pt;}
.ws112{word-spacing:-0.031881pt;}
.ws100{word-spacing:-0.013244pt;}
.ws101{word-spacing:-0.006409pt;}
.ws105{word-spacing:-0.005001pt;}
.ws107{word-spacing:-0.002432pt;}
.wsf0{word-spacing:-0.001886pt;}
.ws102{word-spacing:-0.001553pt;}
.wsbf{word-spacing:-0.000290pt;}
.ws7{word-spacing:0.000000pt;}
.wsd2{word-spacing:0.000964pt;}
.wsc1{word-spacing:0.063761pt;}
.wsc2{word-spacing:0.070298pt;}
.ws90{word-spacing:0.127522pt;}
.ws3d{word-spacing:0.255044pt;}
.ws62{word-spacing:0.318805pt;}
.ws126{word-spacing:0.328482pt;}
.ws127{word-spacing:0.330906pt;}
.ws12e{word-spacing:0.333815pt;}
.ws39{word-spacing:0.382566pt;}
.ws6f{word-spacing:0.446327pt;}
.ws9b{word-spacing:0.573850pt;}
.ws0{word-spacing:0.617120pt;}
.ws95{word-spacing:0.637611pt;}
.ws4d{word-spacing:0.701372pt;}
.wsc6{word-spacing:0.765133pt;}
.ws96{word-spacing:0.828894pt;}
.ws44{word-spacing:0.892655pt;}
.wsb7{word-spacing:0.896964pt;}
.ws2c{word-spacing:0.956416pt;}
.ws25{word-spacing:1.020177pt;}
.ws75{word-spacing:1.083938pt;}
.ws71{word-spacing:1.147699pt;}
.wsab{word-spacing:1.211460pt;}
.wsb{word-spacing:1.221819pt;}
.ws74{word-spacing:1.275221pt;}
.ws55{word-spacing:1.338982pt;}
.wsc7{word-spacing:1.402743pt;}
.wsd1{word-spacing:1.466505pt;}
.ws47{word-spacing:1.530266pt;}
.wse1{word-spacing:1.594027pt;}
.wsa2{word-spacing:1.657788pt;}
.wse4{word-spacing:1.667874pt;}
.wsf6{word-spacing:1.717956pt;}
.ws21{word-spacing:1.721549pt;}
.wsd7{word-spacing:1.785310pt;}
.wsa8{word-spacing:1.845231pt;}
.ws4a{word-spacing:1.849071pt;}
.wse3{word-spacing:1.912832pt;}
.ws59{word-spacing:1.976593pt;}
.ws65{word-spacing:2.040354pt;}
.ws40{word-spacing:2.104115pt;}
.wscc{word-spacing:2.167876pt;}
.ws2d{word-spacing:2.231637pt;}
.ws1a{word-spacing:2.295398pt;}
.ws4e{word-spacing:2.359159pt;}
.wscf{word-spacing:2.422921pt;}
.wsaa{word-spacing:2.486682pt;}
.ws64{word-spacing:2.550443pt;}
.wsbb{word-spacing:2.599168pt;}
.ws66{word-spacing:2.614204pt;}
.ws57{word-spacing:2.677965pt;}
.wse2{word-spacing:2.741726pt;}
.ws61{word-spacing:2.805487pt;}
.ws52{word-spacing:2.869248pt;}
.wsd8{word-spacing:2.933009pt;}
.ws4b{word-spacing:3.060531pt;}
.wsc0{word-spacing:3.124292pt;}
.ws51{word-spacing:3.188053pt;}
.ws3a{word-spacing:3.251814pt;}
.ws42{word-spacing:3.315575pt;}
.wsbe{word-spacing:3.379337pt;}
.ws53{word-spacing:3.443098pt;}
.wsda{word-spacing:3.476361pt;}
.ws1f{word-spacing:3.506859pt;}
.wsf5{word-spacing:3.562249pt;}
.ws20{word-spacing:3.570620pt;}
.ws83{word-spacing:3.634381pt;}
.ws8d{word-spacing:3.698142pt;}
.ws3b{word-spacing:3.761903pt;}
.ws68{word-spacing:3.825664pt;}
.ws1b{word-spacing:3.889425pt;}
.wsec{word-spacing:3.953186pt;}
.ws9{word-spacing:3.956367pt;}
.ws30{word-spacing:4.016947pt;}
.ws46{word-spacing:4.080708pt;}
.wsea{word-spacing:4.144469pt;}
.wsd{word-spacing:4.204459pt;}
.ws28{word-spacing:4.208230pt;}
.ws78{word-spacing:4.271991pt;}
.wsd0{word-spacing:4.335753pt;}
.ws8a{word-spacing:4.399514pt;}
.wsa9{word-spacing:4.463275pt;}
.wse7{word-spacing:4.508800pt;}
.ws54{word-spacing:4.527036pt;}
.ws81{word-spacing:4.590797pt;}
.ws82{word-spacing:4.654558pt;}
.wscb{word-spacing:4.718319pt;}
.ws2f{word-spacing:4.782080pt;}
.wsa{word-spacing:4.829095pt;}
.ws17{word-spacing:4.845841pt;}
.ws18{word-spacing:4.909602pt;}
.ws7f{word-spacing:4.973363pt;}
.ws76{word-spacing:5.037124pt;}
.wsdc{word-spacing:5.100885pt;}
.wsba{word-spacing:5.164646pt;}
.ws69{word-spacing:5.228407pt;}
.ws72{word-spacing:5.292169pt;}
.ws19{word-spacing:5.355930pt;}
.ws89{word-spacing:5.419691pt;}
.ws6b{word-spacing:5.483452pt;}
.ws6d{word-spacing:5.547213pt;}
.ws5b{word-spacing:5.610974pt;}
.ws5c{word-spacing:5.674735pt;}
.ws86{word-spacing:5.738496pt;}
.ws92{word-spacing:5.802257pt;}
.wsc3{word-spacing:5.837764pt;}
.ws32{word-spacing:5.866018pt;}
.wsf1{word-spacing:5.929779pt;}
.ws29{word-spacing:5.993540pt;}
.ws99{word-spacing:6.057301pt;}
.ws1d{word-spacing:6.121062pt;}
.ws1c{word-spacing:6.184823pt;}
.ws77{word-spacing:6.248585pt;}
.ws79{word-spacing:6.312346pt;}
.wsb8{word-spacing:6.439868pt;}
.wsca{word-spacing:6.503629pt;}
.wse6{word-spacing:6.567390pt;}
.ws5e{word-spacing:6.631151pt;}
.wsd9{word-spacing:6.694912pt;}
.ws87{word-spacing:6.758673pt;}
.ws2e{word-spacing:6.822434pt;}
.ws6c{word-spacing:6.949956pt;}
.ws45{word-spacing:7.013717pt;}
.ws6a{word-spacing:7.077478pt;}
.wsc4{word-spacing:7.087027pt;}
.ws70{word-spacing:7.141239pt;}
.ws63{word-spacing:7.205001pt;}
.ws48{word-spacing:7.268762pt;}
.ws50{word-spacing:7.332523pt;}
.ws10d{word-spacing:7.396284pt;}
.ws8f{word-spacing:7.587567pt;}
.wse8{word-spacing:7.715089pt;}
.wse9{word-spacing:7.778850pt;}
.ws4c{word-spacing:7.842611pt;}
.ws7a{word-spacing:7.906372pt;}
.ws8c{word-spacing:7.970133pt;}
.wsef{word-spacing:8.033894pt;}
.ws8{word-spacing:8.087279pt;}
.ws27{word-spacing:8.097655pt;}
.ws8b{word-spacing:8.161417pt;}
.ws3e{word-spacing:8.225178pt;}
.ws8e{word-spacing:8.352700pt;}
.wscd{word-spacing:8.416461pt;}
.wsa6{word-spacing:8.480222pt;}
.ws67{word-spacing:8.607744pt;}
.wsde{word-spacing:8.735266pt;}
.ws3f{word-spacing:8.799027pt;}
.ws88{word-spacing:8.862788pt;}
.ws109{word-spacing:8.926549pt;}
.ws33{word-spacing:8.990310pt;}
.wsf2{word-spacing:9.054071pt;}
.wsee{word-spacing:9.181594pt;}
.wsce{word-spacing:9.500399pt;}
.ws5d{word-spacing:9.564160pt;}
.ws98{word-spacing:9.691682pt;}
.wsc8{word-spacing:9.720525pt;}
.wsb5{word-spacing:9.882965pt;}
.ws91{word-spacing:9.946726pt;}
.ws9c{word-spacing:10.074249pt;}
.wsfc{word-spacing:10.181111pt;}
.wsfd{word-spacing:10.201771pt;}
.ws34{word-spacing:10.265532pt;}
.ws36{word-spacing:10.329293pt;}
.wsff{word-spacing:10.393054pt;}
.ws4f{word-spacing:10.456815pt;}
.ws2a{word-spacing:10.520576pt;}
.ws10f{word-spacing:10.775620pt;}
.wsdf{word-spacing:11.094426pt;}
.ws110{word-spacing:11.158187pt;}
.ws9a{word-spacing:11.235183pt;}
.ws2{word-spacing:11.545227pt;}
.ws5{word-spacing:11.548960pt;}
.ws1{word-spacing:11.586773pt;}
.wsf7{word-spacing:11.923319pt;}
.ws35{word-spacing:12.879735pt;}
.ws10c{word-spacing:13.007258pt;}
.ws104{word-spacing:13.517346pt;}
.wsf{word-spacing:14.154957pt;}
.wsc9{word-spacing:15.388800pt;}
.ws10b{word-spacing:16.004028pt;}
.wsdd{word-spacing:17.661815pt;}
.wsbd{word-spacing:19.134413pt;}
.ws14{word-spacing:26.078276pt;}
.wse{word-spacing:42.464870pt;}
.wsa0{word-spacing:46.035490pt;}
.wsb1{word-spacing:47.592767pt;}
.ws9f{word-spacing:49.669871pt;}
.wsb9{word-spacing:54.612803pt;}
.ws16{word-spacing:66.290767pt;}
.wsb2{word-spacing:79.941885pt;}
.wsb3{word-spacing:96.116444pt;}
.ws11e{word-spacing:124.903797pt;}
.ws113{word-spacing:128.285131pt;}
.wsb0{word-spacing:134.923749pt;}
.wsb4{word-spacing:141.440118pt;}
.ws11f{word-spacing:151.127797pt;}
.ws114{word-spacing:151.133131pt;}
.ws11b{word-spacing:154.509131pt;}
.ws117{word-spacing:196.690883pt;}
.ws123{word-spacing:197.072580pt;}
.ws116{word-spacing:200.079242pt;}
.ws11d{word-spacing:200.450253pt;}
.ws118{word-spacing:223.291255pt;}
.ws120{word-spacing:226.670592pt;}
.ws111{word-spacing:247.233536pt;}
.ws38{word-spacing:260.591479pt;}
.ws93{word-spacing:262.568073pt;}
.wsd5{word-spacing:393.592986pt;}
.wsd4{word-spacing:414.036361pt;}
.wsd6{word-spacing:445.689856pt;}
.ws122{word-spacing:627.918165pt;}
.ws11c{word-spacing:648.015770pt;}
.ws12d{word-spacing:658.473404pt;}
.ws124{word-spacing:688.809984pt;}
.ws11a{word-spacing:705.419742pt;}
.ws129{word-spacing:713.514436pt;}
.ws121{word-spacing:730.968917pt;}
.ws12c{word-spacing:780.527317pt;}
.wsd3{word-spacing:789.634244pt;}
.ws128{word-spacing:797.137075pt;}
.ws12a{word-spacing:805.840461pt;}
.ws12b{word-spacing:829.317402pt;}
.ws9d{word-spacing:877.798605pt;}
.ws9e{word-spacing:935.183565pt;}
.ws125{word-spacing:1047.076070pt;}
.ws12{word-spacing:2076.370790pt;}
.ws13{word-spacing:2128.973670pt;}
._1a{margin-left:-33.793365pt;}
._18{margin-left:-31.880533pt;}
._19{margin-left:-14.154957pt;}
._96{margin-left:-12.097974pt;}
._95{margin-left:-10.780355pt;}
._41{margin-left:-9.327573pt;}
._8{margin-left:-7.669760pt;}
._2f{margin-left:-6.623162pt;}
._2{margin-left:-5.510000pt;}
._5{margin-left:-4.026027pt;}
._3{margin-left:-2.425533pt;}
._6{margin-left:-1.511808pt;}
._1{width:1.336907pt;}
._4{width:2.821120pt;}
._94{width:3.749120pt;}
._0{width:5.274933pt;}
._77{width:6.276435pt;}
._1e{width:7.523806pt;}
._9a{width:10.966903pt;}
._78{width:13.605007pt;}
._45{width:15.395339pt;}
._2d{width:16.771748pt;}
._10{width:17.725577pt;}
._b{width:19.723653pt;}
._2b{width:21.291267pt;}
._13{width:22.446508pt;}
._2c{width:23.344389pt;}
._27{width:24.576929pt;}
._7{width:26.320495pt;}
._16{width:27.291812pt;}
._25{width:29.001220pt;}
._21{width:30.482524pt;}
._9{width:31.883663pt;}
._46{width:32.805471pt;}
._a{width:34.560029pt;}
._2a{width:35.996084pt;}
._7a{width:37.089946pt;}
._24{width:38.170046pt;}
._47{width:39.534474pt;}
._1b{width:40.824318pt;}
._48{width:42.154201pt;}
._26{width:43.238826pt;}
._93{width:44.197226pt;}
._23{width:45.692207pt;}
._92{width:46.590882pt;}
._49{width:48.436012pt;}
._29{width:50.907375pt;}
._4a{width:52.222926pt;}
._2e{width:53.559296pt;}
._28{width:56.456686pt;}
._f{width:58.022571pt;}
._d{width:60.190447pt;}
._20{width:62.230801pt;}
._1f{width:63.774143pt;}
._1c{width:64.844468pt;}
._11{width:66.122302pt;}
._55{width:69.296826pt;}
._5f{width:70.264695pt;}
._14{width:71.582195pt;}
._44{width:76.513067pt;}
._79{width:80.634178pt;}
._31{width:85.576431pt;}
._57{width:88.816553pt;}
._43{width:91.815467pt;}
._58{width:95.641600pt;}
._72{width:96.782215pt;}
._5a{width:99.995810pt;}
._5b{width:106.225937pt;}
._12{width:107.564919pt;}
._65{width:112.657131pt;}
._64{width:116.931654pt;}
._6e{width:120.378282pt;}
._68{width:126.399530pt;}
._6c{width:128.622358pt;}
._6b{width:131.229901pt;}
._39{width:132.433811pt;}
._a9{width:135.524147pt;}
._6a{width:137.407464pt;}
._a8{width:138.903484pt;}
._75{width:141.381936pt;}
._66{width:143.974349pt;}
._33{width:145.247710pt;}
._73{width:148.943590pt;}
._34{width:150.603639pt;}
._37{width:152.006383pt;}
._76{width:157.593401pt;}
._60{width:164.771046pt;}
._38{width:174.644174pt;}
._62{width:178.094694pt;}
._a2{width:179.722615pt;}
._69{width:182.241343pt;}
._6f{width:183.549892pt;}
._3c{width:184.761114pt;}
._3f{width:189.006259pt;}
._70{width:190.326465pt;}
._4e{width:194.646692pt;}
._67{width:197.873331pt;}
._63{width:201.949259pt;}
._74{width:204.068863pt;}
._4c{width:209.523554pt;}
._a3{width:213.452220pt;}
._71{width:216.548718pt;}
._3e{width:219.433365pt;}
._4f{width:222.597185pt;}
._a0{width:226.368186pt;}
._7f{width:236.364887pt;}
._a1{width:256.286788pt;}
._4b{width:259.935411pt;}
._42{width:264.990993pt;}
._6d{width:278.546262pt;}
._40{width:282.142720pt;}
._b0{width:290.709214pt;}
._4d{width:294.512367pt;}
._35{width:299.868297pt;}
._3d{width:310.351957pt;}
._84{width:314.158318pt;}
._30{width:315.917628pt;}
._51{width:334.235511pt;}
._3b{width:335.638255pt;}
._32{width:352.026925pt;}
._85{width:354.256486pt;}
._36{width:374.596267pt;}
._61{width:387.073713pt;}
._3a{width:393.071343pt;}
._a5{width:400.115910pt;}
._7c{width:411.318562pt;}
._89{width:414.827895pt;}
._9f{width:421.026372pt;}
._a6{width:441.164614pt;}
._8d{width:463.415433pt;}
._a4{width:494.277582pt;}
._54{width:507.060689pt;}
._ae{width:512.743706pt;}
._56{width:536.421854pt;}
._50{width:541.966466pt;}
._99{width:556.266207pt;}
._a7{width:570.506833pt;}
._52{width:575.316105pt;}
._97{width:580.402492pt;}
._80{width:584.752742pt;}
._9b{width:586.882330pt;}
._b2{width:593.104275pt;}
._b1{width:595.306107pt;}
._9c{width:596.385341pt;}
._98{width:603.697783pt;}
._59{width:606.654564pt;}
._53{width:620.926312pt;}
._5c{width:644.467489pt;}
._aa{width:645.895825pt;}
._9e{width:650.643396pt;}
._9d{width:651.971569pt;}
._ad{width:661.884008pt;}
._7b{width:666.239386pt;}
._b3{width:671.058035pt;}
._ac{width:678.599663pt;}
._81{width:679.852268pt;}
._ab{width:695.409783pt;}
._7d{width:711.849593pt;}
._8b{width:715.303421pt;}
._82{width:717.665194pt;}
._90{width:741.317695pt;}
._88{width:742.946025pt;}
._5d{width:749.520418pt;}
._8c{width:753.116347pt;}
._af{width:758.715443pt;}
._83{width:774.623821pt;}
._87{width:830.724480pt;}
._8e{width:845.526127pt;}
._5e{width:947.361929pt;}
._86{width:949.657327pt;}
._7e{width:986.684049pt;}
._8f{width:997.990291pt;}
._91{width:1003.583556pt;}
._8a{width:1022.135202pt;}
._22{width:1096.081658pt;}
._15{width:1793.835392pt;}
._1d{width:1806.478541pt;}
._e{width:1847.012122pt;}
._17{width:1944.840055pt;}
._c{width:2006.606071pt;}
.fsb{font-size:27.682667pt;}
.fsa{font-size:31.880533pt;}
.fsc{font-size:33.219200pt;}
.fs8{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fs4{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs7{font-size:66.438933pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:88.160000pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.fs2{font-size:151.180800pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:35.740000pt;}
.y87{bottom:51.316000pt;}
.y6b{bottom:51.317333pt;}
.y2b{bottom:54.637333pt;}
.y86{bottom:91.166667pt;}
.yf3{bottom:91.626667pt;}
.ydc{bottom:97.390667pt;}
.y1f4{bottom:100.076000pt;}
.y1e3{bottom:101.616000pt;}
.y153{bottom:109.292000pt;}
.yc0{bottom:109.308000pt;}
.y99{bottom:111.765333pt;}
.y6a{bottom:116.720000pt;}
.y1cd{bottom:117.956000pt;}
.yb1{bottom:118.060000pt;}
.y19a{bottom:119.137333pt;}
.y85{bottom:120.058667pt;}
.yf2{bottom:120.517333pt;}
.ydb{bottom:126.282667pt;}
.y1f9{bottom:126.509333pt;}
.y258{bottom:127.250667pt;}
.y1f3{bottom:128.966667pt;}
.y1e2{bottom:130.508000pt;}
.y152{bottom:138.182667pt;}
.ybf{bottom:138.198667pt;}
.y98{bottom:140.656000pt;}
.yb{bottom:141.885333pt;}
.y1cc{bottom:146.848000pt;}
.yb0{bottom:146.952000pt;}
.y199{bottom:148.029333pt;}
.y84{bottom:148.950667pt;}
.yf1{bottom:149.409333pt;}
.y22a{bottom:152.212000pt;}
.yda{bottom:155.174667pt;}
.y1f8{bottom:155.401333pt;}
.y11e{bottom:155.516000pt;}
.y69{bottom:155.541333pt;}
.y1a4{bottom:156.382667pt;}
.yed{bottom:157.805333pt;}
.ybe{bottom:167.090667pt;}
.y97{bottom:169.548000pt;}
.y257{bottom:174.092000pt;}
.y4f{bottom:174.522667pt;}
.y1b2{bottom:174.712000pt;}
.y1b0{bottom:174.716000pt;}
.y1cb{bottom:175.740000pt;}
.yaf{bottom:175.844000pt;}
.y198{bottom:176.921333pt;}
.y83{bottom:177.842667pt;}
.yf0{bottom:178.301333pt;}
.y151{bottom:179.580000pt;}
.ya{bottom:181.570667pt;}
.y135{bottom:183.440000pt;}
.yd9{bottom:184.065333pt;}
.y1f2{bottom:184.293333pt;}
.y11d{bottom:184.408000pt;}
.y68{bottom:184.433333pt;}
.y1a3{bottom:185.274667pt;}
.y1e1{bottom:185.833333pt;}
.y134{bottom:187.786667pt;}
.y136{bottom:189.013333pt;}
.ybd{bottom:195.982667pt;}
.y256{bottom:198.202667pt;}
.y96{bottom:198.440000pt;}
.y229{bottom:199.053333pt;}
.y189{bottom:201.661333pt;}
.y4e{bottom:203.413333pt;}
.y131{bottom:203.473333pt;}
.y1ca{bottom:204.630667pt;}
.yae{bottom:204.734667pt;}
.y197{bottom:205.812000pt;}
.y130{bottom:207.020000pt;}
.yef{bottom:207.192000pt;}
.y132{bottom:209.804000pt;}
.yd8{bottom:212.957333pt;}
.y1f1{bottom:213.185333pt;}
.y67{bottom:213.324000pt;}
.y1a2{bottom:214.166667pt;}
.y1e0{bottom:214.725333pt;}
.y133{bottom:215.073333pt;}
.y255{bottom:219.126667pt;}
.y228{bottom:223.165333pt;}
.ybc{bottom:224.874667pt;}
.y95{bottom:227.332000pt;}
.y188{bottom:230.553333pt;}
.y4d{bottom:232.305333pt;}
.y254{bottom:233.074667pt;}
.yec{bottom:233.076000pt;}
.y82{bottom:233.168000pt;}
.y1c9{bottom:233.522667pt;}
.yad{bottom:233.626667pt;}
.y196{bottom:234.704000pt;}
.y2a{bottom:236.488000pt;}
.y1f7{bottom:239.618667pt;}
.yd7{bottom:241.849333pt;}
.y66{bottom:242.216000pt;}
.y150{bottom:242.540000pt;}
.y1a1{bottom:243.058667pt;}
.y11c{bottom:243.060000pt;}
.y1df{bottom:243.617333pt;}
.y227{bottom:244.088000pt;}
.y253{bottom:247.021333pt;}
.yee{bottom:248.589333pt;}
.y11b{bottom:248.633333pt;}
.y163{bottom:251.313333pt;}
.y1d0{bottom:253.765333pt;}
.y226{bottom:258.036000pt;}
.y187{bottom:259.445333pt;}
.y252{bottom:260.969333pt;}
.y4c{bottom:261.197333pt;}
.yeb{bottom:261.968000pt;}
.y81{bottom:262.060000pt;}
.y1c8{bottom:262.414667pt;}
.yac{bottom:262.518667pt;}
.y119{bottom:263.093333pt;}
.y195{bottom:263.596000pt;}
.y1fb{bottom:266.053333pt;}
.y1f0{bottom:268.510667pt;}
.y11a{bottom:269.422667pt;}
.y173{bottom:269.638667pt;}
.yd6{bottom:270.740000pt;}
.y65{bottom:271.108000pt;}
.y14f{bottom:271.430667pt;}
.y1a0{bottom:271.949333pt;}
.y225{bottom:271.984000pt;}
.y251{bottom:274.917333pt;}
.ybb{bottom:280.200000pt;}
.y162{bottom:280.736000pt;}
.y29{bottom:281.320000pt;}
.y94{bottom:282.657333pt;}
.y224{bottom:285.932000pt;}
.y12f{bottom:287.690667pt;}
.yfc{bottom:287.721333pt;}
.y186{bottom:288.336000pt;}
.y250{bottom:288.865333pt;}
.y4b{bottom:290.088000pt;}
.yea{bottom:290.860000pt;}
.y80{bottom:290.952000pt;}
.y1c7{bottom:291.306667pt;}
.yab{bottom:291.410667pt;}
.y194{bottom:292.486667pt;}
.y1af{bottom:292.488000pt;}
.y9{bottom:293.026667pt;}
.y1fa{bottom:294.945333pt;}
.y118{bottom:296.009333pt;}
.y1ef{bottom:297.402667pt;}
.y1de{bottom:298.942667pt;}
.y172{bottom:299.062667pt;}
.y223{bottom:299.878667pt;}
.y64{bottom:300.000000pt;}
.y14e{bottom:300.322667pt;}
.y19f{bottom:300.841333pt;}
.y117{bottom:301.581333pt;}
.y24f{bottom:302.812000pt;}
.yd5{bottom:307.426667pt;}
.yba{bottom:309.092000pt;}
.y161{bottom:309.628000pt;}
.y93{bottom:311.549333pt;}
.y222{bottom:313.826667pt;}
.y116{bottom:316.041333pt;}
.y12e{bottom:316.582667pt;}
.y24e{bottom:316.760000pt;}
.y185{bottom:317.228000pt;}
.ye9{bottom:319.750667pt;}
.y7f{bottom:319.842667pt;}
.yaa{bottom:320.301333pt;}
.y193{bottom:321.378667pt;}
.y1f6{bottom:323.836000pt;}
.y28{bottom:326.152000pt;}
.y221{bottom:327.774667pt;}
.y1dd{bottom:327.834667pt;}
.y171{bottom:327.953333pt;}
.y63{bottom:328.890667pt;}
.y8{bottom:328.892000pt;}
.y14d{bottom:329.214667pt;}
.y19e{bottom:329.733333pt;}
.y24d{bottom:330.708000pt;}
.yfb{bottom:333.562667pt;}
.yb9{bottom:337.982667pt;}
.y160{bottom:338.520000pt;}
.y92{bottom:340.441333pt;}
.y220{bottom:341.722667pt;}
.y24c{bottom:344.656000pt;}
.y4a{bottom:345.414667pt;}
.yd4{bottom:346.248000pt;}
.y1c6{bottom:346.632000pt;}
.ye8{bottom:348.642667pt;}
.y7e{bottom:348.734667pt;}
.y192{bottom:350.270667pt;}
.y1ee{bottom:352.728000pt;}
.y21f{bottom:355.669333pt;}
.y170{bottom:356.845333pt;}
.y62{bottom:357.782667pt;}
.y14c{bottom:358.106667pt;}
.y24b{bottom:358.602667pt;}
.y184{bottom:358.625333pt;}
.yfa{bottom:361.193333pt;}
.yc2{bottom:361.698667pt;}
.yb8{bottom:366.874667pt;}
.y15f{bottom:367.412000pt;}
.y91{bottom:369.332000pt;}
.y21e{bottom:369.617333pt;}
.y27{bottom:370.982667pt;}
.y12d{bottom:371.908000pt;}
.y24a{bottom:372.550667pt;}
.y105{bottom:372.805333pt;}
.y49{bottom:374.306667pt;}
.y1c5{bottom:375.524000pt;}
.ya9{bottom:375.628000pt;}
.yd3{bottom:375.670667pt;}
.ye7{bottom:377.534667pt;}
.y7d{bottom:377.626667pt;}
.y1ae{bottom:379.162667pt;}
.y1ed{bottom:381.620000pt;}
.y1dc{bottom:383.160000pt;}
.y21d{bottom:383.565333pt;}
.y16f{bottom:385.737333pt;}
.y249{bottom:386.498667pt;}
.y61{bottom:386.674667pt;}
.y14b{bottom:386.997333pt;}
.yf9{bottom:388.290667pt;}
.yb7{bottom:395.766667pt;}
.y15e{bottom:396.302667pt;}
.y21c{bottom:397.513333pt;}
.y90{bottom:398.224000pt;}
.y26{bottom:399.874667pt;}
.y19d{bottom:400.021333pt;}
.y248{bottom:400.446667pt;}
.y12c{bottom:400.800000pt;}
.y48{bottom:403.197333pt;}
.y1c4{bottom:404.414667pt;}
.ya8{bottom:404.518667pt;}
.yd2{bottom:404.562667pt;}
.y191{bottom:405.596000pt;}
.y7c{bottom:406.518667pt;}
.ye6{bottom:406.957333pt;}
.y1f5{bottom:408.053333pt;}
.y1ad{bottom:408.054667pt;}
.y21b{bottom:411.460000pt;}
.y1db{bottom:412.052000pt;}
.y247{bottom:414.394667pt;}
.y183{bottom:414.610667pt;}
.y16e{bottom:414.628000pt;}
.yf8{bottom:415.389333pt;}
.y60{bottom:415.565333pt;}
.y14a{bottom:415.889333pt;}
.y1b1{bottom:415.970667pt;}
.y115{bottom:416.200000pt;}
.y104{bottom:418.646667pt;}
.y143{bottom:420.938667pt;}
.y7{bottom:423.644000pt;}
.yb6{bottom:424.658667pt;}
.y15d{bottom:425.194667pt;}
.y21a{bottom:425.408000pt;}
.y8f{bottom:427.116000pt;}
.y246{bottom:428.341333pt;}
.y25{bottom:428.766667pt;}
.y12b{bottom:429.692000pt;}
.y14{bottom:432.068000pt;}
.y47{bottom:432.089333pt;}
.y1c3{bottom:433.306667pt;}
.ya7{bottom:433.410667pt;}
.yd1{bottom:433.454667pt;}
.y190{bottom:434.488000pt;}
.y7b{bottom:435.409333pt;}
.y1ac{bottom:436.945333pt;}
.y219{bottom:439.356000pt;}
.y1da{bottom:440.944000pt;}
.y245{bottom:442.289333pt;}
.yf7{bottom:442.488000pt;}
.y182{bottom:443.502667pt;}
.y16d{bottom:443.520000pt;}
.y149{bottom:444.781333pt;}
.y5f{bottom:444.989333pt;}
.y114{bottom:445.090667pt;}
.y103{bottom:446.277333pt;}
.y142{bottom:449.830667pt;}
.y218{bottom:453.304000pt;}
.yb5{bottom:453.549333pt;}
.y15c{bottom:454.086667pt;}
.y8e{bottom:456.008000pt;}
.y244{bottom:456.237333pt;}
.y24{bottom:457.658667pt;}
.y12a{bottom:458.584000pt;}
.y46{bottom:460.981333pt;}
.y1c2{bottom:462.198667pt;}
.ya6{bottom:462.302667pt;}
.yd0{bottom:462.346667pt;}
.y6{bottom:463.328000pt;}
.y18f{bottom:463.380000pt;}
.y7a{bottom:464.301333pt;}
.ye5{bottom:464.741333pt;}
.y1ec{bottom:465.837333pt;}
.y217{bottom:467.252000pt;}
.y1d9{bottom:469.834667pt;}
.yf6{bottom:470.117333pt;}
.y243{bottom:470.185333pt;}
.y181{bottom:472.394667pt;}
.y16c{bottom:472.412000pt;}
.y102{bottom:473.374667pt;}
.y148{bottom:473.673333pt;}
.y5e{bottom:473.880000pt;}
.y113{bottom:473.982667pt;}
.y141{bottom:478.722667pt;}
.y216{bottom:481.198667pt;}
.yb4{bottom:482.441333pt;}
.y15b{bottom:482.978667pt;}
.y242{bottom:484.132000pt;}
.y8d{bottom:484.898667pt;}
.y23{bottom:486.549333pt;}
.y129{bottom:487.474667pt;}
.y1c1{bottom:491.090667pt;}
.ya5{bottom:491.194667pt;}
.ycf{bottom:491.769333pt;}
.y1ab{bottom:492.272000pt;}
.ye4{bottom:493.632000pt;}
.y215{bottom:495.146667pt;}
.yf5{bottom:497.216000pt;}
.y241{bottom:498.080000pt;}
.y13{bottom:499.349333pt;}
.y101{bottom:500.473333pt;}
.y180{bottom:501.285333pt;}
.y16b{bottom:501.304000pt;}
.y112{bottom:502.874667pt;}
.y79{bottom:505.698667pt;}
.y140{bottom:507.613333pt;}
.y214{bottom:509.094667pt;}
.yb3{bottom:511.333333pt;}
.y15a{bottom:511.869333pt;}
.y240{bottom:512.028000pt;}
.y8c{bottom:513.790667pt;}
.y22{bottom:515.441333pt;}
.y38{bottom:515.596000pt;}
.y45{bottom:516.306667pt;}
.y128{bottom:516.366667pt;}
.y18e{bottom:518.705333pt;}
.y1c0{bottom:519.981333pt;}
.ya4{bottom:520.085333pt;}
.y1aa{bottom:521.162667pt;}
.y5d{bottom:521.866667pt;}
.ye3{bottom:522.524000pt;}
.y213{bottom:523.042667pt;}
.y1d8{bottom:525.161333pt;}
.y23f{bottom:525.976000pt;}
.y12{bottom:526.448000pt;}
.y100{bottom:527.572000pt;}
.y147{bottom:528.998667pt;}
.y17f{bottom:530.177333pt;}
.y16a{bottom:530.194667pt;}
.y111{bottom:531.766667pt;}
.y13f{bottom:536.505333pt;}
.y212{bottom:536.989333pt;}
.yce{bottom:539.756000pt;}
.y23e{bottom:539.922667pt;}
.yb2{bottom:540.225333pt;}
.y159{bottom:540.761333pt;}
.yf4{bottom:541.856000pt;}
.y19c{bottom:542.682667pt;}
.y37{bottom:544.488000pt;}
.y44{bottom:545.198667pt;}
.y18d{bottom:547.597333pt;}
.y1bf{bottom:548.873333pt;}
.ya3{bottom:548.977333pt;}
.y1eb{bottom:550.054667pt;}
.y211{bottom:550.937333pt;}
.ye2{bottom:551.416000pt;}
.y11{bottom:553.545333pt;}
.y23d{bottom:553.870667pt;}
.y1d7{bottom:554.052000pt;}
.yff{bottom:555.201333pt;}
.y127{bottom:557.764000pt;}
.y146{bottom:557.890667pt;}
.y169{bottom:559.086667pt;}
.y21{bottom:560.273333pt;}
.y110{bottom:560.657333pt;}
.y210{bottom:564.885333pt;}
.y23c{bottom:567.818667pt;}
.y78{bottom:568.312000pt;}
.y5c{bottom:569.116000pt;}
.y158{bottom:569.653333pt;}
.y19b{bottom:571.574667pt;}
.y36{bottom:573.378667pt;}
.y43{bottom:574.090667pt;}
.y1a9{bottom:576.489333pt;}
.y5{bottom:576.674667pt;}
.y1be{bottom:577.765333pt;}
.ya2{bottom:577.869333pt;}
.y20f{bottom:578.833333pt;}
.ye1{bottom:580.308000pt;}
.y10{bottom:580.644000pt;}
.y23b{bottom:581.766667pt;}
.yfe{bottom:582.300000pt;}
.y17e{bottom:585.502667pt;}
.ycd{bottom:586.781333pt;}
.y168{bottom:587.978667pt;}
.y20{bottom:589.165333pt;}
.y13e{bottom:591.832000pt;}
.y20e{bottom:592.780000pt;}
.y23a{bottom:595.713333pt;}
.y77{bottom:597.204000pt;}
.y5b{bottom:598.008000pt;}
.y157{bottom:598.545333pt;}
.y35{bottom:602.270667pt;}
.y18c{bottom:602.922667pt;}
.y42{bottom:602.981333pt;}
.y1a8{bottom:605.380000pt;}
.y1ea{bottom:605.381333pt;}
.y20d{bottom:606.728000pt;}
.ya1{bottom:606.761333pt;}
.yf{bottom:607.742667pt;}
.ye0{bottom:609.198667pt;}
.y1d6{bottom:609.378667pt;}
.y239{bottom:609.661333pt;}
.y17d{bottom:614.394667pt;}
.ycc{bottom:615.673333pt;}
.y10f{bottom:615.984000pt;}
.y4{bottom:616.358667pt;}
.y167{bottom:616.870667pt;}
.y1f{bottom:618.057333pt;}
.y20c{bottom:620.676000pt;}
.y126{bottom:620.722667pt;}
.y238{bottom:623.609333pt;}
.y76{bottom:626.094667pt;}
.y5a{bottom:626.900000pt;}
.yfd{bottom:626.940000pt;}
.y156{bottom:627.436000pt;}
.y34{bottom:631.162667pt;}
.y18b{bottom:631.814667pt;}
.y41{bottom:631.873333pt;}
.y1bd{bottom:633.090667pt;}
.y1e9{bottom:634.272000pt;}
.y20b{bottom:634.624000pt;}
.ye{bottom:634.841333pt;}
.ya0{bottom:635.652000pt;}
.y237{bottom:637.557333pt;}
.y1d5{bottom:638.270667pt;}
.ydf{bottom:638.621333pt;}
.y17c{bottom:643.286667pt;}
.ycb{bottom:644.565333pt;}
.y10e{bottom:644.874667pt;}
.y166{bottom:645.761333pt;}
.y20a{bottom:648.570667pt;}
.y125{bottom:649.614667pt;}
.y236{bottom:651.504000pt;}
.y1cf{bottom:653.334667pt;}
.y75{bottom:654.986667pt;}
.y59{bottom:655.792000pt;}
.y3{bottom:656.044000pt;}
.y155{bottom:656.858667pt;}
.y33{bottom:660.054667pt;}
.y1a7{bottom:660.706667pt;}
.y40{bottom:660.765333pt;}
.yd{bottom:661.940000pt;}
.y1bc{bottom:661.982667pt;}
.y209{bottom:662.518667pt;}
.y1e{bottom:662.889333pt;}
.y9f{bottom:664.544000pt;}
.y235{bottom:665.452000pt;}
.y17b{bottom:672.178667pt;}
.yca{bottom:673.457333pt;}
.y10d{bottom:673.766667pt;}
.y165{bottom:675.185333pt;}
.y208{bottom:676.466667pt;}
.y124{bottom:678.506667pt;}
.y234{bottom:679.400000pt;}
.y1ce{bottom:682.225333pt;}
.y74{bottom:683.878667pt;}
.y58{bottom:684.682667pt;}
.y18a{bottom:687.141333pt;}
.y32{bottom:688.945333pt;}
.y1a6{bottom:689.598667pt;}
.y3f{bottom:689.657333pt;}
.y207{bottom:690.414667pt;}
.y1bb{bottom:690.874667pt;}
.y1d{bottom:691.780000pt;}
.y233{bottom:693.348000pt;}
.y9e{bottom:693.436000pt;}
.y1d4{bottom:693.596000pt;}
.yde{bottom:696.936000pt;}
.y17a{bottom:701.069333pt;}
.yc9{bottom:702.348000pt;}
.y10c{bottom:702.658667pt;}
.y154{bottom:702.753333pt;}
.y206{bottom:704.361333pt;}
.y232{bottom:707.294667pt;}
.y13d{bottom:707.397333pt;}
.y123{bottom:707.398667pt;}
.yc3{bottom:711.117333pt;}
.y73{bottom:712.770667pt;}
.y57{bottom:713.574667pt;}
.y31{bottom:717.837333pt;}
.y205{bottom:718.309333pt;}
.y1e8{bottom:718.489333pt;}
.y3e{bottom:718.548000pt;}
.y1ba{bottom:719.766667pt;}
.yc{bottom:720.154667pt;}
.y1c{bottom:720.672000pt;}
.y164{bottom:721.078667pt;}
.y231{bottom:721.242667pt;}
.y9d{bottom:722.328000pt;}
.y1d3{bottom:722.488000pt;}
.y179{bottom:729.961333pt;}
.yc8{bottom:731.240000pt;}
.y10b{bottom:731.550667pt;}
.y204{bottom:732.257333pt;}
.y230{bottom:735.190667pt;}
.y13c{bottom:736.289333pt;}
.yc1{bottom:740.009333pt;}
.y72{bottom:741.661333pt;}
.y8b{bottom:742.466667pt;}
.ydd{bottom:744.922667pt;}
.y1a5{bottom:744.924000pt;}
.y203{bottom:746.205333pt;}
.y30{bottom:746.729333pt;}
.y1b9{bottom:748.657333pt;}
.y22f{bottom:749.138667pt;}
.y9c{bottom:751.218667pt;}
.y1d2{bottom:751.378667pt;}
.y2{bottom:752.422667pt;}
.y122{bottom:754.850667pt;}
.y145{bottom:760.132000pt;}
.y202{bottom:760.153333pt;}
.y121{bottom:760.422667pt;}
.y10a{bottom:760.441333pt;}
.y22e{bottom:763.086667pt;}
.y13b{bottom:765.181333pt;}
.y1b{bottom:765.504000pt;}
.y11f{bottom:766.885333pt;}
.y56{bottom:768.901333pt;}
.y71{bottom:770.553333pt;}
.y8a{bottom:771.358667pt;}
.yc7{bottom:772.637333pt;}
.y1e7{bottom:773.816000pt;}
.y3d{bottom:773.874667pt;}
.y201{bottom:774.100000pt;}
.y1b8{bottom:777.549333pt;}
.y120{bottom:777.688000pt;}
.y9b{bottom:780.110667pt;}
.y1d1{bottom:780.270667pt;}
.y22d{bottom:784.009333pt;}
.y178{bottom:785.288000pt;}
.y200{bottom:788.048000pt;}
.y1a{bottom:794.396000pt;}
.y2f{bottom:794.794667pt;}
.y55{bottom:797.792000pt;}
.y70{bottom:799.445333pt;}
.y89{bottom:800.249333pt;}
.y144{bottom:801.528000pt;}
.y109{bottom:801.838667pt;}
.y1{bottom:802.236000pt;}
.y1e6{bottom:802.708000pt;}
.y3c{bottom:802.766667pt;}
.y22c{bottom:804.402667pt;}
.y1b7{bottom:806.441333pt;}
.y1ff{bottom:808.972000pt;}
.y177{bottom:814.178667pt;}
.y139{bottom:818.206667pt;}
.y9a{bottom:821.508000pt;}
.y19{bottom:823.286667pt;}
.y54{bottom:826.684000pt;}
.y6f{bottom:828.337333pt;}
.y88{bottom:829.141333pt;}
.y1fe{bottom:829.364000pt;}
.y3b{bottom:831.657333pt;}
.y13a{bottom:832.688000pt;}
.y1b6{bottom:835.333333pt;}
.yc6{bottom:835.597333pt;}
.y137{bottom:839.933333pt;}
.y176{bottom:843.070667pt;}
.y138{bottom:843.480000pt;}
.y1fd{bottom:849.756000pt;}
.y18{bottom:852.178667pt;}
.y22b{bottom:854.817333pt;}
.y53{bottom:855.576000pt;}
.y6e{bottom:857.228000pt;}
.y1e5{bottom:858.033333pt;}
.y3a{bottom:860.549333pt;}
.y1b5{bottom:864.224000pt;}
.yc5{bottom:864.488000pt;}
.y108{bottom:864.798667pt;}
.y2e{bottom:867.809333pt;}
.y175{bottom:871.962667pt;}
.y52{bottom:884.468000pt;}
.y6d{bottom:886.120000pt;}
.y1e4{bottom:886.925333pt;}
.y39{bottom:889.441333pt;}
.y1b4{bottom:893.116000pt;}
.yc4{bottom:893.380000pt;}
.y107{bottom:893.689333pt;}
.y2d{bottom:896.701333pt;}
.y17{bottom:897.010667pt;}
.y1fc{bottom:900.172000pt;}
.y174{bottom:900.854667pt;}
.y51{bottom:913.358667pt;}
.y1b3{bottom:941.182667pt;}
.y6c{bottom:941.446667pt;}
.y106{bottom:941.756000pt;}
.y50{bottom:942.250667pt;}
.y2c{bottom:944.766667pt;}
.y16{bottom:945.077333pt;}
.h20{height:23.623475pt;}
.h22{height:24.914400pt;}
.h23{height:32.330000pt;}
.h21{height:32.335333pt;}
.h4{height:43.112763pt;}
.h7{height:44.250180pt;}
.h5{height:47.246950pt;}
.h8{height:48.425617pt;}
.h9{height:48.430950pt;}
.h17{height:49.223543pt;}
.h1c{height:49.542349pt;}
.ha{height:49.829200pt;}
.h1e{height:56.328969pt;}
.h1d{height:56.334302pt;}
.h3{height:56.696182pt;}
.h15{height:59.308000pt;}
.h13{height:63.702667pt;}
.hc{height:66.839313pt;}
.h6{height:68.035261pt;}
.h10{height:70.911867pt;}
.h19{height:71.745980pt;}
.h18{height:80.788847pt;}
.hd{height:81.596000pt;}
.h11{height:81.601333pt;}
.h1{height:81.658200pt;}
.h1a{height:82.004847pt;}
.hb{height:87.418180pt;}
.h1b{height:105.086950pt;}
.hf{height:106.918667pt;}
.h2{height:112.024973pt;}
.h16{height:113.278950pt;}
.h14{height:124.812000pt;}
.he{height:127.374950pt;}
.h12{height:127.380284pt;}
.h1f{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w1{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x43{left:51.317333pt;}
.x1{left:88.476000pt;}
.x11{left:94.488000pt;}
.x1d{left:105.997333pt;}
.x41{left:107.117333pt;}
.xd{left:114.610667pt;}
.x12{left:118.398667pt;}
.x45{left:120.017333pt;}
.x16{left:123.168000pt;}
.x4{left:125.956000pt;}
.x40{left:133.508000pt;}
.xc{left:136.428000pt;}
.x25{left:138.633333pt;}
.x48{left:140.389333pt;}
.x49{left:142.158667pt;}
.x27{left:144.825333pt;}
.x3f{left:150.516000pt;}
.x3d{left:152.732000pt;}
.x13{left:155.061333pt;}
.x3e{left:156.929333pt;}
.x7{left:165.877333pt;}
.x24{left:167.600000pt;}
.x23{left:169.301333pt;}
.x4e{left:178.485333pt;}
.x3{left:184.481333pt;}
.x37{left:187.530667pt;}
.x44{left:193.926667pt;}
.x42{left:196.585333pt;}
.x38{left:199.064000pt;}
.x4f{left:204.416000pt;}
.xe{left:205.824000pt;}
.x53{left:208.554667pt;}
.x56{left:209.953333pt;}
.x39{left:223.981333pt;}
.x6{left:227.298667pt;}
.x1e{left:232.474667pt;}
.x29{left:237.809333pt;}
.x20{left:241.376000pt;}
.x47{left:247.393333pt;}
.x2{left:256.529333pt;}
.x4a{left:259.509333pt;}
.x21{left:267.169333pt;}
.x28{left:269.732000pt;}
.x26{left:272.713333pt;}
.x55{left:281.396000pt;}
.x22{left:291.100000pt;}
.x3a{left:292.597333pt;}
.x31{left:299.132000pt;}
.x3b{left:310.693333pt;}
.x1a{left:319.853333pt;}
.x18{left:321.826667pt;}
.x14{left:328.925333pt;}
.x1c{left:330.408000pt;}
.xa{left:333.649333pt;}
.x15{left:335.053333pt;}
.x5{left:341.821333pt;}
.x46{left:343.732000pt;}
.x8{left:344.648000pt;}
.x9{left:362.102667pt;}
.x4b{left:370.897333pt;}
.x10{left:372.926667pt;}
.xb{left:378.826667pt;}
.x51{left:398.874667pt;}
.x1f{left:400.029333pt;}
.xf{left:403.568000pt;}
.x2d{left:406.082667pt;}
.x2a{left:414.234667pt;}
.x54{left:418.105333pt;}
.x52{left:420.540000pt;}
.x34{left:427.021333pt;}
.x2c{left:446.030667pt;}
.x2f{left:450.605333pt;}
.x4c{left:452.973333pt;}
.x57{left:461.278667pt;}
.x50{left:463.538667pt;}
.x17{left:468.445333pt;}
.x32{left:469.501333pt;}
.x58{left:472.813333pt;}
.x33{left:474.588000pt;}
.x3c{left:478.937333pt;}
.x2b{left:480.522667pt;}
.x35{left:490.045333pt;}
.x36{left:495.130667pt;}
.x2e{left:504.532000pt;}
.x30{left:518.270667pt;}
.x4d{left:520.446667pt;}
.x1b{left:580.276000pt;}
.x19{left:687.766667pt;}
}




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