
    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_013b030c720678cb837265e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ecc86a329c6297d659918b0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_f524bc6f9b08ca5d6fcc6e0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b11ac7f84429763d30760f32.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_354a444aae985b9e8d9e743e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_58592032cb259e668f446372.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_dd69ade6df61d7b3dd52b3fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_ab3210d22d8f4ffe1ff6b470.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.870605;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_bc4c7b383118a8eba34e68bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_0c8d2fbf1593d77a005bcd85.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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_c92ebf0b2607402c4d74b96e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_19cc397d857404adee1ed371.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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_ab3210d22d8f4ffe1ff6b470.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.870605;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_ecc86a329c6297d659918b0b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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_a5e182b0e8ceace2cc1c42f5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;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_7d7fbc2df3edd58b32dc838a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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_3c670463b68be67be40d5e7c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_11bee7cb20614a309752d1cb.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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);}
.m2{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-108.010800px;}
.v2{vertical-align:-86.400000px;}
.v3{vertical-align:-72.000000px;}
.v4{vertical-align:-64.799400px;}
.v7{vertical-align:-28.800000px;}
.v6{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:28.800000px;}
.ls5b{letter-spacing:-5.385600px;}
.ls59{letter-spacing:-4.590000px;}
.ls40{letter-spacing:-4.212000px;}
.lsf{letter-spacing:-3.628800px;}
.ls2a{letter-spacing:-3.564000px;}
.ls71{letter-spacing:-3.419757px;}
.ls72{letter-spacing:-2.611451px;}
.ls58{letter-spacing:-1.958400px;}
.ls5e{letter-spacing:-1.927499px;}
.ls30{letter-spacing:-1.782000px;}
.ls2b{letter-spacing:-1.778400px;}
.ls2f{letter-spacing:-1.774800px;}
.ls64{letter-spacing:-1.430080px;}
.ls68{letter-spacing:-1.367903px;}
.ls6c{letter-spacing:-1.305725px;}
.ls62{letter-spacing:-1.243548px;}
.ls57{letter-spacing:-0.979200px;}
.ls67{letter-spacing:-0.932661px;}
.ls5a{letter-spacing:-0.918000px;}
.lsc{letter-spacing:-0.842400px;}
.ls5c{letter-spacing:-0.795600px;}
.ls60{letter-spacing:-0.746129px;}
.ls6b{letter-spacing:-0.683951px;}
.ls66{letter-spacing:-0.621774px;}
.ls5f{letter-spacing:-0.248710px;}
.ls1d{letter-spacing:-0.244800px;}
.ls47{letter-spacing:-0.239040px;}
.ls73{letter-spacing:-0.124355px;}
.ls11{letter-spacing:-0.064800px;}
.ls48{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.018000px;}
.ls42{letter-spacing:0.059760px;}
.ls10{letter-spacing:0.064800px;}
.ls49{letter-spacing:0.119520px;}
.ls4a{letter-spacing:0.132480px;}
.ls44{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.234000px;}
.ls43{letter-spacing:0.239040px;}
.ls4b{letter-spacing:0.264960px;}
.ls70{letter-spacing:0.310887px;}
.ls46{letter-spacing:0.358560px;}
.ls20{letter-spacing:0.367200px;}
.ls65{letter-spacing:0.373064px;}
.ls6d{letter-spacing:0.435242px;}
.ls63{letter-spacing:0.497419px;}
.ls17{letter-spacing:0.550800px;}
.ls3f{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.734400px;}
.ls39{letter-spacing:0.745200px;}
.ls3e{letter-spacing:0.756000px;}
.ls2c{letter-spacing:0.842400px;}
.ls6e{letter-spacing:0.870484px;}
.ls55{letter-spacing:0.871200px;}
.ls3d{letter-spacing:0.900000px;}
.ls1f{letter-spacing:0.918000px;}
.ls6a{letter-spacing:0.932661px;}
.ls16{letter-spacing:0.979200px;}
.ls52{letter-spacing:1.040400px;}
.ls61{letter-spacing:1.057016px;}
.ls4e{letter-spacing:1.101600px;}
.ls4f{letter-spacing:1.162800px;}
.ls4d{letter-spacing:1.224000px;}
.ls35{letter-spacing:1.242000px;}
.ls5d{letter-spacing:1.285200px;}
.ls74{letter-spacing:1.389600px;}
.ls1e{letter-spacing:1.407600px;}
.ls2e{letter-spacing:1.450800px;}
.ls29{letter-spacing:1.472400px;}
.ls13{letter-spacing:1.497600px;}
.ls50{letter-spacing:1.652400px;}
.ls19{letter-spacing:1.774800px;}
.ls23{letter-spacing:1.778400px;}
.ls24{letter-spacing:1.814400px;}
.lse{letter-spacing:1.821600px;}
.ls2d{letter-spacing:1.825200px;}
.ls25{letter-spacing:1.879200px;}
.ls27{letter-spacing:1.944000px;}
.ls34{letter-spacing:1.972800px;}
.ls37{letter-spacing:2.073600px;}
.ls6f{letter-spacing:2.238386px;}
.ls69{letter-spacing:2.300564px;}
.ls31{letter-spacing:2.462400px;}
.ls53{letter-spacing:2.692800px;}
.ls33{letter-spacing:2.714400px;}
.lsd{letter-spacing:2.761200px;}
.ls21{letter-spacing:2.815200px;}
.ls56{letter-spacing:3.405600px;}
.ls12{letter-spacing:3.628800px;}
.ls7{letter-spacing:5.378400px;}
.ls26{letter-spacing:5.767200px;}
.ls1c{letter-spacing:9.007200px;}
.ls3b{letter-spacing:11.718000px;}
.ls22{letter-spacing:12.571200px;}
.ls41{letter-spacing:13.219200px;}
.ls38{letter-spacing:13.348800px;}
.lsa{letter-spacing:16.052400px;}
.ls4{letter-spacing:16.200000px;}
.ls3{letter-spacing:16.264800px;}
.ls9{letter-spacing:16.394400px;}
.ls3a{letter-spacing:16.524000px;}
.ls8{letter-spacing:19.764000px;}
.ls32{letter-spacing:19.828800px;}
.ls1b{letter-spacing:20.476800px;}
.ls51{letter-spacing:20.685600px;}
.ls36{letter-spacing:23.392800px;}
.ls28{letter-spacing:23.522400px;}
.ls2{letter-spacing:38.296800px;}
.ls1{letter-spacing:94.168800px;}
.ls6{letter-spacing:99.050400px;}
.ls5{letter-spacing:101.491200px;}
.ls54{letter-spacing:135.907200px;}
.ls1a{letter-spacing:153.345600px;}
.ls4c{letter-spacing:2473.765200px;}
.ls45{letter-spacing:2478.426480px;}
.ls18{letter-spacing:2506.140000px;}
.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;}
}
.ws83{word-spacing:-21.445200px;}
.ws61{word-spacing:-20.671200px;}
.ws8{word-spacing:-19.828800px;}
.ws65{word-spacing:-17.074800px;}
.ws6a{word-spacing:-16.952400px;}
.ws54{word-spacing:-16.824960px;}
.ws53{word-spacing:-16.560000px;}
.ws69{word-spacing:-16.524000px;}
.wsae{word-spacing:-16.290479px;}
.ws62{word-spacing:-16.279200px;}
.ws6{word-spacing:-16.264800px;}
.ws4{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.135200px;}
.ws3{word-spacing:-15.771600px;}
.ws63{word-spacing:-15.300000px;}
.ws52{word-spacing:-15.298560px;}
.ws20{word-spacing:-15.238800px;}
.ws21{word-spacing:-14.749200px;}
.ws41{word-spacing:-14.742000px;}
.ws99{word-spacing:-14.549512px;}
.ws6c{word-spacing:-14.504400px;}
.ws66{word-spacing:-14.320800px;}
.ws1f{word-spacing:-13.831200px;}
.ws51{word-spacing:-13.744800px;}
.ws2c{word-spacing:-13.525200px;}
.ws50{word-spacing:-13.505760px;}
.ws45{word-spacing:-13.500000px;}
.ws67{word-spacing:-13.341600px;}
.ws89{word-spacing:-13.305964px;}
.ws64{word-spacing:-13.305600px;}
.ws93{word-spacing:-13.119431px;}
.ws1{word-spacing:-13.010400px;}
.ws2b{word-spacing:-12.636000px;}
.ws5{word-spacing:-12.571200px;}
.ws3d{word-spacing:-12.542400px;}
.ws2{word-spacing:-12.168000px;}
.ws3a{word-spacing:-11.718000px;}
.ws3b{word-spacing:-11.700000px;}
.ws2a{word-spacing:-10.800000px;}
.ws68{word-spacing:-10.710000px;}
.ws3c{word-spacing:-9.921600px;}
.ws6b{word-spacing:-9.914400px;}
.ws44{word-spacing:-9.288000px;}
.ws27{word-spacing:-9.108000px;}
.ws75{word-spacing:-6.242400px;}
.ws81{word-spacing:-5.446800px;}
.ws2f{word-spacing:-4.554000px;}
.wsf6{word-spacing:-3.854999px;}
.ws18{word-spacing:-2.761200px;}
.ws39{word-spacing:-2.714400px;}
.ws34{word-spacing:-2.692800px;}
.ws82{word-spacing:-2.570400px;}
.wsf4{word-spacing:-2.487096px;}
.ws72{word-spacing:-2.142000px;}
.wsf7{word-spacing:-2.114032px;}
.wsf2{word-spacing:-1.989677px;}
.ws3e{word-spacing:-1.897200px;}
.ws6d{word-spacing:-1.774800px;}
.ws38{word-spacing:-1.731600px;}
.ws1c{word-spacing:-1.497600px;}
.ws23{word-spacing:-1.407600px;}
.ws1e{word-spacing:-1.357200px;}
.ws77{word-spacing:-1.224000px;}
.ws70{word-spacing:-0.979200px;}
.ws36{word-spacing:-0.918000px;}
.wsb{word-spacing:-0.910800px;}
.wsf3{word-spacing:-0.870484px;}
.ws4e{word-spacing:-0.594000px;}
.ws25{word-spacing:-0.428400px;}
.ws24{word-spacing:-0.367200px;}
.ws55{word-spacing:-0.358560px;}
.ws1b{word-spacing:-0.234000px;}
.wsf5{word-spacing:-0.186532px;}
.ws5b{word-spacing:-0.132480px;}
.ws29{word-spacing:-0.064800px;}
.ws57{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:0.059760px;}
.ws26{word-spacing:0.183600px;}
.ws56{word-spacing:0.239040px;}
.ws22{word-spacing:0.244800px;}
.ws35{word-spacing:0.856800px;}
.ws40{word-spacing:0.889200px;}
.ws78{word-spacing:0.918000px;}
.ws1a{word-spacing:1.170000px;}
.ws73{word-spacing:1.285200px;}
.ws7c{word-spacing:1.774800px;}
.ws47{word-spacing:1.782000px;}
.ws16{word-spacing:1.814400px;}
.ws32{word-spacing:1.872000px;}
.wsa{word-spacing:2.246400px;}
.ws37{word-spacing:2.700000px;}
.wse{word-spacing:3.628800px;}
.ws43{word-spacing:3.726000px;}
.ws60{word-spacing:4.305600px;}
.ws74{word-spacing:4.467600px;}
.ws33{word-spacing:4.492800px;}
.ws7a{word-spacing:4.528800px;}
.ws15{word-spacing:5.378400px;}
.ws19{word-spacing:5.850000px;}
.ws49{word-spacing:6.264000px;}
.ws42{word-spacing:6.858000px;}
.ws5f{word-spacing:7.948800px;}
.ws79{word-spacing:8.078400px;}
.ws5c{word-spacing:8.611200px;}
.ws11{word-spacing:9.007200px;}
.ws59{word-spacing:9.339840px;}
.ws1d{word-spacing:9.453600px;}
.ws3f{word-spacing:9.882000px;}
.ws5a{word-spacing:10.068480px;}
.ws80{word-spacing:10.893600px;}
.ws71{word-spacing:11.689200px;}
.ws6e{word-spacing:11.750400px;}
.ws7f{word-spacing:11.872800px;}
.ws6f{word-spacing:12.546000px;}
.ws13{word-spacing:12.571200px;}
.ws48{word-spacing:13.500000px;}
.ws7e{word-spacing:15.300000px;}
.ws31{word-spacing:15.303600px;}
.ws12{word-spacing:16.200000px;}
.ws46{word-spacing:17.064000px;}
.ws4d{word-spacing:17.658000px;}
.ws9{word-spacing:19.188000px;}
.ws17{word-spacing:19.828800px;}
.ws4a{word-spacing:20.682000px;}
.ws5d{word-spacing:20.733120px;}
.ws5e{word-spacing:20.865600px;}
.ws76{word-spacing:22.460400px;}
.ws7d{word-spacing:22.644000px;}
.ws14{word-spacing:23.328000px;}
.wsf{word-spacing:23.392800px;}
.ws28{word-spacing:23.457600px;}
.ws4c{word-spacing:24.300000px;}
.ws7b{word-spacing:26.071200px;}
.ws10{word-spacing:27.021600px;}
.ws4b{word-spacing:27.864000px;}
.wsc{word-spacing:30.585600px;}
.ws2e{word-spacing:34.214400px;}
.ws2d{word-spacing:37.778400px;}
.ws30{word-spacing:41.407200px;}
.wsd{word-spacing:48.600000px;}
.ws4f{word-spacing:52.228800px;}
.wscb{word-spacing:63.130587px;}
.wsd0{word-spacing:69.597036px;}
.wsb5{word-spacing:72.457197px;}
.wscd{word-spacing:72.954616px;}
.wsa9{word-spacing:73.017393px;}
.wsc4{word-spacing:74.260941px;}
.wsd5{word-spacing:75.068648px;}
.ws86{word-spacing:77.555744px;}
.wsc8{word-spacing:78.923646px;}
.wsa8{word-spacing:79.918485px;}
.ws8d{word-spacing:80.478081px;}
.wsde{word-spacing:80.726791px;}
.ws84{word-spacing:81.286987px;}
.wse7{word-spacing:82.281226px;}
.wsbf{word-spacing:82.778645px;}
.wsc7{word-spacing:83.960016px;}
.wsba{word-spacing:84.208725px;}
.wsda{word-spacing:84.457435px;}
.ws8e{word-spacing:84.768922px;}
.wsb3{word-spacing:85.452273px;}
.ws8c{word-spacing:86.384934px;}
.wsed{word-spacing:86.447712px;}
.wsf1{word-spacing:87.441950px;}
.ws94{word-spacing:88.375211px;}
.wsc5{word-spacing:88.996385px;}
.wse9{word-spacing:89.431627px;}
.wsea{word-spacing:89.555982px;}
.ws88{word-spacing:90.364288px;}
.ws90{word-spacing:90.364888px;}
.wsef{word-spacing:91.110417px;}
.wsa4{word-spacing:92.292387px;}
.wsb8{word-spacing:92.478919px;}
.wse3{word-spacing:92.727029px;}
.ws9a{word-spacing:92.851384px;}
.wsab{word-spacing:93.597513px;}
.wsc6{word-spacing:93.721868px;}
.wsce{word-spacing:93.846222px;}
.ws9f{word-spacing:93.846822px;}
.wsd7{word-spacing:94.219287px;}
.ws9c{word-spacing:95.027593px;}
.wscc{word-spacing:95.151948px;}
.wse0{word-spacing:96.084609px;}
.wse1{word-spacing:96.271741px;}
.wsa6{word-spacing:97.328157px;}
.wsc2{word-spacing:97.514689px;}
.wsb1{word-spacing:97.515289px;}
.wsad{word-spacing:97.701221px;}
.ws9e{word-spacing:97.887753px;}
.wse5{word-spacing:98.261418px;}
.wsbb{word-spacing:98.447950px;}
.wsb2{word-spacing:98.571705px;}
.wsdc{word-spacing:99.131301px;}
.ws98{word-spacing:99.504366px;}
.wsaf{word-spacing:99.504966px;}
.ws8a{word-spacing:99.690898px;}
.wsa3{word-spacing:99.815253px;}
.ws92{word-spacing:100.001785px;}
.wseb{word-spacing:100.126140px;}
.wsd3{word-spacing:100.437027px;}
.ws96{word-spacing:100.996623px;}
.wsc0{word-spacing:101.494043px;}
.wsd2{word-spacing:101.742752px;}
.wsbd{word-spacing:101.991462px;}
.wsc3{word-spacing:104.602913px;}
.wsd8{word-spacing:105.722106px;}
.wsb7{word-spacing:106.530412px;}
.wsbc{word-spacing:112.500042px;}
.wsca{word-spacing:113.742990px;}
.wsa1{word-spacing:114.178232px;}
.wsf0{word-spacing:205.289249px;}
.ws95{word-spacing:232.522350px;}
.wsc9{word-spacing:241.227786px;}
.ws87{word-spacing:247.818591px;}
.wsb6{word-spacing:266.098746px;}
.ws8f{word-spacing:270.264032px;}
.ws97{word-spacing:270.264632px;}
.wsec{word-spacing:272.627373px;}
.wsaa{word-spacing:276.917614px;}
.wsb9{word-spacing:278.782936px;}
.wsdb{word-spacing:279.839952px;}
.wsd1{word-spacing:282.886644px;}
.wsbe{word-spacing:286.803820px;}
.wse4{word-spacing:301.602042px;}
.wsd6{word-spacing:308.441556px;}
.wsdd{word-spacing:311.674780px;}
.ws9b{word-spacing:312.172200px;}
.wscf{word-spacing:319.757842px;}
.ws8b{word-spacing:328.213969px;}
.wse8{word-spacing:332.877274px;}
.wsdf{word-spacing:342.079529px;}
.ws91{word-spacing:343.571787px;}
.wsa0{word-spacing:345.312754px;}
.ws85{word-spacing:346.306992px;}
.wsc1{word-spacing:350.349123px;}
.wse2{word-spacing:359.923843px;}
.wsee{word-spacing:361.416700px;}
.wsac{word-spacing:364.836457px;}
.wsb4{word-spacing:378.018066px;}
.wsa7{word-spacing:381.748710px;}
.wsd9{word-spacing:385.852419px;}
.wsd4{word-spacing:386.474193px;}
.wsa5{word-spacing:388.090805px;}
.wsb0{word-spacing:389.768995px;}
.ws9d{word-spacing:394.557255px;}
.wsa2{word-spacing:415.200151px;}
.wse6{word-spacing:460.403121px;}
._1a{margin-left:-20.044800px;}
._1d{margin-left:-13.968000px;}
._1b{margin-left:-9.770400px;}
._17{margin-left:-8.280000px;}
._12{margin-left:-6.858000px;}
._18{margin-left:-5.738400px;}
._2{margin-left:-4.680000px;}
._8{margin-left:-3.535200px;}
._0{margin-left:-1.638000px;}
._1{width:1.170000px;}
._3{width:2.667600px;}
._6{width:4.165200px;}
._16{width:5.414400px;}
._7{width:7.088400px;}
._5{width:8.143200px;}
._4{width:10.155600px;}
._15{width:11.307600px;}
._e{width:12.477600px;}
._d{width:13.564800px;}
._13{width:15.379200px;}
._f{width:17.222400px;}
._b{width:19.368000px;}
._a{width:20.440800px;}
._c{width:22.780800px;}
._9{width:24.174000px;}
._11{width:34.383600px;}
._10{width:38.412000px;}
._14{width:53.125200px;}
._27{width:138.014638px;}
._24{width:160.534254px;}
._21{width:226.955154px;}
._20{width:245.019990px;}
._1f{width:265.176138px;}
._22{width:282.327837px;}
._26{width:308.662885px;}
._29{width:341.674428px;}
._25{width:356.465583px;}
._23{width:390.651485px;}
._28{width:396.933114px;}
._1c{width:844.551360px;}
._1e{width:847.778400px;}
._19{width:2131.228800px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(88,88,88);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fsc{font-size:39.600000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:43.200000px;}
.fs6{font-size:46.800000px;}
.fsa{font-size:50.400000px;}
.fse{font-size:54.000000px;}
.fsf{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:61.200000px;}
.fs13{font-size:62.177400px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:64.800000px;}
.fs10{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:77.760000px;}
.fs12{font-size:79.200000px;}
.fs9{font-size:82.800000px;}
.fs8{font-size:100.800000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y19c{bottom:6.218550px;}
.y10d{bottom:15.300150px;}
.y129{bottom:16.200000px;}
.y10b{bottom:16.200150px;}
.y19b{bottom:26.944500px;}
.y108{bottom:30.600000px;}
.y10f{bottom:30.600150px;}
.y12f{bottom:31.500000px;}
.y1ae{bottom:42.300000px;}
.y101{bottom:45.900000px;}
.y123{bottom:46.800150px;}
.y19a{bottom:47.670300px;}
.y1af{bottom:53.100000px;}
.y12b{bottom:59.400000px;}
.y116{bottom:61.200150px;}
.y19d{bottom:67.500000px;}
.y199{bottom:68.396250px;}
.y104{bottom:76.500000px;}
.y198{bottom:89.122200px;}
.y4{bottom:97.125005px;}
.y197{bottom:109.848000px;}
.y4b{bottom:124.204500px;}
.y4d{bottom:130.500000px;}
.y196{bottom:130.573950px;}
.y143{bottom:131.400000px;}
.y1f{bottom:139.264499px;}
.y4a{bottom:143.100000px;}
.y195{bottom:151.299900px;}
.y49{bottom:159.300000px;}
.y194{bottom:172.025700px;}
.yc9{bottom:172.789200px;}
.y79{bottom:176.400000px;}
.yb0{bottom:177.300000px;}
.y131{bottom:179.100000px;}
.yfc{bottom:180.000000px;}
.ya1{bottom:185.400000px;}
.yc8{bottom:186.291000px;}
.y141{bottom:187.200000px;}
.y16f{bottom:188.100000px;}
.y112{bottom:191.700150px;}
.y193{bottom:192.751650px;}
.y48{bottom:193.503600px;}
.y78{bottom:195.300000px;}
.y16{bottom:196.933500px;}
.yfb{bottom:198.900000px;}
.yc7{bottom:200.693700px;}
.y12e{bottom:200.700000px;}
.y16e{bottom:205.200000px;}
.ydb{bottom:206.100000px;}
.yaf{bottom:207.900000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.ya0{bottom:210.600000px;}
.y47{bottom:211.501800px;}
.y192{bottom:213.477450px;}
.y77{bottom:214.200000px;}
.y130{bottom:216.000000px;}
.yfa{bottom:217.800000px;}
.yc6{bottom:218.700000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y16d{bottom:222.300000px;}
.yda{bottom:225.000000px;}
.yae{bottom:226.804500px;}
.y46{bottom:233.096400px;}
.y191{bottom:234.203400px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y16c{bottom:240.300000px;}
.y9f{bottom:242.100000px;}
.y12a{bottom:243.000000px;}
.yd9{bottom:243.900000px;}
.y76{bottom:245.700000px;}
.yad{bottom:247.500000px;}
.yc5{bottom:249.300000px;}
.y45{bottom:253.800000px;}
.y190{bottom:254.929350px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.yd8{bottom:262.800000px;}
.y75{bottom:263.700000px;}
.yf9{bottom:267.300000px;}
.yac{bottom:268.200000px;}
.y16b{bottom:269.100000px;}
.y12c{bottom:270.900000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y44{bottom:275.400000px;}
.y18f{bottom:275.655150px;}
.yc4{bottom:280.800000px;}
.y9e{bottom:281.700000px;}
.y74{bottom:282.600000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y16a{bottom:285.300000px;}
.yf8{bottom:286.200000px;}
.y12d{bottom:287.100000px;}
.y43{bottom:293.405400px;}
.y18e{bottom:296.381100px;}
.yc3{bottom:298.800000px;}
.y9d{bottom:299.700000px;}
.yd7{bottom:300.600000px;}
.y73{bottom:301.500000px;}
.y169{bottom:303.300000px;}
.yf7{bottom:305.100000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y42{bottom:313.201800px;}
.y128{bottom:314.100000px;}
.y18d{bottom:317.107050px;}
.yc2{bottom:317.700000px;}
.y9c{bottom:318.600000px;}
.y72{bottom:320.400000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.yf6{bottom:324.000000px;}
.y140{bottom:332.100000px;}
.y41{bottom:332.998200px;}
.yc1{bottom:336.600000px;}
.y9b{bottom:337.500000px;}
.y18c{bottom:337.832850px;}
.y71{bottom:339.300000px;}
.y126{bottom:341.100000px;}
.yf5{bottom:342.900000px;}
.yd{bottom:348.133500px;}
.y168{bottom:349.200000px;}
.y13f{bottom:350.100000px;}
.y40{bottom:352.794600px;}
.yc0{bottom:355.500000px;}
.y9a{bottom:356.400000px;}
.y127{bottom:357.300000px;}
.y70{bottom:358.200000px;}
.y18b{bottom:358.558800px;}
.yf4{bottom:361.800000px;}
.y167{bottom:366.300000px;}
.y13e{bottom:369.000000px;}
.yd6{bottom:369.900000px;}
.y121{bottom:371.704500px;}
.ybf{bottom:374.400000px;}
.y99{bottom:375.300000px;}
.y6f{bottom:377.100000px;}
.y18a{bottom:379.284750px;}
.yf3{bottom:380.700000px;}
.y166{bottom:383.400000px;}
.y122{bottom:384.300000px;}
.y120{bottom:386.109000px;}
.yc{bottom:386.785499px;}
.yd5{bottom:387.900150px;}
.y3f{bottom:389.700000px;}
.y6e{bottom:396.900150px;}
.y189{bottom:400.010550px;}
.y125{bottom:400.500150px;}
.y3e{bottom:400.510800px;}
.y11f{bottom:401.404500px;}
.ybe{bottom:405.900150px;}
.y98{bottom:406.800000px;}
.yb{bottom:408.044999px;}
.yf2{bottom:412.200000px;}
.y124{bottom:414.900150px;}
.y6d{bottom:415.800000px;}
.y11e{bottom:416.700000px;}
.y165{bottom:417.600150px;}
.y188{bottom:420.736500px;}
.y3d{bottom:422.105400px;}
.ybd{bottom:423.900150px;}
.y97{bottom:424.800000px;}
.yd4{bottom:425.700000px;}
.yf1{bottom:430.200000px;}
.y187{bottom:441.462300px;}
.ybc{bottom:442.800000px;}
.y96{bottom:443.700000px;}
.yd3{bottom:445.500150px;}
.y6c{bottom:446.400150px;}
.y164{bottom:447.300000px;}
.yf0{bottom:449.100150px;}
.y11d{bottom:459.000150px;}
.y3c{bottom:461.700000px;}
.y186{bottom:462.188250px;}
.y95{bottom:462.600150px;}
.y163{bottom:463.500150px;}
.y6b{bottom:464.400150px;}
.yef{bottom:468.000150px;}
.yd2{bottom:476.100150px;}
.ybb{bottom:480.600150px;}
.y185{bottom:482.914200px;}
.y6a{bottom:483.300150px;}
.y11c{bottom:486.000000px;}
.yee{bottom:486.900150px;}
.y3b{bottom:488.700000px;}
.y1ad{bottom:490.525200px;}
.y94{bottom:493.200000px;}
.yd1{bottom:494.100150px;}
.y3a{bottom:499.494600px;}
.yba{bottom:499.500150px;}
.y69{bottom:502.200000px;}
.yed{bottom:505.800150px;}
.y162{bottom:510.300150px;}
.y93{bottom:511.200000px;}
.yd0{bottom:513.000150px;}
.yb9{bottom:518.400150px;}
.y39{bottom:520.198200px;}
.ya{bottom:520.864502px;}
.y183{bottom:522.900150px;}
.y184{bottom:522.984000px;}
.yec{bottom:525.600150px;}
.y161{bottom:526.502700px;}
.y11a{bottom:529.200000px;}
.y1ac{bottom:530.118000px;}
.y92{bottom:531.000150px;}
.ycf{bottom:531.900150px;}
.y68{bottom:533.700000px;}
.yb8{bottom:537.300150px;}
.y9{bottom:538.864499px;}
.y38{bottom:540.901800px;}
.y13d{bottom:541.800150px;}
.yeb{bottom:544.500150px;}
.y11b{bottom:545.400150px;}
.y91{bottom:549.900150px;}
.yce{bottom:550.800150px;}
.y67{bottom:551.700000px;}
.y114{bottom:554.400150px;}
.y160{bottom:556.200000px;}
.y8{bottom:556.864499px;}
.y13c{bottom:559.800150px;}
.y37{bottom:562.496400px;}
.y90{bottom:568.800150px;}
.y66{bottom:570.600150px;}
.y1ab{bottom:570.618000px;}
.y181{bottom:571.500150px;}
.y115{bottom:572.400000px;}
.y15f{bottom:572.400150px;}
.yea{bottom:575.100150px;}
.y13b{bottom:579.600150px;}
.y113{bottom:581.400150px;}
.y36{bottom:583.200000px;}
.yb7{bottom:586.800150px;}
.y8f{bottom:587.700000px;}
.y119{bottom:588.600150px;}
.y65{bottom:589.500150px;}
.yab{bottom:596.700000px;}
.y13a{bottom:598.500150px;}
.y180{bottom:601.200000px;}
.y118{bottom:603.004650px;}
.y35{bottom:603.903600px;}
.yb6{bottom:605.700000px;}
.y8e{bottom:606.600150px;}
.y64{bottom:608.400150px;}
.y1aa{bottom:610.210800px;}
.y117{bottom:618.300150px;}
.ye9{bottom:620.100150px;}
.yb5{bottom:624.600150px;}
.y34{bottom:625.498200px;}
.y8d{bottom:625.500150px;}
.y63{bottom:627.300150px;}
.yaa{bottom:629.100150px;}
.y17f{bottom:635.400150px;}
.ycd{bottom:635.404500px;}
.y15e{bottom:636.300150px;}
.ye8{bottom:638.100150px;}
.y8c{bottom:644.400150px;}
.y7{bottom:645.510000px;}
.y111{bottom:646.200000px;}
.y33{bottom:646.201800px;}
.y62{bottom:647.100150px;}
.y1a9{bottom:649.803600px;}
.ycc{bottom:650.700000px;}
.y15d{bottom:652.500150px;}
.ye7{bottom:657.000150px;}
.y8b{bottom:663.300150px;}
.y61{bottom:666.000150px;}
.y6{bottom:666.771000px;}
.y32{bottom:666.905400px;}
.y15c{bottom:669.600150px;}
.yb4{bottom:670.500150px;}
.ycb{bottom:672.300150px;}
.y10e{bottom:674.100000px;}
.y8a{bottom:682.200000px;}
.y60{bottom:684.900150px;}
.yb3{bottom:686.700150px;}
.y31{bottom:688.500000px;}
.y110{bottom:690.300150px;}
.y1a8{bottom:690.303600px;}
.ye6{bottom:695.700150px;}
.y17e{bottom:698.400150px;}
.y5f{bottom:703.800150px;}
.y139{bottom:704.700150px;}
.yb2{bottom:707.400150px;}
.y30{bottom:709.203600px;}
.ya9{bottom:716.400150px;}
.y10c{bottom:717.300000px;}
.y89{bottom:720.909150px;}
.y5{bottom:726.298500px;}
.y17d{bottom:727.200150px;}
.y1a7{bottom:729.896400px;}
.y2f{bottom:729.907200px;}
.y15b{bottom:732.600150px;}
.y5e{bottom:734.400150px;}
.y138{bottom:735.283800px;}
.y10a{bottom:744.300000px;}
.y88{bottom:744.300150px;}
.y15a{bottom:749.700150px;}
.y2e{bottom:751.501800px;}
.y5d{bottom:752.400150px;}
.y3{bottom:752.599495px;}
.y137{bottom:753.282000px;}
.ya8{bottom:753.300150px;}
.y17c{bottom:761.400150px;}
.y1a6{bottom:770.396400px;}
.y136{bottom:772.187400px;}
.y5c{bottom:772.200000px;}
.y2d{bottom:772.205400px;}
.ye5{bottom:773.100000px;}
.y159{bottom:779.400000px;}
.y109{bottom:788.400000px;}
.y1a5{bottom:789.301800px;}
.y17b{bottom:790.200000px;}
.y135{bottom:791.092800px;}
.y5b{bottom:791.100000px;}
.yff{bottom:791.109000px;}
.y2c{bottom:792.909000px;}
.y158{bottom:795.600000px;}
.ya7{bottom:803.700000px;}
.yfe{bottom:806.404500px;}
.y17a{bottom:807.300000px;}
.y1a4{bottom:808.207200px;}
.y134{bottom:809.998200px;}
.y5a{bottom:810.000150px;}
.y157{bottom:812.700000px;}
.y2b{bottom:814.503600px;}
.y103{bottom:815.400000px;}
.ya6{bottom:821.700000px;}
.y87{bottom:822.600000px;}
.y59{bottom:828.900000px;}
.y133{bottom:829.794600px;}
.ye4{bottom:829.800000px;}
.y107{bottom:830.713500px;}
.y2a{bottom:835.207200px;}
.y179{bottom:836.100000px;}
.y86{bottom:840.600000px;}
.y106{bottom:846.009000px;}
.y58{bottom:847.800000px;}
.ye3{bottom:848.700000px;}
.y178{bottom:852.300000px;}
.y85{bottom:859.500150px;}
.y14d{bottom:861.300000px;}
.y105{bottom:861.304500px;}
.y57{bottom:866.700000px;}
.ye2{bottom:867.600000px;}
.y156{bottom:875.700000px;}
.y29{bottom:876.600000px;}
.y84{bottom:878.400000px;}
.y132{bottom:879.300000px;}
.y2{bottom:879.369000px;}
.y177{bottom:882.000150px;}
.y56{bottom:885.600000px;}
.ye1{bottom:886.500150px;}
.y1a3{bottom:889.200000px;}
.y28{bottom:891.000150px;}
.y155{bottom:892.800000px;}
.y14c{bottom:894.600000px;}
.y83{bottom:897.300000px;}
.y176{bottom:898.200000px;}
.y100{bottom:904.500000px;}
.y55{bottom:904.500150px;}
.ye0{bottom:905.400000px;}
.y175{bottom:915.300000px;}
.y82{bottom:916.200000px;}
.y102{bottom:920.700000px;}
.y154{bottom:922.500150px;}
.y54{bottom:923.400000px;}
.y14b{bottom:925.200000px;}
.y27{bottom:929.700000px;}
.y1a2{bottom:930.600000px;}
.y81{bottom:935.100000px;}
.ydf{bottom:936.000150px;}
.y153{bottom:938.700000px;}
.y53{bottom:942.300000px;}
.y26{bottom:943.200000px;}
.y174{bottom:945.000150px;}
.ya5{bottom:954.900000px;}
.y14a{bottom:955.440000px;}
.y52{bottom:961.200000px;}
.y80{bottom:966.600000px;}
.y1{bottom:966.726000px;}
.y152{bottom:968.400000px;}
.y1a1{bottom:972.000000px;}
.ya4{bottom:973.800000px;}
.y149{bottom:974.160000px;}
.y51{bottom:980.100000px;}
.y25{bottom:981.902700px;}
.y7f{bottom:984.600000px;}
.yfd{bottom:990.900000px;}
.ya3{bottom:992.700000px;}
.y148{bottom:993.060000px;}
.y24{bottom:996.300000px;}
.y50{bottom:999.900000px;}
.y151{bottom:1001.700000px;}
.y7e{bottom:1003.500150px;}
.y173{bottom:1007.100000px;}
.y23{bottom:1010.696400px;}
.yde{bottom:1011.600000px;}
.y147{bottom:1012.140000px;}
.y1a0{bottom:1014.300000px;}
.y4f{bottom:1018.800000px;}
.y7d{bottom:1022.400000px;}
.y22{bottom:1023.297300px;}
.ya2{bottom:1023.300000px;}
.ydd{bottom:1030.500150px;}
.y146{bottom:1031.040000px;}
.y150{bottom:1031.400000px;}
.y172{bottom:1036.800150px;}
.y21{bottom:1037.700000px;}
.y182{bottom:1038.600000px;}
.y7c{bottom:1041.300150px;}
.y14f{bottom:1047.600000px;}
.y171{bottom:1053.000150px;}
.y19f{bottom:1055.700000px;}
.yca{bottom:1056.593700px;}
.y20{bottom:1057.500150px;}
.y7b{bottom:1060.200000px;}
.ydc{bottom:1061.100000px;}
.y145{bottom:1061.460000px;}
.y4e{bottom:1076.400000px;}
.yb1{bottom:1078.197300px;}
.y14e{bottom:1078.200000px;}
.y7a{bottom:1080.000150px;}
.y144{bottom:1080.360000px;}
.y170{bottom:1082.700000px;}
.y19e{bottom:1093.500150px;}
.y142{bottom:1129.500000px;}
.y4c{bottom:1129.500150px;}
.hb{height:19.687500px;}
.h21{height:26.101500px;}
.h20{height:27.000000px;}
.h11{height:27.070312px;}
.hd{height:31.992187px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hf{height:34.453125px;}
.h28{height:41.405977px;}
.he{height:41.835938px;}
.h1f{height:42.300000px;}
.h22{height:42.301500px;}
.h14{height:42.403711px;}
.h33{height:42.504082px;}
.h19{height:45.931641px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hc{height:48.810937px;}
.h13{height:49.218750px;}
.h1a{height:52.998047px;}
.h2{height:55.152000px;}
.h1d{height:57.600000px;}
.h25{height:58.500000px;}
.h29{height:58.651172px;}
.h15{height:60.064453px;}
.h1c{height:63.566016px;}
.h10{height:63.597656px;}
.h1b{height:63.608456px;}
.h35{height:63.901500px;}
.h2a{height:65.010937px;}
.h12{height:65.306250px;}
.h2b{height:66.757500px;}
.h2f{height:67.664634px;}
.h2e{height:67.665234px;}
.h30{height:67.665834px;}
.h26{height:70.200000px;}
.h34{height:70.664062px;}
.h17{height:71.198437px;}
.h24{height:72.900000px;}
.h2c{height:76.279219px;}
.h2d{height:77.691797px;}
.h5{height:78.132000px;}
.h31{height:81.263672px;}
.h18{height:83.446875px;}
.h16{height:86.357813px;}
.h1e{height:88.200000px;}
.h4{height:119.055004px;}
.h23{height:202.500000px;}
.h32{height:498.457500px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h27{height:1263.060000px;}
.w8{width:116.100000px;}
.w7{width:519.300000px;}
.wa{width:559.747500px;}
.wb{width:578.700000px;}
.w2{width:637.794021px;}
.w6{width:892.500000px;}
.w5{width:892.800000px;}
.w0{width:892.912500px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:893.700000px;}
.w4{width:894.000000px;}
.x0{left:0.000000px;}
.x22{left:2.073300px;}
.x16{left:7.200000px;}
.x1f{left:19.800000px;}
.x1e{left:39.600000px;}
.x19{left:58.500000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x18{left:119.700000px;}
.x7{left:125.996400px;}
.x9{left:127.800000px;}
.x1c{left:130.495500px;}
.x1b{left:136.800000px;}
.xb{left:138.600000px;}
.xe{left:142.182000px;}
.x14{left:144.004500px;}
.x1d{left:151.204500px;}
.x6{left:153.000000px;}
.x25{left:170.100000px;}
.xd{left:176.400000px;}
.x1a{left:178.200000px;}
.xa{left:182.696400px;}
.x8{left:200.700000px;}
.x4{left:203.484001px;}
.x20{left:210.240000px;}
.xc{left:222.300000px;}
.x15{left:236.700000px;}
.x17{left:243.900000px;}
.x12{left:318.600000px;}
.x10{left:381.581100px;}
.x24{left:422.100000px;}
.x5{left:442.800000px;}
.x13{left:446.400000px;}
.x3{left:454.959000px;}
.x21{left:690.300000px;}
.x23{left:747.900000px;}
.xf{left:765.000000px;}
.x11{left:768.600000px;}
@media print{
.v1{vertical-align:-96.009600pt;}
.v2{vertical-align:-76.800000pt;}
.v3{vertical-align:-64.000000pt;}
.v4{vertical-align:-57.599467pt;}
.v7{vertical-align:-25.600000pt;}
.v6{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:25.600000pt;}
.ls5b{letter-spacing:-4.787200pt;}
.ls59{letter-spacing:-4.080000pt;}
.ls40{letter-spacing:-3.744000pt;}
.lsf{letter-spacing:-3.225600pt;}
.ls2a{letter-spacing:-3.168000pt;}
.ls71{letter-spacing:-3.039784pt;}
.ls72{letter-spacing:-2.321290pt;}
.ls58{letter-spacing:-1.740800pt;}
.ls5e{letter-spacing:-1.713333pt;}
.ls30{letter-spacing:-1.584000pt;}
.ls2b{letter-spacing:-1.580800pt;}
.ls2f{letter-spacing:-1.577600pt;}
.ls64{letter-spacing:-1.271182pt;}
.ls68{letter-spacing:-1.215914pt;}
.ls6c{letter-spacing:-1.160645pt;}
.ls62{letter-spacing:-1.105376pt;}
.ls57{letter-spacing:-0.870400pt;}
.ls67{letter-spacing:-0.829032pt;}
.ls5a{letter-spacing:-0.816000pt;}
.lsc{letter-spacing:-0.748800pt;}
.ls5c{letter-spacing:-0.707200pt;}
.ls60{letter-spacing:-0.663226pt;}
.ls6b{letter-spacing:-0.607957pt;}
.ls66{letter-spacing:-0.552688pt;}
.ls5f{letter-spacing:-0.221075pt;}
.ls1d{letter-spacing:-0.217600pt;}
.ls47{letter-spacing:-0.212480pt;}
.ls73{letter-spacing:-0.110538pt;}
.ls11{letter-spacing:-0.057600pt;}
.ls48{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.016000pt;}
.ls42{letter-spacing:0.053120pt;}
.ls10{letter-spacing:0.057600pt;}
.ls49{letter-spacing:0.106240pt;}
.ls4a{letter-spacing:0.117760pt;}
.ls44{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.208000pt;}
.ls43{letter-spacing:0.212480pt;}
.ls4b{letter-spacing:0.235520pt;}
.ls70{letter-spacing:0.276344pt;}
.ls46{letter-spacing:0.318720pt;}
.ls20{letter-spacing:0.326400pt;}
.ls65{letter-spacing:0.331613pt;}
.ls6d{letter-spacing:0.386882pt;}
.ls63{letter-spacing:0.442150pt;}
.ls17{letter-spacing:0.489600pt;}
.ls3f{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.652800pt;}
.ls39{letter-spacing:0.662400pt;}
.ls3e{letter-spacing:0.672000pt;}
.ls2c{letter-spacing:0.748800pt;}
.ls6e{letter-spacing:0.773763pt;}
.ls55{letter-spacing:0.774400pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:0.816000pt;}
.ls6a{letter-spacing:0.829032pt;}
.ls16{letter-spacing:0.870400pt;}
.ls52{letter-spacing:0.924800pt;}
.ls61{letter-spacing:0.939570pt;}
.ls4e{letter-spacing:0.979200pt;}
.ls4f{letter-spacing:1.033600pt;}
.ls4d{letter-spacing:1.088000pt;}
.ls35{letter-spacing:1.104000pt;}
.ls5d{letter-spacing:1.142400pt;}
.ls74{letter-spacing:1.235200pt;}
.ls1e{letter-spacing:1.251200pt;}
.ls2e{letter-spacing:1.289600pt;}
.ls29{letter-spacing:1.308800pt;}
.ls13{letter-spacing:1.331200pt;}
.ls50{letter-spacing:1.468800pt;}
.ls19{letter-spacing:1.577600pt;}
.ls23{letter-spacing:1.580800pt;}
.ls24{letter-spacing:1.612800pt;}
.lse{letter-spacing:1.619200pt;}
.ls2d{letter-spacing:1.622400pt;}
.ls25{letter-spacing:1.670400pt;}
.ls27{letter-spacing:1.728000pt;}
.ls34{letter-spacing:1.753600pt;}
.ls37{letter-spacing:1.843200pt;}
.ls6f{letter-spacing:1.989677pt;}
.ls69{letter-spacing:2.044946pt;}
.ls31{letter-spacing:2.188800pt;}
.ls53{letter-spacing:2.393600pt;}
.ls33{letter-spacing:2.412800pt;}
.lsd{letter-spacing:2.454400pt;}
.ls21{letter-spacing:2.502400pt;}
.ls56{letter-spacing:3.027200pt;}
.ls12{letter-spacing:3.225600pt;}
.ls7{letter-spacing:4.780800pt;}
.ls26{letter-spacing:5.126400pt;}
.ls1c{letter-spacing:8.006400pt;}
.ls3b{letter-spacing:10.416000pt;}
.ls22{letter-spacing:11.174400pt;}
.ls41{letter-spacing:11.750400pt;}
.ls38{letter-spacing:11.865600pt;}
.lsa{letter-spacing:14.268800pt;}
.ls4{letter-spacing:14.400000pt;}
.ls3{letter-spacing:14.457600pt;}
.ls9{letter-spacing:14.572800pt;}
.ls3a{letter-spacing:14.688000pt;}
.ls8{letter-spacing:17.568000pt;}
.ls32{letter-spacing:17.625600pt;}
.ls1b{letter-spacing:18.201600pt;}
.ls51{letter-spacing:18.387200pt;}
.ls36{letter-spacing:20.793600pt;}
.ls28{letter-spacing:20.908800pt;}
.ls2{letter-spacing:34.041600pt;}
.ls1{letter-spacing:83.705600pt;}
.ls6{letter-spacing:88.044800pt;}
.ls5{letter-spacing:90.214400pt;}
.ls54{letter-spacing:120.806400pt;}
.ls1a{letter-spacing:136.307200pt;}
.ls4c{letter-spacing:2198.902400pt;}
.ls45{letter-spacing:2203.045760pt;}
.ls18{letter-spacing:2227.680000pt;}
.ws83{word-spacing:-19.062400pt;}
.ws61{word-spacing:-18.374400pt;}
.ws8{word-spacing:-17.625600pt;}
.ws65{word-spacing:-15.177600pt;}
.ws6a{word-spacing:-15.068800pt;}
.ws54{word-spacing:-14.955520pt;}
.ws53{word-spacing:-14.720000pt;}
.ws69{word-spacing:-14.688000pt;}
.wsae{word-spacing:-14.480426pt;}
.ws62{word-spacing:-14.470400pt;}
.ws6{word-spacing:-14.457600pt;}
.ws4{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.342400pt;}
.ws3{word-spacing:-14.019200pt;}
.ws63{word-spacing:-13.600000pt;}
.ws52{word-spacing:-13.598720pt;}
.ws20{word-spacing:-13.545600pt;}
.ws21{word-spacing:-13.110400pt;}
.ws41{word-spacing:-13.104000pt;}
.ws99{word-spacing:-12.932899pt;}
.ws6c{word-spacing:-12.892800pt;}
.ws66{word-spacing:-12.729600pt;}
.ws1f{word-spacing:-12.294400pt;}
.ws51{word-spacing:-12.217600pt;}
.ws2c{word-spacing:-12.022400pt;}
.ws50{word-spacing:-12.005120pt;}
.ws45{word-spacing:-12.000000pt;}
.ws67{word-spacing:-11.859200pt;}
.ws89{word-spacing:-11.827523pt;}
.ws64{word-spacing:-11.827200pt;}
.ws93{word-spacing:-11.661717pt;}
.ws1{word-spacing:-11.564800pt;}
.ws2b{word-spacing:-11.232000pt;}
.ws5{word-spacing:-11.174400pt;}
.ws3d{word-spacing:-11.148800pt;}
.ws2{word-spacing:-10.816000pt;}
.ws3a{word-spacing:-10.416000pt;}
.ws3b{word-spacing:-10.400000pt;}
.ws2a{word-spacing:-9.600000pt;}
.ws68{word-spacing:-9.520000pt;}
.ws3c{word-spacing:-8.819200pt;}
.ws6b{word-spacing:-8.812800pt;}
.ws44{word-spacing:-8.256000pt;}
.ws27{word-spacing:-8.096000pt;}
.ws75{word-spacing:-5.548800pt;}
.ws81{word-spacing:-4.841600pt;}
.ws2f{word-spacing:-4.048000pt;}
.wsf6{word-spacing:-3.426666pt;}
.ws18{word-spacing:-2.454400pt;}
.ws39{word-spacing:-2.412800pt;}
.ws34{word-spacing:-2.393600pt;}
.ws82{word-spacing:-2.284800pt;}
.wsf4{word-spacing:-2.210752pt;}
.ws72{word-spacing:-1.904000pt;}
.wsf7{word-spacing:-1.879139pt;}
.wsf2{word-spacing:-1.768602pt;}
.ws3e{word-spacing:-1.686400pt;}
.ws6d{word-spacing:-1.577600pt;}
.ws38{word-spacing:-1.539200pt;}
.ws1c{word-spacing:-1.331200pt;}
.ws23{word-spacing:-1.251200pt;}
.ws1e{word-spacing:-1.206400pt;}
.ws77{word-spacing:-1.088000pt;}
.ws70{word-spacing:-0.870400pt;}
.ws36{word-spacing:-0.816000pt;}
.wsb{word-spacing:-0.809600pt;}
.wsf3{word-spacing:-0.773763pt;}
.ws4e{word-spacing:-0.528000pt;}
.ws25{word-spacing:-0.380800pt;}
.ws24{word-spacing:-0.326400pt;}
.ws55{word-spacing:-0.318720pt;}
.ws1b{word-spacing:-0.208000pt;}
.wsf5{word-spacing:-0.165806pt;}
.ws5b{word-spacing:-0.117760pt;}
.ws29{word-spacing:-0.057600pt;}
.ws57{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:0.053120pt;}
.ws26{word-spacing:0.163200pt;}
.ws56{word-spacing:0.212480pt;}
.ws22{word-spacing:0.217600pt;}
.ws35{word-spacing:0.761600pt;}
.ws40{word-spacing:0.790400pt;}
.ws78{word-spacing:0.816000pt;}
.ws1a{word-spacing:1.040000pt;}
.ws73{word-spacing:1.142400pt;}
.ws7c{word-spacing:1.577600pt;}
.ws47{word-spacing:1.584000pt;}
.ws16{word-spacing:1.612800pt;}
.ws32{word-spacing:1.664000pt;}
.wsa{word-spacing:1.996800pt;}
.ws37{word-spacing:2.400000pt;}
.wse{word-spacing:3.225600pt;}
.ws43{word-spacing:3.312000pt;}
.ws60{word-spacing:3.827200pt;}
.ws74{word-spacing:3.971200pt;}
.ws33{word-spacing:3.993600pt;}
.ws7a{word-spacing:4.025600pt;}
.ws15{word-spacing:4.780800pt;}
.ws19{word-spacing:5.200000pt;}
.ws49{word-spacing:5.568000pt;}
.ws42{word-spacing:6.096000pt;}
.ws5f{word-spacing:7.065600pt;}
.ws79{word-spacing:7.180800pt;}
.ws5c{word-spacing:7.654400pt;}
.ws11{word-spacing:8.006400pt;}
.ws59{word-spacing:8.302080pt;}
.ws1d{word-spacing:8.403200pt;}
.ws3f{word-spacing:8.784000pt;}
.ws5a{word-spacing:8.949760pt;}
.ws80{word-spacing:9.683200pt;}
.ws71{word-spacing:10.390400pt;}
.ws6e{word-spacing:10.444800pt;}
.ws7f{word-spacing:10.553600pt;}
.ws6f{word-spacing:11.152000pt;}
.ws13{word-spacing:11.174400pt;}
.ws48{word-spacing:12.000000pt;}
.ws7e{word-spacing:13.600000pt;}
.ws31{word-spacing:13.603200pt;}
.ws12{word-spacing:14.400000pt;}
.ws46{word-spacing:15.168000pt;}
.ws4d{word-spacing:15.696000pt;}
.ws9{word-spacing:17.056000pt;}
.ws17{word-spacing:17.625600pt;}
.ws4a{word-spacing:18.384000pt;}
.ws5d{word-spacing:18.429440pt;}
.ws5e{word-spacing:18.547200pt;}
.ws76{word-spacing:19.964800pt;}
.ws7d{word-spacing:20.128000pt;}
.ws14{word-spacing:20.736000pt;}
.wsf{word-spacing:20.793600pt;}
.ws28{word-spacing:20.851200pt;}
.ws4c{word-spacing:21.600000pt;}
.ws7b{word-spacing:23.174400pt;}
.ws10{word-spacing:24.019200pt;}
.ws4b{word-spacing:24.768000pt;}
.wsc{word-spacing:27.187200pt;}
.ws2e{word-spacing:30.412800pt;}
.ws2d{word-spacing:33.580800pt;}
.ws30{word-spacing:36.806400pt;}
.wsd{word-spacing:43.200000pt;}
.ws4f{word-spacing:46.425600pt;}
.wscb{word-spacing:56.116077pt;}
.wsd0{word-spacing:61.864032pt;}
.wsb5{word-spacing:64.406397pt;}
.wscd{word-spacing:64.848548pt;}
.wsa9{word-spacing:64.904350pt;}
.wsc4{word-spacing:66.009726pt;}
.wsd5{word-spacing:66.727687pt;}
.ws86{word-spacing:68.938439pt;}
.wsc8{word-spacing:70.154352pt;}
.wsa8{word-spacing:71.038653pt;}
.ws8d{word-spacing:71.536072pt;}
.wsde{word-spacing:71.757148pt;}
.ws84{word-spacing:72.255100pt;}
.wse7{word-spacing:73.138868pt;}
.wsbf{word-spacing:73.581018pt;}
.wsc7{word-spacing:74.631125pt;}
.wsba{word-spacing:74.852200pt;}
.wsda{word-spacing:75.073276pt;}
.ws8e{word-spacing:75.350153pt;}
.wsb3{word-spacing:75.957576pt;}
.ws8c{word-spacing:76.786608pt;}
.wsed{word-spacing:76.842410pt;}
.wsf1{word-spacing:77.726178pt;}
.ws94{word-spacing:78.555743pt;}
.wsc5{word-spacing:79.107898pt;}
.wse9{word-spacing:79.494780pt;}
.wsea{word-spacing:79.605317pt;}
.ws88{word-spacing:80.323812pt;}
.ws90{word-spacing:80.324345pt;}
.wsef{word-spacing:80.987037pt;}
.wsa4{word-spacing:82.037678pt;}
.wsb8{word-spacing:82.203484pt;}
.wse3{word-spacing:82.424026pt;}
.ws9a{word-spacing:82.534564pt;}
.wsab{word-spacing:83.197789pt;}
.wsc6{word-spacing:83.308327pt;}
.wsce{word-spacing:83.418864pt;}
.ws9f{word-spacing:83.419398pt;}
.wsd7{word-spacing:83.750477pt;}
.ws9c{word-spacing:84.468972pt;}
.wscc{word-spacing:84.579509pt;}
.wse0{word-spacing:85.408541pt;}
.wse1{word-spacing:85.574881pt;}
.wsa6{word-spacing:86.513917pt;}
.wsc2{word-spacing:86.679724pt;}
.wsb1{word-spacing:86.680257pt;}
.wsad{word-spacing:86.845530pt;}
.ws9e{word-spacing:87.011336pt;}
.wse5{word-spacing:87.343482pt;}
.wsbb{word-spacing:87.509289pt;}
.wsb2{word-spacing:87.619293pt;}
.wsdc{word-spacing:88.116712pt;}
.ws98{word-spacing:88.448325pt;}
.wsaf{word-spacing:88.448858pt;}
.ws8a{word-spacing:88.614132pt;}
.wsa3{word-spacing:88.724669pt;}
.ws92{word-spacing:88.890476pt;}
.wseb{word-spacing:89.001013pt;}
.wsd3{word-spacing:89.277357pt;}
.ws96{word-spacing:89.774776pt;}
.wsc0{word-spacing:90.216927pt;}
.wsd2{word-spacing:90.438002pt;}
.wsbd{word-spacing:90.659077pt;}
.wsc3{word-spacing:92.980367pt;}
.wsd8{word-spacing:93.975205pt;}
.wsb7{word-spacing:94.693700pt;}
.wsbc{word-spacing:100.000038pt;}
.wsca{word-spacing:101.104880pt;}
.wsa1{word-spacing:101.491762pt;}
.wsf0{word-spacing:182.479332pt;}
.ws95{word-spacing:206.686534pt;}
.wsc9{word-spacing:214.424699pt;}
.ws87{word-spacing:220.283192pt;}
.wsb6{word-spacing:236.532219pt;}
.ws8f{word-spacing:240.234695pt;}
.ws97{word-spacing:240.235228pt;}
.wsec{word-spacing:242.335443pt;}
.wsaa{word-spacing:246.148990pt;}
.wsb9{word-spacing:247.807054pt;}
.wsdb{word-spacing:248.746624pt;}
.wsd1{word-spacing:251.454795pt;}
.wsbe{word-spacing:254.936729pt;}
.wse4{word-spacing:268.090704pt;}
.wsd6{word-spacing:274.170272pt;}
.wsdd{word-spacing:277.044249pt;}
.ws9b{word-spacing:277.486400pt;}
.wscf{word-spacing:284.229193pt;}
.ws8b{word-spacing:291.745750pt;}
.wse8{word-spacing:295.890910pt;}
.wsdf{word-spacing:304.070692pt;}
.ws91{word-spacing:305.397144pt;}
.wsa0{word-spacing:306.944670pt;}
.ws85{word-spacing:307.828438pt;}
.wsc1{word-spacing:311.421443pt;}
.wse2{word-spacing:319.932305pt;}
.wsee{word-spacing:321.259289pt;}
.wsac{word-spacing:324.299073pt;}
.wsb4{word-spacing:336.016059pt;}
.wsa7{word-spacing:339.332187pt;}
.wsd9{word-spacing:342.979928pt;}
.wsd4{word-spacing:343.532616pt;}
.wsa5{word-spacing:344.969604pt;}
.wsb0{word-spacing:346.461329pt;}
.ws9d{word-spacing:350.717560pt;}
.wsa2{word-spacing:369.066801pt;}
.wse6{word-spacing:409.247219pt;}
._1a{margin-left:-17.817600pt;}
._1d{margin-left:-12.416000pt;}
._1b{margin-left:-8.684800pt;}
._17{margin-left:-7.360000pt;}
._12{margin-left:-6.096000pt;}
._18{margin-left:-5.100800pt;}
._2{margin-left:-4.160000pt;}
._8{margin-left:-3.142400pt;}
._0{margin-left:-1.456000pt;}
._1{width:1.040000pt;}
._3{width:2.371200pt;}
._6{width:3.702400pt;}
._16{width:4.812800pt;}
._7{width:6.300800pt;}
._5{width:7.238400pt;}
._4{width:9.027200pt;}
._15{width:10.051200pt;}
._e{width:11.091200pt;}
._d{width:12.057600pt;}
._13{width:13.670400pt;}
._f{width:15.308800pt;}
._b{width:17.216000pt;}
._a{width:18.169600pt;}
._c{width:20.249600pt;}
._9{width:21.488000pt;}
._11{width:30.563200pt;}
._10{width:34.144000pt;}
._14{width:47.222400pt;}
._27{width:122.679678pt;}
._24{width:142.697114pt;}
._21{width:201.737914pt;}
._20{width:217.795546pt;}
._1f{width:235.712123pt;}
._22{width:250.958078pt;}
._26{width:274.367009pt;}
._29{width:303.710603pt;}
._25{width:316.858296pt;}
._23{width:347.245764pt;}
._28{width:352.829435pt;}
._1c{width:750.712320pt;}
._1e{width:753.580800pt;}
._19{width:1894.425600pt;}
.fs5{font-size:25.600000pt;}
.fsc{font-size:35.200000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:38.400000pt;}
.fs6{font-size:41.600000pt;}
.fsa{font-size:44.800000pt;}
.fse{font-size:48.000000pt;}
.fsf{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:54.400000pt;}
.fs13{font-size:55.268800pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:57.600000pt;}
.fs10{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:69.120000pt;}
.fs12{font-size:70.400000pt;}
.fs9{font-size:73.600000pt;}
.fs8{font-size:89.600000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y19c{bottom:5.527600pt;}
.y10d{bottom:13.600133pt;}
.y129{bottom:14.400000pt;}
.y10b{bottom:14.400133pt;}
.y19b{bottom:23.950667pt;}
.y108{bottom:27.200000pt;}
.y10f{bottom:27.200133pt;}
.y12f{bottom:28.000000pt;}
.y1ae{bottom:37.600000pt;}
.y101{bottom:40.800000pt;}
.y123{bottom:41.600133pt;}
.y19a{bottom:42.373600pt;}
.y1af{bottom:47.200000pt;}
.y12b{bottom:52.800000pt;}
.y116{bottom:54.400133pt;}
.y19d{bottom:60.000000pt;}
.y199{bottom:60.796667pt;}
.y104{bottom:68.000000pt;}
.y198{bottom:79.219733pt;}
.y4{bottom:86.333337pt;}
.y197{bottom:97.642667pt;}
.y4b{bottom:110.404000pt;}
.y4d{bottom:116.000000pt;}
.y196{bottom:116.065733pt;}
.y143{bottom:116.800000pt;}
.y1f{bottom:123.790666pt;}
.y4a{bottom:127.200000pt;}
.y195{bottom:134.488800pt;}
.y49{bottom:141.600000pt;}
.y194{bottom:152.911733pt;}
.yc9{bottom:153.590400pt;}
.y79{bottom:156.800000pt;}
.yb0{bottom:157.600000pt;}
.y131{bottom:159.200000pt;}
.yfc{bottom:160.000000pt;}
.ya1{bottom:164.800000pt;}
.yc8{bottom:165.592000pt;}
.y141{bottom:166.400000pt;}
.y16f{bottom:167.200000pt;}
.y112{bottom:170.400133pt;}
.y193{bottom:171.334800pt;}
.y48{bottom:172.003200pt;}
.y78{bottom:173.600000pt;}
.y16{bottom:175.052000pt;}
.yfb{bottom:176.800000pt;}
.yc7{bottom:178.394400pt;}
.y12e{bottom:178.400000pt;}
.y16e{bottom:182.400000pt;}
.ydb{bottom:183.200000pt;}
.yaf{bottom:184.800000pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.ya0{bottom:187.200000pt;}
.y47{bottom:188.001600pt;}
.y192{bottom:189.757733pt;}
.y77{bottom:190.400000pt;}
.y130{bottom:192.000000pt;}
.yfa{bottom:193.600000pt;}
.yc6{bottom:194.400000pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y16d{bottom:197.600000pt;}
.yda{bottom:200.000000pt;}
.yae{bottom:201.604000pt;}
.y46{bottom:207.196800pt;}
.y191{bottom:208.180800pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y16c{bottom:213.600000pt;}
.y9f{bottom:215.200000pt;}
.y12a{bottom:216.000000pt;}
.yd9{bottom:216.800000pt;}
.y76{bottom:218.400000pt;}
.yad{bottom:220.000000pt;}
.yc5{bottom:221.600000pt;}
.y45{bottom:225.600000pt;}
.y190{bottom:226.603867pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.yd8{bottom:233.600000pt;}
.y75{bottom:234.400000pt;}
.yf9{bottom:237.600000pt;}
.yac{bottom:238.400000pt;}
.y16b{bottom:239.200000pt;}
.y12c{bottom:240.800000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y44{bottom:244.800000pt;}
.y18f{bottom:245.026800pt;}
.yc4{bottom:249.600000pt;}
.y9e{bottom:250.400000pt;}
.y74{bottom:251.200000pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y16a{bottom:253.600000pt;}
.yf8{bottom:254.400000pt;}
.y12d{bottom:255.200000pt;}
.y43{bottom:260.804800pt;}
.y18e{bottom:263.449867pt;}
.yc3{bottom:265.600000pt;}
.y9d{bottom:266.400000pt;}
.yd7{bottom:267.200000pt;}
.y73{bottom:268.000000pt;}
.y169{bottom:269.600000pt;}
.yf7{bottom:271.200000pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y42{bottom:278.401600pt;}
.y128{bottom:279.200000pt;}
.y18d{bottom:281.872933pt;}
.yc2{bottom:282.400000pt;}
.y9c{bottom:283.200000pt;}
.y72{bottom:284.800000pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.yf6{bottom:288.000000pt;}
.y140{bottom:295.200000pt;}
.y41{bottom:295.998400pt;}
.yc1{bottom:299.200000pt;}
.y9b{bottom:300.000000pt;}
.y18c{bottom:300.295867pt;}
.y71{bottom:301.600000pt;}
.y126{bottom:303.200000pt;}
.yf5{bottom:304.800000pt;}
.yd{bottom:309.452000pt;}
.y168{bottom:310.400000pt;}
.y13f{bottom:311.200000pt;}
.y40{bottom:313.595200pt;}
.yc0{bottom:316.000000pt;}
.y9a{bottom:316.800000pt;}
.y127{bottom:317.600000pt;}
.y70{bottom:318.400000pt;}
.y18b{bottom:318.718933pt;}
.yf4{bottom:321.600000pt;}
.y167{bottom:325.600000pt;}
.y13e{bottom:328.000000pt;}
.yd6{bottom:328.800000pt;}
.y121{bottom:330.404000pt;}
.ybf{bottom:332.800000pt;}
.y99{bottom:333.600000pt;}
.y6f{bottom:335.200000pt;}
.y18a{bottom:337.142000pt;}
.yf3{bottom:338.400000pt;}
.y166{bottom:340.800000pt;}
.y122{bottom:341.600000pt;}
.y120{bottom:343.208000pt;}
.yc{bottom:343.809333pt;}
.yd5{bottom:344.800133pt;}
.y3f{bottom:346.400000pt;}
.y6e{bottom:352.800133pt;}
.y189{bottom:355.564933pt;}
.y125{bottom:356.000133pt;}
.y3e{bottom:356.009600pt;}
.y11f{bottom:356.804000pt;}
.ybe{bottom:360.800133pt;}
.y98{bottom:361.600000pt;}
.yb{bottom:362.706666pt;}
.yf2{bottom:366.400000pt;}
.y124{bottom:368.800133pt;}
.y6d{bottom:369.600000pt;}
.y11e{bottom:370.400000pt;}
.y165{bottom:371.200133pt;}
.y188{bottom:373.988000pt;}
.y3d{bottom:375.204800pt;}
.ybd{bottom:376.800133pt;}
.y97{bottom:377.600000pt;}
.yd4{bottom:378.400000pt;}
.yf1{bottom:382.400000pt;}
.y187{bottom:392.410933pt;}
.ybc{bottom:393.600000pt;}
.y96{bottom:394.400000pt;}
.yd3{bottom:396.000133pt;}
.y6c{bottom:396.800133pt;}
.y164{bottom:397.600000pt;}
.yf0{bottom:399.200133pt;}
.y11d{bottom:408.000133pt;}
.y3c{bottom:410.400000pt;}
.y186{bottom:410.834000pt;}
.y95{bottom:411.200133pt;}
.y163{bottom:412.000133pt;}
.y6b{bottom:412.800133pt;}
.yef{bottom:416.000133pt;}
.yd2{bottom:423.200133pt;}
.ybb{bottom:427.200133pt;}
.y185{bottom:429.257067pt;}
.y6a{bottom:429.600133pt;}
.y11c{bottom:432.000000pt;}
.yee{bottom:432.800133pt;}
.y3b{bottom:434.400000pt;}
.y1ad{bottom:436.022400pt;}
.y94{bottom:438.400000pt;}
.yd1{bottom:439.200133pt;}
.y3a{bottom:443.995200pt;}
.yba{bottom:444.000133pt;}
.y69{bottom:446.400000pt;}
.yed{bottom:449.600133pt;}
.y162{bottom:453.600133pt;}
.y93{bottom:454.400000pt;}
.yd0{bottom:456.000133pt;}
.yb9{bottom:460.800133pt;}
.y39{bottom:462.398400pt;}
.ya{bottom:462.990669pt;}
.y183{bottom:464.800133pt;}
.y184{bottom:464.874667pt;}
.yec{bottom:467.200133pt;}
.y161{bottom:468.002400pt;}
.y11a{bottom:470.400000pt;}
.y1ac{bottom:471.216000pt;}
.y92{bottom:472.000133pt;}
.ycf{bottom:472.800133pt;}
.y68{bottom:474.400000pt;}
.yb8{bottom:477.600133pt;}
.y9{bottom:478.990666pt;}
.y38{bottom:480.801600pt;}
.y13d{bottom:481.600133pt;}
.yeb{bottom:484.000133pt;}
.y11b{bottom:484.800133pt;}
.y91{bottom:488.800133pt;}
.yce{bottom:489.600133pt;}
.y67{bottom:490.400000pt;}
.y114{bottom:492.800133pt;}
.y160{bottom:494.400000pt;}
.y8{bottom:494.990666pt;}
.y13c{bottom:497.600133pt;}
.y37{bottom:499.996800pt;}
.y90{bottom:505.600133pt;}
.y66{bottom:507.200133pt;}
.y1ab{bottom:507.216000pt;}
.y181{bottom:508.000133pt;}
.y115{bottom:508.800000pt;}
.y15f{bottom:508.800133pt;}
.yea{bottom:511.200133pt;}
.y13b{bottom:515.200133pt;}
.y113{bottom:516.800133pt;}
.y36{bottom:518.400000pt;}
.yb7{bottom:521.600133pt;}
.y8f{bottom:522.400000pt;}
.y119{bottom:523.200133pt;}
.y65{bottom:524.000133pt;}
.yab{bottom:530.400000pt;}
.y13a{bottom:532.000133pt;}
.y180{bottom:534.400000pt;}
.y118{bottom:536.004133pt;}
.y35{bottom:536.803200pt;}
.yb6{bottom:538.400000pt;}
.y8e{bottom:539.200133pt;}
.y64{bottom:540.800133pt;}
.y1aa{bottom:542.409600pt;}
.y117{bottom:549.600133pt;}
.ye9{bottom:551.200133pt;}
.yb5{bottom:555.200133pt;}
.y34{bottom:555.998400pt;}
.y8d{bottom:556.000133pt;}
.y63{bottom:557.600133pt;}
.yaa{bottom:559.200133pt;}
.y17f{bottom:564.800133pt;}
.ycd{bottom:564.804000pt;}
.y15e{bottom:565.600133pt;}
.ye8{bottom:567.200133pt;}
.y8c{bottom:572.800133pt;}
.y7{bottom:573.786667pt;}
.y111{bottom:574.400000pt;}
.y33{bottom:574.401600pt;}
.y62{bottom:575.200133pt;}
.y1a9{bottom:577.603200pt;}
.ycc{bottom:578.400000pt;}
.y15d{bottom:580.000133pt;}
.ye7{bottom:584.000133pt;}
.y8b{bottom:589.600133pt;}
.y61{bottom:592.000133pt;}
.y6{bottom:592.685334pt;}
.y32{bottom:592.804800pt;}
.y15c{bottom:595.200133pt;}
.yb4{bottom:596.000133pt;}
.ycb{bottom:597.600133pt;}
.y10e{bottom:599.200000pt;}
.y8a{bottom:606.400000pt;}
.y60{bottom:608.800133pt;}
.yb3{bottom:610.400133pt;}
.y31{bottom:612.000000pt;}
.y110{bottom:613.600133pt;}
.y1a8{bottom:613.603200pt;}
.ye6{bottom:618.400133pt;}
.y17e{bottom:620.800133pt;}
.y5f{bottom:625.600133pt;}
.y139{bottom:626.400133pt;}
.yb2{bottom:628.800133pt;}
.y30{bottom:630.403200pt;}
.ya9{bottom:636.800133pt;}
.y10c{bottom:637.600000pt;}
.y89{bottom:640.808133pt;}
.y5{bottom:645.598667pt;}
.y17d{bottom:646.400133pt;}
.y1a7{bottom:648.796800pt;}
.y2f{bottom:648.806400pt;}
.y15b{bottom:651.200133pt;}
.y5e{bottom:652.800133pt;}
.y138{bottom:653.585600pt;}
.y10a{bottom:661.600000pt;}
.y88{bottom:661.600133pt;}
.y15a{bottom:666.400133pt;}
.y2e{bottom:668.001600pt;}
.y5d{bottom:668.800133pt;}
.y3{bottom:668.977329pt;}
.y137{bottom:669.584000pt;}
.ya8{bottom:669.600133pt;}
.y17c{bottom:676.800133pt;}
.y1a6{bottom:684.796800pt;}
.y136{bottom:686.388800pt;}
.y5c{bottom:686.400000pt;}
.y2d{bottom:686.404800pt;}
.ye5{bottom:687.200000pt;}
.y159{bottom:692.800000pt;}
.y109{bottom:700.800000pt;}
.y1a5{bottom:701.601600pt;}
.y17b{bottom:702.400000pt;}
.y135{bottom:703.193600pt;}
.y5b{bottom:703.200000pt;}
.yff{bottom:703.208000pt;}
.y2c{bottom:704.808000pt;}
.y158{bottom:707.200000pt;}
.ya7{bottom:714.400000pt;}
.yfe{bottom:716.804000pt;}
.y17a{bottom:717.600000pt;}
.y1a4{bottom:718.406400pt;}
.y134{bottom:719.998400pt;}
.y5a{bottom:720.000133pt;}
.y157{bottom:722.400000pt;}
.y2b{bottom:724.003200pt;}
.y103{bottom:724.800000pt;}
.ya6{bottom:730.400000pt;}
.y87{bottom:731.200000pt;}
.y59{bottom:736.800000pt;}
.y133{bottom:737.595200pt;}
.ye4{bottom:737.600000pt;}
.y107{bottom:738.412000pt;}
.y2a{bottom:742.406400pt;}
.y179{bottom:743.200000pt;}
.y86{bottom:747.200000pt;}
.y106{bottom:752.008000pt;}
.y58{bottom:753.600000pt;}
.ye3{bottom:754.400000pt;}
.y178{bottom:757.600000pt;}
.y85{bottom:764.000133pt;}
.y14d{bottom:765.600000pt;}
.y105{bottom:765.604000pt;}
.y57{bottom:770.400000pt;}
.ye2{bottom:771.200000pt;}
.y156{bottom:778.400000pt;}
.y29{bottom:779.200000pt;}
.y84{bottom:780.800000pt;}
.y132{bottom:781.600000pt;}
.y2{bottom:781.661334pt;}
.y177{bottom:784.000133pt;}
.y56{bottom:787.200000pt;}
.ye1{bottom:788.000133pt;}
.y1a3{bottom:790.400000pt;}
.y28{bottom:792.000133pt;}
.y155{bottom:793.600000pt;}
.y14c{bottom:795.200000pt;}
.y83{bottom:797.600000pt;}
.y176{bottom:798.400000pt;}
.y100{bottom:804.000000pt;}
.y55{bottom:804.000133pt;}
.ye0{bottom:804.800000pt;}
.y175{bottom:813.600000pt;}
.y82{bottom:814.400000pt;}
.y102{bottom:818.400000pt;}
.y154{bottom:820.000133pt;}
.y54{bottom:820.800000pt;}
.y14b{bottom:822.400000pt;}
.y27{bottom:826.400000pt;}
.y1a2{bottom:827.200000pt;}
.y81{bottom:831.200000pt;}
.ydf{bottom:832.000133pt;}
.y153{bottom:834.400000pt;}
.y53{bottom:837.600000pt;}
.y26{bottom:838.400000pt;}
.y174{bottom:840.000133pt;}
.ya5{bottom:848.800000pt;}
.y14a{bottom:849.280000pt;}
.y52{bottom:854.400000pt;}
.y80{bottom:859.200000pt;}
.y1{bottom:859.312000pt;}
.y152{bottom:860.800000pt;}
.y1a1{bottom:864.000000pt;}
.ya4{bottom:865.600000pt;}
.y149{bottom:865.920000pt;}
.y51{bottom:871.200000pt;}
.y25{bottom:872.802400pt;}
.y7f{bottom:875.200000pt;}
.yfd{bottom:880.800000pt;}
.ya3{bottom:882.400000pt;}
.y148{bottom:882.720000pt;}
.y24{bottom:885.600000pt;}
.y50{bottom:888.800000pt;}
.y151{bottom:890.400000pt;}
.y7e{bottom:892.000133pt;}
.y173{bottom:895.200000pt;}
.y23{bottom:898.396800pt;}
.yde{bottom:899.200000pt;}
.y147{bottom:899.680000pt;}
.y1a0{bottom:901.600000pt;}
.y4f{bottom:905.600000pt;}
.y7d{bottom:908.800000pt;}
.y22{bottom:909.597600pt;}
.ya2{bottom:909.600000pt;}
.ydd{bottom:916.000133pt;}
.y146{bottom:916.480000pt;}
.y150{bottom:916.800000pt;}
.y172{bottom:921.600133pt;}
.y21{bottom:922.400000pt;}
.y182{bottom:923.200000pt;}
.y7c{bottom:925.600133pt;}
.y14f{bottom:931.200000pt;}
.y171{bottom:936.000133pt;}
.y19f{bottom:938.400000pt;}
.yca{bottom:939.194400pt;}
.y20{bottom:940.000133pt;}
.y7b{bottom:942.400000pt;}
.ydc{bottom:943.200000pt;}
.y145{bottom:943.520000pt;}
.y4e{bottom:956.800000pt;}
.yb1{bottom:958.397600pt;}
.y14e{bottom:958.400000pt;}
.y7a{bottom:960.000133pt;}
.y144{bottom:960.320000pt;}
.y170{bottom:962.400000pt;}
.y19e{bottom:972.000133pt;}
.y142{bottom:1004.000000pt;}
.y4c{bottom:1004.000133pt;}
.hb{height:17.500000pt;}
.h21{height:23.201333pt;}
.h20{height:24.000000pt;}
.h11{height:24.062500pt;}
.hd{height:28.437500pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hf{height:30.625000pt;}
.h28{height:36.805312pt;}
.he{height:37.187500pt;}
.h1f{height:37.600000pt;}
.h22{height:37.601333pt;}
.h14{height:37.692187pt;}
.h33{height:37.781406pt;}
.h19{height:40.828125pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hc{height:43.387500pt;}
.h13{height:43.750000pt;}
.h1a{height:47.109375pt;}
.h2{height:49.024000pt;}
.h1d{height:51.200000pt;}
.h25{height:52.000000pt;}
.h29{height:52.134375pt;}
.h15{height:53.390625pt;}
.h1c{height:56.503125pt;}
.h10{height:56.531250pt;}
.h1b{height:56.540850pt;}
.h35{height:56.801333pt;}
.h2a{height:57.787500pt;}
.h12{height:58.050000pt;}
.h2b{height:59.340000pt;}
.h2f{height:60.146342pt;}
.h2e{height:60.146875pt;}
.h30{height:60.147408pt;}
.h26{height:62.400000pt;}
.h34{height:62.812500pt;}
.h17{height:63.287500pt;}
.h24{height:64.800000pt;}
.h2c{height:67.803750pt;}
.h2d{height:69.059375pt;}
.h5{height:69.450667pt;}
.h31{height:72.234375pt;}
.h18{height:74.175000pt;}
.h16{height:76.762500pt;}
.h1e{height:78.400000pt;}
.h4{height:105.826671pt;}
.h23{height:180.000000pt;}
.h32{height:443.073333pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h27{height:1122.720000pt;}
.w8{width:103.200000pt;}
.w7{width:461.600000pt;}
.wa{width:497.553333pt;}
.wb{width:514.400000pt;}
.w2{width:566.928019pt;}
.w6{width:793.333333pt;}
.w5{width:793.600000pt;}
.w0{width:793.700000pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:794.400000pt;}
.w4{width:794.666667pt;}
.x0{left:0.000000pt;}
.x22{left:1.842933pt;}
.x16{left:6.400000pt;}
.x1f{left:17.600000pt;}
.x1e{left:35.200000pt;}
.x19{left:52.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x18{left:106.400000pt;}
.x7{left:111.996800pt;}
.x9{left:113.600000pt;}
.x1c{left:115.996000pt;}
.x1b{left:121.600000pt;}
.xb{left:123.200000pt;}
.xe{left:126.384000pt;}
.x14{left:128.004000pt;}
.x1d{left:134.404000pt;}
.x6{left:136.000000pt;}
.x25{left:151.200000pt;}
.xd{left:156.800000pt;}
.x1a{left:158.400000pt;}
.xa{left:162.396800pt;}
.x8{left:178.400000pt;}
.x4{left:180.874667pt;}
.x20{left:186.880000pt;}
.xc{left:197.600000pt;}
.x15{left:210.400000pt;}
.x17{left:216.800000pt;}
.x12{left:283.200000pt;}
.x10{left:339.183200pt;}
.x24{left:375.200000pt;}
.x5{left:393.600000pt;}
.x13{left:396.800000pt;}
.x3{left:404.408000pt;}
.x21{left:613.600000pt;}
.x23{left:664.800000pt;}
.xf{left:680.000000pt;}
.x11{left:683.200000pt;}
}




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