
    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_1e425c1ed9d122f75eaa1999.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_32965b61b959288c349b71ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_33d87ef673ea1b189161573b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_b0ef785e71cf5eee0ee187ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_b52169c64b2afa8d4eb8cb96.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_51b1fcc9a02c6866815831c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_7cd7547e65d4d8ad915c6a50.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.384000;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_f7802f4c2618cf01abac1947.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_8b9c0c4284c61d192fc2f133.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.899963px;}
.v5{vertical-align:-17.849991px;}
.v6{vertical-align:-10.805927px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.635927px;}
.v2{vertical-align:21.000000px;}
.ls32{letter-spacing:-3.942000px;}
.ls4f{letter-spacing:-1.710000px;}
.ls55{letter-spacing:-1.125000px;}
.ls3f{letter-spacing:-1.080000px;}
.ls28{letter-spacing:-1.026000px;}
.ls51{letter-spacing:-0.900000px;}
.ls33{letter-spacing:-0.864000px;}
.ls5e{letter-spacing:-0.630000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls56{letter-spacing:-0.495000px;}
.ls2d{letter-spacing:-0.486000px;}
.ls25{letter-spacing:-0.378000px;}
.ls4e{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.324000px;}
.ls1f{letter-spacing:-0.270000px;}
.ls59{letter-spacing:-0.225000px;}
.ls10{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.210600px;}
.ls54{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.175500px;}
.ls26{letter-spacing:-0.162000px;}
.ls57{letter-spacing:-0.135000px;}
.ls2c{letter-spacing:-0.108000px;}
.ls53{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.054000px;}
.ls58{letter-spacing:-0.045000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013772px;}
.ls1{letter-spacing:0.013956px;}
.ls4b{letter-spacing:0.045000px;}
.ls27{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.070200px;}
.ls17{letter-spacing:0.079734px;}
.ls4d{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.105300px;}
.ls13{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.126568px;}
.ls3e{letter-spacing:0.126714px;}
.ls5f{letter-spacing:0.135000px;}
.ls5d{letter-spacing:0.139585px;}
.ls18{letter-spacing:0.140400px;}
.ls3b{letter-spacing:0.154547px;}
.ls8{letter-spacing:0.157950px;}
.ls3d{letter-spacing:0.159019px;}
.ls34{letter-spacing:0.159022px;}
.ls22{letter-spacing:0.159568px;}
.lsd{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.175500px;}
.ls48{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.202500px;}
.ls2b{letter-spacing:0.204612px;}
.ls23{letter-spacing:0.205200px;}
.ls1e{letter-spacing:0.210600px;}
.ls4{letter-spacing:0.216000px;}
.ls47{letter-spacing:0.225000px;}
.ls44{letter-spacing:0.243000px;}
.ls2a{letter-spacing:0.253800px;}
.ls43{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.280800px;}
.ls3a{letter-spacing:0.312633px;}
.ls3c{letter-spacing:0.313080px;}
.ls52{letter-spacing:0.315000px;}
.lse{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.351000px;}
.ls4c{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378000px;}
.ls50{letter-spacing:0.405000px;}
.ls31{letter-spacing:0.421200px;}
.ls1b{letter-spacing:0.432000px;}
.ls42{letter-spacing:0.433677px;}
.ls36{letter-spacing:0.441926px;}
.ls39{letter-spacing:0.441931px;}
.ls49{letter-spacing:0.450000px;}
.ls24{letter-spacing:0.486000px;}
.ls5b{letter-spacing:0.495000px;}
.ls38{letter-spacing:0.497329px;}
.ls1a{letter-spacing:0.520652px;}
.ls12{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.585000px;}
.ls20{letter-spacing:0.594000px;}
.ls35{letter-spacing:0.646189px;}
.ls21{letter-spacing:0.648000px;}
.ls30{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.810000px;}
.ls2e{letter-spacing:0.864000px;}
.ls41{letter-spacing:1.080601px;}
.ls14{letter-spacing:1.160250px;}
.ls4a{letter-spacing:1.201469px;}
.ls46{letter-spacing:1.395000px;}
.ls5c{letter-spacing:1.791000px;}
.ls9{letter-spacing:1.955850px;}
.ls37{letter-spacing:2.214000px;}
.ls0{letter-spacing:3.000000px;}
.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;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws90{word-spacing:-13.860000px;}
.ws40{word-spacing:-12.798000px;}
.ws12{word-spacing:-12.528000px;}
.ws80{word-spacing:-12.501000px;}
.ws62{word-spacing:-12.366000px;}
.ws3a{word-spacing:-12.258000px;}
.ws42{word-spacing:-12.042000px;}
.ws29{word-spacing:-11.988000px;}
.ws41{word-spacing:-11.880000px;}
.ws52{word-spacing:-11.826000px;}
.ws1f{word-spacing:-11.718000px;}
.ws54{word-spacing:-11.502000px;}
.ws4{word-spacing:-11.340000px;}
.ws61{word-spacing:-11.178000px;}
.ws99{word-spacing:-10.530000px;}
.wsa5{word-spacing:-10.440000px;}
.ws92{word-spacing:-10.417500px;}
.ws98{word-spacing:-10.350000px;}
.ws94{word-spacing:-10.215000px;}
.wsa{word-spacing:-10.200000px;}
.ws9a{word-spacing:-9.945000px;}
.ws96{word-spacing:-9.810000px;}
.ws97{word-spacing:-9.765000px;}
.wsb2{word-spacing:-9.675000px;}
.ws1a{word-spacing:-9.600000px;}
.ws91{word-spacing:-9.405000px;}
.ws93{word-spacing:-9.225000px;}
.ws95{word-spacing:-9.180000px;}
.ws43{word-spacing:-8.388900px;}
.ws6{word-spacing:-8.318700px;}
.ws53{word-spacing:-8.316000px;}
.ws1d{word-spacing:-8.248500px;}
.ws1e{word-spacing:-8.178300px;}
.ws7{word-spacing:-8.143200px;}
.ws1c{word-spacing:-8.073000px;}
.ws1b{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws5{word-spacing:-7.967700px;}
.ws3f{word-spacing:-7.792200px;}
.ws6f{word-spacing:-7.757100px;}
.ws8{word-spacing:-6.630000px;}
.wsb5{word-spacing:-6.300000px;}
.wsab{word-spacing:-6.075000px;}
.wsa8{word-spacing:-6.030000px;}
.wsa9{word-spacing:-5.985000px;}
.wsb0{word-spacing:-5.895000px;}
.wsad{word-spacing:-5.805000px;}
.wsa4{word-spacing:-5.715000px;}
.ws70{word-spacing:-5.508000px;}
.ws57{word-spacing:-4.644000px;}
.ws76{word-spacing:-2.592000px;}
.ws87{word-spacing:-2.484000px;}
.ws59{word-spacing:-2.376000px;}
.ws7d{word-spacing:-2.160000px;}
.ws8a{word-spacing:-1.836000px;}
.ws3e{word-spacing:-1.782000px;}
.ws74{word-spacing:-1.728000px;}
.ws7b{word-spacing:-1.620000px;}
.ws5b{word-spacing:-1.512000px;}
.ws75{word-spacing:-1.350000px;}
.ws8b{word-spacing:-1.296000px;}
.ws10{word-spacing:-1.242000px;}
.ws13{word-spacing:-1.188000px;}
.ws17{word-spacing:-1.160250px;}
.ws35{word-spacing:-1.134000px;}
.ws34{word-spacing:-1.080000px;}
.ws9c{word-spacing:-1.035000px;}
.ws20{word-spacing:-1.026000px;}
.wsa3{word-spacing:-0.990000px;}
.ws15{word-spacing:-0.972000px;}
.wsbb{word-spacing:-0.945000px;}
.ws38{word-spacing:-0.918000px;}
.wsb8{word-spacing:-0.900000px;}
.ws73{word-spacing:-0.864000px;}
.ws30{word-spacing:-0.810000px;}
.wsae{word-spacing:-0.765000px;}
.ws46{word-spacing:-0.756000px;}
.ws79{word-spacing:-0.702000px;}
.ws21{word-spacing:-0.648000px;}
.ws25{word-spacing:-0.594000px;}
.wsb9{word-spacing:-0.585000px;}
.wsd{word-spacing:-0.540000px;}
.wsb6{word-spacing:-0.495000px;}
.ws5a{word-spacing:-0.486000px;}
.ws2a{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.378000px;}
.wsa1{word-spacing:-0.360000px;}
.ws50{word-spacing:-0.324000px;}
.ws2c{word-spacing:-0.270000px;}
.ws8f{word-spacing:-0.264000px;}
.wsa2{word-spacing:-0.225000px;}
.wsc{word-spacing:-0.216000px;}
.ws9e{word-spacing:-0.180000px;}
.ws36{word-spacing:-0.162000px;}
.ws7c{word-spacing:-0.108000px;}
.ws24{word-spacing:-0.105300px;}
.ws23{word-spacing:-0.070200px;}
.ws64{word-spacing:-0.054000px;}
.wsac{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.ws9{word-spacing:-0.033150px;}
.wsb{word-spacing:0.000000px;}
.wsba{word-spacing:0.045000px;}
.ws44{word-spacing:0.054000px;}
.ws2f{word-spacing:0.108000px;}
.ws45{word-spacing:0.162000px;}
.wsa7{word-spacing:0.180000px;}
.ws6c{word-spacing:0.216000px;}
.wsa6{word-spacing:0.225000px;}
.ws3b{word-spacing:0.270000px;}
.ws9d{word-spacing:0.315000px;}
.ws4c{word-spacing:0.324000px;}
.ws2e{word-spacing:0.378000px;}
.wsb7{word-spacing:0.405000px;}
.ws56{word-spacing:0.432000px;}
.ws37{word-spacing:0.486000px;}
.wsb1{word-spacing:0.495000px;}
.ws4a{word-spacing:0.540000px;}
.wsaa{word-spacing:0.585000px;}
.wse{word-spacing:0.594000px;}
.wsaf{word-spacing:0.630000px;}
.ws4b{word-spacing:0.648000px;}
.ws2d{word-spacing:0.702000px;}
.ws86{word-spacing:0.756000px;}
.ws3c{word-spacing:0.810000px;}
.wsb4{word-spacing:0.855000px;}
.ws51{word-spacing:0.864000px;}
.ws2b{word-spacing:0.918000px;}
.ws9b{word-spacing:0.945000px;}
.ws39{word-spacing:0.972000px;}
.ws9f{word-spacing:0.990000px;}
.ws31{word-spacing:1.026000px;}
.wsa0{word-spacing:1.035000px;}
.ws33{word-spacing:1.080000px;}
.wsb3{word-spacing:1.125000px;}
.ws22{word-spacing:1.134000px;}
.ws14{word-spacing:1.188000px;}
.ws11{word-spacing:1.242000px;}
.ws5c{word-spacing:1.296000px;}
.ws3d{word-spacing:1.350000px;}
.ws65{word-spacing:1.404000px;}
.ws32{word-spacing:1.458000px;}
.ws47{word-spacing:1.512000px;}
.ws6e{word-spacing:1.566000px;}
.wsbd{word-spacing:1.620000px;}
.ws27{word-spacing:1.674000px;}
.ws63{word-spacing:1.728000px;}
.ws84{word-spacing:1.782000px;}
.ws18{word-spacing:1.785000px;}
.wsf{word-spacing:1.836000px;}
.wsbc{word-spacing:1.944000px;}
.ws6d{word-spacing:1.998000px;}
.wsc1{word-spacing:2.052000px;}
.ws26{word-spacing:2.160000px;}
.ws49{word-spacing:2.214000px;}
.ws4d{word-spacing:2.322000px;}
.ws48{word-spacing:2.376000px;}
.ws55{word-spacing:2.430000px;}
.ws7a{word-spacing:2.484000px;}
.ws88{word-spacing:2.916000px;}
.ws19{word-spacing:2.958000px;}
.ws7f{word-spacing:2.970000px;}
.ws7e{word-spacing:3.024000px;}
.wsbe{word-spacing:3.132000px;}
.ws6a{word-spacing:3.186000px;}
.ws60{word-spacing:3.348000px;}
.ws78{word-spacing:3.456000px;}
.ws4e{word-spacing:3.618000px;}
.ws77{word-spacing:3.780000px;}
.ws82{word-spacing:3.996000px;}
.ws6b{word-spacing:4.158000px;}
.ws5f{word-spacing:4.266000px;}
.ws8d{word-spacing:4.320000px;}
.ws71{word-spacing:4.482000px;}
.ws72{word-spacing:4.536000px;}
.ws67{word-spacing:4.806000px;}
.ws85{word-spacing:4.914000px;}
.ws69{word-spacing:5.076000px;}
.ws83{word-spacing:5.238000px;}
.wsc2{word-spacing:5.670000px;}
.ws8e{word-spacing:5.832000px;}
.ws68{word-spacing:5.940000px;}
.ws8c{word-spacing:6.102000px;}
.ws5e{word-spacing:6.156000px;}
.wsc3{word-spacing:6.264000px;}
.wsbf{word-spacing:6.480000px;}
.ws4f{word-spacing:6.534000px;}
.wsc0{word-spacing:6.750000px;}
.ws66{word-spacing:9.342000px;}
.ws16{word-spacing:10.404000px;}
.ws81{word-spacing:12.420000px;}
.ws28{word-spacing:15.282000px;}
.ws5d{word-spacing:15.714000px;}
.ws89{word-spacing:19.764000px;}
._17{margin-left:-20.952007px;}
._1f{margin-left:-17.372427px;}
._16{margin-left:-14.749800px;}
._19{margin-left:-12.794357px;}
._a{margin-left:-11.785200px;}
._9{margin-left:-10.718400px;}
._6{margin-left:-9.489043px;}
._15{margin-left:-8.200200px;}
._2{margin-left:-6.801600px;}
._18{margin-left:-5.643000px;}
._3{margin-left:-4.200000px;}
._5{margin-left:-3.175244px;}
._0{margin-left:-1.876800px;}
._8{width:1.032600px;}
._14{width:2.196187px;}
._1b{width:3.294000px;}
._1c{width:4.482000px;}
._1e{width:6.150000px;}
._13{width:7.981499px;}
._1d{width:9.282000px;}
._11{width:11.383200px;}
._12{width:12.638987px;}
._f{width:14.641740px;}
._e{width:15.840425px;}
._10{width:16.967705px;}
._d{width:18.039055px;}
._20{width:20.040000px;}
._c{width:24.740100px;}
._b{width:26.907424px;}
._4{width:40.069772px;}
._7{width:41.071150px;}
._1a{width:47.715070px;}
._1{width:317.236800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.199200px;}
.y36{bottom:3.199350px;}
.y9d{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y35{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y8e{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y34{bottom:68.037452px;}
.y29f{bottom:72.648897px;}
.y1a8{bottom:76.984648px;}
.y128{bottom:77.017648px;}
.y16e{bottom:79.393652px;}
.y1d6{bottom:80.017648px;}
.y8c{bottom:81.113244px;}
.y33{bottom:83.037452px;}
.y44{bottom:83.121152px;}
.y258{bottom:83.481632px;}
.y29e{bottom:87.648897px;}
.y99{bottom:91.372652px;}
.y1a7{bottom:91.983148px;}
.y127{bottom:92.016148px;}
.y16d{bottom:94.392152px;}
.ye8{bottom:94.987648px;}
.y158{bottom:94.992148px;}
.y1d5{bottom:95.016148px;}
.y8b{bottom:96.111744px;}
.y257{bottom:96.227882px;}
.y20b{bottom:97.981648px;}
.y32{bottom:98.037452px;}
.y43{bottom:98.122652px;}
.y98{bottom:106.371152px;}
.y1a6{bottom:106.981648px;}
.y126{bottom:107.014648px;}
.y256{bottom:108.974132px;}
.y16c{bottom:109.390652px;}
.ye7{bottom:109.986148px;}
.y157{bottom:109.990648px;}
.y1d4{bottom:110.014648px;}
.y8a{bottom:111.110244px;}
.y20a{bottom:112.980148px;}
.y31{bottom:113.037452px;}
.y42{bottom:113.121152px;}
.y29d{bottom:119.115749px;}
.y97{bottom:121.372652px;}
.y255{bottom:121.720382px;}
.y1a5{bottom:121.980148px;}
.y125{bottom:122.013148px;}
.y16b{bottom:124.389152px;}
.ye6{bottom:124.984648px;}
.y156{bottom:124.989148px;}
.y1d3{bottom:125.013148px;}
.y89{bottom:126.108744px;}
.y209{bottom:127.980148px;}
.y30{bottom:128.037452px;}
.y41{bottom:128.121152px;}
.y29c{bottom:134.115749px;}
.y254{bottom:134.466632px;}
.y96{bottom:136.371152px;}
.y124{bottom:137.011648px;}
.y16a{bottom:139.387652px;}
.ye5{bottom:139.983148px;}
.y155{bottom:139.987648px;}
.y1d2{bottom:140.011648px;}
.y88{bottom:141.107244px;}
.y2f{bottom:143.037452px;}
.y40{bottom:143.121152px;}
.y253{bottom:147.212882px;}
.y95{bottom:151.369652px;}
.y123{bottom:152.010148px;}
.y169{bottom:154.386152px;}
.ye4{bottom:154.981648px;}
.y154{bottom:154.986148px;}
.y1a4{bottom:155.008648px;}
.y1d1{bottom:155.010148px;}
.y87{bottom:156.105744px;}
.y208{bottom:157.992148px;}
.y2e{bottom:158.037452px;}
.y3f{bottom:158.121152px;}
.y252{bottom:159.959132px;}
.y29b{bottom:164.121761px;}
.y122{bottom:167.008648px;}
.y168{bottom:169.384652px;}
.ye3{bottom:169.980148px;}
.y153{bottom:169.984648px;}
.y1a3{bottom:170.007148px;}
.y1d0{bottom:170.008648px;}
.y86{bottom:171.104244px;}
.y251{bottom:172.705382px;}
.y207{bottom:172.990648px;}
.y2d{bottom:173.037452px;}
.y3e{bottom:173.128652px;}
.ya6{bottom:177.694658px;}
.y29a{bottom:179.120261px;}
.y121{bottom:182.007148px;}
.y94{bottom:184.375652px;}
.y167{bottom:184.383152px;}
.y152{bottom:184.983148px;}
.y1a2{bottom:185.005648px;}
.y1cf{bottom:185.007148px;}
.y250{bottom:185.451632px;}
.y85{bottom:186.102744px;}
.y206{bottom:187.989148px;}
.y3d{bottom:188.127152px;}
.y2c{bottom:192.493950px;}
.ya5{bottom:192.693158px;}
.y299{bottom:194.118761px;}
.y120{bottom:197.005648px;}
.y24f{bottom:198.197882px;}
.y93{bottom:199.374152px;}
.y166{bottom:199.381652px;}
.y151{bottom:199.981648px;}
.y1a1{bottom:200.004148px;}
.y1ce{bottom:200.005648px;}
.y84{bottom:201.101244px;}
.y205{bottom:202.987648px;}
.ye2{bottom:202.993648px;}
.y3c{bottom:203.125652px;}
.ya4{bottom:207.700658px;}
.y298{bottom:209.117261px;}
.y24e{bottom:210.944132px;}
.y11f{bottom:212.004148px;}
.y92{bottom:214.372652px;}
.y165{bottom:214.380152px;}
.y150{bottom:215.002648px;}
.y1cd{bottom:215.004148px;}
.y83{bottom:216.099744px;}
.y204{bottom:217.986148px;}
.ye1{bottom:217.992148px;}
.y3b{bottom:218.124152px;}
.ya3{bottom:222.699158px;}
.y24d{bottom:223.690382px;}
.y297{bottom:224.115761px;}
.y11e{bottom:227.002648px;}
.y91{bottom:229.371152px;}
.y164{bottom:229.378652px;}
.y2a{bottom:229.572305px;}
.y14f{bottom:230.001148px;}
.y1cc{bottom:230.002648px;}
.y82{bottom:231.098244px;}
.y203{bottom:232.984648px;}
.ye0{bottom:232.990648px;}
.y3a{bottom:233.122652px;}
.y24c{bottom:236.436632px;}
.ya2{bottom:237.697658px;}
.y296{bottom:239.115761px;}
.y11d{bottom:242.001148px;}
.y90{bottom:244.369652px;}
.y163{bottom:244.377152px;}
.y29{bottom:244.570805px;}
.y14e{bottom:244.999648px;}
.y1cb{bottom:245.001148px;}
.y81{bottom:246.096744px;}
.y202{bottom:247.983148px;}
.ydf{bottom:247.989148px;}
.y39{bottom:248.121152px;}
.y24b{bottom:249.182882px;}
.ya1{bottom:252.696158px;}
.y11c{bottom:256.999648px;}
.y162{bottom:259.375652px;}
.y28{bottom:259.570805px;}
.y14d{bottom:259.998148px;}
.y1ca{bottom:259.999648px;}
.y80{bottom:261.095244px;}
.y24a{bottom:261.929132px;}
.y201{bottom:262.981648px;}
.yde{bottom:262.987648px;}
.y38{bottom:263.119652px;}
.ya0{bottom:267.694658px;}
.y295{bottom:269.139738px;}
.y11b{bottom:271.998148px;}
.y161{bottom:274.374152px;}
.y27{bottom:274.573805px;}
.y249{bottom:274.675382px;}
.y14c{bottom:274.996648px;}
.y1c9{bottom:274.998148px;}
.y7f{bottom:276.093744px;}
.y200{bottom:277.981648px;}
.ydd{bottom:277.986148px;}
.y9f{bottom:282.693158px;}
.y294{bottom:284.138238px;}
.y11a{bottom:286.996648px;}
.y248{bottom:287.421632px;}
.y160{bottom:289.372652px;}
.y26{bottom:289.572305px;}
.y9c{bottom:289.654657px;}
.y14b{bottom:289.995148px;}
.y1c8{bottom:289.996648px;}
.y7e{bottom:291.092244px;}
.y1ff{bottom:292.981648px;}
.ydc{bottom:292.984648px;}
.y9e{bottom:297.691658px;}
.y293{bottom:299.136738px;}
.y247{bottom:300.167882px;}
.y119{bottom:301.995148px;}
.y15f{bottom:304.371152px;}
.y25{bottom:304.570805px;}
.y9b{bottom:304.653157px;}
.y14a{bottom:304.993648px;}
.y1c7{bottom:304.995148px;}
.y7d{bottom:306.090744px;}
.y1fe{bottom:307.980148px;}
.ydb{bottom:307.983148px;}
.y48{bottom:310.455450px;}
.y246{bottom:312.914132px;}
.y292{bottom:314.135238px;}
.y118{bottom:316.993648px;}
.y15e{bottom:319.372652px;}
.y24{bottom:319.635315px;}
.y9a{bottom:319.651657px;}
.y149{bottom:319.992148px;}
.y1c6{bottom:319.993648px;}
.y7c{bottom:321.089244px;}
.yda{bottom:322.981648px;}
.y47{bottom:325.453950px;}
.y245{bottom:325.660382px;}
.y291{bottom:329.133738px;}
.y117{bottom:331.992148px;}
.y15d{bottom:334.371152px;}
.y23{bottom:334.633815px;}
.y148{bottom:334.990648px;}
.y1c5{bottom:334.992148px;}
.y7b{bottom:336.087744px;}
.yd9{bottom:337.984648px;}
.y244{bottom:338.406632px;}
.y46{bottom:340.452450px;}
.y1fd{bottom:340.983148px;}
.y290{bottom:344.132238px;}
.y116{bottom:346.990648px;}
.y15c{bottom:349.374129px;}
.y22{bottom:349.632315px;}
.y147{bottom:349.989148px;}
.y1c4{bottom:349.990648px;}
.y7a{bottom:351.086244px;}
.y243{bottom:351.152882px;}
.yd8{bottom:352.983148px;}
.y45{bottom:355.450950px;}
.y1fc{bottom:355.981648px;}
.y28f{bottom:359.130738px;}
.y115{bottom:361.989148px;}
.y242{bottom:363.899132px;}
.y15b{bottom:364.372629px;}
.y21{bottom:364.630815px;}
.y146{bottom:364.987648px;}
.y1c3{bottom:364.989148px;}
.y79{bottom:366.084744px;}
.yd7{bottom:367.981648px;}
.y1fb{bottom:370.981648px;}
.y28e{bottom:374.129238px;}
.y241{bottom:376.645382px;}
.y114{bottom:376.987648px;}
.y15a{bottom:379.371129px;}
.y20{bottom:379.629315px;}
.y145{bottom:379.986148px;}
.y1c2{bottom:379.987648px;}
.y78{bottom:381.086267px;}
.yd6{bottom:383.010148px;}
.y1fa{bottom:385.981648px;}
.y28d{bottom:389.127738px;}
.y240{bottom:389.391632px;}
.y113{bottom:391.986148px;}
.y159{bottom:394.369629px;}
.y144{bottom:394.984648px;}
.y1c1{bottom:394.986148px;}
.y77{bottom:396.084767px;}
.yd5{bottom:398.008648px;}
.y1f9{bottom:400.983148px;}
.y23f{bottom:402.137882px;}
.y28c{bottom:404.126238px;}
.y112{bottom:406.984648px;}
.y143{bottom:409.983148px;}
.y1c0{bottom:409.984648px;}
.y76{bottom:411.107267px;}
.yd4{bottom:413.007148px;}
.y23e{bottom:414.884132px;}
.y1f8{bottom:415.981648px;}
.y28b{bottom:419.124738px;}
.y111{bottom:421.983148px;}
.y1f{bottom:424.773315px;}
.y142{bottom:424.981648px;}
.y1bf{bottom:424.983148px;}
.y75{bottom:426.105767px;}
.y23d{bottom:427.630382px;}
.yd3{bottom:428.005648px;}
.y1f7{bottom:430.980148px;}
.y28a{bottom:434.123238px;}
.y110{bottom:436.981648px;}
.y1be{bottom:439.981648px;}
.y141{bottom:439.983148px;}
.y1a0{bottom:439.986148px;}
.y179{bottom:440.022142px;}
.y23c{bottom:440.376632px;}
.y74{bottom:441.104267px;}
.y1e{bottom:441.270315px;}
.yd2{bottom:443.004148px;}
.y289{bottom:449.121738px;}
.y10f{bottom:451.980148px;}
.y23b{bottom:453.122882px;}
.y140{bottom:454.981648px;}
.y19f{bottom:454.984648px;}
.y1bd{bottom:454.995148px;}
.y178{bottom:455.020642px;}
.y73{bottom:456.102767px;}
.y1d{bottom:457.767315px;}
.yd1{bottom:458.002648px;}
.y1f6{bottom:463.983148px;}
.y288{bottom:464.120238px;}
.y23a{bottom:465.869132px;}
.y13f{bottom:469.981648px;}
.y19e{bottom:469.983148px;}
.y1bc{bottom:469.993648px;}
.y177{bottom:470.019142px;}
.y72{bottom:471.101267px;}
.yd0{bottom:473.001148px;}
.y1c{bottom:474.264315px;}
.y239{bottom:478.615382px;}
.y1f5{bottom:478.981648px;}
.y287{bottom:479.118738px;}
.y13e{bottom:484.981648px;}
.y1bb{bottom:484.992148px;}
.y10e{bottom:485.014694px;}
.y176{bottom:485.017642px;}
.y71{bottom:486.099767px;}
.ycf{bottom:487.999648px;}
.y1b{bottom:490.761315px;}
.y238{bottom:491.361632px;}
.y1f4{bottom:493.983148px;}
.y286{bottom:494.117238px;}
.y13d{bottom:499.981648px;}
.y19d{bottom:499.983148px;}
.y1ba{bottom:499.990648px;}
.y10d{bottom:500.013194px;}
.y175{bottom:500.016142px;}
.y70{bottom:501.098267px;}
.yce{bottom:502.998148px;}
.y237{bottom:504.107882px;}
.y1a{bottom:507.258315px;}
.y1f3{bottom:508.981648px;}
.y285{bottom:509.115738px;}
.y19c{bottom:514.981648px;}
.y1b9{bottom:514.989148px;}
.y13c{bottom:515.008694px;}
.y10c{bottom:515.011694px;}
.y174{bottom:515.014642px;}
.y6f{bottom:516.096767px;}
.y236{bottom:516.854132px;}
.ycd{bottom:517.996648px;}
.y19{bottom:523.755315px;}
.y1f2{bottom:523.980148px;}
.y284{bottom:524.115738px;}
.y235{bottom:529.600382px;}
.y19b{bottom:529.981648px;}
.y1b8{bottom:529.987648px;}
.y13b{bottom:530.007194px;}
.y10b{bottom:530.010194px;}
.y173{bottom:530.013142px;}
.y6e{bottom:531.095267px;}
.ycc{bottom:532.995148px;}
.y18{bottom:540.252315px;}
.y234{bottom:542.346632px;}
.y19a{bottom:544.981648px;}
.y1b7{bottom:544.986148px;}
.y13a{bottom:545.005694px;}
.y10a{bottom:545.008694px;}
.y172{bottom:545.016142px;}
.y6d{bottom:546.093767px;}
.ycb{bottom:547.993648px;}
.y283{bottom:554.273284px;}
.y233{bottom:555.092882px;}
.y17{bottom:556.749315px;}
.y1f1{bottom:556.995148px;}
.y1b6{bottom:559.984648px;}
.y199{bottom:559.993648px;}
.y139{bottom:560.004194px;}
.y109{bottom:560.007194px;}
.y171{bottom:560.014642px;}
.y6c{bottom:561.092267px;}
.yca{bottom:562.992148px;}
.y282{bottom:567.019534px;}
.y232{bottom:567.839132px;}
.y1f0{bottom:571.993648px;}
.y16{bottom:573.246315px;}
.y1b5{bottom:574.983148px;}
.y198{bottom:574.992148px;}
.y138{bottom:575.002694px;}
.y108{bottom:575.005694px;}
.y170{bottom:575.013142px;}
.y6b{bottom:576.090767px;}
.yc9{bottom:577.990648px;}
.y281{bottom:579.765784px;}
.y231{bottom:580.585382px;}
.y1ef{bottom:586.992148px;}
.y15{bottom:589.743315px;}
.y1b4{bottom:589.981648px;}
.y197{bottom:589.990648px;}
.y137{bottom:590.001194px;}
.y107{bottom:590.004194px;}
.y16f{bottom:590.011642px;}
.y6a{bottom:591.089267px;}
.y280{bottom:592.512034px;}
.yc8{bottom:592.989148px;}
.y230{bottom:593.331632px;}
.y1ee{bottom:601.990648px;}
.y1b3{bottom:604.980148px;}
.y196{bottom:604.989148px;}
.y136{bottom:604.999694px;}
.y106{bottom:605.002694px;}
.y27f{bottom:605.258284px;}
.y22f{bottom:606.077882px;}
.y69{bottom:606.087767px;}
.y14{bottom:606.240315px;}
.yc7{bottom:607.987648px;}
.y1ed{bottom:616.989148px;}
.y27e{bottom:618.004534px;}
.y22e{bottom:618.824132px;}
.y195{bottom:619.987648px;}
.y135{bottom:619.998194px;}
.y105{bottom:620.001194px;}
.y68{bottom:621.086267px;}
.y13{bottom:622.737315px;}
.yc6{bottom:622.986148px;}
.y27d{bottom:630.750784px;}
.y22d{bottom:631.570382px;}
.y1ec{bottom:631.987648px;}
.y194{bottom:634.986148px;}
.y134{bottom:634.996694px;}
.y104{bottom:634.999694px;}
.y67{bottom:636.084767px;}
.yc5{bottom:637.984648px;}
.y1b2{bottom:637.995194px;}
.y12{bottom:639.234315px;}
.y27c{bottom:643.497034px;}
.y22c{bottom:644.316632px;}
.y1eb{bottom:646.986148px;}
.y193{bottom:649.984648px;}
.y133{bottom:649.995194px;}
.y103{bottom:649.998194px;}
.y66{bottom:651.083267px;}
.yc4{bottom:652.983148px;}
.y1b1{bottom:652.993694px;}
.y11{bottom:655.731315px;}
.y27b{bottom:656.243284px;}
.y22b{bottom:657.062882px;}
.y1ea{bottom:661.984648px;}
.y192{bottom:664.983148px;}
.y132{bottom:664.993694px;}
.y102{bottom:664.996694px;}
.y65{bottom:666.083267px;}
.yc3{bottom:667.981648px;}
.y1b0{bottom:667.992194px;}
.y27a{bottom:668.989534px;}
.y22a{bottom:669.809132px;}
.y10{bottom:672.228315px;}
.y1e9{bottom:676.983148px;}
.y191{bottom:679.981648px;}
.y131{bottom:679.992194px;}
.y101{bottom:679.995194px;}
.y279{bottom:681.735784px;}
.y229{bottom:682.555382px;}
.yc2{bottom:682.984648px;}
.y1af{bottom:682.990694px;}
.yf{bottom:688.725315px;}
.y1e8{bottom:691.981648px;}
.y278{bottom:694.482034px;}
.y190{bottom:694.980148px;}
.y130{bottom:694.990694px;}
.y100{bottom:694.993694px;}
.y228{bottom:695.301632px;}
.yc1{bottom:697.983148px;}
.y1ae{bottom:697.989194px;}
.y64{bottom:699.089267px;}
.ye{bottom:705.222315px;}
.y1e7{bottom:706.984648px;}
.y277{bottom:707.228284px;}
.y227{bottom:708.047882px;}
.y12f{bottom:709.989194px;}
.yff{bottom:709.992194px;}
.yc0{bottom:712.981648px;}
.y1ad{bottom:712.987694px;}
.y63{bottom:714.087767px;}
.y276{bottom:719.974534px;}
.y226{bottom:720.794132px;}
.yd{bottom:721.719315px;}
.y1e6{bottom:721.983148px;}
.y12e{bottom:724.987694px;}
.yfe{bottom:724.990694px;}
.ybf{bottom:727.984694px;}
.y1ac{bottom:727.986194px;}
.y18f{bottom:727.999694px;}
.y62{bottom:729.086267px;}
.y275{bottom:732.720784px;}
.y225{bottom:733.540382px;}
.y1e5{bottom:736.981648px;}
.y12d{bottom:739.986194px;}
.yfd{bottom:739.989194px;}
.ybe{bottom:742.983194px;}
.y1ab{bottom:742.984694px;}
.y18e{bottom:742.998194px;}
.y61{bottom:744.084767px;}
.y274{bottom:745.467034px;}
.y224{bottom:746.286632px;}
.yc{bottom:751.719269px;}
.y1e4{bottom:751.984694px;}
.y12c{bottom:754.984694px;}
.yfc{bottom:754.987694px;}
.ybd{bottom:757.981694px;}
.y1aa{bottom:757.983194px;}
.y18d{bottom:757.996694px;}
.y273{bottom:758.213284px;}
.y223{bottom:759.032882px;}
.y60{bottom:759.092221px;}
.y1e3{bottom:766.983194px;}
.yb{bottom:769.719269px;}
.y12b{bottom:769.983194px;}
.yfb{bottom:769.986194px;}
.y272{bottom:770.959534px;}
.y222{bottom:771.779132px;}
.y1a9{bottom:772.981694px;}
.y18c{bottom:772.995194px;}
.ybc{bottom:773.011694px;}
.y5f{bottom:774.090721px;}
.y1e2{bottom:781.981694px;}
.y271{bottom:783.705784px;}
.y221{bottom:784.525382px;}
.y12a{bottom:784.981694px;}
.yfa{bottom:784.984694px;}
.ya{bottom:787.719269px;}
.y18b{bottom:787.993694px;}
.ybb{bottom:788.010194px;}
.y5e{bottom:789.089221px;}
.y270{bottom:796.452034px;}
.y1e1{bottom:796.981694px;}
.y220{bottom:797.271632px;}
.y129{bottom:799.980194px;}
.yf9{bottom:799.983194px;}
.y18a{bottom:802.992194px;}
.yba{bottom:803.008694px;}
.y5d{bottom:804.087721px;}
.y9{bottom:805.719269px;}
.y26f{bottom:809.198284px;}
.y21f{bottom:810.017882px;}
.y1e0{bottom:811.981694px;}
.yf8{bottom:814.981694px;}
.y2af{bottom:815.537702px;}
.y189{bottom:817.990694px;}
.yb9{bottom:818.007194px;}
.y5c{bottom:819.086221px;}
.y26e{bottom:821.944534px;}
.y21e{bottom:822.764132px;}
.y8{bottom:823.719269px;}
.y1df{bottom:826.984694px;}
.yf7{bottom:829.980194px;}
.y188{bottom:832.989194px;}
.yb8{bottom:833.005694px;}
.y5b{bottom:834.084721px;}
.y26d{bottom:834.690784px;}
.y21d{bottom:835.510382px;}
.y1de{bottom:841.983194px;}
.y2ae{bottom:845.534700px;}
.y26c{bottom:847.437034px;}
.y187{bottom:847.987694px;}
.yb7{bottom:848.004194px;}
.y21c{bottom:848.256632px;}
.y5a{bottom:849.086221px;}
.y7{bottom:856.707269px;}
.y1dd{bottom:856.981694px;}
.y26b{bottom:860.183284px;}
.y2ad{bottom:860.533200px;}
.y21b{bottom:861.002882px;}
.y186{bottom:862.986194px;}
.yf6{bottom:863.001194px;}
.yb6{bottom:863.002694px;}
.y59{bottom:864.084721px;}
.y1dc{bottom:871.980194px;}
.y26a{bottom:872.929534px;}
.y21a{bottom:873.749132px;}
.y2ac{bottom:875.531700px;}
.y185{bottom:877.984694px;}
.yf5{bottom:877.999694px;}
.yb5{bottom:878.001194px;}
.y58{bottom:879.084721px;}
.y269{bottom:885.675784px;}
.y219{bottom:886.495382px;}
.y2ab{bottom:890.530200px;}
.y184{bottom:892.983194px;}
.yf4{bottom:892.998194px;}
.yb4{bottom:892.999694px;}
.y57{bottom:894.086221px;}
.y268{bottom:898.422034px;}
.y218{bottom:899.241632px;}
.y6{bottom:901.713269px;}
.y1db{bottom:904.984694px;}
.y2aa{bottom:905.528700px;}
.y183{bottom:907.981694px;}
.yf3{bottom:907.996694px;}
.yb3{bottom:907.998194px;}
.y56{bottom:909.084721px;}
.y267{bottom:911.168284px;}
.y217{bottom:911.987882px;}
.y1da{bottom:919.983194px;}
.y2a9{bottom:920.527200px;}
.y182{bottom:922.989194px;}
.yf2{bottom:922.995194px;}
.yb2{bottom:922.996694px;}
.y266{bottom:923.914534px;}
.y55{bottom:924.087721px;}
.y216{bottom:924.734132px;}
.y1d9{bottom:934.981694px;}
.y2a8{bottom:935.525700px;}
.y265{bottom:936.660784px;}
.y215{bottom:937.480382px;}
.y181{bottom:937.987694px;}
.yf1{bottom:937.993694px;}
.yb1{bottom:937.995194px;}
.y54{bottom:939.086221px;}
.y5{bottom:946.719269px;}
.y264{bottom:949.407034px;}
.y1d8{bottom:949.980194px;}
.y214{bottom:950.226632px;}
.y2a7{bottom:950.524200px;}
.y180{bottom:952.986194px;}
.yf0{bottom:952.992194px;}
.yb0{bottom:952.993694px;}
.y53{bottom:954.084721px;}
.y2b{bottom:954.366760px;}
.y263{bottom:962.153284px;}
.y213{bottom:962.972882px;}
.y1d7{bottom:964.980194px;}
.y17f{bottom:967.984694px;}
.yef{bottom:967.990694px;}
.yaf{bottom:967.992194px;}
.y52{bottom:969.093721px;}
.y2a6{bottom:973.013700px;}
.y262{bottom:974.899534px;}
.y212{bottom:975.719132px;}
.y17e{bottom:982.983194px;}
.yee{bottom:982.989194px;}
.yae{bottom:982.990694px;}
.y51{bottom:984.092221px;}
.y261{bottom:987.645784px;}
.y2a5{bottom:988.012200px;}
.y211{bottom:988.465382px;}
.y17d{bottom:997.981694px;}
.yed{bottom:997.987694px;}
.yad{bottom:997.989194px;}
.y50{bottom:999.090721px;}
.y260{bottom:1000.392034px;}
.y210{bottom:1001.211632px;}
.y2a4{bottom:1010.516700px;}
.y17c{bottom:1012.981694px;}
.yec{bottom:1012.986194px;}
.yac{bottom:1012.987694px;}
.y25f{bottom:1013.138284px;}
.y20f{bottom:1013.957882px;}
.y4f{bottom:1014.089221px;}
.y25e{bottom:1025.884534px;}
.y20e{bottom:1026.704132px;}
.y17b{bottom:1027.981694px;}
.yeb{bottom:1027.984694px;}
.yab{bottom:1027.986194px;}
.y4e{bottom:1029.087721px;}
.y2a3{bottom:1033.021200px;}
.y25d{bottom:1038.630784px;}
.y20d{bottom:1039.454132px;}
.y17a{bottom:1042.981694px;}
.yea{bottom:1042.983194px;}
.yaa{bottom:1042.984694px;}
.y4d{bottom:1044.086221px;}
.y25c{bottom:1051.377034px;}
.y2a2{bottom:1055.525700px;}
.ye9{bottom:1057.981694px;}
.ya9{bottom:1057.983194px;}
.y4c{bottom:1059.084721px;}
.y25b{bottom:1064.123284px;}
.y2a1{bottom:1070.524200px;}
.ya8{bottom:1072.981694px;}
.y4b{bottom:1074.084721px;}
.y25a{bottom:1076.869534px;}
.y2a0{bottom:1085.524200px;}
.ya7{bottom:1087.980194px;}
.y20c{bottom:1088.954132px;}
.y4a{bottom:1089.083221px;}
.y259{bottom:1089.615784px;}
.y49{bottom:1140.640320px;}
.y8f{bottom:1140.746521px;}
.y37{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h10{height:23.842749px;}
.h2{height:34.523438px;}
.h33{height:35.411133px;}
.h9{height:38.838867px;}
.h12{height:41.668740px;}
.h34{height:44.505000px;}
.h35{height:45.090000px;}
.h3{height:45.679688px;}
.h36{height:46.080000px;}
.h1f{height:47.469727px;}
.h13{height:48.510668px;}
.h11{height:48.534668px;}
.h7{height:49.050293px;}
.h6{height:49.183594px;}
.h8{height:49.183777px;}
.h14{height:49.373525px;}
.h37{height:50.439000px;}
.ha{height:51.416016px;}
.hb{height:53.406000px;}
.h32{height:53.463907px;}
.h24{height:53.487680px;}
.h30{height:53.493680px;}
.h26{height:53.493863px;}
.h29{height:53.499680px;}
.h20{height:53.517863px;}
.h2a{height:53.523863px;}
.h31{height:53.553863px;}
.h2d{height:53.559863px;}
.h1b{height:53.572779px;}
.h2c{height:53.577680px;}
.h23{height:53.577863px;}
.h15{height:53.577909px;}
.h1e{height:53.578046px;}
.h2e{height:53.589863px;}
.h2b{height:53.595406px;}
.h25{height:53.595680px;}
.hc{height:53.595863px;}
.h2f{height:53.595907px;}
.h1c{height:53.596779px;}
.he{height:53.601863px;}
.h17{height:53.601909px;}
.h1d{height:53.602779px;}
.h28{height:53.607680px;}
.hd{height:53.607863px;}
.h18{height:53.607886px;}
.h16{height:53.607909px;}
.h1a{height:53.608779px;}
.h27{height:53.613680px;}
.h22{height:53.613863px;}
.h21{height:54.108000px;}
.h19{height:55.296000px;}
.h4{height:57.099609px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.856449px;}
.xb{left:254.108253px;}
.xc{left:302.498703px;}
.x4{left:586.814117px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.xa{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v4{vertical-align:-16.799967pt;}
.v5{vertical-align:-15.866659pt;}
.v6{vertical-align:-9.605268pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.565268pt;}
.v2{vertical-align:18.666667pt;}
.ls32{letter-spacing:-3.504000pt;}
.ls4f{letter-spacing:-1.520000pt;}
.ls55{letter-spacing:-1.000000pt;}
.ls3f{letter-spacing:-0.960000pt;}
.ls28{letter-spacing:-0.912000pt;}
.ls51{letter-spacing:-0.800000pt;}
.ls33{letter-spacing:-0.768000pt;}
.ls5e{letter-spacing:-0.560000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls56{letter-spacing:-0.440000pt;}
.ls2d{letter-spacing:-0.432000pt;}
.ls25{letter-spacing:-0.336000pt;}
.ls4e{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls1f{letter-spacing:-0.240000pt;}
.ls59{letter-spacing:-0.200000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.187200pt;}
.ls54{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.156000pt;}
.ls26{letter-spacing:-0.144000pt;}
.ls57{letter-spacing:-0.120000pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls53{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls58{letter-spacing:-0.040000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012242pt;}
.ls1{letter-spacing:0.012405pt;}
.ls4b{letter-spacing:0.040000pt;}
.ls27{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.062400pt;}
.ls17{letter-spacing:0.070875pt;}
.ls4d{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.093600pt;}
.ls13{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.112505pt;}
.ls3e{letter-spacing:0.112634pt;}
.ls5f{letter-spacing:0.120000pt;}
.ls5d{letter-spacing:0.124076pt;}
.ls18{letter-spacing:0.124800pt;}
.ls3b{letter-spacing:0.137375pt;}
.ls8{letter-spacing:0.140400pt;}
.ls3d{letter-spacing:0.141350pt;}
.ls34{letter-spacing:0.141353pt;}
.ls22{letter-spacing:0.141839pt;}
.lsd{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.156000pt;}
.ls48{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.180000pt;}
.ls2b{letter-spacing:0.181878pt;}
.ls23{letter-spacing:0.182400pt;}
.ls1e{letter-spacing:0.187200pt;}
.ls4{letter-spacing:0.192000pt;}
.ls47{letter-spacing:0.200000pt;}
.ls44{letter-spacing:0.216000pt;}
.ls2a{letter-spacing:0.225600pt;}
.ls43{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.249600pt;}
.ls3a{letter-spacing:0.277896pt;}
.ls3c{letter-spacing:0.278293pt;}
.ls52{letter-spacing:0.280000pt;}
.lse{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.312000pt;}
.ls4c{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336000pt;}
.ls50{letter-spacing:0.360000pt;}
.ls31{letter-spacing:0.374400pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls42{letter-spacing:0.385491pt;}
.ls36{letter-spacing:0.392823pt;}
.ls39{letter-spacing:0.392828pt;}
.ls49{letter-spacing:0.400000pt;}
.ls24{letter-spacing:0.432000pt;}
.ls5b{letter-spacing:0.440000pt;}
.ls38{letter-spacing:0.442070pt;}
.ls1a{letter-spacing:0.462802pt;}
.ls12{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.520000pt;}
.ls20{letter-spacing:0.528000pt;}
.ls35{letter-spacing:0.574390pt;}
.ls21{letter-spacing:0.576000pt;}
.ls30{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.720000pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.960534pt;}
.ls14{letter-spacing:1.031333pt;}
.ls4a{letter-spacing:1.067972pt;}
.ls46{letter-spacing:1.240000pt;}
.ls5c{letter-spacing:1.592000pt;}
.ls9{letter-spacing:1.738533pt;}
.ls37{letter-spacing:1.968000pt;}
.ls0{letter-spacing:2.666667pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws90{word-spacing:-12.320000pt;}
.ws40{word-spacing:-11.376000pt;}
.ws12{word-spacing:-11.136000pt;}
.ws80{word-spacing:-11.112000pt;}
.ws62{word-spacing:-10.992000pt;}
.ws3a{word-spacing:-10.896000pt;}
.ws42{word-spacing:-10.704000pt;}
.ws29{word-spacing:-10.656000pt;}
.ws41{word-spacing:-10.560000pt;}
.ws52{word-spacing:-10.512000pt;}
.ws1f{word-spacing:-10.416000pt;}
.ws54{word-spacing:-10.224000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws61{word-spacing:-9.936000pt;}
.ws99{word-spacing:-9.360000pt;}
.wsa5{word-spacing:-9.280000pt;}
.ws92{word-spacing:-9.260000pt;}
.ws98{word-spacing:-9.200000pt;}
.ws94{word-spacing:-9.080000pt;}
.wsa{word-spacing:-9.066667pt;}
.ws9a{word-spacing:-8.840000pt;}
.ws96{word-spacing:-8.720000pt;}
.ws97{word-spacing:-8.680000pt;}
.wsb2{word-spacing:-8.600000pt;}
.ws1a{word-spacing:-8.533333pt;}
.ws91{word-spacing:-8.360000pt;}
.ws93{word-spacing:-8.200000pt;}
.ws95{word-spacing:-8.160000pt;}
.ws43{word-spacing:-7.456800pt;}
.ws6{word-spacing:-7.394400pt;}
.ws53{word-spacing:-7.392000pt;}
.ws1d{word-spacing:-7.332000pt;}
.ws1e{word-spacing:-7.269600pt;}
.ws7{word-spacing:-7.238400pt;}
.ws1c{word-spacing:-7.176000pt;}
.ws1b{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws5{word-spacing:-7.082400pt;}
.ws3f{word-spacing:-6.926400pt;}
.ws6f{word-spacing:-6.895200pt;}
.ws8{word-spacing:-5.893333pt;}
.wsb5{word-spacing:-5.600000pt;}
.wsab{word-spacing:-5.400000pt;}
.wsa8{word-spacing:-5.360000pt;}
.wsa9{word-spacing:-5.320000pt;}
.wsb0{word-spacing:-5.240000pt;}
.wsad{word-spacing:-5.160000pt;}
.wsa4{word-spacing:-5.080000pt;}
.ws70{word-spacing:-4.896000pt;}
.ws57{word-spacing:-4.128000pt;}
.ws76{word-spacing:-2.304000pt;}
.ws87{word-spacing:-2.208000pt;}
.ws59{word-spacing:-2.112000pt;}
.ws7d{word-spacing:-1.920000pt;}
.ws8a{word-spacing:-1.632000pt;}
.ws3e{word-spacing:-1.584000pt;}
.ws74{word-spacing:-1.536000pt;}
.ws7b{word-spacing:-1.440000pt;}
.ws5b{word-spacing:-1.344000pt;}
.ws75{word-spacing:-1.200000pt;}
.ws8b{word-spacing:-1.152000pt;}
.ws10{word-spacing:-1.104000pt;}
.ws13{word-spacing:-1.056000pt;}
.ws17{word-spacing:-1.031333pt;}
.ws35{word-spacing:-1.008000pt;}
.ws34{word-spacing:-0.960000pt;}
.ws9c{word-spacing:-0.920000pt;}
.ws20{word-spacing:-0.912000pt;}
.wsa3{word-spacing:-0.880000pt;}
.ws15{word-spacing:-0.864000pt;}
.wsbb{word-spacing:-0.840000pt;}
.ws38{word-spacing:-0.816000pt;}
.wsb8{word-spacing:-0.800000pt;}
.ws73{word-spacing:-0.768000pt;}
.ws30{word-spacing:-0.720000pt;}
.wsae{word-spacing:-0.680000pt;}
.ws46{word-spacing:-0.672000pt;}
.ws79{word-spacing:-0.624000pt;}
.ws21{word-spacing:-0.576000pt;}
.ws25{word-spacing:-0.528000pt;}
.wsb9{word-spacing:-0.520000pt;}
.wsd{word-spacing:-0.480000pt;}
.wsb6{word-spacing:-0.440000pt;}
.ws5a{word-spacing:-0.432000pt;}
.ws2a{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.336000pt;}
.wsa1{word-spacing:-0.320000pt;}
.ws50{word-spacing:-0.288000pt;}
.ws2c{word-spacing:-0.240000pt;}
.ws8f{word-spacing:-0.234667pt;}
.wsa2{word-spacing:-0.200000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws9e{word-spacing:-0.160000pt;}
.ws36{word-spacing:-0.144000pt;}
.ws7c{word-spacing:-0.096000pt;}
.ws24{word-spacing:-0.093600pt;}
.ws23{word-spacing:-0.062400pt;}
.ws64{word-spacing:-0.048000pt;}
.wsac{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.ws9{word-spacing:-0.029467pt;}
.wsb{word-spacing:0.000000pt;}
.wsba{word-spacing:0.040000pt;}
.ws44{word-spacing:0.048000pt;}
.ws2f{word-spacing:0.096000pt;}
.ws45{word-spacing:0.144000pt;}
.wsa7{word-spacing:0.160000pt;}
.ws6c{word-spacing:0.192000pt;}
.wsa6{word-spacing:0.200000pt;}
.ws3b{word-spacing:0.240000pt;}
.ws9d{word-spacing:0.280000pt;}
.ws4c{word-spacing:0.288000pt;}
.ws2e{word-spacing:0.336000pt;}
.wsb7{word-spacing:0.360000pt;}
.ws56{word-spacing:0.384000pt;}
.ws37{word-spacing:0.432000pt;}
.wsb1{word-spacing:0.440000pt;}
.ws4a{word-spacing:0.480000pt;}
.wsaa{word-spacing:0.520000pt;}
.wse{word-spacing:0.528000pt;}
.wsaf{word-spacing:0.560000pt;}
.ws4b{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.624000pt;}
.ws86{word-spacing:0.672000pt;}
.ws3c{word-spacing:0.720000pt;}
.wsb4{word-spacing:0.760000pt;}
.ws51{word-spacing:0.768000pt;}
.ws2b{word-spacing:0.816000pt;}
.ws9b{word-spacing:0.840000pt;}
.ws39{word-spacing:0.864000pt;}
.ws9f{word-spacing:0.880000pt;}
.ws31{word-spacing:0.912000pt;}
.wsa0{word-spacing:0.920000pt;}
.ws33{word-spacing:0.960000pt;}
.wsb3{word-spacing:1.000000pt;}
.ws22{word-spacing:1.008000pt;}
.ws14{word-spacing:1.056000pt;}
.ws11{word-spacing:1.104000pt;}
.ws5c{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.200000pt;}
.ws65{word-spacing:1.248000pt;}
.ws32{word-spacing:1.296000pt;}
.ws47{word-spacing:1.344000pt;}
.ws6e{word-spacing:1.392000pt;}
.wsbd{word-spacing:1.440000pt;}
.ws27{word-spacing:1.488000pt;}
.ws63{word-spacing:1.536000pt;}
.ws84{word-spacing:1.584000pt;}
.ws18{word-spacing:1.586667pt;}
.wsf{word-spacing:1.632000pt;}
.wsbc{word-spacing:1.728000pt;}
.ws6d{word-spacing:1.776000pt;}
.wsc1{word-spacing:1.824000pt;}
.ws26{word-spacing:1.920000pt;}
.ws49{word-spacing:1.968000pt;}
.ws4d{word-spacing:2.064000pt;}
.ws48{word-spacing:2.112000pt;}
.ws55{word-spacing:2.160000pt;}
.ws7a{word-spacing:2.208000pt;}
.ws88{word-spacing:2.592000pt;}
.ws19{word-spacing:2.629333pt;}
.ws7f{word-spacing:2.640000pt;}
.ws7e{word-spacing:2.688000pt;}
.wsbe{word-spacing:2.784000pt;}
.ws6a{word-spacing:2.832000pt;}
.ws60{word-spacing:2.976000pt;}
.ws78{word-spacing:3.072000pt;}
.ws4e{word-spacing:3.216000pt;}
.ws77{word-spacing:3.360000pt;}
.ws82{word-spacing:3.552000pt;}
.ws6b{word-spacing:3.696000pt;}
.ws5f{word-spacing:3.792000pt;}
.ws8d{word-spacing:3.840000pt;}
.ws71{word-spacing:3.984000pt;}
.ws72{word-spacing:4.032000pt;}
.ws67{word-spacing:4.272000pt;}
.ws85{word-spacing:4.368000pt;}
.ws69{word-spacing:4.512000pt;}
.ws83{word-spacing:4.656000pt;}
.wsc2{word-spacing:5.040000pt;}
.ws8e{word-spacing:5.184000pt;}
.ws68{word-spacing:5.280000pt;}
.ws8c{word-spacing:5.424000pt;}
.ws5e{word-spacing:5.472000pt;}
.wsc3{word-spacing:5.568000pt;}
.wsbf{word-spacing:5.760000pt;}
.ws4f{word-spacing:5.808000pt;}
.wsc0{word-spacing:6.000000pt;}
.ws66{word-spacing:8.304000pt;}
.ws16{word-spacing:9.248000pt;}
.ws81{word-spacing:11.040000pt;}
.ws28{word-spacing:13.584000pt;}
.ws5d{word-spacing:13.968000pt;}
.ws89{word-spacing:17.568000pt;}
._17{margin-left:-18.624006pt;}
._1f{margin-left:-15.442157pt;}
._16{margin-left:-13.110933pt;}
._19{margin-left:-11.372761pt;}
._a{margin-left:-10.475733pt;}
._9{margin-left:-9.527466pt;}
._6{margin-left:-8.434705pt;}
._15{margin-left:-7.289067pt;}
._2{margin-left:-6.045866pt;}
._18{margin-left:-5.016000pt;}
._3{margin-left:-3.733333pt;}
._5{margin-left:-2.822439pt;}
._0{margin-left:-1.668267pt;}
._8{width:0.917867pt;}
._14{width:1.952166pt;}
._1b{width:2.928000pt;}
._1c{width:3.984000pt;}
._1e{width:5.466667pt;}
._13{width:7.094666pt;}
._1d{width:8.250667pt;}
._11{width:10.118400pt;}
._12{width:11.234655pt;}
._f{width:13.014880pt;}
._e{width:14.080378pt;}
._10{width:15.082405pt;}
._d{width:16.034715pt;}
._20{width:17.813333pt;}
._c{width:21.991200pt;}
._b{width:23.917711pt;}
._4{width:35.617575pt;}
._7{width:36.507689pt;}
._1a{width:42.413396pt;}
._1{width:281.988267pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.843733pt;}
.y36{bottom:2.843867pt;}
.y9d{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y35{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y8e{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y34{bottom:60.477735pt;}
.y29f{bottom:64.576797pt;}
.y1a8{bottom:68.430799pt;}
.y128{bottom:68.460132pt;}
.y16e{bottom:70.572135pt;}
.y1d6{bottom:71.126799pt;}
.y8c{bottom:72.100662pt;}
.y33{bottom:73.811069pt;}
.y44{bottom:73.885468pt;}
.y258{bottom:74.205895pt;}
.y29e{bottom:77.910131pt;}
.y99{bottom:81.220135pt;}
.y1a7{bottom:81.762799pt;}
.y127{bottom:81.792132pt;}
.y16d{bottom:83.904135pt;}
.ye8{bottom:84.433465pt;}
.y158{bottom:84.437465pt;}
.y1d5{bottom:84.458799pt;}
.y8b{bottom:85.432662pt;}
.y257{bottom:85.535895pt;}
.y20b{bottom:87.094799pt;}
.y32{bottom:87.144402pt;}
.y43{bottom:87.220135pt;}
.y98{bottom:94.552135pt;}
.y1a6{bottom:95.094799pt;}
.y126{bottom:95.124132pt;}
.y256{bottom:96.865895pt;}
.y16c{bottom:97.236135pt;}
.ye7{bottom:97.765465pt;}
.y157{bottom:97.769465pt;}
.y1d4{bottom:97.790799pt;}
.y8a{bottom:98.764662pt;}
.y20a{bottom:100.426799pt;}
.y31{bottom:100.477735pt;}
.y42{bottom:100.552135pt;}
.y29d{bottom:105.880666pt;}
.y97{bottom:107.886802pt;}
.y255{bottom:108.195895pt;}
.y1a5{bottom:108.426799pt;}
.y125{bottom:108.456132pt;}
.y16b{bottom:110.568135pt;}
.ye6{bottom:111.097465pt;}
.y156{bottom:111.101465pt;}
.y1d3{bottom:111.122799pt;}
.y89{bottom:112.096662pt;}
.y209{bottom:113.760132pt;}
.y30{bottom:113.811069pt;}
.y41{bottom:113.885468pt;}
.y29c{bottom:119.213999pt;}
.y254{bottom:119.525895pt;}
.y96{bottom:121.218802pt;}
.y124{bottom:121.788132pt;}
.y16a{bottom:123.900135pt;}
.ye5{bottom:124.429465pt;}
.y155{bottom:124.433465pt;}
.y1d2{bottom:124.454799pt;}
.y88{bottom:125.428662pt;}
.y2f{bottom:127.144402pt;}
.y40{bottom:127.218802pt;}
.y253{bottom:130.855895pt;}
.y95{bottom:134.550802pt;}
.y123{bottom:135.120132pt;}
.y169{bottom:137.232135pt;}
.ye4{bottom:137.761465pt;}
.y154{bottom:137.765465pt;}
.y1a4{bottom:137.785465pt;}
.y1d1{bottom:137.786799pt;}
.y87{bottom:138.760662pt;}
.y208{bottom:140.437465pt;}
.y2e{bottom:140.477735pt;}
.y3f{bottom:140.552135pt;}
.y252{bottom:142.185895pt;}
.y29b{bottom:145.886010pt;}
.y122{bottom:148.452132pt;}
.y168{bottom:150.564135pt;}
.ye3{bottom:151.093465pt;}
.y153{bottom:151.097465pt;}
.y1a3{bottom:151.117465pt;}
.y1d0{bottom:151.118799pt;}
.y86{bottom:152.092662pt;}
.y251{bottom:153.515895pt;}
.y207{bottom:153.769465pt;}
.y2d{bottom:153.811069pt;}
.y3e{bottom:153.892135pt;}
.ya6{bottom:157.950807pt;}
.y29a{bottom:159.218010pt;}
.y121{bottom:161.784132pt;}
.y94{bottom:163.889468pt;}
.y167{bottom:163.896135pt;}
.y152{bottom:164.429465pt;}
.y1a2{bottom:164.449465pt;}
.y1cf{bottom:164.450799pt;}
.y250{bottom:164.845895pt;}
.y85{bottom:165.424662pt;}
.y206{bottom:167.101465pt;}
.y3d{bottom:167.224135pt;}
.y2c{bottom:171.105733pt;}
.ya5{bottom:171.282807pt;}
.y299{bottom:172.550010pt;}
.y120{bottom:175.116132pt;}
.y24f{bottom:176.175895pt;}
.y93{bottom:177.221468pt;}
.y166{bottom:177.228135pt;}
.y151{bottom:177.761465pt;}
.y1a1{bottom:177.781465pt;}
.y1ce{bottom:177.782799pt;}
.y84{bottom:178.756662pt;}
.y205{bottom:180.433465pt;}
.ye2{bottom:180.438799pt;}
.y3c{bottom:180.556135pt;}
.ya4{bottom:184.622807pt;}
.y298{bottom:185.882010pt;}
.y24e{bottom:187.505895pt;}
.y11f{bottom:188.448132pt;}
.y92{bottom:190.553468pt;}
.y165{bottom:190.560135pt;}
.y150{bottom:191.113465pt;}
.y1cd{bottom:191.114799pt;}
.y83{bottom:192.088662pt;}
.y204{bottom:193.765465pt;}
.ye1{bottom:193.770799pt;}
.y3b{bottom:193.888135pt;}
.ya3{bottom:197.954807pt;}
.y24d{bottom:198.835895pt;}
.y297{bottom:199.214010pt;}
.y11e{bottom:201.780132pt;}
.y91{bottom:203.885468pt;}
.y164{bottom:203.892135pt;}
.y2a{bottom:204.064271pt;}
.y14f{bottom:204.445465pt;}
.y1cc{bottom:204.446799pt;}
.y82{bottom:205.420662pt;}
.y203{bottom:207.097465pt;}
.ye0{bottom:207.102799pt;}
.y3a{bottom:207.220135pt;}
.y24c{bottom:210.165895pt;}
.ya2{bottom:211.286807pt;}
.y296{bottom:212.547343pt;}
.y11d{bottom:215.112132pt;}
.y90{bottom:217.217468pt;}
.y163{bottom:217.224135pt;}
.y29{bottom:217.396271pt;}
.y14e{bottom:217.777465pt;}
.y1cb{bottom:217.778799pt;}
.y81{bottom:218.752662pt;}
.y202{bottom:220.429465pt;}
.ydf{bottom:220.434799pt;}
.y39{bottom:220.552135pt;}
.y24b{bottom:221.495895pt;}
.ya1{bottom:224.618807pt;}
.y11c{bottom:228.444132pt;}
.y162{bottom:230.556135pt;}
.y28{bottom:230.729605pt;}
.y14d{bottom:231.109465pt;}
.y1ca{bottom:231.110799pt;}
.y80{bottom:232.084662pt;}
.y24a{bottom:232.825895pt;}
.y201{bottom:233.761465pt;}
.yde{bottom:233.766799pt;}
.y38{bottom:233.884135pt;}
.ya0{bottom:237.950807pt;}
.y295{bottom:239.235323pt;}
.y11b{bottom:241.776132pt;}
.y161{bottom:243.888135pt;}
.y27{bottom:244.065605pt;}
.y249{bottom:244.155895pt;}
.y14c{bottom:244.441465pt;}
.y1c9{bottom:244.442799pt;}
.y7f{bottom:245.416662pt;}
.y200{bottom:247.094799pt;}
.ydd{bottom:247.098799pt;}
.y9f{bottom:251.282807pt;}
.y294{bottom:252.567323pt;}
.y11a{bottom:255.108132pt;}
.y248{bottom:255.485895pt;}
.y160{bottom:257.220135pt;}
.y26{bottom:257.397605pt;}
.y9c{bottom:257.470806pt;}
.y14b{bottom:257.773465pt;}
.y1c8{bottom:257.774799pt;}
.y7e{bottom:258.748662pt;}
.y1ff{bottom:260.428132pt;}
.ydc{bottom:260.430799pt;}
.y9e{bottom:264.614807pt;}
.y293{bottom:265.899323pt;}
.y247{bottom:266.815895pt;}
.y119{bottom:268.440132pt;}
.y15f{bottom:270.552135pt;}
.y25{bottom:270.729605pt;}
.y9b{bottom:270.802806pt;}
.y14a{bottom:271.105465pt;}
.y1c7{bottom:271.106799pt;}
.y7d{bottom:272.080662pt;}
.y1fe{bottom:273.760132pt;}
.ydb{bottom:273.762799pt;}
.y48{bottom:275.960400pt;}
.y246{bottom:278.145895pt;}
.y292{bottom:279.231323pt;}
.y118{bottom:281.772132pt;}
.y15e{bottom:283.886802pt;}
.y24{bottom:284.120280pt;}
.y9a{bottom:284.134806pt;}
.y149{bottom:284.437465pt;}
.y1c6{bottom:284.438799pt;}
.y7c{bottom:285.412662pt;}
.yda{bottom:287.094799pt;}
.y47{bottom:289.292400pt;}
.y245{bottom:289.475895pt;}
.y291{bottom:292.563323pt;}
.y117{bottom:295.104132pt;}
.y15d{bottom:297.218802pt;}
.y23{bottom:297.452280pt;}
.y148{bottom:297.769465pt;}
.y1c5{bottom:297.770799pt;}
.y7b{bottom:298.744662pt;}
.yd9{bottom:300.430799pt;}
.y244{bottom:300.805895pt;}
.y46{bottom:302.624400pt;}
.y1fd{bottom:303.096132pt;}
.y290{bottom:305.895323pt;}
.y116{bottom:308.436132pt;}
.y15c{bottom:310.554781pt;}
.y22{bottom:310.784280pt;}
.y147{bottom:311.101465pt;}
.y1c4{bottom:311.102799pt;}
.y7a{bottom:312.076662pt;}
.y243{bottom:312.135895pt;}
.yd8{bottom:313.762799pt;}
.y45{bottom:315.956400pt;}
.y1fc{bottom:316.428132pt;}
.y28f{bottom:319.227323pt;}
.y115{bottom:321.768132pt;}
.y242{bottom:323.465895pt;}
.y15b{bottom:323.886781pt;}
.y21{bottom:324.116280pt;}
.y146{bottom:324.433465pt;}
.y1c3{bottom:324.434799pt;}
.y79{bottom:325.408662pt;}
.yd7{bottom:327.094799pt;}
.y1fb{bottom:329.761465pt;}
.y28e{bottom:332.559323pt;}
.y241{bottom:334.795895pt;}
.y114{bottom:335.100132pt;}
.y15a{bottom:337.218781pt;}
.y20{bottom:337.448280pt;}
.y145{bottom:337.765465pt;}
.y1c2{bottom:337.766799pt;}
.y78{bottom:338.743349pt;}
.yd6{bottom:340.453465pt;}
.y1fa{bottom:343.094799pt;}
.y28d{bottom:345.891323pt;}
.y240{bottom:346.125895pt;}
.y113{bottom:348.432132pt;}
.y159{bottom:350.550781pt;}
.y144{bottom:351.097465pt;}
.y1c1{bottom:351.098799pt;}
.y77{bottom:352.075349pt;}
.yd5{bottom:353.785465pt;}
.y1f9{bottom:356.429465pt;}
.y23f{bottom:357.455895pt;}
.y28c{bottom:359.223323pt;}
.y112{bottom:361.764132pt;}
.y143{bottom:364.429465pt;}
.y1c0{bottom:364.430799pt;}
.y76{bottom:365.428682pt;}
.yd4{bottom:367.117465pt;}
.y23e{bottom:368.785895pt;}
.y1f8{bottom:369.761465pt;}
.y28b{bottom:372.555323pt;}
.y111{bottom:375.096132pt;}
.y1f{bottom:377.576280pt;}
.y142{bottom:377.761465pt;}
.y1bf{bottom:377.762799pt;}
.y75{bottom:378.760682pt;}
.y23d{bottom:380.115895pt;}
.yd3{bottom:380.449465pt;}
.y1f7{bottom:383.093465pt;}
.y28a{bottom:385.887323pt;}
.y110{bottom:388.428132pt;}
.y1be{bottom:391.094799pt;}
.y141{bottom:391.096132pt;}
.y1a0{bottom:391.098799pt;}
.y179{bottom:391.130793pt;}
.y23c{bottom:391.445895pt;}
.y74{bottom:392.092682pt;}
.y1e{bottom:392.240280pt;}
.yd2{bottom:393.781465pt;}
.y289{bottom:399.219323pt;}
.y10f{bottom:401.760132pt;}
.y23b{bottom:402.775895pt;}
.y140{bottom:404.428132pt;}
.y19f{bottom:404.430799pt;}
.y1bd{bottom:404.440132pt;}
.y178{bottom:404.462793pt;}
.y73{bottom:405.424682pt;}
.y1d{bottom:406.904280pt;}
.yd1{bottom:407.113465pt;}
.y1f6{bottom:412.429465pt;}
.y288{bottom:412.551323pt;}
.y23a{bottom:414.105895pt;}
.y13f{bottom:417.761465pt;}
.y19e{bottom:417.762799pt;}
.y1bc{bottom:417.772132pt;}
.y177{bottom:417.794793pt;}
.y72{bottom:418.756682pt;}
.yd0{bottom:420.445465pt;}
.y1c{bottom:421.568280pt;}
.y239{bottom:425.435895pt;}
.y1f5{bottom:425.761465pt;}
.y287{bottom:425.883323pt;}
.y13e{bottom:431.094799pt;}
.y1bb{bottom:431.104132pt;}
.y10e{bottom:431.124173pt;}
.y176{bottom:431.126793pt;}
.y71{bottom:432.088682pt;}
.ycf{bottom:433.777465pt;}
.y1b{bottom:436.232280pt;}
.y238{bottom:436.765895pt;}
.y1f4{bottom:439.096132pt;}
.y286{bottom:439.215323pt;}
.y13d{bottom:444.428132pt;}
.y19d{bottom:444.429465pt;}
.y1ba{bottom:444.436132pt;}
.y10d{bottom:444.456173pt;}
.y175{bottom:444.458793pt;}
.y70{bottom:445.420682pt;}
.yce{bottom:447.109465pt;}
.y237{bottom:448.095895pt;}
.y1a{bottom:450.896280pt;}
.y1f3{bottom:452.428132pt;}
.y285{bottom:452.547323pt;}
.y19c{bottom:457.761465pt;}
.y1b9{bottom:457.768132pt;}
.y13c{bottom:457.785506pt;}
.y10c{bottom:457.788173pt;}
.y174{bottom:457.790793pt;}
.y6f{bottom:458.752682pt;}
.y236{bottom:459.425895pt;}
.ycd{bottom:460.441465pt;}
.y19{bottom:465.560280pt;}
.y1f2{bottom:465.760132pt;}
.y284{bottom:465.880656pt;}
.y235{bottom:470.755895pt;}
.y19b{bottom:471.094799pt;}
.y1b8{bottom:471.100132pt;}
.y13b{bottom:471.117506pt;}
.y10b{bottom:471.120173pt;}
.y173{bottom:471.122793pt;}
.y6e{bottom:472.084682pt;}
.ycc{bottom:473.773465pt;}
.y18{bottom:480.224280pt;}
.y234{bottom:482.085895pt;}
.y19a{bottom:484.428132pt;}
.y1b7{bottom:484.432132pt;}
.y13a{bottom:484.449506pt;}
.y10a{bottom:484.452173pt;}
.y172{bottom:484.458793pt;}
.y6d{bottom:485.416682pt;}
.ycb{bottom:487.105465pt;}
.y283{bottom:492.687363pt;}
.y233{bottom:493.415895pt;}
.y17{bottom:494.888280pt;}
.y1f1{bottom:495.106799pt;}
.y1b6{bottom:497.764132pt;}
.y199{bottom:497.772132pt;}
.y139{bottom:497.781506pt;}
.y109{bottom:497.784173pt;}
.y171{bottom:497.790793pt;}
.y6c{bottom:498.748682pt;}
.yca{bottom:500.437465pt;}
.y282{bottom:504.017363pt;}
.y232{bottom:504.745895pt;}
.y1f0{bottom:508.438799pt;}
.y16{bottom:509.552280pt;}
.y1b5{bottom:511.096132pt;}
.y198{bottom:511.104132pt;}
.y138{bottom:511.113506pt;}
.y108{bottom:511.116173pt;}
.y170{bottom:511.122793pt;}
.y6b{bottom:512.080682pt;}
.yc9{bottom:513.769465pt;}
.y281{bottom:515.347363pt;}
.y231{bottom:516.075895pt;}
.y1ef{bottom:521.770799pt;}
.y15{bottom:524.216280pt;}
.y1b4{bottom:524.428132pt;}
.y197{bottom:524.436132pt;}
.y137{bottom:524.445506pt;}
.y107{bottom:524.448173pt;}
.y16f{bottom:524.454793pt;}
.y6a{bottom:525.412682pt;}
.y280{bottom:526.677363pt;}
.yc8{bottom:527.101465pt;}
.y230{bottom:527.405895pt;}
.y1ee{bottom:535.102799pt;}
.y1b3{bottom:537.760132pt;}
.y196{bottom:537.768132pt;}
.y136{bottom:537.777506pt;}
.y106{bottom:537.780173pt;}
.y27f{bottom:538.007363pt;}
.y22f{bottom:538.735895pt;}
.y69{bottom:538.744682pt;}
.y14{bottom:538.880280pt;}
.yc7{bottom:540.433465pt;}
.y1ed{bottom:548.434799pt;}
.y27e{bottom:549.337363pt;}
.y22e{bottom:550.065895pt;}
.y195{bottom:551.100132pt;}
.y135{bottom:551.109506pt;}
.y105{bottom:551.112173pt;}
.y68{bottom:552.076682pt;}
.y13{bottom:553.544280pt;}
.yc6{bottom:553.765465pt;}
.y27d{bottom:560.667363pt;}
.y22d{bottom:561.395895pt;}
.y1ec{bottom:561.766799pt;}
.y194{bottom:564.432132pt;}
.y134{bottom:564.441506pt;}
.y104{bottom:564.444173pt;}
.y67{bottom:565.408682pt;}
.yc5{bottom:567.097465pt;}
.y1b2{bottom:567.106839pt;}
.y12{bottom:568.208280pt;}
.y27c{bottom:571.997363pt;}
.y22c{bottom:572.725895pt;}
.y1eb{bottom:575.098799pt;}
.y193{bottom:577.764132pt;}
.y133{bottom:577.773506pt;}
.y103{bottom:577.776173pt;}
.y66{bottom:578.740682pt;}
.yc4{bottom:580.429465pt;}
.y1b1{bottom:580.438839pt;}
.y11{bottom:582.872280pt;}
.y27b{bottom:583.327363pt;}
.y22b{bottom:584.055895pt;}
.y1ea{bottom:588.430799pt;}
.y192{bottom:591.096132pt;}
.y132{bottom:591.105506pt;}
.y102{bottom:591.108173pt;}
.y65{bottom:592.074015pt;}
.yc3{bottom:593.761465pt;}
.y1b0{bottom:593.770839pt;}
.y27a{bottom:594.657363pt;}
.y22a{bottom:595.385895pt;}
.y10{bottom:597.536280pt;}
.y1e9{bottom:601.762799pt;}
.y191{bottom:604.428132pt;}
.y131{bottom:604.437506pt;}
.y101{bottom:604.440173pt;}
.y279{bottom:605.987363pt;}
.y229{bottom:606.715895pt;}
.yc2{bottom:607.097465pt;}
.y1af{bottom:607.102839pt;}
.yf{bottom:612.200280pt;}
.y1e8{bottom:615.094799pt;}
.y278{bottom:617.317363pt;}
.y190{bottom:617.760132pt;}
.y130{bottom:617.769506pt;}
.y100{bottom:617.772173pt;}
.y228{bottom:618.045895pt;}
.yc1{bottom:620.429465pt;}
.y1ae{bottom:620.434839pt;}
.y64{bottom:621.412682pt;}
.ye{bottom:626.864280pt;}
.y1e7{bottom:628.430799pt;}
.y277{bottom:628.647363pt;}
.y227{bottom:629.375895pt;}
.y12f{bottom:631.101506pt;}
.yff{bottom:631.104173pt;}
.yc0{bottom:633.761465pt;}
.y1ad{bottom:633.766839pt;}
.y63{bottom:634.744682pt;}
.y276{bottom:639.977363pt;}
.y226{bottom:640.705895pt;}
.yd{bottom:641.528280pt;}
.y1e6{bottom:641.762799pt;}
.y12e{bottom:644.433506pt;}
.yfe{bottom:644.436173pt;}
.ybf{bottom:647.097506pt;}
.y1ac{bottom:647.098839pt;}
.y18f{bottom:647.110839pt;}
.y62{bottom:648.076682pt;}
.y275{bottom:651.307363pt;}
.y225{bottom:652.035895pt;}
.y1e5{bottom:655.094799pt;}
.y12d{bottom:657.765506pt;}
.yfd{bottom:657.768173pt;}
.ybe{bottom:660.429506pt;}
.y1ab{bottom:660.430839pt;}
.y18e{bottom:660.442839pt;}
.y61{bottom:661.408682pt;}
.y274{bottom:662.637363pt;}
.y224{bottom:663.365895pt;}
.yc{bottom:668.194906pt;}
.y1e4{bottom:668.430839pt;}
.y12c{bottom:671.097506pt;}
.yfc{bottom:671.100173pt;}
.ybd{bottom:673.761506pt;}
.y1aa{bottom:673.762839pt;}
.y18d{bottom:673.774839pt;}
.y273{bottom:673.967363pt;}
.y223{bottom:674.695895pt;}
.y60{bottom:674.748641pt;}
.y1e3{bottom:681.762839pt;}
.yb{bottom:684.194906pt;}
.y12b{bottom:684.429506pt;}
.yfb{bottom:684.432173pt;}
.y272{bottom:685.297363pt;}
.y222{bottom:686.025895pt;}
.y1a9{bottom:687.094839pt;}
.y18c{bottom:687.106839pt;}
.ybc{bottom:687.121506pt;}
.y5f{bottom:688.080641pt;}
.y1e2{bottom:695.094839pt;}
.y271{bottom:696.627363pt;}
.y221{bottom:697.355895pt;}
.y12a{bottom:697.761506pt;}
.yfa{bottom:697.764173pt;}
.ya{bottom:700.194906pt;}
.y18b{bottom:700.438839pt;}
.ybb{bottom:700.453506pt;}
.y5e{bottom:701.412641pt;}
.y270{bottom:707.957363pt;}
.y1e1{bottom:708.428173pt;}
.y220{bottom:708.685895pt;}
.y129{bottom:711.093506pt;}
.yf9{bottom:711.096173pt;}
.y18a{bottom:713.770839pt;}
.yba{bottom:713.785506pt;}
.y5d{bottom:714.744641pt;}
.y9{bottom:716.194906pt;}
.y26f{bottom:719.287363pt;}
.y21f{bottom:720.015895pt;}
.y1e0{bottom:721.761506pt;}
.yf8{bottom:724.428173pt;}
.y2af{bottom:724.922401pt;}
.y189{bottom:727.102839pt;}
.yb9{bottom:727.117506pt;}
.y5c{bottom:728.076641pt;}
.y26e{bottom:730.617363pt;}
.y21e{bottom:731.345895pt;}
.y8{bottom:732.194906pt;}
.y1df{bottom:735.097506pt;}
.yf7{bottom:737.760173pt;}
.y188{bottom:740.434839pt;}
.yb8{bottom:740.449506pt;}
.y5b{bottom:741.408641pt;}
.y26d{bottom:741.947363pt;}
.y21d{bottom:742.675895pt;}
.y1de{bottom:748.429506pt;}
.y2ae{bottom:751.586400pt;}
.y26c{bottom:753.277363pt;}
.y187{bottom:753.766839pt;}
.yb7{bottom:753.781506pt;}
.y21c{bottom:754.005895pt;}
.y5a{bottom:754.743308pt;}
.y7{bottom:761.517572pt;}
.y1dd{bottom:761.761506pt;}
.y26b{bottom:764.607363pt;}
.y2ad{bottom:764.918400pt;}
.y21b{bottom:765.335895pt;}
.y186{bottom:767.098839pt;}
.yf6{bottom:767.112173pt;}
.yb6{bottom:767.113506pt;}
.y59{bottom:768.075308pt;}
.y1dc{bottom:775.093506pt;}
.y26a{bottom:775.937363pt;}
.y21a{bottom:776.665895pt;}
.y2ac{bottom:778.250400pt;}
.y185{bottom:780.430839pt;}
.yf5{bottom:780.444173pt;}
.yb5{bottom:780.445506pt;}
.y58{bottom:781.408641pt;}
.y269{bottom:787.267363pt;}
.y219{bottom:787.995895pt;}
.y2ab{bottom:791.582400pt;}
.y184{bottom:793.762839pt;}
.yf4{bottom:793.776173pt;}
.yb4{bottom:793.777506pt;}
.y57{bottom:794.743308pt;}
.y268{bottom:798.597363pt;}
.y218{bottom:799.325895pt;}
.y6{bottom:801.522906pt;}
.y1db{bottom:804.430839pt;}
.y2aa{bottom:804.914400pt;}
.y183{bottom:807.094839pt;}
.yf3{bottom:807.108173pt;}
.yb3{bottom:807.109506pt;}
.y56{bottom:808.075308pt;}
.y267{bottom:809.927363pt;}
.y217{bottom:810.655895pt;}
.y1da{bottom:817.762839pt;}
.y2a9{bottom:818.246400pt;}
.y182{bottom:820.434839pt;}
.yf2{bottom:820.440173pt;}
.yb2{bottom:820.441506pt;}
.y266{bottom:821.257363pt;}
.y55{bottom:821.411308pt;}
.y216{bottom:821.985895pt;}
.y1d9{bottom:831.094839pt;}
.y2a8{bottom:831.578400pt;}
.y265{bottom:832.587363pt;}
.y215{bottom:833.315895pt;}
.y181{bottom:833.766839pt;}
.yf1{bottom:833.772173pt;}
.yb1{bottom:833.773506pt;}
.y54{bottom:834.743308pt;}
.y5{bottom:841.528239pt;}
.y264{bottom:843.917363pt;}
.y1d8{bottom:844.426839pt;}
.y214{bottom:844.645895pt;}
.y2a7{bottom:844.910400pt;}
.y180{bottom:847.098839pt;}
.yf0{bottom:847.104173pt;}
.yb0{bottom:847.105506pt;}
.y53{bottom:848.075308pt;}
.y2b{bottom:848.326009pt;}
.y263{bottom:855.247363pt;}
.y213{bottom:855.975895pt;}
.y1d7{bottom:857.760173pt;}
.y17f{bottom:860.430839pt;}
.yef{bottom:860.436173pt;}
.yaf{bottom:860.437506pt;}
.y52{bottom:861.416641pt;}
.y2a6{bottom:864.901067pt;}
.y262{bottom:866.577363pt;}
.y212{bottom:867.305895pt;}
.y17e{bottom:873.762839pt;}
.yee{bottom:873.768173pt;}
.yae{bottom:873.769506pt;}
.y51{bottom:874.748641pt;}
.y261{bottom:877.907363pt;}
.y2a5{bottom:878.233067pt;}
.y211{bottom:878.635895pt;}
.y17d{bottom:887.094839pt;}
.yed{bottom:887.100173pt;}
.yad{bottom:887.101506pt;}
.y50{bottom:888.080641pt;}
.y260{bottom:889.237363pt;}
.y210{bottom:889.965895pt;}
.y2a4{bottom:898.237067pt;}
.y17c{bottom:900.428173pt;}
.yec{bottom:900.432173pt;}
.yac{bottom:900.433506pt;}
.y25f{bottom:900.567363pt;}
.y20f{bottom:901.295895pt;}
.y4f{bottom:901.412641pt;}
.y25e{bottom:911.897363pt;}
.y20e{bottom:912.625895pt;}
.y17b{bottom:913.761506pt;}
.yeb{bottom:913.764173pt;}
.yab{bottom:913.765506pt;}
.y4e{bottom:914.744641pt;}
.y2a3{bottom:918.241067pt;}
.y25d{bottom:923.227363pt;}
.y20d{bottom:923.959229pt;}
.y17a{bottom:927.094839pt;}
.yea{bottom:927.096173pt;}
.yaa{bottom:927.097506pt;}
.y4d{bottom:928.076641pt;}
.y25c{bottom:934.557363pt;}
.y2a2{bottom:938.245067pt;}
.ye9{bottom:940.428173pt;}
.ya9{bottom:940.429506pt;}
.y4c{bottom:941.408641pt;}
.y25b{bottom:945.887363pt;}
.y2a1{bottom:951.577067pt;}
.ya8{bottom:953.761506pt;}
.y4b{bottom:954.741975pt;}
.y25a{bottom:957.217363pt;}
.y2a0{bottom:964.910400pt;}
.ya7{bottom:967.093506pt;}
.y20c{bottom:967.959229pt;}
.y4a{bottom:968.073975pt;}
.y259{bottom:968.547363pt;}
.y49{bottom:1013.902507pt;}
.y8f{bottom:1013.996908pt;}
.y37{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h10{height:21.193555pt;}
.h2{height:30.687500pt;}
.h33{height:31.476562pt;}
.h9{height:34.523438pt;}
.h12{height:37.038880pt;}
.h34{height:39.560000pt;}
.h35{height:40.080000pt;}
.h3{height:40.604167pt;}
.h36{height:40.960000pt;}
.h1f{height:42.195312pt;}
.h13{height:43.120594pt;}
.h11{height:43.141927pt;}
.h7{height:43.600260pt;}
.h6{height:43.718750pt;}
.h8{height:43.718913pt;}
.h14{height:43.887578pt;}
.h37{height:44.834667pt;}
.ha{height:45.703125pt;}
.hb{height:47.472000pt;}
.h32{height:47.523473pt;}
.h24{height:47.544605pt;}
.h30{height:47.549938pt;}
.h26{height:47.550101pt;}
.h29{height:47.555271pt;}
.h20{height:47.571434pt;}
.h2a{height:47.576767pt;}
.h31{height:47.603434pt;}
.h2d{height:47.608767pt;}
.h1b{height:47.620248pt;}
.h2c{height:47.624605pt;}
.h23{height:47.624767pt;}
.h15{height:47.624808pt;}
.h1e{height:47.624930pt;}
.h2e{height:47.635434pt;}
.h2b{height:47.640361pt;}
.h25{height:47.640605pt;}
.hc{height:47.640767pt;}
.h2f{height:47.640806pt;}
.h1c{height:47.641581pt;}
.he{height:47.646101pt;}
.h17{height:47.646141pt;}
.h1d{height:47.646915pt;}
.h28{height:47.651271pt;}
.hd{height:47.651434pt;}
.h18{height:47.651454pt;}
.h16{height:47.651475pt;}
.h1a{height:47.652248pt;}
.h27{height:47.656605pt;}
.h22{height:47.656767pt;}
.h21{height:48.096000pt;}
.h19{height:49.152000pt;}
.h4{height:50.755208pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.872399pt;}
.xb{left:225.874003pt;}
.xc{left:268.887736pt;}
.x4{left:521.612549pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.xa{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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