
    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_d66f8141fcb26765d02b9fa5.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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3818b05d907438b87abde826.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222000;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_4b9ca902d2c6e2bd2733b777.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3abdc3cf917c87846257e6fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c9f5ea017015522a478bfdc1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_596a3d0583202c9e9c554dfc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_30ee8cc3f15ddbbe8de89cb4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.415000px;}
.v1{vertical-align:24.000000px;}
.ls34{letter-spacing:-5.220000px;}
.ls43{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.420000px;}
.ls75{letter-spacing:-0.408000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls72{letter-spacing:-0.357000px;}
.ls73{letter-spacing:-0.306000px;}
.ls29{letter-spacing:-0.300000px;}
.ls74{letter-spacing:-0.255000px;}
.ls1b{letter-spacing:-0.240000px;}
.ls76{letter-spacing:-0.204000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls70{letter-spacing:-0.153000px;}
.ls28{letter-spacing:-0.120000px;}
.ls56{letter-spacing:-0.102000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls6f{letter-spacing:-0.051000px;}
.ls19{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.030000px;}
.ls5f{letter-spacing:0.051000px;}
.ls36{letter-spacing:0.059973px;}
.lsc{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.066000px;}
.ls50{letter-spacing:0.090000px;}
.ls51{letter-spacing:0.102000px;}
.ls3e{letter-spacing:0.107983px;}
.ls2{letter-spacing:0.120000px;}
.ls5a{letter-spacing:0.127500px;}
.ls69{letter-spacing:0.153000px;}
.lsb{letter-spacing:0.173992px;}
.ls17{letter-spacing:0.178791px;}
.ls23{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.191988px;}
.ls5c{letter-spacing:0.204000px;}
.ls2c{letter-spacing:0.210000px;}
.ls26{letter-spacing:0.216000px;}
.ls79{letter-spacing:0.229500px;}
.ls0{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.255000px;}
.ls52{letter-spacing:0.264000px;}
.ls10{letter-spacing:0.270000px;}
.ls48{letter-spacing:0.276000px;}
.ls57{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.306000px;}
.ls2f{letter-spacing:0.311950px;}
.lsa{letter-spacing:0.330000px;}
.ls6b{letter-spacing:0.331500px;}
.ls5e{letter-spacing:0.357000px;}
.ls3a{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.364832px;}
.ls4c{letter-spacing:0.366000px;}
.ls4a{letter-spacing:0.377988px;}
.ls45{letter-spacing:0.390000px;}
.ls77{letter-spacing:0.408000px;}
.lsf{letter-spacing:0.420000px;}
.ls5b{letter-spacing:0.433500px;}
.ls46{letter-spacing:0.450000px;}
.ls53{letter-spacing:0.459000px;}
.ls3{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.498000px;}
.ls25{letter-spacing:0.510000px;}
.ls6{letter-spacing:0.540000px;}
.ls54{letter-spacing:0.561000px;}
.ls7{letter-spacing:0.600000px;}
.ls60{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.642000px;}
.ls4{letter-spacing:0.660000px;}
.ls66{letter-spacing:0.663000px;}
.ls61{letter-spacing:0.688500px;}
.ls65{letter-spacing:0.714000px;}
.ls21{letter-spacing:0.720000px;}
.ls55{letter-spacing:0.739500px;}
.ls3b{letter-spacing:0.744000px;}
.ls6c{letter-spacing:0.765000px;}
.ls22{letter-spacing:0.780000px;}
.ls5d{letter-spacing:0.816000px;}
.ls16{letter-spacing:0.840000px;}
.ls64{letter-spacing:0.867000px;}
.ls4d{letter-spacing:0.870000px;}
.ls9{letter-spacing:0.900000px;}
.ls78{letter-spacing:0.918000px;}
.lse{letter-spacing:0.960000px;}
.ls58{letter-spacing:0.969000px;}
.ls47{letter-spacing:0.990000px;}
.ls15{letter-spacing:1.020000px;}
.ls37{letter-spacing:1.056000px;}
.ls7b{letter-spacing:1.071000px;}
.ls11{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.121984px;}
.ls6a{letter-spacing:1.122000px;}
.ls20{letter-spacing:1.140000px;}
.ls4e{letter-spacing:1.170000px;}
.ls68{letter-spacing:1.173000px;}
.ls24{letter-spacing:1.200000px;}
.ls31{letter-spacing:1.230000px;}
.ls63{letter-spacing:1.249500px;}
.ls1e{letter-spacing:1.260000px;}
.ls1f{letter-spacing:1.320000px;}
.ls71{letter-spacing:1.326000px;}
.ls7a{letter-spacing:1.377000px;}
.ls44{letter-spacing:1.380000px;}
.ls33{letter-spacing:1.440000px;}
.ls32{letter-spacing:1.500000px;}
.ls6e{letter-spacing:1.530000px;}
.ls49{letter-spacing:1.560000px;}
.ls62{letter-spacing:1.581000px;}
.ls12{letter-spacing:1.590000px;}
.ls2d{letter-spacing:1.620000px;}
.ls59{letter-spacing:1.632000px;}
.ls3f{letter-spacing:1.680000px;}
.ls30{letter-spacing:1.740000px;}
.ls6d{letter-spacing:1.785000px;}
.ls5{letter-spacing:1.800000px;}
.ls27{letter-spacing:1.860000px;}
.ls4f{letter-spacing:1.920000px;}
.ls39{letter-spacing:2.040000px;}
.ls38{letter-spacing:2.070000px;}
.ls3c{letter-spacing:2.100000px;}
.ls4b{letter-spacing:2.820000px;}
.ls41{letter-spacing:180.015601px;}
.ls42{letter-spacing:579.926368px;}
.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;}
}
.ws2{word-spacing:-18.432000px;}
.ws54{word-spacing:-17.070000px;}
.ws55{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.000000px;}
.ws98{word-spacing:-14.832000px;}
.ws42{word-spacing:-14.640000px;}
.ws28{word-spacing:-14.544000px;}
.ws99{word-spacing:-13.438500px;}
.ws95{word-spacing:-13.005000px;}
.ws7c{word-spacing:-12.750000px;}
.ws4b{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws6{word-spacing:-11.520000px;}
.ws6a{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.ws43{word-spacing:-9.780000px;}
.ws8e{word-spacing:-9.690000px;}
.ws0{word-spacing:-9.408000px;}
.ws6b{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws56{word-spacing:-7.500000px;}
.ws7b{word-spacing:-6.375000px;}
.ws82{word-spacing:-2.820000px;}
.ws8{word-spacing:-1.890000px;}
.wsc5{word-spacing:-1.632000px;}
.ws4c{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.500000px;}
.ws4d{word-spacing:-1.440000px;}
.wsb2{word-spacing:-1.326000px;}
.ws1c{word-spacing:-1.320000px;}
.ws90{word-spacing:-1.275000px;}
.ws12{word-spacing:-1.260000px;}
.ws2f{word-spacing:-1.200000px;}
.wsa5{word-spacing:-1.173000px;}
.ws8a{word-spacing:-1.140000px;}
.ws60{word-spacing:-1.080000px;}
.ws1e{word-spacing:-1.020000px;}
.ws9b{word-spacing:-0.969000px;}
.ws3e{word-spacing:-0.960000px;}
.ws2b{word-spacing:-0.900000px;}
.wsbf{word-spacing:-0.867000px;}
.ws46{word-spacing:-0.840000px;}
.wsba{word-spacing:-0.816000px;}
.ws2e{word-spacing:-0.780000px;}
.ws13{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.612000px;}
.ws32{word-spacing:-0.600000px;}
.wsa9{word-spacing:-0.561000px;}
.ws3b{word-spacing:-0.540000px;}
.ws85{word-spacing:-0.480000px;}
.wsaf{word-spacing:-0.459000px;}
.wsf{word-spacing:-0.420000px;}
.wsb0{word-spacing:-0.408000px;}
.ws47{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.300000px;}
.ws9f{word-spacing:-0.255000px;}
.ws36{word-spacing:-0.240000px;}
.ws9d{word-spacing:-0.204000px;}
.ws33{word-spacing:-0.180000px;}
.ws27{word-spacing:-0.120000px;}
.ws63{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws68{word-spacing:0.060000px;}
.ws17{word-spacing:0.120000px;}
.wsc6{word-spacing:0.153000px;}
.ws34{word-spacing:0.180000px;}
.ws39{word-spacing:0.240000px;}
.ws88{word-spacing:0.300000px;}
.ws4a{word-spacing:0.360000px;}
.ws5e{word-spacing:0.420000px;}
.ws96{word-spacing:0.459000px;}
.ws86{word-spacing:0.480000px;}
.ws2c{word-spacing:0.540000px;}
.ws9e{word-spacing:0.561000px;}
.ws52{word-spacing:0.600000px;}
.ws10{word-spacing:0.660000px;}
.wsd{word-spacing:0.780000px;}
.ws51{word-spacing:0.840000px;}
.ws41{word-spacing:0.900000px;}
.wsa3{word-spacing:0.918000px;}
.ws31{word-spacing:0.960000px;}
.ws93{word-spacing:0.969000px;}
.wsa{word-spacing:1.020000px;}
.ws79{word-spacing:1.080000px;}
.wsa1{word-spacing:1.173000px;}
.ws77{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.ws94{word-spacing:1.275000px;}
.ws40{word-spacing:1.320000px;}
.wsbb{word-spacing:1.326000px;}
.wsb6{word-spacing:1.377000px;}
.ws5c{word-spacing:1.380000px;}
.ws76{word-spacing:1.440000px;}
.wsa4{word-spacing:1.479000px;}
.wse{word-spacing:1.500000px;}
.wsaa{word-spacing:1.530000px;}
.ws30{word-spacing:1.620000px;}
.ws2d{word-spacing:1.680000px;}
.ws97{word-spacing:1.734000px;}
.ws29{word-spacing:1.740000px;}
.wsc1{word-spacing:1.785000px;}
.ws3d{word-spacing:1.800000px;}
.ws5d{word-spacing:1.860000px;}
.wsb7{word-spacing:1.887000px;}
.ws1f{word-spacing:1.920000px;}
.ws57{word-spacing:1.980000px;}
.wsc7{word-spacing:1.989000px;}
.ws37{word-spacing:2.040000px;}
.ws2a{word-spacing:2.100000px;}
.ws3c{word-spacing:2.160000px;}
.ws65{word-spacing:2.220000px;}
.wsa0{word-spacing:2.244000px;}
.ws16{word-spacing:2.280000px;}
.wsa7{word-spacing:2.295000px;}
.ws48{word-spacing:2.340000px;}
.wsa8{word-spacing:2.397000px;}
.ws64{word-spacing:2.400000px;}
.wsb3{word-spacing:2.448000px;}
.ws18{word-spacing:2.520000px;}
.wsbc{word-spacing:2.550000px;}
.ws3a{word-spacing:2.580000px;}
.ws62{word-spacing:2.640000px;}
.wsbd{word-spacing:2.652000px;}
.ws24{word-spacing:2.700000px;}
.ws50{word-spacing:2.760000px;}
.ws49{word-spacing:2.820000px;}
.ws9a{word-spacing:2.856000px;}
.ws1d{word-spacing:2.880000px;}
.wsb4{word-spacing:2.907000px;}
.wsc0{word-spacing:2.958000px;}
.ws1a{word-spacing:3.000000px;}
.ws53{word-spacing:3.060000px;}
.wsae{word-spacing:3.111000px;}
.ws67{word-spacing:3.120000px;}
.wsab{word-spacing:3.162000px;}
.ws5a{word-spacing:3.240000px;}
.ws9c{word-spacing:3.264000px;}
.ws26{word-spacing:3.300000px;}
.ws44{word-spacing:3.360000px;}
.ws7e{word-spacing:3.420000px;}
.ws91{word-spacing:3.468000px;}
.ws89{word-spacing:3.480000px;}
.wsb1{word-spacing:3.519000px;}
.ws25{word-spacing:3.540000px;}
.wsb5{word-spacing:3.570000px;}
.ws5f{word-spacing:3.600000px;}
.ws74{word-spacing:3.660000px;}
.ws38{word-spacing:3.840000px;}
.wsc2{word-spacing:3.876000px;}
.ws84{word-spacing:3.900000px;}
.ws22{word-spacing:3.960000px;}
.wsac{word-spacing:3.978000px;}
.wsad{word-spacing:4.029000px;}
.ws59{word-spacing:4.080000px;}
.ws35{word-spacing:4.140000px;}
.ws78{word-spacing:4.200000px;}
.ws7f{word-spacing:4.260000px;}
.ws45{word-spacing:4.320000px;}
.wsa6{word-spacing:4.335000px;}
.ws23{word-spacing:4.500000px;}
.ws92{word-spacing:4.539000px;}
.wsa2{word-spacing:4.590000px;}
.ws7d{word-spacing:4.680000px;}
.wsbe{word-spacing:4.845000px;}
.ws8c{word-spacing:5.040000px;}
.ws83{word-spacing:5.100000px;}
.ws8b{word-spacing:5.160000px;}
.ws66{word-spacing:5.220000px;}
.ws69{word-spacing:5.280000px;}
.ws87{word-spacing:5.340000px;}
.ws4f{word-spacing:5.400000px;}
.ws80{word-spacing:5.520000px;}
.ws1b{word-spacing:5.700000px;}
.wsb9{word-spacing:5.712000px;}
.ws75{word-spacing:5.820000px;}
.ws5b{word-spacing:5.940000px;}
.ws8d{word-spacing:6.000000px;}
.ws7a{word-spacing:6.120000px;}
.ws4e{word-spacing:6.600000px;}
.ws15{word-spacing:6.660000px;}
.ws61{word-spacing:6.780000px;}
.wsb8{word-spacing:6.936000px;}
.ws3f{word-spacing:7.080000px;}
.ws8f{word-spacing:7.260000px;}
.ws58{word-spacing:8.040000px;}
.ws81{word-spacing:11.760000px;}
.wsc3{word-spacing:13.668000px;}
.wsc4{word-spacing:17.799000px;}
.ws14{word-spacing:21.456000px;}
.ws20{word-spacing:72.267000px;}
.ws6f{word-spacing:127.041000px;}
.ws6c{word-spacing:146.880000px;}
.ws6e{word-spacing:152.541000px;}
.ws73{word-spacing:368.781000px;}
.ws70{word-spacing:381.531000px;}
.ws6d{word-spacing:750.822000px;}
.ws72{word-spacing:1115.778000px;}
.ws71{word-spacing:1239.402000px;}
._12{margin-left:-2959.377061px;}
._a{margin-left:-72.675000px;}
._4d{margin-left:-21.471000px;}
._4a{margin-left:-18.334500px;}
._6{margin-left:-16.575000px;}
._4b{margin-left:-14.943000px;}
._1b{margin-left:-13.919420px;}
._10{margin-left:-12.474000px;}
._18{margin-left:-10.686000px;}
._17{margin-left:-9.036000px;}
._19{margin-left:-6.983991px;}
._4{margin-left:-5.736016px;}
._44{margin-left:-4.704000px;}
._1{margin-left:-3.657600px;}
._11{margin-left:-2.640000px;}
._0{margin-left:-1.632000px;}
._3{width:1.377000px;}
._e{width:2.460000px;}
._d{width:3.492000px;}
._1c{width:5.063993px;}
._5{width:6.354000px;}
._15{width:8.400000px;}
._16{width:9.600000px;}
._1a{width:12.394800px;}
._45{width:13.514977px;}
._14{width:16.560000px;}
._7{width:18.360000px;}
._f{width:20.526000px;}
._49{width:21.951920px;}
._47{width:23.649007px;}
._48{width:25.617000px;}
._4c{width:27.312000px;}
._46{width:29.631000px;}
._13{width:33.000000px;}
._c{width:36.000000px;}
._2{width:40.631972px;}
._9{width:54.621000px;}
._8{width:72.267000px;}
._20{width:134.130000px;}
._33{width:139.791000px;}
._2e{width:162.231000px;}
._26{width:165.291000px;}
._2f{width:174.981000px;}
._37{width:178.041000px;}
._2b{width:187.731000px;}
._38{width:190.791000px;}
._23{width:203.541000px;}
._25{width:216.291000px;}
._2c{width:225.981000px;}
._28{width:229.041000px;}
._2a{width:235.365000px;}
._30{width:238.986000px;}
._29{width:241.791000px;}
._31{width:251.481000px;}
._3f{width:254.541000px;}
._40{width:267.291000px;}
._3b{width:280.041000px;}
._3c{width:292.791000px;}
._27{width:301.410000px;}
._1f{width:343.791000px;}
._3a{width:344.901000px;}
._1e{width:350.901612px;}
._21{width:356.541000px;}
._42{width:368.781000px;}
._1d{width:376.401521px;}
._35{width:394.281000px;}
._3d{width:413.508000px;}
._43{width:431.954479px;}
._3e{width:441.456000px;}
._22{width:467.160000px;}
._41{width:477.666000px;}
._39{width:530.604000px;}
._24{width:763.572000px;}
._34{width:805.086000px;}
._36{width:813.807000px;}
._32{width:954.195600px;}
._2d{width:1002.801000px;}
._b{width:1814.834910px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y124{bottom:107.916606px;}
.y33{bottom:112.938300px;}
.y1ce{bottom:116.977095px;}
.y2d{bottom:122.973450px;}
.y1cd{bottom:131.971095px;}
.y123{bottom:132.269096px;}
.y32{bottom:133.032303px;}
.y2c{bottom:141.723450px;}
.y1cc{bottom:146.965095px;}
.y18c{bottom:154.143325px;}
.y13d{bottom:156.035566px;}
.y31{bottom:158.044059px;}
.y2b{bottom:160.473450px;}
.y1cb{bottom:161.959095px;}
.y18b{bottom:169.137325px;}
.y30{bottom:173.038059px;}
.y13c{bottom:174.829066px;}
.y1ca{bottom:176.953095px;}
.y2a{bottom:179.223450px;}
.y18a{bottom:184.131325px;}
.y62{bottom:188.415298px;}
.y141{bottom:189.735260px;}
.y1c9{bottom:191.947095px;}
.y13b{bottom:193.546066px;}
.y2f{bottom:195.580059px;}
.y29{bottom:197.973450px;}
.y189{bottom:199.125325px;}
.y1c8{bottom:206.941095px;}
.y61{bottom:207.165298px;}
.y140{bottom:208.485260px;}
.y10c{bottom:208.485306px;}
.y2e{bottom:210.574059px;}
.y13a{bottom:212.263066px;}
.y188{bottom:214.119325px;}
.y28{bottom:216.723450px;}
.yde{bottom:217.860306px;}
.y1c7{bottom:221.935095px;}
.y60{bottom:225.915298px;}
.ycf{bottom:227.235168px;}
.yad{bottom:227.235260px;}
.y10b{bottom:227.235306px;}
.y187{bottom:229.113325px;}
.y139{bottom:230.980066px;}
.y27{bottom:235.473450px;}
.ydd{bottom:236.610306px;}
.y1c6{bottom:236.929095px;}
.y186{bottom:244.107325px;}
.y5f{bottom:244.665298px;}
.yce{bottom:245.985168px;}
.yac{bottom:245.985260px;}
.y10a{bottom:245.985306px;}
.y138{bottom:249.697066px;}
.y1c5{bottom:251.923095px;}
.y25{bottom:254.223450px;}
.ydc{bottom:255.360306px;}
.y185{bottom:259.101325px;}
.y5e{bottom:263.415298px;}
.ycd{bottom:264.735168px;}
.yab{bottom:264.735260px;}
.y109{bottom:264.735306px;}
.y1c4{bottom:266.917095px;}
.y137{bottom:268.414066px;}
.y24{bottom:272.973450px;}
.y184{bottom:274.095325px;}
.ydb{bottom:274.110306px;}
.y1c3{bottom:281.911095px;}
.y5d{bottom:282.165298px;}
.ycc{bottom:283.485168px;}
.yaa{bottom:283.485260px;}
.y108{bottom:283.485306px;}
.y136{bottom:287.131066px;}
.y183{bottom:289.089325px;}
.y23{bottom:291.723450px;}
.yda{bottom:292.860306px;}
.y1c2{bottom:296.905095px;}
.y5c{bottom:300.915298px;}
.ycb{bottom:302.235168px;}
.ya9{bottom:302.235260px;}
.y107{bottom:302.235306px;}
.y182{bottom:304.083325px;}
.y135{bottom:305.848066px;}
.y22{bottom:310.473450px;}
.y1c1{bottom:311.899095px;}
.y181{bottom:319.077325px;}
.y5b{bottom:319.665298px;}
.yca{bottom:320.985168px;}
.ya8{bottom:320.985260px;}
.y106{bottom:320.985306px;}
.y134{bottom:324.565066px;}
.y1c0{bottom:326.893095px;}
.y21{bottom:329.223450px;}
.yd9{bottom:330.360306px;}
.y180{bottom:334.071325px;}
.y5a{bottom:338.415298px;}
.yc9{bottom:339.735168px;}
.ya7{bottom:339.735260px;}
.y105{bottom:339.735306px;}
.y1bf{bottom:341.887095px;}
.y133{bottom:343.282066px;}
.y20{bottom:347.973450px;}
.y17f{bottom:349.065325px;}
.y144{bottom:351.038710px;}
.y1be{bottom:356.881095px;}
.y59{bottom:357.165298px;}
.yc8{bottom:358.485168px;}
.ya6{bottom:358.485260px;}
.y104{bottom:358.485306px;}
.y132{bottom:361.999066px;}
.y17e{bottom:364.059325px;}
.y143{bottom:366.032711px;}
.y1f{bottom:366.723450px;}
.yd8{bottom:367.860260px;}
.y1bd{bottom:371.875095px;}
.y58{bottom:375.915298px;}
.yc7{bottom:377.235168px;}
.ya5{bottom:377.235260px;}
.y103{bottom:377.235306px;}
.y17d{bottom:379.053325px;}
.y131{bottom:380.716066px;}
.y142{bottom:381.026711px;}
.y1e{bottom:385.473450px;}
.yd7{bottom:386.610260px;}
.y1bc{bottom:386.869095px;}
.y17c{bottom:394.047325px;}
.y57{bottom:394.665298px;}
.yc6{bottom:395.985168px;}
.ya4{bottom:395.985260px;}
.y102{bottom:395.985306px;}
.y130{bottom:399.433066px;}
.y1bb{bottom:401.863095px;}
.y1d{bottom:404.223450px;}
.yd6{bottom:405.360260px;}
.y17b{bottom:409.041325px;}
.y56{bottom:413.415298px;}
.yc5{bottom:414.735168px;}
.ya3{bottom:414.735260px;}
.y101{bottom:414.735306px;}
.y1ba{bottom:416.857095px;}
.y12f{bottom:418.150066px;}
.y1c{bottom:422.973450px;}
.y17a{bottom:424.035325px;}
.yd5{bottom:424.110260px;}
.y1b9{bottom:431.851095px;}
.y55{bottom:432.165298px;}
.yc4{bottom:433.485168px;}
.ya2{bottom:433.485260px;}
.y100{bottom:433.485306px;}
.y12e{bottom:436.867066px;}
.y179{bottom:439.029325px;}
.y1b{bottom:441.723450px;}
.yd4{bottom:442.860260px;}
.y1b8{bottom:446.845095px;}
.y54{bottom:450.915298px;}
.yc3{bottom:452.235168px;}
.ya1{bottom:452.235260px;}
.yff{bottom:452.235306px;}
.y178{bottom:454.023325px;}
.y12d{bottom:455.584066px;}
.y26{bottom:460.473450px;}
.yd3{bottom:461.610260px;}
.y1b7{bottom:461.839095px;}
.y177{bottom:469.017325px;}
.y53{bottom:469.665298px;}
.ya0{bottom:470.985260px;}
.yfe{bottom:470.985306px;}
.y12c{bottom:474.301066px;}
.y1b6{bottom:476.833095px;}
.y1a{bottom:479.223450px;}
.yd2{bottom:480.360260px;}
.y176{bottom:484.011325px;}
.y52{bottom:488.415298px;}
.yc2{bottom:489.735168px;}
.y9f{bottom:489.735260px;}
.yfd{bottom:489.735306px;}
.y1b5{bottom:491.827095px;}
.y12b{bottom:493.018066px;}
.y175{bottom:499.005325px;}
.yd1{bottom:499.110260px;}
.y1b4{bottom:506.821095px;}
.y7f{bottom:507.165298px;}
.y9e{bottom:508.485260px;}
.y13f{bottom:508.485306px;}
.y12a{bottom:511.720795px;}
.y174{bottom:513.999325px;}
.yd0{bottom:517.860260px;}
.y1b3{bottom:521.815095px;}
.y51{bottom:525.915298px;}
.y9d{bottom:527.235260px;}
.yfc{bottom:527.235306px;}
.y173{bottom:528.993325px;}
.y129{bottom:530.437795px;}
.y19{bottom:535.473450px;}
.y1b2{bottom:536.809095px;}
.y172{bottom:543.987325px;}
.y7e{bottom:544.665298px;}
.yc1{bottom:545.985168px;}
.y9c{bottom:545.985260px;}
.y13e{bottom:545.985306px;}
.y1f3{bottom:550.318844px;}
.y1b1{bottom:551.803095px;}
.y18{bottom:554.223450px;}
.y128{bottom:557.782786px;}
.y171{bottom:558.981325px;}
.y7d{bottom:563.415298px;}
.yc0{bottom:564.735168px;}
.y9b{bottom:564.735260px;}
.yfb{bottom:564.735306px;}
.y1f2{bottom:565.312844px;}
.y1b0{bottom:566.797095px;}
.y170{bottom:573.975325px;}
.y1f1{bottom:580.306844px;}
.y1af{bottom:581.791095px;}
.y7c{bottom:582.165298px;}
.y50{bottom:582.165344px;}
.y127{bottom:582.199036px;}
.y9a{bottom:583.485260px;}
.yfa{bottom:583.485306px;}
.y16f{bottom:588.969325px;}
.y17{bottom:591.723450px;}
.y211{bottom:593.796344px;}
.y1f0{bottom:595.300844px;}
.y1ae{bottom:596.785095px;}
.y7b{bottom:600.915298px;}
.y4f{bottom:600.915344px;}
.ybf{bottom:602.235168px;}
.y99{bottom:602.235260px;}
.yf9{bottom:602.235306px;}
.y16e{bottom:603.963325px;}
.y126{bottom:606.917545px;}
.y210{bottom:608.790344px;}
.y1ef{bottom:610.294844px;}
.y16{bottom:610.473450px;}
.y1ad{bottom:611.779095px;}
.y16d{bottom:618.957325px;}
.y7a{bottom:619.665298px;}
.y4e{bottom:619.665344px;}
.ybe{bottom:620.985168px;}
.y98{bottom:620.985260px;}
.yf8{bottom:620.985306px;}
.y125{bottom:621.911545px;}
.y20f{bottom:623.784344px;}
.y1ee{bottom:625.288844px;}
.y1ac{bottom:626.773095px;}
.y15{bottom:629.223450px;}
.y16c{bottom:633.951325px;}
.y79{bottom:638.415298px;}
.y4d{bottom:638.415344px;}
.y20e{bottom:638.778344px;}
.ybd{bottom:639.735168px;}
.y97{bottom:639.735260px;}
.yf7{bottom:639.735306px;}
.y1ed{bottom:640.282844px;}
.y1ab{bottom:641.767095px;}
.y122{bottom:647.402115px;}
.y14{bottom:647.973450px;}
.y16b{bottom:648.945325px;}
.y1ec{bottom:655.276844px;}
.y1aa{bottom:656.761095px;}
.y78{bottom:657.165298px;}
.y4c{bottom:657.165344px;}
.y96{bottom:658.485260px;}
.yf6{bottom:658.485306px;}
.y16a{bottom:663.939325px;}
.y13{bottom:666.723450px;}
.y20d{bottom:668.779094px;}
.y1eb{bottom:670.270844px;}
.y1a9{bottom:671.755095px;}
.y4b{bottom:675.915344px;}
.ybc{bottom:677.235168px;}
.y95{bottom:677.235260px;}
.yf5{bottom:677.235306px;}
.y169{bottom:678.933325px;}
.y20c{bottom:683.773094px;}
.y1ea{bottom:685.264844px;}
.y12{bottom:685.473450px;}
.y1a8{bottom:686.749095px;}
.y121{bottom:693.783325px;}
.y168{bottom:693.927325px;}
.y77{bottom:694.665298px;}
.y4a{bottom:694.665344px;}
.ybb{bottom:695.985168px;}
.y94{bottom:695.985260px;}
.yf4{bottom:695.985306px;}
.y20b{bottom:698.767094px;}
.y1e9{bottom:700.258844px;}
.y1a7{bottom:701.743095px;}
.y11{bottom:704.223450px;}
.y167{bottom:708.921325px;}
.y120{bottom:712.533325px;}
.y49{bottom:713.415344px;}
.y20a{bottom:713.761094px;}
.yba{bottom:714.735168px;}
.y93{bottom:714.735260px;}
.yf3{bottom:714.735306px;}
.y1e8{bottom:715.252844px;}
.y1a6{bottom:716.737095px;}
.y10{bottom:722.973450px;}
.y166{bottom:723.915325px;}
.y1e7{bottom:730.246844px;}
.y11f{bottom:731.283325px;}
.y1a5{bottom:731.731095px;}
.y76{bottom:732.165298px;}
.y48{bottom:732.165344px;}
.yb9{bottom:733.485168px;}
.y92{bottom:733.485260px;}
.yf2{bottom:733.485306px;}
.y165{bottom:738.909325px;}
.yf{bottom:741.723450px;}
.y1e6{bottom:745.240844px;}
.y1a4{bottom:746.725095px;}
.y11e{bottom:750.033325px;}
.y75{bottom:750.915298px;}
.y47{bottom:750.915344px;}
.yb8{bottom:752.235168px;}
.y91{bottom:752.235260px;}
.yf1{bottom:752.235306px;}
.y164{bottom:753.903325px;}
.y209{bottom:759.597344px;}
.y1e5{bottom:760.234844px;}
.ye{bottom:760.473450px;}
.y1a3{bottom:761.719095px;}
.y11d{bottom:768.783325px;}
.y163{bottom:768.897325px;}
.y74{bottom:769.665298px;}
.y46{bottom:769.665344px;}
.yb7{bottom:770.985168px;}
.y90{bottom:770.985260px;}
.yf0{bottom:770.985306px;}
.y208{bottom:774.591344px;}
.y1e4{bottom:775.228844px;}
.y1a2{bottom:776.713095px;}
.yd{bottom:779.223450px;}
.y162{bottom:783.891325px;}
.y11c{bottom:787.533325px;}
.y73{bottom:788.415298px;}
.y45{bottom:788.415344px;}
.y8f{bottom:789.735260px;}
.yef{bottom:789.735306px;}
.y1e3{bottom:790.222844px;}
.y1a1{bottom:791.707095px;}
.yc{bottom:797.973450px;}
.y161{bottom:798.885325px;}
.y1e2{bottom:805.216844px;}
.y207{bottom:805.433594px;}
.y11b{bottom:806.283325px;}
.y1a0{bottom:806.701095px;}
.y72{bottom:807.165298px;}
.y44{bottom:807.165344px;}
.yb6{bottom:808.485168px;}
.y8e{bottom:808.485260px;}
.yee{bottom:808.485306px;}
.y160{bottom:813.879325px;}
.yb{bottom:816.723450px;}
.y1e1{bottom:820.210844px;}
.y206{bottom:820.427594px;}
.y19f{bottom:821.695095px;}
.y11a{bottom:825.033325px;}
.y71{bottom:825.915298px;}
.y43{bottom:825.915344px;}
.yb5{bottom:827.235168px;}
.y8d{bottom:827.235260px;}
.yed{bottom:827.235306px;}
.y15f{bottom:828.873325px;}
.y1e0{bottom:835.204844px;}
.y205{bottom:835.421594px;}
.ya{bottom:835.473450px;}
.y19e{bottom:836.689095px;}
.y14f{bottom:837.335724px;}
.y119{bottom:843.783325px;}
.y15e{bottom:843.867325px;}
.y70{bottom:844.665298px;}
.y42{bottom:844.665344px;}
.yb4{bottom:845.985168px;}
.y8c{bottom:845.985260px;}
.yec{bottom:845.985306px;}
.y1df{bottom:850.198844px;}
.y204{bottom:850.415594px;}
.y19d{bottom:851.683095px;}
.y15d{bottom:858.861325px;}
.y118{bottom:862.533325px;}
.y6f{bottom:863.415298px;}
.y41{bottom:863.415344px;}
.y8b{bottom:864.735260px;}
.yeb{bottom:864.735306px;}
.y1de{bottom:865.192844px;}
.y203{bottom:865.409594px;}
.y19c{bottom:866.677095px;}
.y15c{bottom:873.855325px;}
.y14e{bottom:874.835724px;}
.y9{bottom:879.656208px;}
.y1dd{bottom:880.186844px;}
.y202{bottom:880.403594px;}
.y117{bottom:881.283325px;}
.y19b{bottom:881.671095px;}
.y6e{bottom:882.165298px;}
.y40{bottom:882.165344px;}
.yb3{bottom:883.485168px;}
.y8a{bottom:883.485260px;}
.yea{bottom:883.485306px;}
.y15b{bottom:888.849325px;}
.y8{bottom:894.650208px;}
.y1dc{bottom:895.180844px;}
.y201{bottom:895.397594px;}
.y19a{bottom:896.665095px;}
.y116{bottom:900.033325px;}
.y6d{bottom:900.915298px;}
.y3f{bottom:900.915344px;}
.yb2{bottom:902.235168px;}
.y89{bottom:902.235260px;}
.ye9{bottom:902.235306px;}
.y15a{bottom:903.843325px;}
.y1db{bottom:910.174844px;}
.y200{bottom:910.391594px;}
.y199{bottom:911.659095px;}
.y115{bottom:918.783325px;}
.y159{bottom:918.837325px;}
.y6c{bottom:919.665298px;}
.y3e{bottom:919.665344px;}
.yb1{bottom:920.985168px;}
.y88{bottom:920.985260px;}
.ye8{bottom:920.985306px;}
.y1da{bottom:925.168844px;}
.y1ff{bottom:925.385594px;}
.y198{bottom:926.653095px;}
.y14d{bottom:931.119342px;}
.y158{bottom:933.831325px;}
.y7{bottom:937.250244px;}
.y114{bottom:937.533325px;}
.y6b{bottom:938.415298px;}
.y3d{bottom:938.415344px;}
.y87{bottom:939.735260px;}
.ye7{bottom:939.735306px;}
.y1d9{bottom:940.162844px;}
.y1fe{bottom:940.379594px;}
.y197{bottom:941.647095px;}
.y14c{bottom:946.113342px;}
.y157{bottom:948.825325px;}
.y1d8{bottom:955.156844px;}
.y1fd{bottom:955.373594px;}
.y113{bottom:956.283325px;}
.y196{bottom:956.641095px;}
.y6a{bottom:957.165298px;}
.y3c{bottom:957.165344px;}
.yb0{bottom:958.485168px;}
.y86{bottom:958.485260px;}
.ye6{bottom:958.485306px;}
.y14b{bottom:961.107342px;}
.y156{bottom:963.819325px;}
.y1d7{bottom:970.150844px;}
.y1fc{bottom:970.367594px;}
.y195{bottom:971.635095px;}
.y112{bottom:975.033325px;}
.y69{bottom:975.915298px;}
.y3b{bottom:975.915344px;}
.y14a{bottom:976.101342px;}
.y85{bottom:977.235260px;}
.ye5{bottom:977.235306px;}
.y155{bottom:978.813325px;}
.y6{bottom:981.936768px;}
.y1d6{bottom:985.144844px;}
.y1fb{bottom:985.361594px;}
.y194{bottom:986.629095px;}
.y149{bottom:991.095342px;}
.y111{bottom:993.783325px;}
.y154{bottom:993.807325px;}
.y68{bottom:994.665298px;}
.y3a{bottom:994.665344px;}
.y84{bottom:995.985260px;}
.ye4{bottom:995.985306px;}
.y1d5{bottom:1000.138844px;}
.y1fa{bottom:1000.355594px;}
.y193{bottom:1001.623095px;}
.y148{bottom:1006.089342px;}
.y153{bottom:1008.801325px;}
.y5{bottom:1008.936768px;}
.y110{bottom:1012.533325px;}
.y67{bottom:1013.415298px;}
.y39{bottom:1013.415344px;}
.yaf{bottom:1014.735260px;}
.ye3{bottom:1014.735306px;}
.y1d4{bottom:1015.132844px;}
.y1f9{bottom:1015.349594px;}
.y192{bottom:1016.617095px;}
.y152{bottom:1023.795325px;}
.y1d3{bottom:1030.126844px;}
.y1f8{bottom:1030.343594px;}
.y10f{bottom:1031.283325px;}
.y191{bottom:1031.611095px;}
.y66{bottom:1032.165298px;}
.y38{bottom:1032.165344px;}
.y83{bottom:1033.485260px;}
.ye2{bottom:1033.485306px;}
.y151{bottom:1038.789325px;}
.y147{bottom:1039.800342px;}
.y1d2{bottom:1045.120844px;}
.y1f7{bottom:1045.337594px;}
.y190{bottom:1046.605095px;}
.y10e{bottom:1050.033325px;}
.y65{bottom:1050.915298px;}
.y37{bottom:1050.915344px;}
.yae{bottom:1052.235260px;}
.ye1{bottom:1052.235306px;}
.y150{bottom:1053.783325px;}
.y146{bottom:1054.794342px;}
.y1d1{bottom:1060.114844px;}
.y1f6{bottom:1060.331594px;}
.y18f{bottom:1061.599095px;}
.y64{bottom:1069.665298px;}
.y36{bottom:1069.665344px;}
.y82{bottom:1070.985260px;}
.ye0{bottom:1070.985306px;}
.y1d0{bottom:1075.108844px;}
.y1f5{bottom:1075.325594px;}
.y18e{bottom:1076.593095px;}
.y10d{bottom:1087.533325px;}
.y63{bottom:1088.415298px;}
.y35{bottom:1088.415344px;}
.y145{bottom:1088.544342px;}
.y81{bottom:1089.735260px;}
.ydf{bottom:1089.735306px;}
.y1cf{bottom:1090.102844px;}
.y1f4{bottom:1090.319594px;}
.y18d{bottom:1091.587095px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y34{bottom:1127.482361px;}
.y80{bottom:1127.482544px;}
.he{height:25.204199px;}
.hd{height:36.006000px;}
.hc{height:36.855469px;}
.h2{height:42.048000px;}
.h8{height:42.360000px;}
.h4{height:44.676000px;}
.h14{height:45.643286px;}
.h15{height:45.934126px;}
.h11{height:49.113000px;}
.h12{height:52.173000px;}
.h10{height:53.652000px;}
.h3{height:54.862258px;}
.h13{height:56.936099px;}
.ha{height:57.780000px;}
.h7{height:59.340000px;}
.h9{height:61.380000px;}
.hf{height:64.680000px;}
.h6{height:64.824000px;}
.hb{height:71.208000px;}
.h5{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x7{left:78.746400px;}
.xd{left:81.035550px;}
.xe{left:87.040800px;}
.x8{left:93.543303px;}
.x6{left:97.796100px;}
.xf{left:102.048152px;}
.xa{left:271.394554px;}
.xb{left:427.345184px;}
.x4{left:459.200393px;}
.x5{left:476.210393px;}
.x10{left:484.701174px;}
.xc{left:576.920837px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.x9{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.146667pt;}
.v1{vertical-align:21.333333pt;}
.ls34{letter-spacing:-4.640000pt;}
.ls43{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.373333pt;}
.ls75{letter-spacing:-0.362667pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls72{letter-spacing:-0.317333pt;}
.ls73{letter-spacing:-0.272000pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls74{letter-spacing:-0.226667pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls76{letter-spacing:-0.181333pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls70{letter-spacing:-0.136000pt;}
.ls28{letter-spacing:-0.106667pt;}
.ls56{letter-spacing:-0.090667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls6f{letter-spacing:-0.045333pt;}
.ls19{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.026667pt;}
.ls5f{letter-spacing:0.045333pt;}
.ls36{letter-spacing:0.053309pt;}
.lsc{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.058667pt;}
.ls50{letter-spacing:0.080000pt;}
.ls51{letter-spacing:0.090667pt;}
.ls3e{letter-spacing:0.095985pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5a{letter-spacing:0.113333pt;}
.ls69{letter-spacing:0.136000pt;}
.lsb{letter-spacing:0.154659pt;}
.ls17{letter-spacing:0.158926pt;}
.ls23{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.170656pt;}
.ls5c{letter-spacing:0.181333pt;}
.ls2c{letter-spacing:0.186667pt;}
.ls26{letter-spacing:0.192000pt;}
.ls79{letter-spacing:0.204000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.226667pt;}
.ls52{letter-spacing:0.234667pt;}
.ls10{letter-spacing:0.240000pt;}
.ls48{letter-spacing:0.245333pt;}
.ls57{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.272000pt;}
.ls2f{letter-spacing:0.277289pt;}
.lsa{letter-spacing:0.293333pt;}
.ls6b{letter-spacing:0.294667pt;}
.ls5e{letter-spacing:0.317333pt;}
.ls3a{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.324295pt;}
.ls4c{letter-spacing:0.325333pt;}
.ls4a{letter-spacing:0.335989pt;}
.ls45{letter-spacing:0.346667pt;}
.ls77{letter-spacing:0.362667pt;}
.lsf{letter-spacing:0.373333pt;}
.ls5b{letter-spacing:0.385333pt;}
.ls46{letter-spacing:0.400000pt;}
.ls53{letter-spacing:0.408000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.442667pt;}
.ls25{letter-spacing:0.453333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls54{letter-spacing:0.498667pt;}
.ls7{letter-spacing:0.533333pt;}
.ls60{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.570667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls66{letter-spacing:0.589333pt;}
.ls61{letter-spacing:0.612000pt;}
.ls65{letter-spacing:0.634667pt;}
.ls21{letter-spacing:0.640000pt;}
.ls55{letter-spacing:0.657333pt;}
.ls3b{letter-spacing:0.661333pt;}
.ls6c{letter-spacing:0.680000pt;}
.ls22{letter-spacing:0.693333pt;}
.ls5d{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.746667pt;}
.ls64{letter-spacing:0.770667pt;}
.ls4d{letter-spacing:0.773333pt;}
.ls9{letter-spacing:0.800000pt;}
.ls78{letter-spacing:0.816000pt;}
.lse{letter-spacing:0.853333pt;}
.ls58{letter-spacing:0.861333pt;}
.ls47{letter-spacing:0.880000pt;}
.ls15{letter-spacing:0.906667pt;}
.ls37{letter-spacing:0.938667pt;}
.ls7b{letter-spacing:0.952000pt;}
.ls11{letter-spacing:0.960000pt;}
.ls13{letter-spacing:0.997319pt;}
.ls6a{letter-spacing:0.997333pt;}
.ls20{letter-spacing:1.013333pt;}
.ls4e{letter-spacing:1.040000pt;}
.ls68{letter-spacing:1.042667pt;}
.ls24{letter-spacing:1.066667pt;}
.ls31{letter-spacing:1.093333pt;}
.ls63{letter-spacing:1.110667pt;}
.ls1e{letter-spacing:1.120000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls71{letter-spacing:1.178667pt;}
.ls7a{letter-spacing:1.224000pt;}
.ls44{letter-spacing:1.226667pt;}
.ls33{letter-spacing:1.280000pt;}
.ls32{letter-spacing:1.333333pt;}
.ls6e{letter-spacing:1.360000pt;}
.ls49{letter-spacing:1.386667pt;}
.ls62{letter-spacing:1.405333pt;}
.ls12{letter-spacing:1.413333pt;}
.ls2d{letter-spacing:1.440000pt;}
.ls59{letter-spacing:1.450667pt;}
.ls3f{letter-spacing:1.493333pt;}
.ls30{letter-spacing:1.546667pt;}
.ls6d{letter-spacing:1.586667pt;}
.ls5{letter-spacing:1.600000pt;}
.ls27{letter-spacing:1.653333pt;}
.ls4f{letter-spacing:1.706667pt;}
.ls39{letter-spacing:1.813333pt;}
.ls38{letter-spacing:1.840000pt;}
.ls3c{letter-spacing:1.866667pt;}
.ls4b{letter-spacing:2.506667pt;}
.ls41{letter-spacing:160.013868pt;}
.ls42{letter-spacing:515.490105pt;}
.ws2{word-spacing:-16.384000pt;}
.ws54{word-spacing:-15.173333pt;}
.ws55{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws98{word-spacing:-13.184000pt;}
.ws42{word-spacing:-13.013333pt;}
.ws28{word-spacing:-12.928000pt;}
.ws99{word-spacing:-11.945333pt;}
.ws95{word-spacing:-11.560000pt;}
.ws7c{word-spacing:-11.333333pt;}
.ws4b{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws6a{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws43{word-spacing:-8.693333pt;}
.ws8e{word-spacing:-8.613333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws6b{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws56{word-spacing:-6.666667pt;}
.ws7b{word-spacing:-5.666667pt;}
.ws82{word-spacing:-2.506667pt;}
.ws8{word-spacing:-1.680000pt;}
.wsc5{word-spacing:-1.450667pt;}
.ws4c{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.333333pt;}
.ws4d{word-spacing:-1.280000pt;}
.wsb2{word-spacing:-1.178667pt;}
.ws1c{word-spacing:-1.173333pt;}
.ws90{word-spacing:-1.133333pt;}
.ws12{word-spacing:-1.120000pt;}
.ws2f{word-spacing:-1.066667pt;}
.wsa5{word-spacing:-1.042667pt;}
.ws8a{word-spacing:-1.013333pt;}
.ws60{word-spacing:-0.960000pt;}
.ws1e{word-spacing:-0.906667pt;}
.ws9b{word-spacing:-0.861333pt;}
.ws3e{word-spacing:-0.853333pt;}
.ws2b{word-spacing:-0.800000pt;}
.wsbf{word-spacing:-0.770667pt;}
.ws46{word-spacing:-0.746667pt;}
.wsba{word-spacing:-0.725333pt;}
.ws2e{word-spacing:-0.693333pt;}
.ws13{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.544000pt;}
.ws32{word-spacing:-0.533333pt;}
.wsa9{word-spacing:-0.498667pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws85{word-spacing:-0.426667pt;}
.wsaf{word-spacing:-0.408000pt;}
.wsf{word-spacing:-0.373333pt;}
.wsb0{word-spacing:-0.362667pt;}
.ws47{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.266667pt;}
.ws9f{word-spacing:-0.226667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws9d{word-spacing:-0.181333pt;}
.ws33{word-spacing:-0.160000pt;}
.ws27{word-spacing:-0.106667pt;}
.ws63{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws68{word-spacing:0.053333pt;}
.ws17{word-spacing:0.106667pt;}
.wsc6{word-spacing:0.136000pt;}
.ws34{word-spacing:0.160000pt;}
.ws39{word-spacing:0.213333pt;}
.ws88{word-spacing:0.266667pt;}
.ws4a{word-spacing:0.320000pt;}
.ws5e{word-spacing:0.373333pt;}
.ws96{word-spacing:0.408000pt;}
.ws86{word-spacing:0.426667pt;}
.ws2c{word-spacing:0.480000pt;}
.ws9e{word-spacing:0.498667pt;}
.ws52{word-spacing:0.533333pt;}
.ws10{word-spacing:0.586667pt;}
.wsd{word-spacing:0.693333pt;}
.ws51{word-spacing:0.746667pt;}
.ws41{word-spacing:0.800000pt;}
.wsa3{word-spacing:0.816000pt;}
.ws31{word-spacing:0.853333pt;}
.ws93{word-spacing:0.861333pt;}
.wsa{word-spacing:0.906667pt;}
.ws79{word-spacing:0.960000pt;}
.wsa1{word-spacing:1.042667pt;}
.ws77{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.ws94{word-spacing:1.133333pt;}
.ws40{word-spacing:1.173333pt;}
.wsbb{word-spacing:1.178667pt;}
.wsb6{word-spacing:1.224000pt;}
.ws5c{word-spacing:1.226667pt;}
.ws76{word-spacing:1.280000pt;}
.wsa4{word-spacing:1.314667pt;}
.wse{word-spacing:1.333333pt;}
.wsaa{word-spacing:1.360000pt;}
.ws30{word-spacing:1.440000pt;}
.ws2d{word-spacing:1.493333pt;}
.ws97{word-spacing:1.541333pt;}
.ws29{word-spacing:1.546667pt;}
.wsc1{word-spacing:1.586667pt;}
.ws3d{word-spacing:1.600000pt;}
.ws5d{word-spacing:1.653333pt;}
.wsb7{word-spacing:1.677333pt;}
.ws1f{word-spacing:1.706667pt;}
.ws57{word-spacing:1.760000pt;}
.wsc7{word-spacing:1.768000pt;}
.ws37{word-spacing:1.813333pt;}
.ws2a{word-spacing:1.866667pt;}
.ws3c{word-spacing:1.920000pt;}
.ws65{word-spacing:1.973333pt;}
.wsa0{word-spacing:1.994667pt;}
.ws16{word-spacing:2.026667pt;}
.wsa7{word-spacing:2.040000pt;}
.ws48{word-spacing:2.080000pt;}
.wsa8{word-spacing:2.130667pt;}
.ws64{word-spacing:2.133333pt;}
.wsb3{word-spacing:2.176000pt;}
.ws18{word-spacing:2.240000pt;}
.wsbc{word-spacing:2.266667pt;}
.ws3a{word-spacing:2.293333pt;}
.ws62{word-spacing:2.346667pt;}
.wsbd{word-spacing:2.357333pt;}
.ws24{word-spacing:2.400000pt;}
.ws50{word-spacing:2.453333pt;}
.ws49{word-spacing:2.506667pt;}
.ws9a{word-spacing:2.538667pt;}
.ws1d{word-spacing:2.560000pt;}
.wsb4{word-spacing:2.584000pt;}
.wsc0{word-spacing:2.629333pt;}
.ws1a{word-spacing:2.666667pt;}
.ws53{word-spacing:2.720000pt;}
.wsae{word-spacing:2.765333pt;}
.ws67{word-spacing:2.773333pt;}
.wsab{word-spacing:2.810667pt;}
.ws5a{word-spacing:2.880000pt;}
.ws9c{word-spacing:2.901333pt;}
.ws26{word-spacing:2.933333pt;}
.ws44{word-spacing:2.986667pt;}
.ws7e{word-spacing:3.040000pt;}
.ws91{word-spacing:3.082667pt;}
.ws89{word-spacing:3.093333pt;}
.wsb1{word-spacing:3.128000pt;}
.ws25{word-spacing:3.146667pt;}
.wsb5{word-spacing:3.173333pt;}
.ws5f{word-spacing:3.200000pt;}
.ws74{word-spacing:3.253333pt;}
.ws38{word-spacing:3.413333pt;}
.wsc2{word-spacing:3.445333pt;}
.ws84{word-spacing:3.466667pt;}
.ws22{word-spacing:3.520000pt;}
.wsac{word-spacing:3.536000pt;}
.wsad{word-spacing:3.581333pt;}
.ws59{word-spacing:3.626667pt;}
.ws35{word-spacing:3.680000pt;}
.ws78{word-spacing:3.733333pt;}
.ws7f{word-spacing:3.786667pt;}
.ws45{word-spacing:3.840000pt;}
.wsa6{word-spacing:3.853333pt;}
.ws23{word-spacing:4.000000pt;}
.ws92{word-spacing:4.034667pt;}
.wsa2{word-spacing:4.080000pt;}
.ws7d{word-spacing:4.160000pt;}
.wsbe{word-spacing:4.306667pt;}
.ws8c{word-spacing:4.480000pt;}
.ws83{word-spacing:4.533333pt;}
.ws8b{word-spacing:4.586667pt;}
.ws66{word-spacing:4.640000pt;}
.ws69{word-spacing:4.693333pt;}
.ws87{word-spacing:4.746667pt;}
.ws4f{word-spacing:4.800000pt;}
.ws80{word-spacing:4.906667pt;}
.ws1b{word-spacing:5.066667pt;}
.wsb9{word-spacing:5.077333pt;}
.ws75{word-spacing:5.173333pt;}
.ws5b{word-spacing:5.280000pt;}
.ws8d{word-spacing:5.333333pt;}
.ws7a{word-spacing:5.440000pt;}
.ws4e{word-spacing:5.866667pt;}
.ws15{word-spacing:5.920000pt;}
.ws61{word-spacing:6.026667pt;}
.wsb8{word-spacing:6.165333pt;}
.ws3f{word-spacing:6.293333pt;}
.ws8f{word-spacing:6.453333pt;}
.ws58{word-spacing:7.146667pt;}
.ws81{word-spacing:10.453333pt;}
.wsc3{word-spacing:12.149333pt;}
.wsc4{word-spacing:15.821333pt;}
.ws14{word-spacing:19.072000pt;}
.ws20{word-spacing:64.237333pt;}
.ws6f{word-spacing:112.925333pt;}
.ws6c{word-spacing:130.560000pt;}
.ws6e{word-spacing:135.592000pt;}
.ws73{word-spacing:327.805333pt;}
.ws70{word-spacing:339.138667pt;}
.ws6d{word-spacing:667.397333pt;}
.ws72{word-spacing:991.802667pt;}
.ws71{word-spacing:1101.690667pt;}
._12{margin-left:-2630.557387pt;}
._a{margin-left:-64.600000pt;}
._4d{margin-left:-19.085333pt;}
._4a{margin-left:-16.297333pt;}
._6{margin-left:-14.733333pt;}
._4b{margin-left:-13.282667pt;}
._1b{margin-left:-12.372818pt;}
._10{margin-left:-11.088000pt;}
._18{margin-left:-9.498667pt;}
._17{margin-left:-8.032000pt;}
._19{margin-left:-6.207992pt;}
._4{margin-left:-5.098681pt;}
._44{margin-left:-4.181333pt;}
._1{margin-left:-3.251200pt;}
._11{margin-left:-2.346667pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.224000pt;}
._e{width:2.186667pt;}
._d{width:3.104000pt;}
._1c{width:4.501327pt;}
._5{width:5.648000pt;}
._15{width:7.466667pt;}
._16{width:8.533333pt;}
._1a{width:11.017600pt;}
._45{width:12.013313pt;}
._14{width:14.720000pt;}
._7{width:16.320000pt;}
._f{width:18.245333pt;}
._49{width:19.512818pt;}
._47{width:21.021340pt;}
._48{width:22.770667pt;}
._4c{width:24.277333pt;}
._46{width:26.338667pt;}
._13{width:29.333333pt;}
._c{width:32.000000pt;}
._2{width:36.117308pt;}
._9{width:48.552000pt;}
._8{width:64.237333pt;}
._20{width:119.226667pt;}
._33{width:124.258667pt;}
._2e{width:144.205333pt;}
._26{width:146.925333pt;}
._2f{width:155.538667pt;}
._37{width:158.258667pt;}
._2b{width:166.872000pt;}
._38{width:169.592000pt;}
._23{width:180.925333pt;}
._25{width:192.258667pt;}
._2c{width:200.872000pt;}
._28{width:203.592000pt;}
._2a{width:209.213333pt;}
._30{width:212.432000pt;}
._29{width:214.925333pt;}
._31{width:223.538667pt;}
._3f{width:226.258667pt;}
._40{width:237.592000pt;}
._3b{width:248.925333pt;}
._3c{width:260.258667pt;}
._27{width:267.920000pt;}
._1f{width:305.592000pt;}
._3a{width:306.578667pt;}
._1e{width:311.912544pt;}
._21{width:316.925333pt;}
._42{width:327.805333pt;}
._1d{width:334.579130pt;}
._35{width:350.472000pt;}
._3d{width:367.562667pt;}
._43{width:383.959537pt;}
._3e{width:392.405333pt;}
._22{width:415.253333pt;}
._41{width:424.592000pt;}
._39{width:471.648000pt;}
._24{width:678.730667pt;}
._34{width:715.632000pt;}
._36{width:723.384000pt;}
._32{width:848.173867pt;}
._2d{width:891.378667pt;}
._b{width:1613.186586pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y124{bottom:95.925872pt;}
.y33{bottom:100.389600pt;}
.y1ce{bottom:103.979640pt;}
.y2d{bottom:109.309733pt;}
.y1cd{bottom:117.307640pt;}
.y123{bottom:117.572530pt;}
.y32{bottom:118.250936pt;}
.y2c{bottom:125.976400pt;}
.y1cc{bottom:130.635640pt;}
.y18c{bottom:137.016289pt;}
.y13d{bottom:138.698281pt;}
.y31{bottom:140.483608pt;}
.y2b{bottom:142.643066pt;}
.y1cb{bottom:143.963640pt;}
.y18b{bottom:150.344289pt;}
.y30{bottom:153.811608pt;}
.y13c{bottom:155.403615pt;}
.y1ca{bottom:157.291640pt;}
.y2a{bottom:159.309733pt;}
.y18a{bottom:163.672289pt;}
.y62{bottom:167.480265pt;}
.y141{bottom:168.653564pt;}
.y1c9{bottom:170.619640pt;}
.y13b{bottom:172.040948pt;}
.y2f{bottom:173.848941pt;}
.y29{bottom:175.976400pt;}
.y189{bottom:177.000289pt;}
.y1c8{bottom:183.947640pt;}
.y61{bottom:184.146932pt;}
.y140{bottom:185.320231pt;}
.y10c{bottom:185.320272pt;}
.y2e{bottom:187.176941pt;}
.y13a{bottom:188.678281pt;}
.y188{bottom:190.328289pt;}
.y28{bottom:192.643066pt;}
.yde{bottom:193.653605pt;}
.y1c7{bottom:197.275640pt;}
.y60{bottom:200.813599pt;}
.ycf{bottom:201.986816pt;}
.yad{bottom:201.986898pt;}
.y10b{bottom:201.986938pt;}
.y187{bottom:203.656289pt;}
.y139{bottom:205.315615pt;}
.y27{bottom:209.309733pt;}
.ydd{bottom:210.320272pt;}
.y1c6{bottom:210.603640pt;}
.y186{bottom:216.984289pt;}
.y5f{bottom:217.480265pt;}
.yce{bottom:218.653483pt;}
.yac{bottom:218.653564pt;}
.y10a{bottom:218.653605pt;}
.y138{bottom:221.952948pt;}
.y1c5{bottom:223.931640pt;}
.y25{bottom:225.976400pt;}
.ydc{bottom:226.986938pt;}
.y185{bottom:230.312289pt;}
.y5e{bottom:234.146932pt;}
.ycd{bottom:235.320150pt;}
.yab{bottom:235.320231pt;}
.y109{bottom:235.320272pt;}
.y1c4{bottom:237.259640pt;}
.y137{bottom:238.590281pt;}
.y24{bottom:242.643066pt;}
.y184{bottom:243.640289pt;}
.ydb{bottom:243.653605pt;}
.y1c3{bottom:250.587640pt;}
.y5d{bottom:250.813599pt;}
.ycc{bottom:251.986816pt;}
.yaa{bottom:251.986898pt;}
.y108{bottom:251.986938pt;}
.y136{bottom:255.227615pt;}
.y183{bottom:256.968289pt;}
.y23{bottom:259.309733pt;}
.yda{bottom:260.320272pt;}
.y1c2{bottom:263.915640pt;}
.y5c{bottom:267.480265pt;}
.ycb{bottom:268.653483pt;}
.ya9{bottom:268.653564pt;}
.y107{bottom:268.653605pt;}
.y182{bottom:270.296289pt;}
.y135{bottom:271.864948pt;}
.y22{bottom:275.976400pt;}
.y1c1{bottom:277.243640pt;}
.y181{bottom:283.624289pt;}
.y5b{bottom:284.146932pt;}
.yca{bottom:285.320150pt;}
.ya8{bottom:285.320231pt;}
.y106{bottom:285.320272pt;}
.y134{bottom:288.502281pt;}
.y1c0{bottom:290.571640pt;}
.y21{bottom:292.643066pt;}
.yd9{bottom:293.653605pt;}
.y180{bottom:296.952289pt;}
.y5a{bottom:300.813599pt;}
.yc9{bottom:301.986816pt;}
.ya7{bottom:301.986898pt;}
.y105{bottom:301.986938pt;}
.y1bf{bottom:303.899640pt;}
.y133{bottom:305.139615pt;}
.y20{bottom:309.309733pt;}
.y17f{bottom:310.280289pt;}
.y144{bottom:312.034409pt;}
.y1be{bottom:317.227640pt;}
.y59{bottom:317.480265pt;}
.yc8{bottom:318.653483pt;}
.ya6{bottom:318.653564pt;}
.y104{bottom:318.653605pt;}
.y132{bottom:321.776948pt;}
.y17e{bottom:323.608289pt;}
.y143{bottom:325.362409pt;}
.y1f{bottom:325.976400pt;}
.yd8{bottom:326.986898pt;}
.y1bd{bottom:330.555640pt;}
.y58{bottom:334.146932pt;}
.yc7{bottom:335.320150pt;}
.ya5{bottom:335.320231pt;}
.y103{bottom:335.320272pt;}
.y17d{bottom:336.936289pt;}
.y131{bottom:338.414281pt;}
.y142{bottom:338.690409pt;}
.y1e{bottom:342.643066pt;}
.yd7{bottom:343.653564pt;}
.y1bc{bottom:343.883640pt;}
.y17c{bottom:350.264289pt;}
.y57{bottom:350.813599pt;}
.yc6{bottom:351.986816pt;}
.ya4{bottom:351.986898pt;}
.y102{bottom:351.986938pt;}
.y130{bottom:355.051615pt;}
.y1bb{bottom:357.211640pt;}
.y1d{bottom:359.309733pt;}
.yd6{bottom:360.320231pt;}
.y17b{bottom:363.592289pt;}
.y56{bottom:367.480265pt;}
.yc5{bottom:368.653483pt;}
.ya3{bottom:368.653564pt;}
.y101{bottom:368.653605pt;}
.y1ba{bottom:370.539640pt;}
.y12f{bottom:371.688948pt;}
.y1c{bottom:375.976400pt;}
.y17a{bottom:376.920289pt;}
.yd5{bottom:376.986898pt;}
.y1b9{bottom:383.867640pt;}
.y55{bottom:384.146932pt;}
.yc4{bottom:385.320150pt;}
.ya2{bottom:385.320231pt;}
.y100{bottom:385.320272pt;}
.y12e{bottom:388.326281pt;}
.y179{bottom:390.248289pt;}
.y1b{bottom:392.643066pt;}
.yd4{bottom:393.653564pt;}
.y1b8{bottom:397.195640pt;}
.y54{bottom:400.813599pt;}
.yc3{bottom:401.986816pt;}
.ya1{bottom:401.986898pt;}
.yff{bottom:401.986938pt;}
.y178{bottom:403.576289pt;}
.y12d{bottom:404.963615pt;}
.y26{bottom:409.309733pt;}
.yd3{bottom:410.320231pt;}
.y1b7{bottom:410.523640pt;}
.y177{bottom:416.904289pt;}
.y53{bottom:417.480265pt;}
.ya0{bottom:418.653564pt;}
.yfe{bottom:418.653605pt;}
.y12c{bottom:421.600948pt;}
.y1b6{bottom:423.851640pt;}
.y1a{bottom:425.976400pt;}
.yd2{bottom:426.986898pt;}
.y176{bottom:430.232289pt;}
.y52{bottom:434.146932pt;}
.yc2{bottom:435.320150pt;}
.y9f{bottom:435.320231pt;}
.yfd{bottom:435.320272pt;}
.y1b5{bottom:437.179640pt;}
.y12b{bottom:438.238281pt;}
.y175{bottom:443.560289pt;}
.yd1{bottom:443.653564pt;}
.y1b4{bottom:450.507640pt;}
.y7f{bottom:450.813599pt;}
.y9e{bottom:451.986898pt;}
.y13f{bottom:451.986938pt;}
.y12a{bottom:454.862929pt;}
.y174{bottom:456.888289pt;}
.yd0{bottom:460.320231pt;}
.y1b3{bottom:463.835640pt;}
.y51{bottom:467.480265pt;}
.y9d{bottom:468.653564pt;}
.yfc{bottom:468.653605pt;}
.y173{bottom:470.216289pt;}
.y129{bottom:471.500262pt;}
.y19{bottom:475.976400pt;}
.y1b2{bottom:477.163640pt;}
.y172{bottom:483.544289pt;}
.y7e{bottom:484.146932pt;}
.yc1{bottom:485.320150pt;}
.y9c{bottom:485.320231pt;}
.y13e{bottom:485.320272pt;}
.y1f3{bottom:489.172306pt;}
.y1b1{bottom:490.491640pt;}
.y18{bottom:492.643066pt;}
.y128{bottom:495.806921pt;}
.y171{bottom:496.872289pt;}
.y7d{bottom:500.813599pt;}
.yc0{bottom:501.986816pt;}
.y9b{bottom:501.986898pt;}
.yfb{bottom:501.986938pt;}
.y1f2{bottom:502.500306pt;}
.y1b0{bottom:503.819640pt;}
.y170{bottom:510.200289pt;}
.y1f1{bottom:515.828306pt;}
.y1af{bottom:517.147640pt;}
.y7c{bottom:517.480265pt;}
.y50{bottom:517.480306pt;}
.y127{bottom:517.510254pt;}
.y9a{bottom:518.653564pt;}
.yfa{bottom:518.653605pt;}
.y16f{bottom:523.528289pt;}
.y17{bottom:525.976400pt;}
.y211{bottom:527.818973pt;}
.y1f0{bottom:529.156306pt;}
.y1ae{bottom:530.475640pt;}
.y7b{bottom:534.146932pt;}
.y4f{bottom:534.146973pt;}
.ybf{bottom:535.320150pt;}
.y99{bottom:535.320231pt;}
.yf9{bottom:535.320272pt;}
.y16e{bottom:536.856289pt;}
.y126{bottom:539.482262pt;}
.y210{bottom:541.146973pt;}
.y1ef{bottom:542.484306pt;}
.y16{bottom:542.643066pt;}
.y1ad{bottom:543.803640pt;}
.y16d{bottom:550.184289pt;}
.y7a{bottom:550.813599pt;}
.y4e{bottom:550.813639pt;}
.ybe{bottom:551.986816pt;}
.y98{bottom:551.986898pt;}
.yf8{bottom:551.986938pt;}
.y125{bottom:552.810262pt;}
.y20f{bottom:554.474973pt;}
.y1ee{bottom:555.812306pt;}
.y1ac{bottom:557.131640pt;}
.y15{bottom:559.309733pt;}
.y16c{bottom:563.512289pt;}
.y79{bottom:567.480265pt;}
.y4d{bottom:567.480306pt;}
.y20e{bottom:567.802973pt;}
.ybd{bottom:568.653483pt;}
.y97{bottom:568.653564pt;}
.yf7{bottom:568.653605pt;}
.y1ed{bottom:569.140306pt;}
.y1ab{bottom:570.459640pt;}
.y122{bottom:575.468547pt;}
.y14{bottom:575.976400pt;}
.y16b{bottom:576.840289pt;}
.y1ec{bottom:582.468306pt;}
.y1aa{bottom:583.787640pt;}
.y78{bottom:584.146932pt;}
.y4c{bottom:584.146973pt;}
.y96{bottom:585.320231pt;}
.yf6{bottom:585.320272pt;}
.y16a{bottom:590.168289pt;}
.y13{bottom:592.643066pt;}
.y20d{bottom:594.470306pt;}
.y1eb{bottom:595.796306pt;}
.y1a9{bottom:597.115640pt;}
.y4b{bottom:600.813639pt;}
.ybc{bottom:601.986816pt;}
.y95{bottom:601.986898pt;}
.yf5{bottom:601.986938pt;}
.y169{bottom:603.496289pt;}
.y20c{bottom:607.798306pt;}
.y1ea{bottom:609.124306pt;}
.y12{bottom:609.309733pt;}
.y1a8{bottom:610.443640pt;}
.y121{bottom:616.696289pt;}
.y168{bottom:616.824289pt;}
.y77{bottom:617.480265pt;}
.y4a{bottom:617.480306pt;}
.ybb{bottom:618.653483pt;}
.y94{bottom:618.653564pt;}
.yf4{bottom:618.653605pt;}
.y20b{bottom:621.126306pt;}
.y1e9{bottom:622.452306pt;}
.y1a7{bottom:623.771640pt;}
.y11{bottom:625.976400pt;}
.y167{bottom:630.152289pt;}
.y120{bottom:633.362956pt;}
.y49{bottom:634.146973pt;}
.y20a{bottom:634.454306pt;}
.yba{bottom:635.320150pt;}
.y93{bottom:635.320231pt;}
.yf3{bottom:635.320272pt;}
.y1e8{bottom:635.780306pt;}
.y1a6{bottom:637.099640pt;}
.y10{bottom:642.643066pt;}
.y166{bottom:643.480289pt;}
.y1e7{bottom:649.108306pt;}
.y11f{bottom:650.029622pt;}
.y1a5{bottom:650.427640pt;}
.y76{bottom:650.813599pt;}
.y48{bottom:650.813639pt;}
.yb9{bottom:651.986816pt;}
.y92{bottom:651.986898pt;}
.yf2{bottom:651.986938pt;}
.y165{bottom:656.808289pt;}
.yf{bottom:659.309733pt;}
.y1e6{bottom:662.436306pt;}
.y1a4{bottom:663.755640pt;}
.y11e{bottom:666.696289pt;}
.y75{bottom:667.480265pt;}
.y47{bottom:667.480306pt;}
.yb8{bottom:668.653483pt;}
.y91{bottom:668.653564pt;}
.yf1{bottom:668.653605pt;}
.y164{bottom:670.136289pt;}
.y209{bottom:675.197639pt;}
.y1e5{bottom:675.764306pt;}
.ye{bottom:675.976400pt;}
.y1a3{bottom:677.083640pt;}
.y11d{bottom:683.362956pt;}
.y163{bottom:683.464289pt;}
.y74{bottom:684.146932pt;}
.y46{bottom:684.146973pt;}
.yb7{bottom:685.320150pt;}
.y90{bottom:685.320231pt;}
.yf0{bottom:685.320272pt;}
.y208{bottom:688.525639pt;}
.y1e4{bottom:689.092306pt;}
.y1a2{bottom:690.411640pt;}
.yd{bottom:692.643066pt;}
.y162{bottom:696.792289pt;}
.y11c{bottom:700.029622pt;}
.y73{bottom:700.813599pt;}
.y45{bottom:700.813639pt;}
.y8f{bottom:701.986898pt;}
.yef{bottom:701.986938pt;}
.y1e3{bottom:702.420306pt;}
.y1a1{bottom:703.739640pt;}
.yc{bottom:709.309733pt;}
.y161{bottom:710.120289pt;}
.y1e2{bottom:715.748306pt;}
.y207{bottom:715.940973pt;}
.y11b{bottom:716.696289pt;}
.y1a0{bottom:717.067640pt;}
.y72{bottom:717.480265pt;}
.y44{bottom:717.480306pt;}
.yb6{bottom:718.653483pt;}
.y8e{bottom:718.653564pt;}
.yee{bottom:718.653605pt;}
.y160{bottom:723.448289pt;}
.yb{bottom:725.976400pt;}
.y1e1{bottom:729.076306pt;}
.y206{bottom:729.268973pt;}
.y19f{bottom:730.395640pt;}
.y11a{bottom:733.362956pt;}
.y71{bottom:734.146932pt;}
.y43{bottom:734.146973pt;}
.yb5{bottom:735.320150pt;}
.y8d{bottom:735.320231pt;}
.yed{bottom:735.320272pt;}
.y15f{bottom:736.776289pt;}
.y1e0{bottom:742.404306pt;}
.y205{bottom:742.596973pt;}
.ya{bottom:742.643066pt;}
.y19e{bottom:743.723640pt;}
.y14f{bottom:744.298421pt;}
.y119{bottom:750.029622pt;}
.y15e{bottom:750.104289pt;}
.y70{bottom:750.813599pt;}
.y42{bottom:750.813639pt;}
.yb4{bottom:751.986816pt;}
.y8c{bottom:751.986898pt;}
.yec{bottom:751.986938pt;}
.y1df{bottom:755.732306pt;}
.y204{bottom:755.924973pt;}
.y19d{bottom:757.051640pt;}
.y15d{bottom:763.432289pt;}
.y118{bottom:766.696289pt;}
.y6f{bottom:767.480265pt;}
.y41{bottom:767.480306pt;}
.y8b{bottom:768.653564pt;}
.yeb{bottom:768.653605pt;}
.y1de{bottom:769.060306pt;}
.y203{bottom:769.252973pt;}
.y19c{bottom:770.379640pt;}
.y15c{bottom:776.760289pt;}
.y14e{bottom:777.631755pt;}
.y9{bottom:781.916629pt;}
.y1dd{bottom:782.388306pt;}
.y202{bottom:782.580973pt;}
.y117{bottom:783.362956pt;}
.y19b{bottom:783.707640pt;}
.y6e{bottom:784.146932pt;}
.y40{bottom:784.146973pt;}
.yb3{bottom:785.320150pt;}
.y8a{bottom:785.320231pt;}
.yea{bottom:785.320272pt;}
.y15b{bottom:790.088289pt;}
.y8{bottom:795.244629pt;}
.y1dc{bottom:795.716306pt;}
.y201{bottom:795.908973pt;}
.y19a{bottom:797.035640pt;}
.y116{bottom:800.029622pt;}
.y6d{bottom:800.813599pt;}
.y3f{bottom:800.813639pt;}
.yb2{bottom:801.986816pt;}
.y89{bottom:801.986898pt;}
.ye9{bottom:801.986938pt;}
.y15a{bottom:803.416289pt;}
.y1db{bottom:809.044306pt;}
.y200{bottom:809.236973pt;}
.y199{bottom:810.363640pt;}
.y115{bottom:816.696289pt;}
.y159{bottom:816.744289pt;}
.y6c{bottom:817.480265pt;}
.y3e{bottom:817.480306pt;}
.yb1{bottom:818.653483pt;}
.y88{bottom:818.653564pt;}
.ye8{bottom:818.653605pt;}
.y1da{bottom:822.372306pt;}
.y1ff{bottom:822.564973pt;}
.y198{bottom:823.691640pt;}
.y14d{bottom:827.661637pt;}
.y158{bottom:830.072289pt;}
.y7{bottom:833.111328pt;}
.y114{bottom:833.362956pt;}
.y6b{bottom:834.146932pt;}
.y3d{bottom:834.146973pt;}
.y87{bottom:835.320231pt;}
.ye7{bottom:835.320272pt;}
.y1d9{bottom:835.700306pt;}
.y1fe{bottom:835.892973pt;}
.y197{bottom:837.019640pt;}
.y14c{bottom:840.989637pt;}
.y157{bottom:843.400289pt;}
.y1d8{bottom:849.028306pt;}
.y1fd{bottom:849.220973pt;}
.y113{bottom:850.029622pt;}
.y196{bottom:850.347640pt;}
.y6a{bottom:850.813599pt;}
.y3c{bottom:850.813639pt;}
.yb0{bottom:851.986816pt;}
.y86{bottom:851.986898pt;}
.ye6{bottom:851.986938pt;}
.y14b{bottom:854.317637pt;}
.y156{bottom:856.728289pt;}
.y1d7{bottom:862.356306pt;}
.y1fc{bottom:862.548973pt;}
.y195{bottom:863.675640pt;}
.y112{bottom:866.696289pt;}
.y69{bottom:867.480265pt;}
.y3b{bottom:867.480306pt;}
.y14a{bottom:867.645637pt;}
.y85{bottom:868.653564pt;}
.ye5{bottom:868.653605pt;}
.y155{bottom:870.056289pt;}
.y6{bottom:872.832682pt;}
.y1d6{bottom:875.684306pt;}
.y1fb{bottom:875.876973pt;}
.y194{bottom:877.003640pt;}
.y149{bottom:880.973637pt;}
.y111{bottom:883.362956pt;}
.y154{bottom:883.384289pt;}
.y68{bottom:884.146932pt;}
.y3a{bottom:884.146973pt;}
.y84{bottom:885.320231pt;}
.ye4{bottom:885.320272pt;}
.y1d5{bottom:889.012306pt;}
.y1fa{bottom:889.204973pt;}
.y193{bottom:890.331640pt;}
.y148{bottom:894.301637pt;}
.y153{bottom:896.712289pt;}
.y5{bottom:896.832682pt;}
.y110{bottom:900.029622pt;}
.y67{bottom:900.813599pt;}
.y39{bottom:900.813639pt;}
.yaf{bottom:901.986898pt;}
.ye3{bottom:901.986938pt;}
.y1d4{bottom:902.340306pt;}
.y1f9{bottom:902.532973pt;}
.y192{bottom:903.659640pt;}
.y152{bottom:910.040289pt;}
.y1d3{bottom:915.668306pt;}
.y1f8{bottom:915.860973pt;}
.y10f{bottom:916.696289pt;}
.y191{bottom:916.987640pt;}
.y66{bottom:917.480265pt;}
.y38{bottom:917.480306pt;}
.y83{bottom:918.653564pt;}
.ye2{bottom:918.653605pt;}
.y151{bottom:923.368289pt;}
.y147{bottom:924.266971pt;}
.y1d2{bottom:928.996306pt;}
.y1f7{bottom:929.188973pt;}
.y190{bottom:930.315640pt;}
.y10e{bottom:933.362956pt;}
.y65{bottom:934.146932pt;}
.y37{bottom:934.146973pt;}
.yae{bottom:935.320231pt;}
.ye1{bottom:935.320272pt;}
.y150{bottom:936.696289pt;}
.y146{bottom:937.594971pt;}
.y1d1{bottom:942.324306pt;}
.y1f6{bottom:942.516973pt;}
.y18f{bottom:943.643640pt;}
.y64{bottom:950.813599pt;}
.y36{bottom:950.813639pt;}
.y82{bottom:951.986898pt;}
.ye0{bottom:951.986938pt;}
.y1d0{bottom:955.652306pt;}
.y1f5{bottom:955.844973pt;}
.y18e{bottom:956.971640pt;}
.y10d{bottom:966.696289pt;}
.y63{bottom:967.480265pt;}
.y35{bottom:967.480306pt;}
.y145{bottom:967.594971pt;}
.y81{bottom:968.653564pt;}
.ydf{bottom:968.653605pt;}
.y1cf{bottom:968.980306pt;}
.y1f4{bottom:969.172973pt;}
.y18d{bottom:970.299640pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y34{bottom:1002.206543pt;}
.y80{bottom:1002.206706pt;}
.he{height:22.403733pt;}
.hd{height:32.005333pt;}
.hc{height:32.760417pt;}
.h2{height:37.376000pt;}
.h8{height:37.653333pt;}
.h4{height:39.712000pt;}
.h14{height:40.571809pt;}
.h15{height:40.830334pt;}
.h11{height:43.656000pt;}
.h12{height:46.376000pt;}
.h10{height:47.690667pt;}
.h3{height:48.766452pt;}
.h13{height:50.609866pt;}
.ha{height:51.360000pt;}
.h7{height:52.746667pt;}
.h9{height:54.560000pt;}
.hf{height:57.493333pt;}
.h6{height:57.621333pt;}
.hb{height:63.296000pt;}
.h5{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x7{left:69.996800pt;}
.xd{left:72.031600pt;}
.xe{left:77.369600pt;}
.x8{left:83.149602pt;}
.x6{left:86.929867pt;}
.xf{left:90.709469pt;}
.xa{left:241.239604pt;}
.xb{left:379.862386pt;}
.x4{left:408.178127pt;}
.x5{left:423.298127pt;}
.x10{left:430.845488pt;}
.xc{left:512.818522pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.x9{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; }
  