
    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_69a7570d303ac2a40b817170.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.865000;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_b904b93756b4e2be26916ddb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e8afd81e9990545d29901830.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d5033f06b4e115c39857b413.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_863ab6ad770107012135f283.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_45ac1d53ff069e437f6685ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a6f17c9fd5b144e4da7dfa76.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_21d70435d889874f71af6359.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ca518b2d143b7ed2b48dec21.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0b6ca1ac21d3cbe3806b52b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_36212122ece456822b1a26d3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f23e455e7c0b4c2d6046a181.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.672000;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:-20.400000px;}
.v3{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls80{letter-spacing:-3.162000px;}
.ls36{letter-spacing:-0.480000px;}
.ls32{letter-spacing:-0.420000px;}
.ls7e{letter-spacing:-0.408000px;}
.ls35{letter-spacing:-0.360000px;}
.ls6d{letter-spacing:-0.357000px;}
.ls73{letter-spacing:-0.306000px;}
.ls34{letter-spacing:-0.300000px;}
.ls72{letter-spacing:-0.255000px;}
.ls33{letter-spacing:-0.240000px;}
.ls74{letter-spacing:-0.204000px;}
.ls37{letter-spacing:-0.180000px;}
.ls7f{letter-spacing:-0.153000px;}
.ls40{letter-spacing:-0.120000px;}
.ls6e{letter-spacing:-0.102000px;}
.lsb{letter-spacing:-0.060000px;}
.ls6f{letter-spacing:-0.051000px;}
.lsa{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.025500px;}
.ls3d{letter-spacing:0.030000px;}
.ls57{letter-spacing:0.051000px;}
.ls3e{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.090000px;}
.ls51{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls7c{letter-spacing:0.127500px;}
.ls31{letter-spacing:0.150000px;}
.ls5e{letter-spacing:0.153000px;}
.ls8{letter-spacing:0.178800px;}
.ls6{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.255000px;}
.ls6c{letter-spacing:0.280500px;}
.ls3f{letter-spacing:0.282000px;}
.ls59{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls50{letter-spacing:0.306000px;}
.ls4d{letter-spacing:0.330000px;}
.ls5b{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.ls5a{letter-spacing:0.408000px;}
.ls23{letter-spacing:0.420000px;}
.ls7d{letter-spacing:0.433500px;}
.ls44{letter-spacing:0.450000px;}
.ls4e{letter-spacing:0.459000px;}
.ls17{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.510000px;}
.ls54{letter-spacing:0.535500px;}
.ls22{letter-spacing:0.540000px;}
.ls6a{letter-spacing:0.561000px;}
.ls39{letter-spacing:0.570000px;}
.ls79{letter-spacing:0.586500px;}
.ls25{letter-spacing:0.600000px;}
.ls4f{letter-spacing:0.612000px;}
.ls4c{letter-spacing:0.630000px;}
.ls2d{letter-spacing:0.660000px;}
.ls53{letter-spacing:0.663000px;}
.ls78{letter-spacing:0.688500px;}
.ls55{letter-spacing:0.714000px;}
.ls29{letter-spacing:0.720000px;}
.ls58{letter-spacing:0.739500px;}
.ls52{letter-spacing:0.765000px;}
.ls20{letter-spacing:0.780000px;}
.ls43{letter-spacing:0.810000px;}
.ls5d{letter-spacing:0.816000px;}
.ls2b{letter-spacing:0.840000px;}
.ls77{letter-spacing:0.867000px;}
.ls42{letter-spacing:0.870000px;}
.ls6b{letter-spacing:0.892500px;}
.ls1d{letter-spacing:0.900000px;}
.ls75{letter-spacing:0.918000px;}
.ls2f{letter-spacing:0.930000px;}
.ls5c{letter-spacing:0.943500px;}
.ls2a{letter-spacing:0.960000px;}
.ls62{letter-spacing:0.969000px;}
.ls24{letter-spacing:0.990000px;}
.ls1b{letter-spacing:1.020000px;}
.ls3a{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.140000px;}
.ls2e{letter-spacing:1.170000px;}
.ls67{letter-spacing:1.173000px;}
.ls30{letter-spacing:1.200000px;}
.ls7a{letter-spacing:1.224000px;}
.ls15{letter-spacing:1.230000px;}
.ls3b{letter-spacing:1.260000px;}
.ls5f{letter-spacing:1.275000px;}
.ls4b{letter-spacing:1.290000px;}
.ls66{letter-spacing:1.300500px;}
.ls14{letter-spacing:1.320000px;}
.ls70{letter-spacing:1.326000px;}
.ls1a{letter-spacing:1.350000px;}
.ls69{letter-spacing:1.377000px;}
.lse{letter-spacing:1.380000px;}
.ls63{letter-spacing:1.428000px;}
.ls27{letter-spacing:1.440000px;}
.ls49{letter-spacing:1.470000px;}
.ls65{letter-spacing:1.479000px;}
.ls1c{letter-spacing:1.500000px;}
.ls19{letter-spacing:1.530000px;}
.ls12{letter-spacing:1.560000px;}
.ls60{letter-spacing:1.581000px;}
.ls41{letter-spacing:1.620000px;}
.ls56{letter-spacing:1.632000px;}
.ls48{letter-spacing:1.650000px;}
.lsc{letter-spacing:1.680000px;}
.ls76{letter-spacing:1.683000px;}
.ls4a{letter-spacing:1.710000px;}
.ls64{letter-spacing:1.734000px;}
.ls26{letter-spacing:1.740000px;}
.ls1f{letter-spacing:1.800000px;}
.ls1e{letter-spacing:1.860000px;}
.ls21{letter-spacing:1.920000px;}
.ls16{letter-spacing:1.980000px;}
.ls71{letter-spacing:1.989000px;}
.ls10{letter-spacing:2.040000px;}
.ls13{letter-spacing:2.100000px;}
.ls28{letter-spacing:2.160000px;}
.ls47{letter-spacing:2.220000px;}
.ls45{letter-spacing:2.280000px;}
.lsd{letter-spacing:2.340000px;}
.lsf{letter-spacing:2.400000px;}
.ls68{letter-spacing:2.448000px;}
.ls18{letter-spacing:2.460000px;}
.ls46{letter-spacing:2.880000px;}
.ls7b{letter-spacing:2.907000px;}
.ls38{letter-spacing:3.780000px;}
.ls0{letter-spacing:3.990000px;}
.ls7{letter-spacing:31.110000px;}
.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;}
}
.ws80{word-spacing:-17.280000px;}
.ws78{word-spacing:-16.500000px;}
.ws81{word-spacing:-16.140000px;}
.ws63{word-spacing:-16.080000px;}
.ws82{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.900000px;}
.ws62{word-spacing:-15.870000px;}
.ws2{word-spacing:-15.789000px;}
.ws72{word-spacing:-15.480000px;}
.ws45{word-spacing:-15.420000px;}
.ws6{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.000000px;}
.ws8f{word-spacing:-14.832000px;}
.ws18{word-spacing:-14.640000px;}
.ws15{word-spacing:-14.544000px;}
.ws8e{word-spacing:-13.260000px;}
.ws90{word-spacing:-13.005000px;}
.ws8{word-spacing:-12.750000px;}
.ws64{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws7{word-spacing:-11.520000px;}
.ws8d{word-spacing:-10.327500px;}
.ws8c{word-spacing:-10.251000px;}
.ws1{word-spacing:-9.996000px;}
.wsbe{word-spacing:-9.588000px;}
.ws9{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws1c{word-spacing:-2.040000px;}
.wsa{word-spacing:-1.890000px;}
.ws7c{word-spacing:-1.680000px;}
.ws67{word-spacing:-1.560000px;}
.wsc{word-spacing:-1.500000px;}
.ws86{word-spacing:-1.440000px;}
.ws5e{word-spacing:-1.380000px;}
.ws4c{word-spacing:-1.320000px;}
.ws93{word-spacing:-1.275000px;}
.ws52{word-spacing:-1.260000px;}
.wscc{word-spacing:-1.224000px;}
.ws68{word-spacing:-1.200000px;}
.ws22{word-spacing:-1.140000px;}
.wsc2{word-spacing:-1.122000px;}
.ws53{word-spacing:-1.080000px;}
.wsa0{word-spacing:-1.071000px;}
.ws46{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.969000px;}
.ws6e{word-spacing:-0.960000px;}
.ws9b{word-spacing:-0.918000px;}
.ws2b{word-spacing:-0.900000px;}
.wsc3{word-spacing:-0.867000px;}
.ws48{word-spacing:-0.840000px;}
.wsc6{word-spacing:-0.816000px;}
.ws23{word-spacing:-0.780000px;}
.ws25{word-spacing:-0.720000px;}
.wsbd{word-spacing:-0.714000px;}
.wsb9{word-spacing:-0.663000px;}
.ws14{word-spacing:-0.612000px;}
.ws7b{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.561000px;}
.ws12{word-spacing:-0.540000px;}
.wsbf{word-spacing:-0.510000px;}
.ws5c{word-spacing:-0.480000px;}
.wsa9{word-spacing:-0.459000px;}
.ws55{word-spacing:-0.420000px;}
.wsaa{word-spacing:-0.408000px;}
.wsd{word-spacing:-0.360000px;}
.wsb5{word-spacing:-0.357000px;}
.ws13{word-spacing:-0.300000px;}
.ws58{word-spacing:-0.282000px;}
.wsa6{word-spacing:-0.255000px;}
.ws6b{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.180000px;}
.wsbc{word-spacing:-0.153000px;}
.ws28{word-spacing:-0.120000px;}
.wsc7{word-spacing:-0.102000px;}
.ws47{word-spacing:-0.060000px;}
.ws59{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.wsab{word-spacing:0.051000px;}
.ws31{word-spacing:0.060000px;}
.ws40{word-spacing:0.120000px;}
.wsca{word-spacing:0.204000px;}
.ws36{word-spacing:0.240000px;}
.wsae{word-spacing:0.255000px;}
.wsf{word-spacing:0.300000px;}
.ws3f{word-spacing:0.360000px;}
.ws66{word-spacing:0.420000px;}
.ws9d{word-spacing:0.459000px;}
.ws44{word-spacing:0.480000px;}
.wsc4{word-spacing:0.510000px;}
.wsbb{word-spacing:0.561000px;}
.ws77{word-spacing:0.600000px;}
.wsa4{word-spacing:0.612000px;}
.ws57{word-spacing:0.660000px;}
.wsc9{word-spacing:0.714000px;}
.ws50{word-spacing:0.720000px;}
.ws6a{word-spacing:0.780000px;}
.ws49{word-spacing:0.840000px;}
.ws1e{word-spacing:0.960000px;}
.ws96{word-spacing:1.020000px;}
.ws97{word-spacing:1.071000px;}
.ws7f{word-spacing:1.080000px;}
.wsb0{word-spacing:1.122000px;}
.ws10{word-spacing:1.140000px;}
.wsa1{word-spacing:1.173000px;}
.ws5d{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.ws92{word-spacing:1.275000px;}
.ws61{word-spacing:1.320000px;}
.ws95{word-spacing:1.377000px;}
.ws75{word-spacing:1.380000px;}
.wscb{word-spacing:1.428000px;}
.ws85{word-spacing:1.440000px;}
.wsb4{word-spacing:1.479000px;}
.wse{word-spacing:1.500000px;}
.wsad{word-spacing:1.530000px;}
.ws3e{word-spacing:1.560000px;}
.ws98{word-spacing:1.581000px;}
.ws3b{word-spacing:1.620000px;}
.wsa2{word-spacing:1.632000px;}
.ws41{word-spacing:1.680000px;}
.ws9e{word-spacing:1.734000px;}
.ws6f{word-spacing:1.740000px;}
.wsb1{word-spacing:1.785000px;}
.ws42{word-spacing:1.800000px;}
.ws94{word-spacing:1.836000px;}
.ws4b{word-spacing:1.860000px;}
.ws2a{word-spacing:1.920000px;}
.wsc5{word-spacing:1.938000px;}
.ws19{word-spacing:1.980000px;}
.ws29{word-spacing:2.040000px;}
.wsb3{word-spacing:2.091000px;}
.ws33{word-spacing:2.100000px;}
.wsb8{word-spacing:2.142000px;}
.ws32{word-spacing:2.160000px;}
.ws37{word-spacing:2.220000px;}
.wsa3{word-spacing:2.244000px;}
.ws7d{word-spacing:2.280000px;}
.wscd{word-spacing:2.295000px;}
.ws38{word-spacing:2.340000px;}
.wsd1{word-spacing:2.346000px;}
.ws3d{word-spacing:2.400000px;}
.wsd3{word-spacing:2.448000px;}
.ws2d{word-spacing:2.460000px;}
.wsb7{word-spacing:2.499000px;}
.ws39{word-spacing:2.520000px;}
.ws5b{word-spacing:2.580000px;}
.ws65{word-spacing:2.640000px;}
.ws43{word-spacing:2.700000px;}
.wsc0{word-spacing:2.703000px;}
.ws9f{word-spacing:2.754000px;}
.ws7a{word-spacing:2.760000px;}
.ws2c{word-spacing:2.820000px;}
.ws60{word-spacing:2.880000px;}
.ws4d{word-spacing:2.940000px;}
.ws2e{word-spacing:3.000000px;}
.wsb6{word-spacing:3.009000px;}
.ws54{word-spacing:3.060000px;}
.ws6d{word-spacing:3.120000px;}
.wsce{word-spacing:3.162000px;}
.ws4e{word-spacing:3.180000px;}
.wsaf{word-spacing:3.213000px;}
.ws8a{word-spacing:3.240000px;}
.ws9a{word-spacing:3.264000px;}
.ws35{word-spacing:3.300000px;}
.ws24{word-spacing:3.360000px;}
.ws74{word-spacing:3.420000px;}
.ws20{word-spacing:3.540000px;}
.ws3a{word-spacing:3.600000px;}
.ws6c{word-spacing:3.660000px;}
.ws2f{word-spacing:3.720000px;}
.ws1d{word-spacing:3.780000px;}
.ws27{word-spacing:3.840000px;}
.ws1f{word-spacing:3.900000px;}
.ws71{word-spacing:3.960000px;}
.wsd4{word-spacing:3.978000px;}
.ws76{word-spacing:4.020000px;}
.ws51{word-spacing:4.080000px;}
.wsd2{word-spacing:4.182000px;}
.ws5f{word-spacing:4.200000px;}
.ws88{word-spacing:4.260000px;}
.wsc8{word-spacing:4.284000px;}
.wsac{word-spacing:4.335000px;}
.ws3c{word-spacing:4.380000px;}
.wsa5{word-spacing:4.437000px;}
.ws34{word-spacing:4.500000px;}
.ws87{word-spacing:4.560000px;}
.wsa7{word-spacing:4.590000px;}
.ws91{word-spacing:4.620000px;}
.wsd0{word-spacing:4.641000px;}
.ws83{word-spacing:4.860000px;}
.ws73{word-spacing:5.040000px;}
.ws89{word-spacing:5.220000px;}
.ws1a{word-spacing:5.340000px;}
.ws30{word-spacing:5.400000px;}
.ws8b{word-spacing:5.460000px;}
.ws7e{word-spacing:5.520000px;}
.ws4f{word-spacing:5.580000px;}
.ws1b{word-spacing:5.640000px;}
.ws69{word-spacing:5.700000px;}
.ws26{word-spacing:5.760000px;}
.ws84{word-spacing:5.820000px;}
.wsa8{word-spacing:6.018000px;}
.ws99{word-spacing:6.171000px;}
.ws56{word-spacing:6.240000px;}
.ws79{word-spacing:6.300000px;}
.ws5a{word-spacing:6.480000px;}
.wsc1{word-spacing:6.579000px;}
.wsb2{word-spacing:6.834000px;}
.ws70{word-spacing:7.920000px;}
.wscf{word-spacing:12.597000px;}
.ws4a{word-spacing:16.740001px;}
._d{margin-left:-2959.376905px;}
._16{margin-left:-48.450000px;}
._8{margin-left:-24.225000px;}
._5{margin-left:-16.575000px;}
._b{margin-left:-10.979998px;}
._e{margin-left:-6.660000px;}
._f{margin-left:-5.192999px;}
._0{margin-left:-3.600000px;}
._3{margin-left:-2.246400px;}
._1{margin-left:-1.173000px;}
._4{width:1.022400px;}
._2{width:2.102400px;}
._c{width:3.522000px;}
._a{width:5.819997px;}
._17{width:10.965004px;}
._18{width:14.024995px;}
._11{width:16.293900px;}
._10{width:35.207533px;}
._7{width:36.567000px;}
._6{width:54.621000px;}
._13{width:867.611985px;}
._12{width:938.756997px;}
._15{width:940.440046px;}
._14{width:943.193992px;}
._9{width:1863.744085px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fsa{font-size:56.399998px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829000px;}
.y103{bottom:112.932276px;}
.y109{bottom:112.932299px;}
.y102{bottom:112.932301px;}
.y10a{bottom:112.932325px;}
.y29{bottom:112.938300px;}
.y9c{bottom:113.415298px;}
.y101{bottom:114.735146px;}
.y11b{bottom:114.735260px;}
.y12c{bottom:114.735294px;}
.yd0{bottom:114.735306px;}
.y1ec{bottom:114.738293px;}
.y262{bottom:116.735896px;}
.y35{bottom:117.968250px;}
.y104{bottom:121.933776px;}
.y11c{bottom:121.933800px;}
.y10b{bottom:121.933825px;}
.y69{bottom:129.915344px;}
.y1b7{bottom:131.283302px;}
.y261{bottom:131.729896px;}
.y9b{bottom:132.165298px;}
.y28{bottom:133.032300px;}
.y100{bottom:133.485146px;}
.y11a{bottom:133.485260px;}
.y12b{bottom:133.485294px;}
.ycf{bottom:133.485306px;}
.y1eb{bottom:133.488293px;}
.y34{bottom:140.515500px;}
.y260{bottom:146.723896px;}
.y68{bottom:148.665344px;}
.y176{bottom:150.033279px;}
.y1b6{bottom:150.033302px;}
.y27{bottom:150.485550px;}
.y9a{bottom:150.915298px;}
.yff{bottom:152.235146px;}
.y119{bottom:152.235260px;}
.y12a{bottom:152.235294px;}
.yce{bottom:152.235306px;}
.y1ea{bottom:152.238293px;}
.y220{bottom:156.235360px;}
.y25f{bottom:161.717896px;}
.y33{bottom:163.062750px;}
.y67{bottom:167.415344px;}
.y175{bottom:168.783279px;}
.y1b5{bottom:168.783302px;}
.y99{bottom:169.665298px;}
.y1a4{bottom:169.794342px;}
.y26{bottom:170.579550px;}
.y118{bottom:170.985260px;}
.y129{bottom:170.985294px;}
.ycd{bottom:170.985306px;}
.y1e9{bottom:170.988293px;}
.y21f{bottom:171.229360px;}
.y25e{bottom:176.711896px;}
.y32{bottom:185.610000px;}
.y66{bottom:186.165344px;}
.y21e{bottom:186.223360px;}
.y174{bottom:187.533279px;}
.y1b4{bottom:187.533302px;}
.y25{bottom:188.032800px;}
.y98{bottom:188.415298px;}
.y1a3{bottom:188.544342px;}
.yfe{bottom:189.735146px;}
.y117{bottom:189.735260px;}
.y128{bottom:189.735294px;}
.ycc{bottom:189.735306px;}
.y1e8{bottom:189.738293px;}
.y25d{bottom:191.705896px;}
.y21d{bottom:201.217360px;}
.y31{bottom:203.069250px;}
.y65{bottom:204.915344px;}
.y173{bottom:206.283279px;}
.y1b3{bottom:206.283302px;}
.y25c{bottom:206.699896px;}
.y97{bottom:207.165298px;}
.y1a2{bottom:207.294342px;}
.y24{bottom:208.126800px;}
.yfd{bottom:208.485146px;}
.y116{bottom:208.485260px;}
.ycb{bottom:208.485306px;}
.y1e7{bottom:208.488293px;}
.y21c{bottom:216.211360px;}
.y30{bottom:218.063250px;}
.y25b{bottom:221.693896px;}
.y64{bottom:223.665344px;}
.y172{bottom:225.033279px;}
.y1b2{bottom:225.033302px;}
.y96{bottom:225.915298px;}
.y1a1{bottom:226.044342px;}
.y115{bottom:227.235260px;}
.yca{bottom:227.235306px;}
.y1e6{bottom:227.238293px;}
.yfc{bottom:228.135155px;}
.y23{bottom:230.674050px;}
.y21b{bottom:231.205360px;}
.y25a{bottom:236.687896px;}
.y2f{bottom:238.157250px;}
.y63{bottom:242.415344px;}
.y171{bottom:243.783279px;}
.y1b1{bottom:243.783302px;}
.y95{bottom:244.665298px;}
.y1a0{bottom:244.794342px;}
.yfb{bottom:245.985146px;}
.y114{bottom:245.985260px;}
.yc9{bottom:245.985306px;}
.y1e5{bottom:245.988293px;}
.y21a{bottom:246.199360px;}
.y259{bottom:251.681896px;}
.y22{bottom:253.221300px;}
.y2e{bottom:260.704500px;}
.y62{bottom:261.165344px;}
.y219{bottom:261.193360px;}
.y170{bottom:262.533279px;}
.y94{bottom:263.415298px;}
.y19f{bottom:263.544342px;}
.yfa{bottom:264.735146px;}
.y113{bottom:264.735260px;}
.y127{bottom:264.735306px;}
.y1e4{bottom:264.738293px;}
.y258{bottom:266.675896px;}
.y21{bottom:270.674550px;}
.y218{bottom:276.187360px;}
.y2d{bottom:278.157750px;}
.y61{bottom:279.915344px;}
.y16f{bottom:281.283279px;}
.y1b0{bottom:281.283302px;}
.y257{bottom:281.669896px;}
.y93{bottom:282.165298px;}
.y19e{bottom:282.294342px;}
.y112{bottom:283.485260px;}
.yc8{bottom:283.485306px;}
.y1e3{bottom:283.488293px;}
.yf9{bottom:284.385155px;}
.y20{bottom:290.768550px;}
.y217{bottom:291.181360px;}
.y298{bottom:296.542823px;}
.y256{bottom:296.663896px;}
.y2c{bottom:298.251750px;}
.y60{bottom:298.665344px;}
.y16e{bottom:300.033279px;}
.y92{bottom:300.915298px;}
.y19d{bottom:301.044342px;}
.yf8{bottom:302.235146px;}
.y111{bottom:302.235260px;}
.y126{bottom:302.235306px;}
.y1e2{bottom:302.238293px;}
.y216{bottom:306.175360px;}
.y297{bottom:311.536823px;}
.y255{bottom:311.657896px;}
.y2cd{bottom:311.855581px;}
.y2b{bottom:315.705000px;}
.y1f{bottom:315.769050px;}
.y5f{bottom:317.415344px;}
.y16d{bottom:318.783279px;}
.y91{bottom:319.665298px;}
.y19c{bottom:319.794342px;}
.yf7{bottom:320.985146px;}
.yc7{bottom:320.985260px;}
.y125{bottom:320.985306px;}
.y1e1{bottom:320.988293px;}
.y215{bottom:321.169360px;}
.y296{bottom:326.530823px;}
.y254{bottom:326.651896px;}
.y2cc{bottom:326.849581px;}
.y1e{bottom:330.763050px;}
.y2a{bottom:335.799000px;}
.y214{bottom:336.163360px;}
.y5e{bottom:336.165344px;}
.y16c{bottom:337.533279px;}
.y90{bottom:338.415298px;}
.y19b{bottom:338.544342px;}
.yc6{bottom:339.735260px;}
.y124{bottom:339.735306px;}
.y1e0{bottom:339.738293px;}
.yf6{bottom:340.635155px;}
.y295{bottom:341.524823px;}
.y253{bottom:341.645896px;}
.y2cb{bottom:341.843581px;}
.y213{bottom:351.157360px;}
.y5d{bottom:354.915344px;}
.y16b{bottom:356.283279px;}
.y1af{bottom:356.283325px;}
.y294{bottom:356.518823px;}
.y252{bottom:356.639896px;}
.y2ca{bottom:356.837581px;}
.y8f{bottom:357.165298px;}
.y19a{bottom:357.294342px;}
.yc5{bottom:358.485260px;}
.y123{bottom:358.485306px;}
.y1df{bottom:358.488293px;}
.y212{bottom:366.151360px;}
.y293{bottom:371.512823px;}
.y251{bottom:371.633896px;}
.y2c9{bottom:371.831581px;}
.y5c{bottom:373.665344px;}
.y16a{bottom:375.033279px;}
.y1ae{bottom:375.033325px;}
.y8e{bottom:375.915298px;}
.y199{bottom:376.044342px;}
.yc4{bottom:377.235260px;}
.yf5{bottom:377.235306px;}
.y1de{bottom:377.238293px;}
.y147{bottom:377.241305px;}
.y211{bottom:381.145360px;}
.y292{bottom:386.506823px;}
.y250{bottom:386.627896px;}
.y2c8{bottom:386.825581px;}
.y5b{bottom:392.415344px;}
.y169{bottom:393.783279px;}
.y1ad{bottom:393.783325px;}
.y8d{bottom:394.665298px;}
.y198{bottom:394.794342px;}
.yc3{bottom:395.985260px;}
.yf4{bottom:395.985306px;}
.y1dd{bottom:395.988293px;}
.y210{bottom:396.139360px;}
.y291{bottom:401.500823px;}
.y24f{bottom:401.621896px;}
.y2c7{bottom:401.819581px;}
.y20f{bottom:411.133360px;}
.y5a{bottom:411.165344px;}
.y168{bottom:412.533279px;}
.y1ac{bottom:412.533325px;}
.y8c{bottom:413.415298px;}
.y197{bottom:413.544342px;}
.yc2{bottom:414.735260px;}
.yf3{bottom:414.735306px;}
.y1dc{bottom:414.738293px;}
.y290{bottom:416.494823px;}
.y24e{bottom:416.615896px;}
.y2c6{bottom:416.813581px;}
.y20e{bottom:426.127360px;}
.y59{bottom:429.915344px;}
.y167{bottom:431.283279px;}
.y1ab{bottom:431.283325px;}
.y28f{bottom:431.488823px;}
.y24d{bottom:431.609896px;}
.y2c5{bottom:431.807581px;}
.y8b{bottom:432.165298px;}
.y196{bottom:432.294342px;}
.yc1{bottom:433.485260px;}
.yf2{bottom:433.485306px;}
.y1db{bottom:433.488293px;}
.y20d{bottom:441.121360px;}
.y105{bottom:442.175533px;}
.y11d{bottom:442.609038px;}
.y10c{bottom:443.284831px;}
.y28e{bottom:446.482823px;}
.y24c{bottom:446.603896px;}
.y2c4{bottom:446.801581px;}
.y58{bottom:448.665344px;}
.y166{bottom:450.033279px;}
.y1aa{bottom:450.033325px;}
.y195{bottom:451.044342px;}
.y106{bottom:451.177033px;}
.y11e{bottom:451.610538px;}
.yc0{bottom:452.235260px;}
.yf1{bottom:452.235306px;}
.y1da{bottom:452.238293px;}
.y10d{bottom:452.286330px;}
.y20c{bottom:456.115360px;}
.y28d{bottom:461.476823px;}
.y24b{bottom:461.597896px;}
.y2c3{bottom:461.795581px;}
.y57{bottom:467.415344px;}
.y1a9{bottom:468.783325px;}
.y8a{bottom:469.665298px;}
.y194{bottom:469.794342px;}
.ybf{bottom:470.985260px;}
.yf0{bottom:470.985306px;}
.y1d9{bottom:470.988293px;}
.y20b{bottom:471.109360px;}
.y28c{bottom:476.470823px;}
.y24a{bottom:476.591896px;}
.y2c2{bottom:476.789581px;}
.y1d{bottom:478.711350px;}
.y56{bottom:486.165344px;}
.y165{bottom:487.533279px;}
.y1a8{bottom:487.533325px;}
.y193{bottom:488.544342px;}
.ybe{bottom:489.735260px;}
.yef{bottom:489.735306px;}
.y1d8{bottom:489.738293px;}
.y28b{bottom:491.464823px;}
.y249{bottom:491.585896px;}
.y2c1{bottom:491.783581px;}
.y20a{bottom:504.859360px;}
.y55{bottom:504.915344px;}
.y1a7{bottom:506.283325px;}
.y28a{bottom:506.458823px;}
.y248{bottom:506.579896px;}
.y2c0{bottom:506.777581px;}
.y89{bottom:507.165367px;}
.y192{bottom:507.294342px;}
.ybd{bottom:508.485260px;}
.yee{bottom:508.485306px;}
.y1d7{bottom:508.488293px;}
.y1c{bottom:516.211350px;}
.y289{bottom:521.452823px;}
.y247{bottom:521.573896px;}
.y2bf{bottom:521.771581px;}
.y54{bottom:523.665344px;}
.y1a6{bottom:525.033325px;}
.y88{bottom:525.915367px;}
.y191{bottom:526.044342px;}
.ybc{bottom:527.235260px;}
.y122{bottom:527.235306px;}
.y1d6{bottom:527.238293px;}
.y1b{bottom:534.961350px;}
.y288{bottom:536.446823px;}
.y246{bottom:536.567896px;}
.y2be{bottom:536.765581px;}
.y53{bottom:542.415344px;}
.y164{bottom:543.783325px;}
.y87{bottom:544.665367px;}
.y190{bottom:544.794342px;}
.ybb{bottom:545.985260px;}
.yed{bottom:545.985306px;}
.y1d5{bottom:545.988293px;}
.y287{bottom:551.440823px;}
.y245{bottom:551.561896px;}
.y2bd{bottom:551.759581px;}
.y1a{bottom:553.711350px;}
.y52{bottom:561.165344px;}
.y209{bottom:561.260732px;}
.y163{bottom:562.533325px;}
.y86{bottom:563.415367px;}
.y18f{bottom:563.544342px;}
.yba{bottom:564.735260px;}
.yec{bottom:564.735306px;}
.y1d4{bottom:564.738293px;}
.y286{bottom:566.434823px;}
.y244{bottom:566.555896px;}
.y2bc{bottom:566.753581px;}
.y19{bottom:572.461350px;}
.y208{bottom:576.254732px;}
.y51{bottom:579.915344px;}
.y162{bottom:581.283325px;}
.y285{bottom:581.428823px;}
.y243{bottom:581.549896px;}
.y2bb{bottom:581.747581px;}
.y85{bottom:582.165367px;}
.y18e{bottom:582.294342px;}
.yb9{bottom:583.485260px;}
.yeb{bottom:583.485306px;}
.y1d3{bottom:583.488293px;}
.y146{bottom:583.491305px;}
.y18{bottom:591.211350px;}
.y207{bottom:591.248732px;}
.y284{bottom:596.422823px;}
.y242{bottom:596.543896px;}
.y2ba{bottom:596.741581px;}
.y50{bottom:598.665344px;}
.y161{bottom:600.033325px;}
.y84{bottom:600.915367px;}
.y18d{bottom:601.044342px;}
.yb8{bottom:602.235260px;}
.y121{bottom:602.235306px;}
.y1d2{bottom:602.238293px;}
.y206{bottom:606.242732px;}
.y17{bottom:609.961350px;}
.y283{bottom:611.416823px;}
.y241{bottom:611.537896px;}
.y2b9{bottom:611.735581px;}
.y4f{bottom:617.415344px;}
.y160{bottom:618.783325px;}
.y83{bottom:619.665367px;}
.y18c{bottom:619.794342px;}
.yb7{bottom:620.985260px;}
.yea{bottom:620.985306px;}
.y1d1{bottom:620.988293px;}
.y205{bottom:621.236732px;}
.y282{bottom:626.410823px;}
.y240{bottom:626.531896px;}
.y2b8{bottom:626.729581px;}
.y16{bottom:628.711350px;}
.y4e{bottom:636.165344px;}
.y204{bottom:636.230732px;}
.y15f{bottom:637.533325px;}
.y82{bottom:638.415367px;}
.y18b{bottom:638.544342px;}
.yb6{bottom:639.735260px;}
.y145{bottom:639.735294px;}
.ye9{bottom:639.735306px;}
.y1d0{bottom:639.738293px;}
.y281{bottom:641.404823px;}
.y23f{bottom:641.525896px;}
.y2b7{bottom:641.723581px;}
.y15{bottom:647.461350px;}
.y4d{bottom:654.915344px;}
.y15e{bottom:656.283325px;}
.y280{bottom:656.398823px;}
.y23e{bottom:656.519896px;}
.y2b6{bottom:656.717581px;}
.y81{bottom:657.165367px;}
.y18a{bottom:657.294342px;}
.yb5{bottom:658.485260px;}
.y144{bottom:658.485294px;}
.ye8{bottom:658.485306px;}
.y1cf{bottom:658.488293px;}
.y14{bottom:666.211350px;}
.y203{bottom:669.941733px;}
.y27f{bottom:671.392823px;}
.y23d{bottom:671.513896px;}
.y2b5{bottom:671.711581px;}
.y4c{bottom:673.665344px;}
.y15d{bottom:675.033325px;}
.y80{bottom:675.915367px;}
.y189{bottom:676.044342px;}
.yb4{bottom:677.235260px;}
.y143{bottom:677.235294px;}
.ye7{bottom:677.235306px;}
.y1ce{bottom:677.238293px;}
.y202{bottom:684.935733px;}
.y13{bottom:684.961350px;}
.y27e{bottom:686.386823px;}
.y23c{bottom:686.507896px;}
.y2b4{bottom:686.705581px;}
.y4b{bottom:692.415344px;}
.y15c{bottom:693.783325px;}
.y7f{bottom:694.665367px;}
.y188{bottom:694.794342px;}
.yb3{bottom:695.985260px;}
.y142{bottom:695.985294px;}
.ye6{bottom:695.985306px;}
.y1cd{bottom:695.988293px;}
.y201{bottom:699.929733px;}
.y27d{bottom:701.380823px;}
.y23b{bottom:701.501896px;}
.y2b3{bottom:701.699581px;}
.y12{bottom:703.711350px;}
.y4a{bottom:711.165344px;}
.y15b{bottom:712.533325px;}
.y7e{bottom:713.415367px;}
.y187{bottom:713.544342px;}
.yb2{bottom:714.735260px;}
.y141{bottom:714.735294px;}
.ye5{bottom:714.735306px;}
.y1cc{bottom:714.738293px;}
.y200{bottom:714.923733px;}
.y27c{bottom:716.374823px;}
.y23a{bottom:716.495896px;}
.y2b2{bottom:716.693581px;}
.y11{bottom:722.461350px;}
.y49{bottom:729.915344px;}
.y1ff{bottom:729.917733px;}
.y15a{bottom:731.283325px;}
.y27b{bottom:731.368823px;}
.y239{bottom:731.489896px;}
.y2b1{bottom:731.687581px;}
.y7d{bottom:732.165367px;}
.y186{bottom:732.294342px;}
.yb1{bottom:733.485260px;}
.y140{bottom:733.485294px;}
.ye4{bottom:733.485306px;}
.y1cb{bottom:733.488293px;}
.y10{bottom:741.211350px;}
.y1fe{bottom:744.911733px;}
.y27a{bottom:746.362823px;}
.y238{bottom:746.483896px;}
.y2b0{bottom:746.681581px;}
.y48{bottom:748.665344px;}
.y159{bottom:750.033325px;}
.y7c{bottom:750.915367px;}
.y185{bottom:751.044342px;}
.yb0{bottom:752.235260px;}
.y13f{bottom:752.235294px;}
.ye3{bottom:752.235306px;}
.y1ca{bottom:752.238293px;}
.y1fd{bottom:759.905733px;}
.yf{bottom:759.961350px;}
.y279{bottom:761.356823px;}
.y237{bottom:761.477896px;}
.y2af{bottom:761.675581px;}
.y47{bottom:767.415344px;}
.y158{bottom:768.783325px;}
.y7b{bottom:769.665367px;}
.y184{bottom:769.794342px;}
.yaf{bottom:770.985260px;}
.y13e{bottom:770.985294px;}
.ye2{bottom:770.985306px;}
.y1c9{bottom:770.988293px;}
.y107{bottom:771.380537px;}
.y11f{bottom:771.584546px;}
.y10e{bottom:772.247571px;}
.y278{bottom:776.350823px;}
.y236{bottom:776.471896px;}
.y2ae{bottom:776.669581px;}
.ye{bottom:778.711350px;}
.y108{bottom:780.382036px;}
.y120{bottom:780.586046px;}
.y10f{bottom:781.249071px;}
.y46{bottom:786.165344px;}
.y157{bottom:787.533325px;}
.y7a{bottom:788.415367px;}
.yae{bottom:789.735260px;}
.y13d{bottom:789.735294px;}
.ye1{bottom:789.735306px;}
.y1c8{bottom:789.738293px;}
.y277{bottom:791.344823px;}
.y235{bottom:791.465896px;}
.y2ad{bottom:791.663581px;}
.y1fc{bottom:793.616733px;}
.yd{bottom:797.461350px;}
.y45{bottom:804.915344px;}
.y156{bottom:806.283325px;}
.y276{bottom:806.338823px;}
.y234{bottom:806.459896px;}
.y2ac{bottom:806.657581px;}
.y79{bottom:807.165367px;}
.y183{bottom:807.300342px;}
.yad{bottom:808.485260px;}
.y13c{bottom:808.485294px;}
.ye0{bottom:808.485306px;}
.y1c7{bottom:808.488293px;}
.y1fb{bottom:808.610733px;}
.yc{bottom:816.211350px;}
.y275{bottom:821.332823px;}
.y233{bottom:821.453896px;}
.y2ab{bottom:821.651581px;}
.y1fa{bottom:823.604733px;}
.y44{bottom:823.665344px;}
.y155{bottom:825.033325px;}
.y78{bottom:825.915367px;}
.y182{bottom:826.044342px;}
.yac{bottom:827.235260px;}
.y13b{bottom:827.235294px;}
.ydf{bottom:827.235306px;}
.y1c6{bottom:827.238293px;}
.y274{bottom:836.326823px;}
.y232{bottom:836.447896px;}
.y2aa{bottom:836.645581px;}
.y1f9{bottom:838.598733px;}
.y43{bottom:842.415344px;}
.y154{bottom:843.783325px;}
.y77{bottom:844.665367px;}
.yab{bottom:845.985260px;}
.y13a{bottom:845.985294px;}
.yde{bottom:845.985306px;}
.y1c5{bottom:845.988293px;}
.y273{bottom:851.320823px;}
.y231{bottom:851.441896px;}
.y2a9{bottom:851.639581px;}
.y1f8{bottom:853.592733px;}
.yb{bottom:860.394150px;}
.y42{bottom:861.165344px;}
.y153{bottom:862.533325px;}
.y76{bottom:863.415367px;}
.yaa{bottom:864.735260px;}
.y139{bottom:864.735294px;}
.ydd{bottom:864.735306px;}
.y1c4{bottom:864.738293px;}
.y272{bottom:866.314823px;}
.y230{bottom:866.435896px;}
.y2a8{bottom:866.633581px;}
.y1f7{bottom:868.586733px;}
.ya{bottom:875.388150px;}
.y41{bottom:879.915344px;}
.y152{bottom:881.283325px;}
.y271{bottom:881.308823px;}
.y22f{bottom:881.429896px;}
.y2a7{bottom:881.627581px;}
.y75{bottom:882.165367px;}
.y181{bottom:882.294342px;}
.ya9{bottom:883.485260px;}
.y138{bottom:883.485294px;}
.ydc{bottom:883.485306px;}
.y1c3{bottom:883.488293px;}
.y1f6{bottom:883.580733px;}
.y270{bottom:896.302823px;}
.y22e{bottom:896.423896px;}
.y2a6{bottom:896.621581px;}
.y1f5{bottom:898.574733px;}
.y40{bottom:898.665344px;}
.y151{bottom:900.033325px;}
.y74{bottom:900.915367px;}
.y180{bottom:901.044342px;}
.ya8{bottom:902.235260px;}
.y137{bottom:902.235294px;}
.ydb{bottom:902.235306px;}
.y1c2{bottom:902.238293px;}
.y26f{bottom:911.296823px;}
.y22d{bottom:911.417896px;}
.y2a5{bottom:911.615581px;}
.y1f4{bottom:913.568733px;}
.y3f{bottom:917.415344px;}
.y9{bottom:917.988150px;}
.y150{bottom:918.783325px;}
.y73{bottom:919.665367px;}
.y17f{bottom:919.794342px;}
.ya7{bottom:920.985260px;}
.y136{bottom:920.985294px;}
.yda{bottom:920.985306px;}
.y1c1{bottom:920.988293px;}
.y26e{bottom:926.290823px;}
.y22c{bottom:926.411896px;}
.y2a4{bottom:926.609581px;}
.y1f3{bottom:928.562733px;}
.y3e{bottom:936.165344px;}
.y8{bottom:936.738150px;}
.y14f{bottom:937.533325px;}
.y72{bottom:938.415367px;}
.y17e{bottom:938.544342px;}
.ya6{bottom:939.735260px;}
.y135{bottom:939.735294px;}
.yd9{bottom:939.735306px;}
.y1c0{bottom:939.738293px;}
.y26d{bottom:941.284823px;}
.y22b{bottom:941.405896px;}
.y2a3{bottom:941.603581px;}
.y1f2{bottom:943.556733px;}
.y3d{bottom:954.915344px;}
.y26c{bottom:956.278823px;}
.y14e{bottom:956.283325px;}
.y22a{bottom:956.399896px;}
.y2a2{bottom:956.597581px;}
.y71{bottom:957.165367px;}
.y17d{bottom:957.294342px;}
.ya5{bottom:958.485260px;}
.y134{bottom:958.485294px;}
.yd8{bottom:958.485306px;}
.y1bf{bottom:958.488293px;}
.y1f1{bottom:958.550733px;}
.y26b{bottom:971.272823px;}
.y229{bottom:971.393896px;}
.y2a1{bottom:971.591581px;}
.y1f0{bottom:973.544733px;}
.y3c{bottom:973.665344px;}
.y14d{bottom:975.033325px;}
.y70{bottom:975.915367px;}
.y17c{bottom:976.044342px;}
.y110{bottom:977.229259px;}
.ya4{bottom:977.235260px;}
.y133{bottom:977.235294px;}
.yd7{bottom:977.235306px;}
.y1be{bottom:977.238293px;}
.y7{bottom:981.424650px;}
.y26a{bottom:986.266823px;}
.y228{bottom:986.387896px;}
.y2a0{bottom:986.585581px;}
.y1ef{bottom:988.538733px;}
.y3b{bottom:992.415344px;}
.y14c{bottom:993.783325px;}
.y6f{bottom:994.665367px;}
.y17b{bottom:994.794342px;}
.ya3{bottom:995.985260px;}
.y132{bottom:995.985294px;}
.yd6{bottom:995.985306px;}
.y1bd{bottom:995.988293px;}
.y269{bottom:1001.260823px;}
.y227{bottom:1001.381896px;}
.y29f{bottom:1001.579581px;}
.y1ee{bottom:1003.532733px;}
.y6{bottom:1008.424650px;}
.y3a{bottom:1011.165344px;}
.y14b{bottom:1012.533325px;}
.y6e{bottom:1013.415367px;}
.y17a{bottom:1013.544342px;}
.ya2{bottom:1014.735260px;}
.y131{bottom:1014.735294px;}
.yd5{bottom:1014.735306px;}
.y1bc{bottom:1014.738293px;}
.y268{bottom:1016.254823px;}
.y226{bottom:1016.375896px;}
.y29e{bottom:1016.573581px;}
.y1ed{bottom:1018.526733px;}
.y39{bottom:1029.915344px;}
.y267{bottom:1031.248823px;}
.y14a{bottom:1031.283325px;}
.y225{bottom:1031.369896px;}
.y29d{bottom:1031.567581px;}
.y6d{bottom:1032.165367px;}
.y179{bottom:1032.294342px;}
.ya1{bottom:1033.485260px;}
.y130{bottom:1033.485294px;}
.yd4{bottom:1033.485306px;}
.y1bb{bottom:1033.488293px;}
.y266{bottom:1046.242823px;}
.y224{bottom:1046.363896px;}
.y29c{bottom:1046.561581px;}
.y38{bottom:1048.665344px;}
.y1a5{bottom:1050.033325px;}
.y6c{bottom:1050.915367px;}
.y178{bottom:1051.044342px;}
.ya0{bottom:1052.235260px;}
.y12f{bottom:1052.235294px;}
.yd3{bottom:1052.235306px;}
.y1ba{bottom:1052.238293px;}
.y265{bottom:1061.236823px;}
.y223{bottom:1061.357896px;}
.y29b{bottom:1061.555581px;}
.y149{bottom:1068.777324px;}
.y6b{bottom:1069.665367px;}
.y9f{bottom:1070.985260px;}
.y12e{bottom:1070.985294px;}
.yd2{bottom:1070.985306px;}
.y1b9{bottom:1070.988293px;}
.y5{bottom:1076.132100px;}
.y264{bottom:1076.230823px;}
.y222{bottom:1076.351896px;}
.y29a{bottom:1076.549581px;}
.y37{bottom:1086.165344px;}
.y148{bottom:1087.533325px;}
.y6a{bottom:1088.415367px;}
.y177{bottom:1088.544342px;}
.y9e{bottom:1089.735260px;}
.y12d{bottom:1089.735294px;}
.yd1{bottom:1089.735306px;}
.y1b8{bottom:1089.738293px;}
.y263{bottom:1091.224823px;}
.y221{bottom:1091.345896px;}
.y299{bottom:1091.543581px;}
.y4{bottom:1109.586600px;}
.y3{bottom:1126.582350px;}
.y36{bottom:1127.482361px;}
.y9d{bottom:1127.482544px;}
.hd{height:25.204200px;}
.h2{height:33.024000px;}
.hc{height:36.006000px;}
.hb{height:36.855469px;}
.h10{height:39.818398px;}
.h9{height:42.360000px;}
.h4{height:44.676000px;}
.h11{height:45.186000px;}
.ha{height:53.160000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.hf{height:59.004000px;}
.h8{height:59.340000px;}
.h7{height:64.824000px;}
.he{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x8{left:78.746401px;}
.x4{left:85.181850px;}
.x9{left:93.545407px;}
.x5{left:97.789650px;}
.x33{left:102.048151px;}
.xd{left:108.308556px;}
.xe{left:133.799103px;}
.xf{left:161.887353px;}
.x10{left:176.881353px;}
.x11{left:191.875353px;}
.x12{left:206.869353px;}
.x13{left:221.863353px;}
.x14{left:236.857353px;}
.x15{left:251.851353px;}
.x16{left:266.845353px;}
.x17{left:281.839353px;}
.x18{left:296.833353px;}
.x19{left:311.776350px;}
.x1a{left:326.770350px;}
.x1b{left:341.764350px;}
.x1c{left:356.758350px;}
.x1d{left:371.752350px;}
.x1e{left:386.746350px;}
.x1f{left:401.740350px;}
.x6{left:459.212550px;}
.xa{left:476.225381px;}
.xc{left:478.984222px;}
.x7{left:480.466800px;}
.x34{left:484.726650px;}
.x2e{left:513.485687px;}
.x20{left:528.258602px;}
.x2f{left:538.976257px;}
.x21{left:553.976257px;}
.x30{left:567.064508px;}
.x22{left:582.064508px;}
.x23{left:597.058508px;}
.x24{left:612.052508px;}
.x25{left:627.046508px;}
.x26{left:642.040508px;}
.x27{left:657.034508px;}
.x28{left:672.028508px;}
.x29{left:687.022508px;}
.x2a{left:702.016508px;}
.x2b{left:716.959512px;}
.x1{left:723.900000px;}
.x2c{left:731.953512px;}
.x2d{left:746.947512px;}
.x2{left:755.489850px;}
.x31{left:761.910008px;}
.x32{left:804.265686px;}
.xb{left:810.321716px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v3{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls80{letter-spacing:-2.810667pt;}
.ls36{letter-spacing:-0.426667pt;}
.ls32{letter-spacing:-0.373333pt;}
.ls7e{letter-spacing:-0.362667pt;}
.ls35{letter-spacing:-0.320000pt;}
.ls6d{letter-spacing:-0.317333pt;}
.ls73{letter-spacing:-0.272000pt;}
.ls34{letter-spacing:-0.266667pt;}
.ls72{letter-spacing:-0.226667pt;}
.ls33{letter-spacing:-0.213333pt;}
.ls74{letter-spacing:-0.181333pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls7f{letter-spacing:-0.136000pt;}
.ls40{letter-spacing:-0.106667pt;}
.ls6e{letter-spacing:-0.090667pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls6f{letter-spacing:-0.045333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.022667pt;}
.ls3d{letter-spacing:0.026667pt;}
.ls57{letter-spacing:0.045333pt;}
.ls3e{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.080000pt;}
.ls51{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls7c{letter-spacing:0.113333pt;}
.ls31{letter-spacing:0.133333pt;}
.ls5e{letter-spacing:0.136000pt;}
.ls8{letter-spacing:0.158933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.226667pt;}
.ls6c{letter-spacing:0.249333pt;}
.ls3f{letter-spacing:0.250667pt;}
.ls59{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls50{letter-spacing:0.272000pt;}
.ls4d{letter-spacing:0.293333pt;}
.ls5b{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5a{letter-spacing:0.362667pt;}
.ls23{letter-spacing:0.373333pt;}
.ls7d{letter-spacing:0.385333pt;}
.ls44{letter-spacing:0.400000pt;}
.ls4e{letter-spacing:0.408000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.453333pt;}
.ls54{letter-spacing:0.476000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls6a{letter-spacing:0.498667pt;}
.ls39{letter-spacing:0.506667pt;}
.ls79{letter-spacing:0.521333pt;}
.ls25{letter-spacing:0.533333pt;}
.ls4f{letter-spacing:0.544000pt;}
.ls4c{letter-spacing:0.560000pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls53{letter-spacing:0.589333pt;}
.ls78{letter-spacing:0.612000pt;}
.ls55{letter-spacing:0.634667pt;}
.ls29{letter-spacing:0.640000pt;}
.ls58{letter-spacing:0.657333pt;}
.ls52{letter-spacing:0.680000pt;}
.ls20{letter-spacing:0.693333pt;}
.ls43{letter-spacing:0.720000pt;}
.ls5d{letter-spacing:0.725333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls77{letter-spacing:0.770667pt;}
.ls42{letter-spacing:0.773333pt;}
.ls6b{letter-spacing:0.793333pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls75{letter-spacing:0.816000pt;}
.ls2f{letter-spacing:0.826667pt;}
.ls5c{letter-spacing:0.838667pt;}
.ls2a{letter-spacing:0.853333pt;}
.ls62{letter-spacing:0.861333pt;}
.ls24{letter-spacing:0.880000pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.013333pt;}
.ls2e{letter-spacing:1.040000pt;}
.ls67{letter-spacing:1.042667pt;}
.ls30{letter-spacing:1.066667pt;}
.ls7a{letter-spacing:1.088000pt;}
.ls15{letter-spacing:1.093333pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls5f{letter-spacing:1.133333pt;}
.ls4b{letter-spacing:1.146667pt;}
.ls66{letter-spacing:1.156000pt;}
.ls14{letter-spacing:1.173333pt;}
.ls70{letter-spacing:1.178667pt;}
.ls1a{letter-spacing:1.200000pt;}
.ls69{letter-spacing:1.224000pt;}
.lse{letter-spacing:1.226667pt;}
.ls63{letter-spacing:1.269333pt;}
.ls27{letter-spacing:1.280000pt;}
.ls49{letter-spacing:1.306667pt;}
.ls65{letter-spacing:1.314667pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls19{letter-spacing:1.360000pt;}
.ls12{letter-spacing:1.386667pt;}
.ls60{letter-spacing:1.405333pt;}
.ls41{letter-spacing:1.440000pt;}
.ls56{letter-spacing:1.450667pt;}
.ls48{letter-spacing:1.466667pt;}
.lsc{letter-spacing:1.493333pt;}
.ls76{letter-spacing:1.496000pt;}
.ls4a{letter-spacing:1.520000pt;}
.ls64{letter-spacing:1.541333pt;}
.ls26{letter-spacing:1.546667pt;}
.ls1f{letter-spacing:1.600000pt;}
.ls1e{letter-spacing:1.653333pt;}
.ls21{letter-spacing:1.706667pt;}
.ls16{letter-spacing:1.760000pt;}
.ls71{letter-spacing:1.768000pt;}
.ls10{letter-spacing:1.813333pt;}
.ls13{letter-spacing:1.866667pt;}
.ls28{letter-spacing:1.920000pt;}
.ls47{letter-spacing:1.973333pt;}
.ls45{letter-spacing:2.026667pt;}
.lsd{letter-spacing:2.080000pt;}
.lsf{letter-spacing:2.133333pt;}
.ls68{letter-spacing:2.176000pt;}
.ls18{letter-spacing:2.186667pt;}
.ls46{letter-spacing:2.560000pt;}
.ls7b{letter-spacing:2.584000pt;}
.ls38{letter-spacing:3.360000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls7{letter-spacing:27.653333pt;}
.ws80{word-spacing:-15.360000pt;}
.ws78{word-spacing:-14.666667pt;}
.ws81{word-spacing:-14.346667pt;}
.ws63{word-spacing:-14.293333pt;}
.ws82{word-spacing:-14.240000pt;}
.ws16{word-spacing:-14.133333pt;}
.ws62{word-spacing:-14.106667pt;}
.ws2{word-spacing:-14.034667pt;}
.ws72{word-spacing:-13.760000pt;}
.ws45{word-spacing:-13.706667pt;}
.ws6{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.333333pt;}
.ws8f{word-spacing:-13.184000pt;}
.ws18{word-spacing:-13.013333pt;}
.ws15{word-spacing:-12.928000pt;}
.ws8e{word-spacing:-11.786667pt;}
.ws90{word-spacing:-11.560000pt;}
.ws8{word-spacing:-11.333333pt;}
.ws64{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws7{word-spacing:-10.240000pt;}
.ws8d{word-spacing:-9.180000pt;}
.ws8c{word-spacing:-9.112000pt;}
.ws1{word-spacing:-8.885333pt;}
.wsbe{word-spacing:-8.522667pt;}
.ws9{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws1c{word-spacing:-1.813333pt;}
.wsa{word-spacing:-1.680000pt;}
.ws7c{word-spacing:-1.493333pt;}
.ws67{word-spacing:-1.386667pt;}
.wsc{word-spacing:-1.333333pt;}
.ws86{word-spacing:-1.280000pt;}
.ws5e{word-spacing:-1.226667pt;}
.ws4c{word-spacing:-1.173333pt;}
.ws93{word-spacing:-1.133333pt;}
.ws52{word-spacing:-1.120000pt;}
.wscc{word-spacing:-1.088000pt;}
.ws68{word-spacing:-1.066667pt;}
.ws22{word-spacing:-1.013333pt;}
.wsc2{word-spacing:-0.997333pt;}
.ws53{word-spacing:-0.960000pt;}
.wsa0{word-spacing:-0.952000pt;}
.ws46{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.861333pt;}
.ws6e{word-spacing:-0.853333pt;}
.ws9b{word-spacing:-0.816000pt;}
.ws2b{word-spacing:-0.800000pt;}
.wsc3{word-spacing:-0.770667pt;}
.ws48{word-spacing:-0.746667pt;}
.wsc6{word-spacing:-0.725333pt;}
.ws23{word-spacing:-0.693333pt;}
.ws25{word-spacing:-0.640000pt;}
.wsbd{word-spacing:-0.634667pt;}
.wsb9{word-spacing:-0.589333pt;}
.ws14{word-spacing:-0.544000pt;}
.ws7b{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.498667pt;}
.ws12{word-spacing:-0.480000pt;}
.wsbf{word-spacing:-0.453333pt;}
.ws5c{word-spacing:-0.426667pt;}
.wsa9{word-spacing:-0.408000pt;}
.ws55{word-spacing:-0.373333pt;}
.wsaa{word-spacing:-0.362667pt;}
.wsd{word-spacing:-0.320000pt;}
.wsb5{word-spacing:-0.317333pt;}
.ws13{word-spacing:-0.266667pt;}
.ws58{word-spacing:-0.250667pt;}
.wsa6{word-spacing:-0.226667pt;}
.ws6b{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.160000pt;}
.wsbc{word-spacing:-0.136000pt;}
.ws28{word-spacing:-0.106667pt;}
.wsc7{word-spacing:-0.090667pt;}
.ws47{word-spacing:-0.053333pt;}
.ws59{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.wsab{word-spacing:0.045333pt;}
.ws31{word-spacing:0.053333pt;}
.ws40{word-spacing:0.106667pt;}
.wsca{word-spacing:0.181333pt;}
.ws36{word-spacing:0.213333pt;}
.wsae{word-spacing:0.226667pt;}
.wsf{word-spacing:0.266667pt;}
.ws3f{word-spacing:0.320000pt;}
.ws66{word-spacing:0.373333pt;}
.ws9d{word-spacing:0.408000pt;}
.ws44{word-spacing:0.426667pt;}
.wsc4{word-spacing:0.453333pt;}
.wsbb{word-spacing:0.498667pt;}
.ws77{word-spacing:0.533333pt;}
.wsa4{word-spacing:0.544000pt;}
.ws57{word-spacing:0.586667pt;}
.wsc9{word-spacing:0.634667pt;}
.ws50{word-spacing:0.640000pt;}
.ws6a{word-spacing:0.693333pt;}
.ws49{word-spacing:0.746667pt;}
.ws1e{word-spacing:0.853333pt;}
.ws96{word-spacing:0.906667pt;}
.ws97{word-spacing:0.952000pt;}
.ws7f{word-spacing:0.960000pt;}
.wsb0{word-spacing:0.997333pt;}
.ws10{word-spacing:1.013333pt;}
.wsa1{word-spacing:1.042667pt;}
.ws5d{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.ws92{word-spacing:1.133333pt;}
.ws61{word-spacing:1.173333pt;}
.ws95{word-spacing:1.224000pt;}
.ws75{word-spacing:1.226667pt;}
.wscb{word-spacing:1.269333pt;}
.ws85{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.314667pt;}
.wse{word-spacing:1.333333pt;}
.wsad{word-spacing:1.360000pt;}
.ws3e{word-spacing:1.386667pt;}
.ws98{word-spacing:1.405333pt;}
.ws3b{word-spacing:1.440000pt;}
.wsa2{word-spacing:1.450667pt;}
.ws41{word-spacing:1.493333pt;}
.ws9e{word-spacing:1.541333pt;}
.ws6f{word-spacing:1.546667pt;}
.wsb1{word-spacing:1.586667pt;}
.ws42{word-spacing:1.600000pt;}
.ws94{word-spacing:1.632000pt;}
.ws4b{word-spacing:1.653333pt;}
.ws2a{word-spacing:1.706667pt;}
.wsc5{word-spacing:1.722667pt;}
.ws19{word-spacing:1.760000pt;}
.ws29{word-spacing:1.813333pt;}
.wsb3{word-spacing:1.858667pt;}
.ws33{word-spacing:1.866667pt;}
.wsb8{word-spacing:1.904000pt;}
.ws32{word-spacing:1.920000pt;}
.ws37{word-spacing:1.973333pt;}
.wsa3{word-spacing:1.994667pt;}
.ws7d{word-spacing:2.026667pt;}
.wscd{word-spacing:2.040000pt;}
.ws38{word-spacing:2.080000pt;}
.wsd1{word-spacing:2.085333pt;}
.ws3d{word-spacing:2.133333pt;}
.wsd3{word-spacing:2.176000pt;}
.ws2d{word-spacing:2.186667pt;}
.wsb7{word-spacing:2.221333pt;}
.ws39{word-spacing:2.240000pt;}
.ws5b{word-spacing:2.293333pt;}
.ws65{word-spacing:2.346667pt;}
.ws43{word-spacing:2.400000pt;}
.wsc0{word-spacing:2.402667pt;}
.ws9f{word-spacing:2.448000pt;}
.ws7a{word-spacing:2.453333pt;}
.ws2c{word-spacing:2.506667pt;}
.ws60{word-spacing:2.560000pt;}
.ws4d{word-spacing:2.613333pt;}
.ws2e{word-spacing:2.666667pt;}
.wsb6{word-spacing:2.674667pt;}
.ws54{word-spacing:2.720000pt;}
.ws6d{word-spacing:2.773333pt;}
.wsce{word-spacing:2.810667pt;}
.ws4e{word-spacing:2.826667pt;}
.wsaf{word-spacing:2.856000pt;}
.ws8a{word-spacing:2.880000pt;}
.ws9a{word-spacing:2.901333pt;}
.ws35{word-spacing:2.933333pt;}
.ws24{word-spacing:2.986667pt;}
.ws74{word-spacing:3.040000pt;}
.ws20{word-spacing:3.146667pt;}
.ws3a{word-spacing:3.200000pt;}
.ws6c{word-spacing:3.253333pt;}
.ws2f{word-spacing:3.306667pt;}
.ws1d{word-spacing:3.360000pt;}
.ws27{word-spacing:3.413333pt;}
.ws1f{word-spacing:3.466667pt;}
.ws71{word-spacing:3.520000pt;}
.wsd4{word-spacing:3.536000pt;}
.ws76{word-spacing:3.573333pt;}
.ws51{word-spacing:3.626667pt;}
.wsd2{word-spacing:3.717333pt;}
.ws5f{word-spacing:3.733333pt;}
.ws88{word-spacing:3.786667pt;}
.wsc8{word-spacing:3.808000pt;}
.wsac{word-spacing:3.853333pt;}
.ws3c{word-spacing:3.893333pt;}
.wsa5{word-spacing:3.944000pt;}
.ws34{word-spacing:4.000000pt;}
.ws87{word-spacing:4.053333pt;}
.wsa7{word-spacing:4.080000pt;}
.ws91{word-spacing:4.106667pt;}
.wsd0{word-spacing:4.125333pt;}
.ws83{word-spacing:4.320000pt;}
.ws73{word-spacing:4.480000pt;}
.ws89{word-spacing:4.640000pt;}
.ws1a{word-spacing:4.746667pt;}
.ws30{word-spacing:4.800000pt;}
.ws8b{word-spacing:4.853333pt;}
.ws7e{word-spacing:4.906667pt;}
.ws4f{word-spacing:4.960000pt;}
.ws1b{word-spacing:5.013333pt;}
.ws69{word-spacing:5.066667pt;}
.ws26{word-spacing:5.120000pt;}
.ws84{word-spacing:5.173333pt;}
.wsa8{word-spacing:5.349333pt;}
.ws99{word-spacing:5.485333pt;}
.ws56{word-spacing:5.546667pt;}
.ws79{word-spacing:5.600000pt;}
.ws5a{word-spacing:5.760000pt;}
.wsc1{word-spacing:5.848000pt;}
.wsb2{word-spacing:6.074667pt;}
.ws70{word-spacing:7.040000pt;}
.wscf{word-spacing:11.197333pt;}
.ws4a{word-spacing:14.880001pt;}
._d{margin-left:-2630.557249pt;}
._16{margin-left:-43.066667pt;}
._8{margin-left:-21.533333pt;}
._5{margin-left:-14.733333pt;}
._b{margin-left:-9.759998pt;}
._e{margin-left:-5.920000pt;}
._f{margin-left:-4.615999pt;}
._0{margin-left:-3.200000pt;}
._3{margin-left:-1.996800pt;}
._1{margin-left:-1.042667pt;}
._4{width:0.908800pt;}
._2{width:1.868800pt;}
._c{width:3.130667pt;}
._a{width:5.173331pt;}
._17{width:9.746670pt;}
._18{width:12.466663pt;}
._11{width:14.483466pt;}
._10{width:31.295585pt;}
._7{width:32.504000pt;}
._6{width:48.552000pt;}
._13{width:771.210653pt;}
._12{width:834.450664pt;}
._15{width:835.946707pt;}
._14{width:838.394659pt;}
._9{width:1656.661409pt;}
.fs7{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fsa{font-size:50.133331pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181333pt;}
.y103{bottom:100.384246pt;}
.y109{bottom:100.384265pt;}
.y102{bottom:100.384267pt;}
.y10a{bottom:100.384289pt;}
.y29{bottom:100.389600pt;}
.y9c{bottom:100.813599pt;}
.y101{bottom:101.986796pt;}
.y11b{bottom:101.986898pt;}
.y12c{bottom:101.986928pt;}
.yd0{bottom:101.986938pt;}
.y1ec{bottom:101.989593pt;}
.y262{bottom:103.765241pt;}
.y35{bottom:104.860667pt;}
.y104{bottom:108.385578pt;}
.y11c{bottom:108.385600pt;}
.y10b{bottom:108.385622pt;}
.y69{bottom:115.480306pt;}
.y1b7{bottom:116.696269pt;}
.y261{bottom:117.093241pt;}
.y9b{bottom:117.480265pt;}
.y28{bottom:118.250933pt;}
.y100{bottom:118.653463pt;}
.y11a{bottom:118.653564pt;}
.y12b{bottom:118.653595pt;}
.ycf{bottom:118.653605pt;}
.y1eb{bottom:118.656260pt;}
.y34{bottom:124.902667pt;}
.y260{bottom:130.421241pt;}
.y68{bottom:132.146973pt;}
.y176{bottom:133.362915pt;}
.y1b6{bottom:133.362935pt;}
.y27{bottom:133.764933pt;}
.y9a{bottom:134.146932pt;}
.yff{bottom:135.320129pt;}
.y119{bottom:135.320231pt;}
.y12a{bottom:135.320262pt;}
.yce{bottom:135.320272pt;}
.y1ea{bottom:135.322927pt;}
.y220{bottom:138.875875pt;}
.y25f{bottom:143.749241pt;}
.y33{bottom:144.944667pt;}
.y67{bottom:148.813639pt;}
.y175{bottom:150.029582pt;}
.y1b5{bottom:150.029602pt;}
.y99{bottom:150.813599pt;}
.y1a4{bottom:150.928304pt;}
.y26{bottom:151.626267pt;}
.y118{bottom:151.986898pt;}
.y129{bottom:151.986928pt;}
.ycd{bottom:151.986938pt;}
.y1e9{bottom:151.989593pt;}
.y21f{bottom:152.203875pt;}
.y25e{bottom:157.077241pt;}
.y32{bottom:164.986667pt;}
.y66{bottom:165.480306pt;}
.y21e{bottom:165.531875pt;}
.y174{bottom:166.696248pt;}
.y1b4{bottom:166.696269pt;}
.y25{bottom:167.140267pt;}
.y98{bottom:167.480265pt;}
.y1a3{bottom:167.594971pt;}
.yfe{bottom:168.653463pt;}
.y117{bottom:168.653564pt;}
.y128{bottom:168.653595pt;}
.ycc{bottom:168.653605pt;}
.y1e8{bottom:168.656260pt;}
.y25d{bottom:170.405241pt;}
.y21d{bottom:178.859875pt;}
.y31{bottom:180.506000pt;}
.y65{bottom:182.146973pt;}
.y173{bottom:183.362915pt;}
.y1b3{bottom:183.362935pt;}
.y25c{bottom:183.733241pt;}
.y97{bottom:184.146932pt;}
.y1a2{bottom:184.261637pt;}
.y24{bottom:185.001600pt;}
.yfd{bottom:185.320129pt;}
.y116{bottom:185.320231pt;}
.ycb{bottom:185.320272pt;}
.y1e7{bottom:185.322927pt;}
.y21c{bottom:192.187875pt;}
.y30{bottom:193.834000pt;}
.y25b{bottom:197.061241pt;}
.y64{bottom:198.813639pt;}
.y172{bottom:200.029582pt;}
.y1b2{bottom:200.029602pt;}
.y96{bottom:200.813599pt;}
.y1a1{bottom:200.928304pt;}
.y115{bottom:201.986898pt;}
.yca{bottom:201.986938pt;}
.y1e6{bottom:201.989593pt;}
.yfc{bottom:202.786804pt;}
.y23{bottom:205.043600pt;}
.y21b{bottom:205.515875pt;}
.y25a{bottom:210.389241pt;}
.y2f{bottom:211.695333pt;}
.y63{bottom:215.480306pt;}
.y171{bottom:216.696248pt;}
.y1b1{bottom:216.696269pt;}
.y95{bottom:217.480265pt;}
.y1a0{bottom:217.594971pt;}
.yfb{bottom:218.653463pt;}
.y114{bottom:218.653564pt;}
.yc9{bottom:218.653605pt;}
.y1e5{bottom:218.656260pt;}
.y21a{bottom:218.843875pt;}
.y259{bottom:223.717241pt;}
.y22{bottom:225.085600pt;}
.y2e{bottom:231.737333pt;}
.y62{bottom:232.146973pt;}
.y219{bottom:232.171875pt;}
.y170{bottom:233.362915pt;}
.y94{bottom:234.146932pt;}
.y19f{bottom:234.261637pt;}
.yfa{bottom:235.320129pt;}
.y113{bottom:235.320231pt;}
.y127{bottom:235.320272pt;}
.y1e4{bottom:235.322927pt;}
.y258{bottom:237.045241pt;}
.y21{bottom:240.599600pt;}
.y218{bottom:245.499875pt;}
.y2d{bottom:247.251333pt;}
.y61{bottom:248.813639pt;}
.y16f{bottom:250.029582pt;}
.y1b0{bottom:250.029602pt;}
.y257{bottom:250.373241pt;}
.y93{bottom:250.813599pt;}
.y19e{bottom:250.928304pt;}
.y112{bottom:251.986898pt;}
.yc8{bottom:251.986938pt;}
.y1e3{bottom:251.989593pt;}
.yf9{bottom:252.786804pt;}
.y20{bottom:258.460933pt;}
.y217{bottom:258.827875pt;}
.y298{bottom:263.593620pt;}
.y256{bottom:263.701241pt;}
.y2c{bottom:265.112667pt;}
.y60{bottom:265.480306pt;}
.y16e{bottom:266.696248pt;}
.y92{bottom:267.480265pt;}
.y19d{bottom:267.594971pt;}
.yf8{bottom:268.653463pt;}
.y111{bottom:268.653564pt;}
.y126{bottom:268.653605pt;}
.y1e2{bottom:268.656260pt;}
.y216{bottom:272.155875pt;}
.y297{bottom:276.921620pt;}
.y255{bottom:277.029241pt;}
.y2cd{bottom:277.204961pt;}
.y2b{bottom:280.626667pt;}
.y1f{bottom:280.683600pt;}
.y5f{bottom:282.146973pt;}
.y16d{bottom:283.362915pt;}
.y91{bottom:284.146932pt;}
.y19c{bottom:284.261637pt;}
.yf7{bottom:285.320129pt;}
.yc7{bottom:285.320231pt;}
.y125{bottom:285.320272pt;}
.y1e1{bottom:285.322927pt;}
.y215{bottom:285.483875pt;}
.y296{bottom:290.249620pt;}
.y254{bottom:290.357241pt;}
.y2cc{bottom:290.532961pt;}
.y1e{bottom:294.011600pt;}
.y2a{bottom:298.488000pt;}
.y214{bottom:298.811875pt;}
.y5e{bottom:298.813639pt;}
.y16c{bottom:300.029582pt;}
.y90{bottom:300.813599pt;}
.y19b{bottom:300.928304pt;}
.yc6{bottom:301.986898pt;}
.y124{bottom:301.986938pt;}
.y1e0{bottom:301.989593pt;}
.yf6{bottom:302.786804pt;}
.y295{bottom:303.577620pt;}
.y253{bottom:303.685241pt;}
.y2cb{bottom:303.860961pt;}
.y213{bottom:312.139875pt;}
.y5d{bottom:315.480306pt;}
.y16b{bottom:316.696248pt;}
.y1af{bottom:316.696289pt;}
.y294{bottom:316.905620pt;}
.y252{bottom:317.013241pt;}
.y2ca{bottom:317.188961pt;}
.y8f{bottom:317.480265pt;}
.y19a{bottom:317.594971pt;}
.yc5{bottom:318.653564pt;}
.y123{bottom:318.653605pt;}
.y1df{bottom:318.656260pt;}
.y212{bottom:325.467875pt;}
.y293{bottom:330.233620pt;}
.y251{bottom:330.341241pt;}
.y2c9{bottom:330.516961pt;}
.y5c{bottom:332.146973pt;}
.y16a{bottom:333.362915pt;}
.y1ae{bottom:333.362956pt;}
.y8e{bottom:334.146932pt;}
.y199{bottom:334.261637pt;}
.yc4{bottom:335.320231pt;}
.yf5{bottom:335.320272pt;}
.y1de{bottom:335.322927pt;}
.y147{bottom:335.325605pt;}
.y211{bottom:338.795875pt;}
.y292{bottom:343.561620pt;}
.y250{bottom:343.669241pt;}
.y2c8{bottom:343.844961pt;}
.y5b{bottom:348.813639pt;}
.y169{bottom:350.029582pt;}
.y1ad{bottom:350.029622pt;}
.y8d{bottom:350.813599pt;}
.y198{bottom:350.928304pt;}
.yc3{bottom:351.986898pt;}
.yf4{bottom:351.986938pt;}
.y1dd{bottom:351.989593pt;}
.y210{bottom:352.123875pt;}
.y291{bottom:356.889620pt;}
.y24f{bottom:356.997241pt;}
.y2c7{bottom:357.172961pt;}
.y20f{bottom:365.451875pt;}
.y5a{bottom:365.480306pt;}
.y168{bottom:366.696248pt;}
.y1ac{bottom:366.696289pt;}
.y8c{bottom:367.480265pt;}
.y197{bottom:367.594971pt;}
.yc2{bottom:368.653564pt;}
.yf3{bottom:368.653605pt;}
.y1dc{bottom:368.656260pt;}
.y290{bottom:370.217620pt;}
.y24e{bottom:370.325241pt;}
.y2c6{bottom:370.500961pt;}
.y20e{bottom:378.779875pt;}
.y59{bottom:382.146973pt;}
.y167{bottom:383.362915pt;}
.y1ab{bottom:383.362956pt;}
.y28f{bottom:383.545620pt;}
.y24d{bottom:383.653241pt;}
.y2c5{bottom:383.828961pt;}
.y8b{bottom:384.146932pt;}
.y196{bottom:384.261637pt;}
.yc1{bottom:385.320231pt;}
.yf2{bottom:385.320272pt;}
.y1db{bottom:385.322927pt;}
.y20d{bottom:392.107875pt;}
.y105{bottom:393.044918pt;}
.y11d{bottom:393.430256pt;}
.y10c{bottom:394.030961pt;}
.y28e{bottom:396.873620pt;}
.y24c{bottom:396.981241pt;}
.y2c4{bottom:397.156961pt;}
.y58{bottom:398.813639pt;}
.y166{bottom:400.029582pt;}
.y1aa{bottom:400.029622pt;}
.y195{bottom:400.928304pt;}
.y106{bottom:401.046251pt;}
.y11e{bottom:401.431589pt;}
.yc0{bottom:401.986898pt;}
.yf1{bottom:401.986938pt;}
.y1da{bottom:401.989593pt;}
.y10d{bottom:402.032294pt;}
.y20c{bottom:405.435875pt;}
.y28d{bottom:410.201620pt;}
.y24b{bottom:410.309241pt;}
.y2c3{bottom:410.484961pt;}
.y57{bottom:415.480306pt;}
.y1a9{bottom:416.696289pt;}
.y8a{bottom:417.480265pt;}
.y194{bottom:417.594971pt;}
.ybf{bottom:418.653564pt;}
.yf0{bottom:418.653605pt;}
.y1d9{bottom:418.656260pt;}
.y20b{bottom:418.763875pt;}
.y28c{bottom:423.529620pt;}
.y24a{bottom:423.637241pt;}
.y2c2{bottom:423.812961pt;}
.y1d{bottom:425.521200pt;}
.y56{bottom:432.146973pt;}
.y165{bottom:433.362915pt;}
.y1a8{bottom:433.362956pt;}
.y193{bottom:434.261637pt;}
.ybe{bottom:435.320231pt;}
.yef{bottom:435.320272pt;}
.y1d8{bottom:435.322927pt;}
.y28b{bottom:436.857620pt;}
.y249{bottom:436.965241pt;}
.y2c1{bottom:437.140961pt;}
.y20a{bottom:448.763875pt;}
.y55{bottom:448.813639pt;}
.y1a7{bottom:450.029622pt;}
.y28a{bottom:450.185620pt;}
.y248{bottom:450.293241pt;}
.y2c0{bottom:450.468961pt;}
.y89{bottom:450.813660pt;}
.y192{bottom:450.928304pt;}
.ybd{bottom:451.986898pt;}
.yee{bottom:451.986938pt;}
.y1d7{bottom:451.989593pt;}
.y1c{bottom:458.854533pt;}
.y289{bottom:463.513620pt;}
.y247{bottom:463.621241pt;}
.y2bf{bottom:463.796961pt;}
.y54{bottom:465.480306pt;}
.y1a6{bottom:466.696289pt;}
.y88{bottom:467.480326pt;}
.y191{bottom:467.594971pt;}
.ybc{bottom:468.653564pt;}
.y122{bottom:468.653605pt;}
.y1d6{bottom:468.656260pt;}
.y1b{bottom:475.521200pt;}
.y288{bottom:476.841620pt;}
.y246{bottom:476.949241pt;}
.y2be{bottom:477.124961pt;}
.y53{bottom:482.146973pt;}
.y164{bottom:483.362956pt;}
.y87{bottom:484.146993pt;}
.y190{bottom:484.261637pt;}
.ybb{bottom:485.320231pt;}
.yed{bottom:485.320272pt;}
.y1d5{bottom:485.322927pt;}
.y287{bottom:490.169620pt;}
.y245{bottom:490.277241pt;}
.y2bd{bottom:490.452961pt;}
.y1a{bottom:492.187867pt;}
.y52{bottom:498.813639pt;}
.y209{bottom:498.898429pt;}
.y163{bottom:500.029622pt;}
.y86{bottom:500.813660pt;}
.y18f{bottom:500.928304pt;}
.yba{bottom:501.986898pt;}
.yec{bottom:501.986938pt;}
.y1d4{bottom:501.989593pt;}
.y286{bottom:503.497620pt;}
.y244{bottom:503.605241pt;}
.y2bc{bottom:503.780961pt;}
.y19{bottom:508.854533pt;}
.y208{bottom:512.226429pt;}
.y51{bottom:515.480306pt;}
.y162{bottom:516.696289pt;}
.y285{bottom:516.825620pt;}
.y243{bottom:516.933241pt;}
.y2bb{bottom:517.108961pt;}
.y85{bottom:517.480326pt;}
.y18e{bottom:517.594971pt;}
.yb9{bottom:518.653564pt;}
.yeb{bottom:518.653605pt;}
.y1d3{bottom:518.656260pt;}
.y146{bottom:518.658938pt;}
.y18{bottom:525.521200pt;}
.y207{bottom:525.554429pt;}
.y284{bottom:530.153620pt;}
.y242{bottom:530.261241pt;}
.y2ba{bottom:530.436961pt;}
.y50{bottom:532.146973pt;}
.y161{bottom:533.362956pt;}
.y84{bottom:534.146993pt;}
.y18d{bottom:534.261637pt;}
.yb8{bottom:535.320231pt;}
.y121{bottom:535.320272pt;}
.y1d2{bottom:535.322927pt;}
.y206{bottom:538.882429pt;}
.y17{bottom:542.187867pt;}
.y283{bottom:543.481620pt;}
.y241{bottom:543.589241pt;}
.y2b9{bottom:543.764961pt;}
.y4f{bottom:548.813639pt;}
.y160{bottom:550.029622pt;}
.y83{bottom:550.813660pt;}
.y18c{bottom:550.928304pt;}
.yb7{bottom:551.986898pt;}
.yea{bottom:551.986938pt;}
.y1d1{bottom:551.989593pt;}
.y205{bottom:552.210429pt;}
.y282{bottom:556.809620pt;}
.y240{bottom:556.917241pt;}
.y2b8{bottom:557.092961pt;}
.y16{bottom:558.854533pt;}
.y4e{bottom:565.480306pt;}
.y204{bottom:565.538429pt;}
.y15f{bottom:566.696289pt;}
.y82{bottom:567.480326pt;}
.y18b{bottom:567.594971pt;}
.yb6{bottom:568.653564pt;}
.y145{bottom:568.653595pt;}
.ye9{bottom:568.653605pt;}
.y1d0{bottom:568.656260pt;}
.y281{bottom:570.137620pt;}
.y23f{bottom:570.245241pt;}
.y2b7{bottom:570.420961pt;}
.y15{bottom:575.521200pt;}
.y4d{bottom:582.146973pt;}
.y15e{bottom:583.362956pt;}
.y280{bottom:583.465620pt;}
.y23e{bottom:583.573241pt;}
.y2b6{bottom:583.748961pt;}
.y81{bottom:584.146993pt;}
.y18a{bottom:584.261637pt;}
.yb5{bottom:585.320231pt;}
.y144{bottom:585.320262pt;}
.ye8{bottom:585.320272pt;}
.y1cf{bottom:585.322927pt;}
.y14{bottom:592.187867pt;}
.y203{bottom:595.503763pt;}
.y27f{bottom:596.793620pt;}
.y23d{bottom:596.901241pt;}
.y2b5{bottom:597.076961pt;}
.y4c{bottom:598.813639pt;}
.y15d{bottom:600.029622pt;}
.y80{bottom:600.813660pt;}
.y189{bottom:600.928304pt;}
.yb4{bottom:601.986898pt;}
.y143{bottom:601.986928pt;}
.ye7{bottom:601.986938pt;}
.y1ce{bottom:601.989593pt;}
.y202{bottom:608.831763pt;}
.y13{bottom:608.854533pt;}
.y27e{bottom:610.121620pt;}
.y23c{bottom:610.229241pt;}
.y2b4{bottom:610.404961pt;}
.y4b{bottom:615.480306pt;}
.y15c{bottom:616.696289pt;}
.y7f{bottom:617.480326pt;}
.y188{bottom:617.594971pt;}
.yb3{bottom:618.653564pt;}
.y142{bottom:618.653595pt;}
.ye6{bottom:618.653605pt;}
.y1cd{bottom:618.656260pt;}
.y201{bottom:622.159763pt;}
.y27d{bottom:623.449620pt;}
.y23b{bottom:623.557241pt;}
.y2b3{bottom:623.732961pt;}
.y12{bottom:625.521200pt;}
.y4a{bottom:632.146973pt;}
.y15b{bottom:633.362956pt;}
.y7e{bottom:634.146993pt;}
.y187{bottom:634.261637pt;}
.yb2{bottom:635.320231pt;}
.y141{bottom:635.320262pt;}
.ye5{bottom:635.320272pt;}
.y1cc{bottom:635.322927pt;}
.y200{bottom:635.487763pt;}
.y27c{bottom:636.777620pt;}
.y23a{bottom:636.885241pt;}
.y2b2{bottom:637.060961pt;}
.y11{bottom:642.187867pt;}
.y49{bottom:648.813639pt;}
.y1ff{bottom:648.815763pt;}
.y15a{bottom:650.029622pt;}
.y27b{bottom:650.105620pt;}
.y239{bottom:650.213241pt;}
.y2b1{bottom:650.388961pt;}
.y7d{bottom:650.813660pt;}
.y186{bottom:650.928304pt;}
.yb1{bottom:651.986898pt;}
.y140{bottom:651.986928pt;}
.ye4{bottom:651.986938pt;}
.y1cb{bottom:651.989593pt;}
.y10{bottom:658.854533pt;}
.y1fe{bottom:662.143763pt;}
.y27a{bottom:663.433620pt;}
.y238{bottom:663.541241pt;}
.y2b0{bottom:663.716961pt;}
.y48{bottom:665.480306pt;}
.y159{bottom:666.696289pt;}
.y7c{bottom:667.480326pt;}
.y185{bottom:667.594971pt;}
.yb0{bottom:668.653564pt;}
.y13f{bottom:668.653595pt;}
.ye3{bottom:668.653605pt;}
.y1ca{bottom:668.656260pt;}
.y1fd{bottom:675.471763pt;}
.yf{bottom:675.521200pt;}
.y279{bottom:676.761620pt;}
.y237{bottom:676.869241pt;}
.y2af{bottom:677.044961pt;}
.y47{bottom:682.146973pt;}
.y158{bottom:683.362956pt;}
.y7b{bottom:684.146993pt;}
.y184{bottom:684.261637pt;}
.yaf{bottom:685.320231pt;}
.y13e{bottom:685.320262pt;}
.ye2{bottom:685.320272pt;}
.y1c9{bottom:685.322927pt;}
.y107{bottom:685.671588pt;}
.y11f{bottom:685.852930pt;}
.y10e{bottom:686.442286pt;}
.y278{bottom:690.089620pt;}
.y236{bottom:690.197241pt;}
.y2ae{bottom:690.372961pt;}
.ye{bottom:692.187867pt;}
.y108{bottom:693.672921pt;}
.y120{bottom:693.854263pt;}
.y10f{bottom:694.443619pt;}
.y46{bottom:698.813639pt;}
.y157{bottom:700.029622pt;}
.y7a{bottom:700.813660pt;}
.yae{bottom:701.986898pt;}
.y13d{bottom:701.986928pt;}
.ye1{bottom:701.986938pt;}
.y1c8{bottom:701.989593pt;}
.y277{bottom:703.417620pt;}
.y235{bottom:703.525241pt;}
.y2ad{bottom:703.700961pt;}
.y1fc{bottom:705.437096pt;}
.yd{bottom:708.854533pt;}
.y45{bottom:715.480306pt;}
.y156{bottom:716.696289pt;}
.y276{bottom:716.745620pt;}
.y234{bottom:716.853241pt;}
.y2ac{bottom:717.028961pt;}
.y79{bottom:717.480326pt;}
.y183{bottom:717.600304pt;}
.yad{bottom:718.653564pt;}
.y13c{bottom:718.653595pt;}
.ye0{bottom:718.653605pt;}
.y1c7{bottom:718.656260pt;}
.y1fb{bottom:718.765096pt;}
.yc{bottom:725.521200pt;}
.y275{bottom:730.073620pt;}
.y233{bottom:730.181241pt;}
.y2ab{bottom:730.356961pt;}
.y1fa{bottom:732.093096pt;}
.y44{bottom:732.146973pt;}
.y155{bottom:733.362956pt;}
.y78{bottom:734.146993pt;}
.y182{bottom:734.261637pt;}
.yac{bottom:735.320231pt;}
.y13b{bottom:735.320262pt;}
.ydf{bottom:735.320272pt;}
.y1c6{bottom:735.322927pt;}
.y274{bottom:743.401620pt;}
.y232{bottom:743.509241pt;}
.y2aa{bottom:743.684961pt;}
.y1f9{bottom:745.421096pt;}
.y43{bottom:748.813639pt;}
.y154{bottom:750.029622pt;}
.y77{bottom:750.813660pt;}
.yab{bottom:751.986898pt;}
.y13a{bottom:751.986928pt;}
.yde{bottom:751.986938pt;}
.y1c5{bottom:751.989593pt;}
.y273{bottom:756.729620pt;}
.y231{bottom:756.837241pt;}
.y2a9{bottom:757.012961pt;}
.y1f8{bottom:758.749096pt;}
.yb{bottom:764.794800pt;}
.y42{bottom:765.480306pt;}
.y153{bottom:766.696289pt;}
.y76{bottom:767.480326pt;}
.yaa{bottom:768.653564pt;}
.y139{bottom:768.653595pt;}
.ydd{bottom:768.653605pt;}
.y1c4{bottom:768.656260pt;}
.y272{bottom:770.057620pt;}
.y230{bottom:770.165241pt;}
.y2a8{bottom:770.340961pt;}
.y1f7{bottom:772.077096pt;}
.ya{bottom:778.122800pt;}
.y41{bottom:782.146973pt;}
.y152{bottom:783.362956pt;}
.y271{bottom:783.385620pt;}
.y22f{bottom:783.493241pt;}
.y2a7{bottom:783.668961pt;}
.y75{bottom:784.146993pt;}
.y181{bottom:784.261637pt;}
.ya9{bottom:785.320231pt;}
.y138{bottom:785.320262pt;}
.ydc{bottom:785.320272pt;}
.y1c3{bottom:785.322927pt;}
.y1f6{bottom:785.405096pt;}
.y270{bottom:796.713620pt;}
.y22e{bottom:796.821241pt;}
.y2a6{bottom:796.996961pt;}
.y1f5{bottom:798.733096pt;}
.y40{bottom:798.813639pt;}
.y151{bottom:800.029622pt;}
.y74{bottom:800.813660pt;}
.y180{bottom:800.928304pt;}
.ya8{bottom:801.986898pt;}
.y137{bottom:801.986928pt;}
.ydb{bottom:801.986938pt;}
.y1c2{bottom:801.989593pt;}
.y26f{bottom:810.041620pt;}
.y22d{bottom:810.149241pt;}
.y2a5{bottom:810.324961pt;}
.y1f4{bottom:812.061096pt;}
.y3f{bottom:815.480306pt;}
.y9{bottom:815.989467pt;}
.y150{bottom:816.696289pt;}
.y73{bottom:817.480326pt;}
.y17f{bottom:817.594971pt;}
.ya7{bottom:818.653564pt;}
.y136{bottom:818.653595pt;}
.yda{bottom:818.653605pt;}
.y1c1{bottom:818.656260pt;}
.y26e{bottom:823.369620pt;}
.y22c{bottom:823.477241pt;}
.y2a4{bottom:823.652961pt;}
.y1f3{bottom:825.389096pt;}
.y3e{bottom:832.146973pt;}
.y8{bottom:832.656133pt;}
.y14f{bottom:833.362956pt;}
.y72{bottom:834.146993pt;}
.y17e{bottom:834.261637pt;}
.ya6{bottom:835.320231pt;}
.y135{bottom:835.320262pt;}
.yd9{bottom:835.320272pt;}
.y1c0{bottom:835.322927pt;}
.y26d{bottom:836.697620pt;}
.y22b{bottom:836.805241pt;}
.y2a3{bottom:836.980961pt;}
.y1f2{bottom:838.717096pt;}
.y3d{bottom:848.813639pt;}
.y26c{bottom:850.025620pt;}
.y14e{bottom:850.029622pt;}
.y22a{bottom:850.133241pt;}
.y2a2{bottom:850.308961pt;}
.y71{bottom:850.813660pt;}
.y17d{bottom:850.928304pt;}
.ya5{bottom:851.986898pt;}
.y134{bottom:851.986928pt;}
.yd8{bottom:851.986938pt;}
.y1bf{bottom:851.989593pt;}
.y1f1{bottom:852.045096pt;}
.y26b{bottom:863.353620pt;}
.y229{bottom:863.461241pt;}
.y2a1{bottom:863.636961pt;}
.y1f0{bottom:865.373096pt;}
.y3c{bottom:865.480306pt;}
.y14d{bottom:866.696289pt;}
.y70{bottom:867.480326pt;}
.y17c{bottom:867.594971pt;}
.y110{bottom:868.648230pt;}
.ya4{bottom:868.653564pt;}
.y133{bottom:868.653595pt;}
.yd7{bottom:868.653605pt;}
.y1be{bottom:868.656260pt;}
.y7{bottom:872.377467pt;}
.y26a{bottom:876.681620pt;}
.y228{bottom:876.789241pt;}
.y2a0{bottom:876.964961pt;}
.y1ef{bottom:878.701096pt;}
.y3b{bottom:882.146973pt;}
.y14c{bottom:883.362956pt;}
.y6f{bottom:884.146993pt;}
.y17b{bottom:884.261637pt;}
.ya3{bottom:885.320231pt;}
.y132{bottom:885.320262pt;}
.yd6{bottom:885.320272pt;}
.y1bd{bottom:885.322927pt;}
.y269{bottom:890.009620pt;}
.y227{bottom:890.117241pt;}
.y29f{bottom:890.292961pt;}
.y1ee{bottom:892.029096pt;}
.y6{bottom:896.377467pt;}
.y3a{bottom:898.813639pt;}
.y14b{bottom:900.029622pt;}
.y6e{bottom:900.813660pt;}
.y17a{bottom:900.928304pt;}
.ya2{bottom:901.986898pt;}
.y131{bottom:901.986928pt;}
.yd5{bottom:901.986938pt;}
.y1bc{bottom:901.989593pt;}
.y268{bottom:903.337620pt;}
.y226{bottom:903.445241pt;}
.y29e{bottom:903.620961pt;}
.y1ed{bottom:905.357096pt;}
.y39{bottom:915.480306pt;}
.y267{bottom:916.665620pt;}
.y14a{bottom:916.696289pt;}
.y225{bottom:916.773241pt;}
.y29d{bottom:916.948961pt;}
.y6d{bottom:917.480326pt;}
.y179{bottom:917.594971pt;}
.ya1{bottom:918.653564pt;}
.y130{bottom:918.653595pt;}
.yd4{bottom:918.653605pt;}
.y1bb{bottom:918.656260pt;}
.y266{bottom:929.993620pt;}
.y224{bottom:930.101241pt;}
.y29c{bottom:930.276961pt;}
.y38{bottom:932.146973pt;}
.y1a5{bottom:933.362956pt;}
.y6c{bottom:934.146993pt;}
.y178{bottom:934.261637pt;}
.ya0{bottom:935.320231pt;}
.y12f{bottom:935.320262pt;}
.yd3{bottom:935.320272pt;}
.y1ba{bottom:935.322927pt;}
.y265{bottom:943.321620pt;}
.y223{bottom:943.429241pt;}
.y29b{bottom:943.604961pt;}
.y149{bottom:950.024288pt;}
.y6b{bottom:950.813660pt;}
.y9f{bottom:951.986898pt;}
.y12e{bottom:951.986928pt;}
.yd2{bottom:951.986938pt;}
.y1b9{bottom:951.989593pt;}
.y5{bottom:956.561867pt;}
.y264{bottom:956.649620pt;}
.y222{bottom:956.757241pt;}
.y29a{bottom:956.932961pt;}
.y37{bottom:965.480306pt;}
.y148{bottom:966.696289pt;}
.y6a{bottom:967.480326pt;}
.y177{bottom:967.594971pt;}
.y9e{bottom:968.653564pt;}
.y12d{bottom:968.653595pt;}
.yd1{bottom:968.653605pt;}
.y1b8{bottom:968.656260pt;}
.y263{bottom:969.977620pt;}
.y221{bottom:970.085241pt;}
.y299{bottom:970.260961pt;}
.y4{bottom:986.299200pt;}
.y3{bottom:1001.406533pt;}
.y36{bottom:1002.206543pt;}
.y9d{bottom:1002.206706pt;}
.hd{height:22.403733pt;}
.h2{height:29.354667pt;}
.hc{height:32.005333pt;}
.hb{height:32.760417pt;}
.h10{height:35.394132pt;}
.h9{height:37.653333pt;}
.h4{height:39.712000pt;}
.h11{height:40.165333pt;}
.ha{height:47.253333pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.hf{height:52.448000pt;}
.h8{height:52.746667pt;}
.h7{height:57.621333pt;}
.he{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x8{left:69.996801pt;}
.x4{left:75.717200pt;}
.x9{left:83.151473pt;}
.x5{left:86.924133pt;}
.x33{left:90.709468pt;}
.xd{left:96.274272pt;}
.xe{left:118.932536pt;}
.xf{left:143.899870pt;}
.x10{left:157.227870pt;}
.x11{left:170.555870pt;}
.x12{left:183.883870pt;}
.x13{left:197.211870pt;}
.x14{left:210.539870pt;}
.x15{left:223.867870pt;}
.x16{left:237.195870pt;}
.x17{left:250.523870pt;}
.x18{left:263.851870pt;}
.x19{left:277.134533pt;}
.x1a{left:290.462533pt;}
.x1b{left:303.790533pt;}
.x1c{left:317.118533pt;}
.x1d{left:330.446533pt;}
.x1e{left:343.774533pt;}
.x1f{left:357.102533pt;}
.x6{left:408.188933pt;}
.xa{left:423.311450pt;}
.xc{left:425.763753pt;}
.x7{left:427.081600pt;}
.x34{left:430.868133pt;}
.x2e{left:456.431722pt;}
.x20{left:469.563202pt;}
.x2f{left:479.090007pt;}
.x21{left:492.423340pt;}
.x30{left:504.057340pt;}
.x22{left:517.390674pt;}
.x23{left:530.718674pt;}
.x24{left:544.046674pt;}
.x25{left:557.374674pt;}
.x26{left:570.702674pt;}
.x27{left:584.030674pt;}
.x28{left:597.358674pt;}
.x29{left:610.686674pt;}
.x2a{left:624.014674pt;}
.x2b{left:637.297344pt;}
.x1{left:643.466667pt;}
.x2c{left:650.625344pt;}
.x2d{left:663.953344pt;}
.x2{left:671.546533pt;}
.x31{left:677.253340pt;}
.x32{left:714.902832pt;}
.xb{left:720.285970pt;}
}




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