
    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_701ef294e0494a8136cce108.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896484;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_89b6c49ab778460cca8a91c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b034278944262a649a008389.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_6cf514bae9c390dc2f99fc5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825195;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_4cab37fd0d05069285e79bcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148926;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_3bee0c420909a08575636d5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844238;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_049878810dbc60ba7ca7ed41.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_de8f2b2973dcd59ddd096a0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_2f41dfb4d98235bcc006cd27.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.674316;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_2011319d12829117cebb55ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_e37fd1f18f7c0f756371030f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.088379;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_393309aa14a59e82610bcb53.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682129;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_6c66afef65225761ac51c7c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.096191;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_1b95926c02935fc60b0c2185.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.674316;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_30b162cd9ab9f66039e2e299.woff2')format("woff");}.fff{font-family:fff;line-height:0.706543;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_8fd9ba15d7864e07692381c3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682129;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:ff11;src:url('chunks/assets/font_db9ef09dd51cfca2870e82e7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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:ff12;src:url('chunks/assets/font_d989bec7d6596d97d1e0453b.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f297241e7aff442bffda4872.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682129;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:ff14;src:url('chunks/assets/font_cea92b975a2d74a238f95c78.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682129;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:ff15;src:url('chunks/assets/font_69031ee9e42432196c3b8c85.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.402354;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:ff16;src:url('chunks/assets/font_a854cb8fa39a5efb52d9e87e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.674316;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:ff17;src:url('chunks/assets/font_bf7cb2b51da242f661af8548.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.885742;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:ff18;src:url('chunks/assets/font_7793a4864a1180b8849ab9a8.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3b{letter-spacing:-0.960000px;}
.ls22{letter-spacing:-0.864000px;}
.ls47{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.618000px;}
.lsb{letter-spacing:-0.463800px;}
.ls4e{letter-spacing:-0.414600px;}
.ls30{letter-spacing:-0.414000px;}
.ls28{letter-spacing:-0.411600px;}
.ls37{letter-spacing:-0.322800px;}
.ls29{letter-spacing:-0.265200px;}
.ls23{letter-spacing:-0.264000px;}
.ls48{letter-spacing:-0.241800px;}
.ls3d{letter-spacing:-0.233400px;}
.ls44{letter-spacing:-0.109200px;}
.ls27{letter-spacing:-0.108000px;}
.ls4c{letter-spacing:-0.103800px;}
.ls1d{letter-spacing:-0.102000px;}
.ls33{letter-spacing:-0.078000px;}
.ls21{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.066000px;}
.lsf{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.058200px;}
.ls25{letter-spacing:-0.054000px;}
.ls14{letter-spacing:-0.048000px;}
.ls40{letter-spacing:-0.043200px;}
.ls17{letter-spacing:-0.042000px;}
.ls16{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.030000px;}
.ls1f{letter-spacing:-0.024000px;}
.ls15{letter-spacing:-0.018000px;}
.ls12{letter-spacing:-0.012000px;}
.ls13{letter-spacing:-0.006000px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.006000px;}
.ls18{letter-spacing:0.012000px;}
.ls11{letter-spacing:0.013200px;}
.ls1b{letter-spacing:0.018000px;}
.ls46{letter-spacing:0.022800px;}
.ls1c{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.030000px;}
.ls3c{letter-spacing:0.036000px;}
.ls2f{letter-spacing:0.042000px;}
.ls32{letter-spacing:0.048000px;}
.lse{letter-spacing:0.049200px;}
.ls3a{letter-spacing:0.060000px;}
.ls4a{letter-spacing:0.069000px;}
.ls10{letter-spacing:0.070080px;}
.ls9{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.075000px;}
.ls39{letter-spacing:0.096000px;}
.ls42{letter-spacing:0.100800px;}
.ls36{letter-spacing:0.106800px;}
.ls2c{letter-spacing:0.147000px;}
.ls2a{letter-spacing:0.155400px;}
.ls34{letter-spacing:0.156000px;}
.lsd{letter-spacing:0.168000px;}
.ls0{letter-spacing:0.174000px;}
.ls45{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.190200px;}
.ls1{letter-spacing:0.195600px;}
.ls3{letter-spacing:0.219120px;}
.ls6{letter-spacing:0.246000px;}
.lsc{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.262800px;}
.ls2b{letter-spacing:0.265200px;}
.ls4b{letter-spacing:0.305400px;}
.ls49{letter-spacing:0.306000px;}
.ls38{letter-spacing:0.308160px;}
.ls2e{letter-spacing:0.308400px;}
.ls41{letter-spacing:0.316800px;}
.ls24{letter-spacing:0.318000px;}
.ls31{letter-spacing:0.330000px;}
.ls43{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.485520px;}
.ls26{letter-spacing:0.630240px;}
.ls4d{letter-spacing:0.822000px;}
.ls3e{letter-spacing:4.147200px;}
.ls3f{letter-spacing:4.867200px;}
.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;}
}
.ws23{word-spacing:-37.157760px;}
.ws1{word-spacing:-29.162880px;}
.ws2{word-spacing:-21.641760px;}
.ws3{word-spacing:-17.573760px;}
.ws24{word-spacing:-17.107200px;}
.ws5{word-spacing:-16.344000px;}
.ws27{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.ws96{word-spacing:-14.902800px;}
.ws28{word-spacing:-14.890800px;}
.ws8e{word-spacing:-14.881200px;}
.wsd9{word-spacing:-14.878800px;}
.ws8b{word-spacing:-14.838000px;}
.ws97{word-spacing:-14.728800px;}
.ws8d{word-spacing:-14.728200px;}
.ws8c{word-spacing:-14.719800px;}
.wsbe{word-spacing:-14.647800px;}
.wsf5{word-spacing:-14.644800px;}
.wsf1{word-spacing:-14.641800px;}
.ws1f{word-spacing:-14.622000px;}
.ws7e{word-spacing:-14.596800px;}
.wsf2{word-spacing:-14.595600px;}
.ws20{word-spacing:-14.572800px;}
.wsd4{word-spacing:-14.529600px;}
.ws21{word-spacing:-14.509200px;}
.ws9{word-spacing:-14.506440px;}
.ws25{word-spacing:-14.470800px;}
.wsf3{word-spacing:-14.469000px;}
.ws7f{word-spacing:-14.464800px;}
.wsd5{word-spacing:-14.463600px;}
.wsc0{word-spacing:-14.339400px;}
.ws80{word-spacing:-14.307600px;}
.wsbd{word-spacing:-14.250000px;}
.ws95{word-spacing:-14.158800px;}
.wsf4{word-spacing:-14.158200px;}
.ws26{word-spacing:-13.708800px;}
.ws0{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.410000px;}
.ws7{word-spacing:-13.393200px;}
.ws6{word-spacing:-13.337400px;}
.ws1d{word-spacing:-12.585600px;}
.ws15{word-spacing:-0.864000px;}
.ws1b{word-spacing:-0.660000px;}
.ws1c{word-spacing:-0.606000px;}
.ws17{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.396000px;}
.wse{word-spacing:-0.390000px;}
.ws13{word-spacing:-0.330000px;}
.ws1a{word-spacing:-0.264000px;}
.ws18{word-spacing:-0.108000px;}
.wsb{word-spacing:0.000000px;}
.ws12{word-spacing:0.132000px;}
.ws4d{word-spacing:0.156000px;}
.ws1e{word-spacing:0.178226px;}
.ws22{word-spacing:0.180000px;}
.ws16{word-spacing:0.198000px;}
.ws19{word-spacing:0.252000px;}
.wsf{word-spacing:0.312000px;}
.ws10{word-spacing:0.636000px;}
.wsd{word-spacing:0.780000px;}
.ws11{word-spacing:1.044000px;}
.wsc{word-spacing:1.554000px;}
.wse3{word-spacing:4.146000px;}
.wsbc{word-spacing:4.158000px;}
.ws3f{word-spacing:4.176000px;}
.ws40{word-spacing:4.242000px;}
.wsd3{word-spacing:4.374000px;}
.ws2b{word-spacing:4.638000px;}
.ws5e{word-spacing:4.704000px;}
.ws29{word-spacing:4.770000px;}
.ws2c{word-spacing:4.836000px;}
.ws4f{word-spacing:4.866000px;}
.wsa0{word-spacing:4.884000px;}
.ws2a{word-spacing:4.902000px;}
.wsb1{word-spacing:4.968000px;}
.ws90{word-spacing:5.178000px;}
.wscb{word-spacing:5.274000px;}
.wscd{word-spacing:5.316000px;}
.wse2{word-spacing:5.346000px;}
.ws59{word-spacing:5.364000px;}
.ws8f{word-spacing:5.430000px;}
.ws6c{word-spacing:5.442000px;}
.ws56{word-spacing:5.496000px;}
.ws58{word-spacing:5.562000px;}
.ws6a{word-spacing:5.586000px;}
.ws57{word-spacing:5.628000px;}
.ws5a{word-spacing:5.694000px;}
.ws55{word-spacing:5.754000px;}
.ws83{word-spacing:6.030000px;}
.ws6b{word-spacing:6.096000px;}
.wsae{word-spacing:6.162000px;}
.ws44{word-spacing:6.228000px;}
.ws84{word-spacing:6.294000px;}
.wsa5{word-spacing:6.306000px;}
.ws85{word-spacing:6.360000px;}
.ws81{word-spacing:6.426000px;}
.ws53{word-spacing:6.822000px;}
.ws54{word-spacing:6.888000px;}
.ws41{word-spacing:6.954000px;}
.ws43{word-spacing:7.020000px;}
.ws52{word-spacing:7.026000px;}
.ws42{word-spacing:7.086000px;}
.wsb5{word-spacing:7.152000px;}
.ws45{word-spacing:7.308000px;}
.ws82{word-spacing:7.392000px;}
.wsc5{word-spacing:7.554000px;}
.wsc6{word-spacing:7.620000px;}
.ws86{word-spacing:7.686000px;}
.wsa1{word-spacing:7.746000px;}
.ws88{word-spacing:7.752000px;}
.ws87{word-spacing:7.818000px;}
.wsc4{word-spacing:7.884000px;}
.ws98{word-spacing:8.214000px;}
.ws99{word-spacing:8.280000px;}
.ws92{word-spacing:8.412000px;}
.wse1{word-spacing:8.466000px;}
.ws9a{word-spacing:8.478000px;}
.ws76{word-spacing:9.006000px;}
.wsb9{word-spacing:9.072000px;}
.ws91{word-spacing:9.144000px;}
.ws74{word-spacing:9.210000px;}
.ws4e{word-spacing:9.246000px;}
.wscc{word-spacing:9.672000px;}
.ws94{word-spacing:9.738000px;}
.ws93{word-spacing:9.804000px;}
.ws72{word-spacing:9.870000px;}
.wsc1{word-spacing:9.906000px;}
.ws73{word-spacing:9.936000px;}
.ws75{word-spacing:10.002000px;}
.ws63{word-spacing:10.398000px;}
.wsc2{word-spacing:10.464000px;}
.ws64{word-spacing:10.530000px;}
.wsa6{word-spacing:10.596000px;}
.ws89{word-spacing:10.626000px;}
.ws62{word-spacing:10.662000px;}
.ws8a{word-spacing:10.728000px;}
.ws6f{word-spacing:11.130000px;}
.wsc8{word-spacing:11.196000px;}
.ws5f{word-spacing:11.262000px;}
.ws60{word-spacing:11.328000px;}
.ws7d{word-spacing:11.376000px;}
.ws61{word-spacing:11.394000px;}
.ws70{word-spacing:11.460000px;}
.wsc7{word-spacing:11.466000px;}
.ws7a{word-spacing:11.856000px;}
.wsa7{word-spacing:11.922000px;}
.ws6e{word-spacing:11.988000px;}
.ws65{word-spacing:12.054000px;}
.ws7c{word-spacing:12.066000px;}
.ws6d{word-spacing:12.120000px;}
.ws46{word-spacing:12.186000px;}
.wsc3{word-spacing:12.468000px;}
.ws30{word-spacing:12.588000px;}
.ws31{word-spacing:12.654000px;}
.ws2f{word-spacing:12.720000px;}
.ws2e{word-spacing:12.786000px;}
.ws2d{word-spacing:12.852000px;}
.wsb2{word-spacing:12.960000px;}
.wsab{word-spacing:13.122000px;}
.wsb7{word-spacing:13.248000px;}
.wsb4{word-spacing:13.314000px;}
.ws47{word-spacing:13.374000px;}
.wsb8{word-spacing:13.380000px;}
.ws7b{word-spacing:13.404000px;}
.ws4c{word-spacing:13.446000px;}
.wsa9{word-spacing:13.506000px;}
.wsa8{word-spacing:13.512000px;}
.wse0{word-spacing:13.536000px;}
.wsaa{word-spacing:13.578000px;}
.wsb6{word-spacing:13.644000px;}
.wsad{word-spacing:13.974000px;}
.wsac{word-spacing:14.112000px;}
.ws48{word-spacing:14.178000px;}
.ws4a{word-spacing:14.214000px;}
.ws49{word-spacing:14.226000px;}
.ws4b{word-spacing:14.244000px;}
.wsbf{word-spacing:14.706000px;}
.ws5d{word-spacing:14.772000px;}
.ws5c{word-spacing:14.904000px;}
.ws5b{word-spacing:14.970000px;}
.wse4{word-spacing:15.036000px;}
.wsb3{word-spacing:15.432000px;}
.ws33{word-spacing:15.630000px;}
.ws35{word-spacing:15.696000px;}
.ws71{word-spacing:15.768000px;}
.ws32{word-spacing:16.164000px;}
.ws34{word-spacing:16.296000px;}
.ws36{word-spacing:16.362000px;}
.wsbb{word-spacing:16.386000px;}
.ws37{word-spacing:16.428000px;}
.wsb0{word-spacing:16.890000px;}
.wsba{word-spacing:16.962000px;}
.ws79{word-spacing:17.022000px;}
.wsaf{word-spacing:17.058000px;}
.ws78{word-spacing:17.088000px;}
.ws77{word-spacing:17.154000px;}
.wsf0{word-spacing:17.220000px;}
.wsca{word-spacing:17.622000px;}
.wsd8{word-spacing:17.688000px;}
.ws51{word-spacing:17.730000px;}
.ws50{word-spacing:17.754000px;}
.wsd2{word-spacing:17.820000px;}
.wsc9{word-spacing:17.886000px;}
.wsd0{word-spacing:18.282000px;}
.wscf{word-spacing:18.480000px;}
.wsd1{word-spacing:18.546000px;}
.wsce{word-spacing:18.612000px;}
.ws68{word-spacing:19.740000px;}
.wsdf{word-spacing:19.872000px;}
.ws69{word-spacing:19.938000px;}
.ws66{word-spacing:20.004000px;}
.ws67{word-spacing:20.070000px;}
.wse5{word-spacing:20.664000px;}
.wsda{word-spacing:20.736000px;}
.wsdd{word-spacing:21.198000px;}
.wsdb{word-spacing:21.330000px;}
.wsdc{word-spacing:21.396000px;}
.wsde{word-spacing:21.462000px;}
.ws3e{word-spacing:21.990000px;}
.ws3c{word-spacing:22.056000px;}
.ws3b{word-spacing:22.122000px;}
.ws3d{word-spacing:22.146000px;}
.ws3a{word-spacing:22.188000px;}
.ws9f{word-spacing:22.788000px;}
.ws9d{word-spacing:23.382000px;}
.ws9e{word-spacing:23.514000px;}
.wsd6{word-spacing:23.580000px;}
.ws9c{word-spacing:23.586000px;}
.ws9b{word-spacing:23.622000px;}
.wsd7{word-spacing:23.646000px;}
.wsef{word-spacing:24.048000px;}
.wsed{word-spacing:24.246000px;}
.wsec{word-spacing:24.306000px;}
.wsee{word-spacing:24.312000px;}
.wseb{word-spacing:24.378000px;}
.ws39{word-spacing:26.232000px;}
.ws38{word-spacing:26.430000px;}
.wse9{word-spacing:27.954000px;}
.wsea{word-spacing:28.416000px;}
.wse6{word-spacing:28.548000px;}
.wse7{word-spacing:28.614000px;}
.wse8{word-spacing:28.680000px;}
.wsa3{word-spacing:30.006000px;}
.wsa2{word-spacing:30.738000px;}
.wsa4{word-spacing:30.804000px;}
._2{margin-left:-1.108080px;}
._0{width:1.102811px;}
._1{width:2.225476px;}
._5{width:4.063800px;}
._4{width:5.079600px;}
._9{width:6.118677px;}
._7{width:7.453201px;}
._8{width:8.725199px;}
._a{width:9.920399px;}
._d{width:10.949305px;}
._3{width:11.952000px;}
._f{width:13.182091px;}
._6{width:15.119400px;}
._e{width:16.269146px;}
._b{width:17.330400px;}
._c{width:18.623367px;}
._10{width:20.524340px;}
._12{width:22.499794px;}
._13{width:24.111625px;}
._11{width:26.101458px;}
._18{width:28.221485px;}
._15{width:29.771056px;}
._14{width:30.929091px;}
._17{width:32.061286px;}
._16{width:33.300588px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,59,111);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:308.880000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.240000px;}
.y8c{bottom:81.430500px;}
.y15d{bottom:83.520000px;}
.y123{bottom:85.680000px;}
.y10d{bottom:89.644500px;}
.y170{bottom:90.000000px;}
.ybf{bottom:94.320000px;}
.y55{bottom:94.860000px;}
.y8b{bottom:100.785000px;}
.y15c{bottom:102.960000px;}
.y122{bottom:104.940000px;}
.y10c{bottom:109.084500px;}
.y16f{bottom:109.260000px;}
.ybe{bottom:113.760000px;}
.y54{bottom:114.300000px;}
.y8a{bottom:120.139500px;}
.y121{bottom:124.380000px;}
.y16e{bottom:128.700000px;}
.ybd{bottom:133.020000px;}
.y53{bottom:133.560000px;}
.y15b{bottom:137.340000px;}
.y10b{bottom:137.704500px;}
.y89{bottom:139.494000px;}
.y120{bottom:143.640000px;}
.y16d{bottom:147.960000px;}
.ybc{bottom:152.280000px;}
.y52{bottom:153.000000px;}
.y15a{bottom:156.600000px;}
.y88{bottom:158.848500px;}
.y11f{bottom:163.110000px;}
.y16c{bottom:167.430000px;}
.ybb{bottom:171.750000px;}
.y51{bottom:172.290000px;}
.y10a{bottom:173.554500px;}
.y159{bottom:175.890000px;}
.y87{bottom:178.203000px;}
.y11e{bottom:182.370000px;}
.y16b{bottom:186.690000px;}
.yba{bottom:191.010000px;}
.y50{bottom:191.730000px;}
.y109{bottom:192.904500px;}
.y158{bottom:195.330000px;}
.y86{bottom:197.557500px;}
.y11d{bottom:201.810000px;}
.y16a{bottom:206.130000px;}
.yb9{bottom:210.450000px;}
.y4f{bottom:210.990000px;}
.y108{bottom:212.254500px;}
.y157{bottom:214.590000px;}
.y85{bottom:216.907500px;}
.y11c{bottom:221.070000px;}
.y169{bottom:225.390000px;}
.yb8{bottom:229.710000px;}
.y4e{bottom:230.430000px;}
.y107{bottom:231.604500px;}
.y156{bottom:234.030000px;}
.y84{bottom:236.257500px;}
.y11b{bottom:240.510000px;}
.yd8{bottom:244.830000px;}
.yb7{bottom:249.150000px;}
.y4d{bottom:249.690000px;}
.y106{bottom:250.954500px;}
.y155{bottom:253.290000px;}
.y83{bottom:255.607500px;}
.y192{bottom:257.970000px;}
.y11a{bottom:259.770000px;}
.yd7{bottom:264.090000px;}
.yb6{bottom:268.410000px;}
.y4c{bottom:269.130000px;}
.y105{bottom:270.298500px;}
.y154{bottom:272.730000px;}
.y82{bottom:274.957500px;}
.y191{bottom:277.230000px;}
.y119{bottom:279.030000px;}
.yd6{bottom:283.530000px;}
.yb5{bottom:287.850000px;}
.y104{bottom:289.642500px;}
.y14e{bottom:294.150000px;}
.y81{bottom:294.307500px;}
.y190{bottom:296.670000px;}
.y4b{bottom:298.110000px;}
.y118{bottom:298.470000px;}
.y153{bottom:301.350000px;}
.yd5{bottom:302.790000px;}
.yb4{bottom:307.110000px;}
.y103{bottom:308.986500px;}
.y20{bottom:312.870000px;}
.y14d{bottom:313.410000px;}
.y80{bottom:313.657500px;}
.y18f{bottom:315.930000px;}
.y117{bottom:317.730000px;}
.yd4{bottom:322.230000px;}
.yb3{bottom:326.550000px;}
.y102{bottom:328.330500px;}
.y14c{bottom:332.850000px;}
.y7f{bottom:333.007500px;}
.y1f{bottom:333.030000px;}
.y4a{bottom:335.190000px;}
.y116{bottom:337.170000px;}
.yd3{bottom:341.490000px;}
.yb2{bottom:345.810000px;}
.y101{bottom:347.674500px;}
.y14b{bottom:352.110000px;}
.y7e{bottom:352.369500px;}
.y49{bottom:354.630000px;}
.y115{bottom:356.430000px;}
.y168{bottom:360.750000px;}
.yb1{bottom:365.250000px;}
.y100{bottom:367.018500px;}
.y14a{bottom:371.550000px;}
.y7d{bottom:371.731500px;}
.y48{bottom:373.890000px;}
.yd2{bottom:375.870000px;}
.y167{bottom:380.190000px;}
.yb0{bottom:384.510000px;}
.yff{bottom:386.362500px;}
.y149{bottom:390.810000px;}
.y7c{bottom:391.093500px;}
.y47{bottom:393.330000px;}
.yd1{bottom:395.130000px;}
.y166{bottom:399.450000px;}
.yfe{bottom:405.706500px;}
.y7b{bottom:410.455500px;}
.y46{bottom:412.635000px;}
.yd0{bottom:414.615000px;}
.yaf{bottom:418.935000px;}
.y148{bottom:424.947000px;}
.yfd{bottom:425.146500px;}
.y7a{bottom:429.817500px;}
.y45{bottom:432.075000px;}
.ycf{bottom:433.875000px;}
.yae{bottom:438.195000px;}
.y147{bottom:444.297000px;}
.yfc{bottom:444.492000px;}
.y79{bottom:449.179500px;}
.y44{bottom:451.335000px;}
.yce{bottom:453.315000px;}
.yad{bottom:457.635000px;}
.y1e{bottom:460.155000px;}
.y146{bottom:463.647000px;}
.yfb{bottom:463.837500px;}
.y78{bottom:468.541500px;}
.y43{bottom:470.775000px;}
.ycd{bottom:472.575000px;}
.yac{bottom:476.895000px;}
.y1d{bottom:477.615000px;}
.y145{bottom:482.997000px;}
.yfa{bottom:483.183000px;}
.y77{bottom:487.903500px;}
.y42{bottom:490.035000px;}
.ycc{bottom:492.015000px;}
.y1c{bottom:495.255000px;}
.yab{bottom:496.335000px;}
.y144{bottom:502.347000px;}
.yf9{bottom:502.528500px;}
.y76{bottom:507.265500px;}
.y41{bottom:509.475000px;}
.ycb{bottom:511.275000px;}
.y1b{bottom:512.895000px;}
.y18c{bottom:513.645000px;}
.yaa{bottom:515.595000px;}
.y143{bottom:521.697000px;}
.yf8{bottom:521.874000px;}
.y75{bottom:526.627500px;}
.y40{bottom:528.735000px;}
.y1a{bottom:530.355000px;}
.yca{bottom:530.715000px;}
.y18b{bottom:532.981500px;}
.ya9{bottom:535.035000px;}
.y142{bottom:541.047000px;}
.yf7{bottom:541.219500px;}
.y74{bottom:545.989500px;}
.y19{bottom:547.995000px;}
.y3f{bottom:548.175000px;}
.yc9{bottom:549.975000px;}
.y18a{bottom:552.318000px;}
.y165{bottom:554.295000px;}
.y141{bottom:560.400000px;}
.yf6{bottom:560.565000px;}
.y73{bottom:565.351500px;}
.y18{bottom:565.635000px;}
.y3e{bottom:567.435000px;}
.ya8{bottom:569.235000px;}
.y189{bottom:571.654500px;}
.y164{bottom:573.735000px;}
.y140{bottom:579.753000px;}
.yf5{bottom:579.910500px;}
.y17{bottom:583.275000px;}
.y3d{bottom:586.875000px;}
.ya7{bottom:588.675000px;}
.y188{bottom:590.991000px;}
.y72{bottom:593.971500px;}
.y13f{bottom:599.106000px;}
.yf4{bottom:599.256000px;}
.y16{bottom:600.735000px;}
.y3c{bottom:606.135000px;}
.ya6{bottom:607.935000px;}
.y187{bottom:610.327500px;}
.y15{bottom:618.375000px;}
.y13e{bottom:618.459000px;}
.yf3{bottom:618.601500px;}
.y3b{bottom:625.395000px;}
.ya5{bottom:627.375000px;}
.y186{bottom:629.664000px;}
.y71{bottom:629.791500px;}
.y13d{bottom:637.812000px;}
.yf2{bottom:637.947000px;}
.y14{bottom:644.835000px;}
.ya4{bottom:646.635000px;}
.y185{bottom:649.000500px;}
.y70{bottom:649.129500px;}
.y13c{bottom:657.165000px;}
.yf1{bottom:657.292500px;}
.y3a{bottom:664.125000px;}
.ya3{bottom:666.105000px;}
.y6f{bottom:668.467500px;}
.y184{bottom:668.470500px;}
.y13b{bottom:676.518000px;}
.yf0{bottom:676.638000px;}
.y39{bottom:683.565000px;}
.ya2{bottom:685.365000px;}
.y183{bottom:687.802500px;}
.y6e{bottom:687.805500px;}
.y13{bottom:694.005000px;}
.y13a{bottom:695.871000px;}
.yef{bottom:695.983500px;}
.y38{bottom:702.825000px;}
.ya1{bottom:704.805000px;}
.y182{bottom:707.134500px;}
.y6d{bottom:707.143500px;}
.y12{bottom:711.645000px;}
.y139{bottom:715.224000px;}
.yee{bottom:715.329000px;}
.y37{bottom:722.265000px;}
.ya0{bottom:724.065000px;}
.y181{bottom:726.466500px;}
.y6c{bottom:726.481500px;}
.y11{bottom:729.105000px;}
.y138{bottom:734.577000px;}
.yed{bottom:734.683500px;}
.y163{bottom:739.185000px;}
.y36{bottom:741.525000px;}
.y9f{bottom:743.505000px;}
.y180{bottom:745.798500px;}
.y6b{bottom:745.819500px;}
.y10{bottom:746.745000px;}
.y137{bottom:753.930000px;}
.yec{bottom:754.038000px;}
.y162{bottom:758.445000px;}
.y35{bottom:760.965000px;}
.y9e{bottom:762.765000px;}
.yf{bottom:764.385000px;}
.y17f{bottom:765.130500px;}
.y6a{bottom:765.157500px;}
.y136{bottom:773.284500px;}
.yeb{bottom:773.392500px;}
.y161{bottom:777.705000px;}
.y34{bottom:780.225000px;}
.ye{bottom:781.845000px;}
.y9d{bottom:782.205000px;}
.y69{bottom:784.495500px;}
.y17e{bottom:784.498500px;}
.y135{bottom:792.639000px;}
.yea{bottom:792.747000px;}
.y160{bottom:797.145000px;}
.yd{bottom:799.485000px;}
.y33{bottom:799.665000px;}
.yc8{bottom:801.465000px;}
.y68{bottom:803.833500px;}
.y17d{bottom:803.866500px;}
.y134{bottom:811.993500px;}
.ye9{bottom:812.101500px;}
.y9c{bottom:816.405000px;}
.yc{bottom:817.125000px;}
.y32{bottom:818.925000px;}
.yc7{bottom:820.905000px;}
.y67{bottom:823.171500px;}
.y17c{bottom:823.234500px;}
.y133{bottom:831.348000px;}
.ye8{bottom:831.456000px;}
.yb{bottom:834.585000px;}
.y9b{bottom:835.845000px;}
.y31{bottom:838.365000px;}
.yc6{bottom:840.165000px;}
.y66{bottom:842.509500px;}
.y17b{bottom:842.602500px;}
.y132{bottom:850.702500px;}
.ye7{bottom:850.810500px;}
.ya{bottom:852.225000px;}
.y9a{bottom:855.105000px;}
.y30{bottom:857.625000px;}
.yc5{bottom:859.425000px;}
.y65{bottom:861.847500px;}
.y17a{bottom:861.970500px;}
.y131{bottom:870.057000px;}
.ye6{bottom:870.165000px;}
.y99{bottom:874.545000px;}
.y2f{bottom:877.065000px;}
.y9{bottom:878.685000px;}
.y114{bottom:878.865000px;}
.y179{bottom:881.338500px;}
.y130{bottom:889.411500px;}
.ye5{bottom:889.519500px;}
.y64{bottom:891.007500px;}
.y98{bottom:893.805000px;}
.y2e{bottom:896.370000px;}
.y113{bottom:898.170000px;}
.y178{bottom:900.688500px;}
.y12f{bottom:908.766000px;}
.ye4{bottom:908.874000px;}
.y97{bottom:913.290000px;}
.y2d{bottom:915.630000px;}
.y112{bottom:917.610000px;}
.y177{bottom:920.038500px;}
.y12e{bottom:928.120500px;}
.y63{bottom:928.132500px;}
.ye3{bottom:928.228500px;}
.yc4{bottom:932.550000px;}
.y8{bottom:932.565000px;}
.y96{bottom:932.730000px;}
.y2c{bottom:935.070000px;}
.y152{bottom:936.870000px;}
.y176{bottom:939.388500px;}
.y12d{bottom:947.475000px;}
.y62{bottom:947.482500px;}
.ye2{bottom:947.668500px;}
.yc3{bottom:951.990000px;}
.y7{bottom:952.890000px;}
.y2b{bottom:954.330000px;}
.y151{bottom:956.310000px;}
.y175{bottom:958.738500px;}
.y95{bottom:966.825000px;}
.y12c{bottom:966.829500px;}
.y61{bottom:966.832500px;}
.ye1{bottom:966.988500px;}
.y111{bottom:971.250000px;}
.y2a{bottom:973.770000px;}
.y174{bottom:978.088500px;}
.yc2{bottom:986.092500px;}
.y94{bottom:986.175000px;}
.y60{bottom:986.182500px;}
.y12b{bottom:986.184000px;}
.ye0{bottom:986.308500px;}
.y110{bottom:990.690000px;}
.y29{bottom:993.030000px;}
.y173{bottom:997.438500px;}
.y6{bottom:1004.010000px;}
.yc1{bottom:1005.472500px;}
.y93{bottom:1005.525000px;}
.y5f{bottom:1005.532500px;}
.y12a{bottom:1005.538500px;}
.ydf{bottom:1005.628500px;}
.y10f{bottom:1009.950000px;}
.y28{bottom:1012.470000px;}
.y172{bottom:1016.788500px;}
.yc0{bottom:1024.852500px;}
.y92{bottom:1024.875000px;}
.y5e{bottom:1024.882500px;}
.y129{bottom:1024.893000px;}
.yde{bottom:1024.948500px;}
.y10e{bottom:1029.390000px;}
.y27{bottom:1031.730000px;}
.y91{bottom:1044.225000px;}
.y5d{bottom:1044.232500px;}
.y128{bottom:1044.247500px;}
.ydd{bottom:1044.268500px;}
.y171{bottom:1045.768500px;}
.y150{bottom:1048.650000px;}
.y26{bottom:1051.170000px;}
.y5{bottom:1051.710000px;}
.y90{bottom:1063.575000px;}
.ydc{bottom:1063.588500px;}
.y5c{bottom:1063.590000px;}
.y127{bottom:1063.602000px;}
.y56{bottom:1066.830000px;}
.y14f{bottom:1068.090000px;}
.y25{bottom:1070.430000px;}
.y8f{bottom:1082.925000px;}
.y5b{bottom:1082.947500px;}
.y126{bottom:1082.956500px;}
.ydb{bottom:1083.028500px;}
.y15f{bottom:1083.030000px;}
.y24{bottom:1089.870000px;}
.y8e{bottom:1102.290000px;}
.y5a{bottom:1102.305000px;}
.y125{bottom:1102.311000px;}
.yda{bottom:1102.359000px;}
.y23{bottom:1109.130000px;}
.y8d{bottom:1121.655000px;}
.y59{bottom:1121.662500px;}
.y124{bottom:1121.665500px;}
.yd9{bottom:1121.689500px;}
.y15e{bottom:1121.730000px;}
.y4{bottom:1135.992000px;}
.y22{bottom:1138.110000px;}
.y18e{bottom:1138.290000px;}
.y58{bottom:1141.020000px;}
.y3{bottom:1153.578000px;}
.y2{bottom:1175.040000px;}
.y1{bottom:1193.400000px;}
.y21{bottom:1196.460000px;}
.y18d{bottom:1196.632500px;}
.h3{height:40.851562px;}
.h9{height:49.936641px;}
.h8{height:51.998203px;}
.hb{height:57.636562px;}
.hc{height:57.945000px;}
.h2{height:59.439023px;}
.h7{height:61.189805px;}
.hf{height:61.423863px;}
.he{height:63.210938px;}
.h5{height:65.884219px;}
.ha{height:68.267813px;}
.h6{height:71.613281px;}
.h4{height:98.051133px;}
.hd{height:268.761797px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:41.434500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:63.900000px;}
.xf{left:85.140000px;}
.xd{left:90.936000px;}
.xc{left:105.336000px;}
.x4{left:107.136000px;}
.x13{left:117.936000px;}
.x11{left:127.656000px;}
.xe{left:133.416000px;}
.x10{left:148.896000px;}
.x1{left:159.510000px;}
.x5{left:182.730000px;}
.x12{left:251.439000px;}
.x2{left:261.118500px;}
.x3{left:263.073000px;}
.x8{left:329.655000px;}
.x7{left:337.731000px;}
.x6{left:347.713500px;}
.xa{left:622.905000px;}
.x9{left:629.385000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3b{letter-spacing:-0.853333pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls47{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.549333pt;}
.lsb{letter-spacing:-0.412267pt;}
.ls4e{letter-spacing:-0.368533pt;}
.ls30{letter-spacing:-0.368000pt;}
.ls28{letter-spacing:-0.365867pt;}
.ls37{letter-spacing:-0.286933pt;}
.ls29{letter-spacing:-0.235733pt;}
.ls23{letter-spacing:-0.234667pt;}
.ls48{letter-spacing:-0.214933pt;}
.ls3d{letter-spacing:-0.207467pt;}
.ls44{letter-spacing:-0.097067pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls4c{letter-spacing:-0.092267pt;}
.ls1d{letter-spacing:-0.090667pt;}
.ls33{letter-spacing:-0.069333pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.058667pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.051733pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls40{letter-spacing:-0.038400pt;}
.ls17{letter-spacing:-0.037333pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.026667pt;}
.ls1f{letter-spacing:-0.021333pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls12{letter-spacing:-0.010667pt;}
.ls13{letter-spacing:-0.005333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.005333pt;}
.ls18{letter-spacing:0.010667pt;}
.ls11{letter-spacing:0.011733pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls46{letter-spacing:0.020267pt;}
.ls1c{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.026667pt;}
.ls3c{letter-spacing:0.032000pt;}
.ls2f{letter-spacing:0.037333pt;}
.ls32{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.043733pt;}
.ls3a{letter-spacing:0.053333pt;}
.ls4a{letter-spacing:0.061333pt;}
.ls10{letter-spacing:0.062293pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.066667pt;}
.ls39{letter-spacing:0.085333pt;}
.ls42{letter-spacing:0.089600pt;}
.ls36{letter-spacing:0.094933pt;}
.ls2c{letter-spacing:0.130667pt;}
.ls2a{letter-spacing:0.138133pt;}
.ls34{letter-spacing:0.138667pt;}
.lsd{letter-spacing:0.149333pt;}
.ls0{letter-spacing:0.154667pt;}
.ls45{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.169067pt;}
.ls1{letter-spacing:0.173867pt;}
.ls3{letter-spacing:0.194773pt;}
.ls6{letter-spacing:0.218667pt;}
.lsc{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.233600pt;}
.ls2b{letter-spacing:0.235733pt;}
.ls4b{letter-spacing:0.271467pt;}
.ls49{letter-spacing:0.272000pt;}
.ls38{letter-spacing:0.273920pt;}
.ls2e{letter-spacing:0.274133pt;}
.ls41{letter-spacing:0.281600pt;}
.ls24{letter-spacing:0.282667pt;}
.ls31{letter-spacing:0.293333pt;}
.ls43{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.431573pt;}
.ls26{letter-spacing:0.560213pt;}
.ls4d{letter-spacing:0.730667pt;}
.ls3e{letter-spacing:3.686400pt;}
.ls3f{letter-spacing:4.326400pt;}
.ws23{word-spacing:-33.029120pt;}
.ws1{word-spacing:-25.922560pt;}
.ws2{word-spacing:-19.237120pt;}
.ws3{word-spacing:-15.621120pt;}
.ws24{word-spacing:-15.206400pt;}
.ws5{word-spacing:-14.528000pt;}
.ws27{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.ws96{word-spacing:-13.246933pt;}
.ws28{word-spacing:-13.236267pt;}
.ws8e{word-spacing:-13.227733pt;}
.wsd9{word-spacing:-13.225600pt;}
.ws8b{word-spacing:-13.189333pt;}
.ws97{word-spacing:-13.092267pt;}
.ws8d{word-spacing:-13.091733pt;}
.ws8c{word-spacing:-13.084267pt;}
.wsbe{word-spacing:-13.020267pt;}
.wsf5{word-spacing:-13.017600pt;}
.wsf1{word-spacing:-13.014933pt;}
.ws1f{word-spacing:-12.997333pt;}
.ws7e{word-spacing:-12.974933pt;}
.wsf2{word-spacing:-12.973867pt;}
.ws20{word-spacing:-12.953600pt;}
.wsd4{word-spacing:-12.915200pt;}
.ws21{word-spacing:-12.897067pt;}
.ws9{word-spacing:-12.894613pt;}
.ws25{word-spacing:-12.862933pt;}
.wsf3{word-spacing:-12.861333pt;}
.ws7f{word-spacing:-12.857600pt;}
.wsd5{word-spacing:-12.856533pt;}
.wsc0{word-spacing:-12.746133pt;}
.ws80{word-spacing:-12.717867pt;}
.wsbd{word-spacing:-12.666667pt;}
.ws95{word-spacing:-12.585600pt;}
.wsf4{word-spacing:-12.585067pt;}
.ws26{word-spacing:-12.185600pt;}
.ws0{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.920000pt;}
.ws7{word-spacing:-11.905067pt;}
.ws6{word-spacing:-11.855467pt;}
.ws1d{word-spacing:-11.187200pt;}
.ws15{word-spacing:-0.768000pt;}
.ws1b{word-spacing:-0.586667pt;}
.ws1c{word-spacing:-0.538667pt;}
.ws17{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.352000pt;}
.wse{word-spacing:-0.346667pt;}
.ws13{word-spacing:-0.293333pt;}
.ws1a{word-spacing:-0.234667pt;}
.ws18{word-spacing:-0.096000pt;}
.wsb{word-spacing:0.000000pt;}
.ws12{word-spacing:0.117333pt;}
.ws4d{word-spacing:0.138667pt;}
.ws1e{word-spacing:0.158423pt;}
.ws22{word-spacing:0.160000pt;}
.ws16{word-spacing:0.176000pt;}
.ws19{word-spacing:0.224000pt;}
.wsf{word-spacing:0.277333pt;}
.ws10{word-spacing:0.565333pt;}
.wsd{word-spacing:0.693333pt;}
.ws11{word-spacing:0.928000pt;}
.wsc{word-spacing:1.381333pt;}
.wse3{word-spacing:3.685333pt;}
.wsbc{word-spacing:3.696000pt;}
.ws3f{word-spacing:3.712000pt;}
.ws40{word-spacing:3.770667pt;}
.wsd3{word-spacing:3.888000pt;}
.ws2b{word-spacing:4.122667pt;}
.ws5e{word-spacing:4.181333pt;}
.ws29{word-spacing:4.240000pt;}
.ws2c{word-spacing:4.298667pt;}
.ws4f{word-spacing:4.325333pt;}
.wsa0{word-spacing:4.341333pt;}
.ws2a{word-spacing:4.357333pt;}
.wsb1{word-spacing:4.416000pt;}
.ws90{word-spacing:4.602667pt;}
.wscb{word-spacing:4.688000pt;}
.wscd{word-spacing:4.725333pt;}
.wse2{word-spacing:4.752000pt;}
.ws59{word-spacing:4.768000pt;}
.ws8f{word-spacing:4.826667pt;}
.ws6c{word-spacing:4.837333pt;}
.ws56{word-spacing:4.885333pt;}
.ws58{word-spacing:4.944000pt;}
.ws6a{word-spacing:4.965333pt;}
.ws57{word-spacing:5.002667pt;}
.ws5a{word-spacing:5.061333pt;}
.ws55{word-spacing:5.114667pt;}
.ws83{word-spacing:5.360000pt;}
.ws6b{word-spacing:5.418667pt;}
.wsae{word-spacing:5.477333pt;}
.ws44{word-spacing:5.536000pt;}
.ws84{word-spacing:5.594667pt;}
.wsa5{word-spacing:5.605333pt;}
.ws85{word-spacing:5.653333pt;}
.ws81{word-spacing:5.712000pt;}
.ws53{word-spacing:6.064000pt;}
.ws54{word-spacing:6.122667pt;}
.ws41{word-spacing:6.181333pt;}
.ws43{word-spacing:6.240000pt;}
.ws52{word-spacing:6.245333pt;}
.ws42{word-spacing:6.298667pt;}
.wsb5{word-spacing:6.357333pt;}
.ws45{word-spacing:6.496000pt;}
.ws82{word-spacing:6.570667pt;}
.wsc5{word-spacing:6.714667pt;}
.wsc6{word-spacing:6.773333pt;}
.ws86{word-spacing:6.832000pt;}
.wsa1{word-spacing:6.885333pt;}
.ws88{word-spacing:6.890667pt;}
.ws87{word-spacing:6.949333pt;}
.wsc4{word-spacing:7.008000pt;}
.ws98{word-spacing:7.301333pt;}
.ws99{word-spacing:7.360000pt;}
.ws92{word-spacing:7.477333pt;}
.wse1{word-spacing:7.525333pt;}
.ws9a{word-spacing:7.536000pt;}
.ws76{word-spacing:8.005333pt;}
.wsb9{word-spacing:8.064000pt;}
.ws91{word-spacing:8.128000pt;}
.ws74{word-spacing:8.186667pt;}
.ws4e{word-spacing:8.218667pt;}
.wscc{word-spacing:8.597333pt;}
.ws94{word-spacing:8.656000pt;}
.ws93{word-spacing:8.714667pt;}
.ws72{word-spacing:8.773333pt;}
.wsc1{word-spacing:8.805333pt;}
.ws73{word-spacing:8.832000pt;}
.ws75{word-spacing:8.890667pt;}
.ws63{word-spacing:9.242667pt;}
.wsc2{word-spacing:9.301333pt;}
.ws64{word-spacing:9.360000pt;}
.wsa6{word-spacing:9.418667pt;}
.ws89{word-spacing:9.445333pt;}
.ws62{word-spacing:9.477333pt;}
.ws8a{word-spacing:9.536000pt;}
.ws6f{word-spacing:9.893333pt;}
.wsc8{word-spacing:9.952000pt;}
.ws5f{word-spacing:10.010667pt;}
.ws60{word-spacing:10.069333pt;}
.ws7d{word-spacing:10.112000pt;}
.ws61{word-spacing:10.128000pt;}
.ws70{word-spacing:10.186667pt;}
.wsc7{word-spacing:10.192000pt;}
.ws7a{word-spacing:10.538667pt;}
.wsa7{word-spacing:10.597333pt;}
.ws6e{word-spacing:10.656000pt;}
.ws65{word-spacing:10.714667pt;}
.ws7c{word-spacing:10.725333pt;}
.ws6d{word-spacing:10.773333pt;}
.ws46{word-spacing:10.832000pt;}
.wsc3{word-spacing:11.082667pt;}
.ws30{word-spacing:11.189333pt;}
.ws31{word-spacing:11.248000pt;}
.ws2f{word-spacing:11.306667pt;}
.ws2e{word-spacing:11.365333pt;}
.ws2d{word-spacing:11.424000pt;}
.wsb2{word-spacing:11.520000pt;}
.wsab{word-spacing:11.664000pt;}
.wsb7{word-spacing:11.776000pt;}
.wsb4{word-spacing:11.834667pt;}
.ws47{word-spacing:11.888000pt;}
.wsb8{word-spacing:11.893333pt;}
.ws7b{word-spacing:11.914667pt;}
.ws4c{word-spacing:11.952000pt;}
.wsa9{word-spacing:12.005333pt;}
.wsa8{word-spacing:12.010667pt;}
.wse0{word-spacing:12.032000pt;}
.wsaa{word-spacing:12.069333pt;}
.wsb6{word-spacing:12.128000pt;}
.wsad{word-spacing:12.421333pt;}
.wsac{word-spacing:12.544000pt;}
.ws48{word-spacing:12.602667pt;}
.ws4a{word-spacing:12.634667pt;}
.ws49{word-spacing:12.645333pt;}
.ws4b{word-spacing:12.661333pt;}
.wsbf{word-spacing:13.072000pt;}
.ws5d{word-spacing:13.130667pt;}
.ws5c{word-spacing:13.248000pt;}
.ws5b{word-spacing:13.306667pt;}
.wse4{word-spacing:13.365333pt;}
.wsb3{word-spacing:13.717333pt;}
.ws33{word-spacing:13.893333pt;}
.ws35{word-spacing:13.952000pt;}
.ws71{word-spacing:14.016000pt;}
.ws32{word-spacing:14.368000pt;}
.ws34{word-spacing:14.485333pt;}
.ws36{word-spacing:14.544000pt;}
.wsbb{word-spacing:14.565333pt;}
.ws37{word-spacing:14.602667pt;}
.wsb0{word-spacing:15.013333pt;}
.wsba{word-spacing:15.077333pt;}
.ws79{word-spacing:15.130667pt;}
.wsaf{word-spacing:15.162667pt;}
.ws78{word-spacing:15.189333pt;}
.ws77{word-spacing:15.248000pt;}
.wsf0{word-spacing:15.306667pt;}
.wsca{word-spacing:15.664000pt;}
.wsd8{word-spacing:15.722667pt;}
.ws51{word-spacing:15.760000pt;}
.ws50{word-spacing:15.781333pt;}
.wsd2{word-spacing:15.840000pt;}
.wsc9{word-spacing:15.898667pt;}
.wsd0{word-spacing:16.250667pt;}
.wscf{word-spacing:16.426667pt;}
.wsd1{word-spacing:16.485333pt;}
.wsce{word-spacing:16.544000pt;}
.ws68{word-spacing:17.546667pt;}
.wsdf{word-spacing:17.664000pt;}
.ws69{word-spacing:17.722667pt;}
.ws66{word-spacing:17.781333pt;}
.ws67{word-spacing:17.840000pt;}
.wse5{word-spacing:18.368000pt;}
.wsda{word-spacing:18.432000pt;}
.wsdd{word-spacing:18.842667pt;}
.wsdb{word-spacing:18.960000pt;}
.wsdc{word-spacing:19.018667pt;}
.wsde{word-spacing:19.077333pt;}
.ws3e{word-spacing:19.546667pt;}
.ws3c{word-spacing:19.605333pt;}
.ws3b{word-spacing:19.664000pt;}
.ws3d{word-spacing:19.685333pt;}
.ws3a{word-spacing:19.722667pt;}
.ws9f{word-spacing:20.256000pt;}
.ws9d{word-spacing:20.784000pt;}
.ws9e{word-spacing:20.901333pt;}
.wsd6{word-spacing:20.960000pt;}
.ws9c{word-spacing:20.965333pt;}
.ws9b{word-spacing:20.997333pt;}
.wsd7{word-spacing:21.018667pt;}
.wsef{word-spacing:21.376000pt;}
.wsed{word-spacing:21.552000pt;}
.wsec{word-spacing:21.605333pt;}
.wsee{word-spacing:21.610667pt;}
.wseb{word-spacing:21.669333pt;}
.ws39{word-spacing:23.317333pt;}
.ws38{word-spacing:23.493333pt;}
.wse9{word-spacing:24.848000pt;}
.wsea{word-spacing:25.258667pt;}
.wse6{word-spacing:25.376000pt;}
.wse7{word-spacing:25.434667pt;}
.wse8{word-spacing:25.493333pt;}
.wsa3{word-spacing:26.672000pt;}
.wsa2{word-spacing:27.322667pt;}
.wsa4{word-spacing:27.381333pt;}
._2{margin-left:-0.984960pt;}
._0{width:0.980276pt;}
._1{width:1.978201pt;}
._5{width:3.612266pt;}
._4{width:4.515200pt;}
._9{width:5.438824pt;}
._7{width:6.625068pt;}
._8{width:7.755732pt;}
._a{width:8.818132pt;}
._d{width:9.732716pt;}
._3{width:10.624000pt;}
._f{width:11.717414pt;}
._6{width:13.439466pt;}
._e{width:14.461463pt;}
._b{width:15.404800pt;}
._c{width:16.554104pt;}
._10{width:18.243858pt;}
._12{width:19.999817pt;}
._13{width:21.432556pt;}
._11{width:23.201296pt;}
._18{width:25.085764pt;}
._15{width:26.463161pt;}
._14{width:27.492525pt;}
._17{width:28.498921pt;}
._16{width:29.600522pt;}
.fs5{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:274.560000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:2.880000pt;}
.y8c{bottom:72.382667pt;}
.y15d{bottom:74.240000pt;}
.y123{bottom:76.160000pt;}
.y10d{bottom:79.684000pt;}
.y170{bottom:80.000000pt;}
.ybf{bottom:83.840000pt;}
.y55{bottom:84.320000pt;}
.y8b{bottom:89.586667pt;}
.y15c{bottom:91.520000pt;}
.y122{bottom:93.280000pt;}
.y10c{bottom:96.964000pt;}
.y16f{bottom:97.120000pt;}
.ybe{bottom:101.120000pt;}
.y54{bottom:101.600000pt;}
.y8a{bottom:106.790667pt;}
.y121{bottom:110.560000pt;}
.y16e{bottom:114.400000pt;}
.ybd{bottom:118.240000pt;}
.y53{bottom:118.720000pt;}
.y15b{bottom:122.080000pt;}
.y10b{bottom:122.404000pt;}
.y89{bottom:123.994667pt;}
.y120{bottom:127.680000pt;}
.y16d{bottom:131.520000pt;}
.ybc{bottom:135.360000pt;}
.y52{bottom:136.000000pt;}
.y15a{bottom:139.200000pt;}
.y88{bottom:141.198667pt;}
.y11f{bottom:144.986667pt;}
.y16c{bottom:148.826667pt;}
.ybb{bottom:152.666667pt;}
.y51{bottom:153.146667pt;}
.y10a{bottom:154.270667pt;}
.y159{bottom:156.346667pt;}
.y87{bottom:158.402667pt;}
.y11e{bottom:162.106667pt;}
.y16b{bottom:165.946667pt;}
.yba{bottom:169.786667pt;}
.y50{bottom:170.426667pt;}
.y109{bottom:171.470667pt;}
.y158{bottom:173.626667pt;}
.y86{bottom:175.606667pt;}
.y11d{bottom:179.386667pt;}
.y16a{bottom:183.226667pt;}
.yb9{bottom:187.066667pt;}
.y4f{bottom:187.546667pt;}
.y108{bottom:188.670667pt;}
.y157{bottom:190.746667pt;}
.y85{bottom:192.806667pt;}
.y11c{bottom:196.506667pt;}
.y169{bottom:200.346667pt;}
.yb8{bottom:204.186667pt;}
.y4e{bottom:204.826667pt;}
.y107{bottom:205.870667pt;}
.y156{bottom:208.026667pt;}
.y84{bottom:210.006667pt;}
.y11b{bottom:213.786667pt;}
.yd8{bottom:217.626667pt;}
.yb7{bottom:221.466667pt;}
.y4d{bottom:221.946667pt;}
.y106{bottom:223.070667pt;}
.y155{bottom:225.146667pt;}
.y83{bottom:227.206667pt;}
.y192{bottom:229.306667pt;}
.y11a{bottom:230.906667pt;}
.yd7{bottom:234.746667pt;}
.yb6{bottom:238.586667pt;}
.y4c{bottom:239.226667pt;}
.y105{bottom:240.265333pt;}
.y154{bottom:242.426667pt;}
.y82{bottom:244.406667pt;}
.y191{bottom:246.426667pt;}
.y119{bottom:248.026667pt;}
.yd6{bottom:252.026667pt;}
.yb5{bottom:255.866667pt;}
.y104{bottom:257.460000pt;}
.y14e{bottom:261.466667pt;}
.y81{bottom:261.606667pt;}
.y190{bottom:263.706667pt;}
.y4b{bottom:264.986667pt;}
.y118{bottom:265.306667pt;}
.y153{bottom:267.866667pt;}
.yd5{bottom:269.146667pt;}
.yb4{bottom:272.986667pt;}
.y103{bottom:274.654667pt;}
.y20{bottom:278.106667pt;}
.y14d{bottom:278.586667pt;}
.y80{bottom:278.806667pt;}
.y18f{bottom:280.826667pt;}
.y117{bottom:282.426667pt;}
.yd4{bottom:286.426667pt;}
.yb3{bottom:290.266667pt;}
.y102{bottom:291.849333pt;}
.y14c{bottom:295.866667pt;}
.y7f{bottom:296.006667pt;}
.y1f{bottom:296.026667pt;}
.y4a{bottom:297.946667pt;}
.y116{bottom:299.706667pt;}
.yd3{bottom:303.546667pt;}
.yb2{bottom:307.386667pt;}
.y101{bottom:309.044000pt;}
.y14b{bottom:312.986667pt;}
.y7e{bottom:313.217333pt;}
.y49{bottom:315.226667pt;}
.y115{bottom:316.826667pt;}
.y168{bottom:320.666667pt;}
.yb1{bottom:324.666667pt;}
.y100{bottom:326.238667pt;}
.y14a{bottom:330.266667pt;}
.y7d{bottom:330.428000pt;}
.y48{bottom:332.346667pt;}
.yd2{bottom:334.106667pt;}
.y167{bottom:337.946667pt;}
.yb0{bottom:341.786667pt;}
.yff{bottom:343.433333pt;}
.y149{bottom:347.386667pt;}
.y7c{bottom:347.638667pt;}
.y47{bottom:349.626667pt;}
.yd1{bottom:351.226667pt;}
.y166{bottom:355.066667pt;}
.yfe{bottom:360.628000pt;}
.y7b{bottom:364.849333pt;}
.y46{bottom:366.786667pt;}
.yd0{bottom:368.546667pt;}
.yaf{bottom:372.386667pt;}
.y148{bottom:377.730667pt;}
.yfd{bottom:377.908000pt;}
.y7a{bottom:382.060000pt;}
.y45{bottom:384.066667pt;}
.ycf{bottom:385.666667pt;}
.yae{bottom:389.506667pt;}
.y147{bottom:394.930667pt;}
.yfc{bottom:395.104000pt;}
.y79{bottom:399.270667pt;}
.y44{bottom:401.186667pt;}
.yce{bottom:402.946667pt;}
.yad{bottom:406.786667pt;}
.y1e{bottom:409.026667pt;}
.y146{bottom:412.130667pt;}
.yfb{bottom:412.300000pt;}
.y78{bottom:416.481333pt;}
.y43{bottom:418.466667pt;}
.ycd{bottom:420.066667pt;}
.yac{bottom:423.906667pt;}
.y1d{bottom:424.546667pt;}
.y145{bottom:429.330667pt;}
.yfa{bottom:429.496000pt;}
.y77{bottom:433.692000pt;}
.y42{bottom:435.586667pt;}
.ycc{bottom:437.346667pt;}
.y1c{bottom:440.226667pt;}
.yab{bottom:441.186667pt;}
.y144{bottom:446.530667pt;}
.yf9{bottom:446.692000pt;}
.y76{bottom:450.902667pt;}
.y41{bottom:452.866667pt;}
.ycb{bottom:454.466667pt;}
.y1b{bottom:455.906667pt;}
.y18c{bottom:456.573333pt;}
.yaa{bottom:458.306667pt;}
.y143{bottom:463.730667pt;}
.yf8{bottom:463.888000pt;}
.y75{bottom:468.113333pt;}
.y40{bottom:469.986667pt;}
.y1a{bottom:471.426667pt;}
.yca{bottom:471.746667pt;}
.y18b{bottom:473.761333pt;}
.ya9{bottom:475.586667pt;}
.y142{bottom:480.930667pt;}
.yf7{bottom:481.084000pt;}
.y74{bottom:485.324000pt;}
.y19{bottom:487.106667pt;}
.y3f{bottom:487.266667pt;}
.yc9{bottom:488.866667pt;}
.y18a{bottom:490.949333pt;}
.y165{bottom:492.706667pt;}
.y141{bottom:498.133333pt;}
.yf6{bottom:498.280000pt;}
.y73{bottom:502.534667pt;}
.y18{bottom:502.786667pt;}
.y3e{bottom:504.386667pt;}
.ya8{bottom:505.986667pt;}
.y189{bottom:508.137333pt;}
.y164{bottom:509.986667pt;}
.y140{bottom:515.336000pt;}
.yf5{bottom:515.476000pt;}
.y17{bottom:518.466667pt;}
.y3d{bottom:521.666667pt;}
.ya7{bottom:523.266667pt;}
.y188{bottom:525.325333pt;}
.y72{bottom:527.974667pt;}
.y13f{bottom:532.538667pt;}
.yf4{bottom:532.672000pt;}
.y16{bottom:533.986667pt;}
.y3c{bottom:538.786667pt;}
.ya6{bottom:540.386667pt;}
.y187{bottom:542.513333pt;}
.y15{bottom:549.666667pt;}
.y13e{bottom:549.741333pt;}
.yf3{bottom:549.868000pt;}
.y3b{bottom:555.906667pt;}
.ya5{bottom:557.666667pt;}
.y186{bottom:559.701333pt;}
.y71{bottom:559.814667pt;}
.y13d{bottom:566.944000pt;}
.yf2{bottom:567.064000pt;}
.y14{bottom:573.186667pt;}
.ya4{bottom:574.786667pt;}
.y185{bottom:576.889333pt;}
.y70{bottom:577.004000pt;}
.y13c{bottom:584.146667pt;}
.yf1{bottom:584.260000pt;}
.y3a{bottom:590.333333pt;}
.ya3{bottom:592.093333pt;}
.y6f{bottom:594.193333pt;}
.y184{bottom:594.196000pt;}
.y13b{bottom:601.349333pt;}
.yf0{bottom:601.456000pt;}
.y39{bottom:607.613333pt;}
.ya2{bottom:609.213333pt;}
.y183{bottom:611.380000pt;}
.y6e{bottom:611.382667pt;}
.y13{bottom:616.893333pt;}
.y13a{bottom:618.552000pt;}
.yef{bottom:618.652000pt;}
.y38{bottom:624.733333pt;}
.ya1{bottom:626.493333pt;}
.y182{bottom:628.564000pt;}
.y6d{bottom:628.572000pt;}
.y12{bottom:632.573333pt;}
.y139{bottom:635.754667pt;}
.yee{bottom:635.848000pt;}
.y37{bottom:642.013333pt;}
.ya0{bottom:643.613333pt;}
.y181{bottom:645.748000pt;}
.y6c{bottom:645.761333pt;}
.y11{bottom:648.093333pt;}
.y138{bottom:652.957333pt;}
.yed{bottom:653.052000pt;}
.y163{bottom:657.053333pt;}
.y36{bottom:659.133333pt;}
.y9f{bottom:660.893333pt;}
.y180{bottom:662.932000pt;}
.y6b{bottom:662.950667pt;}
.y10{bottom:663.773333pt;}
.y137{bottom:670.160000pt;}
.yec{bottom:670.256000pt;}
.y162{bottom:674.173333pt;}
.y35{bottom:676.413333pt;}
.y9e{bottom:678.013333pt;}
.yf{bottom:679.453333pt;}
.y17f{bottom:680.116000pt;}
.y6a{bottom:680.140000pt;}
.y136{bottom:687.364000pt;}
.yeb{bottom:687.460000pt;}
.y161{bottom:691.293333pt;}
.y34{bottom:693.533333pt;}
.ye{bottom:694.973333pt;}
.y9d{bottom:695.293333pt;}
.y69{bottom:697.329333pt;}
.y17e{bottom:697.332000pt;}
.y135{bottom:704.568000pt;}
.yea{bottom:704.664000pt;}
.y160{bottom:708.573333pt;}
.yd{bottom:710.653333pt;}
.y33{bottom:710.813333pt;}
.yc8{bottom:712.413333pt;}
.y68{bottom:714.518667pt;}
.y17d{bottom:714.548000pt;}
.y134{bottom:721.772000pt;}
.ye9{bottom:721.868000pt;}
.y9c{bottom:725.693333pt;}
.yc{bottom:726.333333pt;}
.y32{bottom:727.933333pt;}
.yc7{bottom:729.693333pt;}
.y67{bottom:731.708000pt;}
.y17c{bottom:731.764000pt;}
.y133{bottom:738.976000pt;}
.ye8{bottom:739.072000pt;}
.yb{bottom:741.853333pt;}
.y9b{bottom:742.973333pt;}
.y31{bottom:745.213333pt;}
.yc6{bottom:746.813333pt;}
.y66{bottom:748.897333pt;}
.y17b{bottom:748.980000pt;}
.y132{bottom:756.180000pt;}
.ye7{bottom:756.276000pt;}
.ya{bottom:757.533333pt;}
.y9a{bottom:760.093333pt;}
.y30{bottom:762.333333pt;}
.yc5{bottom:763.933333pt;}
.y65{bottom:766.086667pt;}
.y17a{bottom:766.196000pt;}
.y131{bottom:773.384000pt;}
.ye6{bottom:773.480000pt;}
.y99{bottom:777.373333pt;}
.y2f{bottom:779.613333pt;}
.y9{bottom:781.053333pt;}
.y114{bottom:781.213333pt;}
.y179{bottom:783.412000pt;}
.y130{bottom:790.588000pt;}
.ye5{bottom:790.684000pt;}
.y64{bottom:792.006667pt;}
.y98{bottom:794.493333pt;}
.y2e{bottom:796.773333pt;}
.y113{bottom:798.373333pt;}
.y178{bottom:800.612000pt;}
.y12f{bottom:807.792000pt;}
.ye4{bottom:807.888000pt;}
.y97{bottom:811.813333pt;}
.y2d{bottom:813.893333pt;}
.y112{bottom:815.653333pt;}
.y177{bottom:817.812000pt;}
.y12e{bottom:824.996000pt;}
.y63{bottom:825.006667pt;}
.ye3{bottom:825.092000pt;}
.yc4{bottom:828.933333pt;}
.y8{bottom:828.946667pt;}
.y96{bottom:829.093333pt;}
.y2c{bottom:831.173333pt;}
.y152{bottom:832.773333pt;}
.y176{bottom:835.012000pt;}
.y12d{bottom:842.200000pt;}
.y62{bottom:842.206667pt;}
.ye2{bottom:842.372000pt;}
.yc3{bottom:846.213333pt;}
.y7{bottom:847.013333pt;}
.y2b{bottom:848.293333pt;}
.y151{bottom:850.053333pt;}
.y175{bottom:852.212000pt;}
.y95{bottom:859.400000pt;}
.y12c{bottom:859.404000pt;}
.y61{bottom:859.406667pt;}
.ye1{bottom:859.545333pt;}
.y111{bottom:863.333333pt;}
.y2a{bottom:865.573333pt;}
.y174{bottom:869.412000pt;}
.yc2{bottom:876.526667pt;}
.y94{bottom:876.600000pt;}
.y60{bottom:876.606667pt;}
.y12b{bottom:876.608000pt;}
.ye0{bottom:876.718667pt;}
.y110{bottom:880.613333pt;}
.y29{bottom:882.693333pt;}
.y173{bottom:886.612000pt;}
.y6{bottom:892.453333pt;}
.yc1{bottom:893.753333pt;}
.y93{bottom:893.800000pt;}
.y5f{bottom:893.806667pt;}
.y12a{bottom:893.812000pt;}
.ydf{bottom:893.892000pt;}
.y10f{bottom:897.733333pt;}
.y28{bottom:899.973333pt;}
.y172{bottom:903.812000pt;}
.yc0{bottom:910.980000pt;}
.y92{bottom:911.000000pt;}
.y5e{bottom:911.006667pt;}
.y129{bottom:911.016000pt;}
.yde{bottom:911.065333pt;}
.y10e{bottom:915.013333pt;}
.y27{bottom:917.093333pt;}
.y91{bottom:928.200000pt;}
.y5d{bottom:928.206667pt;}
.y128{bottom:928.220000pt;}
.ydd{bottom:928.238667pt;}
.y171{bottom:929.572000pt;}
.y150{bottom:932.133333pt;}
.y26{bottom:934.373333pt;}
.y5{bottom:934.853333pt;}
.y90{bottom:945.400000pt;}
.ydc{bottom:945.412000pt;}
.y5c{bottom:945.413333pt;}
.y127{bottom:945.424000pt;}
.y56{bottom:948.293333pt;}
.y14f{bottom:949.413333pt;}
.y25{bottom:951.493333pt;}
.y8f{bottom:962.600000pt;}
.y5b{bottom:962.620000pt;}
.y126{bottom:962.628000pt;}
.ydb{bottom:962.692000pt;}
.y15f{bottom:962.693333pt;}
.y24{bottom:968.773333pt;}
.y8e{bottom:979.813333pt;}
.y5a{bottom:979.826667pt;}
.y125{bottom:979.832000pt;}
.yda{bottom:979.874667pt;}
.y23{bottom:985.893333pt;}
.y8d{bottom:997.026667pt;}
.y59{bottom:997.033333pt;}
.y124{bottom:997.036000pt;}
.yd9{bottom:997.057333pt;}
.y15e{bottom:997.093333pt;}
.y4{bottom:1009.770667pt;}
.y22{bottom:1011.653333pt;}
.y18e{bottom:1011.813333pt;}
.y58{bottom:1014.240000pt;}
.y3{bottom:1025.402667pt;}
.y2{bottom:1044.480000pt;}
.y1{bottom:1060.800000pt;}
.y21{bottom:1063.520000pt;}
.y18d{bottom:1063.673333pt;}
.h3{height:36.312500pt;}
.h9{height:44.388125pt;}
.h8{height:46.220625pt;}
.hb{height:51.232500pt;}
.hc{height:51.506667pt;}
.h2{height:52.834688pt;}
.h7{height:54.390938pt;}
.hf{height:54.598989pt;}
.he{height:56.187500pt;}
.h5{height:58.563750pt;}
.ha{height:60.682500pt;}
.h6{height:63.656250pt;}
.h4{height:87.156562pt;}
.hd{height:238.899375pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:36.830667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:56.800000pt;}
.xf{left:75.680000pt;}
.xd{left:80.832000pt;}
.xc{left:93.632000pt;}
.x4{left:95.232000pt;}
.x13{left:104.832000pt;}
.x11{left:113.472000pt;}
.xe{left:118.592000pt;}
.x10{left:132.352000pt;}
.x1{left:141.786667pt;}
.x5{left:162.426667pt;}
.x12{left:223.501333pt;}
.x2{left:232.105333pt;}
.x3{left:233.842667pt;}
.x8{left:293.026667pt;}
.x7{left:300.205333pt;}
.x6{left:309.078667pt;}
.xa{left:553.693333pt;}
.x9{left:559.453333pt;}
}




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