
    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_0eb19bcad061c15612b87990.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_65336e6bd53bd784a3800697.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_e42c84a495c8a94f9f42ab67.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_c2dd0ca5e500b6e2923677cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_241daea57c0b6b33b31fd84a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.870000;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_6428bb18e816fff098dff17d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717000;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_8e958af8f3b362ab04585fcb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.870000;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_6428bb18e816fff098dff17d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.717000;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_af182aba54562c325b7cb168.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.450000;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_a9322d430bfd0b96128a87c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.870000;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);}
.v5{vertical-align:-21.000000px;}
.va{vertical-align:-17.850000px;}
.v3{vertical-align:-16.800000px;}
.v9{vertical-align:-14.298000px;}
.v7{vertical-align:-9.553200px;}
.v6{vertical-align:-8.430600px;}
.v8{vertical-align:-6.030600px;}
.v1{vertical-align:-1.680000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.030600px;}
.v2{vertical-align:21.000000px;}
.v4{vertical-align:25.200000px;}
.ls19{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.840000px;}
.ls12{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.102000px;}
.ls20{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.010306px;}
.ls10{letter-spacing:0.010466px;}
.lse{letter-spacing:0.013520px;}
.lsa{letter-spacing:0.014149px;}
.lsc{letter-spacing:0.015106px;}
.ls18{letter-spacing:0.197400px;}
.ls13{letter-spacing:2.992680px;}
.ls1e{letter-spacing:6.000000px;}
.ls1{letter-spacing:9.600000px;}
.ls4{letter-spacing:10.200000px;}
.ls2{letter-spacing:10.800000px;}
.ls9{letter-spacing:13.270194px;}
.ls16{letter-spacing:16.268448px;}
.ls14{letter-spacing:16.272180px;}
.ls17{letter-spacing:16.272384px;}
.lsd{letter-spacing:16.273248px;}
.lsf{letter-spacing:16.274184px;}
.ls6{letter-spacing:16.617594px;}
.ls8{letter-spacing:16.617601px;}
.ls15{letter-spacing:19.588800px;}
.ls7{letter-spacing:19.591200px;}
.lsb{letter-spacing:19.595400px;}
.ls1a{letter-spacing:19.596000px;}
.ls3{letter-spacing:51.024000px;}
.ls11{letter-spacing:350.088600px;}
.ls1c{letter-spacing:880.077000px;}
.ls1d{letter-spacing:925.077000px;}
.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;}
}
.ws6{word-spacing:-21.600000px;}
.wsc3{word-spacing:-21.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws60{word-spacing:-14.160000px;}
.ws74{word-spacing:-12.750000px;}
.wsec{word-spacing:-12.699000px;}
.ws5{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.700000px;}
.ws90{word-spacing:-11.250000px;}
.ws8f{word-spacing:-10.710000px;}
.ws1{word-spacing:-10.500000px;}
.wsf5{word-spacing:-10.200000px;}
.ws54{word-spacing:-9.750000px;}
.wsa{word-spacing:-8.112000px;}
.ws4{word-spacing:-7.800000px;}
.wsc8{word-spacing:-6.895200px;}
.ws9d{word-spacing:-4.140000px;}
.ws11f{word-spacing:-3.723000px;}
.ws9b{word-spacing:-3.240000px;}
.ws7d{word-spacing:-3.000000px;}
.ws3c{word-spacing:-2.940000px;}
.ws48{word-spacing:-2.880000px;}
.ws93{word-spacing:-2.820000px;}
.wsa2{word-spacing:-2.760000px;}
.wsa9{word-spacing:-2.700000px;}
.ws4f{word-spacing:-2.640000px;}
.wsca{word-spacing:-2.600995px;}
.ws7b{word-spacing:-2.579994px;}
.ws9f{word-spacing:-2.520000px;}
.ws7c{word-spacing:-2.460000px;}
.wsb3{word-spacing:-2.400000px;}
.ws55{word-spacing:-2.340000px;}
.ws5c{word-spacing:-2.280000px;}
.ws82{word-spacing:-2.220000px;}
.wsae{word-spacing:-2.160000px;}
.wsa1{word-spacing:-2.100000px;}
.ws2f{word-spacing:-2.040000px;}
.ws10f{word-spacing:-1.989000px;}
.ws9e{word-spacing:-1.980000px;}
.ws112{word-spacing:-1.938000px;}
.wsc4{word-spacing:-1.920000px;}
.ws77{word-spacing:-1.860000px;}
.wscc{word-spacing:-1.836000px;}
.ws59{word-spacing:-1.800000px;}
.ws115{word-spacing:-1.785000px;}
.ws5d{word-spacing:-1.740000px;}
.ws11b{word-spacing:-1.734000px;}
.ws5b{word-spacing:-1.680000px;}
.ws2e{word-spacing:-1.620000px;}
.ws42{word-spacing:-1.560000px;}
.wsc9{word-spacing:-1.530000px;}
.ws27{word-spacing:-1.500000px;}
.wsea{word-spacing:-1.479000px;}
.ws49{word-spacing:-1.440000px;}
.ws76{word-spacing:-1.380000px;}
.wsd6{word-spacing:-1.377000px;}
.ws107{word-spacing:-1.326000px;}
.ws4a{word-spacing:-1.320000px;}
.wse3{word-spacing:-1.275000px;}
.ws7a{word-spacing:-1.260000px;}
.ws24{word-spacing:-1.200000px;}
.wse1{word-spacing:-1.173000px;}
.wscf{word-spacing:-1.122000px;}
.ws18{word-spacing:-1.080000px;}
.wsd5{word-spacing:-1.071000px;}
.ws4b{word-spacing:-1.020000px;}
.ws92{word-spacing:-0.960000px;}
.wsfa{word-spacing:-0.918000px;}
.ws5f{word-spacing:-0.900000px;}
.wsc6{word-spacing:-0.840000px;}
.ws108{word-spacing:-0.816000px;}
.wsa6{word-spacing:-0.780000px;}
.ws32{word-spacing:-0.720000px;}
.ws114{word-spacing:-0.714000px;}
.wse9{word-spacing:-0.663000px;}
.wsb5{word-spacing:-0.660000px;}
.ws6f{word-spacing:-0.600000px;}
.wsd3{word-spacing:-0.561000px;}
.ws17{word-spacing:-0.540000px;}
.ws9a{word-spacing:-0.480000px;}
.wsd0{word-spacing:-0.459000px;}
.ws1d{word-spacing:-0.420000px;}
.ws21{word-spacing:-0.360000px;}
.wsf2{word-spacing:-0.306000px;}
.ws3a{word-spacing:-0.300000px;}
.wsdb{word-spacing:-0.255000px;}
.wsb0{word-spacing:-0.240000px;}
.wse5{word-spacing:-0.204000px;}
.ws22{word-spacing:-0.180000px;}
.wsd7{word-spacing:-0.153000px;}
.ws63{word-spacing:-0.120000px;}
.wse8{word-spacing:-0.102000px;}
.ws66{word-spacing:-0.060000px;}
.ws70{word-spacing:-0.059776px;}
.ws11d{word-spacing:-0.051000px;}
.ws98{word-spacing:-0.044832px;}
.ws0{word-spacing:0.000000px;}
.wsf6{word-spacing:0.051000px;}
.ws31{word-spacing:0.060000px;}
.wsdd{word-spacing:0.102000px;}
.ws37{word-spacing:0.120000px;}
.ws3f{word-spacing:0.180000px;}
.ws65{word-spacing:0.240000px;}
.wse6{word-spacing:0.255000px;}
.ws20{word-spacing:0.294000px;}
.wsaf{word-spacing:0.300000px;}
.wsd9{word-spacing:0.306000px;}
.wsdc{word-spacing:0.357000px;}
.ws23{word-spacing:0.420000px;}
.ws81{word-spacing:0.480000px;}
.ws5a{word-spacing:0.540000px;}
.ws3b{word-spacing:0.600000px;}
.ws118{word-spacing:0.612000px;}
.ws87{word-spacing:0.660000px;}
.wseb{word-spacing:0.663000px;}
.wse0{word-spacing:0.714000px;}
.ws34{word-spacing:0.720000px;}
.ws29{word-spacing:0.780000px;}
.ws62{word-spacing:0.840000px;}
.wsc7{word-spacing:0.960000px;}
.wsf4{word-spacing:0.969000px;}
.ws39{word-spacing:1.020000px;}
.ws100{word-spacing:1.071000px;}
.ws44{word-spacing:1.080000px;}
.wsd{word-spacing:1.140000px;}
.ws7e{word-spacing:1.200000px;}
.wsde{word-spacing:1.224000px;}
.ws10{word-spacing:1.260000px;}
.wsb9{word-spacing:1.320000px;}
.ws10a{word-spacing:1.326000px;}
.ws113{word-spacing:1.377000px;}
.ws3d{word-spacing:1.380000px;}
.wsfd{word-spacing:1.428000px;}
.ws2a{word-spacing:1.440000px;}
.wsf9{word-spacing:1.479000px;}
.ws25{word-spacing:1.500000px;}
.ws78{word-spacing:1.620000px;}
.wsd8{word-spacing:1.632000px;}
.ws6b{word-spacing:1.680000px;}
.wsfe{word-spacing:1.683000px;}
.wsee{word-spacing:1.734000px;}
.wsaa{word-spacing:1.740000px;}
.ws69{word-spacing:1.800000px;}
.ws101{word-spacing:1.836000px;}
.ws28{word-spacing:1.860000px;}
.wsf3{word-spacing:1.887000px;}
.wsa8{word-spacing:1.920000px;}
.ws9{word-spacing:1.980000px;}
.ws38{word-spacing:2.040000px;}
.wsef{word-spacing:2.091000px;}
.ws2b{word-spacing:2.100000px;}
.wsed{word-spacing:2.142000px;}
.ws4d{word-spacing:2.160000px;}
.ws11e{word-spacing:2.192995px;}
.ws47{word-spacing:2.220000px;}
.wsd4{word-spacing:2.244000px;}
.ws50{word-spacing:2.280000px;}
.wsa0{word-spacing:2.340000px;}
.wse7{word-spacing:2.346000px;}
.ws26{word-spacing:2.400000px;}
.ws67{word-spacing:2.460000px;}
.ws3e{word-spacing:2.520000px;}
.wscd{word-spacing:2.550000px;}
.ws6a{word-spacing:2.579994px;}
.wsb1{word-spacing:2.640000px;}
.ws40{word-spacing:2.700000px;}
.ws116{word-spacing:2.703000px;}
.ws56{word-spacing:2.820000px;}
.ws120{word-spacing:2.856000px;}
.wsb2{word-spacing:2.880000px;}
.wsce{word-spacing:2.907000px;}
.ws15{word-spacing:2.940000px;}
.ws105{word-spacing:2.958000px;}
.ws91{word-spacing:3.000000px;}
.ws1e{word-spacing:3.059994px;}
.wsb{word-spacing:3.120000px;}
.ws14{word-spacing:3.180000px;}
.ws2d{word-spacing:3.240000px;}
.wsa3{word-spacing:3.300000px;}
.ws16{word-spacing:3.360000px;}
.wsf8{word-spacing:3.366000px;}
.ws30{word-spacing:3.420000px;}
.ws2c{word-spacing:3.480000px;}
.ws106{word-spacing:3.519000px;}
.ws86{word-spacing:3.540000px;}
.ws36{word-spacing:3.600000px;}
.ws58{word-spacing:3.660000px;}
.ws102{word-spacing:3.672000px;}
.ws33{word-spacing:3.720000px;}
.ws111{word-spacing:3.723000px;}
.ws96{word-spacing:3.780000px;}
.ws4e{word-spacing:3.840000px;}
.wsff{word-spacing:3.876000px;}
.ws52{word-spacing:3.900000px;}
.ws51{word-spacing:3.960000px;}
.ws68{word-spacing:4.020000px;}
.wse{word-spacing:4.080000px;}
.wsfc{word-spacing:4.131000px;}
.wsc5{word-spacing:4.140000px;}
.ws110{word-spacing:4.182000px;}
.ws64{word-spacing:4.200000px;}
.wsfb{word-spacing:4.233000px;}
.ws5e{word-spacing:4.259994px;}
.ws11a{word-spacing:4.284000px;}
.wsc{word-spacing:4.320000px;}
.ws7f{word-spacing:4.380000px;}
.ws11c{word-spacing:4.436995px;}
.ws53{word-spacing:4.440000px;}
.wscb{word-spacing:4.488000px;}
.wsb8{word-spacing:4.500000px;}
.ws83{word-spacing:4.560000px;}
.ws43{word-spacing:4.620000px;}
.ws10e{word-spacing:4.641000px;}
.wsf{word-spacing:4.680000px;}
.wse2{word-spacing:4.794000px;}
.wsd2{word-spacing:4.845000px;}
.ws79{word-spacing:4.860000px;}
.wsf1{word-spacing:4.896000px;}
.ws80{word-spacing:4.920000px;}
.ws103{word-spacing:4.998000px;}
.ws57{word-spacing:5.040000px;}
.wse4{word-spacing:5.202000px;}
.wsa7{word-spacing:5.219994px;}
.ws13{word-spacing:5.280000px;}
.ws12{word-spacing:5.400000px;}
.ws10d{word-spacing:5.457000px;}
.wsb7{word-spacing:5.580000px;}
.ws6d{word-spacing:5.640000px;}
.ws6c{word-spacing:5.700000px;}
.wsf7{word-spacing:5.712000px;}
.ws85{word-spacing:5.760000px;}
.ws61{word-spacing:5.820000px;}
.ws1b{word-spacing:5.880000px;}
.ws94{word-spacing:6.000000px;}
.wsad{word-spacing:6.180000px;}
.ws4c{word-spacing:6.240000px;}
.ws84{word-spacing:6.300000px;}
.ws1f{word-spacing:6.420000px;}
.ws117{word-spacing:6.528000px;}
.ws41{word-spacing:6.540000px;}
.wsa4{word-spacing:6.720000px;}
.wsa5{word-spacing:6.900000px;}
.ws11{word-spacing:6.960000px;}
.ws45{word-spacing:7.080000px;}
.ws9c{word-spacing:7.140000px;}
.wsd1{word-spacing:7.191000px;}
.ws46{word-spacing:7.260000px;}
.ws35{word-spacing:7.320000px;}
.ws10b{word-spacing:7.446000px;}
.ws1a{word-spacing:7.560000px;}
.ws19{word-spacing:7.680000px;}
.wsb6{word-spacing:7.800000px;}
.ws6e{word-spacing:8.040000px;}
.ws95{word-spacing:8.100000px;}
.ws1c{word-spacing:8.460000px;}
.wsb4{word-spacing:8.820000px;}
.wsdf{word-spacing:9.996000px;}
.wsda{word-spacing:10.404000px;}
.wsf0{word-spacing:10.659000px;}
.ws119{word-spacing:10.812000px;}
.ws10c{word-spacing:12.597000px;}
.ws104{word-spacing:13.719000px;}
.ws109{word-spacing:14.892000px;}
.ws73{word-spacing:16.222800px;}
.ws72{word-spacing:16.226220px;}
.wsac{word-spacing:16.230000px;}
.ws99{word-spacing:16.230012px;}
.ws71{word-spacing:19.547232px;}
.ws97{word-spacing:19.548612px;}
.wsab{word-spacing:19.549632px;}
.ws8{word-spacing:54.000000px;}
.ws8c{word-spacing:75.378000px;}
.ws8a{word-spacing:100.878000px;}
.ws88{word-spacing:128.877000px;}
.ws8d{word-spacing:135.813000px;}
.ws8b{word-spacing:152.847000px;}
.ws8e{word-spacing:212.313000px;}
.wsc1{word-spacing:613.632000px;}
.wsbc{word-spacing:628.626000px;}
.wsbf{word-spacing:648.567000px;}
.wsbd{word-spacing:663.561000px;}
.wsc0{word-spacing:691.101000px;}
.wsba{word-spacing:706.095000px;}
.wsbb{word-spacing:740.061000px;}
.wsc2{word-spacing:750.567000px;}
.wsbe{word-spacing:765.561000px;}
.ws89{word-spacing:2361.205050px;}
.ws2{word-spacing:2376.654000px;}
.ws75{word-spacing:2939.040000px;}
._1{margin-left:-2855.670000px;}
._b{margin-left:-54.727200px;}
._8{margin-left:-53.218200px;}
._11{margin-left:-12.498000px;}
._10{margin-left:-10.710126px;}
._7{margin-left:-7.776000px;}
._52{margin-left:-6.384000px;}
._6{margin-left:-4.380000px;}
._5{margin-left:-3.174000px;}
._0{margin-left:-1.638000px;}
._2{width:1.518000px;}
._3{width:3.120000px;}
._4{width:4.872000px;}
._f{width:6.258000px;}
._2d{width:7.260000px;}
._d{width:8.676000px;}
._56{width:10.866000px;}
._9{width:12.682800px;}
._58{width:14.616000px;}
._57{width:15.861000px;}
._55{width:17.796735px;}
._54{width:21.451365px;}
._e{width:38.250000px;}
._53{width:50.517000px;}
._a{width:54.000000px;}
._1e{width:88.128000px;}
._13{width:99.093000px;}
._21{width:113.628000px;}
._14{width:123.063000px;}
._28{width:124.593000px;}
._15{width:148.563000px;}
._17{width:165.597000px;}
._29{width:188.700000px;}
._24{width:198.594000px;}
._26{width:200.532000px;}
._2c{width:201.654000px;}
._2a{width:211.956000px;}
._2b{width:213.027000px;}
._12{width:267.315000px;}
._27{width:326.571000px;}
._4f{width:621.096000px;}
._47{width:626.382000px;}
._35{width:641.376000px;}
._40{width:651.882000px;}
._43{width:661.317000px;}
._4c{width:663.459000px;}
._3e{width:674.373000px;}
._2f{width:676.311000px;}
._50{width:686.817000px;}
._33{width:689.367000px;}
._41{width:699.873000px;}
._44{width:709.308000px;}
._3b{width:713.235000px;}
._30{width:714.867000px;}
._38{width:717.876000px;}
._36{width:724.302000px;}
._51{width:734.808000px;}
._49{width:737.817000px;}
._4d{width:750.567000px;}
._16{width:751.740000px;}
._3a{width:752.811000px;}
._4a{width:758.217000px;}
._25{width:763.929000px;}
._31{width:766.836000px;}
._18{width:794.274000px;}
._2e{width:797.307000px;}
._4e{width:798.558000px;}
._34{width:805.443000px;}
._46{width:809.370000px;}
._4b{width:811.308000px;}
._22{width:815.082000px;}
._3c{width:826.302000px;}
._42{width:850.425000px;}
._1f{width:856.137000px;}
._39{width:866.649000px;}
._32{width:896.019000px;}
._48{width:911.631000px;}
._23{width:917.343000px;}
._3f{width:941.001000px;}
._1d{width:946.713000px;}
._3d{width:983.586000px;}
._37{width:998.121000px;}
._45{width:1043.103000px;}
._20{width:1048.815000px;}
._1b{width:1657.620000px;}
._1c{width:1932.306000px;}
._19{width:2313.015000px;}
._1a{width:2419.299000px;}
._c{width:2474.535600px;}
.fc2{color:rgb(99,100,102);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.200000px;}
.fse{font-size:33.150000px;}
.fs5{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:44.832000px;}
.fsf{font-size:45.000000px;}
.fsb{font-size:46.800000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.y1b9{bottom:-0.000450px;}
.y0{bottom:0.000000px;}
.y131{bottom:0.124350px;}
.y116{bottom:2.999250px;}
.y179{bottom:3.601800px;}
.yd0{bottom:3.706800px;}
.y187{bottom:5.998800px;}
.y189{bottom:5.999250px;}
.y18b{bottom:5.999550px;}
.y1a6{bottom:5.999700px;}
.y18d{bottom:6.000000px;}
.y18f{bottom:6.000450px;}
.yf6{bottom:6.749250px;}
.yf4{bottom:6.750750px;}
.y133{bottom:15.484650px;}
.y12d{bottom:16.992300px;}
.y115{bottom:20.999250px;}
.y12f{bottom:36.086850px;}
.y114{bottom:36.749250px;}
.y20{bottom:40.709550px;}
.y158{bottom:67.588050px;}
.ye0{bottom:70.495800px;}
.y1a0{bottom:70.497000px;}
.y17c{bottom:70.498800px;}
.y1cd{bottom:70.501050px;}
.y80{bottom:70.501800px;}
.y186{bottom:70.503000px;}
.y143{bottom:70.503300px;}
.yb0{bottom:70.591050px;}
.y1bb{bottom:70.594050px;}
.y1a1{bottom:70.594500px;}
.y4f{bottom:70.686000px;}
.y19e{bottom:76.323300px;}
.y19c{bottom:76.348800px;}
.y19a{bottom:76.374300px;}
.y198{bottom:76.399800px;}
.y196{bottom:76.425300px;}
.y194{bottom:76.450800px;}
.y192{bottom:76.476300px;}
.y190{bottom:76.501800px;}
.y1b5{bottom:76.504800px;}
.y1b3{bottom:76.517550px;}
.y1b1{bottom:76.530300px;}
.y1af{bottom:76.543050px;}
.y1ad{bottom:76.555800px;}
.y1ab{bottom:76.568550px;}
.y1b8{bottom:76.573500px;}
.y1a9{bottom:76.581300px;}
.y1b7{bottom:76.586250px;}
.y1a7{bottom:76.594050px;}
.y202{bottom:81.520800px;}
.y157{bottom:85.591050px;}
.y23a{bottom:87.867300px;}
.yaf{bottom:88.594050px;}
.ydf{bottom:89.995800px;}
.y17b{bottom:89.998800px;}
.y7f{bottom:90.001800px;}
.y142{bottom:90.003300px;}
.y4e{bottom:90.184500px;}
.y1ba{bottom:91.541550px;}
.y1cc{bottom:92.214300px;}
.y4{bottom:97.125005px;}
.y201{bottom:98.771550px;}
.y156{bottom:103.594050px;}
.y239{bottom:105.118050px;}
.y4d{bottom:105.189000px;}
.yde{bottom:109.495800px;}
.y7e{bottom:109.501800px;}
.y141{bottom:109.503300px;}
.y1cb{bottom:110.250300px;}
.y200{bottom:116.022300px;}
.y178{bottom:121.591500px;}
.y238{bottom:122.368800px;}
.y17a{bottom:123.403800px;}
.y1ca{bottom:127.501050px;}
.ydd{bottom:128.995800px;}
.y7d{bottom:129.001800px;}
.y140{bottom:129.003300px;}
.y23e{bottom:132.625800px;}
.y1ff{bottom:133.273050px;}
.y19f{bottom:133.731750px;}
.y1b6{bottom:133.824000px;}
.y1f{bottom:139.264499px;}
.y31{bottom:139.539300px;}
.y237{bottom:139.619550px;}
.ydc{bottom:148.495800px;}
.y7c{bottom:148.501800px;}
.y13f{bottom:148.503300px;}
.y1c9{bottom:149.214300px;}
.y1fe{bottom:150.523800px;}
.y23d{bottom:152.125800px;}
.y177{bottom:155.653800px;}
.y236{bottom:156.870300px;}
.y30{bottom:159.039300px;}
.y1c8{bottom:166.489500px;}
.y1fd{bottom:167.774550px;}
.ydb{bottom:167.995800px;}
.y7b{bottom:168.001800px;}
.y13e{bottom:168.003300px;}
.y235{bottom:174.121050px;}
.y176{bottom:175.153800px;}
.y2f{bottom:178.539300px;}
.y1c7{bottom:183.740250px;}
.y1fc{bottom:185.025300px;}
.yda{bottom:187.495800px;}
.yc9{bottom:187.501800px;}
.y13d{bottom:187.503300px;}
.y234{bottom:191.371800px;}
.y175{bottom:194.653800px;}
.y16{bottom:196.933500px;}
.y2e{bottom:198.039300px;}
.y1c6{bottom:200.991000px;}
.y92{bottom:202.126800px;}
.y1fb{bottom:202.276050px;}
.yd9{bottom:206.995800px;}
.y7a{bottom:207.001800px;}
.y13c{bottom:207.003300px;}
.y233{bottom:208.622550px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y174{bottom:214.153800px;}
.y23c{bottom:214.285800px;}
.y2d{bottom:217.539300px;}
.y1c5{bottom:218.241750px;}
.y1fa{bottom:219.526800px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y232{bottom:225.873300px;}
.yd8{bottom:226.495800px;}
.yf2{bottom:226.501800px;}
.y13b{bottom:226.503300px;}
.y173{bottom:233.653800px;}
.y23b{bottom:233.785800px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y1c4{bottom:235.492500px;}
.y91{bottom:236.251800px;}
.y1f9{bottom:236.777550px;}
.y2c{bottom:237.039300px;}
.y231{bottom:243.124050px;}
.yd7{bottom:245.995800px;}
.yc8{bottom:246.001800px;}
.y13a{bottom:246.003300px;}
.y1c3{bottom:252.743250px;}
.y172{bottom:253.153800px;}
.y1f8{bottom:254.028300px;}
.y2b{bottom:256.539300px;}
.y79{bottom:256.862550px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y230{bottom:260.374800px;}
.yd6{bottom:265.495800px;}
.yf1{bottom:265.501800px;}
.y139{bottom:265.503300px;}
.y1c2{bottom:269.994000px;}
.y1f7{bottom:271.279050px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y171{bottom:272.653800px;}
.y90{bottom:275.251800px;}
.y2a{bottom:276.039300px;}
.y78{bottom:276.362550px;}
.y22f{bottom:277.625550px;}
.yd5{bottom:284.995800px;}
.yf0{bottom:285.001800px;}
.y138{bottom:285.003300px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y1f6{bottom:288.529800px;}
.y1c1{bottom:291.707250px;}
.y22e{bottom:294.876300px;}
.y29{bottom:295.539300px;}
.y77{bottom:295.862550px;}
.yd4{bottom:304.495800px;}
.yc7{bottom:304.501800px;}
.y137{bottom:304.503300px;}
.y1f5{bottom:305.780550px;}
.y1c0{bottom:308.986050px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y170{bottom:311.653800px;}
.y22d{bottom:312.127050px;}
.y28{bottom:315.039300px;}
.y76{bottom:315.362550px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y1f4{bottom:323.031300px;}
.yd3{bottom:323.995800px;}
.yc6{bottom:324.001800px;}
.y136{bottom:324.003300px;}
.y8f{bottom:326.223300px;}
.y1bf{bottom:326.236800px;}
.y22c{bottom:329.377800px;}
.y27{bottom:334.539300px;}
.y75{bottom:334.862550px;}
.y1f3{bottom:340.282050px;}
.yd2{bottom:343.495800px;}
.yc5{bottom:343.501800px;}
.y135{bottom:343.503300px;}
.y8e{bottom:345.723300px;}
.y22b{bottom:346.628550px;}
.y1be{bottom:347.950050px;}
.yd{bottom:348.133500px;}
.y188{bottom:351.895500px;}
.y26{bottom:354.039300px;}
.y74{bottom:354.362550px;}
.y1f2{bottom:357.532800px;}
.y19d{bottom:357.728550px;}
.y19b{bottom:357.754050px;}
.y199{bottom:357.779550px;}
.y197{bottom:357.805050px;}
.y195{bottom:357.830550px;}
.y193{bottom:357.856050px;}
.y191{bottom:357.881550px;}
.yc4{bottom:363.001800px;}
.y1a2{bottom:363.237000px;}
.y22a{bottom:363.879300px;}
.y8d{bottom:365.223300px;}
.y1bd{bottom:365.229600px;}
.y1b4{bottom:369.155550px;}
.y1b2{bottom:369.168300px;}
.y1b0{bottom:369.181050px;}
.y1ae{bottom:369.193800px;}
.y1ac{bottom:369.206550px;}
.y1aa{bottom:369.219300px;}
.y1a8{bottom:369.232050px;}
.y16f{bottom:370.153800px;}
.y25{bottom:373.539300px;}
.y73{bottom:373.862550px;}
.y1f1{bottom:374.783550px;}
.ycf{bottom:375.091500px;}
.yd1{bottom:377.065800px;}
.y229{bottom:381.130050px;}
.yc3{bottom:382.501800px;}
.y8c{bottom:384.723300px;}
.yc{bottom:386.785499px;}
.y1bc{bottom:386.942850px;}
.y16e{bottom:389.653800px;}
.y12e{bottom:390.576150px;}
.y134{bottom:391.848300px;}
.y1f0{bottom:392.034300px;}
.y132{bottom:392.083800px;}
.y24{bottom:393.039300px;}
.y72{bottom:393.362550px;}
.y113{bottom:395.326500px;}
.y228{bottom:398.380800px;}
.yc2{bottom:402.001800px;}
.y8b{bottom:404.223300px;}
.y130{bottom:405.709800px;}
.yb{bottom:408.044999px;}
.y16d{bottom:409.153800px;}
.y1ef{bottom:409.285050px;}
.yce{bottom:409.315800px;}
.y23{bottom:412.539300px;}
.y71{bottom:412.862550px;}
.y227{bottom:415.631550px;}
.yc1{bottom:421.501800px;}
.y8a{bottom:423.723300px;}
.y1ee{bottom:426.535800px;}
.yae{bottom:428.434050px;}
.y16c{bottom:428.653800px;}
.ycd{bottom:428.815800px;}
.y22{bottom:432.039300px;}
.y70{bottom:432.362550px;}
.y226{bottom:432.882300px;}
.y155{bottom:433.473300px;}
.y12c{bottom:438.319800px;}
.yc0{bottom:441.001800px;}
.y89{bottom:443.223300px;}
.y1ed{bottom:446.785800px;}
.yad{bottom:447.934050px;}
.y16b{bottom:448.153800px;}
.y225{bottom:450.133050px;}
.y6f{bottom:451.862550px;}
.y154{bottom:452.973300px;}
.y111{bottom:453.312750px;}
.y112{bottom:457.725750px;}
.y12b{bottom:457.819800px;}
.ybf{bottom:460.501800px;}
.y88{bottom:462.723300px;}
.y224{bottom:467.383800px;}
.yac{bottom:467.434050px;}
.y16a{bottom:467.653800px;}
.ycc{bottom:467.809800px;}
.y21{bottom:471.039300px;}
.y6e{bottom:471.362550px;}
.y153{bottom:472.473300px;}
.y110{bottom:474.873000px;}
.y12a{bottom:477.319800px;}
.ybe{bottom:480.001800px;}
.yef{bottom:481.112550px;}
.y87{bottom:482.223300px;}
.y223{bottom:484.634550px;}
.yab{bottom:486.934050px;}
.y169{bottom:487.153800px;}
.y1ec{bottom:490.660050px;}
.y6d{bottom:490.862550px;}
.y152{bottom:491.973300px;}
.y10f{bottom:496.433250px;}
.y129{bottom:496.819800px;}
.ybd{bottom:499.501800px;}
.yee{bottom:500.612550px;}
.y86{bottom:501.723300px;}
.y222{bottom:501.885300px;}
.yaa{bottom:506.434050px;}
.y168{bottom:506.653800px;}
.ycb{bottom:506.815800px;}
.y151{bottom:511.473300px;}
.y1eb{bottom:512.373300px;}
.y10e{bottom:517.993500px;}
.ybc{bottom:519.001800px;}
.y221{bottom:519.136050px;}
.yed{bottom:520.112550px;}
.ya{bottom:520.864502px;}
.y85{bottom:521.223300px;}
.ya9{bottom:525.934050px;}
.y167{bottom:526.153800px;}
.y6c{bottom:529.856550px;}
.y1ea{bottom:530.409300px;}
.y150{bottom:530.973300px;}
.y47{bottom:532.539300px;}
.y128{bottom:535.813800px;}
.y220{bottom:536.386800px;}
.ybb{bottom:538.501800px;}
.y9{bottom:538.864499px;}
.y10d{bottom:539.553750px;}
.yec{bottom:539.612550px;}
.y84{bottom:540.723300px;}
.ya8{bottom:545.434050px;}
.y166{bottom:545.653800px;}
.y1e9{bottom:547.660050px;}
.y46{bottom:549.789300px;}
.y14f{bottom:550.473300px;}
.y21f{bottom:553.637550px;}
.y8{bottom:556.864499px;}
.yba{bottom:558.001800px;}
.yeb{bottom:559.112550px;}
.y83{bottom:560.223300px;}
.y10c{bottom:561.114000px;}
.ye1{bottom:561.910800px;}
.ya7{bottom:564.934050px;}
.y165{bottom:565.153800px;}
.y18a{bottom:568.788000px;}
.y6b{bottom:568.862550px;}
.y1e8{bottom:569.373300px;}
.y14e{bottom:569.973300px;}
.y21e{bottom:570.888300px;}
.y127{bottom:574.819800px;}
.y1a3{bottom:576.379500px;}
.yb9{bottom:577.501800px;}
.yea{bottom:578.612550px;}
.y82{bottom:579.723300px;}
.y10b{bottom:582.674250px;}
.ya6{bottom:584.434050px;}
.y164{bottom:584.653800px;}
.y45{bottom:585.789300px;}
.y1e7{bottom:587.410050px;}
.y21d{bottom:588.139050px;}
.y14d{bottom:589.473300px;}
.yb8{bottom:597.001800px;}
.ye9{bottom:598.112550px;}
.y81{bottom:599.223300px;}
.y44{bottom:603.039300px;}
.y163{bottom:604.153800px;}
.y10a{bottom:604.234500px;}
.y21c{bottom:605.389800px;}
.y14c{bottom:608.973300px;}
.y1e6{bottom:609.123300px;}
.yb7{bottom:616.501800px;}
.ye8{bottom:617.612550px;}
.y6a{bottom:618.723300px;}
.y21b{bottom:622.640550px;}
.ya5{bottom:623.434050px;}
.y162{bottom:623.653800px;}
.y109{bottom:625.794750px;}
.y1e5{bottom:627.160050px;}
.y14b{bottom:628.473300px;}
.y126{bottom:634.646550px;}
.yb6{bottom:636.001800px;}
.ye7{bottom:637.112550px;}
.y69{bottom:638.223300px;}
.y43{bottom:639.039300px;}
.y21a{bottom:639.891300px;}
.y161{bottom:643.153800px;}
.y7{bottom:645.510000px;}
.y108{bottom:647.355000px;}
.y14a{bottom:647.973300px;}
.y1e4{bottom:648.873300px;}
.y125{bottom:654.146550px;}
.yb5{bottom:655.501800px;}
.ye6{bottom:656.612550px;}
.y219{bottom:657.142050px;}
.y68{bottom:657.723300px;}
.y42{bottom:661.539300px;}
.y160{bottom:662.653800px;}
.y6{bottom:666.771000px;}
.y149{bottom:667.473300px;}
.y107{bottom:668.915250px;}
.y1e3{bottom:671.373300px;}
.y124{bottom:673.646550px;}
.y218{bottom:674.392800px;}
.yb4{bottom:675.001800px;}
.ye5{bottom:676.112550px;}
.y67{bottom:677.223300px;}
.y15f{bottom:682.153800px;}
.y41{bottom:684.039300px;}
.y148{bottom:686.973300px;}
.ya4{bottom:688.203600px;}
.y1e2{bottom:689.409300px;}
.y15d{bottom:690.244800px;}
.y106{bottom:690.475500px;}
.y217{bottom:691.643550px;}
.y123{bottom:693.146550px;}
.yb3{bottom:694.501800px;}
.ye4{bottom:695.612550px;}
.y66{bottom:696.723300px;}
.y147{bottom:706.473300px;}
.y40{bottom:706.539300px;}
.y1e1{bottom:706.660050px;}
.ya3{bottom:707.703600px;}
.y15c{bottom:708.247800px;}
.y216{bottom:708.894300px;}
.y105{bottom:712.035750px;}
.y122{bottom:712.646550px;}
.yb2{bottom:714.001800px;}
.ye3{bottom:715.112550px;}
.y65{bottom:716.223300px;}
.y15e{bottom:721.153800px;}
.y146{bottom:725.973300px;}
.y215{bottom:726.145050px;}
.y15b{bottom:726.250800px;}
.y5{bottom:726.298500px;}
.ya2{bottom:727.203600px;}
.y1e0{bottom:728.373300px;}
.y3f{bottom:729.039300px;}
.y121{bottom:732.146550px;}
.yb1{bottom:733.501800px;}
.y104{bottom:733.596000px;}
.y185{bottom:734.612550px;}
.y64{bottom:735.723300px;}
.y214{bottom:743.395800px;}
.y145{bottom:745.473300px;}
.y1df{bottom:746.409300px;}
.ya1{bottom:746.703600px;}
.y3e{bottom:751.539300px;}
.y120{bottom:751.646550px;}
.y3{bottom:752.599495px;}
.ye2{bottom:754.112550px;}
.y103{bottom:755.156250px;}
.y63{bottom:755.223300px;}
.y38{bottom:756.789300px;}
.y213{bottom:760.646550px;}
.y1de{bottom:763.660050px;}
.ya0{bottom:766.203600px;}
.y11f{bottom:771.146550px;}
.y37{bottom:773.289300px;}
.y184{bottom:773.612550px;}
.y3d{bottom:774.039300px;}
.y62{bottom:774.723300px;}
.y102{bottom:776.716500px;}
.y212{bottom:777.897300px;}
.y144{bottom:784.473300px;}
.y1dd{bottom:785.373300px;}
.y18c{bottom:785.680500px;}
.y9f{bottom:785.703600px;}
.y1a4{bottom:789.523500px;}
.y36{bottom:789.789300px;}
.y11e{bottom:790.646550px;}
.y183{bottom:793.112550px;}
.y61{bottom:794.223300px;}
.y211{bottom:795.148050px;}
.y3c{bottom:796.539300px;}
.y101{bottom:798.276750px;}
.y1dc{bottom:803.410050px;}
.y9e{bottom:805.203600px;}
.y11d{bottom:810.146550px;}
.y210{bottom:812.398800px;}
.y182{bottom:812.612550px;}
.y60{bottom:813.723300px;}
.y3b{bottom:819.039300px;}
.y100{bottom:819.837000px;}
.y35{bottom:822.789300px;}
.y9d{bottom:824.703600px;}
.y1db{bottom:825.123300px;}
.y20f{bottom:829.649550px;}
.y181{bottom:832.112550px;}
.y5f{bottom:833.223300px;}
.yff{bottom:841.397250px;}
.y3a{bottom:841.539300px;}
.y1da{bottom:843.159300px;}
.y34{bottom:843.489300px;}
.y9c{bottom:844.203600px;}
.y20e{bottom:846.900300px;}
.y11c{bottom:849.146550px;}
.y180{bottom:851.612550px;}
.y5e{bottom:852.723300px;}
.y33{bottom:860.289300px;}
.y1d9{bottom:860.410050px;}
.yfe{bottom:862.957500px;}
.y9b{bottom:863.703600px;}
.y39{bottom:864.039300px;}
.y20d{bottom:864.151050px;}
.y17f{bottom:871.112550px;}
.y5d{bottom:872.223300px;}
.y2{bottom:879.369000px;}
.y32{bottom:880.989300px;}
.y20c{bottom:881.401800px;}
.y1d8{bottom:882.123300px;}
.y99{bottom:883.203600px;}
.yfd{bottom:884.517750px;}
.y9a{bottom:888.453600px;}
.y17e{bottom:890.612550px;}
.y5c{bottom:891.723300px;}
.y20b{bottom:898.652550px;}
.y98{bottom:902.703600px;}
.y1d7{bottom:904.623300px;}
.yfc{bottom:906.078000px;}
.y11b{bottom:908.973300px;}
.y5b{bottom:911.223300px;}
.y20a{bottom:915.903300px;}
.y1d6{bottom:922.659300px;}
.yfb{bottom:927.642750px;}
.y11a{bottom:928.473300px;}
.y4a{bottom:929.289300px;}
.y17d{bottom:929.612550px;}
.y5a{bottom:930.723300px;}
.y209{bottom:933.154050px;}
.y1d5{bottom:939.910050px;}
.y97{bottom:941.703600px;}
.y119{bottom:947.973300px;}
.yfa{bottom:949.203000px;}
.y59{bottom:950.223300px;}
.y208{bottom:950.404800px;}
.y1d4{bottom:961.623300px;}
.y1{bottom:966.726000px;}
.y118{bottom:967.473300px;}
.y207{bottom:967.655550px;}
.y58{bottom:969.723300px;}
.yf9{bottom:970.767750px;}
.y1d3{bottom:979.658550px;}
.y206{bottom:984.906300px;}
.y117{bottom:986.973300px;}
.y49{bottom:987.789300px;}
.y57{bottom:989.223300px;}
.yf8{bottom:992.328000px;}
.y1d2{bottom:996.909300px;}
.y205{bottom:1002.157050px;}
.y96{bottom:1006.473300px;}
.y56{bottom:1008.723300px;}
.yf7{bottom:1013.888250px;}
.y1d1{bottom:1014.160050px;}
.y18e{bottom:1014.573000px;}
.y1a5{bottom:1014.666000px;}
.y204{bottom:1019.407800px;}
.y95{bottom:1025.973300px;}
.y55{bottom:1028.223300px;}
.yf5{bottom:1030.201500px;}
.y1d0{bottom:1035.873300px;}
.y203{bottom:1036.658550px;}
.y94{bottom:1045.473300px;}
.y54{bottom:1047.723300px;}
.y15a{bottom:1052.404800px;}
.y1cf{bottom:1053.909300px;}
.yf3{bottom:1054.762500px;}
.y48{bottom:1058.365200px;}
.y53{bottom:1067.223300px;}
.y159{bottom:1070.407800px;}
.y1ce{bottom:1071.160050px;}
.y93{bottom:1084.473300px;}
.y52{bottom:1086.723300px;}
.yca{bottom:1088.410800px;}
.y4b{bottom:1098.963000px;}
.y4c{bottom:1120.635000px;}
.y51{bottom:1130.276550px;}
.y50{bottom:1130.351550px;}
.h24{height:3.945190px;}
.h25{height:13.554000px;}
.h19{height:13.878000px;}
.he{height:22.245600px;}
.h1d{height:23.062500px;}
.h1e{height:23.635950px;}
.h1b{height:23.812500px;}
.h18{height:27.807000px;}
.h17{height:29.148000px;}
.ha{height:29.946000px;}
.h16{height:29.958600px;}
.h23{height:30.620256px;}
.h2f{height:30.870000px;}
.h20{height:32.085000px;}
.h7{height:32.130000px;}
.h10{height:33.312000px;}
.hf{height:34.224000px;}
.h1c{height:35.394000px;}
.h12{height:36.363000px;}
.h13{height:37.476000px;}
.h1a{height:40.826735px;}
.h11{height:41.640000px;}
.hd{height:42.780000px;}
.h21{height:43.443000px;}
.h6{height:45.900000px;}
.h22{height:46.438906px;}
.h3{height:48.195000px;}
.hc{height:48.807000px;}
.hb{height:49.968000px;}
.h1f{height:50.437500px;}
.h2{height:55.080000px;}
.h15{height:57.679200px;}
.h14{height:74.952000px;}
.h5{height:78.030000px;}
.h2a{height:83.400000px;}
.h4{height:119.055004px;}
.h2c{height:213.144000px;}
.h27{height:216.892500px;}
.h28{height:216.894000px;}
.h2d{height:225.142500px;}
.h29{height:228.892500px;}
.h2b{height:281.392500px;}
.h2e{height:292.642500px;}
.h26{height:1027.471500px;}
.h8{height:1173.543000px;}
.h9{height:1173.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w10{width:23.062500px;}
.wf{width:23.064000px;}
.we{width:23.812500px;}
.wd{width:24.562500px;}
.w11{width:34.687500px;}
.w9{width:69.021000px;}
.w5{width:72.583500px;}
.w7{width:78.582000px;}
.w6{width:78.583500px;}
.w8{width:148.896000px;}
.wc{width:297.837000px;}
.wb{width:311.445000px;}
.w4{width:313.119000px;}
.w2{width:637.794021px;}
.wa{width:756.000000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:5.999850px;}
.x4b{left:13.687650px;}
.x27{left:17.062800px;}
.x4d{left:31.687650px;}
.x8{left:67.181100px;}
.x6{left:68.456400px;}
.xb{left:69.732300px;}
.x18{left:74.457000px;}
.x20{left:76.533150px;}
.x4f{left:83.457000px;}
.x51{left:87.956850px;}
.x7{left:90.950700px;}
.x50{left:95.461500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:107.457000px;}
.x1e{left:131.686950px;}
.x4{left:203.484001px;}
.x4e{left:208.101750px;}
.x10{left:217.353000px;}
.x19{left:223.338750px;}
.x37{left:242.499000px;}
.x36{left:246.787800px;}
.x26{left:258.562500px;}
.x38{left:267.811500px;}
.x28{left:283.125000px;}
.xf{left:289.897500px;}
.x24{left:297.538500px;}
.x23{left:304.780350px;}
.x39{left:307.186650px;}
.x29{left:308.437500px;}
.x9{left:313.931100px;}
.x3a{left:328.746900px;}
.x1f{left:331.241850px;}
.x2a{left:347.812800px;}
.x3b{left:350.307150px;}
.x12{left:362.520000px;}
.x21{left:363.749700px;}
.x1d{left:368.493900px;}
.x3c{left:371.867400px;}
.x22{left:391.775550px;}
.x3d{left:393.427650px;}
.x2b{left:412.493550px;}
.x3e{left:414.987900px;}
.x2c{left:434.053800px;}
.x3f{left:436.548150px;}
.x13{left:441.103500px;}
.x3{left:454.959000px;}
.x40{left:458.108400px;}
.x2d{left:477.174300px;}
.x41{left:479.668650px;}
.x2e{left:498.734550px;}
.x42{left:501.228900px;}
.x14{left:519.687000px;}
.x43{left:522.789150px;}
.x2f{left:541.855050px;}
.x44{left:544.349400px;}
.x30{left:563.415300px;}
.x45{left:565.909650px;}
.xd{left:580.300950px;}
.x31{left:584.975550px;}
.x46{left:587.469900px;}
.x25{left:590.456400px;}
.xe{left:593.457000px;}
.x15{left:598.270500px;}
.x1b{left:604.266900px;}
.x32{left:606.535800px;}
.x47{left:609.030150px;}
.x33{left:628.096050px;}
.x48{left:630.621900px;}
.x5{left:634.754400px;}
.x35{left:645.225150px;}
.x34{left:649.656300px;}
.x49{left:652.182150px;}
.x4a{left:659.686500px;}
.x4c{left:673.374150px;}
.x16{left:676.852500px;}
.x1c{left:682.845150px;}
.xa{left:698.815200px;}
.x17{left:755.436000px;}
.x1a{left:761.436150px;}
@media print{
.v5{vertical-align:-18.666667pt;}
.va{vertical-align:-15.866667pt;}
.v3{vertical-align:-14.933333pt;}
.v9{vertical-align:-12.709333pt;}
.v7{vertical-align:-8.491733pt;}
.v6{vertical-align:-7.493867pt;}
.v8{vertical-align:-5.360533pt;}
.v1{vertical-align:-1.493333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.360533pt;}
.v2{vertical-align:18.666667pt;}
.v4{vertical-align:22.400000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.746667pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.090667pt;}
.ls20{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.009161pt;}
.ls10{letter-spacing:0.009303pt;}
.lse{letter-spacing:0.012018pt;}
.lsa{letter-spacing:0.012577pt;}
.lsc{letter-spacing:0.013427pt;}
.ls18{letter-spacing:0.175467pt;}
.ls13{letter-spacing:2.660160pt;}
.ls1e{letter-spacing:5.333333pt;}
.ls1{letter-spacing:8.533333pt;}
.ls4{letter-spacing:9.066667pt;}
.ls2{letter-spacing:9.600000pt;}
.ls9{letter-spacing:11.795728pt;}
.ls16{letter-spacing:14.460843pt;}
.ls14{letter-spacing:14.464160pt;}
.ls17{letter-spacing:14.464341pt;}
.lsd{letter-spacing:14.465109pt;}
.lsf{letter-spacing:14.465941pt;}
.ls6{letter-spacing:14.771195pt;}
.ls8{letter-spacing:14.771201pt;}
.ls15{letter-spacing:17.412267pt;}
.ls7{letter-spacing:17.414400pt;}
.lsb{letter-spacing:17.418133pt;}
.ls1a{letter-spacing:17.418667pt;}
.ls3{letter-spacing:45.354667pt;}
.ls11{letter-spacing:311.189867pt;}
.ls1c{letter-spacing:782.290667pt;}
.ls1d{letter-spacing:822.290667pt;}
.ws6{word-spacing:-19.200000pt;}
.wsc3{word-spacing:-18.666667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws60{word-spacing:-12.586667pt;}
.ws74{word-spacing:-11.333333pt;}
.wsec{word-spacing:-11.288000pt;}
.ws5{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.400000pt;}
.ws90{word-spacing:-10.000000pt;}
.ws8f{word-spacing:-9.520000pt;}
.ws1{word-spacing:-9.333333pt;}
.wsf5{word-spacing:-9.066667pt;}
.ws54{word-spacing:-8.666667pt;}
.wsa{word-spacing:-7.210667pt;}
.ws4{word-spacing:-6.933333pt;}
.wsc8{word-spacing:-6.129067pt;}
.ws9d{word-spacing:-3.680000pt;}
.ws11f{word-spacing:-3.309333pt;}
.ws9b{word-spacing:-2.880000pt;}
.ws7d{word-spacing:-2.666667pt;}
.ws3c{word-spacing:-2.613333pt;}
.ws48{word-spacing:-2.560000pt;}
.ws93{word-spacing:-2.506667pt;}
.wsa2{word-spacing:-2.453333pt;}
.wsa9{word-spacing:-2.400000pt;}
.ws4f{word-spacing:-2.346667pt;}
.wsca{word-spacing:-2.311995pt;}
.ws7b{word-spacing:-2.293328pt;}
.ws9f{word-spacing:-2.240000pt;}
.ws7c{word-spacing:-2.186667pt;}
.wsb3{word-spacing:-2.133333pt;}
.ws55{word-spacing:-2.080000pt;}
.ws5c{word-spacing:-2.026667pt;}
.ws82{word-spacing:-1.973333pt;}
.wsae{word-spacing:-1.920000pt;}
.wsa1{word-spacing:-1.866667pt;}
.ws2f{word-spacing:-1.813333pt;}
.ws10f{word-spacing:-1.768000pt;}
.ws9e{word-spacing:-1.760000pt;}
.ws112{word-spacing:-1.722667pt;}
.wsc4{word-spacing:-1.706667pt;}
.ws77{word-spacing:-1.653333pt;}
.wscc{word-spacing:-1.632000pt;}
.ws59{word-spacing:-1.600000pt;}
.ws115{word-spacing:-1.586667pt;}
.ws5d{word-spacing:-1.546667pt;}
.ws11b{word-spacing:-1.541333pt;}
.ws5b{word-spacing:-1.493333pt;}
.ws2e{word-spacing:-1.440000pt;}
.ws42{word-spacing:-1.386667pt;}
.wsc9{word-spacing:-1.360000pt;}
.ws27{word-spacing:-1.333333pt;}
.wsea{word-spacing:-1.314667pt;}
.ws49{word-spacing:-1.280000pt;}
.ws76{word-spacing:-1.226667pt;}
.wsd6{word-spacing:-1.224000pt;}
.ws107{word-spacing:-1.178667pt;}
.ws4a{word-spacing:-1.173333pt;}
.wse3{word-spacing:-1.133333pt;}
.ws7a{word-spacing:-1.120000pt;}
.ws24{word-spacing:-1.066667pt;}
.wse1{word-spacing:-1.042667pt;}
.wscf{word-spacing:-0.997333pt;}
.ws18{word-spacing:-0.960000pt;}
.wsd5{word-spacing:-0.952000pt;}
.ws4b{word-spacing:-0.906667pt;}
.ws92{word-spacing:-0.853333pt;}
.wsfa{word-spacing:-0.816000pt;}
.ws5f{word-spacing:-0.800000pt;}
.wsc6{word-spacing:-0.746667pt;}
.ws108{word-spacing:-0.725333pt;}
.wsa6{word-spacing:-0.693333pt;}
.ws32{word-spacing:-0.640000pt;}
.ws114{word-spacing:-0.634667pt;}
.wse9{word-spacing:-0.589333pt;}
.wsb5{word-spacing:-0.586667pt;}
.ws6f{word-spacing:-0.533333pt;}
.wsd3{word-spacing:-0.498667pt;}
.ws17{word-spacing:-0.480000pt;}
.ws9a{word-spacing:-0.426667pt;}
.wsd0{word-spacing:-0.408000pt;}
.ws1d{word-spacing:-0.373333pt;}
.ws21{word-spacing:-0.320000pt;}
.wsf2{word-spacing:-0.272000pt;}
.ws3a{word-spacing:-0.266667pt;}
.wsdb{word-spacing:-0.226667pt;}
.wsb0{word-spacing:-0.213333pt;}
.wse5{word-spacing:-0.181333pt;}
.ws22{word-spacing:-0.160000pt;}
.wsd7{word-spacing:-0.136000pt;}
.ws63{word-spacing:-0.106667pt;}
.wse8{word-spacing:-0.090667pt;}
.ws66{word-spacing:-0.053333pt;}
.ws70{word-spacing:-0.053134pt;}
.ws11d{word-spacing:-0.045333pt;}
.ws98{word-spacing:-0.039851pt;}
.ws0{word-spacing:0.000000pt;}
.wsf6{word-spacing:0.045333pt;}
.ws31{word-spacing:0.053333pt;}
.wsdd{word-spacing:0.090667pt;}
.ws37{word-spacing:0.106667pt;}
.ws3f{word-spacing:0.160000pt;}
.ws65{word-spacing:0.213333pt;}
.wse6{word-spacing:0.226667pt;}
.ws20{word-spacing:0.261333pt;}
.wsaf{word-spacing:0.266667pt;}
.wsd9{word-spacing:0.272000pt;}
.wsdc{word-spacing:0.317333pt;}
.ws23{word-spacing:0.373333pt;}
.ws81{word-spacing:0.426667pt;}
.ws5a{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.533333pt;}
.ws118{word-spacing:0.544000pt;}
.ws87{word-spacing:0.586667pt;}
.wseb{word-spacing:0.589333pt;}
.wse0{word-spacing:0.634667pt;}
.ws34{word-spacing:0.640000pt;}
.ws29{word-spacing:0.693333pt;}
.ws62{word-spacing:0.746667pt;}
.wsc7{word-spacing:0.853333pt;}
.wsf4{word-spacing:0.861333pt;}
.ws39{word-spacing:0.906667pt;}
.ws100{word-spacing:0.952000pt;}
.ws44{word-spacing:0.960000pt;}
.wsd{word-spacing:1.013333pt;}
.ws7e{word-spacing:1.066667pt;}
.wsde{word-spacing:1.088000pt;}
.ws10{word-spacing:1.120000pt;}
.wsb9{word-spacing:1.173333pt;}
.ws10a{word-spacing:1.178667pt;}
.ws113{word-spacing:1.224000pt;}
.ws3d{word-spacing:1.226667pt;}
.wsfd{word-spacing:1.269333pt;}
.ws2a{word-spacing:1.280000pt;}
.wsf9{word-spacing:1.314667pt;}
.ws25{word-spacing:1.333333pt;}
.ws78{word-spacing:1.440000pt;}
.wsd8{word-spacing:1.450667pt;}
.ws6b{word-spacing:1.493333pt;}
.wsfe{word-spacing:1.496000pt;}
.wsee{word-spacing:1.541333pt;}
.wsaa{word-spacing:1.546667pt;}
.ws69{word-spacing:1.600000pt;}
.ws101{word-spacing:1.632000pt;}
.ws28{word-spacing:1.653333pt;}
.wsf3{word-spacing:1.677333pt;}
.wsa8{word-spacing:1.706667pt;}
.ws9{word-spacing:1.760000pt;}
.ws38{word-spacing:1.813333pt;}
.wsef{word-spacing:1.858667pt;}
.ws2b{word-spacing:1.866667pt;}
.wsed{word-spacing:1.904000pt;}
.ws4d{word-spacing:1.920000pt;}
.ws11e{word-spacing:1.949329pt;}
.ws47{word-spacing:1.973333pt;}
.wsd4{word-spacing:1.994667pt;}
.ws50{word-spacing:2.026667pt;}
.wsa0{word-spacing:2.080000pt;}
.wse7{word-spacing:2.085333pt;}
.ws26{word-spacing:2.133333pt;}
.ws67{word-spacing:2.186667pt;}
.ws3e{word-spacing:2.240000pt;}
.wscd{word-spacing:2.266667pt;}
.ws6a{word-spacing:2.293328pt;}
.wsb1{word-spacing:2.346667pt;}
.ws40{word-spacing:2.400000pt;}
.ws116{word-spacing:2.402667pt;}
.ws56{word-spacing:2.506667pt;}
.ws120{word-spacing:2.538667pt;}
.wsb2{word-spacing:2.560000pt;}
.wsce{word-spacing:2.584000pt;}
.ws15{word-spacing:2.613333pt;}
.ws105{word-spacing:2.629333pt;}
.ws91{word-spacing:2.666667pt;}
.ws1e{word-spacing:2.719995pt;}
.wsb{word-spacing:2.773333pt;}
.ws14{word-spacing:2.826667pt;}
.ws2d{word-spacing:2.880000pt;}
.wsa3{word-spacing:2.933333pt;}
.ws16{word-spacing:2.986667pt;}
.wsf8{word-spacing:2.992000pt;}
.ws30{word-spacing:3.040000pt;}
.ws2c{word-spacing:3.093333pt;}
.ws106{word-spacing:3.128000pt;}
.ws86{word-spacing:3.146667pt;}
.ws36{word-spacing:3.200000pt;}
.ws58{word-spacing:3.253333pt;}
.ws102{word-spacing:3.264000pt;}
.ws33{word-spacing:3.306667pt;}
.ws111{word-spacing:3.309333pt;}
.ws96{word-spacing:3.360000pt;}
.ws4e{word-spacing:3.413333pt;}
.wsff{word-spacing:3.445333pt;}
.ws52{word-spacing:3.466667pt;}
.ws51{word-spacing:3.520000pt;}
.ws68{word-spacing:3.573333pt;}
.wse{word-spacing:3.626667pt;}
.wsfc{word-spacing:3.672000pt;}
.wsc5{word-spacing:3.680000pt;}
.ws110{word-spacing:3.717333pt;}
.ws64{word-spacing:3.733333pt;}
.wsfb{word-spacing:3.762667pt;}
.ws5e{word-spacing:3.786661pt;}
.ws11a{word-spacing:3.808000pt;}
.wsc{word-spacing:3.840000pt;}
.ws7f{word-spacing:3.893333pt;}
.ws11c{word-spacing:3.943995pt;}
.ws53{word-spacing:3.946667pt;}
.wscb{word-spacing:3.989333pt;}
.wsb8{word-spacing:4.000000pt;}
.ws83{word-spacing:4.053333pt;}
.ws43{word-spacing:4.106667pt;}
.ws10e{word-spacing:4.125333pt;}
.wsf{word-spacing:4.160000pt;}
.wse2{word-spacing:4.261333pt;}
.wsd2{word-spacing:4.306667pt;}
.ws79{word-spacing:4.320000pt;}
.wsf1{word-spacing:4.352000pt;}
.ws80{word-spacing:4.373333pt;}
.ws103{word-spacing:4.442667pt;}
.ws57{word-spacing:4.480000pt;}
.wse4{word-spacing:4.624000pt;}
.wsa7{word-spacing:4.639995pt;}
.ws13{word-spacing:4.693333pt;}
.ws12{word-spacing:4.800000pt;}
.ws10d{word-spacing:4.850667pt;}
.wsb7{word-spacing:4.960000pt;}
.ws6d{word-spacing:5.013333pt;}
.ws6c{word-spacing:5.066667pt;}
.wsf7{word-spacing:5.077333pt;}
.ws85{word-spacing:5.120000pt;}
.ws61{word-spacing:5.173333pt;}
.ws1b{word-spacing:5.226667pt;}
.ws94{word-spacing:5.333333pt;}
.wsad{word-spacing:5.493333pt;}
.ws4c{word-spacing:5.546667pt;}
.ws84{word-spacing:5.600000pt;}
.ws1f{word-spacing:5.706667pt;}
.ws117{word-spacing:5.802667pt;}
.ws41{word-spacing:5.813333pt;}
.wsa4{word-spacing:5.973333pt;}
.wsa5{word-spacing:6.133333pt;}
.ws11{word-spacing:6.186667pt;}
.ws45{word-spacing:6.293333pt;}
.ws9c{word-spacing:6.346667pt;}
.wsd1{word-spacing:6.392000pt;}
.ws46{word-spacing:6.453333pt;}
.ws35{word-spacing:6.506667pt;}
.ws10b{word-spacing:6.618667pt;}
.ws1a{word-spacing:6.720000pt;}
.ws19{word-spacing:6.826667pt;}
.wsb6{word-spacing:6.933333pt;}
.ws6e{word-spacing:7.146667pt;}
.ws95{word-spacing:7.200000pt;}
.ws1c{word-spacing:7.520000pt;}
.wsb4{word-spacing:7.840000pt;}
.wsdf{word-spacing:8.885333pt;}
.wsda{word-spacing:9.248000pt;}
.wsf0{word-spacing:9.474667pt;}
.ws119{word-spacing:9.610667pt;}
.ws10c{word-spacing:11.197333pt;}
.ws104{word-spacing:12.194667pt;}
.ws109{word-spacing:13.237333pt;}
.ws73{word-spacing:14.420267pt;}
.ws72{word-spacing:14.423307pt;}
.wsac{word-spacing:14.426667pt;}
.ws99{word-spacing:14.426677pt;}
.ws71{word-spacing:17.375317pt;}
.ws97{word-spacing:17.376544pt;}
.wsab{word-spacing:17.377451pt;}
.ws8{word-spacing:48.000000pt;}
.ws8c{word-spacing:67.002667pt;}
.ws8a{word-spacing:89.669333pt;}
.ws88{word-spacing:114.557333pt;}
.ws8d{word-spacing:120.722667pt;}
.ws8b{word-spacing:135.864000pt;}
.ws8e{word-spacing:188.722667pt;}
.wsc1{word-spacing:545.450667pt;}
.wsbc{word-spacing:558.778667pt;}
.wsbf{word-spacing:576.504000pt;}
.wsbd{word-spacing:589.832000pt;}
.wsc0{word-spacing:614.312000pt;}
.wsba{word-spacing:627.640000pt;}
.wsbb{word-spacing:657.832000pt;}
.wsc2{word-spacing:667.170667pt;}
.wsbe{word-spacing:680.498667pt;}
.ws89{word-spacing:2098.848933pt;}
.ws2{word-spacing:2112.581333pt;}
.ws75{word-spacing:2612.480000pt;}
._1{margin-left:-2538.373333pt;}
._b{margin-left:-48.646400pt;}
._8{margin-left:-47.305067pt;}
._11{margin-left:-11.109333pt;}
._10{margin-left:-9.520112pt;}
._7{margin-left:-6.912000pt;}
._52{margin-left:-5.674667pt;}
._6{margin-left:-3.893333pt;}
._5{margin-left:-2.821333pt;}
._0{margin-left:-1.456000pt;}
._2{width:1.349333pt;}
._3{width:2.773333pt;}
._4{width:4.330667pt;}
._f{width:5.562667pt;}
._2d{width:6.453333pt;}
._d{width:7.712000pt;}
._56{width:9.658667pt;}
._9{width:11.273600pt;}
._58{width:12.992000pt;}
._57{width:14.098667pt;}
._55{width:15.819320pt;}
._54{width:19.067880pt;}
._e{width:34.000000pt;}
._53{width:44.904000pt;}
._a{width:48.000000pt;}
._1e{width:78.336000pt;}
._13{width:88.082667pt;}
._21{width:101.002667pt;}
._14{width:109.389333pt;}
._28{width:110.749333pt;}
._15{width:132.056000pt;}
._17{width:147.197333pt;}
._29{width:167.733333pt;}
._24{width:176.528000pt;}
._26{width:178.250667pt;}
._2c{width:179.248000pt;}
._2a{width:188.405333pt;}
._2b{width:189.357333pt;}
._12{width:237.613333pt;}
._27{width:290.285333pt;}
._4f{width:552.085333pt;}
._47{width:556.784000pt;}
._35{width:570.112000pt;}
._40{width:579.450667pt;}
._43{width:587.837333pt;}
._4c{width:589.741333pt;}
._3e{width:599.442667pt;}
._2f{width:601.165333pt;}
._50{width:610.504000pt;}
._33{width:612.770667pt;}
._41{width:622.109333pt;}
._44{width:630.496000pt;}
._3b{width:633.986667pt;}
._30{width:635.437333pt;}
._38{width:638.112000pt;}
._36{width:643.824000pt;}
._51{width:653.162667pt;}
._49{width:655.837333pt;}
._4d{width:667.170667pt;}
._16{width:668.213333pt;}
._3a{width:669.165333pt;}
._4a{width:673.970667pt;}
._25{width:679.048000pt;}
._31{width:681.632000pt;}
._18{width:706.021333pt;}
._2e{width:708.717333pt;}
._4e{width:709.829333pt;}
._34{width:715.949333pt;}
._46{width:719.440000pt;}
._4b{width:721.162667pt;}
._22{width:724.517333pt;}
._3c{width:734.490667pt;}
._42{width:755.933333pt;}
._1f{width:761.010667pt;}
._39{width:770.354667pt;}
._32{width:796.461333pt;}
._48{width:810.338667pt;}
._23{width:815.416000pt;}
._3f{width:836.445333pt;}
._1d{width:841.522667pt;}
._3d{width:874.298667pt;}
._37{width:887.218667pt;}
._45{width:927.202667pt;}
._20{width:932.280000pt;}
._1b{width:1473.440000pt;}
._1c{width:1717.605333pt;}
._19{width:2056.013333pt;}
._1a{width:2150.488000pt;}
._c{width:2199.587200pt;}
.fs6{font-size:27.733333pt;}
.fse{font-size:29.466667pt;}
.fs5{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:39.850667pt;}
.fsf{font-size:40.000000pt;}
.fsb{font-size:41.600000pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.y1b9{bottom:-0.000400pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:0.110533pt;}
.y116{bottom:2.666000pt;}
.y179{bottom:3.201600pt;}
.yd0{bottom:3.294933pt;}
.y187{bottom:5.332267pt;}
.y189{bottom:5.332667pt;}
.y18b{bottom:5.332933pt;}
.y1a6{bottom:5.333067pt;}
.y18d{bottom:5.333333pt;}
.y18f{bottom:5.333733pt;}
.yf6{bottom:5.999333pt;}
.yf4{bottom:6.000667pt;}
.y133{bottom:13.764133pt;}
.y12d{bottom:15.104267pt;}
.y115{bottom:18.666000pt;}
.y12f{bottom:32.077200pt;}
.y114{bottom:32.666000pt;}
.y20{bottom:36.186267pt;}
.y158{bottom:60.078267pt;}
.ye0{bottom:62.662933pt;}
.y1a0{bottom:62.664000pt;}
.y17c{bottom:62.665600pt;}
.y1cd{bottom:62.667600pt;}
.y80{bottom:62.668267pt;}
.y186{bottom:62.669333pt;}
.y143{bottom:62.669600pt;}
.yb0{bottom:62.747600pt;}
.y1bb{bottom:62.750267pt;}
.y1a1{bottom:62.750667pt;}
.y4f{bottom:62.832000pt;}
.y19e{bottom:67.842933pt;}
.y19c{bottom:67.865600pt;}
.y19a{bottom:67.888267pt;}
.y198{bottom:67.910933pt;}
.y196{bottom:67.933600pt;}
.y194{bottom:67.956267pt;}
.y192{bottom:67.978933pt;}
.y190{bottom:68.001600pt;}
.y1b5{bottom:68.004267pt;}
.y1b3{bottom:68.015600pt;}
.y1b1{bottom:68.026933pt;}
.y1af{bottom:68.038267pt;}
.y1ad{bottom:68.049600pt;}
.y1ab{bottom:68.060933pt;}
.y1b8{bottom:68.065333pt;}
.y1a9{bottom:68.072267pt;}
.y1b7{bottom:68.076667pt;}
.y1a7{bottom:68.083600pt;}
.y202{bottom:72.462933pt;}
.y157{bottom:76.080933pt;}
.y23a{bottom:78.104267pt;}
.yaf{bottom:78.750267pt;}
.ydf{bottom:79.996267pt;}
.y17b{bottom:79.998933pt;}
.y7f{bottom:80.001600pt;}
.y142{bottom:80.002933pt;}
.y4e{bottom:80.164000pt;}
.y1ba{bottom:81.370267pt;}
.y1cc{bottom:81.968267pt;}
.y4{bottom:86.333337pt;}
.y201{bottom:87.796933pt;}
.y156{bottom:92.083600pt;}
.y239{bottom:93.438267pt;}
.y4d{bottom:93.501333pt;}
.yde{bottom:97.329600pt;}
.y7e{bottom:97.334933pt;}
.y141{bottom:97.336267pt;}
.y1cb{bottom:98.000267pt;}
.y200{bottom:103.130933pt;}
.y178{bottom:108.081333pt;}
.y238{bottom:108.772267pt;}
.y17a{bottom:109.692267pt;}
.y1ca{bottom:113.334267pt;}
.ydd{bottom:114.662933pt;}
.y7d{bottom:114.668267pt;}
.y140{bottom:114.669600pt;}
.y23e{bottom:117.889600pt;}
.y1ff{bottom:118.464933pt;}
.y19f{bottom:118.872667pt;}
.y1b6{bottom:118.954667pt;}
.y1f{bottom:123.790666pt;}
.y31{bottom:124.034933pt;}
.y237{bottom:124.106267pt;}
.ydc{bottom:131.996267pt;}
.y7c{bottom:132.001600pt;}
.y13f{bottom:132.002933pt;}
.y1c9{bottom:132.634933pt;}
.y1fe{bottom:133.798933pt;}
.y23d{bottom:135.222933pt;}
.y177{bottom:138.358933pt;}
.y236{bottom:139.440267pt;}
.y30{bottom:141.368267pt;}
.y1c8{bottom:147.990667pt;}
.y1fd{bottom:149.132933pt;}
.ydb{bottom:149.329600pt;}
.y7b{bottom:149.334933pt;}
.y13e{bottom:149.336267pt;}
.y235{bottom:154.774267pt;}
.y176{bottom:155.692267pt;}
.y2f{bottom:158.701600pt;}
.y1c7{bottom:163.324667pt;}
.y1fc{bottom:164.466933pt;}
.yda{bottom:166.662933pt;}
.yc9{bottom:166.668267pt;}
.y13d{bottom:166.669600pt;}
.y234{bottom:170.108267pt;}
.y175{bottom:173.025600pt;}
.y16{bottom:175.052000pt;}
.y2e{bottom:176.034933pt;}
.y1c6{bottom:178.658667pt;}
.y92{bottom:179.668267pt;}
.y1fb{bottom:179.800933pt;}
.yd9{bottom:183.996267pt;}
.y7a{bottom:184.001600pt;}
.y13c{bottom:184.002933pt;}
.y233{bottom:185.442267pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y174{bottom:190.358933pt;}
.y23c{bottom:190.476267pt;}
.y2d{bottom:193.368267pt;}
.y1c5{bottom:193.992667pt;}
.y1fa{bottom:195.134933pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y232{bottom:200.776267pt;}
.yd8{bottom:201.329600pt;}
.yf2{bottom:201.334933pt;}
.y13b{bottom:201.336267pt;}
.y173{bottom:207.692267pt;}
.y23b{bottom:207.809600pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y1c4{bottom:209.326667pt;}
.y91{bottom:210.001600pt;}
.y1f9{bottom:210.468933pt;}
.y2c{bottom:210.701600pt;}
.y231{bottom:216.110267pt;}
.yd7{bottom:218.662933pt;}
.yc8{bottom:218.668267pt;}
.y13a{bottom:218.669600pt;}
.y1c3{bottom:224.660667pt;}
.y172{bottom:225.025600pt;}
.y1f8{bottom:225.802933pt;}
.y2b{bottom:228.034933pt;}
.y79{bottom:228.322267pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y230{bottom:231.444267pt;}
.yd6{bottom:235.996267pt;}
.yf1{bottom:236.001600pt;}
.y139{bottom:236.002933pt;}
.y1c2{bottom:239.994667pt;}
.y1f7{bottom:241.136933pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y171{bottom:242.358933pt;}
.y90{bottom:244.668267pt;}
.y2a{bottom:245.368267pt;}
.y78{bottom:245.655600pt;}
.y22f{bottom:246.778267pt;}
.yd5{bottom:253.329600pt;}
.yf0{bottom:253.334933pt;}
.y138{bottom:253.336267pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y1f6{bottom:256.470933pt;}
.y1c1{bottom:259.295333pt;}
.y22e{bottom:262.112267pt;}
.y29{bottom:262.701600pt;}
.y77{bottom:262.988933pt;}
.yd4{bottom:270.662933pt;}
.yc7{bottom:270.668267pt;}
.y137{bottom:270.669600pt;}
.y1f5{bottom:271.804933pt;}
.y1c0{bottom:274.654267pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y170{bottom:277.025600pt;}
.y22d{bottom:277.446267pt;}
.y28{bottom:280.034933pt;}
.y76{bottom:280.322267pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y1f4{bottom:287.138933pt;}
.yd3{bottom:287.996267pt;}
.yc6{bottom:288.001600pt;}
.y136{bottom:288.002933pt;}
.y8f{bottom:289.976267pt;}
.y1bf{bottom:289.988267pt;}
.y22c{bottom:292.780267pt;}
.y27{bottom:297.368267pt;}
.y75{bottom:297.655600pt;}
.y1f3{bottom:302.472933pt;}
.yd2{bottom:305.329600pt;}
.yc5{bottom:305.334933pt;}
.y135{bottom:305.336267pt;}
.y8e{bottom:307.309600pt;}
.y22b{bottom:308.114267pt;}
.y1be{bottom:309.288933pt;}
.yd{bottom:309.452000pt;}
.y188{bottom:312.796000pt;}
.y26{bottom:314.701600pt;}
.y74{bottom:314.988933pt;}
.y1f2{bottom:317.806933pt;}
.y19d{bottom:317.980933pt;}
.y19b{bottom:318.003600pt;}
.y199{bottom:318.026267pt;}
.y197{bottom:318.048933pt;}
.y195{bottom:318.071600pt;}
.y193{bottom:318.094267pt;}
.y191{bottom:318.116933pt;}
.yc4{bottom:322.668267pt;}
.y1a2{bottom:322.877333pt;}
.y22a{bottom:323.448267pt;}
.y8d{bottom:324.642933pt;}
.y1bd{bottom:324.648533pt;}
.y1b4{bottom:328.138267pt;}
.y1b2{bottom:328.149600pt;}
.y1b0{bottom:328.160933pt;}
.y1ae{bottom:328.172267pt;}
.y1ac{bottom:328.183600pt;}
.y1aa{bottom:328.194933pt;}
.y1a8{bottom:328.206267pt;}
.y16f{bottom:329.025600pt;}
.y25{bottom:332.034933pt;}
.y73{bottom:332.322267pt;}
.y1f1{bottom:333.140933pt;}
.ycf{bottom:333.414667pt;}
.yd1{bottom:335.169600pt;}
.y229{bottom:338.782267pt;}
.yc3{bottom:340.001600pt;}
.y8c{bottom:341.976267pt;}
.yc{bottom:343.809333pt;}
.y1bc{bottom:343.949200pt;}
.y16e{bottom:346.358933pt;}
.y12e{bottom:347.178800pt;}
.y134{bottom:348.309600pt;}
.y1f0{bottom:348.474933pt;}
.y132{bottom:348.518933pt;}
.y24{bottom:349.368267pt;}
.y72{bottom:349.655600pt;}
.y113{bottom:351.401333pt;}
.y228{bottom:354.116267pt;}
.yc2{bottom:357.334933pt;}
.y8b{bottom:359.309600pt;}
.y130{bottom:360.630933pt;}
.yb{bottom:362.706666pt;}
.y16d{bottom:363.692267pt;}
.y1ef{bottom:363.808933pt;}
.yce{bottom:363.836267pt;}
.y23{bottom:366.701600pt;}
.y71{bottom:366.988933pt;}
.y227{bottom:369.450267pt;}
.yc1{bottom:374.668267pt;}
.y8a{bottom:376.642933pt;}
.y1ee{bottom:379.142933pt;}
.yae{bottom:380.830267pt;}
.y16c{bottom:381.025600pt;}
.ycd{bottom:381.169600pt;}
.y22{bottom:384.034933pt;}
.y70{bottom:384.322267pt;}
.y226{bottom:384.784267pt;}
.y155{bottom:385.309600pt;}
.y12c{bottom:389.617600pt;}
.yc0{bottom:392.001600pt;}
.y89{bottom:393.976267pt;}
.y1ed{bottom:397.142933pt;}
.yad{bottom:398.163600pt;}
.y16b{bottom:398.358933pt;}
.y225{bottom:400.118267pt;}
.y6f{bottom:401.655600pt;}
.y154{bottom:402.642933pt;}
.y111{bottom:402.944667pt;}
.y112{bottom:406.867333pt;}
.y12b{bottom:406.950933pt;}
.ybf{bottom:409.334933pt;}
.y88{bottom:411.309600pt;}
.y224{bottom:415.452267pt;}
.yac{bottom:415.496933pt;}
.y16a{bottom:415.692267pt;}
.ycc{bottom:415.830933pt;}
.y21{bottom:418.701600pt;}
.y6e{bottom:418.988933pt;}
.y153{bottom:419.976267pt;}
.y110{bottom:422.109333pt;}
.y12a{bottom:424.284267pt;}
.ybe{bottom:426.668267pt;}
.yef{bottom:427.655600pt;}
.y87{bottom:428.642933pt;}
.y223{bottom:430.786267pt;}
.yab{bottom:432.830267pt;}
.y169{bottom:433.025600pt;}
.y1ec{bottom:436.142267pt;}
.y6d{bottom:436.322267pt;}
.y152{bottom:437.309600pt;}
.y10f{bottom:441.274000pt;}
.y129{bottom:441.617600pt;}
.ybd{bottom:444.001600pt;}
.yee{bottom:444.988933pt;}
.y86{bottom:445.976267pt;}
.y222{bottom:446.120267pt;}
.yaa{bottom:450.163600pt;}
.y168{bottom:450.358933pt;}
.ycb{bottom:450.502933pt;}
.y151{bottom:454.642933pt;}
.y1eb{bottom:455.442933pt;}
.y10e{bottom:460.438667pt;}
.ybc{bottom:461.334933pt;}
.y221{bottom:461.454267pt;}
.yed{bottom:462.322267pt;}
.ya{bottom:462.990669pt;}
.y85{bottom:463.309600pt;}
.ya9{bottom:467.496933pt;}
.y167{bottom:467.692267pt;}
.y6c{bottom:470.983600pt;}
.y1ea{bottom:471.474933pt;}
.y150{bottom:471.976267pt;}
.y47{bottom:473.368267pt;}
.y128{bottom:476.278933pt;}
.y220{bottom:476.788267pt;}
.ybb{bottom:478.668267pt;}
.y9{bottom:478.990666pt;}
.y10d{bottom:479.603333pt;}
.yec{bottom:479.655600pt;}
.y84{bottom:480.642933pt;}
.ya8{bottom:484.830267pt;}
.y166{bottom:485.025600pt;}
.y1e9{bottom:486.808933pt;}
.y46{bottom:488.701600pt;}
.y14f{bottom:489.309600pt;}
.y21f{bottom:492.122267pt;}
.y8{bottom:494.990666pt;}
.yba{bottom:496.001600pt;}
.yeb{bottom:496.988933pt;}
.y83{bottom:497.976267pt;}
.y10c{bottom:498.768000pt;}
.ye1{bottom:499.476267pt;}
.ya7{bottom:502.163600pt;}
.y165{bottom:502.358933pt;}
.y18a{bottom:505.589333pt;}
.y6b{bottom:505.655600pt;}
.y1e8{bottom:506.109600pt;}
.y14e{bottom:506.642933pt;}
.y21e{bottom:507.456267pt;}
.y127{bottom:510.950933pt;}
.y1a3{bottom:512.337333pt;}
.yb9{bottom:513.334933pt;}
.yea{bottom:514.322267pt;}
.y82{bottom:515.309600pt;}
.y10b{bottom:517.932667pt;}
.ya6{bottom:519.496933pt;}
.y164{bottom:519.692267pt;}
.y45{bottom:520.701600pt;}
.y1e7{bottom:522.142267pt;}
.y21d{bottom:522.790267pt;}
.y14d{bottom:523.976267pt;}
.yb8{bottom:530.668267pt;}
.ye9{bottom:531.655600pt;}
.y81{bottom:532.642933pt;}
.y44{bottom:536.034933pt;}
.y163{bottom:537.025600pt;}
.y10a{bottom:537.097333pt;}
.y21c{bottom:538.124267pt;}
.y14c{bottom:541.309600pt;}
.y1e6{bottom:541.442933pt;}
.yb7{bottom:548.001600pt;}
.ye8{bottom:548.988933pt;}
.y6a{bottom:549.976267pt;}
.y21b{bottom:553.458267pt;}
.ya5{bottom:554.163600pt;}
.y162{bottom:554.358933pt;}
.y109{bottom:556.262000pt;}
.y1e5{bottom:557.475600pt;}
.y14b{bottom:558.642933pt;}
.y126{bottom:564.130267pt;}
.yb6{bottom:565.334933pt;}
.ye7{bottom:566.322267pt;}
.y69{bottom:567.309600pt;}
.y43{bottom:568.034933pt;}
.y21a{bottom:568.792267pt;}
.y161{bottom:571.692267pt;}
.y7{bottom:573.786667pt;}
.y108{bottom:575.426667pt;}
.y14a{bottom:575.976267pt;}
.y1e4{bottom:576.776267pt;}
.y125{bottom:581.463600pt;}
.yb5{bottom:582.668267pt;}
.ye6{bottom:583.655600pt;}
.y219{bottom:584.126267pt;}
.y68{bottom:584.642933pt;}
.y42{bottom:588.034933pt;}
.y160{bottom:589.025600pt;}
.y6{bottom:592.685334pt;}
.y149{bottom:593.309600pt;}
.y107{bottom:594.591333pt;}
.y1e3{bottom:596.776267pt;}
.y124{bottom:598.796933pt;}
.y218{bottom:599.460267pt;}
.yb4{bottom:600.001600pt;}
.ye5{bottom:600.988933pt;}
.y67{bottom:601.976267pt;}
.y15f{bottom:606.358933pt;}
.y41{bottom:608.034933pt;}
.y148{bottom:610.642933pt;}
.ya4{bottom:611.736533pt;}
.y1e2{bottom:612.808267pt;}
.y15d{bottom:613.550933pt;}
.y106{bottom:613.756000pt;}
.y217{bottom:614.794267pt;}
.y123{bottom:616.130267pt;}
.yb3{bottom:617.334933pt;}
.ye4{bottom:618.322267pt;}
.y66{bottom:619.309600pt;}
.y147{bottom:627.976267pt;}
.y40{bottom:628.034933pt;}
.y1e1{bottom:628.142267pt;}
.ya3{bottom:629.069867pt;}
.y15c{bottom:629.553600pt;}
.y216{bottom:630.128267pt;}
.y105{bottom:632.920667pt;}
.y122{bottom:633.463600pt;}
.yb2{bottom:634.668267pt;}
.ye3{bottom:635.655600pt;}
.y65{bottom:636.642933pt;}
.y15e{bottom:641.025600pt;}
.y146{bottom:645.309600pt;}
.y215{bottom:645.462267pt;}
.y15b{bottom:645.556267pt;}
.y5{bottom:645.598667pt;}
.ya2{bottom:646.403200pt;}
.y1e0{bottom:647.442933pt;}
.y3f{bottom:648.034933pt;}
.y121{bottom:650.796933pt;}
.yb1{bottom:652.001600pt;}
.y104{bottom:652.085333pt;}
.y185{bottom:652.988933pt;}
.y64{bottom:653.976267pt;}
.y214{bottom:660.796267pt;}
.y145{bottom:662.642933pt;}
.y1df{bottom:663.474933pt;}
.ya1{bottom:663.736533pt;}
.y3e{bottom:668.034933pt;}
.y120{bottom:668.130267pt;}
.y3{bottom:668.977329pt;}
.ye2{bottom:670.322267pt;}
.y103{bottom:671.250000pt;}
.y63{bottom:671.309600pt;}
.y38{bottom:672.701600pt;}
.y213{bottom:676.130267pt;}
.y1de{bottom:678.808933pt;}
.ya0{bottom:681.069867pt;}
.y11f{bottom:685.463600pt;}
.y37{bottom:687.368267pt;}
.y184{bottom:687.655600pt;}
.y3d{bottom:688.034933pt;}
.y62{bottom:688.642933pt;}
.y102{bottom:690.414667pt;}
.y212{bottom:691.464267pt;}
.y144{bottom:697.309600pt;}
.y1dd{bottom:698.109600pt;}
.y18c{bottom:698.382667pt;}
.y9f{bottom:698.403200pt;}
.y1a4{bottom:701.798667pt;}
.y36{bottom:702.034933pt;}
.y11e{bottom:702.796933pt;}
.y183{bottom:704.988933pt;}
.y61{bottom:705.976267pt;}
.y211{bottom:706.798267pt;}
.y3c{bottom:708.034933pt;}
.y101{bottom:709.579333pt;}
.y1dc{bottom:714.142267pt;}
.y9e{bottom:715.736533pt;}
.y11d{bottom:720.130267pt;}
.y210{bottom:722.132267pt;}
.y182{bottom:722.322267pt;}
.y60{bottom:723.309600pt;}
.y3b{bottom:728.034933pt;}
.y100{bottom:728.744000pt;}
.y35{bottom:731.368267pt;}
.y9d{bottom:733.069867pt;}
.y1db{bottom:733.442933pt;}
.y20f{bottom:737.466267pt;}
.y181{bottom:739.655600pt;}
.y5f{bottom:740.642933pt;}
.yff{bottom:747.908667pt;}
.y3a{bottom:748.034933pt;}
.y1da{bottom:749.474933pt;}
.y34{bottom:749.768267pt;}
.y9c{bottom:750.403200pt;}
.y20e{bottom:752.800267pt;}
.y11c{bottom:754.796933pt;}
.y180{bottom:756.988933pt;}
.y5e{bottom:757.976267pt;}
.y33{bottom:764.701600pt;}
.y1d9{bottom:764.808933pt;}
.yfe{bottom:767.073333pt;}
.y9b{bottom:767.736533pt;}
.y39{bottom:768.034933pt;}
.y20d{bottom:768.134267pt;}
.y17f{bottom:774.322267pt;}
.y5d{bottom:775.309600pt;}
.y2{bottom:781.661334pt;}
.y32{bottom:783.101600pt;}
.y20c{bottom:783.468267pt;}
.y1d8{bottom:784.109600pt;}
.y99{bottom:785.069867pt;}
.yfd{bottom:786.238000pt;}
.y9a{bottom:789.736533pt;}
.y17e{bottom:791.655600pt;}
.y5c{bottom:792.642933pt;}
.y20b{bottom:798.802267pt;}
.y98{bottom:802.403200pt;}
.y1d7{bottom:804.109600pt;}
.yfc{bottom:805.402667pt;}
.y11b{bottom:807.976267pt;}
.y5b{bottom:809.976267pt;}
.y20a{bottom:814.136267pt;}
.y1d6{bottom:820.141600pt;}
.yfb{bottom:824.571333pt;}
.y11a{bottom:825.309600pt;}
.y4a{bottom:826.034933pt;}
.y17d{bottom:826.322267pt;}
.y5a{bottom:827.309600pt;}
.y209{bottom:829.470267pt;}
.y1d5{bottom:835.475600pt;}
.y97{bottom:837.069867pt;}
.y119{bottom:842.642933pt;}
.yfa{bottom:843.736000pt;}
.y59{bottom:844.642933pt;}
.y208{bottom:844.804267pt;}
.y1d4{bottom:854.776267pt;}
.y1{bottom:859.312000pt;}
.y118{bottom:859.976267pt;}
.y207{bottom:860.138267pt;}
.y58{bottom:861.976267pt;}
.yf9{bottom:862.904667pt;}
.y1d3{bottom:870.807600pt;}
.y206{bottom:875.472267pt;}
.y117{bottom:877.309600pt;}
.y49{bottom:878.034933pt;}
.y57{bottom:879.309600pt;}
.yf8{bottom:882.069333pt;}
.y1d2{bottom:886.141600pt;}
.y205{bottom:890.806267pt;}
.y96{bottom:894.642933pt;}
.y56{bottom:896.642933pt;}
.yf7{bottom:901.234000pt;}
.y1d1{bottom:901.475600pt;}
.y18e{bottom:901.842667pt;}
.y1a5{bottom:901.925333pt;}
.y204{bottom:906.140267pt;}
.y95{bottom:911.976267pt;}
.y55{bottom:913.976267pt;}
.yf5{bottom:915.734667pt;}
.y1d0{bottom:920.776267pt;}
.y203{bottom:921.474267pt;}
.y94{bottom:929.309600pt;}
.y54{bottom:931.309600pt;}
.y15a{bottom:935.470933pt;}
.y1cf{bottom:936.808267pt;}
.yf3{bottom:937.566667pt;}
.y48{bottom:940.769067pt;}
.y53{bottom:948.642933pt;}
.y159{bottom:951.473600pt;}
.y1ce{bottom:952.142267pt;}
.y93{bottom:963.976267pt;}
.y52{bottom:965.976267pt;}
.yca{bottom:967.476267pt;}
.y4b{bottom:976.856000pt;}
.y4c{bottom:996.120000pt;}
.y51{bottom:1004.690267pt;}
.y50{bottom:1004.756933pt;}
.h24{height:3.506835pt;}
.h25{height:12.048000pt;}
.h19{height:12.336000pt;}
.he{height:19.773867pt;}
.h1d{height:20.500000pt;}
.h1e{height:21.009733pt;}
.h1b{height:21.166667pt;}
.h18{height:24.717333pt;}
.h17{height:25.909333pt;}
.ha{height:26.618667pt;}
.h16{height:26.629867pt;}
.h23{height:27.218005pt;}
.h2f{height:27.440000pt;}
.h20{height:28.520000pt;}
.h7{height:28.560000pt;}
.h10{height:29.610667pt;}
.hf{height:30.421333pt;}
.h1c{height:31.461333pt;}
.h12{height:32.322667pt;}
.h13{height:33.312000pt;}
.h1a{height:36.290431pt;}
.h11{height:37.013333pt;}
.hd{height:38.026667pt;}
.h21{height:38.616000pt;}
.h6{height:40.800000pt;}
.h22{height:41.279027pt;}
.h3{height:42.840000pt;}
.hc{height:43.384000pt;}
.hb{height:44.416000pt;}
.h1f{height:44.833333pt;}
.h2{height:48.960000pt;}
.h15{height:51.270400pt;}
.h14{height:66.624000pt;}
.h5{height:69.360000pt;}
.h2a{height:74.133333pt;}
.h4{height:105.826671pt;}
.h2c{height:189.461333pt;}
.h27{height:192.793333pt;}
.h28{height:192.794667pt;}
.h2d{height:200.126667pt;}
.h29{height:203.460000pt;}
.h2b{height:250.126667pt;}
.h2e{height:260.126667pt;}
.h26{height:913.308000pt;}
.h8{height:1043.149333pt;}
.h9{height:1043.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w10{width:20.500000pt;}
.wf{width:20.501333pt;}
.we{width:21.166667pt;}
.wd{width:21.833333pt;}
.w11{width:30.833333pt;}
.w9{width:61.352000pt;}
.w5{width:64.518667pt;}
.w7{width:69.850667pt;}
.w6{width:69.852000pt;}
.w8{width:132.352000pt;}
.wc{width:264.744000pt;}
.wb{width:276.840000pt;}
.w4{width:278.328000pt;}
.w2{width:566.928019pt;}
.wa{width:672.000000pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.333200pt;}
.x4b{left:12.166800pt;}
.x27{left:15.166933pt;}
.x4d{left:28.166800pt;}
.x8{left:59.716533pt;}
.x6{left:60.850133pt;}
.xb{left:61.984267pt;}
.x18{left:66.184000pt;}
.x20{left:68.029467pt;}
.x4f{left:74.184000pt;}
.x51{left:78.183867pt;}
.x7{left:80.845067pt;}
.x50{left:84.854667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:95.517333pt;}
.x1e{left:117.055067pt;}
.x4{left:180.874667pt;}
.x4e{left:184.979333pt;}
.x10{left:193.202667pt;}
.x19{left:198.523333pt;}
.x37{left:215.554667pt;}
.x36{left:219.366933pt;}
.x26{left:229.833333pt;}
.x38{left:238.054667pt;}
.x28{left:251.666667pt;}
.xf{left:257.686667pt;}
.x24{left:264.478667pt;}
.x23{left:270.915867pt;}
.x39{left:273.054800pt;}
.x29{left:274.166667pt;}
.x9{left:279.049867pt;}
.x3a{left:292.219467pt;}
.x1f{left:294.437200pt;}
.x2a{left:309.166933pt;}
.x3b{left:311.384133pt;}
.x12{left:322.240000pt;}
.x21{left:323.333067pt;}
.x1d{left:327.550133pt;}
.x3c{left:330.548800pt;}
.x22{left:348.244933pt;}
.x3d{left:349.713467pt;}
.x2b{left:366.660933pt;}
.x3e{left:368.878133pt;}
.x2c{left:385.825600pt;}
.x3f{left:388.042800pt;}
.x13{left:392.092000pt;}
.x3{left:404.408000pt;}
.x40{left:407.207467pt;}
.x2d{left:424.154933pt;}
.x41{left:426.372133pt;}
.x2e{left:443.319600pt;}
.x42{left:445.536800pt;}
.x14{left:461.944000pt;}
.x43{left:464.701467pt;}
.x2f{left:481.648933pt;}
.x44{left:483.866133pt;}
.x30{left:500.813600pt;}
.x45{left:503.030800pt;}
.xd{left:515.823067pt;}
.x31{left:519.978267pt;}
.x46{left:522.195467pt;}
.x25{left:524.850133pt;}
.xe{left:527.517333pt;}
.x15{left:531.796000pt;}
.x1b{left:537.126133pt;}
.x32{left:539.142933pt;}
.x47{left:541.360133pt;}
.x33{left:558.307600pt;}
.x48{left:560.552800pt;}
.x5{left:564.226133pt;}
.x35{left:573.533467pt;}
.x34{left:577.472267pt;}
.x49{left:579.717467pt;}
.x4a{left:586.388000pt;}
.x4c{left:598.554800pt;}
.x16{left:601.646667pt;}
.x1c{left:606.973467pt;}
.xa{left:621.169067pt;}
.x17{left:671.498667pt;}
.x1a{left:676.832133pt;}
}




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