
    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_410ee50c3ad569b95288de06.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_4aeef406ec8d395e4cf25481.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_65510321011d5113b60aac4a.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_37225fdc1a1515c1fe22cd5e.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_cae3584087159f50c70631cb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8585688c86fce3adbb6e3a76.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aa63741b92830b1a4dc67b67.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_07e4570ce017bc88bb852ea9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8d398466607dfd44fcf03987.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959473;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_b353278d95c8abd7473e8fd6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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);}
.v2{vertical-align:-21.000000px;}
.v4{vertical-align:-18.899963px;}
.v5{vertical-align:-17.849991px;}
.v9{vertical-align:-10.806018px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:10.799927px;}
.v6{vertical-align:14.704819px;}
.v3{vertical-align:18.690110px;}
.v7{vertical-align:22.512000px;}
.v8{vertical-align:44.982000px;}
.ls38{letter-spacing:-6.912000px;}
.ls3e{letter-spacing:-4.074000px;}
.ls6b{letter-spacing:-2.790000px;}
.ls68{letter-spacing:-1.530000px;}
.ls7a{letter-spacing:-1.170000px;}
.ls3d{letter-spacing:-1.092000px;}
.ls6a{letter-spacing:-1.080000px;}
.ls7b{letter-spacing:-0.945000px;}
.ls3a{letter-spacing:-0.918000px;}
.ls6e{letter-spacing:-0.900000px;}
.ls3b{letter-spacing:-0.810000px;}
.ls36{letter-spacing:-0.702000px;}
.ls6f{letter-spacing:-0.630000px;}
.ls37{letter-spacing:-0.546000px;}
.ls79{letter-spacing:-0.540000px;}
.ls66{letter-spacing:-0.495000px;}
.ls39{letter-spacing:-0.486000px;}
.ls70{letter-spacing:-0.450000px;}
.ls2d{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.378000px;}
.ls3f{letter-spacing:-0.336000px;}
.ls10{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.270000px;}
.ls6c{letter-spacing:-0.225000px;}
.ls13{letter-spacing:-0.216000px;}
.ls42{letter-spacing:-0.210600px;}
.ls46{letter-spacing:-0.210000px;}
.ls72{letter-spacing:-0.180000px;}
.ls4c{letter-spacing:-0.175500px;}
.ls11{letter-spacing:-0.162000px;}
.ls4b{letter-spacing:-0.140400px;}
.ls25{letter-spacing:-0.108000px;}
.ls49{letter-spacing:-0.105300px;}
.ls67{letter-spacing:-0.090000px;}
.ls29{letter-spacing:-0.070200px;}
.ls26{letter-spacing:-0.054000px;}
.ls6d{letter-spacing:-0.045000px;}
.ls27{letter-spacing:-0.035100px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.013223px;}
.lse{letter-spacing:0.018028px;}
.ls50{letter-spacing:0.024620px;}
.ls24{letter-spacing:0.035100px;}
.ls69{letter-spacing:0.045000px;}
.ls19{letter-spacing:0.054000px;}
.lsb{letter-spacing:0.067741px;}
.ls28{letter-spacing:0.070200px;}
.ls71{letter-spacing:0.090000px;}
.ls45{letter-spacing:0.105300px;}
.lsa{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.125145px;}
.ls5{letter-spacing:0.126714px;}
.ls73{letter-spacing:0.135000px;}
.ls5c{letter-spacing:0.135047px;}
.ls48{letter-spacing:0.140400px;}
.ls1c{letter-spacing:0.157950px;}
.ls7{letter-spacing:0.158836px;}
.ls8{letter-spacing:0.159019px;}
.ls3{letter-spacing:0.159202px;}
.ls1b{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.175500px;}
.ls57{letter-spacing:0.180000px;}
.ls52{letter-spacing:0.200273px;}
.ls56{letter-spacing:0.202500px;}
.ls3c{letter-spacing:0.210000px;}
.ls43{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.216000px;}
.ls54{letter-spacing:0.221400px;}
.ls59{letter-spacing:0.225000px;}
.ls2b{letter-spacing:0.245700px;}
.ls62{letter-spacing:0.247500px;}
.ls55{letter-spacing:0.264000px;}
.ls12{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.280800px;}
.ls77{letter-spacing:0.297000px;}
.ls44{letter-spacing:0.315900px;}
.ls9{letter-spacing:0.324000px;}
.ls4e{letter-spacing:0.347435px;}
.ls4f{letter-spacing:0.347979px;}
.ls2a{letter-spacing:0.351000px;}
.ls5a{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.361800px;}
.ls1d{letter-spacing:0.378000px;}
.ls1f{letter-spacing:0.386100px;}
.ls5e{letter-spacing:0.405000px;}
.ls51{letter-spacing:0.405479px;}
.ls1a{letter-spacing:0.421200px;}
.lsc{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.435142px;}
.ls78{letter-spacing:0.450000px;}
.ls15{letter-spacing:0.486000px;}
.ls63{letter-spacing:0.495000px;}
.ls20{letter-spacing:0.502164px;}
.ls22{letter-spacing:0.513000px;}
.ls4a{letter-spacing:0.526500px;}
.ls1e{letter-spacing:0.540000px;}
.ls5b{letter-spacing:0.585000px;}
.ls40{letter-spacing:0.594000px;}
.ls5d{letter-spacing:0.630000px;}
.ls16{letter-spacing:0.648000px;}
.ls23{letter-spacing:0.702000px;}
.ls58{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.756000px;}
.ls47{letter-spacing:0.810000px;}
.ls75{letter-spacing:0.918000px;}
.ls4d{letter-spacing:0.972000px;}
.ls61{letter-spacing:1.260000px;}
.ls76{letter-spacing:1.296000px;}
.ls74{letter-spacing:1.395000px;}
.ls60{letter-spacing:1.516442px;}
.ls65{letter-spacing:1.575000px;}
.ls53{letter-spacing:1.836000px;}
.ls5f{letter-spacing:1.894461px;}
.ls64{letter-spacing:2.087955px;}
.ls0{letter-spacing:3.000000px;}
.ls18{letter-spacing:12.066600px;}
.ls30{letter-spacing:141.540000px;}
.ls33{letter-spacing:213.402000px;}
.ls34{letter-spacing:215.166000px;}
.ls31{letter-spacing:226.506000px;}
.ls32{letter-spacing:228.270000px;}
.ls2e{letter-spacing:233.310000px;}
.ls35{letter-spacing:246.161994px;}
.ls2f{letter-spacing:290.724000px;}
.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;}
.ws3a{word-spacing:-42.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws86{word-spacing:-13.860000px;}
.ws21{word-spacing:-13.596000px;}
.ws17{word-spacing:-12.906000px;}
.ws64{word-spacing:-12.852000px;}
.ws1f{word-spacing:-12.528000px;}
.ws75{word-spacing:-12.474000px;}
.ws7e{word-spacing:-12.420000px;}
.ws23{word-spacing:-12.366000px;}
.ws81{word-spacing:-12.312000px;}
.ws22{word-spacing:-12.258000px;}
.ws58{word-spacing:-12.150000px;}
.ws78{word-spacing:-12.096000px;}
.ws14{word-spacing:-12.066600px;}
.ws92{word-spacing:-11.988000px;}
.ws20{word-spacing:-11.934000px;}
.ws40{word-spacing:-11.880000px;}
.ws6b{word-spacing:-11.718000px;}
.ws37{word-spacing:-11.664000px;}
.ws42{word-spacing:-11.556000px;}
.ws41{word-spacing:-11.448000px;}
.ws9b{word-spacing:-10.845000px;}
.ws97{word-spacing:-10.710000px;}
.ws94{word-spacing:-10.530000px;}
.wsb4{word-spacing:-10.440000px;}
.ws87{word-spacing:-10.417500px;}
.ws95{word-spacing:-10.350000px;}
.ws9c{word-spacing:-10.125000px;}
.ws98{word-spacing:-10.080000px;}
.ws9a{word-spacing:-10.012500px;}
.ws99{word-spacing:-9.855000px;}
.ws93{word-spacing:-9.810000px;}
.ws15{word-spacing:-9.600000px;}
.ws5b{word-spacing:-9.534000px;}
.wsba{word-spacing:-9.360000px;}
.ws96{word-spacing:-9.225000px;}
.ws43{word-spacing:-9.114000px;}
.ws6f{word-spacing:-8.494200px;}
.ws18{word-spacing:-8.388900px;}
.ws55{word-spacing:-8.353800px;}
.ws1d{word-spacing:-8.318700px;}
.ws56{word-spacing:-8.283600px;}
.ws4{word-spacing:-8.248500px;}
.ws1e{word-spacing:-8.213400px;}
.ws54{word-spacing:-8.178300px;}
.ws1a{word-spacing:-8.143200px;}
.ws6d{word-spacing:-8.108100px;}
.ws57{word-spacing:-8.073000px;}
.ws1b{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws16{word-spacing:-8.002800px;}
.ws3{word-spacing:-7.967700px;}
.ws19{word-spacing:-7.932600px;}
.ws1c{word-spacing:-7.897500px;}
.ws6e{word-spacing:-7.862400px;}
.ws70{word-spacing:-7.827300px;}
.ws71{word-spacing:-7.792200px;}
.ws53{word-spacing:-7.757100px;}
.ws5{word-spacing:-6.630000px;}
.wsa8{word-spacing:-6.435000px;}
.wsad{word-spacing:-6.210000px;}
.ws38{word-spacing:-6.197100px;}
.wsb0{word-spacing:-6.165000px;}
.ws9f{word-spacing:-6.030000px;}
.wsbc{word-spacing:-5.940000px;}
.wsbb{word-spacing:-5.850000px;}
.wsb3{word-spacing:-5.760000px;}
.wsb2{word-spacing:-5.715000px;}
.wsac{word-spacing:-5.535000px;}
.ws80{word-spacing:-5.508000px;}
.ws3f{word-spacing:-5.454000px;}
.ws51{word-spacing:-4.284000px;}
.ws50{word-spacing:-3.864000px;}
.ws8b{word-spacing:-1.404000px;}
.ws30{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.242000px;}
.ws8{word-spacing:-1.188000px;}
.ws63{word-spacing:-1.134000px;}
.ws72{word-spacing:-1.080000px;}
.wsa6{word-spacing:-1.035000px;}
.ws5f{word-spacing:-1.026000px;}
.ws8e{word-spacing:-0.990000px;}
.ws69{word-spacing:-0.972000px;}
.wsc1{word-spacing:-0.945000px;}
.ws2d{word-spacing:-0.918000px;}
.wsa4{word-spacing:-0.900000px;}
.ws27{word-spacing:-0.864000px;}
.wsa3{word-spacing:-0.855000px;}
.ws32{word-spacing:-0.810000px;}
.ws85{word-spacing:-0.702000px;}
.wse{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.594000px;}
.ws68{word-spacing:-0.540000px;}
.wsb8{word-spacing:-0.495000px;}
.ws11{word-spacing:-0.486000px;}
.ws83{word-spacing:-0.432000px;}
.wsae{word-spacing:-0.405000px;}
.ws65{word-spacing:-0.386100px;}
.wsb6{word-spacing:-0.360000px;}
.ws2f{word-spacing:-0.351000px;}
.ws35{word-spacing:-0.324000px;}
.ws67{word-spacing:-0.315900px;}
.wsbe{word-spacing:-0.315000px;}
.ws31{word-spacing:-0.270000px;}
.ws8a{word-spacing:-0.264000px;}
.ws9d{word-spacing:-0.225000px;}
.ws7{word-spacing:-0.216000px;}
.ws61{word-spacing:-0.210600px;}
.ws52{word-spacing:-0.210000px;}
.ws8d{word-spacing:-0.180000px;}
.ws62{word-spacing:-0.175500px;}
.ws76{word-spacing:-0.140400px;}
.wsa7{word-spacing:-0.135000px;}
.ws2e{word-spacing:-0.108000px;}
.wsaf{word-spacing:-0.090000px;}
.ws5d{word-spacing:-0.054000px;}
.wsbd{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.ws26{word-spacing:0.035100px;}
.ws2b{word-spacing:0.054000px;}
.ws7c{word-spacing:0.108000px;}
.ws8c{word-spacing:0.135000px;}
.ws7b{word-spacing:0.140400px;}
.ws88{word-spacing:0.162000px;}
.wsa2{word-spacing:0.180000px;}
.ws5e{word-spacing:0.210600px;}
.ws29{word-spacing:0.216000px;}
.wsa0{word-spacing:0.225000px;}
.ws34{word-spacing:0.270000px;}
.wsb7{word-spacing:0.315000px;}
.ws66{word-spacing:0.324000px;}
.ws6a{word-spacing:0.336000px;}
.wsd{word-spacing:0.378000px;}
.ws9e{word-spacing:0.405000px;}
.ws28{word-spacing:0.432000px;}
.ws36{word-spacing:0.486000px;}
.ws91{word-spacing:0.495000px;}
.ws60{word-spacing:0.540000px;}
.ws82{word-spacing:0.648000px;}
.wsab{word-spacing:0.720000px;}
.ws79{word-spacing:0.756000px;}
.wsb5{word-spacing:0.765000px;}
.wsb9{word-spacing:0.810000px;}
.ws24{word-spacing:0.864000px;}
.wsc0{word-spacing:0.900000px;}
.ws4f{word-spacing:0.918000px;}
.wsbf{word-spacing:0.945000px;}
.ws2c{word-spacing:0.972000px;}
.ws8f{word-spacing:0.990000px;}
.wsa{word-spacing:1.026000px;}
.ws90{word-spacing:1.035000px;}
.ws74{word-spacing:1.080000px;}
.wsa5{word-spacing:1.125000px;}
.wsc2{word-spacing:1.170000px;}
.ws10{word-spacing:1.188000px;}
.wsb1{word-spacing:1.215000px;}
.wsf{word-spacing:1.242000px;}
.ws2a{word-spacing:1.350000px;}
.ws73{word-spacing:1.404000px;}
.ws77{word-spacing:1.458000px;}
.wsb{word-spacing:1.512000px;}
.wsa1{word-spacing:1.530000px;}
.ws7d{word-spacing:1.620000px;}
.wsa9{word-spacing:1.665000px;}
.ws33{word-spacing:1.782000px;}
.ws7a{word-spacing:1.836000px;}
.ws25{word-spacing:1.890000px;}
.wsca{word-spacing:2.052000px;}
.ws5c{word-spacing:2.106000px;}
.ws84{word-spacing:2.160000px;}
.ws89{word-spacing:2.268000px;}
.wsc3{word-spacing:2.646000px;}
.wsaa{word-spacing:2.790000px;}
.wsc7{word-spacing:3.024000px;}
.ws7f{word-spacing:3.132000px;}
.wsc5{word-spacing:3.186000px;}
.wsc6{word-spacing:3.348000px;}
.wsc4{word-spacing:4.590000px;}
.wscb{word-spacing:5.670000px;}
.wscc{word-spacing:6.264000px;}
.wsc8{word-spacing:6.480000px;}
.wsc9{word-spacing:6.750000px;}
.ws6c{word-spacing:15.282000px;}
.ws12{word-spacing:15.453000px;}
.ws13{word-spacing:17.289000px;}
.ws5a{word-spacing:46.368000px;}
.ws59{word-spacing:133.644000px;}
.ws39{word-spacing:152.294771px;}
.ws48{word-spacing:216.972000px;}
.ws4e{word-spacing:217.110811px;}
.ws47{word-spacing:237.270906px;}
.ws45{word-spacing:237.271455px;}
.ws4d{word-spacing:239.040803px;}
.ws3e{word-spacing:244.064119px;}
.ws49{word-spacing:254.814000px;}
.ws4c{word-spacing:272.164200px;}
.ws4a{word-spacing:279.636000px;}
.ws44{word-spacing:287.364000px;}
.ws46{word-spacing:294.630000px;}
.ws4b{word-spacing:325.546200px;}
.ws3b{word-spacing:328.230000px;}
.ws3c{word-spacing:343.727987px;}
.ws3d{word-spacing:365.315987px;}
._4e{margin-left:-20.952007px;}
._12{margin-left:-14.592033px;}
._51{margin-left:-13.580400px;}
._7{margin-left:-12.579600px;}
._6{margin-left:-11.392800px;}
._11{margin-left:-9.974400px;}
._4d{margin-left:-8.803867px;}
._13{margin-left:-7.465209px;}
._8{margin-left:-6.463200px;}
._2{margin-left:-5.272800px;}
._3{margin-left:-4.062532px;}
._4{margin-left:-2.910600px;}
._0{margin-left:-1.876800px;}
._5{width:1.255200px;}
._f{width:2.901900px;}
._48{width:4.242000px;}
._50{width:5.790532px;}
._39{width:6.906600px;}
._38{width:8.459400px;}
._4f{width:10.192800px;}
._b{width:11.913776px;}
._c{width:13.050900px;}
._9{width:14.182924px;}
._a{width:15.376500px;}
._e{width:16.722899px;}
._d{width:17.727600px;}
._10{width:19.280492px;}
._3c{width:52.189171px;}
._24{width:54.208787px;}
._18{width:55.776000px;}
._4a{width:61.794600px;}
._23{width:64.637988px;}
._36{width:76.776000px;}
._22{width:91.938000px;}
._1d{width:93.292350px;}
._14{width:99.998100px;}
._2f{width:101.853618px;}
._34{width:102.932417px;}
._33{width:106.470000px;}
._16{width:113.060100px;}
._44{width:117.213600px;}
._25{width:121.674000px;}
._45{width:124.308532px;}
._30{width:126.437088px;}
._3a{width:130.280086px;}
._15{width:132.758088px;}
._3f{width:135.072000px;}
._1c{width:137.592000px;}
._3d{width:140.741989px;}
._47{width:147.210000px;}
._28{width:148.389888px;}
._49{width:149.478590px;}
._2b{width:154.102800px;}
._4c{width:155.205600px;}
._32{width:156.495888px;}
._2d{width:161.379587px;}
._21{width:164.794787px;}
._46{width:168.971701px;}
._29{width:174.005987px;}
._2e{width:176.655888px;}
._4b{width:178.108800px;}
._42{width:182.603699px;}
._40{width:183.666000px;}
._37{width:187.151988px;}
._3b{width:191.806200px;}
._43{width:196.210800px;}
._41{width:202.230000px;}
._2a{width:208.782001px;}
._1e{width:214.703987px;}
._1f{width:218.190000px;}
._1a{width:223.944000px;}
._1b{width:228.899988px;}
._3e{width:242.021980px;}
._20{width:243.305988px;}
._26{width:246.581988px;}
._31{width:265.342787px;}
._19{width:271.264787px;}
._35{width:278.711987px;}
._27{width:290.724000px;}
._17{width:310.434600px;}
._1{width:320.836800px;}
._2c{width:521.262000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsb{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsc{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;}
.yb5{bottom:3.199200px;}
.y39{bottom:3.199350px;}
.yf9{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y38{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.yb6{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y37{bottom:68.037452px;}
.y17f{bottom:70.983148px;}
.y189{bottom:71.875652px;}
.y1bb{bottom:75.653402px;}
.y141{bottom:76.981648px;}
.ye6{bottom:79.380152px;}
.y85{bottom:82.448095px;}
.y20f{bottom:82.662034px;}
.y36{bottom:83.031452px;}
.y35{bottom:83.037452px;}
.y226{bottom:83.901903px;}
.y17e{bottom:85.981648px;}
.y188{bottom:86.874152px;}
.y1ba{bottom:88.399652px;}
.y140{bottom:91.981648px;}
.ye5{bottom:94.378652px;}
.y7c{bottom:95.075415px;}
.y20e{bottom:95.408284px;}
.y84{bottom:97.446595px;}
.y34{bottom:98.037452px;}
.y225{bottom:98.900403px;}
.y17d{bottom:100.981648px;}
.y1b9{bottom:101.145902px;}
.y187{bottom:101.872652px;}
.y13f{bottom:106.983148px;}
.y20d{bottom:108.154534px;}
.ye4{bottom:109.377152px;}
.y7b{bottom:110.073915px;}
.y83{bottom:112.445095px;}
.y33{bottom:113.037452px;}
.y1b8{bottom:113.892152px;}
.y224{bottom:113.898903px;}
.y17c{bottom:115.980148px;}
.y186{bottom:116.871152px;}
.y20c{bottom:120.900784px;}
.y13e{bottom:121.981648px;}
.ye3{bottom:124.375652px;}
.y7a{bottom:125.072415px;}
.y1b7{bottom:126.638402px;}
.y82{bottom:127.443595px;}
.y32{bottom:128.037452px;}
.y223{bottom:128.898903px;}
.y17b{bottom:130.980148px;}
.y185{bottom:131.871152px;}
.y20b{bottom:133.647034px;}
.y13d{bottom:136.981648px;}
.ye2{bottom:139.374152px;}
.y1b6{bottom:139.384652px;}
.y79{bottom:140.070915px;}
.y81{bottom:142.442095px;}
.y31{bottom:143.037452px;}
.y20a{bottom:146.393284px;}
.y184{bottom:146.875652px;}
.y13c{bottom:151.995148px;}
.y1b5{bottom:152.130902px;}
.ye1{bottom:154.372652px;}
.yff{bottom:154.479142px;}
.y78{bottom:155.069415px;}
.y80{bottom:157.440595px;}
.y209{bottom:159.139534px;}
.y222{bottom:160.380761px;}
.y183{bottom:161.874152px;}
.y30{bottom:162.493950px;}
.y17a{bottom:163.984648px;}
.y1b4{bottom:164.877152px;}
.y13b{bottom:166.993648px;}
.ye0{bottom:169.371152px;}
.yfe{bottom:169.477642px;}
.y77{bottom:170.067915px;}
.y208{bottom:171.885784px;}
.y7f{bottom:172.439095px;}
.y221{bottom:175.379261px;}
.y182{bottom:176.872652px;}
.y1b3{bottom:177.623402px;}
.y179{bottom:178.983148px;}
.y13a{bottom:181.992148px;}
.ydf{bottom:184.371152px;}
.yfd{bottom:184.476142px;}
.y207{bottom:184.632034px;}
.y76{bottom:185.066415px;}
.y7e{bottom:187.439095px;}
.y1b2{bottom:190.369652px;}
.y220{bottom:190.377761px;}
.y181{bottom:191.871152px;}
.y178{bottom:193.981648px;}
.y139{bottom:196.990648px;}
.y206{bottom:197.378284px;}
.yde{bottom:199.374152px;}
.yfc{bottom:199.474642px;}
.y75{bottom:200.064915px;}
.y1b1{bottom:203.119652px;}
.y21f{bottom:205.376261px;}
.y180{bottom:206.869652px;}
.y177{bottom:208.983148px;}
.y205{bottom:210.124534px;}
.y138{bottom:211.989148px;}
.ydd{bottom:214.372652px;}
.yfb{bottom:214.473142px;}
.y2e{bottom:214.570805px;}
.y74{bottom:215.063415px;}
.y21e{bottom:220.374761px;}
.y204{bottom:222.870784px;}
.y176{bottom:223.981648px;}
.y137{bottom:226.987648px;}
.ydc{bottom:229.371152px;}
.yfa{bottom:229.471642px;}
.y2d{bottom:229.570805px;}
.y73{bottom:230.061915px;}
.y21d{bottom:235.373261px;}
.y203{bottom:235.617034px;}
.y175{bottom:238.981648px;}
.y136{bottom:241.986148px;}
.ydb{bottom:244.372652px;}
.y2c{bottom:244.572305px;}
.y72{bottom:245.060415px;}
.y202{bottom:248.363284px;}
.ya1{bottom:250.065450px;}
.y21c{bottom:250.371761px;}
.y1b0{bottom:252.619652px;}
.y191{bottom:252.642145px;}
.y174{bottom:253.983148px;}
.y135{bottom:256.984648px;}
.yda{bottom:259.371152px;}
.y2b{bottom:259.570805px;}
.y71{bottom:260.058915px;}
.y201{bottom:261.109534px;}
.ya0{bottom:265.063950px;}
.y21b{bottom:265.370261px;}
.y190{bottom:267.640645px;}
.y173{bottom:268.981648px;}
.y134{bottom:271.983148px;}
.y200{bottom:273.855784px;}
.yd9{bottom:274.371152px;}
.y2a{bottom:274.572305px;}
.y70{bottom:275.057415px;}
.y9f{bottom:280.062450px;}
.y21a{bottom:280.368761px;}
.y1af{bottom:282.619652px;}
.y18f{bottom:282.639145px;}
.y172{bottom:283.980148px;}
.y1ff{bottom:286.602034px;}
.y133{bottom:286.981648px;}
.yd8{bottom:289.371152px;}
.y29{bottom:289.570805px;}
.y6f{bottom:290.055915px;}
.y9e{bottom:295.060950px;}
.y219{bottom:295.367261px;}
.y1ae{bottom:297.619652px;}
.y18e{bottom:297.637645px;}
.y171{bottom:298.980148px;}
.y1fe{bottom:299.348284px;}
.y132{bottom:301.983148px;}
.yd7{bottom:304.372652px;}
.y28{bottom:304.575305px;}
.y6e{bottom:305.054415px;}
.y9d{bottom:310.059450px;}
.y218{bottom:310.365761px;}
.y1fd{bottom:312.094534px;}
.y18d{bottom:312.636145px;}
.y131{bottom:316.981648px;}
.yd6{bottom:319.371152px;}
.y27{bottom:319.573805px;}
.y6d{bottom:320.052915px;}
.y1fc{bottom:324.840784px;}
.y9c{bottom:325.057950px;}
.y217{bottom:325.365761px;}
.y18c{bottom:327.634645px;}
.y1ad{bottom:327.651129px;}
.y170{bottom:331.989148px;}
.y130{bottom:331.993648px;}
.yd5{bottom:334.374152px;}
.y26{bottom:334.572305px;}
.y6c{bottom:335.051415px;}
.y1fb{bottom:337.587034px;}
.y9b{bottom:340.056450px;}
.y18b{bottom:342.633145px;}
.y1ac{bottom:342.649629px;}
.y16f{bottom:346.987648px;}
.y12f{bottom:346.992148px;}
.yd4{bottom:349.372652px;}
.y25{bottom:349.570805px;}
.y6b{bottom:350.049915px;}
.y1fa{bottom:350.333284px;}
.y216{bottom:355.370238px;}
.y18a{bottom:357.631645px;}
.y1ab{bottom:357.648129px;}
.y16e{bottom:361.986148px;}
.y12e{bottom:361.990648px;}
.y1f9{bottom:363.079534px;}
.yd3{bottom:364.371152px;}
.y24{bottom:364.572305px;}
.y6a{bottom:365.048415px;}
.y215{bottom:370.368738px;}
.yb4{bottom:371.568470px;}
.y1aa{bottom:372.646629px;}
.y1f8{bottom:375.825784px;}
.y16d{bottom:376.984648px;}
.y12d{bottom:376.989148px;}
.yd2{bottom:379.371129px;}
.y23{bottom:379.570805px;}
.y69{bottom:380.046915px;}
.y214{bottom:385.367238px;}
.y1a9{bottom:387.645129px;}
.y1f7{bottom:388.572034px;}
.yb3{bottom:389.101780px;}
.y16c{bottom:391.983148px;}
.y12c{bottom:391.987648px;}
.yd1{bottom:394.371129px;}
.y22{bottom:394.570805px;}
.y68{bottom:395.045415px;}
.y213{bottom:400.365738px;}
.y1f6{bottom:401.318284px;}
.y1a8{bottom:402.643629px;}
.yb2{bottom:406.635135px;}
.y16b{bottom:406.981648px;}
.y12b{bottom:406.986148px;}
.yd0{bottom:409.375629px;}
.y21{bottom:409.570805px;}
.y67{bottom:410.043915px;}
.y1f5{bottom:414.064534px;}
.y212{bottom:415.365738px;}
.y1a7{bottom:417.642129px;}
.y16a{bottom:421.983148px;}
.y12a{bottom:421.984648px;}
.yb1{bottom:424.170135px;}
.ycf{bottom:424.374129px;}
.y20{bottom:424.570805px;}
.y66{bottom:425.043915px;}
.y1f4{bottom:426.810784px;}
.y1a6{bottom:432.640629px;}
.y169{bottom:436.981648px;}
.y129{bottom:436.983148px;}
.yce{bottom:439.372629px;}
.y1f3{bottom:439.557034px;}
.y1f{bottom:439.570805px;}
.yb0{bottom:441.701984px;}
.y211{bottom:445.365738px;}
.y1a5{bottom:447.639129px;}
.y128{bottom:451.981648px;}
.y168{bottom:451.986148px;}
.y1f2{bottom:452.303284px;}
.ycd{bottom:454.371129px;}
.y1e{bottom:454.621769px;}
.y65{bottom:458.055915px;}
.yaf{bottom:459.235340px;}
.y210{bottom:460.365738px;}
.y1a4{bottom:462.637629px;}
.y1f1{bottom:465.049534px;}
.y127{bottom:466.980148px;}
.y167{bottom:466.984648px;}
.ycc{bottom:469.372629px;}
.y1d{bottom:469.620269px;}
.y64{bottom:473.054415px;}
.yae{bottom:476.768696px;}
.y1a3{bottom:477.636129px;}
.y1f0{bottom:477.795784px;}
.y126{bottom:481.980148px;}
.y166{bottom:481.983148px;}
.ycb{bottom:484.371129px;}
.y1c{bottom:484.618769px;}
.y63{bottom:488.052915px;}
.y1ef{bottom:490.542034px;}
.y1a2{bottom:492.634629px;}
.yad{bottom:494.302189px;}
.y165{bottom:496.981648px;}
.yca{bottom:499.371129px;}
.y1b{bottom:499.617269px;}
.y62{bottom:503.051415px;}
.y1ee{bottom:503.288284px;}
.y1a1{bottom:507.633129px;}
.yac{bottom:511.835544px;}
.y164{bottom:511.981648px;}
.yc9{bottom:514.372629px;}
.y125{bottom:514.984648px;}
.y1ed{bottom:516.034534px;}
.y61{bottom:518.049915px;}
.y1a0{bottom:522.631629px;}
.y163{bottom:526.981648px;}
.y1ec{bottom:528.780784px;}
.yab{bottom:529.368900px;}
.yc8{bottom:529.371129px;}
.y124{bottom:529.983148px;}
.y60{bottom:533.048415px;}
.y19f{bottom:537.630129px;}
.y1eb{bottom:541.527034px;}
.y162{bottom:541.993648px;}
.yc7{bottom:544.375629px;}
.y1a{bottom:544.761269px;}
.y123{bottom:544.981648px;}
.yaa{bottom:546.902256px;}
.y5f{bottom:548.046915px;}
.y19e{bottom:552.628629px;}
.y1ea{bottom:554.273284px;}
.y161{bottom:556.992148px;}
.yc6{bottom:559.374129px;}
.y122{bottom:559.984648px;}
.y19{bottom:561.258269px;}
.y5e{bottom:563.045415px;}
.ya9{bottom:564.435749px;}
.y1e9{bottom:567.019534px;}
.y19d{bottom:567.627129px;}
.y160{bottom:571.990648px;}
.yc5{bottom:574.372629px;}
.y121{bottom:574.983148px;}
.y18{bottom:577.755269px;}
.y5d{bottom:578.048415px;}
.y1e8{bottom:579.765784px;}
.ya8{bottom:581.969105px;}
.y19c{bottom:582.625629px;}
.y15f{bottom:586.989148px;}
.yc4{bottom:589.371129px;}
.y120{bottom:589.981648px;}
.y1e7{bottom:592.512034px;}
.y5c{bottom:593.046915px;}
.y17{bottom:594.252269px;}
.y19b{bottom:597.624129px;}
.ya7{bottom:599.499460px;}
.y15e{bottom:601.987648px;}
.yc3{bottom:604.371129px;}
.y11f{bottom:604.984648px;}
.y1e6{bottom:605.258284px;}
.y5b{bottom:608.045415px;}
.y16{bottom:610.749269px;}
.y19a{bottom:612.622629px;}
.y15d{bottom:616.986148px;}
.ya6{bottom:617.040316px;}
.y1e5{bottom:618.004534px;}
.yc2{bottom:619.371129px;}
.y11e{bottom:619.983148px;}
.y5a{bottom:623.045415px;}
.y15{bottom:627.246269px;}
.y199{bottom:627.621129px;}
.ya5{bottom:628.285816px;}
.y1e4{bottom:630.750784px;}
.y15c{bottom:631.984648px;}
.yc1{bottom:634.380129px;}
.y11d{bottom:634.981648px;}
.y59{bottom:638.045415px;}
.y198{bottom:642.619629px;}
.y1e3{bottom:643.497034px;}
.y14{bottom:643.743269px;}
.ya4{bottom:645.819309px;}
.y15b{bottom:646.983148px;}
.yc0{bottom:649.378629px;}
.y11c{bottom:649.980148px;}
.y58{bottom:653.060415px;}
.y1e2{bottom:656.243284px;}
.y197{bottom:657.619629px;}
.y13{bottom:660.240269px;}
.y15a{bottom:661.981648px;}
.ya3{bottom:663.353123px;}
.ybf{bottom:664.377129px;}
.y11b{bottom:664.980148px;}
.y57{bottom:668.058915px;}
.y1e1{bottom:668.989534px;}
.y12{bottom:676.737269px;}
.y159{bottom:676.984648px;}
.ybe{bottom:679.375629px;}
.y11a{bottom:679.980148px;}
.ya2{bottom:680.888123px;}
.y1e0{bottom:681.735784px;}
.y56{bottom:683.057415px;}
.y196{bottom:690.624129px;}
.y158{bottom:691.983148px;}
.y11{bottom:693.234269px;}
.ybd{bottom:694.374129px;}
.y1df{bottom:694.482034px;}
.y55{bottom:698.055915px;}
.y195{bottom:705.622629px;}
.y157{bottom:706.981648px;}
.y1de{bottom:707.228284px;}
.ybc{bottom:709.372629px;}
.y10{bottom:709.731269px;}
.y119{bottom:712.983148px;}
.y54{bottom:713.054415px;}
.y1dd{bottom:719.974534px;}
.y194{bottom:720.621129px;}
.y156{bottom:721.983148px;}
.ybb{bottom:724.371129px;}
.yf{bottom:726.228269px;}
.y118{bottom:727.981648px;}
.y53{bottom:728.052915px;}
.y1dc{bottom:732.720784px;}
.y193{bottom:735.621129px;}
.y155{bottom:736.981648px;}
.yba{bottom:739.372629px;}
.ye{bottom:742.725269px;}
.y117{bottom:742.995194px;}
.y52{bottom:743.051415px;}
.y1db{bottom:745.467034px;}
.y192{bottom:750.619629px;}
.y154{bottom:751.980148px;}
.yb9{bottom:754.371129px;}
.y116{bottom:757.993694px;}
.y51{bottom:758.049915px;}
.y88{bottom:758.119974px;}
.y1da{bottom:758.213284px;}
.yd{bottom:759.222269px;}
.y153{bottom:766.980148px;}
.yb8{bottom:769.369629px;}
.y1d9{bottom:770.959534px;}
.y115{bottom:772.992194px;}
.y50{bottom:773.048415px;}
.y87{bottom:773.118474px;}
.yc{bottom:775.719269px;}
.y1d8{bottom:783.705784px;}
.y1bf{bottom:785.134622px;}
.y114{bottom:787.990694px;}
.y4f{bottom:788.046915px;}
.y86{bottom:788.116974px;}
.y1d7{bottom:796.452034px;}
.y152{bottom:799.986194px;}
.y1be{bottom:800.133122px;}
.y113{bottom:802.989194px;}
.y4e{bottom:803.045415px;}
.ya{bottom:805.719269px;}
.y1d6{bottom:809.198284px;}
.yb{bottom:810.969269px;}
.y151{bottom:814.984694px;}
.y1bd{bottom:815.133122px;}
.y236{bottom:815.537702px;}
.y112{bottom:817.987694px;}
.y4d{bottom:818.048415px;}
.y9a{bottom:819.551894px;}
.y1d5{bottom:821.944534px;}
.y8{bottom:823.719269px;}
.y99{bottom:825.167658px;}
.y9{bottom:828.969269px;}
.yee{bottom:829.532106px;}
.y150{bottom:829.983194px;}
.y1bc{bottom:830.131622px;}
.y111{bottom:832.986194px;}
.y4c{bottom:833.046915px;}
.y1d4{bottom:834.690784px;}
.yed{bottom:844.530606px;}
.y14f{bottom:844.981694px;}
.y235{bottom:845.534700px;}
.y1d3{bottom:847.437034px;}
.y110{bottom:847.984694px;}
.y4b{bottom:848.045415px;}
.y98{bottom:848.329014px;}
.y7{bottom:856.707269px;}
.yec{bottom:859.529106px;}
.y14e{bottom:859.984694px;}
.y1d2{bottom:860.183284px;}
.y234{bottom:860.533200px;}
.y10f{bottom:862.983194px;}
.y4a{bottom:863.046915px;}
.y97{bottom:865.862552px;}
.y1d1{bottom:872.929534px;}
.yeb{bottom:874.527606px;}
.y14d{bottom:874.983194px;}
.y233{bottom:875.531700px;}
.y10e{bottom:877.981694px;}
.y49{bottom:878.045415px;}
.y96{bottom:883.400408px;}
.y1d0{bottom:885.675784px;}
.yea{bottom:889.526106px;}
.y14c{bottom:889.981694px;}
.y232{bottom:890.530200px;}
.y10d{bottom:892.989194px;}
.y48{bottom:893.046915px;}
.y1cf{bottom:898.422034px;}
.y95{bottom:900.935408px;}
.y6{bottom:901.713269px;}
.ye9{bottom:904.524606px;}
.y14b{bottom:904.983194px;}
.y231{bottom:905.528700px;}
.y94{bottom:906.558764px;}
.y10c{bottom:907.987694px;}
.y47{bottom:908.045415px;}
.y1ce{bottom:911.168284px;}
.ye8{bottom:919.523106px;}
.y14a{bottom:919.981694px;}
.y230{bottom:920.527200px;}
.y10b{bottom:922.986194px;}
.y46{bottom:923.045415px;}
.y1cd{bottom:923.914534px;}
.y93{bottom:929.717211px;}
.ye7{bottom:934.521606px;}
.y149{bottom:934.981694px;}
.y22f{bottom:935.525700px;}
.y1cc{bottom:936.660784px;}
.y10a{bottom:937.984694px;}
.y45{bottom:938.049915px;}
.y92{bottom:940.962711px;}
.y5{bottom:946.719269px;}
.y1cb{bottom:949.407034px;}
.y148{bottom:949.981694px;}
.y22e{bottom:950.524200px;}
.y109{bottom:952.983194px;}
.y44{bottom:953.048415px;}
.y2f{bottom:954.366760px;}
.y91{bottom:958.496067px;}
.y1ca{bottom:962.153284px;}
.y147{bottom:964.983194px;}
.yf8{bottom:966.102919px;}
.y108{bottom:967.981694px;}
.y43{bottom:968.046915px;}
.y22d{bottom:973.013700px;}
.y1c9{bottom:974.899534px;}
.y90{bottom:976.033923px;}
.yf7{bottom:977.352919px;}
.y146{bottom:979.981694px;}
.yf4{bottom:982.973275px;}
.y107{bottom:982.987694px;}
.y42{bottom:983.045415px;}
.y1c8{bottom:987.645784px;}
.y22c{bottom:988.012200px;}
.yf6{bottom:988.602919px;}
.y8f{bottom:993.568923px;}
.y145{bottom:994.983194px;}
.y106{bottom:997.986194px;}
.y41{bottom:998.046915px;}
.y8e{bottom:999.192278px;}
.yf5{bottom:999.846775px;}
.y1c7{bottom:1000.392034px;}
.y144{bottom:1009.981694px;}
.y22b{bottom:1010.516700px;}
.y105{bottom:1012.984694px;}
.y40{bottom:1013.045415px;}
.y1c6{bottom:1013.138284px;}
.yf3{bottom:1017.386275px;}
.y8d{bottom:1022.352278px;}
.y143{bottom:1024.980194px;}
.y1c5{bottom:1025.884534px;}
.y8c{bottom:1027.968317px;}
.y104{bottom:1027.983194px;}
.y3f{bottom:1028.045415px;}
.yf2{bottom:1028.636275px;}
.y22a{bottom:1033.021200px;}
.yef{bottom:1034.254986px;}
.y1c4{bottom:1038.630784px;}
.yf1{bottom:1039.886275px;}
.y142{bottom:1039.980194px;}
.y103{bottom:1042.981694px;}
.y3e{bottom:1043.045415px;}
.yf0{bottom:1051.128486px;}
.y8b{bottom:1051.129673px;}
.y1c3{bottom:1051.377034px;}
.y229{bottom:1055.525700px;}
.y102{bottom:1057.983194px;}
.y3d{bottom:1058.046915px;}
.y1c2{bottom:1064.123284px;}
.y8a{bottom:1068.663486px;}
.y228{bottom:1070.524200px;}
.y101{bottom:1072.981694px;}
.y3c{bottom:1073.045415px;}
.y1c1{bottom:1076.869534px;}
.y227{bottom:1085.524200px;}
.y89{bottom:1086.198486px;}
.y100{bottom:1087.980194px;}
.y3b{bottom:1088.043915px;}
.y1c0{bottom:1089.615784px;}
.y7d{bottom:1140.640320px;}
.yb7{bottom:1140.746521px;}
.y3a{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h7{height:28.050293px;}
.h8{height:28.183594px;}
.hf{height:30.684677px;}
.h2{height:34.523438px;}
.h42{height:35.411133px;}
.h12{height:36.681152px;}
.h9{height:38.838867px;}
.h23{height:41.538000px;}
.h10{height:41.668740px;}
.h24{height:41.688350px;}
.h2c{height:41.699773px;}
.h28{height:41.704336px;}
.h1e{height:41.704519px;}
.h26{height:41.705618px;}
.h2b{height:41.705801px;}
.h1f{height:41.706350px;}
.h2a{height:41.718167px;}
.h35{height:42.084000px;}
.h1d{height:43.008000px;}
.h6{height:43.154297px;}
.h43{height:44.505000px;}
.h45{height:45.090000px;}
.h3{height:45.679688px;}
.h44{height:46.080000px;}
.h1b{height:47.469727px;}
.h11{height:48.534668px;}
.h13{height:49.373525px;}
.h47{height:50.439000px;}
.ha{height:53.406000px;}
.h18{height:53.547863px;}
.h38{height:53.553680px;}
.h3b{height:53.553907px;}
.h3a{height:53.559863px;}
.h2e{height:53.571314px;}
.h34{height:53.571886px;}
.h37{height:53.577680px;}
.h36{height:53.583680px;}
.h30{height:53.589314px;}
.h16{height:53.589680px;}
.hd{height:53.589863px;}
.h3f{height:53.589909px;}
.h32{height:53.595314px;}
.h17{height:53.595680px;}
.h1a{height:53.595863px;}
.h31{height:53.601314px;}
.h14{height:53.601680px;}
.hc{height:53.601863px;}
.h3d{height:53.601907px;}
.h2d{height:53.602046px;}
.h2f{height:53.607314px;}
.h15{height:53.607680px;}
.hb{height:53.607863px;}
.h3c{height:53.607907px;}
.h33{height:53.607909px;}
.h41{height:53.608046px;}
.h3e{height:53.613680px;}
.h39{height:53.613863px;}
.h40{height:53.614046px;}
.h19{height:54.108000px;}
.h46{height:55.290000px;}
.h1c{height:55.296000px;}
.h4{height:57.099609px;}
.h21{height:64.182506px;}
.h25{height:64.187984px;}
.h29{height:64.188167px;}
.h22{height:64.188350px;}
.h20{height:64.218350px;}
.he{height:77.677734px;}
.h27{height:87.990000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.228350px;}
.x3{left:61.653603px;}
.x11{left:66.393867px;}
.xc{left:141.395702px;}
.x13{left:166.636196px;}
.x10{left:181.631400px;}
.x5{left:233.858253px;}
.x15{left:238.570793px;}
.xb{left:251.860504px;}
.x17{left:254.108253px;}
.x19{left:302.498703px;}
.x16{left:309.907773px;}
.x9{left:387.522903px;}
.x6{left:403.460403px;}
.x12{left:458.059350px;}
.xa{left:567.430069px;}
.x4{left:586.814117px;}
.x7{left:604.472717px;}
.xd{left:752.085297px;}
.x8{left:760.457840px;}
.x14{left:762.322183px;}
.xf{left:797.390808px;}
.x2{left:798.901611px;}
.x18{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v4{vertical-align:-16.799967pt;}
.v5{vertical-align:-15.866659pt;}
.v9{vertical-align:-9.605350pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:9.599935pt;}
.v6{vertical-align:13.070951pt;}
.v3{vertical-align:16.613431pt;}
.v7{vertical-align:20.010667pt;}
.v8{vertical-align:39.984000pt;}
.ls38{letter-spacing:-6.144000pt;}
.ls3e{letter-spacing:-3.621333pt;}
.ls6b{letter-spacing:-2.480000pt;}
.ls68{letter-spacing:-1.360000pt;}
.ls7a{letter-spacing:-1.040000pt;}
.ls3d{letter-spacing:-0.970667pt;}
.ls6a{letter-spacing:-0.960000pt;}
.ls7b{letter-spacing:-0.840000pt;}
.ls3a{letter-spacing:-0.816000pt;}
.ls6e{letter-spacing:-0.800000pt;}
.ls3b{letter-spacing:-0.720000pt;}
.ls36{letter-spacing:-0.624000pt;}
.ls6f{letter-spacing:-0.560000pt;}
.ls37{letter-spacing:-0.485333pt;}
.ls79{letter-spacing:-0.480000pt;}
.ls66{letter-spacing:-0.440000pt;}
.ls39{letter-spacing:-0.432000pt;}
.ls70{letter-spacing:-0.400000pt;}
.ls2d{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.336000pt;}
.ls3f{letter-spacing:-0.298667pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls6c{letter-spacing:-0.200000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls42{letter-spacing:-0.187200pt;}
.ls46{letter-spacing:-0.186667pt;}
.ls72{letter-spacing:-0.160000pt;}
.ls4c{letter-spacing:-0.156000pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls4b{letter-spacing:-0.124800pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls49{letter-spacing:-0.093600pt;}
.ls67{letter-spacing:-0.080000pt;}
.ls29{letter-spacing:-0.062400pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls6d{letter-spacing:-0.040000pt;}
.ls27{letter-spacing:-0.031200pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011754pt;}
.lse{letter-spacing:0.016025pt;}
.ls50{letter-spacing:0.021884pt;}
.ls24{letter-spacing:0.031200pt;}
.ls69{letter-spacing:0.040000pt;}
.ls19{letter-spacing:0.048000pt;}
.lsb{letter-spacing:0.060214pt;}
.ls28{letter-spacing:0.062400pt;}
.ls71{letter-spacing:0.080000pt;}
.ls45{letter-spacing:0.093600pt;}
.lsa{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.111240pt;}
.ls5{letter-spacing:0.112634pt;}
.ls73{letter-spacing:0.120000pt;}
.ls5c{letter-spacing:0.120041pt;}
.ls48{letter-spacing:0.124800pt;}
.ls1c{letter-spacing:0.140400pt;}
.ls7{letter-spacing:0.141187pt;}
.ls8{letter-spacing:0.141350pt;}
.ls3{letter-spacing:0.141513pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.156000pt;}
.ls57{letter-spacing:0.160000pt;}
.ls52{letter-spacing:0.178021pt;}
.ls56{letter-spacing:0.180000pt;}
.ls3c{letter-spacing:0.186667pt;}
.ls43{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.192000pt;}
.ls54{letter-spacing:0.196800pt;}
.ls59{letter-spacing:0.200000pt;}
.ls2b{letter-spacing:0.218400pt;}
.ls62{letter-spacing:0.220000pt;}
.ls55{letter-spacing:0.234667pt;}
.ls12{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.249600pt;}
.ls77{letter-spacing:0.264000pt;}
.ls44{letter-spacing:0.280800pt;}
.ls9{letter-spacing:0.288000pt;}
.ls4e{letter-spacing:0.308831pt;}
.ls4f{letter-spacing:0.309315pt;}
.ls2a{letter-spacing:0.312000pt;}
.ls5a{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.321600pt;}
.ls1d{letter-spacing:0.336000pt;}
.ls1f{letter-spacing:0.343200pt;}
.ls5e{letter-spacing:0.360000pt;}
.ls51{letter-spacing:0.360426pt;}
.ls1a{letter-spacing:0.374400pt;}
.lsc{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.386793pt;}
.ls78{letter-spacing:0.400000pt;}
.ls15{letter-spacing:0.432000pt;}
.ls63{letter-spacing:0.440000pt;}
.ls20{letter-spacing:0.446368pt;}
.ls22{letter-spacing:0.456000pt;}
.ls4a{letter-spacing:0.468000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls5b{letter-spacing:0.520000pt;}
.ls40{letter-spacing:0.528000pt;}
.ls5d{letter-spacing:0.560000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls23{letter-spacing:0.624000pt;}
.ls58{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.672000pt;}
.ls47{letter-spacing:0.720000pt;}
.ls75{letter-spacing:0.816000pt;}
.ls4d{letter-spacing:0.864000pt;}
.ls61{letter-spacing:1.120000pt;}
.ls76{letter-spacing:1.152000pt;}
.ls74{letter-spacing:1.240000pt;}
.ls60{letter-spacing:1.347949pt;}
.ls65{letter-spacing:1.400000pt;}
.ls53{letter-spacing:1.632000pt;}
.ls5f{letter-spacing:1.683966pt;}
.ls64{letter-spacing:1.855960pt;}
.ls0{letter-spacing:2.666667pt;}
.ls18{letter-spacing:10.725867pt;}
.ls30{letter-spacing:125.813333pt;}
.ls33{letter-spacing:189.690667pt;}
.ls34{letter-spacing:191.258667pt;}
.ls31{letter-spacing:201.338667pt;}
.ls32{letter-spacing:202.906667pt;}
.ls2e{letter-spacing:207.386667pt;}
.ls35{letter-spacing:218.810662pt;}
.ls2f{letter-spacing:258.421333pt;}
.ws0{word-spacing:-42.666667pt;}
.ws3a{word-spacing:-37.333333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws86{word-spacing:-12.320000pt;}
.ws21{word-spacing:-12.085333pt;}
.ws17{word-spacing:-11.472000pt;}
.ws64{word-spacing:-11.424000pt;}
.ws1f{word-spacing:-11.136000pt;}
.ws75{word-spacing:-11.088000pt;}
.ws7e{word-spacing:-11.040000pt;}
.ws23{word-spacing:-10.992000pt;}
.ws81{word-spacing:-10.944000pt;}
.ws22{word-spacing:-10.896000pt;}
.ws58{word-spacing:-10.800000pt;}
.ws78{word-spacing:-10.752000pt;}
.ws14{word-spacing:-10.725867pt;}
.ws92{word-spacing:-10.656000pt;}
.ws20{word-spacing:-10.608000pt;}
.ws40{word-spacing:-10.560000pt;}
.ws6b{word-spacing:-10.416000pt;}
.ws37{word-spacing:-10.368000pt;}
.ws42{word-spacing:-10.272000pt;}
.ws41{word-spacing:-10.176000pt;}
.ws9b{word-spacing:-9.640000pt;}
.ws97{word-spacing:-9.520000pt;}
.ws94{word-spacing:-9.360000pt;}
.wsb4{word-spacing:-9.280000pt;}
.ws87{word-spacing:-9.260000pt;}
.ws95{word-spacing:-9.200000pt;}
.ws9c{word-spacing:-9.000000pt;}
.ws98{word-spacing:-8.960000pt;}
.ws9a{word-spacing:-8.900000pt;}
.ws99{word-spacing:-8.760000pt;}
.ws93{word-spacing:-8.720000pt;}
.ws15{word-spacing:-8.533333pt;}
.ws5b{word-spacing:-8.474667pt;}
.wsba{word-spacing:-8.320000pt;}
.ws96{word-spacing:-8.200000pt;}
.ws43{word-spacing:-8.101333pt;}
.ws6f{word-spacing:-7.550400pt;}
.ws18{word-spacing:-7.456800pt;}
.ws55{word-spacing:-7.425600pt;}
.ws1d{word-spacing:-7.394400pt;}
.ws56{word-spacing:-7.363200pt;}
.ws4{word-spacing:-7.332000pt;}
.ws1e{word-spacing:-7.300800pt;}
.ws54{word-spacing:-7.269600pt;}
.ws1a{word-spacing:-7.238400pt;}
.ws6d{word-spacing:-7.207200pt;}
.ws57{word-spacing:-7.176000pt;}
.ws1b{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws16{word-spacing:-7.113600pt;}
.ws3{word-spacing:-7.082400pt;}
.ws19{word-spacing:-7.051200pt;}
.ws1c{word-spacing:-7.020000pt;}
.ws6e{word-spacing:-6.988800pt;}
.ws70{word-spacing:-6.957600pt;}
.ws71{word-spacing:-6.926400pt;}
.ws53{word-spacing:-6.895200pt;}
.ws5{word-spacing:-5.893333pt;}
.wsa8{word-spacing:-5.720000pt;}
.wsad{word-spacing:-5.520000pt;}
.ws38{word-spacing:-5.508533pt;}
.wsb0{word-spacing:-5.480000pt;}
.ws9f{word-spacing:-5.360000pt;}
.wsbc{word-spacing:-5.280000pt;}
.wsbb{word-spacing:-5.200000pt;}
.wsb3{word-spacing:-5.120000pt;}
.wsb2{word-spacing:-5.080000pt;}
.wsac{word-spacing:-4.920000pt;}
.ws80{word-spacing:-4.896000pt;}
.ws3f{word-spacing:-4.848000pt;}
.ws51{word-spacing:-3.808000pt;}
.ws50{word-spacing:-3.434667pt;}
.ws8b{word-spacing:-1.248000pt;}
.ws30{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.104000pt;}
.ws8{word-spacing:-1.056000pt;}
.ws63{word-spacing:-1.008000pt;}
.ws72{word-spacing:-0.960000pt;}
.wsa6{word-spacing:-0.920000pt;}
.ws5f{word-spacing:-0.912000pt;}
.ws8e{word-spacing:-0.880000pt;}
.ws69{word-spacing:-0.864000pt;}
.wsc1{word-spacing:-0.840000pt;}
.ws2d{word-spacing:-0.816000pt;}
.wsa4{word-spacing:-0.800000pt;}
.ws27{word-spacing:-0.768000pt;}
.wsa3{word-spacing:-0.760000pt;}
.ws32{word-spacing:-0.720000pt;}
.ws85{word-spacing:-0.624000pt;}
.wse{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.528000pt;}
.ws68{word-spacing:-0.480000pt;}
.wsb8{word-spacing:-0.440000pt;}
.ws11{word-spacing:-0.432000pt;}
.ws83{word-spacing:-0.384000pt;}
.wsae{word-spacing:-0.360000pt;}
.ws65{word-spacing:-0.343200pt;}
.wsb6{word-spacing:-0.320000pt;}
.ws2f{word-spacing:-0.312000pt;}
.ws35{word-spacing:-0.288000pt;}
.ws67{word-spacing:-0.280800pt;}
.wsbe{word-spacing:-0.280000pt;}
.ws31{word-spacing:-0.240000pt;}
.ws8a{word-spacing:-0.234667pt;}
.ws9d{word-spacing:-0.200000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws61{word-spacing:-0.187200pt;}
.ws52{word-spacing:-0.186667pt;}
.ws8d{word-spacing:-0.160000pt;}
.ws62{word-spacing:-0.156000pt;}
.ws76{word-spacing:-0.124800pt;}
.wsa7{word-spacing:-0.120000pt;}
.ws2e{word-spacing:-0.096000pt;}
.wsaf{word-spacing:-0.080000pt;}
.ws5d{word-spacing:-0.048000pt;}
.wsbd{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.ws26{word-spacing:0.031200pt;}
.ws2b{word-spacing:0.048000pt;}
.ws7c{word-spacing:0.096000pt;}
.ws8c{word-spacing:0.120000pt;}
.ws7b{word-spacing:0.124800pt;}
.ws88{word-spacing:0.144000pt;}
.wsa2{word-spacing:0.160000pt;}
.ws5e{word-spacing:0.187200pt;}
.ws29{word-spacing:0.192000pt;}
.wsa0{word-spacing:0.200000pt;}
.ws34{word-spacing:0.240000pt;}
.wsb7{word-spacing:0.280000pt;}
.ws66{word-spacing:0.288000pt;}
.ws6a{word-spacing:0.298667pt;}
.wsd{word-spacing:0.336000pt;}
.ws9e{word-spacing:0.360000pt;}
.ws28{word-spacing:0.384000pt;}
.ws36{word-spacing:0.432000pt;}
.ws91{word-spacing:0.440000pt;}
.ws60{word-spacing:0.480000pt;}
.ws82{word-spacing:0.576000pt;}
.wsab{word-spacing:0.640000pt;}
.ws79{word-spacing:0.672000pt;}
.wsb5{word-spacing:0.680000pt;}
.wsb9{word-spacing:0.720000pt;}
.ws24{word-spacing:0.768000pt;}
.wsc0{word-spacing:0.800000pt;}
.ws4f{word-spacing:0.816000pt;}
.wsbf{word-spacing:0.840000pt;}
.ws2c{word-spacing:0.864000pt;}
.ws8f{word-spacing:0.880000pt;}
.wsa{word-spacing:0.912000pt;}
.ws90{word-spacing:0.920000pt;}
.ws74{word-spacing:0.960000pt;}
.wsa5{word-spacing:1.000000pt;}
.wsc2{word-spacing:1.040000pt;}
.ws10{word-spacing:1.056000pt;}
.wsb1{word-spacing:1.080000pt;}
.wsf{word-spacing:1.104000pt;}
.ws2a{word-spacing:1.200000pt;}
.ws73{word-spacing:1.248000pt;}
.ws77{word-spacing:1.296000pt;}
.wsb{word-spacing:1.344000pt;}
.wsa1{word-spacing:1.360000pt;}
.ws7d{word-spacing:1.440000pt;}
.wsa9{word-spacing:1.480000pt;}
.ws33{word-spacing:1.584000pt;}
.ws7a{word-spacing:1.632000pt;}
.ws25{word-spacing:1.680000pt;}
.wsca{word-spacing:1.824000pt;}
.ws5c{word-spacing:1.872000pt;}
.ws84{word-spacing:1.920000pt;}
.ws89{word-spacing:2.016000pt;}
.wsc3{word-spacing:2.352000pt;}
.wsaa{word-spacing:2.480000pt;}
.wsc7{word-spacing:2.688000pt;}
.ws7f{word-spacing:2.784000pt;}
.wsc5{word-spacing:2.832000pt;}
.wsc6{word-spacing:2.976000pt;}
.wsc4{word-spacing:4.080000pt;}
.wscb{word-spacing:5.040000pt;}
.wscc{word-spacing:5.568000pt;}
.wsc8{word-spacing:5.760000pt;}
.wsc9{word-spacing:6.000000pt;}
.ws6c{word-spacing:13.584000pt;}
.ws12{word-spacing:13.736000pt;}
.ws13{word-spacing:15.368000pt;}
.ws5a{word-spacing:41.216000pt;}
.ws59{word-spacing:118.794667pt;}
.ws39{word-spacing:135.373129pt;}
.ws48{word-spacing:192.864000pt;}
.ws4e{word-spacing:192.987387pt;}
.ws47{word-spacing:210.907472pt;}
.ws45{word-spacing:210.907960pt;}
.ws4d{word-spacing:212.480714pt;}
.ws3e{word-spacing:216.945883pt;}
.ws49{word-spacing:226.501333pt;}
.ws4c{word-spacing:241.923733pt;}
.ws4a{word-spacing:248.565333pt;}
.ws44{word-spacing:255.434667pt;}
.ws46{word-spacing:261.893333pt;}
.ws4b{word-spacing:289.374400pt;}
.ws3b{word-spacing:291.760000pt;}
.ws3c{word-spacing:305.535988pt;}
.ws3d{word-spacing:324.725322pt;}
._4e{margin-left:-18.624006pt;}
._12{margin-left:-12.970696pt;}
._51{margin-left:-12.071467pt;}
._7{margin-left:-11.181867pt;}
._6{margin-left:-10.126933pt;}
._11{margin-left:-8.866133pt;}
._4d{margin-left:-7.825659pt;}
._13{margin-left:-6.635741pt;}
._8{margin-left:-5.745067pt;}
._2{margin-left:-4.686933pt;}
._3{margin-left:-3.611139pt;}
._4{margin-left:-2.587200pt;}
._0{margin-left:-1.668267pt;}
._5{width:1.115733pt;}
._f{width:2.579467pt;}
._48{width:3.770667pt;}
._50{width:5.147139pt;}
._39{width:6.139200pt;}
._38{width:7.519467pt;}
._4f{width:9.060267pt;}
._b{width:10.590023pt;}
._c{width:11.600800pt;}
._9{width:12.607044pt;}
._a{width:13.668000pt;}
._e{width:14.864799pt;}
._d{width:15.757867pt;}
._10{width:17.138215pt;}
._3c{width:46.390374pt;}
._24{width:48.185588pt;}
._18{width:49.578667pt;}
._4a{width:54.928533pt;}
._23{width:57.455989pt;}
._36{width:68.245333pt;}
._22{width:81.722667pt;}
._1d{width:82.926533pt;}
._14{width:88.887200pt;}
._2f{width:90.536549pt;}
._34{width:91.495482pt;}
._33{width:94.640000pt;}
._16{width:100.497867pt;}
._44{width:104.189867pt;}
._25{width:108.154667pt;}
._45{width:110.496473pt;}
._30{width:112.388523pt;}
._3a{width:115.804521pt;}
._15{width:118.007189pt;}
._3f{width:120.064000pt;}
._1c{width:122.304000pt;}
._3d{width:125.103991pt;}
._47{width:130.853333pt;}
._28{width:131.902123pt;}
._49{width:132.869858pt;}
._2b{width:136.980267pt;}
._4c{width:137.960533pt;}
._32{width:139.107456pt;}
._2d{width:143.448522pt;}
._21{width:146.484255pt;}
._46{width:150.197067pt;}
._29{width:154.671988pt;}
._2e{width:157.027456pt;}
._4b{width:158.318933pt;}
._42{width:162.314399pt;}
._40{width:163.258667pt;}
._37{width:166.357323pt;}
._3b{width:170.494400pt;}
._43{width:174.409600pt;}
._41{width:179.760000pt;}
._2a{width:185.584001pt;}
._1e{width:190.847988pt;}
._1f{width:193.946667pt;}
._1a{width:199.061333pt;}
._1b{width:203.466656pt;}
._3e{width:215.130649pt;}
._20{width:216.271989pt;}
._26{width:219.183989pt;}
._31{width:235.860255pt;}
._19{width:241.124255pt;}
._35{width:247.743988pt;}
._27{width:258.421333pt;}
._17{width:275.941867pt;}
._1{width:285.188267pt;}
._2c{width:463.344000pt;}
.fsb{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsc{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;}
.yb5{bottom:2.843733pt;}
.y39{bottom:2.843867pt;}
.yf9{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y38{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.yb6{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y37{bottom:60.477735pt;}
.y17f{bottom:63.096132pt;}
.y189{bottom:63.889468pt;}
.y1bb{bottom:67.247468pt;}
.y141{bottom:68.428132pt;}
.ye6{bottom:70.560135pt;}
.y85{bottom:73.287195pt;}
.y20f{bottom:73.477363pt;}
.y36{bottom:73.805735pt;}
.y35{bottom:73.811069pt;}
.y226{bottom:74.579469pt;}
.y17e{bottom:76.428132pt;}
.y188{bottom:77.221468pt;}
.y1ba{bottom:78.577468pt;}
.y140{bottom:81.761465pt;}
.ye5{bottom:83.892135pt;}
.y7c{bottom:84.511480pt;}
.y20e{bottom:84.807363pt;}
.y84{bottom:86.619195pt;}
.y34{bottom:87.144402pt;}
.y225{bottom:87.911469pt;}
.y17d{bottom:89.761465pt;}
.y1b9{bottom:89.907468pt;}
.y187{bottom:90.553468pt;}
.y13f{bottom:95.096132pt;}
.y20d{bottom:96.137363pt;}
.ye4{bottom:97.224135pt;}
.y7b{bottom:97.843480pt;}
.y83{bottom:99.951195pt;}
.y33{bottom:100.477735pt;}
.y1b8{bottom:101.237468pt;}
.y224{bottom:101.243469pt;}
.y17c{bottom:103.093465pt;}
.y186{bottom:103.885468pt;}
.y20c{bottom:107.467363pt;}
.y13e{bottom:108.428132pt;}
.ye3{bottom:110.556135pt;}
.y7a{bottom:111.175480pt;}
.y1b7{bottom:112.567468pt;}
.y82{bottom:113.283195pt;}
.y32{bottom:113.811069pt;}
.y223{bottom:114.576803pt;}
.y17b{bottom:116.426799pt;}
.y185{bottom:117.218802pt;}
.y20b{bottom:118.797363pt;}
.y13d{bottom:121.761465pt;}
.ye2{bottom:123.888135pt;}
.y1b6{bottom:123.897468pt;}
.y79{bottom:124.507480pt;}
.y81{bottom:126.615195pt;}
.y31{bottom:127.144402pt;}
.y20a{bottom:130.127363pt;}
.y184{bottom:130.556135pt;}
.y13c{bottom:135.106799pt;}
.y1b5{bottom:135.227468pt;}
.ye1{bottom:137.220135pt;}
.yff{bottom:137.314792pt;}
.y78{bottom:137.839480pt;}
.y80{bottom:139.947195pt;}
.y209{bottom:141.457363pt;}
.y222{bottom:142.560676pt;}
.y183{bottom:143.888135pt;}
.y30{bottom:144.439067pt;}
.y17a{bottom:145.764132pt;}
.y1b4{bottom:146.557468pt;}
.y13b{bottom:148.438799pt;}
.ye0{bottom:150.552135pt;}
.yfe{bottom:150.646792pt;}
.y77{bottom:151.171480pt;}
.y208{bottom:152.787363pt;}
.y7f{bottom:153.279195pt;}
.y221{bottom:155.892676pt;}
.y182{bottom:157.220135pt;}
.y1b3{bottom:157.887468pt;}
.y179{bottom:159.096132pt;}
.y13a{bottom:161.770799pt;}
.ydf{bottom:163.885468pt;}
.yfd{bottom:163.978792pt;}
.y207{bottom:164.117363pt;}
.y76{bottom:164.503480pt;}
.y7e{bottom:166.612528pt;}
.y1b2{bottom:169.217468pt;}
.y220{bottom:169.224676pt;}
.y181{bottom:170.552135pt;}
.y178{bottom:172.428132pt;}
.y139{bottom:175.102799pt;}
.y206{bottom:175.447363pt;}
.yde{bottom:177.221468pt;}
.yfc{bottom:177.310792pt;}
.y75{bottom:177.835480pt;}
.y1b1{bottom:180.550802pt;}
.y21f{bottom:182.556676pt;}
.y180{bottom:183.884135pt;}
.y177{bottom:185.762799pt;}
.y205{bottom:186.777363pt;}
.y138{bottom:188.434799pt;}
.ydd{bottom:190.553468pt;}
.yfb{bottom:190.642792pt;}
.y2e{bottom:190.729605pt;}
.y74{bottom:191.167480pt;}
.y21e{bottom:195.888676pt;}
.y204{bottom:198.107363pt;}
.y176{bottom:199.094799pt;}
.y137{bottom:201.766799pt;}
.ydc{bottom:203.885468pt;}
.yfa{bottom:203.974792pt;}
.y2d{bottom:204.062938pt;}
.y73{bottom:204.499480pt;}
.y21d{bottom:209.220676pt;}
.y203{bottom:209.437363pt;}
.y175{bottom:212.428132pt;}
.y136{bottom:215.098799pt;}
.ydb{bottom:217.220135pt;}
.y2c{bottom:217.397605pt;}
.y72{bottom:217.831480pt;}
.y202{bottom:220.767363pt;}
.ya1{bottom:222.280400pt;}
.y21c{bottom:222.552676pt;}
.y1b0{bottom:224.550802pt;}
.y191{bottom:224.570796pt;}
.y174{bottom:225.762799pt;}
.y135{bottom:228.430799pt;}
.yda{bottom:230.552135pt;}
.y2b{bottom:230.729605pt;}
.y71{bottom:231.163480pt;}
.y201{bottom:232.097363pt;}
.ya0{bottom:235.612400pt;}
.y21b{bottom:235.884676pt;}
.y190{bottom:237.902796pt;}
.y173{bottom:239.094799pt;}
.y134{bottom:241.762799pt;}
.y200{bottom:243.427363pt;}
.yd9{bottom:243.885468pt;}
.y2a{bottom:244.064271pt;}
.y70{bottom:244.495480pt;}
.y9f{bottom:248.944400pt;}
.y21a{bottom:249.216676pt;}
.y1af{bottom:251.217468pt;}
.y18f{bottom:251.234796pt;}
.y172{bottom:252.426799pt;}
.y1ff{bottom:254.757363pt;}
.y133{bottom:255.094799pt;}
.yd8{bottom:257.218802pt;}
.y29{bottom:257.396271pt;}
.y6f{bottom:257.827480pt;}
.y9e{bottom:262.276400pt;}
.y219{bottom:262.548676pt;}
.y1ae{bottom:264.550802pt;}
.y18e{bottom:264.566796pt;}
.y171{bottom:265.760132pt;}
.y1fe{bottom:266.087363pt;}
.y132{bottom:268.429465pt;}
.yd7{bottom:270.553468pt;}
.y28{bottom:270.733605pt;}
.y6e{bottom:271.159480pt;}
.y9d{bottom:275.608400pt;}
.y218{bottom:275.880676pt;}
.y1fd{bottom:277.417363pt;}
.y18d{bottom:277.898796pt;}
.y131{bottom:281.761465pt;}
.yd6{bottom:283.885468pt;}
.y27{bottom:284.065605pt;}
.y6d{bottom:284.491480pt;}
.y1fc{bottom:288.747363pt;}
.y9c{bottom:288.940400pt;}
.y217{bottom:289.214010pt;}
.y18c{bottom:291.230796pt;}
.y1ad{bottom:291.245448pt;}
.y170{bottom:295.101465pt;}
.y130{bottom:295.105465pt;}
.yd5{bottom:297.221468pt;}
.y26{bottom:297.397605pt;}
.y6c{bottom:297.823480pt;}
.y1fb{bottom:300.077363pt;}
.y9b{bottom:302.272400pt;}
.y18b{bottom:304.562796pt;}
.y1ac{bottom:304.577448pt;}
.y16f{bottom:308.433465pt;}
.y12f{bottom:308.437465pt;}
.yd4{bottom:310.553468pt;}
.y25{bottom:310.729605pt;}
.y6b{bottom:311.155480pt;}
.y1fa{bottom:311.407363pt;}
.y216{bottom:315.884656pt;}
.y18a{bottom:317.894796pt;}
.y1ab{bottom:317.909448pt;}
.y16e{bottom:321.765465pt;}
.y12e{bottom:321.769465pt;}
.y1f9{bottom:322.737363pt;}
.yd3{bottom:323.885468pt;}
.y24{bottom:324.064271pt;}
.y6a{bottom:324.487480pt;}
.y215{bottom:329.216656pt;}
.yb4{bottom:330.283084pt;}
.y1aa{bottom:331.241448pt;}
.y1f8{bottom:334.067363pt;}
.y16d{bottom:335.097465pt;}
.y12d{bottom:335.101465pt;}
.yd2{bottom:337.218781pt;}
.y23{bottom:337.396271pt;}
.y69{bottom:337.819480pt;}
.y214{bottom:342.548656pt;}
.y1a9{bottom:344.573448pt;}
.y1f7{bottom:345.397363pt;}
.yb3{bottom:345.868249pt;}
.y16c{bottom:348.429465pt;}
.y12c{bottom:348.433465pt;}
.yd1{bottom:350.552115pt;}
.y22{bottom:350.729605pt;}
.y68{bottom:351.151480pt;}
.y213{bottom:355.880656pt;}
.y1f6{bottom:356.727363pt;}
.y1a8{bottom:357.905448pt;}
.yb2{bottom:361.453454pt;}
.y16b{bottom:361.761465pt;}
.y12b{bottom:361.765465pt;}
.yd0{bottom:363.889448pt;}
.y21{bottom:364.062938pt;}
.y67{bottom:364.483480pt;}
.y1f5{bottom:368.057363pt;}
.y212{bottom:369.213989pt;}
.y1a7{bottom:371.237448pt;}
.y16a{bottom:375.096132pt;}
.y12a{bottom:375.097465pt;}
.yb1{bottom:377.040120pt;}
.ycf{bottom:377.221448pt;}
.y20{bottom:377.396271pt;}
.y66{bottom:377.816813pt;}
.y1f4{bottom:379.387363pt;}
.y1a6{bottom:384.569448pt;}
.y169{bottom:388.428132pt;}
.y129{bottom:388.429465pt;}
.yce{bottom:390.553448pt;}
.y1f3{bottom:390.717363pt;}
.y1f{bottom:390.729605pt;}
.yb0{bottom:392.623986pt;}
.y211{bottom:395.880656pt;}
.y1a5{bottom:397.901448pt;}
.y128{bottom:401.761465pt;}
.y168{bottom:401.765465pt;}
.y1f2{bottom:402.047363pt;}
.ycd{bottom:403.885448pt;}
.y1e{bottom:404.108239pt;}
.y65{bottom:407.160813pt;}
.yaf{bottom:408.209191pt;}
.y210{bottom:409.213989pt;}
.y1a4{bottom:411.233448pt;}
.y1f1{bottom:413.377363pt;}
.y127{bottom:415.093465pt;}
.y167{bottom:415.097465pt;}
.ycc{bottom:417.220115pt;}
.y1d{bottom:417.440239pt;}
.y64{bottom:420.492813pt;}
.yae{bottom:423.794396pt;}
.y1a3{bottom:424.565448pt;}
.y1f0{bottom:424.707363pt;}
.y126{bottom:428.426799pt;}
.y166{bottom:428.429465pt;}
.ycb{bottom:430.552115pt;}
.y1c{bottom:430.772239pt;}
.y63{bottom:433.824813pt;}
.y1ef{bottom:436.037363pt;}
.y1a2{bottom:437.897448pt;}
.yad{bottom:439.379723pt;}
.y165{bottom:441.761465pt;}
.yca{bottom:443.885448pt;}
.y1b{bottom:444.104239pt;}
.y62{bottom:447.156813pt;}
.y1ee{bottom:447.367363pt;}
.y1a1{bottom:451.229448pt;}
.yac{bottom:454.964928pt;}
.y164{bottom:455.094799pt;}
.yc9{bottom:457.220115pt;}
.y125{bottom:457.764132pt;}
.y1ed{bottom:458.697363pt;}
.y61{bottom:460.488813pt;}
.y1a0{bottom:464.561448pt;}
.y163{bottom:468.428132pt;}
.y1ec{bottom:470.027363pt;}
.yab{bottom:470.550133pt;}
.yc8{bottom:470.552115pt;}
.y124{bottom:471.096132pt;}
.y60{bottom:473.820813pt;}
.y19f{bottom:477.893448pt;}
.y1eb{bottom:481.357363pt;}
.y162{bottom:481.772132pt;}
.yc7{bottom:483.889448pt;}
.y1a{bottom:484.232239pt;}
.y123{bottom:484.428132pt;}
.yaa{bottom:486.135339pt;}
.y5f{bottom:487.152813pt;}
.y19e{bottom:491.225448pt;}
.y1ea{bottom:492.687363pt;}
.y161{bottom:495.104132pt;}
.yc6{bottom:497.221448pt;}
.y122{bottom:497.764132pt;}
.y19{bottom:498.896239pt;}
.y5e{bottom:500.484813pt;}
.ya9{bottom:501.720666pt;}
.y1e9{bottom:504.017363pt;}
.y19d{bottom:504.557448pt;}
.y160{bottom:508.436132pt;}
.yc5{bottom:510.553448pt;}
.y121{bottom:511.096132pt;}
.y18{bottom:513.560239pt;}
.y5d{bottom:513.820813pt;}
.y1e8{bottom:515.347363pt;}
.ya8{bottom:517.305871pt;}
.y19c{bottom:517.889448pt;}
.y15f{bottom:521.768132pt;}
.yc4{bottom:523.885448pt;}
.y120{bottom:524.428132pt;}
.y1e7{bottom:526.677363pt;}
.y5c{bottom:527.152813pt;}
.y17{bottom:528.224239pt;}
.y19b{bottom:531.221448pt;}
.ya7{bottom:532.888409pt;}
.y15e{bottom:535.100132pt;}
.yc3{bottom:537.218781pt;}
.y11f{bottom:537.764132pt;}
.y1e6{bottom:538.007363pt;}
.y5b{bottom:540.484813pt;}
.y16{bottom:542.888239pt;}
.y19a{bottom:544.553448pt;}
.y15d{bottom:548.432132pt;}
.ya6{bottom:548.480281pt;}
.y1e5{bottom:549.337363pt;}
.yc2{bottom:550.552115pt;}
.y11e{bottom:551.096132pt;}
.y5a{bottom:553.818146pt;}
.y15{bottom:557.552239pt;}
.y199{bottom:557.885448pt;}
.ya5{bottom:558.476281pt;}
.y1e4{bottom:560.667363pt;}
.y15c{bottom:561.764132pt;}
.yc1{bottom:563.893448pt;}
.y11d{bottom:564.428132pt;}
.y59{bottom:567.151480pt;}
.y198{bottom:571.217448pt;}
.y1e3{bottom:571.997363pt;}
.y14{bottom:572.216239pt;}
.ya4{bottom:574.061608pt;}
.y15b{bottom:575.096132pt;}
.yc0{bottom:577.225448pt;}
.y11c{bottom:577.760132pt;}
.y58{bottom:580.498146pt;}
.y1e2{bottom:583.327363pt;}
.y197{bottom:584.550781pt;}
.y13{bottom:586.880239pt;}
.y15a{bottom:588.428132pt;}
.ya3{bottom:589.647220pt;}
.ybf{bottom:590.557448pt;}
.y11b{bottom:591.093465pt;}
.y57{bottom:593.830146pt;}
.y1e1{bottom:594.657363pt;}
.y12{bottom:601.544239pt;}
.y159{bottom:601.764132pt;}
.ybe{bottom:603.889448pt;}
.y11a{bottom:604.426799pt;}
.ya2{bottom:605.233887pt;}
.y1e0{bottom:605.987363pt;}
.y56{bottom:607.162146pt;}
.y196{bottom:613.888115pt;}
.y158{bottom:615.096132pt;}
.y11{bottom:616.208239pt;}
.ybd{bottom:617.221448pt;}
.y1df{bottom:617.317363pt;}
.y55{bottom:620.494146pt;}
.y195{bottom:627.220115pt;}
.y157{bottom:628.428132pt;}
.y1de{bottom:628.647363pt;}
.ybc{bottom:630.553448pt;}
.y10{bottom:630.872239pt;}
.y119{bottom:633.762799pt;}
.y54{bottom:633.826146pt;}
.y1dd{bottom:639.977363pt;}
.y194{bottom:640.552115pt;}
.y156{bottom:641.762799pt;}
.ybb{bottom:643.885448pt;}
.yf{bottom:645.536239pt;}
.y118{bottom:647.094799pt;}
.y53{bottom:647.158146pt;}
.y1dc{bottom:651.307363pt;}
.y193{bottom:653.885448pt;}
.y155{bottom:655.094799pt;}
.yba{bottom:657.220115pt;}
.ye{bottom:660.200239pt;}
.y117{bottom:660.440173pt;}
.y52{bottom:660.490146pt;}
.y1db{bottom:662.637363pt;}
.y192{bottom:667.217448pt;}
.y154{bottom:668.426799pt;}
.yb9{bottom:670.552115pt;}
.y116{bottom:673.772173pt;}
.y51{bottom:673.822146pt;}
.y88{bottom:673.884421pt;}
.y1da{bottom:673.967363pt;}
.yd{bottom:674.864239pt;}
.y153{bottom:681.760132pt;}
.yb8{bottom:683.884115pt;}
.y1d9{bottom:685.297363pt;}
.y115{bottom:687.104173pt;}
.y50{bottom:687.154146pt;}
.y87{bottom:687.216421pt;}
.yc{bottom:689.528239pt;}
.y1d8{bottom:696.627363pt;}
.y1bf{bottom:697.897442pt;}
.y114{bottom:700.436173pt;}
.y4f{bottom:700.486146pt;}
.y86{bottom:700.548421pt;}
.y1d7{bottom:707.957363pt;}
.y152{bottom:711.098839pt;}
.y1be{bottom:711.229442pt;}
.y113{bottom:713.768173pt;}
.y4e{bottom:713.818146pt;}
.ya{bottom:716.194906pt;}
.y1d6{bottom:719.287363pt;}
.yb{bottom:720.861572pt;}
.y151{bottom:724.430839pt;}
.y1bd{bottom:724.562775pt;}
.y236{bottom:724.922401pt;}
.y112{bottom:727.100173pt;}
.y4d{bottom:727.154146pt;}
.y9a{bottom:728.490572pt;}
.y1d5{bottom:730.617363pt;}
.y8{bottom:732.194906pt;}
.y99{bottom:733.482363pt;}
.y9{bottom:736.861572pt;}
.yee{bottom:737.361872pt;}
.y150{bottom:737.762839pt;}
.y1bc{bottom:737.894775pt;}
.y111{bottom:740.432173pt;}
.y4c{bottom:740.486146pt;}
.y1d4{bottom:741.947363pt;}
.yed{bottom:750.693872pt;}
.y14f{bottom:751.094839pt;}
.y235{bottom:751.586400pt;}
.y1d3{bottom:753.277363pt;}
.y110{bottom:753.764173pt;}
.y4b{bottom:753.818146pt;}
.y98{bottom:754.070234pt;}
.y7{bottom:761.517572pt;}
.yec{bottom:764.025872pt;}
.y14e{bottom:764.430839pt;}
.y1d2{bottom:764.607363pt;}
.y234{bottom:764.918400pt;}
.y10f{bottom:767.096173pt;}
.y4a{bottom:767.152813pt;}
.y97{bottom:769.655602pt;}
.y1d1{bottom:775.937363pt;}
.yeb{bottom:777.357872pt;}
.y14d{bottom:777.762839pt;}
.y233{bottom:778.250400pt;}
.y10e{bottom:780.428173pt;}
.y49{bottom:780.484813pt;}
.y96{bottom:785.244807pt;}
.y1d0{bottom:787.267363pt;}
.yea{bottom:790.689872pt;}
.y14c{bottom:791.094839pt;}
.y232{bottom:791.582400pt;}
.y10d{bottom:793.768173pt;}
.y48{bottom:793.819480pt;}
.y1cf{bottom:798.597363pt;}
.y95{bottom:800.831474pt;}
.y6{bottom:801.522906pt;}
.ye9{bottom:804.021872pt;}
.y14b{bottom:804.429506pt;}
.y231{bottom:804.914400pt;}
.y94{bottom:805.830012pt;}
.y10c{bottom:807.100173pt;}
.y47{bottom:807.151480pt;}
.y1ce{bottom:809.927363pt;}
.ye8{bottom:817.353872pt;}
.y14a{bottom:817.761506pt;}
.y230{bottom:818.246400pt;}
.y10b{bottom:820.432173pt;}
.y46{bottom:820.484813pt;}
.y1cd{bottom:821.257363pt;}
.y93{bottom:826.415299pt;}
.ye7{bottom:830.685872pt;}
.y149{bottom:831.094839pt;}
.y22f{bottom:831.578400pt;}
.y1cc{bottom:832.587363pt;}
.y10a{bottom:833.764173pt;}
.y45{bottom:833.822146pt;}
.y92{bottom:836.411299pt;}
.y5{bottom:841.528239pt;}
.y1cb{bottom:843.917363pt;}
.y148{bottom:844.428173pt;}
.y22e{bottom:844.910400pt;}
.y109{bottom:847.096173pt;}
.y44{bottom:847.154146pt;}
.y2f{bottom:848.326009pt;}
.y91{bottom:851.996504pt;}
.y1ca{bottom:855.247363pt;}
.y147{bottom:857.762839pt;}
.yf8{bottom:858.758150pt;}
.y108{bottom:860.428173pt;}
.y43{bottom:860.486146pt;}
.y22d{bottom:864.901067pt;}
.y1c9{bottom:866.577363pt;}
.y90{bottom:867.585709pt;}
.yf7{bottom:868.758150pt;}
.y146{bottom:871.094839pt;}
.yf4{bottom:873.754022pt;}
.y107{bottom:873.766839pt;}
.y42{bottom:873.818146pt;}
.y1c8{bottom:877.907363pt;}
.y22c{bottom:878.233067pt;}
.yf6{bottom:878.758150pt;}
.y8f{bottom:883.172376pt;}
.y145{bottom:884.429506pt;}
.y106{bottom:887.098839pt;}
.y41{bottom:887.152813pt;}
.y8e{bottom:888.170914pt;}
.yf5{bottom:888.752689pt;}
.y1c7{bottom:889.237363pt;}
.y144{bottom:897.761506pt;}
.y22b{bottom:898.237067pt;}
.y105{bottom:900.430839pt;}
.y40{bottom:900.484813pt;}
.y1c6{bottom:900.567363pt;}
.yf3{bottom:904.343355pt;}
.y8d{bottom:908.757581pt;}
.y143{bottom:911.093506pt;}
.y1c5{bottom:911.897363pt;}
.y8c{bottom:913.749615pt;}
.y104{bottom:913.762839pt;}
.y3f{bottom:913.818146pt;}
.yf2{bottom:914.343355pt;}
.y22a{bottom:918.241067pt;}
.yef{bottom:919.337766pt;}
.y1c4{bottom:923.227363pt;}
.yf1{bottom:924.343355pt;}
.y142{bottom:924.426839pt;}
.y103{bottom:927.094839pt;}
.y3e{bottom:927.151480pt;}
.yf0{bottom:934.336432pt;}
.y8b{bottom:934.337487pt;}
.y1c3{bottom:934.557363pt;}
.y229{bottom:938.245067pt;}
.y102{bottom:940.429506pt;}
.y3d{bottom:940.486146pt;}
.y1c2{bottom:945.887363pt;}
.y8a{bottom:949.923099pt;}
.y228{bottom:951.577067pt;}
.y101{bottom:953.761506pt;}
.y3c{bottom:953.818146pt;}
.y1c1{bottom:957.217363pt;}
.y227{bottom:964.910400pt;}
.y89{bottom:965.509766pt;}
.y100{bottom:967.093506pt;}
.y3b{bottom:967.150146pt;}
.y1c0{bottom:968.547363pt;}
.y7d{bottom:1013.902507pt;}
.yb7{bottom:1013.996908pt;}
.y3a{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h7{height:24.933594pt;}
.h8{height:25.052083pt;}
.hf{height:27.275268pt;}
.h2{height:30.687500pt;}
.h42{height:31.476562pt;}
.h12{height:32.605469pt;}
.h9{height:34.523438pt;}
.h23{height:36.922667pt;}
.h10{height:37.038880pt;}
.h24{height:37.056311pt;}
.h2c{height:37.066465pt;}
.h28{height:37.070521pt;}
.h1e{height:37.070684pt;}
.h26{height:37.071660pt;}
.h2b{height:37.071823pt;}
.h1f{height:37.072311pt;}
.h2a{height:37.082815pt;}
.h35{height:37.408000pt;}
.h1d{height:38.229333pt;}
.h6{height:38.359375pt;}
.h43{height:39.560000pt;}
.h45{height:40.080000pt;}
.h3{height:40.604167pt;}
.h44{height:40.960000pt;}
.h1b{height:42.195312pt;}
.h11{height:43.141927pt;}
.h13{height:43.887578pt;}
.h47{height:44.834667pt;}
.ha{height:47.472000pt;}
.h18{height:47.598101pt;}
.h38{height:47.603271pt;}
.h3b{height:47.603473pt;}
.h3a{height:47.608767pt;}
.h2e{height:47.618946pt;}
.h34{height:47.619454pt;}
.h37{height:47.624605pt;}
.h36{height:47.629938pt;}
.h30{height:47.634946pt;}
.h16{height:47.635271pt;}
.hd{height:47.635434pt;}
.h3f{height:47.635475pt;}
.h32{height:47.640279pt;}
.h17{height:47.640605pt;}
.h1a{height:47.640767pt;}
.h31{height:47.645613pt;}
.h14{height:47.645938pt;}
.hc{height:47.646101pt;}
.h3d{height:47.646139pt;}
.h2d{height:47.646264pt;}
.h2f{height:47.650946pt;}
.h15{height:47.651271pt;}
.hb{height:47.651434pt;}
.h3c{height:47.651473pt;}
.h33{height:47.651475pt;}
.h41{height:47.651597pt;}
.h3e{height:47.656605pt;}
.h39{height:47.656767pt;}
.h40{height:47.656930pt;}
.h19{height:48.096000pt;}
.h46{height:49.146667pt;}
.h1c{height:49.152000pt;}
.h4{height:50.755208pt;}
.h21{height:57.051116pt;}
.h25{height:57.055986pt;}
.h29{height:57.056149pt;}
.h22{height:57.056311pt;}
.h20{height:57.082978pt;}
.he{height:69.046875pt;}
.h27{height:78.213333pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.425200pt;}
.x3{left:54.803202pt;}
.x11{left:59.016771pt;}
.xc{left:125.685069pt;}
.x13{left:148.121063pt;}
.x10{left:161.450133pt;}
.x5{left:207.874003pt;}
.x15{left:212.062927pt;}
.xb{left:223.876003pt;}
.x17{left:225.874003pt;}
.x19{left:268.887736pt;}
.x16{left:275.473576pt;}
.x9{left:344.464803pt;}
.x6{left:358.631470pt;}
.x12{left:407.163867pt;}
.xa{left:504.382284pt;}
.x4{left:521.612549pt;}
.x7{left:537.309082pt;}
.xd{left:668.520264pt;}
.x8{left:675.962524pt;}
.x14{left:677.619718pt;}
.xf{left:708.791829pt;}
.x2{left:710.134766pt;}
.x18{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; }
  