
    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_2f90d59938578ca04c6f26e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_9f9b37d79568e7f09f836b69.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_45f1959aede8b75f52435524.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_c2f80a18d88b9b39391f95b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_7fb6e8623ea0694db42d2b33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_bb1fd0d458ffdfa0f357b527.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_d9e29292467b10fa49dbdd79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_2d51650c5d27d31781bfa322.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_45000ebb58972f227147fd38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_45f1959aede8b75f52435524.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_d1572c685311abd6c6d73ac4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_3194c9fcce0c756ee2dc2a82.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_684464f75d972e6224b8d80f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9f9b37d79568e7f09f836b69.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_45f1959aede8b75f52435524.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c2f80a18d88b9b39391f95b0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9f9b37d79568e7f09f836b69.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919000;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:ff12;src:url('chunks/assets/font_45f1959aede8b75f52435524.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;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:ff13;src:url('chunks/assets/font_c2f80a18d88b9b39391f95b0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;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:ff14;src:url('chunks/assets/font_fc1dd804ea7737365941b8c7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941000;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:ff15;src:url('chunks/assets/font_6beadcd0e00b2f1f1b9c8d8e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.732527;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:ff16;src:url('chunks/assets/font_9f9b37d79568e7f09f836b69.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919000;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:ff17;src:url('chunks/assets/font_45f1959aede8b75f52435524.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.904000;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:ff18;src:url('chunks/assets/font_c2f80a18d88b9b39391f95b0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.912000;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;}
.m1{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);}
.m2{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);}
.v7{vertical-align:-21.599400px;}
.v4{vertical-align:-19.980600px;}
.v5{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:24.288000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.v3{vertical-align:54.000000px;}
.ls7{letter-spacing:-2.220000px;}
.ls8{letter-spacing:-1.998000px;}
.ls4{letter-spacing:-1.776000px;}
.ls5{letter-spacing:-0.810000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.523800px;}
.ls9{letter-spacing:0.599400px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls6{letter-spacing:1640.733600px;}
.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;}
}
.ws1{word-spacing:-20.460000px;}
.ws4{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.400000px;}
.ws6{word-spacing:-12.960000px;}
.wsc4{word-spacing:-12.510000px;}
.wsc6{word-spacing:-12.374550px;}
.ws0{word-spacing:-12.164724px;}
.ws3{word-spacing:-12.150000px;}
.wsb{word-spacing:-11.520480px;}
.ws9f{word-spacing:-11.520000px;}
.ws5{word-spacing:-10.342800px;}
.ws6e{word-spacing:-9.094800px;}
.ws6f{word-spacing:-8.751996px;}
.ws9e{word-spacing:-7.637760px;}
.wsaf{word-spacing:-4.739400px;}
.ws84{word-spacing:-3.660000px;}
.ws4e{word-spacing:-3.540600px;}
.ws35{word-spacing:-3.360000px;}
.ws12{word-spacing:-3.299400px;}
.ws94{word-spacing:-3.000000px;}
.ws34{word-spacing:-2.880000px;}
.wsb0{word-spacing:-2.700000px;}
.wsb2{word-spacing:-2.520600px;}
.ws43{word-spacing:-2.460000px;}
.wsae{word-spacing:-2.279400px;}
.ws36{word-spacing:-2.227680px;}
.ws52{word-spacing:-2.160000px;}
.wsbb{word-spacing:-2.100000px;}
.wsbe{word-spacing:-1.980000px;}
.ws67{word-spacing:-1.860600px;}
.ws6b{word-spacing:-1.782000px;}
.wsa{word-spacing:-1.776000px;}
.ws65{word-spacing:-1.680000px;}
.ws6c{word-spacing:-1.566540px;}
.wsaa{word-spacing:-1.560000px;}
.wsa4{word-spacing:-1.200000px;}
.ws64{word-spacing:-1.140000px;}
.ws8e{word-spacing:-0.840600px;}
.wsbc{word-spacing:-0.599400px;}
.ws9c{word-spacing:-0.594000px;}
.ws61{word-spacing:-0.480000px;}
.ws8d{word-spacing:-0.420000px;}
.ws5f{word-spacing:-0.300000px;}
.wsb5{word-spacing:-0.240000px;}
.wsc5{word-spacing:-0.225000px;}
.ws83{word-spacing:-0.180600px;}
.ws7d{word-spacing:-0.120000px;}
.ws9d{word-spacing:-0.108000px;}
.ws81{word-spacing:-0.060600px;}
.ws8{word-spacing:0.000000px;}
.ws40{word-spacing:0.240000px;}
.ws76{word-spacing:0.360000px;}
.ws3a{word-spacing:0.397402px;}
.ws50{word-spacing:0.480000px;}
.wsa7{word-spacing:0.540000px;}
.ws39{word-spacing:0.599400px;}
.ws3f{word-spacing:0.719400px;}
.ws92{word-spacing:0.780000px;}
.wsc{word-spacing:0.810000px;}
.ws2e{word-spacing:0.864540px;}
.ws3b{word-spacing:0.900000px;}
.ws29{word-spacing:0.918000px;}
.ws5d{word-spacing:1.080600px;}
.ws44{word-spacing:1.140000px;}
.ws1a{word-spacing:1.272960px;}
.wsba{word-spacing:1.320000px;}
.ws38{word-spacing:1.379400px;}
.ws3c{word-spacing:1.440000px;}
.ws24{word-spacing:1.740600px;}
.ws9{word-spacing:1.776000px;}
.ws18{word-spacing:1.800000px;}
.ws4d{word-spacing:1.860600px;}
.ws19{word-spacing:1.920000px;}
.wsa9{word-spacing:1.980000px;}
.ws69{word-spacing:1.998000px;}
.ws48{word-spacing:2.187502px;}
.ws68{word-spacing:2.220000px;}
.ws82{word-spacing:2.640600px;}
.wsbd{word-spacing:2.700000px;}
.ws28{word-spacing:2.861460px;}
.ws11{word-spacing:2.880000px;}
.ws32{word-spacing:2.944118px;}
.ws6a{word-spacing:2.969460px;}
.wsb1{word-spacing:3.000000px;}
.ws10{word-spacing:3.059400px;}
.ws2b{word-spacing:3.078540px;}
.ws57{word-spacing:3.179400px;}
.ws37{word-spacing:3.240000px;}
.ws47{word-spacing:3.299400px;}
.ws4f{word-spacing:3.360000px;}
.wsa2{word-spacing:3.780000px;}
.ws58{word-spacing:3.959400px;}
.wsb4{word-spacing:4.020000px;}
.ws2d{word-spacing:4.158000px;}
.ws33{word-spacing:4.440600px;}
.ws93{word-spacing:4.500000px;}
.ws62{word-spacing:4.620000px;}
.wsa5{word-spacing:4.739400px;}
.ws15{word-spacing:4.859400px;}
.wsb9{word-spacing:4.920000px;}
.ws96{word-spacing:5.220600px;}
.ws66{word-spacing:5.400000px;}
.ws1e{word-spacing:5.460000px;}
.ws63{word-spacing:5.759400px;}
.ws5a{word-spacing:5.820000px;}
.ws23{word-spacing:5.887042px;}
.ws5c{word-spacing:5.940000px;}
.ws86{word-spacing:6.120600px;}
.wsad{word-spacing:6.180000px;}
.wsa6{word-spacing:6.300000px;}
.wsac{word-spacing:6.360000px;}
.ws51{word-spacing:6.600000px;}
.ws70{word-spacing:6.659400px;}
.ws71{word-spacing:6.840000px;}
.ws41{word-spacing:6.960000px;}
.ws88{word-spacing:7.020000px;}
.ws60{word-spacing:7.140000px;}
.ws16{word-spacing:7.200000px;}
.wsa0{word-spacing:7.380000px;}
.ws27{word-spacing:7.439400px;}
.wsb7{word-spacing:8.040000px;}
.ws56{word-spacing:8.160000px;}
.ws25{word-spacing:8.280000px;}
.ws59{word-spacing:8.340600px;}
.ws30{word-spacing:8.370000px;}
.ws5b{word-spacing:8.460600px;}
.ws95{word-spacing:8.520000px;}
.ws98{word-spacing:8.640000px;}
.ws22{word-spacing:8.879400px;}
.ws75{word-spacing:8.999400px;}
.ws3e{word-spacing:9.119400px;}
.ws5e{word-spacing:9.360600px;}
.ws42{word-spacing:9.420000px;}
.ws9a{word-spacing:9.660000px;}
.ws2a{word-spacing:9.936540px;}
.ws2f{word-spacing:9.990000px;}
.ws89{word-spacing:10.260600px;}
.ws8c{word-spacing:10.500000px;}
.ws21{word-spacing:10.559400px;}
.ws79{word-spacing:10.679400px;}
.ws8a{word-spacing:10.740000px;}
.wsb3{word-spacing:10.799400px;}
.wsd{word-spacing:10.860000px;}
.ws85{word-spacing:11.400000px;}
.ws6d{word-spacing:11.448540px;}
.wsb6{word-spacing:11.520000px;}
.wsab{word-spacing:11.579400px;}
.ws46{word-spacing:11.760000px;}
.ws26{word-spacing:11.820600px;}
.ws87{word-spacing:12.060000px;}
.ws77{word-spacing:12.300000px;}
.ws7b{word-spacing:12.359400px;}
.wsc3{word-spacing:12.645450px;}
.ws7f{word-spacing:12.720600px;}
.ws1c{word-spacing:12.780000px;}
.ws91{word-spacing:12.960000px;}
.ws80{word-spacing:13.080000px;}
.ws7e{word-spacing:13.200000px;}
.ws1b{word-spacing:13.259400px;}
.wsf{word-spacing:13.380600px;}
.ws2c{word-spacing:13.392000px;}
.wsa1{word-spacing:13.560000px;}
.ws7c{word-spacing:13.740000px;}
.ws8f{word-spacing:13.800000px;}
.ws4b{word-spacing:13.803660px;}
.ws49{word-spacing:14.039400px;}
.ws31{word-spacing:14.460000px;}
.ws54{word-spacing:14.640000px;}
.ws53{word-spacing:14.760000px;}
.ws72{word-spacing:15.000000px;}
.ws55{word-spacing:15.120000px;}
.wsc2{word-spacing:15.240000px;}
.wsa8{word-spacing:15.360000px;}
.wsbf{word-spacing:15.420000px;}
.wsc1{word-spacing:15.840600px;}
.wse{word-spacing:15.900000px;}
.ws74{word-spacing:16.020000px;}
.ws78{word-spacing:16.200000px;}
.ws97{word-spacing:16.440000px;}
.ws3d{word-spacing:16.680000px;}
.ws4a{word-spacing:16.920000px;}
.ws8b{word-spacing:16.980000px;}
.wsa3{word-spacing:17.220000px;}
.wsb8{word-spacing:17.520600px;}
.ws7a{word-spacing:18.120000px;}
.wsc0{word-spacing:18.780000px;}
.ws4c{word-spacing:20.820000px;}
.ws73{word-spacing:21.480000px;}
.ws1f{word-spacing:22.260000px;}
.ws45{word-spacing:22.920000px;}
.ws17{word-spacing:22.980000px;}
.ws90{word-spacing:25.320000px;}
.ws14{word-spacing:26.400000px;}
.ws13{word-spacing:29.880000px;}
.ws99{word-spacing:30.840600px;}
.ws1d{word-spacing:33.179400px;}
.ws9b{word-spacing:34.680000px;}
.ws20{word-spacing:45.960600px;}
._d{margin-left:-2920.478760px;}
._c{margin-left:-2055.832380px;}
._1e{margin-left:-60.864000px;}
._a{margin-left:-59.040000px;}
._5{margin-left:-47.970000px;}
._15{margin-left:-21.900000px;}
._14{margin-left:-20.518200px;}
._f{margin-left:-17.460000px;}
._23{margin-left:-12.645450px;}
._6{margin-left:-11.520000px;}
._20{margin-left:-9.234000px;}
._1c{margin-left:-7.536000px;}
._0{margin-left:-6.192000px;}
._9{margin-left:-5.040000px;}
._3{margin-left:-3.552000px;}
._1{margin-left:-1.780800px;}
._4{width:1.344000px;}
._16{width:2.370000px;}
._22{width:7.874100px;}
._e{width:9.600000px;}
._7{width:11.515200px;}
._21{width:12.960000px;}
._8{width:14.040000px;}
._11{width:17.496000px;}
._24{width:20.610000px;}
._12{width:22.794000px;}
._18{width:24.030000px;}
._2{width:33.727800px;}
._13{width:38.016000px;}
._17{width:39.186000px;}
._10{width:45.600000px;}
._19{width:91.962000px;}
._1a{width:114.912000px;}
._b{width:193.722840px;}
._1b{width:292.950000px;}
._1d{width:332.532000px;}
._1f{width:370.278000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs9{font-size:31.482000px;}
.fsb{font-size:31.824000px;}
.fs8{font-size:34.980000px;}
.fsa{font-size:35.802000px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.ycc{bottom:81.586200px;}
.y114{bottom:81.586350px;}
.y6a{bottom:81.604650px;}
.y51{bottom:81.610800px;}
.y20{bottom:81.637800px;}
.y1ad{bottom:81.672600px;}
.yb1{bottom:82.216350px;}
.y171{bottom:82.261350px;}
.y13b{bottom:90.586200px;}
.y1ac{bottom:94.418850px;}
.y1f{bottom:96.637800px;}
.ycb{bottom:97.786200px;}
.y113{bottom:99.586350px;}
.y69{bottom:99.604650px;}
.y50{bottom:99.610800px;}
.yb0{bottom:100.306350px;}
.y170{bottom:100.456350px;}
.y13a{bottom:105.586200px;}
.y1ab{bottom:107.165100px;}
.y112{bottom:117.586350px;}
.y68{bottom:117.604650px;}
.y4f{bottom:117.610800px;}
.yaf{bottom:118.396350px;}
.y16f{bottom:118.651350px;}
.y1aa{bottom:119.911350px;}
.y1e{bottom:125.137800px;}
.y139{bottom:132.150750px;}
.y1a9{bottom:132.657600px;}
.y111{bottom:135.586350px;}
.y67{bottom:135.604650px;}
.y4e{bottom:135.610800px;}
.yae{bottom:136.486350px;}
.y16e{bottom:136.846350px;}
.y1d{bottom:140.137800px;}
.y1a8{bottom:145.403850px;}
.y138{bottom:148.350750px;}
.y110{bottom:153.586350px;}
.y66{bottom:153.604650px;}
.y16d{bottom:155.041350px;}
.y1a7{bottom:158.150100px;}
.y26{bottom:159.205650px;}
.y137{bottom:164.550750px;}
.y1a6{bottom:170.896350px;}
.y10f{bottom:171.586350px;}
.y65{bottom:171.604650px;}
.y16c{bottom:173.236350px;}
.y25{bottom:173.605650px;}
.yad{bottom:181.576350px;}
.y4d{bottom:183.451800px;}
.y1a5{bottom:183.642600px;}
.y136{bottom:184.692750px;}
.y24{bottom:188.005650px;}
.y10e{bottom:189.586350px;}
.y64{bottom:189.604650px;}
.y16b{bottom:191.431350px;}
.y1a4{bottom:196.388850px;}
.yac{bottom:199.666350px;}
.y4c{bottom:199.948800px;}
.y135{bottom:200.892750px;}
.y23{bottom:202.405650px;}
.y10d{bottom:207.586350px;}
.y63{bottom:207.604650px;}
.y1a3{bottom:209.135100px;}
.y16a{bottom:209.626350px;}
.y4b{bottom:216.445800px;}
.y22{bottom:216.805650px;}
.y134{bottom:217.092750px;}
.yab{bottom:217.756350px;}
.y1a2{bottom:221.881350px;}
.y10c{bottom:225.586350px;}
.y62{bottom:225.604650px;}
.y169{bottom:227.821350px;}
.y21{bottom:231.205650px;}
.y4a{bottom:232.942800px;}
.y1a1{bottom:234.627600px;}
.yaa{bottom:235.846350px;}
.y133{bottom:237.234750px;}
.y10b{bottom:243.586350px;}
.y61{bottom:243.604650px;}
.y168{bottom:246.016350px;}
.y1a0{bottom:247.373850px;}
.y49{bottom:249.439800px;}
.y132{bottom:253.731750px;}
.ya9{bottom:253.936350px;}
.y19f{bottom:260.120100px;}
.y10a{bottom:261.586350px;}
.y60{bottom:261.604650px;}
.y167{bottom:264.211350px;}
.y48{bottom:265.936800px;}
.y131{bottom:270.237750px;}
.ya8{bottom:272.026350px;}
.y19e{bottom:272.866350px;}
.y109{bottom:279.586350px;}
.y5f{bottom:279.604650px;}
.y166{bottom:282.406350px;}
.y47{bottom:282.433800px;}
.y19d{bottom:285.616350px;}
.y130{bottom:286.734750px;}
.ya7{bottom:290.116350px;}
.y108{bottom:297.586350px;}
.y5e{bottom:297.604650px;}
.y46{bottom:298.930800px;}
.y165{bottom:300.601350px;}
.y12f{bottom:303.231750px;}
.y12e{bottom:303.533100px;}
.ya6{bottom:308.206350px;}
.y45{bottom:315.427800px;}
.y107{bottom:315.586350px;}
.y5d{bottom:315.604650px;}
.y164{bottom:318.796350px;}
.y12d{bottom:319.733100px;}
.ya5{bottom:326.296350px;}
.y44{bottom:331.924800px;}
.y106{bottom:333.586350px;}
.y5c{bottom:333.604650px;}
.y163{bottom:336.991350px;}
.y12c{bottom:344.370600px;}
.ya4{bottom:344.386350px;}
.y19c{bottom:345.811950px;}
.y43{bottom:348.421800px;}
.y105{bottom:351.586350px;}
.y5b{bottom:351.604650px;}
.y162{bottom:355.186350px;}
.y19b{bottom:360.211950px;}
.ya3{bottom:362.476350px;}
.y42{bottom:364.918800px;}
.y12b{bottom:366.387450px;}
.y104{bottom:369.586350px;}
.y5a{bottom:369.604650px;}
.y1e8{bottom:370.486350px;}
.y221{bottom:370.992600px;}
.y161{bottom:373.381350px;}
.y19a{bottom:374.611950px;}
.ya2{bottom:380.566350px;}
.y41{bottom:381.415800px;}
.y12a{bottom:382.884450px;}
.y1e7{bottom:383.232600px;}
.y220{bottom:384.188850px;}
.y103{bottom:387.586350px;}
.y59{bottom:387.604650px;}
.y199{bottom:389.011950px;}
.y160{bottom:391.576350px;}
.y1e6{bottom:395.978850px;}
.y21f{bottom:397.385100px;}
.y40{bottom:397.912800px;}
.ya1{bottom:398.656350px;}
.y198{bottom:403.411950px;}
.y102{bottom:405.586350px;}
.y58{bottom:405.604650px;}
.y1e5{bottom:408.725100px;}
.y15f{bottom:409.771350px;}
.y21e{bottom:410.581350px;}
.y3f{bottom:414.409800px;}
.ya0{bottom:416.746350px;}
.y197{bottom:417.811950px;}
.y1e4{bottom:421.471350px;}
.y101{bottom:423.586350px;}
.y57{bottom:423.604650px;}
.y21d{bottom:423.777600px;}
.y15e{bottom:427.966350px;}
.y3e{bottom:430.906800px;}
.y1e3{bottom:434.217600px;}
.y9f{bottom:434.836350px;}
.ydb{bottom:436.499100px;}
.y21c{bottom:436.973850px;}
.y196{bottom:438.211950px;}
.y100{bottom:441.586350px;}
.y56{bottom:441.604650px;}
.y15d{bottom:446.161350px;}
.y1e2{bottom:446.963850px;}
.y3d{bottom:447.403800px;}
.y21b{bottom:450.170100px;}
.y9e{bottom:452.926350px;}
.yda{bottom:454.499100px;}
.y195{bottom:458.611950px;}
.y55{bottom:459.604650px;}
.y1e1{bottom:459.710100px;}
.y21a{bottom:463.366350px;}
.y3c{bottom:463.900800px;}
.y15c{bottom:464.356350px;}
.y1e0{bottom:472.456350px;}
.yd9{bottom:472.499100px;}
.y194{bottom:473.011950px;}
.y219{bottom:476.562600px;}
.yff{bottom:477.571350px;}
.y54{bottom:477.604650px;}
.y3b{bottom:480.397800px;}
.y15b{bottom:482.551350px;}
.y1df{bottom:485.202600px;}
.y218{bottom:489.758850px;}
.yd8{bottom:490.499100px;}
.y9d{bottom:492.511350px;}
.y193{bottom:493.411950px;}
.yfe{bottom:495.571350px;}
.y53{bottom:495.610800px;}
.y3a{bottom:496.894800px;}
.y1de{bottom:497.948850px;}
.y15a{bottom:500.746350px;}
.y217{bottom:502.955100px;}
.yd7{bottom:508.499100px;}
.y9c{bottom:510.601350px;}
.y1dd{bottom:510.695100px;}
.y39{bottom:513.391800px;}
.yfd{bottom:513.571350px;}
.y52{bottom:513.610800px;}
.y192{bottom:514.411950px;}
.y216{bottom:516.151350px;}
.y159{bottom:518.941350px;}
.y1dc{bottom:523.441350px;}
.yd6{bottom:526.499100px;}
.y9b{bottom:528.691350px;}
.y191{bottom:528.811950px;}
.y215{bottom:529.347600px;}
.y38{bottom:529.888800px;}
.yfc{bottom:531.571350px;}
.y1c{bottom:534.934650px;}
.y1db{bottom:536.187600px;}
.y158{bottom:537.136350px;}
.y214{bottom:542.543850px;}
.y190{bottom:543.211950px;}
.yd5{bottom:544.499100px;}
.y37{bottom:546.385800px;}
.y9a{bottom:546.781350px;}
.y1da{bottom:548.933850px;}
.yfb{bottom:549.571350px;}
.y1b{bottom:549.934650px;}
.y157{bottom:555.331350px;}
.y213{bottom:555.740100px;}
.y1d9{bottom:561.680100px;}
.yd4{bottom:562.499100px;}
.y36{bottom:562.882800px;}
.y18f{bottom:563.611950px;}
.y99{bottom:564.871350px;}
.y1a{bottom:564.934650px;}
.yfa{bottom:567.571350px;}
.y212{bottom:568.936350px;}
.y78{bottom:571.618500px;}
.y156{bottom:573.526350px;}
.y1d8{bottom:574.426350px;}
.y18e{bottom:578.011950px;}
.y35{bottom:579.379800px;}
.yd3{bottom:580.499100px;}
.y211{bottom:582.132600px;}
.y98{bottom:582.961350px;}
.yf9{bottom:585.571350px;}
.y1d7{bottom:587.172600px;}
.y77{bottom:588.115500px;}
.y155{bottom:591.721350px;}
.y18d{bottom:592.411950px;}
.y19{bottom:593.434650px;}
.y210{bottom:595.328850px;}
.y34{bottom:595.876800px;}
.yd2{bottom:598.499100px;}
.y1d6{bottom:599.918850px;}
.y97{bottom:601.051350px;}
.yf8{bottom:603.571350px;}
.y76{bottom:604.612500px;}
.y18{bottom:608.434650px;}
.y20f{bottom:608.525100px;}
.y154{bottom:609.916350px;}
.y33{bottom:612.373800px;}
.y1d5{bottom:612.665100px;}
.y18c{bottom:612.811950px;}
.yd1{bottom:616.499100px;}
.yc0{bottom:618.526350px;}
.y96{bottom:619.141350px;}
.y75{bottom:621.109500px;}
.yf7{bottom:621.571350px;}
.y20e{bottom:621.721350px;}
.y17{bottom:623.434650px;}
.y1d4{bottom:625.411350px;}
.y18b{bottom:627.211950px;}
.y32{bottom:628.870800px;}
.yd0{bottom:634.499100px;}
.y20d{bottom:634.917600px;}
.ybf{bottom:636.526350px;}
.y95{bottom:637.231350px;}
.y74{bottom:637.612500px;}
.y1d3{bottom:638.157600px;}
.y16{bottom:638.434650px;}
.yf6{bottom:639.571350px;}
.y18a{bottom:641.611950px;}
.y31{bottom:645.367800px;}
.y20c{bottom:648.113850px;}
.y153{bottom:649.501350px;}
.y1d2{bottom:650.903850px;}
.ycf{bottom:652.499100px;}
.y15{bottom:653.434650px;}
.y73{bottom:654.109500px;}
.ybe{bottom:654.526350px;}
.y94{bottom:655.321350px;}
.y189{bottom:656.011950px;}
.yf5{bottom:657.571350px;}
.y20b{bottom:661.310100px;}
.y30{bottom:661.864800px;}
.y1d1{bottom:663.650100px;}
.y152{bottom:667.696350px;}
.y14{bottom:668.434650px;}
.y188{bottom:670.411950px;}
.yce{bottom:670.499100px;}
.y72{bottom:670.618500px;}
.ybd{bottom:672.526350px;}
.y93{bottom:673.411350px;}
.y20a{bottom:674.506350px;}
.yf4{bottom:675.571350px;}
.y1d0{bottom:676.396350px;}
.y2f{bottom:678.361800px;}
.y151{bottom:685.891350px;}
.y71{bottom:687.115500px;}
.y209{bottom:687.702600px;}
.ycd{bottom:688.499100px;}
.y1cf{bottom:689.142600px;}
.ybc{bottom:690.526350px;}
.y92{bottom:691.501350px;}
.y13{bottom:692.434650px;}
.yf3{bottom:693.571350px;}
.y2e{bottom:694.858800px;}
.y208{bottom:700.898850px;}
.y1ce{bottom:701.888850px;}
.y70{bottom:703.612500px;}
.y150{bottom:704.086350px;}
.y12{bottom:707.434650px;}
.y187{bottom:708.211950px;}
.ybb{bottom:708.526350px;}
.y91{bottom:709.591350px;}
.y2d{bottom:711.355800px;}
.yf2{bottom:711.571350px;}
.y207{bottom:714.095100px;}
.y1cd{bottom:714.635100px;}
.y6f{bottom:720.109500px;}
.y14f{bottom:722.281350px;}
.y11{bottom:722.434650px;}
.y186{bottom:723.211950px;}
.yba{bottom:726.526350px;}
.y206{bottom:727.291350px;}
.y1cc{bottom:727.381350px;}
.y90{bottom:727.681350px;}
.y2c{bottom:727.852800px;}
.yf1{bottom:729.571350px;}
.y79{bottom:730.181745px;}
.y6e{bottom:736.615500px;}
.y10{bottom:737.434650px;}
.y185{bottom:738.211950px;}
.y1cb{bottom:740.127600px;}
.y14e{bottom:740.476350px;}
.y205{bottom:740.487600px;}
.y129{bottom:743.414100px;}
.y2b{bottom:744.349800px;}
.yb9{bottom:744.526350px;}
.y8f{bottom:745.771350px;}
.yf0{bottom:747.571350px;}
.yf{bottom:752.434650px;}
.y1ca{bottom:752.873850px;}
.y6d{bottom:753.112500px;}
.y184{bottom:753.211950px;}
.y204{bottom:753.683850px;}
.y14d{bottom:758.671350px;}
.y2a{bottom:760.846800px;}
.yb8{bottom:762.526350px;}
.y183{bottom:762.811950px;}
.y8e{bottom:763.861350px;}
.yef{bottom:765.571350px;}
.y1c9{bottom:765.620100px;}
.y203{bottom:766.880100px;}
.ye{bottom:767.434650px;}
.y6c{bottom:769.609500px;}
.y128{bottom:769.974000px;}
.y14c{bottom:776.866350px;}
.y29{bottom:777.343800px;}
.y1c8{bottom:778.366350px;}
.y202{bottom:780.076350px;}
.yb7{bottom:780.526350px;}
.y8d{bottom:781.951350px;}
.yd{bottom:782.434650px;}
.y182{bottom:783.211800px;}
.yee{bottom:783.571350px;}
.y127{bottom:786.174000px;}
.y1c7{bottom:791.112600px;}
.y181{bottom:792.811950px;}
.y201{bottom:793.272600px;}
.y28{bottom:793.840800px;}
.y14b{bottom:795.061350px;}
.yc{bottom:797.434650px;}
.yb6{bottom:798.526350px;}
.y8c{bottom:800.041350px;}
.y6b{bottom:801.340800px;}
.yed{bottom:801.571350px;}
.y1c6{bottom:803.858850px;}
.y126{bottom:806.316000px;}
.y200{bottom:806.468850px;}
.y27{bottom:810.340800px;}
.yb{bottom:812.434650px;}
.y180{bottom:813.211800px;}
.y14a{bottom:813.256350px;}
.yb5{bottom:816.526350px;}
.y1c5{bottom:816.605100px;}
.y8b{bottom:818.131350px;}
.yec{bottom:819.571350px;}
.y1ff{bottom:819.665100px;}
.y125{bottom:822.516000px;}
.y17f{bottom:822.811950px;}
.y1c4{bottom:829.351350px;}
.y149{bottom:831.451350px;}
.y1fe{bottom:832.861350px;}
.yb4{bottom:834.526350px;}
.y8a{bottom:836.221350px;}
.yeb{bottom:837.571350px;}
.y124{bottom:838.716000px;}
.y1c3{bottom:842.097600px;}
.y1fd{bottom:846.057600px;}
.y148{bottom:849.646350px;}
.yb3{bottom:852.526350px;}
.y89{bottom:854.311350px;}
.y1c2{bottom:854.843850px;}
.y123{bottom:854.916000px;}
.yea{bottom:855.571350px;}
.y17e{bottom:855.811950px;}
.y1fc{bottom:859.253850px;}
.y1c1{bottom:867.590100px;}
.y147{bottom:867.841350px;}
.yb2{bottom:870.526350px;}
.y122{bottom:871.116000px;}
.y88{bottom:872.401350px;}
.y1fb{bottom:872.450100px;}
.ye9{bottom:873.571350px;}
.y17d{bottom:873.811950px;}
.ya{bottom:879.337650px;}
.y1c0{bottom:880.336350px;}
.y1fa{bottom:885.646350px;}
.y146{bottom:886.036350px;}
.y121{bottom:887.316000px;}
.y87{bottom:890.491350px;}
.ye8{bottom:891.571350px;}
.y17c{bottom:891.811350px;}
.y1bf{bottom:893.082600px;}
.y9{bottom:898.837650px;}
.y1f9{bottom:898.842600px;}
.y145{bottom:904.231350px;}
.y1be{bottom:905.828850px;}
.y86{bottom:908.581350px;}
.y120{bottom:908.956500px;}
.ye7{bottom:909.571350px;}
.y17b{bottom:909.811350px;}
.y1f8{bottom:912.038850px;}
.y8{bottom:918.340650px;}
.y1bd{bottom:918.575100px;}
.y144{bottom:922.426350px;}
.y11f{bottom:925.156500px;}
.y1f7{bottom:925.235100px;}
.y85{bottom:926.671350px;}
.ye6{bottom:927.571350px;}
.y17a{bottom:927.811350px;}
.y1bc{bottom:931.321350px;}
.yca{bottom:932.895900px;}
.y1f6{bottom:938.431350px;}
.y143{bottom:940.621350px;}
.y11e{bottom:941.356500px;}
.y1bb{bottom:944.067600px;}
.y84{bottom:944.761350px;}
.ye5{bottom:945.571350px;}
.y179{bottom:945.811350px;}
.yc9{bottom:949.392900px;}
.y1f5{bottom:951.627600px;}
.y1ba{bottom:956.813850px;}
.y11d{bottom:957.556500px;}
.y142{bottom:958.816350px;}
.y83{bottom:962.851350px;}
.ye4{bottom:963.571350px;}
.y178{bottom:963.811350px;}
.y1f4{bottom:964.823850px;}
.yc8{bottom:965.889900px;}
.y1b9{bottom:969.560100px;}
.y11c{bottom:973.756500px;}
.y7{bottom:976.822650px;}
.y141{bottom:977.011350px;}
.y1f3{bottom:978.020100px;}
.y82{bottom:980.941350px;}
.ye3{bottom:981.571350px;}
.y177{bottom:981.811350px;}
.y1b8{bottom:982.306350px;}
.yc7{bottom:982.386900px;}
.y11b{bottom:989.956500px;}
.y1f2{bottom:991.216350px;}
.y1b7{bottom:995.052600px;}
.y140{bottom:995.206350px;}
.yc6{bottom:998.883900px;}
.y81{bottom:999.031350px;}
.ye2{bottom:999.571350px;}
.y176{bottom:999.811350px;}
.y1f1{bottom:1004.412600px;}
.y1b6{bottom:1007.798850px;}
.y11a{bottom:1010.098500px;}
.y13f{bottom:1013.401350px;}
.yc5{bottom:1015.380900px;}
.y6{bottom:1015.828650px;}
.y80{bottom:1017.121350px;}
.ye1{bottom:1017.571350px;}
.y1f0{bottom:1017.608850px;}
.y1b5{bottom:1020.545100px;}
.y119{bottom:1026.298500px;}
.y1ef{bottom:1030.805100px;}
.yc4{bottom:1031.877900px;}
.y1b4{bottom:1033.291350px;}
.y7f{bottom:1035.211350px;}
.ye0{bottom:1035.571350px;}
.y118{bottom:1042.498500px;}
.y1ee{bottom:1044.001350px;}
.y1b3{bottom:1046.037600px;}
.yc3{bottom:1048.374900px;}
.y13e{bottom:1052.986350px;}
.y175{bottom:1053.091350px;}
.y7e{bottom:1053.301350px;}
.ydf{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y1ed{bottom:1057.197600px;}
.y117{bottom:1058.698500px;}
.y1b2{bottom:1058.783850px;}
.y1ec{bottom:1070.393850px;}
.y174{bottom:1071.091350px;}
.y13d{bottom:1071.181350px;}
.y7d{bottom:1071.391350px;}
.y1b1{bottom:1071.530100px;}
.yde{bottom:1071.571350px;}
.y116{bottom:1074.898500px;}
.yc2{bottom:1080.091500px;}
.y1eb{bottom:1083.590100px;}
.y1b0{bottom:1084.276350px;}
.y173{bottom:1089.091350px;}
.y13c{bottom:1089.376350px;}
.y7c{bottom:1089.481350px;}
.ydd{bottom:1089.569100px;}
.y4{bottom:1093.840650px;}
.y1ea{bottom:1096.786350px;}
.y1af{bottom:1097.022600px;}
.yc1{bottom:1098.091500px;}
.y115{bottom:1099.912350px;}
.y172{bottom:1107.091350px;}
.ydc{bottom:1107.569100px;}
.y7b{bottom:1107.571350px;}
.y1ae{bottom:1109.768850px;}
.y1e9{bottom:1109.982600px;}
.y3{bottom:1140.946200px;}
.y7a{bottom:1140.946350px;}
.h16{height:23.390640px;}
.h17{height:32.895000px;}
.h9{height:34.944000px;}
.h13{height:35.088000px;}
.h3{height:35.280000px;}
.h8{height:36.000000px;}
.h11{height:39.474000px;}
.ha{height:39.690000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.hb{height:44.040000px;}
.h10{height:44.100000px;}
.h14{height:50.459262px;}
.hf{height:55.959840px;}
.hd{height:56.173920px;}
.hc{height:56.198520px;}
.h15{height:56.200920px;}
.h12{height:56.207520px;}
.h6{height:61.687098px;}
.h7{height:61.699098px;}
.h5{height:95.906250px;}
.he{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.250000px;}
.xf{left:78.749850px;}
.x1b{left:84.667500px;}
.x16{left:188.250000px;}
.x4{left:220.379400px;}
.x17{left:225.577500px;}
.x18{left:237.459000px;}
.x19{left:243.582000px;}
.x2{left:269.441700px;}
.x10{left:460.334850px;}
.x11{left:469.331850px;}
.x14{left:473.828400px;}
.x15{left:478.327200px;}
.x1a{left:484.260600px;}
.x12{left:487.331850px;}
.x8{left:537.519900px;}
.xa{left:546.518850px;}
.x9{left:551.023350px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x13{left:723.708900px;}
.x7{left:759.024750px;}
.x1{left:824.963400px;}
.xd{left:853.499955px;}
@media print{
.v7{vertical-align:-19.199467pt;}
.v4{vertical-align:-17.760533pt;}
.v5{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.589333pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.v3{vertical-align:48.000000pt;}
.ls7{letter-spacing:-1.973333pt;}
.ls8{letter-spacing:-1.776000pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.465600pt;}
.ls9{letter-spacing:0.532800pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls6{letter-spacing:1458.429867pt;}
.ws1{word-spacing:-18.186667pt;}
.ws4{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.800000pt;}
.ws6{word-spacing:-11.520000pt;}
.wsc4{word-spacing:-11.120000pt;}
.wsc6{word-spacing:-10.999600pt;}
.ws0{word-spacing:-10.813088pt;}
.ws3{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.240427pt;}
.ws9f{word-spacing:-10.240000pt;}
.ws5{word-spacing:-9.193600pt;}
.ws6e{word-spacing:-8.084267pt;}
.ws6f{word-spacing:-7.779552pt;}
.ws9e{word-spacing:-6.789120pt;}
.wsaf{word-spacing:-4.212800pt;}
.ws84{word-spacing:-3.253333pt;}
.ws4e{word-spacing:-3.147200pt;}
.ws35{word-spacing:-2.986667pt;}
.ws12{word-spacing:-2.932800pt;}
.ws94{word-spacing:-2.666667pt;}
.ws34{word-spacing:-2.560000pt;}
.wsb0{word-spacing:-2.400000pt;}
.wsb2{word-spacing:-2.240533pt;}
.ws43{word-spacing:-2.186667pt;}
.wsae{word-spacing:-2.026133pt;}
.ws36{word-spacing:-1.980160pt;}
.ws52{word-spacing:-1.920000pt;}
.wsbb{word-spacing:-1.866667pt;}
.wsbe{word-spacing:-1.760000pt;}
.ws67{word-spacing:-1.653867pt;}
.ws6b{word-spacing:-1.584000pt;}
.wsa{word-spacing:-1.578667pt;}
.ws65{word-spacing:-1.493333pt;}
.ws6c{word-spacing:-1.392480pt;}
.wsaa{word-spacing:-1.386667pt;}
.wsa4{word-spacing:-1.066667pt;}
.ws64{word-spacing:-1.013333pt;}
.ws8e{word-spacing:-0.747200pt;}
.wsbc{word-spacing:-0.532800pt;}
.ws9c{word-spacing:-0.528000pt;}
.ws61{word-spacing:-0.426667pt;}
.ws8d{word-spacing:-0.373333pt;}
.ws5f{word-spacing:-0.266667pt;}
.wsb5{word-spacing:-0.213333pt;}
.wsc5{word-spacing:-0.200000pt;}
.ws83{word-spacing:-0.160533pt;}
.ws7d{word-spacing:-0.106667pt;}
.ws9d{word-spacing:-0.096000pt;}
.ws81{word-spacing:-0.053867pt;}
.ws8{word-spacing:0.000000pt;}
.ws40{word-spacing:0.213333pt;}
.ws76{word-spacing:0.320000pt;}
.ws3a{word-spacing:0.353246pt;}
.ws50{word-spacing:0.426667pt;}
.wsa7{word-spacing:0.480000pt;}
.ws39{word-spacing:0.532800pt;}
.ws3f{word-spacing:0.639467pt;}
.ws92{word-spacing:0.693333pt;}
.wsc{word-spacing:0.720000pt;}
.ws2e{word-spacing:0.768480pt;}
.ws3b{word-spacing:0.800000pt;}
.ws29{word-spacing:0.816000pt;}
.ws5d{word-spacing:0.960533pt;}
.ws44{word-spacing:1.013333pt;}
.ws1a{word-spacing:1.131520pt;}
.wsba{word-spacing:1.173333pt;}
.ws38{word-spacing:1.226133pt;}
.ws3c{word-spacing:1.280000pt;}
.ws24{word-spacing:1.547200pt;}
.ws9{word-spacing:1.578667pt;}
.ws18{word-spacing:1.600000pt;}
.ws4d{word-spacing:1.653867pt;}
.ws19{word-spacing:1.706667pt;}
.wsa9{word-spacing:1.760000pt;}
.ws69{word-spacing:1.776000pt;}
.ws48{word-spacing:1.944446pt;}
.ws68{word-spacing:1.973333pt;}
.ws82{word-spacing:2.347200pt;}
.wsbd{word-spacing:2.400000pt;}
.ws28{word-spacing:2.543520pt;}
.ws11{word-spacing:2.560000pt;}
.ws32{word-spacing:2.616994pt;}
.ws6a{word-spacing:2.639520pt;}
.wsb1{word-spacing:2.666667pt;}
.ws10{word-spacing:2.719467pt;}
.ws2b{word-spacing:2.736480pt;}
.ws57{word-spacing:2.826133pt;}
.ws37{word-spacing:2.880000pt;}
.ws47{word-spacing:2.932800pt;}
.ws4f{word-spacing:2.986667pt;}
.wsa2{word-spacing:3.360000pt;}
.ws58{word-spacing:3.519467pt;}
.wsb4{word-spacing:3.573333pt;}
.ws2d{word-spacing:3.696000pt;}
.ws33{word-spacing:3.947200pt;}
.ws93{word-spacing:4.000000pt;}
.ws62{word-spacing:4.106667pt;}
.wsa5{word-spacing:4.212800pt;}
.ws15{word-spacing:4.319467pt;}
.wsb9{word-spacing:4.373333pt;}
.ws96{word-spacing:4.640533pt;}
.ws66{word-spacing:4.800000pt;}
.ws1e{word-spacing:4.853333pt;}
.ws63{word-spacing:5.119467pt;}
.ws5a{word-spacing:5.173333pt;}
.ws23{word-spacing:5.232926pt;}
.ws5c{word-spacing:5.280000pt;}
.ws86{word-spacing:5.440533pt;}
.wsad{word-spacing:5.493333pt;}
.wsa6{word-spacing:5.600000pt;}
.wsac{word-spacing:5.653333pt;}
.ws51{word-spacing:5.866667pt;}
.ws70{word-spacing:5.919467pt;}
.ws71{word-spacing:6.080000pt;}
.ws41{word-spacing:6.186667pt;}
.ws88{word-spacing:6.240000pt;}
.ws60{word-spacing:6.346667pt;}
.ws16{word-spacing:6.400000pt;}
.wsa0{word-spacing:6.560000pt;}
.ws27{word-spacing:6.612800pt;}
.wsb7{word-spacing:7.146667pt;}
.ws56{word-spacing:7.253333pt;}
.ws25{word-spacing:7.360000pt;}
.ws59{word-spacing:7.413867pt;}
.ws30{word-spacing:7.440000pt;}
.ws5b{word-spacing:7.520533pt;}
.ws95{word-spacing:7.573333pt;}
.ws98{word-spacing:7.680000pt;}
.ws22{word-spacing:7.892800pt;}
.ws75{word-spacing:7.999467pt;}
.ws3e{word-spacing:8.106133pt;}
.ws5e{word-spacing:8.320533pt;}
.ws42{word-spacing:8.373333pt;}
.ws9a{word-spacing:8.586667pt;}
.ws2a{word-spacing:8.832480pt;}
.ws2f{word-spacing:8.880000pt;}
.ws89{word-spacing:9.120533pt;}
.ws8c{word-spacing:9.333333pt;}
.ws21{word-spacing:9.386133pt;}
.ws79{word-spacing:9.492800pt;}
.ws8a{word-spacing:9.546667pt;}
.wsb3{word-spacing:9.599467pt;}
.wsd{word-spacing:9.653333pt;}
.ws85{word-spacing:10.133333pt;}
.ws6d{word-spacing:10.176480pt;}
.wsb6{word-spacing:10.240000pt;}
.wsab{word-spacing:10.292800pt;}
.ws46{word-spacing:10.453333pt;}
.ws26{word-spacing:10.507200pt;}
.ws87{word-spacing:10.720000pt;}
.ws77{word-spacing:10.933333pt;}
.ws7b{word-spacing:10.986133pt;}
.wsc3{word-spacing:11.240400pt;}
.ws7f{word-spacing:11.307200pt;}
.ws1c{word-spacing:11.360000pt;}
.ws91{word-spacing:11.520000pt;}
.ws80{word-spacing:11.626667pt;}
.ws7e{word-spacing:11.733333pt;}
.ws1b{word-spacing:11.786133pt;}
.wsf{word-spacing:11.893867pt;}
.ws2c{word-spacing:11.904000pt;}
.wsa1{word-spacing:12.053333pt;}
.ws7c{word-spacing:12.213333pt;}
.ws8f{word-spacing:12.266667pt;}
.ws4b{word-spacing:12.269920pt;}
.ws49{word-spacing:12.479467pt;}
.ws31{word-spacing:12.853333pt;}
.ws54{word-spacing:13.013333pt;}
.ws53{word-spacing:13.120000pt;}
.ws72{word-spacing:13.333333pt;}
.ws55{word-spacing:13.440000pt;}
.wsc2{word-spacing:13.546667pt;}
.wsa8{word-spacing:13.653333pt;}
.wsbf{word-spacing:13.706667pt;}
.wsc1{word-spacing:14.080533pt;}
.wse{word-spacing:14.133333pt;}
.ws74{word-spacing:14.240000pt;}
.ws78{word-spacing:14.400000pt;}
.ws97{word-spacing:14.613333pt;}
.ws3d{word-spacing:14.826667pt;}
.ws4a{word-spacing:15.040000pt;}
.ws8b{word-spacing:15.093333pt;}
.wsa3{word-spacing:15.306667pt;}
.wsb8{word-spacing:15.573867pt;}
.ws7a{word-spacing:16.106667pt;}
.wsc0{word-spacing:16.693333pt;}
.ws4c{word-spacing:18.506667pt;}
.ws73{word-spacing:19.093333pt;}
.ws1f{word-spacing:19.786667pt;}
.ws45{word-spacing:20.373333pt;}
.ws17{word-spacing:20.426667pt;}
.ws90{word-spacing:22.506667pt;}
.ws14{word-spacing:23.466667pt;}
.ws13{word-spacing:26.560000pt;}
.ws99{word-spacing:27.413867pt;}
.ws1d{word-spacing:29.492800pt;}
.ws9b{word-spacing:30.826667pt;}
.ws20{word-spacing:40.853867pt;}
._d{margin-left:-2595.981120pt;}
._c{margin-left:-1827.406560pt;}
._1e{margin-left:-54.101333pt;}
._a{margin-left:-52.480000pt;}
._5{margin-left:-42.640000pt;}
._15{margin-left:-19.466667pt;}
._14{margin-left:-18.238400pt;}
._f{margin-left:-15.520000pt;}
._23{margin-left:-11.240400pt;}
._6{margin-left:-10.240000pt;}
._20{margin-left:-8.208000pt;}
._1c{margin-left:-6.698667pt;}
._0{margin-left:-5.504000pt;}
._9{margin-left:-4.480000pt;}
._3{margin-left:-3.157333pt;}
._1{margin-left:-1.582933pt;}
._4{width:1.194667pt;}
._16{width:2.106667pt;}
._22{width:6.999200pt;}
._e{width:8.533333pt;}
._7{width:10.235733pt;}
._21{width:11.520000pt;}
._8{width:12.480000pt;}
._11{width:15.552000pt;}
._24{width:18.320000pt;}
._12{width:20.261333pt;}
._18{width:21.360000pt;}
._2{width:29.980267pt;}
._13{width:33.792000pt;}
._17{width:34.832000pt;}
._10{width:40.533333pt;}
._19{width:81.744000pt;}
._1a{width:102.144000pt;}
._b{width:172.198080pt;}
._1b{width:260.400000pt;}
._1d{width:295.584000pt;}
._1f{width:329.136000pt;}
.fs9{font-size:27.984000pt;}
.fsb{font-size:28.288000pt;}
.fs8{font-size:31.093333pt;}
.fsa{font-size:31.824000pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.ycc{bottom:72.521067pt;}
.y114{bottom:72.521200pt;}
.y6a{bottom:72.537467pt;}
.y51{bottom:72.542933pt;}
.y20{bottom:72.566933pt;}
.y1ad{bottom:72.597867pt;}
.yb1{bottom:73.081200pt;}
.y171{bottom:73.121200pt;}
.y13b{bottom:80.521067pt;}
.y1ac{bottom:83.927867pt;}
.y1f{bottom:85.900267pt;}
.ycb{bottom:86.921067pt;}
.y113{bottom:88.521200pt;}
.y69{bottom:88.537467pt;}
.y50{bottom:88.542933pt;}
.yb0{bottom:89.161200pt;}
.y170{bottom:89.294533pt;}
.y13a{bottom:93.854400pt;}
.y1ab{bottom:95.257867pt;}
.y112{bottom:104.521200pt;}
.y68{bottom:104.537467pt;}
.y4f{bottom:104.542933pt;}
.yaf{bottom:105.241200pt;}
.y16f{bottom:105.467867pt;}
.y1aa{bottom:106.587867pt;}
.y1e{bottom:111.233600pt;}
.y139{bottom:117.467333pt;}
.y1a9{bottom:117.917867pt;}
.y111{bottom:120.521200pt;}
.y67{bottom:120.537467pt;}
.y4e{bottom:120.542933pt;}
.yae{bottom:121.321200pt;}
.y16e{bottom:121.641200pt;}
.y1d{bottom:124.566933pt;}
.y1a8{bottom:129.247867pt;}
.y138{bottom:131.867333pt;}
.y110{bottom:136.521200pt;}
.y66{bottom:136.537467pt;}
.y16d{bottom:137.814533pt;}
.y1a7{bottom:140.577867pt;}
.y26{bottom:141.516133pt;}
.y137{bottom:146.267333pt;}
.y1a6{bottom:151.907867pt;}
.y10f{bottom:152.521200pt;}
.y65{bottom:152.537467pt;}
.y16c{bottom:153.987867pt;}
.y25{bottom:154.316133pt;}
.yad{bottom:161.401200pt;}
.y4d{bottom:163.068267pt;}
.y1a5{bottom:163.237867pt;}
.y136{bottom:164.171333pt;}
.y24{bottom:167.116133pt;}
.y10e{bottom:168.521200pt;}
.y64{bottom:168.537467pt;}
.y16b{bottom:170.161200pt;}
.y1a4{bottom:174.567867pt;}
.yac{bottom:177.481200pt;}
.y4c{bottom:177.732267pt;}
.y135{bottom:178.571333pt;}
.y23{bottom:179.916133pt;}
.y10d{bottom:184.521200pt;}
.y63{bottom:184.537467pt;}
.y1a3{bottom:185.897867pt;}
.y16a{bottom:186.334533pt;}
.y4b{bottom:192.396267pt;}
.y22{bottom:192.716133pt;}
.y134{bottom:192.971333pt;}
.yab{bottom:193.561200pt;}
.y1a2{bottom:197.227867pt;}
.y10c{bottom:200.521200pt;}
.y62{bottom:200.537467pt;}
.y169{bottom:202.507867pt;}
.y21{bottom:205.516133pt;}
.y4a{bottom:207.060267pt;}
.y1a1{bottom:208.557867pt;}
.yaa{bottom:209.641200pt;}
.y133{bottom:210.875333pt;}
.y10b{bottom:216.521200pt;}
.y61{bottom:216.537467pt;}
.y168{bottom:218.681200pt;}
.y1a0{bottom:219.887867pt;}
.y49{bottom:221.724267pt;}
.y132{bottom:225.539333pt;}
.ya9{bottom:225.721200pt;}
.y19f{bottom:231.217867pt;}
.y10a{bottom:232.521200pt;}
.y60{bottom:232.537467pt;}
.y167{bottom:234.854533pt;}
.y48{bottom:236.388267pt;}
.y131{bottom:240.211333pt;}
.ya8{bottom:241.801200pt;}
.y19e{bottom:242.547867pt;}
.y109{bottom:248.521200pt;}
.y5f{bottom:248.537467pt;}
.y166{bottom:251.027867pt;}
.y47{bottom:251.052267pt;}
.y19d{bottom:253.881200pt;}
.y130{bottom:254.875333pt;}
.ya7{bottom:257.881200pt;}
.y108{bottom:264.521200pt;}
.y5e{bottom:264.537467pt;}
.y46{bottom:265.716267pt;}
.y165{bottom:267.201200pt;}
.y12f{bottom:269.539333pt;}
.y12e{bottom:269.807200pt;}
.ya6{bottom:273.961200pt;}
.y45{bottom:280.380267pt;}
.y107{bottom:280.521200pt;}
.y5d{bottom:280.537467pt;}
.y164{bottom:283.374533pt;}
.y12d{bottom:284.207200pt;}
.ya5{bottom:290.041200pt;}
.y44{bottom:295.044267pt;}
.y106{bottom:296.521200pt;}
.y5c{bottom:296.537467pt;}
.y163{bottom:299.547867pt;}
.y12c{bottom:306.107200pt;}
.ya4{bottom:306.121200pt;}
.y19c{bottom:307.388400pt;}
.y43{bottom:309.708267pt;}
.y105{bottom:312.521200pt;}
.y5b{bottom:312.537467pt;}
.y162{bottom:315.721200pt;}
.y19b{bottom:320.188400pt;}
.ya3{bottom:322.201200pt;}
.y42{bottom:324.372267pt;}
.y12b{bottom:325.677733pt;}
.y104{bottom:328.521200pt;}
.y5a{bottom:328.537467pt;}
.y1e8{bottom:329.321200pt;}
.y221{bottom:329.771200pt;}
.y161{bottom:331.894533pt;}
.y19a{bottom:332.988400pt;}
.ya2{bottom:338.281200pt;}
.y41{bottom:339.036267pt;}
.y12a{bottom:340.341733pt;}
.y1e7{bottom:340.651200pt;}
.y220{bottom:341.501200pt;}
.y103{bottom:344.521200pt;}
.y59{bottom:344.537467pt;}
.y199{bottom:345.788400pt;}
.y160{bottom:348.067867pt;}
.y1e6{bottom:351.981200pt;}
.y21f{bottom:353.231200pt;}
.y40{bottom:353.700267pt;}
.ya1{bottom:354.361200pt;}
.y198{bottom:358.588400pt;}
.y102{bottom:360.521200pt;}
.y58{bottom:360.537467pt;}
.y1e5{bottom:363.311200pt;}
.y15f{bottom:364.241200pt;}
.y21e{bottom:364.961200pt;}
.y3f{bottom:368.364267pt;}
.ya0{bottom:370.441200pt;}
.y197{bottom:371.388400pt;}
.y1e4{bottom:374.641200pt;}
.y101{bottom:376.521200pt;}
.y57{bottom:376.537467pt;}
.y21d{bottom:376.691200pt;}
.y15e{bottom:380.414533pt;}
.y3e{bottom:383.028267pt;}
.y1e3{bottom:385.971200pt;}
.y9f{bottom:386.521200pt;}
.ydb{bottom:387.999200pt;}
.y21c{bottom:388.421200pt;}
.y196{bottom:389.521733pt;}
.y100{bottom:392.521200pt;}
.y56{bottom:392.537467pt;}
.y15d{bottom:396.587867pt;}
.y1e2{bottom:397.301200pt;}
.y3d{bottom:397.692267pt;}
.y21b{bottom:400.151200pt;}
.y9e{bottom:402.601200pt;}
.yda{bottom:403.999200pt;}
.y195{bottom:407.655067pt;}
.y55{bottom:408.537467pt;}
.y1e1{bottom:408.631200pt;}
.y21a{bottom:411.881200pt;}
.y3c{bottom:412.356267pt;}
.y15c{bottom:412.761200pt;}
.y1e0{bottom:419.961200pt;}
.yd9{bottom:419.999200pt;}
.y194{bottom:420.455067pt;}
.y219{bottom:423.611200pt;}
.yff{bottom:424.507867pt;}
.y54{bottom:424.537467pt;}
.y3b{bottom:427.020267pt;}
.y15b{bottom:428.934533pt;}
.y1df{bottom:431.291200pt;}
.y218{bottom:435.341200pt;}
.yd8{bottom:435.999200pt;}
.y9d{bottom:437.787867pt;}
.y193{bottom:438.588400pt;}
.yfe{bottom:440.507867pt;}
.y53{bottom:440.542933pt;}
.y3a{bottom:441.684267pt;}
.y1de{bottom:442.621200pt;}
.y15a{bottom:445.107867pt;}
.y217{bottom:447.071200pt;}
.yd7{bottom:451.999200pt;}
.y9c{bottom:453.867867pt;}
.y1dd{bottom:453.951200pt;}
.y39{bottom:456.348267pt;}
.yfd{bottom:456.507867pt;}
.y52{bottom:456.542933pt;}
.y192{bottom:457.255067pt;}
.y216{bottom:458.801200pt;}
.y159{bottom:461.281200pt;}
.y1dc{bottom:465.281200pt;}
.yd6{bottom:467.999200pt;}
.y9b{bottom:469.947867pt;}
.y191{bottom:470.055067pt;}
.y215{bottom:470.531200pt;}
.y38{bottom:471.012267pt;}
.yfc{bottom:472.507867pt;}
.y1c{bottom:475.497467pt;}
.y1db{bottom:476.611200pt;}
.y158{bottom:477.454533pt;}
.y214{bottom:482.261200pt;}
.y190{bottom:482.855067pt;}
.yd5{bottom:483.999200pt;}
.y37{bottom:485.676267pt;}
.y9a{bottom:486.027867pt;}
.y1da{bottom:487.941200pt;}
.yfb{bottom:488.507867pt;}
.y1b{bottom:488.830800pt;}
.y157{bottom:493.627867pt;}
.y213{bottom:493.991200pt;}
.y1d9{bottom:499.271200pt;}
.yd4{bottom:499.999200pt;}
.y36{bottom:500.340267pt;}
.y18f{bottom:500.988400pt;}
.y99{bottom:502.107867pt;}
.y1a{bottom:502.164133pt;}
.yfa{bottom:504.507867pt;}
.y212{bottom:505.721200pt;}
.y78{bottom:508.105333pt;}
.y156{bottom:509.801200pt;}
.y1d8{bottom:510.601200pt;}
.y18e{bottom:513.788400pt;}
.y35{bottom:515.004267pt;}
.yd3{bottom:515.999200pt;}
.y211{bottom:517.451200pt;}
.y98{bottom:518.187867pt;}
.yf9{bottom:520.507867pt;}
.y1d7{bottom:521.931200pt;}
.y77{bottom:522.769333pt;}
.y155{bottom:525.974533pt;}
.y18d{bottom:526.588400pt;}
.y19{bottom:527.497467pt;}
.y210{bottom:529.181200pt;}
.y34{bottom:529.668267pt;}
.yd2{bottom:531.999200pt;}
.y1d6{bottom:533.261200pt;}
.y97{bottom:534.267867pt;}
.yf8{bottom:536.507867pt;}
.y76{bottom:537.433333pt;}
.y18{bottom:540.830800pt;}
.y20f{bottom:540.911200pt;}
.y154{bottom:542.147867pt;}
.y33{bottom:544.332267pt;}
.y1d5{bottom:544.591200pt;}
.y18c{bottom:544.721733pt;}
.yd1{bottom:547.999200pt;}
.yc0{bottom:549.801200pt;}
.y96{bottom:550.347867pt;}
.y75{bottom:552.097333pt;}
.yf7{bottom:552.507867pt;}
.y20e{bottom:552.641200pt;}
.y17{bottom:554.164133pt;}
.y1d4{bottom:555.921200pt;}
.y18b{bottom:557.521733pt;}
.y32{bottom:558.996267pt;}
.yd0{bottom:563.999200pt;}
.y20d{bottom:564.371200pt;}
.ybf{bottom:565.801200pt;}
.y95{bottom:566.427867pt;}
.y74{bottom:566.766667pt;}
.y1d3{bottom:567.251200pt;}
.y16{bottom:567.497467pt;}
.yf6{bottom:568.507867pt;}
.y18a{bottom:570.321733pt;}
.y31{bottom:573.660267pt;}
.y20c{bottom:576.101200pt;}
.y153{bottom:577.334533pt;}
.y1d2{bottom:578.581200pt;}
.ycf{bottom:579.999200pt;}
.y15{bottom:580.830800pt;}
.y73{bottom:581.430667pt;}
.ybe{bottom:581.801200pt;}
.y94{bottom:582.507867pt;}
.y189{bottom:583.121733pt;}
.yf5{bottom:584.507867pt;}
.y20b{bottom:587.831200pt;}
.y30{bottom:588.324267pt;}
.y1d1{bottom:589.911200pt;}
.y152{bottom:593.507867pt;}
.y14{bottom:594.164133pt;}
.y188{bottom:595.921733pt;}
.yce{bottom:595.999200pt;}
.y72{bottom:596.105333pt;}
.ybd{bottom:597.801200pt;}
.y93{bottom:598.587867pt;}
.y20a{bottom:599.561200pt;}
.yf4{bottom:600.507867pt;}
.y1d0{bottom:601.241200pt;}
.y2f{bottom:602.988267pt;}
.y151{bottom:609.681200pt;}
.y71{bottom:610.769333pt;}
.y209{bottom:611.291200pt;}
.ycd{bottom:611.999200pt;}
.y1cf{bottom:612.571200pt;}
.ybc{bottom:613.801200pt;}
.y92{bottom:614.667867pt;}
.y13{bottom:615.497467pt;}
.yf3{bottom:616.507867pt;}
.y2e{bottom:617.652267pt;}
.y208{bottom:623.021200pt;}
.y1ce{bottom:623.901200pt;}
.y70{bottom:625.433333pt;}
.y150{bottom:625.854533pt;}
.y12{bottom:628.830800pt;}
.y187{bottom:629.521733pt;}
.ybb{bottom:629.801200pt;}
.y91{bottom:630.747867pt;}
.y2d{bottom:632.316267pt;}
.yf2{bottom:632.507867pt;}
.y207{bottom:634.751200pt;}
.y1cd{bottom:635.231200pt;}
.y6f{bottom:640.097333pt;}
.y14f{bottom:642.027867pt;}
.y11{bottom:642.164133pt;}
.y186{bottom:642.855067pt;}
.yba{bottom:645.801200pt;}
.y206{bottom:646.481200pt;}
.y1cc{bottom:646.561200pt;}
.y90{bottom:646.827867pt;}
.y2c{bottom:646.980267pt;}
.yf1{bottom:648.507867pt;}
.y79{bottom:649.050440pt;}
.y6e{bottom:654.769333pt;}
.y10{bottom:655.497467pt;}
.y185{bottom:656.188400pt;}
.y1cb{bottom:657.891200pt;}
.y14e{bottom:658.201200pt;}
.y205{bottom:658.211200pt;}
.y129{bottom:660.812533pt;}
.y2b{bottom:661.644267pt;}
.yb9{bottom:661.801200pt;}
.y8f{bottom:662.907867pt;}
.yf0{bottom:664.507867pt;}
.yf{bottom:668.830800pt;}
.y1ca{bottom:669.221200pt;}
.y6d{bottom:669.433333pt;}
.y184{bottom:669.521733pt;}
.y204{bottom:669.941200pt;}
.y14d{bottom:674.374533pt;}
.y2a{bottom:676.308267pt;}
.yb8{bottom:677.801200pt;}
.y183{bottom:678.055067pt;}
.y8e{bottom:678.987867pt;}
.yef{bottom:680.507867pt;}
.y1c9{bottom:680.551200pt;}
.y203{bottom:681.671200pt;}
.ye{bottom:682.164133pt;}
.y6c{bottom:684.097333pt;}
.y128{bottom:684.421333pt;}
.y14c{bottom:690.547867pt;}
.y29{bottom:690.972267pt;}
.y1c8{bottom:691.881200pt;}
.y202{bottom:693.401200pt;}
.yb7{bottom:693.801200pt;}
.y8d{bottom:695.067867pt;}
.yd{bottom:695.497467pt;}
.y182{bottom:696.188267pt;}
.yee{bottom:696.507867pt;}
.y127{bottom:698.821333pt;}
.y1c7{bottom:703.211200pt;}
.y181{bottom:704.721733pt;}
.y201{bottom:705.131200pt;}
.y28{bottom:705.636267pt;}
.y14b{bottom:706.721200pt;}
.yc{bottom:708.830800pt;}
.yb6{bottom:709.801200pt;}
.y8c{bottom:711.147867pt;}
.y6b{bottom:712.302933pt;}
.yed{bottom:712.507867pt;}
.y1c6{bottom:714.541200pt;}
.y126{bottom:716.725333pt;}
.y200{bottom:716.861200pt;}
.y27{bottom:720.302933pt;}
.yb{bottom:722.164133pt;}
.y180{bottom:722.854933pt;}
.y14a{bottom:722.894533pt;}
.yb5{bottom:725.801200pt;}
.y1c5{bottom:725.871200pt;}
.y8b{bottom:727.227867pt;}
.yec{bottom:728.507867pt;}
.y1ff{bottom:728.591200pt;}
.y125{bottom:731.125333pt;}
.y17f{bottom:731.388400pt;}
.y1c4{bottom:737.201200pt;}
.y149{bottom:739.067867pt;}
.y1fe{bottom:740.321200pt;}
.yb4{bottom:741.801200pt;}
.y8a{bottom:743.307867pt;}
.yeb{bottom:744.507867pt;}
.y124{bottom:745.525333pt;}
.y1c3{bottom:748.531200pt;}
.y1fd{bottom:752.051200pt;}
.y148{bottom:755.241200pt;}
.yb3{bottom:757.801200pt;}
.y89{bottom:759.387867pt;}
.y1c2{bottom:759.861200pt;}
.y123{bottom:759.925333pt;}
.yea{bottom:760.507867pt;}
.y17e{bottom:760.721733pt;}
.y1fc{bottom:763.781200pt;}
.y1c1{bottom:771.191200pt;}
.y147{bottom:771.414533pt;}
.yb2{bottom:773.801200pt;}
.y122{bottom:774.325333pt;}
.y88{bottom:775.467867pt;}
.y1fb{bottom:775.511200pt;}
.ye9{bottom:776.507867pt;}
.y17d{bottom:776.721733pt;}
.ya{bottom:781.633467pt;}
.y1c0{bottom:782.521200pt;}
.y1fa{bottom:787.241200pt;}
.y146{bottom:787.587867pt;}
.y121{bottom:788.725333pt;}
.y87{bottom:791.547867pt;}
.ye8{bottom:792.507867pt;}
.y17c{bottom:792.721200pt;}
.y1bf{bottom:793.851200pt;}
.y9{bottom:798.966800pt;}
.y1f9{bottom:798.971200pt;}
.y145{bottom:803.761200pt;}
.y1be{bottom:805.181200pt;}
.y86{bottom:807.627867pt;}
.y120{bottom:807.961333pt;}
.ye7{bottom:808.507867pt;}
.y17b{bottom:808.721200pt;}
.y1f8{bottom:810.701200pt;}
.y8{bottom:816.302800pt;}
.y1bd{bottom:816.511200pt;}
.y144{bottom:819.934533pt;}
.y11f{bottom:822.361333pt;}
.y1f7{bottom:822.431200pt;}
.y85{bottom:823.707867pt;}
.ye6{bottom:824.507867pt;}
.y17a{bottom:824.721200pt;}
.y1bc{bottom:827.841200pt;}
.yca{bottom:829.240800pt;}
.y1f6{bottom:834.161200pt;}
.y143{bottom:836.107867pt;}
.y11e{bottom:836.761333pt;}
.y1bb{bottom:839.171200pt;}
.y84{bottom:839.787867pt;}
.ye5{bottom:840.507867pt;}
.y179{bottom:840.721200pt;}
.yc9{bottom:843.904800pt;}
.y1f5{bottom:845.891200pt;}
.y1ba{bottom:850.501200pt;}
.y11d{bottom:851.161333pt;}
.y142{bottom:852.281200pt;}
.y83{bottom:855.867867pt;}
.ye4{bottom:856.507867pt;}
.y178{bottom:856.721200pt;}
.y1f4{bottom:857.621200pt;}
.yc8{bottom:858.568800pt;}
.y1b9{bottom:861.831200pt;}
.y11c{bottom:865.561333pt;}
.y7{bottom:868.286800pt;}
.y141{bottom:868.454533pt;}
.y1f3{bottom:869.351200pt;}
.y82{bottom:871.947867pt;}
.ye3{bottom:872.507867pt;}
.y177{bottom:872.721200pt;}
.y1b8{bottom:873.161200pt;}
.yc7{bottom:873.232800pt;}
.y11b{bottom:879.961333pt;}
.y1f2{bottom:881.081200pt;}
.y1b7{bottom:884.491200pt;}
.y140{bottom:884.627867pt;}
.yc6{bottom:887.896800pt;}
.y81{bottom:888.027867pt;}
.ye2{bottom:888.507867pt;}
.y176{bottom:888.721200pt;}
.y1f1{bottom:892.811200pt;}
.y1b6{bottom:895.821200pt;}
.y11a{bottom:897.865333pt;}
.y13f{bottom:900.801200pt;}
.yc5{bottom:902.560800pt;}
.y6{bottom:902.958800pt;}
.y80{bottom:904.107867pt;}
.ye1{bottom:904.507867pt;}
.y1f0{bottom:904.541200pt;}
.y1b5{bottom:907.151200pt;}
.y119{bottom:912.265333pt;}
.y1ef{bottom:916.271200pt;}
.yc4{bottom:917.224800pt;}
.y1b4{bottom:918.481200pt;}
.y7f{bottom:920.187867pt;}
.ye0{bottom:920.507867pt;}
.y118{bottom:926.665333pt;}
.y1ee{bottom:928.001200pt;}
.y1b3{bottom:929.811200pt;}
.yc3{bottom:931.888800pt;}
.y13e{bottom:935.987867pt;}
.y175{bottom:936.081200pt;}
.y7e{bottom:936.267867pt;}
.ydf{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y1ed{bottom:939.731200pt;}
.y117{bottom:941.065333pt;}
.y1b2{bottom:941.141200pt;}
.y1ec{bottom:951.461200pt;}
.y174{bottom:952.081200pt;}
.y13d{bottom:952.161200pt;}
.y7d{bottom:952.347867pt;}
.y1b1{bottom:952.471200pt;}
.yde{bottom:952.507867pt;}
.y116{bottom:955.465333pt;}
.yc2{bottom:960.081333pt;}
.y1eb{bottom:963.191200pt;}
.y1b0{bottom:963.801200pt;}
.y173{bottom:968.081200pt;}
.y13c{bottom:968.334533pt;}
.y7c{bottom:968.427867pt;}
.ydd{bottom:968.505867pt;}
.y4{bottom:972.302800pt;}
.y1ea{bottom:974.921200pt;}
.y1af{bottom:975.131200pt;}
.yc1{bottom:976.081333pt;}
.y115{bottom:977.699867pt;}
.y172{bottom:984.081200pt;}
.ydc{bottom:984.505867pt;}
.y7b{bottom:984.507867pt;}
.y1ae{bottom:986.461200pt;}
.y1e9{bottom:986.651200pt;}
.y3{bottom:1014.174400pt;}
.y7a{bottom:1014.174533pt;}
.h16{height:20.791680pt;}
.h17{height:29.240000pt;}
.h9{height:31.061333pt;}
.h13{height:31.189333pt;}
.h3{height:31.360000pt;}
.h8{height:32.000000pt;}
.h11{height:35.088000pt;}
.ha{height:35.280000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.hb{height:39.146667pt;}
.h10{height:39.200000pt;}
.h14{height:44.852677pt;}
.hf{height:49.742080pt;}
.hd{height:49.932373pt;}
.hc{height:49.954240pt;}
.h15{height:49.956373pt;}
.h12{height:49.962240pt;}
.h6{height:54.832976pt;}
.h7{height:54.843643pt;}
.h5{height:85.250000pt;}
.he{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:66.000000pt;}
.xf{left:69.999867pt;}
.x1b{left:75.260000pt;}
.x16{left:167.333333pt;}
.x4{left:195.892800pt;}
.x17{left:200.513333pt;}
.x18{left:211.074667pt;}
.x19{left:216.517333pt;}
.x2{left:239.503733pt;}
.x10{left:409.186533pt;}
.x11{left:417.183867pt;}
.x14{left:421.180800pt;}
.x15{left:425.179733pt;}
.x1a{left:430.453867pt;}
.x12{left:433.183867pt;}
.x8{left:477.795467pt;}
.xa{left:485.794533pt;}
.x9{left:489.798533pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x13{left:643.296800pt;}
.x7{left:674.688667pt;}
.x1{left:733.300800pt;}
.xd{left:758.666627pt;}
}




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