
    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_6460ba9a5140b54c715053d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_e94cf728f4bd2a55d84bbb86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_2e441f8eb9a75cd688c1f7eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_822b97293a8cfeffcd35768e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_6a71641c397fa7c490e75386.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_15bc5bf23f285110c45774f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_ac66b289803dd8f30ba0a217.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_a7542f9a9eba7633110be7a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.431000;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_343857e655ead1ec48d57e4b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.845000;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_c21c3ecc2c9eb6b5944326e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.046000;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_dad97e913b9832c4ac50e908.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.779000;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_169effadf0bbd4d6d7ed71c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.741000;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_c3b91a7378506ffe29316992.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939000;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_51e055b7b97c69c25bd43db1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_0616ac2bd4e45669a813f0f6.woff2')format("woff");}.fff{font-family:fff;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_25a1a99561d6c97abcbd4ef9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.589000;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_fd3cb7144888c17e51c2c8f2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740000;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_b5b43065b32c1262bb53a317.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.786000;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_2034c9e61c5e12557f237524.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.704000;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_0c6c46c6e800509dd24544af.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.710000;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_e859cc90460369f81ee76368.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_f6c9465a9bf6ff0bd21b7fc1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.880000;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_61111b59874712ee3cafdc35.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.559000;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_74dc328a902d3b08eb98f98b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.073000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ab6e2d4e260f79d129901282.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.656000;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:ff1a;src:url('chunks/assets/font_a54003ddf4c069006e6e7e73.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.065000;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:ff1b;src:url('chunks/assets/font_f07a8f581cf96c63a0f9d472.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.939000;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:ff1c;src:url('chunks/assets/font_2eec29cc9b85656d7068fa34.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.927000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000009,0.250000,-0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,0.250000,-0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,0.250000,-0.250000,0.000009,0,0);}
.m2{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,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);}
.v2{vertical-align:-21.726082px;}
.v6{vertical-align:-20.094220px;}
.v5{vertical-align:-17.434344px;}
.v7{vertical-align:-15.119795px;}
.va{vertical-align:-12.959830px;}
.v9{vertical-align:-11.470813px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.570373px;}
.v8{vertical-align:3.648981px;}
.vb{vertical-align:21.666065px;}
.v3{vertical-align:26.047291px;}
.v1{vertical-align:31.268753px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001530px;}
.ls15{letter-spacing:0.011220px;}
.lsf{letter-spacing:0.019505px;}
.ls27{letter-spacing:0.021558px;}
.ls26{letter-spacing:0.028958px;}
.lse{letter-spacing:0.031749px;}
.lsa{letter-spacing:0.992606px;}
.lsd{letter-spacing:2.974067px;}
.ls10{letter-spacing:2.986646px;}
.ls0{letter-spacing:3.003595px;}
.ls11{letter-spacing:3.011235px;}
.ls23{letter-spacing:11.675008px;}
.ls18{letter-spacing:14.458143px;}
.ls1d{letter-spacing:14.555814px;}
.ls6{letter-spacing:14.677343px;}
.ls3{letter-spacing:14.737359px;}
.ls20{letter-spacing:15.254926px;}
.ls1{letter-spacing:15.600047px;}
.ls2{letter-spacing:15.696134px;}
.ls17{letter-spacing:16.575296px;}
.ls28{letter-spacing:17.076520px;}
.ls5{letter-spacing:17.556654px;}
.ls2c{letter-spacing:19.897310px;}
.ls1f{letter-spacing:19.922241px;}
.ls1c{letter-spacing:20.278446px;}
.ls8{letter-spacing:21.697814px;}
.ls16{letter-spacing:22.176424px;}
.ls1b{letter-spacing:22.964588px;}
.ls2a{letter-spacing:23.438301px;}
.ls29{letter-spacing:23.459847px;}
.ls19{letter-spacing:25.828782px;}
.ls25{letter-spacing:25.838973px;}
.ls2d{letter-spacing:26.880805px;}
.ls1a{letter-spacing:30.338913px;}
.ls12{letter-spacing:32.170745px;}
.ls14{letter-spacing:32.230762px;}
.ls2e{letter-spacing:32.402350px;}
.ls24{letter-spacing:34.661442px;}
.ls13{letter-spacing:35.120223px;}
.ls22{letter-spacing:35.321627px;}
.ls21{letter-spacing:38.225372px;}
.ls1e{letter-spacing:38.404390px;}
.ls2b{letter-spacing:44.084080px;}
.lsb{letter-spacing:140.062263px;}
.lsc{letter-spacing:203.049231px;}
.ls9{letter-spacing:663.167995px;}
.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;}
}
.wsef{word-spacing:-15.012085px;}
.ws47{word-spacing:-10.675005px;}
.wsf0{word-spacing:-10.007819px;}
.ws108{word-spacing:-8.006261px;}
.wseb{word-spacing:-5.003903px;}
.ws48{word-spacing:-2.125056px;}
.ws63{word-spacing:-0.075599px;}
.ws30{word-spacing:-0.071720px;}
.ws93{word-spacing:-0.059777px;}
.ws31{word-spacing:-0.047833px;}
.ws94{word-spacing:-0.041832px;}
.ws3a{word-spacing:0.000000px;}
.ws95{word-spacing:9.504501px;}
.ws71{word-spacing:11.546932px;}
.ws112{word-spacing:11.618652px;}
.ws118{word-spacing:14.602736px;}
.ws128{word-spacing:14.662752px;}
.ws11f{word-spacing:15.563256px;}
.wsb5{word-spacing:15.778417px;}
.wsb7{word-spacing:15.850137px;}
.ws55{word-spacing:15.921857px;}
.ws103{word-spacing:16.065297px;}
.wsf4{word-spacing:16.208737px;}
.ws92{word-spacing:16.442779px;}
.ws134{word-spacing:16.567338px;}
.wsb6{word-spacing:16.639058px;}
.ws9d{word-spacing:16.710778px;}
.ws82{word-spacing:16.782498px;}
.ws11d{word-spacing:16.925938px;}
.ws51{word-spacing:16.997658px;}
.wsf2{word-spacing:17.141098px;}
.ws8e{word-spacing:17.212818px;}
.ws124{word-spacing:17.284538px;}
.wsa6{word-spacing:17.356258px;}
.ws135{word-spacing:17.427978px;}
.ws12e{word-spacing:17.499699px;}
.wse3{word-spacing:17.571419px;}
.wse1{word-spacing:17.643139px;}
.wsa2{word-spacing:17.714859px;}
.ws21{word-spacing:17.786579px;}
.ws3c{word-spacing:17.858299px;}
.wsb9{word-spacing:17.930019px;}
.wsee{word-spacing:18.007198px;}
.ws87{word-spacing:18.073459px;}
.wsbb{word-spacing:18.145179px;}
.wsb{word-spacing:18.216899px;}
.wse4{word-spacing:18.288619px;}
.ws11b{word-spacing:18.360339px;}
.ws86{word-spacing:18.503780px;}
.ws14b{word-spacing:18.575500px;}
.ws122{word-spacing:18.647220px;}
.ws116{word-spacing:18.718940px;}
.wsa5{word-spacing:18.790660px;}
.wsb8{word-spacing:18.934100px;}
.wsce{word-spacing:18.949224px;}
.ws101{word-spacing:19.077540px;}
.ws131{word-spacing:19.149260px;}
.ws8f{word-spacing:19.156627px;}
.ws13b{word-spacing:19.292700px;}
.ws5f{word-spacing:19.436141px;}
.ws90{word-spacing:19.487215px;}
.wsca{word-spacing:19.579581px;}
.wsa4{word-spacing:19.651301px;}
.ws10c{word-spacing:19.723021px;}
.ws3b{word-spacing:19.794741px;}
.ws126{word-spacing:19.866461px;}
.wsd7{word-spacing:19.938181px;}
.wse5{word-spacing:20.153341px;}
.ws4d{word-spacing:20.225061px;}
.ws68{word-spacing:20.296782px;}
.ws72{word-spacing:20.368502px;}
.ws41{word-spacing:20.440222px;}
.ws40{word-spacing:20.511942px;}
.ws1b{word-spacing:20.583662px;}
.wsdc{word-spacing:20.655382px;}
.wsc0{word-spacing:20.682750px;}
.ws33{word-spacing:20.798822px;}
.ws9e{word-spacing:20.942262px;}
.ws44{word-spacing:21.013982px;}
.ws13a{word-spacing:21.085702px;}
.ws4c{word-spacing:21.157422px;}
.wsda{word-spacing:21.160963px;}
.ws67{word-spacing:21.229142px;}
.ws115{word-spacing:21.444303px;}
.ws13e{word-spacing:21.516023px;}
.wse2{word-spacing:21.587743px;}
.wse0{word-spacing:21.659463px;}
.ws57{word-spacing:21.708137px;}
.ws6{word-spacing:21.738805px;}
.ws133{word-spacing:21.802903px;}
.ws119{word-spacing:21.874623px;}
.ws12c{word-spacing:21.946343px;}
.ws105{word-spacing:22.018063px;}
.ws50{word-spacing:22.089783px;}
.wse8{word-spacing:22.233224px;}
.ws54{word-spacing:22.304944px;}
.ws14c{word-spacing:22.376664px;}
.ws23{word-spacing:22.448384px;}
.wsfd{word-spacing:22.476052px;}
.wscb{word-spacing:22.520104px;}
.ws3d{word-spacing:22.591824px;}
.wsf3{word-spacing:22.662644px;}
.ws6d{word-spacing:22.663544px;}
.ws5c{word-spacing:22.735264px;}
.wsb4{word-spacing:22.774935px;}
.ws25{word-spacing:22.806984px;}
.ws65{word-spacing:22.834712px;}
.ws85{word-spacing:22.878704px;}
.wsfe{word-spacing:23.014042px;}
.ws123{word-spacing:23.022144px;}
.wsd9{word-spacing:23.073819px;}
.ws32{word-spacing:23.165585px;}
.ws77{word-spacing:23.237305px;}
.ws5{word-spacing:23.244807px;}
.ws20{word-spacing:23.309025px;}
.ws4{word-spacing:23.310285px;}
.ws3{word-spacing:23.375763px;}
.ws9f{word-spacing:23.380745px;}
.wsde{word-spacing:23.524185px;}
.ws91{word-spacing:23.552033px;}
.ws38{word-spacing:23.595905px;}
.wsba{word-spacing:23.667625px;}
.ws12b{word-spacing:23.811065px;}
.ws9c{word-spacing:23.882785px;}
.wsd5{word-spacing:23.954505px;}
.ws46{word-spacing:24.026225px;}
.ws75{word-spacing:24.097946px;}
.ws17{word-spacing:24.169666px;}
.wsb2{word-spacing:24.209577px;}
.ws125{word-spacing:24.241386px;}
.ws2a{word-spacing:24.313106px;}
.ws80{word-spacing:24.384826px;}
.ws12f{word-spacing:24.456546px;}
.ws120{word-spacing:24.528266px;}
.ws8b{word-spacing:24.599986px;}
.ws96{word-spacing:24.687791px;}
.ws28{word-spacing:24.743426px;}
.ws97{word-spacing:24.886866px;}
.wscd{word-spacing:24.926898px;}
.ws14{word-spacing:24.958586px;}
.wsa3{word-spacing:25.030307px;}
.ws24{word-spacing:25.173747px;}
.wsc3{word-spacing:25.245467px;}
.ws104{word-spacing:25.317187px;}
.ws102{word-spacing:25.388907px;}
.wsac{word-spacing:25.460627px;}
.ws11e{word-spacing:25.604067px;}
.ws42{word-spacing:25.675787px;}
.wsfc{word-spacing:25.703995px;}
.ws19{word-spacing:25.747507px;}
.ws8c{word-spacing:25.819227px;}
.ws8d{word-spacing:25.890947px;}
.ws106{word-spacing:25.962668px;}
.wse7{word-spacing:26.034388px;}
.ws53{word-spacing:26.106108px;}
.ws4a{word-spacing:26.177828px;}
.wsad{word-spacing:26.249548px;}
.wsc4{word-spacing:26.321268px;}
.ws107{word-spacing:26.392988px;}
.ws10d{word-spacing:26.421316px;}
.ws73{word-spacing:26.464708px;}
.ws22{word-spacing:26.488319px;}
.ws3f{word-spacing:26.536428px;}
.ws4b{word-spacing:26.608148px;}
.ws139{word-spacing:26.679868px;}
.ws88{word-spacing:26.751588px;}
.ws138{word-spacing:26.785348px;}
.ws26{word-spacing:26.823308px;}
.ws45{word-spacing:26.895028px;}
.wsb3{word-spacing:26.959306px;}
.wsa{word-spacing:26.966749px;}
.ws36{word-spacing:27.038469px;}
.wsbf{word-spacing:27.078860px;}
.ws6e{word-spacing:27.110189px;}
.ws132{word-spacing:27.181909px;}
.ws79{word-spacing:27.253629px;}
.ws10a{word-spacing:27.317967px;}
.ws43{word-spacing:27.325349px;}
.wsc5{word-spacing:27.397069px;}
.ws2e{word-spacing:27.468789px;}
.ws1d{word-spacing:27.540509px;}
.ws61{word-spacing:27.612229px;}
.ws64{word-spacing:27.616851px;}
.ws10b{word-spacing:27.676627px;}
.wsd4{word-spacing:27.683949px;}
.wsd3{word-spacing:27.704055px;}
.ws7a{word-spacing:27.755669px;}
.ws27{word-spacing:27.827389px;}
.ws121{word-spacing:27.899110px;}
.ws2{word-spacing:27.970830px;}
.ws4e{word-spacing:28.042550px;}
.ws10f{word-spacing:28.114270px;}
.ws6b{word-spacing:28.185990px;}
.ws1c{word-spacing:28.257710px;}
.wsd0{word-spacing:28.329430px;}
.ws130{word-spacing:28.401150px;}
.wse{word-spacing:28.472870px;}
.ws14d{word-spacing:28.488234px;}
.ws144{word-spacing:28.544590px;}
.ws109{word-spacing:28.573278px;}
.ws60{word-spacing:28.616310px;}
.ws74{word-spacing:28.688030px;}
.wsa1{word-spacing:28.831471px;}
.ws7b{word-spacing:28.974911px;}
.ws7c{word-spacing:29.046631px;}
.ws7e{word-spacing:29.118351px;}
.ws12a{word-spacing:29.261791px;}
.ws110{word-spacing:29.333511px;}
.wsa7{word-spacing:29.405231px;}
.ws11{word-spacing:29.476951px;}
.ws5a{word-spacing:29.548671px;}
.ws9b{word-spacing:29.620391px;}
.wsb1{word-spacing:29.709036px;}
.ws70{word-spacing:29.763832px;}
.wsdf{word-spacing:29.835552px;}
.wsbe{word-spacing:29.907272px;}
.ws6f{word-spacing:29.978992px;}
.ws66{word-spacing:30.194152px;}
.ws6c{word-spacing:30.265872px;}
.ws9{word-spacing:30.337592px;}
.ws83{word-spacing:30.409312px;}
.ws89{word-spacing:30.481032px;}
.ws69{word-spacing:30.552752px;}
.wsc6{word-spacing:30.624472px;}
.wsfa{word-spacing:30.767913px;}
.wsa0{word-spacing:30.911353px;}
.wsd6{word-spacing:31.054793px;}
.ws3e{word-spacing:31.126513px;}
.wsdd{word-spacing:31.198233px;}
.wsd{word-spacing:31.269953px;}
.wsaa{word-spacing:31.485113px;}
.ws5b{word-spacing:31.556833px;}
.wsf{word-spacing:31.700274px;}
.ws18{word-spacing:31.771994px;}
.ws58{word-spacing:31.837742px;}
.ws34{word-spacing:31.843714px;}
.ws56{word-spacing:31.875523px;}
.ws59{word-spacing:31.915434px;}
.wsd8{word-spacing:31.987154px;}
.ws6a{word-spacing:32.058874px;}
.ws16{word-spacing:32.130594px;}
.ws8a{word-spacing:32.159882px;}
.ws1f{word-spacing:32.202314px;}
.wsfb{word-spacing:32.219659px;}
.wse9{word-spacing:32.274034px;}
.ws142{word-spacing:32.318597px;}
.wsae{word-spacing:32.345754px;}
.wsab{word-spacing:32.417474px;}
.ws8{word-spacing:32.489194px;}
.wsd1{word-spacing:32.560915px;}
.wsd2{word-spacing:32.632635px;}
.ws11c{word-spacing:32.704355px;}
.ws98{word-spacing:32.776075px;}
.wsa9{word-spacing:32.847795px;}
.ws39{word-spacing:32.991235px;}
.wsc8{word-spacing:33.134675px;}
.wscc{word-spacing:33.235863px;}
.ws7d{word-spacing:33.278115px;}
.wsc7{word-spacing:33.349835px;}
.wsb0{word-spacing:33.415194px;}
.ws99{word-spacing:33.493275px;}
.ws12d{word-spacing:33.564996px;}
.ws81{word-spacing:33.636716px;}
.wse6{word-spacing:33.780156px;}
.wsa8{word-spacing:33.995316px;}
.ws76{word-spacing:34.138756px;}
.ws14f{word-spacing:34.210476px;}
.ws52{word-spacing:34.282196px;}
.wsaf{word-spacing:34.425636px;}
.wsc1{word-spacing:34.497357px;}
.ws113{word-spacing:34.569077px;}
.wsf9{word-spacing:34.712517px;}
.wscf{word-spacing:34.784237px;}
.wsff{word-spacing:34.927677px;}
.ws1e{word-spacing:34.999397px;}
.ws143{word-spacing:35.084681px;}
.ws2c{word-spacing:35.142837px;}
.ws114{word-spacing:35.214557px;}
.ws111{word-spacing:35.286277px;}
.ws148{word-spacing:35.357997px;}
.ws2d{word-spacing:35.429718px;}
.ws13c{word-spacing:35.860038px;}
.ws84{word-spacing:35.931758px;}
.ws78{word-spacing:36.075198px;}
.ws10e{word-spacing:36.164923px;}
.wsc9{word-spacing:36.362079px;}
.ws9a{word-spacing:36.577239px;}
.ws2b{word-spacing:37.079279px;}
.ws12{word-spacing:37.150999px;}
.ws0{word-spacing:37.198413px;}
.ws13{word-spacing:37.222719px;}
.wsf7{word-spacing:37.294440px;}
.ws1{word-spacing:37.322407px;}
.ws129{word-spacing:37.509600px;}
.ws49{word-spacing:37.719118px;}
.ws117{word-spacing:37.796480px;}
.ws5e{word-spacing:38.370241px;}
.wsbd{word-spacing:38.513681px;}
.ws35{word-spacing:38.526764px;}
.ws7f{word-spacing:38.630053px;}
.ws5d{word-spacing:38.872281px;}
.wsc{word-spacing:38.944001px;}
.ws1a{word-spacing:39.087441px;}
.ws127{word-spacing:39.230882px;}
.wsf8{word-spacing:39.517762px;}
.ws100{word-spacing:39.732922px;}
.ws10{word-spacing:40.019802px;}
.wsec{word-spacing:40.038836px;}
.wsf6{word-spacing:40.091522px;}
.ws11a{word-spacing:40.737003px;}
.ws4f{word-spacing:40.808723px;}
.wsbc{word-spacing:40.952163px;}
.ws29{word-spacing:41.095604px;}
.ws14e{word-spacing:42.314845px;}
.ws13d{word-spacing:42.601725px;}
.wsf1{word-spacing:42.919694px;}
.ws2f{word-spacing:43.103766px;}
.ws141{word-spacing:43.247206px;}
.ws137{word-spacing:43.964407px;}
.wsed{word-spacing:44.017484px;}
.ws140{word-spacing:44.538167px;}
.wsdb{word-spacing:44.609887px;}
.wsf5{word-spacing:45.900849px;}
.wsc2{word-spacing:47.684188px;}
.wsea{word-spacing:48.017732px;}
.ws13f{word-spacing:48.339331px;}
.ws7{word-spacing:55.709154px;}
.ws147{word-spacing:55.798219px;}
.ws146{word-spacing:57.304341px;}
.ws145{word-spacing:58.451862px;}
.ws37{word-spacing:60.173144px;}
.ws14a{word-spacing:60.746904px;}
.ws150{word-spacing:61.320665px;}
.ws149{word-spacing:62.181306px;}
.ws136{word-spacing:115.993449px;}
.ws15{word-spacing:116.096738px;}
.ws62{word-spacing:717.152618px;}
._1e{margin-left:-36.182688px;}
._7{margin-left:-35.108148px;}
._4{margin-left:-33.393948px;}
._1{margin-left:-9.299603px;}
._24{margin-left:-7.817488px;}
._0{margin-left:-6.447725px;}
._b{margin-left:-5.307286px;}
._6{margin-left:-3.797383px;}
._2{margin-left:-2.761133px;}
._5{margin-left:-1.244448px;}
._19{width:1.111571px;}
._3{width:2.237666px;}
._e{width:4.080482px;}
._2b{width:5.850918px;}
._2d{width:7.723412px;}
._1c{width:11.690372px;}
._22{width:12.693553px;}
._2e{width:17.094405px;}
._21{width:18.656402px;}
._39{width:19.777096px;}
._25{width:20.791740px;}
._32{width:22.236945px;}
._3a{width:23.344975px;}
._8{width:24.422696px;}
._38{width:25.709877px;}
._1a{width:26.848515px;}
._15{width:28.598485px;}
._12{width:29.756570px;}
._9{width:31.469989px;}
._31{width:32.698413px;}
._1f{width:34.129454px;}
._2f{width:36.146918px;}
._34{width:37.359078px;}
._a{width:38.509900px;}
._13{width:40.507499px;}
._2c{width:41.920474px;}
._c{width:43.128193px;}
._14{width:44.681607px;}
._11{width:46.044289px;}
._29{width:47.227580px;}
._30{width:49.256028px;}
._23{width:50.813584px;}
._26{width:52.929416px;}
._35{width:54.233881px;}
._10{width:55.769531px;}
._27{width:56.874020px;}
._28{width:58.057492px;}
._20{width:60.460024px;}
._2a{width:62.002096px;}
._3d{width:63.127231px;}
._33{width:64.153518px;}
._37{width:65.408709px;}
._18{width:68.155498px;}
._f{width:69.345751px;}
._36{width:70.465065px;}
._17{width:72.795877px;}
._d{width:77.665280px;}
._16{width:84.414529px;}
._3b{width:94.824263px;}
._1b{width:116.096738px;}
._3c{width:134.974182px;}
._1d{width:141.575430px;}
._3e{width:147.320058px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,255,0);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:17.999652px;}
.fs18{font-size:28.799498px;}
.fs11{font-size:32.399665px;}
.fs13{font-size:33.000219px;}
.fs15{font-size:35.999349px;}
.fse{font-size:37.799591px;}
.fs9{font-size:38.399299px;}
.fs6{font-size:41.831710px;}
.fsd{font-size:41.999826px;}
.fs12{font-size:46.200307px;}
.fs7{font-size:47.833390px;}
.fsa{font-size:47.999784px;}
.fs17{font-size:54.000306px;}
.fsf{font-size:58.799505px;}
.fs2{font-size:59.776733px;}
.fs10{font-size:64.799331px;}
.fs3{font-size:65.478329px;}
.fsb{font-size:67.198714px;}
.fs4{font-size:71.720076px;}
.fsc{font-size:75.599183px;}
.fs8{font-size:76.798503px;}
.fs1{font-size:86.064091px;}
.fs14{font-size:86.399467px;}
.fs5{font-size:103.288913px;}
.fs0{font-size:123.994709px;}
.y0{bottom:0.000000px;}
.ya3{bottom:5.226037px;}
.y9d{bottom:17.463344px;}
.y9e{bottom:26.263677px;}
.ya5{bottom:27.569661px;}
.y34{bottom:76.648222px;}
.y9f{bottom:77.688743px;}
.ya4{bottom:111.376192px;}
.y33{bottom:121.480771px;}
.y5e{bottom:123.179340px;}
.y24{bottom:126.912292px;}
.ya0{bottom:129.045334px;}
.y32{bottom:143.146836px;}
.y23{bottom:153.649776px;}
.y44{bottom:155.950658px;}
.y31{bottom:164.812901px;}
.yd8{bottom:165.873121px;}
.y118{bottom:173.320282px;}
.yd7{bottom:180.071251px;}
.ya1{bottom:180.401925px;}
.y14e{bottom:181.872676px;}
.yf6{bottom:183.066663px;}
.yfc{bottom:183.066886px;}
.y22{bottom:183.823222px;}
.y30{bottom:186.493970px;}
.yfd{bottom:189.567377px;}
.yfb{bottom:191.598711px;}
.yf9{bottom:191.877938px;}
.yf8{bottom:193.677723px;}
.yd6{bottom:194.072280px;}
.y93{bottom:194.986347px;}
.yca{bottom:201.963300px;}
.yfe{bottom:203.468653px;}
.y14d{bottom:203.538741px;}
.y21{bottom:205.504291px;}
.y2f{bottom:208.160035px;}
.yd5{bottom:208.453111px;}
.ya8{bottom:210.170598px;}
.y92{bottom:216.667416px;}
.yc9{bottom:219.893319px;}
.yd4{bottom:222.121407px;}
.y14c{bottom:225.204806px;}
.y20{bottom:227.170356px;}
.y12c{bottom:227.725511px;}
.ya7{bottom:227.771265px;}
.y59{bottom:229.826099px;}
.ya2{bottom:231.758516px;}
.yc8{bottom:237.823338px;}
.y91{bottom:238.333481px;}
.y1f{bottom:248.836421px;}
.y12b{bottom:249.391576px;}
.y58{bottom:251.492164px;}
.ya6{bottom:253.621161px;}
.yc7{bottom:255.753357px;}
.y2e{bottom:259.249336px;}
.y90{bottom:259.999546px;}
.y14b{bottom:263.915642px;}
.yfa{bottom:267.159877px;}
.y1e{bottom:270.502486px;}
.y57{bottom:273.158229px;}
.yc6{bottom:273.683376px;}
.y8f{bottom:281.665610px;}
.y107{bottom:283.480196px;}
.yf5{bottom:284.826302px;}
.y14a{bottom:285.581707px;}
.yf4{bottom:286.626087px;}
.y1d{bottom:292.168550px;}
.y56{bottom:294.839298px;}
.y12a{bottom:299.565621px;}
.yf3{bottom:300.671117px;}
.yf2{bottom:302.470902px;}
.y8e{bottom:303.331675px;}
.y1c{bottom:313.849619px;}
.y55{bottom:316.505363px;}
.y149{bottom:324.307547px;}
.y8d{bottom:324.997740px;}
.y1b{bottom:335.515684px;}
.yf1{bottom:335.930504px;}
.yf0{bottom:337.730289px;}
.y54{bottom:338.171428px;}
.y2d{bottom:343.497919px;}
.y148{bottom:345.973612px;}
.y8c{bottom:346.678809px;}
.y4c{bottom:348.016315px;}
.y1a{bottom:357.181749px;}
.yac{bottom:357.526846px;}
.y53{bottom:359.837492px;}
.y4d{bottom:364.250004px;}
.y2c{bottom:365.163983px;}
.y147{bottom:367.639676px;}
.y8b{bottom:368.344874px;}
.y111{bottom:370.355437px;}
.yef{bottom:372.190697px;}
.y129{bottom:372.741104px;}
.yee{bottom:373.990482px;}
.yab{bottom:375.456865px;}
.y19{bottom:378.847814px;}
.y52{bottom:381.503557px;}
.yed{bottom:385.423135px;}
.y2b{bottom:386.845052px;}
.yec{bottom:387.222920px;}
.y110{bottom:388.285456px;}
.y8a{bottom:390.010939px;}
.yaa{bottom:393.386884px;}
.y128{bottom:394.407169px;}
.yce{bottom:396.522761px;}
.y45{bottom:396.960984px;}
.y18{bottom:400.513879px;}
.y51{bottom:403.169622px;}
.y10f{bottom:406.215475px;}
.y146{bottom:406.350512px;}
.y2a{bottom:408.511117px;}
.ya9{bottom:411.316903px;}
.y89{bottom:411.677003px;}
.ycd{bottom:414.452780px;}
.y49{bottom:416.457623px;}
.ye2{bottom:420.184385px;}
.y17{bottom:422.179943px;}
.y70{bottom:424.850691px;}
.y48{bottom:427.181950px;}
.y95{bottom:427.495508px;}
.y145{bottom:428.031581px;}
.yeb{bottom:429.118157px;}
.y29{bottom:430.177182px;}
.yea{bottom:430.917943px;}
.ycc{bottom:432.397804px;}
.yc5{bottom:433.343068px;}
.y9c{bottom:441.007438px;}
.y88{bottom:441.850450px;}
.y127{bottom:443.290853px;}
.y6f{bottom:446.516756px;}
.ycb{bottom:450.327823px;}
.y28{bottom:451.843247px;}
.y50{bottom:452.233356px;}
.yc4{bottom:455.024137px;}
.y87{bottom:463.516514px;}
.y144{bottom:466.742417px;}
.y6e{bottom:468.182821px;}
.y16{bottom:470.118362px;}
.y4f{bottom:470.163375px;}
.y94{bottom:470.683310px;}
.y27{bottom:473.509312px;}
.y96{bottom:473.897795px;}
.yc3{bottom:476.690202px;}
.y67{bottom:483.765134px;}
.y86{bottom:485.197583px;}
.y143{bottom:488.408482px;}
.y62{bottom:489.380567px;}
.y26{bottom:495.175376px;}
.yc2{bottom:498.356267px;}
.ye9{bottom:501.291277px;}
.y47{bottom:502.995379px;}
.ye8{bottom:503.091062px;}
.y85{bottom:506.863648px;}
.y46{bottom:513.719706px;}
.ye7{bottom:514.069527px;}
.ye6{bottom:515.869312px;}
.y126{bottom:516.481340px;}
.y25{bottom:516.856445px;}
.yc1{bottom:520.022332px;}
.y6d{bottom:520.397437px;}
.y61{bottom:521.333305px;}
.y4e{bottom:524.992088px;}
.y66{bottom:526.739786px;}
.y142{bottom:527.119318px;}
.y84{bottom:528.529713px;}
.y60{bottom:536.143641px;}
.y125{bottom:538.147405px;}
.y6c{bottom:538.327456px;}
.y15{bottom:538.522510px;}
.yc0{bottom:541.688396px;}
.y141{bottom:548.800387px;}
.ye1{bottom:550.195778px;}
.ye5{bottom:557.310384px;}
.y6b{bottom:558.777574px;}
.ye4{bottom:559.110169px;}
.y124{bottom:559.813470px;}
.y14{bottom:560.188575px;}
.ybf{bottom:563.354461px;}
.ye0{bottom:571.861843px;}
.y83{bottom:576.738208px;}
.y123{bottom:581.479535px;}
.y13{bottom:581.854640px;}
.ybe{bottom:585.035530px;}
.yf7{bottom:586.735826px;}
.y140{bottom:587.511223px;}
.ye3{bottom:589.484528px;}
.ydf{bottom:593.527907px;}
.y6a{bottom:600.075366px;}
.y122{bottom:603.160604px;}
.y12{bottom:603.520705px;}
.yd2{bottom:605.006120px;}
.ybd{bottom:606.701595px;}
.y5f{bottom:606.748155px;}
.y13f{bottom:609.177288px;}
.yde{bottom:615.208976px;}
.yd1{bottom:622.936139px;}
.y11{bottom:625.201774px;}
.ybc{bottom:628.367660px;}
.y13e{bottom:630.843353px;}
.y121{bottom:633.334050px;}
.ydd{bottom:636.875041px;}
.yd0{bottom:640.866158px;}
.y82{bottom:646.492733px;}
.y10{bottom:646.867838px;}
.y117{bottom:650.033725px;}
.y65{bottom:654.396384px;}
.y120{bottom:655.000115px;}
.ybb{bottom:658.541106px;}
.ycf{bottom:658.796177px;}
.y4b{bottom:667.533937px;}
.y81{bottom:668.158798px;}
.yf{bottom:668.533903px;}
.y13d{bottom:669.569193px;}
.y63{bottom:676.545214px;}
.y11f{bottom:676.666180px;}
.y64{bottom:677.830400px;}
.y68{bottom:677.830421px;}
.y4a{bottom:678.258264px;}
.y100{bottom:678.691747px;}
.yba{bottom:680.207171px;}
.y80{bottom:689.824863px;}
.ye{bottom:690.199968px;}
.y13c{bottom:691.235258px;}
.yff{bottom:696.621766px;}
.y11e{bottom:698.332244px;}
.y116{bottom:701.078013px;}
.yb9{bottom:701.873236px;}
.y69{bottom:707.120343px;}
.y106{bottom:709.177799px;}
.y7f{bottom:711.505932px;}
.yd{bottom:711.866033px;}
.y13b{bottom:712.901323px;}
.y11d{bottom:719.998309px;}
.yb8{bottom:723.554305px;}
.y7e{bottom:733.171997px;}
.yc{bottom:733.532098px;}
.y13a{bottom:734.567387px;}
.y10e{bottom:740.374013px;}
.y11c{bottom:741.679378px;}
.y9b{bottom:743.749958px;}
.yb7{bottom:745.220369px;}
.y7d{bottom:754.838062px;}
.yb{bottom:755.213167px;}
.y10d{bottom:762.055082px;}
.y11b{bottom:763.345443px;}
.y9a{bottom:765.431027px;}
.yb6{bottom:766.886434px;}
.y139{bottom:773.278223px;}
.yd3{bottom:774.880006px;}
.y7c{bottom:776.504126px;}
.ya{bottom:776.879231px;}
.y10c{bottom:783.721147px;}
.y115{bottom:785.011508px;}
.y99{bottom:787.097092px;}
.yb5{bottom:788.552499px;}
.y138{bottom:794.959292px;}
.y7b{bottom:798.170191px;}
.y9{bottom:798.545296px;}
.ydc{bottom:799.430544px;}
.y114{bottom:806.677573px;}
.yb4{bottom:810.218564px;}
.y137{bottom:816.625357px;}
.y7a{bottom:819.836256px;}
.y105{bottom:820.856542px;}
.y113{bottom:828.343637px;}
.yb3{bottom:831.884629px;}
.y10b{bottom:834.285301px;}
.y98{bottom:838.651523px;}
.y104{bottom:838.786561px;}
.y79{bottom:841.517325px;}
.y112{bottom:850.009702px;}
.y10a{bottom:852.230324px;}
.y136{bottom:855.336193px;}
.y97{bottom:856.596546px;}
.y103{bottom:856.731584px;}
.ydb{bottom:859.417336px;}
.y78{bottom:863.183390px;}
.y8{bottom:865.419016px;}
.y109{bottom:870.160343px;}
.y43{bottom:871.690771px;}
.y102{bottom:874.661603px;}
.y135{bottom:877.002258px;}
.yda{bottom:877.362359px;}
.yb2{bottom:882.928917px;}
.y77{bottom:884.849455px;}
.y108{bottom:888.090362px;}
.y101{bottom:892.591622px;}
.y42{bottom:893.356836px;}
.yd9{bottom:895.292378px;}
.y134{bottom:898.683327px;}
.y7{bottom:903.919793px;}
.y76{bottom:906.515519px;}
.y41{bottom:915.022901px;}
.y156{bottom:922.029862px;}
.y11a{bottom:923.530282px;}
.y75{bottom:928.181584px;}
.y6{bottom:930.807319px;}
.y40{bottom:936.688966px;}
.y133{bottom:937.394163px;}
.y155{bottom:943.695927px;}
.y119{bottom:945.196347px;}
.y74{bottom:949.862653px;}
.y3f{bottom:958.355030px;}
.y132{bottom:959.060228px;}
.yb1{bottom:966.862412px;}
.y73{bottom:971.528718px;}
.y3e{bottom:980.036099px;}
.y154{bottom:980.306175px;}
.y131{bottom:980.726293px;}
.y5{bottom:984.612380px;}
.yb0{bottom:988.528477px;}
.y72{bottom:993.194783px;}
.y3d{bottom:1001.702164px;}
.y153{bottom:1001.987244px;}
.yaf{bottom:1010.194541px;}
.y4{bottom:1011.514911px;}
.y130{bottom:1019.452133px;}
.y3c{bottom:1023.368229px;}
.y152{bottom:1023.653309px;}
.yae{bottom:1031.875610px;}
.y3{bottom:1038.402437px;}
.y12f{bottom:1041.118198px;}
.y3b{bottom:1045.034294px;}
.yad{bottom:1053.541675px;}
.y151{bottom:1060.263557px;}
.y3a{bottom:1066.700359px;}
.y5d{bottom:1075.207740px;}
.y12e{bottom:1079.829034px;}
.y150{bottom:1081.929622px;}
.y39{bottom:1088.366423px;}
.y2{bottom:1091.652343px;}
.y5c{bottom:1096.873805px;}
.y12d{bottom:1101.495098px;}
.y14f{bottom:1103.595686px;}
.y38{bottom:1110.047492px;}
.y5b{bottom:1118.539870px;}
.y1{bottom:1129.012801px;}
.y37{bottom:1131.713557px;}
.y5a{bottom:1140.220939px;}
.y71{bottom:1153.379622px;}
.y36{bottom:1161.887003px;}
.y35{bottom:1183.553068px;}
.h21{height:13.103747px;}
.h24{height:20.620441px;}
.h7{height:21.074059px;}
.h1e{height:26.006240px;}
.h20{height:26.207526px;}
.hc{height:27.954690px;}
.h1b{height:34.418197px;}
.h16{height:34.632908px;}
.hd{height:34.943843px;}
.h22{height:39.312223px;}
.h10{height:39.580042px;}
.h11{height:44.527919px;}
.he{height:44.832550px;}
.h18{height:44.970735px;}
.h4{height:46.882483px;}
.h1a{height:48.185476px;}
.h12{height:48.920664px;}
.h1c{height:49.107666px;}
.h5{height:53.790057px;}
.h14{height:55.036205px;}
.hb{height:55.909310px;}
.h13{height:57.606578px;}
.h9{height:58.274812px;}
.h8{height:58.334829px;}
.h15{height:60.423968px;}
.h3{height:64.548068px;}
.h6{height:72.302239px;}
.h2{height:76.101302px;}
.h1{height:87.664259px;}
.h19{height:277.340509px;}
.h1d{height:488.119994px;}
.h23{height:553.822201px;}
.h1f{height:673.515472px;}
.h17{height:792.316690px;}
.ha{height:1107.049342px;}
.hf{height:1139.820660px;}
.h0{height:1263.000000px;}
.w3{width:369.601551px;}
.w4{width:465.408823px;}
.w2{width:478.790481px;}
.w5{width:509.059741px;}
.w1{width:678.178414px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2c{left:20.075250px;}
.x2a{left:26.400319px;}
.x29{left:32.862587px;}
.x28{left:39.256380px;}
.x3d{left:42.842830px;}
.x2d{left:46.887680px;}
.x39{left:50.023184px;}
.x35{left:51.283528px;}
.x37{left:53.127414px;}
.x27{left:55.275511px;}
.x3a{left:56.522537px;}
.x36{left:57.782881px;}
.x38{left:59.626767px;}
.x3b{left:62.537635px;}
.xa{left:65.478097px;}
.x1{left:67.728727px;}
.x46{left:74.255554px;}
.xb{left:83.033011px;}
.xc{left:85.508704px;}
.x30{left:88.795704px;}
.x2f{left:96.044807px;}
.x47{left:101.578202px;}
.x3c{left:113.145266px;}
.x31{left:117.708208px;}
.x3{left:120.213419px;}
.x5{left:126.290120px;}
.x3f{left:130.564865px;}
.x16{left:135.468221px;}
.x32{left:149.104456px;}
.x2b{left:152.145179px;}
.x17{left:154.703126px;}
.x14{left:172.436140px;}
.x33{left:179.554799px;}
.x8{left:184.251344px;}
.x40{left:187.277975px;}
.xf{left:191.471329px;}
.x15{left:193.051737px;}
.x41{left:204.862721px;}
.x19{left:214.321586px;}
.x42{left:226.210657px;}
.x7{left:231.919688px;}
.x26{left:233.132527px;}
.x43{left:244.905952px;}
.x4{left:248.964459px;}
.x1d{left:299.921657px;}
.x13{left:305.988439px;}
.x12{left:320.402438px;}
.x1e{left:324.315400px;}
.x11{left:332.169307px;}
.x2e{left:333.370832px;}
.x3e{left:334.760576px;}
.x10{left:340.444948px;}
.x1a{left:352.504915px;}
.x20{left:357.155393px;}
.x6{left:360.010543px;}
.x2{left:374.654642px;}
.x21{left:381.043033px;}
.x22{left:382.716942px;}
.x1c{left:391.041191px;}
.x9{left:395.330430px;}
.x25{left:413.709519px;}
.x34{left:427.091177px;}
.xe{left:441.648395px;}
.x1f{left:443.197097px;}
.x24{left:455.297368px;}
.xd{left:464.109683px;}
.x44{left:472.887140px;}
.x18{left:481.664597px;}
.x45{left:500.194784px;}
.x1b{left:512.940605px;}
.x23{left:565.492363px;}
@media print{
.v2{vertical-align:-19.312073pt;}
.v6{vertical-align:-17.861529pt;}
.v5{vertical-align:-15.497195pt;}
.v7{vertical-align:-13.439817pt;}
.va{vertical-align:-11.519849pt;}
.v9{vertical-align:-10.196278pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.284776pt;}
.v8{vertical-align:3.243539pt;}
.vb{vertical-align:19.258724pt;}
.v3{vertical-align:23.153148pt;}
.v1{vertical-align:27.794447pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001360pt;}
.ls15{letter-spacing:0.009973pt;}
.lsf{letter-spacing:0.017338pt;}
.ls27{letter-spacing:0.019163pt;}
.ls26{letter-spacing:0.025741pt;}
.lse{letter-spacing:0.028221pt;}
.lsa{letter-spacing:0.882317pt;}
.lsd{letter-spacing:2.643615pt;}
.ls10{letter-spacing:2.654796pt;}
.ls0{letter-spacing:2.669862pt;}
.ls11{letter-spacing:2.676653pt;}
.ls23{letter-spacing:10.377785pt;}
.ls18{letter-spacing:12.851683pt;}
.ls1d{letter-spacing:12.938502pt;}
.ls6{letter-spacing:13.046527pt;}
.ls3{letter-spacing:13.099875pt;}
.ls20{letter-spacing:13.559934pt;}
.ls1{letter-spacing:13.866708pt;}
.ls2{letter-spacing:13.952119pt;}
.ls17{letter-spacing:14.733596pt;}
.ls28{letter-spacing:15.179129pt;}
.ls5{letter-spacing:15.605915pt;}
.ls2c{letter-spacing:17.686497pt;}
.ls1f{letter-spacing:17.708658pt;}
.ls1c{letter-spacing:18.025286pt;}
.ls8{letter-spacing:19.286945pt;}
.ls16{letter-spacing:19.712377pt;}
.ls1b{letter-spacing:20.412967pt;}
.ls2a{letter-spacing:20.834045pt;}
.ls29{letter-spacing:20.853197pt;}
.ls19{letter-spacing:22.958917pt;}
.ls25{letter-spacing:22.967976pt;}
.ls2d{letter-spacing:23.894048pt;}
.ls1a{letter-spacing:26.967922pt;}
.ls12{letter-spacing:28.596218pt;}
.ls14{letter-spacing:28.649566pt;}
.ls2e{letter-spacing:28.802089pt;}
.ls24{letter-spacing:30.810171pt;}
.ls13{letter-spacing:31.217976pt;}
.ls22{letter-spacing:31.397002pt;}
.ls21{letter-spacing:33.978109pt;}
.ls1e{letter-spacing:34.137236pt;}
.ls2b{letter-spacing:39.185849pt;}
.lsb{letter-spacing:124.499790pt;}
.lsc{letter-spacing:180.488206pt;}
.ls9{letter-spacing:589.482662pt;}
.wsef{word-spacing:-13.344076pt;}
.ws47{word-spacing:-9.488894pt;}
.wsf0{word-spacing:-8.895839pt;}
.ws108{word-spacing:-7.116676pt;}
.wseb{word-spacing:-4.447914pt;}
.ws48{word-spacing:-1.888938pt;}
.ws63{word-spacing:-0.067199pt;}
.ws30{word-spacing:-0.063751pt;}
.ws93{word-spacing:-0.053135pt;}
.ws31{word-spacing:-0.042519pt;}
.ws94{word-spacing:-0.037184pt;}
.ws3a{word-spacing:0.000000pt;}
.ws95{word-spacing:8.448445pt;}
.ws71{word-spacing:10.263940pt;}
.ws112{word-spacing:10.327691pt;}
.ws118{word-spacing:12.980209pt;}
.ws128{word-spacing:13.033558pt;}
.ws11f{word-spacing:13.834006pt;}
.wsb5{word-spacing:14.025259pt;}
.wsb7{word-spacing:14.089010pt;}
.ws55{word-spacing:14.152762pt;}
.ws103{word-spacing:14.280264pt;}
.wsf4{word-spacing:14.407766pt;}
.ws92{word-spacing:14.615803pt;}
.ws134{word-spacing:14.726522pt;}
.wsb6{word-spacing:14.790273pt;}
.ws9d{word-spacing:14.854025pt;}
.ws82{word-spacing:14.917776pt;}
.ws11d{word-spacing:15.045278pt;}
.ws51{word-spacing:15.109029pt;}
.wsf2{word-spacing:15.236532pt;}
.ws8e{word-spacing:15.300283pt;}
.ws124{word-spacing:15.364034pt;}
.wsa6{word-spacing:15.427785pt;}
.ws135{word-spacing:15.491536pt;}
.ws12e{word-spacing:15.555288pt;}
.wse3{word-spacing:15.619039pt;}
.wse1{word-spacing:15.682790pt;}
.wsa2{word-spacing:15.746541pt;}
.ws21{word-spacing:15.810292pt;}
.ws3c{word-spacing:15.874043pt;}
.wsb9{word-spacing:15.937795pt;}
.wsee{word-spacing:16.006399pt;}
.ws87{word-spacing:16.065297pt;}
.wsbb{word-spacing:16.129048pt;}
.wsb{word-spacing:16.192799pt;}
.wse4{word-spacing:16.256551pt;}
.ws11b{word-spacing:16.320302pt;}
.ws86{word-spacing:16.447804pt;}
.ws14b{word-spacing:16.511555pt;}
.ws122{word-spacing:16.575306pt;}
.ws116{word-spacing:16.639058pt;}
.wsa5{word-spacing:16.702809pt;}
.wsb8{word-spacing:16.830311pt;}
.wsce{word-spacing:16.843755pt;}
.ws101{word-spacing:16.957814pt;}
.ws131{word-spacing:17.021565pt;}
.ws8f{word-spacing:17.028113pt;}
.ws13b{word-spacing:17.149067pt;}
.ws5f{word-spacing:17.276569pt;}
.ws90{word-spacing:17.321969pt;}
.wsca{word-spacing:17.404072pt;}
.wsa4{word-spacing:17.467823pt;}
.ws10c{word-spacing:17.531574pt;}
.ws3b{word-spacing:17.595325pt;}
.ws126{word-spacing:17.659076pt;}
.wsd7{word-spacing:17.722828pt;}
.wse5{word-spacing:17.914081pt;}
.ws4d{word-spacing:17.977832pt;}
.ws68{word-spacing:18.041584pt;}
.ws72{word-spacing:18.105335pt;}
.ws41{word-spacing:18.169086pt;}
.ws40{word-spacing:18.232837pt;}
.ws1b{word-spacing:18.296588pt;}
.wsdc{word-spacing:18.360339pt;}
.wsc0{word-spacing:18.384666pt;}
.ws33{word-spacing:18.487842pt;}
.ws9e{word-spacing:18.615344pt;}
.ws44{word-spacing:18.679095pt;}
.ws13a{word-spacing:18.742847pt;}
.ws4c{word-spacing:18.806598pt;}
.wsda{word-spacing:18.809745pt;}
.ws67{word-spacing:18.870349pt;}
.ws115{word-spacing:19.061602pt;}
.ws13e{word-spacing:19.125354pt;}
.wse2{word-spacing:19.189105pt;}
.wse0{word-spacing:19.252856pt;}
.ws57{word-spacing:19.296121pt;}
.ws6{word-spacing:19.323382pt;}
.ws133{word-spacing:19.380358pt;}
.ws119{word-spacing:19.444109pt;}
.ws12c{word-spacing:19.507861pt;}
.ws105{word-spacing:19.571612pt;}
.ws50{word-spacing:19.635363pt;}
.wse8{word-spacing:19.762865pt;}
.ws54{word-spacing:19.826617pt;}
.ws14c{word-spacing:19.890368pt;}
.ws23{word-spacing:19.954119pt;}
.wsfd{word-spacing:19.978712pt;}
.wscb{word-spacing:20.017870pt;}
.ws3d{word-spacing:20.081621pt;}
.wsf3{word-spacing:20.144572pt;}
.ws6d{word-spacing:20.145372pt;}
.ws5c{word-spacing:20.209124pt;}
.wsb4{word-spacing:20.244387pt;}
.ws25{word-spacing:20.272875pt;}
.ws65{word-spacing:20.297522pt;}
.ws85{word-spacing:20.336626pt;}
.wsfe{word-spacing:20.456926pt;}
.ws123{word-spacing:20.464128pt;}
.wsd9{word-spacing:20.510061pt;}
.ws32{word-spacing:20.591631pt;}
.ws77{word-spacing:20.655382pt;}
.ws5{word-spacing:20.662050pt;}
.ws20{word-spacing:20.719133pt;}
.ws4{word-spacing:20.720253pt;}
.ws3{word-spacing:20.778456pt;}
.ws9f{word-spacing:20.782884pt;}
.wsde{word-spacing:20.910387pt;}
.ws91{word-spacing:20.935140pt;}
.ws38{word-spacing:20.974138pt;}
.wsba{word-spacing:21.037889pt;}
.ws12b{word-spacing:21.165391pt;}
.ws9c{word-spacing:21.229142pt;}
.wsd5{word-spacing:21.292894pt;}
.ws46{word-spacing:21.356645pt;}
.ws75{word-spacing:21.420396pt;}
.ws17{word-spacing:21.484147pt;}
.wsb2{word-spacing:21.519624pt;}
.ws125{word-spacing:21.547898pt;}
.ws2a{word-spacing:21.611650pt;}
.ws80{word-spacing:21.675401pt;}
.ws12f{word-spacing:21.739152pt;}
.ws120{word-spacing:21.802903pt;}
.ws8b{word-spacing:21.866654pt;}
.ws96{word-spacing:21.944703pt;}
.ws28{word-spacing:21.994157pt;}
.ws97{word-spacing:22.121659pt;}
.wscd{word-spacing:22.157242pt;}
.ws14{word-spacing:22.185410pt;}
.wsa3{word-spacing:22.249161pt;}
.ws24{word-spacing:22.376664pt;}
.wsc3{word-spacing:22.440415pt;}
.ws104{word-spacing:22.504166pt;}
.ws102{word-spacing:22.567917pt;}
.wsac{word-spacing:22.631668pt;}
.ws11e{word-spacing:22.759171pt;}
.ws42{word-spacing:22.822922pt;}
.wsfc{word-spacing:22.847996pt;}
.ws19{word-spacing:22.886673pt;}
.ws8c{word-spacing:22.950424pt;}
.ws8d{word-spacing:23.014175pt;}
.ws106{word-spacing:23.077927pt;}
.wse7{word-spacing:23.141678pt;}
.ws53{word-spacing:23.205429pt;}
.ws4a{word-spacing:23.269180pt;}
.wsad{word-spacing:23.332931pt;}
.wsc4{word-spacing:23.396683pt;}
.ws107{word-spacing:23.460434pt;}
.ws10d{word-spacing:23.485614pt;}
.ws73{word-spacing:23.524185pt;}
.ws22{word-spacing:23.545172pt;}
.ws3f{word-spacing:23.587936pt;}
.ws4b{word-spacing:23.651687pt;}
.ws139{word-spacing:23.715438pt;}
.ws88{word-spacing:23.779190pt;}
.ws138{word-spacing:23.809198pt;}
.ws26{word-spacing:23.842941pt;}
.ws45{word-spacing:23.906692pt;}
.wsb3{word-spacing:23.963828pt;}
.wsa{word-spacing:23.970443pt;}
.ws36{word-spacing:24.034194pt;}
.wsbf{word-spacing:24.070098pt;}
.ws6e{word-spacing:24.097946pt;}
.ws132{word-spacing:24.161697pt;}
.ws79{word-spacing:24.225448pt;}
.ws10a{word-spacing:24.282637pt;}
.ws43{word-spacing:24.289199pt;}
.wsc5{word-spacing:24.352950pt;}
.ws2e{word-spacing:24.416701pt;}
.ws1d{word-spacing:24.480453pt;}
.ws61{word-spacing:24.544204pt;}
.ws64{word-spacing:24.548312pt;}
.ws10b{word-spacing:24.601446pt;}
.wsd4{word-spacing:24.607955pt;}
.wsd3{word-spacing:24.625827pt;}
.ws7a{word-spacing:24.671706pt;}
.ws27{word-spacing:24.735457pt;}
.ws121{word-spacing:24.799209pt;}
.ws2{word-spacing:24.862960pt;}
.ws4e{word-spacing:24.926711pt;}
.ws10f{word-spacing:24.990462pt;}
.ws6b{word-spacing:25.054213pt;}
.ws1c{word-spacing:25.117964pt;}
.wsd0{word-spacing:25.181716pt;}
.ws130{word-spacing:25.245467pt;}
.wse{word-spacing:25.309218pt;}
.ws14d{word-spacing:25.322875pt;}
.ws144{word-spacing:25.372969pt;}
.ws109{word-spacing:25.398470pt;}
.ws60{word-spacing:25.436720pt;}
.ws74{word-spacing:25.500471pt;}
.wsa1{word-spacing:25.627974pt;}
.ws7b{word-spacing:25.755476pt;}
.ws7c{word-spacing:25.819227pt;}
.ws7e{word-spacing:25.882979pt;}
.ws12a{word-spacing:26.010481pt;}
.ws110{word-spacing:26.074232pt;}
.wsa7{word-spacing:26.137983pt;}
.ws11{word-spacing:26.201734pt;}
.ws5a{word-spacing:26.265486pt;}
.ws9b{word-spacing:26.329237pt;}
.wsb1{word-spacing:26.408032pt;}
.ws70{word-spacing:26.456739pt;}
.wsdf{word-spacing:26.520490pt;}
.wsbe{word-spacing:26.584242pt;}
.ws6f{word-spacing:26.647993pt;}
.ws66{word-spacing:26.839246pt;}
.ws6c{word-spacing:26.902997pt;}
.ws9{word-spacing:26.966749pt;}
.ws83{word-spacing:27.030500pt;}
.ws89{word-spacing:27.094251pt;}
.ws69{word-spacing:27.158002pt;}
.wsc6{word-spacing:27.221753pt;}
.wsfa{word-spacing:27.349256pt;}
.wsa0{word-spacing:27.476758pt;}
.wsd6{word-spacing:27.604260pt;}
.ws3e{word-spacing:27.668012pt;}
.wsdd{word-spacing:27.731763pt;}
.wsd{word-spacing:27.795514pt;}
.wsaa{word-spacing:27.986767pt;}
.ws5b{word-spacing:28.050519pt;}
.wsf{word-spacing:28.178021pt;}
.ws18{word-spacing:28.241772pt;}
.ws58{word-spacing:28.300215pt;}
.ws34{word-spacing:28.305523pt;}
.ws56{word-spacing:28.333798pt;}
.ws59{word-spacing:28.369275pt;}
.wsd8{word-spacing:28.433026pt;}
.ws6a{word-spacing:28.496777pt;}
.ws16{word-spacing:28.560528pt;}
.ws8a{word-spacing:28.586562pt;}
.ws1f{word-spacing:28.624279pt;}
.wsfb{word-spacing:28.639697pt;}
.wse9{word-spacing:28.688030pt;}
.ws142{word-spacing:28.727641pt;}
.wsae{word-spacing:28.751782pt;}
.wsab{word-spacing:28.815533pt;}
.ws8{word-spacing:28.879284pt;}
.wsd1{word-spacing:28.943035pt;}
.wsd2{word-spacing:29.006786pt;}
.ws11c{word-spacing:29.070537pt;}
.ws98{word-spacing:29.134289pt;}
.wsa9{word-spacing:29.198040pt;}
.ws39{word-spacing:29.325542pt;}
.wsc8{word-spacing:29.453045pt;}
.wscc{word-spacing:29.542990pt;}
.ws7d{word-spacing:29.580547pt;}
.wsc7{word-spacing:29.644298pt;}
.wsb0{word-spacing:29.702394pt;}
.ws99{word-spacing:29.771800pt;}
.ws12d{word-spacing:29.835552pt;}
.ws81{word-spacing:29.899303pt;}
.wse6{word-spacing:30.026805pt;}
.wsa8{word-spacing:30.218059pt;}
.ws76{word-spacing:30.345561pt;}
.ws14f{word-spacing:30.409312pt;}
.ws52{word-spacing:30.473063pt;}
.wsaf{word-spacing:30.600566pt;}
.wsc1{word-spacing:30.664317pt;}
.ws113{word-spacing:30.728068pt;}
.wsf9{word-spacing:30.855570pt;}
.wscf{word-spacing:30.919322pt;}
.wsff{word-spacing:31.046824pt;}
.ws1e{word-spacing:31.110575pt;}
.ws143{word-spacing:31.186383pt;}
.ws2c{word-spacing:31.238078pt;}
.ws114{word-spacing:31.301829pt;}
.ws111{word-spacing:31.365580pt;}
.ws148{word-spacing:31.429331pt;}
.ws2d{word-spacing:31.493082pt;}
.ws13c{word-spacing:31.875589pt;}
.ws84{word-spacing:31.939341pt;}
.ws78{word-spacing:32.066843pt;}
.ws10e{word-spacing:32.146599pt;}
.wsc9{word-spacing:32.321848pt;}
.ws9a{word-spacing:32.513101pt;}
.ws2b{word-spacing:32.959359pt;}
.ws12{word-spacing:33.023111pt;}
.ws0{word-spacing:33.065256pt;}
.ws13{word-spacing:33.086862pt;}
.wsf7{word-spacing:33.150613pt;}
.ws1{word-spacing:33.175473pt;}
.ws129{word-spacing:33.341866pt;}
.ws49{word-spacing:33.528105pt;}
.ws117{word-spacing:33.596871pt;}
.ws5e{word-spacing:34.106881pt;}
.wsbd{word-spacing:34.234383pt;}
.ws35{word-spacing:34.246013pt;}
.ws7f{word-spacing:34.337825pt;}
.ws5d{word-spacing:34.553139pt;}
.wsc{word-spacing:34.616890pt;}
.ws1a{word-spacing:34.744392pt;}
.ws127{word-spacing:34.871895pt;}
.wsf8{word-spacing:35.126899pt;}
.ws100{word-spacing:35.318153pt;}
.ws10{word-spacing:35.573158pt;}
.wsec{word-spacing:35.590076pt;}
.wsf6{word-spacing:35.636909pt;}
.ws11a{word-spacing:36.210669pt;}
.ws4f{word-spacing:36.274421pt;}
.wsbc{word-spacing:36.401923pt;}
.ws29{word-spacing:36.529425pt;}
.ws14e{word-spacing:37.613195pt;}
.ws13d{word-spacing:37.868200pt;}
.wsf1{word-spacing:38.150839pt;}
.ws2f{word-spacing:38.314458pt;}
.ws141{word-spacing:38.441961pt;}
.ws137{word-spacing:39.079473pt;}
.wsed{word-spacing:39.126653pt;}
.ws140{word-spacing:39.589482pt;}
.wsdb{word-spacing:39.653233pt;}
.wsf5{word-spacing:40.800754pt;}
.wsc2{word-spacing:42.385945pt;}
.wsea{word-spacing:42.682428pt;}
.ws13f{word-spacing:42.968294pt;}
.ws7{word-spacing:49.519248pt;}
.ws147{word-spacing:49.598417pt;}
.ws146{word-spacing:50.937192pt;}
.ws145{word-spacing:51.957211pt;}
.ws37{word-spacing:53.487239pt;}
.ws14a{word-spacing:53.997248pt;}
.ws150{word-spacing:54.507258pt;}
.ws149{word-spacing:55.272272pt;}
.ws136{word-spacing:103.105288pt;}
.ws15{word-spacing:103.197100pt;}
.ws62{word-spacing:637.468993pt;}
._1e{margin-left:-32.162390pt;}
._7{margin-left:-31.207242pt;}
._4{margin-left:-29.683509pt;}
._1{margin-left:-8.266314pt;}
._24{margin-left:-6.948878pt;}
._0{margin-left:-5.731311pt;}
._b{margin-left:-4.717587pt;}
._6{margin-left:-3.375452pt;}
._2{margin-left:-2.454340pt;}
._5{margin-left:-1.106176pt;}
._19{width:0.988063pt;}
._3{width:1.989037pt;}
._e{width:3.627095pt;}
._2b{width:5.200816pt;}
._2d{width:6.865255pt;}
._1c{width:10.391442pt;}
._22{width:11.283158pt;}
._2e{width:15.195027pt;}
._21{width:16.583469pt;}
._39{width:17.579641pt;}
._25{width:18.481547pt;}
._32{width:19.766173pt;}
._3a{width:20.751089pt;}
._8{width:21.709064pt;}
._38{width:22.853224pt;}
._1a{width:23.865347pt;}
._15{width:25.420876pt;}
._12{width:26.450284pt;}
._9{width:27.973324pt;}
._31{width:29.065256pt;}
._1f{width:30.337292pt;}
._2f{width:32.130594pt;}
._34{width:33.208069pt;}
._a{width:34.231022pt;}
._13{width:36.006666pt;}
._2c{width:37.262644pt;}
._c{width:38.336171pt;}
._14{width:39.716984pt;}
._11{width:40.928257pt;}
._29{width:41.980071pt;}
._30{width:43.783136pt;}
._23{width:45.167630pt;}
._26{width:47.048370pt;}
._35{width:48.207894pt;}
._10{width:49.572917pt;}
._27{width:50.554685pt;}
._28{width:51.606659pt;}
._20{width:53.742244pt;}
._2a{width:55.112974pt;}
._3d{width:56.113094pt;}
._33{width:57.025349pt;}
._37{width:58.141075pt;}
._18{width:60.582665pt;}
._f{width:61.640668pt;}
._36{width:62.635613pt;}
._17{width:64.707446pt;}
._d{width:69.035805pt;}
._16{width:75.035137pt;}
._3b{width:84.288234pt;}
._1b{width:103.197100pt;}
._3c{width:119.977051pt;}
._1d{width:125.844827pt;}
._3e{width:130.951163pt;}
.fs16{font-size:15.999691pt;}
.fs18{font-size:25.599554pt;}
.fs11{font-size:28.799702pt;}
.fs13{font-size:29.333528pt;}
.fs15{font-size:31.999421pt;}
.fse{font-size:33.599637pt;}
.fs9{font-size:34.132710pt;}
.fs6{font-size:37.183742pt;}
.fsd{font-size:37.333179pt;}
.fs12{font-size:41.066939pt;}
.fs7{font-size:42.518569pt;}
.fsa{font-size:42.666475pt;}
.fs17{font-size:48.000272pt;}
.fsf{font-size:52.266226pt;}
.fs2{font-size:53.134874pt;}
.fs10{font-size:57.599405pt;}
.fs3{font-size:58.202959pt;}
.fsb{font-size:59.732190pt;}
.fs4{font-size:63.751179pt;}
.fsc{font-size:67.199274pt;}
.fs8{font-size:68.265336pt;}
.fs1{font-size:76.501414pt;}
.fs14{font-size:76.799527pt;}
.fs5{font-size:91.812367pt;}
.fs0{font-size:110.217519pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:4.645367pt;}
.y9d{bottom:15.522972pt;}
.y9e{bottom:23.345491pt;}
.ya5{bottom:24.506365pt;}
.y34{bottom:68.131753pt;}
.y9f{bottom:69.056661pt;}
.ya4{bottom:99.001060pt;}
.y33{bottom:107.982908pt;}
.y5e{bottom:109.492746pt;}
.y24{bottom:112.810926pt;}
.ya0{bottom:114.706964pt;}
.y32{bottom:127.241632pt;}
.y23{bottom:136.577579pt;}
.y44{bottom:138.622807pt;}
.y31{bottom:146.500356pt;}
.yd8{bottom:147.442774pt;}
.y118{bottom:154.062473pt;}
.yd7{bottom:160.063334pt;}
.ya1{bottom:160.357267pt;}
.y14e{bottom:161.664601pt;}
.yf6{bottom:162.725922pt;}
.yfc{bottom:162.726121pt;}
.y22{bottom:163.398420pt;}
.y30{bottom:165.772418pt;}
.yfd{bottom:168.504335pt;}
.yfb{bottom:170.309965pt;}
.yf9{bottom:170.558167pt;}
.yf8{bottom:172.157976pt;}
.yd6{bottom:172.508693pt;}
.y93{bottom:173.321197pt;}
.yca{bottom:179.522933pt;}
.yfe{bottom:180.861025pt;}
.y14d{bottom:180.923325pt;}
.y21{bottom:182.670481pt;}
.y2f{bottom:185.031142pt;}
.yd5{bottom:185.291654pt;}
.ya8{bottom:186.818309pt;}
.y92{bottom:192.593259pt;}
.yc9{bottom:195.460728pt;}
.yd4{bottom:197.441251pt;}
.y14c{bottom:200.182050pt;}
.y20{bottom:201.929205pt;}
.y12c{bottom:202.422677pt;}
.ya7{bottom:202.463346pt;}
.y59{bottom:204.289866pt;}
.ya2{bottom:206.007570pt;}
.yc8{bottom:211.398523pt;}
.y91{bottom:211.851983pt;}
.y1f{bottom:221.187930pt;}
.y12b{bottom:221.681401pt;}
.y58{bottom:223.548590pt;}
.ya6{bottom:225.441032pt;}
.yc7{bottom:227.336317pt;}
.y2e{bottom:230.443854pt;}
.y90{bottom:231.110707pt;}
.y14b{bottom:234.591682pt;}
.yfa{bottom:237.475446pt;}
.y1e{bottom:240.446654pt;}
.y57{bottom:242.807315pt;}
.yc6{bottom:243.274112pt;}
.y8f{bottom:250.369431pt;}
.y107{bottom:251.982396pt;}
.yf5{bottom:253.178935pt;}
.y14a{bottom:253.850406pt;}
.yf4{bottom:254.778744pt;}
.y1d{bottom:259.705378pt;}
.y56{bottom:262.079376pt;}
.y12a{bottom:266.280552pt;}
.yf3{bottom:267.263215pt;}
.yf2{bottom:268.863024pt;}
.y8e{bottom:269.628156pt;}
.y1c{bottom:278.977439pt;}
.y55{bottom:281.338100pt;}
.y149{bottom:288.273375pt;}
.y8d{bottom:288.886880pt;}
.y1b{bottom:298.236164pt;}
.yf1{bottom:298.604893pt;}
.yf0{bottom:300.204702pt;}
.y54{bottom:300.596825pt;}
.y2d{bottom:305.331483pt;}
.y148{bottom:307.532099pt;}
.y8c{bottom:308.158941pt;}
.y4c{bottom:309.347835pt;}
.y1a{bottom:317.494888pt;}
.yac{bottom:317.801641pt;}
.y53{bottom:319.855549pt;}
.y4d{bottom:323.777781pt;}
.y2c{bottom:324.590207pt;}
.y147{bottom:326.790823pt;}
.y8b{bottom:327.417666pt;}
.y111{bottom:329.204833pt;}
.yef{bottom:330.836175pt;}
.y129{bottom:331.325426pt;}
.yee{bottom:332.435984pt;}
.yab{bottom:333.739435pt;}
.y19{bottom:336.753612pt;}
.y52{bottom:339.114273pt;}
.yed{bottom:342.598342pt;}
.y2b{bottom:343.862269pt;}
.yec{bottom:344.198151pt;}
.y110{bottom:345.142627pt;}
.y8a{bottom:346.676390pt;}
.yaa{bottom:349.677230pt;}
.y128{bottom:350.584150pt;}
.yce{bottom:352.464677pt;}
.y45{bottom:352.854208pt;}
.y18{bottom:356.012337pt;}
.y51{bottom:358.372997pt;}
.y10f{bottom:361.080422pt;}
.y146{bottom:361.200455pt;}
.y2a{bottom:363.120993pt;}
.ya9{bottom:365.615025pt;}
.y89{bottom:365.935114pt;}
.ycd{bottom:368.402471pt;}
.y49{bottom:370.184554pt;}
.ye2{bottom:373.497231pt;}
.y17{bottom:375.271061pt;}
.y70{bottom:377.645059pt;}
.y48{bottom:379.717289pt;}
.y95{bottom:379.996007pt;}
.y145{bottom:380.472517pt;}
.yeb{bottom:381.438362pt;}
.y29{bottom:382.379717pt;}
.yea{bottom:383.038171pt;}
.ycc{bottom:384.353603pt;}
.yc5{bottom:385.193838pt;}
.y9c{bottom:392.006612pt;}
.y88{bottom:392.755955pt;}
.y127{bottom:394.036314pt;}
.y6f{bottom:396.903783pt;}
.ycb{bottom:400.291398pt;}
.y28{bottom:401.638442pt;}
.y50{bottom:401.985205pt;}
.yc4{bottom:404.465900pt;}
.y87{bottom:412.014679pt;}
.y144{bottom:414.882149pt;}
.y6e{bottom:416.162507pt;}
.y16{bottom:417.882989pt;}
.y4f{bottom:417.923000pt;}
.y94{bottom:418.385164pt;}
.y27{bottom:420.897166pt;}
.y96{bottom:421.242485pt;}
.yc3{bottom:423.724624pt;}
.y67{bottom:430.013453pt;}
.y86{bottom:431.286741pt;}
.y143{bottom:434.140873pt;}
.y62{bottom:435.004949pt;}
.y26{bottom:440.155890pt;}
.yc2{bottom:442.983348pt;}
.ye9{bottom:445.592246pt;}
.y47{bottom:447.107004pt;}
.ye8{bottom:447.192055pt;}
.y85{bottom:450.545465pt;}
.y46{bottom:456.639739pt;}
.ye7{bottom:456.950690pt;}
.ye6{bottom:458.550499pt;}
.y126{bottom:459.094525pt;}
.y25{bottom:459.427951pt;}
.yc1{bottom:462.242073pt;}
.y6d{bottom:462.575499pt;}
.y61{bottom:463.407382pt;}
.y4e{bottom:466.659634pt;}
.y66{bottom:468.213143pt;}
.y142{bottom:468.550505pt;}
.y84{bottom:469.804189pt;}
.y60{bottom:476.572126pt;}
.y125{bottom:478.353249pt;}
.y6c{bottom:478.513294pt;}
.y15{bottom:478.686676pt;}
.yc0{bottom:481.500797pt;}
.y141{bottom:487.822566pt;}
.ye1{bottom:489.062914pt;}
.ye5{bottom:495.387008pt;}
.y6b{bottom:496.691177pt;}
.ye4{bottom:496.986817pt;}
.y124{bottom:497.611973pt;}
.y14{bottom:497.945400pt;}
.ybf{bottom:500.759521pt;}
.ye0{bottom:508.321638pt;}
.y83{bottom:512.656185pt;}
.y123{bottom:516.870698pt;}
.y13{bottom:517.204124pt;}
.ybe{bottom:520.031582pt;}
.yf7{bottom:521.542956pt;}
.y140{bottom:522.232198pt;}
.ye3{bottom:523.986247pt;}
.ydf{bottom:527.580362pt;}
.y6a{bottom:533.400325pt;}
.y122{bottom:536.142759pt;}
.y12{bottom:536.462849pt;}
.yd2{bottom:537.783218pt;}
.ybd{bottom:539.290307pt;}
.y5f{bottom:539.331693pt;}
.y13f{bottom:541.490923pt;}
.yde{bottom:546.852423pt;}
.yd1{bottom:553.721013pt;}
.y11{bottom:555.734910pt;}
.ybc{bottom:558.549031pt;}
.y13e{bottom:560.749647pt;}
.y121{bottom:562.963600pt;}
.ydd{bottom:566.111148pt;}
.yd0{bottom:569.658807pt;}
.y82{bottom:574.660207pt;}
.y10{bottom:574.993634pt;}
.y117{bottom:577.807755pt;}
.y65{bottom:581.685675pt;}
.y120{bottom:582.222324pt;}
.ybb{bottom:585.369872pt;}
.ycf{bottom:585.596602pt;}
.y4b{bottom:593.363499pt;}
.y81{bottom:593.918932pt;}
.yf{bottom:594.252358pt;}
.y13d{bottom:595.172616pt;}
.y63{bottom:601.373523pt;}
.y11f{bottom:601.481049pt;}
.y64{bottom:602.515911pt;}
.y68{bottom:602.515930pt;}
.y4a{bottom:602.896234pt;}
.y100{bottom:603.281553pt;}
.yba{bottom:604.628596pt;}
.y80{bottom:613.177656pt;}
.ye{bottom:613.511083pt;}
.y13c{bottom:614.431340pt;}
.yff{bottom:619.219347pt;}
.y11e{bottom:620.739773pt;}
.y116{bottom:623.180456pt;}
.yb9{bottom:623.887321pt;}
.y69{bottom:628.551416pt;}
.y106{bottom:630.380266pt;}
.y7f{bottom:632.449717pt;}
.yd{bottom:632.769807pt;}
.y13b{bottom:633.690065pt;}
.y11d{bottom:639.998497pt;}
.yb8{bottom:643.159382pt;}
.y7e{bottom:651.708442pt;}
.yc{bottom:652.028531pt;}
.y13a{bottom:652.948789pt;}
.y10e{bottom:658.110234pt;}
.y11c{bottom:659.270558pt;}
.y9b{bottom:661.111074pt;}
.yb7{bottom:662.418106pt;}
.y7d{bottom:670.967166pt;}
.yb{bottom:671.300593pt;}
.y10d{bottom:677.382295pt;}
.y11b{bottom:678.529283pt;}
.y9a{bottom:680.383135pt;}
.yb6{bottom:681.676830pt;}
.y139{bottom:687.358421pt;}
.yd3{bottom:688.782227pt;}
.y7c{bottom:690.225890pt;}
.ya{bottom:690.559317pt;}
.y10c{bottom:696.641019pt;}
.y115{bottom:697.788007pt;}
.y99{bottom:699.641859pt;}
.yb5{bottom:700.935555pt;}
.y138{bottom:706.630482pt;}
.y7b{bottom:709.484614pt;}
.y9{bottom:709.818041pt;}
.ydc{bottom:710.604928pt;}
.y114{bottom:717.046731pt;}
.yb4{bottom:720.194279pt;}
.y137{bottom:725.889206pt;}
.y7a{bottom:728.743339pt;}
.y105{bottom:729.650259pt;}
.y113{bottom:736.305455pt;}
.yb3{bottom:739.453003pt;}
.y10b{bottom:741.586934pt;}
.y98{bottom:745.468020pt;}
.y104{bottom:745.588054pt;}
.y79{bottom:748.015400pt;}
.y112{bottom:755.564180pt;}
.y10a{bottom:757.538066pt;}
.y136{bottom:760.298838pt;}
.y97{bottom:761.419152pt;}
.y103{bottom:761.539186pt;}
.ydb{bottom:763.926521pt;}
.y78{bottom:767.274124pt;}
.y8{bottom:769.261347pt;}
.y109{bottom:773.475860pt;}
.y43{bottom:774.836241pt;}
.y102{bottom:777.476980pt;}
.y135{bottom:779.557563pt;}
.yda{bottom:779.877652pt;}
.yb2{bottom:784.825704pt;}
.y77{bottom:786.532849pt;}
.y108{bottom:789.413655pt;}
.y101{bottom:793.414775pt;}
.y42{bottom:794.094965pt;}
.yd9{bottom:795.815447pt;}
.y134{bottom:798.829624pt;}
.y7{bottom:803.484260pt;}
.y76{bottom:805.791573pt;}
.y41{bottom:813.353690pt;}
.y156{bottom:819.582100pt;}
.y11a{bottom:820.915806pt;}
.y75{bottom:825.050297pt;}
.y6{bottom:827.384284pt;}
.y40{bottom:832.612414pt;}
.y133{bottom:833.239256pt;}
.y155{bottom:838.840824pt;}
.y119{bottom:840.174531pt;}
.y74{bottom:844.322358pt;}
.y3f{bottom:851.871138pt;}
.y132{bottom:852.497980pt;}
.yb1{bottom:859.433255pt;}
.y73{bottom:863.581083pt;}
.y3e{bottom:871.143199pt;}
.y154{bottom:871.383267pt;}
.y131{bottom:871.756705pt;}
.y5{bottom:875.211005pt;}
.yb0{bottom:878.691979pt;}
.y72{bottom:882.839807pt;}
.y3d{bottom:890.401924pt;}
.y153{bottom:890.655328pt;}
.yaf{bottom:897.950703pt;}
.y4{bottom:899.124365pt;}
.y130{bottom:906.179674pt;}
.y3c{bottom:909.660648pt;}
.y152{bottom:909.914052pt;}
.yae{bottom:917.222765pt;}
.y3{bottom:923.024389pt;}
.y12f{bottom:925.438398pt;}
.y3b{bottom:928.919372pt;}
.yad{bottom:936.481489pt;}
.y151{bottom:942.456495pt;}
.y3a{bottom:948.178097pt;}
.y5d{bottom:955.740213pt;}
.y12e{bottom:959.848030pt;}
.y150{bottom:961.715219pt;}
.y39{bottom:967.436821pt;}
.y2{bottom:970.357638pt;}
.y5c{bottom:974.998938pt;}
.y12d{bottom:979.106754pt;}
.y14f{bottom:980.973943pt;}
.y38{bottom:986.708882pt;}
.y5b{bottom:994.257662pt;}
.y1{bottom:1003.566934pt;}
.y37{bottom:1005.967606pt;}
.y5a{bottom:1013.529723pt;}
.y71{bottom:1025.226331pt;}
.y36{bottom:1032.788447pt;}
.y35{bottom:1052.047172pt;}
.h21{height:11.647775pt;}
.h24{height:18.329281pt;}
.h7{height:18.732497pt;}
.h1e{height:23.116657pt;}
.h20{height:23.295579pt;}
.hc{height:24.848613pt;}
.h1b{height:30.593953pt;}
.h16{height:30.784807pt;}
.hd{height:31.061194pt;}
.h22{height:34.944198pt;}
.h10{height:35.182260pt;}
.h11{height:39.580372pt;}
.he{height:39.851155pt;}
.h18{height:39.973987pt;}
.h4{height:41.673319pt;}
.h1a{height:42.831534pt;}
.h12{height:43.485034pt;}
.h1c{height:43.651259pt;}
.h5{height:47.813384pt;}
.h14{height:48.921071pt;}
.hb{height:49.697164pt;}
.h13{height:51.205847pt;}
.h9{height:51.799833pt;}
.h8{height:51.853181pt;}
.h15{height:53.710194pt;}
.h3{height:57.376061pt;}
.h6{height:64.268657pt;}
.h2{height:67.645602pt;}
.h1{height:77.923786pt;}
.h19{height:246.524896pt;}
.h1d{height:433.884439pt;}
.h23{height:492.286401pt;}
.h1f{height:598.680420pt;}
.h17{height:704.281503pt;}
.ha{height:984.043859pt;}
.hf{height:1013.173920pt;}
.h0{height:1122.666667pt;}
.w3{width:328.534712pt;}
.w4{width:413.696732pt;}
.w2{width:425.591539pt;}
.w5{width:452.497548pt;}
.w1{width:602.825257pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2c{left:17.844666pt;}
.x2a{left:23.466950pt;}
.x29{left:29.211189pt;}
.x28{left:34.894560pt;}
.x3d{left:38.082516pt;}
.x2d{left:41.677938pt;}
.x39{left:44.465052pt;}
.x35{left:45.585358pt;}
.x37{left:47.224368pt;}
.x27{left:49.133788pt;}
.x3a{left:50.242255pt;}
.x36{left:51.362561pt;}
.x38{left:53.001570pt;}
.x3b{left:55.589009pt;}
.xa{left:58.202753pt;}
.x1{left:60.203313pt;}
.x46{left:66.004937pt;}
.xb{left:73.807121pt;}
.xc{left:76.007737pt;}
.x30{left:78.929515pt;}
.x2f{left:85.373161pt;}
.x47{left:90.291735pt;}
.x3c{left:100.573570pt;}
.x31{left:104.629518pt;}
.x3{left:106.856372pt;}
.x5{left:112.257884pt;}
.x3f{left:116.057658pt;}
.x16{left:120.416196pt;}
.x32{left:132.537295pt;}
.x2b{left:135.240159pt;}
.x17{left:137.513890pt;}
.x14{left:153.276569pt;}
.x33{left:159.604266pt;}
.x8{left:163.778973pt;}
.x40{left:166.469311pt;}
.xf{left:170.196737pt;}
.x15{left:171.601544pt;}
.x41{left:182.100196pt;}
.x19{left:190.508076pt;}
.x42{left:201.076140pt;}
.x7{left:206.150834pt;}
.x26{left:207.228913pt;}
.x43{left:217.694179pt;}
.x4{left:221.301741pt;}
.x1d{left:266.597029pt;}
.x13{left:271.989723pt;}
.x12{left:284.802167pt;}
.x1e{left:288.280356pt;}
.x11{left:295.261606pt;}
.x2e{left:296.329629pt;}
.x3e{left:297.564957pt;}
.x10{left:302.617732pt;}
.x1a{left:313.337703pt;}
.x20{left:317.471460pt;}
.x6{left:320.009372pt;}
.x2{left:333.026349pt;}
.x21{left:338.704918pt;}
.x22{left:340.192837pt;}
.x1c{left:347.592170pt;}
.x9{left:351.404827pt;}
.x25{left:367.741794pt;}
.x34{left:379.636601pt;}
.xe{left:392.576351pt;}
.x1f{left:393.952975pt;}
.x24{left:404.708771pt;}
.xd{left:412.541940pt;}
.x44{left:420.344124pt;}
.x18{left:428.146308pt;}
.x45{left:444.617586pt;}
.x1b{left:455.947205pt;}
.x23{left:502.659878pt;}
}




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