
    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_b1e7facaa50f3b36d3e4c921.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ffec055b59e920399ecbdd5b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc8749c4dba9546699ab9513.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_eddd1797b539f92adfb31310.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1424704a4f1807ee18f13a03.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f54748c372515da286e600c1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f53a77c8a0b696a51ef3e602.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_66f5ed351c785442181ddbd8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_32d8992a4ed1970ce1725989.woff')format("woff");}.ff9{font-family:ff9;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_868264bb2e4c92a075d1cc51.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944824;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_dd4cec61a35c3d0e64dc1bd3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.082520;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-26.640000px;}
.v2{vertical-align:-22.200000px;}
.v6{vertical-align:-14.592000px;}
.va{vertical-align:-13.164000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v7{vertical-align:24.420000px;}
.v4{vertical-align:26.616000px;}
.v1{vertical-align:37.740000px;}
.v8{vertical-align:40.194000px;}
.v9{vertical-align:56.004000px;}
.ls41{letter-spacing:-7.200000px;}
.ls5c{letter-spacing:-6.732000px;}
.ls35{letter-spacing:-6.600000px;}
.ls36{letter-spacing:-4.818000px;}
.ls15{letter-spacing:-3.096000px;}
.ls43{letter-spacing:-2.736000px;}
.ls4d{letter-spacing:-2.574000px;}
.ls48{letter-spacing:-2.223000px;}
.ls3c{letter-spacing:-1.224000px;}
.ls50{letter-spacing:-0.990000px;}
.ls3d{letter-spacing:-0.792000px;}
.ls58{letter-spacing:-0.726000px;}
.ls3b{letter-spacing:-0.720000px;}
.ls59{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.627000px;}
.ls4f{letter-spacing:-0.594000px;}
.ls44{letter-spacing:-0.576000px;}
.ls5a{letter-spacing:-0.462000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.396000px;}
.ls11{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.330000px;}
.ls27{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.285000px;}
.ls10{letter-spacing:-0.264000px;}
.ls49{letter-spacing:-0.228000px;}
.ls13{letter-spacing:-0.216000px;}
.ls65{letter-spacing:-0.198000px;}
.ls16{letter-spacing:-0.144000px;}
.ls5b{letter-spacing:-0.132000px;}
.ls1b{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.066000px;}
.ls42{letter-spacing:-0.057000px;}
.ls7{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.010200px;}
.lsd{letter-spacing:0.072000px;}
.ls63{letter-spacing:0.120000px;}
.ls62{letter-spacing:0.132000px;}
.lsc{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.194400px;}
.ls4{letter-spacing:0.198000px;}
.ls2f{letter-spacing:0.201600px;}
.ls14{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.264000px;}
.ls30{letter-spacing:0.273600px;}
.ls39{letter-spacing:0.285000px;}
.ls1c{letter-spacing:0.288000px;}
.ls69{letter-spacing:0.330000px;}
.ls19{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.396000px;}
.ls20{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.439200px;}
.ls67{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.529200px;}
.ls34{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.594000px;}
.ls18{letter-spacing:0.648000px;}
.ls5d{letter-spacing:0.660000px;}
.ls2b{letter-spacing:0.662400px;}
.ls22{letter-spacing:0.720000px;}
.ls57{letter-spacing:0.726000px;}
.ls2c{letter-spacing:0.756000px;}
.ls2a{letter-spacing:0.777600px;}
.ls1d{letter-spacing:0.792000px;}
.ls6a{letter-spacing:0.858000px;}
.ls1e{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.936000px;}
.ls6c{letter-spacing:0.990000px;}
.ls37{letter-spacing:1.008000px;}
.ls6b{letter-spacing:1.056000px;}
.ls28{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.368000px;}
.ls68{letter-spacing:1.386000px;}
.ls32{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.656000px;}
.ls3a{letter-spacing:2.469600px;}
.ls31{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls3f{letter-spacing:4.377600px;}
.ls3e{letter-spacing:4.392000px;}
.ls64{letter-spacing:4.626600px;}
.ls45{letter-spacing:5.040000px;}
.ls23{letter-spacing:5.400000px;}
.lse{letter-spacing:5.709600px;}
.ls38{letter-spacing:5.961600px;}
.ls3{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls5{letter-spacing:7.200000px;}
.ls12{letter-spacing:8.352000px;}
.ls40{letter-spacing:8.568000px;}
.ls25{letter-spacing:9.720000px;}
.ls2{letter-spacing:10.200000px;}
.ls52{letter-spacing:10.230000px;}
.ls5f{letter-spacing:10.296000px;}
.ls53{letter-spacing:10.494000px;}
.ls55{letter-spacing:10.626000px;}
.ls5e{letter-spacing:10.758000px;}
.ls54{letter-spacing:10.824000px;}
.ls66{letter-spacing:10.890000px;}
.ls4c{letter-spacing:10.956000px;}
.ls56{letter-spacing:11.682000px;}
.ls51{letter-spacing:12.078000px;}
.ls60{letter-spacing:12.312000px;}
.ls61{letter-spacing:19.800000px;}
.ls46{letter-spacing:49.896000px;}
.ls47{letter-spacing:64.800000px;}
.ls33{letter-spacing:716.163000px;}
.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;}
}
.ws57{word-spacing:-64.800000px;}
.ws56{word-spacing:-49.896000px;}
.ws70{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws5a{word-spacing:-22.860000px;}
.ws32{word-spacing:-21.672000px;}
.ws33{word-spacing:-20.952000px;}
.ws2a{word-spacing:-20.592000px;}
.ws19{word-spacing:-20.232000px;}
.ws22{word-spacing:-19.872000px;}
.ws7b{word-spacing:-19.800000px;}
.ws31{word-spacing:-19.080000px;}
.ws3d{word-spacing:-18.546000px;}
.ws34{word-spacing:-18.504000px;}
.ws6e{word-spacing:-18.348000px;}
.ws41{word-spacing:-18.288000px;}
.ws40{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.856000px;}
.ws20{word-spacing:-17.784000px;}
.ws49{word-spacing:-17.496000px;}
.ws21{word-spacing:-17.424000px;}
.ws0{word-spacing:-16.860000px;}
.ws6f{word-spacing:-16.500000px;}
.ws2b{word-spacing:-16.302000px;}
.ws53{word-spacing:-16.017000px;}
.ws71{word-spacing:-14.820000px;}
.ws4b{word-spacing:-14.079000px;}
.ws5{word-spacing:-12.750000px;}
.ws1a{word-spacing:-12.139200px;}
.ws61{word-spacing:-12.078000px;}
.ws6b{word-spacing:-11.682000px;}
.ws60{word-spacing:-10.956000px;}
.ws74{word-spacing:-10.890000px;}
.ws67{word-spacing:-10.824000px;}
.ws72{word-spacing:-10.758000px;}
.ws36{word-spacing:-10.670400px;}
.ws6a{word-spacing:-10.626000px;}
.ws65{word-spacing:-10.494000px;}
.ws75{word-spacing:-10.296000px;}
.ws62{word-spacing:-10.230000px;}
.ws6{word-spacing:-10.200000px;}
.ws2c{word-spacing:-9.781200px;}
.ws7a{word-spacing:-9.000000px;}
.ws12{word-spacing:-8.352000px;}
.ws8{word-spacing:-7.200000px;}
.ws4{word-spacing:-6.600000px;}
.ws7{word-spacing:-6.000000px;}
.ws29{word-spacing:-5.400000px;}
.ws55{word-spacing:-5.040000px;}
.ws2{word-spacing:-4.200000px;}
.ws30{word-spacing:-1.656000px;}
.ws37{word-spacing:-1.440000px;}
.ws78{word-spacing:-1.386000px;}
.ws3b{word-spacing:-1.368000px;}
.ws38{word-spacing:-1.296000px;}
.ws7e{word-spacing:-1.056000px;}
.ws44{word-spacing:-1.008000px;}
.ws7f{word-spacing:-0.990000px;}
.ws28{word-spacing:-0.936000px;}
.ws25{word-spacing:-0.864000px;}
.ws7d{word-spacing:-0.858000px;}
.ws24{word-spacing:-0.792000px;}
.ws6c{word-spacing:-0.726000px;}
.ws27{word-spacing:-0.720000px;}
.ws6d{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.648000px;}
.wsb{word-spacing:-0.594000px;}
.ws43{word-spacing:-0.576000px;}
.ws1c{word-spacing:-0.504000px;}
.ws79{word-spacing:-0.462000px;}
.ws26{word-spacing:-0.432000px;}
.ws5e{word-spacing:-0.396000px;}
.ws1f{word-spacing:-0.360000px;}
.ws7c{word-spacing:-0.330000px;}
.ws23{word-spacing:-0.288000px;}
.ws45{word-spacing:-0.285000px;}
.wse{word-spacing:-0.264000px;}
.ws14{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.198000px;}
.ws15{word-spacing:-0.144000px;}
.ws76{word-spacing:-0.132000px;}
.ws77{word-spacing:-0.120000px;}
.ws16{word-spacing:-0.072000px;}
.ws4a{word-spacing:-0.043200px;}
.ws3{word-spacing:0.000000px;}
.ws51{word-spacing:0.057000px;}
.wsf{word-spacing:0.066000px;}
.ws1d{word-spacing:0.072000px;}
.ws68{word-spacing:0.132000px;}
.ws18{word-spacing:0.144000px;}
.ws73{word-spacing:0.198000px;}
.ws13{word-spacing:0.216000px;}
.ws59{word-spacing:0.228000px;}
.ws10{word-spacing:0.264000px;}
.wsd{word-spacing:0.285000px;}
.ws2d{word-spacing:0.288000px;}
.ws5c{word-spacing:0.330000px;}
.ws11{word-spacing:0.360000px;}
.ws9{word-spacing:0.396000px;}
.ws1b{word-spacing:0.432000px;}
.ws66{word-spacing:0.462000px;}
.ws54{word-spacing:0.576000px;}
.ws5d{word-spacing:0.594000px;}
.wsc{word-spacing:0.627000px;}
.ws64{word-spacing:0.660000px;}
.ws46{word-spacing:0.720000px;}
.ws63{word-spacing:0.726000px;}
.ws48{word-spacing:0.792000px;}
.ws5f{word-spacing:0.990000px;}
.ws47{word-spacing:1.224000px;}
.ws58{word-spacing:2.223000px;}
.ws5b{word-spacing:2.574000px;}
.ws52{word-spacing:2.736000px;}
.ws17{word-spacing:3.096000px;}
.ws4f{word-spacing:3.960000px;}
.ws2f{word-spacing:4.392000px;}
.ws4c{word-spacing:4.464000px;}
.ws39{word-spacing:4.752000px;}
.ws4e{word-spacing:5.040000px;}
.ws2e{word-spacing:5.328000px;}
.ws3a{word-spacing:6.336000px;}
.ws42{word-spacing:6.600000px;}
.ws69{word-spacing:6.732000px;}
.ws4d{word-spacing:7.200000px;}
.ws50{word-spacing:8.856000px;}
.ws3c{word-spacing:8.928000px;}
.ws3f{word-spacing:76.005600px;}
.ws3e{word-spacing:91.278000px;}
._1f{margin-left:-49.896000px;}
._1a{margin-left:-15.436200px;}
._9{margin-left:-12.770400px;}
._27{margin-left:-11.470200px;}
._a{margin-left:-10.220400px;}
._b{margin-left:-9.078000px;}
._14{margin-left:-7.975800px;}
._3{margin-left:-6.738600px;}
._2{margin-left:-5.583600px;}
._0{margin-left:-3.565800px;}
._6{margin-left:-1.658400px;}
._7{width:1.873200px;}
._1{width:3.452400px;}
._5{width:4.989600px;}
._10{width:6.003000px;}
._d{width:7.242000px;}
._e{width:8.865000px;}
._f{width:10.182600px;}
._4{width:11.259600px;}
._12{width:12.396000px;}
._13{width:13.879800px;}
._24{width:15.840000px;}
._c{width:17.340000px;}
._8{width:18.992400px;}
._26{width:20.022000px;}
._25{width:22.044000px;}
._1c{width:38.952000px;}
._1e{width:49.896000px;}
._11{width:56.923200px;}
._22{width:64.800000px;}
._16{width:109.824000px;}
._19{width:153.483000px;}
._17{width:154.869000px;}
._15{width:156.541800px;}
._1d{width:248.518800px;}
._20{width:269.686800px;}
._18{width:293.118600px;}
._21{width:299.062800px;}
._1b{width:498.935400px;}
._23{width:943.704000px;}
.fc4{color:rgb(5,7,20);}
.fc3{color:rgb(47,47,157);}
.fc2{color:rgb(129,129,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:61.200000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:76.339350px;}
.y1{bottom:78.334500px;}
.y16c{bottom:140.304450px;}
.y14e{bottom:140.307450px;}
.y12b{bottom:140.308950px;}
.y22{bottom:140.311950px;}
.ydd{bottom:140.313450px;}
.y66{bottom:140.314950px;}
.y224{bottom:141.061950px;}
.y18c{bottom:141.610350px;}
.yd1{bottom:142.134000px;}
.y9d{bottom:144.023550px;}
.yae{bottom:144.114600px;}
.y8d{bottom:144.126150px;}
.y1a7{bottom:144.295500px;}
.yf2{bottom:144.397050px;}
.y1da{bottom:144.523800px;}
.y1ce{bottom:144.928800px;}
.y44{bottom:146.207850px;}
.y1ff{bottom:156.511800px;}
.y16b{bottom:156.805950px;}
.y14d{bottom:156.808950px;}
.y12a{bottom:156.810450px;}
.y65{bottom:156.811950px;}
.y21{bottom:156.813450px;}
.y223{bottom:161.769450px;}
.ydc{bottom:162.364950px;}
.y18b{bottom:163.210350px;}
.y1a6{bottom:163.798500px;}
.yd0{bottom:164.490000px;}
.y1d9{bottom:164.620800px;}
.y1cd{bottom:165.025800px;}
.y9c{bottom:165.317550px;}
.yad{bottom:165.408600px;}
.y8c{bottom:165.726150px;}
.yf1{bottom:165.997050px;}
.y43{bottom:168.257850px;}
.y16a{bottom:173.307450px;}
.y14c{bottom:173.310450px;}
.y129{bottom:173.311950px;}
.y64{bottom:173.313450px;}
.y1fe{bottom:176.311800px;}
.y20{bottom:178.864950px;}
.y222{bottom:182.476950px;}
.y1d8{bottom:184.717800px;}
.y18a{bottom:184.810350px;}
.y1cc{bottom:185.122800px;}
.y9b{bottom:186.611550px;}
.yac{bottom:186.702600px;}
.ycf{bottom:186.846000px;}
.yf0{bottom:187.291050px;}
.y8b{bottom:187.326150px;}
.y169{bottom:189.808950px;}
.y14b{bottom:189.811950px;}
.y128{bottom:189.813450px;}
.y63{bottom:189.814950px;}
.y42{bottom:190.307850px;}
.y1a5{bottom:191.802450px;}
.y221{bottom:203.184450px;}
.y1d7{bottom:204.814800px;}
.y1cb{bottom:205.219800px;}
.y168{bottom:206.310450px;}
.y14a{bottom:206.313450px;}
.y62{bottom:206.314950px;}
.y189{bottom:206.410350px;}
.y9a{bottom:207.905550px;}
.yab{bottom:207.996600px;}
.yef{bottom:208.585050px;}
.y8a{bottom:208.926150px;}
.yce{bottom:209.202000px;}
.ydb{bottom:210.490050px;}
.y127{bottom:211.864950px;}
.y41{bottom:212.357850px;}
.y1fd{bottom:217.891800px;}
.y126{bottom:222.811950px;}
.y220{bottom:223.891950px;}
.y1d6{bottom:224.911800px;}
.y85{bottom:225.210300px;}
.y1f{bottom:225.285000px;}
.y1ca{bottom:225.316800px;}
.y188{bottom:228.010350px;}
.y61{bottom:228.364950px;}
.y99{bottom:229.199550px;}
.yaa{bottom:229.290600px;}
.yee{bottom:229.879050px;}
.ycd{bottom:231.558000px;}
.yda{bottom:231.784050px;}
.y40{bottom:234.407850px;}
.y1fc{bottom:238.137300px;}
.y1a4{bottom:239.279400px;}
.y125{bottom:239.313450px;}
.y21f{bottom:244.599450px;}
.y1d5{bottom:245.011800px;}
.y1e{bottom:245.085000px;}
.y1c9{bottom:245.413800px;}
.y84{bottom:246.504300px;}
.y187{bottom:249.610350px;}
.y98{bottom:250.493550px;}
.ya9{bottom:250.584600px;}
.yed{bottom:251.173050px;}
.y89{bottom:252.126150px;}
.yd9{bottom:253.834050px;}
.ycc{bottom:253.914000px;}
.y3f{bottom:256.457850px;}
.y1fb{bottom:258.382800px;}
.y1a3{bottom:258.782400px;}
.y124{bottom:261.364950px;}
.y1d{bottom:264.885000px;}
.y21e{bottom:265.306950px;}
.y1c8{bottom:265.510800px;}
.y83{bottom:267.798300px;}
.y186{bottom:271.210350px;}
.y97{bottom:271.787550px;}
.ya8{bottom:271.878600px;}
.y123{bottom:272.313450px;}
.yec{bottom:272.467050px;}
.y149{bottom:273.684300px;}
.y88{bottom:273.726150px;}
.y60{bottom:275.530350px;}
.yd8{bottom:275.884050px;}
.ycb{bottom:276.270000px;}
.y1a2{bottom:278.285400px;}
.y3e{bottom:278.507850px;}
.y1fa{bottom:278.628300px;}
.y1c{bottom:284.685000px;}
.y1c7{bottom:285.607800px;}
.y21d{bottom:286.014450px;}
.y1d4{bottom:287.011800px;}
.y82{bottom:289.092300px;}
.y185{bottom:292.810350px;}
.y96{bottom:293.081550px;}
.ya7{bottom:293.172600px;}
.yeb{bottom:293.761050px;}
.y122{bottom:294.364950px;}
.y148{bottom:295.140300px;}
.y87{bottom:295.326150px;}
.y5f{bottom:297.724350px;}
.y1a1{bottom:297.788400px;}
.yd7{bottom:297.934050px;}
.yca{bottom:298.626000px;}
.y1f9{bottom:298.873800px;}
.y3d{bottom:300.557850px;}
.y1c6{bottom:305.704800px;}
.y21c{bottom:306.721950px;}
.y167{bottom:310.140300px;}
.y81{bottom:310.386300px;}
.y1b{bottom:312.988950px;}
.y95{bottom:314.375550px;}
.y184{bottom:314.410350px;}
.ya6{bottom:314.466600px;}
.yea{bottom:315.055050px;}
.y147{bottom:316.596300px;}
.y86{bottom:316.926150px;}
.y1a0{bottom:317.291400px;}
.y1f8{bottom:319.119300px;}
.y5e{bottom:319.918350px;}
.yc9{bottom:320.982000px;}
.y3c{bottom:322.607850px;}
.y1c5{bottom:325.801800px;}
.y21b{bottom:327.429450px;}
.y1d3{bottom:329.005800px;}
.y166{bottom:331.434300px;}
.y80{bottom:331.680300px;}
.y94{bottom:335.669550px;}
.ya5{bottom:335.760600px;}
.y183{bottom:336.010350px;}
.ye9{bottom:336.349050px;}
.y19f{bottom:336.794400px;}
.y146{bottom:338.052300px;}
.y1f7{bottom:339.364800px;}
.yd6{bottom:342.034050px;}
.y5d{bottom:342.112350px;}
.y121{bottom:342.150300px;}
.yc8{bottom:343.338000px;}
.y3b{bottom:344.657850px;}
.y1c4{bottom:345.898800px;}
.y21a{bottom:348.136950px;}
.y1d2{bottom:350.911800px;}
.y165{bottom:352.728300px;}
.y7f{bottom:352.974300px;}
.y1a{bottom:356.188950px;}
.y19e{bottom:356.297400px;}
.y93{bottom:356.963550px;}
.ya4{bottom:357.054600px;}
.y182{bottom:357.610350px;}
.ye8{bottom:357.643050px;}
.y145{bottom:359.508300px;}
.y1f6{bottom:359.610300px;}
.y120{bottom:363.750300px;}
.yd5{bottom:364.084050px;}
.y5c{bottom:364.306350px;}
.yc7{bottom:365.694000px;}
.y1c3{bottom:365.995800px;}
.y3a{bottom:366.707850px;}
.y219{bottom:368.844450px;}
.y1d1{bottom:372.811800px;}
.y164{bottom:374.022300px;}
.y7e{bottom:374.268300px;}
.y8e{bottom:375.325350px;}
.y19d{bottom:375.800400px;}
.y19{bottom:375.988950px;}
.y92{bottom:378.257550px;}
.ya3{bottom:378.348600px;}
.ye7{bottom:378.937050px;}
.y181{bottom:379.210350px;}
.y1f5{bottom:379.855800px;}
.y144{bottom:380.964300px;}
.y11f{bottom:385.044300px;}
.y1c2{bottom:386.092800px;}
.yd4{bottom:386.134050px;}
.y5b{bottom:386.500350px;}
.yc6{bottom:388.050000px;}
.y39{bottom:388.757850px;}
.y218{bottom:389.551950px;}
.y19c{bottom:395.303400px;}
.y163{bottom:395.316300px;}
.y7d{bottom:395.562300px;}
.y18{bottom:395.788950px;}
.y91{bottom:399.551550px;}
.ya2{bottom:399.642600px;}
.y1f4{bottom:400.101300px;}
.ye6{bottom:400.231050px;}
.y180{bottom:400.810350px;}
.y1c1{bottom:406.189800px;}
.y11e{bottom:406.338300px;}
.yd3{bottom:408.184050px;}
.y5a{bottom:408.694350px;}
.y217{bottom:410.259450px;}
.yc5{bottom:410.406000px;}
.y38{bottom:410.807850px;}
.y143{bottom:412.770300px;}
.y19b{bottom:414.785400px;}
.y17{bottom:415.588950px;}
.y162{bottom:416.610300px;}
.y7c{bottom:416.856300px;}
.y1f3{bottom:420.346800px;}
.y1d0{bottom:420.812550px;}
.y90{bottom:420.845550px;}
.ya1{bottom:420.936600px;}
.ye5{bottom:421.525050px;}
.y17f{bottom:422.410350px;}
.y1c0{bottom:426.286800px;}
.y11d{bottom:427.632300px;}
.yd2{bottom:430.234050px;}
.y59{bottom:430.888350px;}
.y216{bottom:430.966950px;}
.yc4{bottom:432.762000px;}
.y37{bottom:432.857850px;}
.y142{bottom:434.226300px;}
.y19a{bottom:434.288400px;}
.y16{bottom:435.388950px;}
.y161{bottom:437.904300px;}
.y7b{bottom:438.150300px;}
.y1cf{bottom:438.211800px;}
.y1f2{bottom:440.592300px;}
.y8f{bottom:442.139550px;}
.ya0{bottom:442.230600px;}
.ye4{bottom:442.819050px;}
.y17e{bottom:444.010350px;}
.y1bf{bottom:446.383800px;}
.y11c{bottom:448.926300px;}
.y215{bottom:451.674450px;}
.y58{bottom:453.082350px;}
.y199{bottom:453.791400px;}
.y36{bottom:454.907850px;}
.yc3{bottom:455.118000px;}
.y15{bottom:455.188950px;}
.y141{bottom:455.682300px;}
.y160{bottom:459.198300px;}
.y7a{bottom:459.444300px;}
.y1f1{bottom:460.837800px;}
.y9f{bottom:463.524600px;}
.ye3{bottom:464.113050px;}
.y17d{bottom:465.610350px;}
.y1be{bottom:466.480800px;}
.y11b{bottom:470.220300px;}
.y214{bottom:472.381950px;}
.y198{bottom:473.294400px;}
.y14{bottom:474.988950px;}
.y57{bottom:475.276350px;}
.y35{bottom:476.957850px;}
.y140{bottom:477.138300px;}
.yc2{bottom:477.474000px;}
.y15f{bottom:480.492300px;}
.y79{bottom:480.738300px;}
.y1f0{bottom:481.083300px;}
.ye2{bottom:485.407050px;}
.y1bd{bottom:486.577800px;}
.yde{bottom:487.617000px;}
.y11a{bottom:491.562300px;}
.y197{bottom:492.797400px;}
.y213{bottom:493.089450px;}
.y13{bottom:494.788950px;}
.y9e{bottom:494.979600px;}
.y17c{bottom:495.714300px;}
.y56{bottom:497.470350px;}
.y13f{bottom:498.594300px;}
.y34{bottom:499.007850px;}
.yc1{bottom:499.830000px;}
.y1ef{bottom:501.328800px;}
.y15e{bottom:501.786300px;}
.y78{bottom:502.032300px;}
.y1bc{bottom:506.674800px;}
.ye1{bottom:506.701050px;}
.y196{bottom:512.300400px;}
.y119{bottom:512.856300px;}
.y212{bottom:513.796950px;}
.y12{bottom:514.588950px;}
.yaf{bottom:518.598150px;}
.y55{bottom:519.664350px;}
.y13e{bottom:520.050300px;}
.y33{bottom:521.057850px;}
.y1ee{bottom:521.574300px;}
.yc0{bottom:522.186000px;}
.y15d{bottom:523.080300px;}
.y77{bottom:523.326300px;}
.y1bb{bottom:526.771800px;}
.ye0{bottom:527.995050px;}
.y195{bottom:531.803400px;}
.y118{bottom:534.150300px;}
.y11{bottom:534.388950px;}
.y211{bottom:534.504450px;}
.y13d{bottom:541.506300px;}
.y1ed{bottom:541.819800px;}
.y54{bottom:541.858350px;}
.y32{bottom:543.107850px;}
.y15c{bottom:544.374300px;}
.ybf{bottom:544.542000px;}
.y76{bottom:544.620300px;}
.y1ba{bottom:546.868800px;}
.ydf{bottom:549.289050px;}
.y194{bottom:551.297400px;}
.y10{bottom:554.188950px;}
.y210{bottom:555.211950px;}
.y17b{bottom:560.514300px;}
.y1ec{bottom:562.065300px;}
.y13c{bottom:562.962300px;}
.y53{bottom:564.052350px;}
.y31{bottom:565.157850px;}
.y117{bottom:565.650300px;}
.y15b{bottom:565.668300px;}
.y75{bottom:565.920300px;}
.y1b9{bottom:566.965800px;}
.y193{bottom:570.800400px;}
.yf{bottom:573.988950px;}
.y20f{bottom:575.919450px;}
.y17a{bottom:582.114300px;}
.y1eb{bottom:582.310800px;}
.y13b{bottom:584.418300px;}
.y52{bottom:586.246350px;}
.y116{bottom:586.944300px;}
.y15a{bottom:586.962300px;}
.y1b8{bottom:587.062800px;}
.y30{bottom:587.207850px;}
.y74{bottom:587.262300px;}
.y192{bottom:590.303400px;}
.ye{bottom:593.788950px;}
.y20e{bottom:596.626950px;}
.ybe{bottom:596.995950px;}
.y1ea{bottom:602.556300px;}
.y179{bottom:603.714300px;}
.y13a{bottom:605.874300px;}
.y1b7{bottom:607.159800px;}
.y115{bottom:608.238300px;}
.y159{bottom:608.256300px;}
.y51{bottom:608.440350px;}
.y73{bottom:608.556300px;}
.y2f{bottom:609.257850px;}
.y191{bottom:609.806400px;}
.y107{bottom:611.963100px;}
.yd{bottom:613.588950px;}
.y20d{bottom:617.334450px;}
.y1e9{bottom:622.801800px;}
.y178{bottom:625.314300px;}
.y1b6{bottom:627.256800px;}
.y139{bottom:627.330300px;}
.ybd{bottom:627.985350px;}
.y114{bottom:629.532300px;}
.y158{bottom:629.550300px;}
.y72{bottom:629.850300px;}
.y50{bottom:630.634350px;}
.y190{bottom:637.810350px;}
.y20c{bottom:638.041950px;}
.y2e{bottom:639.811800px;}
.yc{bottom:641.892900px;}
.y106{bottom:643.000500px;}
.y1e8{bottom:643.195800px;}
.y177{bottom:646.914300px;}
.y1b5{bottom:647.353800px;}
.y138{bottom:648.786300px;}
.y113{bottom:650.826300px;}
.y157{bottom:650.844300px;}
.y71{bottom:651.144300px;}
.y4f{bottom:652.828350px;}
.ybc{bottom:655.969350px;}
.y20b{bottom:658.749450px;}
.y105{bottom:663.097500px;}
.y1e7{bottom:663.589800px;}
.y1b4{bottom:667.450800px;}
.y176{bottom:668.514300px;}
.y137{bottom:670.242300px;}
.y112{bottom:672.120300px;}
.y156{bottom:672.138300px;}
.y70{bottom:672.438300px;}
.y4e{bottom:675.022350px;}
.y20a{bottom:679.456950px;}
.yb8{bottom:680.003850px;}
.y104{bottom:683.194500px;}
.ybb{bottom:683.953350px;}
.y1e6{bottom:683.983800px;}
.y1b3{bottom:687.547800px;}
.y175{bottom:690.114300px;}
.y136{bottom:691.698300px;}
.y100{bottom:693.243000px;}
.y155{bottom:693.432300px;}
.y111{bottom:693.462300px;}
.y18f{bottom:693.480300px;}
.yb{bottom:693.492900px;}
.y6f{bottom:693.732300px;}
.yba{bottom:694.001850px;}
.y4d{bottom:697.216350px;}
.y209{bottom:700.164450px;}
.y103{bottom:703.291500px;}
.y1e5{bottom:704.377800px;}
.y2d{bottom:706.011300px;}
.y1b2{bottom:707.644800px;}
.y174{bottom:711.714300px;}
.y135{bottom:713.154300px;}
.ya{bottom:713.292900px;}
.y22d{bottom:714.511800px;}
.y154{bottom:714.726300px;}
.y110{bottom:714.756300px;}
.y18e{bottom:714.774300px;}
.y4c{bottom:719.416350px;}
.y208{bottom:720.871950px;}
.y102{bottom:723.388500px;}
.y1e4{bottom:724.771800px;}
.y2c{bottom:726.256800px;}
.y1b1{bottom:727.741800px;}
.yb9{bottom:732.034350px;}
.y22c{bottom:732.511800px;}
.y173{bottom:733.314300px;}
.y134{bottom:734.610300px;}
.y153{bottom:736.020300px;}
.y10f{bottom:736.050300px;}
.y18d{bottom:736.068300px;}
.y6e{bottom:736.338300px;}
.y207{bottom:741.579450px;}
.y4b{bottom:741.610350px;}
.y101{bottom:743.485500px;}
.y1e3{bottom:745.165800px;}
.y2b{bottom:746.502300px;}
.y1b0{bottom:747.838800px;}
.y22b{bottom:750.511800px;}
.y9{bottom:754.692900px;}
.y172{bottom:754.914300px;}
.y133{bottom:756.066300px;}
.y10e{bottom:757.344300px;}
.y152{bottom:757.362300px;}
.y6d{bottom:757.632300px;}
.yb7{bottom:760.012350px;}
.y206{bottom:762.286950px;}
.y1e2{bottom:765.559800px;}
.y2a{bottom:766.747800px;}
.y1af{bottom:767.935800px;}
.y22a{bottom:768.511800px;}
.yfa{bottom:771.453000px;}
.y4a{bottom:772.314300px;}
.yb6{bottom:773.995350px;}
.y171{bottom:776.514300px;}
.y132{bottom:777.522300px;}
.y10d{bottom:778.638300px;}
.y151{bottom:778.656300px;}
.y6c{bottom:778.926300px;}
.y205{bottom:782.994450px;}
.y8{bottom:785.292900px;}
.y1e1{bottom:785.953800px;}
.y29{bottom:786.993300px;}
.y1ae{bottom:788.032800px;}
.yff{bottom:791.566500px;}
.y131{bottom:798.978300px;}
.y10c{bottom:799.932300px;}
.y150{bottom:799.950300px;}
.y6b{bottom:800.220300px;}
.y204{bottom:803.701950px;}
.y1e0{bottom:806.347800px;}
.y28{bottom:807.238800px;}
.y229{bottom:808.111800px;}
.y1ad{bottom:808.129800px;}
.yf9{bottom:811.647000px;}
.yfe{bottom:811.663500px;}
.yb5{bottom:815.971350px;}
.y170{bottom:819.714300px;}
.y130{bottom:820.434300px;}
.y14f{bottom:821.244300px;}
.yf5{bottom:821.695500px;}
.y203{bottom:824.409450px;}
.yb4{bottom:826.019850px;}
.y1df{bottom:826.741800px;}
.y27{bottom:827.484300px;}
.y228{bottom:827.911800px;}
.y1ac{bottom:828.226800px;}
.yf8{bottom:831.744000px;}
.yfd{bottom:831.760500px;}
.y49{bottom:838.938300px;}
.y7{bottom:840.556800px;}
.y16f{bottom:841.314300px;}
.y12f{bottom:841.890300px;}
.y10b{bottom:842.538300px;}
.y6a{bottom:842.664300px;}
.y1de{bottom:847.135800px;}
.y26{bottom:847.729800px;}
.y1ab{bottom:848.323800px;}
.yf7{bottom:851.841000px;}
.yfc{bottom:851.857500px;}
.y6{bottom:858.556800px;}
.y48{bottom:861.132300px;}
.y16e{bottom:862.914300px;}
.y12e{bottom:863.346300px;}
.y69{bottom:863.814300px;}
.y10a{bottom:863.832300px;}
.yb3{bottom:864.052350px;}
.y202{bottom:866.709450px;}
.y1dd{bottom:867.529800px;}
.y25{bottom:867.975300px;}
.yb0{bottom:867.998850px;}
.y1aa{bottom:868.420800px;}
.y227{bottom:869.311800px;}
.yf6{bottom:871.938000px;}
.yfb{bottom:871.954500px;}
.y5{bottom:876.556800px;}
.y47{bottom:883.326300px;}
.y16d{bottom:884.514300px;}
.y12d{bottom:884.802300px;}
.y68{bottom:884.964300px;}
.y109{bottom:885.126300px;}
.y1dc{bottom:887.923800px;}
.y24{bottom:888.220800px;}
.y1a9{bottom:888.517800px;}
.y226{bottom:889.111800px;}
.yb2{bottom:892.036350px;}
.yf4{bottom:899.922000px;}
.y46{bottom:905.520300px;}
.y67{bottom:906.114300px;}
.y12c{bottom:906.258300px;}
.y108{bottom:906.420300px;}
.y201{bottom:908.109300px;}
.y1db{bottom:908.317800px;}
.y23{bottom:908.466300px;}
.y1a8{bottom:908.614800px;}
.y225{bottom:908.911800px;}
.yf3{bottom:909.970500px;}
.y4{bottom:910.711800px;}
.yb1{bottom:920.020350px;}
.y45{bottom:927.714300px;}
.y3{bottom:928.711800px;}
.y200{bottom:929.709450px;}
.h8{height:30.568359px;}
.ha{height:35.663086px;}
.h2{height:40.757812px;}
.h15{height:46.954102px;}
.h9{height:48.399902px;}
.h3{height:50.947266px;}
.hc{height:50.959266px;}
.h11{height:52.592461px;}
.h14{height:52.628461px;}
.h4{height:56.041992px;}
.h19{height:56.077992px;}
.h1a{height:56.125992px;}
.he{height:58.045195px;}
.h10{height:58.045795px;}
.h7{height:61.136719px;}
.hf{height:62.962031px;}
.h16{height:63.130031px;}
.h17{height:63.178031px;}
.hb{height:63.298031px;}
.hd{height:63.322031px;}
.h18{height:64.042031px;}
.h5{height:86.610352px;}
.h6{height:89.706211px;}
.h12{height:96.235992px;}
.h13{height:112.045992px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x5{left:97.780950px;}
.x8{left:106.082850px;}
.x7{left:119.017350px;}
.x15{left:140.307150px;}
.x6{left:143.170350px;}
.x13{left:150.670350px;}
.xf{left:169.267200px;}
.xa{left:177.457650px;}
.x9{left:198.264150px;}
.xd{left:201.442200px;}
.x4{left:238.391100px;}
.x18{left:259.650900px;}
.xb{left:291.010650px;}
.x1{left:301.296150px;}
.xc{left:323.025300px;}
.x10{left:401.059200px;}
.xe{left:402.428700px;}
.x12{left:453.562200px;}
.x11{left:463.709700px;}
.x17{left:509.980350px;}
.x16{left:518.943600px;}
.x14{left:602.539350px;}
.x2{left:610.039350px;}
@media print{
.v5{vertical-align:-23.680000pt;}
.v2{vertical-align:-19.733333pt;}
.v6{vertical-align:-12.970667pt;}
.va{vertical-align:-11.701333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v7{vertical-align:21.706667pt;}
.v4{vertical-align:23.658667pt;}
.v1{vertical-align:33.546667pt;}
.v8{vertical-align:35.728000pt;}
.v9{vertical-align:49.781333pt;}
.ls41{letter-spacing:-6.400000pt;}
.ls5c{letter-spacing:-5.984000pt;}
.ls35{letter-spacing:-5.866667pt;}
.ls36{letter-spacing:-4.282667pt;}
.ls15{letter-spacing:-2.752000pt;}
.ls43{letter-spacing:-2.432000pt;}
.ls4d{letter-spacing:-2.288000pt;}
.ls48{letter-spacing:-1.976000pt;}
.ls3c{letter-spacing:-1.088000pt;}
.ls50{letter-spacing:-0.880000pt;}
.ls3d{letter-spacing:-0.704000pt;}
.ls58{letter-spacing:-0.645333pt;}
.ls3b{letter-spacing:-0.640000pt;}
.ls59{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.557333pt;}
.ls4f{letter-spacing:-0.528000pt;}
.ls44{letter-spacing:-0.512000pt;}
.ls5a{letter-spacing:-0.410667pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.352000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.293333pt;}
.ls27{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.253333pt;}
.ls10{letter-spacing:-0.234667pt;}
.ls49{letter-spacing:-0.202667pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls65{letter-spacing:-0.176000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls5b{letter-spacing:-0.117333pt;}
.ls1b{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls42{letter-spacing:-0.050667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.009067pt;}
.lsd{letter-spacing:0.064000pt;}
.ls63{letter-spacing:0.106667pt;}
.ls62{letter-spacing:0.117333pt;}
.lsc{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.172800pt;}
.ls4{letter-spacing:0.176000pt;}
.ls2f{letter-spacing:0.179200pt;}
.ls14{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.234667pt;}
.ls30{letter-spacing:0.243200pt;}
.ls39{letter-spacing:0.253333pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls69{letter-spacing:0.293333pt;}
.ls19{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.352000pt;}
.ls20{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.390400pt;}
.ls67{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.470400pt;}
.ls34{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.528000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls5d{letter-spacing:0.586667pt;}
.ls2b{letter-spacing:0.588800pt;}
.ls22{letter-spacing:0.640000pt;}
.ls57{letter-spacing:0.645333pt;}
.ls2c{letter-spacing:0.672000pt;}
.ls2a{letter-spacing:0.691200pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls6a{letter-spacing:0.762667pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.832000pt;}
.ls6c{letter-spacing:0.880000pt;}
.ls37{letter-spacing:0.896000pt;}
.ls6b{letter-spacing:0.938667pt;}
.ls28{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.216000pt;}
.ls68{letter-spacing:1.232000pt;}
.ls32{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.472000pt;}
.ls3a{letter-spacing:2.195200pt;}
.ls31{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3f{letter-spacing:3.891200pt;}
.ls3e{letter-spacing:3.904000pt;}
.ls64{letter-spacing:4.112533pt;}
.ls45{letter-spacing:4.480000pt;}
.ls23{letter-spacing:4.800000pt;}
.lse{letter-spacing:5.075200pt;}
.ls38{letter-spacing:5.299200pt;}
.ls3{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls5{letter-spacing:6.400000pt;}
.ls12{letter-spacing:7.424000pt;}
.ls40{letter-spacing:7.616000pt;}
.ls25{letter-spacing:8.640000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls52{letter-spacing:9.093333pt;}
.ls5f{letter-spacing:9.152000pt;}
.ls53{letter-spacing:9.328000pt;}
.ls55{letter-spacing:9.445333pt;}
.ls5e{letter-spacing:9.562667pt;}
.ls54{letter-spacing:9.621333pt;}
.ls66{letter-spacing:9.680000pt;}
.ls4c{letter-spacing:9.738667pt;}
.ls56{letter-spacing:10.384000pt;}
.ls51{letter-spacing:10.736000pt;}
.ls60{letter-spacing:10.944000pt;}
.ls61{letter-spacing:17.600000pt;}
.ls46{letter-spacing:44.352000pt;}
.ls47{letter-spacing:57.600000pt;}
.ls33{letter-spacing:636.589333pt;}
.ws57{word-spacing:-57.600000pt;}
.ws56{word-spacing:-44.352000pt;}
.ws70{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws5a{word-spacing:-20.320000pt;}
.ws32{word-spacing:-19.264000pt;}
.ws33{word-spacing:-18.624000pt;}
.ws2a{word-spacing:-18.304000pt;}
.ws19{word-spacing:-17.984000pt;}
.ws22{word-spacing:-17.664000pt;}
.ws7b{word-spacing:-17.600000pt;}
.ws31{word-spacing:-16.960000pt;}
.ws3d{word-spacing:-16.485333pt;}
.ws34{word-spacing:-16.448000pt;}
.ws6e{word-spacing:-16.309333pt;}
.ws41{word-spacing:-16.256000pt;}
.ws40{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.872000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws49{word-spacing:-15.552000pt;}
.ws21{word-spacing:-15.488000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws6f{word-spacing:-14.666667pt;}
.ws2b{word-spacing:-14.490667pt;}
.ws53{word-spacing:-14.237333pt;}
.ws71{word-spacing:-13.173333pt;}
.ws4b{word-spacing:-12.514667pt;}
.ws5{word-spacing:-11.333333pt;}
.ws1a{word-spacing:-10.790400pt;}
.ws61{word-spacing:-10.736000pt;}
.ws6b{word-spacing:-10.384000pt;}
.ws60{word-spacing:-9.738667pt;}
.ws74{word-spacing:-9.680000pt;}
.ws67{word-spacing:-9.621333pt;}
.ws72{word-spacing:-9.562667pt;}
.ws36{word-spacing:-9.484800pt;}
.ws6a{word-spacing:-9.445333pt;}
.ws65{word-spacing:-9.328000pt;}
.ws75{word-spacing:-9.152000pt;}
.ws62{word-spacing:-9.093333pt;}
.ws6{word-spacing:-9.066667pt;}
.ws2c{word-spacing:-8.694400pt;}
.ws7a{word-spacing:-8.000000pt;}
.ws12{word-spacing:-7.424000pt;}
.ws8{word-spacing:-6.400000pt;}
.ws4{word-spacing:-5.866667pt;}
.ws7{word-spacing:-5.333333pt;}
.ws29{word-spacing:-4.800000pt;}
.ws55{word-spacing:-4.480000pt;}
.ws2{word-spacing:-3.733333pt;}
.ws30{word-spacing:-1.472000pt;}
.ws37{word-spacing:-1.280000pt;}
.ws78{word-spacing:-1.232000pt;}
.ws3b{word-spacing:-1.216000pt;}
.ws38{word-spacing:-1.152000pt;}
.ws7e{word-spacing:-0.938667pt;}
.ws44{word-spacing:-0.896000pt;}
.ws7f{word-spacing:-0.880000pt;}
.ws28{word-spacing:-0.832000pt;}
.ws25{word-spacing:-0.768000pt;}
.ws7d{word-spacing:-0.762667pt;}
.ws24{word-spacing:-0.704000pt;}
.ws6c{word-spacing:-0.645333pt;}
.ws27{word-spacing:-0.640000pt;}
.ws6d{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.576000pt;}
.wsb{word-spacing:-0.528000pt;}
.ws43{word-spacing:-0.512000pt;}
.ws1c{word-spacing:-0.448000pt;}
.ws79{word-spacing:-0.410667pt;}
.ws26{word-spacing:-0.384000pt;}
.ws5e{word-spacing:-0.352000pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws7c{word-spacing:-0.293333pt;}
.ws23{word-spacing:-0.256000pt;}
.ws45{word-spacing:-0.253333pt;}
.wse{word-spacing:-0.234667pt;}
.ws14{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.176000pt;}
.ws15{word-spacing:-0.128000pt;}
.ws76{word-spacing:-0.117333pt;}
.ws77{word-spacing:-0.106667pt;}
.ws16{word-spacing:-0.064000pt;}
.ws4a{word-spacing:-0.038400pt;}
.ws3{word-spacing:0.000000pt;}
.ws51{word-spacing:0.050667pt;}
.wsf{word-spacing:0.058667pt;}
.ws1d{word-spacing:0.064000pt;}
.ws68{word-spacing:0.117333pt;}
.ws18{word-spacing:0.128000pt;}
.ws73{word-spacing:0.176000pt;}
.ws13{word-spacing:0.192000pt;}
.ws59{word-spacing:0.202667pt;}
.ws10{word-spacing:0.234667pt;}
.wsd{word-spacing:0.253333pt;}
.ws2d{word-spacing:0.256000pt;}
.ws5c{word-spacing:0.293333pt;}
.ws11{word-spacing:0.320000pt;}
.ws9{word-spacing:0.352000pt;}
.ws1b{word-spacing:0.384000pt;}
.ws66{word-spacing:0.410667pt;}
.ws54{word-spacing:0.512000pt;}
.ws5d{word-spacing:0.528000pt;}
.wsc{word-spacing:0.557333pt;}
.ws64{word-spacing:0.586667pt;}
.ws46{word-spacing:0.640000pt;}
.ws63{word-spacing:0.645333pt;}
.ws48{word-spacing:0.704000pt;}
.ws5f{word-spacing:0.880000pt;}
.ws47{word-spacing:1.088000pt;}
.ws58{word-spacing:1.976000pt;}
.ws5b{word-spacing:2.288000pt;}
.ws52{word-spacing:2.432000pt;}
.ws17{word-spacing:2.752000pt;}
.ws4f{word-spacing:3.520000pt;}
.ws2f{word-spacing:3.904000pt;}
.ws4c{word-spacing:3.968000pt;}
.ws39{word-spacing:4.224000pt;}
.ws4e{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.736000pt;}
.ws3a{word-spacing:5.632000pt;}
.ws42{word-spacing:5.866667pt;}
.ws69{word-spacing:5.984000pt;}
.ws4d{word-spacing:6.400000pt;}
.ws50{word-spacing:7.872000pt;}
.ws3c{word-spacing:7.936000pt;}
.ws3f{word-spacing:67.560533pt;}
.ws3e{word-spacing:81.136000pt;}
._1f{margin-left:-44.352000pt;}
._1a{margin-left:-13.721067pt;}
._9{margin-left:-11.351467pt;}
._27{margin-left:-10.195733pt;}
._a{margin-left:-9.084800pt;}
._b{margin-left:-8.069333pt;}
._14{margin-left:-7.089600pt;}
._3{margin-left:-5.989867pt;}
._2{margin-left:-4.963200pt;}
._0{margin-left:-3.169600pt;}
._6{margin-left:-1.474133pt;}
._7{width:1.665067pt;}
._1{width:3.068800pt;}
._5{width:4.435200pt;}
._10{width:5.336000pt;}
._d{width:6.437333pt;}
._e{width:7.880000pt;}
._f{width:9.051200pt;}
._4{width:10.008533pt;}
._12{width:11.018667pt;}
._13{width:12.337600pt;}
._24{width:14.080000pt;}
._c{width:15.413333pt;}
._8{width:16.882133pt;}
._26{width:17.797333pt;}
._25{width:19.594667pt;}
._1c{width:34.624000pt;}
._1e{width:44.352000pt;}
._11{width:50.598400pt;}
._22{width:57.600000pt;}
._16{width:97.621333pt;}
._19{width:136.429333pt;}
._17{width:137.661333pt;}
._15{width:139.148267pt;}
._1d{width:220.905600pt;}
._20{width:239.721600pt;}
._18{width:260.549867pt;}
._21{width:265.833600pt;}
._1b{width:443.498133pt;}
._23{width:838.848000pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:54.400000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:67.857200pt;}
.y1{bottom:69.630667pt;}
.y16c{bottom:124.715067pt;}
.y14e{bottom:124.717733pt;}
.y12b{bottom:124.719067pt;}
.y22{bottom:124.721733pt;}
.ydd{bottom:124.723067pt;}
.y66{bottom:124.724400pt;}
.y224{bottom:125.388400pt;}
.y18c{bottom:125.875867pt;}
.yd1{bottom:126.341333pt;}
.y9d{bottom:128.020933pt;}
.yae{bottom:128.101867pt;}
.y8d{bottom:128.112133pt;}
.y1a7{bottom:128.262667pt;}
.yf2{bottom:128.352933pt;}
.y1da{bottom:128.465600pt;}
.y1ce{bottom:128.825600pt;}
.y44{bottom:129.962533pt;}
.y1ff{bottom:139.121600pt;}
.y16b{bottom:139.383067pt;}
.y14d{bottom:139.385733pt;}
.y12a{bottom:139.387067pt;}
.y65{bottom:139.388400pt;}
.y21{bottom:139.389733pt;}
.y223{bottom:143.795067pt;}
.ydc{bottom:144.324400pt;}
.y18b{bottom:145.075867pt;}
.y1a6{bottom:145.598667pt;}
.yd0{bottom:146.213333pt;}
.y1d9{bottom:146.329600pt;}
.y1cd{bottom:146.689600pt;}
.y9c{bottom:146.948933pt;}
.yad{bottom:147.029867pt;}
.y8c{bottom:147.312133pt;}
.yf1{bottom:147.552933pt;}
.y43{bottom:149.562533pt;}
.y16a{bottom:154.051067pt;}
.y14c{bottom:154.053733pt;}
.y129{bottom:154.055067pt;}
.y64{bottom:154.056400pt;}
.y1fe{bottom:156.721600pt;}
.y20{bottom:158.991067pt;}
.y222{bottom:162.201733pt;}
.y1d8{bottom:164.193600pt;}
.y18a{bottom:164.275867pt;}
.y1cc{bottom:164.553600pt;}
.y9b{bottom:165.876933pt;}
.yac{bottom:165.957867pt;}
.ycf{bottom:166.085333pt;}
.yf0{bottom:166.480933pt;}
.y8b{bottom:166.512133pt;}
.y169{bottom:168.719067pt;}
.y14b{bottom:168.721733pt;}
.y128{bottom:168.723067pt;}
.y63{bottom:168.724400pt;}
.y42{bottom:169.162533pt;}
.y1a5{bottom:170.491067pt;}
.y221{bottom:180.608400pt;}
.y1d7{bottom:182.057600pt;}
.y1cb{bottom:182.417600pt;}
.y168{bottom:183.387067pt;}
.y14a{bottom:183.389733pt;}
.y62{bottom:183.391067pt;}
.y189{bottom:183.475867pt;}
.y9a{bottom:184.804933pt;}
.yab{bottom:184.885867pt;}
.yef{bottom:185.408933pt;}
.y8a{bottom:185.712133pt;}
.yce{bottom:185.957333pt;}
.ydb{bottom:187.102267pt;}
.y127{bottom:188.324400pt;}
.y41{bottom:188.762533pt;}
.y1fd{bottom:193.681600pt;}
.y126{bottom:198.055067pt;}
.y220{bottom:199.015067pt;}
.y1d6{bottom:199.921600pt;}
.y85{bottom:200.186933pt;}
.y1f{bottom:200.253333pt;}
.y1ca{bottom:200.281600pt;}
.y188{bottom:202.675867pt;}
.y61{bottom:202.991067pt;}
.y99{bottom:203.732933pt;}
.yaa{bottom:203.813867pt;}
.yee{bottom:204.336933pt;}
.ycd{bottom:205.829333pt;}
.yda{bottom:206.030267pt;}
.y40{bottom:208.362533pt;}
.y1fc{bottom:211.677600pt;}
.y1a4{bottom:212.692800pt;}
.y125{bottom:212.723067pt;}
.y21f{bottom:217.421733pt;}
.y1d5{bottom:217.788267pt;}
.y1e{bottom:217.853333pt;}
.y1c9{bottom:218.145600pt;}
.y84{bottom:219.114933pt;}
.y187{bottom:221.875867pt;}
.y98{bottom:222.660933pt;}
.ya9{bottom:222.741867pt;}
.yed{bottom:223.264933pt;}
.y89{bottom:224.112133pt;}
.yd9{bottom:225.630267pt;}
.ycc{bottom:225.701333pt;}
.y3f{bottom:227.962533pt;}
.y1fb{bottom:229.673600pt;}
.y1a3{bottom:230.028800pt;}
.y124{bottom:232.324400pt;}
.y1d{bottom:235.453333pt;}
.y21e{bottom:235.828400pt;}
.y1c8{bottom:236.009600pt;}
.y83{bottom:238.042933pt;}
.y186{bottom:241.075867pt;}
.y97{bottom:241.588933pt;}
.ya8{bottom:241.669867pt;}
.y123{bottom:242.056400pt;}
.yec{bottom:242.192933pt;}
.y149{bottom:243.274933pt;}
.y88{bottom:243.312133pt;}
.y60{bottom:244.915867pt;}
.yd8{bottom:245.230267pt;}
.ycb{bottom:245.573333pt;}
.y1a2{bottom:247.364800pt;}
.y3e{bottom:247.562533pt;}
.y1fa{bottom:247.669600pt;}
.y1c{bottom:253.053333pt;}
.y1c7{bottom:253.873600pt;}
.y21d{bottom:254.235067pt;}
.y1d4{bottom:255.121600pt;}
.y82{bottom:256.970933pt;}
.y185{bottom:260.275867pt;}
.y96{bottom:260.516933pt;}
.ya7{bottom:260.597867pt;}
.yeb{bottom:261.120933pt;}
.y122{bottom:261.657733pt;}
.y148{bottom:262.346933pt;}
.y87{bottom:262.512133pt;}
.y5f{bottom:264.643867pt;}
.y1a1{bottom:264.700800pt;}
.yd7{bottom:264.830267pt;}
.yca{bottom:265.445333pt;}
.y1f9{bottom:265.665600pt;}
.y3d{bottom:267.162533pt;}
.y1c6{bottom:271.737600pt;}
.y21c{bottom:272.641733pt;}
.y167{bottom:275.680267pt;}
.y81{bottom:275.898933pt;}
.y1b{bottom:278.212400pt;}
.y95{bottom:279.444933pt;}
.y184{bottom:279.475867pt;}
.ya6{bottom:279.525867pt;}
.yea{bottom:280.048933pt;}
.y147{bottom:281.418933pt;}
.y86{bottom:281.712133pt;}
.y1a0{bottom:282.036800pt;}
.y1f8{bottom:283.661600pt;}
.y5e{bottom:284.371867pt;}
.yc9{bottom:285.317333pt;}
.y3c{bottom:286.762533pt;}
.y1c5{bottom:289.601600pt;}
.y21b{bottom:291.048400pt;}
.y1d3{bottom:292.449600pt;}
.y166{bottom:294.608267pt;}
.y80{bottom:294.826933pt;}
.y94{bottom:298.372933pt;}
.ya5{bottom:298.453867pt;}
.y183{bottom:298.675867pt;}
.ye9{bottom:298.976933pt;}
.y19f{bottom:299.372800pt;}
.y146{bottom:300.490933pt;}
.y1f7{bottom:301.657600pt;}
.yd6{bottom:304.030267pt;}
.y5d{bottom:304.099867pt;}
.y121{bottom:304.133600pt;}
.yc8{bottom:305.189333pt;}
.y3b{bottom:306.362533pt;}
.y1c4{bottom:307.465600pt;}
.y21a{bottom:309.455067pt;}
.y1d2{bottom:311.921600pt;}
.y165{bottom:313.536267pt;}
.y7f{bottom:313.754933pt;}
.y1a{bottom:316.612400pt;}
.y19e{bottom:316.708800pt;}
.y93{bottom:317.300933pt;}
.ya4{bottom:317.381867pt;}
.y182{bottom:317.875867pt;}
.ye8{bottom:317.904933pt;}
.y145{bottom:319.562933pt;}
.y1f6{bottom:319.653600pt;}
.y120{bottom:323.333600pt;}
.yd5{bottom:323.630267pt;}
.y5c{bottom:323.827867pt;}
.yc7{bottom:325.061333pt;}
.y1c3{bottom:325.329600pt;}
.y3a{bottom:325.962533pt;}
.y219{bottom:327.861733pt;}
.y1d1{bottom:331.388267pt;}
.y164{bottom:332.464267pt;}
.y7e{bottom:332.682933pt;}
.y8e{bottom:333.622533pt;}
.y19d{bottom:334.044800pt;}
.y19{bottom:334.212400pt;}
.y92{bottom:336.228933pt;}
.ya3{bottom:336.309867pt;}
.ye7{bottom:336.832933pt;}
.y181{bottom:337.075867pt;}
.y1f5{bottom:337.649600pt;}
.y144{bottom:338.634933pt;}
.y11f{bottom:342.261600pt;}
.y1c2{bottom:343.193600pt;}
.yd4{bottom:343.230267pt;}
.y5b{bottom:343.555867pt;}
.yc6{bottom:344.933333pt;}
.y39{bottom:345.562533pt;}
.y218{bottom:346.268400pt;}
.y19c{bottom:351.380800pt;}
.y163{bottom:351.392267pt;}
.y7d{bottom:351.610933pt;}
.y18{bottom:351.812400pt;}
.y91{bottom:355.156933pt;}
.ya2{bottom:355.237867pt;}
.y1f4{bottom:355.645600pt;}
.ye6{bottom:355.760933pt;}
.y180{bottom:356.275867pt;}
.y1c1{bottom:361.057600pt;}
.y11e{bottom:361.189600pt;}
.yd3{bottom:362.830267pt;}
.y5a{bottom:363.283867pt;}
.y217{bottom:364.675067pt;}
.yc5{bottom:364.805333pt;}
.y38{bottom:365.162533pt;}
.y143{bottom:366.906933pt;}
.y19b{bottom:368.698133pt;}
.y17{bottom:369.412400pt;}
.y162{bottom:370.320267pt;}
.y7c{bottom:370.538933pt;}
.y1f3{bottom:373.641600pt;}
.y1d0{bottom:374.055600pt;}
.y90{bottom:374.084933pt;}
.ya1{bottom:374.165867pt;}
.ye5{bottom:374.688933pt;}
.y17f{bottom:375.475867pt;}
.y1c0{bottom:378.921600pt;}
.y11d{bottom:380.117600pt;}
.yd2{bottom:382.430267pt;}
.y59{bottom:383.011867pt;}
.y216{bottom:383.081733pt;}
.yc4{bottom:384.677333pt;}
.y37{bottom:384.762533pt;}
.y142{bottom:385.978933pt;}
.y19a{bottom:386.034133pt;}
.y16{bottom:387.012400pt;}
.y161{bottom:389.248267pt;}
.y7b{bottom:389.466933pt;}
.y1cf{bottom:389.521600pt;}
.y1f2{bottom:391.637600pt;}
.y8f{bottom:393.012933pt;}
.ya0{bottom:393.093867pt;}
.ye4{bottom:393.616933pt;}
.y17e{bottom:394.675867pt;}
.y1bf{bottom:396.785600pt;}
.y11c{bottom:399.045600pt;}
.y215{bottom:401.488400pt;}
.y58{bottom:402.739867pt;}
.y199{bottom:403.370133pt;}
.y36{bottom:404.362533pt;}
.yc3{bottom:404.549333pt;}
.y15{bottom:404.612400pt;}
.y141{bottom:405.050933pt;}
.y160{bottom:408.176267pt;}
.y7a{bottom:408.394933pt;}
.y1f1{bottom:409.633600pt;}
.y9f{bottom:412.021867pt;}
.ye3{bottom:412.544933pt;}
.y17d{bottom:413.875867pt;}
.y1be{bottom:414.649600pt;}
.y11b{bottom:417.973600pt;}
.y214{bottom:419.895067pt;}
.y198{bottom:420.706133pt;}
.y14{bottom:422.212400pt;}
.y57{bottom:422.467867pt;}
.y35{bottom:423.962533pt;}
.y140{bottom:424.122933pt;}
.yc2{bottom:424.421333pt;}
.y15f{bottom:427.104267pt;}
.y79{bottom:427.322933pt;}
.y1f0{bottom:427.629600pt;}
.ye2{bottom:431.472933pt;}
.y1bd{bottom:432.513600pt;}
.yde{bottom:433.437333pt;}
.y11a{bottom:436.944267pt;}
.y197{bottom:438.042133pt;}
.y213{bottom:438.301733pt;}
.y13{bottom:439.812400pt;}
.y9e{bottom:439.981867pt;}
.y17c{bottom:440.634933pt;}
.y56{bottom:442.195867pt;}
.y13f{bottom:443.194933pt;}
.y34{bottom:443.562533pt;}
.yc1{bottom:444.293333pt;}
.y1ef{bottom:445.625600pt;}
.y15e{bottom:446.032267pt;}
.y78{bottom:446.250933pt;}
.y1bc{bottom:450.377600pt;}
.ye1{bottom:450.400933pt;}
.y196{bottom:455.378133pt;}
.y119{bottom:455.872267pt;}
.y212{bottom:456.708400pt;}
.y12{bottom:457.412400pt;}
.yaf{bottom:460.976133pt;}
.y55{bottom:461.923867pt;}
.y13e{bottom:462.266933pt;}
.y33{bottom:463.162533pt;}
.y1ee{bottom:463.621600pt;}
.yc0{bottom:464.165333pt;}
.y15d{bottom:464.960267pt;}
.y77{bottom:465.178933pt;}
.y1bb{bottom:468.241600pt;}
.ye0{bottom:469.328933pt;}
.y195{bottom:472.714133pt;}
.y118{bottom:474.800267pt;}
.y11{bottom:475.012400pt;}
.y211{bottom:475.115067pt;}
.y13d{bottom:481.338933pt;}
.y1ed{bottom:481.617600pt;}
.y54{bottom:481.651867pt;}
.y32{bottom:482.762533pt;}
.y15c{bottom:483.888267pt;}
.ybf{bottom:484.037333pt;}
.y76{bottom:484.106933pt;}
.y1ba{bottom:486.105600pt;}
.ydf{bottom:488.256933pt;}
.y194{bottom:490.042133pt;}
.y10{bottom:492.612400pt;}
.y210{bottom:493.521733pt;}
.y17b{bottom:498.234933pt;}
.y1ec{bottom:499.613600pt;}
.y13c{bottom:500.410933pt;}
.y53{bottom:501.379867pt;}
.y31{bottom:502.362533pt;}
.y117{bottom:502.800267pt;}
.y15b{bottom:502.816267pt;}
.y75{bottom:503.040267pt;}
.y1b9{bottom:503.969600pt;}
.y193{bottom:507.378133pt;}
.yf{bottom:510.212400pt;}
.y20f{bottom:511.928400pt;}
.y17a{bottom:517.434933pt;}
.y1eb{bottom:517.609600pt;}
.y13b{bottom:519.482933pt;}
.y52{bottom:521.107867pt;}
.y116{bottom:521.728267pt;}
.y15a{bottom:521.744267pt;}
.y1b8{bottom:521.833600pt;}
.y30{bottom:521.962533pt;}
.y74{bottom:522.010933pt;}
.y192{bottom:524.714133pt;}
.ye{bottom:527.812400pt;}
.y20e{bottom:530.335067pt;}
.ybe{bottom:530.663067pt;}
.y1ea{bottom:535.605600pt;}
.y179{bottom:536.634933pt;}
.y13a{bottom:538.554933pt;}
.y1b7{bottom:539.697600pt;}
.y115{bottom:540.656267pt;}
.y159{bottom:540.672267pt;}
.y51{bottom:540.835867pt;}
.y73{bottom:540.938933pt;}
.y2f{bottom:541.562533pt;}
.y191{bottom:542.050133pt;}
.y107{bottom:543.967200pt;}
.yd{bottom:545.412400pt;}
.y20d{bottom:548.741733pt;}
.y1e9{bottom:553.601600pt;}
.y178{bottom:555.834933pt;}
.y1b6{bottom:557.561600pt;}
.y139{bottom:557.626933pt;}
.ybd{bottom:558.209200pt;}
.y114{bottom:559.584267pt;}
.y158{bottom:559.600267pt;}
.y72{bottom:559.866933pt;}
.y50{bottom:560.563867pt;}
.y190{bottom:566.942533pt;}
.y20c{bottom:567.148400pt;}
.y2e{bottom:568.721600pt;}
.yc{bottom:570.571467pt;}
.y106{bottom:571.556000pt;}
.y1e8{bottom:571.729600pt;}
.y177{bottom:575.034933pt;}
.y1b5{bottom:575.425600pt;}
.y138{bottom:576.698933pt;}
.y113{bottom:578.512267pt;}
.y157{bottom:578.528267pt;}
.y71{bottom:578.794933pt;}
.y4f{bottom:580.291867pt;}
.ybc{bottom:583.083867pt;}
.y20b{bottom:585.555067pt;}
.y105{bottom:589.420000pt;}
.y1e7{bottom:589.857600pt;}
.y1b4{bottom:593.289600pt;}
.y176{bottom:594.234933pt;}
.y137{bottom:595.770933pt;}
.y112{bottom:597.440267pt;}
.y156{bottom:597.456267pt;}
.y70{bottom:597.722933pt;}
.y4e{bottom:600.019867pt;}
.y20a{bottom:603.961733pt;}
.yb8{bottom:604.447867pt;}
.y104{bottom:607.284000pt;}
.ybb{bottom:607.958533pt;}
.y1e6{bottom:607.985600pt;}
.y1b3{bottom:611.153600pt;}
.y175{bottom:613.434933pt;}
.y136{bottom:614.842933pt;}
.y100{bottom:616.216000pt;}
.y155{bottom:616.384267pt;}
.y111{bottom:616.410933pt;}
.y18f{bottom:616.426933pt;}
.yb{bottom:616.438133pt;}
.y6f{bottom:616.650933pt;}
.yba{bottom:616.890533pt;}
.y4d{bottom:619.747867pt;}
.y209{bottom:622.368400pt;}
.y103{bottom:625.148000pt;}
.y1e5{bottom:626.113600pt;}
.y2d{bottom:627.565600pt;}
.y1b2{bottom:629.017600pt;}
.y174{bottom:632.634933pt;}
.y135{bottom:633.914933pt;}
.ya{bottom:634.038133pt;}
.y22d{bottom:635.121600pt;}
.y154{bottom:635.312267pt;}
.y110{bottom:635.338933pt;}
.y18e{bottom:635.354933pt;}
.y4c{bottom:639.481200pt;}
.y208{bottom:640.775067pt;}
.y102{bottom:643.012000pt;}
.y1e4{bottom:644.241600pt;}
.y2c{bottom:645.561600pt;}
.y1b1{bottom:646.881600pt;}
.yb9{bottom:650.697200pt;}
.y22c{bottom:651.121600pt;}
.y173{bottom:651.834933pt;}
.y134{bottom:652.986933pt;}
.y153{bottom:654.240267pt;}
.y10f{bottom:654.266933pt;}
.y18d{bottom:654.282933pt;}
.y6e{bottom:654.522933pt;}
.y207{bottom:659.181733pt;}
.y4b{bottom:659.209200pt;}
.y101{bottom:660.876000pt;}
.y1e3{bottom:662.369600pt;}
.y2b{bottom:663.557600pt;}
.y1b0{bottom:664.745600pt;}
.y22b{bottom:667.121600pt;}
.y9{bottom:670.838133pt;}
.y172{bottom:671.034933pt;}
.y133{bottom:672.058933pt;}
.y10e{bottom:673.194933pt;}
.y152{bottom:673.210933pt;}
.y6d{bottom:673.450933pt;}
.yb7{bottom:675.566533pt;}
.y206{bottom:677.588400pt;}
.y1e2{bottom:680.497600pt;}
.y2a{bottom:681.553600pt;}
.y1af{bottom:682.609600pt;}
.y22a{bottom:683.121600pt;}
.yfa{bottom:685.736000pt;}
.y4a{bottom:686.501600pt;}
.yb6{bottom:687.995867pt;}
.y171{bottom:690.234933pt;}
.y132{bottom:691.130933pt;}
.y10d{bottom:692.122933pt;}
.y151{bottom:692.138933pt;}
.y6c{bottom:692.378933pt;}
.y205{bottom:695.995067pt;}
.y8{bottom:698.038133pt;}
.y1e1{bottom:698.625600pt;}
.y29{bottom:699.549600pt;}
.y1ae{bottom:700.473600pt;}
.yff{bottom:703.614667pt;}
.y131{bottom:710.202933pt;}
.y10c{bottom:711.050933pt;}
.y150{bottom:711.066933pt;}
.y6b{bottom:711.306933pt;}
.y204{bottom:714.401733pt;}
.y1e0{bottom:716.753600pt;}
.y28{bottom:717.545600pt;}
.y229{bottom:718.321600pt;}
.y1ad{bottom:718.337600pt;}
.yf9{bottom:721.464000pt;}
.yfe{bottom:721.478667pt;}
.yb5{bottom:725.307867pt;}
.y170{bottom:728.634933pt;}
.y130{bottom:729.274933pt;}
.y14f{bottom:729.994933pt;}
.yf5{bottom:730.396000pt;}
.y203{bottom:732.808400pt;}
.yb4{bottom:734.239867pt;}
.y1df{bottom:734.881600pt;}
.y27{bottom:735.541600pt;}
.y228{bottom:735.921600pt;}
.y1ac{bottom:736.201600pt;}
.yf8{bottom:739.328000pt;}
.yfd{bottom:739.342667pt;}
.y49{bottom:745.722933pt;}
.y7{bottom:747.161600pt;}
.y16f{bottom:747.834933pt;}
.y12f{bottom:748.346933pt;}
.y10b{bottom:748.922933pt;}
.y6a{bottom:749.034933pt;}
.y1de{bottom:753.009600pt;}
.y26{bottom:753.537600pt;}
.y1ab{bottom:754.065600pt;}
.yf7{bottom:757.192000pt;}
.yfc{bottom:757.206667pt;}
.y6{bottom:763.161600pt;}
.y48{bottom:765.450933pt;}
.y16e{bottom:767.034933pt;}
.y12e{bottom:767.418933pt;}
.y69{bottom:767.834933pt;}
.y10a{bottom:767.850933pt;}
.yb3{bottom:768.046533pt;}
.y202{bottom:770.408400pt;}
.y1dd{bottom:771.137600pt;}
.y25{bottom:771.533600pt;}
.yb0{bottom:771.554533pt;}
.y1aa{bottom:771.929600pt;}
.y227{bottom:772.721600pt;}
.yf6{bottom:775.056000pt;}
.yfb{bottom:775.070667pt;}
.y5{bottom:779.161600pt;}
.y47{bottom:785.178933pt;}
.y16d{bottom:786.234933pt;}
.y12d{bottom:786.490933pt;}
.y68{bottom:786.634933pt;}
.y109{bottom:786.778933pt;}
.y1dc{bottom:789.265600pt;}
.y24{bottom:789.529600pt;}
.y1a9{bottom:789.793600pt;}
.y226{bottom:790.321600pt;}
.yb2{bottom:792.921200pt;}
.yf4{bottom:799.930667pt;}
.y46{bottom:804.906933pt;}
.y67{bottom:805.434933pt;}
.y12c{bottom:805.562933pt;}
.y108{bottom:805.706933pt;}
.y201{bottom:807.208267pt;}
.y1db{bottom:807.393600pt;}
.y23{bottom:807.525600pt;}
.y1a8{bottom:807.657600pt;}
.y225{bottom:807.921600pt;}
.yf3{bottom:808.862667pt;}
.y4{bottom:809.521600pt;}
.yb1{bottom:817.795867pt;}
.y45{bottom:824.634933pt;}
.y3{bottom:825.521600pt;}
.y200{bottom:826.408400pt;}
.h8{height:27.171875pt;}
.ha{height:31.700521pt;}
.h2{height:36.229167pt;}
.h15{height:41.736979pt;}
.h9{height:43.022135pt;}
.h3{height:45.286458pt;}
.hc{height:45.297125pt;}
.h11{height:46.748854pt;}
.h14{height:46.780854pt;}
.h4{height:49.815104pt;}
.h19{height:49.847104pt;}
.h1a{height:49.889771pt;}
.he{height:51.595729pt;}
.h10{height:51.596263pt;}
.h7{height:54.343750pt;}
.hf{height:55.966250pt;}
.h16{height:56.115583pt;}
.h17{height:56.158250pt;}
.hb{height:56.264917pt;}
.hd{height:56.286250pt;}
.h18{height:56.926250pt;}
.h5{height:76.986979pt;}
.h6{height:79.738854pt;}
.h12{height:85.543104pt;}
.h13{height:99.596438pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x5{left:86.916400pt;}
.x8{left:94.295867pt;}
.x7{left:105.793200pt;}
.x15{left:124.717467pt;}
.x6{left:127.262533pt;}
.x13{left:133.929200pt;}
.xf{left:150.459733pt;}
.xa{left:157.740133pt;}
.x9{left:176.234800pt;}
.xd{left:179.059733pt;}
.x4{left:211.903200pt;}
.x18{left:230.800800pt;}
.xb{left:258.676133pt;}
.x1{left:267.818800pt;}
.xc{left:287.133600pt;}
.x10{left:356.497067pt;}
.xe{left:357.714400pt;}
.x12{left:403.166400pt;}
.x11{left:412.186400pt;}
.x17{left:453.315867pt;}
.x16{left:461.283200pt;}
.x14{left:535.590533pt;}
.x2{left:542.257200pt;}
}




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