
    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_a7ebfd5cbe33b6aff268310e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_f01ded8cfdf8d795e44b91da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_71e6257eccdd69d80bd1abae.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_c8077d2cb08cf4804fd8556c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_229fc9c2bc2d5e17d4dcc837.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_418f6efacca6f1d8018164d4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_06076f7b52db56f3bfaf5ede.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_8a4c43f632c14cbad6c0fb2a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5bd64ddd2efbf7770bcd3b9d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1c75aa5693c8234afdf355ef.woff')format("woff");}.ffa{font-family:ffa;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a7ac8da3e4e690f2ffbd8deb.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bae8aae4d76dbb25677b2509.woff')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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_dc260a32f4ff325c3d734cd4.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4ab005fb307a40623f28cc64.woff')format("woff");}.ffe{font-family:ffe;line-height:0.915000;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);}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-16.830000px;}
.v3{vertical-align:-11.994000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.912000px;}
.v4{vertical-align:19.806000px;}
.v1{vertical-align:23.640000px;}
.ls4f{letter-spacing:-4.800000px;}
.ls2e{letter-spacing:-2.340000px;}
.ls29{letter-spacing:-2.016000px;}
.ls3e{letter-spacing:-1.080000px;}
.ls49{letter-spacing:-1.008000px;}
.ls31{letter-spacing:-0.864000px;}
.ls32{letter-spacing:-0.792000px;}
.ls30{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.252000px;}
.ls44{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls4a{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.192000px;}
.ls2b{letter-spacing:0.210000px;}
.ls25{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.240000px;}
.ls1e{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls39{letter-spacing:0.806400px;}
.ls18{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.936000px;}
.ls19{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.152000px;}
.ls3d{letter-spacing:1.231200px;}
.ls27{letter-spacing:1.512000px;}
.ls40{letter-spacing:2.016000px;}
.ls2a{letter-spacing:2.700000px;}
.ls0{letter-spacing:2.850000px;}
.ls4d{letter-spacing:2.908800px;}
.ls47{letter-spacing:3.117600px;}
.ls48{letter-spacing:3.168000px;}
.ls4b{letter-spacing:3.240000px;}
.ls37{letter-spacing:3.360000px;}
.ls4e{letter-spacing:3.369600px;}
.ls34{letter-spacing:4.200000px;}
.ls2d{letter-spacing:4.260000px;}
.ls50{letter-spacing:4.416000px;}
.ls9{letter-spacing:4.560000px;}
.ls4c{letter-spacing:4.752000px;}
.ls4{letter-spacing:4.800000px;}
.ls23{letter-spacing:5.112000px;}
.ls41{letter-spacing:5.256000px;}
.ls24{letter-spacing:7.380000px;}
.ls46{letter-spacing:7.632000px;}
.ls51{letter-spacing:8.100000px;}
.ls12{letter-spacing:8.280000px;}
.ls42{letter-spacing:8.436000px;}
.ls7{letter-spacing:8.460000px;}
.ls1{letter-spacing:8.520000px;}
.ls16{letter-spacing:8.568000px;}
.ls28{letter-spacing:8.640000px;}
.ls45{letter-spacing:8.856000px;}
.ls26{letter-spacing:8.928000px;}
.ls3c{letter-spacing:9.216000px;}
.ls20{letter-spacing:9.360000px;}
.ls22{letter-spacing:10.296000px;}
.ls2{letter-spacing:10.740000px;}
.ls3f{letter-spacing:13.796100px;}
.ls2c{letter-spacing:204.069600px;}
.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:-29.640000px;}
.ws62{word-spacing:-27.000000px;}
.ws59{word-spacing:-26.424000px;}
.ws3{word-spacing:-25.320000px;}
.ws88{word-spacing:-23.274000px;}
.ws32{word-spacing:-22.200000px;}
.ws7e{word-spacing:-20.520000px;}
.ws11{word-spacing:-20.232000px;}
.ws71{word-spacing:-19.728000px;}
.ws81{word-spacing:-19.152000px;}
.ws1{word-spacing:-18.867000px;}
.ws5d{word-spacing:-18.864000px;}
.ws6b{word-spacing:-18.648000px;}
.ws63{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.432000px;}
.ws72{word-spacing:-18.360000px;}
.ws33{word-spacing:-18.216000px;}
.ws21{word-spacing:-18.144000px;}
.ws66{word-spacing:-18.000000px;}
.ws46{word-spacing:-17.856000px;}
.ws31{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.640000px;}
.ws58{word-spacing:-17.568000px;}
.ws6f{word-spacing:-17.424000px;}
.wse{word-spacing:-17.280000px;}
.ws4{word-spacing:-16.860000px;}
.ws65{word-spacing:-16.704000px;}
.ws3c{word-spacing:-14.820000px;}
.ws20{word-spacing:-14.162400px;}
.ws70{word-spacing:-13.910400px;}
.ws78{word-spacing:-13.658400px;}
.ws22{word-spacing:-13.488000px;}
.ws85{word-spacing:-12.336000px;}
.ws5e{word-spacing:-12.048000px;}
.ws43{word-spacing:-11.856000px;}
.ws42{word-spacing:-11.802000px;}
.ws73{word-spacing:-11.616000px;}
.ws87{word-spacing:-9.441600px;}
.ws25{word-spacing:-9.360000px;}
.ws37{word-spacing:-8.928000px;}
.ws79{word-spacing:-8.856000px;}
.ws39{word-spacing:-8.640000px;}
.ws1e{word-spacing:-8.568000px;}
.ws77{word-spacing:-8.496000px;}
.ws35{word-spacing:-8.460000px;}
.ws1a{word-spacing:-8.280000px;}
.ws7b{word-spacing:-7.632000px;}
.wsd{word-spacing:-4.560000px;}
.ws5c{word-spacing:-3.360000px;}
.ws38{word-spacing:-1.512000px;}
.ws5f{word-spacing:-1.152000px;}
.ws26{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.008000px;}
.ws2a{word-spacing:-0.936000px;}
.ws23{word-spacing:-0.864000px;}
.ws60{word-spacing:-0.806400px;}
.ws29{word-spacing:-0.792000px;}
.ws1b{word-spacing:-0.720000px;}
.ws2f{word-spacing:-0.648000px;}
.ws9{word-spacing:-0.600000px;}
.ws2c{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.504000px;}
.ws2b{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.300000px;}
.ws14{word-spacing:-0.288000px;}
.ws61{word-spacing:-0.240000px;}
.ws36{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.144000px;}
.ws75{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws7d{word-spacing:0.048000px;}
.ws16{word-spacing:0.072000px;}
.ws34{word-spacing:0.144000px;}
.ws1d{word-spacing:0.216000px;}
.ws76{word-spacing:0.240000px;}
.ws4a{word-spacing:0.288000px;}
.ws19{word-spacing:0.360000px;}
.ws1c{word-spacing:0.432000px;}
.ws4d{word-spacing:0.504000px;}
.ws18{word-spacing:0.576000px;}
.ws54{word-spacing:0.600000px;}
.ws5a{word-spacing:0.648000px;}
.ws47{word-spacing:0.720000px;}
.ws49{word-spacing:0.792000px;}
.ws48{word-spacing:0.864000px;}
.ws7a{word-spacing:1.008000px;}
.ws3e{word-spacing:1.080000px;}
.ws86{word-spacing:1.224000px;}
.ws8a{word-spacing:1.248000px;}
.ws74{word-spacing:1.368000px;}
.ws89{word-spacing:1.440000px;}
.ws8{word-spacing:1.800000px;}
.ws24{word-spacing:2.088000px;}
.ws64{word-spacing:2.160000px;}
.ws44{word-spacing:2.340000px;}
.ws3f{word-spacing:2.400000px;}
.ws6a{word-spacing:3.168000px;}
.wsa{word-spacing:3.312000px;}
.ws41{word-spacing:3.360000px;}
.ws82{word-spacing:3.744000px;}
.ws67{word-spacing:3.888000px;}
.ws30{word-spacing:4.104000px;}
.ws45{word-spacing:4.140000px;}
.ws5{word-spacing:4.200000px;}
.ws83{word-spacing:4.320000px;}
.ws84{word-spacing:4.608000px;}
.ws40{word-spacing:4.800000px;}
.ws7f{word-spacing:4.824000px;}
.ws80{word-spacing:4.896000px;}
.ws2d{word-spacing:5.040000px;}
.ws6c{word-spacing:5.976000px;}
.ws5b{word-spacing:6.408000px;}
.ws6d{word-spacing:6.528000px;}
.ws7c{word-spacing:7.056000px;}
.ws0{word-spacing:8.376000px;}
.ws6{word-spacing:8.400000px;}
.ws4b{word-spacing:8.784000px;}
.ws3d{word-spacing:8.928000px;}
.ws17{word-spacing:9.288000px;}
.ws4c{word-spacing:10.080000px;}
.ws2e{word-spacing:10.152000px;}
.ws69{word-spacing:10.368000px;}
.ws68{word-spacing:10.872000px;}
.ws3a{word-spacing:12.600000px;}
.ws12{word-spacing:28.920000px;}
.ws4e{word-spacing:31.794000px;}
.ws3b{word-spacing:37.194000px;}
.ws13{word-spacing:73.140000px;}
.ws55{word-spacing:143.700000px;}
.ws6e{word-spacing:146.196000px;}
.ws53{word-spacing:166.140000px;}
.ws52{word-spacing:192.900000px;}
.ws4f{word-spacing:193.080000px;}
.ws56{word-spacing:196.920000px;}
.ws51{word-spacing:207.960000px;}
.ws50{word-spacing:218.160000px;}
.ws57{word-spacing:237.720000px;}
._1e{margin-left:-948.820800px;}
._0{margin-left:-940.386000px;}
._c{margin-left:-68.382000px;}
._d{margin-left:-48.720000px;}
._19{margin-left:-14.886000px;}
._1a{margin-left:-13.827600px;}
._1d{margin-left:-12.175200px;}
._14{margin-left:-10.244400px;}
._13{margin-left:-8.930400px;}
._f{margin-left:-7.266000px;}
._1{margin-left:-5.964000px;}
._20{margin-left:-4.954800px;}
._9{margin-left:-3.954000px;}
._4{margin-left:-2.376000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.720000px;}
._8{width:5.179200px;}
._10{width:6.241200px;}
._7{width:7.344000px;}
._6{width:8.400000px;}
._a{width:9.891600px;}
._e{width:11.113200px;}
._11{width:12.146400px;}
._16{width:13.287600px;}
._17{width:14.666400px;}
._18{width:19.785600px;}
._15{width:21.816000px;}
._1f{width:29.629200px;}
._12{width:31.646100px;}
._21{width:35.220000px;}
._1b{width:137.550000px;}
._1c{width:166.570800px;}
._b{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs9{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;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y47{bottom:117.000000px;}
.y2ad{bottom:117.228000px;}
.ya4{bottom:118.014000px;}
.y8f{bottom:118.110000px;}
.y1fb{bottom:118.984200px;}
.y21{bottom:119.598450px;}
.y2e1{bottom:120.222000px;}
.y1f0{bottom:120.270000px;}
.y167{bottom:121.207500px;}
.y2ac{bottom:131.928000px;}
.y6b{bottom:132.000000px;}
.y2e0{bottom:135.678000px;}
.yc7{bottom:136.207500px;}
.y46{bottom:139.500000px;}
.ya3{bottom:141.108000px;}
.y8e{bottom:141.204000px;}
.y1fa{bottom:141.484200px;}
.y1ef{bottom:143.220000px;}
.y166{bottom:143.707500px;}
.y2ab{bottom:146.628000px;}
.y6a{bottom:147.000000px;}
.y20{bottom:148.201350px;}
.y2df{bottom:151.134000px;}
.y12b{bottom:151.207500px;}
.y2aa{bottom:161.328000px;}
.y45{bottom:162.000000px;}
.y1f9{bottom:163.984200px;}
.ya2{bottom:164.202000px;}
.y8d{bottom:164.298000px;}
.y1a9{bottom:165.020100px;}
.y1ee{bottom:166.170000px;}
.y69{bottom:166.207500px;}
.y306{bottom:166.233150px;}
.y2de{bottom:166.590000px;}
.y285{bottom:167.082000px;}
.y21a{bottom:167.238000px;}
.y1f{bottom:168.301350px;}
.y2a9{bottom:176.028000px;}
.y1cb{bottom:179.454000px;}
.y14e{bottom:180.205950px;}
.y252{bottom:180.796050px;}
.y231{bottom:181.060050px;}
.y2dd{bottom:182.046000px;}
.y10f{bottom:182.738100px;}
.y165{bottom:184.234200px;}
.y44{bottom:184.500000px;}
.y305{bottom:184.983150px;}
.y1f8{bottom:186.484200px;}
.ya1{bottom:187.296000px;}
.y1a8{bottom:187.376100px;}
.y8c{bottom:187.392000px;}
.y1e{bottom:188.401350px;}
.yed{bottom:188.707500px;}
.y1ed{bottom:189.120000px;}
.y284{bottom:189.438000px;}
.y219{bottom:189.594000px;}
.y2a8{bottom:190.728000px;}
.yc5{bottom:191.895150px;}
.y269{bottom:197.034000px;}
.y2dc{bottom:197.502000px;}
.y68{bottom:199.500000px;}
.y251{bottom:199.846050px;}
.y1ca{bottom:202.098000px;}
.y14d{bottom:202.399950px;}
.y164{bottom:202.984200px;}
.y230{bottom:203.416050px;}
.y304{bottom:203.733150px;}
.y10e{bottom:205.094100px;}
.y2a7{bottom:205.428000px;}
.y43{bottom:207.000000px;}
.y12a{bottom:207.838650px;}
.y1d{bottom:208.501350px;}
.y1f7{bottom:208.984200px;}
.y1a7{bottom:209.732100px;}
.y187{bottom:209.896050px;}
.ya0{bottom:210.390000px;}
.y8b{bottom:210.486000px;}
.yc4{bottom:211.545150px;}
.y283{bottom:211.794000px;}
.y218{bottom:211.950000px;}
.y1ec{bottom:212.070000px;}
.y2db{bottom:212.958000px;}
.y67{bottom:218.707500px;}
.y250{bottom:218.896050px;}
.y268{bottom:219.840000px;}
.y2a6{bottom:220.128000px;}
.y163{bottom:221.734200px;}
.yec{bottom:222.000000px;}
.y303{bottom:222.483150px;}
.y14c{bottom:224.593950px;}
.y1c9{bottom:224.742000px;}
.y22f{bottom:225.772050px;}
.y129{bottom:227.338650px;}
.y2da{bottom:228.414000px;}
.y1c{bottom:228.601350px;}
.y42{bottom:229.500000px;}
.yc3{bottom:231.195150px;}
.y1f6{bottom:231.484200px;}
.y1a6{bottom:232.088100px;}
.y186{bottom:232.846050px;}
.y9f{bottom:233.484000px;}
.y8a{bottom:233.580000px;}
.y282{bottom:234.150000px;}
.y217{bottom:234.300000px;}
.y2a5{bottom:234.828000px;}
.y1eb{bottom:235.020000px;}
.y10d{bottom:235.946100px;}
.y66{bottom:237.000000px;}
.y24f{bottom:237.946050px;}
.y162{bottom:240.484200px;}
.y267{bottom:242.646000px;}
.y2d9{bottom:243.870000px;}
.y14b{bottom:246.787950px;}
.y128{bottom:246.838650px;}
.y1c8{bottom:247.386000px;}
.y22e{bottom:248.128050px;}
.y1b{bottom:248.701350px;}
.y2a4{bottom:249.528000px;}
.yc2{bottom:250.845150px;}
.y41{bottom:252.000000px;}
.y302{bottom:252.483150px;}
.y1f5{bottom:253.984200px;}
.y1a5{bottom:254.444100px;}
.y185{bottom:255.796050px;}
.y281{bottom:256.506000px;}
.y9e{bottom:256.578000px;}
.y89{bottom:256.674000px;}
.y1ea{bottom:257.970000px;}
.y10c{bottom:258.302100px;}
.y2d8{bottom:259.326000px;}
.y2a3{bottom:264.228000px;}
.y24e{bottom:265.380000px;}
.y266{bottom:265.452000px;}
.y127{bottom:266.338650px;}
.y65{bottom:267.000000px;}
.y161{bottom:267.738150px;}
.y1a{bottom:268.801350px;}
.y14a{bottom:268.981950px;}
.y1c7{bottom:270.030000px;}
.y22d{bottom:270.484050px;}
.yc1{bottom:270.495150px;}
.y40{bottom:274.500000px;}
.y2d7{bottom:274.782000px;}
.y1f4{bottom:276.484200px;}
.y1a4{bottom:276.800100px;}
.y184{bottom:278.746050px;}
.y216{bottom:278.838000px;}
.y280{bottom:278.862000px;}
.y2a2{bottom:278.928000px;}
.y9d{bottom:279.672000px;}
.y88{bottom:279.768000px;}
.y10b{bottom:280.658100px;}
.y1e9{bottom:280.920000px;}
.yeb{bottom:282.000000px;}
.y126{bottom:285.838650px;}
.y64{bottom:286.207500px;}
.y24d{bottom:288.186000px;}
.y265{bottom:288.258000px;}
.y19{bottom:288.901350px;}
.yc0{bottom:290.145150px;}
.y2d6{bottom:290.238000px;}
.y160{bottom:290.238150px;}
.y149{bottom:291.175950px;}
.y1c6{bottom:292.674000px;}
.y22c{bottom:292.840050px;}
.y2a1{bottom:293.628000px;}
.y301{bottom:293.733150px;}
.y3f{bottom:297.000000px;}
.y1f3{bottom:298.984200px;}
.y1a3{bottom:299.156100px;}
.y215{bottom:301.194000px;}
.yea{bottom:301.207500px;}
.y27f{bottom:301.218000px;}
.y183{bottom:301.696050px;}
.y9c{bottom:302.766000px;}
.y87{bottom:302.862000px;}
.y10a{bottom:303.014100px;}
.y1e8{bottom:303.870000px;}
.y2d5{bottom:305.694000px;}
.y2a0{bottom:308.328000px;}
.y18{bottom:309.001350px;}
.ybf{bottom:309.795150px;}
.y24c{bottom:310.992000px;}
.y264{bottom:311.064000px;}
.y300{bottom:312.483150px;}
.y15f{bottom:312.738150px;}
.y125{bottom:312.823650px;}
.y148{bottom:313.369950px;}
.y22b{bottom:315.184050px;}
.y1c5{bottom:315.318000px;}
.y3e{bottom:319.500000px;}
.y2d4{bottom:321.150000px;}
.y1f2{bottom:321.484200px;}
.y1a2{bottom:321.512100px;}
.y29f{bottom:323.028000px;}
.y214{bottom:323.550000px;}
.y27e{bottom:323.574000px;}
.y182{bottom:324.646050px;}
.y109{bottom:325.370100px;}
.y9b{bottom:325.860000px;}
.y86{bottom:325.956000px;}
.y1e7{bottom:326.820000px;}
.y63{bottom:327.906000px;}
.y17{bottom:329.101350px;}
.ybe{bottom:329.445150px;}
.y2ff{bottom:331.233150px;}
.y124{bottom:332.323650px;}
.y24b{bottom:333.798000px;}
.y263{bottom:333.870000px;}
.y15e{bottom:335.238150px;}
.y147{bottom:335.563950px;}
.y2d3{bottom:336.606000px;}
.y22a{bottom:337.540050px;}
.y29e{bottom:337.728000px;}
.y1c4{bottom:337.962000px;}
.y3d{bottom:342.000000px;}
.y1a1{bottom:343.868100px;}
.y1f1{bottom:343.984200px;}
.y213{bottom:345.906000px;}
.y27d{bottom:345.930000px;}
.y181{bottom:347.596050px;}
.y108{bottom:347.726100px;}
.y9a{bottom:348.954000px;}
.y85{bottom:349.050000px;}
.ybd{bottom:349.095150px;}
.y16{bottom:349.201350px;}
.y1e6{bottom:349.770000px;}
.y2fe{bottom:349.983150px;}
.y62{bottom:350.208000px;}
.y2d2{bottom:352.062000px;}
.y29d{bottom:352.428000px;}
.ye9{bottom:355.618050px;}
.y24a{bottom:356.604000px;}
.y262{bottom:356.676000px;}
.y15d{bottom:357.738150px;}
.y146{bottom:357.757950px;}
.y123{bottom:359.308650px;}
.y229{bottom:359.896050px;}
.y1c3{bottom:360.606000px;}
.y3c{bottom:364.500000px;}
.y1a0{bottom:366.224100px;}
.y29c{bottom:367.128000px;}
.y2d1{bottom:367.518000px;}
.y212{bottom:368.262000px;}
.y27c{bottom:368.286000px;}
.y2fd{bottom:368.733150px;}
.ybc{bottom:368.745150px;}
.y107{bottom:370.082100px;}
.y180{bottom:370.546050px;}
.y99{bottom:372.048000px;}
.y84{bottom:372.144000px;}
.y61{bottom:372.402000px;}
.y1e5{bottom:372.720000px;}
.ye8{bottom:375.118050px;}
.y15{bottom:377.806350px;}
.y122{bottom:378.808650px;}
.y249{bottom:379.410000px;}
.y261{bottom:379.482000px;}
.y145{bottom:379.951950px;}
.y15c{bottom:380.238150px;}
.y29b{bottom:381.828000px;}
.y228{bottom:382.246050px;}
.y2d0{bottom:382.974000px;}
.y1c2{bottom:383.394000px;}
.y3b{bottom:387.000000px;}
.y2fc{bottom:387.483150px;}
.ybb{bottom:388.395150px;}
.yc6{bottom:388.396650px;}
.y19f{bottom:388.580100px;}
.y211{bottom:390.618000px;}
.y27b{bottom:390.642000px;}
.y106{bottom:392.438100px;}
.y17f{bottom:393.496050px;}
.y60{bottom:394.596000px;}
.ye7{bottom:394.618050px;}
.y98{bottom:395.142000px;}
.y83{bottom:395.238000px;}
.y1e4{bottom:395.670000px;}
.y29a{bottom:396.528000px;}
.y121{bottom:398.308650px;}
.y2cf{bottom:398.430000px;}
.y144{bottom:402.145950px;}
.y248{bottom:402.216000px;}
.y260{bottom:402.288000px;}
.y1c1{bottom:406.038000px;}
.y2fb{bottom:406.233150px;}
.y3a{bottom:409.500000px;}
.y19e{bottom:410.936100px;}
.y299{bottom:411.228000px;}
.y15b{bottom:411.242100px;}
.y1e1{bottom:412.950000px;}
.y210{bottom:412.974000px;}
.y27a{bottom:412.998000px;}
.y2ce{bottom:413.886000px;}
.ye6{bottom:414.118050px;}
.y105{bottom:414.794100px;}
.yba{bottom:415.380150px;}
.y17e{bottom:416.446050px;}
.y5f{bottom:416.790000px;}
.y120{bottom:417.808650px;}
.y97{bottom:418.236000px;}
.y82{bottom:418.332000px;}
.y1e3{bottom:418.620000px;}
.y143{bottom:424.339950px;}
.y247{bottom:425.022000px;}
.y25f{bottom:425.094000px;}
.y14{bottom:425.506350px;}
.y298{bottom:425.928000px;}
.y227{bottom:426.822000px;}
.y1c0{bottom:428.682000px;}
.y2cd{bottom:429.342000px;}
.y15a{bottom:429.992100px;}
.y39{bottom:432.000000px;}
.y19d{bottom:433.238100px;}
.y2fa{bottom:433.488150px;}
.ye5{bottom:433.618050px;}
.yb8{bottom:435.030150px;}
.y20f{bottom:435.330000px;}
.y279{bottom:435.354000px;}
.y104{bottom:437.150100px;}
.y11f{bottom:437.308650px;}
.y5e{bottom:438.984000px;}
.y17d{bottom:439.396050px;}
.y297{bottom:440.628000px;}
.y96{bottom:441.330000px;}
.y81{bottom:441.426000px;}
.y1e2{bottom:441.570000px;}
.y2cc{bottom:444.798000px;}
.y13{bottom:445.606350px;}
.y142{bottom:446.533950px;}
.y25e{bottom:447.774000px;}
.y246{bottom:447.828000px;}
.y159{bottom:448.742100px;}
.y226{bottom:449.178000px;}
.y1bf{bottom:451.326000px;}
.y2f9{bottom:452.238150px;}
.ye4{bottom:453.118050px;}
.y38{bottom:454.500000px;}
.yb7{bottom:454.678650px;}
.yb9{bottom:454.680150px;}
.y296{bottom:455.328000px;}
.y19c{bottom:455.594100px;}
.y11e{bottom:456.808650px;}
.y20e{bottom:457.686000px;}
.y278{bottom:457.710000px;}
.y1e0{bottom:457.950000px;}
.y103{bottom:459.506100px;}
.y2cb{bottom:460.254000px;}
.y5d{bottom:461.178000px;}
.y17c{bottom:462.346050px;}
.y95{bottom:464.424000px;}
.y80{bottom:464.520000px;}
.y158{bottom:467.492100px;}
.y141{bottom:468.727950px;}
.y295{bottom:470.028000px;}
.y25d{bottom:470.580000px;}
.y245{bottom:470.634000px;}
.y2f8{bottom:470.988150px;}
.y225{bottom:471.534000px;}
.ye3{bottom:472.618050px;}
.y1be{bottom:473.970000px;}
.y12{bottom:474.209100px;}
.y2ca{bottom:475.710000px;}
.y11d{bottom:476.308650px;}
.y37{bottom:477.000000px;}
.y19b{bottom:477.950100px;}
.y20d{bottom:480.042000px;}
.y277{bottom:480.066000px;}
.y1df{bottom:481.350000px;}
.yb6{bottom:481.663650px;}
.y102{bottom:481.862100px;}
.y5c{bottom:483.372000px;}
.y294{bottom:484.728000px;}
.y17b{bottom:485.296050px;}
.y157{bottom:486.242100px;}
.y94{bottom:487.518000px;}
.y7f{bottom:487.614000px;}
.y2f7{bottom:489.738150px;}
.y140{bottom:490.921950px;}
.y2c9{bottom:491.166000px;}
.ye2{bottom:492.118050px;}
.y25c{bottom:493.386000px;}
.y244{bottom:493.440000px;}
.y224{bottom:493.890000px;}
.y11{bottom:494.309100px;}
.y1bd{bottom:496.614000px;}
.y293{bottom:499.428000px;}
.y36{bottom:499.500000px;}
.y19a{bottom:500.306100px;}
.y20c{bottom:502.398000px;}
.y276{bottom:502.422000px;}
.y11c{bottom:503.293650px;}
.y101{bottom:504.218100px;}
.y1de{bottom:504.750000px;}
.y5b{bottom:505.566000px;}
.y2c8{bottom:506.604000px;}
.y17a{bottom:508.246050px;}
.y2f6{bottom:508.488150px;}
.y93{bottom:510.612000px;}
.y7e{bottom:510.708000px;}
.ye1{bottom:511.618050px;}
.y13f{bottom:513.115950px;}
.y156{bottom:513.504000px;}
.y292{bottom:514.128000px;}
.y10{bottom:514.409100px;}
.y25b{bottom:516.192000px;}
.y223{bottom:516.246000px;}
.y1bc{bottom:519.258000px;}
.yb5{bottom:521.400000px;}
.y35{bottom:522.000000px;}
.y2c7{bottom:522.060000px;}
.y199{bottom:522.662100px;}
.y11b{bottom:522.793650px;}
.y20b{bottom:524.754000px;}
.y275{bottom:524.778000px;}
.y100{bottom:526.574100px;}
.y2f5{bottom:527.238150px;}
.y5a{bottom:527.760000px;}
.y1dd{bottom:528.150000px;}
.y291{bottom:528.828000px;}
.y179{bottom:531.196050px;}
.y92{bottom:533.706000px;}
.y7d{bottom:533.802000px;}
.yf{bottom:534.509100px;}
.y13e{bottom:535.309950px;}
.y155{bottom:536.004000px;}
.y2c6{bottom:537.504000px;}
.y222{bottom:538.602000px;}
.ye0{bottom:538.603050px;}
.y25a{bottom:538.998000px;}
.y243{bottom:539.052000px;}
.y1bb{bottom:541.902000px;}
.yb4{bottom:543.900000px;}
.y34{bottom:544.500000px;}
.y198{bottom:545.018100px;}
.y2f4{bottom:545.988150px;}
.y20a{bottom:547.110000px;}
.y274{bottom:547.134000px;}
.yff{bottom:548.930100px;}
.y11a{bottom:549.778650px;}
.y290{bottom:549.900000px;}
.y59{bottom:549.954000px;}
.y1dc{bottom:551.550000px;}
.y2c5{bottom:552.960000px;}
.y178{bottom:554.146050px;}
.ye{bottom:554.609100px;}
.y91{bottom:556.800000px;}
.y7c{bottom:556.896000px;}
.y13d{bottom:557.503950px;}
.ydf{bottom:558.103050px;}
.y154{bottom:558.504000px;}
.y221{bottom:560.958000px;}
.y259{bottom:561.804000px;}
.y242{bottom:561.858000px;}
.y1ba{bottom:564.546000px;}
.y2f3{bottom:564.738150px;}
.y33{bottom:567.000000px;}
.y197{bottom:567.374100px;}
.y2c4{bottom:568.416000px;}
.y119{bottom:569.278650px;}
.y209{bottom:569.466000px;}
.y273{bottom:569.490000px;}
.yfe{bottom:571.286100px;}
.y58{bottom:572.148000px;}
.yd{bottom:574.709100px;}
.y1db{bottom:574.950000px;}
.y177{bottom:577.096050px;}
.yde{bottom:577.603050px;}
.y90{bottom:579.900000px;}
.y7b{bottom:579.990000px;}
.y153{bottom:581.004000px;}
.y220{bottom:583.314000px;}
.y2f2{bottom:583.488150px;}
.y2c3{bottom:583.716000px;}
.y258{bottom:584.610000px;}
.y241{bottom:584.664000px;}
.y1b9{bottom:587.190000px;}
.y118{bottom:588.778650px;}
.yb3{bottom:588.900000px;}
.y32{bottom:589.500000px;}
.y196{bottom:589.730100px;}
.y208{bottom:591.822000px;}
.y272{bottom:591.846000px;}
.yfd{bottom:593.642100px;}
.y57{bottom:594.342000px;}
.y28f{bottom:594.390000px;}
.yc{bottom:594.809100px;}
.ydd{bottom:597.103050px;}
.y1da{bottom:598.350000px;}
.y2c2{bottom:599.016000px;}
.y176{bottom:600.046050px;}
.y2f1{bottom:602.238150px;}
.y7a{bottom:603.084000px;}
.y152{bottom:603.504000px;}
.y13c{bottom:605.082750px;}
.y21f{bottom:605.670000px;}
.y257{bottom:607.416000px;}
.y240{bottom:607.470000px;}
.y117{bottom:608.278650px;}
.y1b8{bottom:609.834000px;}
.yb2{bottom:611.400000px;}
.y31{bottom:612.000000px;}
.y195{bottom:612.086100px;}
.y207{bottom:614.178000px;}
.y271{bottom:614.202000px;}
.y2c1{bottom:614.316000px;}
.yb{bottom:614.909100px;}
.y56{bottom:616.536000px;}
.y28e{bottom:616.584000px;}
.y2f0{bottom:620.988150px;}
.y1d9{bottom:621.750000px;}
.y175{bottom:622.996050px;}
.y13b{bottom:623.832750px;}
.ydc{bottom:624.088050px;}
.yfc{bottom:624.496050px;}
.y151{bottom:626.004000px;}
.y79{bottom:626.178000px;}
.y116{bottom:627.778650px;}
.y21e{bottom:628.026000px;}
.y2c0{bottom:629.616000px;}
.y256{bottom:630.222000px;}
.y23f{bottom:630.276000px;}
.y1b7{bottom:632.478000px;}
.yb1{bottom:633.900000px;}
.y194{bottom:634.442100px;}
.y30{bottom:634.500000px;}
.ya{bottom:635.009100px;}
.y206{bottom:636.534000px;}
.y270{bottom:636.558000px;}
.y55{bottom:638.730000px;}
.y28d{bottom:638.778000px;}
.y2ef{bottom:639.738150px;}
.y13a{bottom:642.582750px;}
.yfb{bottom:643.096050px;}
.ydb{bottom:643.588050px;}
.y2bf{bottom:644.916000px;}
.y1d8{bottom:645.150000px;}
.y174{bottom:645.946050px;}
.y115{bottom:647.278650px;}
.y150{bottom:648.504000px;}
.y78{bottom:649.272000px;}
.y21d{bottom:650.382000px;}
.y255{bottom:653.028000px;}
.y23e{bottom:653.082000px;}
.y9{bottom:655.109100px;}
.y1b6{bottom:655.122000px;}
.yb0{bottom:656.400000px;}
.y2f{bottom:657.000000px;}
.y2ee{bottom:658.488150px;}
.y205{bottom:658.890000px;}
.y26f{bottom:658.914000px;}
.y2be{bottom:660.216000px;}
.y54{bottom:660.924000px;}
.y28c{bottom:660.972000px;}
.yfa{bottom:661.696050px;}
.yda{bottom:663.088050px;}
.y193{bottom:665.296050px;}
.y114{bottom:666.778650px;}
.y1d7{bottom:668.550000px;}
.y173{bottom:668.896050px;}
.y139{bottom:669.563250px;}
.y14f{bottom:671.004000px;}
.y77{bottom:672.366000px;}
.y21c{bottom:672.738000px;}
.y2bd{bottom:675.516000px;}
.y254{bottom:675.834000px;}
.y23d{bottom:675.888000px;}
.y2ed{bottom:677.238150px;}
.y1b5{bottom:677.766000px;}
.yaf{bottom:678.900000px;}
.y2e{bottom:679.500000px;}
.yf9{bottom:680.296050px;}
.y204{bottom:681.246000px;}
.y26e{bottom:681.270000px;}
.yd8{bottom:682.588050px;}
.y53{bottom:683.118000px;}
.y28b{bottom:683.166000px;}
.y8{bottom:683.714100px;}
.y192{bottom:683.896050px;}
.y113{bottom:686.278650px;}
.y138{bottom:688.313250px;}
.y2bc{bottom:690.816000px;}
.y172{bottom:691.846050px;}
.y1d6{bottom:691.950000px;}
.y76{bottom:695.460000px;}
.y2ec{bottom:695.988150px;}
.y253{bottom:698.640000px;}
.y23c{bottom:698.694000px;}
.yf8{bottom:698.896050px;}
.y1b4{bottom:700.410000px;}
.yae{bottom:701.400000px;}
.y2d{bottom:702.000000px;}
.yd7{bottom:702.088050px;}
.y191{bottom:702.496050px;}
.y21b{bottom:703.590000px;}
.y203{bottom:703.602000px;}
.y26d{bottom:703.626000px;}
.y52{bottom:705.312000px;}
.y28a{bottom:705.360000px;}
.y112{bottom:705.778650px;}
.y2bb{bottom:706.116000px;}
.y137{bottom:707.063250px;}
.y2eb{bottom:714.738150px;}
.y171{bottom:714.796050px;}
.y1d5{bottom:715.350000px;}
.y75{bottom:718.554000px;}
.y190{bottom:721.096050px;}
.y2ba{bottom:721.416000px;}
.y23b{bottom:721.446000px;}
.yd6{bottom:721.586550px;}
.yd9{bottom:721.588050px;}
.y1b3{bottom:723.054000px;}
.yad{bottom:723.900000px;}
.y2c{bottom:724.500000px;}
.y111{bottom:725.278650px;}
.y136{bottom:725.813250px;}
.yf7{bottom:725.946000px;}
.y202{bottom:725.958000px;}
.y26c{bottom:725.982000px;}
.y51{bottom:727.506000px;}
.y289{bottom:727.554000px;}
.y7{bottom:730.950000px;}
.y2ea{bottom:733.488150px;}
.y2b9{bottom:736.716000px;}
.y170{bottom:737.746050px;}
.y1d4{bottom:738.750000px;}
.y74{bottom:741.648000px;}
.y23a{bottom:744.252000px;}
.y135{bottom:744.563250px;}
.y1b2{bottom:745.698000px;}
.yac{bottom:746.400000px;}
.y2b{bottom:747.000000px;}
.y18f{bottom:748.152000px;}
.yf6{bottom:748.302000px;}
.y201{bottom:748.314000px;}
.y26b{bottom:748.338000px;}
.yd1{bottom:748.569900px;}
.y50{bottom:749.718000px;}
.y288{bottom:749.748000px;}
.y2b8{bottom:752.016000px;}
.y2e9{bottom:752.238150px;}
.y110{bottom:752.263650px;}
.y6{bottom:754.800000px;}
.y16f{bottom:760.696050px;}
.y1d3{bottom:762.150000px;}
.y134{bottom:763.313250px;}
.y73{bottom:764.742000px;}
.y239{bottom:767.058000px;}
.y2b7{bottom:767.316000px;}
.yd0{bottom:768.069900px;}
.y1b1{bottom:768.342000px;}
.yab{bottom:768.900000px;}
.y2a{bottom:769.500000px;}
.y18e{bottom:770.508000px;}
.yf5{bottom:770.658000px;}
.y200{bottom:770.670000px;}
.y26a{bottom:770.694000px;}
.y2e8{bottom:770.988150px;}
.y4f{bottom:771.912000px;}
.y287{bottom:771.942000px;}
.y133{bottom:782.063250px;}
.y2b6{bottom:782.616000px;}
.y16e{bottom:783.646050px;}
.y1d2{bottom:785.550000px;}
.ycf{bottom:787.569900px;}
.y72{bottom:787.836000px;}
.y2e7{bottom:789.738150px;}
.y238{bottom:789.864000px;}
.y1b0{bottom:790.986000px;}
.yaa{bottom:791.400000px;}
.y29{bottom:792.000000px;}
.y18d{bottom:792.864000px;}
.yf4{bottom:793.014000px;}
.y1ff{bottom:793.026000px;}
.y4e{bottom:794.106000px;}
.y286{bottom:794.136000px;}
.y2b5{bottom:797.916000px;}
.y132{bottom:800.813250px;}
.yce{bottom:807.069900px;}
.y2e6{bottom:808.488150px;}
.y1d1{bottom:808.950000px;}
.y5{bottom:810.000000px;}
.y71{bottom:810.930000px;}
.y237{bottom:812.670000px;}
.y2b4{bottom:813.216000px;}
.y1af{bottom:813.630000px;}
.ya9{bottom:813.900000px;}
.y28{bottom:814.500000px;}
.y16d{bottom:815.100000px;}
.y18c{bottom:815.220000px;}
.yf3{bottom:815.370000px;}
.y1fe{bottom:815.382000px;}
.y4d{bottom:816.330000px;}
.y131{bottom:819.563250px;}
.ycd{bottom:826.569900px;}
.y2e5{bottom:827.238150px;}
.y2b3{bottom:828.516000px;}
.y1d0{bottom:832.350000px;}
.y70{bottom:834.024000px;}
.y16c{bottom:834.300000px;}
.y236{bottom:835.476000px;}
.y1ae{bottom:836.274000px;}
.ya8{bottom:836.400000px;}
.y27{bottom:837.000000px;}
.y18b{bottom:837.576000px;}
.yf2{bottom:837.726000px;}
.y1fd{bottom:837.738000px;}
.y4c{bottom:838.524000px;}
.y4{bottom:841.350000px;}
.y2b2{bottom:843.816000px;}
.y2e4{bottom:845.988150px;}
.ycc{bottom:846.069900px;}
.yd5{bottom:846.071550px;}
.y130{bottom:846.548250px;}
.y16b{bottom:853.500000px;}
.y1cf{bottom:855.750000px;}
.y6f{bottom:857.118000px;}
.y235{bottom:858.282000px;}
.ya7{bottom:858.900000px;}
.y1ad{bottom:858.918000px;}
.y2b1{bottom:859.116000px;}
.y26{bottom:859.500000px;}
.y18a{bottom:859.932000px;}
.yf1{bottom:860.082000px;}
.y1fc{bottom:860.094000px;}
.y4b{bottom:860.718000px;}
.y2e3{bottom:864.738150px;}
.y12f{bottom:865.298250px;}
.ycb{bottom:865.569900px;}
.yd4{bottom:865.571550px;}
.y3{bottom:872.700000px;}
.y2b0{bottom:874.416000px;}
.y1ce{bottom:879.150000px;}
.y6e{bottom:880.212000px;}
.y234{bottom:881.088000px;}
.ya6{bottom:881.400000px;}
.y1ac{bottom:881.562000px;}
.y25{bottom:882.000000px;}
.y189{bottom:882.288000px;}
.yf0{bottom:882.438000px;}
.y4a{bottom:882.912000px;}
.y12e{bottom:884.048250px;}
.yca{bottom:885.069900px;}
.yd3{bottom:885.071550px;}
.y2af{bottom:889.716000px;}
.y16a{bottom:891.900000px;}
.y2e2{bottom:896.244150px;}
.y1cd{bottom:902.550000px;}
.y12d{bottom:902.798250px;}
.y6d{bottom:903.306000px;}
.y233{bottom:903.894000px;}
.ya5{bottom:903.900000px;}
.y1ab{bottom:904.206000px;}
.y24{bottom:904.500000px;}
.yc9{bottom:904.569900px;}
.yd2{bottom:904.571550px;}
.y188{bottom:904.644000px;}
.yef{bottom:904.794000px;}
.y2ae{bottom:905.016000px;}
.y49{bottom:905.106000px;}
.y169{bottom:911.100000px;}
.y1cc{bottom:925.950000px;}
.y6c{bottom:926.400000px;}
.y2{bottom:926.550000px;}
.y232{bottom:926.700000px;}
.y1aa{bottom:926.850000px;}
.y23{bottom:927.000000px;}
.yee{bottom:927.150000px;}
.y48{bottom:927.300000px;}
.y12c{bottom:929.783250px;}
.y168{bottom:930.300000px;}
.yc8{bottom:931.554900px;}
.h8{height:24.630908px;}
.h10{height:30.313623px;}
.he{height:33.117188px;}
.h19{height:37.256836px;}
.h17{height:39.072000px;}
.h2{height:39.326660px;}
.h9{height:40.757812px;}
.h18{height:40.829812px;}
.h1{height:41.396484px;}
.hd{height:48.783539px;}
.hb{height:48.840000px;}
.hc{height:49.658203px;}
.ha{height:49.675781px;}
.h5{height:50.580000px;}
.h7{height:50.947266px;}
.h11{height:55.463086px;}
.hf{height:55.469086px;}
.h12{height:55.493686px;}
.h6{height:61.136719px;}
.h14{height:61.184719px;}
.h13{height:66.603703px;}
.h15{height:66.771703px;}
.h16{height:67.059703px;}
.h3{height:82.792969px;}
.h4{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x9{left:73.827750px;}
.x6{left:82.381950px;}
.xf{left:97.263750px;}
.x8{left:107.905950px;}
.x2{left:112.500000px;}
.xc{left:118.827750px;}
.x7{left:127.374750px;}
.x5{left:135.000000px;}
.x3{left:142.263750px;}
.x12{left:152.874000px;}
.x11{left:157.407750px;}
.xa{left:158.742750px;}
.x14{left:180.526950px;}
.x10{left:202.392750px;}
.xd{left:203.742750px;}
.xb{left:388.107750px;}
.xe{left:433.093500px;}
.x13{left:625.781250px;}
.x1{left:635.390550px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-14.960000pt;}
.v3{vertical-align:-10.661333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.144000pt;}
.v4{vertical-align:17.605333pt;}
.v1{vertical-align:21.013333pt;}
.ls4f{letter-spacing:-4.266667pt;}
.ls2e{letter-spacing:-2.080000pt;}
.ls29{letter-spacing:-1.792000pt;}
.ls3e{letter-spacing:-0.960000pt;}
.ls49{letter-spacing:-0.896000pt;}
.ls31{letter-spacing:-0.768000pt;}
.ls32{letter-spacing:-0.704000pt;}
.ls30{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.224000pt;}
.ls44{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls4a{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.170667pt;}
.ls2b{letter-spacing:0.186667pt;}
.ls25{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.213333pt;}
.ls1e{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls39{letter-spacing:0.716800pt;}
.ls18{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.832000pt;}
.ls19{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls38{letter-spacing:1.024000pt;}
.ls3d{letter-spacing:1.094400pt;}
.ls27{letter-spacing:1.344000pt;}
.ls40{letter-spacing:1.792000pt;}
.ls2a{letter-spacing:2.400000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls4d{letter-spacing:2.585600pt;}
.ls47{letter-spacing:2.771200pt;}
.ls48{letter-spacing:2.816000pt;}
.ls4b{letter-spacing:2.880000pt;}
.ls37{letter-spacing:2.986667pt;}
.ls4e{letter-spacing:2.995200pt;}
.ls34{letter-spacing:3.733333pt;}
.ls2d{letter-spacing:3.786667pt;}
.ls50{letter-spacing:3.925333pt;}
.ls9{letter-spacing:4.053333pt;}
.ls4c{letter-spacing:4.224000pt;}
.ls4{letter-spacing:4.266667pt;}
.ls23{letter-spacing:4.544000pt;}
.ls41{letter-spacing:4.672000pt;}
.ls24{letter-spacing:6.560000pt;}
.ls46{letter-spacing:6.784000pt;}
.ls51{letter-spacing:7.200000pt;}
.ls12{letter-spacing:7.360000pt;}
.ls42{letter-spacing:7.498667pt;}
.ls7{letter-spacing:7.520000pt;}
.ls1{letter-spacing:7.573333pt;}
.ls16{letter-spacing:7.616000pt;}
.ls28{letter-spacing:7.680000pt;}
.ls45{letter-spacing:7.872000pt;}
.ls26{letter-spacing:7.936000pt;}
.ls3c{letter-spacing:8.192000pt;}
.ls20{letter-spacing:8.320000pt;}
.ls22{letter-spacing:9.152000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls3f{letter-spacing:12.263200pt;}
.ls2c{letter-spacing:181.395200pt;}
.ws2{word-spacing:-26.346667pt;}
.ws62{word-spacing:-24.000000pt;}
.ws59{word-spacing:-23.488000pt;}
.ws3{word-spacing:-22.506667pt;}
.ws88{word-spacing:-20.688000pt;}
.ws32{word-spacing:-19.733333pt;}
.ws7e{word-spacing:-18.240000pt;}
.ws11{word-spacing:-17.984000pt;}
.ws71{word-spacing:-17.536000pt;}
.ws81{word-spacing:-17.024000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws5d{word-spacing:-16.768000pt;}
.ws6b{word-spacing:-16.576000pt;}
.ws63{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.384000pt;}
.ws72{word-spacing:-16.320000pt;}
.ws33{word-spacing:-16.192000pt;}
.ws21{word-spacing:-16.128000pt;}
.ws66{word-spacing:-16.000000pt;}
.ws46{word-spacing:-15.872000pt;}
.ws31{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.680000pt;}
.ws58{word-spacing:-15.616000pt;}
.ws6f{word-spacing:-15.488000pt;}
.wse{word-spacing:-15.360000pt;}
.ws4{word-spacing:-14.986667pt;}
.ws65{word-spacing:-14.848000pt;}
.ws3c{word-spacing:-13.173333pt;}
.ws20{word-spacing:-12.588800pt;}
.ws70{word-spacing:-12.364800pt;}
.ws78{word-spacing:-12.140800pt;}
.ws22{word-spacing:-11.989333pt;}
.ws85{word-spacing:-10.965333pt;}
.ws5e{word-spacing:-10.709333pt;}
.ws43{word-spacing:-10.538667pt;}
.ws42{word-spacing:-10.490667pt;}
.ws73{word-spacing:-10.325333pt;}
.ws87{word-spacing:-8.392533pt;}
.ws25{word-spacing:-8.320000pt;}
.ws37{word-spacing:-7.936000pt;}
.ws79{word-spacing:-7.872000pt;}
.ws39{word-spacing:-7.680000pt;}
.ws1e{word-spacing:-7.616000pt;}
.ws77{word-spacing:-7.552000pt;}
.ws35{word-spacing:-7.520000pt;}
.ws1a{word-spacing:-7.360000pt;}
.ws7b{word-spacing:-6.784000pt;}
.wsd{word-spacing:-4.053333pt;}
.ws5c{word-spacing:-2.986667pt;}
.ws38{word-spacing:-1.344000pt;}
.ws5f{word-spacing:-1.024000pt;}
.ws26{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.896000pt;}
.ws2a{word-spacing:-0.832000pt;}
.ws23{word-spacing:-0.768000pt;}
.ws60{word-spacing:-0.716800pt;}
.ws29{word-spacing:-0.704000pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws2f{word-spacing:-0.576000pt;}
.ws9{word-spacing:-0.533333pt;}
.ws2c{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.448000pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.266667pt;}
.ws14{word-spacing:-0.256000pt;}
.ws61{word-spacing:-0.213333pt;}
.ws36{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.128000pt;}
.ws75{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.042667pt;}
.ws16{word-spacing:0.064000pt;}
.ws34{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.192000pt;}
.ws76{word-spacing:0.213333pt;}
.ws4a{word-spacing:0.256000pt;}
.ws19{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.384000pt;}
.ws4d{word-spacing:0.448000pt;}
.ws18{word-spacing:0.512000pt;}
.ws54{word-spacing:0.533333pt;}
.ws5a{word-spacing:0.576000pt;}
.ws47{word-spacing:0.640000pt;}
.ws49{word-spacing:0.704000pt;}
.ws48{word-spacing:0.768000pt;}
.ws7a{word-spacing:0.896000pt;}
.ws3e{word-spacing:0.960000pt;}
.ws86{word-spacing:1.088000pt;}
.ws8a{word-spacing:1.109333pt;}
.ws74{word-spacing:1.216000pt;}
.ws89{word-spacing:1.280000pt;}
.ws8{word-spacing:1.600000pt;}
.ws24{word-spacing:1.856000pt;}
.ws64{word-spacing:1.920000pt;}
.ws44{word-spacing:2.080000pt;}
.ws3f{word-spacing:2.133333pt;}
.ws6a{word-spacing:2.816000pt;}
.wsa{word-spacing:2.944000pt;}
.ws41{word-spacing:2.986667pt;}
.ws82{word-spacing:3.328000pt;}
.ws67{word-spacing:3.456000pt;}
.ws30{word-spacing:3.648000pt;}
.ws45{word-spacing:3.680000pt;}
.ws5{word-spacing:3.733333pt;}
.ws83{word-spacing:3.840000pt;}
.ws84{word-spacing:4.096000pt;}
.ws40{word-spacing:4.266667pt;}
.ws7f{word-spacing:4.288000pt;}
.ws80{word-spacing:4.352000pt;}
.ws2d{word-spacing:4.480000pt;}
.ws6c{word-spacing:5.312000pt;}
.ws5b{word-spacing:5.696000pt;}
.ws6d{word-spacing:5.802667pt;}
.ws7c{word-spacing:6.272000pt;}
.ws0{word-spacing:7.445333pt;}
.ws6{word-spacing:7.466667pt;}
.ws4b{word-spacing:7.808000pt;}
.ws3d{word-spacing:7.936000pt;}
.ws17{word-spacing:8.256000pt;}
.ws4c{word-spacing:8.960000pt;}
.ws2e{word-spacing:9.024000pt;}
.ws69{word-spacing:9.216000pt;}
.ws68{word-spacing:9.664000pt;}
.ws3a{word-spacing:11.200000pt;}
.ws12{word-spacing:25.706667pt;}
.ws4e{word-spacing:28.261333pt;}
.ws3b{word-spacing:33.061333pt;}
.ws13{word-spacing:65.013333pt;}
.ws55{word-spacing:127.733333pt;}
.ws6e{word-spacing:129.952000pt;}
.ws53{word-spacing:147.680000pt;}
.ws52{word-spacing:171.466667pt;}
.ws4f{word-spacing:171.626667pt;}
.ws56{word-spacing:175.040000pt;}
.ws51{word-spacing:184.853333pt;}
.ws50{word-spacing:193.920000pt;}
.ws57{word-spacing:211.306667pt;}
._1e{margin-left:-843.396267pt;}
._0{margin-left:-835.898667pt;}
._c{margin-left:-60.784000pt;}
._d{margin-left:-43.306667pt;}
._19{margin-left:-13.232000pt;}
._1a{margin-left:-12.291200pt;}
._1d{margin-left:-10.822400pt;}
._14{margin-left:-9.106133pt;}
._13{margin-left:-7.938133pt;}
._f{margin-left:-6.458667pt;}
._1{margin-left:-5.301333pt;}
._20{margin-left:-4.404267pt;}
._9{margin-left:-3.514667pt;}
._4{margin-left:-2.112000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.306667pt;}
._8{width:4.603733pt;}
._10{width:5.547733pt;}
._7{width:6.528000pt;}
._6{width:7.466667pt;}
._a{width:8.792533pt;}
._e{width:9.878400pt;}
._11{width:10.796800pt;}
._16{width:11.811200pt;}
._17{width:13.036800pt;}
._18{width:17.587200pt;}
._15{width:19.392000pt;}
._1f{width:26.337067pt;}
._12{width:28.129867pt;}
._21{width:31.306667pt;}
._1b{width:122.266667pt;}
._1c{width:148.062933pt;}
._b{width:179.168000pt;}
.fs8{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs9{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;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y47{bottom:104.000000pt;}
.y2ad{bottom:104.202667pt;}
.ya4{bottom:104.901333pt;}
.y8f{bottom:104.986667pt;}
.y1fb{bottom:105.763733pt;}
.y21{bottom:106.309733pt;}
.y2e1{bottom:106.864000pt;}
.y1f0{bottom:106.906667pt;}
.y167{bottom:107.740000pt;}
.y2ac{bottom:117.269333pt;}
.y6b{bottom:117.333333pt;}
.y2e0{bottom:120.602667pt;}
.yc7{bottom:121.073333pt;}
.y46{bottom:124.000000pt;}
.ya3{bottom:125.429333pt;}
.y8e{bottom:125.514667pt;}
.y1fa{bottom:125.763733pt;}
.y1ef{bottom:127.306667pt;}
.y166{bottom:127.740000pt;}
.y2ab{bottom:130.336000pt;}
.y6a{bottom:130.666667pt;}
.y20{bottom:131.734533pt;}
.y2df{bottom:134.341333pt;}
.y12b{bottom:134.406667pt;}
.y2aa{bottom:143.402667pt;}
.y45{bottom:144.000000pt;}
.y1f9{bottom:145.763733pt;}
.ya2{bottom:145.957333pt;}
.y8d{bottom:146.042667pt;}
.y1a9{bottom:146.684533pt;}
.y1ee{bottom:147.706667pt;}
.y69{bottom:147.740000pt;}
.y306{bottom:147.762800pt;}
.y2de{bottom:148.080000pt;}
.y285{bottom:148.517333pt;}
.y21a{bottom:148.656000pt;}
.y1f{bottom:149.601200pt;}
.y2a9{bottom:156.469333pt;}
.y1cb{bottom:159.514667pt;}
.y14e{bottom:160.183067pt;}
.y252{bottom:160.707600pt;}
.y231{bottom:160.942267pt;}
.y2dd{bottom:161.818667pt;}
.y10f{bottom:162.433867pt;}
.y165{bottom:163.763733pt;}
.y44{bottom:164.000000pt;}
.y305{bottom:164.429467pt;}
.y1f8{bottom:165.763733pt;}
.ya1{bottom:166.485333pt;}
.y1a8{bottom:166.556533pt;}
.y8c{bottom:166.570667pt;}
.y1e{bottom:167.467867pt;}
.yed{bottom:167.740000pt;}
.y1ed{bottom:168.106667pt;}
.y284{bottom:168.389333pt;}
.y219{bottom:168.528000pt;}
.y2a8{bottom:169.536000pt;}
.yc5{bottom:170.573467pt;}
.y269{bottom:175.141333pt;}
.y2dc{bottom:175.557333pt;}
.y68{bottom:177.333333pt;}
.y251{bottom:177.640933pt;}
.y1ca{bottom:179.642667pt;}
.y14d{bottom:179.911067pt;}
.y164{bottom:180.430400pt;}
.y230{bottom:180.814267pt;}
.y304{bottom:181.096133pt;}
.y10e{bottom:182.305867pt;}
.y2a7{bottom:182.602667pt;}
.y43{bottom:184.000000pt;}
.y12a{bottom:184.745467pt;}
.y1d{bottom:185.334533pt;}
.y1f7{bottom:185.763733pt;}
.y1a7{bottom:186.428533pt;}
.y187{bottom:186.574267pt;}
.ya0{bottom:187.013333pt;}
.y8b{bottom:187.098667pt;}
.yc4{bottom:188.040133pt;}
.y283{bottom:188.261333pt;}
.y218{bottom:188.400000pt;}
.y1ec{bottom:188.506667pt;}
.y2db{bottom:189.296000pt;}
.y67{bottom:194.406667pt;}
.y250{bottom:194.574267pt;}
.y268{bottom:195.413333pt;}
.y2a6{bottom:195.669333pt;}
.y163{bottom:197.097067pt;}
.yec{bottom:197.333333pt;}
.y303{bottom:197.762800pt;}
.y14c{bottom:199.639067pt;}
.y1c9{bottom:199.770667pt;}
.y22f{bottom:200.686267pt;}
.y129{bottom:202.078800pt;}
.y2da{bottom:203.034667pt;}
.y1c{bottom:203.201200pt;}
.y42{bottom:204.000000pt;}
.yc3{bottom:205.506800pt;}
.y1f6{bottom:205.763733pt;}
.y1a6{bottom:206.300533pt;}
.y186{bottom:206.974267pt;}
.y9f{bottom:207.541333pt;}
.y8a{bottom:207.626667pt;}
.y282{bottom:208.133333pt;}
.y217{bottom:208.266667pt;}
.y2a5{bottom:208.736000pt;}
.y1eb{bottom:208.906667pt;}
.y10d{bottom:209.729867pt;}
.y66{bottom:210.666667pt;}
.y24f{bottom:211.507600pt;}
.y162{bottom:213.763733pt;}
.y267{bottom:215.685333pt;}
.y2d9{bottom:216.773333pt;}
.y14b{bottom:219.367067pt;}
.y128{bottom:219.412133pt;}
.y1c8{bottom:219.898667pt;}
.y22e{bottom:220.558267pt;}
.y1b{bottom:221.067867pt;}
.y2a4{bottom:221.802667pt;}
.yc2{bottom:222.973467pt;}
.y41{bottom:224.000000pt;}
.y302{bottom:224.429467pt;}
.y1f5{bottom:225.763733pt;}
.y1a5{bottom:226.172533pt;}
.y185{bottom:227.374267pt;}
.y281{bottom:228.005333pt;}
.y9e{bottom:228.069333pt;}
.y89{bottom:228.154667pt;}
.y1ea{bottom:229.306667pt;}
.y10c{bottom:229.601867pt;}
.y2d8{bottom:230.512000pt;}
.y2a3{bottom:234.869333pt;}
.y24e{bottom:235.893333pt;}
.y266{bottom:235.957333pt;}
.y127{bottom:236.745467pt;}
.y65{bottom:237.333333pt;}
.y161{bottom:237.989467pt;}
.y1a{bottom:238.934533pt;}
.y14a{bottom:239.095067pt;}
.y1c7{bottom:240.026667pt;}
.y22d{bottom:240.430267pt;}
.yc1{bottom:240.440133pt;}
.y40{bottom:244.000000pt;}
.y2d7{bottom:244.250667pt;}
.y1f4{bottom:245.763733pt;}
.y1a4{bottom:246.044533pt;}
.y184{bottom:247.774267pt;}
.y216{bottom:247.856000pt;}
.y280{bottom:247.877333pt;}
.y2a2{bottom:247.936000pt;}
.y9d{bottom:248.597333pt;}
.y88{bottom:248.682667pt;}
.y10b{bottom:249.473867pt;}
.y1e9{bottom:249.706667pt;}
.yeb{bottom:250.666667pt;}
.y126{bottom:254.078800pt;}
.y64{bottom:254.406667pt;}
.y24d{bottom:256.165333pt;}
.y265{bottom:256.229333pt;}
.y19{bottom:256.801200pt;}
.yc0{bottom:257.906800pt;}
.y2d6{bottom:257.989333pt;}
.y160{bottom:257.989467pt;}
.y149{bottom:258.823067pt;}
.y1c6{bottom:260.154667pt;}
.y22c{bottom:260.302267pt;}
.y2a1{bottom:261.002667pt;}
.y301{bottom:261.096133pt;}
.y3f{bottom:264.000000pt;}
.y1f3{bottom:265.763733pt;}
.y1a3{bottom:265.916533pt;}
.y215{bottom:267.728000pt;}
.yea{bottom:267.740000pt;}
.y27f{bottom:267.749333pt;}
.y183{bottom:268.174267pt;}
.y9c{bottom:269.125333pt;}
.y87{bottom:269.210667pt;}
.y10a{bottom:269.345867pt;}
.y1e8{bottom:270.106667pt;}
.y2d5{bottom:271.728000pt;}
.y2a0{bottom:274.069333pt;}
.y18{bottom:274.667867pt;}
.ybf{bottom:275.373467pt;}
.y24c{bottom:276.437333pt;}
.y264{bottom:276.501333pt;}
.y300{bottom:277.762800pt;}
.y15f{bottom:277.989467pt;}
.y125{bottom:278.065467pt;}
.y148{bottom:278.551067pt;}
.y22b{bottom:280.163600pt;}
.y1c5{bottom:280.282667pt;}
.y3e{bottom:284.000000pt;}
.y2d4{bottom:285.466667pt;}
.y1f2{bottom:285.763733pt;}
.y1a2{bottom:285.788533pt;}
.y29f{bottom:287.136000pt;}
.y214{bottom:287.600000pt;}
.y27e{bottom:287.621333pt;}
.y182{bottom:288.574267pt;}
.y109{bottom:289.217867pt;}
.y9b{bottom:289.653333pt;}
.y86{bottom:289.738667pt;}
.y1e7{bottom:290.506667pt;}
.y63{bottom:291.472000pt;}
.y17{bottom:292.534533pt;}
.ybe{bottom:292.840133pt;}
.y2ff{bottom:294.429467pt;}
.y124{bottom:295.398800pt;}
.y24b{bottom:296.709333pt;}
.y263{bottom:296.773333pt;}
.y15e{bottom:297.989467pt;}
.y147{bottom:298.279067pt;}
.y2d3{bottom:299.205333pt;}
.y22a{bottom:300.035600pt;}
.y29e{bottom:300.202667pt;}
.y1c4{bottom:300.410667pt;}
.y3d{bottom:304.000000pt;}
.y1a1{bottom:305.660533pt;}
.y1f1{bottom:305.763733pt;}
.y213{bottom:307.472000pt;}
.y27d{bottom:307.493333pt;}
.y181{bottom:308.974267pt;}
.y108{bottom:309.089867pt;}
.y9a{bottom:310.181333pt;}
.y85{bottom:310.266667pt;}
.ybd{bottom:310.306800pt;}
.y16{bottom:310.401200pt;}
.y1e6{bottom:310.906667pt;}
.y2fe{bottom:311.096133pt;}
.y62{bottom:311.296000pt;}
.y2d2{bottom:312.944000pt;}
.y29d{bottom:313.269333pt;}
.ye9{bottom:316.104933pt;}
.y24a{bottom:316.981333pt;}
.y262{bottom:317.045333pt;}
.y15d{bottom:317.989467pt;}
.y146{bottom:318.007067pt;}
.y123{bottom:319.385467pt;}
.y229{bottom:319.907600pt;}
.y1c3{bottom:320.538667pt;}
.y3c{bottom:324.000000pt;}
.y1a0{bottom:325.532533pt;}
.y29c{bottom:326.336000pt;}
.y2d1{bottom:326.682667pt;}
.y212{bottom:327.344000pt;}
.y27c{bottom:327.365333pt;}
.y2fd{bottom:327.762800pt;}
.ybc{bottom:327.773467pt;}
.y107{bottom:328.961867pt;}
.y180{bottom:329.374267pt;}
.y99{bottom:330.709333pt;}
.y84{bottom:330.794667pt;}
.y61{bottom:331.024000pt;}
.y1e5{bottom:331.306667pt;}
.ye8{bottom:333.438267pt;}
.y15{bottom:335.827867pt;}
.y122{bottom:336.718800pt;}
.y249{bottom:337.253333pt;}
.y261{bottom:337.317333pt;}
.y145{bottom:337.735067pt;}
.y15c{bottom:337.989467pt;}
.y29b{bottom:339.402667pt;}
.y228{bottom:339.774267pt;}
.y2d0{bottom:340.421333pt;}
.y1c2{bottom:340.794667pt;}
.y3b{bottom:344.000000pt;}
.y2fc{bottom:344.429467pt;}
.ybb{bottom:345.240133pt;}
.yc6{bottom:345.241467pt;}
.y19f{bottom:345.404533pt;}
.y211{bottom:347.216000pt;}
.y27b{bottom:347.237333pt;}
.y106{bottom:348.833867pt;}
.y17f{bottom:349.774267pt;}
.y60{bottom:350.752000pt;}
.ye7{bottom:350.771600pt;}
.y98{bottom:351.237333pt;}
.y83{bottom:351.322667pt;}
.y1e4{bottom:351.706667pt;}
.y29a{bottom:352.469333pt;}
.y121{bottom:354.052133pt;}
.y2cf{bottom:354.160000pt;}
.y144{bottom:357.463067pt;}
.y248{bottom:357.525333pt;}
.y260{bottom:357.589333pt;}
.y1c1{bottom:360.922667pt;}
.y2fb{bottom:361.096133pt;}
.y3a{bottom:364.000000pt;}
.y19e{bottom:365.276533pt;}
.y299{bottom:365.536000pt;}
.y15b{bottom:365.548533pt;}
.y1e1{bottom:367.066667pt;}
.y210{bottom:367.088000pt;}
.y27a{bottom:367.109333pt;}
.y2ce{bottom:367.898667pt;}
.ye6{bottom:368.104933pt;}
.y105{bottom:368.705867pt;}
.yba{bottom:369.226800pt;}
.y17e{bottom:370.174267pt;}
.y5f{bottom:370.480000pt;}
.y120{bottom:371.385467pt;}
.y97{bottom:371.765333pt;}
.y82{bottom:371.850667pt;}
.y1e3{bottom:372.106667pt;}
.y143{bottom:377.191067pt;}
.y247{bottom:377.797333pt;}
.y25f{bottom:377.861333pt;}
.y14{bottom:378.227867pt;}
.y298{bottom:378.602667pt;}
.y227{bottom:379.397333pt;}
.y1c0{bottom:381.050667pt;}
.y2cd{bottom:381.637333pt;}
.y15a{bottom:382.215200pt;}
.y39{bottom:384.000000pt;}
.y19d{bottom:385.100533pt;}
.y2fa{bottom:385.322800pt;}
.ye5{bottom:385.438267pt;}
.yb8{bottom:386.693467pt;}
.y20f{bottom:386.960000pt;}
.y279{bottom:386.981333pt;}
.y104{bottom:388.577867pt;}
.y11f{bottom:388.718800pt;}
.y5e{bottom:390.208000pt;}
.y17d{bottom:390.574267pt;}
.y297{bottom:391.669333pt;}
.y96{bottom:392.293333pt;}
.y81{bottom:392.378667pt;}
.y1e2{bottom:392.506667pt;}
.y2cc{bottom:395.376000pt;}
.y13{bottom:396.094533pt;}
.y142{bottom:396.919067pt;}
.y25e{bottom:398.021333pt;}
.y246{bottom:398.069333pt;}
.y159{bottom:398.881867pt;}
.y226{bottom:399.269333pt;}
.y1bf{bottom:401.178667pt;}
.y2f9{bottom:401.989467pt;}
.ye4{bottom:402.771600pt;}
.y38{bottom:404.000000pt;}
.yb7{bottom:404.158800pt;}
.yb9{bottom:404.160133pt;}
.y296{bottom:404.736000pt;}
.y19c{bottom:404.972533pt;}
.y11e{bottom:406.052133pt;}
.y20e{bottom:406.832000pt;}
.y278{bottom:406.853333pt;}
.y1e0{bottom:407.066667pt;}
.y103{bottom:408.449867pt;}
.y2cb{bottom:409.114667pt;}
.y5d{bottom:409.936000pt;}
.y17c{bottom:410.974267pt;}
.y95{bottom:412.821333pt;}
.y80{bottom:412.906667pt;}
.y158{bottom:415.548533pt;}
.y141{bottom:416.647067pt;}
.y295{bottom:417.802667pt;}
.y25d{bottom:418.293333pt;}
.y245{bottom:418.341333pt;}
.y2f8{bottom:418.656133pt;}
.y225{bottom:419.141333pt;}
.ye3{bottom:420.104933pt;}
.y1be{bottom:421.306667pt;}
.y12{bottom:421.519200pt;}
.y2ca{bottom:422.853333pt;}
.y11d{bottom:423.385467pt;}
.y37{bottom:424.000000pt;}
.y19b{bottom:424.844533pt;}
.y20d{bottom:426.704000pt;}
.y277{bottom:426.725333pt;}
.y1df{bottom:427.866667pt;}
.yb6{bottom:428.145467pt;}
.y102{bottom:428.321867pt;}
.y5c{bottom:429.664000pt;}
.y294{bottom:430.869333pt;}
.y17b{bottom:431.374267pt;}
.y157{bottom:432.215200pt;}
.y94{bottom:433.349333pt;}
.y7f{bottom:433.434667pt;}
.y2f7{bottom:435.322800pt;}
.y140{bottom:436.375067pt;}
.y2c9{bottom:436.592000pt;}
.ye2{bottom:437.438267pt;}
.y25c{bottom:438.565333pt;}
.y244{bottom:438.613333pt;}
.y224{bottom:439.013333pt;}
.y11{bottom:439.385867pt;}
.y1bd{bottom:441.434667pt;}
.y293{bottom:443.936000pt;}
.y36{bottom:444.000000pt;}
.y19a{bottom:444.716533pt;}
.y20c{bottom:446.576000pt;}
.y276{bottom:446.597333pt;}
.y11c{bottom:447.372133pt;}
.y101{bottom:448.193867pt;}
.y1de{bottom:448.666667pt;}
.y5b{bottom:449.392000pt;}
.y2c8{bottom:450.314667pt;}
.y17a{bottom:451.774267pt;}
.y2f6{bottom:451.989467pt;}
.y93{bottom:453.877333pt;}
.y7e{bottom:453.962667pt;}
.ye1{bottom:454.771600pt;}
.y13f{bottom:456.103067pt;}
.y156{bottom:456.448000pt;}
.y292{bottom:457.002667pt;}
.y10{bottom:457.252533pt;}
.y25b{bottom:458.837333pt;}
.y223{bottom:458.885333pt;}
.y1bc{bottom:461.562667pt;}
.yb5{bottom:463.466667pt;}
.y35{bottom:464.000000pt;}
.y2c7{bottom:464.053333pt;}
.y199{bottom:464.588533pt;}
.y11b{bottom:464.705467pt;}
.y20b{bottom:466.448000pt;}
.y275{bottom:466.469333pt;}
.y100{bottom:468.065867pt;}
.y2f5{bottom:468.656133pt;}
.y5a{bottom:469.120000pt;}
.y1dd{bottom:469.466667pt;}
.y291{bottom:470.069333pt;}
.y179{bottom:472.174267pt;}
.y92{bottom:474.405333pt;}
.y7d{bottom:474.490667pt;}
.yf{bottom:475.119200pt;}
.y13e{bottom:475.831067pt;}
.y155{bottom:476.448000pt;}
.y2c6{bottom:477.781333pt;}
.y222{bottom:478.757333pt;}
.ye0{bottom:478.758267pt;}
.y25a{bottom:479.109333pt;}
.y243{bottom:479.157333pt;}
.y1bb{bottom:481.690667pt;}
.yb4{bottom:483.466667pt;}
.y34{bottom:484.000000pt;}
.y198{bottom:484.460533pt;}
.y2f4{bottom:485.322800pt;}
.y20a{bottom:486.320000pt;}
.y274{bottom:486.341333pt;}
.yff{bottom:487.937867pt;}
.y11a{bottom:488.692133pt;}
.y290{bottom:488.800000pt;}
.y59{bottom:488.848000pt;}
.y1dc{bottom:490.266667pt;}
.y2c5{bottom:491.520000pt;}
.y178{bottom:492.574267pt;}
.ye{bottom:492.985867pt;}
.y91{bottom:494.933333pt;}
.y7c{bottom:495.018667pt;}
.y13d{bottom:495.559067pt;}
.ydf{bottom:496.091600pt;}
.y154{bottom:496.448000pt;}
.y221{bottom:498.629333pt;}
.y259{bottom:499.381333pt;}
.y242{bottom:499.429333pt;}
.y1ba{bottom:501.818667pt;}
.y2f3{bottom:501.989467pt;}
.y33{bottom:504.000000pt;}
.y197{bottom:504.332533pt;}
.y2c4{bottom:505.258667pt;}
.y119{bottom:506.025467pt;}
.y209{bottom:506.192000pt;}
.y273{bottom:506.213333pt;}
.yfe{bottom:507.809867pt;}
.y58{bottom:508.576000pt;}
.yd{bottom:510.852533pt;}
.y1db{bottom:511.066667pt;}
.y177{bottom:512.974267pt;}
.yde{bottom:513.424933pt;}
.y90{bottom:515.466667pt;}
.y7b{bottom:515.546667pt;}
.y153{bottom:516.448000pt;}
.y220{bottom:518.501333pt;}
.y2f2{bottom:518.656133pt;}
.y2c3{bottom:518.858667pt;}
.y258{bottom:519.653333pt;}
.y241{bottom:519.701333pt;}
.y1b9{bottom:521.946667pt;}
.y118{bottom:523.358800pt;}
.yb3{bottom:523.466667pt;}
.y32{bottom:524.000000pt;}
.y196{bottom:524.204533pt;}
.y208{bottom:526.064000pt;}
.y272{bottom:526.085333pt;}
.yfd{bottom:527.681867pt;}
.y57{bottom:528.304000pt;}
.y28f{bottom:528.346667pt;}
.yc{bottom:528.719200pt;}
.ydd{bottom:530.758267pt;}
.y1da{bottom:531.866667pt;}
.y2c2{bottom:532.458667pt;}
.y176{bottom:533.374267pt;}
.y2f1{bottom:535.322800pt;}
.y7a{bottom:536.074667pt;}
.y152{bottom:536.448000pt;}
.y13c{bottom:537.851333pt;}
.y21f{bottom:538.373333pt;}
.y257{bottom:539.925333pt;}
.y240{bottom:539.973333pt;}
.y117{bottom:540.692133pt;}
.y1b8{bottom:542.074667pt;}
.yb2{bottom:543.466667pt;}
.y31{bottom:544.000000pt;}
.y195{bottom:544.076533pt;}
.y207{bottom:545.936000pt;}
.y271{bottom:545.957333pt;}
.y2c1{bottom:546.058667pt;}
.yb{bottom:546.585867pt;}
.y56{bottom:548.032000pt;}
.y28e{bottom:548.074667pt;}
.y2f0{bottom:551.989467pt;}
.y1d9{bottom:552.666667pt;}
.y175{bottom:553.774267pt;}
.y13b{bottom:554.518000pt;}
.ydc{bottom:554.744933pt;}
.yfc{bottom:555.107600pt;}
.y151{bottom:556.448000pt;}
.y79{bottom:556.602667pt;}
.y116{bottom:558.025467pt;}
.y21e{bottom:558.245333pt;}
.y2c0{bottom:559.658667pt;}
.y256{bottom:560.197333pt;}
.y23f{bottom:560.245333pt;}
.y1b7{bottom:562.202667pt;}
.yb1{bottom:563.466667pt;}
.y194{bottom:563.948533pt;}
.y30{bottom:564.000000pt;}
.ya{bottom:564.452533pt;}
.y206{bottom:565.808000pt;}
.y270{bottom:565.829333pt;}
.y55{bottom:567.760000pt;}
.y28d{bottom:567.802667pt;}
.y2ef{bottom:568.656133pt;}
.y13a{bottom:571.184667pt;}
.yfb{bottom:571.640933pt;}
.ydb{bottom:572.078267pt;}
.y2bf{bottom:573.258667pt;}
.y1d8{bottom:573.466667pt;}
.y174{bottom:574.174267pt;}
.y115{bottom:575.358800pt;}
.y150{bottom:576.448000pt;}
.y78{bottom:577.130667pt;}
.y21d{bottom:578.117333pt;}
.y255{bottom:580.469333pt;}
.y23e{bottom:580.517333pt;}
.y9{bottom:582.319200pt;}
.y1b6{bottom:582.330667pt;}
.yb0{bottom:583.466667pt;}
.y2f{bottom:584.000000pt;}
.y2ee{bottom:585.322800pt;}
.y205{bottom:585.680000pt;}
.y26f{bottom:585.701333pt;}
.y2be{bottom:586.858667pt;}
.y54{bottom:587.488000pt;}
.y28c{bottom:587.530667pt;}
.yfa{bottom:588.174267pt;}
.yda{bottom:589.411600pt;}
.y193{bottom:591.374267pt;}
.y114{bottom:592.692133pt;}
.y1d7{bottom:594.266667pt;}
.y173{bottom:594.574267pt;}
.y139{bottom:595.167333pt;}
.y14f{bottom:596.448000pt;}
.y77{bottom:597.658667pt;}
.y21c{bottom:597.989333pt;}
.y2bd{bottom:600.458667pt;}
.y254{bottom:600.741333pt;}
.y23d{bottom:600.789333pt;}
.y2ed{bottom:601.989467pt;}
.y1b5{bottom:602.458667pt;}
.yaf{bottom:603.466667pt;}
.y2e{bottom:604.000000pt;}
.yf9{bottom:604.707600pt;}
.y204{bottom:605.552000pt;}
.y26e{bottom:605.573333pt;}
.yd8{bottom:606.744933pt;}
.y53{bottom:607.216000pt;}
.y28b{bottom:607.258667pt;}
.y8{bottom:607.745867pt;}
.y192{bottom:607.907600pt;}
.y113{bottom:610.025467pt;}
.y138{bottom:611.834000pt;}
.y2bc{bottom:614.058667pt;}
.y172{bottom:614.974267pt;}
.y1d6{bottom:615.066667pt;}
.y76{bottom:618.186667pt;}
.y2ec{bottom:618.656133pt;}
.y253{bottom:621.013333pt;}
.y23c{bottom:621.061333pt;}
.yf8{bottom:621.240933pt;}
.y1b4{bottom:622.586667pt;}
.yae{bottom:623.466667pt;}
.y2d{bottom:624.000000pt;}
.yd7{bottom:624.078267pt;}
.y191{bottom:624.440933pt;}
.y21b{bottom:625.413333pt;}
.y203{bottom:625.424000pt;}
.y26d{bottom:625.445333pt;}
.y52{bottom:626.944000pt;}
.y28a{bottom:626.986667pt;}
.y112{bottom:627.358800pt;}
.y2bb{bottom:627.658667pt;}
.y137{bottom:628.500667pt;}
.y2eb{bottom:635.322800pt;}
.y171{bottom:635.374267pt;}
.y1d5{bottom:635.866667pt;}
.y75{bottom:638.714667pt;}
.y190{bottom:640.974267pt;}
.y2ba{bottom:641.258667pt;}
.y23b{bottom:641.285333pt;}
.yd6{bottom:641.410267pt;}
.yd9{bottom:641.411600pt;}
.y1b3{bottom:642.714667pt;}
.yad{bottom:643.466667pt;}
.y2c{bottom:644.000000pt;}
.y111{bottom:644.692133pt;}
.y136{bottom:645.167333pt;}
.yf7{bottom:645.285333pt;}
.y202{bottom:645.296000pt;}
.y26c{bottom:645.317333pt;}
.y51{bottom:646.672000pt;}
.y289{bottom:646.714667pt;}
.y7{bottom:649.733333pt;}
.y2ea{bottom:651.989467pt;}
.y2b9{bottom:654.858667pt;}
.y170{bottom:655.774267pt;}
.y1d4{bottom:656.666667pt;}
.y74{bottom:659.242667pt;}
.y23a{bottom:661.557333pt;}
.y135{bottom:661.834000pt;}
.y1b2{bottom:662.842667pt;}
.yac{bottom:663.466667pt;}
.y2b{bottom:664.000000pt;}
.y18f{bottom:665.024000pt;}
.yf6{bottom:665.157333pt;}
.y201{bottom:665.168000pt;}
.y26b{bottom:665.189333pt;}
.yd1{bottom:665.395467pt;}
.y50{bottom:666.416000pt;}
.y288{bottom:666.442667pt;}
.y2b8{bottom:668.458667pt;}
.y2e9{bottom:668.656133pt;}
.y110{bottom:668.678800pt;}
.y6{bottom:670.933333pt;}
.y16f{bottom:676.174267pt;}
.y1d3{bottom:677.466667pt;}
.y134{bottom:678.500667pt;}
.y73{bottom:679.770667pt;}
.y239{bottom:681.829333pt;}
.y2b7{bottom:682.058667pt;}
.yd0{bottom:682.728800pt;}
.y1b1{bottom:682.970667pt;}
.yab{bottom:683.466667pt;}
.y2a{bottom:684.000000pt;}
.y18e{bottom:684.896000pt;}
.yf5{bottom:685.029333pt;}
.y200{bottom:685.040000pt;}
.y26a{bottom:685.061333pt;}
.y2e8{bottom:685.322800pt;}
.y4f{bottom:686.144000pt;}
.y287{bottom:686.170667pt;}
.y133{bottom:695.167333pt;}
.y2b6{bottom:695.658667pt;}
.y16e{bottom:696.574267pt;}
.y1d2{bottom:698.266667pt;}
.ycf{bottom:700.062133pt;}
.y72{bottom:700.298667pt;}
.y2e7{bottom:701.989467pt;}
.y238{bottom:702.101333pt;}
.y1b0{bottom:703.098667pt;}
.yaa{bottom:703.466667pt;}
.y29{bottom:704.000000pt;}
.y18d{bottom:704.768000pt;}
.yf4{bottom:704.901333pt;}
.y1ff{bottom:704.912000pt;}
.y4e{bottom:705.872000pt;}
.y286{bottom:705.898667pt;}
.y2b5{bottom:709.258667pt;}
.y132{bottom:711.834000pt;}
.yce{bottom:717.395467pt;}
.y2e6{bottom:718.656133pt;}
.y1d1{bottom:719.066667pt;}
.y5{bottom:720.000000pt;}
.y71{bottom:720.826667pt;}
.y237{bottom:722.373333pt;}
.y2b4{bottom:722.858667pt;}
.y1af{bottom:723.226667pt;}
.ya9{bottom:723.466667pt;}
.y28{bottom:724.000000pt;}
.y16d{bottom:724.533333pt;}
.y18c{bottom:724.640000pt;}
.yf3{bottom:724.773333pt;}
.y1fe{bottom:724.784000pt;}
.y4d{bottom:725.626667pt;}
.y131{bottom:728.500667pt;}
.ycd{bottom:734.728800pt;}
.y2e5{bottom:735.322800pt;}
.y2b3{bottom:736.458667pt;}
.y1d0{bottom:739.866667pt;}
.y70{bottom:741.354667pt;}
.y16c{bottom:741.600000pt;}
.y236{bottom:742.645333pt;}
.y1ae{bottom:743.354667pt;}
.ya8{bottom:743.466667pt;}
.y27{bottom:744.000000pt;}
.y18b{bottom:744.512000pt;}
.yf2{bottom:744.645333pt;}
.y1fd{bottom:744.656000pt;}
.y4c{bottom:745.354667pt;}
.y4{bottom:747.866667pt;}
.y2b2{bottom:750.058667pt;}
.y2e4{bottom:751.989467pt;}
.ycc{bottom:752.062133pt;}
.yd5{bottom:752.063600pt;}
.y130{bottom:752.487333pt;}
.y16b{bottom:758.666667pt;}
.y1cf{bottom:760.666667pt;}
.y6f{bottom:761.882667pt;}
.y235{bottom:762.917333pt;}
.ya7{bottom:763.466667pt;}
.y1ad{bottom:763.482667pt;}
.y2b1{bottom:763.658667pt;}
.y26{bottom:764.000000pt;}
.y18a{bottom:764.384000pt;}
.yf1{bottom:764.517333pt;}
.y1fc{bottom:764.528000pt;}
.y4b{bottom:765.082667pt;}
.y2e3{bottom:768.656133pt;}
.y12f{bottom:769.154000pt;}
.ycb{bottom:769.395467pt;}
.yd4{bottom:769.396933pt;}
.y3{bottom:775.733333pt;}
.y2b0{bottom:777.258667pt;}
.y1ce{bottom:781.466667pt;}
.y6e{bottom:782.410667pt;}
.y234{bottom:783.189333pt;}
.ya6{bottom:783.466667pt;}
.y1ac{bottom:783.610667pt;}
.y25{bottom:784.000000pt;}
.y189{bottom:784.256000pt;}
.yf0{bottom:784.389333pt;}
.y4a{bottom:784.810667pt;}
.y12e{bottom:785.820667pt;}
.yca{bottom:786.728800pt;}
.yd3{bottom:786.730267pt;}
.y2af{bottom:790.858667pt;}
.y16a{bottom:792.800000pt;}
.y2e2{bottom:796.661467pt;}
.y1cd{bottom:802.266667pt;}
.y12d{bottom:802.487333pt;}
.y6d{bottom:802.938667pt;}
.y233{bottom:803.461333pt;}
.ya5{bottom:803.466667pt;}
.y1ab{bottom:803.738667pt;}
.y24{bottom:804.000000pt;}
.yc9{bottom:804.062133pt;}
.yd2{bottom:804.063600pt;}
.y188{bottom:804.128000pt;}
.yef{bottom:804.261333pt;}
.y2ae{bottom:804.458667pt;}
.y49{bottom:804.538667pt;}
.y169{bottom:809.866667pt;}
.y1cc{bottom:823.066667pt;}
.y6c{bottom:823.466667pt;}
.y2{bottom:823.600000pt;}
.y232{bottom:823.733333pt;}
.y1aa{bottom:823.866667pt;}
.y23{bottom:824.000000pt;}
.yee{bottom:824.133333pt;}
.y48{bottom:824.266667pt;}
.y12c{bottom:826.474000pt;}
.y168{bottom:826.933333pt;}
.yc8{bottom:828.048800pt;}
.h8{height:21.894141pt;}
.h10{height:26.945443pt;}
.he{height:29.437500pt;}
.h19{height:33.117188pt;}
.h17{height:34.730667pt;}
.h2{height:34.957031pt;}
.h9{height:36.229167pt;}
.h18{height:36.293167pt;}
.h1{height:36.796875pt;}
.hd{height:43.363146pt;}
.hb{height:43.413333pt;}
.hc{height:44.140625pt;}
.ha{height:44.156250pt;}
.h5{height:44.960000pt;}
.h7{height:45.286458pt;}
.h11{height:49.300521pt;}
.hf{height:49.305854pt;}
.h12{height:49.327721pt;}
.h6{height:54.343750pt;}
.h14{height:54.386417pt;}
.h13{height:59.203292pt;}
.h15{height:59.352625pt;}
.h16{height:59.608625pt;}
.h3{height:73.593750pt;}
.h4{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x9{left:65.624667pt;}
.x6{left:73.228400pt;}
.xf{left:86.456667pt;}
.x8{left:95.916400pt;}
.x2{left:100.000000pt;}
.xc{left:105.624667pt;}
.x7{left:113.222000pt;}
.x5{left:120.000000pt;}
.x3{left:126.456667pt;}
.x12{left:135.888000pt;}
.x11{left:139.918000pt;}
.xa{left:141.104667pt;}
.x14{left:160.468400pt;}
.x10{left:179.904667pt;}
.xd{left:181.104667pt;}
.xb{left:344.984667pt;}
.xe{left:384.972000pt;}
.x13{left:556.250000pt;}
.x1{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; }
  