
    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_6eff4c8c45fa15948334d32a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.854492;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_4610c27929e9f707a8f7df9f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_250ad9610c854275cbb93067.woff')format("woff");}.ff3{font-family:ff3;line-height:0.942871;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_f652d3d3f40c34f60bece2db.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_29f2b5533c9aeb9af43ccbcb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.884277;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_9e21208a7d05108ff145c516.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d184a063ddb0cde402f5ec1c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.883301;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_a856090fd48951acd4c4bc95.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4d9e071e4377ea89d6c2844f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dda20cc995b55482279f7bee.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eec3ca7e4e3c2303264a1f28.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b88b4624084ec8c940cab2b4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.728027;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_b137b0dd6d815f3b81c4264e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.872559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bd1f3a68b03d36ab3c7c9003.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e620b91ece5fb874786976bc.woff')format("woff");}.fff{font-family:fff;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2b1a74d9526a73f4aa1fa09d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.728027;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:ff11;src:url('chunks/assets/font_98620dd5bd16d5d7045bbd3a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.798800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.629900px;}
.v4{vertical-align:9.000300px;}
.v6{vertical-align:15.840000px;}
.v1{vertical-align:19.800000px;}
.v5{vertical-align:30.000000px;}
.ls37{letter-spacing:-2.268000px;}
.ls36{letter-spacing:-1.200000px;}
.ls18{letter-spacing:-0.604800px;}
.ls3b{letter-spacing:-0.600000px;}
.ls44{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.017100px;}
.ls17{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.004080px;}
.ls43{letter-spacing:0.004800px;}
.lsa{letter-spacing:0.005700px;}
.ls2{letter-spacing:0.007200px;}
.ls14{letter-spacing:0.011400px;}
.ls7{letter-spacing:0.012000px;}
.ls39{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.028500px;}
.ls3f{letter-spacing:0.339600px;}
.ls1f{letter-spacing:0.495900px;}
.ls20{letter-spacing:0.501600px;}
.ls26{letter-spacing:0.518700px;}
.ls27{letter-spacing:0.524400px;}
.ls23{letter-spacing:0.541500px;}
.ls24{letter-spacing:0.564300px;}
.ls22{letter-spacing:0.570000px;}
.ls3a{letter-spacing:0.600000px;}
.ls3e{letter-spacing:0.612000px;}
.ls2b{letter-spacing:0.877800px;}
.ls42{letter-spacing:0.960000px;}
.ls21{letter-spacing:1.065900px;}
.ls40{letter-spacing:1.200000px;}
.ls6{letter-spacing:1.245600px;}
.ls4{letter-spacing:1.252800px;}
.ls5{letter-spacing:1.274400px;}
.ls41{letter-spacing:1.440000px;}
.ls2f{letter-spacing:1.521900px;}
.ls30{letter-spacing:1.527600px;}
.ls2e{letter-spacing:1.556100px;}
.ls2c{letter-spacing:1.561800px;}
.ls2d{letter-spacing:1.567500px;}
.lsb{letter-spacing:1.852500px;}
.lsc{letter-spacing:1.858200px;}
.ls1{letter-spacing:2.534400px;}
.ls0{letter-spacing:3.769200px;}
.ls19{letter-spacing:3.780000px;}
.ls3d{letter-spacing:3.963600px;}
.ls2a{letter-spacing:3.978600px;}
.ls1e{letter-spacing:4.041300px;}
.ls1d{letter-spacing:4.047000px;}
.ls34{letter-spacing:4.349100px;}
.ls33{letter-spacing:4.354800px;}
.ls10{letter-spacing:4.417500px;}
.ls11{letter-spacing:4.423200px;}
.ls16{letter-spacing:4.503000px;}
.ls15{letter-spacing:4.508700px;}
.ls1a{letter-spacing:4.695600px;}
.ls1b{letter-spacing:4.702500px;}
.ls1c{letter-spacing:4.708200px;}
.ls25{letter-spacing:4.947600px;}
.ls3c{letter-spacing:5.262000px;}
.ls28{letter-spacing:5.489100px;}
.ls29{letter-spacing:5.494800px;}
.ls12{letter-spacing:6.931200px;}
.ls13{letter-spacing:6.936900px;}
.lse{letter-spacing:7.318800px;}
.lsd{letter-spacing:7.324500px;}
.ls32{letter-spacing:7.917300px;}
.ls35{letter-spacing:71.842800px;}
.ls31{letter-spacing:176.882400px;}
.ls9{letter-spacing:341.811900px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-74.534400px;}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.ws7{word-spacing:-60.000000px;}
.ws4{word-spacing:-57.780000px;}
.ws2f{word-spacing:-57.570000px;}
.wsd{word-spacing:-57.000000px;}
.ws2{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.395200px;}
.wsc{word-spacing:-51.000000px;}
.wsa4{word-spacing:-48.000000px;}
.ws3{word-spacing:-30.000000px;}
.ws2c{word-spacing:-20.016000px;}
.ws2e{word-spacing:-16.680000px;}
.wsb7{word-spacing:-16.080000px;}
.ws116{word-spacing:-14.784000px;}
.wsa5{word-spacing:-13.344000px;}
.wsb{word-spacing:-12.996000px;}
.ws8{word-spacing:-9.674400px;}
.ws17b{word-spacing:-7.739520px;}
.ws3f{word-spacing:-4.512000px;}
.wse6{word-spacing:-3.588000px;}
.ws14a{word-spacing:-3.438000px;}
.ws60{word-spacing:-3.216000px;}
.ws14e{word-spacing:-3.204000px;}
.ws98{word-spacing:-3.126000px;}
.ws11d{word-spacing:-3.102000px;}
.ws30{word-spacing:-2.934000px;}
.ws10e{word-spacing:-2.910000px;}
.ws19d{word-spacing:-2.904000px;}
.wsef{word-spacing:-2.886000px;}
.ws4c{word-spacing:-2.742000px;}
.ws131{word-spacing:-2.694000px;}
.wsb6{word-spacing:-2.649600px;}
.wsb4{word-spacing:-2.644800px;}
.ws9d{word-spacing:-2.550000px;}
.ws32{word-spacing:-2.514000px;}
.wsf9{word-spacing:-2.490000px;}
.ws84{word-spacing:-2.430000px;}
.ws14b{word-spacing:-2.412000px;}
.ws109{word-spacing:-2.406000px;}
.ws149{word-spacing:-2.268000px;}
.ws88{word-spacing:-2.226000px;}
.ws6b{word-spacing:-2.223000px;}
.ws132{word-spacing:-2.208000px;}
.ws174{word-spacing:-2.179200px;}
.ws133{word-spacing:-2.178000px;}
.ws173{word-spacing:-2.174400px;}
.ws186{word-spacing:-2.097600px;}
.ws134{word-spacing:-2.064000px;}
.ws16d{word-spacing:-2.054400px;}
.wse1{word-spacing:-2.046000px;}
.ws85{word-spacing:-2.034000px;}
.ws29{word-spacing:-2.012100px;}
.ws13{word-spacing:-2.006400px;}
.wsf{word-spacing:-2.003400px;}
.ws15c{word-spacing:-1.992600px;}
.wsfe{word-spacing:-1.980000px;}
.ws25{word-spacing:-1.915200px;}
.ws144{word-spacing:-1.908000px;}
.ws184{word-spacing:-1.843200px;}
.ws1c5{word-spacing:-1.814400px;}
.wse8{word-spacing:-1.788000px;}
.ws169{word-spacing:-1.742400px;}
.ws36{word-spacing:-1.710000px;}
.wsfc{word-spacing:-1.704000px;}
.ws52{word-spacing:-1.698000px;}
.wsdc{word-spacing:-1.680000px;}
.wsdd{word-spacing:-1.674000px;}
.ws3c{word-spacing:-1.668000px;}
.ws43{word-spacing:-1.614000px;}
.ws172{word-spacing:-1.598400px;}
.ws123{word-spacing:-1.542000px;}
.ws122{word-spacing:-1.536000px;}
.ws18a{word-spacing:-1.502400px;}
.ws165{word-spacing:-1.449600px;}
.wsff{word-spacing:-1.416000px;}
.wsf1{word-spacing:-1.356000px;}
.ws15d{word-spacing:-1.344600px;}
.wsa2{word-spacing:-1.334400px;}
.ws15{word-spacing:-1.305300px;}
.wsb5{word-spacing:-1.291200px;}
.ws10{word-spacing:-1.267200px;}
.wsae{word-spacing:-1.266000px;}
.ws154{word-spacing:-1.230000px;}
.ws1c8{word-spacing:-1.224000px;}
.wsac{word-spacing:-1.206000px;}
.ws66{word-spacing:-1.068000px;}
.ws97{word-spacing:-1.062000px;}
.ws7d{word-spacing:-1.014000px;}
.ws167{word-spacing:-0.979200px;}
.ws18b{word-spacing:-0.974400px;}
.ws190{word-spacing:-0.955200px;}
.wsd8{word-spacing:-0.930000px;}
.ws4d{word-spacing:-0.840000px;}
.ws28{word-spacing:-0.837900px;}
.ws163{word-spacing:-0.758400px;}
.ws155{word-spacing:-0.750000px;}
.ws1b7{word-spacing:-0.739200px;}
.wsd4{word-spacing:-0.660000px;}
.ws1ae{word-spacing:-0.648000px;}
.ws50{word-spacing:-0.642000px;}
.ws1ad{word-spacing:-0.614400px;}
.wsd7{word-spacing:-0.546000px;}
.ws11a{word-spacing:-0.540000px;}
.ws17a{word-spacing:-0.508800px;}
.ws9f{word-spacing:-0.504000px;}
.ws160{word-spacing:-0.378000px;}
.ws47{word-spacing:-0.366000px;}
.wsbb{word-spacing:-0.342000px;}
.ws16b{word-spacing:-0.297600px;}
.ws1ba{word-spacing:-0.254400px;}
.ws2b{word-spacing:-0.240000px;}
.wsee{word-spacing:-0.234000px;}
.ws6d{word-spacing:-0.159600px;}
.ws2d{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.057000px;}
.ws74{word-spacing:-0.048000px;}
.wse{word-spacing:0.000000px;}
.ws1c0{word-spacing:0.100800px;}
.wsde{word-spacing:0.198000px;}
.ws16{word-spacing:0.199500px;}
.ws11c{word-spacing:0.204000px;}
.ws31{word-spacing:0.210000px;}
.ws56{word-spacing:0.234000px;}
.wse3{word-spacing:0.300000px;}
.ws1d2{word-spacing:0.398400px;}
.ws182{word-spacing:0.451200px;}
.ws166{word-spacing:0.475200px;}
.ws11{word-spacing:0.484500px;}
.ws6f{word-spacing:0.518700px;}
.ws6e{word-spacing:0.524400px;}
.ws4a{word-spacing:0.540000px;}
.ws18c{word-spacing:0.542400px;}
.ws5c{word-spacing:0.594000px;}
.ws34{word-spacing:0.636000px;}
.ws137{word-spacing:0.690000px;}
.ws1bc{word-spacing:0.715200px;}
.ws1bd{word-spacing:0.720000px;}
.ws158{word-spacing:0.723600px;}
.wsb2{word-spacing:0.780000px;}
.ws138{word-spacing:0.840000px;}
.wsf8{word-spacing:0.870000px;}
.ws72{word-spacing:0.877800px;}
.ws1a5{word-spacing:0.940800px;}
.wse0{word-spacing:0.948000px;}
.ws187{word-spacing:1.017600px;}
.wsce{word-spacing:1.050000px;}
.ws16c{word-spacing:1.051200px;}
.ws195{word-spacing:1.089600px;}
.ws164{word-spacing:1.128000px;}
.ws5b{word-spacing:1.176000px;}
.ws1b2{word-spacing:1.200000px;}
.ws18e{word-spacing:1.209600px;}
.wsc1{word-spacing:1.236000px;}
.ws20{word-spacing:1.236900px;}
.ws1cf{word-spacing:1.238400px;}
.ws1cd{word-spacing:1.252800px;}
.wse7{word-spacing:1.254000px;}
.ws12f{word-spacing:1.278000px;}
.ws41{word-spacing:1.356000px;}
.wscd{word-spacing:1.410000px;}
.ws120{word-spacing:1.428000px;}
.wsb3{word-spacing:1.501200px;}
.ws54{word-spacing:1.524000px;}
.ws53{word-spacing:1.530000px;}
.ws3e{word-spacing:1.626000px;}
.wsdb{word-spacing:1.656000px;}
.ws8f{word-spacing:1.662000px;}
.ws157{word-spacing:1.695600px;}
.ws61{word-spacing:1.782000px;}
.ws16a{word-spacing:1.800000px;}
.ws1d3{word-spacing:1.843200px;}
.ws1ca{word-spacing:1.896000px;}
.ws19e{word-spacing:2.016000px;}
.wsf6{word-spacing:2.262000px;}
.wsbc{word-spacing:2.274000px;}
.ws185{word-spacing:2.284800px;}
.ws5e{word-spacing:2.292000px;}
.ws33{word-spacing:2.310000px;}
.ws10d{word-spacing:2.316000px;}
.ws162{word-spacing:2.390400px;}
.wsa1{word-spacing:2.424000px;}
.wsaf{word-spacing:2.430000px;}
.ws118{word-spacing:2.466000px;}
.ws4b{word-spacing:2.478000px;}
.ws14{word-spacing:2.502300px;}
.ws45{word-spacing:2.562000px;}
.ws117{word-spacing:2.568000px;}
.wsa7{word-spacing:2.580000px;}
.wse2{word-spacing:2.604000px;}
.ws198{word-spacing:2.606400px;}
.ws51{word-spacing:2.610000px;}
.ws1bf{word-spacing:2.611200px;}
.ws13c{word-spacing:2.652000px;}
.wsd6{word-spacing:2.688000px;}
.wsb0{word-spacing:2.730000px;}
.ws128{word-spacing:2.754000px;}
.ws115{word-spacing:2.766000px;}
.ws143{word-spacing:2.856000px;}
.wsd3{word-spacing:2.886000px;}
.wsbf{word-spacing:2.910000px;}
.ws121{word-spacing:2.946000px;}
.ws196{word-spacing:2.947200px;}
.ws197{word-spacing:2.952000px;}
.ws7e{word-spacing:2.964000px;}
.ws1b6{word-spacing:2.976000px;}
.wse5{word-spacing:3.060000px;}
.wsb1{word-spacing:3.078000px;}
.ws19f{word-spacing:3.105600px;}
.ws4f{word-spacing:3.210000px;}
.ws19b{word-spacing:3.211200px;}
.wsc0{word-spacing:3.270000px;}
.wsb9{word-spacing:3.342000px;}
.wsba{word-spacing:3.348000px;}
.ws18f{word-spacing:3.412800px;}
.ws21{word-spacing:3.448500px;}
.ws22{word-spacing:3.454200px;}
.ws91{word-spacing:3.570000px;}
.ws46{word-spacing:3.588000px;}
.ws1c6{word-spacing:3.614400px;}
.ws161{word-spacing:3.667200px;}
.ws183{word-spacing:3.672000px;}
.ws126{word-spacing:3.678000px;}
.ws127{word-spacing:3.684000px;}
.ws1a9{word-spacing:3.720000px;}
.ws1a8{word-spacing:3.724800px;}
.wsda{word-spacing:3.726000px;}
.ws16f{word-spacing:3.729600px;}
.ws177{word-spacing:3.748800px;}
.ws159{word-spacing:3.780000px;}
.ws156{word-spacing:3.796200px;}
.ws5f{word-spacing:3.810000px;}
.ws23{word-spacing:3.881700px;}
.ws92{word-spacing:3.888000px;}
.ws1a3{word-spacing:3.945600px;}
.ws13e{word-spacing:3.960000px;}
.ws62{word-spacing:3.972000px;}
.ws71{word-spacing:3.972900px;}
.ws70{word-spacing:3.978600px;}
.wsbe{word-spacing:3.996000px;}
.ws9a{word-spacing:4.014000px;}
.ws42{word-spacing:4.038000px;}
.ws170{word-spacing:4.104000px;}
.ws95{word-spacing:4.302000px;}
.ws140{word-spacing:4.374000px;}
.ws44{word-spacing:4.404000px;}
.ws13a{word-spacing:4.464000px;}
.ws1c7{word-spacing:4.488000px;}
.ws15f{word-spacing:4.617000px;}
.ws3d{word-spacing:4.674000px;}
.ws1d0{word-spacing:4.675200px;}
.ws6a{word-spacing:4.702500px;}
.ws69{word-spacing:4.708200px;}
.ws119{word-spacing:4.722000px;}
.wsad{word-spacing:4.728000px;}
.ws142{word-spacing:4.752000px;}
.ws15a{word-spacing:4.757400px;}
.ws139{word-spacing:4.848000px;}
.wsa0{word-spacing:4.878000px;}
.wscc{word-spacing:4.914000px;}
.ws6c{word-spacing:4.941900px;}
.ws99{word-spacing:4.944000px;}
.ws111{word-spacing:4.968000px;}
.ws1bb{word-spacing:5.030400px;}
.ws1d1{word-spacing:5.068800px;}
.ws1b5{word-spacing:5.107200px;}
.wsa8{word-spacing:5.172000px;}
.wscf{word-spacing:5.190000px;}
.ws10f{word-spacing:5.220000px;}
.ws102{word-spacing:5.268000px;}
.wsfd{word-spacing:5.280000px;}
.wsc2{word-spacing:5.334000px;}
.ws19a{word-spacing:5.380800px;}
.ws10b{word-spacing:5.448000px;}
.wsd0{word-spacing:5.490000px;}
.ws181{word-spacing:5.606400px;}
.wsf0{word-spacing:5.628000px;}
.ws103{word-spacing:5.688000px;}
.ws10a{word-spacing:5.742000px;}
.ws113{word-spacing:5.808000px;}
.ws114{word-spacing:5.814000px;}
.wsd5{word-spacing:5.832000px;}
.ws68{word-spacing:5.844000px;}
.ws48{word-spacing:6.036000px;}
.ws168{word-spacing:6.105600px;}
.ws58{word-spacing:6.156000px;}
.ws49{word-spacing:6.210000px;}
.ws1a{word-spacing:6.218700px;}
.ws1b{word-spacing:6.224400px;}
.ws130{word-spacing:6.240000px;}
.wsd1{word-spacing:6.312000px;}
.ws87{word-spacing:6.372000px;}
.ws3b{word-spacing:6.378000px;}
.wsdf{word-spacing:6.450000px;}
.ws37{word-spacing:6.468000px;}
.ws188{word-spacing:6.518400px;}
.ws1c3{word-spacing:6.523200px;}
.wsfa{word-spacing:6.624000px;}
.wsfb{word-spacing:6.630000px;}
.ws1a7{word-spacing:6.652800px;}
.wsc5{word-spacing:6.750000px;}
.ws19c{word-spacing:6.777600px;}
.ws1a2{word-spacing:6.782400px;}
.wsc7{word-spacing:6.792000px;}
.ws9c{word-spacing:6.810000px;}
.ws178{word-spacing:6.811200px;}
.ws104{word-spacing:6.882000px;}
.wsec{word-spacing:6.912000px;}
.ws55{word-spacing:6.924000px;}
.ws189{word-spacing:6.936000px;}
.ws129{word-spacing:6.966000px;}
.ws15b{word-spacing:6.976800px;}
.ws8d{word-spacing:6.990000px;}
.ws8e{word-spacing:6.996000px;}
.wsc3{word-spacing:7.086000px;}
.ws180{word-spacing:7.147200px;}
.ws1c2{word-spacing:7.166400px;}
.ws1f{word-spacing:7.199100px;}
.ws1e{word-spacing:7.204800px;}
.ws15e{word-spacing:7.209000px;}
.ws1b3{word-spacing:7.214400px;}
.wse4{word-spacing:7.278000px;}
.ws1cc{word-spacing:7.377600px;}
.ws1a4{word-spacing:7.382400px;}
.ws1a6{word-spacing:7.396800px;}
.ws191{word-spacing:7.444800px;}
.ws1b8{word-spacing:7.449600px;}
.ws176{word-spacing:7.473600px;}
.ws59{word-spacing:7.482000px;}
.ws40{word-spacing:7.500000px;}
.ws86{word-spacing:7.506000px;}
.ws175{word-spacing:7.608000px;}
.ws65{word-spacing:7.620000px;}
.ws1ac{word-spacing:7.646400px;}
.ws81{word-spacing:7.674000px;}
.wsd9{word-spacing:7.716000px;}
.ws12e{word-spacing:7.746000px;}
.ws193{word-spacing:7.766400px;}
.ws73{word-spacing:7.917300px;}
.ws17d{word-spacing:7.934400px;}
.ws80{word-spacing:7.956000px;}
.ws1c1{word-spacing:7.958400px;}
.ws1a0{word-spacing:7.987200px;}
.ws10c{word-spacing:8.022000px;}
.ws17{word-spacing:8.037000px;}
.ws26{word-spacing:8.048400px;}
.ws27{word-spacing:8.054100px;}
.ws18{word-spacing:8.105400px;}
.ws39{word-spacing:8.106000px;}
.ws19{word-spacing:8.111100px;}
.ws3a{word-spacing:8.112000px;}
.wsc6{word-spacing:8.178000px;}
.wsbd{word-spacing:8.298000px;}
.ws9b{word-spacing:8.316000px;}
.wsa9{word-spacing:8.328000px;}
.ws12d{word-spacing:8.334000px;}
.wscb{word-spacing:8.418000px;}
.wsc4{word-spacing:8.562000px;}
.ws63{word-spacing:8.568000px;}
.ws82{word-spacing:8.634000px;}
.ws1be{word-spacing:8.688000px;}
.ws57{word-spacing:8.712000px;}
.ws38{word-spacing:8.856000px;}
.ws11e{word-spacing:8.862000px;}
.ws1c{word-spacing:8.943300px;}
.ws110{word-spacing:8.946000px;}
.ws64{word-spacing:8.964000px;}
.ws18d{word-spacing:9.048000px;}
.ws7f{word-spacing:9.144000px;}
.ws11f{word-spacing:9.162000px;}
.ws1c9{word-spacing:9.163200px;}
.ws13b{word-spacing:9.216000px;}
.ws93{word-spacing:9.336000px;}
.wsf4{word-spacing:9.342000px;}
.ws1ce{word-spacing:9.364800px;}
.ws112{word-spacing:9.438000px;}
.ws151{word-spacing:9.456000px;}
.ws106{word-spacing:9.462000px;}
.ws135{word-spacing:9.528000px;}
.ws146{word-spacing:9.540000px;}
.wsd2{word-spacing:9.582000px;}
.wsed{word-spacing:9.708000px;}
.ws1ab{word-spacing:9.720000px;}
.wseb{word-spacing:9.990000px;}
.wsf7{word-spacing:10.224000px;}
.ws8c{word-spacing:10.242000px;}
.ws35{word-spacing:10.260000px;}
.wsaa{word-spacing:10.386000px;}
.ws4e{word-spacing:10.392000px;}
.ws192{word-spacing:10.603200px;}
.ws107{word-spacing:10.686000px;}
.wse9{word-spacing:10.698000px;}
.wsea{word-spacing:10.812000px;}
.ws16e{word-spacing:11.016000px;}
.ws145{word-spacing:11.202000px;}
.ws171{word-spacing:11.376000px;}
.ws24{word-spacing:11.377200px;}
.ws8b{word-spacing:11.580000px;}
.wsca{word-spacing:11.664000px;}
.ws12c{word-spacing:11.850000px;}
.ws125{word-spacing:11.940000px;}
.ws5d{word-spacing:12.012000px;}
.ws124{word-spacing:12.264000px;}
.ws1a1{word-spacing:12.384000px;}
.ws11b{word-spacing:12.480000px;}
.ws12a{word-spacing:12.492000px;}
.ws1d{word-spacing:12.665400px;}
.wsb8{word-spacing:12.726000px;}
.ws148{word-spacing:12.786000px;}
.ws147{word-spacing:13.200000px;}
.ws1cb{word-spacing:13.252800px;}
.wsc9{word-spacing:13.578000px;}
.ws1c4{word-spacing:13.656000px;}
.ws12{word-spacing:13.890900px;}
.ws1b0{word-spacing:14.424000px;}
.ws1af{word-spacing:14.654400px;}
.ws199{word-spacing:14.659200px;}
.ws141{word-spacing:14.964000px;}
.ws1b1{word-spacing:15.172800px;}
.ws2a{word-spacing:15.230400px;}
.wsab{word-spacing:15.480000px;}
.ws105{word-spacing:15.648000px;}
.wsf2{word-spacing:16.026000px;}
.ws96{word-spacing:16.134000px;}
.ws90{word-spacing:16.404000px;}
.ws8a{word-spacing:16.620000px;}
.ws1b4{word-spacing:16.627200px;}
.ws89{word-spacing:16.824000px;}
.wsf3{word-spacing:16.896000px;}
.ws94{word-spacing:16.902000px;}
.ws17e{word-spacing:17.083200px;}
.ws1b9{word-spacing:17.270400px;}
.ws150{word-spacing:17.490000px;}
.ws14f{word-spacing:17.496000px;}
.ws83{word-spacing:18.012000px;}
.ws9e{word-spacing:18.450000px;}
.ws136{word-spacing:18.678000px;}
.wsc8{word-spacing:18.684000px;}
.ws17c{word-spacing:18.724800px;}
.ws1aa{word-spacing:19.987200px;}
.ws179{word-spacing:20.400000px;}
.ws13f{word-spacing:21.690000px;}
.wsf5{word-spacing:21.924000px;}
.ws152{word-spacing:22.524000px;}
.ws101{word-spacing:23.550000px;}
.ws12b{word-spacing:24.396000px;}
.ws194{word-spacing:24.715200px;}
.ws108{word-spacing:24.972000px;}
.ws5a{word-spacing:25.632000px;}
.ws153{word-spacing:27.072000px;}
.ws100{word-spacing:27.282000px;}
.ws13d{word-spacing:28.962000px;}
.ws17f{word-spacing:30.840000px;}
.ws14c{word-spacing:64.920000px;}
.ws14d{word-spacing:64.926000px;}
.ws67{word-spacing:79.866000px;}
.wsa3{word-spacing:90.681600px;}
.ws75{word-spacing:273.820800px;}
.ws9{word-spacing:320.191800px;}
.ws79{word-spacing:331.156800px;}
.ws7b{word-spacing:335.928000px;}
.ws77{word-spacing:344.500800px;}
.ws7a{word-spacing:344.918400px;}
.ws7c{word-spacing:349.272000px;}
.ws76{word-spacing:358.555200px;}
.ws78{word-spacing:400.819200px;}
.wsa6{word-spacing:654.105600px;}
._1d{margin-left:-33.182400px;}
._12{margin-left:-30.120000px;}
._29{margin-left:-29.059800px;}
._23{margin-left:-24.009600px;}
._17{margin-left:-19.873800px;}
._16{margin-left:-18.366000px;}
._14{margin-left:-16.843800px;}
._9{margin-left:-15.196200px;}
._c{margin-left:-14.130300px;}
._d{margin-left:-12.534300px;}
._8{margin-left:-11.462700px;}
._28{margin-left:-10.387800px;}
._a{margin-left:-9.273900px;}
._6{margin-left:-7.734000px;}
._5{margin-left:-6.024600px;}
._1{margin-left:-4.415400px;}
._2{margin-left:-2.547600px;}
._0{margin-left:-1.452000px;}
._3{width:1.188000px;}
._4{width:2.534400px;}
._7{width:3.693600px;}
._15{width:4.765200px;}
._13{width:6.018000px;}
._11{width:7.392900px;}
._b{width:9.234000px;}
._25{width:11.646000px;}
._27{width:12.700200px;}
._f{width:15.458400px;}
._26{width:17.668200px;}
._1f{width:130.602000px;}
._10{width:142.998000px;}
._22{width:173.971200px;}
._1e{width:202.814400px;}
._e{width:283.808700px;}
._21{width:315.532800px;}
._19{width:338.202000px;}
._1c{width:358.262400px;}
._1b{width:371.193600px;}
._1a{width:372.382800px;}
._18{width:410.592000px;}
._24{width:451.358400px;}
._20{width:879.528000px;}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc7{color:rgb(8,19,25);}
.fc5{color:rgb(8,19,25);}
.fc2{color:rgb(205,30,37);}
.fc1{color:rgb(35,31,32);}
.fc6{color:rgb(4,6,6);}
.fc0{color:rgb(27,40,73);}
.fs9{font-size:27.840000px;}
.fs2{font-size:30.000000px;}
.fs5{font-size:34.800000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.045000px;}
.y3b{bottom:71.469750px;}
.y79{bottom:71.867400px;}
.y5d{bottom:72.961050px;}
.yf1{bottom:76.707750px;}
.y144{bottom:76.733250px;}
.yc2{bottom:80.392050px;}
.y16f{bottom:80.814000px;}
.y10c{bottom:82.929900px;}
.y1a5{bottom:83.373300px;}
.y3a{bottom:87.969750px;}
.y78{bottom:90.617400px;}
.y5c{bottom:91.711050px;}
.y1a4{bottom:99.123300px;}
.y16e{bottom:99.564000px;}
.yc1{bottom:101.992050px;}
.y5b{bottom:110.461050px;}
.y1a3{bottom:114.873300px;}
.y77{bottom:115.745400px;}
.y16d{bottom:118.314000px;}
.yc0{bottom:123.592050px;}
.y39{bottom:128.148525px;}
.y5a{bottom:129.211050px;}
.y1a2{bottom:130.623300px;}
.y16c{bottom:137.064000px;}
.y76{bottom:145.124550px;}
.ybf{bottom:145.192050px;}
.y38{bottom:145.398150px;}
.y1a1{bottom:146.373300px;}
.y59{bottom:147.961200px;}
.y16b{bottom:155.814000px;}
.y1a0{bottom:162.123300px;}
.y37{bottom:162.647775px;}
.y75{bottom:163.874550px;}
.y1e2{bottom:166.249650px;}
.y58{bottom:166.711200px;}
.ybe{bottom:166.792050px;}
.y16a{bottom:174.564000px;}
.y19f{bottom:177.873300px;}
.y36{bottom:179.897400px;}
.y1e1{bottom:181.999650px;}
.y74{bottom:182.624550px;}
.y57{bottom:185.461200px;}
.ybd{bottom:188.392050px;}
.y169{bottom:193.314000px;}
.y19e{bottom:193.623300px;}
.y35{bottom:197.148375px;}
.y1e0{bottom:197.749650px;}
.y73{bottom:201.374550px;}
.y56{bottom:204.211200px;}
.y19d{bottom:209.373300px;}
.ybc{bottom:209.992050px;}
.y168{bottom:212.064000px;}
.y1df{bottom:213.499650px;}
.y34{bottom:214.398000px;}
.y72{bottom:220.124550px;}
.y55{bottom:222.961200px;}
.y19c{bottom:225.123300px;}
.y1de{bottom:229.249650px;}
.y167{bottom:230.814000px;}
.ybb{bottom:231.592050px;}
.y33{bottom:231.647625px;}
.y71{bottom:238.874550px;}
.y19b{bottom:240.873300px;}
.y54{bottom:241.711200px;}
.y1dd{bottom:244.999650px;}
.y32{bottom:248.897250px;}
.y166{bottom:249.564000px;}
.y19a{bottom:256.623300px;}
.yba{bottom:257.387700px;}
.y70{bottom:257.624550px;}
.y53{bottom:260.461200px;}
.y1dc{bottom:260.749650px;}
.y165{bottom:268.314000px;}
.y31{bottom:271.272225px;}
.y199{bottom:272.373300px;}
.y1db{bottom:276.499650px;}
.y52{bottom:279.211500px;}
.y6f{bottom:282.752700px;}
.y164{bottom:287.064000px;}
.y198{bottom:288.123300px;}
.y30{bottom:288.521700px;}
.y1da{bottom:292.249650px;}
.yb9{bottom:297.391350px;}
.y51{bottom:297.961500px;}
.y197{bottom:303.873300px;}
.y163{bottom:305.814000px;}
.y1d9{bottom:307.999650px;}
.y2f{bottom:309.804225px;}
.yb8{bottom:312.391350px;}
.y50{bottom:316.711500px;}
.y196{bottom:319.623300px;}
.y1d8{bottom:323.749650px;}
.y162{bottom:324.564000px;}
.y6e{bottom:324.889350px;}
.y2e{bottom:327.062250px;}
.y195{bottom:335.373300px;}
.y4f{bottom:335.461500px;}
.y1d7{bottom:339.499650px;}
.y161{bottom:343.314000px;}
.y2d{bottom:349.437600px;}
.y194{bottom:351.123300px;}
.y4e{bottom:354.211500px;}
.y1d6{bottom:355.249650px;}
.y160{bottom:362.064000px;}
.y2c{bottom:366.687225px;}
.y193{bottom:366.873300px;}
.y6d{bottom:369.151800px;}
.y1d5{bottom:370.999650px;}
.y4d{bottom:372.961500px;}
.y15f{bottom:380.814300px;}
.y192{bottom:382.623300px;}
.y2b{bottom:383.936850px;}
.y1d4{bottom:386.749650px;}
.y6c{bottom:387.901800px;}
.y4c{bottom:391.711500px;}
.y191{bottom:398.373300px;}
.y15e{bottom:399.564300px;}
.y2a{bottom:401.186475px;}
.y1d3{bottom:402.499650px;}
.y6b{bottom:406.651800px;}
.y4b{bottom:410.461500px;}
.y190{bottom:414.123300px;}
.y1d2{bottom:418.249650px;}
.y15d{bottom:418.314300px;}
.y29{bottom:418.436100px;}
.y6a{bottom:425.401800px;}
.y4a{bottom:429.211500px;}
.y18f{bottom:429.873300px;}
.y1d1{bottom:433.999650px;}
.y28{bottom:435.685725px;}
.y143{bottom:436.296150px;}
.y121{bottom:437.064150px;}
.y15c{bottom:437.064300px;}
.y69{bottom:444.151800px;}
.y18e{bottom:445.623300px;}
.y49{bottom:447.961650px;}
.y1d0{bottom:449.749650px;}
.y27{bottom:452.935350px;}
.y142{bottom:455.046150px;}
.y10b{bottom:455.274000px;}
.y120{bottom:455.814150px;}
.y15b{bottom:455.814300px;}
.y18d{bottom:461.373300px;}
.y68{bottom:462.901800px;}
.y1cf{bottom:465.499650px;}
.y48{bottom:466.711650px;}
.ycb{bottom:467.802150px;}
.yd4{bottom:469.680150px;}
.y26{bottom:470.184975px;}
.y141{bottom:473.796150px;}
.y11f{bottom:474.564300px;}
.y18c{bottom:477.123300px;}
.y1ce{bottom:481.249650px;}
.y67{bottom:481.651800px;}
.y47{bottom:485.461650px;}
.yca{bottom:486.552150px;}
.y25{bottom:487.434600px;}
.yd3{bottom:489.180150px;}
.y140{bottom:492.546150px;}
.y18b{bottom:492.873300px;}
.y11e{bottom:493.314300px;}
.y1cd{bottom:496.999650px;}
.y66{bottom:500.401800px;}
.y46{bottom:504.211650px;}
.y24{bottom:504.684225px;}
.yc9{bottom:505.302150px;}
.y18a{bottom:508.623300px;}
.yd2{bottom:508.680150px;}
.y13f{bottom:511.296150px;}
.y11d{bottom:512.064300px;}
.y1cc{bottom:512.749650px;}
.y65{bottom:519.151800px;}
.y23{bottom:521.933850px;}
.y45{bottom:522.961650px;}
.yc8{bottom:524.052150px;}
.y189{bottom:524.373300px;}
.yd1{bottom:528.180150px;}
.y1cb{bottom:528.499650px;}
.y13e{bottom:530.046900px;}
.y11c{bottom:530.814300px;}
.y64{bottom:537.901800px;}
.y22{bottom:539.183475px;}
.y188{bottom:540.123300px;}
.y44{bottom:541.711800px;}
.yc7{bottom:542.802150px;}
.y1ca{bottom:544.249650px;}
.yd0{bottom:547.680150px;}
.y13d{bottom:548.796900px;}
.y15a{bottom:549.564300px;}
.y11b{bottom:549.564900px;}
.y187{bottom:555.873300px;}
.y21{bottom:556.433100px;}
.y63{bottom:556.651800px;}
.y1c9{bottom:559.999650px;}
.y43{bottom:560.461800px;}
.ycf{bottom:567.180150px;}
.y13c{bottom:567.546900px;}
.yc6{bottom:567.930300px;}
.y159{bottom:568.314300px;}
.y11a{bottom:568.314900px;}
.y186{bottom:571.623300px;}
.y20{bottom:573.682725px;}
.y62{bottom:575.401800px;}
.y1c8{bottom:575.749650px;}
.y42{bottom:579.211800px;}
.y13b{bottom:586.296900px;}
.yce{bottom:586.680150px;}
.yc5{bottom:586.680300px;}
.y158{bottom:587.064300px;}
.y119{bottom:587.064900px;}
.y1f{bottom:590.932350px;}
.y1c7{bottom:591.499650px;}
.y185{bottom:591.624300px;}
.y61{bottom:594.151800px;}
.y41{bottom:597.961800px;}
.y13a{bottom:605.046900px;}
.ycd{bottom:605.430150px;}
.yc4{bottom:605.430300px;}
.y157{bottom:605.814600px;}
.y118{bottom:605.814900px;}
.y1c6{bottom:607.249650px;}
.y1e{bottom:608.181975px;}
.y60{bottom:612.901050px;}
.y40{bottom:616.711800px;}
.y1c5{bottom:622.999650px;}
.y139{bottom:623.796900px;}
.ycc{bottom:624.180150px;}
.yc3{bottom:624.180300px;}
.y156{bottom:624.564600px;}
.y117{bottom:624.564900px;}
.y1d{bottom:625.431600px;}
.y5f{bottom:631.651050px;}
.y1c4{bottom:638.749650px;}
.y138{bottom:642.546900px;}
.y1c{bottom:642.681225px;}
.y155{bottom:643.314600px;}
.y116{bottom:643.314900px;}
.y1a6{bottom:643.372950px;}
.yb7{bottom:644.289600px;}
.ya5{bottom:646.799100px;}
.y3f{bottom:648.217950px;}
.y5e{bottom:650.401050px;}
.y1c3{bottom:654.499650px;}
.y1b{bottom:659.930850px;}
.y137{bottom:661.296900px;}
.y154{bottom:662.064600px;}
.y115{bottom:662.064900px;}
.yb6{bottom:663.039600px;}
.ya4{bottom:665.549100px;}
.y1c2{bottom:670.249650px;}
.y1a{bottom:677.180475px;}
.y136{bottom:680.046900px;}
.y153{bottom:680.814600px;}
.y114{bottom:680.814900px;}
.yb5{bottom:681.789600px;}
.yf0{bottom:683.889900px;}
.ya3{bottom:684.299100px;}
.y1c1{bottom:685.999650px;}
.y184{bottom:689.129400px;}
.y19{bottom:694.430100px;}
.y135{bottom:698.796900px;}
.yee{bottom:698.889900px;}
.y152{bottom:699.564600px;}
.y113{bottom:699.564900px;}
.yb4{bottom:700.539600px;}
.y1c0{bottom:701.749650px;}
.ya2{bottom:703.049250px;}
.y183{bottom:707.128950px;}
.yef{bottom:713.889900px;}
.y1bf{bottom:717.499650px;}
.y134{bottom:717.546900px;}
.y151{bottom:718.314600px;}
.y112{bottom:718.314900px;}
.yb3{bottom:719.289600px;}
.ya1{bottom:721.799250px;}
.y182{bottom:725.128500px;}
.y8e{bottom:732.613950px;}
.y1be{bottom:733.249650px;}
.yed{bottom:734.625900px;}
.y133{bottom:736.296900px;}
.y150{bottom:737.064750px;}
.y111{bottom:737.064900px;}
.yb2{bottom:738.039600px;}
.ya0{bottom:740.549250px;}
.y181{bottom:743.128050px;}
.y1bd{bottom:748.999650px;}
.yeb{bottom:749.625900px;}
.y8d{bottom:749.863575px;}
.y132{bottom:755.046900px;}
.y18{bottom:755.769600px;}
.y14f{bottom:755.814750px;}
.y110{bottom:755.814900px;}
.yb1{bottom:756.789600px;}
.y9f{bottom:759.299250px;}
.y180{bottom:761.127600px;}
.yec{bottom:764.625900px;}
.y1bc{bottom:764.749650px;}
.y8c{bottom:772.237500px;}
.y131{bottom:773.796900px;}
.y17{bottom:774.519450px;}
.y14e{bottom:774.564750px;}
.y10f{bottom:774.564900px;}
.yb0{bottom:775.539600px;}
.y9e{bottom:778.049250px;}
.y17f{bottom:779.127150px;}
.y1bb{bottom:780.499650px;}
.yea{bottom:785.361900px;}
.y8b{bottom:789.487125px;}
.y130{bottom:792.546900px;}
.y16{bottom:792.572250px;}
.y10e{bottom:793.314900px;}
.y1ba{bottom:796.249650px;}
.y17e{bottom:797.126700px;}
.ye8{bottom:800.361900px;}
.yaf{bottom:800.667750px;}
.y9d{bottom:803.177250px;}
.y8a{bottom:806.738100px;}
.y12f{bottom:811.296900px;}
.y1b9{bottom:811.999650px;}
.y10d{bottom:812.064900px;}
.y17d{bottom:815.126250px;}
.ye9{bottom:815.361900px;}
.yae{bottom:819.417750px;}
.y14{bottom:824.033250px;}
.y15{bottom:824.078250px;}
.y1b8{bottom:827.749650px;}
.y89{bottom:829.112025px;}
.y12e{bottom:830.046900px;}
.yfd{bottom:830.814900px;}
.y10a{bottom:830.815050px;}
.y9c{bottom:832.557900px;}
.y17c{bottom:833.125800px;}
.ye7{bottom:836.097900px;}
.y1b7{bottom:843.499650px;}
.y88{bottom:846.361650px;}
.y12{bottom:848.033400px;}
.y13{bottom:848.078400px;}
.y12d{bottom:848.796900px;}
.yad{bottom:848.797050px;}
.yfc{bottom:849.564900px;}
.y109{bottom:849.565050px;}
.ye5{bottom:851.097900px;}
.y17b{bottom:851.125350px;}
.y9b{bottom:851.307900px;}
.y1b6{bottom:859.249650px;}
.y87{bottom:863.611275px;}
.ye6{bottom:866.097900px;}
.yac{bottom:867.547050px;}
.yfb{bottom:868.314900px;}
.y108{bottom:868.315050px;}
.y14d{bottom:868.315200px;}
.y17a{bottom:869.124900px;}
.y9a{bottom:870.057900px;}
.y10{bottom:872.033400px;}
.y11{bottom:872.078400px;}
.y1b5{bottom:874.999650px;}
.y12c{bottom:880.302900px;}
.y86{bottom:880.862550px;}
.yab{bottom:886.297050px;}
.ye4{bottom:886.835100px;}
.yfa{bottom:887.064900px;}
.y107{bottom:887.065050px;}
.y14c{bottom:887.065200px;}
.y99{bottom:888.807900px;}
.y1b4{bottom:890.749650px;}
.y85{bottom:898.112175px;}
.ye2{bottom:901.835100px;}
.yaa{bottom:905.047050px;}
.yf9{bottom:905.814900px;}
.y106{bottom:905.815050px;}
.y14b{bottom:905.815200px;}
.y1b3{bottom:906.499650px;}
.y98{bottom:907.557900px;}
.y179{bottom:909.625500px;}
.y84{bottom:915.361800px;}
.ye3{bottom:916.835100px;}
.y1b2{bottom:922.249650px;}
.ya9{bottom:923.797050px;}
.y12b{bottom:924.564150px;}
.yf8{bottom:924.564900px;}
.y105{bottom:924.565050px;}
.y14a{bottom:924.565200px;}
.y97{bottom:926.307900px;}
.y178{bottom:928.375500px;}
.y83{bottom:932.611425px;}
.yf{bottom:935.044050px;}
.ye1{bottom:937.571100px;}
.y1b1{bottom:937.999650px;}
.ya8{bottom:942.547050px;}
.y12a{bottom:943.314150px;}
.yf7{bottom:943.315050px;}
.y149{bottom:943.315200px;}
.ydd{bottom:945.071100px;}
.y177{bottom:947.125500px;}
.y82{bottom:949.863075px;}
.y96{bottom:951.435900px;}
.ye0{bottom:952.571100px;}
.y1b0{bottom:953.749650px;}
.ye{bottom:953.793750px;}
.ydb{bottom:960.071100px;}
.y129{bottom:962.064150px;}
.yf6{bottom:962.065050px;}
.y148{bottom:962.065200px;}
.y176{bottom:965.875500px;}
.y81{bottom:967.112700px;}
.ydf{bottom:967.571100px;}
.y1af{bottom:969.499650px;}
.yd{bottom:971.846550px;}
.ya7{bottom:974.053050px;}
.ydc{bottom:975.071100px;}
.y128{bottom:980.814150px;}
.y104{bottom:980.814750px;}
.yf5{bottom:980.815050px;}
.y147{bottom:980.815200px;}
.y95{bottom:980.815650px;}
.yde{bottom:982.571100px;}
.y80{bottom:984.362325px;}
.y175{bottom:984.625500px;}
.y1ae{bottom:985.249650px;}
.y127{bottom:999.564150px;}
.y103{bottom:999.564750px;}
.y146{bottom:999.565200px;}
.yf4{bottom:999.565500px;}
.y94{bottom:999.565650px;}
.y1ad{bottom:1000.999650px;}
.y7f{bottom:1001.611950px;}
.yb{bottom:1003.306200px;}
.yda{bottom:1003.307100px;}
.yc{bottom:1003.351200px;}
.y174{bottom:1003.375500px;}
.y1ac{bottom:1016.749650px;}
.yd8{bottom:1018.307100px;}
.y126{bottom:1018.314150px;}
.y102{bottom:1018.314750px;}
.y145{bottom:1018.315200px;}
.yf3{bottom:1018.315500px;}
.y93{bottom:1018.315650px;}
.y7e{bottom:1018.861575px;}
.y173{bottom:1022.125500px;}
.y9{bottom:1027.306200px;}
.ya{bottom:1027.351200px;}
.y1ab{bottom:1032.499650px;}
.yd9{bottom:1033.307100px;}
.y7d{bottom:1036.112775px;}
.y125{bottom:1037.064150px;}
.y101{bottom:1037.064750px;}
.yf2{bottom:1037.065500px;}
.y92{bottom:1037.065650px;}
.y172{bottom:1040.875500px;}
.y1aa{bottom:1048.249650px;}
.y7c{bottom:1053.362400px;}
.yd7{bottom:1054.044300px;}
.y124{bottom:1055.814150px;}
.y100{bottom:1055.814750px;}
.y91{bottom:1055.815650px;}
.y171{bottom:1059.625500px;}
.yd6{bottom:1061.544300px;}
.y1a9{bottom:1063.999650px;}
.y7b{bottom:1070.612025px;}
.y3c{bottom:1072.111350px;}
.y123{bottom:1074.564150px;}
.yff{bottom:1074.564750px;}
.y90{bottom:1074.565650px;}
.y1a8{bottom:1079.749650px;}
.y7a{bottom:1087.861650px;}
.y170{bottom:1091.131500px;}
.y122{bottom:1093.314150px;}
.ya6{bottom:1093.314600px;}
.yfe{bottom:1093.314750px;}
.y8f{bottom:1093.315650px;}
.yd5{bottom:1094.407650px;}
.y1a7{bottom:1095.499650px;}
.y5{bottom:1096.789650px;}
.y7{bottom:1100.989800px;}
.y4{bottom:1105.789650px;}
.y2{bottom:1106.036700px;}
.y3{bottom:1114.789650px;}
.y1{bottom:1122.236700px;}
.y6{bottom:1123.567200px;}
.y3d{bottom:1135.835400px;}
.y3e{bottom:1136.927550px;}
.h3{height:21.972656px;}
.h8{height:25.335352px;}
.he{height:34.945312px;}
.hd{height:34.968750px;}
.h1a{height:36.121875px;}
.ha{height:37.129395px;}
.h4{height:39.313477px;}
.h2{height:39.339844px;}
.h13{height:41.497559px;}
.h9{height:41.553223px;}
.hc{height:41.748047px;}
.hf{height:43.681641px;}
.h10{height:43.710938px;}
.h18{height:43.712138px;}
.h12{height:43.713937px;}
.h16{height:43.715137px;}
.h7{height:45.135352px;}
.h15{height:45.150544px;}
.h19{height:45.151144px;}
.h11{height:45.151744px;}
.hb{height:46.183123px;}
.h1{height:48.082031px;}
.h14{height:50.748347px;}
.h6{height:52.417969px;}
.h17{height:64.945312px;}
.h5{height:1187.955000px;}
.h0{height:1188.000000px;}
.w1{width:914.175000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:1.913400px;}
.x1a{left:59.315100px;}
.x1e{left:65.312550px;}
.x33{left:80.900700px;}
.x1b{left:84.826950px;}
.x32{left:87.575100px;}
.x18{left:101.834700px;}
.x3{left:107.670450px;}
.x2{left:118.263450px;}
.x20{left:127.346700px;}
.xe{left:132.492750px;}
.xf{left:134.406150px;}
.x7{left:151.499400px;}
.x8{left:153.412800px;}
.x10{left:155.625900px;}
.x11{left:157.539300px;}
.x9{left:175.436400px;}
.xa{left:177.349800px;}
.x1{left:184.468800px;}
.x16{left:198.477450px;}
.x15{left:201.356400px;}
.x25{left:219.316950px;}
.x2b{left:230.433300px;}
.xc{left:233.026230px;}
.x17{left:241.771875px;}
.xd{left:243.279450px;}
.x29{left:266.338500px;}
.x27{left:271.996500px;}
.x26{left:276.668100px;}
.x28{left:279.228900px;}
.x30{left:287.333100px;}
.x2d{left:288.660600px;}
.x2f{left:325.520100px;}
.x2e{left:338.297100px;}
.x14{left:369.012750px;}
.xb{left:384.978750px;}
.x12{left:390.209850px;}
.x13{left:392.123250px;}
.x1c{left:454.748250px;}
.x34{left:476.336700px;}
.x1d{left:480.261000px;}
.x21{left:497.268450px;}
.x2c{left:518.331300px;}
.x22{left:522.781050px;}
.x31{left:525.529050px;}
.x23{left:660.350700px;}
.x24{left:664.008300px;}
.x1f{left:704.105850px;}
.x4{left:715.910850px;}
.x5{left:723.684150px;}
.x2a{left:737.236500px;}
.x19{left:799.966500px;}
@media print{
.v2{vertical-align:-17.598933pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.115467pt;}
.v4{vertical-align:8.000267pt;}
.v6{vertical-align:14.080000pt;}
.v1{vertical-align:17.600000pt;}
.v5{vertical-align:26.666667pt;}
.ls37{letter-spacing:-2.016000pt;}
.ls36{letter-spacing:-1.066667pt;}
.ls18{letter-spacing:-0.537600pt;}
.ls3b{letter-spacing:-0.533333pt;}
.ls44{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.015200pt;}
.ls17{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.003627pt;}
.ls43{letter-spacing:0.004267pt;}
.lsa{letter-spacing:0.005067pt;}
.ls2{letter-spacing:0.006400pt;}
.ls14{letter-spacing:0.010133pt;}
.ls7{letter-spacing:0.010667pt;}
.ls39{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.025333pt;}
.ls3f{letter-spacing:0.301867pt;}
.ls1f{letter-spacing:0.440800pt;}
.ls20{letter-spacing:0.445867pt;}
.ls26{letter-spacing:0.461067pt;}
.ls27{letter-spacing:0.466133pt;}
.ls23{letter-spacing:0.481333pt;}
.ls24{letter-spacing:0.501600pt;}
.ls22{letter-spacing:0.506667pt;}
.ls3a{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:0.544000pt;}
.ls2b{letter-spacing:0.780267pt;}
.ls42{letter-spacing:0.853333pt;}
.ls21{letter-spacing:0.947467pt;}
.ls40{letter-spacing:1.066667pt;}
.ls6{letter-spacing:1.107200pt;}
.ls4{letter-spacing:1.113600pt;}
.ls5{letter-spacing:1.132800pt;}
.ls41{letter-spacing:1.280000pt;}
.ls2f{letter-spacing:1.352800pt;}
.ls30{letter-spacing:1.357867pt;}
.ls2e{letter-spacing:1.383200pt;}
.ls2c{letter-spacing:1.388267pt;}
.ls2d{letter-spacing:1.393333pt;}
.lsb{letter-spacing:1.646667pt;}
.lsc{letter-spacing:1.651733pt;}
.ls1{letter-spacing:2.252800pt;}
.ls0{letter-spacing:3.350400pt;}
.ls19{letter-spacing:3.360000pt;}
.ls3d{letter-spacing:3.523200pt;}
.ls2a{letter-spacing:3.536533pt;}
.ls1e{letter-spacing:3.592267pt;}
.ls1d{letter-spacing:3.597333pt;}
.ls34{letter-spacing:3.865867pt;}
.ls33{letter-spacing:3.870933pt;}
.ls10{letter-spacing:3.926667pt;}
.ls11{letter-spacing:3.931733pt;}
.ls16{letter-spacing:4.002667pt;}
.ls15{letter-spacing:4.007733pt;}
.ls1a{letter-spacing:4.173867pt;}
.ls1b{letter-spacing:4.180000pt;}
.ls1c{letter-spacing:4.185067pt;}
.ls25{letter-spacing:4.397867pt;}
.ls3c{letter-spacing:4.677333pt;}
.ls28{letter-spacing:4.879200pt;}
.ls29{letter-spacing:4.884267pt;}
.ls12{letter-spacing:6.161067pt;}
.ls13{letter-spacing:6.166133pt;}
.lse{letter-spacing:6.505600pt;}
.lsd{letter-spacing:6.510667pt;}
.ls32{letter-spacing:7.037600pt;}
.ls35{letter-spacing:63.860267pt;}
.ls31{letter-spacing:157.228800pt;}
.ls9{letter-spacing:303.832800pt;}
.ws6{word-spacing:-66.252800pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.ws7{word-spacing:-53.333333pt;}
.ws4{word-spacing:-51.360000pt;}
.ws2f{word-spacing:-51.173333pt;}
.wsd{word-spacing:-50.666667pt;}
.ws2{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.462400pt;}
.wsc{word-spacing:-45.333333pt;}
.wsa4{word-spacing:-42.666667pt;}
.ws3{word-spacing:-26.666667pt;}
.ws2c{word-spacing:-17.792000pt;}
.ws2e{word-spacing:-14.826667pt;}
.wsb7{word-spacing:-14.293333pt;}
.ws116{word-spacing:-13.141333pt;}
.wsa5{word-spacing:-11.861333pt;}
.wsb{word-spacing:-11.552000pt;}
.ws8{word-spacing:-8.599467pt;}
.ws17b{word-spacing:-6.879573pt;}
.ws3f{word-spacing:-4.010667pt;}
.wse6{word-spacing:-3.189333pt;}
.ws14a{word-spacing:-3.056000pt;}
.ws60{word-spacing:-2.858667pt;}
.ws14e{word-spacing:-2.848000pt;}
.ws98{word-spacing:-2.778667pt;}
.ws11d{word-spacing:-2.757333pt;}
.ws30{word-spacing:-2.608000pt;}
.ws10e{word-spacing:-2.586667pt;}
.ws19d{word-spacing:-2.581333pt;}
.wsef{word-spacing:-2.565333pt;}
.ws4c{word-spacing:-2.437333pt;}
.ws131{word-spacing:-2.394667pt;}
.wsb6{word-spacing:-2.355200pt;}
.wsb4{word-spacing:-2.350933pt;}
.ws9d{word-spacing:-2.266667pt;}
.ws32{word-spacing:-2.234667pt;}
.wsf9{word-spacing:-2.213333pt;}
.ws84{word-spacing:-2.160000pt;}
.ws14b{word-spacing:-2.144000pt;}
.ws109{word-spacing:-2.138667pt;}
.ws149{word-spacing:-2.016000pt;}
.ws88{word-spacing:-1.978667pt;}
.ws6b{word-spacing:-1.976000pt;}
.ws132{word-spacing:-1.962667pt;}
.ws174{word-spacing:-1.937067pt;}
.ws133{word-spacing:-1.936000pt;}
.ws173{word-spacing:-1.932800pt;}
.ws186{word-spacing:-1.864533pt;}
.ws134{word-spacing:-1.834667pt;}
.ws16d{word-spacing:-1.826133pt;}
.wse1{word-spacing:-1.818667pt;}
.ws85{word-spacing:-1.808000pt;}
.ws29{word-spacing:-1.788533pt;}
.ws13{word-spacing:-1.783467pt;}
.wsf{word-spacing:-1.780800pt;}
.ws15c{word-spacing:-1.771200pt;}
.wsfe{word-spacing:-1.760000pt;}
.ws25{word-spacing:-1.702400pt;}
.ws144{word-spacing:-1.696000pt;}
.ws184{word-spacing:-1.638400pt;}
.ws1c5{word-spacing:-1.612800pt;}
.wse8{word-spacing:-1.589333pt;}
.ws169{word-spacing:-1.548800pt;}
.ws36{word-spacing:-1.520000pt;}
.wsfc{word-spacing:-1.514667pt;}
.ws52{word-spacing:-1.509333pt;}
.wsdc{word-spacing:-1.493333pt;}
.wsdd{word-spacing:-1.488000pt;}
.ws3c{word-spacing:-1.482667pt;}
.ws43{word-spacing:-1.434667pt;}
.ws172{word-spacing:-1.420800pt;}
.ws123{word-spacing:-1.370667pt;}
.ws122{word-spacing:-1.365333pt;}
.ws18a{word-spacing:-1.335467pt;}
.ws165{word-spacing:-1.288533pt;}
.wsff{word-spacing:-1.258667pt;}
.wsf1{word-spacing:-1.205333pt;}
.ws15d{word-spacing:-1.195200pt;}
.wsa2{word-spacing:-1.186133pt;}
.ws15{word-spacing:-1.160267pt;}
.wsb5{word-spacing:-1.147733pt;}
.ws10{word-spacing:-1.126400pt;}
.wsae{word-spacing:-1.125333pt;}
.ws154{word-spacing:-1.093333pt;}
.ws1c8{word-spacing:-1.088000pt;}
.wsac{word-spacing:-1.072000pt;}
.ws66{word-spacing:-0.949333pt;}
.ws97{word-spacing:-0.944000pt;}
.ws7d{word-spacing:-0.901333pt;}
.ws167{word-spacing:-0.870400pt;}
.ws18b{word-spacing:-0.866133pt;}
.ws190{word-spacing:-0.849067pt;}
.wsd8{word-spacing:-0.826667pt;}
.ws4d{word-spacing:-0.746667pt;}
.ws28{word-spacing:-0.744800pt;}
.ws163{word-spacing:-0.674133pt;}
.ws155{word-spacing:-0.666667pt;}
.ws1b7{word-spacing:-0.657067pt;}
.wsd4{word-spacing:-0.586667pt;}
.ws1ae{word-spacing:-0.576000pt;}
.ws50{word-spacing:-0.570667pt;}
.ws1ad{word-spacing:-0.546133pt;}
.wsd7{word-spacing:-0.485333pt;}
.ws11a{word-spacing:-0.480000pt;}
.ws17a{word-spacing:-0.452267pt;}
.ws9f{word-spacing:-0.448000pt;}
.ws160{word-spacing:-0.336000pt;}
.ws47{word-spacing:-0.325333pt;}
.wsbb{word-spacing:-0.304000pt;}
.ws16b{word-spacing:-0.264533pt;}
.ws1ba{word-spacing:-0.226133pt;}
.ws2b{word-spacing:-0.213333pt;}
.wsee{word-spacing:-0.208000pt;}
.ws6d{word-spacing:-0.141867pt;}
.ws2d{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.050667pt;}
.ws74{word-spacing:-0.042667pt;}
.wse{word-spacing:0.000000pt;}
.ws1c0{word-spacing:0.089600pt;}
.wsde{word-spacing:0.176000pt;}
.ws16{word-spacing:0.177333pt;}
.ws11c{word-spacing:0.181333pt;}
.ws31{word-spacing:0.186667pt;}
.ws56{word-spacing:0.208000pt;}
.wse3{word-spacing:0.266667pt;}
.ws1d2{word-spacing:0.354133pt;}
.ws182{word-spacing:0.401067pt;}
.ws166{word-spacing:0.422400pt;}
.ws11{word-spacing:0.430667pt;}
.ws6f{word-spacing:0.461067pt;}
.ws6e{word-spacing:0.466133pt;}
.ws4a{word-spacing:0.480000pt;}
.ws18c{word-spacing:0.482133pt;}
.ws5c{word-spacing:0.528000pt;}
.ws34{word-spacing:0.565333pt;}
.ws137{word-spacing:0.613333pt;}
.ws1bc{word-spacing:0.635733pt;}
.ws1bd{word-spacing:0.640000pt;}
.ws158{word-spacing:0.643200pt;}
.wsb2{word-spacing:0.693333pt;}
.ws138{word-spacing:0.746667pt;}
.wsf8{word-spacing:0.773333pt;}
.ws72{word-spacing:0.780267pt;}
.ws1a5{word-spacing:0.836267pt;}
.wse0{word-spacing:0.842667pt;}
.ws187{word-spacing:0.904533pt;}
.wsce{word-spacing:0.933333pt;}
.ws16c{word-spacing:0.934400pt;}
.ws195{word-spacing:0.968533pt;}
.ws164{word-spacing:1.002667pt;}
.ws5b{word-spacing:1.045333pt;}
.ws1b2{word-spacing:1.066667pt;}
.ws18e{word-spacing:1.075200pt;}
.wsc1{word-spacing:1.098667pt;}
.ws20{word-spacing:1.099467pt;}
.ws1cf{word-spacing:1.100800pt;}
.ws1cd{word-spacing:1.113600pt;}
.wse7{word-spacing:1.114667pt;}
.ws12f{word-spacing:1.136000pt;}
.ws41{word-spacing:1.205333pt;}
.wscd{word-spacing:1.253333pt;}
.ws120{word-spacing:1.269333pt;}
.wsb3{word-spacing:1.334400pt;}
.ws54{word-spacing:1.354667pt;}
.ws53{word-spacing:1.360000pt;}
.ws3e{word-spacing:1.445333pt;}
.wsdb{word-spacing:1.472000pt;}
.ws8f{word-spacing:1.477333pt;}
.ws157{word-spacing:1.507200pt;}
.ws61{word-spacing:1.584000pt;}
.ws16a{word-spacing:1.600000pt;}
.ws1d3{word-spacing:1.638400pt;}
.ws1ca{word-spacing:1.685333pt;}
.ws19e{word-spacing:1.792000pt;}
.wsf6{word-spacing:2.010667pt;}
.wsbc{word-spacing:2.021333pt;}
.ws185{word-spacing:2.030933pt;}
.ws5e{word-spacing:2.037333pt;}
.ws33{word-spacing:2.053333pt;}
.ws10d{word-spacing:2.058667pt;}
.ws162{word-spacing:2.124800pt;}
.wsa1{word-spacing:2.154667pt;}
.wsaf{word-spacing:2.160000pt;}
.ws118{word-spacing:2.192000pt;}
.ws4b{word-spacing:2.202667pt;}
.ws14{word-spacing:2.224267pt;}
.ws45{word-spacing:2.277333pt;}
.ws117{word-spacing:2.282667pt;}
.wsa7{word-spacing:2.293333pt;}
.wse2{word-spacing:2.314667pt;}
.ws198{word-spacing:2.316800pt;}
.ws51{word-spacing:2.320000pt;}
.ws1bf{word-spacing:2.321067pt;}
.ws13c{word-spacing:2.357333pt;}
.wsd6{word-spacing:2.389333pt;}
.wsb0{word-spacing:2.426667pt;}
.ws128{word-spacing:2.448000pt;}
.ws115{word-spacing:2.458667pt;}
.ws143{word-spacing:2.538667pt;}
.wsd3{word-spacing:2.565333pt;}
.wsbf{word-spacing:2.586667pt;}
.ws121{word-spacing:2.618667pt;}
.ws196{word-spacing:2.619733pt;}
.ws197{word-spacing:2.624000pt;}
.ws7e{word-spacing:2.634667pt;}
.ws1b6{word-spacing:2.645333pt;}
.wse5{word-spacing:2.720000pt;}
.wsb1{word-spacing:2.736000pt;}
.ws19f{word-spacing:2.760533pt;}
.ws4f{word-spacing:2.853333pt;}
.ws19b{word-spacing:2.854400pt;}
.wsc0{word-spacing:2.906667pt;}
.wsb9{word-spacing:2.970667pt;}
.wsba{word-spacing:2.976000pt;}
.ws18f{word-spacing:3.033600pt;}
.ws21{word-spacing:3.065333pt;}
.ws22{word-spacing:3.070400pt;}
.ws91{word-spacing:3.173333pt;}
.ws46{word-spacing:3.189333pt;}
.ws1c6{word-spacing:3.212800pt;}
.ws161{word-spacing:3.259733pt;}
.ws183{word-spacing:3.264000pt;}
.ws126{word-spacing:3.269333pt;}
.ws127{word-spacing:3.274667pt;}
.ws1a9{word-spacing:3.306667pt;}
.ws1a8{word-spacing:3.310933pt;}
.wsda{word-spacing:3.312000pt;}
.ws16f{word-spacing:3.315200pt;}
.ws177{word-spacing:3.332267pt;}
.ws159{word-spacing:3.360000pt;}
.ws156{word-spacing:3.374400pt;}
.ws5f{word-spacing:3.386667pt;}
.ws23{word-spacing:3.450400pt;}
.ws92{word-spacing:3.456000pt;}
.ws1a3{word-spacing:3.507200pt;}
.ws13e{word-spacing:3.520000pt;}
.ws62{word-spacing:3.530667pt;}
.ws71{word-spacing:3.531467pt;}
.ws70{word-spacing:3.536533pt;}
.wsbe{word-spacing:3.552000pt;}
.ws9a{word-spacing:3.568000pt;}
.ws42{word-spacing:3.589333pt;}
.ws170{word-spacing:3.648000pt;}
.ws95{word-spacing:3.824000pt;}
.ws140{word-spacing:3.888000pt;}
.ws44{word-spacing:3.914667pt;}
.ws13a{word-spacing:3.968000pt;}
.ws1c7{word-spacing:3.989333pt;}
.ws15f{word-spacing:4.104000pt;}
.ws3d{word-spacing:4.154667pt;}
.ws1d0{word-spacing:4.155733pt;}
.ws6a{word-spacing:4.180000pt;}
.ws69{word-spacing:4.185067pt;}
.ws119{word-spacing:4.197333pt;}
.wsad{word-spacing:4.202667pt;}
.ws142{word-spacing:4.224000pt;}
.ws15a{word-spacing:4.228800pt;}
.ws139{word-spacing:4.309333pt;}
.wsa0{word-spacing:4.336000pt;}
.wscc{word-spacing:4.368000pt;}
.ws6c{word-spacing:4.392800pt;}
.ws99{word-spacing:4.394667pt;}
.ws111{word-spacing:4.416000pt;}
.ws1bb{word-spacing:4.471467pt;}
.ws1d1{word-spacing:4.505600pt;}
.ws1b5{word-spacing:4.539733pt;}
.wsa8{word-spacing:4.597333pt;}
.wscf{word-spacing:4.613333pt;}
.ws10f{word-spacing:4.640000pt;}
.ws102{word-spacing:4.682667pt;}
.wsfd{word-spacing:4.693333pt;}
.wsc2{word-spacing:4.741333pt;}
.ws19a{word-spacing:4.782933pt;}
.ws10b{word-spacing:4.842667pt;}
.wsd0{word-spacing:4.880000pt;}
.ws181{word-spacing:4.983467pt;}
.wsf0{word-spacing:5.002667pt;}
.ws103{word-spacing:5.056000pt;}
.ws10a{word-spacing:5.104000pt;}
.ws113{word-spacing:5.162667pt;}
.ws114{word-spacing:5.168000pt;}
.wsd5{word-spacing:5.184000pt;}
.ws68{word-spacing:5.194667pt;}
.ws48{word-spacing:5.365333pt;}
.ws168{word-spacing:5.427200pt;}
.ws58{word-spacing:5.472000pt;}
.ws49{word-spacing:5.520000pt;}
.ws1a{word-spacing:5.527733pt;}
.ws1b{word-spacing:5.532800pt;}
.ws130{word-spacing:5.546667pt;}
.wsd1{word-spacing:5.610667pt;}
.ws87{word-spacing:5.664000pt;}
.ws3b{word-spacing:5.669333pt;}
.wsdf{word-spacing:5.733333pt;}
.ws37{word-spacing:5.749333pt;}
.ws188{word-spacing:5.794133pt;}
.ws1c3{word-spacing:5.798400pt;}
.wsfa{word-spacing:5.888000pt;}
.wsfb{word-spacing:5.893333pt;}
.ws1a7{word-spacing:5.913600pt;}
.wsc5{word-spacing:6.000000pt;}
.ws19c{word-spacing:6.024533pt;}
.ws1a2{word-spacing:6.028800pt;}
.wsc7{word-spacing:6.037333pt;}
.ws9c{word-spacing:6.053333pt;}
.ws178{word-spacing:6.054400pt;}
.ws104{word-spacing:6.117333pt;}
.wsec{word-spacing:6.144000pt;}
.ws55{word-spacing:6.154667pt;}
.ws189{word-spacing:6.165333pt;}
.ws129{word-spacing:6.192000pt;}
.ws15b{word-spacing:6.201600pt;}
.ws8d{word-spacing:6.213333pt;}
.ws8e{word-spacing:6.218667pt;}
.wsc3{word-spacing:6.298667pt;}
.ws180{word-spacing:6.353067pt;}
.ws1c2{word-spacing:6.370133pt;}
.ws1f{word-spacing:6.399200pt;}
.ws1e{word-spacing:6.404267pt;}
.ws15e{word-spacing:6.408000pt;}
.ws1b3{word-spacing:6.412800pt;}
.wse4{word-spacing:6.469333pt;}
.ws1cc{word-spacing:6.557867pt;}
.ws1a4{word-spacing:6.562133pt;}
.ws1a6{word-spacing:6.574933pt;}
.ws191{word-spacing:6.617600pt;}
.ws1b8{word-spacing:6.621867pt;}
.ws176{word-spacing:6.643200pt;}
.ws59{word-spacing:6.650667pt;}
.ws40{word-spacing:6.666667pt;}
.ws86{word-spacing:6.672000pt;}
.ws175{word-spacing:6.762667pt;}
.ws65{word-spacing:6.773333pt;}
.ws1ac{word-spacing:6.796800pt;}
.ws81{word-spacing:6.821333pt;}
.wsd9{word-spacing:6.858667pt;}
.ws12e{word-spacing:6.885333pt;}
.ws193{word-spacing:6.903467pt;}
.ws73{word-spacing:7.037600pt;}
.ws17d{word-spacing:7.052800pt;}
.ws80{word-spacing:7.072000pt;}
.ws1c1{word-spacing:7.074133pt;}
.ws1a0{word-spacing:7.099733pt;}
.ws10c{word-spacing:7.130667pt;}
.ws17{word-spacing:7.144000pt;}
.ws26{word-spacing:7.154133pt;}
.ws27{word-spacing:7.159200pt;}
.ws18{word-spacing:7.204800pt;}
.ws39{word-spacing:7.205333pt;}
.ws19{word-spacing:7.209867pt;}
.ws3a{word-spacing:7.210667pt;}
.wsc6{word-spacing:7.269333pt;}
.wsbd{word-spacing:7.376000pt;}
.ws9b{word-spacing:7.392000pt;}
.wsa9{word-spacing:7.402667pt;}
.ws12d{word-spacing:7.408000pt;}
.wscb{word-spacing:7.482667pt;}
.wsc4{word-spacing:7.610667pt;}
.ws63{word-spacing:7.616000pt;}
.ws82{word-spacing:7.674667pt;}
.ws1be{word-spacing:7.722667pt;}
.ws57{word-spacing:7.744000pt;}
.ws38{word-spacing:7.872000pt;}
.ws11e{word-spacing:7.877333pt;}
.ws1c{word-spacing:7.949600pt;}
.ws110{word-spacing:7.952000pt;}
.ws64{word-spacing:7.968000pt;}
.ws18d{word-spacing:8.042667pt;}
.ws7f{word-spacing:8.128000pt;}
.ws11f{word-spacing:8.144000pt;}
.ws1c9{word-spacing:8.145067pt;}
.ws13b{word-spacing:8.192000pt;}
.ws93{word-spacing:8.298667pt;}
.wsf4{word-spacing:8.304000pt;}
.ws1ce{word-spacing:8.324267pt;}
.ws112{word-spacing:8.389333pt;}
.ws151{word-spacing:8.405333pt;}
.ws106{word-spacing:8.410667pt;}
.ws135{word-spacing:8.469333pt;}
.ws146{word-spacing:8.480000pt;}
.wsd2{word-spacing:8.517333pt;}
.wsed{word-spacing:8.629333pt;}
.ws1ab{word-spacing:8.640000pt;}
.wseb{word-spacing:8.880000pt;}
.wsf7{word-spacing:9.088000pt;}
.ws8c{word-spacing:9.104000pt;}
.ws35{word-spacing:9.120000pt;}
.wsaa{word-spacing:9.232000pt;}
.ws4e{word-spacing:9.237333pt;}
.ws192{word-spacing:9.425067pt;}
.ws107{word-spacing:9.498667pt;}
.wse9{word-spacing:9.509333pt;}
.wsea{word-spacing:9.610667pt;}
.ws16e{word-spacing:9.792000pt;}
.ws145{word-spacing:9.957333pt;}
.ws171{word-spacing:10.112000pt;}
.ws24{word-spacing:10.113067pt;}
.ws8b{word-spacing:10.293333pt;}
.wsca{word-spacing:10.368000pt;}
.ws12c{word-spacing:10.533333pt;}
.ws125{word-spacing:10.613333pt;}
.ws5d{word-spacing:10.677333pt;}
.ws124{word-spacing:10.901333pt;}
.ws1a1{word-spacing:11.008000pt;}
.ws11b{word-spacing:11.093333pt;}
.ws12a{word-spacing:11.104000pt;}
.ws1d{word-spacing:11.258133pt;}
.wsb8{word-spacing:11.312000pt;}
.ws148{word-spacing:11.365333pt;}
.ws147{word-spacing:11.733333pt;}
.ws1cb{word-spacing:11.780267pt;}
.wsc9{word-spacing:12.069333pt;}
.ws1c4{word-spacing:12.138667pt;}
.ws12{word-spacing:12.347467pt;}
.ws1b0{word-spacing:12.821333pt;}
.ws1af{word-spacing:13.026133pt;}
.ws199{word-spacing:13.030400pt;}
.ws141{word-spacing:13.301333pt;}
.ws1b1{word-spacing:13.486933pt;}
.ws2a{word-spacing:13.538133pt;}
.wsab{word-spacing:13.760000pt;}
.ws105{word-spacing:13.909333pt;}
.wsf2{word-spacing:14.245333pt;}
.ws96{word-spacing:14.341333pt;}
.ws90{word-spacing:14.581333pt;}
.ws8a{word-spacing:14.773333pt;}
.ws1b4{word-spacing:14.779733pt;}
.ws89{word-spacing:14.954667pt;}
.wsf3{word-spacing:15.018667pt;}
.ws94{word-spacing:15.024000pt;}
.ws17e{word-spacing:15.185067pt;}
.ws1b9{word-spacing:15.351467pt;}
.ws150{word-spacing:15.546667pt;}
.ws14f{word-spacing:15.552000pt;}
.ws83{word-spacing:16.010667pt;}
.ws9e{word-spacing:16.400000pt;}
.ws136{word-spacing:16.602667pt;}
.wsc8{word-spacing:16.608000pt;}
.ws17c{word-spacing:16.644267pt;}
.ws1aa{word-spacing:17.766400pt;}
.ws179{word-spacing:18.133333pt;}
.ws13f{word-spacing:19.280000pt;}
.wsf5{word-spacing:19.488000pt;}
.ws152{word-spacing:20.021333pt;}
.ws101{word-spacing:20.933333pt;}
.ws12b{word-spacing:21.685333pt;}
.ws194{word-spacing:21.969067pt;}
.ws108{word-spacing:22.197333pt;}
.ws5a{word-spacing:22.784000pt;}
.ws153{word-spacing:24.064000pt;}
.ws100{word-spacing:24.250667pt;}
.ws13d{word-spacing:25.744000pt;}
.ws17f{word-spacing:27.413333pt;}
.ws14c{word-spacing:57.706667pt;}
.ws14d{word-spacing:57.712000pt;}
.ws67{word-spacing:70.992000pt;}
.wsa3{word-spacing:80.605867pt;}
.ws75{word-spacing:243.396267pt;}
.ws9{word-spacing:284.614933pt;}
.ws79{word-spacing:294.361600pt;}
.ws7b{word-spacing:298.602667pt;}
.ws77{word-spacing:306.222933pt;}
.ws7a{word-spacing:306.594133pt;}
.ws7c{word-spacing:310.464000pt;}
.ws76{word-spacing:318.715733pt;}
.ws78{word-spacing:356.283733pt;}
.wsa6{word-spacing:581.427200pt;}
._1d{margin-left:-29.495467pt;}
._12{margin-left:-26.773333pt;}
._29{margin-left:-25.830933pt;}
._23{margin-left:-21.341867pt;}
._17{margin-left:-17.665600pt;}
._16{margin-left:-16.325333pt;}
._14{margin-left:-14.972267pt;}
._9{margin-left:-13.507733pt;}
._c{margin-left:-12.560267pt;}
._d{margin-left:-11.141600pt;}
._8{margin-left:-10.189067pt;}
._28{margin-left:-9.233600pt;}
._a{margin-left:-8.243467pt;}
._6{margin-left:-6.874667pt;}
._5{margin-left:-5.355200pt;}
._1{margin-left:-3.924800pt;}
._2{margin-left:-2.264533pt;}
._0{margin-left:-1.290667pt;}
._3{width:1.056000pt;}
._4{width:2.252800pt;}
._7{width:3.283200pt;}
._15{width:4.235733pt;}
._13{width:5.349333pt;}
._11{width:6.571467pt;}
._b{width:8.208000pt;}
._25{width:10.352000pt;}
._27{width:11.289067pt;}
._f{width:13.740800pt;}
._26{width:15.705067pt;}
._1f{width:116.090667pt;}
._10{width:127.109333pt;}
._22{width:154.641067pt;}
._1e{width:180.279467pt;}
._e{width:252.274400pt;}
._21{width:280.473600pt;}
._19{width:300.624000pt;}
._1c{width:318.455467pt;}
._1b{width:329.949867pt;}
._1a{width:331.006933pt;}
._18{width:364.970667pt;}
._24{width:401.207467pt;}
._20{width:781.802667pt;}
.fs9{font-size:24.746667pt;}
.fs2{font-size:26.666667pt;}
.fs5{font-size:30.933333pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.040000pt;}
.y3b{bottom:63.528667pt;}
.y79{bottom:63.882133pt;}
.y5d{bottom:64.854267pt;}
.yf1{bottom:68.184667pt;}
.y144{bottom:68.207333pt;}
.yc2{bottom:71.459600pt;}
.y16f{bottom:71.834667pt;}
.y10c{bottom:73.715467pt;}
.y1a5{bottom:74.109600pt;}
.y3a{bottom:78.195333pt;}
.y78{bottom:80.548800pt;}
.y5c{bottom:81.520933pt;}
.y1a4{bottom:88.109600pt;}
.y16e{bottom:88.501333pt;}
.yc1{bottom:90.659600pt;}
.y5b{bottom:98.187600pt;}
.y1a3{bottom:102.109600pt;}
.y77{bottom:102.884800pt;}
.y16d{bottom:105.168000pt;}
.yc0{bottom:109.859600pt;}
.y39{bottom:113.909800pt;}
.y5a{bottom:114.854267pt;}
.y1a2{bottom:116.109600pt;}
.y16c{bottom:121.834667pt;}
.y76{bottom:128.999600pt;}
.ybf{bottom:129.059600pt;}
.y38{bottom:129.242800pt;}
.y1a1{bottom:130.109600pt;}
.y59{bottom:131.521067pt;}
.y16b{bottom:138.501333pt;}
.y1a0{bottom:144.109600pt;}
.y37{bottom:144.575800pt;}
.y75{bottom:145.666267pt;}
.y1e2{bottom:147.777467pt;}
.y58{bottom:148.187733pt;}
.ybe{bottom:148.259600pt;}
.y16a{bottom:155.168000pt;}
.y19f{bottom:158.109600pt;}
.y36{bottom:159.908800pt;}
.y1e1{bottom:161.777467pt;}
.y74{bottom:162.332933pt;}
.y57{bottom:164.854400pt;}
.ybd{bottom:167.459600pt;}
.y169{bottom:171.834667pt;}
.y19e{bottom:172.109600pt;}
.y35{bottom:175.243000pt;}
.y1e0{bottom:175.777467pt;}
.y73{bottom:178.999600pt;}
.y56{bottom:181.521067pt;}
.y19d{bottom:186.109600pt;}
.ybc{bottom:186.659600pt;}
.y168{bottom:188.501333pt;}
.y1df{bottom:189.777467pt;}
.y34{bottom:190.576000pt;}
.y72{bottom:195.666267pt;}
.y55{bottom:198.187733pt;}
.y19c{bottom:200.109600pt;}
.y1de{bottom:203.777467pt;}
.y167{bottom:205.168000pt;}
.ybb{bottom:205.859600pt;}
.y33{bottom:205.909000pt;}
.y71{bottom:212.332933pt;}
.y19b{bottom:214.109600pt;}
.y54{bottom:214.854400pt;}
.y1dd{bottom:217.777467pt;}
.y32{bottom:221.242000pt;}
.y166{bottom:221.834667pt;}
.y19a{bottom:228.109600pt;}
.yba{bottom:228.789067pt;}
.y70{bottom:228.999600pt;}
.y53{bottom:231.521067pt;}
.y1dc{bottom:231.777467pt;}
.y165{bottom:238.501333pt;}
.y31{bottom:241.130867pt;}
.y199{bottom:242.109600pt;}
.y1db{bottom:245.777467pt;}
.y52{bottom:248.188000pt;}
.y6f{bottom:251.335733pt;}
.y164{bottom:255.168000pt;}
.y198{bottom:256.109600pt;}
.y30{bottom:256.463733pt;}
.y1da{bottom:259.777467pt;}
.yb9{bottom:264.347867pt;}
.y51{bottom:264.854667pt;}
.y197{bottom:270.109600pt;}
.y163{bottom:271.834667pt;}
.y1d9{bottom:273.777467pt;}
.y2f{bottom:275.381533pt;}
.yb8{bottom:277.681200pt;}
.y50{bottom:281.521333pt;}
.y196{bottom:284.109600pt;}
.y1d8{bottom:287.777467pt;}
.y162{bottom:288.501333pt;}
.y6e{bottom:288.790533pt;}
.y2e{bottom:290.722000pt;}
.y195{bottom:298.109600pt;}
.y4f{bottom:298.188000pt;}
.y1d7{bottom:301.777467pt;}
.y161{bottom:305.168000pt;}
.y2d{bottom:310.611200pt;}
.y194{bottom:312.109600pt;}
.y4e{bottom:314.854667pt;}
.y1d6{bottom:315.777467pt;}
.y160{bottom:321.834667pt;}
.y2c{bottom:325.944200pt;}
.y193{bottom:326.109600pt;}
.y6d{bottom:328.134933pt;}
.y1d5{bottom:329.777467pt;}
.y4d{bottom:331.521333pt;}
.y15f{bottom:338.501600pt;}
.y192{bottom:340.109600pt;}
.y2b{bottom:341.277200pt;}
.y1d4{bottom:343.777467pt;}
.y6c{bottom:344.801600pt;}
.y4c{bottom:348.188000pt;}
.y191{bottom:354.109600pt;}
.y15e{bottom:355.168267pt;}
.y2a{bottom:356.610200pt;}
.y1d3{bottom:357.777467pt;}
.y6b{bottom:361.468267pt;}
.y4b{bottom:364.854667pt;}
.y190{bottom:368.109600pt;}
.y1d2{bottom:371.777467pt;}
.y15d{bottom:371.834933pt;}
.y29{bottom:371.943200pt;}
.y6a{bottom:378.134933pt;}
.y4a{bottom:381.521333pt;}
.y18f{bottom:382.109600pt;}
.y1d1{bottom:385.777467pt;}
.y28{bottom:387.276200pt;}
.y143{bottom:387.818800pt;}
.y121{bottom:388.501467pt;}
.y15c{bottom:388.501600pt;}
.y69{bottom:394.801600pt;}
.y18e{bottom:396.109600pt;}
.y49{bottom:398.188133pt;}
.y1d0{bottom:399.777467pt;}
.y27{bottom:402.609200pt;}
.y142{bottom:404.485467pt;}
.y10b{bottom:404.688000pt;}
.y120{bottom:405.168133pt;}
.y15b{bottom:405.168267pt;}
.y18d{bottom:410.109600pt;}
.y68{bottom:411.468267pt;}
.y1cf{bottom:413.777467pt;}
.y48{bottom:414.854800pt;}
.ycb{bottom:415.824133pt;}
.yd4{bottom:417.493467pt;}
.y26{bottom:417.942200pt;}
.y141{bottom:421.152133pt;}
.y11f{bottom:421.834933pt;}
.y18c{bottom:424.109600pt;}
.y1ce{bottom:427.777467pt;}
.y67{bottom:428.134933pt;}
.y47{bottom:431.521467pt;}
.yca{bottom:432.490800pt;}
.y25{bottom:433.275200pt;}
.yd3{bottom:434.826800pt;}
.y140{bottom:437.818800pt;}
.y18b{bottom:438.109600pt;}
.y11e{bottom:438.501600pt;}
.y1cd{bottom:441.777467pt;}
.y66{bottom:444.801600pt;}
.y46{bottom:448.188133pt;}
.y24{bottom:448.608200pt;}
.yc9{bottom:449.157467pt;}
.y18a{bottom:452.109600pt;}
.yd2{bottom:452.160133pt;}
.y13f{bottom:454.485467pt;}
.y11d{bottom:455.168267pt;}
.y1cc{bottom:455.777467pt;}
.y65{bottom:461.468267pt;}
.y23{bottom:463.941200pt;}
.y45{bottom:464.854800pt;}
.yc8{bottom:465.824133pt;}
.y189{bottom:466.109600pt;}
.yd1{bottom:469.493467pt;}
.y1cb{bottom:469.777467pt;}
.y13e{bottom:471.152800pt;}
.y11c{bottom:471.834933pt;}
.y64{bottom:478.134933pt;}
.y22{bottom:479.274200pt;}
.y188{bottom:480.109600pt;}
.y44{bottom:481.521600pt;}
.yc7{bottom:482.490800pt;}
.y1ca{bottom:483.777467pt;}
.yd0{bottom:486.826800pt;}
.y13d{bottom:487.819467pt;}
.y15a{bottom:488.501600pt;}
.y11b{bottom:488.502133pt;}
.y187{bottom:494.109600pt;}
.y21{bottom:494.607200pt;}
.y63{bottom:494.801600pt;}
.y1c9{bottom:497.777467pt;}
.y43{bottom:498.188267pt;}
.ycf{bottom:504.160133pt;}
.y13c{bottom:504.486133pt;}
.yc6{bottom:504.826933pt;}
.y159{bottom:505.168267pt;}
.y11a{bottom:505.168800pt;}
.y186{bottom:508.109600pt;}
.y20{bottom:509.940200pt;}
.y62{bottom:511.468267pt;}
.y1c8{bottom:511.777467pt;}
.y42{bottom:514.854933pt;}
.y13b{bottom:521.152800pt;}
.yce{bottom:521.493467pt;}
.yc5{bottom:521.493600pt;}
.y158{bottom:521.834933pt;}
.y119{bottom:521.835467pt;}
.y1f{bottom:525.273200pt;}
.y1c7{bottom:525.777467pt;}
.y185{bottom:525.888267pt;}
.y61{bottom:528.134933pt;}
.y41{bottom:531.521600pt;}
.y13a{bottom:537.819467pt;}
.ycd{bottom:538.160133pt;}
.yc4{bottom:538.160267pt;}
.y157{bottom:538.501867pt;}
.y118{bottom:538.502133pt;}
.y1c6{bottom:539.777467pt;}
.y1e{bottom:540.606200pt;}
.y60{bottom:544.800933pt;}
.y40{bottom:548.188267pt;}
.y1c5{bottom:553.777467pt;}
.y139{bottom:554.486133pt;}
.ycc{bottom:554.826800pt;}
.yc3{bottom:554.826933pt;}
.y156{bottom:555.168533pt;}
.y117{bottom:555.168800pt;}
.y1d{bottom:555.939200pt;}
.y5f{bottom:561.467600pt;}
.y1c4{bottom:567.777467pt;}
.y138{bottom:571.152800pt;}
.y1c{bottom:571.272200pt;}
.y155{bottom:571.835200pt;}
.y116{bottom:571.835467pt;}
.y1a6{bottom:571.887067pt;}
.yb7{bottom:572.701867pt;}
.ya5{bottom:574.932533pt;}
.y3f{bottom:576.193733pt;}
.y5e{bottom:578.134267pt;}
.y1c3{bottom:581.777467pt;}
.y1b{bottom:586.605200pt;}
.y137{bottom:587.819467pt;}
.y154{bottom:588.501867pt;}
.y115{bottom:588.502133pt;}
.yb6{bottom:589.368533pt;}
.ya4{bottom:591.599200pt;}
.y1c2{bottom:595.777467pt;}
.y1a{bottom:601.938200pt;}
.y136{bottom:604.486133pt;}
.y153{bottom:605.168533pt;}
.y114{bottom:605.168800pt;}
.yb5{bottom:606.035200pt;}
.yf0{bottom:607.902133pt;}
.ya3{bottom:608.265867pt;}
.y1c1{bottom:609.777467pt;}
.y184{bottom:612.559467pt;}
.y19{bottom:617.271200pt;}
.y135{bottom:621.152800pt;}
.yee{bottom:621.235467pt;}
.y152{bottom:621.835200pt;}
.y113{bottom:621.835467pt;}
.yb4{bottom:622.701867pt;}
.y1c0{bottom:623.777467pt;}
.ya2{bottom:624.932667pt;}
.y183{bottom:628.559067pt;}
.yef{bottom:634.568800pt;}
.y1bf{bottom:637.777467pt;}
.y134{bottom:637.819467pt;}
.y151{bottom:638.501867pt;}
.y112{bottom:638.502133pt;}
.yb3{bottom:639.368533pt;}
.ya1{bottom:641.599333pt;}
.y182{bottom:644.558667pt;}
.y8e{bottom:651.212400pt;}
.y1be{bottom:651.777467pt;}
.yed{bottom:653.000800pt;}
.y133{bottom:654.486133pt;}
.y150{bottom:655.168667pt;}
.y111{bottom:655.168800pt;}
.yb2{bottom:656.035200pt;}
.ya0{bottom:658.266000pt;}
.y181{bottom:660.558267pt;}
.y1bd{bottom:665.777467pt;}
.yeb{bottom:666.334133pt;}
.y8d{bottom:666.545400pt;}
.y132{bottom:671.152800pt;}
.y18{bottom:671.795200pt;}
.y14f{bottom:671.835333pt;}
.y110{bottom:671.835467pt;}
.yb1{bottom:672.701867pt;}
.y9f{bottom:674.932667pt;}
.y180{bottom:676.557867pt;}
.yec{bottom:679.667467pt;}
.y1bc{bottom:679.777467pt;}
.y8c{bottom:686.433333pt;}
.y131{bottom:687.819467pt;}
.y17{bottom:688.461733pt;}
.y14e{bottom:688.502000pt;}
.y10f{bottom:688.502133pt;}
.yb0{bottom:689.368533pt;}
.y9e{bottom:691.599333pt;}
.y17f{bottom:692.557467pt;}
.y1bb{bottom:693.777467pt;}
.yea{bottom:698.099467pt;}
.y8b{bottom:701.766333pt;}
.y130{bottom:704.486133pt;}
.y16{bottom:704.508667pt;}
.y10e{bottom:705.168800pt;}
.y1ba{bottom:707.777467pt;}
.y17e{bottom:708.557067pt;}
.ye8{bottom:711.432800pt;}
.yaf{bottom:711.704667pt;}
.y9d{bottom:713.935333pt;}
.y8a{bottom:717.100533pt;}
.y12f{bottom:721.152800pt;}
.y1b9{bottom:721.777467pt;}
.y10d{bottom:721.835467pt;}
.y17d{bottom:724.556667pt;}
.ye9{bottom:724.766133pt;}
.yae{bottom:728.371333pt;}
.y14{bottom:732.474000pt;}
.y15{bottom:732.514000pt;}
.y1b8{bottom:735.777467pt;}
.y89{bottom:736.988467pt;}
.y12e{bottom:737.819467pt;}
.yfd{bottom:738.502133pt;}
.y10a{bottom:738.502267pt;}
.y9c{bottom:740.051467pt;}
.y17c{bottom:740.556267pt;}
.ye7{bottom:743.198133pt;}
.y1b7{bottom:749.777467pt;}
.y88{bottom:752.321467pt;}
.y12{bottom:753.807467pt;}
.y13{bottom:753.847467pt;}
.y12d{bottom:754.486133pt;}
.yad{bottom:754.486267pt;}
.yfc{bottom:755.168800pt;}
.y109{bottom:755.168933pt;}
.ye5{bottom:756.531467pt;}
.y17b{bottom:756.555867pt;}
.y9b{bottom:756.718133pt;}
.y1b6{bottom:763.777467pt;}
.y87{bottom:767.654467pt;}
.ye6{bottom:769.864800pt;}
.yac{bottom:771.152933pt;}
.yfb{bottom:771.835467pt;}
.y108{bottom:771.835600pt;}
.y14d{bottom:771.835733pt;}
.y17a{bottom:772.555467pt;}
.y9a{bottom:773.384800pt;}
.y10{bottom:775.140800pt;}
.y11{bottom:775.180800pt;}
.y1b5{bottom:777.777467pt;}
.y12c{bottom:782.491467pt;}
.y86{bottom:782.988933pt;}
.yab{bottom:787.819600pt;}
.ye4{bottom:788.297867pt;}
.yfa{bottom:788.502133pt;}
.y107{bottom:788.502267pt;}
.y14c{bottom:788.502400pt;}
.y99{bottom:790.051467pt;}
.y1b4{bottom:791.777467pt;}
.y85{bottom:798.321933pt;}
.ye2{bottom:801.631200pt;}
.yaa{bottom:804.486267pt;}
.yf9{bottom:805.168800pt;}
.y106{bottom:805.168933pt;}
.y14b{bottom:805.169067pt;}
.y1b3{bottom:805.777467pt;}
.y98{bottom:806.718133pt;}
.y179{bottom:808.556000pt;}
.y84{bottom:813.654933pt;}
.ye3{bottom:814.964533pt;}
.y1b2{bottom:819.777467pt;}
.ya9{bottom:821.152933pt;}
.y12b{bottom:821.834800pt;}
.yf8{bottom:821.835467pt;}
.y105{bottom:821.835600pt;}
.y14a{bottom:821.835733pt;}
.y97{bottom:823.384800pt;}
.y178{bottom:825.222667pt;}
.y83{bottom:828.987933pt;}
.yf{bottom:831.150267pt;}
.ye1{bottom:833.396533pt;}
.y1b1{bottom:833.777467pt;}
.ya8{bottom:837.819600pt;}
.y12a{bottom:838.501467pt;}
.yf7{bottom:838.502267pt;}
.y149{bottom:838.502400pt;}
.ydd{bottom:840.063200pt;}
.y177{bottom:841.889333pt;}
.y82{bottom:844.322733pt;}
.y96{bottom:845.720800pt;}
.ye0{bottom:846.729867pt;}
.y1b0{bottom:847.777467pt;}
.ye{bottom:847.816667pt;}
.ydb{bottom:853.396533pt;}
.y129{bottom:855.168133pt;}
.yf6{bottom:855.168933pt;}
.y148{bottom:855.169067pt;}
.y176{bottom:858.556000pt;}
.y81{bottom:859.655733pt;}
.ydf{bottom:860.063200pt;}
.y1af{bottom:861.777467pt;}
.yd{bottom:863.863600pt;}
.ya7{bottom:865.824933pt;}
.ydc{bottom:866.729867pt;}
.y128{bottom:871.834800pt;}
.y104{bottom:871.835333pt;}
.yf5{bottom:871.835600pt;}
.y147{bottom:871.835733pt;}
.y95{bottom:871.836133pt;}
.yde{bottom:873.396533pt;}
.y80{bottom:874.988733pt;}
.y175{bottom:875.222667pt;}
.y1ae{bottom:875.777467pt;}
.y127{bottom:888.501467pt;}
.y103{bottom:888.502000pt;}
.y146{bottom:888.502400pt;}
.yf4{bottom:888.502667pt;}
.y94{bottom:888.502800pt;}
.y1ad{bottom:889.777467pt;}
.y7f{bottom:890.321733pt;}
.yb{bottom:891.827733pt;}
.yda{bottom:891.828533pt;}
.yc{bottom:891.867733pt;}
.y174{bottom:891.889333pt;}
.y1ac{bottom:903.777467pt;}
.yd8{bottom:905.161867pt;}
.y126{bottom:905.168133pt;}
.y102{bottom:905.168667pt;}
.y145{bottom:905.169067pt;}
.yf3{bottom:905.169333pt;}
.y93{bottom:905.169467pt;}
.y7e{bottom:905.654733pt;}
.y173{bottom:908.556000pt;}
.y9{bottom:913.161067pt;}
.ya{bottom:913.201067pt;}
.y1ab{bottom:917.777467pt;}
.yd9{bottom:918.495200pt;}
.y7d{bottom:920.989133pt;}
.y125{bottom:921.834800pt;}
.y101{bottom:921.835333pt;}
.yf2{bottom:921.836000pt;}
.y92{bottom:921.836133pt;}
.y172{bottom:925.222667pt;}
.y1aa{bottom:931.777467pt;}
.y7c{bottom:936.322133pt;}
.yd7{bottom:936.928267pt;}
.y124{bottom:938.501467pt;}
.y100{bottom:938.502000pt;}
.y91{bottom:938.502800pt;}
.y171{bottom:941.889333pt;}
.yd6{bottom:943.594933pt;}
.y1a9{bottom:945.777467pt;}
.y7b{bottom:951.655133pt;}
.y3c{bottom:952.987867pt;}
.y123{bottom:955.168133pt;}
.yff{bottom:955.168667pt;}
.y90{bottom:955.169467pt;}
.y1a8{bottom:959.777467pt;}
.y7a{bottom:966.988133pt;}
.y170{bottom:969.894667pt;}
.y122{bottom:971.834800pt;}
.ya6{bottom:971.835200pt;}
.yfe{bottom:971.835333pt;}
.y8f{bottom:971.836133pt;}
.yd5{bottom:972.806800pt;}
.y1a7{bottom:973.777467pt;}
.y5{bottom:974.924133pt;}
.y7{bottom:978.657600pt;}
.y4{bottom:982.924133pt;}
.y2{bottom:983.143733pt;}
.y3{bottom:990.924133pt;}
.y1{bottom:997.543733pt;}
.y6{bottom:998.726400pt;}
.y3d{bottom:1009.631467pt;}
.y3e{bottom:1010.602267pt;}
.h3{height:19.531250pt;}
.h8{height:22.520312pt;}
.he{height:31.062500pt;}
.hd{height:31.083333pt;}
.h1a{height:32.108333pt;}
.ha{height:33.003906pt;}
.h4{height:34.945312pt;}
.h2{height:34.968750pt;}
.h13{height:36.886719pt;}
.h9{height:36.936198pt;}
.hc{height:37.109375pt;}
.hf{height:38.828125pt;}
.h10{height:38.854167pt;}
.h18{height:38.855233pt;}
.h12{height:38.856833pt;}
.h16{height:38.857900pt;}
.h7{height:40.120313pt;}
.h15{height:40.133817pt;}
.h19{height:40.134350pt;}
.h11{height:40.134883pt;}
.hb{height:41.051665pt;}
.h1{height:42.739583pt;}
.h14{height:45.109642pt;}
.h6{height:46.593750pt;}
.h17{height:57.729167pt;}
.h5{height:1055.960000pt;}
.h0{height:1056.000000pt;}
.w1{width:812.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.700800pt;}
.x1a{left:52.724533pt;}
.x1e{left:58.055600pt;}
.x33{left:71.911733pt;}
.x1b{left:75.401733pt;}
.x32{left:77.844533pt;}
.x18{left:90.519733pt;}
.x3{left:95.707067pt;}
.x2{left:105.123067pt;}
.x20{left:113.197067pt;}
.xe{left:117.771333pt;}
.xf{left:119.472133pt;}
.x7{left:134.666133pt;}
.x8{left:136.366933pt;}
.x10{left:138.334133pt;}
.x11{left:140.034933pt;}
.x9{left:155.943467pt;}
.xa{left:157.644267pt;}
.x1{left:163.972267pt;}
.x16{left:176.424400pt;}
.x15{left:178.983467pt;}
.x25{left:194.948400pt;}
.x2b{left:204.829600pt;}
.xc{left:207.134427pt;}
.x17{left:214.908333pt;}
.xd{left:216.248400pt;}
.x29{left:236.745333pt;}
.x27{left:241.774667pt;}
.x26{left:245.927200pt;}
.x28{left:248.203467pt;}
.x30{left:255.407200pt;}
.x2d{left:256.587200pt;}
.x2f{left:289.351200pt;}
.x2e{left:300.708533pt;}
.x14{left:328.011333pt;}
.xb{left:342.203333pt;}
.x12{left:346.853200pt;}
.x13{left:348.554000pt;}
.x1c{left:404.220667pt;}
.x34{left:423.410400pt;}
.x1d{left:426.898667pt;}
.x21{left:442.016400pt;}
.x2c{left:460.738933pt;}
.x22{left:464.694267pt;}
.x31{left:467.136933pt;}
.x23{left:586.978400pt;}
.x24{left:590.229600pt;}
.x1f{left:625.871867pt;}
.x4{left:636.365200pt;}
.x5{left:643.274800pt;}
.x2a{left:655.321333pt;}
.x19{left:711.081333pt;}
}




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