
    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_715953a3413e48d5a5117629.woff')format("woff");}.ff1{font-family:ff1;line-height:0.683594;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_65daff1dd784b48cb0b183f1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_9c756a5a043506832ee6dd48.woff')format("woff");}.ff3{font-family:ff3;line-height:0.931152;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_88d2dd85ec88168c8a3e4aeb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_b3b356f2ddf00759785077ec.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_4d96341928a94176f896dbb9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_f590d74bdb94c688209c628a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_d261ad04151aa248103b37d9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_b0e70e4707b47c8a26d09ca9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;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_c38981a683481a3dbbc4a81a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a8fcb3feeac8c5500e42ff4b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.833984;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_315b6a7383874d32c3d76c1d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_486e1a6520c73ff547609d71.woff')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.744000px;}
.v1{vertical-align:23.712000px;}
.ls37{letter-spacing:-4.752000px;}
.ls31{letter-spacing:-2.400000px;}
.ls43{letter-spacing:-1.872000px;}
.ls2a{letter-spacing:-1.296000px;}
.ls30{letter-spacing:-1.152000px;}
.ls2b{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.672000px;}
.lsb{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.288000px;}
.ls45{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.864000px;}
.ls7{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.080000px;}
.ls21{letter-spacing:1.440000px;}
.ls1f{letter-spacing:1.728000px;}
.ls1e{letter-spacing:1.800000px;}
.ls20{letter-spacing:1.872000px;}
.ls13{letter-spacing:2.548800px;}
.ls46{letter-spacing:2.702400px;}
.ls0{letter-spacing:2.850000px;}
.ls3f{letter-spacing:2.904000px;}
.ls3a{letter-spacing:2.908800px;}
.ls3d{letter-spacing:2.928000px;}
.ls40{letter-spacing:2.947200px;}
.ls3e{letter-spacing:2.952000px;}
.ls3c{letter-spacing:2.956800px;}
.ls3b{letter-spacing:2.976000px;}
.ls39{letter-spacing:2.985600px;}
.ls27{letter-spacing:3.036000px;}
.ls10{letter-spacing:3.074400px;}
.ls11{letter-spacing:3.096000px;}
.ls47{letter-spacing:3.379200px;}
.ls41{letter-spacing:3.408000px;}
.ls26{letter-spacing:4.039200px;}
.ls2d{letter-spacing:4.392000px;}
.ls25{letter-spacing:4.420800px;}
.ls4{letter-spacing:4.560000px;}
.ls32{letter-spacing:4.680000px;}
.ls42{letter-spacing:4.752000px;}
.ls38{letter-spacing:6.336000px;}
.ls48{letter-spacing:8.100000px;}
.ls3{letter-spacing:8.460000px;}
.ls12{letter-spacing:9.864000px;}
.ls1{letter-spacing:10.740000px;}
.ls33{letter-spacing:237.900000px;}
.ls34{letter-spacing:261.840000px;}
.ls35{letter-spacing:341.580000px;}
.ls36{letter-spacing:433.752000px;}
.ls2f{letter-spacing:615.540000px;}
.ls2e{letter-spacing:630.540000px;}
.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:-25.320000px;}
.ws41{word-spacing:-20.952000px;}
.ws3f{word-spacing:-20.232000px;}
.ws73{word-spacing:-20.088000px;}
.ws40{word-spacing:-19.512000px;}
.ws1{word-spacing:-18.867000px;}
.wsbe{word-spacing:-18.216000px;}
.ws5e{word-spacing:-18.144000px;}
.ws5f{word-spacing:-17.856000px;}
.ws1f{word-spacing:-17.784000px;}
.ws60{word-spacing:-17.712000px;}
.ws91{word-spacing:-17.568000px;}
.wsbf{word-spacing:-17.496000px;}
.wsbd{word-spacing:-17.424000px;}
.ws88{word-spacing:-16.860000px;}
.wsa2{word-spacing:-15.174000px;}
.ws52{word-spacing:-14.162400px;}
.wsc5{word-spacing:-13.488000px;}
.wsc7{word-spacing:-12.816000px;}
.wsd0{word-spacing:-12.336000px;}
.wsc6{word-spacing:-11.856000px;}
.wsa3{word-spacing:-10.422000px;}
.ws6{word-spacing:-10.320000px;}
.wsc8{word-spacing:-9.441600px;}
.wse{word-spacing:-8.460000px;}
.ws0{word-spacing:-8.424000px;}
.wscf{word-spacing:-8.299200px;}
.wsd1{word-spacing:-8.100000px;}
.wsc9{word-spacing:-4.752000px;}
.wsa{word-spacing:-4.560000px;}
.ws18{word-spacing:-2.088000px;}
.ws17{word-spacing:-2.016000px;}
.ws4b{word-spacing:-1.872000px;}
.ws8d{word-spacing:-1.800000px;}
.wsa1{word-spacing:-1.584000px;}
.ws13{word-spacing:-1.512000px;}
.ws25{word-spacing:-1.440000px;}
.ws7d{word-spacing:-1.008000px;}
.ws8c{word-spacing:-0.936000px;}
.ws67{word-spacing:-0.864000px;}
.ws77{word-spacing:-0.720000px;}
.ws57{word-spacing:-0.648000px;}
.ws24{word-spacing:-0.576000px;}
.ws1a{word-spacing:-0.504000px;}
.ws9c{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.360000px;}
.ws94{word-spacing:-0.288000px;}
.ws97{word-spacing:-0.216000px;}
.ws92{word-spacing:-0.144000px;}
.ws4f{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:0.072000px;}
.ws59{word-spacing:0.144000px;}
.ws2b{word-spacing:0.216000px;}
.wsce{word-spacing:0.240000px;}
.wsc2{word-spacing:0.288000px;}
.wsc{word-spacing:0.300000px;}
.ws22{word-spacing:0.360000px;}
.ws1e{word-spacing:0.432000px;}
.ws16{word-spacing:0.504000px;}
.ws5a{word-spacing:0.576000px;}
.ws15{word-spacing:0.648000px;}
.wscc{word-spacing:0.672000px;}
.ws89{word-spacing:0.720000px;}
.ws70{word-spacing:0.792000px;}
.ws26{word-spacing:0.864000px;}
.ws71{word-spacing:0.936000px;}
.ws56{word-spacing:1.008000px;}
.ws2d{word-spacing:1.152000px;}
.wsd{word-spacing:1.200000px;}
.ws95{word-spacing:1.224000px;}
.ws5d{word-spacing:1.296000px;}
.ws5c{word-spacing:1.368000px;}
.ws29{word-spacing:1.440000px;}
.ws4a{word-spacing:1.512000px;}
.wsc4{word-spacing:1.656000px;}
.wsbb{word-spacing:1.728000px;}
.ws8{word-spacing:1.800000px;}
.ws6a{word-spacing:1.872000px;}
.ws1d{word-spacing:1.944000px;}
.ws61{word-spacing:2.016000px;}
.ws8b{word-spacing:2.160000px;}
.ws3b{word-spacing:2.232000px;}
.ws79{word-spacing:2.304000px;}
.ws31{word-spacing:2.376000px;}
.ws51{word-spacing:2.400000px;}
.ws21{word-spacing:2.448000px;}
.ws5b{word-spacing:2.520000px;}
.ws2e{word-spacing:2.592000px;}
.ws7e{word-spacing:2.664000px;}
.wscd{word-spacing:2.688000px;}
.ws82{word-spacing:2.736000px;}
.ws81{word-spacing:2.880000px;}
.ws6e{word-spacing:2.952000px;}
.wscb{word-spacing:2.976000px;}
.ws27{word-spacing:3.024000px;}
.wsbc{word-spacing:3.096000px;}
.wsb9{word-spacing:3.168000px;}
.ws80{word-spacing:3.240000px;}
.wsb{word-spacing:3.300000px;}
.ws1c{word-spacing:3.312000px;}
.wsca{word-spacing:3.360000px;}
.ws20{word-spacing:3.384000px;}
.ws30{word-spacing:3.456000px;}
.ws9e{word-spacing:3.528000px;}
.ws83{word-spacing:3.600000px;}
.ws45{word-spacing:3.672000px;}
.ws4{word-spacing:3.720000px;}
.ws96{word-spacing:3.744000px;}
.ws6c{word-spacing:3.816000px;}
.ws11{word-spacing:3.888000px;}
.ws23{word-spacing:3.960000px;}
.ws14{word-spacing:4.032000px;}
.ws39{word-spacing:4.104000px;}
.ws93{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws50{word-spacing:4.248000px;}
.ws9a{word-spacing:4.320000px;}
.ws3a{word-spacing:4.392000px;}
.ws9{word-spacing:4.464000px;}
.ws43{word-spacing:4.608000px;}
.ws74{word-spacing:4.680000px;}
.ws2c{word-spacing:4.752000px;}
.ws9b{word-spacing:4.824000px;}
.ws66{word-spacing:4.896000px;}
.ws4e{word-spacing:4.968000px;}
.ws12{word-spacing:5.040000px;}
.ws19{word-spacing:5.112000px;}
.wsc3{word-spacing:5.184000px;}
.ws37{word-spacing:5.256000px;}
.ws75{word-spacing:5.328000px;}
.ws78{word-spacing:5.400000px;}
.ws76{word-spacing:5.472000px;}
.ws32{word-spacing:5.544000px;}
.ws8a{word-spacing:5.616000px;}
.ws53{word-spacing:5.688000px;}
.ws63{word-spacing:5.760000px;}
.wsb8{word-spacing:5.832000px;}
.ws90{word-spacing:5.904000px;}
.ws42{word-spacing:5.976000px;}
.ws8f{word-spacing:6.048000px;}
.wsba{word-spacing:6.192000px;}
.ws3d{word-spacing:6.264000px;}
.ws28{word-spacing:6.408000px;}
.ws62{word-spacing:6.552000px;}
.ws86{word-spacing:6.768000px;}
.ws33{word-spacing:6.840000px;}
.ws68{word-spacing:6.912000px;}
.ws38{word-spacing:6.984000px;}
.ws6b{word-spacing:7.056000px;}
.ws35{word-spacing:7.128000px;}
.ws4d{word-spacing:7.200000px;}
.ws55{word-spacing:7.272000px;}
.ws64{word-spacing:7.344000px;}
.ws47{word-spacing:7.416000px;}
.ws69{word-spacing:7.488000px;}
.wsc0{word-spacing:7.560000px;}
.ws9f{word-spacing:7.632000px;}
.ws46{word-spacing:7.704000px;}
.wsc1{word-spacing:7.776000px;}
.ws36{word-spacing:7.920000px;}
.ws34{word-spacing:7.992000px;}
.ws85{word-spacing:8.064000px;}
.ws7{word-spacing:8.400000px;}
.ws1b{word-spacing:8.496000px;}
.ws49{word-spacing:8.568000px;}
.ws8e{word-spacing:8.640000px;}
.ws7a{word-spacing:8.784000px;}
.ws6d{word-spacing:8.856000px;}
.ws2a{word-spacing:8.928000px;}
.ws48{word-spacing:9.000000px;}
.ws3c{word-spacing:9.072000px;}
.ws72{word-spacing:9.144000px;}
.ws6f{word-spacing:9.216000px;}
.ws87{word-spacing:9.288000px;}
.wsa0{word-spacing:9.360000px;}
.ws54{word-spacing:9.432000px;}
.ws3e{word-spacing:9.576000px;}
.ws84{word-spacing:9.648000px;}
.ws7f{word-spacing:9.792000px;}
.ws9d{word-spacing:9.936000px;}
.ws65{word-spacing:10.008000px;}
.ws10{word-spacing:10.080000px;}
.ws2f{word-spacing:10.152000px;}
.ws7c{word-spacing:10.224000px;}
.wsb7{word-spacing:10.368000px;}
.ws99{word-spacing:10.512000px;}
.ws44{word-spacing:10.584000px;}
.ws4c{word-spacing:10.800000px;}
.ws7b{word-spacing:13.176000px;}
.wsa5{word-spacing:29.100000px;}
.wsad{word-spacing:120.720000px;}
.wsa9{word-spacing:136.680000px;}
.wsb1{word-spacing:141.840000px;}
.wsac{word-spacing:142.500000px;}
.wsb5{word-spacing:144.540000px;}
.wsb6{word-spacing:145.200000px;}
.wsae{word-spacing:156.600000px;}
.wsab{word-spacing:169.140000px;}
.wsb3{word-spacing:175.200000px;}
.wsb4{word-spacing:177.360000px;}
.wsa7{word-spacing:182.520000px;}
.wsa6{word-spacing:186.600000px;}
.wsa8{word-spacing:188.340000px;}
.ws98{word-spacing:195.768000px;}
.wsaa{word-spacing:199.140000px;}
.wsb2{word-spacing:271.938000px;}
.wsaf{word-spacing:290.514000px;}
.wsb0{word-spacing:315.630000px;}
.wsa4{word-spacing:362.160000px;}
._c{margin-left:-940.386000px;}
._12{margin-left:-15.032400px;}
._14{margin-left:-13.080000px;}
._8{margin-left:-11.808000px;}
._34{margin-left:-10.777200px;}
._10{margin-left:-8.637600px;}
._f{margin-left:-7.588800px;}
._5{margin-left:-6.120000px;}
._e{margin-left:-4.284000px;}
._2{margin-left:-2.946000px;}
._6{margin-left:-1.188000px;}
._1{width:1.512000px;}
._a{width:2.676000px;}
._9{width:3.756000px;}
._b{width:5.076000px;}
._15{width:6.177600px;}
._13{width:7.920000px;}
._11{width:9.000000px;}
._16{width:10.296000px;}
._17{width:11.455200px;}
._d{width:12.630000px;}
._4{width:26.946000px;}
._35{width:41.877600px;}
._36{width:45.456000px;}
._20{width:52.812000px;}
._3{width:75.216000px;}
._7{width:86.280000px;}
._1c{width:138.540000px;}
._2f{width:152.400000px;}
._31{width:153.540000px;}
._27{width:159.360000px;}
._28{width:162.060000px;}
._33{width:173.460000px;}
._32{width:184.476000px;}
._26{width:186.000000px;}
._2d{width:191.754000px;}
._2b{width:192.780000px;}
._2e{width:194.526000px;}
._0{width:201.564000px;}
._22{width:207.960000px;}
._1f{width:214.680000px;}
._29{width:216.000000px;}
._24{width:231.840000px;}
._2a{width:236.904000px;}
._21{width:255.900000px;}
._2c{width:271.800000px;}
._30{width:292.068000px;}
._23{width:317.040000px;}
._25{width:336.900000px;}
._1b{width:342.816000px;}
._19{width:357.894000px;}
._18{width:442.668000px;}
._1a{width:501.756000px;}
._1e{width:615.540000px;}
._1d{width:860.640000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:39.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y6c{bottom:117.000000px;}
.y194{bottom:118.860000px;}
.y1c4{bottom:119.310000px;}
.yd3{bottom:119.754000px;}
.y160{bottom:119.772000px;}
.y141{bottom:119.809350px;}
.y8f{bottom:120.076050px;}
.y120{bottom:120.330750px;}
.y110{bottom:120.852000px;}
.ye3{bottom:121.145400px;}
.ybe{bottom:121.272000px;}
.y47{bottom:121.834050px;}
.y1f9{bottom:121.980000px;}
.y21e{bottom:122.858250px;}
.y22{bottom:123.084000px;}
.y16e{bottom:126.447750px;}
.y1b4{bottom:126.472650px;}
.y1f8{bottom:137.124000px;}
.y6b{bottom:139.500000px;}
.y193{bottom:140.766000px;}
.y21d{bottom:141.608250px;}
.y1c3{bottom:141.666000px;}
.y15f{bottom:141.966000px;}
.y21{bottom:141.984000px;}
.y140{bottom:142.003350px;}
.yd2{bottom:142.254000px;}
.y11f{bottom:142.830750px;}
.y8e{bottom:142.882050px;}
.y10f{bottom:143.802000px;}
.ye2{bottom:143.951400px;}
.ybd{bottom:144.222000px;}
.y46{bottom:144.334050px;}
.y1f7{bottom:152.268000px;}
.y16d{bottom:153.432750px;}
.y1b3{bottom:153.457650px;}
.y21c{bottom:160.358250px;}
.y20{bottom:160.884000px;}
.y6a{bottom:162.000000px;}
.y192{bottom:162.672000px;}
.y1c2{bottom:164.022000px;}
.y15e{bottom:164.160000px;}
.y13f{bottom:164.197350px;}
.yd1{bottom:164.754000px;}
.y11e{bottom:165.330750px;}
.y8d{bottom:165.688050px;}
.y10e{bottom:166.752000px;}
.ye1{bottom:166.757400px;}
.y45{bottom:166.978050px;}
.ybc{bottom:167.172000px;}
.y1f6{bottom:167.412000px;}
.y16c{bottom:172.182750px;}
.y21b{bottom:179.108250px;}
.y1b2{bottom:180.442650px;}
.y1f5{bottom:182.556000px;}
.y69{bottom:184.500000px;}
.y191{bottom:184.578000px;}
.y15d{bottom:186.354000px;}
.y1c1{bottom:186.378000px;}
.y13e{bottom:186.391350px;}
.yd0{bottom:187.254000px;}
.y11d{bottom:187.830750px;}
.y1f{bottom:188.289000px;}
.y8c{bottom:188.494050px;}
.ye0{bottom:189.563400px;}
.y44{bottom:189.622050px;}
.y10d{bottom:189.702000px;}
.ybb{bottom:190.122000px;}
.y1f4{bottom:197.700000px;}
.y21a{bottom:197.858250px;}
.y16b{bottom:199.167750px;}
.y190{bottom:206.484000px;}
.y68{bottom:207.000000px;}
.y1b1{bottom:207.427650px;}
.y15c{bottom:208.548000px;}
.y13d{bottom:208.585350px;}
.y1c0{bottom:208.734000px;}
.ycf{bottom:209.754000px;}
.y11c{bottom:210.330750px;}
.y8b{bottom:211.300050px;}
.y43{bottom:212.266050px;}
.ydf{bottom:212.369400px;}
.y10c{bottom:212.652000px;}
.y1f3{bottom:212.844000px;}
.yba{bottom:213.072000px;}
.y219{bottom:216.608250px;}
.y16a{bottom:217.917750px;}
.y1f2{bottom:227.988000px;}
.y18f{bottom:228.390000px;}
.y67{bottom:229.500000px;}
.y15b{bottom:230.742000px;}
.y13c{bottom:230.779350px;}
.y1bf{bottom:231.090000px;}
.yce{bottom:232.254000px;}
.y11b{bottom:232.830750px;}
.y1e{bottom:233.589000px;}
.y8a{bottom:234.106050px;}
.y1b0{bottom:234.412650px;}
.y42{bottom:234.910050px;}
.yde{bottom:235.175400px;}
.y10b{bottom:235.602000px;}
.yb9{bottom:236.022000px;}
.y1f1{bottom:243.132000px;}
.y169{bottom:244.902750px;}
.y218{bottom:248.114250px;}
.y18e{bottom:250.296000px;}
.y66{bottom:252.000000px;}
.y1d{bottom:252.489000px;}
.y15a{bottom:252.936000px;}
.y13b{bottom:252.973350px;}
.y1be{bottom:253.446000px;}
.ycd{bottom:254.754000px;}
.y11a{bottom:255.330750px;}
.y89{bottom:256.912050px;}
.y41{bottom:257.554050px;}
.ydd{bottom:257.981400px;}
.y1f0{bottom:258.276000px;}
.y10a{bottom:258.552000px;}
.yb8{bottom:258.972000px;}
.y1af{bottom:261.397650px;}
.y168{bottom:263.652750px;}
.y18d{bottom:272.202000px;}
.y1ef{bottom:273.420000px;}
.y65{bottom:274.500000px;}
.y159{bottom:275.130000px;}
.y13a{bottom:275.167350px;}
.y1bd{bottom:275.802000px;}
.ycc{bottom:277.254000px;}
.y119{bottom:277.830750px;}
.y217{bottom:278.874000px;}
.y88{bottom:279.718050px;}
.y1c{bottom:279.891900px;}
.y40{bottom:280.198050px;}
.ydc{bottom:280.787400px;}
.y109{bottom:281.502000px;}
.yb7{bottom:281.922000px;}
.y167{bottom:282.402750px;}
.y1ae{bottom:288.382650px;}
.y1ee{bottom:288.564000px;}
.y18c{bottom:294.108000px;}
.y64{bottom:297.000000px;}
.y158{bottom:297.324000px;}
.y139{bottom:297.367350px;}
.y1bc{bottom:298.158000px;}
.y1b{bottom:298.791900px;}
.ycb{bottom:299.754000px;}
.y118{bottom:300.330750px;}
.y87{bottom:302.524050px;}
.y3f{bottom:302.842050px;}
.ydb{bottom:303.593400px;}
.y1ed{bottom:303.708000px;}
.y108{bottom:304.452000px;}
.yb6{bottom:305.016000px;}
.y166{bottom:309.387750px;}
.y1ad{bottom:315.367650px;}
.y18b{bottom:316.014000px;}
.y1a{bottom:317.691900px;}
.y1ec{bottom:318.852000px;}
.y63{bottom:319.500000px;}
.y1bb{bottom:320.514000px;}
.yca{bottom:322.254000px;}
.y117{bottom:322.830750px;}
.y86{bottom:325.330050px;}
.y3e{bottom:325.486050px;}
.yda{bottom:326.399400px;}
.y107{bottom:327.402000px;}
.y157{bottom:328.032000px;}
.yb5{bottom:328.110000px;}
.y216{bottom:328.122000px;}
.y165{bottom:328.137750px;}
.y1eb{bottom:333.996000px;}
.y19{bottom:336.591900px;}
.y18a{bottom:337.920000px;}
.y138{bottom:341.779350px;}
.y62{bottom:342.000000px;}
.y1ac{bottom:342.352650px;}
.y1ba{bottom:342.870000px;}
.y215{bottom:343.122000px;}
.yc9{bottom:344.754000px;}
.y116{bottom:345.330750px;}
.y163{bottom:346.887750px;}
.y3d{bottom:348.130050px;}
.y85{bottom:348.136050px;}
.y1ea{bottom:349.140000px;}
.yd9{bottom:349.205400px;}
.y234{bottom:349.500000px;}
.y156{bottom:350.226000px;}
.y106{bottom:350.352000px;}
.yb4{bottom:351.204000px;}
.y18{bottom:355.491900px;}
.y214{bottom:358.122000px;}
.y189{bottom:359.826000px;}
.y137{bottom:363.973350px;}
.y1e9{bottom:364.284000px;}
.y61{bottom:364.500000px;}
.y1b9{bottom:365.226000px;}
.y164{bottom:365.637750px;}
.yc8{bottom:367.254000px;}
.y115{bottom:367.830750px;}
.y233{bottom:368.250000px;}
.y1ab{bottom:369.337650px;}
.y3c{bottom:370.774050px;}
.y84{bottom:370.942050px;}
.yd8{bottom:372.011400px;}
.y155{bottom:372.420000px;}
.y213{bottom:373.122000px;}
.y105{bottom:373.302000px;}
.yb3{bottom:374.298000px;}
.y17{bottom:374.391900px;}
.y1e8{bottom:379.428000px;}
.y188{bottom:381.732000px;}
.y162{bottom:384.387750px;}
.y136{bottom:386.167350px;}
.y60{bottom:387.000000px;}
.y1b8{bottom:387.582000px;}
.y212{bottom:388.122000px;}
.yc7{bottom:389.754000px;}
.y114{bottom:390.330750px;}
.y16{bottom:393.291900px;}
.y3b{bottom:393.418050px;}
.y83{bottom:393.748050px;}
.y1e7{bottom:394.596000px;}
.y154{bottom:394.614000px;}
.yd7{bottom:394.817400px;}
.y1aa{bottom:396.322650px;}
.y104{bottom:396.396000px;}
.yb2{bottom:397.392000px;}
.y232{bottom:398.250000px;}
.y211{bottom:403.122000px;}
.y187{bottom:403.638000px;}
.y5f{bottom:409.500000px;}
.y1e6{bottom:409.752000px;}
.y1b7{bottom:409.938000px;}
.yc6{bottom:411.948000px;}
.y15{bottom:412.191900px;}
.y113{bottom:412.830750px;}
.y161{bottom:413.067750px;}
.y3a{bottom:416.062050px;}
.y82{bottom:416.554050px;}
.y153{bottom:416.808000px;}
.y231{bottom:417.000000px;}
.yd6{bottom:417.623400px;}
.y210{bottom:418.122000px;}
.y103{bottom:419.490000px;}
.yb1{bottom:420.486000px;}
.y1a9{bottom:423.307650px;}
.y1e5{bottom:424.896000px;}
.y186{bottom:425.382000px;}
.y14{bottom:431.091900px;}
.y5e{bottom:432.000000px;}
.y1b6{bottom:432.294000px;}
.y20f{bottom:433.116000px;}
.y135{bottom:433.438650px;}
.yc5{bottom:434.142000px;}
.y112{bottom:435.330750px;}
.y39{bottom:438.706050px;}
.y152{bottom:439.002000px;}
.y81{bottom:439.360050px;}
.y1e4{bottom:440.040000px;}
.yd5{bottom:440.429400px;}
.y102{bottom:442.584000px;}
.yb0{bottom:443.580000px;}
.y230{bottom:447.000000px;}
.y185{bottom:447.126000px;}
.y20e{bottom:448.116000px;}
.y13{bottom:449.991900px;}
.y1a8{bottom:450.292650px;}
.y5d{bottom:454.500000px;}
.y1b5{bottom:454.650000px;}
.y1e3{bottom:455.184000px;}
.yc4{bottom:456.336000px;}
.y111{bottom:457.830750px;}
.y134{bottom:460.423650px;}
.y151{bottom:461.196000px;}
.y38{bottom:461.350050px;}
.y80{bottom:462.166050px;}
.y20d{bottom:463.116000px;}
.yd4{bottom:463.235400px;}
.y101{bottom:465.678000px;}
.y22f{bottom:465.750000px;}
.yaf{bottom:466.674000px;}
.y184{bottom:468.870000px;}
.y12{bottom:468.891900px;}
.y1e2{bottom:470.328000px;}
.y5c{bottom:477.000000px;}
.y1a7{bottom:477.277650px;}
.y20c{bottom:478.116000px;}
.yc3{bottom:478.530000px;}
.y150{bottom:483.390000px;}
.y37{bottom:483.994050px;}
.y7f{bottom:484.972050px;}
.y1e1{bottom:485.484000px;}
.y133{bottom:487.408650px;}
.y11{bottom:487.791900px;}
.y100{bottom:488.772000px;}
.yae{bottom:489.768000px;}
.y183{bottom:490.614000px;}
.y22e{bottom:495.750000px;}
.y5b{bottom:499.500000px;}
.y1e0{bottom:500.628000px;}
.yc2{bottom:500.724000px;}
.y1a6{bottom:504.258150px;}
.y14f{bottom:505.584000px;}
.y132{bottom:506.158650px;}
.y36{bottom:506.638050px;}
.y10{bottom:506.691900px;}
.y7e{bottom:507.778050px;}
.yff{bottom:511.866000px;}
.y182{bottom:512.358000px;}
.yad{bottom:512.862000px;}
.y1df{bottom:515.628000px;}
.y5a{bottom:522.000000px;}
.yc1{bottom:522.918000px;}
.y1a5{bottom:523.009650px;}
.y131{bottom:524.908650px;}
.yf{bottom:525.591900px;}
.y14e{bottom:527.778000px;}
.y35{bottom:529.282050px;}
.y7d{bottom:530.584050px;}
.y1de{bottom:530.628000px;}
.y181{bottom:534.102000px;}
.yf4{bottom:534.900000px;}
.yfe{bottom:534.960000px;}
.yac{bottom:535.956000px;}
.y22d{bottom:537.000000px;}
.y1a4{bottom:541.761150px;}
.ye{bottom:544.491900px;}
.y59{bottom:544.500000px;}
.yc0{bottom:545.112000px;}
.y1dd{bottom:545.628000px;}
.y14d{bottom:549.972000px;}
.y9b{bottom:549.992100px;}
.y130{bottom:551.893650px;}
.y34{bottom:551.926050px;}
.y7c{bottom:553.390050px;}
.y22c{bottom:555.750000px;}
.y180{bottom:555.846000px;}
.yfd{bottom:558.054000px;}
.yab{bottom:559.062000px;}
.y20b{bottom:559.500000px;}
.y1dc{bottom:560.628000px;}
.y58{bottom:567.000000px;}
.ybf{bottom:567.306000px;}
.y12f{bottom:570.643650px;}
.yd{bottom:571.896900px;}
.y14c{bottom:572.166000px;}
.y20a{bottom:574.500000px;}
.y33{bottom:574.570050px;}
.y1db{bottom:575.628000px;}
.y7b{bottom:576.196050px;}
.y17f{bottom:577.590000px;}
.yf3{bottom:579.990000px;}
.y1a3{bottom:580.500000px;}
.yfc{bottom:581.148000px;}
.yaa{bottom:582.156000px;}
.y57{bottom:589.500000px;}
.y1da{bottom:590.628000px;}
.y22b{bottom:593.250000px;}
.y14b{bottom:594.360000px;}
.y9a{bottom:595.008000px;}
.y32{bottom:597.214050px;}
.y12e{bottom:597.628650px;}
.y7a{bottom:598.996050px;}
.y17e{bottom:599.334000px;}
.yf2{bottom:603.084000px;}
.yfb{bottom:604.242000px;}
.y209{bottom:604.500000px;}
.ya9{bottom:605.250000px;}
.y1d9{bottom:605.628000px;}
.y56{bottom:612.000000px;}
.y14a{bottom:616.554000px;}
.y99{bottom:617.508000px;}
.yc{bottom:617.932650px;}
.y208{bottom:619.500000px;}
.y31{bottom:619.858050px;}
.y1d8{bottom:620.628000px;}
.y17d{bottom:621.078000px;}
.y12d{bottom:624.613650px;}
.y1a2{bottom:625.500000px;}
.yf1{bottom:626.178000px;}
.yfa{bottom:627.336000px;}
.ya8{bottom:628.200000px;}
.y22a{bottom:630.750000px;}
.y55{bottom:634.500000px;}
.y1d7{bottom:635.628000px;}
.y149{bottom:638.748000px;}
.y98{bottom:640.008000px;}
.yb{bottom:640.432650px;}
.y30{bottom:642.502050px;}
.y17c{bottom:642.822000px;}
.y12c{bottom:643.363650px;}
.y79{bottom:644.532000px;}
.y1a1{bottom:647.100000px;}
.yf0{bottom:649.272000px;}
.y207{bottom:649.500000px;}
.yf9{bottom:650.430000px;}
.y1d6{bottom:650.628000px;}
.ya7{bottom:651.150000px;}
.y54{bottom:657.000000px;}
.y148{bottom:660.942000px;}
.y97{bottom:662.508000px;}
.y206{bottom:664.500000px;}
.y17b{bottom:664.728000px;}
.y2f{bottom:665.146050px;}
.y1d5{bottom:665.628000px;}
.y78{bottom:667.338000px;}
.y229{bottom:668.250000px;}
.y1a0{bottom:668.700000px;}
.yef{bottom:672.366000px;}
.yf8{bottom:673.524000px;}
.ya6{bottom:674.100000px;}
.y53{bottom:679.500000px;}
.y1d4{bottom:680.628000px;}
.y12b{bottom:683.100000px;}
.y147{bottom:683.136000px;}
.ya{bottom:686.318550px;}
.y17a{bottom:686.634000px;}
.y228{bottom:687.000000px;}
.y2e{bottom:687.796050px;}
.y77{bottom:690.144000px;}
.y19f{bottom:690.300000px;}
.y96{bottom:693.504000px;}
.y205{bottom:694.500000px;}
.yee{bottom:695.460000px;}
.y1d3{bottom:695.628000px;}
.yf7{bottom:696.618000px;}
.ya5{bottom:697.050000px;}
.y52{bottom:702.000000px;}
.y146{bottom:705.330000px;}
.y227{bottom:705.750000px;}
.y179{bottom:708.540000px;}
.y9{bottom:708.818550px;}
.y204{bottom:709.500000px;}
.y1d2{bottom:710.628000px;}
.y19e{bottom:711.900000px;}
.y76{bottom:712.950000px;}
.y95{bottom:716.004000px;}
.yed{bottom:718.554000px;}
.yf6{bottom:719.712000px;}
.ya4{bottom:720.000000px;}
.y51{bottom:724.500000px;}
.y1d1{bottom:725.628000px;}
.y145{bottom:727.524000px;}
.y12a{bottom:727.554000px;}
.y178{bottom:730.446000px;}
.y2d{bottom:733.096050px;}
.y19d{bottom:733.500000px;}
.y94{bottom:738.504000px;}
.y203{bottom:739.500000px;}
.y1d0{bottom:740.628000px;}
.yec{bottom:741.648000px;}
.yf5{bottom:742.806000px;}
.ya3{bottom:742.950000px;}
.y226{bottom:743.250000px;}
.y75{bottom:744.252000px;}
.y50{bottom:747.000000px;}
.y144{bottom:749.718000px;}
.y129{bottom:749.748000px;}
.y2c{bottom:751.996050px;}
.y177{bottom:752.352000px;}
.y202{bottom:754.500000px;}
.y8{bottom:754.704300px;}
.y19c{bottom:755.100000px;}
.y1cf{bottom:755.628000px;}
.y93{bottom:761.004000px;}
.y225{bottom:762.000000px;}
.yeb{bottom:764.742000px;}
.ya2{bottom:765.900000px;}
.y74{bottom:767.058000px;}
.y4f{bottom:769.500000px;}
.y1ce{bottom:770.628000px;}
.y143{bottom:771.912000px;}
.y128{bottom:771.942000px;}
.y176{bottom:774.258000px;}
.y19b{bottom:776.700000px;}
.y7{bottom:777.204300px;}
.y2b{bottom:779.400000px;}
.y224{bottom:780.750000px;}
.y92{bottom:783.504000px;}
.y201{bottom:784.500000px;}
.y1cd{bottom:785.628000px;}
.yea{bottom:787.836000px;}
.ya1{bottom:788.850000px;}
.y73{bottom:789.864000px;}
.y4e{bottom:792.000000px;}
.y142{bottom:794.106000px;}
.y127{bottom:794.136000px;}
.y175{bottom:796.164000px;}
.y2a{bottom:798.300000px;}
.y200{bottom:799.500000px;}
.y1cc{bottom:800.628000px;}
.y91{bottom:806.004000px;}
.ye9{bottom:810.930000px;}
.ya0{bottom:811.800000px;}
.y72{bottom:812.670000px;}
.y4d{bottom:814.500000px;}
.y1cb{bottom:815.628000px;}
.y126{bottom:816.330000px;}
.y29{bottom:817.200000px;}
.y174{bottom:818.070000px;}
.y223{bottom:818.250000px;}
.y19a{bottom:819.900000px;}
.y90{bottom:828.504000px;}
.y1ff{bottom:829.500000px;}
.y1ca{bottom:830.628000px;}
.ye8{bottom:834.024000px;}
.y9f{bottom:834.750000px;}
.y71{bottom:835.476000px;}
.y28{bottom:836.100000px;}
.y4c{bottom:837.000000px;}
.y125{bottom:838.524000px;}
.y173{bottom:839.976000px;}
.y199{bottom:841.500000px;}
.y6{bottom:844.350000px;}
.y1fe{bottom:844.500000px;}
.y1c9{bottom:845.628000px;}
.y27{bottom:855.000000px;}
.y222{bottom:855.750000px;}
.ye7{bottom:857.118000px;}
.y9e{bottom:857.700000px;}
.y70{bottom:858.282000px;}
.y4b{bottom:859.500000px;}
.y1c8{bottom:860.628000px;}
.y124{bottom:860.718000px;}
.y172{bottom:861.882000px;}
.y198{bottom:863.100000px;}
.y26{bottom:873.900000px;}
.y5{bottom:874.350000px;}
.y1fd{bottom:874.500000px;}
.y1c7{bottom:875.628000px;}
.ye6{bottom:880.212000px;}
.y9d{bottom:880.650000px;}
.y6f{bottom:881.088000px;}
.y4a{bottom:882.000000px;}
.y123{bottom:882.912000px;}
.y171{bottom:883.788000px;}
.y197{bottom:884.700000px;}
.y1fc{bottom:889.500000px;}
.y1c6{bottom:890.628000px;}
.y25{bottom:892.800000px;}
.y221{bottom:893.250000px;}
.ye5{bottom:903.306000px;}
.y9c{bottom:903.600000px;}
.y6e{bottom:903.894000px;}
.y49{bottom:904.500000px;}
.y122{bottom:905.106000px;}
.y1c5{bottom:905.628000px;}
.y170{bottom:905.694000px;}
.y196{bottom:906.300000px;}
.y24{bottom:911.700000px;}
.y220{bottom:912.000000px;}
.y1fb{bottom:919.500000px;}
.ye4{bottom:926.400000px;}
.y4{bottom:926.550000px;}
.y6d{bottom:926.700000px;}
.y48{bottom:927.000000px;}
.y121{bottom:927.300000px;}
.y16f{bottom:927.600000px;}
.y195{bottom:927.900000px;}
.y23{bottom:930.600000px;}
.y21f{bottom:930.750000px;}
.y1fa{bottom:934.500000px;}
.h10{height:33.117188px;}
.hd{height:39.072000px;}
.hb{height:39.990234px;}
.he{height:40.757812px;}
.h4{height:42.000000px;}
.hf{height:44.274469px;}
.h12{height:44.370469px;}
.h11{height:44.394469px;}
.hc{height:45.852539px;}
.h2{height:48.399902px;}
.h7{height:48.840000px;}
.h5{height:49.675781px;}
.h1{height:50.947266px;}
.h6{height:61.136719px;}
.ha{height:66.435703px;}
.h8{height:66.507703px;}
.h9{height:66.555703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xb{left:73.827750px;}
.x8{left:82.386000px;}
.x3{left:97.263750px;}
.x9{left:110.011950px;}
.x6{left:112.620000px;}
.xd{left:118.827750px;}
.x7{left:127.381950px;}
.x2{left:135.000000px;}
.x5{left:142.263750px;}
.xa{left:155.011950px;}
.x10{left:243.854550px;}
.x11{left:308.695050px;}
.xc{left:340.992750px;}
.xe{left:369.687750px;}
.x12{left:381.649050px;}
.x13{left:447.947550px;}
.x14{left:514.921050px;}
.xf{left:531.537750px;}
.x4{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.994667pt;}
.v1{vertical-align:21.077333pt;}
.ls37{letter-spacing:-4.224000pt;}
.ls31{letter-spacing:-2.133333pt;}
.ls43{letter-spacing:-1.664000pt;}
.ls2a{letter-spacing:-1.152000pt;}
.ls30{letter-spacing:-1.024000pt;}
.ls2b{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.597333pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls45{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.768000pt;}
.ls7{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls21{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.536000pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls20{letter-spacing:1.664000pt;}
.ls13{letter-spacing:2.265600pt;}
.ls46{letter-spacing:2.402133pt;}
.ls0{letter-spacing:2.533333pt;}
.ls3f{letter-spacing:2.581333pt;}
.ls3a{letter-spacing:2.585600pt;}
.ls3d{letter-spacing:2.602667pt;}
.ls40{letter-spacing:2.619733pt;}
.ls3e{letter-spacing:2.624000pt;}
.ls3c{letter-spacing:2.628267pt;}
.ls3b{letter-spacing:2.645333pt;}
.ls39{letter-spacing:2.653867pt;}
.ls27{letter-spacing:2.698667pt;}
.ls10{letter-spacing:2.732800pt;}
.ls11{letter-spacing:2.752000pt;}
.ls47{letter-spacing:3.003733pt;}
.ls41{letter-spacing:3.029333pt;}
.ls26{letter-spacing:3.590400pt;}
.ls2d{letter-spacing:3.904000pt;}
.ls25{letter-spacing:3.929600pt;}
.ls4{letter-spacing:4.053333pt;}
.ls32{letter-spacing:4.160000pt;}
.ls42{letter-spacing:4.224000pt;}
.ls38{letter-spacing:5.632000pt;}
.ls48{letter-spacing:7.200000pt;}
.ls3{letter-spacing:7.520000pt;}
.ls12{letter-spacing:8.768000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls33{letter-spacing:211.466667pt;}
.ls34{letter-spacing:232.746667pt;}
.ls35{letter-spacing:303.626667pt;}
.ls36{letter-spacing:385.557333pt;}
.ls2f{letter-spacing:547.146667pt;}
.ls2e{letter-spacing:560.480000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws41{word-spacing:-18.624000pt;}
.ws3f{word-spacing:-17.984000pt;}
.ws73{word-spacing:-17.856000pt;}
.ws40{word-spacing:-17.344000pt;}
.ws1{word-spacing:-16.770667pt;}
.wsbe{word-spacing:-16.192000pt;}
.ws5e{word-spacing:-16.128000pt;}
.ws5f{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws60{word-spacing:-15.744000pt;}
.ws91{word-spacing:-15.616000pt;}
.wsbf{word-spacing:-15.552000pt;}
.wsbd{word-spacing:-15.488000pt;}
.ws88{word-spacing:-14.986667pt;}
.wsa2{word-spacing:-13.488000pt;}
.ws52{word-spacing:-12.588800pt;}
.wsc5{word-spacing:-11.989333pt;}
.wsc7{word-spacing:-11.392000pt;}
.wsd0{word-spacing:-10.965333pt;}
.wsc6{word-spacing:-10.538667pt;}
.wsa3{word-spacing:-9.264000pt;}
.ws6{word-spacing:-9.173333pt;}
.wsc8{word-spacing:-8.392533pt;}
.wse{word-spacing:-7.520000pt;}
.ws0{word-spacing:-7.488000pt;}
.wscf{word-spacing:-7.377067pt;}
.wsd1{word-spacing:-7.200000pt;}
.wsc9{word-spacing:-4.224000pt;}
.wsa{word-spacing:-4.053333pt;}
.ws18{word-spacing:-1.856000pt;}
.ws17{word-spacing:-1.792000pt;}
.ws4b{word-spacing:-1.664000pt;}
.ws8d{word-spacing:-1.600000pt;}
.wsa1{word-spacing:-1.408000pt;}
.ws13{word-spacing:-1.344000pt;}
.ws25{word-spacing:-1.280000pt;}
.ws7d{word-spacing:-0.896000pt;}
.ws8c{word-spacing:-0.832000pt;}
.ws67{word-spacing:-0.768000pt;}
.ws77{word-spacing:-0.640000pt;}
.ws57{word-spacing:-0.576000pt;}
.ws24{word-spacing:-0.512000pt;}
.ws1a{word-spacing:-0.448000pt;}
.ws9c{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.320000pt;}
.ws94{word-spacing:-0.256000pt;}
.ws97{word-spacing:-0.192000pt;}
.ws92{word-spacing:-0.128000pt;}
.ws4f{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:0.064000pt;}
.ws59{word-spacing:0.128000pt;}
.ws2b{word-spacing:0.192000pt;}
.wsce{word-spacing:0.213333pt;}
.wsc2{word-spacing:0.256000pt;}
.wsc{word-spacing:0.266667pt;}
.ws22{word-spacing:0.320000pt;}
.ws1e{word-spacing:0.384000pt;}
.ws16{word-spacing:0.448000pt;}
.ws5a{word-spacing:0.512000pt;}
.ws15{word-spacing:0.576000pt;}
.wscc{word-spacing:0.597333pt;}
.ws89{word-spacing:0.640000pt;}
.ws70{word-spacing:0.704000pt;}
.ws26{word-spacing:0.768000pt;}
.ws71{word-spacing:0.832000pt;}
.ws56{word-spacing:0.896000pt;}
.ws2d{word-spacing:1.024000pt;}
.wsd{word-spacing:1.066667pt;}
.ws95{word-spacing:1.088000pt;}
.ws5d{word-spacing:1.152000pt;}
.ws5c{word-spacing:1.216000pt;}
.ws29{word-spacing:1.280000pt;}
.ws4a{word-spacing:1.344000pt;}
.wsc4{word-spacing:1.472000pt;}
.wsbb{word-spacing:1.536000pt;}
.ws8{word-spacing:1.600000pt;}
.ws6a{word-spacing:1.664000pt;}
.ws1d{word-spacing:1.728000pt;}
.ws61{word-spacing:1.792000pt;}
.ws8b{word-spacing:1.920000pt;}
.ws3b{word-spacing:1.984000pt;}
.ws79{word-spacing:2.048000pt;}
.ws31{word-spacing:2.112000pt;}
.ws51{word-spacing:2.133333pt;}
.ws21{word-spacing:2.176000pt;}
.ws5b{word-spacing:2.240000pt;}
.ws2e{word-spacing:2.304000pt;}
.ws7e{word-spacing:2.368000pt;}
.wscd{word-spacing:2.389333pt;}
.ws82{word-spacing:2.432000pt;}
.ws81{word-spacing:2.560000pt;}
.ws6e{word-spacing:2.624000pt;}
.wscb{word-spacing:2.645333pt;}
.ws27{word-spacing:2.688000pt;}
.wsbc{word-spacing:2.752000pt;}
.wsb9{word-spacing:2.816000pt;}
.ws80{word-spacing:2.880000pt;}
.wsb{word-spacing:2.933333pt;}
.ws1c{word-spacing:2.944000pt;}
.wsca{word-spacing:2.986667pt;}
.ws20{word-spacing:3.008000pt;}
.ws30{word-spacing:3.072000pt;}
.ws9e{word-spacing:3.136000pt;}
.ws83{word-spacing:3.200000pt;}
.ws45{word-spacing:3.264000pt;}
.ws4{word-spacing:3.306667pt;}
.ws96{word-spacing:3.328000pt;}
.ws6c{word-spacing:3.392000pt;}
.ws11{word-spacing:3.456000pt;}
.ws23{word-spacing:3.520000pt;}
.ws14{word-spacing:3.584000pt;}
.ws39{word-spacing:3.648000pt;}
.ws93{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws50{word-spacing:3.776000pt;}
.ws9a{word-spacing:3.840000pt;}
.ws3a{word-spacing:3.904000pt;}
.ws9{word-spacing:3.968000pt;}
.ws43{word-spacing:4.096000pt;}
.ws74{word-spacing:4.160000pt;}
.ws2c{word-spacing:4.224000pt;}
.ws9b{word-spacing:4.288000pt;}
.ws66{word-spacing:4.352000pt;}
.ws4e{word-spacing:4.416000pt;}
.ws12{word-spacing:4.480000pt;}
.ws19{word-spacing:4.544000pt;}
.wsc3{word-spacing:4.608000pt;}
.ws37{word-spacing:4.672000pt;}
.ws75{word-spacing:4.736000pt;}
.ws78{word-spacing:4.800000pt;}
.ws76{word-spacing:4.864000pt;}
.ws32{word-spacing:4.928000pt;}
.ws8a{word-spacing:4.992000pt;}
.ws53{word-spacing:5.056000pt;}
.ws63{word-spacing:5.120000pt;}
.wsb8{word-spacing:5.184000pt;}
.ws90{word-spacing:5.248000pt;}
.ws42{word-spacing:5.312000pt;}
.ws8f{word-spacing:5.376000pt;}
.wsba{word-spacing:5.504000pt;}
.ws3d{word-spacing:5.568000pt;}
.ws28{word-spacing:5.696000pt;}
.ws62{word-spacing:5.824000pt;}
.ws86{word-spacing:6.016000pt;}
.ws33{word-spacing:6.080000pt;}
.ws68{word-spacing:6.144000pt;}
.ws38{word-spacing:6.208000pt;}
.ws6b{word-spacing:6.272000pt;}
.ws35{word-spacing:6.336000pt;}
.ws4d{word-spacing:6.400000pt;}
.ws55{word-spacing:6.464000pt;}
.ws64{word-spacing:6.528000pt;}
.ws47{word-spacing:6.592000pt;}
.ws69{word-spacing:6.656000pt;}
.wsc0{word-spacing:6.720000pt;}
.ws9f{word-spacing:6.784000pt;}
.ws46{word-spacing:6.848000pt;}
.wsc1{word-spacing:6.912000pt;}
.ws36{word-spacing:7.040000pt;}
.ws34{word-spacing:7.104000pt;}
.ws85{word-spacing:7.168000pt;}
.ws7{word-spacing:7.466667pt;}
.ws1b{word-spacing:7.552000pt;}
.ws49{word-spacing:7.616000pt;}
.ws8e{word-spacing:7.680000pt;}
.ws7a{word-spacing:7.808000pt;}
.ws6d{word-spacing:7.872000pt;}
.ws2a{word-spacing:7.936000pt;}
.ws48{word-spacing:8.000000pt;}
.ws3c{word-spacing:8.064000pt;}
.ws72{word-spacing:8.128000pt;}
.ws6f{word-spacing:8.192000pt;}
.ws87{word-spacing:8.256000pt;}
.wsa0{word-spacing:8.320000pt;}
.ws54{word-spacing:8.384000pt;}
.ws3e{word-spacing:8.512000pt;}
.ws84{word-spacing:8.576000pt;}
.ws7f{word-spacing:8.704000pt;}
.ws9d{word-spacing:8.832000pt;}
.ws65{word-spacing:8.896000pt;}
.ws10{word-spacing:8.960000pt;}
.ws2f{word-spacing:9.024000pt;}
.ws7c{word-spacing:9.088000pt;}
.wsb7{word-spacing:9.216000pt;}
.ws99{word-spacing:9.344000pt;}
.ws44{word-spacing:9.408000pt;}
.ws4c{word-spacing:9.600000pt;}
.ws7b{word-spacing:11.712000pt;}
.wsa5{word-spacing:25.866667pt;}
.wsad{word-spacing:107.306667pt;}
.wsa9{word-spacing:121.493333pt;}
.wsb1{word-spacing:126.080000pt;}
.wsac{word-spacing:126.666667pt;}
.wsb5{word-spacing:128.480000pt;}
.wsb6{word-spacing:129.066667pt;}
.wsae{word-spacing:139.200000pt;}
.wsab{word-spacing:150.346667pt;}
.wsb3{word-spacing:155.733333pt;}
.wsb4{word-spacing:157.653333pt;}
.wsa7{word-spacing:162.240000pt;}
.wsa6{word-spacing:165.866667pt;}
.wsa8{word-spacing:167.413333pt;}
.ws98{word-spacing:174.016000pt;}
.wsaa{word-spacing:177.013333pt;}
.wsb2{word-spacing:241.722667pt;}
.wsaf{word-spacing:258.234667pt;}
.wsb0{word-spacing:280.560000pt;}
.wsa4{word-spacing:321.920000pt;}
._c{margin-left:-835.898667pt;}
._12{margin-left:-13.362133pt;}
._14{margin-left:-11.626667pt;}
._8{margin-left:-10.496000pt;}
._34{margin-left:-9.579733pt;}
._10{margin-left:-7.677867pt;}
._f{margin-left:-6.745600pt;}
._5{margin-left:-5.440000pt;}
._e{margin-left:-3.808000pt;}
._2{margin-left:-2.618667pt;}
._6{margin-left:-1.056000pt;}
._1{width:1.344000pt;}
._a{width:2.378667pt;}
._9{width:3.338667pt;}
._b{width:4.512000pt;}
._15{width:5.491200pt;}
._13{width:7.040000pt;}
._11{width:8.000000pt;}
._16{width:9.152000pt;}
._17{width:10.182400pt;}
._d{width:11.226667pt;}
._4{width:23.952000pt;}
._35{width:37.224533pt;}
._36{width:40.405333pt;}
._20{width:46.944000pt;}
._3{width:66.858667pt;}
._7{width:76.693333pt;}
._1c{width:123.146667pt;}
._2f{width:135.466667pt;}
._31{width:136.480000pt;}
._27{width:141.653333pt;}
._28{width:144.053333pt;}
._33{width:154.186667pt;}
._32{width:163.978667pt;}
._26{width:165.333333pt;}
._2d{width:170.448000pt;}
._2b{width:171.360000pt;}
._2e{width:172.912000pt;}
._0{width:179.168000pt;}
._22{width:184.853333pt;}
._1f{width:190.826667pt;}
._29{width:192.000000pt;}
._24{width:206.080000pt;}
._2a{width:210.581333pt;}
._21{width:227.466667pt;}
._2c{width:241.600000pt;}
._30{width:259.616000pt;}
._23{width:281.813333pt;}
._25{width:299.466667pt;}
._1b{width:304.725333pt;}
._19{width:318.128000pt;}
._18{width:393.482667pt;}
._1a{width:446.005333pt;}
._1e{width:547.146667pt;}
._1d{width:765.013333pt;}
.fs7{font-size:29.866667pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.666667pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y6c{bottom:104.000000pt;}
.y194{bottom:105.653333pt;}
.y1c4{bottom:106.053333pt;}
.yd3{bottom:106.448000pt;}
.y160{bottom:106.464000pt;}
.y141{bottom:106.497200pt;}
.y8f{bottom:106.734267pt;}
.y120{bottom:106.960667pt;}
.y110{bottom:107.424000pt;}
.ye3{bottom:107.684800pt;}
.ybe{bottom:107.797333pt;}
.y47{bottom:108.296933pt;}
.y1f9{bottom:108.426667pt;}
.y21e{bottom:109.207333pt;}
.y22{bottom:109.408000pt;}
.y16e{bottom:112.398000pt;}
.y1b4{bottom:112.420133pt;}
.y1f8{bottom:121.888000pt;}
.y6b{bottom:124.000000pt;}
.y193{bottom:125.125333pt;}
.y21d{bottom:125.874000pt;}
.y1c3{bottom:125.925333pt;}
.y15f{bottom:126.192000pt;}
.y21{bottom:126.208000pt;}
.y140{bottom:126.225200pt;}
.yd2{bottom:126.448000pt;}
.y11f{bottom:126.960667pt;}
.y8e{bottom:127.006267pt;}
.y10f{bottom:127.824000pt;}
.ye2{bottom:127.956800pt;}
.ybd{bottom:128.197333pt;}
.y46{bottom:128.296933pt;}
.y1f7{bottom:135.349333pt;}
.y16d{bottom:136.384667pt;}
.y1b3{bottom:136.406800pt;}
.y21c{bottom:142.540667pt;}
.y20{bottom:143.008000pt;}
.y6a{bottom:144.000000pt;}
.y192{bottom:144.597333pt;}
.y1c2{bottom:145.797333pt;}
.y15e{bottom:145.920000pt;}
.y13f{bottom:145.953200pt;}
.yd1{bottom:146.448000pt;}
.y11e{bottom:146.960667pt;}
.y8d{bottom:147.278267pt;}
.y10e{bottom:148.224000pt;}
.ye1{bottom:148.228800pt;}
.y45{bottom:148.424933pt;}
.ybc{bottom:148.597333pt;}
.y1f6{bottom:148.810667pt;}
.y16c{bottom:153.051333pt;}
.y21b{bottom:159.207333pt;}
.y1b2{bottom:160.393467pt;}
.y1f5{bottom:162.272000pt;}
.y69{bottom:164.000000pt;}
.y191{bottom:164.069333pt;}
.y15d{bottom:165.648000pt;}
.y1c1{bottom:165.669333pt;}
.y13e{bottom:165.681200pt;}
.yd0{bottom:166.448000pt;}
.y11d{bottom:166.960667pt;}
.y1f{bottom:167.368000pt;}
.y8c{bottom:167.550267pt;}
.ye0{bottom:168.500800pt;}
.y44{bottom:168.552933pt;}
.y10d{bottom:168.624000pt;}
.ybb{bottom:168.997333pt;}
.y1f4{bottom:175.733333pt;}
.y21a{bottom:175.874000pt;}
.y16b{bottom:177.038000pt;}
.y190{bottom:183.541333pt;}
.y68{bottom:184.000000pt;}
.y1b1{bottom:184.380133pt;}
.y15c{bottom:185.376000pt;}
.y13d{bottom:185.409200pt;}
.y1c0{bottom:185.541333pt;}
.ycf{bottom:186.448000pt;}
.y11c{bottom:186.960667pt;}
.y8b{bottom:187.822267pt;}
.y43{bottom:188.680933pt;}
.ydf{bottom:188.772800pt;}
.y10c{bottom:189.024000pt;}
.y1f3{bottom:189.194667pt;}
.yba{bottom:189.397333pt;}
.y219{bottom:192.540667pt;}
.y16a{bottom:193.704667pt;}
.y1f2{bottom:202.656000pt;}
.y18f{bottom:203.013333pt;}
.y67{bottom:204.000000pt;}
.y15b{bottom:205.104000pt;}
.y13c{bottom:205.137200pt;}
.y1bf{bottom:205.413333pt;}
.yce{bottom:206.448000pt;}
.y11b{bottom:206.960667pt;}
.y1e{bottom:207.634667pt;}
.y8a{bottom:208.094267pt;}
.y1b0{bottom:208.366800pt;}
.y42{bottom:208.808933pt;}
.yde{bottom:209.044800pt;}
.y10b{bottom:209.424000pt;}
.yb9{bottom:209.797333pt;}
.y1f1{bottom:216.117333pt;}
.y169{bottom:217.691333pt;}
.y218{bottom:220.546000pt;}
.y18e{bottom:222.485333pt;}
.y66{bottom:224.000000pt;}
.y1d{bottom:224.434667pt;}
.y15a{bottom:224.832000pt;}
.y13b{bottom:224.865200pt;}
.y1be{bottom:225.285333pt;}
.ycd{bottom:226.448000pt;}
.y11a{bottom:226.960667pt;}
.y89{bottom:228.366267pt;}
.y41{bottom:228.936933pt;}
.ydd{bottom:229.316800pt;}
.y1f0{bottom:229.578667pt;}
.y10a{bottom:229.824000pt;}
.yb8{bottom:230.197333pt;}
.y1af{bottom:232.353467pt;}
.y168{bottom:234.358000pt;}
.y18d{bottom:241.957333pt;}
.y1ef{bottom:243.040000pt;}
.y65{bottom:244.000000pt;}
.y159{bottom:244.560000pt;}
.y13a{bottom:244.593200pt;}
.y1bd{bottom:245.157333pt;}
.ycc{bottom:246.448000pt;}
.y119{bottom:246.960667pt;}
.y217{bottom:247.888000pt;}
.y88{bottom:248.638267pt;}
.y1c{bottom:248.792800pt;}
.y40{bottom:249.064933pt;}
.ydc{bottom:249.588800pt;}
.y109{bottom:250.224000pt;}
.yb7{bottom:250.597333pt;}
.y167{bottom:251.024667pt;}
.y1ae{bottom:256.340133pt;}
.y1ee{bottom:256.501333pt;}
.y18c{bottom:261.429333pt;}
.y64{bottom:264.000000pt;}
.y158{bottom:264.288000pt;}
.y139{bottom:264.326533pt;}
.y1bc{bottom:265.029333pt;}
.y1b{bottom:265.592800pt;}
.ycb{bottom:266.448000pt;}
.y118{bottom:266.960667pt;}
.y87{bottom:268.910267pt;}
.y3f{bottom:269.192933pt;}
.ydb{bottom:269.860800pt;}
.y1ed{bottom:269.962667pt;}
.y108{bottom:270.624000pt;}
.yb6{bottom:271.125333pt;}
.y166{bottom:275.011333pt;}
.y1ad{bottom:280.326800pt;}
.y18b{bottom:280.901333pt;}
.y1a{bottom:282.392800pt;}
.y1ec{bottom:283.424000pt;}
.y63{bottom:284.000000pt;}
.y1bb{bottom:284.901333pt;}
.yca{bottom:286.448000pt;}
.y117{bottom:286.960667pt;}
.y86{bottom:289.182267pt;}
.y3e{bottom:289.320933pt;}
.yda{bottom:290.132800pt;}
.y107{bottom:291.024000pt;}
.y157{bottom:291.584000pt;}
.yb5{bottom:291.653333pt;}
.y216{bottom:291.664000pt;}
.y165{bottom:291.678000pt;}
.y1eb{bottom:296.885333pt;}
.y19{bottom:299.192800pt;}
.y18a{bottom:300.373333pt;}
.y138{bottom:303.803867pt;}
.y62{bottom:304.000000pt;}
.y1ac{bottom:304.313467pt;}
.y1ba{bottom:304.773333pt;}
.y215{bottom:304.997333pt;}
.yc9{bottom:306.448000pt;}
.y116{bottom:306.960667pt;}
.y163{bottom:308.344667pt;}
.y3d{bottom:309.448933pt;}
.y85{bottom:309.454267pt;}
.y1ea{bottom:310.346667pt;}
.yd9{bottom:310.404800pt;}
.y234{bottom:310.666667pt;}
.y156{bottom:311.312000pt;}
.y106{bottom:311.424000pt;}
.yb4{bottom:312.181333pt;}
.y18{bottom:315.992800pt;}
.y214{bottom:318.330667pt;}
.y189{bottom:319.845333pt;}
.y137{bottom:323.531867pt;}
.y1e9{bottom:323.808000pt;}
.y61{bottom:324.000000pt;}
.y1b9{bottom:324.645333pt;}
.y164{bottom:325.011333pt;}
.yc8{bottom:326.448000pt;}
.y115{bottom:326.960667pt;}
.y233{bottom:327.333333pt;}
.y1ab{bottom:328.300133pt;}
.y3c{bottom:329.576933pt;}
.y84{bottom:329.726267pt;}
.yd8{bottom:330.676800pt;}
.y155{bottom:331.040000pt;}
.y213{bottom:331.664000pt;}
.y105{bottom:331.824000pt;}
.yb3{bottom:332.709333pt;}
.y17{bottom:332.792800pt;}
.y1e8{bottom:337.269333pt;}
.y188{bottom:339.317333pt;}
.y162{bottom:341.678000pt;}
.y136{bottom:343.259867pt;}
.y60{bottom:344.000000pt;}
.y1b8{bottom:344.517333pt;}
.y212{bottom:344.997333pt;}
.yc7{bottom:346.448000pt;}
.y114{bottom:346.960667pt;}
.y16{bottom:349.592800pt;}
.y3b{bottom:349.704933pt;}
.y83{bottom:349.998267pt;}
.y1e7{bottom:350.752000pt;}
.y154{bottom:350.768000pt;}
.yd7{bottom:350.948800pt;}
.y1aa{bottom:352.286800pt;}
.y104{bottom:352.352000pt;}
.yb2{bottom:353.237333pt;}
.y232{bottom:354.000000pt;}
.y211{bottom:358.330667pt;}
.y187{bottom:358.789333pt;}
.y5f{bottom:364.000000pt;}
.y1e6{bottom:364.224000pt;}
.y1b7{bottom:364.389333pt;}
.yc6{bottom:366.176000pt;}
.y15{bottom:366.392800pt;}
.y113{bottom:366.960667pt;}
.y161{bottom:367.171333pt;}
.y3a{bottom:369.832933pt;}
.y82{bottom:370.270267pt;}
.y153{bottom:370.496000pt;}
.y231{bottom:370.666667pt;}
.yd6{bottom:371.220800pt;}
.y210{bottom:371.664000pt;}
.y103{bottom:372.880000pt;}
.yb1{bottom:373.765333pt;}
.y1a9{bottom:376.273467pt;}
.y1e5{bottom:377.685333pt;}
.y186{bottom:378.117333pt;}
.y14{bottom:383.192800pt;}
.y5e{bottom:384.000000pt;}
.y1b6{bottom:384.261333pt;}
.y20f{bottom:384.992000pt;}
.y135{bottom:385.278800pt;}
.yc5{bottom:385.904000pt;}
.y112{bottom:386.960667pt;}
.y39{bottom:389.960933pt;}
.y152{bottom:390.224000pt;}
.y81{bottom:390.542267pt;}
.y1e4{bottom:391.146667pt;}
.yd5{bottom:391.492800pt;}
.y102{bottom:393.408000pt;}
.yb0{bottom:394.293333pt;}
.y230{bottom:397.333333pt;}
.y185{bottom:397.445333pt;}
.y20e{bottom:398.325333pt;}
.y13{bottom:399.992800pt;}
.y1a8{bottom:400.260133pt;}
.y5d{bottom:404.000000pt;}
.y1b5{bottom:404.133333pt;}
.y1e3{bottom:404.608000pt;}
.yc4{bottom:405.632000pt;}
.y111{bottom:406.960667pt;}
.y134{bottom:409.265467pt;}
.y151{bottom:409.952000pt;}
.y38{bottom:410.088933pt;}
.y80{bottom:410.814267pt;}
.y20d{bottom:411.658667pt;}
.yd4{bottom:411.764800pt;}
.y101{bottom:413.936000pt;}
.y22f{bottom:414.000000pt;}
.yaf{bottom:414.821333pt;}
.y184{bottom:416.773333pt;}
.y12{bottom:416.792800pt;}
.y1e2{bottom:418.069333pt;}
.y5c{bottom:424.000000pt;}
.y1a7{bottom:424.246800pt;}
.y20c{bottom:424.992000pt;}
.yc3{bottom:425.360000pt;}
.y150{bottom:429.680000pt;}
.y37{bottom:430.216933pt;}
.y7f{bottom:431.086267pt;}
.y1e1{bottom:431.541333pt;}
.y133{bottom:433.252133pt;}
.y11{bottom:433.592800pt;}
.y100{bottom:434.464000pt;}
.yae{bottom:435.349333pt;}
.y183{bottom:436.101333pt;}
.y22e{bottom:440.666667pt;}
.y5b{bottom:444.000000pt;}
.y1e0{bottom:445.002667pt;}
.yc2{bottom:445.088000pt;}
.y1a6{bottom:448.229467pt;}
.y14f{bottom:449.408000pt;}
.y132{bottom:449.918800pt;}
.y36{bottom:450.344933pt;}
.y10{bottom:450.392800pt;}
.y7e{bottom:451.358267pt;}
.yff{bottom:454.992000pt;}
.y182{bottom:455.429333pt;}
.yad{bottom:455.877333pt;}
.y1df{bottom:458.336000pt;}
.y5a{bottom:464.000000pt;}
.yc1{bottom:464.816000pt;}
.y1a5{bottom:464.897467pt;}
.y131{bottom:466.585467pt;}
.yf{bottom:467.192800pt;}
.y14e{bottom:469.136000pt;}
.y35{bottom:470.472933pt;}
.y7d{bottom:471.630267pt;}
.y1de{bottom:471.669333pt;}
.y181{bottom:474.757333pt;}
.yf4{bottom:475.466667pt;}
.yfe{bottom:475.520000pt;}
.yac{bottom:476.405333pt;}
.y22d{bottom:477.333333pt;}
.y1a4{bottom:481.565467pt;}
.ye{bottom:483.992800pt;}
.y59{bottom:484.000000pt;}
.yc0{bottom:484.544000pt;}
.y1dd{bottom:485.002667pt;}
.y14d{bottom:488.864000pt;}
.y9b{bottom:488.881867pt;}
.y130{bottom:490.572133pt;}
.y34{bottom:490.600933pt;}
.y7c{bottom:491.902267pt;}
.y22c{bottom:494.000000pt;}
.y180{bottom:494.085333pt;}
.yfd{bottom:496.048000pt;}
.yab{bottom:496.944000pt;}
.y20b{bottom:497.333333pt;}
.y1dc{bottom:498.336000pt;}
.y58{bottom:504.000000pt;}
.ybf{bottom:504.272000pt;}
.y12f{bottom:507.238800pt;}
.yd{bottom:508.352800pt;}
.y14c{bottom:508.592000pt;}
.y20a{bottom:510.666667pt;}
.y33{bottom:510.728933pt;}
.y1db{bottom:511.669333pt;}
.y7b{bottom:512.174267pt;}
.y17f{bottom:513.413333pt;}
.yf3{bottom:515.546667pt;}
.y1a3{bottom:516.000000pt;}
.yfc{bottom:516.576000pt;}
.yaa{bottom:517.472000pt;}
.y57{bottom:524.000000pt;}
.y1da{bottom:525.002667pt;}
.y22b{bottom:527.333333pt;}
.y14b{bottom:528.320000pt;}
.y9a{bottom:528.896000pt;}
.y32{bottom:530.856933pt;}
.y12e{bottom:531.225467pt;}
.y7a{bottom:532.440933pt;}
.y17e{bottom:532.741333pt;}
.yf2{bottom:536.074667pt;}
.yfb{bottom:537.104000pt;}
.y209{bottom:537.333333pt;}
.ya9{bottom:538.000000pt;}
.y1d9{bottom:538.336000pt;}
.y56{bottom:544.000000pt;}
.y14a{bottom:548.048000pt;}
.y99{bottom:548.896000pt;}
.yc{bottom:549.273467pt;}
.y208{bottom:550.666667pt;}
.y31{bottom:550.984933pt;}
.y1d8{bottom:551.669333pt;}
.y17d{bottom:552.069333pt;}
.y12d{bottom:555.212133pt;}
.y1a2{bottom:556.000000pt;}
.yf1{bottom:556.602667pt;}
.yfa{bottom:557.632000pt;}
.ya8{bottom:558.400000pt;}
.y22a{bottom:560.666667pt;}
.y55{bottom:564.000000pt;}
.y1d7{bottom:565.002667pt;}
.y149{bottom:567.776000pt;}
.y98{bottom:568.896000pt;}
.yb{bottom:569.273467pt;}
.y30{bottom:571.112933pt;}
.y17c{bottom:571.397333pt;}
.y12c{bottom:571.878800pt;}
.y79{bottom:572.917333pt;}
.y1a1{bottom:575.200000pt;}
.yf0{bottom:577.130667pt;}
.y207{bottom:577.333333pt;}
.yf9{bottom:578.160000pt;}
.y1d6{bottom:578.336000pt;}
.ya7{bottom:578.800000pt;}
.y54{bottom:584.000000pt;}
.y148{bottom:587.504000pt;}
.y97{bottom:588.896000pt;}
.y206{bottom:590.666667pt;}
.y17b{bottom:590.869333pt;}
.y2f{bottom:591.240933pt;}
.y1d5{bottom:591.669333pt;}
.y78{bottom:593.189333pt;}
.y229{bottom:594.000000pt;}
.y1a0{bottom:594.400000pt;}
.yef{bottom:597.658667pt;}
.yf8{bottom:598.688000pt;}
.ya6{bottom:599.200000pt;}
.y53{bottom:604.000000pt;}
.y1d4{bottom:605.002667pt;}
.y12b{bottom:607.200000pt;}
.y147{bottom:607.232000pt;}
.ya{bottom:610.060933pt;}
.y17a{bottom:610.341333pt;}
.y228{bottom:610.666667pt;}
.y2e{bottom:611.374267pt;}
.y77{bottom:613.461333pt;}
.y19f{bottom:613.600000pt;}
.y96{bottom:616.448000pt;}
.y205{bottom:617.333333pt;}
.yee{bottom:618.186667pt;}
.y1d3{bottom:618.336000pt;}
.yf7{bottom:619.216000pt;}
.ya5{bottom:619.600000pt;}
.y52{bottom:624.000000pt;}
.y146{bottom:626.960000pt;}
.y227{bottom:627.333333pt;}
.y179{bottom:629.813333pt;}
.y9{bottom:630.060933pt;}
.y204{bottom:630.666667pt;}
.y1d2{bottom:631.669333pt;}
.y19e{bottom:632.800000pt;}
.y76{bottom:633.733333pt;}
.y95{bottom:636.448000pt;}
.yed{bottom:638.714667pt;}
.yf6{bottom:639.744000pt;}
.ya4{bottom:640.000000pt;}
.y51{bottom:644.000000pt;}
.y1d1{bottom:645.002667pt;}
.y145{bottom:646.688000pt;}
.y12a{bottom:646.714667pt;}
.y178{bottom:649.285333pt;}
.y2d{bottom:651.640933pt;}
.y19d{bottom:652.000000pt;}
.y94{bottom:656.448000pt;}
.y203{bottom:657.333333pt;}
.y1d0{bottom:658.336000pt;}
.yec{bottom:659.242667pt;}
.yf5{bottom:660.272000pt;}
.ya3{bottom:660.400000pt;}
.y226{bottom:660.666667pt;}
.y75{bottom:661.557333pt;}
.y50{bottom:664.000000pt;}
.y144{bottom:666.416000pt;}
.y129{bottom:666.442667pt;}
.y2c{bottom:668.440933pt;}
.y177{bottom:668.757333pt;}
.y202{bottom:670.666667pt;}
.y8{bottom:670.848267pt;}
.y19c{bottom:671.200000pt;}
.y1cf{bottom:671.669333pt;}
.y93{bottom:676.448000pt;}
.y225{bottom:677.333333pt;}
.yeb{bottom:679.770667pt;}
.ya2{bottom:680.800000pt;}
.y74{bottom:681.829333pt;}
.y4f{bottom:684.000000pt;}
.y1ce{bottom:685.002667pt;}
.y143{bottom:686.144000pt;}
.y128{bottom:686.170667pt;}
.y176{bottom:688.229333pt;}
.y19b{bottom:690.400000pt;}
.y7{bottom:690.848267pt;}
.y2b{bottom:692.800000pt;}
.y224{bottom:694.000000pt;}
.y92{bottom:696.448000pt;}
.y201{bottom:697.333333pt;}
.y1cd{bottom:698.336000pt;}
.yea{bottom:700.298667pt;}
.ya1{bottom:701.200000pt;}
.y73{bottom:702.101333pt;}
.y4e{bottom:704.000000pt;}
.y142{bottom:705.872000pt;}
.y127{bottom:705.898667pt;}
.y175{bottom:707.701333pt;}
.y2a{bottom:709.600000pt;}
.y200{bottom:710.666667pt;}
.y1cc{bottom:711.669333pt;}
.y91{bottom:716.448000pt;}
.ye9{bottom:720.826667pt;}
.ya0{bottom:721.600000pt;}
.y72{bottom:722.373333pt;}
.y4d{bottom:724.000000pt;}
.y1cb{bottom:725.002667pt;}
.y126{bottom:725.626667pt;}
.y29{bottom:726.400000pt;}
.y174{bottom:727.173333pt;}
.y223{bottom:727.333333pt;}
.y19a{bottom:728.800000pt;}
.y90{bottom:736.448000pt;}
.y1ff{bottom:737.333333pt;}
.y1ca{bottom:738.336000pt;}
.ye8{bottom:741.354667pt;}
.y9f{bottom:742.000000pt;}
.y71{bottom:742.645333pt;}
.y28{bottom:743.200000pt;}
.y4c{bottom:744.000000pt;}
.y125{bottom:745.354667pt;}
.y173{bottom:746.645333pt;}
.y199{bottom:748.000000pt;}
.y6{bottom:750.533333pt;}
.y1fe{bottom:750.666667pt;}
.y1c9{bottom:751.669333pt;}
.y27{bottom:760.000000pt;}
.y222{bottom:760.666667pt;}
.ye7{bottom:761.882667pt;}
.y9e{bottom:762.400000pt;}
.y70{bottom:762.917333pt;}
.y4b{bottom:764.000000pt;}
.y1c8{bottom:765.002667pt;}
.y124{bottom:765.082667pt;}
.y172{bottom:766.117333pt;}
.y198{bottom:767.200000pt;}
.y26{bottom:776.800000pt;}
.y5{bottom:777.200000pt;}
.y1fd{bottom:777.333333pt;}
.y1c7{bottom:778.336000pt;}
.ye6{bottom:782.410667pt;}
.y9d{bottom:782.800000pt;}
.y6f{bottom:783.189333pt;}
.y4a{bottom:784.000000pt;}
.y123{bottom:784.810667pt;}
.y171{bottom:785.589333pt;}
.y197{bottom:786.400000pt;}
.y1fc{bottom:790.666667pt;}
.y1c6{bottom:791.669333pt;}
.y25{bottom:793.600000pt;}
.y221{bottom:794.000000pt;}
.ye5{bottom:802.938667pt;}
.y9c{bottom:803.200000pt;}
.y6e{bottom:803.461333pt;}
.y49{bottom:804.000000pt;}
.y122{bottom:804.538667pt;}
.y1c5{bottom:805.002667pt;}
.y170{bottom:805.061333pt;}
.y196{bottom:805.600000pt;}
.y24{bottom:810.400000pt;}
.y220{bottom:810.666667pt;}
.y1fb{bottom:817.333333pt;}
.ye4{bottom:823.466667pt;}
.y4{bottom:823.600000pt;}
.y6d{bottom:823.733333pt;}
.y48{bottom:824.000000pt;}
.y121{bottom:824.266667pt;}
.y16f{bottom:824.533333pt;}
.y195{bottom:824.800000pt;}
.y23{bottom:827.200000pt;}
.y21f{bottom:827.333333pt;}
.y1fa{bottom:830.666667pt;}
.h10{height:29.437500pt;}
.hd{height:34.730667pt;}
.hb{height:35.546875pt;}
.he{height:36.229167pt;}
.h4{height:37.333333pt;}
.hf{height:39.355083pt;}
.h12{height:39.440417pt;}
.h11{height:39.461750pt;}
.hc{height:40.757812pt;}
.h2{height:43.022135pt;}
.h7{height:43.413333pt;}
.h5{height:44.156250pt;}
.h1{height:45.286458pt;}
.h6{height:54.343750pt;}
.ha{height:59.053958pt;}
.h8{height:59.117958pt;}
.h9{height:59.160625pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xb{left:65.624667pt;}
.x8{left:73.232000pt;}
.x3{left:86.456667pt;}
.x9{left:97.788400pt;}
.x6{left:100.106667pt;}
.xd{left:105.624667pt;}
.x7{left:113.228400pt;}
.x2{left:120.000000pt;}
.x5{left:126.456667pt;}
.xa{left:137.788400pt;}
.x10{left:216.759600pt;}
.x11{left:274.395600pt;}
.xc{left:303.104667pt;}
.xe{left:328.611333pt;}
.x12{left:339.243600pt;}
.x13{left:398.175600pt;}
.x14{left:457.707600pt;}
.xf{left:472.478000pt;}
.x4{left:564.791600pt;}
}




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