
    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_9b9ec13b50075098b7b4d361.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_cc4b42cfd1d665cc9ba7f1a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990000;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_6efec18165b7b84cb7e19323.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_1f6cb2052aac1e20304e8f52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_a066532e292ad24056644207.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_3389a951c9970aea0fb2da2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_eaaf33aab4c93176e8cd256d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_836eb065112871c06fe9ca47.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693359;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_cabe5dcf7428c7dd116b807e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.115234;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_5cae3ab7619b42f8718d8985.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_e581cb2d0b41d155ae4f6457.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_f23f2ec489ca497cf5a0ece2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.693359;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_2506e284a193ce76ca36cd58.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.730957;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_f41cdd5adf7e784ccea66a9c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_7bfe1513cd1a8c95e78ec658.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_921c2a8914220b235fd6077b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_01accebec65380842ef76973.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_ab8a0ec97668e0c410365449.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_7368e991bcbf9519a3a1a1ac.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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_6536b0fe393855c791ca2c34.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.104004;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_47cdaa23ad545a3ad7e9f479.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.112305;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_2d10122fc8219e272abc300e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;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_25ffaa4691e1a40cb9605df4.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_5ba5d37cc1fef0ac50e29c78.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.990000;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:ff19;src:url('chunks/assets/font_2118155e8e22cc6de8fc8beb.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.929000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v1{vertical-align:22.768068px;}
.v2{vertical-align:27.321681px;}
.ls3{letter-spacing:-2.619540px;}
.ls8{letter-spacing:-2.380224px;}
.ls13{letter-spacing:-2.367288px;}
.lsd{letter-spacing:-2.166780px;}
.lsf{letter-spacing:-2.102100px;}
.ls11{letter-spacing:-1.655808px;}
.ls5{letter-spacing:-0.291060px;}
.ls17{letter-spacing:-0.038808px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000045px;}
.lsc{letter-spacing:0.097020px;}
.ls7{letter-spacing:0.161700px;}
.ls4{letter-spacing:0.200508px;}
.ls10{letter-spacing:0.349272px;}
.ls12{letter-spacing:0.808500px;}
.ls14{letter-spacing:0.866712px;}
.lsb{letter-spacing:1.196580px;}
.ls19{letter-spacing:1.235388px;}
.lse{letter-spacing:1.338876px;}
.lsa{letter-spacing:1.384152px;}
.ls15{letter-spacing:1.649340px;}
.ls9{letter-spacing:1.843380px;}
.ls6{letter-spacing:2.108568px;}
.ls16{letter-spacing:2.231460px;}
.ls2{letter-spacing:2.270268px;}
.ls1{letter-spacing:2.490180px;}
.ls18{letter-spacing:2.884728px;}
.ls1a{letter-spacing:8.994180px;}
.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;}
}
.ws31{word-spacing:-44.999999px;}
.ws3f{word-spacing:-29.999999px;}
.ws25{word-spacing:-28.357424px;}
.ws42{word-spacing:-28.350849px;}
.ws60{word-spacing:-28.350828px;}
.ws27{word-spacing:-28.350749px;}
.ws43{word-spacing:-28.349662px;}
.ws2d{word-spacing:-28.349543px;}
.ws26{word-spacing:-28.349527px;}
.ws41{word-spacing:-28.349516px;}
.ws5f{word-spacing:-28.349437px;}
.wsde{word-spacing:-23.337890px;}
.wse1{word-spacing:-20.003906px;}
.wse0{word-spacing:-18.000000px;}
.ws23{word-spacing:-17.107860px;}
.ws16{word-spacing:-16.887948px;}
.ws52{word-spacing:-16.669921px;}
.ws19{word-spacing:-15.484392px;}
.ws4b{word-spacing:-15.022840px;}
.ws56{word-spacing:-15.022828px;}
.ws4c{word-spacing:-15.022751px;}
.ws55{word-spacing:-15.022737px;}
.ws5d{word-spacing:-15.022732px;}
.ws3a{word-spacing:-15.022705px;}
.ws44{word-spacing:-15.022660px;}
.ws5b{word-spacing:-15.021420px;}
.ws5c{word-spacing:-15.020214px;}
.ws37{word-spacing:-15.020169px;}
.ws35{word-spacing:-15.020145px;}
.ws57{word-spacing:-15.020134px;}
.ws4d{word-spacing:-15.018840px;}
.ws5e{word-spacing:-15.017671px;}
.ws46{word-spacing:-15.017661px;}
.ws2a{word-spacing:-15.017660px;}
.ws3d{word-spacing:-15.017650px;}
.ws58{word-spacing:-15.017645px;}
.ws59{word-spacing:-15.017641px;}
.ws40{word-spacing:-15.017628px;}
.ws4a{word-spacing:-15.017605px;}
.ws3e{word-spacing:-15.017594px;}
.ws5a{word-spacing:-15.017587px;}
.ws2e{word-spacing:-15.017582px;}
.ws33{word-spacing:-15.017580px;}
.ws39{word-spacing:-15.017578px;}
.ws2b{word-spacing:-15.017576px;}
.ws2f{word-spacing:-15.017573px;}
.ws30{word-spacing:-15.017571px;}
.ws32{word-spacing:-15.017510px;}
.ws3b{word-spacing:-15.017438px;}
.ws29{word-spacing:-15.016250px;}
.ws36{word-spacing:-15.016248px;}
.ws34{word-spacing:-15.016246px;}
.ws48{word-spacing:-15.016209px;}
.ws47{word-spacing:-15.014966px;}
.ws45{word-spacing:-15.014936px;}
.ws3c{word-spacing:-15.013195px;}
.ws54{word-spacing:-15.012337px;}
.ws49{word-spacing:-15.012332px;}
.ws4e{word-spacing:-15.012317px;}
.ws38{word-spacing:-15.011719px;}
.ws4f{word-spacing:-15.011716px;}
.ws53{word-spacing:-15.000000px;}
.ws15{word-spacing:-14.779380px;}
.ws6{word-spacing:-14.326620px;}
.wsf{word-spacing:-12.961872px;}
.ws24{word-spacing:-12.450900px;}
.wsdf{word-spacing:-10.800000px;}
.wsb5{word-spacing:-10.517360px;}
.wsbe{word-spacing:-9.000000px;}
.wsb6{word-spacing:-6.012336px;}
.ws0{word-spacing:-0.186000px;}
.wse2{word-spacing:-0.168000px;}
.ws9a{word-spacing:-0.024115px;}
.ws7e{word-spacing:-0.024053px;}
.wsad{word-spacing:-0.023980px;}
.wsd2{word-spacing:-0.022664px;}
.ws9c{word-spacing:-0.022652px;}
.wsdd{word-spacing:-0.022609px;}
.wsaf{word-spacing:-0.017744px;}
.wsdb{word-spacing:-0.017741px;}
.ws7d{word-spacing:-0.017696px;}
.ws78{word-spacing:-0.017671px;}
.ws75{word-spacing:-0.017626px;}
.ws8a{word-spacing:-0.017615px;}
.wsd0{word-spacing:-0.017613px;}
.wsd6{word-spacing:-0.017605px;}
.wsa4{word-spacing:-0.017585px;}
.wsd7{word-spacing:-0.017581px;}
.wsd3{word-spacing:-0.017579px;}
.ws89{word-spacing:-0.017578px;}
.ws72{word-spacing:-0.017576px;}
.wsba{word-spacing:-0.017571px;}
.ws9b{word-spacing:-0.017528px;}
.wsa0{word-spacing:-0.016254px;}
.wsc8{word-spacing:-0.016230px;}
.wsc0{word-spacing:-0.016209px;}
.wsd4{word-spacing:-0.013724px;}
.ws85{word-spacing:-0.013665px;}
.wsd9{word-spacing:-0.013634px;}
.ws6b{word-spacing:-0.000040px;}
.wsa5{word-spacing:-0.000033px;}
.ws96{word-spacing:-0.000031px;}
.wsa6{word-spacing:-0.000023px;}
.wscc{word-spacing:-0.000021px;}
.ws62{word-spacing:-0.000013px;}
.ws91{word-spacing:-0.000012px;}
.ws6a{word-spacing:-0.000003px;}
.ws69{word-spacing:-0.000001px;}
.ws1{word-spacing:0.000000px;}
.ws63{word-spacing:0.000002px;}
.ws8b{word-spacing:0.000023px;}
.ws61{word-spacing:0.000056px;}
.ws7f{word-spacing:4.475884px;}
.ws7a{word-spacing:4.475947px;}
.ws76{word-spacing:4.482214px;}
.wsb7{word-spacing:4.482236px;}
.wsc3{word-spacing:4.482262px;}
.ws9d{word-spacing:4.482300px;}
.ws83{word-spacing:4.482315px;}
.wscf{word-spacing:4.482325px;}
.wsc7{word-spacing:4.482349px;}
.wsd8{word-spacing:4.482371px;}
.wsae{word-spacing:4.482410px;}
.ws97{word-spacing:4.482419px;}
.ws99{word-spacing:4.482422px;}
.wsbb{word-spacing:4.482424px;}
.wsb9{word-spacing:4.482429px;}
.wsb8{word-spacing:4.482440px;}
.wsb1{word-spacing:4.482443px;}
.wsc6{word-spacing:4.482461px;}
.ws98{word-spacing:4.482544px;}
.wsda{word-spacing:4.483771px;}
.wsb2{word-spacing:4.483773px;}
.wsa2{word-spacing:4.483774px;}
.wsbc{word-spacing:4.485049px;}
.ws81{word-spacing:4.486276px;}
.ws70{word-spacing:4.487665px;}
.wsc4{word-spacing:4.487715px;}
.wsb4{word-spacing:4.488286px;}
.ws94{word-spacing:4.499978px;}
.ws67{word-spacing:4.499988px;}
.ws8e{word-spacing:4.499998px;}
.ws95{word-spacing:4.500000px;}
.wsaa{word-spacing:4.500002px;}
.wsa8{word-spacing:4.500023px;}
.ws86{word-spacing:8.975974px;}
.ws9e{word-spacing:8.976020px;}
.wsb3{word-spacing:8.982282px;}
.wsb0{word-spacing:8.982329px;}
.ws6e{word-spacing:8.982340px;}
.ws88{word-spacing:8.982420px;}
.ws71{word-spacing:8.982422px;}
.ws6f{word-spacing:8.982424px;}
.wsdc{word-spacing:8.983773px;}
.wsc1{word-spacing:8.985055px;}
.wscd{word-spacing:8.985106px;}
.ws93{word-spacing:8.999977px;}
.wsa7{word-spacing:8.999989px;}
.ws64{word-spacing:9.000000px;}
.ws8d{word-spacing:9.000010px;}
.ws79{word-spacing:13.475952px;}
.wsa3{word-spacing:13.482329px;}
.ws77{word-spacing:13.482374px;}
.wsc5{word-spacing:13.482395px;}
.wsbf{word-spacing:13.482407px;}
.wsa1{word-spacing:13.482421px;}
.ws6d{word-spacing:13.482422px;}
.ws7b{word-spacing:13.482476px;}
.wsd1{word-spacing:13.483757px;}
.ws6c{word-spacing:13.483774px;}
.ws7c{word-spacing:13.487417px;}
.wsc9{word-spacing:13.499988px;}
.ws8f{word-spacing:13.500000px;}
.wsd5{word-spacing:17.977292px;}
.ws84{word-spacing:17.982374px;}
.ws9f{word-spacing:17.982464px;}
.wsc2{word-spacing:17.983711px;}
.wsce{word-spacing:17.985046px;}
.ws82{word-spacing:17.986187px;}
.wsbd{word-spacing:17.986335px;}
.ws68{word-spacing:18.000000px;}
.ws80{word-spacing:22.482364px;}
.ws87{word-spacing:22.482419px;}
.wsa9{word-spacing:22.499977px;}
.ws65{word-spacing:22.499988px;}
.ws90{word-spacing:22.499999px;}
.ws73{word-spacing:26.982420px;}
.ws74{word-spacing:26.988282px;}
.wsab{word-spacing:26.999988px;}
.ws66{word-spacing:26.999999px;}
.wscb{word-spacing:31.499988px;}
.ws8c{word-spacing:31.499999px;}
.wsca{word-spacing:35.999989px;}
.ws92{word-spacing:35.999998px;}
.wsac{word-spacing:54.000000px;}
.wsb{word-spacing:88.752720px;}
.wsd{word-spacing:122.709720px;}
.ws14{word-spacing:123.444720px;}
.wsa{word-spacing:124.035660px;}
.ws7{word-spacing:159.318600px;}
.ws2c{word-spacing:162.782479px;}
.ws1c{word-spacing:176.253000px;}
.ws51{word-spacing:177.782479px;}
.ws4{word-spacing:213.220560px;}
.ws1b{word-spacing:215.031600px;}
.ws28{word-spacing:222.759042px;}
.ws20{word-spacing:224.277900px;}
.ws18{word-spacing:236.326020px;}
.ws50{word-spacing:237.759041px;}
.ws9{word-spacing:245.169540px;}
.ws12{word-spacing:261.368352px;}
.ws21{word-spacing:261.371880px;}
.ws1d{word-spacing:262.747800px;}
.ws13{word-spacing:280.555968px;}
.ws5{word-spacing:289.257780px;}
.ws10{word-spacing:309.490272px;}
.ws11{word-spacing:332.434032px;}
.wse{word-spacing:335.836200px;}
.ws3{word-spacing:336.288960px;}
.ws2{word-spacing:338.360484px;}
.ws1e{word-spacing:372.071700px;}
.wsc{word-spacing:385.010640px;}
.ws1f{word-spacing:388.539228px;}
.ws17{word-spacing:414.307740px;}
.ws1a{word-spacing:433.705272px;}
.ws22{word-spacing:670.872720px;}
.ws8{word-spacing:726.238800px;}
._48{margin-left:-9.281251px;}
._2b{margin-left:-8.225883px;}
._2{margin-left:-7.128578px;}
._1f{margin-left:-5.940432px;}
._1{margin-left:-4.854587px;}
._3{margin-left:-3.398839px;}
._0{margin-left:-2.299541px;}
._4{margin-left:-1.067059px;}
._c{width:1.036460px;}
._7{width:2.178662px;}
._5{width:3.535289px;}
._6{width:5.368440px;}
._44{width:8.660749px;}
._45{width:9.794239px;}
._43{width:12.915028px;}
._3f{width:14.337652px;}
._40{width:15.562321px;}
._3e{width:17.063528px;}
._36{width:18.936475px;}
._35{width:19.952829px;}
._2f{width:22.500001px;}
._32{width:23.684052px;}
._33{width:24.703733px;}
._3d{width:27.000000px;}
._34{width:28.422618px;}
._2e{width:29.943052px;}
._30{width:31.500000px;}
._3a{width:32.926649px;}
._47{width:35.543369px;}
._38{width:37.149829px;}
._39{width:38.315972px;}
._31{width:40.500012px;}
._3b{width:42.830760px;}
._41{width:45.000001px;}
._37{width:46.422757px;}
._46{width:49.387559px;}
._18{width:50.444349px;}
._3c{width:54.000000px;}
._42{width:67.499989px;}
._17{width:80.786637px;}
._22{width:88.475390px;}
._10{width:115.278030px;}
._23{width:131.414050px;}
._12{width:132.420981px;}
._14{width:138.563725px;}
._1a{width:147.622033px;}
._27{width:157.151294px;}
._1b{width:162.518375px;}
._13{width:171.277428px;}
._19{width:176.662228px;}
._28{width:187.713320px;}
._1c{width:190.740370px;}
._2d{width:192.680167px;}
._2a{width:194.979709px;}
._2c{width:197.279250px;}
._11{width:210.804908px;}
._21{width:220.777806px;}
._29{width:222.680167px;}
._f{width:225.518395px;}
._e{width:227.342555px;}
._20{width:238.431259px;}
._1e{width:256.839633px;}
._d{width:259.948920px;}
._26{width:262.084701px;}
._1d{width:280.164861px;}
._b{width:327.345024px;}
._a{width:332.707584px;}
._9{width:338.575824px;}
._25{width:358.745658px;}
._8{width:380.829704px;}
._24{width:385.402510px;}
._16{width:418.212983px;}
._15{width:434.014750px;}
.fc1{color:transparent;}
.fc3{color:rgb(39,39,39);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs9{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs3{font-size:64.680000px;}
.fs6{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:83.999997px;}
.fs1{font-size:149.563800px;}
.fsa{font-size:168.000000px;}
.fs2{font-size:186.000000px;}
.fs0{font-size:255.504600px;}
.y0{bottom:0.000000px;}
.y1d{bottom:4.410000px;}
.y2d{bottom:26.460000px;}
.y2b{bottom:47.040000px;}
.ybb{bottom:56.618408px;}
.yb3{bottom:56.618498px;}
.ye2{bottom:56.618768px;}
.y53{bottom:57.893558px;}
.y2a{bottom:67.620000px;}
.y10e{bottom:78.216803px;}
.y29{bottom:88.200000px;}
.yb2{bottom:88.835448px;}
.y28{bottom:108.780000px;}
.y1c6{bottom:112.983393px;}
.y16b{bottom:116.433108px;}
.y18c{bottom:119.882808px;}
.yb1{bottom:123.332523px;}
.y27{bottom:129.360000px;}
.y1c5{bottom:130.231938px;}
.y16a{bottom:133.681638px;}
.y18b{bottom:137.131353px;}
.yb0{bottom:140.581053px;}
.y255{bottom:145.754883px;}
.y1c4{bottom:147.480468px;}
.y26{bottom:149.940000px;}
.y169{bottom:150.930168px;}
.y10d{bottom:154.379883px;}
.yaf{bottom:157.829583px;}
.y254{bottom:163.004883px;}
.y1c3{bottom:164.728998px;}
.y168{bottom:168.178713px;}
.y25{bottom:170.520000px;}
.y10c{bottom:171.628413px;}
.yae{bottom:175.078128px;}
.y253{bottom:180.251958px;}
.y1c2{bottom:181.977543px;}
.y167{bottom:185.427243px;}
.y10b{bottom:188.876958px;}
.y24{bottom:191.100000px;}
.yad{bottom:192.326658px;}
.y252{bottom:197.501958px;}
.y1c1{bottom:199.226073px;}
.y52{bottom:200.053705px;}
.y166{bottom:202.675773px;}
.y10a{bottom:206.125488px;}
.y1f0{bottom:206.774408px;}
.yac{bottom:209.575188px;}
.y23{bottom:211.680000px;}
.y22a{bottom:213.024903px;}
.y6{bottom:213.390000px;}
.y251{bottom:214.749018px;}
.y2e{bottom:214.860000px;}
.y1c0{bottom:216.474603px;}
.y51{bottom:217.302250px;}
.y165{bottom:219.924318px;}
.y109{bottom:223.374018px;}
.yab{bottom:226.823733px;}
.y1ef{bottom:227.472652px;}
.y229{bottom:230.273433px;}
.y250{bottom:231.999018px;}
.y22{bottom:232.260000px;}
.y1bf{bottom:233.723148px;}
.y1b3{bottom:237.172848px;}
.y108{bottom:240.622563px;}
.yaa{bottom:244.072263px;}
.y228{bottom:247.521978px;}
.y274{bottom:247.523433px;}
.y1ee{bottom:248.170898px;}
.y24f{bottom:249.246093px;}
.y1e2{bottom:250.872063px;}
.y1be{bottom:250.971678px;}
.y50{bottom:251.799310px;}
.y21{bottom:252.840000px;}
.y164{bottom:254.421393px;}
.y2c{bottom:256.020000px;}
.y107{bottom:257.871093px;}
.y18a{bottom:258.520013px;}
.ya9{bottom:261.320793px;}
.y290{bottom:261.322263px;}
.y227{bottom:264.770508px;}
.y24e{bottom:266.496093px;}
.y1e1{bottom:268.122063px;}
.y1bd{bottom:268.220208px;}
.y1b2{bottom:271.669923px;}
.y20{bottom:273.420000px;}
.y106{bottom:275.119623px;}
.ya8{bottom:278.569338px;}
.ye1{bottom:280.294188px;}
.y273{bottom:282.017583px;}
.y226{bottom:282.019038px;}
.y24d{bottom:283.743168px;}
.y1e0{bottom:285.369138px;}
.y148{bottom:285.468753px;}
.y1ed{bottom:286.038571px;}
.y132{bottom:288.918453px;}
.y7d{bottom:289.746100px;}
.y105{bottom:292.368168px;}
.y1f{bottom:294.000000px;}
.y28f{bottom:295.816398px;}
.ya7{bottom:295.817868px;}
.y189{bottom:296.387701px;}
.y201{bottom:296.466803px;}
.y30{bottom:297.180000px;}
.ye0{bottom:297.542718px;}
.y225{bottom:299.267583px;}
.y24c{bottom:300.993168px;}
.y1df{bottom:302.619138px;}
.y147{bottom:302.717283px;}
.y131{bottom:306.166998px;}
.y1ec{bottom:306.736816px;}
.y104{bottom:309.616698px;}
.ya6{bottom:313.066398px;}
.y1e{bottom:314.580000px;}
.ydf{bottom:314.791263px;}
.y224{bottom:316.516113px;}
.y272{bottom:316.517583px;}
.y188{bottom:317.085931px;}
.y24b{bottom:318.240228px;}
.y1de{bottom:319.866213px;}
.y146{bottom:319.965813px;}
.y4f{bottom:320.859378px;}
.y130{bottom:323.415528px;}
.y7c{bottom:324.243160px;}
.y103{bottom:326.865228px;}
.y2f{bottom:327.810000px;}
.ya5{bottom:330.314943px;}
.y28e{bottom:330.316398px;}
.yde{bottom:332.039793px;}
.y223{bottom:333.764643px;}
.y1b{bottom:335.160000px;}
.y24a{bottom:335.490228px;}
.y1dd{bottom:337.116213px;}
.y145{bottom:337.214358px;}
.y200{bottom:337.784176px;}
.y1bc{bottom:337.863278px;}
.y4e{bottom:338.107908px;}
.y12f{bottom:340.664058px;}
.y163{bottom:341.312992px;}
.y7b{bottom:341.491705px;}
.y102{bottom:344.113773px;}
.ya4{bottom:347.563473px;}
.ydd{bottom:349.288323px;}
.y268{bottom:351.011718px;}
.y222{bottom:351.013188px;}
.y249{bottom:352.737303px;}
.y1dc{bottom:354.363273px;}
.y144{bottom:354.462888px;}
.y4d{bottom:355.356438px;}
.y1a{bottom:355.740000px;}
.y12e{bottom:357.912603px;}
.y1ff{bottom:358.482421px;}
.y101{bottom:361.362303px;}
.y28d{bottom:364.810548px;}
.ya3{bottom:364.812018px;}
.ydc{bottom:366.536868px;}
.y221{bottom:368.261718px;}
.y248{bottom:369.987303px;}
.y1db{bottom:371.613273px;}
.y143{bottom:371.711418px;}
.y4c{bottom:372.604983px;}
.y12d{bottom:375.161133px;}
.y1bb{bottom:375.730951px;}
.y80{bottom:375.988765px;}
.y19{bottom:376.320000px;}
.y1eb{bottom:378.610833px;}
.y162{bottom:379.180666px;}
.ya2{bottom:382.060548px;}
.ydb{bottom:383.785398px;}
.y220{bottom:385.510248px;}
.y267{bottom:385.511718px;}
.y1da{bottom:388.860348px;}
.y142{bottom:388.959963px;}
.y4b{bottom:389.853513px;}
.y12c{bottom:392.409663px;}
.y7a{bottom:393.303228px;}
.y100{bottom:395.859378px;}
.y1ba{bottom:396.429196px;}
.y18{bottom:396.900000px;}
.ya1{bottom:399.309078px;}
.y28c{bottom:399.310548px;}
.yda{bottom:401.033928px;}
.y21f{bottom:402.758793px;}
.y247{bottom:404.484378px;}
.y1d9{bottom:406.110348px;}
.y141{bottom:406.208493px;}
.y4a{bottom:407.102043px;}
.y12b{bottom:409.658208px;}
.y7f{bottom:410.485840px;}
.y79{bottom:410.551758px;}
.y1ea{bottom:413.107908px;}
.ya0{bottom:416.557623px;}
.y5{bottom:416.864250px;}
.y17{bottom:417.480000px;}
.yd9{bottom:418.282473px;}
.y266{bottom:420.005853px;}
.y140{bottom:423.457023px;}
.y12a{bottom:426.906738px;}
.yff{bottom:430.356438px;}
.y9f{bottom:433.806153px;}
.yd8{bottom:435.531003px;}
.y265{bottom:437.255853px;}
.y16{bottom:438.060000px;}
.y246{bottom:438.981438px;}
.y13f{bottom:440.705568px;}
.y49{bottom:441.599118px;}
.y129{bottom:444.155268px;}
.y7e{bottom:444.982915px;}
.y78{bottom:445.048833px;}
.y1d8{bottom:445.781253px;}
.yfe{bottom:447.604983px;}
.y9e{bottom:451.054683px;}
.y1a5{bottom:451.703618px;}
.yd7{bottom:452.779533px;}
.y21e{bottom:454.504398px;}
.y264{bottom:454.505853px;}
.y245{bottom:456.228513px;}
.y13e{bottom:457.954098px;}
.y15{bottom:458.640000px;}
.y6a{bottom:459.496582px;}
.y128{bottom:461.403813px;}
.yfd{bottom:464.853513px;}
.y4{bottom:466.386750px;}
.y9d{bottom:468.303228px;}
.yd6{bottom:470.028078px;}
.y263{bottom:471.752928px;}
.y244{bottom:473.478513px;}
.y13d{bottom:475.202643px;}
.y48{bottom:476.096193px;}
.y127{bottom:478.652343px;}
.y14{bottom:479.220000px;}
.y77{bottom:479.545893px;}
.yfc{bottom:482.102043px;}
.y9c{bottom:485.551758px;}
.y1d7{bottom:486.619627px;}
.yd5{bottom:487.276608px;}
.y262{bottom:489.000003px;}
.y21d{bottom:489.001458px;}
.y1a4{bottom:489.571291px;}
.y243{bottom:490.725588px;}
.y13c{bottom:492.451173px;}
.y47{bottom:493.344723px;}
.y126{bottom:495.900873px;}
.y69{bottom:496.794438px;}
.yfb{bottom:499.350588px;}
.y13{bottom:499.800000px;}
.y9b{bottom:502.800288px;}
.yd4{bottom:504.525153px;}
.y21c{bottom:506.250003px;}
.y187{bottom:509.699703px;}
.y1a3{bottom:510.269536px;}
.y46{bottom:510.593268px;}
.y125{bottom:513.149418px;}
.y76{bottom:514.042968px;}
.y3{bottom:515.909250px;}
.yfa{bottom:516.599118px;}
.y9a{bottom:520.048833px;}
.y12{bottom:520.380000px;}
.yd3{bottom:521.773683px;}
.y21b{bottom:523.498533px;}
.y13b{bottom:526.948248px;}
.y28b{bottom:527.595698px;}
.y203{bottom:527.597168px;}
.y45{bottom:527.841798px;}
.y1d6{bottom:529.025395px;}
.y242{bottom:529.321283px;}
.y68{bottom:531.291498px;}
.y1e9{bottom:533.847648px;}
.y99{bottom:537.297363px;}
.yd2{bottom:539.022213px;}
.y21a{bottom:540.747063px;}
.y11{bottom:540.960000px;}
.y1c{bottom:544.140000px;}
.y186{bottom:544.196778px;}
.y44{bottom:545.090328px;}
.y124{bottom:547.646478px;}
.y1b1{bottom:548.295412px;}
.y67{bottom:548.540043px;}
.y1d5{bottom:550.015141px;}
.y1e8{bottom:551.096193px;}
.yf9{bottom:551.745113px;}
.y98{bottom:554.545893px;}
.yd1{bottom:556.270758px;}
.y261{bottom:557.994138px;}
.y151{bottom:557.995608px;}
.y13a{bottom:561.445308px;}
.y10{bottom:561.540000px;}
.y43{bottom:562.338873px;}
.y1a2{bottom:564.895023px;}
.y66{bottom:565.788573px;}
.y1fe{bottom:568.344723px;}
.y28a{bottom:568.913086px;}
.y202{bottom:568.914556px;}
.y212{bottom:568.993658px;}
.y241{bottom:570.638671px;}
.y97{bottom:571.794438px;}
.yd0{bottom:573.519288px;}
.y150{bottom:575.244138px;}
.y139{bottom:578.693853px;}
.y42{bottom:579.587403px;}
.yf{bottom:582.120000px;}
.y123{bottom:582.143553px;}
.y75{bottom:583.037103px;}
.y1fd{bottom:585.593268px;}
.y1b0{bottom:586.163086px;}
.y1e7{bottom:586.242188px;}
.y96{bottom:589.042968px;}
.yf8{bottom:589.612786px;}
.y289{bottom:589.614256px;}
.ycf{bottom:590.767818px;}
.y14f{bottom:592.492668px;}
.y260{bottom:592.494138px;}
.y138{bottom:595.942383px;}
.y1f4{bottom:596.591302px;}
.y122{bottom:599.392083px;}
.y65{bottom:600.285648px;}
.ye{bottom:602.700000px;}
.y1fc{bottom:602.841798px;}
.y1d4{bottom:604.640628px;}
.y95{bottom:606.291498px;}
.y1af{bottom:606.861331px;}
.yce{bottom:608.016363px;}
.y14e{bottom:609.741213px;}
.yf7{bottom:610.311031px;}
.y219{bottom:613.839848px;}
.y41{bottom:614.084478px;}
.y121{bottom:616.640628px;}
.y74{bottom:617.534178px;}
.y1d3{bottom:621.889158px;}
.y294{bottom:621.939750px;}
.yd{bottom:623.280000px;}
.y94{bottom:623.540043px;}
.y1e6{bottom:624.109861px;}
.y1b5{bottom:624.188963px;}
.ycd{bottom:625.264893px;}
.y240{bottom:625.265628px;}
.y14d{bottom:626.989743px;}
.y211{bottom:627.559576px;}
.y185{bottom:630.439458px;}
.y137{bottom:631.088377px;}
.y25f{bottom:631.089848px;}
.y1a1{bottom:633.889158px;}
.y1f3{bottom:634.458991px;}
.y271{bottom:634.538092px;}
.y64{bottom:634.782708px;}
.y1fb{bottom:637.338873px;}
.y2{bottom:638.818350px;}
.y1d2{bottom:639.137688px;}
.y93{bottom:640.788573px;}
.y172{bottom:641.437492px;}
.y23f{bottom:642.512688px;}
.ycc{bottom:642.513423px;}
.yc{bottom:643.860000px;}
.y1e5{bottom:644.808106px;}
.y40{bottom:648.581538px;}
.y1a0{bottom:651.137688px;}
.y73{bottom:652.031253px;}
.y1f2{bottom:655.157221px;}
.y120{bottom:655.236322px;}
.y1d1{bottom:656.386233px;}
.y92{bottom:658.037103px;}
.y161{bottom:658.686037px;}
.ycb{bottom:659.761968px;}
.y23e{bottom:659.762688px;}
.y1ae{bottom:661.486818px;}
.y1b4{bottom:662.056636px;}
.yb{bottom:664.440000px;}
.yf6{bottom:664.936518px;}
.y14c{bottom:665.585452px;}
.y288{bottom:668.384763px;}
.y19f{bottom:668.386233px;}
.y136{bottom:668.956051px;}
.y63{bottom:669.279783px;}
.y293{bottom:671.457750px;}
.y1fa{bottom:671.835933px;}
.y25e{bottom:672.407221px;}
.y1d0{bottom:673.634763px;}
.y91{bottom:675.285648px;}
.y218{bottom:675.855466px;}
.y23d{bottom:677.009763px;}
.yca{bottom:677.010498px;}
.y1ad{bottom:678.735348px;}
.y171{bottom:679.305181px;}
.yf5{bottom:682.185063px;}
.y3f{bottom:683.078613px;}
.ya{bottom:685.020000px;}
.y19e{bottom:685.634763px;}
.y62{bottom:686.528313px;}
.y1f9{bottom:689.084478px;}
.y135{bottom:689.654296px;}
.y1cf{bottom:690.883293px;}
.yba{bottom:692.534178px;}
.y11f{bottom:693.104011px;}
.yc9{bottom:694.259028px;}
.y23c{bottom:694.259763px;}
.y1ac{bottom:695.983893px;}
.y160{bottom:696.553711px;}
.yf4{bottom:699.433593px;}
.y19d{bottom:702.883293px;}
.y287{bottom:702.884763px;}
.y184{bottom:703.453126px;}
.y61{bottom:703.776858px;}
.y9{bottom:705.600000px;}
.y1f8{bottom:706.333008px;}
.y14b{bottom:706.902826px;}
.y1ce{bottom:708.131838px;}
.yb9{bottom:709.782708px;}
.y90{bottom:710.352541px;}
.y23b{bottom:711.506838px;}
.yc8{bottom:711.507573px;}
.y1ab{bottom:713.232423px;}
.y1{bottom:713.600100px;}
.yf3{bottom:716.682123px;}
.y3e{bottom:717.509770px;}
.y19c{bottom:720.131838px;}
.y292{bottom:720.975750px;}
.y60{bottom:721.025388px;}
.y210{bottom:723.581538px;}
.y183{bottom:724.151371px;}
.y1cd{bottom:725.380368px;}
.y8{bottom:726.180000px;}
.y1b9{bottom:727.031253px;}
.y14a{bottom:727.601071px;}
.y23a{bottom:728.756838px;}
.ybd{bottom:729.325921px;}
.y1aa{bottom:730.480953px;}
.yf2{bottom:733.930668px;}
.y286{bottom:737.378898px;}
.y19b{bottom:737.380368px;}
.y5f{bottom:738.273918px;}
.y20f{bottom:740.830083px;}
.y1f7{bottom:741.479002px;}
.y1cc{bottom:742.628898px;}
.y1b8{bottom:744.279783px;}
.y239{bottom:746.003898px;}
.y7{bottom:746.760000px;}
.y11e{bottom:747.729498px;}
.yb8{bottom:748.299316px;}
.y25d{bottom:751.177728px;}
.yf1{bottom:751.179198px;}
.y3d{bottom:752.072748px;}
.y19a{bottom:754.628898px;}
.y5e{bottom:755.522463px;}
.y20e{bottom:758.078613px;}
.y270{bottom:758.080083px;}
.y1cb{bottom:759.877443px;}
.y1f1{bottom:761.528313px;}
.y1f6{bottom:762.177248px;}
.y238{bottom:763.253898px;}
.y11d{bottom:764.978028px;}
.yf0{bottom:768.427728px;}
.yb7{bottom:768.997561px;}
.y3c{bottom:769.321293px;}
.y285{bottom:771.878898px;}
.y5d{bottom:772.770993px;}
.y20d{bottom:775.327143px;}
.y1ca{bottom:777.125973px;}
.y182{bottom:778.776858px;}
.y1b7{bottom:779.425777px;}
.y237{bottom:780.500973px;}
.y11c{bottom:782.226558px;}
.y15f{bottom:785.676273px;}
.y25c{bottom:785.677728px;}
.yef{bottom:786.325192px;}
.y199{bottom:789.125973px;}
.y72{bottom:790.019523px;}
.y26f{bottom:792.574218px;}
.y20c{bottom:792.575688px;}
.y1c9{bottom:794.374518px;}
.y181{bottom:796.025388px;}
.y236{bottom:797.750973px;}
.y11b{bottom:799.475103px;}
.y1f5{bottom:800.044921px;}
.y15e{bottom:802.924803px;}
.y3b{bottom:803.818353px;}
.y284{bottom:806.373048px;}
.yee{bottom:806.374518px;}
.y5c{bottom:807.268068px;}
.y8f{bottom:808.748288px;}
.y20b{bottom:809.824218px;}
.y180{bottom:813.273918px;}
.y235{bottom:814.998048px;}
.y11a{bottom:816.723633px;}
.y1b6{bottom:817.293451px;}
.y291{bottom:819.969750px;}
.y25b{bottom:820.171878px;}
.y15d{bottom:820.173333px;}
.y3a{bottom:821.000980px;}
.yed{bottom:823.623048px;}
.y71{bottom:824.450680px;}
.y20a{bottom:827.072748px;}
.y26e{bottom:827.074218px;}
.y8e{bottom:829.446532px;}
.y17f{bottom:830.522463px;}
.y234{bottom:832.248048px;}
.y119{bottom:833.972163px;}
.y15c{bottom:837.421878px;}
.yec{bottom:840.871578px;}
.y283{bottom:840.873048px;}
.y5b{bottom:841.699225px;}
.y70{bottom:841.765143px;}
.y209{bottom:844.321293px;}
.y17e{bottom:847.770993px;}
.y8d{bottom:850.144778px;}
.y118{bottom:851.220708px;}
.y15b{bottom:854.670408px;}
.y25a{bottom:854.671878px;}
.y39{bottom:855.563958px;}
.yeb{bottom:858.120123px;}
.y5a{bottom:859.013673px;}
.y26d{bottom:861.568353px;}
.y208{bottom:861.569823px;}
.y17d{bottom:865.019523px;}
.y233{bottom:866.745123px;}
.y117{bottom:868.469238px;}
.y8c{bottom:870.843023px;}
.y15a{bottom:871.918938px;}
.y282{bottom:875.367183px;}
.y1c8{bottom:875.368653px;}
.yea{bottom:876.017573px;}
.y6f{bottom:876.262203px;}
.y207{bottom:878.818353px;}
.y17c{bottom:882.268068px;}
.y116{bottom:885.717768px;}
.y259{bottom:889.166013px;}
.y159{bottom:889.167483px;}
.yc7{bottom:889.816402px;}
.y38{bottom:890.061033px;}
.y8b{bottom:891.541252px;}
.y281{bottom:892.617183px;}
.y198{bottom:893.266117px;}
.y59{bottom:893.510748px;}
.ye9{bottom:896.066898px;}
.y26c{bottom:896.068353px;}
.y17b{bottom:899.516598px;}
.y232{bottom:901.242183px;}
.y115{bottom:902.966313px;}
.y158{bottom:906.416013px;}
.y37{bottom:907.309563px;}
.y280{bottom:909.867183px;}
.yc6{bottom:910.514647px;}
.y58{bottom:910.759278px;}
.y8a{bottom:912.239497px;}
.y217{bottom:913.315428px;}
.ye8{bottom:913.885261px;}
.y17a{bottom:916.765143px;}
.y231{bottom:918.489258px;}
.y114{bottom:920.214843px;}
.y157{bottom:923.664543px;}
.y258{bottom:923.666013px;}
.y36{bottom:924.558105px;}
.y27f{bottom:927.114258px;}
.y6e{bottom:928.007811px;}
.y26b{bottom:930.562503px;}
.y216{bottom:930.563958px;}
.y197{bottom:931.133791px;}
.yc5{bottom:931.212892px;}
.y89{bottom:932.937743px;}
.y179{bottom:934.013673px;}
.ye7{bottom:934.583491px;}
.y230{bottom:935.739258px;}
.y113{bottom:937.463373px;}
.y156{bottom:940.913088px;}
.y35{bottom:941.806640px;}
.y27e{bottom:944.361333px;}
.y57{bottom:945.256347px;}
.y215{bottom:947.812503px;}
.y1c7{bottom:948.382321px;}
.y178{bottom:951.262203px;}
.yc4{bottom:951.911137px;}
.y22f{bottom:952.986333px;}
.y88{bottom:953.635988px;}
.y134{bottom:954.711918px;}
.y170{bottom:958.161618px;}
.y27d{bottom:961.611333px;}
.y6d{bottom:962.438964px;}
.y214{bottom:965.061033px;}
.y26a{bottom:965.062503px;}
.y177{bottom:968.510748px;}
.y22e{bottom:970.236333px;}
.y112{bottom:971.960448px;}
.yc3{bottom:972.609367px;}
.y87{bottom:974.334233px;}
.y155{bottom:975.410148px;}
.y34{bottom:976.237792px;}
.y257{bottom:978.861333px;}
.y56{bottom:979.687500px;}
.y196{bottom:985.759278px;}
.y22d{bottom:987.483393px;}
.y133{bottom:989.208978px;}
.y16f{bottom:992.658693px;}
.yc2{bottom:993.307613px;}
.y86{bottom:995.032470px;}
.y27c{bottom:996.108393px;}
.y6c{bottom:997.001952px;}
.y269{bottom:999.556640px;}
.y213{bottom:999.558105px;}
.y195{bottom:1003.007811px;}
.y176{bottom:1004.732666px;}
.y22c{bottom:1004.733398px;}
.y111{bottom:1006.457519px;}
.y154{bottom:1009.907226px;}
.y33{bottom:1010.734863px;}
.y27b{bottom:1013.355468px;}
.yc1{bottom:1014.005859px;}
.y55{bottom:1014.250488px;}
.y85{bottom:1015.730714px;}
.y256{bottom:1016.806640px;}
.y194{bottom:1020.256347px;}
.y22b{bottom:1021.980468px;}
.y175{bottom:1021.981200px;}
.y110{bottom:1023.706055px;}
.y153{bottom:1027.155761px;}
.y27a{bottom:1030.605468px;}
.y6b{bottom:1031.433105px;}
.ye6{bottom:1033.989258px;}
.yc0{bottom:1034.704101px;}
.y84{bottom:1036.428956px;}
.y193{bottom:1037.504882px;}
.y174{bottom:1039.229736px;}
.y206{bottom:1040.954589px;}
.y152{bottom:1044.404297px;}
.y16e{bottom:1045.053222px;}
.y32{bottom:1045.231933px;}
.y279{bottom:1047.855468px;}
.y54{bottom:1048.681641px;}
.y192{bottom:1054.753418px;}
.ybf{bottom:1055.402343px;}
.yb6{bottom:1057.127197px;}
.y205{bottom:1058.203124px;}
.y10f{bottom:1058.852051px;}
.y1e4{bottom:1061.586913px;}
.y1a9{bottom:1062.301758px;}
.y31{bottom:1063.116211px;}
.y278{bottom:1065.102539px;}
.y191{bottom:1072.001952px;}
.ye5{bottom:1072.571777px;}
.y83{bottom:1076.021485px;}
.ybe{bottom:1076.100586px;}
.yb5{bottom:1077.825439px;}
.y149{bottom:1079.550293px;}
.y277{bottom:1082.349609px;}
.y1a8{bottom:1082.351073px;}
.y16d{bottom:1082.920898px;}
.y190{bottom:1089.250488px;}
.ye4{bottom:1093.270019px;}
.y82{bottom:1096.719727px;}
.y204{bottom:1096.798828px;}
.y173{bottom:1098.126710px;}
.ybc{bottom:1098.199219px;}
.y1e3{bottom:1099.533691px;}
.y1a7{bottom:1100.169433px;}
.y276{bottom:1100.250000px;}
.y16c{bottom:1103.619140px;}
.y18f{bottom:1106.499023px;}
.yb4{bottom:1117.417969px;}
.y275{bottom:1120.297851px;}
.y1a6{bottom:1120.867676px;}
.y18e{bottom:1123.747559px;}
.ye3{bottom:1135.302245px;}
.y81{bottom:1138.116211px;}
.y18d{bottom:1140.996093px;}
.h9{height:19.110000px;}
.hf{height:41.660155px;}
.h15{height:41.689452px;}
.h13{height:43.124999px;}
.hd{height:43.681640px;}
.h7{height:43.962187px;}
.h8{height:44.814902px;}
.h17{height:45.858399px;}
.h18{height:47.781740px;}
.h1e{height:48.049806px;}
.h14{height:50.027344px;}
.hc{height:52.417969px;}
.h1a{height:53.291014px;}
.he{height:53.789061px;}
.h12{height:54.287108px;}
.h1f{height:55.041506px;}
.hb{height:60.270000px;}
.h19{height:61.154295px;}
.h11{height:64.546875px;}
.h1b{height:65.691213px;}
.h1c{height:66.049807px;}
.h16{height:80.625000px;}
.h1d{height:107.625000px;}
.h10{height:108.000000px;}
.h3{height:108.583319px;}
.h21{height:121.632000px;}
.h20{height:131.208000px;}
.h4{height:145.266000px;}
.h2{height:185.496340px;}
.ha{height:718.830000px;}
.h6{height:761.460000px;}
.h5{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:91.140000px;}
.w4{width:144.060000px;}
.w3{width:761.460000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:894.000000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:2.940000px;}
.xf{left:4.410000px;}
.xe{left:49.980000px;}
.x2{left:68.456550px;}
.x6{left:77.910000px;}
.x1{left:105.615300px;}
.x13{left:108.000000px;}
.x59{left:109.930708px;}
.x42{left:111.460443px;}
.x7{left:113.190000px;}
.x34{left:115.403470px;}
.x3f{left:117.389798px;}
.x3d{left:119.495860px;}
.x57{left:121.406837px;}
.x3a{left:123.036771px;}
.x3b{left:125.451832px;}
.x5d{left:127.754540px;}
.x36{left:128.894681px;}
.x47{left:130.406400px;}
.x6b{left:131.425931px;}
.x3c{left:132.652125px;}
.x38{left:133.878079px;}
.x3e{left:135.385404px;}
.x24{left:136.716947px;}
.x4d{left:137.943020px;}
.x25{left:139.500000px;}
.x5a{left:142.013275px;}
.x28{left:143.370267px;}
.x2e{left:146.393706px;}
.x7a{left:147.932685px;}
.x29{left:150.750000px;}
.x74{left:151.886870px;}
.x52{left:158.091948px;}
.x81{left:161.264800px;}
.x88{left:163.145660px;}
.x7d{left:165.927398px;}
.x89{left:168.397125px;}
.x3{left:169.553400px;}
.x85{left:175.081206px;}
.x53{left:177.770693px;}
.x50{left:180.016265px;}
.x4a{left:183.615386px;}
.x37{left:184.784340px;}
.xa{left:188.160000px;}
.x4b{left:189.444294px;}
.x64{left:191.288976px;}
.x2d{left:195.370757px;}
.x61{left:199.862432px;}
.x6d{left:201.173221px;}
.x8a{left:203.084400px;}
.x43{left:205.748588px;}
.x41{left:208.163238px;}
.x7e{left:210.178268px;}
.x45{left:214.838444px;}
.x54{left:215.919585px;}
.x51{left:223.012341px;}
.x33{left:228.100625px;}
.x14{left:229.500000px;}
.x73{left:233.414214px;}
.x71{left:235.923491px;}
.x49{left:239.944488px;}
.x58{left:242.396636px;}
.x82{left:243.424956px;}
.x4e{left:247.764890px;}
.x23{left:250.908843px;}
.x31{left:252.925925px;}
.x55{left:254.055113px;}
.xb{left:258.720000px;}
.x7c{left:263.424459px;}
.x78{left:266.430319px;}
.x60{left:267.643209px;}
.x66{left:272.585306px;}
.x65{left:274.046041px;}
.x27{left:277.078268px;}
.x87{left:278.888815px;}
.x39{left:279.930319px;}
.x2b{left:281.402487px;}
.x2f{left:282.922994px;}
.x6f{left:285.203756px;}
.x44{left:287.937155px;}
.x75{left:289.300386px;}
.x72{left:290.978171px;}
.x63{left:292.705221px;}
.x11{left:297.787354px;}
.x40{left:300.413228px;}
.x4{left:301.752900px;}
.x48{left:304.868858px;}
.x56{left:306.429345px;}
.x84{left:309.312158px;}
.x6c{left:310.929345px;}
.x83{left:313.185938px;}
.x86{left:314.418600px;}
.x32{left:315.912746px;}
.x5b{left:318.662584px;}
.x5{left:320.166900px;}
.x20{left:321.373564px;}
.x62{left:327.949358px;}
.x4f{left:329.935691px;}
.x80{left:332.959129px;}
.x1c{left:334.855260px;}
.x77{left:336.090836px;}
.x7f{left:338.228168px;}
.x4c{left:341.915186px;}
.x22{left:347.421533px;}
.x21{left:351.772121px;}
.x2a{left:352.945451px;}
.x16{left:354.410640px;}
.x70{left:356.920088px;}
.x6a{left:360.420559px;}
.x68{left:366.441064px;}
.x2c{left:370.589501px;}
.x5c{left:373.459129px;}
.x67{left:375.709129px;}
.x35{left:376.943996px;}
.x5f{left:377.954730px;}
.x30{left:381.744540px;}
.x1a{left:385.113049px;}
.x5e{left:386.765753px;}
.x15{left:387.898616px;}
.x69{left:389.675959px;}
.x1b{left:390.680696px;}
.x1d{left:393.316594px;}
.x19{left:395.117854px;}
.x12{left:397.764090px;}
.x9{left:399.840000px;}
.xc{left:401.310000px;}
.x1e{left:404.562195px;}
.x10{left:409.495601px;}
.x76{left:414.306315px;}
.x7b{left:416.947421px;}
.x1f{left:418.582395px;}
.x79{left:421.267253px;}
.x6e{left:424.958659px;}
.x46{left:437.456700px;}
.x17{left:439.825354px;}
.x26{left:441.956700px;}
.x18{left:454.500000px;}
.xd{left:746.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.238283pt;}
.v2{vertical-align:24.285938pt;}
.ls3{letter-spacing:-2.328480pt;}
.ls8{letter-spacing:-2.115755pt;}
.ls13{letter-spacing:-2.104256pt;}
.lsd{letter-spacing:-1.926027pt;}
.lsf{letter-spacing:-1.868533pt;}
.ls11{letter-spacing:-1.471829pt;}
.ls5{letter-spacing:-0.258720pt;}
.ls17{letter-spacing:-0.034496pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000040pt;}
.lsc{letter-spacing:0.086240pt;}
.ls7{letter-spacing:0.143733pt;}
.ls4{letter-spacing:0.178229pt;}
.ls10{letter-spacing:0.310464pt;}
.ls12{letter-spacing:0.718667pt;}
.ls14{letter-spacing:0.770411pt;}
.lsb{letter-spacing:1.063627pt;}
.ls19{letter-spacing:1.098123pt;}
.lse{letter-spacing:1.190112pt;}
.lsa{letter-spacing:1.230357pt;}
.ls15{letter-spacing:1.466080pt;}
.ls9{letter-spacing:1.638560pt;}
.ls6{letter-spacing:1.874283pt;}
.ls16{letter-spacing:1.983520pt;}
.ls2{letter-spacing:2.018016pt;}
.ls1{letter-spacing:2.213493pt;}
.ls18{letter-spacing:2.564203pt;}
.ls1a{letter-spacing:7.994827pt;}
.ws31{word-spacing:-39.999999pt;}
.ws3f{word-spacing:-26.666666pt;}
.ws25{word-spacing:-25.206599pt;}
.ws42{word-spacing:-25.200755pt;}
.ws60{word-spacing:-25.200736pt;}
.ws27{word-spacing:-25.200666pt;}
.ws43{word-spacing:-25.199699pt;}
.ws2d{word-spacing:-25.199594pt;}
.ws26{word-spacing:-25.199579pt;}
.ws41{word-spacing:-25.199570pt;}
.ws5f{word-spacing:-25.199499pt;}
.wsde{word-spacing:-20.744791pt;}
.wse1{word-spacing:-17.781250pt;}
.wse0{word-spacing:-16.000000pt;}
.ws23{word-spacing:-15.206987pt;}
.ws16{word-spacing:-15.011509pt;}
.ws52{word-spacing:-14.817708pt;}
.ws19{word-spacing:-13.763904pt;}
.ws4b{word-spacing:-13.353635pt;}
.ws56{word-spacing:-13.353625pt;}
.ws4c{word-spacing:-13.353556pt;}
.ws55{word-spacing:-13.353544pt;}
.ws5d{word-spacing:-13.353539pt;}
.ws3a{word-spacing:-13.353515pt;}
.ws44{word-spacing:-13.353475pt;}
.ws5b{word-spacing:-13.352374pt;}
.ws5c{word-spacing:-13.351301pt;}
.ws37{word-spacing:-13.351261pt;}
.ws35{word-spacing:-13.351240pt;}
.ws57{word-spacing:-13.351230pt;}
.ws4d{word-spacing:-13.350080pt;}
.ws5e{word-spacing:-13.349041pt;}
.ws46{word-spacing:-13.349032pt;}
.ws2a{word-spacing:-13.349031pt;}
.ws3d{word-spacing:-13.349022pt;}
.ws58{word-spacing:-13.349018pt;}
.ws59{word-spacing:-13.349014pt;}
.ws40{word-spacing:-13.349003pt;}
.ws4a{word-spacing:-13.348982pt;}
.ws3e{word-spacing:-13.348972pt;}
.ws5a{word-spacing:-13.348966pt;}
.ws2e{word-spacing:-13.348962pt;}
.ws33{word-spacing:-13.348960pt;}
.ws39{word-spacing:-13.348958pt;}
.ws2b{word-spacing:-13.348957pt;}
.ws2f{word-spacing:-13.348954pt;}
.ws30{word-spacing:-13.348952pt;}
.ws32{word-spacing:-13.348898pt;}
.ws3b{word-spacing:-13.348834pt;}
.ws29{word-spacing:-13.347778pt;}
.ws36{word-spacing:-13.347776pt;}
.ws34{word-spacing:-13.347774pt;}
.ws48{word-spacing:-13.347741pt;}
.ws47{word-spacing:-13.346636pt;}
.ws45{word-spacing:-13.346610pt;}
.ws3c{word-spacing:-13.345062pt;}
.ws54{word-spacing:-13.344299pt;}
.ws49{word-spacing:-13.344295pt;}
.ws4e{word-spacing:-13.344281pt;}
.ws38{word-spacing:-13.343751pt;}
.ws4f{word-spacing:-13.343748pt;}
.ws53{word-spacing:-13.333333pt;}
.ws15{word-spacing:-13.137227pt;}
.ws6{word-spacing:-12.734773pt;}
.wsf{word-spacing:-11.521664pt;}
.ws24{word-spacing:-11.067467pt;}
.wsdf{word-spacing:-9.600000pt;}
.wsb5{word-spacing:-9.348764pt;}
.wsbe{word-spacing:-8.000000pt;}
.wsb6{word-spacing:-5.344298pt;}
.ws0{word-spacing:-0.165333pt;}
.wse2{word-spacing:-0.149333pt;}
.ws9a{word-spacing:-0.021435pt;}
.ws7e{word-spacing:-0.021380pt;}
.wsad{word-spacing:-0.021315pt;}
.wsd2{word-spacing:-0.020146pt;}
.ws9c{word-spacing:-0.020135pt;}
.wsdd{word-spacing:-0.020097pt;}
.wsaf{word-spacing:-0.015773pt;}
.wsdb{word-spacing:-0.015770pt;}
.ws7d{word-spacing:-0.015730pt;}
.ws78{word-spacing:-0.015708pt;}
.ws75{word-spacing:-0.015668pt;}
.ws8a{word-spacing:-0.015658pt;}
.wsd0{word-spacing:-0.015656pt;}
.wsd6{word-spacing:-0.015649pt;}
.wsa4{word-spacing:-0.015631pt;}
.wsd7{word-spacing:-0.015628pt;}
.wsd3{word-spacing:-0.015626pt;}
.ws89{word-spacing:-0.015625pt;}
.ws72{word-spacing:-0.015623pt;}
.wsba{word-spacing:-0.015619pt;}
.ws9b{word-spacing:-0.015581pt;}
.wsa0{word-spacing:-0.014448pt;}
.wsc8{word-spacing:-0.014427pt;}
.wsc0{word-spacing:-0.014408pt;}
.wsd4{word-spacing:-0.012199pt;}
.ws85{word-spacing:-0.012146pt;}
.wsd9{word-spacing:-0.012119pt;}
.ws6b{word-spacing:-0.000036pt;}
.wsa5{word-spacing:-0.000029pt;}
.ws96{word-spacing:-0.000028pt;}
.wsa6{word-spacing:-0.000020pt;}
.wscc{word-spacing:-0.000019pt;}
.ws62{word-spacing:-0.000012pt;}
.ws91{word-spacing:-0.000010pt;}
.ws6a{word-spacing:-0.000003pt;}
.ws69{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws63{word-spacing:0.000002pt;}
.ws8b{word-spacing:0.000020pt;}
.ws61{word-spacing:0.000050pt;}
.ws7f{word-spacing:3.978564pt;}
.ws7a{word-spacing:3.978620pt;}
.ws76{word-spacing:3.984190pt;}
.wsb7{word-spacing:3.984210pt;}
.wsc3{word-spacing:3.984233pt;}
.ws9d{word-spacing:3.984267pt;}
.ws83{word-spacing:3.984280pt;}
.wscf{word-spacing:3.984289pt;}
.wsc7{word-spacing:3.984311pt;}
.wsd8{word-spacing:3.984330pt;}
.wsae{word-spacing:3.984364pt;}
.ws97{word-spacing:3.984372pt;}
.ws99{word-spacing:3.984375pt;}
.wsbb{word-spacing:3.984377pt;}
.wsb9{word-spacing:3.984381pt;}
.wsb8{word-spacing:3.984391pt;}
.wsb1{word-spacing:3.984393pt;}
.wsc6{word-spacing:3.984410pt;}
.ws98{word-spacing:3.984483pt;}
.wsda{word-spacing:3.985574pt;}
.wsb2{word-spacing:3.985576pt;}
.wsa2{word-spacing:3.985577pt;}
.wsbc{word-spacing:3.986710pt;}
.ws81{word-spacing:3.987801pt;}
.ws70{word-spacing:3.989036pt;}
.wsc4{word-spacing:3.989080pt;}
.wsb4{word-spacing:3.989587pt;}
.ws94{word-spacing:3.999980pt;}
.ws67{word-spacing:3.999989pt;}
.ws8e{word-spacing:3.999998pt;}
.ws95{word-spacing:4.000000pt;}
.wsaa{word-spacing:4.000001pt;}
.wsa8{word-spacing:4.000020pt;}
.ws86{word-spacing:7.978644pt;}
.ws9e{word-spacing:7.978685pt;}
.wsb3{word-spacing:7.984251pt;}
.wsb0{word-spacing:7.984292pt;}
.ws6e{word-spacing:7.984302pt;}
.ws88{word-spacing:7.984373pt;}
.ws71{word-spacing:7.984375pt;}
.ws6f{word-spacing:7.984377pt;}
.wsdc{word-spacing:7.985576pt;}
.wsc1{word-spacing:7.986715pt;}
.wscd{word-spacing:7.986761pt;}
.ws93{word-spacing:7.999980pt;}
.wsa7{word-spacing:7.999990pt;}
.ws64{word-spacing:8.000000pt;}
.ws8d{word-spacing:8.000009pt;}
.ws79{word-spacing:11.978624pt;}
.wsa3{word-spacing:11.984292pt;}
.ws77{word-spacing:11.984332pt;}
.wsc5{word-spacing:11.984351pt;}
.wsbf{word-spacing:11.984362pt;}
.wsa1{word-spacing:11.984374pt;}
.ws6d{word-spacing:11.984375pt;}
.ws7b{word-spacing:11.984423pt;}
.wsd1{word-spacing:11.985562pt;}
.ws6c{word-spacing:11.985577pt;}
.ws7c{word-spacing:11.988815pt;}
.wsc9{word-spacing:11.999989pt;}
.ws8f{word-spacing:12.000000pt;}
.wsd5{word-spacing:15.979815pt;}
.ws84{word-spacing:15.984332pt;}
.ws9f{word-spacing:15.984412pt;}
.wsc2{word-spacing:15.985521pt;}
.wsce{word-spacing:15.986707pt;}
.ws82{word-spacing:15.987722pt;}
.wsbd{word-spacing:15.987853pt;}
.ws68{word-spacing:16.000000pt;}
.ws80{word-spacing:19.984324pt;}
.ws87{word-spacing:19.984372pt;}
.wsa9{word-spacing:19.999980pt;}
.ws65{word-spacing:19.999990pt;}
.ws90{word-spacing:20.000000pt;}
.ws73{word-spacing:23.984373pt;}
.ws74{word-spacing:23.989584pt;}
.wsab{word-spacing:23.999990pt;}
.ws66{word-spacing:24.000000pt;}
.wscb{word-spacing:27.999990pt;}
.ws8c{word-spacing:28.000000pt;}
.wsca{word-spacing:31.999990pt;}
.ws92{word-spacing:31.999998pt;}
.wsac{word-spacing:48.000000pt;}
.wsb{word-spacing:78.891307pt;}
.wsd{word-spacing:109.075307pt;}
.ws14{word-spacing:109.728640pt;}
.wsa{word-spacing:110.253920pt;}
.ws7{word-spacing:141.616533pt;}
.ws2c{word-spacing:144.695537pt;}
.ws1c{word-spacing:156.669333pt;}
.ws51{word-spacing:158.028870pt;}
.ws4{word-spacing:189.529387pt;}
.ws1b{word-spacing:191.139200pt;}
.ws28{word-spacing:198.008037pt;}
.ws20{word-spacing:199.358133pt;}
.ws18{word-spacing:210.067573pt;}
.ws50{word-spacing:211.341370pt;}
.ws9{word-spacing:217.928480pt;}
.ws12{word-spacing:232.327424pt;}
.ws21{word-spacing:232.330560pt;}
.ws1d{word-spacing:233.553600pt;}
.ws13{word-spacing:249.383083pt;}
.ws5{word-spacing:257.118027pt;}
.ws10{word-spacing:275.102464pt;}
.ws11{word-spacing:295.496917pt;}
.wse{word-spacing:298.521067pt;}
.ws3{word-spacing:298.923520pt;}
.ws2{word-spacing:300.764875pt;}
.ws1e{word-spacing:330.730400pt;}
.wsc{word-spacing:342.231680pt;}
.ws1f{word-spacing:345.368203pt;}
.ws17{word-spacing:368.273547pt;}
.ws1a{word-spacing:385.515797pt;}
.ws22{word-spacing:596.331307pt;}
.ws8{word-spacing:645.545600pt;}
._48{margin-left:-8.250001pt;}
._2b{margin-left:-7.311896pt;}
._2{margin-left:-6.336514pt;}
._1f{margin-left:-5.280384pt;}
._1{margin-left:-4.315189pt;}
._3{margin-left:-3.021191pt;}
._0{margin-left:-2.044037pt;}
._4{margin-left:-0.948497pt;}
._c{width:0.921298pt;}
._7{width:1.936589pt;}
._5{width:3.142479pt;}
._6{width:4.771947pt;}
._44{width:7.698443pt;}
._45{width:8.705990pt;}
._43{width:11.480025pt;}
._3f{width:12.744579pt;}
._40{width:13.833174pt;}
._3e{width:15.167581pt;}
._36{width:16.832422pt;}
._35{width:17.735848pt;}
._2f{width:20.000001pt;}
._32{width:21.052491pt;}
._33{width:21.958874pt;}
._3d{width:24.000000pt;}
._34{width:25.264549pt;}
._2e{width:26.616047pt;}
._30{width:28.000000pt;}
._3a{width:29.268132pt;}
._47{width:31.594106pt;}
._38{width:33.022070pt;}
._39{width:34.058642pt;}
._31{width:36.000011pt;}
._3b{width:38.071786pt;}
._41{width:40.000000pt;}
._37{width:41.264673pt;}
._46{width:43.900053pt;}
._18{width:44.839421pt;}
._3c{width:48.000000pt;}
._42{width:59.999991pt;}
._17{width:71.810344pt;}
._22{width:78.644791pt;}
._10{width:102.469360pt;}
._23{width:116.812489pt;}
._12{width:117.707539pt;}
._14{width:123.167756pt;}
._1a{width:131.219585pt;}
._27{width:139.690039pt;}
._1b{width:144.460778pt;}
._13{width:152.246603pt;}
._19{width:157.033091pt;}
._28{width:166.856285pt;}
._1c{width:169.546996pt;}
._2d{width:171.271260pt;}
._2a{width:173.315297pt;}
._2c{width:175.359333pt;}
._11{width:187.382140pt;}
._21{width:196.246939pt;}
._29{width:197.937926pt;}
._f{width:200.460795pt;}
._e{width:202.082271pt;}
._20{width:211.938897pt;}
._1e{width:228.301896pt;}
._d{width:231.065707pt;}
._26{width:232.964179pt;}
._1d{width:249.035432pt;}
._b{width:290.973355pt;}
._a{width:295.740075pt;}
._9{width:300.956288pt;}
._25{width:318.885029pt;}
._8{width:338.515292pt;}
._24{width:342.580009pt;}
._16{width:371.744874pt;}
._15{width:385.790889pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs3{font-size:57.493333pt;}
.fs6{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.666664pt;}
.fs1{font-size:132.945600pt;}
.fsa{font-size:149.333333pt;}
.fs2{font-size:165.333333pt;}
.fs0{font-size:227.115200pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.920000pt;}
.y2d{bottom:23.520000pt;}
.y2b{bottom:41.813333pt;}
.ybb{bottom:50.327473pt;}
.yb3{bottom:50.327553pt;}
.ye2{bottom:50.327793pt;}
.y53{bottom:51.460940pt;}
.y2a{bottom:60.106667pt;}
.y10e{bottom:69.526047pt;}
.y29{bottom:78.400000pt;}
.yb2{bottom:78.964843pt;}
.y28{bottom:96.693333pt;}
.y1c6{bottom:100.429683pt;}
.y16b{bottom:103.496096pt;}
.y18c{bottom:106.562496pt;}
.yb1{bottom:109.628910pt;}
.y27{bottom:114.986667pt;}
.y1c5{bottom:115.761723pt;}
.y16a{bottom:118.828123pt;}
.y18b{bottom:121.894536pt;}
.yb0{bottom:124.960936pt;}
.y255{bottom:129.559896pt;}
.y1c4{bottom:131.093750pt;}
.y26{bottom:133.280000pt;}
.y169{bottom:134.160150pt;}
.y10d{bottom:137.226563pt;}
.yaf{bottom:140.292963pt;}
.y254{bottom:144.893230pt;}
.y1c3{bottom:146.425776pt;}
.y168{bottom:149.492190pt;}
.y25{bottom:151.573333pt;}
.y10c{bottom:152.558590pt;}
.yae{bottom:155.625003pt;}
.y253{bottom:160.223963pt;}
.y1c2{bottom:161.757816pt;}
.y167{bottom:164.824216pt;}
.y10b{bottom:167.890630pt;}
.y24{bottom:169.866667pt;}
.yad{bottom:170.957030pt;}
.y252{bottom:175.557296pt;}
.y1c1{bottom:177.089843pt;}
.y52{bottom:177.825516pt;}
.y166{bottom:180.156243pt;}
.y10a{bottom:183.222656pt;}
.y1f0{bottom:183.799473pt;}
.yac{bottom:186.289056pt;}
.y23{bottom:188.160000pt;}
.y22a{bottom:189.355470pt;}
.y6{bottom:189.680000pt;}
.y251{bottom:190.888016pt;}
.y2e{bottom:190.986667pt;}
.y1c0{bottom:192.421870pt;}
.y51{bottom:193.157556pt;}
.y165{bottom:195.488283pt;}
.y109{bottom:198.554683pt;}
.yab{bottom:201.621096pt;}
.y1ef{bottom:202.197913pt;}
.y229{bottom:204.687496pt;}
.y250{bottom:206.221350pt;}
.y22{bottom:206.453333pt;}
.y1bf{bottom:207.753910pt;}
.y1b3{bottom:210.820310pt;}
.y108{bottom:213.886723pt;}
.yaa{bottom:216.953123pt;}
.y228{bottom:220.019536pt;}
.y274{bottom:220.020830pt;}
.y1ee{bottom:220.596353pt;}
.y24f{bottom:221.552083pt;}
.y1e2{bottom:222.997390pt;}
.y1be{bottom:223.085936pt;}
.y50{bottom:223.821609pt;}
.y21{bottom:224.746667pt;}
.y164{bottom:226.152350pt;}
.y2c{bottom:227.573333pt;}
.y107{bottom:229.218750pt;}
.y18a{bottom:229.795567pt;}
.ya9{bottom:232.285150pt;}
.y290{bottom:232.286456pt;}
.y227{bottom:235.351563pt;}
.y24e{bottom:236.885416pt;}
.y1e1{bottom:238.330723pt;}
.y1bd{bottom:238.417963pt;}
.y1b2{bottom:241.484376pt;}
.y20{bottom:243.040000pt;}
.y106{bottom:244.550776pt;}
.ya8{bottom:247.617190pt;}
.ye1{bottom:249.150390pt;}
.y273{bottom:250.682296pt;}
.y226{bottom:250.683590pt;}
.y24d{bottom:252.216150pt;}
.y1e0{bottom:253.661456pt;}
.y148{bottom:253.750003pt;}
.y1ed{bottom:254.256507pt;}
.y132{bottom:256.816403pt;}
.y7d{bottom:257.552089pt;}
.y105{bottom:259.882816pt;}
.y1f{bottom:261.333333pt;}
.y28f{bottom:262.947910pt;}
.ya7{bottom:262.949216pt;}
.y189{bottom:263.455734pt;}
.y201{bottom:263.526047pt;}
.y30{bottom:264.160000pt;}
.ye0{bottom:264.482416pt;}
.y225{bottom:266.015630pt;}
.y24c{bottom:267.549483pt;}
.y1df{bottom:268.994790pt;}
.y147{bottom:269.082030pt;}
.y131{bottom:272.148443pt;}
.y1ec{bottom:272.654948pt;}
.y104{bottom:275.214843pt;}
.ya6{bottom:278.281243pt;}
.y1e{bottom:279.626667pt;}
.ydf{bottom:279.814456pt;}
.y224{bottom:281.347656pt;}
.y272{bottom:281.348963pt;}
.y188{bottom:281.854161pt;}
.y24b{bottom:282.880203pt;}
.y1de{bottom:284.325523pt;}
.y146{bottom:284.414056pt;}
.y4f{bottom:285.208336pt;}
.y130{bottom:287.480470pt;}
.y7c{bottom:288.216143pt;}
.y103{bottom:290.546870pt;}
.y2f{bottom:291.386667pt;}
.ya5{bottom:293.613283pt;}
.y28e{bottom:293.614576pt;}
.yde{bottom:295.146483pt;}
.y223{bottom:296.679683pt;}
.y1b{bottom:297.920000pt;}
.y24a{bottom:298.213536pt;}
.y1dd{bottom:299.658856pt;}
.y145{bottom:299.746096pt;}
.y200{bottom:300.252601pt;}
.y1bc{bottom:300.322913pt;}
.y4e{bottom:300.540363pt;}
.y12f{bottom:302.812496pt;}
.y163{bottom:303.389327pt;}
.y7b{bottom:303.548183pt;}
.y102{bottom:305.878910pt;}
.ya4{bottom:308.945310pt;}
.ydd{bottom:310.478510pt;}
.y268{bottom:312.010416pt;}
.y222{bottom:312.011723pt;}
.y249{bottom:313.544270pt;}
.y1dc{bottom:314.989576pt;}
.y144{bottom:315.078123pt;}
.y4d{bottom:315.872390pt;}
.y1a{bottom:316.213333pt;}
.y12e{bottom:318.144536pt;}
.y1ff{bottom:318.651041pt;}
.y101{bottom:321.210936pt;}
.y28d{bottom:324.276043pt;}
.ya3{bottom:324.277350pt;}
.ydc{bottom:325.810550pt;}
.y221{bottom:327.343750pt;}
.y248{bottom:328.877603pt;}
.y1db{bottom:330.322910pt;}
.y143{bottom:330.410150pt;}
.y4c{bottom:331.204430pt;}
.y12d{bottom:333.476563pt;}
.y1bb{bottom:333.983067pt;}
.y80{bottom:334.212236pt;}
.y19{bottom:334.506667pt;}
.y1eb{bottom:336.542963pt;}
.y162{bottom:337.049481pt;}
.ya2{bottom:339.609376pt;}
.ydb{bottom:341.142576pt;}
.y220{bottom:342.675776pt;}
.y267{bottom:342.677083pt;}
.y1da{bottom:345.653643pt;}
.y142{bottom:345.742190pt;}
.y4b{bottom:346.536456pt;}
.y12c{bottom:348.808590pt;}
.y7a{bottom:349.602870pt;}
.y100{bottom:351.875003pt;}
.y1ba{bottom:352.381507pt;}
.y18{bottom:352.800000pt;}
.ya1{bottom:354.941403pt;}
.y28c{bottom:354.942710pt;}
.yda{bottom:356.474603pt;}
.y21f{bottom:358.007816pt;}
.y247{bottom:359.541670pt;}
.y1d9{bottom:360.986976pt;}
.y141{bottom:361.074216pt;}
.y4a{bottom:361.868483pt;}
.y12b{bottom:364.140630pt;}
.y7f{bottom:364.876303pt;}
.y79{bottom:364.934896pt;}
.y1ea{bottom:367.207030pt;}
.ya0{bottom:370.273443pt;}
.y5{bottom:370.546000pt;}
.y17{bottom:371.093333pt;}
.yd9{bottom:371.806643pt;}
.y266{bottom:373.338536pt;}
.y140{bottom:376.406243pt;}
.y12a{bottom:379.472656pt;}
.yff{bottom:382.539056pt;}
.y9f{bottom:385.605470pt;}
.yd8{bottom:387.138670pt;}
.y265{bottom:388.671870pt;}
.y16{bottom:389.386667pt;}
.y246{bottom:390.205723pt;}
.y13f{bottom:391.738283pt;}
.y49{bottom:392.532550pt;}
.y129{bottom:394.804683pt;}
.y7e{bottom:395.540369pt;}
.y78{bottom:395.598963pt;}
.y1d8{bottom:396.250003pt;}
.yfe{bottom:397.871096pt;}
.y9e{bottom:400.937496pt;}
.y1a5{bottom:401.514327pt;}
.yd7{bottom:402.470696pt;}
.y21e{bottom:404.003910pt;}
.y264{bottom:404.005203pt;}
.y245{bottom:405.536456pt;}
.y13e{bottom:407.070310pt;}
.y15{bottom:407.680000pt;}
.y6a{bottom:408.441407pt;}
.y128{bottom:410.136723pt;}
.yfd{bottom:413.203123pt;}
.y4{bottom:414.566000pt;}
.y9d{bottom:416.269536pt;}
.yd6{bottom:417.802736pt;}
.y263{bottom:419.335936pt;}
.y244{bottom:420.869790pt;}
.y13d{bottom:422.402350pt;}
.y48{bottom:423.196616pt;}
.y127{bottom:425.468750pt;}
.y14{bottom:425.973333pt;}
.y77{bottom:426.263016pt;}
.yfc{bottom:428.535150pt;}
.y9c{bottom:431.601563pt;}
.y1d7{bottom:432.550780pt;}
.yd5{bottom:433.134763pt;}
.y262{bottom:434.666670pt;}
.y21d{bottom:434.667963pt;}
.y1a4{bottom:435.174481pt;}
.y243{bottom:436.200523pt;}
.y13c{bottom:437.734376pt;}
.y47{bottom:438.528643pt;}
.y126{bottom:440.800776pt;}
.y69{bottom:441.595056pt;}
.yfb{bottom:443.867190pt;}
.y13{bottom:444.266667pt;}
.y9b{bottom:446.933590pt;}
.yd4{bottom:448.466803pt;}
.y21c{bottom:450.000003pt;}
.y187{bottom:453.066403pt;}
.y1a3{bottom:453.572921pt;}
.y46{bottom:453.860683pt;}
.y125{bottom:456.132816pt;}
.y76{bottom:456.927083pt;}
.y3{bottom:458.586000pt;}
.yfa{bottom:459.199216pt;}
.y9a{bottom:462.265630pt;}
.y12{bottom:462.560000pt;}
.yd3{bottom:463.798830pt;}
.y21b{bottom:465.332030pt;}
.y13b{bottom:468.398443pt;}
.y28b{bottom:468.973953pt;}
.y203{bottom:468.975260pt;}
.y45{bottom:469.192710pt;}
.y1d6{bottom:470.244796pt;}
.y242{bottom:470.507807pt;}
.y68{bottom:472.259110pt;}
.y1e9{bottom:474.531243pt;}
.y99{bottom:477.597656pt;}
.yd2{bottom:479.130856pt;}
.y21a{bottom:480.664056pt;}
.y11{bottom:480.853333pt;}
.y1c{bottom:483.680000pt;}
.y186{bottom:483.730470pt;}
.y44{bottom:484.524736pt;}
.y124{bottom:486.796870pt;}
.y1b1{bottom:487.373700pt;}
.y67{bottom:487.591150pt;}
.y1d5{bottom:488.902347pt;}
.y1e8{bottom:489.863283pt;}
.yf9{bottom:490.440100pt;}
.y98{bottom:492.929683pt;}
.yd1{bottom:494.462896pt;}
.y261{bottom:495.994790pt;}
.y151{bottom:495.996096pt;}
.y13a{bottom:499.062496pt;}
.y10{bottom:499.146667pt;}
.y43{bottom:499.856776pt;}
.y1a2{bottom:502.128910pt;}
.y66{bottom:502.923176pt;}
.y1fe{bottom:505.195310pt;}
.y28a{bottom:505.700521pt;}
.y202{bottom:505.701828pt;}
.y212{bottom:505.772140pt;}
.y241{bottom:507.234374pt;}
.y97{bottom:508.261723pt;}
.yd0{bottom:509.794923pt;}
.y150{bottom:511.328123pt;}
.y139{bottom:514.394536pt;}
.y42{bottom:515.188803pt;}
.yf{bottom:517.440000pt;}
.y123{bottom:517.460936pt;}
.y75{bottom:518.255203pt;}
.y1fd{bottom:520.527350pt;}
.y1b0{bottom:521.033854pt;}
.y1e7{bottom:521.104167pt;}
.y96{bottom:523.593750pt;}
.yf8{bottom:524.100254pt;}
.y289{bottom:524.101561pt;}
.ycf{bottom:525.126950pt;}
.y14f{bottom:526.660150pt;}
.y260{bottom:526.661456pt;}
.y138{bottom:529.726563pt;}
.y1f4{bottom:530.303380pt;}
.y122{bottom:532.792963pt;}
.y65{bottom:533.587243pt;}
.ye{bottom:535.733333pt;}
.y1fc{bottom:535.859376pt;}
.y1d4{bottom:537.458336pt;}
.y95{bottom:538.925776pt;}
.y1af{bottom:539.432294pt;}
.yce{bottom:540.458990pt;}
.y14e{bottom:541.992190pt;}
.yf7{bottom:542.498694pt;}
.y219{bottom:545.635420pt;}
.y41{bottom:545.852870pt;}
.y121{bottom:548.125003pt;}
.y74{bottom:548.919270pt;}
.y1d3{bottom:552.790363pt;}
.y294{bottom:552.835333pt;}
.yd{bottom:554.026667pt;}
.y94{bottom:554.257816pt;}
.y1e6{bottom:554.764321pt;}
.y1b5{bottom:554.834633pt;}
.ycd{bottom:555.791016pt;}
.y240{bottom:555.791670pt;}
.y14d{bottom:557.324216pt;}
.y211{bottom:557.830734pt;}
.y185{bottom:560.390630pt;}
.y137{bottom:560.967447pt;}
.y25f{bottom:560.968753pt;}
.y1a1{bottom:563.457030pt;}
.y1f3{bottom:563.963547pt;}
.y271{bottom:564.033860pt;}
.y64{bottom:564.251296pt;}
.y1fb{bottom:566.523443pt;}
.y2{bottom:567.838533pt;}
.y1d2{bottom:568.122390pt;}
.y93{bottom:569.589843pt;}
.y172{bottom:570.166660pt;}
.y23f{bottom:571.122390pt;}
.ycc{bottom:571.123043pt;}
.yc{bottom:572.320000pt;}
.y1e5{bottom:573.162761pt;}
.y40{bottom:576.516923pt;}
.y1a0{bottom:578.789056pt;}
.y73{bottom:579.583336pt;}
.y1f2{bottom:582.361974pt;}
.y120{bottom:582.432287pt;}
.y1d1{bottom:583.454430pt;}
.y92{bottom:584.921870pt;}
.y161{bottom:585.498700pt;}
.ycb{bottom:586.455083pt;}
.y23e{bottom:586.455723pt;}
.y1ae{bottom:587.988283pt;}
.y1b4{bottom:588.494787pt;}
.yb{bottom:590.613333pt;}
.yf6{bottom:591.054683pt;}
.y14c{bottom:591.631513pt;}
.y288{bottom:594.119790pt;}
.y19f{bottom:594.121096pt;}
.y136{bottom:594.627601pt;}
.y63{bottom:594.915363pt;}
.y293{bottom:596.851333pt;}
.y1fa{bottom:597.187496pt;}
.y25e{bottom:597.695307pt;}
.y1d0{bottom:598.786456pt;}
.y91{bottom:600.253910pt;}
.y218{bottom:600.760414pt;}
.y23d{bottom:601.786456pt;}
.yca{bottom:601.787110pt;}
.y1ad{bottom:603.320310pt;}
.y171{bottom:603.826827pt;}
.yf5{bottom:606.386723pt;}
.y3f{bottom:607.180990pt;}
.ya{bottom:608.906667pt;}
.y19e{bottom:609.453123pt;}
.y62{bottom:610.247390pt;}
.y1f9{bottom:612.519536pt;}
.y135{bottom:613.026041pt;}
.y1cf{bottom:614.118483pt;}
.yba{bottom:615.585936pt;}
.y11f{bottom:616.092454pt;}
.yc9{bottom:617.119136pt;}
.y23c{bottom:617.119790pt;}
.y1ac{bottom:618.652350pt;}
.y160{bottom:619.158854pt;}
.yf4{bottom:621.718750pt;}
.y19d{bottom:624.785150pt;}
.y287{bottom:624.786456pt;}
.y184{bottom:625.291668pt;}
.y61{bottom:625.579430pt;}
.y9{bottom:627.200000pt;}
.y1f8{bottom:627.851563pt;}
.y14b{bottom:628.358068pt;}
.y1ce{bottom:629.450523pt;}
.yb9{bottom:630.917963pt;}
.y90{bottom:631.424481pt;}
.y23b{bottom:632.450523pt;}
.yc8{bottom:632.451176pt;}
.y1ab{bottom:633.984376pt;}
.y1{bottom:634.311200pt;}
.yf3{bottom:637.050776pt;}
.y3e{bottom:637.786463pt;}
.y19c{bottom:640.117190pt;}
.y292{bottom:640.867333pt;}
.y60{bottom:640.911456pt;}
.y210{bottom:643.183590pt;}
.y183{bottom:643.690108pt;}
.y1cd{bottom:644.782550pt;}
.y8{bottom:645.493333pt;}
.y1b9{bottom:646.250003pt;}
.y14a{bottom:646.756507pt;}
.y23a{bottom:647.783856pt;}
.ybd{bottom:648.289707pt;}
.y1aa{bottom:649.316403pt;}
.yf2{bottom:652.382816pt;}
.y286{bottom:655.447910pt;}
.y19b{bottom:655.449216pt;}
.y5f{bottom:656.243483pt;}
.y20f{bottom:658.515630pt;}
.y1f7{bottom:659.092447pt;}
.y1cc{bottom:660.114576pt;}
.y1b8{bottom:661.582030pt;}
.y239{bottom:663.114576pt;}
.y7{bottom:663.786667pt;}
.y11e{bottom:664.648443pt;}
.yb8{bottom:665.154948pt;}
.y25d{bottom:667.713536pt;}
.yf1{bottom:667.714843pt;}
.y3d{bottom:668.509110pt;}
.y19a{bottom:670.781243pt;}
.y5e{bottom:671.575523pt;}
.y20e{bottom:673.847656pt;}
.y270{bottom:673.848963pt;}
.y1cb{bottom:675.446616pt;}
.y1f1{bottom:676.914056pt;}
.y1f6{bottom:677.490887pt;}
.y238{bottom:678.447910pt;}
.y11d{bottom:679.980470pt;}
.yf0{bottom:683.046870pt;}
.yb7{bottom:683.553387pt;}
.y3c{bottom:683.841150pt;}
.y285{bottom:686.114576pt;}
.y5d{bottom:686.907550pt;}
.y20d{bottom:689.179683pt;}
.y1ca{bottom:690.778643pt;}
.y182{bottom:692.246096pt;}
.y1b7{bottom:692.822913pt;}
.y237{bottom:693.778643pt;}
.y11c{bottom:695.312496pt;}
.y15f{bottom:698.378910pt;}
.y25c{bottom:698.380203pt;}
.yef{bottom:698.955727pt;}
.y199{bottom:701.445310pt;}
.y72{bottom:702.239576pt;}
.y26f{bottom:704.510416pt;}
.y20c{bottom:704.511723pt;}
.y1c9{bottom:706.110683pt;}
.y181{bottom:707.578123pt;}
.y236{bottom:709.111976pt;}
.y11b{bottom:710.644536pt;}
.y1f5{bottom:711.151041pt;}
.y15e{bottom:713.710936pt;}
.y3b{bottom:714.505203pt;}
.y284{bottom:716.776043pt;}
.yee{bottom:716.777350pt;}
.y5c{bottom:717.571616pt;}
.y8f{bottom:718.887367pt;}
.y20b{bottom:719.843750pt;}
.y180{bottom:722.910150pt;}
.y235{bottom:724.442710pt;}
.y11a{bottom:725.976563pt;}
.y1b6{bottom:726.483067pt;}
.y291{bottom:728.862000pt;}
.y25b{bottom:729.041670pt;}
.y15d{bottom:729.042963pt;}
.y3a{bottom:729.778649pt;}
.yed{bottom:732.109376pt;}
.y71{bottom:732.845049pt;}
.y20a{bottom:735.175776pt;}
.y26e{bottom:735.177083pt;}
.y8e{bottom:737.285807pt;}
.y17f{bottom:738.242190pt;}
.y234{bottom:739.776043pt;}
.y119{bottom:741.308590pt;}
.y15c{bottom:744.375003pt;}
.yec{bottom:747.441403pt;}
.y283{bottom:747.442710pt;}
.y5b{bottom:748.177089pt;}
.y70{bottom:748.235683pt;}
.y209{bottom:750.507816pt;}
.y17e{bottom:753.574216pt;}
.y8d{bottom:755.684247pt;}
.y118{bottom:756.640630pt;}
.y15b{bottom:759.707030pt;}
.y25a{bottom:759.708336pt;}
.y39{bottom:760.501296pt;}
.yeb{bottom:762.773443pt;}
.y5a{bottom:763.567710pt;}
.y26d{bottom:765.838536pt;}
.y208{bottom:765.839843pt;}
.y17d{bottom:768.906243pt;}
.y233{bottom:770.440110pt;}
.y117{bottom:771.972656pt;}
.y8c{bottom:774.082687pt;}
.y15a{bottom:775.039056pt;}
.y282{bottom:778.104163pt;}
.y1c8{bottom:778.105470pt;}
.yea{bottom:778.682287pt;}
.y6f{bottom:778.899736pt;}
.y207{bottom:781.171870pt;}
.y17c{bottom:784.238283pt;}
.y116{bottom:787.304683pt;}
.y259{bottom:790.369790pt;}
.y159{bottom:790.371096pt;}
.yc7{bottom:790.947913pt;}
.y38{bottom:791.165363pt;}
.y8b{bottom:792.481113pt;}
.y281{bottom:793.437496pt;}
.y198{bottom:794.014327pt;}
.y59{bottom:794.231776pt;}
.ye9{bottom:796.503910pt;}
.y26c{bottom:796.505203pt;}
.y17b{bottom:799.570310pt;}
.y232{bottom:801.104163pt;}
.y115{bottom:802.636723pt;}
.y158{bottom:805.703123pt;}
.y37{bottom:806.497390pt;}
.y280{bottom:808.770830pt;}
.yc6{bottom:809.346353pt;}
.y58{bottom:809.563803pt;}
.y8a{bottom:810.879553pt;}
.y217{bottom:811.835936pt;}
.ye8{bottom:812.342454pt;}
.y17a{bottom:814.902350pt;}
.y231{bottom:816.434896pt;}
.y114{bottom:817.968750pt;}
.y157{bottom:821.035150pt;}
.y258{bottom:821.036456pt;}
.y36{bottom:821.829427pt;}
.y27f{bottom:824.101563pt;}
.y6e{bottom:824.895832pt;}
.y26b{bottom:827.166670pt;}
.y216{bottom:827.167963pt;}
.y197{bottom:827.674481pt;}
.yc5{bottom:827.744793pt;}
.y89{bottom:829.277993pt;}
.y179{bottom:830.234376pt;}
.ye7{bottom:830.740881pt;}
.y230{bottom:831.768230pt;}
.y113{bottom:833.300776pt;}
.y156{bottom:836.367190pt;}
.y35{bottom:837.161458pt;}
.y27e{bottom:839.432296pt;}
.y57{bottom:840.227864pt;}
.y215{bottom:842.500003pt;}
.y1c7{bottom:843.006507pt;}
.y178{bottom:845.566403pt;}
.yc4{bottom:846.143233pt;}
.y22f{bottom:847.098963pt;}
.y88{bottom:847.676433pt;}
.y134{bottom:848.632816pt;}
.y170{bottom:851.699216pt;}
.y27d{bottom:854.765630pt;}
.y6d{bottom:855.501301pt;}
.y214{bottom:857.832030pt;}
.y26a{bottom:857.833336pt;}
.y177{bottom:860.898443pt;}
.y22e{bottom:862.432296pt;}
.y112{bottom:863.964843pt;}
.yc3{bottom:864.541660pt;}
.y87{bottom:866.074873pt;}
.y155{bottom:867.031243pt;}
.y34{bottom:867.766927pt;}
.y257{bottom:870.098963pt;}
.y56{bottom:870.833333pt;}
.y196{bottom:876.230470pt;}
.y22d{bottom:877.763016pt;}
.y133{bottom:879.296870pt;}
.y16f{bottom:882.363283pt;}
.yc2{bottom:882.940100pt;}
.y86{bottom:884.473307pt;}
.y27c{bottom:885.429683pt;}
.y6c{bottom:886.223958pt;}
.y269{bottom:888.494791pt;}
.y213{bottom:888.496094pt;}
.y195{bottom:891.562499pt;}
.y176{bottom:893.095703pt;}
.y22c{bottom:893.096354pt;}
.y111{bottom:894.628906pt;}
.y154{bottom:897.695312pt;}
.y33{bottom:898.430989pt;}
.y27b{bottom:900.760416pt;}
.yc1{bottom:901.338541pt;}
.y55{bottom:901.555990pt;}
.y85{bottom:902.871745pt;}
.y256{bottom:903.828124pt;}
.y194{bottom:906.894531pt;}
.y22b{bottom:908.427083pt;}
.y175{bottom:908.427734pt;}
.y110{bottom:909.960938pt;}
.y153{bottom:913.027343pt;}
.y27a{bottom:916.093750pt;}
.y6b{bottom:916.829427pt;}
.ye6{bottom:919.101563pt;}
.yc0{bottom:919.736979pt;}
.y84{bottom:921.270183pt;}
.y193{bottom:922.226562pt;}
.y174{bottom:923.759766pt;}
.y206{bottom:925.292968pt;}
.y152{bottom:928.359375pt;}
.y16e{bottom:928.936197pt;}
.y32{bottom:929.095052pt;}
.y279{bottom:931.427083pt;}
.y54{bottom:932.161459pt;}
.y192{bottom:937.558594pt;}
.ybf{bottom:938.135416pt;}
.yb6{bottom:939.668620pt;}
.y205{bottom:940.624999pt;}
.y10f{bottom:941.201823pt;}
.y1e4{bottom:943.632812pt;}
.y1a9{bottom:944.268229pt;}
.y31{bottom:944.992188pt;}
.y278{bottom:946.757812pt;}
.y191{bottom:952.890624pt;}
.ye5{bottom:953.397135pt;}
.y83{bottom:956.463542pt;}
.ybe{bottom:956.533855pt;}
.yb5{bottom:958.067057pt;}
.y149{bottom:959.600260pt;}
.y277{bottom:962.088542pt;}
.y1a8{bottom:962.089843pt;}
.y16d{bottom:962.596354pt;}
.y190{bottom:968.222656pt;}
.ye4{bottom:971.795573pt;}
.y82{bottom:974.861979pt;}
.y204{bottom:974.932292pt;}
.y173{bottom:976.112631pt;}
.ybc{bottom:976.177084pt;}
.y1e3{bottom:977.363281pt;}
.y1a7{bottom:977.928385pt;}
.y276{bottom:978.000000pt;}
.y16c{bottom:980.994791pt;}
.y18f{bottom:983.554687pt;}
.yb4{bottom:993.260417pt;}
.y275{bottom:995.820312pt;}
.y1a6{bottom:996.326823pt;}
.y18e{bottom:998.886719pt;}
.ye3{bottom:1009.157551pt;}
.y81{bottom:1011.658854pt;}
.y18d{bottom:1014.218750pt;}
.h9{height:16.986667pt;}
.hf{height:37.031249pt;}
.h15{height:37.057291pt;}
.h13{height:38.333332pt;}
.hd{height:38.828124pt;}
.h7{height:39.077500pt;}
.h8{height:39.835469pt;}
.h17{height:40.763022pt;}
.h18{height:42.472658pt;}
.h1e{height:42.710938pt;}
.h14{height:44.468750pt;}
.hc{height:46.593750pt;}
.h1a{height:47.369790pt;}
.he{height:47.812499pt;}
.h12{height:48.255207pt;}
.h1f{height:48.925783pt;}
.hb{height:53.573333pt;}
.h19{height:54.359373pt;}
.h11{height:57.375000pt;}
.h1b{height:58.392190pt;}
.h1c{height:58.710940pt;}
.h16{height:71.666667pt;}
.h1d{height:95.666667pt;}
.h10{height:96.000000pt;}
.h3{height:96.518506pt;}
.h21{height:108.117333pt;}
.h20{height:116.629333pt;}
.h4{height:129.125333pt;}
.h2{height:164.885635pt;}
.ha{height:638.960000pt;}
.h6{height:676.853333pt;}
.h5{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:81.013333pt;}
.w4{width:128.053333pt;}
.w3{width:676.853333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:794.666667pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:2.613333pt;}
.xf{left:3.920000pt;}
.xe{left:44.426667pt;}
.x2{left:60.850267pt;}
.x6{left:69.253333pt;}
.x1{left:93.880267pt;}
.x13{left:96.000000pt;}
.x59{left:97.716185pt;}
.x42{left:99.075949pt;}
.x7{left:100.613333pt;}
.x34{left:102.580862pt;}
.x3f{left:104.346487pt;}
.x3d{left:106.218542pt;}
.x57{left:107.917189pt;}
.x3a{left:109.366018pt;}
.x3b{left:111.512739pt;}
.x5d{left:113.559591pt;}
.x36{left:114.573050pt;}
.x47{left:115.916800pt;}
.x6b{left:116.823050pt;}
.x3c{left:117.913000pt;}
.x38{left:119.002737pt;}
.x3e{left:120.342581pt;}
.x24{left:121.526175pt;}
.x4d{left:122.616018pt;}
.x25{left:124.000000pt;}
.x5a{left:126.234022pt;}
.x28{left:127.440237pt;}
.x2e{left:130.127739pt;}
.x7a{left:131.495720pt;}
.x29{left:134.000000pt;}
.x74{left:135.010551pt;}
.x52{left:140.526176pt;}
.x81{left:143.346489pt;}
.x88{left:145.018364pt;}
.x7d{left:147.491020pt;}
.x89{left:149.686333pt;}
.x3{left:150.714133pt;}
.x85{left:155.627739pt;}
.x53{left:158.018394pt;}
.x50{left:160.014458pt;}
.x4a{left:163.213676pt;}
.x37{left:164.252747pt;}
.xa{left:167.253333pt;}
.x4b{left:168.394928pt;}
.x64{left:170.034645pt;}
.x2d{left:173.662895pt;}
.x61{left:177.655495pt;}
.x6d{left:178.820641pt;}
.x8a{left:180.519467pt;}
.x43{left:182.887634pt;}
.x41{left:185.033989pt;}
.x7e{left:186.825127pt;}
.x45{left:190.967506pt;}
.x54{left:191.928520pt;}
.x51{left:198.233192pt;}
.x33{left:202.756111pt;}
.x14{left:204.000000pt;}
.x73{left:207.479301pt;}
.x71{left:209.709770pt;}
.x49{left:213.283989pt;}
.x58{left:215.463676pt;}
.x82{left:216.377739pt;}
.x4e{left:220.235458pt;}
.x23{left:223.030083pt;}
.x31{left:224.823044pt;}
.x55{left:225.826767pt;}
.xb{left:229.973333pt;}
.x7c{left:234.155075pt;}
.x78{left:236.826950pt;}
.x60{left:237.905075pt;}
.x66{left:242.298050pt;}
.x65{left:243.596481pt;}
.x27{left:246.291794pt;}
.x87{left:247.901169pt;}
.x39{left:248.826950pt;}
.x2b{left:250.135544pt;}
.x2f{left:251.487106pt;}
.x6f{left:253.514450pt;}
.x44{left:255.944138pt;}
.x75{left:257.155899pt;}
.x72{left:258.647263pt;}
.x63{left:260.182419pt;}
.x11{left:264.699870pt;}
.x40{left:267.033980pt;}
.x4{left:268.224800pt;}
.x48{left:270.994540pt;}
.x56{left:272.381640pt;}
.x84{left:274.944140pt;}
.x6c{left:276.381640pt;}
.x83{left:278.387500pt;}
.x86{left:279.483200pt;}
.x32{left:280.811330pt;}
.x5b{left:283.255630pt;}
.x5{left:284.592800pt;}
.x20{left:285.665390pt;}
.x62{left:291.510540pt;}
.x4f{left:293.276170pt;}
.x80{left:295.963670pt;}
.x1c{left:297.649120pt;}
.x77{left:298.747410pt;}
.x7f{left:300.647260pt;}
.x4c{left:303.924610pt;}
.x22{left:308.819140pt;}
.x21{left:312.686330pt;}
.x2a{left:313.729290pt;}
.x16{left:315.031680pt;}
.x70{left:317.262300pt;}
.x6a{left:320.373830pt;}
.x68{left:325.725390pt;}
.x2c{left:329.412890pt;}
.x5c{left:331.963670pt;}
.x67{left:333.963670pt;}
.x35{left:335.061330pt;}
.x5f{left:335.959760pt;}
.x30{left:339.328480pt;}
.x1a{left:342.322710pt;}
.x5e{left:343.791780pt;}
.x15{left:344.798770pt;}
.x69{left:346.378630pt;}
.x1b{left:347.271730pt;}
.x1d{left:349.614750pt;}
.x19{left:351.215870pt;}
.x12{left:353.568080pt;}
.x9{left:355.413333pt;}
.xc{left:356.720000pt;}
.x1e{left:359.610840pt;}
.x10{left:363.996090pt;}
.x76{left:368.272280pt;}
.x7b{left:370.619930pt;}
.x1f{left:372.073240pt;}
.x79{left:374.459780pt;}
.x6e{left:377.741030pt;}
.x46{left:388.850400pt;}
.x17{left:390.955870pt;}
.x26{left:392.850400pt;}
.x18{left:404.000000pt;}
.xd{left:663.786667pt;}
}




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