
    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_aff8f88eb67aff715941ec36.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_be4a4cda9d085cfdec70861d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_c3be5c050e121f06bc45b965.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.060000;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_1da518ec732f354c99b7a4d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_128e1647e2571d03888a3747.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_d8378b28551534cf431f2857.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.457000;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_81b9447841c12e0f0478f008.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_d9c9bc04f1b4a16198211878.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.510000;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_a3f1a1d80bb69597a5b0affc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721000;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_c7c9f56b287b10d75b20e531.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.131000;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_84c43d0c4fbefbb31add63d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.545000;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_21aa0393c0752773e98d0125.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;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_09e8d23c7db31e9f656f4207.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.678000;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_cadbb9917ea7d8aa44eb4fe8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.689000;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_c657c3004f997f3ff76a1259.woff2')format("woff");}.fff{font-family:fff;line-height:0.669000;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_7914cf430d036d53e9e3340c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.264000;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_2b87e4237b2fb68d90276210.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.279000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.ls33{letter-spacing:-0.809989px;}
.ls2{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.058484px;}
.ls31{letter-spacing:0.058547px;}
.ls1c{letter-spacing:0.105636px;}
.ls3{letter-spacing:0.117613px;}
.ls20{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.176398px;}
.ls8{letter-spacing:0.194040px;}
.ls4{letter-spacing:0.199891px;}
.ls7{letter-spacing:0.199922px;}
.ls0{letter-spacing:0.222002px;}
.ls19{letter-spacing:0.476275px;}
.ls1b{letter-spacing:0.535080px;}
.ls28{letter-spacing:0.544493px;}
.ls2f{letter-spacing:0.562493px;}
.ls15{letter-spacing:0.570354px;}
.ls2a{letter-spacing:0.575992px;}
.ls2e{letter-spacing:0.580492px;}
.ls6{letter-spacing:0.587994px;}
.ls27{letter-spacing:0.589492px;}
.lsd{letter-spacing:0.593874px;}
.ls29{letter-spacing:0.593992px;}
.ls14{letter-spacing:0.599754px;}
.ls2c{letter-spacing:0.602992px;}
.ls34{letter-spacing:0.607492px;}
.ls11{letter-spacing:0.611514px;}
.ls2d{letter-spacing:0.616492px;}
.lse{letter-spacing:0.617394px;}
.ls12{letter-spacing:0.623274px;}
.ls5{letter-spacing:0.629154px;}
.ls35{letter-spacing:0.634492px;}
.ls10{letter-spacing:0.635034px;}
.ls9{letter-spacing:0.640913px;}
.lsc{letter-spacing:0.646793px;}
.ls37{letter-spacing:0.647991px;}
.lsb{letter-spacing:0.652673px;}
.lsa{letter-spacing:0.664438px;}
.lsf{letter-spacing:0.670313px;}
.ls36{letter-spacing:0.774001px;}
.ls21{letter-spacing:1.134828px;}
.ls1d{letter-spacing:9.196686px;}
.ls25{letter-spacing:9.331054px;}
.ls24{letter-spacing:9.537486px;}
.ls1a{letter-spacing:12.283212px;}
.ls26{letter-spacing:12.412553px;}
.ls2b{letter-spacing:13.504337px;}
.ls1e{letter-spacing:14.299026px;}
.ls1f{letter-spacing:14.639826px;}
.ls17{letter-spacing:15.499522px;}
.ls13{letter-spacing:16.987138px;}
.ls32{letter-spacing:18.515280px;}
.ls18{letter-spacing:24.201833px;}
.ls16{letter-spacing:24.642829px;}
.ls23{letter-spacing:28.341311px;}
.ls22{letter-spacing:30.722651px;}
.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;}
}
.ws78{word-spacing:-24.701628px;}
.ws88{word-spacing:-24.260632px;}
.ws19b{word-spacing:-18.577080px;}
.ws80{word-spacing:-15.558321px;}
.ws104{word-spacing:-12.471353px;}
.ws3{word-spacing:-0.144001px;}
.ws1a{word-spacing:-0.061800px;}
.ws23{word-spacing:-0.058799px;}
.wsea{word-spacing:-0.054000px;}
.ws40{word-spacing:-0.047999px;}
.ws31{word-spacing:-0.044999px;}
.ws3a{word-spacing:-0.041999px;}
.ws41{word-spacing:0.000000px;}
.ws154{word-spacing:9.244685px;}
.wsec{word-spacing:9.585480px;}
.ws1b5{word-spacing:10.808856px;}
.ws1b4{word-spacing:10.817855px;}
.ws182{word-spacing:10.930354px;}
.ws183{word-spacing:10.952854px;}
.ws184{word-spacing:10.961854px;}
.ws1b6{word-spacing:11.087852px;}
.wse5{word-spacing:11.154246px;}
.wsbb{word-spacing:11.401203px;}
.ws1b8{word-spacing:11.461347px;}
.ws197{word-spacing:11.470347px;}
.ws198{word-spacing:11.686345px;}
.ws196{word-spacing:11.735843px;}
.ws30{word-spacing:11.884342px;}
.ws3b{word-spacing:12.322624px;}
.ws38{word-spacing:12.394023px;}
.ws3d{word-spacing:12.423423px;}
.ws36{word-spacing:12.448622px;}
.ws192{word-spacing:12.518834px;}
.ws3c{word-spacing:12.528421px;}
.ws189{word-spacing:12.581832px;}
.ws1b7{word-spacing:12.626863px;}
.ws39{word-spacing:12.692219px;}
.ws190{word-spacing:12.707830px;}
.wsfe{word-spacing:12.738418px;}
.ws18f{word-spacing:12.761829px;}
.ws191{word-spacing:12.815829px;}
.ws187{word-spacing:12.829329px;}
.ws186{word-spacing:12.869829px;}
.ws193{word-spacing:12.887828px;}
.ws37{word-spacing:12.889616px;}
.ws188{word-spacing:12.928328px;}
.ws194{word-spacing:12.941828px;}
.ws1c6{word-spacing:13.148825px;}
.ws1bf{word-spacing:13.166825px;}
.ws1a7{word-spacing:13.211824px;}
.ws1bd{word-spacing:13.216324px;}
.ws1a6{word-spacing:13.225323px;}
.ws1c8{word-spacing:13.229824px;}
.ws1ac{word-spacing:13.234324px;}
.ws1b0{word-spacing:13.238824px;}
.ws1c1{word-spacing:13.243323px;}
.ws1a8{word-spacing:13.247823px;}
.ws1c4{word-spacing:13.252323px;}
.ws1ab{word-spacing:13.256824px;}
.ws1c0{word-spacing:13.265823px;}
.ws1af{word-spacing:13.274823px;}
.ws1c2{word-spacing:13.279323px;}
.ws163{word-spacing:13.282784px;}
.ws1b1{word-spacing:13.292822px;}
.ws1be{word-spacing:13.310822px;}
.ws1c7{word-spacing:13.315322px;}
.ws181{word-spacing:13.324323px;}
.ws1a4{word-spacing:13.333322px;}
.ws35{word-spacing:13.342322px;}
.ws1aa{word-spacing:13.346822px;}
.ws1c5{word-spacing:13.351269px;}
.ws1b2{word-spacing:13.360321px;}
.ws18c{word-spacing:13.369322px;}
.ws19c{word-spacing:13.373822px;}
.ws1b3{word-spacing:13.387321px;}
.ws1ad{word-spacing:13.396322px;}
.ws18e{word-spacing:13.400821px;}
.ws1ae{word-spacing:13.414322px;}
.ws19a{word-spacing:13.432321px;}
.ws180{word-spacing:13.436821px;}
.ws185{word-spacing:13.445820px;}
.ws18b{word-spacing:13.468320px;}
.ws18a{word-spacing:13.495320px;}
.ws195{word-spacing:13.504320px;}
.ws32{word-spacing:13.513320px;}
.ws17e{word-spacing:13.517819px;}
.ws1a9{word-spacing:13.531320px;}
.ws1c3{word-spacing:13.540319px;}
.ws1a5{word-spacing:13.549320px;}
.ws33{word-spacing:13.562819px;}
.ws19d{word-spacing:13.576319px;}
.ws1a1{word-spacing:13.580818px;}
.ws1a2{word-spacing:13.607818px;}
.ws19f{word-spacing:13.616819px;}
.ws1a3{word-spacing:13.621319px;}
.wse2{word-spacing:13.623821px;}
.ws18d{word-spacing:13.643819px;}
.ws17f{word-spacing:13.666318px;}
.ws17d{word-spacing:13.670846px;}
.ws1a0{word-spacing:13.675317px;}
.ws34{word-spacing:13.684318px;}
.ws15f{word-spacing:13.703829px;}
.ws3e{word-spacing:13.727828px;}
.wsaa{word-spacing:13.727831px;}
.ws15b{word-spacing:13.751828px;}
.ws19e{word-spacing:13.814816px;}
.wseb{word-spacing:13.847827px;}
.ws15a{word-spacing:13.852627px;}
.ws159{word-spacing:13.871827px;}
.ws157{word-spacing:13.876627px;}
.ws15d{word-spacing:13.881427px;}
.ws199{word-spacing:13.882315px;}
.wsf1{word-spacing:13.900627px;}
.ws153{word-spacing:13.915053px;}
.wsed{word-spacing:13.919826px;}
.wsf8{word-spacing:13.929426px;}
.wsf0{word-spacing:13.939025px;}
.wsfb{word-spacing:13.943826px;}
.wsfa{word-spacing:13.953438px;}
.wsef{word-spacing:13.977426px;}
.ws160{word-spacing:13.987025px;}
.wsf4{word-spacing:14.001408px;}
.wsfd{word-spacing:14.001425px;}
.wsf5{word-spacing:14.006203px;}
.wsee{word-spacing:14.011024px;}
.ws15e{word-spacing:14.020625px;}
.ws100{word-spacing:14.030224px;}
.wsfc{word-spacing:14.030256px;}
.ws156{word-spacing:14.035024px;}
.ws3f{word-spacing:14.059024px;}
.wsf2{word-spacing:14.174222px;}
.wsf6{word-spacing:14.188623px;}
.ws155{word-spacing:14.212590px;}
.wsff{word-spacing:14.231822px;}
.ws15c{word-spacing:14.236623px;}
.wsf3{word-spacing:14.241381px;}
.wsab{word-spacing:14.251021px;}
.wsf7{word-spacing:14.299007px;}
.ws158{word-spacing:14.462219px;}
.wsf9{word-spacing:14.481419px;}
.ws81{word-spacing:14.494052px;}
.ws73{word-spacing:14.535212px;}
.wsda{word-spacing:14.723369px;}
.ws74{word-spacing:14.793930px;}
.ws7f{word-spacing:14.846849px;}
.ws83{word-spacing:14.935048px;}
.wscc{word-spacing:15.017366px;}
.wsc7{word-spacing:15.376043px;}
.wsd7{word-spacing:15.399562px;}
.wsd9{word-spacing:15.658280px;}
.ws51{word-spacing:15.664160px;}
.wsb4{word-spacing:15.705320px;}
.wsb1{word-spacing:15.899357px;}
.ws150{word-spacing:15.973199px;}
.ws75{word-spacing:15.987556px;}
.wse8{word-spacing:16.065001px;}
.wse9{word-spacing:16.081199px;}
.ws151{word-spacing:16.173000px;}
.wsd3{word-spacing:16.240395px;}
.wse6{word-spacing:16.293344px;}
.wsba{word-spacing:16.328594px;}
.ws152{word-spacing:16.437599px;}
.wsb2{word-spacing:16.634350px;}
.ws9b{word-spacing:16.665061px;}
.ws4b{word-spacing:16.687269px;}
.ws103{word-spacing:16.857788px;}
.wsbc{word-spacing:16.874824px;}
.ws170{word-spacing:16.875428px;}
.ws1bb{word-spacing:16.973773px;}
.ws1ba{word-spacing:17.050272px;}
.wse7{word-spacing:17.216464px;}
.ws90{word-spacing:17.322303px;}
.ws1bc{word-spacing:17.329269px;}
.ws53{word-spacing:17.351704px;}
.ws28{word-spacing:17.357583px;}
.wsb7{word-spacing:17.363462px;}
.wscb{word-spacing:17.398742px;}
.ws17c{word-spacing:17.463422px;}
.ws125{word-spacing:17.486941px;}
.ws79{word-spacing:17.539860px;}
.wsc2{word-spacing:17.610420px;}
.ws97{word-spacing:17.651580px;}
.wsaf{word-spacing:17.675100px;}
.wsa{word-spacing:17.676177px;}
.ws135{word-spacing:17.698619px;}
.ws10e{word-spacing:17.728019px;}
.ws149{word-spacing:17.739780px;}
.ws13a{word-spacing:17.751538px;}
.wsae{word-spacing:17.780938px;}
.ws10{word-spacing:17.790178px;}
.ws6f{word-spacing:17.810338px;}
.ws14{word-spacing:17.814178px;}
.ws47{word-spacing:17.845618px;}
.ws19{word-spacing:17.868179px;}
.ws4e{word-spacing:17.892657px;}
.ws10d{word-spacing:17.898537px;}
.ws166{word-spacing:17.910298px;}
.ws8b{word-spacing:17.927938px;}
.wsb{word-spacing:17.976180px;}
.wsb5{word-spacing:17.986736px;}
.wsc{word-spacing:17.994180px;}
.ws11{word-spacing:18.018180px;}
.ws18{word-spacing:18.030180px;}
.ws16{word-spacing:18.114181px;}
.ws94{word-spacing:18.121976px;}
.ws13{word-spacing:18.138181px;}
.ws15{word-spacing:18.144181px;}
.wse{word-spacing:18.180182px;}
.wsd{word-spacing:18.186182px;}
.ws10a{word-spacing:18.186654px;}
.wsf{word-spacing:18.198182px;}
.ws175{word-spacing:18.251333px;}
.ws12{word-spacing:18.300183px;}
.ws60{word-spacing:18.368932px;}
.ws17{word-spacing:18.420184px;}
.ws169{word-spacing:18.427731px;}
.wsd4{word-spacing:18.486531px;}
.ws7b{word-spacing:18.539450px;}
.ws17a{word-spacing:18.580610px;}
.ws17b{word-spacing:18.586491px;}
.ws9{word-spacing:18.600186px;}
.ws1b9{word-spacing:18.625251px;}
.ws11a{word-spacing:18.721728px;}
.ws2d{word-spacing:18.745249px;}
.ws2e{word-spacing:18.757009px;}
.ws142{word-spacing:18.804048px;}
.ws105{word-spacing:18.862847px;}
.ws84{word-spacing:18.927526px;}
.ws46{word-spacing:19.051006px;}
.ws134{word-spacing:19.056886px;}
.ws124{word-spacing:19.145085px;}
.wsd6{word-spacing:19.239164px;}
.ws16b{word-spacing:19.427321px;}
.ws139{word-spacing:19.439082px;}
.ws14a{word-spacing:19.456721px;}
.wsd5{word-spacing:19.486121px;}
.ws14f{word-spacing:19.521401px;}
.ws7{word-spacing:19.595578px;}
.ws4{word-spacing:19.621978px;}
.ws6{word-spacing:19.681379px;}
.ws127{word-spacing:19.738959px;}
.ws8{word-spacing:19.767180px;}
.ws5{word-spacing:19.773780px;}
.ws5f{word-spacing:19.797759px;}
.ws14b{word-spacing:19.821278px;}
.ws117{word-spacing:19.827158px;}
.ws8e{word-spacing:19.833037px;}
.ws10c{word-spacing:19.885958px;}
.ws64{word-spacing:19.891836px;}
.ws7d{word-spacing:19.944757px;}
.ws1c{word-spacing:20.056475px;}
.ws8f{word-spacing:20.079996px;}
.ws1b{word-spacing:20.274033px;}
.wsc5{word-spacing:20.332832px;}
.ws76{word-spacing:20.338712px;}
.wsc0{word-spacing:20.344592px;}
.ws67{word-spacing:20.503351px;}
.wse0{word-spacing:20.544510px;}
.wsad{word-spacing:20.550390px;}
.ws98{word-spacing:20.568030px;}
.wsd0{word-spacing:20.597429px;}
.ws4c{word-spacing:20.744428px;}
.ws85{word-spacing:20.773829px;}
.wsa8{word-spacing:20.844387px;}
.ws109{word-spacing:20.879668px;}
.ws5a{word-spacing:20.961986px;}
.ws59{word-spacing:21.185423px;}
.ws119{word-spacing:21.220703px;}
.ws5d{word-spacing:21.402982px;}
.ws48{word-spacing:21.497061px;}
.ws129{word-spacing:21.526461px;}
.ws147{word-spacing:21.808697px;}
.ws111{word-spacing:21.820458px;}
.ws5e{word-spacing:21.861616px;}
.ws61{word-spacing:21.926296px;}
.ws49{word-spacing:21.985095px;}
.ws12b{word-spacing:22.055656px;}
.ws43{word-spacing:22.149735px;}
.ws172{word-spacing:22.161493px;}
.ws6c{word-spacing:22.202654px;}
.ws138{word-spacing:22.226173px;}
.ws57{word-spacing:22.349653px;}
.wsdb{word-spacing:22.384932px;}
.ws13e{word-spacing:22.402571px;}
.wsa3{word-spacing:22.461371px;}
.wsac{word-spacing:22.496651px;}
.ws162{word-spacing:22.543689px;}
.ws141{word-spacing:22.761248px;}
.wsdd{word-spacing:22.802407px;}
.ws68{word-spacing:22.884727px;}
.ws1d{word-spacing:22.908246px;}
.ws106{word-spacing:22.931766px;}
.wsa2{word-spacing:22.949405px;}
.wsce{word-spacing:22.996446px;}
.ws2f{word-spacing:23.002325px;}
.ws11f{word-spacing:23.008205px;}
.wsc3{word-spacing:23.072885px;}
.ws63{word-spacing:23.143444px;}
.wsd2{word-spacing:23.184603px;}
.ws14c{word-spacing:23.190483px;}
.wsa6{word-spacing:23.225763px;}
.ws16a{word-spacing:23.243402px;}
.ws143{word-spacing:23.249282px;}
.ws6e{word-spacing:23.266923px;}
.ws21{word-spacing:23.290442px;}
.ws9c{word-spacing:23.443321px;}
.ws137{word-spacing:23.484480px;}
.ws176{word-spacing:23.543279px;}
.ws77{word-spacing:23.555040px;}
.wsa0{word-spacing:23.566799px;}
.wsb8{word-spacing:23.649119px;}
.ws0{word-spacing:23.649600px;}
.ws12d{word-spacing:23.660878px;}
.ws1e{word-spacing:23.696158px;}
.ws71{word-spacing:23.731438px;}
.ws11c{word-spacing:23.907837px;}
.ws165{word-spacing:23.966636px;}
.ws177{word-spacing:24.001916px;}
.ws4d{word-spacing:24.019555px;}
.ws128{word-spacing:24.031315px;}
.ws4a{word-spacing:24.090115px;}
.ws16e{word-spacing:24.125393px;}
.ws9e{word-spacing:24.207714px;}
.ws136{word-spacing:24.242992px;}
.wse1{word-spacing:24.272392px;}
.wscd{word-spacing:24.448790px;}
.ws145{word-spacing:24.472311px;}
.ws96{word-spacing:24.478190px;}
.ws12f{word-spacing:24.542869px;}
.ws12e{word-spacing:24.560510px;}
.wsa4{word-spacing:24.578149px;}
.ws5c{word-spacing:24.584030px;}
.ws121{word-spacing:24.607549px;}
.wsc9{word-spacing:24.631068px;}
.ws25{word-spacing:24.683988px;}
.ws16f{word-spacing:24.695748px;}
.ws8a{word-spacing:24.748667px;}
.ws178{word-spacing:24.919185px;}
.ws56{word-spacing:25.025024px;}
.ws86{word-spacing:25.113223px;}
.wsa1{word-spacing:25.248462px;}
.ws65{word-spacing:25.389580px;}
.ws7c{word-spacing:25.395461px;}
.ws93{word-spacing:25.560100px;}
.ws161{word-spacing:25.565979px;}
.ws2a{word-spacing:25.824696px;}
.wsb6{word-spacing:25.865855px;}
.ws89{word-spacing:26.001095px;}
.ws140{word-spacing:26.042254px;}
.ws91{word-spacing:26.283332px;}
.ws168{word-spacing:26.406811px;}
.wscf{word-spacing:26.547929px;}
.ws148{word-spacing:26.624368px;}
.ws110{word-spacing:26.724327px;}
.ws87{word-spacing:26.859567px;}
.ws114{word-spacing:27.012444px;}
.ws146{word-spacing:27.030085px;}
.ws10f{word-spacing:27.065363px;}
.ws107{word-spacing:27.088884px;}
.wsd1{word-spacing:27.124163px;}
.ws102{word-spacing:27.153564px;}
.ws108{word-spacing:27.171203px;}
.ws26{word-spacing:27.306441px;}
.ws113{word-spacing:27.429920px;}
.ws99{word-spacing:27.741556px;}
.ws144{word-spacing:27.770956px;}
.wsa9{word-spacing:27.882676px;}
.ws50{word-spacing:27.894435px;}
.ws174{word-spacing:27.941475px;}
.ws54{word-spacing:27.947354px;}
.ws14d{word-spacing:27.988514px;}
.ws8c{word-spacing:28.041434px;}
.ws14e{word-spacing:28.059074px;}
.ws45{word-spacing:28.253112px;}
.ws10b{word-spacing:28.329550px;}
.ws133{word-spacing:28.423629px;}
.wsc8{word-spacing:28.552989px;}
.ws118{word-spacing:28.594148px;}
.wsb0{word-spacing:28.794067px;}
.wsa5{word-spacing:28.823466px;}
.ws12a{word-spacing:28.858745px;}
.wsbd{word-spacing:28.958705px;}
.ws92{word-spacing:28.964585px;}
.ws4f{word-spacing:29.029264px;}
.ws8d{word-spacing:29.035143px;}
.wsdf{word-spacing:29.105703px;}
.wsc4{word-spacing:29.240942px;}
.wsb3{word-spacing:29.258582px;}
.ws9f{word-spacing:29.270341px;}
.wsc1{word-spacing:29.346781px;}
.ws11b{word-spacing:29.470260px;}
.ws116{word-spacing:29.593737px;}
.ws13b{word-spacing:29.605498px;}
.ws42{word-spacing:29.629017px;}
.ws1f{word-spacing:29.687817px;}
.ws13c{word-spacing:29.758377px;}
.ws6a{word-spacing:29.940655px;}
.ws164{word-spacing:29.964175px;}
.ws11d{word-spacing:30.122932px;}
.ws131{word-spacing:30.140571px;}
.ws115{word-spacing:30.169971px;}
.ws132{word-spacing:30.246413px;}
.wsbf{word-spacing:30.287570px;}
.ws112{word-spacing:30.393411px;}
.wse3{word-spacing:30.434568px;}
.ws2c{word-spacing:30.587448px;}
.ws66{word-spacing:30.605088px;}
.ws20{word-spacing:30.616848px;}
.wsb9{word-spacing:30.681526px;}
.ws95{word-spacing:30.710926px;}
.ws27{word-spacing:30.757966px;}
.wsdc{word-spacing:30.969645px;}
.ws171{word-spacing:31.004923px;}
.ws62{word-spacing:31.110761px;}
.ws101{word-spacing:31.128404px;}
.wsde{word-spacing:31.181321px;}
.wsd8{word-spacing:31.304802px;}
.ws13f{word-spacing:31.487079px;}
.ws12c{word-spacing:31.698755px;}
.wsc6{word-spacing:31.886914px;}
.ws22{word-spacing:32.069193px;}
.ws24{word-spacing:32.139752px;}
.ws70{word-spacing:32.304392px;}
.ws126{word-spacing:32.433748px;}
.ws69{word-spacing:32.474908px;}
.ws29{word-spacing:32.945304px;}
.ws16d{word-spacing:33.286339px;}
.ws167{word-spacing:33.345139px;}
.ws6d{word-spacing:33.656778px;}
.ws123{word-spacing:33.686177px;}
.ws179{word-spacing:34.027213px;}
.ws44{word-spacing:34.097773px;}
.ws16c{word-spacing:34.109531px;}
.ws82{word-spacing:34.656368px;}
.ws6b{word-spacing:34.744567px;}
.ws130{word-spacing:35.167920px;}
.wsca{word-spacing:35.244362px;}
.ws7a{word-spacing:35.508959px;}
.ws173{word-spacing:35.661836px;}
.ws52{word-spacing:35.732396px;}
.ws58{word-spacing:36.026393px;}
.wsa7{word-spacing:36.273351px;}
.ws120{word-spacing:36.784903px;}
.ws2b{word-spacing:37.531657px;}
.ws13d{word-spacing:37.766854px;}
.wsbe{word-spacing:37.937373px;}
.ws9a{word-spacing:38.372487px;}
.ws7e{word-spacing:38.601806px;}
.ws9d{word-spacing:39.277999px;}
.ws11e{word-spacing:39.495558px;}
.ws55{word-spacing:40.618625px;}
.ws5b{word-spacing:42.511966px;}
.ws2{word-spacing:43.113780px;}
.ws1{word-spacing:43.387381px;}
.wse4{word-spacing:44.699304px;}
.ws72{word-spacing:47.809791px;}
.ws122{word-spacing:48.268429px;}
._1e{margin-left:-24.851549px;}
._1b{margin-left:-23.531816px;}
._1f{margin-left:-22.051846px;}
._45{margin-left:-17.903401px;}
._1d{margin-left:-16.756533px;}
._1c{margin-left:-15.609158px;}
._33{margin-left:-12.647749px;}
._32{margin-left:-11.195407px;}
._16{margin-left:-6.338344px;}
._20{margin-left:-4.986515px;}
._e{margin-left:-3.466305px;}
._23{margin-left:-2.463695px;}
._10{margin-left:-1.454382px;}
._4{width:1.032010px;}
._19{width:2.052097px;}
._9{width:3.169288px;}
._0{width:8.954400px;}
._22{width:10.598151px;}
._2d{width:13.099036px;}
._f{width:14.125312px;}
._15{width:16.155576px;}
._24{width:17.869137px;}
._5{width:19.044190px;}
._13{width:20.750308px;}
._6{width:21.923114px;}
._18{width:23.223550px;}
._7{width:24.275251px;}
._12{width:25.380676px;}
._c{width:26.906605px;}
._a{width:28.570628px;}
._14{width:29.608359px;}
._8{width:31.116642px;}
._1{width:32.877000px;}
._b{width:34.080132px;}
._1a{width:35.285354px;}
._11{width:36.937782px;}
._d{width:38.778204px;}
._17{width:40.689185px;}
._3{width:44.510585px;}
._34{width:50.264583px;}
._46{width:65.861121px;}
._42{width:92.456443px;}
._36{width:102.195527px;}
._3b{width:125.311934px;}
._3c{width:148.116544px;}
._39{width:171.108264px;}
._2e{width:192.962384px;}
._44{width:194.752771px;}
._43{width:196.696732px;}
._38{width:203.723863px;}
._37{width:206.819823px;}
._3a{width:229.753933px;}
._41{width:252.745645px;}
._2c{width:298.097409px;}
._3f{width:364.867439px;}
._3e{width:368.361773px;}
._3d{width:391.018429px;}
._35{width:405.484530px;}
._40{width:436.444163px;}
._2f{width:519.943843px;}
._25{width:561.026597px;}
._2b{width:588.088639px;}
._2a{width:602.906105px;}
._30{width:626.339293px;}
._28{width:667.105280px;}
._31{width:677.621963px;}
._29{width:733.291615px;}
._26{width:737.242018px;}
._27{width:745.877067px;}
._2{width:1602.283800px;}
._21{width:1696.706748px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(19,20,19);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:27.996600px;}
.fs8{font-size:29.995200px;}
.fsd{font-size:31.995000px;}
.fs9{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y3d{bottom:65.394085px;}
.y3c{bottom:77.384914px;}
.y181{bottom:89.291370px;}
.y74{bottom:89.293935px;}
.y1c6{bottom:89.294265px;}
.yc6{bottom:89.295960px;}
.ya8{bottom:89.299095px;}
.y11b{bottom:89.303370px;}
.ye6{bottom:89.310645px;}
.y151{bottom:89.326890px;}
.y3b{bottom:89.375743px;}
.y3a{bottom:101.366571px;}
.y180{bottom:102.812565px;}
.y1c5{bottom:102.815460px;}
.y73{bottom:107.321835px;}
.yc5{bottom:107.323845px;}
.ya7{bottom:107.326995px;}
.y11a{bottom:107.331270px;}
.ye5{bottom:107.338530px;}
.y150{bottom:107.354790px;}
.y39{bottom:113.357400px;}
.y17f{bottom:116.333760px;}
.y1c4{bottom:116.336655px;}
.y72{bottom:125.264475px;}
.yc4{bottom:125.266485px;}
.ya6{bottom:125.269635px;}
.y119{bottom:125.273895px;}
.ye4{bottom:125.366430px;}
.y14f{bottom:125.382690px;}
.y17e{bottom:129.770580px;}
.y1c3{bottom:129.773475px;}
.y38{bottom:138.782161px;}
.y17d{bottom:143.291775px;}
.y71{bottom:143.292360px;}
.yc3{bottom:143.294385px;}
.y1c2{bottom:143.294670px;}
.ya5{bottom:143.297520px;}
.y118{bottom:143.301795px;}
.ye3{bottom:143.309070px;}
.y14e{bottom:143.325315px;}
.y30{bottom:150.551436px;}
.y37{bottom:152.304480px;}
.y1c1{bottom:156.815865px;}
.y70{bottom:161.320260px;}
.yc2{bottom:161.322285px;}
.ya4{bottom:161.325420px;}
.y117{bottom:161.329695px;}
.ye2{bottom:161.336970px;}
.y14d{bottom:161.353215px;}
.y36{bottom:165.826800px;}
.y2f{bottom:168.499953px;}
.y1c0{bottom:170.337060px;}
.y35{bottom:170.844150px;}
.y17c{bottom:171.014790px;}
.y6f{bottom:179.262900px;}
.yc1{bottom:179.264925px;}
.ya3{bottom:179.268060px;}
.y116{bottom:179.272335px;}
.y34{bottom:179.351879px;}
.ye1{bottom:179.364855px;}
.y14c{bottom:179.381115px;}
.y1bf{bottom:183.773880px;}
.y17b{bottom:184.535970px;}
.y2e{bottom:186.521969px;}
.y33{bottom:192.784200px;}
.y6e{bottom:197.291250px;}
.yc0{bottom:197.292810px;}
.y1be{bottom:197.295075px;}
.ya2{bottom:197.295960px;}
.y115{bottom:197.300235px;}
.ye0{bottom:197.307495px;}
.y14b{bottom:197.323755px;}
.y32{bottom:197.801550px;}
.y17a{bottom:198.057165px;}
.y2d{bottom:204.543985px;}
.y31{bottom:206.305500px;}
.y1bd{bottom:210.816270px;}
.y179{bottom:211.578360px;}
.ybf{bottom:215.320710px;}
.ya1{bottom:215.323845px;}
.y114{bottom:215.328120px;}
.ydf{bottom:215.335395px;}
.y14a{bottom:215.351640px;}
.y2c{bottom:222.492502px;}
.y1bc{bottom:224.337465px;}
.y178{bottom:225.015180px;}
.ybe{bottom:233.263350px;}
.ya0{bottom:233.266485px;}
.y113{bottom:233.270760px;}
.yde{bottom:233.363295px;}
.y6d{bottom:233.371545px;}
.y149{bottom:233.379540px;}
.y1bb{bottom:237.773160px;}
.y24{bottom:240.499818px;}
.y2b{bottom:240.514518px;}
.ybd{bottom:251.291250px;}
.y1ba{bottom:251.294355px;}
.y9f{bottom:251.294385px;}
.y112{bottom:251.298660px;}
.ydd{bottom:251.305935px;}
.y6c{bottom:251.314185px;}
.y148{bottom:251.322180px;}
.y177{bottom:252.822570px;}
.y23{bottom:258.521834px;}
.y2a{bottom:258.536534px;}
.y1b9{bottom:264.815550px;}
.y176{bottom:266.343765px;}
.ybc{bottom:269.319600px;}
.y9e{bottom:269.322285px;}
.y111{bottom:269.326560px;}
.ydc{bottom:269.333820px;}
.y6b{bottom:269.342070px;}
.y147{bottom:269.350080px;}
.y22{bottom:276.470351px;}
.y29{bottom:276.485051px;}
.y1b8{bottom:278.336745px;}
.y175{bottom:279.779460px;}
.y9d{bottom:287.264925px;}
.y110{bottom:287.269185px;}
.ydb{bottom:287.361720px;}
.y6a{bottom:287.369970px;}
.y146{bottom:287.377965px;}
.y1b7{bottom:291.772440px;}
.y174{bottom:293.300655px;}
.y21{bottom:294.492367px;}
.y28{bottom:294.507067px;}
.y9c{bottom:305.292810px;}
.y1b6{bottom:305.293635px;}
.y10f{bottom:305.297085px;}
.ybb{bottom:305.300085px;}
.yda{bottom:305.304360px;}
.y69{bottom:305.312610px;}
.y145{bottom:305.320605px;}
.y20{bottom:312.514383px;}
.y27{bottom:312.529083px;}
.y1b5{bottom:318.814830px;}
.y173{bottom:321.023655px;}
.y9b{bottom:323.320710px;}
.y10e{bottom:323.324985px;}
.yba{bottom:323.327985px;}
.yd9{bottom:323.332260px;}
.y68{bottom:323.340510px;}
.y144{bottom:323.348505px;}
.y1f{bottom:330.462900px;}
.y26{bottom:330.477600px;}
.y1b4{bottom:332.336025px;}
.y172{bottom:334.544850px;}
.y9a{bottom:341.263350px;}
.y10d{bottom:341.267625px;}
.yb9{bottom:341.270625px;}
.yd8{bottom:341.274885px;}
.y67{bottom:341.283135px;}
.y143{bottom:341.291145px;}
.y1b3{bottom:345.771720px;}
.y1e{bottom:348.491250px;}
.y25{bottom:348.499616px;}
.y99{bottom:359.291250px;}
.y1b2{bottom:359.292915px;}
.y10c{bottom:359.295510px;}
.yb8{bottom:359.298525px;}
.yd7{bottom:359.302785px;}
.y66{bottom:359.311035px;}
.y142{bottom:359.319045px;}
.y171{bottom:362.267850px;}
.y1b1{bottom:372.814110px;}
.y170{bottom:375.789045px;}
.y98{bottom:377.319600px;}
.y10b{bottom:377.323410px;}
.yb7{bottom:377.326410px;}
.yd6{bottom:377.330685px;}
.y65{bottom:377.338935px;}
.y141{bottom:377.346930px;}
.y1b0{bottom:386.335305px;}
.y16f{bottom:389.310240px;}
.y1d{bottom:394.171770px;}
.y10a{bottom:395.266050px;}
.yb6{bottom:395.269050px;}
.yd5{bottom:395.273325px;}
.y64{bottom:395.281575px;}
.y140{bottom:395.289570px;}
.y1af{bottom:399.771000px;}
.y16e{bottom:402.831435px;}
.y1ae{bottom:413.292195px;}
.y97{bottom:413.292810px;}
.y109{bottom:413.293950px;}
.yb5{bottom:413.296950px;}
.yd4{bottom:413.301210px;}
.y63{bottom:413.309460px;}
.y13f{bottom:413.317470px;}
.y1c{bottom:419.687025px;}
.y1ad{bottom:426.813390px;}
.y16d{bottom:430.557735px;}
.y96{bottom:431.320710px;}
.y108{bottom:431.321835px;}
.yb4{bottom:431.324850px;}
.yd3{bottom:431.329110px;}
.y62{bottom:431.337360px;}
.y13e{bottom:431.345370px;}
.y1b{bottom:437.717205px;}
.y1ac{bottom:440.334585px;}
.y16c{bottom:448.585635px;}
.y95{bottom:449.263350px;}
.y107{bottom:449.264475px;}
.yb3{bottom:449.267490px;}
.yd2{bottom:449.271750px;}
.y61{bottom:449.280000px;}
.y13d{bottom:449.287995px;}
.y1ab{bottom:453.771405px;}
.y1a{bottom:455.657385px;}
.y16b{bottom:466.528260px;}
.y94{bottom:467.291250px;}
.y106{bottom:467.292375px;}
.y1aa{bottom:467.292600px;}
.yb2{bottom:467.295375px;}
.yd1{bottom:467.299650px;}
.y60{bottom:467.307900px;}
.y13c{bottom:467.315895px;}
.y19{bottom:473.687565px;}
.y1a9{bottom:480.813795px;}
.y16a{bottom:484.556160px;}
.y93{bottom:485.319585px;}
.y105{bottom:485.320275px;}
.yb1{bottom:485.323275px;}
.yd0{bottom:485.327535px;}
.y5f{bottom:485.335800px;}
.y13b{bottom:485.343795px;}
.y1a8{bottom:494.334990px;}
.y18{bottom:496.217790px;}
.y169{bottom:502.584060px;}
.y104{bottom:503.262915px;}
.yb0{bottom:503.265915px;}
.ycf{bottom:503.270175px;}
.y5e{bottom:503.278425px;}
.y13a{bottom:503.286435px;}
.y1a7{bottom:507.770685px;}
.y17{bottom:514.157970px;}
.y168{bottom:520.526700px;}
.y103{bottom:521.291250px;}
.y1a6{bottom:521.291880px;}
.yaf{bottom:521.293815px;}
.yce{bottom:521.298075px;}
.y92{bottom:521.304885px;}
.y5d{bottom:521.306325px;}
.y139{bottom:521.314320px;}
.y16{bottom:532.188150px;}
.y1a5{bottom:534.813075px;}
.y167{bottom:538.554600px;}
.yae{bottom:539.321700px;}
.ycd{bottom:539.325975px;}
.y91{bottom:539.332785px;}
.y5c{bottom:539.334225px;}
.y138{bottom:539.342220px;}
.y1a4{bottom:548.334255px;}
.y15{bottom:550.218330px;}
.y166{bottom:556.582485px;}
.y102{bottom:557.263785px;}
.yad{bottom:557.264340px;}
.ycc{bottom:557.268615px;}
.y90{bottom:557.275425px;}
.y5b{bottom:557.276865px;}
.y137{bottom:557.284860px;}
.y1a3{bottom:561.769965px;}
.y14{bottom:568.158510px;}
.y165{bottom:574.525815px;}
.y1a2{bottom:575.291100px;}
.y101{bottom:575.291685px;}
.yac{bottom:575.292240px;}
.ycb{bottom:575.296500px;}
.y8f{bottom:575.303325px;}
.y5a{bottom:575.304750px;}
.y136{bottom:575.312760px;}
.y13{bottom:586.188690px;}
.y100{bottom:593.319585px;}
.yab{bottom:593.320140px;}
.yca{bottom:593.324400px;}
.y8e{bottom:593.331225px;}
.y59{bottom:593.332650px;}
.y135{bottom:593.340645px;}
.y12{bottom:608.718915px;}
.yaa{bottom:611.262765px;}
.yc9{bottom:611.267040px;}
.y8d{bottom:611.273850px;}
.y58{bottom:611.275290px;}
.y134{bottom:611.283285px;}
.y1a1{bottom:618.491850px;}
.y11{bottom:626.659095px;}
.yc8{bottom:629.294940px;}
.y8c{bottom:629.301750px;}
.y57{bottom:629.303190px;}
.y133{bottom:629.311185px;}
.y164{bottom:633.458085px;}
.y163{bottom:638.135235px;}
.y10{bottom:644.689275px;}
.y1a0{bottom:645.534240px;}
.yfd{bottom:646.979235px;}
.yc7{bottom:647.322825px;}
.y8b{bottom:647.329650px;}
.y56{bottom:647.331075px;}
.y132{bottom:647.339085px;}
.yfc{bottom:651.656565px;}
.y162{bottom:653.189475px;}
.y19f{bottom:658.969935px;}
.y19d{bottom:658.970070px;}
.yf{bottom:662.719455px;}
.y19e{bottom:663.987165px;}
.y8a{bottom:665.272290px;}
.y55{bottom:665.273715px;}
.y131{bottom:665.281725px;}
.yfb{bottom:666.711075px;}
.y19a{bottom:672.491220px;}
.y19c{bottom:672.491265px;}
.y161{bottom:674.194005px;}
.y19b{bottom:677.508450px;}
.ye{bottom:680.659635px;}
.y89{bottom:683.300175px;}
.y54{bottom:683.301615px;}
.y130{bottom:683.309610px;}
.y199{bottom:686.012415px;}
.y197{bottom:686.012505px;}
.yfa{bottom:687.715605px;}
.y198{bottom:691.029735px;}
.yfe{bottom:694.686450px;}
.y160{bottom:695.198550px;}
.y196{bottom:699.533700px;}
.y88{bottom:701.328075px;}
.y53{bottom:701.329515px;}
.y12f{bottom:701.337510px;}
.yd{bottom:703.189860px;}
.y195{bottom:704.466015px;}
.yf9{bottom:708.720150px;}
.y194{bottom:712.970130px;}
.y15f{bottom:716.203080px;}
.y87{bottom:719.270715px;}
.y52{bottom:719.272155px;}
.y12e{bottom:719.280150px;}
.yc{bottom:721.130039px;}
.yf8{bottom:722.241585px;}
.y1dd{bottom:732.784875px;}
.y15e{bottom:737.207625px;}
.y86{bottom:737.298615px;}
.y51{bottom:737.300040px;}
.y12d{bottom:737.308050px;}
.yb{bottom:739.160220px;}
.y193{bottom:740.012505px;}
.yf7{bottom:743.246115px;}
.y1dc{bottom:746.306070px;}
.y192{bottom:753.533700px;}
.y85{bottom:755.326500px;}
.y50{bottom:755.327940px;}
.y12c{bottom:755.335935px;}
.ya{bottom:757.190400px;}
.y15d{bottom:758.212155px;}
.y1db{bottom:759.827265px;}
.yf6{bottom:764.250645px;}
.y191{bottom:766.969800px;}
.y1da{bottom:773.264085px;}
.y84{bottom:773.269140px;}
.y4f{bottom:773.270580px;}
.y12b{bottom:773.278575px;}
.y15c{bottom:779.216685px;}
.y9{bottom:784.147800px;}
.yf5{bottom:785.255190px;}
.y1d9{bottom:786.785280px;}
.y83{bottom:791.297040px;}
.y4e{bottom:791.298480px;}
.y12a{bottom:791.306475px;}
.y15b{bottom:800.221230px;}
.y1d8{bottom:800.306475px;}
.y190{bottom:805.664925px;}
.yf4{bottom:806.259720px;}
.y82{bottom:809.324940px;}
.y4d{bottom:809.326365px;}
.y129{bottom:809.334375px;}
.y1d7{bottom:813.827670px;}
.y18f{bottom:819.186120px;}
.y15a{bottom:821.225760px;}
.yf3{bottom:827.264265px;}
.y1d6{bottom:827.264490px;}
.y81{bottom:827.267580px;}
.y4c{bottom:827.269005px;}
.y128{bottom:827.277015px;}
.y1d5{bottom:840.785685px;}
.y7{bottom:841.889550px;}
.y159{bottom:842.230305px;}
.y80{bottom:845.295465px;}
.y4b{bottom:845.296905px;}
.y127{bottom:845.304900px;}
.yf2{bottom:848.183595px;}
.y18e{bottom:848.864355px;}
.y8{bottom:849.288000px;}
.y1d4{bottom:854.306880px;}
.y158{bottom:855.751725px;}
.y18d{bottom:862.385550px;}
.y5{bottom:862.894200px;}
.y7f{bottom:863.323365px;}
.y4a{bottom:863.324805px;}
.y126{bottom:863.332800px;}
.y1d3{bottom:867.828060px;}
.yf1{bottom:869.188140px;}
.y6{bottom:870.292650px;}
.y18c{bottom:875.906745px;}
.y157{bottom:876.756270px;}
.y1d2{bottom:881.264880px;}
.y7e{bottom:881.266005px;}
.y49{bottom:881.267430px;}
.y125{bottom:881.275440px;}
.y18b{bottom:889.427940px;}
.y156{bottom:890.192505px;}
.yf0{bottom:890.192670px;}
.y1d1{bottom:894.786075px;}
.y4{bottom:898.955675px;}
.y7d{bottom:899.293905px;}
.y48{bottom:899.295330px;}
.y124{bottom:899.303340px;}
.y1d0{bottom:908.307270px;}
.y155{bottom:911.197035px;}
.yef{bottom:911.197200px;}
.y7c{bottom:917.321790px;}
.y47{bottom:917.323230px;}
.y123{bottom:917.331225px;}
.y18a{bottom:919.106160px;}
.y1cf{bottom:921.828465px;}
.y154{bottom:932.201565px;}
.yee{bottom:932.201745px;}
.y189{bottom:932.627355px;}
.y1ce{bottom:935.264160px;}
.y7b{bottom:935.264430px;}
.y46{bottom:935.265870px;}
.y122{bottom:935.273865px;}
.y3{bottom:937.907837px;}
.y188{bottom:946.063050px;}
.y1cd{bottom:948.785355px;}
.y153{bottom:953.206110px;}
.yed{bottom:953.206275px;}
.y7a{bottom:953.292330px;}
.y45{bottom:953.293770px;}
.y121{bottom:953.301765px;}
.y187{bottom:959.584245px;}
.y1cc{bottom:962.306550px;}
.y79{bottom:971.320230px;}
.y44{bottom:971.321655px;}
.y120{bottom:971.329665px;}
.y186{bottom:973.105440px;}
.y152{bottom:974.210640px;}
.yec{bottom:974.210820px;}
.y1cb{bottom:975.827745px;}
.y2{bottom:976.932000px;}
.y185{bottom:986.626635px;}
.y78{bottom:989.262855px;}
.y1ca{bottom:989.263440px;}
.y43{bottom:989.264295px;}
.y11f{bottom:989.272290px;}
.yea{bottom:993.939600px;}
.yeb{bottom:999.297270px;}
.y1c9{bottom:1002.784635px;}
.y77{bottom:1007.290755px;}
.y42{bottom:1007.292195px;}
.y11e{bottom:1007.300190px;}
.ye9{bottom:1007.461035px;}
.y1c8{bottom:1016.305830px;}
.y184{bottom:1016.305995px;}
.y76{bottom:1025.318655px;}
.y41{bottom:1025.320095px;}
.y11d{bottom:1025.328090px;}
.ye8{bottom:1027.189635px;}
.y1c7{bottom:1029.827025px;}
.y183{bottom:1029.827190px;}
.y1{bottom:1033.908300px;}
.y75{bottom:1043.261295px;}
.y40{bottom:1043.262720px;}
.y182{bottom:1043.262885px;}
.y11c{bottom:1043.270730px;}
.ye7{bottom:1043.687985px;}
.y3f{bottom:1112.827987px;}
.yff{bottom:1127.789820px;}
.y1de{bottom:1127.791788px;}
.y3e{bottom:1127.791800px;}
.ya9{bottom:1127.791815px;}
.h11{height:20.185549px;}
.ha{height:21.626539px;}
.h10{height:23.068395px;}
.hb{height:30.281567px;}
.h5{height:31.721260px;}
.h9{height:32.444567px;}
.hd{height:34.607567px;}
.hf{height:38.934000px;}
.he{height:39.799633px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:43.939800px;}
.h4{height:47.586433px;}
.h2{height:55.458000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x12{left:89.036250px;}
.x1{left:91.077150px;}
.xf{left:94.818900px;}
.x14{left:97.028520px;}
.x1b{left:99.412260px;}
.x24{left:107.574690px;}
.x3{left:187.001550px;}
.x4{left:204.774750px;}
.xe{left:214.639350px;}
.x18{left:252.736950px;}
.x13{left:270.510150px;}
.x5{left:287.688150px;}
.x6{left:293.300700px;}
.x19{left:316.771665px;}
.x15{left:349.001535px;}
.x1a{left:352.403085px;}
.x16{left:390.330600px;}
.x7{left:394.922700px;}
.x8{left:400.535400px;}
.x10{left:457.077854px;}
.x1c{left:461.083335px;}
.x17{left:466.100700px;}
.x11{left:469.028832px;}
.x23{left:479.621805px;}
.x9{left:503.688150px;}
.xa{left:516.954300px;}
.x1d{left:575.376300px;}
.x1e{left:579.373035px;}
.xb{left:593.914800px;}
.xc{left:599.527350px;}
.x21{left:679.889550px;}
.x22{left:683.971485px;}
.xd{left:698.768400px;}
.x1f{left:764.418735px;}
.x20{left:768.415470px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls33{letter-spacing:-0.719990pt;}
.ls2{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.051986pt;}
.ls31{letter-spacing:0.052042pt;}
.ls1c{letter-spacing:0.093899pt;}
.ls3{letter-spacing:0.104545pt;}
.ls20{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.156798pt;}
.ls8{letter-spacing:0.172480pt;}
.ls4{letter-spacing:0.177681pt;}
.ls7{letter-spacing:0.177709pt;}
.ls0{letter-spacing:0.197335pt;}
.ls19{letter-spacing:0.423356pt;}
.ls1b{letter-spacing:0.475627pt;}
.ls28{letter-spacing:0.483994pt;}
.ls2f{letter-spacing:0.499993pt;}
.ls15{letter-spacing:0.506981pt;}
.ls2a{letter-spacing:0.511993pt;}
.ls2e{letter-spacing:0.515993pt;}
.ls6{letter-spacing:0.522661pt;}
.ls27{letter-spacing:0.523993pt;}
.lsd{letter-spacing:0.527888pt;}
.ls29{letter-spacing:0.527993pt;}
.ls14{letter-spacing:0.533115pt;}
.ls2c{letter-spacing:0.535993pt;}
.ls34{letter-spacing:0.539993pt;}
.ls11{letter-spacing:0.543568pt;}
.ls2d{letter-spacing:0.547993pt;}
.lse{letter-spacing:0.548794pt;}
.ls12{letter-spacing:0.554021pt;}
.ls5{letter-spacing:0.559248pt;}
.ls35{letter-spacing:0.563992pt;}
.ls10{letter-spacing:0.564474pt;}
.ls9{letter-spacing:0.569701pt;}
.lsc{letter-spacing:0.574927pt;}
.ls37{letter-spacing:0.575992pt;}
.lsb{letter-spacing:0.580154pt;}
.lsa{letter-spacing:0.590612pt;}
.lsf{letter-spacing:0.595834pt;}
.ls36{letter-spacing:0.688000pt;}
.ls21{letter-spacing:1.008736pt;}
.ls1d{letter-spacing:8.174832pt;}
.ls25{letter-spacing:8.294270pt;}
.ls24{letter-spacing:8.477765pt;}
.ls1a{letter-spacing:10.918411pt;}
.ls26{letter-spacing:11.033381pt;}
.ls2b{letter-spacing:12.003855pt;}
.ls1e{letter-spacing:12.710245pt;}
.ls1f{letter-spacing:13.013179pt;}
.ls17{letter-spacing:13.777353pt;}
.ls13{letter-spacing:15.099678pt;}
.ls32{letter-spacing:16.458027pt;}
.ls18{letter-spacing:21.512740pt;}
.ls16{letter-spacing:21.904736pt;}
.ls23{letter-spacing:25.192276pt;}
.ls22{letter-spacing:27.309023pt;}
.ws78{word-spacing:-21.957003pt;}
.ws88{word-spacing:-21.565007pt;}
.ws19b{word-spacing:-16.512960pt;}
.ws80{word-spacing:-13.829619pt;}
.ws104{word-spacing:-11.085647pt;}
.ws3{word-spacing:-0.128001pt;}
.ws1a{word-spacing:-0.054933pt;}
.ws23{word-spacing:-0.052266pt;}
.wsea{word-spacing:-0.048000pt;}
.ws40{word-spacing:-0.042666pt;}
.ws31{word-spacing:-0.039999pt;}
.ws3a{word-spacing:-0.037333pt;}
.ws41{word-spacing:0.000000pt;}
.ws154{word-spacing:8.217498pt;}
.wsec{word-spacing:8.520427pt;}
.ws1b5{word-spacing:9.607872pt;}
.ws1b4{word-spacing:9.615871pt;}
.ws182{word-spacing:9.715870pt;}
.ws183{word-spacing:9.735870pt;}
.ws184{word-spacing:9.743870pt;}
.ws1b6{word-spacing:9.855868pt;}
.wse5{word-spacing:9.914885pt;}
.wsbb{word-spacing:10.134403pt;}
.ws1b8{word-spacing:10.187864pt;}
.ws197{word-spacing:10.195864pt;}
.ws198{word-spacing:10.387862pt;}
.ws196{word-spacing:10.431861pt;}
.ws30{word-spacing:10.563859pt;}
.ws3b{word-spacing:10.953444pt;}
.ws38{word-spacing:11.016909pt;}
.ws3d{word-spacing:11.043042pt;}
.ws36{word-spacing:11.065442pt;}
.ws192{word-spacing:11.127852pt;}
.ws3c{word-spacing:11.136374pt;}
.ws189{word-spacing:11.183850pt;}
.ws1b7{word-spacing:11.223878pt;}
.ws39{word-spacing:11.281972pt;}
.ws190{word-spacing:11.295849pt;}
.wsfe{word-spacing:11.323038pt;}
.ws18f{word-spacing:11.343848pt;}
.ws191{word-spacing:11.391848pt;}
.ws187{word-spacing:11.403848pt;}
.ws186{word-spacing:11.439848pt;}
.ws193{word-spacing:11.455847pt;}
.ws37{word-spacing:11.457436pt;}
.ws188{word-spacing:11.491847pt;}
.ws194{word-spacing:11.503847pt;}
.ws1c6{word-spacing:11.687845pt;}
.ws1bf{word-spacing:11.703844pt;}
.ws1a7{word-spacing:11.743844pt;}
.ws1bd{word-spacing:11.747844pt;}
.ws1a6{word-spacing:11.755843pt;}
.ws1c8{word-spacing:11.759843pt;}
.ws1ac{word-spacing:11.763844pt;}
.ws1b0{word-spacing:11.767843pt;}
.ws1c1{word-spacing:11.771843pt;}
.ws1a8{word-spacing:11.775843pt;}
.ws1c4{word-spacing:11.779843pt;}
.ws1ab{word-spacing:11.783843pt;}
.ws1c0{word-spacing:11.791842pt;}
.ws1af{word-spacing:11.799843pt;}
.ws1c2{word-spacing:11.803843pt;}
.ws163{word-spacing:11.806919pt;}
.ws1b1{word-spacing:11.815842pt;}
.ws1be{word-spacing:11.831842pt;}
.ws1c7{word-spacing:11.835842pt;}
.ws181{word-spacing:11.843842pt;}
.ws1a4{word-spacing:11.851842pt;}
.ws35{word-spacing:11.859842pt;}
.ws1aa{word-spacing:11.863842pt;}
.ws1c5{word-spacing:11.867795pt;}
.ws1b2{word-spacing:11.875841pt;}
.ws18c{word-spacing:11.883842pt;}
.ws19c{word-spacing:11.887842pt;}
.ws1b3{word-spacing:11.899841pt;}
.ws1ad{word-spacing:11.907842pt;}
.ws18e{word-spacing:11.911841pt;}
.ws1ae{word-spacing:11.923841pt;}
.ws19a{word-spacing:11.939841pt;}
.ws180{word-spacing:11.943841pt;}
.ws185{word-spacing:11.951840pt;}
.ws18b{word-spacing:11.971840pt;}
.ws18a{word-spacing:11.995840pt;}
.ws195{word-spacing:12.003840pt;}
.ws32{word-spacing:12.011840pt;}
.ws17e{word-spacing:12.015839pt;}
.ws1a9{word-spacing:12.027840pt;}
.ws1c3{word-spacing:12.035839pt;}
.ws1a5{word-spacing:12.043840pt;}
.ws33{word-spacing:12.055839pt;}
.ws19d{word-spacing:12.067839pt;}
.ws1a1{word-spacing:12.071839pt;}
.ws1a2{word-spacing:12.095838pt;}
.ws19f{word-spacing:12.103839pt;}
.ws1a3{word-spacing:12.107839pt;}
.wse2{word-spacing:12.110063pt;}
.ws18d{word-spacing:12.127839pt;}
.ws17f{word-spacing:12.147838pt;}
.ws17d{word-spacing:12.151863pt;}
.ws1a0{word-spacing:12.155838pt;}
.ws34{word-spacing:12.163838pt;}
.ws15f{word-spacing:12.181181pt;}
.ws3e{word-spacing:12.202514pt;}
.wsaa{word-spacing:12.202516pt;}
.ws15b{word-spacing:12.223847pt;}
.ws19e{word-spacing:12.279836pt;}
.wseb{word-spacing:12.309179pt;}
.ws15a{word-spacing:12.313447pt;}
.ws159{word-spacing:12.330513pt;}
.ws157{word-spacing:12.334780pt;}
.ws15d{word-spacing:12.339046pt;}
.ws199{word-spacing:12.339835pt;}
.wsf1{word-spacing:12.356113pt;}
.ws153{word-spacing:12.368936pt;}
.wsed{word-spacing:12.373179pt;}
.wsf8{word-spacing:12.381712pt;}
.wsf0{word-spacing:12.390245pt;}
.wsfb{word-spacing:12.394512pt;}
.wsfa{word-spacing:12.403056pt;}
.wsef{word-spacing:12.424378pt;}
.ws160{word-spacing:12.432911pt;}
.wsf4{word-spacing:12.445696pt;}
.wsfd{word-spacing:12.445712pt;}
.wsf5{word-spacing:12.449958pt;}
.wsee{word-spacing:12.454244pt;}
.ws15e{word-spacing:12.462778pt;}
.ws100{word-spacing:12.471310pt;}
.wsfc{word-spacing:12.471339pt;}
.ws156{word-spacing:12.475577pt;}
.ws3f{word-spacing:12.496910pt;}
.wsf2{word-spacing:12.599309pt;}
.wsf6{word-spacing:12.612109pt;}
.ws155{word-spacing:12.633413pt;}
.wsff{word-spacing:12.650509pt;}
.ws15c{word-spacing:12.654776pt;}
.wsf3{word-spacing:12.659005pt;}
.wsab{word-spacing:12.667575pt;}
.wsf7{word-spacing:12.710228pt;}
.ws158{word-spacing:12.855306pt;}
.wsf9{word-spacing:12.872373pt;}
.ws81{word-spacing:12.883602pt;}
.ws73{word-spacing:12.920188pt;}
.wsda{word-spacing:13.087439pt;}
.ws74{word-spacing:13.150160pt;}
.ws7f{word-spacing:13.197199pt;}
.ws83{word-spacing:13.275598pt;}
.wscc{word-spacing:13.348770pt;}
.wsc7{word-spacing:13.667594pt;}
.wsd7{word-spacing:13.688500pt;}
.wsd9{word-spacing:13.918471pt;}
.ws51{word-spacing:13.923697pt;}
.wsb4{word-spacing:13.960285pt;}
.wsb1{word-spacing:14.132762pt;}
.ws150{word-spacing:14.198400pt;}
.ws75{word-spacing:14.211161pt;}
.wse8{word-spacing:14.280000pt;}
.wse9{word-spacing:14.294400pt;}
.ws151{word-spacing:14.376000pt;}
.wsd3{word-spacing:14.435907pt;}
.wse6{word-spacing:14.482972pt;}
.wsba{word-spacing:14.514306pt;}
.ws152{word-spacing:14.611200pt;}
.wsb2{word-spacing:14.786089pt;}
.ws9b{word-spacing:14.813387pt;}
.ws4b{word-spacing:14.833128pt;}
.ws103{word-spacing:14.984700pt;}
.wsbc{word-spacing:14.999844pt;}
.ws170{word-spacing:15.000380pt;}
.ws1bb{word-spacing:15.087798pt;}
.ws1ba{word-spacing:15.155798pt;}
.wse7{word-spacing:15.303523pt;}
.ws90{word-spacing:15.397602pt;}
.ws1bc{word-spacing:15.403795pt;}
.ws53{word-spacing:15.423736pt;}
.ws28{word-spacing:15.428963pt;}
.wsb7{word-spacing:15.434189pt;}
.wscb{word-spacing:15.465548pt;}
.ws17c{word-spacing:15.523042pt;}
.ws125{word-spacing:15.543948pt;}
.ws79{word-spacing:15.590987pt;}
.wsc2{word-spacing:15.653707pt;}
.ws97{word-spacing:15.690294pt;}
.wsaf{word-spacing:15.711200pt;}
.wsa{word-spacing:15.712157pt;}
.ws135{word-spacing:15.732106pt;}
.ws10e{word-spacing:15.758239pt;}
.ws149{word-spacing:15.768693pt;}
.ws13a{word-spacing:15.779145pt;}
.wsae{word-spacing:15.805278pt;}
.ws10{word-spacing:15.813491pt;}
.ws6f{word-spacing:15.831411pt;}
.ws14{word-spacing:15.834825pt;}
.ws47{word-spacing:15.862771pt;}
.ws19{word-spacing:15.882825pt;}
.ws4e{word-spacing:15.904584pt;}
.ws10d{word-spacing:15.909810pt;}
.ws166{word-spacing:15.920265pt;}
.ws8b{word-spacing:15.935945pt;}
.wsb{word-spacing:15.978826pt;}
.wsb5{word-spacing:15.988210pt;}
.wsc{word-spacing:15.994827pt;}
.ws11{word-spacing:16.016160pt;}
.ws18{word-spacing:16.026827pt;}
.ws16{word-spacing:16.101494pt;}
.ws94{word-spacing:16.108423pt;}
.ws13{word-spacing:16.122828pt;}
.ws15{word-spacing:16.128161pt;}
.wse{word-spacing:16.160162pt;}
.wsd{word-spacing:16.165495pt;}
.ws10a{word-spacing:16.165915pt;}
.wsf{word-spacing:16.176162pt;}
.ws175{word-spacing:16.223407pt;}
.ws12{word-spacing:16.266829pt;}
.ws60{word-spacing:16.327940pt;}
.ws17{word-spacing:16.373497pt;}
.ws169{word-spacing:16.380206pt;}
.wsd4{word-spacing:16.432472pt;}
.ws7b{word-spacing:16.479511pt;}
.ws17a{word-spacing:16.516098pt;}
.ws17b{word-spacing:16.521325pt;}
.ws9{word-spacing:16.533499pt;}
.ws1b9{word-spacing:16.555779pt;}
.ws11a{word-spacing:16.641536pt;}
.ws2d{word-spacing:16.662443pt;}
.ws2e{word-spacing:16.672897pt;}
.ws142{word-spacing:16.714709pt;}
.ws105{word-spacing:16.766975pt;}
.ws84{word-spacing:16.824468pt;}
.ws46{word-spacing:16.934227pt;}
.ws134{word-spacing:16.939454pt;}
.ws124{word-spacing:17.017854pt;}
.wsd6{word-spacing:17.101479pt;}
.ws16b{word-spacing:17.268730pt;}
.ws139{word-spacing:17.279184pt;}
.ws14a{word-spacing:17.294863pt;}
.wsd5{word-spacing:17.320996pt;}
.ws14f{word-spacing:17.352356pt;}
.ws7{word-spacing:17.418292pt;}
.ws4{word-spacing:17.441759pt;}
.ws6{word-spacing:17.494559pt;}
.ws127{word-spacing:17.545741pt;}
.ws8{word-spacing:17.570826pt;}
.ws5{word-spacing:17.576693pt;}
.ws5f{word-spacing:17.598008pt;}
.ws14b{word-spacing:17.618914pt;}
.ws117{word-spacing:17.624141pt;}
.ws8e{word-spacing:17.629366pt;}
.ws10c{word-spacing:17.676407pt;}
.ws64{word-spacing:17.681632pt;}
.ws7d{word-spacing:17.728673pt;}
.ws1c{word-spacing:17.827978pt;}
.ws8f{word-spacing:17.848885pt;}
.ws1b{word-spacing:18.021363pt;}
.wsc5{word-spacing:18.073628pt;}
.ws76{word-spacing:18.078855pt;}
.wsc0{word-spacing:18.084082pt;}
.ws67{word-spacing:18.225201pt;}
.wse0{word-spacing:18.261786pt;}
.wsad{word-spacing:18.267014pt;}
.ws98{word-spacing:18.282693pt;}
.wsd0{word-spacing:18.308826pt;}
.ws4c{word-spacing:18.439491pt;}
.ws85{word-spacing:18.465625pt;}
.wsa8{word-spacing:18.528344pt;}
.ws109{word-spacing:18.559704pt;}
.ws5a{word-spacing:18.632877pt;}
.ws59{word-spacing:18.831487pt;}
.ws119{word-spacing:18.862847pt;}
.ws5d{word-spacing:19.024873pt;}
.ws48{word-spacing:19.108499pt;}
.ws129{word-spacing:19.134632pt;}
.ws147{word-spacing:19.385508pt;}
.ws111{word-spacing:19.395963pt;}
.ws5e{word-spacing:19.432548pt;}
.ws61{word-spacing:19.490041pt;}
.ws49{word-spacing:19.542307pt;}
.ws12b{word-spacing:19.605027pt;}
.ws43{word-spacing:19.688653pt;}
.ws172{word-spacing:19.699105pt;}
.ws6c{word-spacing:19.735692pt;}
.ws138{word-spacing:19.756598pt;}
.ws57{word-spacing:19.866358pt;}
.wsdb{word-spacing:19.897717pt;}
.ws13e{word-spacing:19.913397pt;}
.wsa3{word-spacing:19.965663pt;}
.wsac{word-spacing:19.997023pt;}
.ws162{word-spacing:20.038835pt;}
.ws141{word-spacing:20.232221pt;}
.wsdd{word-spacing:20.268806pt;}
.ws68{word-spacing:20.341980pt;}
.ws1d{word-spacing:20.362886pt;}
.ws106{word-spacing:20.383792pt;}
.wsa2{word-spacing:20.399471pt;}
.wsce{word-spacing:20.441285pt;}
.ws2f{word-spacing:20.446511pt;}
.ws11f{word-spacing:20.451737pt;}
.wsc3{word-spacing:20.509231pt;}
.ws63{word-spacing:20.571951pt;}
.wsd2{word-spacing:20.608536pt;}
.ws14c{word-spacing:20.613762pt;}
.wsa6{word-spacing:20.645123pt;}
.ws16a{word-spacing:20.660802pt;}
.ws143{word-spacing:20.666029pt;}
.ws6e{word-spacing:20.681709pt;}
.ws21{word-spacing:20.702615pt;}
.ws9c{word-spacing:20.838508pt;}
.ws137{word-spacing:20.875093pt;}
.ws176{word-spacing:20.927359pt;}
.ws77{word-spacing:20.937813pt;}
.wsa0{word-spacing:20.948266pt;}
.wsb8{word-spacing:21.021439pt;}
.ws0{word-spacing:21.021867pt;}
.ws12d{word-spacing:21.031892pt;}
.ws1e{word-spacing:21.063252pt;}
.ws71{word-spacing:21.094612pt;}
.ws11c{word-spacing:21.251410pt;}
.ws165{word-spacing:21.303676pt;}
.ws177{word-spacing:21.335036pt;}
.ws4d{word-spacing:21.350715pt;}
.ws128{word-spacing:21.361169pt;}
.ws4a{word-spacing:21.413435pt;}
.ws16e{word-spacing:21.444794pt;}
.ws9e{word-spacing:21.517968pt;}
.ws136{word-spacing:21.549326pt;}
.wse1{word-spacing:21.575459pt;}
.wscd{word-spacing:21.732258pt;}
.ws145{word-spacing:21.753165pt;}
.ws96{word-spacing:21.758391pt;}
.ws12f{word-spacing:21.815884pt;}
.ws12e{word-spacing:21.831564pt;}
.wsa4{word-spacing:21.847244pt;}
.ws5c{word-spacing:21.852471pt;}
.ws121{word-spacing:21.873377pt;}
.wsc9{word-spacing:21.894283pt;}
.ws25{word-spacing:21.941323pt;}
.ws16f{word-spacing:21.951776pt;}
.ws8a{word-spacing:21.998816pt;}
.ws178{word-spacing:22.150387pt;}
.ws56{word-spacing:22.244466pt;}
.ws86{word-spacing:22.322865pt;}
.wsa1{word-spacing:22.443077pt;}
.ws65{word-spacing:22.568516pt;}
.ws7c{word-spacing:22.573743pt;}
.ws93{word-spacing:22.720089pt;}
.ws161{word-spacing:22.725314pt;}
.ws2a{word-spacing:22.955286pt;}
.wsb6{word-spacing:22.991872pt;}
.ws89{word-spacing:23.112085pt;}
.ws140{word-spacing:23.148670pt;}
.ws91{word-spacing:23.362962pt;}
.ws168{word-spacing:23.472721pt;}
.wscf{word-spacing:23.598159pt;}
.ws148{word-spacing:23.666105pt;}
.ws110{word-spacing:23.754958pt;}
.ws87{word-spacing:23.875170pt;}
.ws114{word-spacing:24.011061pt;}
.ws146{word-spacing:24.026742pt;}
.ws10f{word-spacing:24.058101pt;}
.ws107{word-spacing:24.079008pt;}
.wsd1{word-spacing:24.110367pt;}
.ws102{word-spacing:24.136501pt;}
.ws108{word-spacing:24.152181pt;}
.ws26{word-spacing:24.272392pt;}
.ws113{word-spacing:24.382151pt;}
.ws99{word-spacing:24.659161pt;}
.ws144{word-spacing:24.685294pt;}
.wsa9{word-spacing:24.784601pt;}
.ws50{word-spacing:24.795053pt;}
.ws174{word-spacing:24.836867pt;}
.ws54{word-spacing:24.842093pt;}
.ws14d{word-spacing:24.878679pt;}
.ws8c{word-spacing:24.925720pt;}
.ws14e{word-spacing:24.941399pt;}
.ws45{word-spacing:25.113877pt;}
.ws10b{word-spacing:25.181823pt;}
.ws133{word-spacing:25.265448pt;}
.wsc8{word-spacing:25.380435pt;}
.ws118{word-spacing:25.417020pt;}
.wsb0{word-spacing:25.594726pt;}
.wsa5{word-spacing:25.620859pt;}
.ws12a{word-spacing:25.652218pt;}
.wsbd{word-spacing:25.741071pt;}
.ws92{word-spacing:25.746298pt;}
.ws4f{word-spacing:25.803791pt;}
.ws8d{word-spacing:25.809016pt;}
.wsdf{word-spacing:25.871736pt;}
.wsc4{word-spacing:25.991949pt;}
.wsb3{word-spacing:26.007628pt;}
.ws9f{word-spacing:26.018081pt;}
.wsc1{word-spacing:26.086028pt;}
.ws11b{word-spacing:26.195787pt;}
.ws116{word-spacing:26.305544pt;}
.ws13b{word-spacing:26.315998pt;}
.ws42{word-spacing:26.336904pt;}
.ws1f{word-spacing:26.389171pt;}
.ws13c{word-spacing:26.451891pt;}
.ws6a{word-spacing:26.613916pt;}
.ws164{word-spacing:26.634822pt;}
.ws11d{word-spacing:26.775940pt;}
.ws131{word-spacing:26.791619pt;}
.ws115{word-spacing:26.817752pt;}
.ws132{word-spacing:26.885700pt;}
.wsbf{word-spacing:26.922284pt;}
.ws112{word-spacing:27.016365pt;}
.wse3{word-spacing:27.052950pt;}
.ws2c{word-spacing:27.188843pt;}
.ws66{word-spacing:27.204522pt;}
.ws20{word-spacing:27.214976pt;}
.wsb9{word-spacing:27.272468pt;}
.ws95{word-spacing:27.298601pt;}
.ws27{word-spacing:27.340414pt;}
.wsdc{word-spacing:27.528573pt;}
.ws171{word-spacing:27.559932pt;}
.ws62{word-spacing:27.654010pt;}
.ws101{word-spacing:27.669692pt;}
.wsde{word-spacing:27.716730pt;}
.wsd8{word-spacing:27.826490pt;}
.ws13f{word-spacing:27.988514pt;}
.ws12c{word-spacing:28.176671pt;}
.wsc6{word-spacing:28.343924pt;}
.ws22{word-spacing:28.505949pt;}
.ws24{word-spacing:28.568668pt;}
.ws70{word-spacing:28.715015pt;}
.ws126{word-spacing:28.829998pt;}
.ws69{word-spacing:28.866585pt;}
.ws29{word-spacing:29.284715pt;}
.ws16d{word-spacing:29.587857pt;}
.ws167{word-spacing:29.640123pt;}
.ws6d{word-spacing:29.917136pt;}
.ws123{word-spacing:29.943269pt;}
.ws179{word-spacing:30.246412pt;}
.ws44{word-spacing:30.309132pt;}
.ws16c{word-spacing:30.319583pt;}
.ws82{word-spacing:30.805660pt;}
.ws6b{word-spacing:30.884059pt;}
.ws130{word-spacing:31.260373pt;}
.wsca{word-spacing:31.328321pt;}
.ws7a{word-spacing:31.563519pt;}
.ws173{word-spacing:31.699410pt;}
.ws52{word-spacing:31.762130pt;}
.ws58{word-spacing:32.023460pt;}
.wsa7{word-spacing:32.242979pt;}
.ws120{word-spacing:32.697692pt;}
.ws2b{word-spacing:33.361473pt;}
.ws13d{word-spacing:33.570537pt;}
.wsbe{word-spacing:33.722110pt;}
.ws9a{word-spacing:34.108878pt;}
.ws7e{word-spacing:34.312717pt;}
.ws9d{word-spacing:34.913777pt;}
.ws11e{word-spacing:35.107162pt;}
.ws55{word-spacing:36.105444pt;}
.ws5b{word-spacing:37.788414pt;}
.ws2{word-spacing:38.323360pt;}
.ws1{word-spacing:38.566561pt;}
.wse4{word-spacing:39.732715pt;}
.ws72{word-spacing:42.497592pt;}
.ws122{word-spacing:42.905270pt;}
._1e{margin-left:-22.090266pt;}
._1b{margin-left:-20.917169pt;}
._1f{margin-left:-19.601641pt;}
._45{margin-left:-15.914134pt;}
._1d{margin-left:-14.894696pt;}
._1c{margin-left:-13.874807pt;}
._33{margin-left:-11.242444pt;}
._32{margin-left:-9.951473pt;}
._16{margin-left:-5.634083pt;}
._20{margin-left:-4.432458pt;}
._e{margin-left:-3.081160pt;}
._23{margin-left:-2.189951pt;}
._10{margin-left:-1.292784pt;}
._4{width:0.917343pt;}
._19{width:1.824086pt;}
._9{width:2.817145pt;}
._0{width:7.959467pt;}
._22{width:9.420579pt;}
._2d{width:11.643588pt;}
._f{width:12.555833pt;}
._15{width:14.360512pt;}
._24{width:15.883677pt;}
._5{width:16.928169pt;}
._13{width:18.444718pt;}
._6{width:19.487212pt;}
._18{width:20.643156pt;}
._7{width:21.578001pt;}
._12{width:22.560601pt;}
._c{width:23.916983pt;}
._a{width:25.396114pt;}
._14{width:26.318541pt;}
._8{width:27.659238pt;}
._1{width:29.224000pt;}
._b{width:30.293451pt;}
._1a{width:31.364759pt;}
._11{width:32.833584pt;}
._d{width:34.469515pt;}
._17{width:36.168164pt;}
._3{width:39.564965pt;}
._34{width:44.679630pt;}
._46{width:58.543219pt;}
._42{width:82.183505pt;}
._36{width:90.840469pt;}
._3b{width:111.388386pt;}
._3c{width:131.659150pt;}
._39{width:152.096234pt;}
._2e{width:171.522119pt;}
._44{width:173.113574pt;}
._43{width:174.841540pt;}
._38{width:181.087878pt;}
._37{width:183.839843pt;}
._3a{width:204.225718pt;}
._41{width:224.662796pt;}
._2c{width:264.975474pt;}
._3f{width:324.326613pt;}
._3e{width:327.432687pt;}
._3d{width:347.571937pt;}
._35{width:360.430694pt;}
._40{width:387.950367pt;}
._2f{width:462.172305pt;}
._25{width:498.690308pt;}
._2b{width:522.745457pt;}
._2a{width:535.916538pt;}
._30{width:556.746038pt;}
._28{width:592.982471pt;}
._31{width:602.330634pt;}
._29{width:651.814769pt;}
._26{width:655.326238pt;}
._27{width:663.001837pt;}
._2{width:1424.252267pt;}
._21{width:1508.183776pt;}
.fse{font-size:24.885867pt;}
.fs8{font-size:26.662400pt;}
.fsd{font-size:28.440000pt;}
.fs9{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:58.128076pt;}
.y3c{bottom:68.786590pt;}
.y181{bottom:79.370107pt;}
.y74{bottom:79.372387pt;}
.y1c6{bottom:79.372680pt;}
.yc6{bottom:79.374187pt;}
.ya8{bottom:79.376973pt;}
.y11b{bottom:79.380773pt;}
.ye6{bottom:79.387240pt;}
.y151{bottom:79.401680pt;}
.y3b{bottom:79.445105pt;}
.y3a{bottom:90.103619pt;}
.y180{bottom:91.388947pt;}
.y1c5{bottom:91.391520pt;}
.y73{bottom:95.397187pt;}
.yc5{bottom:95.398973pt;}
.ya7{bottom:95.401773pt;}
.y11a{bottom:95.405573pt;}
.ye5{bottom:95.412027pt;}
.y150{bottom:95.426480pt;}
.y39{bottom:100.762133pt;}
.y17f{bottom:103.407787pt;}
.y1c4{bottom:103.410360pt;}
.y72{bottom:111.346200pt;}
.yc4{bottom:111.347987pt;}
.ya6{bottom:111.350787pt;}
.y119{bottom:111.354573pt;}
.ye4{bottom:111.436827pt;}
.y14f{bottom:111.451280pt;}
.y17e{bottom:115.351627pt;}
.y1c3{bottom:115.354200pt;}
.y38{bottom:123.361921pt;}
.y17d{bottom:127.370467pt;}
.y71{bottom:127.370987pt;}
.yc3{bottom:127.372787pt;}
.y1c2{bottom:127.373040pt;}
.ya5{bottom:127.375573pt;}
.y118{bottom:127.379373pt;}
.ye3{bottom:127.385840pt;}
.y14e{bottom:127.400280pt;}
.y30{bottom:133.823499pt;}
.y37{bottom:135.381760pt;}
.y1c1{bottom:139.391880pt;}
.y70{bottom:143.395787pt;}
.yc2{bottom:143.397587pt;}
.ya4{bottom:143.400373pt;}
.y117{bottom:143.404173pt;}
.ye2{bottom:143.410640pt;}
.y14d{bottom:143.425080pt;}
.y36{bottom:147.401600pt;}
.y2f{bottom:149.777736pt;}
.y1c0{bottom:151.410720pt;}
.y35{bottom:151.861467pt;}
.y17c{bottom:152.013147pt;}
.y6f{bottom:159.344800pt;}
.yc1{bottom:159.346600pt;}
.ya3{bottom:159.349387pt;}
.y116{bottom:159.353187pt;}
.y34{bottom:159.423893pt;}
.ye1{bottom:159.435427pt;}
.y14c{bottom:159.449880pt;}
.y1bf{bottom:163.354560pt;}
.y17b{bottom:164.031973pt;}
.y2e{bottom:165.797306pt;}
.y33{bottom:171.363733pt;}
.y6e{bottom:175.370000pt;}
.yc0{bottom:175.371387pt;}
.y1be{bottom:175.373400pt;}
.ya2{bottom:175.374187pt;}
.y115{bottom:175.377987pt;}
.ye0{bottom:175.384440pt;}
.y14b{bottom:175.398893pt;}
.y32{bottom:175.823600pt;}
.y17a{bottom:176.050813pt;}
.y2d{bottom:181.816875pt;}
.y31{bottom:183.382667pt;}
.y1bd{bottom:187.392240pt;}
.y179{bottom:188.069653pt;}
.ybf{bottom:191.396187pt;}
.ya1{bottom:191.398973pt;}
.y114{bottom:191.402773pt;}
.ydf{bottom:191.409240pt;}
.y14a{bottom:191.423680pt;}
.y2c{bottom:197.771113pt;}
.y1bc{bottom:199.411080pt;}
.y178{bottom:200.013493pt;}
.ybe{bottom:207.345200pt;}
.ya0{bottom:207.347987pt;}
.y113{bottom:207.351787pt;}
.yde{bottom:207.434040pt;}
.y6d{bottom:207.441373pt;}
.y149{bottom:207.448480pt;}
.y1bb{bottom:211.353920pt;}
.y24{bottom:213.777616pt;}
.y2b{bottom:213.790683pt;}
.ybd{bottom:223.370000pt;}
.y1ba{bottom:223.372760pt;}
.y9f{bottom:223.372787pt;}
.y112{bottom:223.376587pt;}
.ydd{bottom:223.383053pt;}
.y6c{bottom:223.390387pt;}
.y148{bottom:223.397493pt;}
.y177{bottom:224.731173pt;}
.y23{bottom:229.797186pt;}
.y2a{bottom:229.810252pt;}
.y1b9{bottom:235.391600pt;}
.y176{bottom:236.750013pt;}
.ybc{bottom:239.395200pt;}
.y9e{bottom:239.397587pt;}
.y111{bottom:239.401387pt;}
.ydc{bottom:239.407840pt;}
.y6b{bottom:239.415173pt;}
.y147{bottom:239.422293pt;}
.y22{bottom:245.751423pt;}
.y29{bottom:245.764490pt;}
.y1b8{bottom:247.410440pt;}
.y175{bottom:248.692853pt;}
.y9d{bottom:255.346600pt;}
.y110{bottom:255.350387pt;}
.ydb{bottom:255.432640pt;}
.y6a{bottom:255.439973pt;}
.y146{bottom:255.447080pt;}
.y1b7{bottom:259.353280pt;}
.y174{bottom:260.711693pt;}
.y21{bottom:261.770993pt;}
.y28{bottom:261.784059pt;}
.y9c{bottom:271.371387pt;}
.y1b6{bottom:271.372120pt;}
.y10f{bottom:271.375187pt;}
.ybb{bottom:271.377853pt;}
.yda{bottom:271.381653pt;}
.y69{bottom:271.388987pt;}
.y145{bottom:271.396093pt;}
.y20{bottom:277.790563pt;}
.y27{bottom:277.803629pt;}
.y1b5{bottom:283.390960pt;}
.y173{bottom:285.354360pt;}
.y9b{bottom:287.396187pt;}
.y10e{bottom:287.399987pt;}
.yba{bottom:287.402653pt;}
.yd9{bottom:287.406453pt;}
.y68{bottom:287.413787pt;}
.y144{bottom:287.420893pt;}
.y1f{bottom:293.744800pt;}
.y26{bottom:293.757867pt;}
.y1b4{bottom:295.409800pt;}
.y172{bottom:297.373200pt;}
.y9a{bottom:303.345200pt;}
.y10d{bottom:303.349000pt;}
.yb9{bottom:303.351667pt;}
.yd8{bottom:303.355453pt;}
.y67{bottom:303.362787pt;}
.y143{bottom:303.369907pt;}
.y1b3{bottom:307.352640pt;}
.y1e{bottom:309.770000pt;}
.y25{bottom:309.777436pt;}
.y99{bottom:319.370000pt;}
.y1b2{bottom:319.371480pt;}
.y10c{bottom:319.373787pt;}
.yb8{bottom:319.376467pt;}
.yd7{bottom:319.380253pt;}
.y66{bottom:319.387587pt;}
.y142{bottom:319.394707pt;}
.y171{bottom:322.015867pt;}
.y1b1{bottom:331.390320pt;}
.y170{bottom:334.034707pt;}
.y98{bottom:335.395200pt;}
.y10b{bottom:335.398587pt;}
.yb7{bottom:335.401253pt;}
.yd6{bottom:335.405053pt;}
.y65{bottom:335.412387pt;}
.y141{bottom:335.419493pt;}
.y1b0{bottom:343.409160pt;}
.y16f{bottom:346.053547pt;}
.y1d{bottom:350.374907pt;}
.y10a{bottom:351.347600pt;}
.yb6{bottom:351.350267pt;}
.yd5{bottom:351.354067pt;}
.y64{bottom:351.361400pt;}
.y140{bottom:351.368507pt;}
.y1af{bottom:355.352000pt;}
.y16e{bottom:358.072387pt;}
.y1ae{bottom:367.370840pt;}
.y97{bottom:367.371387pt;}
.y109{bottom:367.372400pt;}
.yb5{bottom:367.375067pt;}
.yd4{bottom:367.378853pt;}
.y63{bottom:367.386187pt;}
.y13f{bottom:367.393307pt;}
.y1c{bottom:373.055133pt;}
.y1ad{bottom:379.389680pt;}
.y16d{bottom:382.717987pt;}
.y96{bottom:383.396187pt;}
.y108{bottom:383.397187pt;}
.yb4{bottom:383.399867pt;}
.yd3{bottom:383.403653pt;}
.y62{bottom:383.410987pt;}
.y13e{bottom:383.418107pt;}
.y1b{bottom:389.081960pt;}
.y1ac{bottom:391.408520pt;}
.y16c{bottom:398.742787pt;}
.y95{bottom:399.345200pt;}
.y107{bottom:399.346200pt;}
.yb3{bottom:399.348880pt;}
.yd2{bottom:399.352667pt;}
.y61{bottom:399.360000pt;}
.y13d{bottom:399.367107pt;}
.y1ab{bottom:403.352360pt;}
.y1a{bottom:405.028786pt;}
.y16b{bottom:414.691787pt;}
.y94{bottom:415.370000pt;}
.y106{bottom:415.371000pt;}
.y1aa{bottom:415.371200pt;}
.yb2{bottom:415.373667pt;}
.yd1{bottom:415.377467pt;}
.y60{bottom:415.384800pt;}
.y13c{bottom:415.391907pt;}
.y19{bottom:421.055613pt;}
.y1a9{bottom:427.390040pt;}
.y16a{bottom:430.716587pt;}
.y93{bottom:431.395187pt;}
.y105{bottom:431.395800pt;}
.yb1{bottom:431.398467pt;}
.yd0{bottom:431.402253pt;}
.y5f{bottom:431.409600pt;}
.y13b{bottom:431.416707pt;}
.y1a8{bottom:439.408880pt;}
.y18{bottom:441.082480pt;}
.y169{bottom:446.741387pt;}
.y104{bottom:447.344813pt;}
.yb0{bottom:447.347480pt;}
.ycf{bottom:447.351267pt;}
.y5e{bottom:447.358600pt;}
.y13a{bottom:447.365720pt;}
.y1a7{bottom:451.351720pt;}
.y17{bottom:457.029306pt;}
.y168{bottom:462.690400pt;}
.y103{bottom:463.370000pt;}
.y1a6{bottom:463.370560pt;}
.yaf{bottom:463.372280pt;}
.yce{bottom:463.376067pt;}
.y92{bottom:463.382120pt;}
.y5d{bottom:463.383400pt;}
.y139{bottom:463.390507pt;}
.y16{bottom:473.056133pt;}
.y1a5{bottom:475.389400pt;}
.y167{bottom:478.715200pt;}
.yae{bottom:479.397067pt;}
.ycd{bottom:479.400867pt;}
.y91{bottom:479.406920pt;}
.y5c{bottom:479.408200pt;}
.y138{bottom:479.415307pt;}
.y1a4{bottom:487.408227pt;}
.y15{bottom:489.082960pt;}
.y166{bottom:494.739987pt;}
.y102{bottom:495.345587pt;}
.yad{bottom:495.346080pt;}
.ycc{bottom:495.349880pt;}
.y90{bottom:495.355933pt;}
.y5b{bottom:495.357213pt;}
.y137{bottom:495.364320pt;}
.y1a3{bottom:499.351080pt;}
.y14{bottom:505.029786pt;}
.y165{bottom:510.689613pt;}
.y1a2{bottom:511.369867pt;}
.y101{bottom:511.370387pt;}
.yac{bottom:511.370880pt;}
.ycb{bottom:511.374667pt;}
.y8f{bottom:511.380733pt;}
.y5a{bottom:511.382000pt;}
.y136{bottom:511.389120pt;}
.y13{bottom:521.056613pt;}
.y100{bottom:527.395187pt;}
.yab{bottom:527.395680pt;}
.yca{bottom:527.399467pt;}
.y8e{bottom:527.405533pt;}
.y59{bottom:527.406800pt;}
.y135{bottom:527.413907pt;}
.y12{bottom:541.083480pt;}
.yaa{bottom:543.344680pt;}
.yc9{bottom:543.348480pt;}
.y8d{bottom:543.354533pt;}
.y58{bottom:543.355813pt;}
.y134{bottom:543.362920pt;}
.y1a1{bottom:549.770533pt;}
.y11{bottom:557.030306pt;}
.yc8{bottom:559.373280pt;}
.y8c{bottom:559.379333pt;}
.y57{bottom:559.380613pt;}
.y133{bottom:559.387720pt;}
.y164{bottom:563.073853pt;}
.y163{bottom:567.231320pt;}
.y10{bottom:573.057133pt;}
.y1a0{bottom:573.808213pt;}
.yfd{bottom:575.092653pt;}
.yc7{bottom:575.398067pt;}
.y8b{bottom:575.404133pt;}
.y56{bottom:575.405400pt;}
.y132{bottom:575.412520pt;}
.yfc{bottom:579.250280pt;}
.y162{bottom:580.612867pt;}
.y19f{bottom:585.751053pt;}
.y19d{bottom:585.751173pt;}
.yf{bottom:589.083960pt;}
.y19e{bottom:590.210813pt;}
.y8a{bottom:591.353147pt;}
.y55{bottom:591.354413pt;}
.y131{bottom:591.361533pt;}
.yfb{bottom:592.632067pt;}
.y19a{bottom:597.769973pt;}
.y19c{bottom:597.770013pt;}
.y161{bottom:599.283560pt;}
.y19b{bottom:602.229733pt;}
.ye{bottom:605.030786pt;}
.y89{bottom:607.377933pt;}
.y54{bottom:607.379213pt;}
.y130{bottom:607.386320pt;}
.y199{bottom:609.788813pt;}
.y197{bottom:609.788893pt;}
.yfa{bottom:611.302760pt;}
.y198{bottom:614.248653pt;}
.yfe{bottom:617.499067pt;}
.y160{bottom:617.954267pt;}
.y196{bottom:621.807733pt;}
.y88{bottom:623.402733pt;}
.y53{bottom:623.404013pt;}
.y12f{bottom:623.411120pt;}
.yd{bottom:625.057653pt;}
.y195{bottom:626.192013pt;}
.yf9{bottom:629.973467pt;}
.y194{bottom:633.751227pt;}
.y15f{bottom:636.624960pt;}
.y87{bottom:639.351747pt;}
.y52{bottom:639.353027pt;}
.y12e{bottom:639.360133pt;}
.yc{bottom:641.004479pt;}
.yf8{bottom:641.992520pt;}
.y1dd{bottom:651.364333pt;}
.y15e{bottom:655.295667pt;}
.y86{bottom:655.376547pt;}
.y51{bottom:655.377813pt;}
.y12d{bottom:655.384933pt;}
.yb{bottom:657.031306pt;}
.y193{bottom:657.788893pt;}
.yf7{bottom:660.663213pt;}
.y1dc{bottom:663.383173pt;}
.y192{bottom:669.807733pt;}
.y85{bottom:671.401333pt;}
.y50{bottom:671.402613pt;}
.y12c{bottom:671.409720pt;}
.ya{bottom:673.058133pt;}
.y15d{bottom:673.966360pt;}
.y1db{bottom:675.402013pt;}
.yf6{bottom:679.333907pt;}
.y191{bottom:681.750933pt;}
.y1da{bottom:687.345853pt;}
.y84{bottom:687.350347pt;}
.y4f{bottom:687.351627pt;}
.y12b{bottom:687.358733pt;}
.y15c{bottom:692.637053pt;}
.y9{bottom:697.020267pt;}
.yf5{bottom:698.004613pt;}
.y1d9{bottom:699.364693pt;}
.y83{bottom:703.375147pt;}
.y4e{bottom:703.376427pt;}
.y12a{bottom:703.383533pt;}
.y15b{bottom:711.307760pt;}
.y1d8{bottom:711.383533pt;}
.y190{bottom:716.146600pt;}
.yf4{bottom:716.675307pt;}
.y82{bottom:719.399947pt;}
.y4d{bottom:719.401213pt;}
.y129{bottom:719.408333pt;}
.y1d7{bottom:723.402373pt;}
.y18f{bottom:728.165440pt;}
.y15a{bottom:729.978453pt;}
.yf3{bottom:735.346013pt;}
.y1d6{bottom:735.346213pt;}
.y81{bottom:735.348960pt;}
.y4c{bottom:735.350227pt;}
.y128{bottom:735.357347pt;}
.y1d5{bottom:747.365053pt;}
.y7{bottom:748.346267pt;}
.y159{bottom:748.649160pt;}
.y80{bottom:751.373747pt;}
.y4b{bottom:751.375027pt;}
.y127{bottom:751.382133pt;}
.yf2{bottom:753.940973pt;}
.y18e{bottom:754.546093pt;}
.y8{bottom:754.922667pt;}
.y1d4{bottom:759.383893pt;}
.y158{bottom:760.668200pt;}
.y18d{bottom:766.564933pt;}
.y5{bottom:767.017067pt;}
.y7f{bottom:767.398547pt;}
.y4a{bottom:767.399827pt;}
.y126{bottom:767.406933pt;}
.y1d3{bottom:771.402720pt;}
.yf1{bottom:772.611680pt;}
.y6{bottom:773.593467pt;}
.y18c{bottom:778.583773pt;}
.y157{bottom:779.338907pt;}
.y1d2{bottom:783.346560pt;}
.y7e{bottom:783.347560pt;}
.y49{bottom:783.348827pt;}
.y125{bottom:783.355947pt;}
.y18b{bottom:790.602613pt;}
.y156{bottom:791.282227pt;}
.yf0{bottom:791.282373pt;}
.y1d1{bottom:795.365400pt;}
.y4{bottom:799.071711pt;}
.y7d{bottom:799.372360pt;}
.y48{bottom:799.373627pt;}
.y124{bottom:799.380747pt;}
.y1d0{bottom:807.384240pt;}
.y155{bottom:809.952920pt;}
.yef{bottom:809.953067pt;}
.y7c{bottom:815.397147pt;}
.y47{bottom:815.398427pt;}
.y123{bottom:815.405533pt;}
.y18a{bottom:816.983253pt;}
.y1cf{bottom:819.403080pt;}
.y154{bottom:828.623613pt;}
.yee{bottom:828.623773pt;}
.y189{bottom:829.002093pt;}
.y1ce{bottom:831.345920pt;}
.y7b{bottom:831.346160pt;}
.y46{bottom:831.347440pt;}
.y122{bottom:831.354547pt;}
.y3{bottom:833.695855pt;}
.y188{bottom:840.944933pt;}
.y1cd{bottom:843.364760pt;}
.y153{bottom:847.294320pt;}
.yed{bottom:847.294467pt;}
.y7a{bottom:847.370960pt;}
.y45{bottom:847.372240pt;}
.y121{bottom:847.379347pt;}
.y187{bottom:852.963773pt;}
.y1cc{bottom:855.383600pt;}
.y79{bottom:863.395760pt;}
.y44{bottom:863.397027pt;}
.y120{bottom:863.404147pt;}
.y186{bottom:864.982613pt;}
.y152{bottom:865.965013pt;}
.yec{bottom:865.965173pt;}
.y1cb{bottom:867.402440pt;}
.y2{bottom:868.384000pt;}
.y185{bottom:877.001453pt;}
.y78{bottom:879.344760pt;}
.y1ca{bottom:879.345280pt;}
.y43{bottom:879.346040pt;}
.y11f{bottom:879.353147pt;}
.yea{bottom:883.501867pt;}
.yeb{bottom:888.264240pt;}
.y1c9{bottom:891.364120pt;}
.y77{bottom:895.369560pt;}
.y42{bottom:895.370840pt;}
.y11e{bottom:895.377947pt;}
.ye9{bottom:895.520920pt;}
.y1c8{bottom:903.382960pt;}
.y184{bottom:903.383107pt;}
.y76{bottom:911.394360pt;}
.y41{bottom:911.395640pt;}
.y11d{bottom:911.402747pt;}
.ye8{bottom:913.057453pt;}
.y1c7{bottom:915.401800pt;}
.y183{bottom:915.401947pt;}
.y1{bottom:919.029600pt;}
.y75{bottom:927.343373pt;}
.y40{bottom:927.344640pt;}
.y182{bottom:927.344787pt;}
.y11c{bottom:927.351760pt;}
.ye7{bottom:927.722653pt;}
.y3f{bottom:989.180433pt;}
.yff{bottom:1002.479840pt;}
.y1de{bottom:1002.481590pt;}
.y3e{bottom:1002.481600pt;}
.ya9{bottom:1002.481613pt;}
.h11{height:17.942710pt;}
.ha{height:19.223590pt;}
.h10{height:20.505240pt;}
.hb{height:26.916949pt;}
.h5{height:28.196676pt;}
.h9{height:28.839615pt;}
.hd{height:30.762282pt;}
.hf{height:34.608000pt;}
.he{height:35.377451pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.057600pt;}
.h4{height:42.299051pt;}
.h2{height:49.296000pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x12{left:79.143333pt;}
.x1{left:80.957467pt;}
.xf{left:84.283467pt;}
.x14{left:86.247573pt;}
.x1b{left:88.366453pt;}
.x24{left:95.621947pt;}
.x3{left:166.223600pt;}
.x4{left:182.022000pt;}
.xe{left:190.790533pt;}
.x18{left:224.655067pt;}
.x13{left:240.453467pt;}
.x5{left:255.722800pt;}
.x6{left:260.711733pt;}
.x19{left:281.574813pt;}
.x15{left:310.223587pt;}
.x1a{left:313.247187pt;}
.x16{left:346.960533pt;}
.x7{left:351.042400pt;}
.x8{left:356.031467pt;}
.x10{left:406.291425pt;}
.x1c{left:409.851853pt;}
.x17{left:414.311733pt;}
.x11{left:416.914517pt;}
.x23{left:426.330493pt;}
.x9{left:447.722800pt;}
.xa{left:459.514933pt;}
.x1d{left:511.445600pt;}
.x1e{left:514.998253pt;}
.xb{left:527.924267pt;}
.xc{left:532.913200pt;}
.x21{left:604.346267pt;}
.x22{left:607.974653pt;}
.xd{left:621.127467pt;}
.x1f{left:679.483320pt;}
.x20{left:683.035973pt;}
}




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