
    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_b936064527f026470e534f08.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011230;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_c07c71dc4d10e57c0ac024dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_5259c6ce4518fc2687e0af0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_193b08df8801b551ef9a3b4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;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_2fdb5c401024306188fdff88.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_296a5e2238b036e9039ea321.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_a878791a2208d915a0027bca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979004;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_8fc432301a877b95f1a8f7a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_08fe21f1eca0c4d692114840.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_dbe4342051dc5ff97c329ff8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_1921fdb2885705ce613a8d8b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_8fc432301a877b95f1a8f7a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_bcfe30d890e76da7df918132.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_f0d4150d6b21a9c526d663b7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-30.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.050000px;}
.v1{vertical-align:8.659800px;}
.v2{vertical-align:27.600000px;}
.v3{vertical-align:31.050000px;}
.ls14{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-1.140000px;}
.ls9{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.300000px;}
.ls2{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.780000px;}
.ls1a{letter-spacing:1.380000px;}
.ls19{letter-spacing:1.860000px;}
.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:-23.352000px;}
.ws16{word-spacing:-16.680000px;}
.wsb6{word-spacing:-15.600000px;}
.wsc4{word-spacing:-15.360000px;}
.wsa1{word-spacing:-13.500000px;}
.ws5d{word-spacing:-1.998000px;}
.ws7{word-spacing:-1.500000px;}
.ws9{word-spacing:-1.440000px;}
.ws39{word-spacing:-1.380000px;}
.ws65{word-spacing:-1.320000px;}
.ws96{word-spacing:-1.200000px;}
.wsa3{word-spacing:-1.020000px;}
.ws46{word-spacing:-0.900000px;}
.ws18{word-spacing:-0.840000px;}
.wsf{word-spacing:-0.780000px;}
.ws81{word-spacing:-0.720000px;}
.wsc9{word-spacing:-0.660000px;}
.wsb2{word-spacing:-0.600000px;}
.wsb4{word-spacing:-0.540000px;}
.ws5{word-spacing:-0.480000px;}
.wsa4{word-spacing:-0.420000px;}
.ws44{word-spacing:-0.360000px;}
.ws48{word-spacing:-0.300000px;}
.ws24{word-spacing:-0.240000px;}
.ws77{word-spacing:-0.180000px;}
.ws66{word-spacing:-0.120000px;}
.wsa9{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws3c{word-spacing:0.060000px;}
.ws27{word-spacing:0.120000px;}
.ws10{word-spacing:0.180000px;}
.ws73{word-spacing:0.240000px;}
.ws4{word-spacing:0.270000px;}
.ws9d{word-spacing:0.300000px;}
.wsc1{word-spacing:0.360000px;}
.ws2d{word-spacing:0.420000px;}
.ws4b{word-spacing:0.480000px;}
.ws2e{word-spacing:0.540000px;}
.ws36{word-spacing:0.600000px;}
.ws33{word-spacing:0.660000px;}
.ws9b{word-spacing:0.720000px;}
.ws8a{word-spacing:0.780000px;}
.ws6c{word-spacing:0.840000px;}
.wse{word-spacing:0.900000px;}
.ws68{word-spacing:0.960000px;}
.ws1f{word-spacing:1.020000px;}
.ws32{word-spacing:1.080000px;}
.wsc2{word-spacing:1.200000px;}
.wsd{word-spacing:1.260000px;}
.ws8{word-spacing:1.380000px;}
.ws35{word-spacing:1.440000px;}
.ws12{word-spacing:1.500000px;}
.ws71{word-spacing:1.560000px;}
.ws7e{word-spacing:1.620000px;}
.wsa7{word-spacing:1.680000px;}
.wsa0{word-spacing:1.740000px;}
.ws2b{word-spacing:1.800000px;}
.ws4f{word-spacing:1.860000px;}
.ws3d{word-spacing:1.920000px;}
.ws6a{word-spacing:1.980000px;}
.wsb9{word-spacing:2.040000px;}
.ws26{word-spacing:2.100000px;}
.ws40{word-spacing:2.160000px;}
.ws7a{word-spacing:2.220000px;}
.ws9c{word-spacing:2.280000px;}
.ws63{word-spacing:2.340000px;}
.ws2{word-spacing:2.400000px;}
.ws90{word-spacing:2.430000px;}
.ws5f{word-spacing:2.460000px;}
.ws67{word-spacing:2.520000px;}
.ws5a{word-spacing:2.580000px;}
.ws11{word-spacing:2.640000px;}
.ws6e{word-spacing:2.700000px;}
.ws64{word-spacing:2.760000px;}
.ws61{word-spacing:2.820000px;}
.wsa{word-spacing:2.880000px;}
.ws99{word-spacing:2.940000px;}
.ws13{word-spacing:3.000000px;}
.ws4d{word-spacing:3.060000px;}
.ws25{word-spacing:3.120000px;}
.wsbb{word-spacing:3.180000px;}
.ws8c{word-spacing:3.240000px;}
.ws1d{word-spacing:3.300000px;}
.ws41{word-spacing:3.360000px;}
.ws45{word-spacing:3.420000px;}
.ws80{word-spacing:3.480000px;}
.wscb{word-spacing:3.540000px;}
.ws49{word-spacing:3.600000px;}
.ws51{word-spacing:3.660000px;}
.ws70{word-spacing:3.720000px;}
.ws79{word-spacing:3.780000px;}
.ws3f{word-spacing:3.900000px;}
.ws3{word-spacing:3.942000px;}
.ws50{word-spacing:3.960000px;}
.ws57{word-spacing:4.020000px;}
.ws59{word-spacing:4.140000px;}
.ws6{word-spacing:4.176000px;}
.ws75{word-spacing:4.260000px;}
.wsaa{word-spacing:4.320000px;}
.ws2f{word-spacing:4.380000px;}
.ws28{word-spacing:4.440000px;}
.wsc0{word-spacing:4.560000px;}
.ws7c{word-spacing:4.620000px;}
.ws7f{word-spacing:4.680000px;}
.ws5c{word-spacing:4.740000px;}
.ws19{word-spacing:4.860000px;}
.ws31{word-spacing:4.920000px;}
.wscc{word-spacing:4.980000px;}
.ws21{word-spacing:5.040000px;}
.wsac{word-spacing:5.100000px;}
.wsc3{word-spacing:5.160000px;}
.ws7d{word-spacing:5.220000px;}
.ws8b{word-spacing:5.280000px;}
.ws78{word-spacing:5.340000px;}
.ws47{word-spacing:5.400000px;}
.ws9e{word-spacing:5.460000px;}
.ws5b{word-spacing:5.520000px;}
.ws9a{word-spacing:5.580000px;}
.wsc7{word-spacing:5.640000px;}
.wsba{word-spacing:5.700000px;}
.ws2a{word-spacing:5.760000px;}
.ws3e{word-spacing:5.820000px;}
.ws22{word-spacing:5.880000px;}
.ws7b{word-spacing:5.940000px;}
.ws82{word-spacing:6.000000px;}
.ws9f{word-spacing:6.060000px;}
.ws1b{word-spacing:6.180000px;}
.ws74{word-spacing:6.300000px;}
.wsbe{word-spacing:6.360000px;}
.ws6d{word-spacing:6.480000px;}
.ws43{word-spacing:6.540000px;}
.ws69{word-spacing:6.600000px;}
.ws37{word-spacing:6.660000px;}
.ws20{word-spacing:6.720000px;}
.ws17{word-spacing:6.780000px;}
.ws1c{word-spacing:6.840000px;}
.ws30{word-spacing:6.900000px;}
.ws6b{word-spacing:6.960000px;}
.ws34{word-spacing:7.020000px;}
.wsb0{word-spacing:7.080000px;}
.wsa6{word-spacing:7.200000px;}
.ws1e{word-spacing:7.320000px;}
.ws2c{word-spacing:7.380000px;}
.wsb{word-spacing:7.440000px;}
.ws3b{word-spacing:7.500000px;}
.wsab{word-spacing:7.560000px;}
.wsa5{word-spacing:7.620000px;}
.ws23{word-spacing:7.680000px;}
.ws8e{word-spacing:7.800000px;}
.ws97{word-spacing:7.920000px;}
.ws29{word-spacing:7.980000px;}
.ws4c{word-spacing:8.040000px;}
.ws52{word-spacing:8.100000px;}
.ws56{word-spacing:8.160000px;}
.ws95{word-spacing:8.220000px;}
.wsc{word-spacing:8.280000px;}
.wsaf{word-spacing:8.340000px;}
.wsa8{word-spacing:8.400000px;}
.ws8d{word-spacing:8.520000px;}
.ws3a{word-spacing:8.880000px;}
.ws38{word-spacing:9.000000px;}
.ws76{word-spacing:9.060000px;}
.ws55{word-spacing:9.300000px;}
.ws58{word-spacing:9.360000px;}
.wsc6{word-spacing:9.420000px;}
.wsca{word-spacing:9.540000px;}
.wsb5{word-spacing:9.660000px;}
.ws8f{word-spacing:9.720000px;}
.ws53{word-spacing:10.140000px;}
.ws4e{word-spacing:10.320000px;}
.ws1a{word-spacing:10.500000px;}
.wsbc{word-spacing:10.620000px;}
.ws6f{word-spacing:10.740000px;}
.ws5e{word-spacing:10.860000px;}
.wsbf{word-spacing:10.980000px;}
.wsbd{word-spacing:11.100000px;}
.ws54{word-spacing:11.160000px;}
.wsb1{word-spacing:11.280000px;}
.wsad{word-spacing:11.460000px;}
.ws14{word-spacing:11.700000px;}
.ws60{word-spacing:11.760000px;}
.ws98{word-spacing:11.940000px;}
.ws62{word-spacing:12.000000px;}
.wsae{word-spacing:12.240000px;}
.wsc5{word-spacing:12.360000px;}
.ws42{word-spacing:12.420000px;}
.ws4a{word-spacing:13.020000px;}
.wsb3{word-spacing:13.500000px;}
.ws72{word-spacing:15.000000px;}
.wsb8{word-spacing:15.660000px;}
.ws86{word-spacing:20.700000px;}
.wsb7{word-spacing:23.580000px;}
.ws89{word-spacing:32.170800px;}
.ws94{word-spacing:32.700000px;}
.ws87{word-spacing:34.050000px;}
.ws88{word-spacing:46.050000px;}
.ws92{word-spacing:50.700000px;}
.wsc8{word-spacing:51.840000px;}
.ws85{word-spacing:62.059800px;}
.ws91{word-spacing:64.050000px;}
.ws93{word-spacing:80.700000px;}
.ws83{word-spacing:94.094400px;}
.ws84{word-spacing:224.100000px;}
.wsa2{word-spacing:890.693400px;}
.ws15{word-spacing:1018.164600px;}
._41{margin-left:-48.839400px;}
._10{margin-left:-10.114200px;}
._6{margin-left:-8.408400px;}
._7{margin-left:-7.238400px;}
._0{margin-left:-4.903200px;}
._1{margin-left:-3.186000px;}
._4{margin-left:-1.287600px;}
._2{width:1.004400px;}
._5{width:2.192400px;}
._8{width:3.203400px;}
._3{width:4.632600px;}
._3e{width:6.337200px;}
._3f{width:7.797600px;}
._e{width:13.260000px;}
._f{width:16.140000px;}
._3d{width:17.227800px;}
._40{width:27.788400px;}
._20{width:32.700000px;}
._18{width:33.808800px;}
._2f{width:34.996800px;}
._1f{width:36.877800px;}
._19{width:44.700000px;}
._1e{width:46.050000px;}
._30{width:47.400000px;}
._25{width:48.474600px;}
._29{width:49.777800px;}
._1a{width:58.050000px;}
._21{width:59.400000px;}
._14{width:61.009800px;}
._27{width:63.150000px;}
._16{width:64.584000px;}
._2c{width:66.428400px;}
._2e{width:67.652400px;}
._2a{width:72.058800px;}
._24{width:74.700000px;}
._1b{width:76.050000px;}
._39{width:77.345400px;}
._15{width:86.641200px;}
._26{width:88.251000px;}
._1d{width:89.398200px;}
._23{width:91.924800px;}
._28{width:93.475200px;}
._31{width:96.102600px;}
._22{width:99.300000px;}
._1c{width:106.050600px;}
._17{width:110.019600px;}
._2b{width:117.300000px;}
._2d{width:119.849400px;}
._11{width:209.700000px;}
._12{width:222.750000px;}
._13{width:226.927200px;}
._38{width:272.401200px;}
._32{width:333.953400px;}
._33{width:368.277600px;}
._36{width:424.133400px;}
._c{width:467.546400px;}
._a{width:495.356400px;}
._d{width:506.750400px;}
._b{width:516.678000px;}
._3a{width:518.127600px;}
._9{width:560.891400px;}
._34{width:589.535400px;}
._3b{width:672.351600px;}
._35{width:707.605200px;}
._3c{width:720.457200px;}
._37{width:761.289600px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.779550px;}
.y1f6{bottom:106.297800px;}
.y93{bottom:106.298850px;}
.y70{bottom:106.299150px;}
.y1fc{bottom:106.942200px;}
.y44{bottom:107.557500px;}
.y7{bottom:109.513650px;}
.y142{bottom:109.734300px;}
.yde{bottom:110.926200px;}
.y6{bottom:123.913650px;}
.y6f{bottom:124.313850px;}
.yb4{bottom:124.716300px;}
.y1d0{bottom:124.732800px;}
.y12e{bottom:124.754400px;}
.y92{bottom:124.759800px;}
.y11a{bottom:124.762200px;}
.y1fb{bottom:124.942200px;}
.y43{bottom:125.557500px;}
.ydd{bottom:128.213250px;}
.y1aa{bottom:128.557500px;}
.y181{bottom:140.733450px;}
.y6e{bottom:142.328400px;}
.y1fa{bottom:142.942200px;}
.yb3{bottom:143.133600px;}
.y1cf{bottom:143.166300px;}
.y12d{bottom:143.209650px;}
.y91{bottom:143.220750px;}
.y119{bottom:143.225250px;}
.y179{bottom:143.448750px;}
.y42{bottom:143.557500px;}
.ydc{bottom:145.500450px;}
.y1a9{bottom:146.557500px;}
.y180{bottom:156.258300px;}
.y6d{bottom:160.343100px;}
.yb2{bottom:161.550750px;}
.y41{bottom:161.557500px;}
.y1f5{bottom:161.581200px;}
.y1ce{bottom:161.599800px;}
.y12c{bottom:161.664900px;}
.y90{bottom:161.681700px;}
.y118{bottom:161.688150px;}
.ydb{bottom:162.787500px;}
.y1a8{bottom:164.557500px;}
.y17f{bottom:171.783300px;}
.y6c{bottom:178.357650px;}
.y40{bottom:179.557500px;}
.yb1{bottom:179.967900px;}
.y1f4{bottom:180.016200px;}
.y1cd{bottom:180.033450px;}
.yda{bottom:180.074700px;}
.y12b{bottom:180.120000px;}
.y8f{bottom:180.142650px;}
.y117{bottom:180.151200px;}
.y1a7{bottom:182.557500px;}
.y17e{bottom:190.168350px;}
.y6b{bottom:196.372200px;}
.yd9{bottom:197.361900px;}
.y3f{bottom:197.557500px;}
.y17b{bottom:197.930850px;}
.yb0{bottom:198.385050px;}
.y1f3{bottom:198.451200px;}
.y1cc{bottom:198.466950px;}
.y12a{bottom:198.575250px;}
.y8e{bottom:198.603600px;}
.y1a6{bottom:200.557500px;}
.y17d{bottom:205.693350px;}
.y173{bottom:206.490450px;}
.y116{bottom:212.878950px;}
.y17a{bottom:213.455850px;}
.y6a{bottom:214.386900px;}
.yd8{bottom:214.648950px;}
.y3e{bottom:215.557500px;}
.yaf{bottom:216.802200px;}
.y1f2{bottom:216.886200px;}
.y1cb{bottom:216.900450px;}
.y129{bottom:217.030500px;}
.y8d{bottom:217.064550px;}
.y1a5{bottom:218.557500px;}
.y17c{bottom:221.218350px;}
.y115{bottom:231.441750px;}
.yd7{bottom:231.936150px;}
.y69{bottom:232.401450px;}
.y3d{bottom:233.557500px;}
.yae{bottom:235.219500px;}
.y1f1{bottom:235.321200px;}
.y1ca{bottom:235.334100px;}
.y128{bottom:235.485750px;}
.y8c{bottom:235.525500px;}
.y1c{bottom:235.733100px;}
.y1a4{bottom:236.557500px;}
.y176{bottom:239.603400px;}
.yd4{bottom:242.323200px;}
.y170{bottom:244.660200px;}
.y178{bottom:247.365900px;}
.yd6{bottom:249.223200px;}
.y114{bottom:250.004400px;}
.y68{bottom:250.416150px;}
.y3c{bottom:251.557500px;}
.yad{bottom:253.636650px;}
.y1b{bottom:253.733100px;}
.y1f0{bottom:253.756200px;}
.y1c9{bottom:253.767600px;}
.y127{bottom:253.941000px;}
.y8b{bottom:253.986450px;}
.y1a3{bottom:254.557500px;}
.y175{bottom:255.128400px;}
.yd3{bottom:256.123200px;}
.y177{bottom:262.890900px;}
.yd5{bottom:266.510400px;}
.y67{bottom:268.430700px;}
.y113{bottom:268.567200px;}
.y110{bottom:269.055300px;}
.yb8{bottom:269.557500px;}
.y174{bottom:270.653400px;}
.y1a{bottom:271.733100px;}
.yac{bottom:272.053800px;}
.y1ef{bottom:272.191200px;}
.y1c8{bottom:272.201250px;}
.y126{bottom:272.396250px;}
.y8a{bottom:272.447400px;}
.y1a2{bottom:272.557500px;}
.y10f{bottom:282.855300px;}
.y66{bottom:286.445400px;}
.y112{bottom:287.129850px;}
.y3b{bottom:287.557500px;}
.y19{bottom:289.733100px;}
.yab{bottom:290.470950px;}
.y1a1{bottom:290.557500px;}
.y1ee{bottom:290.626200px;}
.y1c7{bottom:290.634750px;}
.y125{bottom:290.851500px;}
.y89{bottom:290.908350px;}
.y172{bottom:296.538450px;}
.y10e{bottom:296.655300px;}
.yd2{bottom:297.011700px;}
.y65{bottom:304.459950px;}
.yb7{bottom:305.557500px;}
.y111{bottom:305.692650px;}
.y18{bottom:307.733100px;}
.y1a0{bottom:308.557500px;}
.yaa{bottom:308.888100px;}
.y1ed{bottom:309.061200px;}
.y1c6{bottom:309.068400px;}
.y124{bottom:309.306750px;}
.y88{bottom:309.369300px;}
.y10d{bottom:310.455300px;}
.y171{bottom:312.063450px;}
.y64{bottom:322.474500px;}
.y3a{bottom:323.557500px;}
.y10c{bottom:324.255300px;}
.yd1{bottom:324.302700px;}
.y17{bottom:325.733100px;}
.y19f{bottom:326.557500px;}
.ya9{bottom:327.305400px;}
.y1ec{bottom:327.496200px;}
.y1c5{bottom:327.501900px;}
.y123{bottom:327.761850px;}
.y87{bottom:327.830250px;}
.y16b{bottom:340.267500px;}
.y63{bottom:340.489200px;}
.y16f{bottom:341.281050px;}
.y39{bottom:341.557500px;}
.y10b{bottom:342.818100px;}
.y16{bottom:343.733100px;}
.y19e{bottom:344.557500px;}
.ya8{bottom:345.722550px;}
.y1eb{bottom:345.931200px;}
.y1c4{bottom:345.935400px;}
.y122{bottom:346.217100px;}
.y86{bottom:346.291200px;}
.y16e{bottom:356.806050px;}
.y62{bottom:358.503750px;}
.y38{bottom:359.557500px;}
.y10a{bottom:361.380750px;}
.y15{bottom:361.733100px;}
.y19d{bottom:362.557500px;}
.yd0{bottom:363.676950px;}
.y1ea{bottom:364.366200px;}
.y1c3{bottom:364.369050px;}
.y121{bottom:364.672350px;}
.y61{bottom:376.518450px;}
.y37{bottom:377.557500px;}
.y16d{bottom:378.523500px;}
.y14{bottom:379.733100px;}
.y109{bottom:379.943550px;}
.y19c{bottom:380.557500px;}
.ya7{bottom:382.556850px;}
.y168{bottom:382.661100px;}
.y1e9{bottom:382.801200px;}
.y1c2{bottom:382.802550px;}
.y120{bottom:383.127600px;}
.y85{bottom:383.212950px;}
.ycf{bottom:384.264150px;}
.y16c{bottom:394.048500px;}
.y60{bottom:394.533000px;}
.y36{bottom:395.557500px;}
.y13{bottom:397.733100px;}
.y108{bottom:398.506350px;}
.y19b{bottom:398.557500px;}
.y1e8{bottom:401.236200px;}
.y11f{bottom:401.582850px;}
.yce{bottom:404.851200px;}
.y16a{bottom:412.433550px;}
.y164{bottom:412.474650px;}
.y5f{bottom:412.547550px;}
.y35{bottom:413.557500px;}
.y163{bottom:414.742200px;}
.y12{bottom:415.733100px;}
.y19a{bottom:416.557500px;}
.y107{bottom:417.069000px;}
.y1c1{bottom:419.669700px;}
.y11e{bottom:420.038100px;}
.y84{bottom:420.134850px;}
.y165{bottom:425.246250px;}
.ycd{bottom:425.438250px;}
.y105{bottom:426.594450px;}
.y169{bottom:427.958550px;}
.y5e{bottom:430.562250px;}
.y34{bottom:431.557500px;}
.y11{bottom:433.733100px;}
.y199{bottom:434.557500px;}
.y106{bottom:435.631800px;}
.y1e7{bottom:438.074400px;}
.y1f9{bottom:438.103200px;}
.y11d{bottom:438.493350px;}
.y83{bottom:438.595800px;}
.y104{bottom:440.394450px;}
.ycc{bottom:446.025450px;}
.y167{bottom:446.343600px;}
.y5d{bottom:448.576800px;}
.y33{bottom:449.557500px;}
.y10{bottom:451.733100px;}
.y198{bottom:452.557500px;}
.y103{bottom:454.194450px;}
.y1e6{bottom:456.509400px;}
.y1c0{bottom:456.536700px;}
.y11c{bottom:456.948600px;}
.y82{bottom:457.056750px;}
.y166{bottom:461.868600px;}
.y5c{bottom:466.591500px;}
.ycb{bottom:466.612500px;}
.y32{bottom:467.557500px;}
.yf{bottom:469.733100px;}
.y197{bottom:470.557500px;}
.y102{bottom:472.757250px;}
.y1e5{bottom:474.944400px;}
.y1bf{bottom:474.970350px;}
.y81{bottom:475.517700px;}
.y160{bottom:480.253650px;}
.y15a{bottom:482.230800px;}
.y5b{bottom:484.606050px;}
.y31{bottom:485.557500px;}
.yca{bottom:487.199700px;}
.y162{bottom:488.016150px;}
.y196{bottom:488.557500px;}
.y101{bottom:491.319900px;}
.y1e4{bottom:493.379400px;}
.y1be{bottom:493.403850px;}
.y80{bottom:493.978650px;}
.y15f{bottom:495.778650px;}
.y5a{bottom:502.620600px;}
.y161{bottom:503.541150px;}
.y30{bottom:503.557500px;}
.ye{bottom:505.733100px;}
.y195{bottom:506.557500px;}
.yc9{bottom:507.786900px;}
.y11b{bottom:508.858950px;}
.y100{bottom:509.882700px;}
.y15b{bottom:509.886750px;}
.y15e{bottom:511.303650px;}
.y1e3{bottom:511.814400px;}
.y1f8{bottom:511.837500px;}
.ya6{bottom:512.181450px;}
.y59{bottom:520.635300px;}
.y2f{bottom:521.557500px;}
.y194{bottom:524.557500px;}
.yc8{bottom:528.373950px;}
.yff{bottom:528.445350px;}
.yfc{bottom:528.933600px;}
.y1e2{bottom:530.249400px;}
.y1bd{bottom:530.271000px;}
.ya5{bottom:530.598600px;}
.y7f{bottom:530.900550px;}
.y15d{bottom:537.451200px;}
.y58{bottom:538.649850px;}
.y2e{bottom:539.557500px;}
.y193{bottom:542.557500px;}
.yfb{bottom:542.733600px;}
.y154{bottom:546.387600px;}
.yfe{bottom:547.008150px;}
.y1e1{bottom:548.684400px;}
.y1f7{bottom:548.704500px;}
.yc7{bottom:548.961150px;}
.ya4{bottom:549.015900px;}
.y7e{bottom:549.361500px;}
.y15c{bottom:552.976200px;}
.yfa{bottom:556.533600px;}
.y72{bottom:556.664550px;}
.y141{bottom:556.942200px;}
.y2d{bottom:557.557500px;}
.y192{bottom:560.557500px;}
.yfd{bottom:565.570800px;}
.y1e0{bottom:567.119400px;}
.y1bc{bottom:567.138150px;}
.ya3{bottom:567.433050px;}
.y7d{bottom:567.822450px;}
.yf9{bottom:570.333600px;}
.y57{bottom:574.679100px;}
.y140{bottom:574.942200px;}
.y2c{bottom:575.557500px;}
.yd{bottom:577.733100px;}
.y191{bottom:578.557500px;}
.y157{bottom:579.606150px;}
.yf8{bottom:584.133600px;}
.y1df{bottom:585.554400px;}
.y1bb{bottom:585.571650px;}
.ya2{bottom:585.850200px;}
.y151{bottom:586.218300px;}
.y159{bottom:587.368650px;}
.yc6{bottom:590.135400px;}
.yc{bottom:592.133100px;}
.y71{bottom:592.693800px;}
.y13f{bottom:592.942200px;}
.y2b{bottom:593.557500px;}
.y156{bottom:595.131150px;}
.y190{bottom:596.557500px;}
.yf7{bottom:602.696250px;}
.y158{bottom:602.893650px;}
.y1de{bottom:603.989400px;}
.y1ba{bottom:604.005300px;}
.ya1{bottom:604.267350px;}
.y7c{bottom:604.744200px;}
.y155{bottom:610.656150px;}
.y56{bottom:610.708350px;}
.yb{bottom:610.785000px;}
.y13e{bottom:610.942200px;}
.yb6{bottom:611.557500px;}
.y18f{bottom:614.557500px;}
.yf6{bottom:621.259050px;}
.y1dd{bottom:622.424400px;}
.y1b9{bottom:622.438800px;}
.ya0{bottom:622.684500px;}
.y55{bottom:628.723050px;}
.y13d{bottom:628.942200px;}
.y2a{bottom:629.557500px;}
.yc5{bottom:631.309500px;}
.y18e{bottom:632.557500px;}
.y153{bottom:633.193650px;}
.yf5{bottom:639.821850px;}
.y1dc{bottom:640.859400px;}
.y1b8{bottom:640.872300px;}
.y9f{bottom:641.101800px;}
.y7b{bottom:641.666100px;}
.y54{bottom:646.737600px;}
.y13c{bottom:646.942200px;}
.yb5{bottom:647.557500px;}
.y152{bottom:648.718650px;}
.y18d{bottom:650.557500px;}
.yc4{bottom:651.896700px;}
.ya{bottom:653.985000px;}
.yf4{bottom:658.384500px;}
.y1db{bottom:659.294400px;}
.y1b7{bottom:659.305950px;}
.y9e{bottom:659.518950px;}
.y53{bottom:664.752300px;}
.y13b{bottom:664.942200px;}
.y29{bottom:665.557500px;}
.y18c{bottom:668.557500px;}
.y150{bottom:671.662200px;}
.yc3{bottom:672.483900px;}
.yf1{bottom:672.672750px;}
.y14f{bottom:676.543350px;}
.yf3{bottom:676.947300px;}
.y1da{bottom:677.729400px;}
.y1b6{bottom:677.739450px;}
.y9d{bottom:677.936100px;}
.y52{bottom:682.766850px;}
.y13a{bottom:682.942200px;}
.y28{bottom:683.557500px;}
.yf0{bottom:686.472750px;}
.y18b{bottom:686.557500px;}
.y14b{bottom:689.264400px;}
.yc2{bottom:693.070950px;}
.y7a{bottom:693.588000px;}
.yf2{bottom:695.509950px;}
.y1d9{bottom:696.164400px;}
.y1b5{bottom:696.173100px;}
.y9c{bottom:696.353250px;}
.y14d{bottom:697.026900px;}
.yef{bottom:700.272600px;}
.y51{bottom:700.781400px;}
.y139{bottom:700.942200px;}
.y27{bottom:701.557500px;}
.y9{bottom:704.385000px;}
.y18a{bottom:704.557500px;}
.y14a{bottom:704.789400px;}
.y14c{bottom:712.551900px;}
.yc1{bottom:713.658000px;}
.yee{bottom:714.072750px;}
.y1d8{bottom:714.599400px;}
.y1b4{bottom:714.606600px;}
.y9b{bottom:714.770400px;}
.y50{bottom:718.796100px;}
.y138{bottom:718.942200px;}
.y26{bottom:719.557500px;}
.y149{bottom:720.314400px;}
.y189{bottom:722.557500px;}
.y79{bottom:727.113300px;}
.y8{bottom:729.585000px;}
.yed{bottom:732.635400px;}
.y1d7{bottom:733.034400px;}
.y1b3{bottom:733.040250px;}
.y9a{bottom:733.187550px;}
.yc0{bottom:734.245200px;}
.y4f{bottom:736.810650px;}
.y137{bottom:736.942200px;}
.y25{bottom:737.557500px;}
.y14e{bottom:738.805200px;}
.y188{bottom:740.557500px;}
.y78{bottom:748.373400px;}
.yec{bottom:751.198200px;}
.y1d6{bottom:751.469400px;}
.y1b2{bottom:751.473750px;}
.y4e{bottom:754.825350px;}
.ybf{bottom:754.832400px;}
.y136{bottom:754.942200px;}
.y24{bottom:755.557500px;}
.y187{bottom:758.557500px;}
.y77{bottom:769.633350px;}
.yeb{bottom:769.761000px;}
.y1d5{bottom:769.904400px;}
.y1b1{bottom:769.907250px;}
.y99{bottom:770.022000px;}
.y4d{bottom:772.839900px;}
.y135{bottom:772.942200px;}
.y23{bottom:773.557500px;}
.ybe{bottom:775.419450px;}
.y186{bottom:776.557500px;}
.y148{bottom:780.720450px;}
.yea{bottom:788.323650px;}
.y1d4{bottom:788.339400px;}
.y1b0{bottom:788.340750px;}
.y4c{bottom:790.854450px;}
.y76{bottom:790.893150px;}
.y134{bottom:790.942200px;}
.y22{bottom:791.557500px;}
.y185{bottom:794.557500px;}
.ybd{bottom:796.006500px;}
.y147{bottom:800.424150px;}
.ye7{bottom:802.611900px;}
.y1af{bottom:806.774400px;}
.y98{bottom:806.856300px;}
.ye9{bottom:806.886450px;}
.y4b{bottom:808.869150px;}
.y133{bottom:808.942200px;}
.y21{bottom:809.557500px;}
.y75{bottom:812.152950px;}
.y184{bottom:812.557500px;}
.ye6{bottom:816.411750px;}
.ybc{bottom:816.593700px;}
.y146{bottom:820.127700px;}
.y1ae{bottom:825.208050px;}
.y97{bottom:825.273450px;}
.ye8{bottom:825.449100px;}
.y4a{bottom:826.883850px;}
.y132{bottom:826.942200px;}
.y20{bottom:827.557500px;}
.ye5{bottom:830.211750px;}
.y183{bottom:830.557500px;}
.ybb{bottom:837.180750px;}
.y145{bottom:839.831400px;}
.y1d3{bottom:843.637200px;}
.y1ad{bottom:843.641550px;}
.y96{bottom:843.690600px;}
.ye4{bottom:844.011900px;}
.y49{bottom:844.898400px;}
.y131{bottom:844.942200px;}
.y1f{bottom:845.557500px;}
.y182{bottom:848.557500px;}
.yba{bottom:857.767950px;}
.y144{bottom:859.534950px;}
.ye3{bottom:861.936750px;}
.y74{bottom:862.020300px;}
.y1d2{bottom:862.072200px;}
.y1ac{bottom:862.075050px;}
.y95{bottom:862.107900px;}
.y48{bottom:862.912950px;}
.y130{bottom:862.942200px;}
.y1e{bottom:863.557500px;}
.ye0{bottom:872.323950px;}
.yb9{bottom:878.355150px;}
.ye2{bottom:879.223950px;}
.y143{bottom:879.238650px;}
.y73{bottom:880.481250px;}
.y1d1{bottom:880.507200px;}
.y1ab{bottom:880.508550px;}
.y94{bottom:880.525050px;}
.y47{bottom:880.927500px;}
.y12f{bottom:880.942200px;}
.ydf{bottom:886.123950px;}
.ye1{bottom:896.511000px;}
.y46{bottom:898.942200px;}
.y1d{bottom:899.557500px;}
.y5{bottom:914.629350px;}
.y4{bottom:930.829350px;}
.y1{bottom:946.247700px;}
.y3{bottom:947.029350px;}
.y45{bottom:948.414300px;}
.h3{height:34.828125px;}
.h5{height:35.039062px;}
.h8{height:36.000000px;}
.hb{height:39.181641px;}
.h4{height:39.339844px;}
.ha{height:39.418945px;}
.h10{height:40.468345px;}
.hf{height:40.468945px;}
.h9{height:43.535156px;}
.h2{height:43.798828px;}
.h7{height:45.000000px;}
.hd{height:62.638463px;}
.hc{height:62.639063px;}
.h6{height:63.000000px;}
.he{height:70.468945px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x19{left:78.661350px;}
.x11{left:80.787450px;}
.x4{left:83.372400px;}
.x1e{left:92.245500px;}
.x1d{left:93.794550px;}
.xb{left:97.795200px;}
.x2b{left:99.715950px;}
.x6{left:101.870400px;}
.x29{left:107.478450px;}
.x25{left:115.240950px;}
.x14{left:119.055150px;}
.x2a{left:123.003450px;}
.x2c{left:130.765950px;}
.x26{left:148.269150px;}
.x8{left:156.424200px;}
.x1c{left:159.640200px;}
.x1b{left:174.426150px;}
.x7{left:180.454200px;}
.x1f{left:182.593950px;}
.x1a{left:185.210250px;}
.x12{left:187.902000px;}
.xf{left:204.887700px;}
.x15{left:218.495250px;}
.x9{left:224.243550px;}
.x18{left:235.160400px;}
.x2d{left:274.434450px;}
.x10{left:277.642950px;}
.x27{left:285.394950px;}
.x5{left:289.281150px;}
.x2{left:307.488150px;}
.xe{left:312.070350px;}
.xd{left:316.952700px;}
.x2e{left:321.189000px;}
.x16{left:323.543850px;}
.xa{left:328.934400px;}
.xc{left:330.809400px;}
.x13{left:334.314000px;}
.x20{left:349.520100px;}
.x21{left:358.326750px;}
.x17{left:403.613550px;}
.x22{left:583.064400px;}
.x24{left:605.364150px;}
.x23{left:619.072500px;}
.x1{left:623.781600px;}
.x28{left:633.755700px;}
@media print{
.v4{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.933333pt;}
.v1{vertical-align:7.697600pt;}
.v2{vertical-align:24.533333pt;}
.v3{vertical-align:27.600000pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-1.013333pt;}
.ls9{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls1a{letter-spacing:1.226667pt;}
.ls19{letter-spacing:1.653333pt;}
.ws0{word-spacing:-20.757333pt;}
.ws16{word-spacing:-14.826667pt;}
.wsb6{word-spacing:-13.866667pt;}
.wsc4{word-spacing:-13.653333pt;}
.wsa1{word-spacing:-12.000000pt;}
.ws5d{word-spacing:-1.776000pt;}
.ws7{word-spacing:-1.333333pt;}
.ws9{word-spacing:-1.280000pt;}
.ws39{word-spacing:-1.226667pt;}
.ws65{word-spacing:-1.173333pt;}
.ws96{word-spacing:-1.066667pt;}
.wsa3{word-spacing:-0.906667pt;}
.ws46{word-spacing:-0.800000pt;}
.ws18{word-spacing:-0.746667pt;}
.wsf{word-spacing:-0.693333pt;}
.ws81{word-spacing:-0.640000pt;}
.wsc9{word-spacing:-0.586667pt;}
.wsb2{word-spacing:-0.533333pt;}
.wsb4{word-spacing:-0.480000pt;}
.ws5{word-spacing:-0.426667pt;}
.wsa4{word-spacing:-0.373333pt;}
.ws44{word-spacing:-0.320000pt;}
.ws48{word-spacing:-0.266667pt;}
.ws24{word-spacing:-0.213333pt;}
.ws77{word-spacing:-0.160000pt;}
.ws66{word-spacing:-0.106667pt;}
.wsa9{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.053333pt;}
.ws27{word-spacing:0.106667pt;}
.ws10{word-spacing:0.160000pt;}
.ws73{word-spacing:0.213333pt;}
.ws4{word-spacing:0.240000pt;}
.ws9d{word-spacing:0.266667pt;}
.wsc1{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.373333pt;}
.ws4b{word-spacing:0.426667pt;}
.ws2e{word-spacing:0.480000pt;}
.ws36{word-spacing:0.533333pt;}
.ws33{word-spacing:0.586667pt;}
.ws9b{word-spacing:0.640000pt;}
.ws8a{word-spacing:0.693333pt;}
.ws6c{word-spacing:0.746667pt;}
.wse{word-spacing:0.800000pt;}
.ws68{word-spacing:0.853333pt;}
.ws1f{word-spacing:0.906667pt;}
.ws32{word-spacing:0.960000pt;}
.wsc2{word-spacing:1.066667pt;}
.wsd{word-spacing:1.120000pt;}
.ws8{word-spacing:1.226667pt;}
.ws35{word-spacing:1.280000pt;}
.ws12{word-spacing:1.333333pt;}
.ws71{word-spacing:1.386667pt;}
.ws7e{word-spacing:1.440000pt;}
.wsa7{word-spacing:1.493333pt;}
.wsa0{word-spacing:1.546667pt;}
.ws2b{word-spacing:1.600000pt;}
.ws4f{word-spacing:1.653333pt;}
.ws3d{word-spacing:1.706667pt;}
.ws6a{word-spacing:1.760000pt;}
.wsb9{word-spacing:1.813333pt;}
.ws26{word-spacing:1.866667pt;}
.ws40{word-spacing:1.920000pt;}
.ws7a{word-spacing:1.973333pt;}
.ws9c{word-spacing:2.026667pt;}
.ws63{word-spacing:2.080000pt;}
.ws2{word-spacing:2.133333pt;}
.ws90{word-spacing:2.160000pt;}
.ws5f{word-spacing:2.186667pt;}
.ws67{word-spacing:2.240000pt;}
.ws5a{word-spacing:2.293333pt;}
.ws11{word-spacing:2.346667pt;}
.ws6e{word-spacing:2.400000pt;}
.ws64{word-spacing:2.453333pt;}
.ws61{word-spacing:2.506667pt;}
.wsa{word-spacing:2.560000pt;}
.ws99{word-spacing:2.613333pt;}
.ws13{word-spacing:2.666667pt;}
.ws4d{word-spacing:2.720000pt;}
.ws25{word-spacing:2.773333pt;}
.wsbb{word-spacing:2.826667pt;}
.ws8c{word-spacing:2.880000pt;}
.ws1d{word-spacing:2.933333pt;}
.ws41{word-spacing:2.986667pt;}
.ws45{word-spacing:3.040000pt;}
.ws80{word-spacing:3.093333pt;}
.wscb{word-spacing:3.146667pt;}
.ws49{word-spacing:3.200000pt;}
.ws51{word-spacing:3.253333pt;}
.ws70{word-spacing:3.306667pt;}
.ws79{word-spacing:3.360000pt;}
.ws3f{word-spacing:3.466667pt;}
.ws3{word-spacing:3.504000pt;}
.ws50{word-spacing:3.520000pt;}
.ws57{word-spacing:3.573333pt;}
.ws59{word-spacing:3.680000pt;}
.ws6{word-spacing:3.712000pt;}
.ws75{word-spacing:3.786667pt;}
.wsaa{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.893333pt;}
.ws28{word-spacing:3.946667pt;}
.wsc0{word-spacing:4.053333pt;}
.ws7c{word-spacing:4.106667pt;}
.ws7f{word-spacing:4.160000pt;}
.ws5c{word-spacing:4.213333pt;}
.ws19{word-spacing:4.320000pt;}
.ws31{word-spacing:4.373333pt;}
.wscc{word-spacing:4.426667pt;}
.ws21{word-spacing:4.480000pt;}
.wsac{word-spacing:4.533333pt;}
.wsc3{word-spacing:4.586667pt;}
.ws7d{word-spacing:4.640000pt;}
.ws8b{word-spacing:4.693333pt;}
.ws78{word-spacing:4.746667pt;}
.ws47{word-spacing:4.800000pt;}
.ws9e{word-spacing:4.853333pt;}
.ws5b{word-spacing:4.906667pt;}
.ws9a{word-spacing:4.960000pt;}
.wsc7{word-spacing:5.013333pt;}
.wsba{word-spacing:5.066667pt;}
.ws2a{word-spacing:5.120000pt;}
.ws3e{word-spacing:5.173333pt;}
.ws22{word-spacing:5.226667pt;}
.ws7b{word-spacing:5.280000pt;}
.ws82{word-spacing:5.333333pt;}
.ws9f{word-spacing:5.386667pt;}
.ws1b{word-spacing:5.493333pt;}
.ws74{word-spacing:5.600000pt;}
.wsbe{word-spacing:5.653333pt;}
.ws6d{word-spacing:5.760000pt;}
.ws43{word-spacing:5.813333pt;}
.ws69{word-spacing:5.866667pt;}
.ws37{word-spacing:5.920000pt;}
.ws20{word-spacing:5.973333pt;}
.ws17{word-spacing:6.026667pt;}
.ws1c{word-spacing:6.080000pt;}
.ws30{word-spacing:6.133333pt;}
.ws6b{word-spacing:6.186667pt;}
.ws34{word-spacing:6.240000pt;}
.wsb0{word-spacing:6.293333pt;}
.wsa6{word-spacing:6.400000pt;}
.ws1e{word-spacing:6.506667pt;}
.ws2c{word-spacing:6.560000pt;}
.wsb{word-spacing:6.613333pt;}
.ws3b{word-spacing:6.666667pt;}
.wsab{word-spacing:6.720000pt;}
.wsa5{word-spacing:6.773333pt;}
.ws23{word-spacing:6.826667pt;}
.ws8e{word-spacing:6.933333pt;}
.ws97{word-spacing:7.040000pt;}
.ws29{word-spacing:7.093333pt;}
.ws4c{word-spacing:7.146667pt;}
.ws52{word-spacing:7.200000pt;}
.ws56{word-spacing:7.253333pt;}
.ws95{word-spacing:7.306667pt;}
.wsc{word-spacing:7.360000pt;}
.wsaf{word-spacing:7.413333pt;}
.wsa8{word-spacing:7.466667pt;}
.ws8d{word-spacing:7.573333pt;}
.ws3a{word-spacing:7.893333pt;}
.ws38{word-spacing:8.000000pt;}
.ws76{word-spacing:8.053333pt;}
.ws55{word-spacing:8.266667pt;}
.ws58{word-spacing:8.320000pt;}
.wsc6{word-spacing:8.373333pt;}
.wsca{word-spacing:8.480000pt;}
.wsb5{word-spacing:8.586667pt;}
.ws8f{word-spacing:8.640000pt;}
.ws53{word-spacing:9.013333pt;}
.ws4e{word-spacing:9.173333pt;}
.ws1a{word-spacing:9.333333pt;}
.wsbc{word-spacing:9.440000pt;}
.ws6f{word-spacing:9.546667pt;}
.ws5e{word-spacing:9.653333pt;}
.wsbf{word-spacing:9.760000pt;}
.wsbd{word-spacing:9.866667pt;}
.ws54{word-spacing:9.920000pt;}
.wsb1{word-spacing:10.026667pt;}
.wsad{word-spacing:10.186667pt;}
.ws14{word-spacing:10.400000pt;}
.ws60{word-spacing:10.453333pt;}
.ws98{word-spacing:10.613333pt;}
.ws62{word-spacing:10.666667pt;}
.wsae{word-spacing:10.880000pt;}
.wsc5{word-spacing:10.986667pt;}
.ws42{word-spacing:11.040000pt;}
.ws4a{word-spacing:11.573333pt;}
.wsb3{word-spacing:12.000000pt;}
.ws72{word-spacing:13.333333pt;}
.wsb8{word-spacing:13.920000pt;}
.ws86{word-spacing:18.400000pt;}
.wsb7{word-spacing:20.960000pt;}
.ws89{word-spacing:28.596267pt;}
.ws94{word-spacing:29.066667pt;}
.ws87{word-spacing:30.266667pt;}
.ws88{word-spacing:40.933333pt;}
.ws92{word-spacing:45.066667pt;}
.wsc8{word-spacing:46.080000pt;}
.ws85{word-spacing:55.164267pt;}
.ws91{word-spacing:56.933333pt;}
.ws93{word-spacing:71.733333pt;}
.ws83{word-spacing:83.639467pt;}
.ws84{word-spacing:199.200000pt;}
.wsa2{word-spacing:791.727467pt;}
.ws15{word-spacing:905.035200pt;}
._41{margin-left:-43.412800pt;}
._10{margin-left:-8.990400pt;}
._6{margin-left:-7.474133pt;}
._7{margin-left:-6.434133pt;}
._0{margin-left:-4.358400pt;}
._1{margin-left:-2.832000pt;}
._4{margin-left:-1.144533pt;}
._2{width:0.892800pt;}
._5{width:1.948800pt;}
._8{width:2.847467pt;}
._3{width:4.117867pt;}
._3e{width:5.633067pt;}
._3f{width:6.931200pt;}
._e{width:11.786667pt;}
._f{width:14.346667pt;}
._3d{width:15.313600pt;}
._40{width:24.700800pt;}
._20{width:29.066667pt;}
._18{width:30.052267pt;}
._2f{width:31.108267pt;}
._1f{width:32.780267pt;}
._19{width:39.733333pt;}
._1e{width:40.933333pt;}
._30{width:42.133333pt;}
._25{width:43.088533pt;}
._29{width:44.246933pt;}
._1a{width:51.600000pt;}
._21{width:52.800000pt;}
._14{width:54.230933pt;}
._27{width:56.133333pt;}
._16{width:57.408000pt;}
._2c{width:59.047467pt;}
._2e{width:60.135467pt;}
._2a{width:64.052267pt;}
._24{width:66.400000pt;}
._1b{width:67.600000pt;}
._39{width:68.751467pt;}
._15{width:77.014400pt;}
._26{width:78.445333pt;}
._1d{width:79.465067pt;}
._23{width:81.710933pt;}
._28{width:83.089067pt;}
._31{width:85.424533pt;}
._22{width:88.266667pt;}
._1c{width:94.267200pt;}
._17{width:97.795200pt;}
._2b{width:104.266667pt;}
._2d{width:106.532800pt;}
._11{width:186.400000pt;}
._12{width:198.000000pt;}
._13{width:201.713067pt;}
._38{width:242.134400pt;}
._32{width:296.847467pt;}
._33{width:327.357867pt;}
._36{width:377.007467pt;}
._c{width:415.596800pt;}
._a{width:440.316800pt;}
._d{width:450.444800pt;}
._b{width:459.269333pt;}
._3a{width:460.557867pt;}
._9{width:498.570133pt;}
._34{width:524.031467pt;}
._3b{width:597.645867pt;}
._35{width:628.982400pt;}
._3c{width:640.406400pt;}
._37{width:676.701867pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.692933pt;}
.y1f6{bottom:94.486933pt;}
.y93{bottom:94.487867pt;}
.y70{bottom:94.488133pt;}
.y1fc{bottom:95.059733pt;}
.y44{bottom:95.606667pt;}
.y7{bottom:97.345467pt;}
.y142{bottom:97.541600pt;}
.yde{bottom:98.601067pt;}
.y6{bottom:110.145467pt;}
.y6f{bottom:110.501200pt;}
.yb4{bottom:110.858933pt;}
.y1d0{bottom:110.873600pt;}
.y12e{bottom:110.892800pt;}
.y92{bottom:110.897600pt;}
.y11a{bottom:110.899733pt;}
.y1fb{bottom:111.059733pt;}
.y43{bottom:111.606667pt;}
.ydd{bottom:113.967333pt;}
.y1aa{bottom:114.273333pt;}
.y181{bottom:125.096400pt;}
.y6e{bottom:126.514133pt;}
.y1fa{bottom:127.059733pt;}
.yb3{bottom:127.229867pt;}
.y1cf{bottom:127.258933pt;}
.y12d{bottom:127.297467pt;}
.y91{bottom:127.307333pt;}
.y119{bottom:127.311333pt;}
.y179{bottom:127.510000pt;}
.y42{bottom:127.606667pt;}
.ydc{bottom:129.333733pt;}
.y1a9{bottom:130.273333pt;}
.y180{bottom:138.896267pt;}
.y6d{bottom:142.527200pt;}
.yb2{bottom:143.600667pt;}
.y41{bottom:143.606667pt;}
.y1f5{bottom:143.627733pt;}
.y1ce{bottom:143.644267pt;}
.y12c{bottom:143.702133pt;}
.y90{bottom:143.717067pt;}
.y118{bottom:143.722800pt;}
.ydb{bottom:144.700000pt;}
.y1a8{bottom:146.273333pt;}
.y17f{bottom:152.696267pt;}
.y6c{bottom:158.540133pt;}
.y40{bottom:159.606667pt;}
.yb1{bottom:159.971467pt;}
.y1f4{bottom:160.014400pt;}
.y1cd{bottom:160.029733pt;}
.yda{bottom:160.066400pt;}
.y12b{bottom:160.106667pt;}
.y8f{bottom:160.126800pt;}
.y117{bottom:160.134400pt;}
.y1a7{bottom:162.273333pt;}
.y17e{bottom:169.038533pt;}
.y6b{bottom:174.553067pt;}
.yd9{bottom:175.432800pt;}
.y3f{bottom:175.606667pt;}
.y17b{bottom:175.938533pt;}
.yb0{bottom:176.342267pt;}
.y1f3{bottom:176.401067pt;}
.y1cc{bottom:176.415067pt;}
.y12a{bottom:176.511333pt;}
.y8e{bottom:176.536533pt;}
.y1a6{bottom:178.273333pt;}
.y17d{bottom:182.838533pt;}
.y173{bottom:183.547067pt;}
.y116{bottom:189.225733pt;}
.y17a{bottom:189.738533pt;}
.y6a{bottom:190.566133pt;}
.yd8{bottom:190.799067pt;}
.y3e{bottom:191.606667pt;}
.yaf{bottom:192.713067pt;}
.y1f2{bottom:192.787733pt;}
.y1cb{bottom:192.800400pt;}
.y129{bottom:192.916000pt;}
.y8d{bottom:192.946267pt;}
.y1a5{bottom:194.273333pt;}
.y17c{bottom:196.638533pt;}
.y115{bottom:205.726000pt;}
.yd7{bottom:206.165467pt;}
.y69{bottom:206.579067pt;}
.y3d{bottom:207.606667pt;}
.yae{bottom:209.084000pt;}
.y1f1{bottom:209.174400pt;}
.y1ca{bottom:209.185867pt;}
.y128{bottom:209.320667pt;}
.y8c{bottom:209.356000pt;}
.y1c{bottom:209.540533pt;}
.y1a4{bottom:210.273333pt;}
.y176{bottom:212.980800pt;}
.yd4{bottom:215.398400pt;}
.y170{bottom:217.475733pt;}
.y178{bottom:219.880800pt;}
.yd6{bottom:221.531733pt;}
.y114{bottom:222.226133pt;}
.y68{bottom:222.592133pt;}
.y3c{bottom:223.606667pt;}
.yad{bottom:225.454800pt;}
.y1b{bottom:225.540533pt;}
.y1f0{bottom:225.561067pt;}
.y1c9{bottom:225.571200pt;}
.y127{bottom:225.725333pt;}
.y8b{bottom:225.765733pt;}
.y1a3{bottom:226.273333pt;}
.y175{bottom:226.780800pt;}
.yd3{bottom:227.665067pt;}
.y177{bottom:233.680800pt;}
.yd5{bottom:236.898133pt;}
.y67{bottom:238.605067pt;}
.y113{bottom:238.726400pt;}
.y110{bottom:239.160267pt;}
.yb8{bottom:239.606667pt;}
.y174{bottom:240.580800pt;}
.y1a{bottom:241.540533pt;}
.yac{bottom:241.825600pt;}
.y1ef{bottom:241.947733pt;}
.y1c8{bottom:241.956667pt;}
.y126{bottom:242.130000pt;}
.y8a{bottom:242.175467pt;}
.y1a2{bottom:242.273333pt;}
.y10f{bottom:251.426933pt;}
.y66{bottom:254.618133pt;}
.y112{bottom:255.226533pt;}
.y3b{bottom:255.606667pt;}
.y19{bottom:257.540533pt;}
.yab{bottom:258.196400pt;}
.y1a1{bottom:258.273333pt;}
.y1ee{bottom:258.334400pt;}
.y1c7{bottom:258.342000pt;}
.y125{bottom:258.534667pt;}
.y89{bottom:258.585200pt;}
.y172{bottom:263.589733pt;}
.y10e{bottom:263.693600pt;}
.yd2{bottom:264.010400pt;}
.y65{bottom:270.631067pt;}
.yb7{bottom:271.606667pt;}
.y111{bottom:271.726800pt;}
.y18{bottom:273.540533pt;}
.y1a0{bottom:274.273333pt;}
.yaa{bottom:274.567200pt;}
.y1ed{bottom:274.721067pt;}
.y1c6{bottom:274.727467pt;}
.y124{bottom:274.939333pt;}
.y88{bottom:274.994933pt;}
.y10d{bottom:275.960267pt;}
.y171{bottom:277.389733pt;}
.y64{bottom:286.644000pt;}
.y3a{bottom:287.606667pt;}
.y10c{bottom:288.226933pt;}
.yd1{bottom:288.269067pt;}
.y17{bottom:289.540533pt;}
.y19f{bottom:290.273333pt;}
.ya9{bottom:290.938133pt;}
.y1ec{bottom:291.107733pt;}
.y1c5{bottom:291.112800pt;}
.y123{bottom:291.343867pt;}
.y87{bottom:291.404667pt;}
.y16b{bottom:302.460000pt;}
.y63{bottom:302.657067pt;}
.y16f{bottom:303.360933pt;}
.y39{bottom:303.606667pt;}
.y10b{bottom:304.727200pt;}
.y16{bottom:305.540533pt;}
.y19e{bottom:306.273333pt;}
.ya8{bottom:307.308933pt;}
.y1eb{bottom:307.494400pt;}
.y1c4{bottom:307.498133pt;}
.y122{bottom:307.748533pt;}
.y86{bottom:307.814400pt;}
.y16e{bottom:317.160933pt;}
.y62{bottom:318.670000pt;}
.y38{bottom:319.606667pt;}
.y10a{bottom:321.227333pt;}
.y15{bottom:321.540533pt;}
.y19d{bottom:322.273333pt;}
.yd0{bottom:323.268400pt;}
.y1ea{bottom:323.881067pt;}
.y1c3{bottom:323.883600pt;}
.y121{bottom:324.153200pt;}
.y61{bottom:334.683067pt;}
.y37{bottom:335.606667pt;}
.y16d{bottom:336.465333pt;}
.y14{bottom:337.540533pt;}
.y109{bottom:337.727600pt;}
.y19c{bottom:338.273333pt;}
.ya7{bottom:340.050533pt;}
.y168{bottom:340.143200pt;}
.y1e9{bottom:340.267733pt;}
.y1c2{bottom:340.268933pt;}
.y120{bottom:340.557867pt;}
.y85{bottom:340.633733pt;}
.ycf{bottom:341.568133pt;}
.y16c{bottom:350.265333pt;}
.y60{bottom:350.696000pt;}
.y36{bottom:351.606667pt;}
.y13{bottom:353.540533pt;}
.y108{bottom:354.227867pt;}
.y19b{bottom:354.273333pt;}
.y1e8{bottom:356.654400pt;}
.y11f{bottom:356.962533pt;}
.yce{bottom:359.867733pt;}
.y16a{bottom:366.607600pt;}
.y164{bottom:366.644133pt;}
.y5f{bottom:366.708933pt;}
.y35{bottom:367.606667pt;}
.y163{bottom:368.659733pt;}
.y12{bottom:369.540533pt;}
.y19a{bottom:370.273333pt;}
.y107{bottom:370.728000pt;}
.y1c1{bottom:373.039733pt;}
.y11e{bottom:373.367200pt;}
.y84{bottom:373.453200pt;}
.y165{bottom:377.996667pt;}
.ycd{bottom:378.167333pt;}
.y105{bottom:379.195067pt;}
.y169{bottom:380.407600pt;}
.y5e{bottom:382.722000pt;}
.y34{bottom:383.606667pt;}
.y11{bottom:385.540533pt;}
.y199{bottom:386.273333pt;}
.y106{bottom:387.228267pt;}
.y1e7{bottom:389.399467pt;}
.y1f9{bottom:389.425067pt;}
.y11d{bottom:389.771867pt;}
.y83{bottom:389.862933pt;}
.y104{bottom:391.461733pt;}
.ycc{bottom:396.467067pt;}
.y167{bottom:396.749867pt;}
.y5d{bottom:398.734933pt;}
.y33{bottom:399.606667pt;}
.y10{bottom:401.540533pt;}
.y198{bottom:402.273333pt;}
.y103{bottom:403.728400pt;}
.y1e6{bottom:405.786133pt;}
.y1c0{bottom:405.810400pt;}
.y11c{bottom:406.176533pt;}
.y82{bottom:406.272667pt;}
.y166{bottom:410.549867pt;}
.y5c{bottom:414.748000pt;}
.ycb{bottom:414.766667pt;}
.y32{bottom:415.606667pt;}
.yf{bottom:417.540533pt;}
.y197{bottom:418.273333pt;}
.y102{bottom:420.228667pt;}
.y1e5{bottom:422.172800pt;}
.y1bf{bottom:422.195867pt;}
.y81{bottom:422.682400pt;}
.y160{bottom:426.892133pt;}
.y15a{bottom:428.649600pt;}
.y5b{bottom:430.760933pt;}
.y31{bottom:431.606667pt;}
.yca{bottom:433.066400pt;}
.y162{bottom:433.792133pt;}
.y196{bottom:434.273333pt;}
.y101{bottom:436.728800pt;}
.y1e4{bottom:438.559467pt;}
.y1be{bottom:438.581200pt;}
.y80{bottom:439.092133pt;}
.y15f{bottom:440.692133pt;}
.y5a{bottom:446.773867pt;}
.y161{bottom:447.592133pt;}
.y30{bottom:447.606667pt;}
.ye{bottom:449.540533pt;}
.y195{bottom:450.273333pt;}
.yc9{bottom:451.366133pt;}
.y11b{bottom:452.319067pt;}
.y100{bottom:453.229067pt;}
.y15b{bottom:453.232667pt;}
.y15e{bottom:454.492133pt;}
.y1e3{bottom:454.946133pt;}
.y1f8{bottom:454.966667pt;}
.ya6{bottom:455.272400pt;}
.y59{bottom:462.786933pt;}
.y2f{bottom:463.606667pt;}
.y194{bottom:466.273333pt;}
.yc8{bottom:469.665733pt;}
.yff{bottom:469.729200pt;}
.yfc{bottom:470.163200pt;}
.y1e2{bottom:471.332800pt;}
.y1bd{bottom:471.352000pt;}
.ya5{bottom:471.643200pt;}
.y7f{bottom:471.911600pt;}
.y15d{bottom:477.734400pt;}
.y58{bottom:478.799867pt;}
.y2e{bottom:479.606667pt;}
.y193{bottom:482.273333pt;}
.yfb{bottom:482.429867pt;}
.y154{bottom:485.677867pt;}
.yfe{bottom:486.229467pt;}
.y1e1{bottom:487.719467pt;}
.y1f7{bottom:487.737333pt;}
.yc7{bottom:487.965467pt;}
.ya4{bottom:488.014133pt;}
.y7e{bottom:488.321333pt;}
.y15c{bottom:491.534400pt;}
.yfa{bottom:494.696533pt;}
.y72{bottom:494.812933pt;}
.y141{bottom:495.059733pt;}
.y2d{bottom:495.606667pt;}
.y192{bottom:498.273333pt;}
.yfd{bottom:502.729600pt;}
.y1e0{bottom:504.106133pt;}
.y1bc{bottom:504.122800pt;}
.ya3{bottom:504.384933pt;}
.y7d{bottom:504.731067pt;}
.yf9{bottom:506.963200pt;}
.y57{bottom:510.825867pt;}
.y140{bottom:511.059733pt;}
.y2c{bottom:511.606667pt;}
.yd{bottom:513.540533pt;}
.y191{bottom:514.273333pt;}
.y157{bottom:515.205467pt;}
.yf8{bottom:519.229867pt;}
.y1df{bottom:520.492800pt;}
.y1bb{bottom:520.508133pt;}
.ya2{bottom:520.755733pt;}
.y151{bottom:521.082933pt;}
.y159{bottom:522.105467pt;}
.yc6{bottom:524.564800pt;}
.yc{bottom:526.340533pt;}
.y71{bottom:526.838933pt;}
.y13f{bottom:527.059733pt;}
.y2b{bottom:527.606667pt;}
.y156{bottom:529.005467pt;}
.y190{bottom:530.273333pt;}
.yf7{bottom:535.730000pt;}
.y158{bottom:535.905467pt;}
.y1de{bottom:536.879467pt;}
.y1ba{bottom:536.893600pt;}
.ya1{bottom:537.126533pt;}
.y7c{bottom:537.550400pt;}
.y155{bottom:542.805467pt;}
.y56{bottom:542.851867pt;}
.yb{bottom:542.920000pt;}
.y13e{bottom:543.059733pt;}
.yb6{bottom:543.606667pt;}
.y18f{bottom:546.273333pt;}
.yf6{bottom:552.230267pt;}
.y1dd{bottom:553.266133pt;}
.y1b9{bottom:553.278933pt;}
.ya0{bottom:553.497333pt;}
.y55{bottom:558.864933pt;}
.y13d{bottom:559.059733pt;}
.y2a{bottom:559.606667pt;}
.yc5{bottom:561.164000pt;}
.y18e{bottom:562.273333pt;}
.y153{bottom:562.838800pt;}
.yf5{bottom:568.730533pt;}
.y1dc{bottom:569.652800pt;}
.y1b8{bottom:569.664267pt;}
.y9f{bottom:569.868267pt;}
.y7b{bottom:570.369867pt;}
.y54{bottom:574.877867pt;}
.y13c{bottom:575.059733pt;}
.yb5{bottom:575.606667pt;}
.y152{bottom:576.638800pt;}
.y18d{bottom:578.273333pt;}
.yc4{bottom:579.463733pt;}
.ya{bottom:581.320000pt;}
.yf4{bottom:585.230667pt;}
.y1db{bottom:586.039467pt;}
.y1b7{bottom:586.049733pt;}
.y9e{bottom:586.239067pt;}
.y53{bottom:590.890933pt;}
.y13b{bottom:591.059733pt;}
.y29{bottom:591.606667pt;}
.y18c{bottom:594.273333pt;}
.y150{bottom:597.033067pt;}
.yc3{bottom:597.763467pt;}
.yf1{bottom:597.931333pt;}
.y14f{bottom:601.371867pt;}
.yf3{bottom:601.730933pt;}
.y1da{bottom:602.426133pt;}
.y1b6{bottom:602.435067pt;}
.y9d{bottom:602.609867pt;}
.y52{bottom:606.903867pt;}
.y13a{bottom:607.059733pt;}
.y28{bottom:607.606667pt;}
.yf0{bottom:610.198000pt;}
.y18b{bottom:610.273333pt;}
.y14b{bottom:612.679467pt;}
.yc2{bottom:616.063067pt;}
.y7a{bottom:616.522667pt;}
.yf2{bottom:618.231067pt;}
.y1d9{bottom:618.812800pt;}
.y1b5{bottom:618.820533pt;}
.y9c{bottom:618.980667pt;}
.y14d{bottom:619.579467pt;}
.yef{bottom:622.464533pt;}
.y51{bottom:622.916800pt;}
.y139{bottom:623.059733pt;}
.y27{bottom:623.606667pt;}
.y9{bottom:626.120000pt;}
.y18a{bottom:626.273333pt;}
.y14a{bottom:626.479467pt;}
.y14c{bottom:633.379467pt;}
.yc1{bottom:634.362667pt;}
.yee{bottom:634.731333pt;}
.y1d8{bottom:635.199467pt;}
.y1b4{bottom:635.205867pt;}
.y9b{bottom:635.351467pt;}
.y50{bottom:638.929867pt;}
.y138{bottom:639.059733pt;}
.y26{bottom:639.606667pt;}
.y149{bottom:640.279467pt;}
.y189{bottom:642.273333pt;}
.y79{bottom:646.322933pt;}
.y8{bottom:648.520000pt;}
.yed{bottom:651.231467pt;}
.y1d7{bottom:651.586133pt;}
.y1b3{bottom:651.591333pt;}
.y9a{bottom:651.722267pt;}
.yc0{bottom:652.662400pt;}
.y4f{bottom:654.942800pt;}
.y137{bottom:655.059733pt;}
.y25{bottom:655.606667pt;}
.y14e{bottom:656.715733pt;}
.y188{bottom:658.273333pt;}
.y78{bottom:665.220800pt;}
.yec{bottom:667.731733pt;}
.y1d6{bottom:667.972800pt;}
.y1b2{bottom:667.976667pt;}
.y4e{bottom:670.955867pt;}
.ybf{bottom:670.962133pt;}
.y136{bottom:671.059733pt;}
.y24{bottom:671.606667pt;}
.y187{bottom:674.273333pt;}
.y77{bottom:684.118533pt;}
.yeb{bottom:684.232000pt;}
.y1d5{bottom:684.359467pt;}
.y1b1{bottom:684.362000pt;}
.y99{bottom:684.464000pt;}
.y4d{bottom:686.968800pt;}
.y135{bottom:687.059733pt;}
.y23{bottom:687.606667pt;}
.ybe{bottom:689.261733pt;}
.y186{bottom:690.273333pt;}
.y148{bottom:693.973733pt;}
.yea{bottom:700.732133pt;}
.y1d4{bottom:700.746133pt;}
.y1b0{bottom:700.747333pt;}
.y4c{bottom:702.981733pt;}
.y76{bottom:703.016133pt;}
.y134{bottom:703.059733pt;}
.y22{bottom:703.606667pt;}
.y185{bottom:706.273333pt;}
.ybd{bottom:707.561333pt;}
.y147{bottom:711.488133pt;}
.ye7{bottom:713.432800pt;}
.y1af{bottom:717.132800pt;}
.y98{bottom:717.205600pt;}
.ye9{bottom:717.232400pt;}
.y4b{bottom:718.994800pt;}
.y133{bottom:719.059733pt;}
.y21{bottom:719.606667pt;}
.y75{bottom:721.913733pt;}
.y184{bottom:722.273333pt;}
.ye6{bottom:725.699333pt;}
.ybc{bottom:725.861067pt;}
.y146{bottom:729.002400pt;}
.y1ae{bottom:733.518267pt;}
.y97{bottom:733.576400pt;}
.ye8{bottom:733.732533pt;}
.y4a{bottom:735.007867pt;}
.y132{bottom:735.059733pt;}
.y20{bottom:735.606667pt;}
.ye5{bottom:737.966000pt;}
.y183{bottom:738.273333pt;}
.ybb{bottom:744.160667pt;}
.y145{bottom:746.516800pt;}
.y1d3{bottom:749.899733pt;}
.y1ad{bottom:749.903600pt;}
.y96{bottom:749.947200pt;}
.ye4{bottom:750.232800pt;}
.y49{bottom:751.020800pt;}
.y131{bottom:751.059733pt;}
.y1f{bottom:751.606667pt;}
.y182{bottom:754.273333pt;}
.yba{bottom:762.460400pt;}
.y144{bottom:764.031067pt;}
.ye3{bottom:766.166000pt;}
.y74{bottom:766.240267pt;}
.y1d2{bottom:766.286400pt;}
.y1ac{bottom:766.288933pt;}
.y95{bottom:766.318133pt;}
.y48{bottom:767.033733pt;}
.y130{bottom:767.059733pt;}
.y1e{bottom:767.606667pt;}
.ye0{bottom:775.399067pt;}
.yb9{bottom:780.760133pt;}
.ye2{bottom:781.532400pt;}
.y143{bottom:781.545467pt;}
.y73{bottom:782.650000pt;}
.y1d1{bottom:782.673067pt;}
.y1ab{bottom:782.674267pt;}
.y94{bottom:782.688933pt;}
.y47{bottom:783.046667pt;}
.y12f{bottom:783.059733pt;}
.ydf{bottom:787.665733pt;}
.ye1{bottom:796.898667pt;}
.y46{bottom:799.059733pt;}
.y1d{bottom:799.606667pt;}
.y5{bottom:813.003867pt;}
.y4{bottom:827.403867pt;}
.y1{bottom:841.109067pt;}
.y3{bottom:841.803867pt;}
.y45{bottom:843.034933pt;}
.h3{height:30.958333pt;}
.h5{height:31.145833pt;}
.h8{height:32.000000pt;}
.hb{height:34.828125pt;}
.h4{height:34.968750pt;}
.ha{height:35.039062pt;}
.h10{height:35.971863pt;}
.hf{height:35.972396pt;}
.h9{height:38.697917pt;}
.h2{height:38.932292pt;}
.h7{height:40.000000pt;}
.hd{height:55.678633pt;}
.hc{height:55.679167pt;}
.h6{height:56.000000pt;}
.he{height:62.639063pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x19{left:69.921200pt;}
.x11{left:71.811067pt;}
.x4{left:74.108800pt;}
.x1e{left:81.996000pt;}
.x1d{left:83.372933pt;}
.xb{left:86.929067pt;}
.x2b{left:88.636400pt;}
.x6{left:90.551467pt;}
.x29{left:95.536400pt;}
.x25{left:102.436400pt;}
.x14{left:105.826800pt;}
.x2a{left:109.336400pt;}
.x2c{left:116.236400pt;}
.x26{left:131.794800pt;}
.x8{left:139.043733pt;}
.x1c{left:141.902400pt;}
.x1b{left:155.045467pt;}
.x7{left:160.403733pt;}
.x1f{left:162.305733pt;}
.x1a{left:164.631333pt;}
.x12{left:167.024000pt;}
.xf{left:182.122400pt;}
.x15{left:194.218000pt;}
.x9{left:199.327600pt;}
.x18{left:209.031467pt;}
.x2d{left:243.941733pt;}
.x10{left:246.793733pt;}
.x27{left:253.684400pt;}
.x5{left:257.138800pt;}
.x2{left:273.322800pt;}
.xe{left:277.395867pt;}
.xd{left:281.735733pt;}
.x2e{left:285.501333pt;}
.x16{left:287.594533pt;}
.xa{left:292.386133pt;}
.xc{left:294.052800pt;}
.x13{left:297.168000pt;}
.x20{left:310.684533pt;}
.x21{left:318.512667pt;}
.x17{left:358.767600pt;}
.x22{left:518.279467pt;}
.x24{left:538.101467pt;}
.x23{left:550.286667pt;}
.x1{left:554.472533pt;}
.x28{left:563.338400pt;}
}




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