
    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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_3dc9e372cc7cac55e34c87bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_9057d5535988c53c33115543.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_c19f0f07db8d2a721c5c3bc0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_231b07ad253b3b4065db838a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c1106f4aed9bc1c66dd60d49.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.144000;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_5fc415efd57d187d0e722727.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_6d6d2302611f2faa2d16e191.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.890000;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_8b6b3fa3a0981a35f0307e63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.889000;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_124baa5fbd1407624fd75f6e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853000;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_f8125016766d63b3360ad6e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.676000;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_35b11601e1b11fce965bcd0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400011px;}
.v4{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.611389px;}
.v5{vertical-align:15.000000px;}
.v1{vertical-align:24.000000px;}
.ls32{letter-spacing:-1.632000px;}
.ls3a{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.357000px;}
.ls62{letter-spacing:-0.306000px;}
.ls30{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.240000px;}
.ls60{letter-spacing:-0.204000px;}
.ls11{letter-spacing:-0.180000px;}
.ls5e{letter-spacing:-0.153000px;}
.ls2e{letter-spacing:-0.120000px;}
.ls61{letter-spacing:-0.102000px;}
.ls12{letter-spacing:-0.060000px;}
.ls5d{letter-spacing:-0.051000px;}
.ls38{letter-spacing:-0.042000px;}
.ls10{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.025495px;}
.ls2b{letter-spacing:0.050989px;}
.ls45{letter-spacing:0.051000px;}
.lsa{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.076484px;}
.ls48{letter-spacing:0.102000px;}
.ls26{letter-spacing:0.120000px;}
.ls3e{letter-spacing:0.150000px;}
.ls5b{letter-spacing:0.153000px;}
.ls65{letter-spacing:0.178500px;}
.lsf{letter-spacing:0.178791px;}
.ls3{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.204000px;}
.ls31{letter-spacing:0.210000px;}
.ls64{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.lse{letter-spacing:0.255000px;}
.ls43{letter-spacing:0.264000px;}
.ls28{letter-spacing:0.270000px;}
.ls49{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls59{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.330000px;}
.ls4c{letter-spacing:0.331500px;}
.ls46{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.366000px;}
.ls47{letter-spacing:0.408000px;}
.ls17{letter-spacing:0.420000px;}
.ls35{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.450000px;}
.ls67{letter-spacing:0.459000px;}
.ls16{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.486000px;}
.ls42{letter-spacing:0.510000px;}
.ls4f{letter-spacing:0.535500px;}
.ls7{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.561000px;}
.ls33{letter-spacing:0.570000px;}
.ls27{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.600000px;}
.ls5c{letter-spacing:0.612000px;}
.ls3f{letter-spacing:0.630000px;}
.ls25{letter-spacing:0.660000px;}
.ls54{letter-spacing:0.663000px;}
.ls56{letter-spacing:0.688500px;}
.ls37{letter-spacing:0.714000px;}
.ls1e{letter-spacing:0.720000px;}
.ls4d{letter-spacing:0.739500px;}
.ls57{letter-spacing:0.765000px;}
.ls21{letter-spacing:0.780000px;}
.ls44{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.840000px;}
.ls63{letter-spacing:0.867000px;}
.ls39{letter-spacing:0.882000px;}
.ls4{letter-spacing:0.900000px;}
.ls4b{letter-spacing:0.918000px;}
.ls9{letter-spacing:0.960000px;}
.ls4a{letter-spacing:0.969000px;}
.ls20{letter-spacing:0.990000px;}
.ls29{letter-spacing:1.020000px;}
.ls3d{letter-spacing:1.050000px;}
.ls4e{letter-spacing:1.071000px;}
.ls18{letter-spacing:1.080000px;}
.ls53{letter-spacing:1.122000px;}
.lsc{letter-spacing:1.140000px;}
.lsd{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.260000px;}
.ls58{letter-spacing:1.275000px;}
.ls1f{letter-spacing:1.320000px;}
.ls19{letter-spacing:1.380000px;}
.lsb{letter-spacing:1.440000px;}
.ls52{letter-spacing:1.479000px;}
.ls1a{letter-spacing:1.500000px;}
.ls24{letter-spacing:1.560000px;}
.ls51{letter-spacing:1.581000px;}
.ls40{letter-spacing:1.620000px;}
.ls66{letter-spacing:1.683000px;}
.ls1b{letter-spacing:1.710000px;}
.ls50{letter-spacing:1.734000px;}
.ls55{letter-spacing:1.836000px;}
.ls23{letter-spacing:1.860000px;}
.ls34{letter-spacing:1.980000px;}
.ls2f{letter-spacing:2.100000px;}
.ls0{letter-spacing:3.990000px;}
.ls2a{letter-spacing:230.112000px;}
.ls3c{letter-spacing:429.623980px;}
.ls3b{letter-spacing:441.762000px;}
.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;}
}
.ws72{word-spacing:-16.260000px;}
.ws71{word-spacing:-16.020000px;}
.ws51{word-spacing:-15.960000px;}
.ws2a{word-spacing:-15.840000px;}
.ws7c{word-spacing:-15.360000px;}
.ws29{word-spacing:-15.300000px;}
.ws6e{word-spacing:-15.180000px;}
.ws6d{word-spacing:-15.000000px;}
.ws8f{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.544000px;}
.wsb4{word-spacing:-13.719000px;}
.ws93{word-spacing:-13.005000px;}
.ws56{word-spacing:-12.750000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5{word-spacing:-11.520000px;}
.ws6c{word-spacing:-11.382000px;}
.ws6a{word-spacing:-11.214000px;}
.ws53{word-spacing:-10.710000px;}
.ws69{word-spacing:-10.608000px;}
.ws52{word-spacing:-10.500000px;}
.ws6b{word-spacing:-10.458000px;}
.ws8e{word-spacing:-10.302000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws3{word-spacing:-8.694000px;}
.ws62{word-spacing:-7.500000px;}
.ws68{word-spacing:-6.375000px;}
.ws7{word-spacing:-1.890000px;}
.wsa{word-spacing:-1.500000px;}
.ws4a{word-spacing:-1.440000px;}
.ws75{word-spacing:-1.380000px;}
.ws8c{word-spacing:-1.320000px;}
.ws92{word-spacing:-1.275000px;}
.ws89{word-spacing:-1.260000px;}
.wsb8{word-spacing:-1.224000px;}
.ws25{word-spacing:-1.200000px;}
.wsa9{word-spacing:-1.173000px;}
.ws21{word-spacing:-1.140000px;}
.wsbd{word-spacing:-1.122000px;}
.ws5e{word-spacing:-1.080000px;}
.wsa0{word-spacing:-1.071000px;}
.ws19{word-spacing:-1.020000px;}
.ws9e{word-spacing:-0.969000px;}
.ws1d{word-spacing:-0.960000px;}
.ws9d{word-spacing:-0.918000px;}
.ws17{word-spacing:-0.900000px;}
.ws50{word-spacing:-0.840000px;}
.wsab{word-spacing:-0.816000px;}
.ws41{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.720000px;}
.wsa2{word-spacing:-0.714000px;}
.ws1e{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.612000px;}
.ws23{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.570000px;}
.ws40{word-spacing:-0.540000px;}
.ws30{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.420000px;}
.ws4e{word-spacing:-0.360000px;}
.wsb9{word-spacing:-0.357000px;}
.wsa5{word-spacing:-0.306000px;}
.ws12{word-spacing:-0.300000px;}
.ws96{word-spacing:-0.264000px;}
.wsa7{word-spacing:-0.255000px;}
.ws36{word-spacing:-0.240000px;}
.ws2d{word-spacing:-0.180000px;}
.wsc{word-spacing:-0.120000px;}
.wsac{word-spacing:-0.102000px;}
.wsf{word-spacing:-0.060000px;}
.ws5b{word-spacing:-0.035692px;}
.ws5c{word-spacing:-0.025495px;}
.ws8{word-spacing:0.000000px;}
.wsb0{word-spacing:0.051000px;}
.ws2b{word-spacing:0.060000px;}
.wsba{word-spacing:0.102000px;}
.ws15{word-spacing:0.120000px;}
.ws49{word-spacing:0.180000px;}
.ws1b{word-spacing:0.240000px;}
.ws90{word-spacing:0.255000px;}
.ws48{word-spacing:0.300000px;}
.wsa8{word-spacing:0.306000px;}
.ws91{word-spacing:0.357000px;}
.ws16{word-spacing:0.360000px;}
.wsa3{word-spacing:0.408000px;}
.ws39{word-spacing:0.480000px;}
.ws76{word-spacing:0.600000px;}
.ws10{word-spacing:0.720000px;}
.ws95{word-spacing:0.816000px;}
.ws13{word-spacing:0.840000px;}
.wsd{word-spacing:0.900000px;}
.ws9b{word-spacing:0.918000px;}
.ws81{word-spacing:0.960000px;}
.wsb2{word-spacing:0.969000px;}
.ws2c{word-spacing:1.020000px;}
.wsae{word-spacing:1.071000px;}
.wsb{word-spacing:1.140000px;}
.ws99{word-spacing:1.173000px;}
.ws3b{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.ws9f{word-spacing:1.275000px;}
.ws2f{word-spacing:1.320000px;}
.ws97{word-spacing:1.326000px;}
.ws45{word-spacing:1.380000px;}
.ws4b{word-spacing:1.440000px;}
.wse{word-spacing:1.500000px;}
.ws94{word-spacing:1.530000px;}
.ws3c{word-spacing:1.560000px;}
.ws9a{word-spacing:1.581000px;}
.ws42{word-spacing:1.620000px;}
.ws4d{word-spacing:1.680000px;}
.ws98{word-spacing:1.734000px;}
.ws34{word-spacing:1.740000px;}
.wsaa{word-spacing:1.785000px;}
.ws1a{word-spacing:1.800000px;}
.ws4f{word-spacing:1.860000px;}
.ws5f{word-spacing:1.920000px;}
.wsb5{word-spacing:1.938000px;}
.ws1f{word-spacing:1.980000px;}
.ws8d{word-spacing:2.040000px;}
.ws46{word-spacing:2.100000px;}
.ws9c{word-spacing:2.142000px;}
.ws7b{word-spacing:2.220000px;}
.ws18{word-spacing:2.280000px;}
.wsbf{word-spacing:2.295000px;}
.ws3f{word-spacing:2.340000px;}
.wsbb{word-spacing:2.397000px;}
.ws80{word-spacing:2.400000px;}
.ws47{word-spacing:2.460000px;}
.wsb3{word-spacing:2.499000px;}
.ws60{word-spacing:2.520000px;}
.wsa6{word-spacing:2.550000px;}
.ws1c{word-spacing:2.580000px;}
.ws38{word-spacing:2.700000px;}
.ws86{word-spacing:2.760000px;}
.ws67{word-spacing:2.805000px;}
.ws65{word-spacing:2.880000px;}
.ws85{word-spacing:2.940000px;}
.ws3a{word-spacing:3.000000px;}
.wsbc{word-spacing:3.009000px;}
.wsa4{word-spacing:3.060000px;}
.ws35{word-spacing:3.120000px;}
.wsb1{word-spacing:3.162000px;}
.ws5d{word-spacing:3.180000px;}
.wsaf{word-spacing:3.213000px;}
.ws2e{word-spacing:3.240000px;}
.ws88{word-spacing:3.300000px;}
.ws43{word-spacing:3.360000px;}
.wsb7{word-spacing:3.366000px;}
.wsad{word-spacing:3.417000px;}
.ws22{word-spacing:3.480000px;}
.ws63{word-spacing:3.540000px;}
.wsb6{word-spacing:3.570000px;}
.ws61{word-spacing:3.600000px;}
.ws8b{word-spacing:3.660000px;}
.ws24{word-spacing:3.840000px;}
.ws26{word-spacing:3.900000px;}
.ws8a{word-spacing:4.020000px;}
.ws73{word-spacing:4.080000px;}
.ws3d{word-spacing:4.140000px;}
.ws87{word-spacing:4.200000px;}
.ws37{word-spacing:4.260000px;}
.ws79{word-spacing:4.380000px;}
.ws7a{word-spacing:4.500000px;}
.ws74{word-spacing:4.560000px;}
.ws31{word-spacing:4.620000px;}
.ws77{word-spacing:4.740000px;}
.ws78{word-spacing:4.800000px;}
.ws20{word-spacing:4.860000px;}
.ws32{word-spacing:5.160000px;}
.ws6f{word-spacing:5.520000px;}
.ws44{word-spacing:5.700000px;}
.ws33{word-spacing:6.240000px;}
.wsbe{word-spacing:6.477000px;}
.ws3e{word-spacing:6.960000px;}
.ws70{word-spacing:7.680000px;}
.ws64{word-spacing:8.040000px;}
.ws84{word-spacing:11.577000px;}
.ws66{word-spacing:11.730000px;}
.ws83{word-spacing:13.260000px;}
.wsc0{word-spacing:13.515000px;}
.ws82{word-spacing:13.617000px;}
.wsc1{word-spacing:17.595000px;}
.ws28{word-spacing:72.267000px;}
.ws5a{word-spacing:152.235000px;}
.ws59{word-spacing:179.877000px;}
.ws58{word-spacing:189.057000px;}
.ws54{word-spacing:232.203000px;}
.ws55{word-spacing:270.815100px;}
.ws57{word-spacing:352.920000px;}
.ws7d{word-spacing:385.917000px;}
.ws7f{word-spacing:399.840000px;}
.ws7e{word-spacing:400.145986px;}
._d{margin-left:-2959.377061px;}
._a{margin-left:-72.675000px;}
._16{margin-left:-20.282341px;}
._12{margin-left:-18.887727px;}
._7{margin-left:-16.575000px;}
._10{margin-left:-8.674870px;}
._e{margin-left:-7.145428px;}
._c{margin-left:-5.057391px;}
._4{margin-left:-3.904172px;}
._3{margin-left:-2.666400px;}
._0{margin-left:-1.632000px;}
._2{width:1.073391px;}
._1{width:2.102400px;}
._6{width:3.222000px;}
._5{width:4.879218px;}
._f{width:5.970000px;}
._14{width:10.608000px;}
._20{width:11.679000px;}
._21{width:14.433000px;}
._11{width:16.598072px;}
._8{width:18.360000px;}
._15{width:20.400000px;}
._9{width:54.621000px;}
._13{width:164.985000px;}
._17{width:175.032000px;}
._18{width:398.667000px;}
._1e{width:412.895986px;}
._1b{width:421.923000px;}
._1a{width:427.278000px;}
._1d{width:433.143000px;}
._19{width:461.295000px;}
._1c{width:472.515000px;}
._1f{width:495.465000px;}
._b{width:1887.867064px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:25.494600px;}
.fsb{font-size:35.692200px;}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:50.988600px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:2.190308px;}
.yc3{bottom:2.190445px;}
.yc0{bottom:9.345291px;}
.yc2{bottom:15.460647px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y34{bottom:112.944300px;}
.y89{bottom:113.415298px;}
.y66{bottom:113.415344px;}
.y2e{bottom:114.211349px;}
.yed{bottom:114.564285px;}
.yfc{bottom:114.564308px;}
.y12c{bottom:114.735260px;}
.y1a1{bottom:116.755770px;}
.y15f{bottom:121.753814px;}
.y33{bottom:127.938300px;}
.y1a0{bottom:131.749770px;}
.y88{bottom:132.165298px;}
.y65{bottom:132.165344px;}
.y2d{bottom:132.961349px;}
.yec{bottom:133.314285px;}
.yfb{bottom:133.314308px;}
.y12b{bottom:133.485260px;}
.y15e{bottom:136.747814px;}
.y19f{bottom:146.743770px;}
.y32{bottom:148.032303px;}
.y87{bottom:150.915298px;}
.y64{bottom:150.915344px;}
.y2c{bottom:151.711349px;}
.y15d{bottom:151.741814px;}
.yeb{bottom:152.064285px;}
.yfa{bottom:152.064308px;}
.y12a{bottom:152.235260px;}
.y19e{bottom:161.737770px;}
.y15c{bottom:166.735814px;}
.y86{bottom:169.665298px;}
.y63{bottom:169.665344px;}
.y2b{bottom:170.461349px;}
.yea{bottom:170.814285px;}
.yf9{bottom:170.814308px;}
.y129{bottom:170.985260px;}
.y31{bottom:173.033404px;}
.y19d{bottom:176.731770px;}
.y15b{bottom:181.729814px;}
.y30{bottom:188.027404px;}
.y85{bottom:188.415298px;}
.y62{bottom:188.415344px;}
.y2a{bottom:189.211349px;}
.ye9{bottom:189.564285px;}
.yf8{bottom:189.564308px;}
.y128{bottom:189.735260px;}
.y19c{bottom:191.725770px;}
.y15a{bottom:196.723814px;}
.y19b{bottom:206.719770px;}
.y84{bottom:207.165298px;}
.y61{bottom:207.165344px;}
.y29{bottom:207.961349px;}
.ye8{bottom:208.314285px;}
.yf7{bottom:208.314308px;}
.y127{bottom:208.485260px;}
.y159{bottom:211.717814px;}
.y2f{bottom:218.844154px;}
.y19a{bottom:221.713770px;}
.y83{bottom:225.915298px;}
.y60{bottom:225.915344px;}
.y28{bottom:226.711349px;}
.y158{bottom:226.711814px;}
.ye7{bottom:227.064285px;}
.yf6{bottom:227.064308px;}
.y126{bottom:227.235260px;}
.y199{bottom:236.707770px;}
.ycc{bottom:239.593046px;}
.y157{bottom:241.705814px;}
.y82{bottom:244.665298px;}
.y5f{bottom:244.665344px;}
.y27{bottom:245.461349px;}
.ye6{bottom:245.814285px;}
.yf5{bottom:245.814308px;}
.y125{bottom:245.985260px;}
.y198{bottom:251.701770px;}
.ycb{bottom:254.587046px;}
.y156{bottom:256.699814px;}
.y81{bottom:263.415298px;}
.y5e{bottom:263.415344px;}
.y25{bottom:264.211349px;}
.ye5{bottom:264.564285px;}
.yf4{bottom:264.564308px;}
.y124{bottom:264.735260px;}
.y197{bottom:266.695770px;}
.yca{bottom:269.581046px;}
.y155{bottom:271.693814px;}
.y196{bottom:281.689770px;}
.y80{bottom:282.165298px;}
.y5d{bottom:282.165344px;}
.y24{bottom:282.961349px;}
.ye4{bottom:283.314285px;}
.yf3{bottom:283.314308px;}
.y123{bottom:283.485260px;}
.yc9{bottom:284.575046px;}
.y154{bottom:286.687814px;}
.y195{bottom:296.683770px;}
.yc8{bottom:299.569046px;}
.y7f{bottom:300.915298px;}
.y5c{bottom:300.915344px;}
.y153{bottom:301.681814px;}
.y23{bottom:301.711349px;}
.ye3{bottom:302.064285px;}
.yf2{bottom:302.064308px;}
.y122{bottom:302.235260px;}
.y194{bottom:311.677770px;}
.yc7{bottom:314.563046px;}
.y152{bottom:316.675814px;}
.y7e{bottom:319.665298px;}
.y5b{bottom:319.665344px;}
.y22{bottom:320.461349px;}
.ye2{bottom:320.814285px;}
.yf1{bottom:320.814308px;}
.y121{bottom:320.985260px;}
.yd7{bottom:323.023803px;}
.ybf{bottom:324.307503px;}
.y193{bottom:326.671770px;}
.yc4{bottom:327.537460px;}
.y151{bottom:331.669814px;}
.yc6{bottom:333.649796px;}
.yc1{bottom:333.652794px;}
.ybe{bottom:333.671550px;}
.yd6{bottom:338.017803px;}
.y7d{bottom:338.415298px;}
.y5a{bottom:338.415344px;}
.y21{bottom:339.211349px;}
.ye1{bottom:339.564285px;}
.yf0{bottom:339.564308px;}
.y120{bottom:339.735260px;}
.y192{bottom:341.665770px;}
.y150{bottom:346.663814px;}
.ybd{bottom:348.665550px;}
.yd5{bottom:353.011803px;}
.y191{bottom:356.659770px;}
.y7c{bottom:357.165298px;}
.y59{bottom:357.165344px;}
.y20{bottom:357.961349px;}
.ye0{bottom:358.314285px;}
.yef{bottom:358.314308px;}
.y11f{bottom:358.485260px;}
.y14f{bottom:361.657814px;}
.ybc{bottom:363.659550px;}
.yd4{bottom:368.005803px;}
.y190{bottom:371.653770px;}
.y7b{bottom:375.915298px;}
.y58{bottom:375.915344px;}
.y14e{bottom:376.651814px;}
.y1f{bottom:376.711349px;}
.ydf{bottom:377.064285px;}
.yee{bottom:377.064308px;}
.y11e{bottom:377.235260px;}
.ybb{bottom:378.653550px;}
.yd3{bottom:382.999803px;}
.y18f{bottom:386.647770px;}
.y14d{bottom:391.645814px;}
.yba{bottom:393.647550px;}
.y7a{bottom:394.665298px;}
.y57{bottom:394.665344px;}
.y1e{bottom:395.461349px;}
.yde{bottom:395.814285px;}
.y11d{bottom:395.985260px;}
.yd2{bottom:397.993803px;}
.y18e{bottom:401.641770px;}
.y14c{bottom:406.639814px;}
.yb9{bottom:408.641550px;}
.yd1{bottom:412.987803px;}
.y79{bottom:413.415298px;}
.y56{bottom:413.415344px;}
.y1d{bottom:414.211349px;}
.ydd{bottom:414.564285px;}
.y11c{bottom:414.735260px;}
.y18d{bottom:416.635770px;}
.y14b{bottom:421.633814px;}
.yb8{bottom:423.635550px;}
.yd0{bottom:427.981803px;}
.y18c{bottom:431.629770px;}
.y78{bottom:432.165298px;}
.y55{bottom:432.165344px;}
.y26{bottom:432.961349px;}
.ydc{bottom:433.314285px;}
.y11b{bottom:433.485260px;}
.y14a{bottom:436.627814px;}
.yb7{bottom:438.629550px;}
.ycf{bottom:442.975803px;}
.y18b{bottom:446.623770px;}
.y77{bottom:450.915298px;}
.y54{bottom:450.915344px;}
.y149{bottom:451.621814px;}
.y1c{bottom:451.711349px;}
.ydb{bottom:452.064285px;}
.y11a{bottom:452.235260px;}
.yb6{bottom:453.623550px;}
.yce{bottom:457.969803px;}
.y18a{bottom:461.617770px;}
.y148{bottom:466.615814px;}
.y76{bottom:469.665298px;}
.y53{bottom:469.665344px;}
.yda{bottom:470.814285px;}
.y119{bottom:470.985260px;}
.y189{bottom:476.611770px;}
.y75{bottom:488.415298px;}
.y52{bottom:488.415344px;}
.yd9{bottom:489.564285px;}
.y118{bottom:489.735260px;}
.y188{bottom:491.605770px;}
.y147{bottom:500.365814px;}
.y187{bottom:506.599770px;}
.y74{bottom:507.165298px;}
.y51{bottom:507.165344px;}
.yaf{bottom:507.272124px;}
.y1b{bottom:507.961395px;}
.yd8{bottom:508.314285px;}
.yaa{bottom:508.485168px;}
.ycd{bottom:508.485260px;}
.y186{bottom:521.593770px;}
.y73{bottom:525.915298px;}
.y50{bottom:525.915344px;}
.yae{bottom:526.524624px;}
.ya9{bottom:527.235260px;}
.y185{bottom:536.587770px;}
.yad{bottom:541.518624px;}
.y72{bottom:544.665298px;}
.y4f{bottom:544.665344px;}
.y1a{bottom:545.461395px;}
.ya8{bottom:545.985260px;}
.y184{bottom:551.581770px;}
.y71{bottom:563.415298px;}
.y4e{bottom:563.415344px;}
.y19{bottom:564.211395px;}
.ya7{bottom:564.735260px;}
.y117{bottom:565.800907px;}
.y10e{bottom:565.816185px;}
.y183{bottom:566.575770px;}
.y146{bottom:568.579760px;}
.yb5{bottom:570.222300px;}
.y182{bottom:581.569770px;}
.y70{bottom:582.165298px;}
.y4d{bottom:582.165344px;}
.y18{bottom:582.961395px;}
.ya6{bottom:583.485260px;}
.y145{bottom:583.573760px;}
.yb4{bottom:589.015800px;}
.y113{bottom:593.736160px;}
.y181{bottom:596.563770px;}
.y144{bottom:598.567760px;}
.y6f{bottom:600.915298px;}
.y4c{bottom:600.915344px;}
.y17{bottom:601.711395px;}
.ya5{bottom:602.235260px;}
.yb3{bottom:607.732800px;}
.y180{bottom:611.557770px;}
.y112{bottom:612.529660px;}
.y143{bottom:613.561760px;}
.y6e{bottom:619.665298px;}
.y4b{bottom:619.665344px;}
.y16{bottom:620.461395px;}
.ya4{bottom:620.985260px;}
.yb2{bottom:626.449800px;}
.y17f{bottom:626.551770px;}
.y142{bottom:628.555760px;}
.y111{bottom:631.246660px;}
.y6d{bottom:638.415298px;}
.y4a{bottom:638.415344px;}
.y15{bottom:639.211395px;}
.ya3{bottom:639.735260px;}
.y17e{bottom:641.545770px;}
.y141{bottom:643.549760px;}
.yb1{bottom:645.166800px;}
.y110{bottom:649.963660px;}
.y17d{bottom:656.539770px;}
.y6c{bottom:657.165298px;}
.y49{bottom:657.165344px;}
.y14{bottom:657.961395px;}
.ya2{bottom:658.485260px;}
.y140{bottom:658.543760px;}
.y17c{bottom:671.533770px;}
.yb0{bottom:673.255050px;}
.y13f{bottom:673.537760px;}
.y48{bottom:675.915344px;}
.y13{bottom:676.711395px;}
.ya1{bottom:677.235260px;}
.y10f{bottom:678.051910px;}
.y17b{bottom:686.527770px;}
.y13e{bottom:688.531760px;}
.y6b{bottom:694.665298px;}
.y47{bottom:694.665344px;}
.y12{bottom:695.461395px;}
.ya0{bottom:695.985260px;}
.yac{bottom:698.751621px;}
.y17a{bottom:701.521770px;}
.y13d{bottom:703.525760px;}
.y116{bottom:703.539157px;}
.y10d{bottom:703.554435px;}
.y46{bottom:713.415344px;}
.yab{bottom:713.745621px;}
.y11{bottom:714.211395px;}
.y9f{bottom:714.735260px;}
.y179{bottom:716.515770px;}
.y13c{bottom:718.519760px;}
.y115{bottom:718.533157px;}
.y10c{bottom:718.548435px;}
.y178{bottom:731.509770px;}
.y45{bottom:732.165344px;}
.y10{bottom:732.961395px;}
.y9e{bottom:733.485260px;}
.y13b{bottom:733.513760px;}
.y114{bottom:733.527157px;}
.y10b{bottom:733.542435px;}
.y177{bottom:746.503770px;}
.y44{bottom:750.915344px;}
.yf{bottom:751.711395px;}
.y9d{bottom:752.235260px;}
.y1b8{bottom:761.356823px;}
.y176{bottom:761.497770px;}
.y13a{bottom:763.514510px;}
.y43{bottom:769.665344px;}
.ye{bottom:770.461395px;}
.y99{bottom:770.985260px;}
.y1b7{bottom:776.350823px;}
.y175{bottom:776.491770px;}
.y139{bottom:778.508510px;}
.y6a{bottom:788.415344px;}
.yd{bottom:789.211395px;}
.y98{bottom:789.735260px;}
.y1b6{bottom:791.344823px;}
.y174{bottom:791.485770px;}
.y138{bottom:793.502510px;}
.y1b5{bottom:806.338823px;}
.y173{bottom:806.479770px;}
.y42{bottom:807.165344px;}
.yc{bottom:807.961395px;}
.y97{bottom:808.485260px;}
.y137{bottom:808.496510px;}
.y1b4{bottom:821.332823px;}
.y1ca{bottom:821.358324px;}
.y172{bottom:821.473770px;}
.y136{bottom:823.490510px;}
.y69{bottom:825.915344px;}
.y9c{bottom:827.235260px;}
.y1b3{bottom:836.326823px;}
.y1c9{bottom:836.352324px;}
.y171{bottom:836.467770px;}
.y41{bottom:844.665344px;}
.y96{bottom:845.985260px;}
.y1b2{bottom:851.320823px;}
.y170{bottom:851.461770px;}
.yb{bottom:852.144153px;}
.y135{bottom:853.491260px;}
.y68{bottom:863.415344px;}
.y9b{bottom:864.735260px;}
.y1b1{bottom:866.314823px;}
.y1c8{bottom:866.442323px;}
.y16f{bottom:866.455770px;}
.ya{bottom:867.138153px;}
.y134{bottom:868.485260px;}
.y1b0{bottom:881.308823px;}
.y1c7{bottom:881.436323px;}
.y16e{bottom:881.449770px;}
.y67{bottom:882.165344px;}
.y9a{bottom:883.485260px;}
.y10a{bottom:895.180844px;}
.y1af{bottom:896.302823px;}
.y1c6{bottom:896.430323px;}
.y16d{bottom:896.443770px;}
.y133{bottom:898.485260px;}
.y40{bottom:900.915344px;}
.y95{bottom:902.235260px;}
.y9{bottom:909.738190px;}
.y109{bottom:910.174844px;}
.y1ae{bottom:911.296823px;}
.y1c5{bottom:911.424323px;}
.y16c{bottom:911.437770px;}
.y3f{bottom:919.665344px;}
.y94{bottom:920.985260px;}
.y108{bottom:925.168844px;}
.y1ad{bottom:926.290823px;}
.y1c4{bottom:926.418323px;}
.y16b{bottom:926.431770px;}
.y132{bottom:932.258510px;}
.y3e{bottom:938.415344px;}
.y93{bottom:939.735260px;}
.y107{bottom:940.162844px;}
.y1ac{bottom:941.284823px;}
.y1c3{bottom:941.412323px;}
.y16a{bottom:941.425770px;}
.y131{bottom:947.252510px;}
.y8{bottom:954.424622px;}
.y106{bottom:955.156844px;}
.y1ab{bottom:956.278823px;}
.y1c2{bottom:956.406323px;}
.y169{bottom:956.419770px;}
.y3d{bottom:957.165344px;}
.y92{bottom:958.485260px;}
.y130{bottom:962.246510px;}
.y105{bottom:970.150844px;}
.y1aa{bottom:971.272823px;}
.y1c1{bottom:971.400323px;}
.y168{bottom:971.413770px;}
.y3c{bottom:975.915344px;}
.y91{bottom:977.235260px;}
.y12f{bottom:977.240510px;}
.y7{bottom:981.424622px;}
.y104{bottom:985.144844px;}
.y1a9{bottom:986.266823px;}
.y1c0{bottom:986.394323px;}
.y167{bottom:986.407770px;}
.y3b{bottom:994.665344px;}
.y90{bottom:995.985260px;}
.y103{bottom:1000.138844px;}
.y1a8{bottom:1001.260823px;}
.y1bf{bottom:1001.388323px;}
.y166{bottom:1001.401770px;}
.y12e{bottom:1007.241260px;}
.y6{bottom:1008.424622px;}
.y3a{bottom:1013.415344px;}
.y8f{bottom:1014.735260px;}
.y102{bottom:1015.132844px;}
.y1a7{bottom:1016.254823px;}
.y1be{bottom:1016.382323px;}
.y165{bottom:1016.395770px;}
.y12d{bottom:1022.235260px;}
.y101{bottom:1030.126844px;}
.y1a6{bottom:1031.248823px;}
.y1bd{bottom:1031.376323px;}
.y164{bottom:1031.389770px;}
.y39{bottom:1032.165344px;}
.y8e{bottom:1033.485260px;}
.y100{bottom:1045.120844px;}
.y1a5{bottom:1046.242823px;}
.y1bc{bottom:1046.370323px;}
.y163{bottom:1046.383770px;}
.y38{bottom:1050.915344px;}
.y8d{bottom:1052.235260px;}
.yff{bottom:1060.114844px;}
.y1a4{bottom:1061.236823px;}
.y1bb{bottom:1061.364323px;}
.y162{bottom:1061.377770px;}
.y37{bottom:1069.665344px;}
.y8c{bottom:1070.985260px;}
.yfe{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y1a3{bottom:1076.230823px;}
.y1ba{bottom:1076.358323px;}
.y161{bottom:1076.371770px;}
.y36{bottom:1088.415344px;}
.y8b{bottom:1089.735260px;}
.yfd{bottom:1090.102844px;}
.y1a2{bottom:1091.224823px;}
.y1b9{bottom:1091.352323px;}
.y160{bottom:1091.365770px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y35{bottom:1127.482361px;}
.y8a{bottom:1127.482544px;}
.h13{height:19.349999px;}
.h16{height:24.377773px;}
.he{height:25.204199px;}
.h17{height:27.228158px;}
.h15{height:34.468294px;}
.h14{height:34.825214px;}
.hc{height:36.006000px;}
.hd{height:36.855469px;}
.h2{height:42.048000px;}
.h9{height:42.360000px;}
.h4{height:44.676000px;}
.h12{height:45.186000px;}
.ha{height:53.160000px;}
.h10{height:53.651634px;}
.h11{height:53.652000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.hf{height:59.004000px;}
.h8{height:59.340000px;}
.h7{height:64.866000px;}
.hb{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:76.770000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:23.569359px;}
.xe{left:47.936703px;}
.x11{left:72.520351px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545402px;}
.x7{left:97.796100px;}
.x15{left:102.048152px;}
.xc{left:122.218494px;}
.xd{left:131.720695px;}
.xb{left:142.568104px;}
.x10{left:150.026550px;}
.x12{left:198.988358px;}
.x13{left:239.087860px;}
.x5{left:459.215389px;}
.x6{left:476.225399px;}
.x16{left:484.688411px;}
.x14{left:624.802643px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xa{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v4{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.543457pt;}
.v5{vertical-align:13.333333pt;}
.v1{vertical-align:21.333333pt;}
.ls32{letter-spacing:-1.450667pt;}
.ls3a{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.317333pt;}
.ls62{letter-spacing:-0.272000pt;}
.ls30{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls60{letter-spacing:-0.181333pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls5e{letter-spacing:-0.136000pt;}
.ls2e{letter-spacing:-0.106667pt;}
.ls61{letter-spacing:-0.090667pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls5d{letter-spacing:-0.045333pt;}
.ls38{letter-spacing:-0.037333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.022662pt;}
.ls2b{letter-spacing:0.045324pt;}
.ls45{letter-spacing:0.045333pt;}
.lsa{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.067986pt;}
.ls48{letter-spacing:0.090667pt;}
.ls26{letter-spacing:0.106667pt;}
.ls3e{letter-spacing:0.133333pt;}
.ls5b{letter-spacing:0.136000pt;}
.ls65{letter-spacing:0.158667pt;}
.lsf{letter-spacing:0.158926pt;}
.ls3{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.181333pt;}
.ls31{letter-spacing:0.186667pt;}
.ls64{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.226667pt;}
.ls43{letter-spacing:0.234667pt;}
.ls28{letter-spacing:0.240000pt;}
.ls49{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls59{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls4c{letter-spacing:0.294667pt;}
.ls46{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.325333pt;}
.ls47{letter-spacing:0.362667pt;}
.ls17{letter-spacing:0.373333pt;}
.ls35{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.400000pt;}
.ls67{letter-spacing:0.408000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.432000pt;}
.ls42{letter-spacing:0.453333pt;}
.ls4f{letter-spacing:0.476000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.498667pt;}
.ls33{letter-spacing:0.506667pt;}
.ls27{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls5c{letter-spacing:0.544000pt;}
.ls3f{letter-spacing:0.560000pt;}
.ls25{letter-spacing:0.586667pt;}
.ls54{letter-spacing:0.589333pt;}
.ls56{letter-spacing:0.612000pt;}
.ls37{letter-spacing:0.634667pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls4d{letter-spacing:0.657333pt;}
.ls57{letter-spacing:0.680000pt;}
.ls21{letter-spacing:0.693333pt;}
.ls44{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls63{letter-spacing:0.770667pt;}
.ls39{letter-spacing:0.784000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls4b{letter-spacing:0.816000pt;}
.ls9{letter-spacing:0.853333pt;}
.ls4a{letter-spacing:0.861333pt;}
.ls20{letter-spacing:0.880000pt;}
.ls29{letter-spacing:0.906667pt;}
.ls3d{letter-spacing:0.933333pt;}
.ls4e{letter-spacing:0.952000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls53{letter-spacing:0.997333pt;}
.lsc{letter-spacing:1.013333pt;}
.lsd{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.120000pt;}
.ls58{letter-spacing:1.133333pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls19{letter-spacing:1.226667pt;}
.lsb{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.314667pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls24{letter-spacing:1.386667pt;}
.ls51{letter-spacing:1.405333pt;}
.ls40{letter-spacing:1.440000pt;}
.ls66{letter-spacing:1.496000pt;}
.ls1b{letter-spacing:1.520000pt;}
.ls50{letter-spacing:1.541333pt;}
.ls55{letter-spacing:1.632000pt;}
.ls23{letter-spacing:1.653333pt;}
.ls34{letter-spacing:1.760000pt;}
.ls2f{letter-spacing:1.866667pt;}
.ls0{letter-spacing:3.546667pt;}
.ls2a{letter-spacing:204.544000pt;}
.ls3c{letter-spacing:381.887982pt;}
.ls3b{letter-spacing:392.677333pt;}
.ws72{word-spacing:-14.453333pt;}
.ws71{word-spacing:-14.240000pt;}
.ws51{word-spacing:-14.186667pt;}
.ws2a{word-spacing:-14.080000pt;}
.ws7c{word-spacing:-13.653333pt;}
.ws29{word-spacing:-13.600000pt;}
.ws6e{word-spacing:-13.493333pt;}
.ws6d{word-spacing:-13.333333pt;}
.ws8f{word-spacing:-13.184000pt;}
.ws6{word-spacing:-12.928000pt;}
.wsb4{word-spacing:-12.194667pt;}
.ws93{word-spacing:-11.560000pt;}
.ws56{word-spacing:-11.333333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws6c{word-spacing:-10.117333pt;}
.ws6a{word-spacing:-9.968000pt;}
.ws53{word-spacing:-9.520000pt;}
.ws69{word-spacing:-9.429333pt;}
.ws52{word-spacing:-9.333333pt;}
.ws6b{word-spacing:-9.296000pt;}
.ws8e{word-spacing:-9.157333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws3{word-spacing:-7.728000pt;}
.ws62{word-spacing:-6.666667pt;}
.ws68{word-spacing:-5.666667pt;}
.ws7{word-spacing:-1.680000pt;}
.wsa{word-spacing:-1.333333pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws75{word-spacing:-1.226667pt;}
.ws8c{word-spacing:-1.173333pt;}
.ws92{word-spacing:-1.133333pt;}
.ws89{word-spacing:-1.120000pt;}
.wsb8{word-spacing:-1.088000pt;}
.ws25{word-spacing:-1.066667pt;}
.wsa9{word-spacing:-1.042667pt;}
.ws21{word-spacing:-1.013333pt;}
.wsbd{word-spacing:-0.997333pt;}
.ws5e{word-spacing:-0.960000pt;}
.wsa0{word-spacing:-0.952000pt;}
.ws19{word-spacing:-0.906667pt;}
.ws9e{word-spacing:-0.861333pt;}
.ws1d{word-spacing:-0.853333pt;}
.ws9d{word-spacing:-0.816000pt;}
.ws17{word-spacing:-0.800000pt;}
.ws50{word-spacing:-0.746667pt;}
.wsab{word-spacing:-0.725333pt;}
.ws41{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.640000pt;}
.wsa2{word-spacing:-0.634667pt;}
.ws1e{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.544000pt;}
.ws23{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.506667pt;}
.ws40{word-spacing:-0.480000pt;}
.ws30{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.373333pt;}
.ws4e{word-spacing:-0.320000pt;}
.wsb9{word-spacing:-0.317333pt;}
.wsa5{word-spacing:-0.272000pt;}
.ws12{word-spacing:-0.266667pt;}
.ws96{word-spacing:-0.234667pt;}
.wsa7{word-spacing:-0.226667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws2d{word-spacing:-0.160000pt;}
.wsc{word-spacing:-0.106667pt;}
.wsac{word-spacing:-0.090667pt;}
.wsf{word-spacing:-0.053333pt;}
.ws5b{word-spacing:-0.031726pt;}
.ws5c{word-spacing:-0.022662pt;}
.ws8{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.045333pt;}
.ws2b{word-spacing:0.053333pt;}
.wsba{word-spacing:0.090667pt;}
.ws15{word-spacing:0.106667pt;}
.ws49{word-spacing:0.160000pt;}
.ws1b{word-spacing:0.213333pt;}
.ws90{word-spacing:0.226667pt;}
.ws48{word-spacing:0.266667pt;}
.wsa8{word-spacing:0.272000pt;}
.ws91{word-spacing:0.317333pt;}
.ws16{word-spacing:0.320000pt;}
.wsa3{word-spacing:0.362667pt;}
.ws39{word-spacing:0.426667pt;}
.ws76{word-spacing:0.533333pt;}
.ws10{word-spacing:0.640000pt;}
.ws95{word-spacing:0.725333pt;}
.ws13{word-spacing:0.746667pt;}
.wsd{word-spacing:0.800000pt;}
.ws9b{word-spacing:0.816000pt;}
.ws81{word-spacing:0.853333pt;}
.wsb2{word-spacing:0.861333pt;}
.ws2c{word-spacing:0.906667pt;}
.wsae{word-spacing:0.952000pt;}
.wsb{word-spacing:1.013333pt;}
.ws99{word-spacing:1.042667pt;}
.ws3b{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.ws9f{word-spacing:1.133333pt;}
.ws2f{word-spacing:1.173333pt;}
.ws97{word-spacing:1.178667pt;}
.ws45{word-spacing:1.226667pt;}
.ws4b{word-spacing:1.280000pt;}
.wse{word-spacing:1.333333pt;}
.ws94{word-spacing:1.360000pt;}
.ws3c{word-spacing:1.386667pt;}
.ws9a{word-spacing:1.405333pt;}
.ws42{word-spacing:1.440000pt;}
.ws4d{word-spacing:1.493333pt;}
.ws98{word-spacing:1.541333pt;}
.ws34{word-spacing:1.546667pt;}
.wsaa{word-spacing:1.586667pt;}
.ws1a{word-spacing:1.600000pt;}
.ws4f{word-spacing:1.653333pt;}
.ws5f{word-spacing:1.706667pt;}
.wsb5{word-spacing:1.722667pt;}
.ws1f{word-spacing:1.760000pt;}
.ws8d{word-spacing:1.813333pt;}
.ws46{word-spacing:1.866667pt;}
.ws9c{word-spacing:1.904000pt;}
.ws7b{word-spacing:1.973333pt;}
.ws18{word-spacing:2.026667pt;}
.wsbf{word-spacing:2.040000pt;}
.ws3f{word-spacing:2.080000pt;}
.wsbb{word-spacing:2.130667pt;}
.ws80{word-spacing:2.133333pt;}
.ws47{word-spacing:2.186667pt;}
.wsb3{word-spacing:2.221333pt;}
.ws60{word-spacing:2.240000pt;}
.wsa6{word-spacing:2.266667pt;}
.ws1c{word-spacing:2.293333pt;}
.ws38{word-spacing:2.400000pt;}
.ws86{word-spacing:2.453333pt;}
.ws67{word-spacing:2.493333pt;}
.ws65{word-spacing:2.560000pt;}
.ws85{word-spacing:2.613333pt;}
.ws3a{word-spacing:2.666667pt;}
.wsbc{word-spacing:2.674667pt;}
.wsa4{word-spacing:2.720000pt;}
.ws35{word-spacing:2.773333pt;}
.wsb1{word-spacing:2.810667pt;}
.ws5d{word-spacing:2.826667pt;}
.wsaf{word-spacing:2.856000pt;}
.ws2e{word-spacing:2.880000pt;}
.ws88{word-spacing:2.933333pt;}
.ws43{word-spacing:2.986667pt;}
.wsb7{word-spacing:2.992000pt;}
.wsad{word-spacing:3.037333pt;}
.ws22{word-spacing:3.093333pt;}
.ws63{word-spacing:3.146667pt;}
.wsb6{word-spacing:3.173333pt;}
.ws61{word-spacing:3.200000pt;}
.ws8b{word-spacing:3.253333pt;}
.ws24{word-spacing:3.413333pt;}
.ws26{word-spacing:3.466667pt;}
.ws8a{word-spacing:3.573333pt;}
.ws73{word-spacing:3.626667pt;}
.ws3d{word-spacing:3.680000pt;}
.ws87{word-spacing:3.733333pt;}
.ws37{word-spacing:3.786667pt;}
.ws79{word-spacing:3.893333pt;}
.ws7a{word-spacing:4.000000pt;}
.ws74{word-spacing:4.053333pt;}
.ws31{word-spacing:4.106667pt;}
.ws77{word-spacing:4.213333pt;}
.ws78{word-spacing:4.266667pt;}
.ws20{word-spacing:4.320000pt;}
.ws32{word-spacing:4.586667pt;}
.ws6f{word-spacing:4.906667pt;}
.ws44{word-spacing:5.066667pt;}
.ws33{word-spacing:5.546667pt;}
.wsbe{word-spacing:5.757333pt;}
.ws3e{word-spacing:6.186667pt;}
.ws70{word-spacing:6.826667pt;}
.ws64{word-spacing:7.146667pt;}
.ws84{word-spacing:10.290667pt;}
.ws66{word-spacing:10.426667pt;}
.ws83{word-spacing:11.786667pt;}
.wsc0{word-spacing:12.013333pt;}
.ws82{word-spacing:12.104000pt;}
.wsc1{word-spacing:15.640000pt;}
.ws28{word-spacing:64.237333pt;}
.ws5a{word-spacing:135.320000pt;}
.ws59{word-spacing:159.890667pt;}
.ws58{word-spacing:168.050667pt;}
.ws54{word-spacing:206.402667pt;}
.ws55{word-spacing:240.724533pt;}
.ws57{word-spacing:313.706667pt;}
.ws7d{word-spacing:343.037333pt;}
.ws7f{word-spacing:355.413333pt;}
.ws7e{word-spacing:355.685321pt;}
._d{margin-left:-2630.557387pt;}
._a{margin-left:-64.600000pt;}
._16{margin-left:-18.028747pt;}
._12{margin-left:-16.789091pt;}
._7{margin-left:-14.733333pt;}
._10{margin-left:-7.710996pt;}
._e{margin-left:-6.351491pt;}
._c{margin-left:-4.495458pt;}
._4{margin-left:-3.470376pt;}
._3{margin-left:-2.370133pt;}
._0{margin-left:-1.450667pt;}
._2{width:0.954125pt;}
._1{width:1.868800pt;}
._6{width:2.864000pt;}
._5{width:4.337083pt;}
._f{width:5.306667pt;}
._14{width:9.429333pt;}
._20{width:10.381333pt;}
._21{width:12.829333pt;}
._11{width:14.753842pt;}
._8{width:16.320000pt;}
._15{width:18.133333pt;}
._9{width:48.552000pt;}
._13{width:146.653333pt;}
._17{width:155.584000pt;}
._18{width:354.370667pt;}
._1e{width:367.018654pt;}
._1b{width:375.042667pt;}
._1a{width:379.802667pt;}
._1d{width:385.016000pt;}
._19{width:410.040000pt;}
._1c{width:420.013333pt;}
._1f{width:440.413333pt;}
._b{width:1678.104057pt;}
.fsc{font-size:22.661867pt;}
.fsb{font-size:31.726400pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.323200pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:1.946940pt;}
.yc3{bottom:1.947062pt;}
.yc0{bottom:8.306925pt;}
.yc2{bottom:13.742798pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y34{bottom:100.394933pt;}
.y89{bottom:100.813599pt;}
.y66{bottom:100.813639pt;}
.y2e{bottom:101.521200pt;}
.yed{bottom:101.834920pt;}
.yfc{bottom:101.834941pt;}
.y12c{bottom:101.986898pt;}
.y1a1{bottom:103.782907pt;}
.y15f{bottom:108.225613pt;}
.y33{bottom:113.722933pt;}
.y1a0{bottom:117.110907pt;}
.y88{bottom:117.480265pt;}
.y65{bottom:117.480306pt;}
.y2d{bottom:118.187866pt;}
.yec{bottom:118.501587pt;}
.yfb{bottom:118.501607pt;}
.y12b{bottom:118.653564pt;}
.y15e{bottom:121.553613pt;}
.y19f{bottom:130.438907pt;}
.y32{bottom:131.584269pt;}
.y87{bottom:134.146932pt;}
.y64{bottom:134.146973pt;}
.y2c{bottom:134.854533pt;}
.y15d{bottom:134.881613pt;}
.yeb{bottom:135.168254pt;}
.yfa{bottom:135.168274pt;}
.y12a{bottom:135.320231pt;}
.y19e{bottom:143.766907pt;}
.y15c{bottom:148.209613pt;}
.y86{bottom:150.813599pt;}
.y63{bottom:150.813639pt;}
.y2b{bottom:151.521200pt;}
.yea{bottom:151.834920pt;}
.yf9{bottom:151.834941pt;}
.y129{bottom:151.986898pt;}
.y31{bottom:153.807471pt;}
.y19d{bottom:157.094907pt;}
.y15b{bottom:161.537613pt;}
.y30{bottom:167.135471pt;}
.y85{bottom:167.480265pt;}
.y62{bottom:167.480306pt;}
.y2a{bottom:168.187866pt;}
.ye9{bottom:168.501587pt;}
.yf8{bottom:168.501607pt;}
.y128{bottom:168.653564pt;}
.y19c{bottom:170.422907pt;}
.y15a{bottom:174.865613pt;}
.y19b{bottom:183.750907pt;}
.y84{bottom:184.146932pt;}
.y61{bottom:184.146973pt;}
.y29{bottom:184.854533pt;}
.ye8{bottom:185.168254pt;}
.yf7{bottom:185.168274pt;}
.y127{bottom:185.320231pt;}
.y159{bottom:188.193613pt;}
.y2f{bottom:194.528137pt;}
.y19a{bottom:197.078907pt;}
.y83{bottom:200.813599pt;}
.y60{bottom:200.813639pt;}
.y28{bottom:201.521200pt;}
.y158{bottom:201.521613pt;}
.ye7{bottom:201.834920pt;}
.yf6{bottom:201.834941pt;}
.y126{bottom:201.986898pt;}
.y199{bottom:210.406907pt;}
.ycc{bottom:212.971596pt;}
.y157{bottom:214.849613pt;}
.y82{bottom:217.480265pt;}
.y5f{bottom:217.480306pt;}
.y27{bottom:218.187866pt;}
.ye6{bottom:218.501587pt;}
.yf5{bottom:218.501607pt;}
.y125{bottom:218.653564pt;}
.y198{bottom:223.734907pt;}
.ycb{bottom:226.299596pt;}
.y156{bottom:228.177613pt;}
.y81{bottom:234.146932pt;}
.y5e{bottom:234.146973pt;}
.y25{bottom:234.854533pt;}
.ye5{bottom:235.168254pt;}
.yf4{bottom:235.168274pt;}
.y124{bottom:235.320231pt;}
.y197{bottom:237.062907pt;}
.yca{bottom:239.627596pt;}
.y155{bottom:241.505613pt;}
.y196{bottom:250.390907pt;}
.y80{bottom:250.813599pt;}
.y5d{bottom:250.813639pt;}
.y24{bottom:251.521200pt;}
.ye4{bottom:251.834920pt;}
.yf3{bottom:251.834941pt;}
.y123{bottom:251.986898pt;}
.yc9{bottom:252.955596pt;}
.y154{bottom:254.833613pt;}
.y195{bottom:263.718907pt;}
.yc8{bottom:266.283596pt;}
.y7f{bottom:267.480265pt;}
.y5c{bottom:267.480306pt;}
.y153{bottom:268.161613pt;}
.y23{bottom:268.187866pt;}
.ye3{bottom:268.501587pt;}
.yf2{bottom:268.501607pt;}
.y122{bottom:268.653564pt;}
.y194{bottom:277.046907pt;}
.yc7{bottom:279.611596pt;}
.y152{bottom:281.489613pt;}
.y7e{bottom:284.146932pt;}
.y5b{bottom:284.146973pt;}
.y22{bottom:284.854533pt;}
.ye2{bottom:285.168254pt;}
.yf1{bottom:285.168274pt;}
.y121{bottom:285.320231pt;}
.yd7{bottom:287.132269pt;}
.ybf{bottom:288.273336pt;}
.y193{bottom:290.374907pt;}
.yc4{bottom:291.144409pt;}
.y151{bottom:294.817613pt;}
.yc6{bottom:296.577596pt;}
.yc1{bottom:296.580261pt;}
.ybe{bottom:296.596933pt;}
.yd6{bottom:300.460269pt;}
.y7d{bottom:300.813599pt;}
.y5a{bottom:300.813639pt;}
.y21{bottom:301.521200pt;}
.ye1{bottom:301.834920pt;}
.yf0{bottom:301.834941pt;}
.y120{bottom:301.986898pt;}
.y192{bottom:303.702907pt;}
.y150{bottom:308.145613pt;}
.ybd{bottom:309.924933pt;}
.yd5{bottom:313.788269pt;}
.y191{bottom:317.030907pt;}
.y7c{bottom:317.480265pt;}
.y59{bottom:317.480306pt;}
.y20{bottom:318.187866pt;}
.ye0{bottom:318.501587pt;}
.yef{bottom:318.501607pt;}
.y11f{bottom:318.653564pt;}
.y14f{bottom:321.473613pt;}
.ybc{bottom:323.252933pt;}
.yd4{bottom:327.116269pt;}
.y190{bottom:330.358907pt;}
.y7b{bottom:334.146932pt;}
.y58{bottom:334.146973pt;}
.y14e{bottom:334.801613pt;}
.y1f{bottom:334.854533pt;}
.ydf{bottom:335.168254pt;}
.yee{bottom:335.168274pt;}
.y11e{bottom:335.320231pt;}
.ybb{bottom:336.580933pt;}
.yd3{bottom:340.444269pt;}
.y18f{bottom:343.686907pt;}
.y14d{bottom:348.129613pt;}
.yba{bottom:349.908933pt;}
.y7a{bottom:350.813599pt;}
.y57{bottom:350.813639pt;}
.y1e{bottom:351.521200pt;}
.yde{bottom:351.834920pt;}
.y11d{bottom:351.986898pt;}
.yd2{bottom:353.772269pt;}
.y18e{bottom:357.014907pt;}
.y14c{bottom:361.457613pt;}
.yb9{bottom:363.236933pt;}
.yd1{bottom:367.100269pt;}
.y79{bottom:367.480265pt;}
.y56{bottom:367.480306pt;}
.y1d{bottom:368.187866pt;}
.ydd{bottom:368.501587pt;}
.y11c{bottom:368.653564pt;}
.y18d{bottom:370.342907pt;}
.y14b{bottom:374.785613pt;}
.yb8{bottom:376.564933pt;}
.yd0{bottom:380.428269pt;}
.y18c{bottom:383.670907pt;}
.y78{bottom:384.146932pt;}
.y55{bottom:384.146973pt;}
.y26{bottom:384.854533pt;}
.ydc{bottom:385.168254pt;}
.y11b{bottom:385.320231pt;}
.y14a{bottom:388.113613pt;}
.yb7{bottom:389.892933pt;}
.ycf{bottom:393.756269pt;}
.y18b{bottom:396.998907pt;}
.y77{bottom:400.813599pt;}
.y54{bottom:400.813639pt;}
.y149{bottom:401.441613pt;}
.y1c{bottom:401.521200pt;}
.ydb{bottom:401.834920pt;}
.y11a{bottom:401.986898pt;}
.yb6{bottom:403.220933pt;}
.yce{bottom:407.084269pt;}
.y18a{bottom:410.326907pt;}
.y148{bottom:414.769613pt;}
.y76{bottom:417.480265pt;}
.y53{bottom:417.480306pt;}
.yda{bottom:418.501587pt;}
.y119{bottom:418.653564pt;}
.y189{bottom:423.654907pt;}
.y75{bottom:434.146932pt;}
.y52{bottom:434.146973pt;}
.yd9{bottom:435.168254pt;}
.y118{bottom:435.320231pt;}
.y188{bottom:436.982907pt;}
.y147{bottom:444.769613pt;}
.y187{bottom:450.310907pt;}
.y74{bottom:450.813599pt;}
.y51{bottom:450.813639pt;}
.yaf{bottom:450.908554pt;}
.y1b{bottom:451.521240pt;}
.yd8{bottom:451.834920pt;}
.yaa{bottom:451.986816pt;}
.ycd{bottom:451.986898pt;}
.y186{bottom:463.638907pt;}
.y73{bottom:467.480265pt;}
.y50{bottom:467.480306pt;}
.yae{bottom:468.021888pt;}
.ya9{bottom:468.653564pt;}
.y185{bottom:476.966907pt;}
.yad{bottom:481.349888pt;}
.y72{bottom:484.146932pt;}
.y4f{bottom:484.146973pt;}
.y1a{bottom:484.854574pt;}
.ya8{bottom:485.320231pt;}
.y184{bottom:490.294907pt;}
.y71{bottom:500.813599pt;}
.y4e{bottom:500.813639pt;}
.y19{bottom:501.521240pt;}
.ya7{bottom:501.986898pt;}
.y117{bottom:502.934140pt;}
.y10e{bottom:502.947720pt;}
.y183{bottom:503.622907pt;}
.y146{bottom:505.404231pt;}
.yb5{bottom:506.864267pt;}
.y182{bottom:516.950907pt;}
.y70{bottom:517.480265pt;}
.y4d{bottom:517.480306pt;}
.y18{bottom:518.187907pt;}
.ya6{bottom:518.653564pt;}
.y145{bottom:518.732231pt;}
.yb4{bottom:523.569600pt;}
.y113{bottom:527.765476pt;}
.y181{bottom:530.278907pt;}
.y144{bottom:532.060231pt;}
.y6f{bottom:534.146932pt;}
.y4c{bottom:534.146973pt;}
.y17{bottom:534.854574pt;}
.ya5{bottom:535.320231pt;}
.yb3{bottom:540.206933pt;}
.y180{bottom:543.606907pt;}
.y112{bottom:544.470809pt;}
.y143{bottom:545.388231pt;}
.y6e{bottom:550.813599pt;}
.y4b{bottom:550.813639pt;}
.y16{bottom:551.521240pt;}
.ya4{bottom:551.986898pt;}
.yb2{bottom:556.844267pt;}
.y17f{bottom:556.934907pt;}
.y142{bottom:558.716231pt;}
.y111{bottom:561.108143pt;}
.y6d{bottom:567.480265pt;}
.y4a{bottom:567.480306pt;}
.y15{bottom:568.187907pt;}
.ya3{bottom:568.653564pt;}
.y17e{bottom:570.262907pt;}
.y141{bottom:572.044231pt;}
.yb1{bottom:573.481600pt;}
.y110{bottom:577.745476pt;}
.y17d{bottom:583.590907pt;}
.y6c{bottom:584.146932pt;}
.y49{bottom:584.146973pt;}
.y14{bottom:584.854574pt;}
.ya2{bottom:585.320231pt;}
.y140{bottom:585.372231pt;}
.y17c{bottom:596.918907pt;}
.yb0{bottom:598.448933pt;}
.y13f{bottom:598.700231pt;}
.y48{bottom:600.813639pt;}
.y13{bottom:601.521240pt;}
.ya1{bottom:601.986898pt;}
.y10f{bottom:602.712809pt;}
.y17b{bottom:610.246907pt;}
.y13e{bottom:612.028231pt;}
.y6b{bottom:617.480265pt;}
.y47{bottom:617.480306pt;}
.y12{bottom:618.187907pt;}
.ya0{bottom:618.653564pt;}
.yac{bottom:621.112552pt;}
.y17a{bottom:623.574907pt;}
.y13d{bottom:625.356231pt;}
.y116{bottom:625.368140pt;}
.y10d{bottom:625.381720pt;}
.y46{bottom:634.146973pt;}
.yab{bottom:634.440552pt;}
.y11{bottom:634.854574pt;}
.y9f{bottom:635.320231pt;}
.y179{bottom:636.902907pt;}
.y13c{bottom:638.684231pt;}
.y115{bottom:638.696140pt;}
.y10c{bottom:638.709720pt;}
.y178{bottom:650.230907pt;}
.y45{bottom:650.813639pt;}
.y10{bottom:651.521240pt;}
.y9e{bottom:651.986898pt;}
.y13b{bottom:652.012231pt;}
.y114{bottom:652.024140pt;}
.y10b{bottom:652.037720pt;}
.y177{bottom:663.558907pt;}
.y44{bottom:667.480306pt;}
.yf{bottom:668.187907pt;}
.y9d{bottom:668.653564pt;}
.y1b8{bottom:676.761620pt;}
.y176{bottom:676.886907pt;}
.y13a{bottom:678.679564pt;}
.y43{bottom:684.146973pt;}
.ye{bottom:684.854574pt;}
.y99{bottom:685.320231pt;}
.y1b7{bottom:690.089620pt;}
.y175{bottom:690.214907pt;}
.y139{bottom:692.007564pt;}
.y6a{bottom:700.813639pt;}
.yd{bottom:701.521240pt;}
.y98{bottom:701.986898pt;}
.y1b6{bottom:703.417620pt;}
.y174{bottom:703.542907pt;}
.y138{bottom:705.335564pt;}
.y1b5{bottom:716.745620pt;}
.y173{bottom:716.870907pt;}
.y42{bottom:717.480306pt;}
.yc{bottom:718.187907pt;}
.y97{bottom:718.653564pt;}
.y137{bottom:718.663564pt;}
.y1b4{bottom:730.073620pt;}
.y1ca{bottom:730.096288pt;}
.y172{bottom:730.198907pt;}
.y136{bottom:731.991564pt;}
.y69{bottom:734.146973pt;}
.y9c{bottom:735.320231pt;}
.y1b3{bottom:743.401620pt;}
.y1c9{bottom:743.424288pt;}
.y171{bottom:743.526907pt;}
.y41{bottom:750.813639pt;}
.y96{bottom:751.986898pt;}
.y1b2{bottom:756.729620pt;}
.y170{bottom:756.854907pt;}
.yb{bottom:757.461469pt;}
.y135{bottom:758.658898pt;}
.y68{bottom:767.480306pt;}
.y9b{bottom:768.653564pt;}
.y1b1{bottom:770.057620pt;}
.y1c8{bottom:770.170954pt;}
.y16f{bottom:770.182907pt;}
.ya{bottom:770.789469pt;}
.y134{bottom:771.986898pt;}
.y1b0{bottom:783.385620pt;}
.y1c7{bottom:783.498954pt;}
.y16e{bottom:783.510907pt;}
.y67{bottom:784.146973pt;}
.y9a{bottom:785.320231pt;}
.y10a{bottom:795.716306pt;}
.y1af{bottom:796.713620pt;}
.y1c6{bottom:796.826954pt;}
.y16d{bottom:796.838907pt;}
.y133{bottom:798.653564pt;}
.y40{bottom:800.813639pt;}
.y95{bottom:801.986898pt;}
.y9{bottom:808.656169pt;}
.y109{bottom:809.044306pt;}
.y1ae{bottom:810.041620pt;}
.y1c5{bottom:810.154954pt;}
.y16c{bottom:810.166907pt;}
.y3f{bottom:817.480306pt;}
.y94{bottom:818.653564pt;}
.y108{bottom:822.372306pt;}
.y1ad{bottom:823.369620pt;}
.y1c4{bottom:823.482954pt;}
.y16b{bottom:823.494907pt;}
.y132{bottom:828.674231pt;}
.y3e{bottom:834.146973pt;}
.y93{bottom:835.320231pt;}
.y107{bottom:835.700306pt;}
.y1ac{bottom:836.697620pt;}
.y1c3{bottom:836.810954pt;}
.y16a{bottom:836.822907pt;}
.y131{bottom:842.002231pt;}
.y8{bottom:848.377441pt;}
.y106{bottom:849.028306pt;}
.y1ab{bottom:850.025620pt;}
.y1c2{bottom:850.138954pt;}
.y169{bottom:850.150907pt;}
.y3d{bottom:850.813639pt;}
.y92{bottom:851.986898pt;}
.y130{bottom:855.330231pt;}
.y105{bottom:862.356306pt;}
.y1aa{bottom:863.353620pt;}
.y1c1{bottom:863.466954pt;}
.y168{bottom:863.478907pt;}
.y3c{bottom:867.480306pt;}
.y91{bottom:868.653564pt;}
.y12f{bottom:868.658231pt;}
.y7{bottom:872.377441pt;}
.y104{bottom:875.684306pt;}
.y1a9{bottom:876.681620pt;}
.y1c0{bottom:876.794954pt;}
.y167{bottom:876.806907pt;}
.y3b{bottom:884.146973pt;}
.y90{bottom:885.320231pt;}
.y103{bottom:889.012306pt;}
.y1a8{bottom:890.009620pt;}
.y1bf{bottom:890.122954pt;}
.y166{bottom:890.134907pt;}
.y12e{bottom:895.325564pt;}
.y6{bottom:896.377441pt;}
.y3a{bottom:900.813639pt;}
.y8f{bottom:901.986898pt;}
.y102{bottom:902.340306pt;}
.y1a7{bottom:903.337620pt;}
.y1be{bottom:903.450954pt;}
.y165{bottom:903.462907pt;}
.y12d{bottom:908.653564pt;}
.y101{bottom:915.668306pt;}
.y1a6{bottom:916.665620pt;}
.y1bd{bottom:916.778954pt;}
.y164{bottom:916.790907pt;}
.y39{bottom:917.480306pt;}
.y8e{bottom:918.653564pt;}
.y100{bottom:928.996306pt;}
.y1a5{bottom:929.993620pt;}
.y1bc{bottom:930.106954pt;}
.y163{bottom:930.118907pt;}
.y38{bottom:934.146973pt;}
.y8d{bottom:935.320231pt;}
.yff{bottom:942.324306pt;}
.y1a4{bottom:943.321620pt;}
.y1bb{bottom:943.434954pt;}
.y162{bottom:943.446907pt;}
.y37{bottom:950.813639pt;}
.y8c{bottom:951.986898pt;}
.yfe{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y1a3{bottom:956.649620pt;}
.y1ba{bottom:956.762954pt;}
.y161{bottom:956.774907pt;}
.y36{bottom:967.480306pt;}
.y8b{bottom:968.653564pt;}
.yfd{bottom:968.980306pt;}
.y1a2{bottom:969.977620pt;}
.y1b9{bottom:970.090954pt;}
.y160{bottom:970.102907pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y35{bottom:1002.206543pt;}
.y8a{bottom:1002.206706pt;}
.h13{height:17.199999pt;}
.h16{height:21.669131pt;}
.he{height:22.403733pt;}
.h17{height:24.202807pt;}
.h15{height:30.638483pt;}
.h14{height:30.955746pt;}
.hc{height:32.005333pt;}
.hd{height:32.760417pt;}
.h2{height:37.376000pt;}
.h9{height:37.653333pt;}
.h4{height:39.712000pt;}
.h12{height:40.165333pt;}
.ha{height:47.253333pt;}
.h10{height:47.690341pt;}
.h11{height:47.690667pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.hf{height:52.448000pt;}
.h8{height:52.746667pt;}
.h7{height:57.658667pt;}
.hb{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:68.240000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:20.950541pt;}
.xe{left:42.610402pt;}
.x11{left:64.462535pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151469pt;}
.x7{left:86.929867pt;}
.x15{left:90.709469pt;}
.xc{left:108.638662pt;}
.xd{left:117.085063pt;}
.xb{left:126.727203pt;}
.x10{left:133.356933pt;}
.x12{left:176.878540pt;}
.x13{left:212.522542pt;}
.x5{left:408.191457pt;}
.x6{left:423.311466pt;}
.x16{left:430.834143pt;}
.x14{left:555.380127pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xa{left:709.519613pt;}
}




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