
    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_a7c6d461e3c591ea5b636d74.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_540a52f34177b3f257acc905.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_9f882819e13fe7899f714970.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_091072a6d96ce6fe6cce7c55.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_95d391c3e5b5f44c9974e353.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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_8871378ad3cd1ff3e38ec9dc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_76951fc259065a671903040e.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_990414adfc71a0d6f4915ebb.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0151c14aa0f6e4fa2e533274.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_c4012d8cf67e6f4223b293e8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.822000;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_a40fd37d153f605eff53a139.woff')format("woff");}.ffb{font-family:ffb;line-height:0.902344;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_0ba6f71b82cd675af814e7f8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.944336;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_dabf01deedee75a387da3cea.woff')format("woff");}.ffd{font-family:ffd;line-height:0.902344;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_3f7136c11a70eba02473b2f5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.899414;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:fff;src:url('chunks/assets/font_37e3ba2bfda0737e368c0b34.woff')format("woff");}.fff{font-family:fff;line-height:0.899414;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:ff10;src:url('chunks/assets/font_7546c9e1e161bf9fa9a64931.woff')format("woff");}.ff10{font-family:ff10;line-height:0.944336;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;}
.v3{vertical-align:-16.830000px;}
.v4{vertical-align:-14.448000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v6{vertical-align:19.800000px;}
.v2{vertical-align:23.760000px;}
.ls47{letter-spacing:-7.920000px;}
.ls44{letter-spacing:-7.560000px;}
.ls43{letter-spacing:-7.200000px;}
.ls57{letter-spacing:-6.912000px;}
.ls55{letter-spacing:-6.840000px;}
.ls63{letter-spacing:-4.968000px;}
.ls59{letter-spacing:-3.168000px;}
.ls30{letter-spacing:-2.808000px;}
.ls64{letter-spacing:-1.944000px;}
.ls4c{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-1.008000px;}
.ls4b{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.864000px;}
.ls22{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls6a{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.504000px;}
.ls3d{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.432000px;}
.ls46{letter-spacing:-0.390000px;}
.lsc{letter-spacing:-0.360000px;}
.ls68{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls51{letter-spacing:-0.252000px;}
.ls3c{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.023400px;}
.lsb{letter-spacing:0.060000px;}
.ls23{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.201600px;}
.ls18{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.220800px;}
.ls32{letter-spacing:0.237600px;}
.ls42{letter-spacing:0.252000px;}
.ls6{letter-spacing:0.288000px;}
.ls6b{letter-spacing:0.300000px;}
.ls5d{letter-spacing:0.302400px;}
.ls53{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.384000px;}
.ls58{letter-spacing:0.403200px;}
.lsf{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.936000px;}
.ls2f{letter-spacing:1.008000px;}
.ls5a{letter-spacing:1.080000px;}
.ls3b{letter-spacing:1.728000px;}
.ls5{letter-spacing:1.980000px;}
.ls31{letter-spacing:2.448000px;}
.ls2e{letter-spacing:2.484000px;}
.ls52{letter-spacing:2.520000px;}
.ls25{letter-spacing:2.880000px;}
.ls33{letter-spacing:3.152400px;}
.ls45{letter-spacing:3.384000px;}
.ls67{letter-spacing:3.660000px;}
.ls69{letter-spacing:3.720000px;}
.ls50{letter-spacing:3.794400px;}
.ls26{letter-spacing:3.859200px;}
.ls27{letter-spacing:3.960000px;}
.ls62{letter-spacing:4.075200px;}
.ls6c{letter-spacing:4.200000px;}
.ls1{letter-spacing:4.260000px;}
.ls4f{letter-spacing:4.406400px;}
.ls3{letter-spacing:4.560000px;}
.ls28{letter-spacing:4.572000px;}
.ls29{letter-spacing:4.687200px;}
.ls66{letter-spacing:4.752000px;}
.ls4d{letter-spacing:4.896000px;}
.ls41{letter-spacing:5.040000px;}
.ls3a{letter-spacing:5.256000px;}
.ls5f{letter-spacing:6.408000px;}
.ls2c{letter-spacing:6.537600px;}
.ls5b{letter-spacing:6.768000px;}
.ls2a{letter-spacing:6.847200px;}
.ls24{letter-spacing:6.969600px;}
.ls3f{letter-spacing:7.113600px;}
.ls3e{letter-spacing:7.128000px;}
.ls61{letter-spacing:7.200000px;}
.ls4e{letter-spacing:7.272000px;}
.ls1e{letter-spacing:7.380000px;}
.ls48{letter-spacing:7.848000px;}
.ls0{letter-spacing:8.436000px;}
.ls4{letter-spacing:8.460000px;}
.ls65{letter-spacing:8.690400px;}
.ls36{letter-spacing:8.867400px;}
.ls2b{letter-spacing:9.086400px;}
.ls35{letter-spacing:9.216000px;}
.ls2d{letter-spacing:9.597600px;}
.ls60{letter-spacing:9.720000px;}
.ls40{letter-spacing:9.864000px;}
.ls5e{letter-spacing:10.368000px;}
.ls5c{letter-spacing:10.706400px;}
.ls2{letter-spacing:10.740000px;}
.ls39{letter-spacing:10.764000px;}
.ls37{letter-spacing:10.800000px;}
.ls1f{letter-spacing:11.232000px;}
.ls54{letter-spacing:13.795500px;}
.ls49{letter-spacing:13.796100px;}
.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;}
}
.ws6f{word-spacing:-25.320000px;}
.ws3e{word-spacing:-21.918000px;}
.ws63{word-spacing:-21.312000px;}
.ws6e{word-spacing:-21.096000px;}
.ws34{word-spacing:-21.024000px;}
.ws36{word-spacing:-20.952000px;}
.ws3b{word-spacing:-20.880000px;}
.ws6a{word-spacing:-20.808000px;}
.ws64{word-spacing:-20.664000px;}
.ws35{word-spacing:-20.592000px;}
.ws5b{word-spacing:-20.556000px;}
.ws3d{word-spacing:-20.520000px;}
.ws66{word-spacing:-20.448000px;}
.ws69{word-spacing:-20.304000px;}
.ws3{word-spacing:-20.232000px;}
.ws37{word-spacing:-20.160000px;}
.ws58{word-spacing:-19.872000px;}
.ws40{word-spacing:-19.728000px;}
.ws5f{word-spacing:-19.584000px;}
.ws28{word-spacing:-19.512000px;}
.ws29{word-spacing:-19.440000px;}
.ws33{word-spacing:-18.648000px;}
.ws62{word-spacing:-18.504000px;}
.ws41{word-spacing:-18.432000px;}
.ws3c{word-spacing:-18.360000px;}
.ws6b{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws49{word-spacing:-18.144000px;}
.ws32{word-spacing:-18.000000px;}
.ws67{word-spacing:-17.928000px;}
.ws22{word-spacing:-17.784000px;}
.ws43{word-spacing:-17.712000px;}
.ws38{word-spacing:-17.640000px;}
.ws42{word-spacing:-17.568000px;}
.ws4b{word-spacing:-17.424000px;}
.ws31{word-spacing:-17.352000px;}
.ws68{word-spacing:-17.280000px;}
.ws7d{word-spacing:-17.160000px;}
.ws57{word-spacing:-17.136000px;}
.ws4c{word-spacing:-17.064000px;}
.ws2a{word-spacing:-16.992000px;}
.ws1{word-spacing:-16.860000px;}
.ws54{word-spacing:-16.848000px;}
.ws78{word-spacing:-16.560000px;}
.ws79{word-spacing:-14.820000px;}
.ws5e{word-spacing:-14.565600px;}
.ws77{word-spacing:-14.520000px;}
.ws65{word-spacing:-14.464800px;}
.ws4a{word-spacing:-14.414400px;}
.ws2{word-spacing:-14.162400px;}
.ws59{word-spacing:-13.910400px;}
.ws2b{word-spacing:-13.488000px;}
.ws72{word-spacing:-12.336000px;}
.ws4d{word-spacing:-11.856000px;}
.ws76{word-spacing:-11.802000px;}
.ws45{word-spacing:-11.616000px;}
.ws44{word-spacing:-11.376000px;}
.ws2f{word-spacing:-11.232000px;}
.ws3f{word-spacing:-10.800000px;}
.ws6d{word-spacing:-10.368000px;}
.ws16{word-spacing:-8.496000px;}
.wsc{word-spacing:-8.460000px;}
.ws7e{word-spacing:-4.200000px;}
.ws7b{word-spacing:-3.720000px;}
.ws51{word-spacing:-3.384000px;}
.ws46{word-spacing:-1.728000px;}
.ws6c{word-spacing:-1.080000px;}
.ws39{word-spacing:-1.008000px;}
.ws1c{word-spacing:-0.936000px;}
.ws27{word-spacing:-0.864000px;}
.ws20{word-spacing:-0.792000px;}
.wse{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.648000px;}
.ws1f{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.504000px;}
.ws1e{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.360000px;}
.ws7f{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.288000px;}
.ws5d{word-spacing:-0.252000px;}
.ws1d{word-spacing:-0.216000px;}
.ws21{word-spacing:-0.144000px;}
.ws30{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws23{word-spacing:0.072000px;}
.ws1a{word-spacing:0.144000px;}
.ws1b{word-spacing:0.216000px;}
.ws47{word-spacing:0.240000px;}
.ws24{word-spacing:0.288000px;}
.ws7a{word-spacing:0.300000px;}
.ws12{word-spacing:0.360000px;}
.ws52{word-spacing:0.390000px;}
.ws18{word-spacing:0.432000px;}
.ws48{word-spacing:0.480000px;}
.ws19{word-spacing:0.504000px;}
.ws26{word-spacing:0.576000px;}
.ws7c{word-spacing:0.600000px;}
.ws14{word-spacing:0.648000px;}
.ws2d{word-spacing:0.720000px;}
.ws2e{word-spacing:0.792000px;}
.ws13{word-spacing:0.864000px;}
.ws2c{word-spacing:1.008000px;}
.ws55{word-spacing:1.080000px;}
.ws75{word-spacing:1.440000px;}
.ws9{word-spacing:1.800000px;}
.ws71{word-spacing:1.944000px;}
.ws3a{word-spacing:2.808000px;}
.ws74{word-spacing:2.952000px;}
.ws61{word-spacing:3.168000px;}
.wsa{word-spacing:3.312000px;}
.ws7{word-spacing:3.720000px;}
.ws17{word-spacing:4.200000px;}
.ws70{word-spacing:4.968000px;}
.ws56{word-spacing:5.040000px;}
.ws4f{word-spacing:5.256000px;}
.ws73{word-spacing:5.472000px;}
.ws25{word-spacing:5.544000px;}
.ws5c{word-spacing:6.840000px;}
.ws60{word-spacing:6.912000px;}
.ws4e{word-spacing:7.200000px;}
.ws50{word-spacing:7.560000px;}
.ws53{word-spacing:7.920000px;}
.ws8{word-spacing:8.400000px;}
.ws5a{word-spacing:9.288000px;}
.ws11{word-spacing:10.152000px;}
.ws6{word-spacing:75.180000px;}
.ws0{word-spacing:146.196000px;}
._12{margin-left:-948.820800px;}
._4{margin-left:-38.694000px;}
._5{margin-left:-20.814000px;}
._15{margin-left:-19.566000px;}
._19{margin-left:-17.712000px;}
._13{margin-left:-14.767200px;}
._14{margin-left:-11.875200px;}
._17{margin-left:-10.560000px;}
._1b{margin-left:-9.501600px;}
._16{margin-left:-8.493600px;}
._f{margin-left:-7.236000px;}
._a{margin-left:-6.186000px;}
._c{margin-left:-4.854000px;}
._2{margin-left:-3.444000px;}
._0{margin-left:-1.722000px;}
._9{width:1.566000px;}
._3{width:2.814000px;}
._1{width:4.188000px;}
._10{width:5.343600px;}
._d{width:6.622800px;}
._8{width:7.812000px;}
._7{width:8.832000px;}
._e{width:10.587600px;}
._b{width:12.600000px;}
._18{width:13.773600px;}
._1a{width:16.048800px;}
._6{width:18.000000px;}
._11{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y21{bottom:117.000000px;}
.ycb{bottom:117.606000px;}
.yeb{bottom:117.912000px;}
.y1ef{bottom:118.122000px;}
.y67{bottom:121.207500px;}
.y1c8{bottom:121.914000px;}
.y20{bottom:132.000000px;}
.y1b8{bottom:136.207500px;}
.y1ee{bottom:136.872000px;}
.y1c7{bottom:137.058000px;}
.y8a{bottom:139.500000px;}
.yca{bottom:140.106000px;}
.yea{bottom:141.006000px;}
.y10f{bottom:143.707500px;}
.y1f{bottom:147.000000px;}
.y44{bottom:151.207500px;}
.y1c6{bottom:152.202000px;}
.y1ed{bottom:155.622000px;}
.y10d{bottom:158.707500px;}
.y89{bottom:162.000000px;}
.yc9{bottom:162.606000px;}
.ye9{bottom:164.092500px;}
.y66{bottom:164.280000px;}
.y1e{bottom:166.207500px;}
.y194{bottom:167.172000px;}
.y1c5{bottom:167.346000px;}
.ya9{bottom:173.707500px;}
.y1ec{bottom:174.372000px;}
.y10c{bottom:177.000000px;}
.y1b7{bottom:177.156000px;}
.y131{bottom:181.207500px;}
.y1c4{bottom:182.490000px;}
.y88{bottom:184.500000px;}
.yc8{bottom:185.106000px;}
.ye8{bottom:187.206000px;}
.y65{bottom:187.374000px;}
.y193{bottom:189.528000px;}
.y10b{bottom:192.000000px;}
.y1eb{bottom:193.122000px;}
.y43{bottom:194.592000px;}
.y172{bottom:199.500000px;}
.y1b6{bottom:199.800000px;}
.y152{bottom:202.074000px;}
.y1c3{bottom:204.018000px;}
.y87{bottom:207.000000px;}
.y1d{bottom:207.218550px;}
.yc7{bottom:207.606000px;}
.ye7{bottom:210.312000px;}
.y64{bottom:210.468000px;}
.y1ea{bottom:211.872000px;}
.y192{bottom:211.884000px;}
.y20a{bottom:214.500000px;}
.ya8{bottom:216.312000px;}
.y42{bottom:217.092000px;}
.y171{bottom:218.707500px;}
.y1b5{bottom:221.850000px;}
.y10a{bottom:222.000000px;}
.y151{bottom:224.718000px;}
.y130{bottom:226.764000px;}
.y86{bottom:229.500000px;}
.y1c{bottom:229.718550px;}
.yc6{bottom:230.106000px;}
.y1e9{bottom:230.622000px;}
.y209{bottom:233.250000px;}
.ye6{bottom:233.406000px;}
.y63{bottom:233.562000px;}
.y191{bottom:234.240000px;}
.y109{bottom:237.000000px;}
.ya7{bottom:238.506000px;}
.y41{bottom:239.286000px;}
.y1b4{bottom:243.900000px;}
.y150{bottom:247.362000px;}
.y12f{bottom:248.670000px;}
.y1c2{bottom:249.318000px;}
.y1e8{bottom:249.372000px;}
.y85{bottom:252.000000px;}
.y1b{bottom:252.218550px;}
.yc5{bottom:252.606000px;}
.y190{bottom:256.596000px;}
.ye5{bottom:256.632000px;}
.y62{bottom:256.656000px;}
.ya6{bottom:260.802000px;}
.y170{bottom:261.000000px;}
.y40{bottom:261.480000px;}
.y1c1{bottom:264.462000px;}
.y1b3{bottom:265.950000px;}
.y1e7{bottom:268.122000px;}
.y14f{bottom:270.006000px;}
.y12e{bottom:270.576000px;}
.y208{bottom:270.750000px;}
.y108{bottom:271.207500px;}
.y84{bottom:274.500000px;}
.y1a{bottom:274.718550px;}
.yc4{bottom:275.106000px;}
.y18f{bottom:278.952000px;}
.y1c0{bottom:279.618000px;}
.ye4{bottom:279.726000px;}
.y61{bottom:279.750000px;}
.ya5{bottom:282.996000px;}
.y3f{bottom:283.674000px;}
.y16f{bottom:283.950000px;}
.y1e6{bottom:286.872000px;}
.y1b2{bottom:288.000000px;}
.y12d{bottom:292.482000px;}
.y14e{bottom:292.818000px;}
.y107{bottom:293.707500px;}
.y1bf{bottom:294.762000px;}
.y83{bottom:297.000000px;}
.y19{bottom:297.218550px;}
.yc3{bottom:297.606000px;}
.y18e{bottom:301.308000px;}
.ye3{bottom:302.820000px;}
.y60{bottom:302.844000px;}
.ya4{bottom:305.190000px;}
.y1e5{bottom:305.622000px;}
.y3e{bottom:305.868000px;}
.y16e{bottom:306.900000px;}
.y207{bottom:308.250000px;}
.y1be{bottom:309.906000px;}
.y1b1{bottom:310.050000px;}
.y12c{bottom:314.388000px;}
.y14d{bottom:315.462000px;}
.y82{bottom:319.500000px;}
.y18{bottom:319.718550px;}
.yc2{bottom:320.106000px;}
.y18d{bottom:323.664000px;}
.y1e4{bottom:324.372000px;}
.y1bd{bottom:325.050000px;}
.ye2{bottom:325.914000px;}
.y5f{bottom:325.938000px;}
.ya3{bottom:327.384000px;}
.y3d{bottom:328.062000px;}
.y16d{bottom:329.850000px;}
.y1b0{bottom:332.100000px;}
.y106{bottom:333.816000px;}
.y12b{bottom:336.294000px;}
.y14c{bottom:338.106000px;}
.y81{bottom:342.000000px;}
.y17{bottom:342.218550px;}
.yc1{bottom:342.606000px;}
.y1e3{bottom:343.122000px;}
.y18c{bottom:346.020000px;}
.y1bc{bottom:346.578000px;}
.ye1{bottom:349.008000px;}
.y5e{bottom:349.032000px;}
.y206{bottom:349.500000px;}
.ya2{bottom:349.578000px;}
.y3c{bottom:350.256000px;}
.y16c{bottom:352.800000px;}
.y1af{bottom:354.150000px;}
.y105{bottom:356.622000px;}
.y12a{bottom:358.140000px;}
.y14b{bottom:360.750000px;}
.y1e2{bottom:361.872000px;}
.y80{bottom:364.500000px;}
.y16{bottom:364.718550px;}
.yc0{bottom:365.106000px;}
.y205{bottom:368.250000px;}
.y18b{bottom:368.376000px;}
.ya1{bottom:371.772000px;}
.ye0{bottom:372.102000px;}
.y5d{bottom:372.126000px;}
.y3b{bottom:372.450000px;}
.y16b{bottom:375.750000px;}
.y1ae{bottom:376.200000px;}
.y104{bottom:379.428000px;}
.y129{bottom:380.046000px;}
.y1e1{bottom:380.622000px;}
.y14a{bottom:383.394000px;}
.y10e{bottom:386.997000px;}
.y7f{bottom:387.000000px;}
.y15{bottom:387.218550px;}
.ybf{bottom:387.606000px;}
.y18a{bottom:390.732000px;}
.y1bb{bottom:391.878000px;}
.ya0{bottom:393.966000px;}
.y3a{bottom:394.644000px;}
.ydf{bottom:395.196000px;}
.y5c{bottom:395.220000px;}
.y1ad{bottom:398.250000px;}
.y16a{bottom:398.700000px;}
.y1e0{bottom:399.372000px;}
.y128{bottom:401.952000px;}
.y103{bottom:402.234000px;}
.y204{bottom:405.750000px;}
.y149{bottom:406.038000px;}
.y1ba{bottom:407.022000px;}
.y7e{bottom:409.500000px;}
.y14{bottom:409.718550px;}
.ybe{bottom:410.106000px;}
.y189{bottom:413.088000px;}
.y9f{bottom:416.160000px;}
.y39{bottom:416.838000px;}
.y1df{bottom:418.122000px;}
.yde{bottom:418.290000px;}
.y5b{bottom:418.314000px;}
.y1ac{bottom:420.300000px;}
.y169{bottom:421.650000px;}
.y127{bottom:423.858000px;}
.y203{bottom:424.500000px;}
.y102{bottom:425.040000px;}
.y1b9{bottom:428.550000px;}
.y148{bottom:428.682000px;}
.y7d{bottom:432.000000px;}
.y13{bottom:432.218550px;}
.ybd{bottom:432.606000px;}
.y188{bottom:435.444000px;}
.y1de{bottom:436.872000px;}
.y9e{bottom:438.354000px;}
.y38{bottom:439.032000px;}
.ydd{bottom:441.384000px;}
.y5a{bottom:441.408000px;}
.y1ab{bottom:442.350000px;}
.y202{bottom:443.250000px;}
.y168{bottom:444.600000px;}
.y126{bottom:445.764000px;}
.y101{bottom:447.846000px;}
.y147{bottom:451.326000px;}
.y7c{bottom:454.500000px;}
.y12{bottom:454.718550px;}
.ybc{bottom:455.106000px;}
.y1dd{bottom:455.622000px;}
.y187{bottom:457.782000px;}
.y9d{bottom:460.548000px;}
.y37{bottom:461.226000px;}
.y201{bottom:462.000000px;}
.y1aa{bottom:464.400000px;}
.ydc{bottom:464.478000px;}
.y59{bottom:464.502000px;}
.y167{bottom:467.550000px;}
.y125{bottom:467.670000px;}
.y100{bottom:470.652000px;}
.y146{bottom:473.970000px;}
.y1dc{bottom:474.372000px;}
.y7b{bottom:477.000000px;}
.y11{bottom:477.218550px;}
.ybb{bottom:477.606000px;}
.y186{bottom:480.138000px;}
.y200{bottom:480.750000px;}
.y9c{bottom:482.742000px;}
.y36{bottom:483.420000px;}
.y1a9{bottom:486.450000px;}
.ydb{bottom:487.572000px;}
.y58{bottom:487.596000px;}
.y124{bottom:489.576000px;}
.y166{bottom:490.500000px;}
.y1db{bottom:493.122000px;}
.yff{bottom:493.458000px;}
.y145{bottom:496.614000px;}
.y7a{bottom:499.500000px;}
.y10{bottom:499.718550px;}
.yba{bottom:500.106000px;}
.y185{bottom:502.494000px;}
.y9b{bottom:504.936000px;}
.y35{bottom:505.614000px;}
.y1a8{bottom:508.500000px;}
.yda{bottom:510.666000px;}
.y57{bottom:510.690000px;}
.y123{bottom:511.482000px;}
.y1da{bottom:511.872000px;}
.y165{bottom:513.450000px;}
.yfe{bottom:516.264000px;}
.y1ff{bottom:518.250000px;}
.y144{bottom:519.258000px;}
.y79{bottom:522.000000px;}
.yf{bottom:522.218550px;}
.yb9{bottom:522.606000px;}
.y184{bottom:524.850000px;}
.y9a{bottom:527.130000px;}
.y34{bottom:527.808000px;}
.y1a7{bottom:530.550000px;}
.y1d9{bottom:530.622000px;}
.y122{bottom:533.388000px;}
.yd9{bottom:533.760000px;}
.y56{bottom:533.784000px;}
.y164{bottom:536.400000px;}
.y1fe{bottom:537.000000px;}
.yfd{bottom:539.070000px;}
.y143{bottom:541.902000px;}
.y78{bottom:544.500000px;}
.ye{bottom:544.718550px;}
.yb8{bottom:545.106000px;}
.y183{bottom:547.200000px;}
.y99{bottom:549.324000px;}
.y1d8{bottom:549.372000px;}
.y33{bottom:550.002000px;}
.y1a6{bottom:552.600000px;}
.y121{bottom:555.294000px;}
.y1fd{bottom:555.750000px;}
.yd8{bottom:556.854000px;}
.y55{bottom:556.878000px;}
.y163{bottom:559.350000px;}
.yfc{bottom:561.876000px;}
.y142{bottom:564.546000px;}
.y77{bottom:567.000000px;}
.yd{bottom:567.218550px;}
.yb7{bottom:567.606000px;}
.y182{bottom:569.550000px;}
.y98{bottom:571.518000px;}
.y32{bottom:572.196000px;}
.y1d7{bottom:574.500000px;}
.y1a5{bottom:574.650000px;}
.y120{bottom:577.182000px;}
.yd7{bottom:579.948000px;}
.y54{bottom:579.972000px;}
.y162{bottom:582.300000px;}
.yfb{bottom:584.682000px;}
.y141{bottom:587.190000px;}
.y76{bottom:589.500000px;}
.yc{bottom:589.718550px;}
.yb6{bottom:590.106000px;}
.y1fc{bottom:593.250000px;}
.y97{bottom:593.712000px;}
.y31{bottom:594.390000px;}
.y1a4{bottom:596.700000px;}
.y11f{bottom:599.088000px;}
.yd6{bottom:603.042000px;}
.y53{bottom:603.066000px;}
.y161{bottom:605.250000px;}
.yfa{bottom:607.488000px;}
.y140{bottom:609.834000px;}
.y75{bottom:612.000000px;}
.yb{bottom:612.218550px;}
.yb5{bottom:612.606000px;}
.y181{bottom:614.166000px;}
.y96{bottom:615.906000px;}
.y30{bottom:616.584000px;}
.y1a3{bottom:618.750000px;}
.y1d6{bottom:619.500000px;}
.y11e{bottom:620.994000px;}
.yd5{bottom:626.136000px;}
.y52{bottom:626.160000px;}
.y160{bottom:628.200000px;}
.yf9{bottom:630.294000px;}
.y1fb{bottom:630.750000px;}
.y13f{bottom:632.478000px;}
.y74{bottom:634.500000px;}
.ya{bottom:634.718550px;}
.yb4{bottom:635.106000px;}
.y180{bottom:636.522000px;}
.y95{bottom:638.100000px;}
.y2f{bottom:638.778000px;}
.y1a2{bottom:640.800000px;}
.y11d{bottom:642.822000px;}
.yd4{bottom:649.230000px;}
.y51{bottom:649.254000px;}
.y1d5{bottom:649.500000px;}
.y15f{bottom:651.150000px;}
.yf8{bottom:653.076000px;}
.y13e{bottom:655.122000px;}
.y73{bottom:657.000000px;}
.yb3{bottom:657.606000px;}
.y17f{bottom:658.878000px;}
.y94{bottom:660.300000px;}
.y2e{bottom:660.972000px;}
.y1a1{bottom:662.850000px;}
.y1d4{bottom:664.500000px;}
.y11c{bottom:664.728000px;}
.y1fa{bottom:668.250000px;}
.y9{bottom:668.468550px;}
.yd3{bottom:672.324000px;}
.y50{bottom:672.348000px;}
.y15e{bottom:674.100000px;}
.yf7{bottom:675.882000px;}
.y13d{bottom:677.766000px;}
.y72{bottom:679.500000px;}
.yb2{bottom:680.106000px;}
.y17e{bottom:681.234000px;}
.y93{bottom:682.500000px;}
.y2d{bottom:683.166000px;}
.y1a0{bottom:684.900000px;}
.y11b{bottom:686.634000px;}
.y1f9{bottom:687.000000px;}
.y1d3{bottom:694.500000px;}
.yd2{bottom:695.418000px;}
.y4f{bottom:695.442000px;}
.y15d{bottom:697.050000px;}
.yf6{bottom:698.688000px;}
.y13c{bottom:700.410000px;}
.y71{bottom:702.000000px;}
.yb1{bottom:702.606000px;}
.y17d{bottom:703.590000px;}
.y2c{bottom:705.360000px;}
.y1f8{bottom:705.750000px;}
.y19f{bottom:706.950000px;}
.y11a{bottom:708.540000px;}
.y8{bottom:708.968550px;}
.y1d2{bottom:709.500000px;}
.yd1{bottom:718.512000px;}
.y4e{bottom:718.536000px;}
.y15c{bottom:720.000000px;}
.yf5{bottom:721.494000px;}
.y13b{bottom:723.054000px;}
.y70{bottom:724.500000px;}
.yb0{bottom:725.106000px;}
.y17c{bottom:725.946000px;}
.y92{bottom:726.942000px;}
.y2b{bottom:727.554000px;}
.y7{bottom:727.718550px;}
.y19e{bottom:729.000000px;}
.y119{bottom:730.446000px;}
.y1d1{bottom:739.500000px;}
.yd0{bottom:741.606000px;}
.y4d{bottom:741.630000px;}
.y15b{bottom:742.950000px;}
.y1f7{bottom:743.250000px;}
.yf4{bottom:744.282000px;}
.y13a{bottom:745.698000px;}
.y6f{bottom:747.000000px;}
.yaf{bottom:747.606000px;}
.y17b{bottom:748.302000px;}
.y91{bottom:749.136000px;}
.y2a{bottom:749.748000px;}
.y19d{bottom:751.050000px;}
.y118{bottom:752.352000px;}
.y1d0{bottom:754.500000px;}
.y1f6{bottom:762.000000px;}
.ycf{bottom:764.700000px;}
.y4c{bottom:764.724000px;}
.y15a{bottom:765.900000px;}
.yf3{bottom:767.088000px;}
.y139{bottom:768.342000px;}
.y6e{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.yae{bottom:770.106000px;}
.y17a{bottom:770.658000px;}
.y90{bottom:771.330000px;}
.y29{bottom:771.942000px;}
.y19c{bottom:773.100000px;}
.y117{bottom:774.258000px;}
.y1f5{bottom:780.750000px;}
.y1cf{bottom:784.500000px;}
.y4b{bottom:787.818000px;}
.yce{bottom:787.836000px;}
.y159{bottom:788.850000px;}
.yf2{bottom:789.894000px;}
.y138{bottom:790.986000px;}
.y6d{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.yad{bottom:792.606000px;}
.y179{bottom:793.014000px;}
.y8f{bottom:793.524000px;}
.y28{bottom:794.136000px;}
.y19b{bottom:795.150000px;}
.y116{bottom:796.164000px;}
.y1ce{bottom:799.500000px;}
.y4a{bottom:810.912000px;}
.ycd{bottom:810.930000px;}
.y158{bottom:811.800000px;}
.yf1{bottom:812.670000px;}
.y137{bottom:813.630000px;}
.y6c{bottom:814.500000px;}
.yac{bottom:815.106000px;}
.y178{bottom:815.370000px;}
.y8e{bottom:815.718000px;}
.y27{bottom:816.330000px;}
.y19a{bottom:817.200000px;}
.y115{bottom:818.070000px;}
.y1f4{bottom:818.250000px;}
.y1cd{bottom:829.500000px;}
.y49{bottom:834.006000px;}
.ycc{bottom:834.024000px;}
.y157{bottom:834.750000px;}
.yf0{bottom:835.476000px;}
.y136{bottom:836.274000px;}
.y6b{bottom:837.000000px;}
.yab{bottom:837.606000px;}
.y177{bottom:837.726000px;}
.y8d{bottom:837.912000px;}
.y26{bottom:838.524000px;}
.y199{bottom:839.250000px;}
.y114{bottom:839.976000px;}
.y1cc{bottom:844.500000px;}
.y1f3{bottom:855.750000px;}
.y48{bottom:857.118000px;}
.y156{bottom:857.700000px;}
.yef{bottom:858.282000px;}
.y135{bottom:858.918000px;}
.y4{bottom:859.500000px;}
.y176{bottom:860.082000px;}
.y8c{bottom:860.106000px;}
.y25{bottom:860.718000px;}
.y198{bottom:861.300000px;}
.y113{bottom:861.882000px;}
.y1cb{bottom:874.500000px;}
.y47{bottom:880.212000px;}
.y155{bottom:880.650000px;}
.yee{bottom:881.088000px;}
.y134{bottom:881.562000px;}
.y6a{bottom:882.000000px;}
.y8b{bottom:882.306000px;}
.y175{bottom:882.438000px;}
.yaa{bottom:882.606000px;}
.y24{bottom:882.912000px;}
.y197{bottom:883.350000px;}
.y112{bottom:883.788000px;}
.y3{bottom:889.500000px;}
.y1f2{bottom:893.250000px;}
.y46{bottom:903.306000px;}
.y154{bottom:903.600000px;}
.yed{bottom:903.894000px;}
.y133{bottom:904.206000px;}
.y69{bottom:904.500000px;}
.y174{bottom:904.794000px;}
.y23{bottom:905.106000px;}
.y196{bottom:905.400000px;}
.y111{bottom:905.694000px;}
.y1f1{bottom:912.000000px;}
.y1ca{bottom:919.500000px;}
.y45{bottom:926.400000px;}
.y153{bottom:926.550000px;}
.yec{bottom:926.700000px;}
.y132{bottom:926.850000px;}
.y68{bottom:927.000000px;}
.y173{bottom:927.150000px;}
.y22{bottom:927.300000px;}
.y195{bottom:927.450000px;}
.y110{bottom:927.600000px;}
.y1f0{bottom:930.750000px;}
.y1c9{bottom:934.500000px;}
.h7{height:23.927813px;}
.hb{height:30.313623px;}
.h1b{height:39.072000px;}
.h9{height:39.990234px;}
.h8{height:40.757812px;}
.hd{height:47.988281px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.h6{height:61.136719px;}
.h2{height:62.947266px;}
.h12{height:65.703445px;}
.h19{height:65.883703px;}
.h10{height:66.087445px;}
.hf{height:66.147703px;}
.h13{height:66.207445px;}
.h11{height:66.231445px;}
.h1a{height:66.459703px;}
.hc{height:66.483703px;}
.he{height:66.531703px;}
.ha{height:66.555703px;}
.h15{height:66.627703px;}
.h16{height:66.651703px;}
.h14{height:66.675703px;}
.h18{height:66.795703px;}
.h17{height:66.867703px;}
.h3{height:79.980469px;}
.h4{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x4{left:82.381950px;}
.x6{left:112.500000px;}
.x7{left:127.393050px;}
.x2{left:135.000000px;}
.x3{left:412.909650px;}
.x5{left:625.781250px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.960000pt;}
.v4{vertical-align:-12.842667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v6{vertical-align:17.600000pt;}
.v2{vertical-align:21.120000pt;}
.ls47{letter-spacing:-7.040000pt;}
.ls44{letter-spacing:-6.720000pt;}
.ls43{letter-spacing:-6.400000pt;}
.ls57{letter-spacing:-6.144000pt;}
.ls55{letter-spacing:-6.080000pt;}
.ls63{letter-spacing:-4.416000pt;}
.ls59{letter-spacing:-2.816000pt;}
.ls30{letter-spacing:-2.496000pt;}
.ls64{letter-spacing:-1.728000pt;}
.ls4c{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.896000pt;}
.ls4b{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.768000pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls6a{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls3d{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls46{letter-spacing:-0.346667pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls68{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls51{letter-spacing:-0.224000pt;}
.ls3c{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.020800pt;}
.lsb{letter-spacing:0.053333pt;}
.ls23{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.179200pt;}
.ls18{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.196267pt;}
.ls32{letter-spacing:0.211200pt;}
.ls42{letter-spacing:0.224000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls6b{letter-spacing:0.266667pt;}
.ls5d{letter-spacing:0.268800pt;}
.ls53{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.341333pt;}
.ls58{letter-spacing:0.358400pt;}
.lsf{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.832000pt;}
.ls2f{letter-spacing:0.896000pt;}
.ls5a{letter-spacing:0.960000pt;}
.ls3b{letter-spacing:1.536000pt;}
.ls5{letter-spacing:1.760000pt;}
.ls31{letter-spacing:2.176000pt;}
.ls2e{letter-spacing:2.208000pt;}
.ls52{letter-spacing:2.240000pt;}
.ls25{letter-spacing:2.560000pt;}
.ls33{letter-spacing:2.802133pt;}
.ls45{letter-spacing:3.008000pt;}
.ls67{letter-spacing:3.253333pt;}
.ls69{letter-spacing:3.306667pt;}
.ls50{letter-spacing:3.372800pt;}
.ls26{letter-spacing:3.430400pt;}
.ls27{letter-spacing:3.520000pt;}
.ls62{letter-spacing:3.622400pt;}
.ls6c{letter-spacing:3.733333pt;}
.ls1{letter-spacing:3.786667pt;}
.ls4f{letter-spacing:3.916800pt;}
.ls3{letter-spacing:4.053333pt;}
.ls28{letter-spacing:4.064000pt;}
.ls29{letter-spacing:4.166400pt;}
.ls66{letter-spacing:4.224000pt;}
.ls4d{letter-spacing:4.352000pt;}
.ls41{letter-spacing:4.480000pt;}
.ls3a{letter-spacing:4.672000pt;}
.ls5f{letter-spacing:5.696000pt;}
.ls2c{letter-spacing:5.811200pt;}
.ls5b{letter-spacing:6.016000pt;}
.ls2a{letter-spacing:6.086400pt;}
.ls24{letter-spacing:6.195200pt;}
.ls3f{letter-spacing:6.323200pt;}
.ls3e{letter-spacing:6.336000pt;}
.ls61{letter-spacing:6.400000pt;}
.ls4e{letter-spacing:6.464000pt;}
.ls1e{letter-spacing:6.560000pt;}
.ls48{letter-spacing:6.976000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls4{letter-spacing:7.520000pt;}
.ls65{letter-spacing:7.724800pt;}
.ls36{letter-spacing:7.882133pt;}
.ls2b{letter-spacing:8.076800pt;}
.ls35{letter-spacing:8.192000pt;}
.ls2d{letter-spacing:8.531200pt;}
.ls60{letter-spacing:8.640000pt;}
.ls40{letter-spacing:8.768000pt;}
.ls5e{letter-spacing:9.216000pt;}
.ls5c{letter-spacing:9.516800pt;}
.ls2{letter-spacing:9.546667pt;}
.ls39{letter-spacing:9.568000pt;}
.ls37{letter-spacing:9.600000pt;}
.ls1f{letter-spacing:9.984000pt;}
.ls54{letter-spacing:12.262667pt;}
.ls49{letter-spacing:12.263200pt;}
.ws6f{word-spacing:-22.506667pt;}
.ws3e{word-spacing:-19.482667pt;}
.ws63{word-spacing:-18.944000pt;}
.ws6e{word-spacing:-18.752000pt;}
.ws34{word-spacing:-18.688000pt;}
.ws36{word-spacing:-18.624000pt;}
.ws3b{word-spacing:-18.560000pt;}
.ws6a{word-spacing:-18.496000pt;}
.ws64{word-spacing:-18.368000pt;}
.ws35{word-spacing:-18.304000pt;}
.ws5b{word-spacing:-18.272000pt;}
.ws3d{word-spacing:-18.240000pt;}
.ws66{word-spacing:-18.176000pt;}
.ws69{word-spacing:-18.048000pt;}
.ws3{word-spacing:-17.984000pt;}
.ws37{word-spacing:-17.920000pt;}
.ws58{word-spacing:-17.664000pt;}
.ws40{word-spacing:-17.536000pt;}
.ws5f{word-spacing:-17.408000pt;}
.ws28{word-spacing:-17.344000pt;}
.ws29{word-spacing:-17.280000pt;}
.ws33{word-spacing:-16.576000pt;}
.ws62{word-spacing:-16.448000pt;}
.ws41{word-spacing:-16.384000pt;}
.ws3c{word-spacing:-16.320000pt;}
.ws6b{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws49{word-spacing:-16.128000pt;}
.ws32{word-spacing:-16.000000pt;}
.ws67{word-spacing:-15.936000pt;}
.ws22{word-spacing:-15.808000pt;}
.ws43{word-spacing:-15.744000pt;}
.ws38{word-spacing:-15.680000pt;}
.ws42{word-spacing:-15.616000pt;}
.ws4b{word-spacing:-15.488000pt;}
.ws31{word-spacing:-15.424000pt;}
.ws68{word-spacing:-15.360000pt;}
.ws7d{word-spacing:-15.253333pt;}
.ws57{word-spacing:-15.232000pt;}
.ws4c{word-spacing:-15.168000pt;}
.ws2a{word-spacing:-15.104000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws54{word-spacing:-14.976000pt;}
.ws78{word-spacing:-14.720000pt;}
.ws79{word-spacing:-13.173333pt;}
.ws5e{word-spacing:-12.947200pt;}
.ws77{word-spacing:-12.906667pt;}
.ws65{word-spacing:-12.857600pt;}
.ws4a{word-spacing:-12.812800pt;}
.ws2{word-spacing:-12.588800pt;}
.ws59{word-spacing:-12.364800pt;}
.ws2b{word-spacing:-11.989333pt;}
.ws72{word-spacing:-10.965333pt;}
.ws4d{word-spacing:-10.538667pt;}
.ws76{word-spacing:-10.490667pt;}
.ws45{word-spacing:-10.325333pt;}
.ws44{word-spacing:-10.112000pt;}
.ws2f{word-spacing:-9.984000pt;}
.ws3f{word-spacing:-9.600000pt;}
.ws6d{word-spacing:-9.216000pt;}
.ws16{word-spacing:-7.552000pt;}
.wsc{word-spacing:-7.520000pt;}
.ws7e{word-spacing:-3.733333pt;}
.ws7b{word-spacing:-3.306667pt;}
.ws51{word-spacing:-3.008000pt;}
.ws46{word-spacing:-1.536000pt;}
.ws6c{word-spacing:-0.960000pt;}
.ws39{word-spacing:-0.896000pt;}
.ws1c{word-spacing:-0.832000pt;}
.ws27{word-spacing:-0.768000pt;}
.ws20{word-spacing:-0.704000pt;}
.wse{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.576000pt;}
.ws1f{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.448000pt;}
.ws1e{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.320000pt;}
.ws7f{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.256000pt;}
.ws5d{word-spacing:-0.224000pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws21{word-spacing:-0.128000pt;}
.ws30{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws23{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws47{word-spacing:0.213333pt;}
.ws24{word-spacing:0.256000pt;}
.ws7a{word-spacing:0.266667pt;}
.ws12{word-spacing:0.320000pt;}
.ws52{word-spacing:0.346667pt;}
.ws18{word-spacing:0.384000pt;}
.ws48{word-spacing:0.426667pt;}
.ws19{word-spacing:0.448000pt;}
.ws26{word-spacing:0.512000pt;}
.ws7c{word-spacing:0.533333pt;}
.ws14{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.704000pt;}
.ws13{word-spacing:0.768000pt;}
.ws2c{word-spacing:0.896000pt;}
.ws55{word-spacing:0.960000pt;}
.ws75{word-spacing:1.280000pt;}
.ws9{word-spacing:1.600000pt;}
.ws71{word-spacing:1.728000pt;}
.ws3a{word-spacing:2.496000pt;}
.ws74{word-spacing:2.624000pt;}
.ws61{word-spacing:2.816000pt;}
.wsa{word-spacing:2.944000pt;}
.ws7{word-spacing:3.306667pt;}
.ws17{word-spacing:3.733333pt;}
.ws70{word-spacing:4.416000pt;}
.ws56{word-spacing:4.480000pt;}
.ws4f{word-spacing:4.672000pt;}
.ws73{word-spacing:4.864000pt;}
.ws25{word-spacing:4.928000pt;}
.ws5c{word-spacing:6.080000pt;}
.ws60{word-spacing:6.144000pt;}
.ws4e{word-spacing:6.400000pt;}
.ws50{word-spacing:6.720000pt;}
.ws53{word-spacing:7.040000pt;}
.ws8{word-spacing:7.466667pt;}
.ws5a{word-spacing:8.256000pt;}
.ws11{word-spacing:9.024000pt;}
.ws6{word-spacing:66.826667pt;}
.ws0{word-spacing:129.952000pt;}
._12{margin-left:-843.396267pt;}
._4{margin-left:-34.394667pt;}
._5{margin-left:-18.501333pt;}
._15{margin-left:-17.392000pt;}
._19{margin-left:-15.744000pt;}
._13{margin-left:-13.126400pt;}
._14{margin-left:-10.555733pt;}
._17{margin-left:-9.386667pt;}
._1b{margin-left:-8.445867pt;}
._16{margin-left:-7.549867pt;}
._f{margin-left:-6.432000pt;}
._a{margin-left:-5.498667pt;}
._c{margin-left:-4.314667pt;}
._2{margin-left:-3.061333pt;}
._0{margin-left:-1.530667pt;}
._9{width:1.392000pt;}
._3{width:2.501333pt;}
._1{width:3.722667pt;}
._10{width:4.749867pt;}
._d{width:5.886933pt;}
._8{width:6.944000pt;}
._7{width:7.850667pt;}
._e{width:9.411200pt;}
._b{width:11.200000pt;}
._18{width:12.243200pt;}
._1a{width:14.265600pt;}
._6{width:16.000000pt;}
._11{width:28.129867pt;}
.fs5{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y21{bottom:104.000000pt;}
.ycb{bottom:104.538667pt;}
.yeb{bottom:104.810667pt;}
.y1ef{bottom:104.997333pt;}
.y67{bottom:107.740000pt;}
.y1c8{bottom:108.368000pt;}
.y20{bottom:117.333333pt;}
.y1b8{bottom:121.073333pt;}
.y1ee{bottom:121.664000pt;}
.y1c7{bottom:121.829333pt;}
.y8a{bottom:124.000000pt;}
.yca{bottom:124.538667pt;}
.yea{bottom:125.338667pt;}
.y10f{bottom:127.740000pt;}
.y1f{bottom:130.666667pt;}
.y44{bottom:134.406667pt;}
.y1c6{bottom:135.290667pt;}
.y1ed{bottom:138.330667pt;}
.y10d{bottom:141.073333pt;}
.y89{bottom:144.000000pt;}
.yc9{bottom:144.538667pt;}
.ye9{bottom:145.860000pt;}
.y66{bottom:146.026667pt;}
.y1e{bottom:147.740000pt;}
.y194{bottom:148.597333pt;}
.y1c5{bottom:148.752000pt;}
.ya9{bottom:154.406667pt;}
.y1ec{bottom:154.997333pt;}
.y10c{bottom:157.333333pt;}
.y1b7{bottom:157.472000pt;}
.y131{bottom:161.073333pt;}
.y1c4{bottom:162.213333pt;}
.y88{bottom:164.000000pt;}
.yc8{bottom:164.538667pt;}
.ye8{bottom:166.405333pt;}
.y65{bottom:166.554667pt;}
.y193{bottom:168.469333pt;}
.y10b{bottom:170.666667pt;}
.y1eb{bottom:171.664000pt;}
.y43{bottom:172.970667pt;}
.y172{bottom:177.333333pt;}
.y1b6{bottom:177.600000pt;}
.y152{bottom:179.621333pt;}
.y1c3{bottom:181.349333pt;}
.y87{bottom:184.000000pt;}
.y1d{bottom:184.194267pt;}
.yc7{bottom:184.538667pt;}
.ye7{bottom:186.944000pt;}
.y64{bottom:187.082667pt;}
.y1ea{bottom:188.330667pt;}
.y192{bottom:188.341333pt;}
.y20a{bottom:190.666667pt;}
.ya8{bottom:192.277333pt;}
.y42{bottom:192.970667pt;}
.y171{bottom:194.406667pt;}
.y1b5{bottom:197.200000pt;}
.y10a{bottom:197.333333pt;}
.y151{bottom:199.749333pt;}
.y130{bottom:201.568000pt;}
.y86{bottom:204.000000pt;}
.y1c{bottom:204.194267pt;}
.yc6{bottom:204.538667pt;}
.y1e9{bottom:204.997333pt;}
.y209{bottom:207.333333pt;}
.ye6{bottom:207.472000pt;}
.y63{bottom:207.610667pt;}
.y191{bottom:208.213333pt;}
.y109{bottom:210.666667pt;}
.ya7{bottom:212.005333pt;}
.y41{bottom:212.698667pt;}
.y1b4{bottom:216.800000pt;}
.y150{bottom:219.877333pt;}
.y12f{bottom:221.040000pt;}
.y1c2{bottom:221.616000pt;}
.y1e8{bottom:221.664000pt;}
.y85{bottom:224.000000pt;}
.y1b{bottom:224.194267pt;}
.yc5{bottom:224.538667pt;}
.y190{bottom:228.085333pt;}
.ye5{bottom:228.117333pt;}
.y62{bottom:228.138667pt;}
.ya6{bottom:231.824000pt;}
.y170{bottom:232.000000pt;}
.y40{bottom:232.426667pt;}
.y1c1{bottom:235.077333pt;}
.y1b3{bottom:236.400000pt;}
.y1e7{bottom:238.330667pt;}
.y14f{bottom:240.005333pt;}
.y12e{bottom:240.512000pt;}
.y208{bottom:240.666667pt;}
.y108{bottom:241.073333pt;}
.y84{bottom:244.000000pt;}
.y1a{bottom:244.194267pt;}
.yc4{bottom:244.538667pt;}
.y18f{bottom:247.957333pt;}
.y1c0{bottom:248.549333pt;}
.ye4{bottom:248.645333pt;}
.y61{bottom:248.666667pt;}
.ya5{bottom:251.552000pt;}
.y3f{bottom:252.154667pt;}
.y16f{bottom:252.400000pt;}
.y1e6{bottom:254.997333pt;}
.y1b2{bottom:256.000000pt;}
.y12d{bottom:259.984000pt;}
.y14e{bottom:260.282667pt;}
.y107{bottom:261.073333pt;}
.y1bf{bottom:262.010667pt;}
.y83{bottom:264.000000pt;}
.y19{bottom:264.194267pt;}
.yc3{bottom:264.538667pt;}
.y18e{bottom:267.829333pt;}
.ye3{bottom:269.173333pt;}
.y60{bottom:269.194667pt;}
.ya4{bottom:271.280000pt;}
.y1e5{bottom:271.664000pt;}
.y3e{bottom:271.882667pt;}
.y16e{bottom:272.800000pt;}
.y207{bottom:274.000000pt;}
.y1be{bottom:275.472000pt;}
.y1b1{bottom:275.600000pt;}
.y12c{bottom:279.456000pt;}
.y14d{bottom:280.410667pt;}
.y82{bottom:284.000000pt;}
.y18{bottom:284.194267pt;}
.yc2{bottom:284.538667pt;}
.y18d{bottom:287.701333pt;}
.y1e4{bottom:288.330667pt;}
.y1bd{bottom:288.933333pt;}
.ye2{bottom:289.701333pt;}
.y5f{bottom:289.722667pt;}
.ya3{bottom:291.008000pt;}
.y3d{bottom:291.610667pt;}
.y16d{bottom:293.200000pt;}
.y1b0{bottom:295.200000pt;}
.y106{bottom:296.725333pt;}
.y12b{bottom:298.928000pt;}
.y14c{bottom:300.538667pt;}
.y81{bottom:304.000000pt;}
.y17{bottom:304.194267pt;}
.yc1{bottom:304.538667pt;}
.y1e3{bottom:304.997333pt;}
.y18c{bottom:307.573333pt;}
.y1bc{bottom:308.069333pt;}
.ye1{bottom:310.229333pt;}
.y5e{bottom:310.250667pt;}
.y206{bottom:310.666667pt;}
.ya2{bottom:310.736000pt;}
.y3c{bottom:311.338667pt;}
.y16c{bottom:313.600000pt;}
.y1af{bottom:314.800000pt;}
.y105{bottom:316.997333pt;}
.y12a{bottom:318.346667pt;}
.y14b{bottom:320.666667pt;}
.y1e2{bottom:321.664000pt;}
.y80{bottom:324.000000pt;}
.y16{bottom:324.194267pt;}
.yc0{bottom:324.538667pt;}
.y205{bottom:327.333333pt;}
.y18b{bottom:327.445333pt;}
.ya1{bottom:330.464000pt;}
.ye0{bottom:330.757333pt;}
.y5d{bottom:330.778667pt;}
.y3b{bottom:331.066667pt;}
.y16b{bottom:334.000000pt;}
.y1ae{bottom:334.400000pt;}
.y104{bottom:337.269333pt;}
.y129{bottom:337.818667pt;}
.y1e1{bottom:338.330667pt;}
.y14a{bottom:340.794667pt;}
.y10e{bottom:343.997333pt;}
.y7f{bottom:344.000000pt;}
.y15{bottom:344.194267pt;}
.ybf{bottom:344.538667pt;}
.y18a{bottom:347.317333pt;}
.y1bb{bottom:348.336000pt;}
.ya0{bottom:350.192000pt;}
.y3a{bottom:350.794667pt;}
.ydf{bottom:351.285333pt;}
.y5c{bottom:351.306667pt;}
.y1ad{bottom:354.000000pt;}
.y16a{bottom:354.400000pt;}
.y1e0{bottom:354.997333pt;}
.y128{bottom:357.290667pt;}
.y103{bottom:357.541333pt;}
.y204{bottom:360.666667pt;}
.y149{bottom:360.922667pt;}
.y1ba{bottom:361.797333pt;}
.y7e{bottom:364.000000pt;}
.y14{bottom:364.194267pt;}
.ybe{bottom:364.538667pt;}
.y189{bottom:367.189333pt;}
.y9f{bottom:369.920000pt;}
.y39{bottom:370.522667pt;}
.y1df{bottom:371.664000pt;}
.yde{bottom:371.813333pt;}
.y5b{bottom:371.834667pt;}
.y1ac{bottom:373.600000pt;}
.y169{bottom:374.800000pt;}
.y127{bottom:376.762667pt;}
.y203{bottom:377.333333pt;}
.y102{bottom:377.813333pt;}
.y1b9{bottom:380.933333pt;}
.y148{bottom:381.050667pt;}
.y7d{bottom:384.000000pt;}
.y13{bottom:384.194267pt;}
.ybd{bottom:384.538667pt;}
.y188{bottom:387.061333pt;}
.y1de{bottom:388.330667pt;}
.y9e{bottom:389.648000pt;}
.y38{bottom:390.250667pt;}
.ydd{bottom:392.341333pt;}
.y5a{bottom:392.362667pt;}
.y1ab{bottom:393.200000pt;}
.y202{bottom:394.000000pt;}
.y168{bottom:395.200000pt;}
.y126{bottom:396.234667pt;}
.y101{bottom:398.085333pt;}
.y147{bottom:401.178667pt;}
.y7c{bottom:404.000000pt;}
.y12{bottom:404.194267pt;}
.ybc{bottom:404.538667pt;}
.y1dd{bottom:404.997333pt;}
.y187{bottom:406.917333pt;}
.y9d{bottom:409.376000pt;}
.y37{bottom:409.978667pt;}
.y201{bottom:410.666667pt;}
.y1aa{bottom:412.800000pt;}
.ydc{bottom:412.869333pt;}
.y59{bottom:412.890667pt;}
.y167{bottom:415.600000pt;}
.y125{bottom:415.706667pt;}
.y100{bottom:418.357333pt;}
.y146{bottom:421.306667pt;}
.y1dc{bottom:421.664000pt;}
.y7b{bottom:424.000000pt;}
.y11{bottom:424.194267pt;}
.ybb{bottom:424.538667pt;}
.y186{bottom:426.789333pt;}
.y200{bottom:427.333333pt;}
.y9c{bottom:429.104000pt;}
.y36{bottom:429.706667pt;}
.y1a9{bottom:432.400000pt;}
.ydb{bottom:433.397333pt;}
.y58{bottom:433.418667pt;}
.y124{bottom:435.178667pt;}
.y166{bottom:436.000000pt;}
.y1db{bottom:438.330667pt;}
.yff{bottom:438.629333pt;}
.y145{bottom:441.434667pt;}
.y7a{bottom:444.000000pt;}
.y10{bottom:444.194267pt;}
.yba{bottom:444.538667pt;}
.y185{bottom:446.661333pt;}
.y9b{bottom:448.832000pt;}
.y35{bottom:449.434667pt;}
.y1a8{bottom:452.000000pt;}
.yda{bottom:453.925333pt;}
.y57{bottom:453.946667pt;}
.y123{bottom:454.650667pt;}
.y1da{bottom:454.997333pt;}
.y165{bottom:456.400000pt;}
.yfe{bottom:458.901333pt;}
.y1ff{bottom:460.666667pt;}
.y144{bottom:461.562667pt;}
.y79{bottom:464.000000pt;}
.yf{bottom:464.194267pt;}
.yb9{bottom:464.538667pt;}
.y184{bottom:466.533333pt;}
.y9a{bottom:468.560000pt;}
.y34{bottom:469.162667pt;}
.y1a7{bottom:471.600000pt;}
.y1d9{bottom:471.664000pt;}
.y122{bottom:474.122667pt;}
.yd9{bottom:474.453333pt;}
.y56{bottom:474.474667pt;}
.y164{bottom:476.800000pt;}
.y1fe{bottom:477.333333pt;}
.yfd{bottom:479.173333pt;}
.y143{bottom:481.690667pt;}
.y78{bottom:484.000000pt;}
.ye{bottom:484.194267pt;}
.yb8{bottom:484.538667pt;}
.y183{bottom:486.400000pt;}
.y99{bottom:488.288000pt;}
.y1d8{bottom:488.330667pt;}
.y33{bottom:488.890667pt;}
.y1a6{bottom:491.200000pt;}
.y121{bottom:493.594667pt;}
.y1fd{bottom:494.000000pt;}
.yd8{bottom:494.981333pt;}
.y55{bottom:495.002667pt;}
.y163{bottom:497.200000pt;}
.yfc{bottom:499.445333pt;}
.y142{bottom:501.818667pt;}
.y77{bottom:504.000000pt;}
.yd{bottom:504.194267pt;}
.yb7{bottom:504.538667pt;}
.y182{bottom:506.266667pt;}
.y98{bottom:508.016000pt;}
.y32{bottom:508.618667pt;}
.y1d7{bottom:510.666667pt;}
.y1a5{bottom:510.800000pt;}
.y120{bottom:513.050667pt;}
.yd7{bottom:515.509333pt;}
.y54{bottom:515.530667pt;}
.y162{bottom:517.600000pt;}
.yfb{bottom:519.717333pt;}
.y141{bottom:521.946667pt;}
.y76{bottom:524.000000pt;}
.yc{bottom:524.194267pt;}
.yb6{bottom:524.538667pt;}
.y1fc{bottom:527.333333pt;}
.y97{bottom:527.744000pt;}
.y31{bottom:528.346667pt;}
.y1a4{bottom:530.400000pt;}
.y11f{bottom:532.522667pt;}
.yd6{bottom:536.037333pt;}
.y53{bottom:536.058667pt;}
.y161{bottom:538.000000pt;}
.yfa{bottom:539.989333pt;}
.y140{bottom:542.074667pt;}
.y75{bottom:544.000000pt;}
.yb{bottom:544.194267pt;}
.yb5{bottom:544.538667pt;}
.y181{bottom:545.925333pt;}
.y96{bottom:547.472000pt;}
.y30{bottom:548.074667pt;}
.y1a3{bottom:550.000000pt;}
.y1d6{bottom:550.666667pt;}
.y11e{bottom:551.994667pt;}
.yd5{bottom:556.565333pt;}
.y52{bottom:556.586667pt;}
.y160{bottom:558.400000pt;}
.yf9{bottom:560.261333pt;}
.y1fb{bottom:560.666667pt;}
.y13f{bottom:562.202667pt;}
.y74{bottom:564.000000pt;}
.ya{bottom:564.194267pt;}
.yb4{bottom:564.538667pt;}
.y180{bottom:565.797333pt;}
.y95{bottom:567.200000pt;}
.y2f{bottom:567.802667pt;}
.y1a2{bottom:569.600000pt;}
.y11d{bottom:571.397333pt;}
.yd4{bottom:577.093333pt;}
.y51{bottom:577.114667pt;}
.y1d5{bottom:577.333333pt;}
.y15f{bottom:578.800000pt;}
.yf8{bottom:580.512000pt;}
.y13e{bottom:582.330667pt;}
.y73{bottom:584.000000pt;}
.yb3{bottom:584.538667pt;}
.y17f{bottom:585.669333pt;}
.y94{bottom:586.933333pt;}
.y2e{bottom:587.530667pt;}
.y1a1{bottom:589.200000pt;}
.y1d4{bottom:590.666667pt;}
.y11c{bottom:590.869333pt;}
.y1fa{bottom:594.000000pt;}
.y9{bottom:594.194267pt;}
.yd3{bottom:597.621333pt;}
.y50{bottom:597.642667pt;}
.y15e{bottom:599.200000pt;}
.yf7{bottom:600.784000pt;}
.y13d{bottom:602.458667pt;}
.y72{bottom:604.000000pt;}
.yb2{bottom:604.538667pt;}
.y17e{bottom:605.541333pt;}
.y93{bottom:606.666667pt;}
.y2d{bottom:607.258667pt;}
.y1a0{bottom:608.800000pt;}
.y11b{bottom:610.341333pt;}
.y1f9{bottom:610.666667pt;}
.y1d3{bottom:617.333333pt;}
.yd2{bottom:618.149333pt;}
.y4f{bottom:618.170667pt;}
.y15d{bottom:619.600000pt;}
.yf6{bottom:621.056000pt;}
.y13c{bottom:622.586667pt;}
.y71{bottom:624.000000pt;}
.yb1{bottom:624.538667pt;}
.y17d{bottom:625.413333pt;}
.y2c{bottom:626.986667pt;}
.y1f8{bottom:627.333333pt;}
.y19f{bottom:628.400000pt;}
.y11a{bottom:629.813333pt;}
.y8{bottom:630.194267pt;}
.y1d2{bottom:630.666667pt;}
.yd1{bottom:638.677333pt;}
.y4e{bottom:638.698667pt;}
.y15c{bottom:640.000000pt;}
.yf5{bottom:641.328000pt;}
.y13b{bottom:642.714667pt;}
.y70{bottom:644.000000pt;}
.yb0{bottom:644.538667pt;}
.y17c{bottom:645.285333pt;}
.y92{bottom:646.170667pt;}
.y2b{bottom:646.714667pt;}
.y7{bottom:646.860933pt;}
.y19e{bottom:648.000000pt;}
.y119{bottom:649.285333pt;}
.y1d1{bottom:657.333333pt;}
.yd0{bottom:659.205333pt;}
.y4d{bottom:659.226667pt;}
.y15b{bottom:660.400000pt;}
.y1f7{bottom:660.666667pt;}
.yf4{bottom:661.584000pt;}
.y13a{bottom:662.842667pt;}
.y6f{bottom:664.000000pt;}
.yaf{bottom:664.538667pt;}
.y17b{bottom:665.157333pt;}
.y91{bottom:665.898667pt;}
.y2a{bottom:666.442667pt;}
.y19d{bottom:667.600000pt;}
.y118{bottom:668.757333pt;}
.y1d0{bottom:670.666667pt;}
.y1f6{bottom:677.333333pt;}
.ycf{bottom:679.733333pt;}
.y4c{bottom:679.754667pt;}
.y15a{bottom:680.800000pt;}
.yf3{bottom:681.856000pt;}
.y139{bottom:682.970667pt;}
.y6e{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.yae{bottom:684.538667pt;}
.y17a{bottom:685.029333pt;}
.y90{bottom:685.626667pt;}
.y29{bottom:686.170667pt;}
.y19c{bottom:687.200000pt;}
.y117{bottom:688.229333pt;}
.y1f5{bottom:694.000000pt;}
.y1cf{bottom:697.333333pt;}
.y4b{bottom:700.282667pt;}
.yce{bottom:700.298667pt;}
.y159{bottom:701.200000pt;}
.yf2{bottom:702.128000pt;}
.y138{bottom:703.098667pt;}
.y6d{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.yad{bottom:704.538667pt;}
.y179{bottom:704.901333pt;}
.y8f{bottom:705.354667pt;}
.y28{bottom:705.898667pt;}
.y19b{bottom:706.800000pt;}
.y116{bottom:707.701333pt;}
.y1ce{bottom:710.666667pt;}
.y4a{bottom:720.810667pt;}
.ycd{bottom:720.826667pt;}
.y158{bottom:721.600000pt;}
.yf1{bottom:722.373333pt;}
.y137{bottom:723.226667pt;}
.y6c{bottom:724.000000pt;}
.yac{bottom:724.538667pt;}
.y178{bottom:724.773333pt;}
.y8e{bottom:725.082667pt;}
.y27{bottom:725.626667pt;}
.y19a{bottom:726.400000pt;}
.y115{bottom:727.173333pt;}
.y1f4{bottom:727.333333pt;}
.y1cd{bottom:737.333333pt;}
.y49{bottom:741.338667pt;}
.ycc{bottom:741.354667pt;}
.y157{bottom:742.000000pt;}
.yf0{bottom:742.645333pt;}
.y136{bottom:743.354667pt;}
.y6b{bottom:744.000000pt;}
.yab{bottom:744.538667pt;}
.y177{bottom:744.645333pt;}
.y8d{bottom:744.810667pt;}
.y26{bottom:745.354667pt;}
.y199{bottom:746.000000pt;}
.y114{bottom:746.645333pt;}
.y1cc{bottom:750.666667pt;}
.y1f3{bottom:760.666667pt;}
.y48{bottom:761.882667pt;}
.y156{bottom:762.400000pt;}
.yef{bottom:762.917333pt;}
.y135{bottom:763.482667pt;}
.y4{bottom:764.000000pt;}
.y176{bottom:764.517333pt;}
.y8c{bottom:764.538667pt;}
.y25{bottom:765.082667pt;}
.y198{bottom:765.600000pt;}
.y113{bottom:766.117333pt;}
.y1cb{bottom:777.333333pt;}
.y47{bottom:782.410667pt;}
.y155{bottom:782.800000pt;}
.yee{bottom:783.189333pt;}
.y134{bottom:783.610667pt;}
.y6a{bottom:784.000000pt;}
.y8b{bottom:784.272000pt;}
.y175{bottom:784.389333pt;}
.yaa{bottom:784.538667pt;}
.y24{bottom:784.810667pt;}
.y197{bottom:785.200000pt;}
.y112{bottom:785.589333pt;}
.y3{bottom:790.666667pt;}
.y1f2{bottom:794.000000pt;}
.y46{bottom:802.938667pt;}
.y154{bottom:803.200000pt;}
.yed{bottom:803.461333pt;}
.y133{bottom:803.738667pt;}
.y69{bottom:804.000000pt;}
.y174{bottom:804.261333pt;}
.y23{bottom:804.538667pt;}
.y196{bottom:804.800000pt;}
.y111{bottom:805.061333pt;}
.y1f1{bottom:810.666667pt;}
.y1ca{bottom:817.333333pt;}
.y45{bottom:823.466667pt;}
.y153{bottom:823.600000pt;}
.yec{bottom:823.733333pt;}
.y132{bottom:823.866667pt;}
.y68{bottom:824.000000pt;}
.y173{bottom:824.133333pt;}
.y22{bottom:824.266667pt;}
.y195{bottom:824.400000pt;}
.y110{bottom:824.533333pt;}
.y1f0{bottom:827.333333pt;}
.y1c9{bottom:830.666667pt;}
.h7{height:21.269167pt;}
.hb{height:26.945443pt;}
.h1b{height:34.730667pt;}
.h9{height:35.546875pt;}
.h8{height:36.229167pt;}
.hd{height:42.656250pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.h6{height:54.343750pt;}
.h2{height:55.953125pt;}
.h12{height:58.403063pt;}
.h19{height:58.563292pt;}
.h10{height:58.744396pt;}
.hf{height:58.797958pt;}
.h13{height:58.851062pt;}
.h11{height:58.872396pt;}
.h1a{height:59.075292pt;}
.hc{height:59.096625pt;}
.he{height:59.139292pt;}
.ha{height:59.160625pt;}
.h15{height:59.224625pt;}
.h16{height:59.245958pt;}
.h14{height:59.267292pt;}
.h18{height:59.373958pt;}
.h17{height:59.437958pt;}
.h3{height:71.093750pt;}
.h4{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x4{left:73.228400pt;}
.x6{left:100.000000pt;}
.x7{left:113.238267pt;}
.x2{left:120.000000pt;}
.x3{left:367.030800pt;}
.x5{left:556.250000pt;}
}




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