
    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_d325f2f1bd6e156f63a84302.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5ea5cf0128d23be44831fd7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_8cb705976f3a7b42f5e759ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080573;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_f805d8bd2c912827fb885bc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_355dedd49f63b4a005de0014.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.945801;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_c8baabf2f6df48e646316312.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936000;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_4372d972bcde3f56a3a1b45f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058000;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_e59f05c067fb8f942f9c6ff5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.058000;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_e46635cd1f507ee916433a03.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_66d023647246b77bf7b17fc3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_346b932ea09558548a92ca2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946000;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_959228ab7770d342d937fca4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.829000;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_1696e35d29adcac7561f28bf.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e59f05c067fb8f942f9c6ff5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.058000;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_70172d5308576a3b3b9cbd43.woff2')format("woff");}.fff{font-family:fff;line-height:0.628000;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_9c5a9ae127bb448d389f5c6b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.628000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.mf{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.976800px;}
.ls5{letter-spacing:2.986800px;}
.ls3{letter-spacing:2.989920px;}
.lsd{letter-spacing:3.680304px;}
.lse{letter-spacing:4.495764px;}
.ls4{letter-spacing:10.458420px;}
.ls12{letter-spacing:12.052860px;}
.ls1{letter-spacing:13.379604px;}
.lsc{letter-spacing:13.450188px;}
.ls2{letter-spacing:13.474476px;}
.lsb{letter-spacing:13.566992px;}
.lsf{letter-spacing:13.612860px;}
.ls11{letter-spacing:13.618860px;}
.ls7{letter-spacing:13.636860px;}
.lsa{letter-spacing:13.654860px;}
.ls8{letter-spacing:14.206860px;}
.ls10{letter-spacing:14.284860px;}
.ls9{letter-spacing:17.662860px;}
.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;}
}
.ws6{word-spacing:-14.944500px;}
.ws1f{word-spacing:-13.449000px;}
.ws0{word-spacing:-11.850000px;}
.ws37{word-spacing:-10.461000px;}
.ws2{word-spacing:-10.350000px;}
.ws1{word-spacing:-8.700000px;}
.ws60{word-spacing:-4.303626px;}
.ws50{word-spacing:-4.250207px;}
.ws4d{word-spacing:-4.196196px;}
.ws2c{word-spacing:-3.926839px;}
.ws7e{word-spacing:-3.604063px;}
.ws67{word-spacing:-3.550644px;}
.wsa9{word-spacing:-3.227868px;}
.ws94{word-spacing:-3.173856px;}
.ws12{word-spacing:-3.120437px;}
.ws62{word-spacing:-3.013060px;}
.ws13{word-spacing:-3.012468px;}
.ws4e{word-spacing:-2.959049px;}
.ws43{word-spacing:-2.905092px;}
.wsdd{word-spacing:-2.886985px;}
.ws117{word-spacing:-2.803590px;}
.ws52{word-spacing:-2.743704px;}
.ws39{word-spacing:-2.689692px;}
.wsf{word-spacing:-2.635681px;}
.ws10c{word-spacing:-2.552191px;}
.ws63{word-spacing:-2.528304px;}
.ws65{word-spacing:-2.474885px;}
.ws22{word-spacing:-2.439107px;}
.ws9a{word-spacing:-2.366916px;}
.wsf9{word-spacing:-2.301378px;}
.ws72{word-spacing:-2.205528px;}
.wsae{word-spacing:-2.151517px;}
.ws58{word-spacing:-2.098098px;}
.ws66{word-spacing:-1.990721px;}
.ws11f{word-spacing:-1.966542px;}
.ws98{word-spacing:-1.936710px;}
.ws6f{word-spacing:-1.882699px;}
.ws74{word-spacing:-1.828741px;}
.wsf3{word-spacing:-1.673760px;}
.ws101{word-spacing:-1.590365px;}
.ws42{word-spacing:-1.559923px;}
.ws5c{word-spacing:-1.506557px;}
.ws73{word-spacing:-1.452546px;}
.ws47{word-spacing:-1.398535px;}
.ws9e{word-spacing:-1.397616px;}
.ws75{word-spacing:-1.345115px;}
.ws89{word-spacing:-1.291158px;}
.ws7d{word-spacing:-1.237738px;}
.ws8b{word-spacing:-1.237147px;}
.ws2b{word-spacing:-1.183727px;}
.ws2f{word-spacing:-1.129770px;}
.wsd{word-spacing:-0.860951px;}
.ws6c{word-spacing:-0.860359px;}
.ws41{word-spacing:-0.752983px;}
.ws122{word-spacing:-0.711306px;}
.ws61{word-spacing:-0.645552px;}
.ws9d{word-spacing:-0.591595px;}
.ws76{word-spacing:-0.484164px;}
.ws1b{word-spacing:-0.460535px;}
.ws6b{word-spacing:-0.430207px;}
.ws35{word-spacing:-0.376787px;}
.ws9b{word-spacing:-0.322776px;}
.ws87{word-spacing:-0.269410px;}
.ws10{word-spacing:-0.268765px;}
.ws2d{word-spacing:-0.215399px;}
.ws2e{word-spacing:-0.214807px;}
.wsf7{word-spacing:-0.209094px;}
.wsba{word-spacing:-0.179412px;}
.wsf2{word-spacing:-0.167711px;}
.ws100{word-spacing:-0.167125px;}
.ws16{word-spacing:-0.161388px;}
.ws28{word-spacing:-0.143556px;}
.wsbe{word-spacing:-0.143400px;}
.ws123{word-spacing:-0.125699px;}
.ws3b{word-spacing:-0.107969px;}
.wsb6{word-spacing:-0.107425px;}
.wsb{word-spacing:-0.107377px;}
.wsd4{word-spacing:-0.083688px;}
.wsca{word-spacing:-0.071987px;}
.ws1d{word-spacing:-0.065454px;}
.ws9{word-spacing:-0.054011px;}
.ws64{word-spacing:-0.053796px;}
.ws4f{word-spacing:-0.053419px;}
.ws107{word-spacing:-0.041844px;}
.wse7{word-spacing:-0.041718px;}
.wsc4{word-spacing:-0.038856px;}
.wsc0{word-spacing:-0.036011px;}
.wsb7{word-spacing:-0.013297px;}
.wsa4{word-spacing:-0.000293px;}
.ws29{word-spacing:-0.000143px;}
.ws3{word-spacing:0.000000px;}
.ws51{word-spacing:0.000293px;}
.ws10d{word-spacing:0.001884px;}
.wsb3{word-spacing:0.019032px;}
.ws110{word-spacing:0.030234px;}
.wsb2{word-spacing:0.036011px;}
.wse4{word-spacing:0.041718px;}
.ws24{word-spacing:0.047868px;}
.ws3d{word-spacing:0.054011px;}
.wsc3{word-spacing:0.071413px;}
.wsc5{word-spacing:0.071987px;}
.wsa3{word-spacing:0.083688px;}
.ws23{word-spacing:0.095879px;}
.ws15{word-spacing:0.107377px;}
.wsed{word-spacing:0.125699px;}
.wsbb{word-spacing:0.143400px;}
.ws10e{word-spacing:0.154189px;}
.ws8{word-spacing:0.161388px;}
.ws116{word-spacing:0.167083px;}
.wsdc{word-spacing:0.167711px;}
.ws59{word-spacing:0.209053px;}
.wsdf{word-spacing:0.209094px;}
.wsa6{word-spacing:0.214807px;}
.ws34{word-spacing:0.215399px;}
.ws102{word-spacing:0.251106px;}
.ws54{word-spacing:0.268765px;}
.ws79{word-spacing:0.322776px;}
.ws113{word-spacing:0.376512px;}
.ws32{word-spacing:0.376787px;}
.ws99{word-spacing:0.430798px;}
.ws40{word-spacing:0.538175px;}
.ws6d{word-spacing:0.591595px;}
.ws88{word-spacing:0.645552px;}
.ws82{word-spacing:0.699563px;}
.wse{word-spacing:0.752983px;}
.wsf8{word-spacing:0.753318px;}
.ws70{word-spacing:0.806940px;}
.ws71{word-spacing:0.860951px;}
.wse1{word-spacing:0.920735px;}
.ws10b{word-spacing:0.962747px;}
.ws109{word-spacing:1.004130px;}
.ws11{word-spacing:1.075759px;}
.wsd6{word-spacing:1.088111px;}
.ws11e{word-spacing:1.171548px;}
.wscc{word-spacing:1.183727px;}
.wse6{word-spacing:1.338924px;}
.ws21{word-spacing:1.339056px;}
.ws6e{word-spacing:1.345115px;}
.wse5{word-spacing:1.380936px;}
.ws7{word-spacing:1.398535px;}
.ws84{word-spacing:1.452546px;}
.ws8a{word-spacing:1.505911px;}
.ws83{word-spacing:1.506557px;}
.ws9c{word-spacing:1.721311px;}
.ws8c{word-spacing:1.775322px;}
.wscf{word-spacing:1.829333px;}
.wsab{word-spacing:1.936710px;}
.wsd9{word-spacing:1.966542px;}
.wsda{word-spacing:1.967170px;}
.ws81{word-spacing:1.990721px;}
.wsaf{word-spacing:2.044087px;}
.wsa7{word-spacing:2.044732px;}
.wsc{word-spacing:2.098098px;}
.ws8e{word-spacing:2.152109px;}
.ws11c{word-spacing:2.217983px;}
.ws1e{word-spacing:2.312905px;}
.ws68{word-spacing:2.313497px;}
.ws97{word-spacing:2.366916px;}
.ws11b{word-spacing:2.468754px;}
.ws78{word-spacing:2.636273px;}
.wscd{word-spacing:2.689692px;}
.ws6a{word-spacing:2.743704px;}
.wscb{word-spacing:2.797069px;}
.ws5a{word-spacing:2.797661px;}
.ws55{word-spacing:2.851080px;}
.ws96{word-spacing:2.958457px;}
.ws105{word-spacing:2.970966px;}
.ws17{word-spacing:3.066480px;}
.wsee{word-spacing:3.096372px;}
.wsd3{word-spacing:3.119845px;}
.wsd1{word-spacing:3.120437px;}
.ws8d{word-spacing:3.173856px;}
.wsaa{word-spacing:3.281233px;}
.ws108{word-spacing:3.305802px;}
.wsce{word-spacing:3.335244px;}
.ws14{word-spacing:3.389256px;}
.wse0{word-spacing:3.431208px;}
.ws104{word-spacing:3.515189px;}
.ws7f{word-spacing:3.550644px;}
.ws86{word-spacing:3.658020px;}
.wsef{word-spacing:3.723990px;}
.wsfa{word-spacing:3.764862px;}
.ws125{word-spacing:3.808013px;}
.ws4a{word-spacing:3.873420px;}
.wsea{word-spacing:3.933420px;}
.ws56{word-spacing:3.980796px;}
.wsec{word-spacing:4.016815px;}
.ws48{word-spacing:4.034808px;}
.ws49{word-spacing:4.088227px;}
.ws114{word-spacing:4.096285px;}
.ws36{word-spacing:4.196196px;}
.ws8f{word-spacing:4.250207px;}
.ws44{word-spacing:4.465014px;}
.wse2{word-spacing:4.600129px;}
.ws126{word-spacing:4.686444px;}
.ws31{word-spacing:4.733779px;}
.ws11a{word-spacing:4.770425px;}
.ws30{word-spacing:4.841801px;}
.wsd5{word-spacing:4.853820px;}
.wsd2{word-spacing:4.949178px;}
.wsa{word-spacing:5.056555px;}
.ws33{word-spacing:5.217943px;}
.wsad{word-spacing:5.271954px;}
.wsac{word-spacing:5.325965px;}
.ws77{word-spacing:5.379385px;}
.ws4b{word-spacing:5.594730px;}
.wsdb{word-spacing:5.607473px;}
.ws93{word-spacing:5.648741px;}
.ws45{word-spacing:5.702161px;}
.wsa0{word-spacing:5.810129px;}
.ws3c{word-spacing:7.316095px;}
.ws118{word-spacing:7.615566px;}
.ws85{word-spacing:8.015658px;}
.ws124{word-spacing:8.075808px;}
.ws120{word-spacing:8.451986px;}
.wsf4{word-spacing:8.745396px;}
.wsb9{word-spacing:8.751720px;}
.wsb5{word-spacing:8.821452px;}
.wsc9{word-spacing:8.857428px;}
.wsc1{word-spacing:8.895121px;}
.wsb8{word-spacing:8.918004px;}
.wsbf{word-spacing:8.918172px;}
.wsbd{word-spacing:8.919085px;}
.wsb0{word-spacing:8.922985px;}
.wsb1{word-spacing:8.943168px;}
.wsb4{word-spacing:8.945256px;}
.wsc8{word-spacing:8.967143px;}
.wsc6{word-spacing:9.003024px;}
.wsc7{word-spacing:9.003119px;}
.wsc2{word-spacing:9.031392px;}
.wsbc{word-spacing:9.058176px;}
.ws5f{word-spacing:9.091578px;}
.ws4c{word-spacing:9.145589px;}
.ws26{word-spacing:9.229260px;}
.ws121{word-spacing:9.749819px;}
.wsf6{word-spacing:10.209434px;}
.wsfe{word-spacing:10.210062px;}
.ws127{word-spacing:10.335468px;}
.wse8{word-spacing:10.377354px;}
.wse3{word-spacing:10.418863px;}
.wse9{word-spacing:10.419156px;}
.ws1c{word-spacing:10.419449px;}
.ws111{word-spacing:10.460874px;}
.wsf1{word-spacing:10.461460px;}
.wsf5{word-spacing:10.502844px;}
.wsff{word-spacing:10.544270px;}
.ws106{word-spacing:10.544855px;}
.wsde{word-spacing:10.586239px;}
.ws103{word-spacing:10.670262px;}
.ws3a{word-spacing:10.705512px;}
.ws112{word-spacing:10.795668px;}
.wsfd{word-spacing:11.172013px;}
.wsa1{word-spacing:11.189676px;}
.ws10a{word-spacing:11.381275px;}
.wsfc{word-spacing:11.399136px;}
.wsd7{word-spacing:11.507267px;}
.ws27{word-spacing:11.763624px;}
.ws69{word-spacing:11.781270px;}
.ws11d{word-spacing:11.800092px;}
.ws20{word-spacing:11.907180px;}
.ws25{word-spacing:12.003059px;}
.ws7c{word-spacing:12.158057px;}
.ws9f{word-spacing:12.258270px;}
.wsd8{word-spacing:12.385698px;}
.wsa8{word-spacing:13.218996px;}
.ws5d{word-spacing:13.233816px;}
.wsd0{word-spacing:13.341193px;}
.ws19{word-spacing:13.341785px;}
.ws1a{word-spacing:13.395204px;}
.ws3e{word-spacing:13.448623px;}
.ws5e{word-spacing:13.449215px;}
.ws5b{word-spacing:13.502581px;}
.ws57{word-spacing:13.556592px;}
.wsa5{word-spacing:13.604209px;}
.ws53{word-spacing:13.610603px;}
.ws92{word-spacing:13.663969px;}
.ws7a{word-spacing:13.717980px;}
.ws3f{word-spacing:13.932787px;}
.wsf0{word-spacing:14.143146px;}
.wsfb{word-spacing:14.185158px;}
.ws91{word-spacing:14.202144px;}
.wseb{word-spacing:14.352576px;}
.ws115{word-spacing:14.519952px;}
.ws10f{word-spacing:14.561503px;}
.wsa2{word-spacing:14.740319px;}
.ws119{word-spacing:15.189581px;}
.ws38{word-spacing:15.493302px;}
.ws7b{word-spacing:15.923508px;}
.ws18{word-spacing:16.298046px;}
.ws46{word-spacing:16.298177px;}
.ws80{word-spacing:16.730448px;}
.ws90{word-spacing:17.645411px;}
.ws5{word-spacing:25.718900px;}
.ws4{word-spacing:25.719210px;}
.ws2a{word-spacing:65.388546px;}
.ws95{word-spacing:152.259660px;}
._8{margin-left:-8.492607px;}
._7{margin-left:-6.507270px;}
._1{margin-left:-5.400000px;}
._2{margin-left:-4.176000px;}
._6{margin-left:-3.131420px;}
._2d{margin-left:-2.117953px;}
._5{margin-left:-1.087817px;}
._0{width:1.112400px;}
._3{width:2.321400px;}
._4{width:3.388200px;}
._12{width:4.526112px;}
._28{width:9.849114px;}
._13{width:10.866146px;}
._9{width:12.318638px;}
._26{width:13.503495px;}
._14{width:14.632835px;}
._11{width:16.210557px;}
._2f{width:18.106306px;}
._2b{width:20.461800px;}
._31{width:23.995109px;}
._30{width:25.524714px;}
._2a{width:28.529417px;}
._2c{width:30.169482px;}
._2e{width:33.015418px;}
._29{width:48.096591px;}
._27{width:58.715916px;}
._1d{width:59.791956px;}
._19{width:63.486360px;}
._10{width:65.454000px;}
._17{width:79.196508px;}
._1c{width:87.087432px;}
._21{width:93.472044px;}
._16{width:103.443312px;}
._18{width:121.377312px;}
._23{width:128.551020px;}
._1b{width:145.624331px;}
._15{width:147.202272px;}
._1a{width:148.350012px;}
._22{width:162.625440px;}
._f{width:165.314888px;}
._d{width:166.414939px;}
._1e{width:190.889496px;}
._e{width:244.408642px;}
._25{width:257.402139px;}
._20{width:268.902396px;}
._c{width:284.204661px;}
._24{width:287.266812px;}
._1f{width:295.803396px;}
._b{width:513.787907px;}
._a{width:1897.479077px;}
.fc2{color:transparent;}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:0.000000px;}
.fsd{font-size:32.880000px;}
.fs4{font-size:34.800000px;}
.fs12{font-size:35.868000px;}
.fs13{font-size:38.856000px;}
.fs5{font-size:41.400000px;}
.fse{font-size:41.844000px;}
.fs10{font-size:43.638000px;}
.fs2{font-size:47.400000px;}
.fsf{font-size:47.820000px;}
.fs9{font-size:52.602000px;}
.fsc{font-size:53.796000px;}
.fs11{font-size:54.000000px;}
.fs1{font-size:59.400000px;}
.fsa{font-size:59.778000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:65.454000px;}
.fs8{font-size:71.730000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:18.307499px;}
.y3e{bottom:34.943999px;}
.y93{bottom:43.905000px;}
.y3d{bottom:47.364000px;}
.y3c{bottom:59.784001px;}
.y6d{bottom:126.979500px;}
.y92{bottom:130.938000px;}
.yb3{bottom:130.939500px;}
.y23c{bottom:138.918000px;}
.y6c{bottom:138.934500px;}
.y18c{bottom:139.311000px;}
.y18b{bottom:143.271000px;}
.yfd{bottom:143.416500px;}
.y91{bottom:143.556000px;}
.y23b{bottom:150.873000px;}
.y6b{bottom:150.889500px;}
.yc6{bottom:152.914500px;}
.y142{bottom:155.755500px;}
.y90{bottom:156.174000px;}
.yfc{bottom:159.855000px;}
.y23a{bottom:162.828000px;}
.y1f0{bottom:162.844500px;}
.y121{bottom:163.965000px;}
.y6a{bottom:164.040000px;}
.yc5{bottom:169.353000px;}
.y141{bottom:172.194000px;}
.y18a{bottom:172.887000px;}
.y239{bottom:174.784500px;}
.y1ef{bottom:174.799500px;}
.yfb{bottom:176.293500px;}
.yb2{bottom:176.386500px;}
.y69{bottom:177.190500px;}
.y8f{bottom:183.096000px;}
.yc4{bottom:185.791500px;}
.y238{bottom:186.739500px;}
.y1ee{bottom:186.754500px;}
.y140{bottom:188.632500px;}
.y189{bottom:189.325500px;}
.yfa{bottom:192.732000px;}
.yb1{bottom:192.825000px;}
.y237{bottom:198.694500px;}
.y1ed{bottom:198.709500px;}
.y8e{bottom:199.534500px;}
.yc3{bottom:202.230000px;}
.y120{bottom:204.157500px;}
.y13f{bottom:205.071000px;}
.y188{bottom:205.764000px;}
.yf9{bottom:209.170500px;}
.yb0{bottom:209.262000px;}
.y236{bottom:210.649500px;}
.y1ec{bottom:210.664500px;}
.y8d{bottom:215.971500px;}
.yc2{bottom:218.668500px;}
.y11f{bottom:220.596000px;}
.y13e{bottom:221.509500px;}
.y187{bottom:222.201000px;}
.y235{bottom:222.604500px;}
.y1eb{bottom:222.619500px;}
.yf8{bottom:225.609000px;}
.yaf{bottom:225.700500px;}
.y8c{bottom:232.410000px;}
.y234{bottom:234.559500px;}
.y1ea{bottom:234.576000px;}
.y11e{bottom:237.034500px;}
.y13d{bottom:237.948000px;}
.yc1{bottom:238.555500px;}
.y186{bottom:238.639500px;}
.yf7{bottom:242.047500px;}
.yae{bottom:242.139000px;}
.y233{bottom:246.514500px;}
.y1e9{bottom:246.531000px;}
.y68{bottom:249.595500px;}
.y8b{bottom:253.162500px;}
.y11d{bottom:253.473000px;}
.y13c{bottom:254.386500px;}
.yc0{bottom:254.994000px;}
.y185{bottom:255.078000px;}
.y232{bottom:258.469500px;}
.yf6{bottom:258.486000px;}
.yad{bottom:258.577500px;}
.y8a{bottom:269.601000px;}
.y11c{bottom:269.911500px;}
.y231{bottom:270.424500px;}
.y1e8{bottom:270.441000px;}
.y13b{bottom:270.823500px;}
.ybf{bottom:271.432500px;}
.y184{bottom:271.516500px;}
.yf5{bottom:274.924500px;}
.yac{bottom:275.016000px;}
.y230{bottom:282.381000px;}
.y1e7{bottom:282.396000px;}
.y89{bottom:286.039500px;}
.y11b{bottom:286.350000px;}
.y13a{bottom:287.262000px;}
.ybe{bottom:287.871000px;}
.y183{bottom:287.955000px;}
.y67{bottom:288.319500px;}
.yf4{bottom:291.363000px;}
.yab{bottom:291.454500px;}
.y22f{bottom:294.336000px;}
.y1e6{bottom:294.351000px;}
.y88{bottom:302.478000px;}
.y11a{bottom:302.787000px;}
.y139{bottom:303.700500px;}
.ybd{bottom:304.309500px;}
.y182{bottom:304.393500px;}
.y66{bottom:304.758000px;}
.y22e{bottom:306.291000px;}
.y1e5{bottom:306.306000px;}
.yf3{bottom:307.800000px;}
.yaa{bottom:307.893000px;}
.y22d{bottom:318.246000px;}
.y1e4{bottom:318.261000px;}
.y86{bottom:318.916500px;}
.y119{bottom:319.225500px;}
.y138{bottom:320.139000px;}
.ybc{bottom:320.748000px;}
.y181{bottom:320.832000px;}
.y87{bottom:323.799000px;}
.yf2{bottom:324.238500px;}
.ya9{bottom:324.331500px;}
.y65{bottom:325.305000px;}
.y22c{bottom:330.201000px;}
.y1e3{bottom:330.216000px;}
.y85{bottom:335.355000px;}
.y118{bottom:335.664000px;}
.y137{bottom:336.577500px;}
.ybb{bottom:337.186500px;}
.y180{bottom:337.270500px;}
.yf1{bottom:340.677000px;}
.ya8{bottom:340.770000px;}
.y22b{bottom:342.156000px;}
.y1e2{bottom:342.172500px;}
.y84{bottom:351.793500px;}
.y117{bottom:352.102500px;}
.y136{bottom:353.016000px;}
.yba{bottom:353.625000px;}
.y17f{bottom:353.709000px;}
.y22a{bottom:354.111000px;}
.y1e1{bottom:354.127500px;}
.yf0{bottom:357.115500px;}
.ya7{bottom:357.208500px;}
.y64{bottom:360.699000px;}
.y229{bottom:366.066000px;}
.y1e0{bottom:366.082500px;}
.y82{bottom:368.232000px;}
.y116{bottom:368.541000px;}
.y135{bottom:369.454500px;}
.yb9{bottom:370.063500px;}
.y83{bottom:373.114500px;}
.y155{bottom:373.554000px;}
.ya6{bottom:373.645500px;}
.y17e{bottom:374.932500px;}
.y63{bottom:377.136000px;}
.y228{bottom:378.021000px;}
.yef{bottom:379.033500px;}
.y1df{bottom:382.147500px;}
.y115{bottom:384.979500px;}
.y134{bottom:385.893000px;}
.yb7{bottom:386.500500px;}
.y81{bottom:388.984500px;}
.y227{bottom:389.977500px;}
.y154{bottom:389.992500px;}
.ya5{bottom:390.084000px;}
.y17d{bottom:391.371000px;}
.yb8{bottom:391.383000px;}
.y62{bottom:393.574500px;}
.yee{bottom:395.472000px;}
.y114{bottom:401.418000px;}
.y1d1{bottom:401.829000px;}
.y226{bottom:401.932500px;}
.y133{bottom:402.331500px;}
.yb6{bottom:402.939000px;}
.y80{bottom:405.423000px;}
.y153{bottom:406.431000px;}
.ya4{bottom:406.522500px;}
.y17c{bottom:407.809500px;}
.y61{bottom:410.013000px;}
.yed{bottom:411.910500px;}
.y225{bottom:413.887500px;}
.y113{bottom:417.856500px;}
.y1d0{bottom:418.266000px;}
.y132{bottom:418.770000px;}
.yb5{bottom:419.377500px;}
.y7e{bottom:421.861500px;}
.y1de{bottom:422.809500px;}
.y152{bottom:422.869500px;}
.ya3{bottom:422.961000px;}
.y17b{bottom:424.248000px;}
.y224{bottom:425.842500px;}
.y60{bottom:426.451500px;}
.y7f{bottom:426.742500px;}
.yec{bottom:428.349000px;}
.y112{bottom:434.295000px;}
.y1cf{bottom:434.704500px;}
.y131{bottom:435.207000px;}
.y223{bottom:437.797500px;}
.y7d{bottom:438.300000px;}
.y1dd{bottom:439.248000px;}
.y151{bottom:439.308000px;}
.ya2{bottom:439.399500px;}
.yb4{bottom:439.926000px;}
.y17a{bottom:440.686500px;}
.y5f{bottom:442.890000px;}
.yeb{bottom:444.787500px;}
.y222{bottom:449.752500px;}
.y111{bottom:450.733500px;}
.y1ce{bottom:451.143000px;}
.y12f{bottom:451.645500px;}
.y7c{bottom:454.737000px;}
.y1dc{bottom:455.686500px;}
.y150{bottom:455.746500px;}
.ya1{bottom:455.838000px;}
.y130{bottom:456.528000px;}
.y5e{bottom:459.328500px;}
.yea{bottom:461.226000px;}
.y179{bottom:461.235000px;}
.y221{bottom:461.707500px;}
.y110{bottom:467.172000px;}
.y1cd{bottom:467.581500px;}
.y12e{bottom:468.084000px;}
.y7b{bottom:471.175500px;}
.y1db{bottom:472.125000px;}
.y14f{bottom:472.185000px;}
.ya0{bottom:472.276500px;}
.y220{bottom:473.662500px;}
.y5d{bottom:475.767000px;}
.y1a5{bottom:476.293500px;}
.ye9{bottom:477.663000px;}
.y10f{bottom:483.609000px;}
.y1cc{bottom:484.020000px;}
.y12d{bottom:484.522500px;}
.y21f{bottom:485.617500px;}
.y7a{bottom:487.614000px;}
.y1da{bottom:488.563500px;}
.y14e{bottom:488.622000px;}
.y9f{bottom:488.715000px;}
.y5c{bottom:492.205500px;}
.ye8{bottom:494.101500px;}
.y178{bottom:494.974500px;}
.y21e{bottom:497.574000px;}
.y10e{bottom:500.047500px;}
.y1cb{bottom:500.458500px;}
.y12c{bottom:500.961000px;}
.y79{bottom:504.052500px;}
.y1d9{bottom:505.002000px;}
.y14d{bottom:505.060500px;}
.y9e{bottom:505.153500px;}
.y5b{bottom:508.644000px;}
.y21d{bottom:509.529000px;}
.y1a4{bottom:510.391500px;}
.ye7{bottom:510.540000px;}
.y177{bottom:511.411500px;}
.y10d{bottom:516.486000px;}
.y1ca{bottom:516.897000px;}
.y12b{bottom:517.399500px;}
.y78{bottom:520.491000px;}
.y1d8{bottom:521.439000px;}
.y21c{bottom:521.484000px;}
.y14c{bottom:521.499000px;}
.y9d{bottom:521.592000px;}
.y5a{bottom:525.082500px;}
.y1a3{bottom:526.830000px;}
.ye6{bottom:526.978500px;}
.y176{bottom:527.850000px;}
.y10c{bottom:532.924500px;}
.y1c9{bottom:533.335500px;}
.y21b{bottom:533.439000px;}
.y12a{bottom:533.838000px;}
.y77{bottom:536.929500px;}
.y1d7{bottom:537.877500px;}
.y14b{bottom:537.937500px;}
.y9b{bottom:538.030500px;}
.y59{bottom:541.519500px;}
.y9c{bottom:542.911500px;}
.y1a2{bottom:543.268500px;}
.ye5{bottom:543.417000px;}
.y175{bottom:544.288500px;}
.y21a{bottom:545.394000px;}
.y10b{bottom:549.363000px;}
.y1c8{bottom:549.774000px;}
.y129{bottom:550.276500px;}
.y1d6{bottom:554.316000px;}
.y14a{bottom:554.376000px;}
.y99{bottom:554.467500px;}
.y219{bottom:557.349000px;}
.y76{bottom:557.478000px;}
.y58{bottom:557.958000px;}
.y9a{bottom:559.350000px;}
.y1a1{bottom:559.707000px;}
.y174{bottom:560.727000px;}
.y25{bottom:560.928021px;}
.ye4{bottom:565.335000px;}
.y10a{bottom:565.801500px;}
.y1c7{bottom:566.212500px;}
.y128{bottom:566.715000px;}
.y218{bottom:569.304000px;}
.y24{bottom:570.142484px;}
.y1d5{bottom:570.754500px;}
.y149{bottom:570.814500px;}
.y57{bottom:574.396500px;}
.y1a0{bottom:576.145500px;}
.y173{bottom:577.165500px;}
.y217{bottom:581.259000px;}
.ye3{bottom:581.773500px;}
.y109{bottom:582.240000px;}
.y1c6{bottom:582.651000px;}
.y127{bottom:583.153500px;}
.y23{bottom:586.247983px;}
.y1d4{bottom:587.193000px;}
.y148{bottom:587.253000px;}
.y56{bottom:590.835000px;}
.y19f{bottom:592.582500px;}
.y216{bottom:593.214000px;}
.y172{bottom:593.604000px;}
.y75{bottom:594.162000px;}
.y22{bottom:595.462491px;}
.y98{bottom:596.760000px;}
.ye2{bottom:598.212000px;}
.y108{bottom:598.678500px;}
.y1c5{bottom:599.088000px;}
.y126{bottom:599.592000px;}
.y1d3{bottom:603.631500px;}
.y147{bottom:603.691500px;}
.y215{bottom:605.170500px;}
.y55{bottom:607.273500px;}
.y19e{bottom:609.021000px;}
.y74{bottom:609.106500px;}
.y171{bottom:610.042500px;}
.y21{bottom:611.567990px;}
.ye1{bottom:614.650500px;}
.y107{bottom:615.117000px;}
.y1c4{bottom:615.526500px;}
.y125{bottom:616.029000px;}
.y214{bottom:617.125500px;}
.y146{bottom:620.130000px;}
.y20{bottom:620.782498px;}
.y54{bottom:623.712000px;}
.y73{bottom:624.049500px;}
.y1d2{bottom:624.180000px;}
.y19d{bottom:625.459500px;}
.y170{bottom:626.481000px;}
.y213{bottom:629.080500px;}
.ye0{bottom:631.089000px;}
.y97{bottom:631.131000px;}
.y106{bottom:631.555500px;}
.y1c3{bottom:631.965000px;}
.y124{bottom:632.467500px;}
.y145{bottom:636.568500px;}
.y1f{bottom:636.887997px;}
.y72{bottom:638.994000px;}
.y53{bottom:640.150500px;}
.y212{bottom:641.035500px;}
.y19c{bottom:641.898000px;}
.y16f{bottom:642.919500px;}
.y1e{bottom:646.102505px;}
.ydf{bottom:647.526000px;}
.y105{bottom:647.992500px;}
.y1c2{bottom:648.403500px;}
.y123{bottom:648.906000px;}
.y211{bottom:652.990500px;}
.y144{bottom:653.005500px;}
.y71{bottom:653.937000px;}
.y52{bottom:656.589000px;}
.y19b{bottom:658.336500px;}
.y16e{bottom:659.358000px;}
.y1d{bottom:662.208005px;}
.yde{bottom:663.964500px;}
.y104{bottom:664.431000px;}
.y1c1{bottom:664.842000px;}
.y210{bottom:664.945500px;}
.y70{bottom:668.881500px;}
.y143{bottom:669.444000px;}
.y122{bottom:669.454500px;}
.y1c{bottom:671.422513px;}
.y51{bottom:673.027500px;}
.y16d{bottom:675.795000px;}
.y20f{bottom:676.900500px;}
.y19a{bottom:679.905000px;}
.y1c0{bottom:681.280500px;}
.y6f{bottom:683.826000px;}
.y103{bottom:684.979500px;}
.ydd{bottom:685.882500px;}
.y1b{bottom:687.528012px;}
.y20e{bottom:688.855500px;}
.y50{bottom:689.466000px;}
.y16c{bottom:692.233500px;}
.y199{bottom:696.343500px;}
.y1a{bottom:696.742520px;}
.y1bf{bottom:697.719000px;}
.y6e{bottom:698.769000px;}
.y20d{bottom:700.810500px;}
.ydc{bottom:702.321000px;}
.y4f{bottom:705.904500px;}
.y16a{bottom:708.672000px;}
.y20c{bottom:712.767000px;}
.y198{bottom:712.782000px;}
.y19{bottom:712.848019px;}
.y16b{bottom:713.554500px;}
.y1be{bottom:714.157500px;}
.ydb{bottom:718.759500px;}
.y18{bottom:722.062482px;}
.y4e{bottom:722.341500px;}
.y20b{bottom:724.722000px;}
.y169{bottom:725.110500px;}
.y102{bottom:725.172000px;}
.y197{bottom:729.220500px;}
.y1bd{bottom:730.596000px;}
.yda{bottom:735.198000px;}
.y20a{bottom:736.677000px;}
.y17{bottom:738.167981px;}
.y4d{bottom:738.780000px;}
.y168{bottom:741.549000px;}
.y101{bottom:741.610500px;}
.y196{bottom:745.659000px;}
.y16{bottom:745.667981px;}
.y1bc{bottom:747.034500px;}
.y209{bottom:748.632000px;}
.yd9{bottom:751.636500px;}
.y15{bottom:754.954495px;}
.y167{bottom:757.987500px;}
.y4c{bottom:759.328500px;}
.y208{bottom:760.587000px;}
.y195{bottom:762.097500px;}
.y1bb{bottom:763.471500px;}
.yd8{bottom:768.075000px;}
.y14{bottom:771.537007px;}
.y207{bottom:772.542000px;}
.y166{bottom:774.426000px;}
.y194{bottom:778.536000px;}
.y13{bottom:780.823499px;}
.y206{bottom:784.497000px;}
.yd7{bottom:784.513500px;}
.y4b{bottom:785.950500px;}
.y165{bottom:790.864500px;}
.y193{bottom:794.974500px;}
.y205{bottom:796.452000px;}
.y12{bottom:797.406010px;}
.yd6{bottom:800.952000px;}
.y96{bottom:803.026500px;}
.y4a{bottom:803.883000px;}
.y11{bottom:806.692502px;}
.y164{bottom:807.303000px;}
.y1ba{bottom:807.393000px;}
.y204{bottom:808.407000px;}
.y192{bottom:811.411500px;}
.yd5{bottom:817.390500px;}
.y100{bottom:817.648500px;}
.y1b9{bottom:817.854000px;}
.y203{bottom:820.363500px;}
.y49{bottom:821.817000px;}
.y10{bottom:823.274991px;}
.y163{bottom:823.741500px;}
.y191{bottom:827.850000px;}
.y1b8{bottom:828.313500px;}
.y202{bottom:832.318500px;}
.yf{bottom:832.561505px;}
.yd4{bottom:833.827500px;}
.yff{bottom:834.085500px;}
.y1b7{bottom:839.373000px;}
.y162{bottom:840.180000px;}
.y201{bottom:844.273500px;}
.y190{bottom:844.288500px;}
.ye{bottom:849.143994px;}
.y1b6{bottom:849.834000px;}
.yd3{bottom:850.266000px;}
.yfe{bottom:850.524000px;}
.y48{bottom:855.595500px;}
.y200{bottom:856.228500px;}
.y161{bottom:856.617000px;}
.yd{bottom:858.430508px;}
.y1b5{bottom:860.293500px;}
.y18f{bottom:860.727000px;}
.y3b{bottom:863.128491px;}
.yd2{bottom:866.704500px;}
.y1ff{bottom:868.183500px;}
.y1b4{bottom:870.754500px;}
.y160{bottom:873.055500px;}
.y47{bottom:873.528000px;}
.yc{bottom:875.012997px;}
.y3a{bottom:875.548489px;}
.y18e{bottom:877.165500px;}
.y1fe{bottom:880.138500px;}
.y1b3{bottom:881.215500px;}
.yd1{bottom:883.143000px;}
.yb{bottom:884.299489px;}
.y39{bottom:887.910008px;}
.y15f{bottom:889.494000px;}
.y46{bottom:891.462000px;}
.y1fd{bottom:892.093500px;}
.y1b2{bottom:892.273500px;}
.y18d{bottom:893.604000px;}
.y38{bottom:895.410008px;}
.yd0{bottom:899.581500px;}
.ya{bottom:900.882001px;}
.y1b1{bottom:902.734500px;}
.y37{bottom:902.964001px;}
.y1fc{bottom:904.048500px;}
.y15e{bottom:910.042500px;}
.y9{bottom:910.168492px;}
.y1b0{bottom:913.195500px;}
.y36{bottom:915.384000px;}
.y1fb{bottom:916.003500px;}
.ycf{bottom:916.020000px;}
.y1af{bottom:923.656500px;}
.y45{bottom:925.240500px;}
.y1fa{bottom:927.960000px;}
.y35{bottom:929.308507px;}
.yce{bottom:932.458500px;}
.y1ae{bottom:934.714500px;}
.y95{bottom:939.615000px;}
.y1f9{bottom:939.915000px;}
.y34{bottom:941.728505px;}
.y44{bottom:943.173000px;}
.y8{bottom:944.625005px;}
.y1ad{bottom:945.175500px;}
.ycd{bottom:948.897000px;}
.y1f8{bottom:951.870000px;}
.y33{bottom:954.148503px;}
.y1ac{bottom:955.636500px;}
.y43{bottom:961.105500px;}
.y1f7{bottom:963.825000px;}
.ycc{bottom:965.335500px;}
.y7{bottom:966.224995px;}
.y32{bottom:966.509999px;}
.y1ab{bottom:966.694500px;}
.y15d{bottom:970.266000px;}
.y31{bottom:974.009999px;}
.y1f6{bottom:975.780000px;}
.y1aa{bottom:977.155500px;}
.y42{bottom:979.039500px;}
.y30{bottom:981.568501px;}
.ycb{bottom:981.774000px;}
.y6{bottom:986.368497px;}
.y15c{bottom:986.704500px;}
.y1f5{bottom:987.735000px;}
.y1a9{bottom:988.215000px;}
.y2f{bottom:993.929997px;}
.yca{bottom:998.211000px;}
.y1a8{bottom:998.674500px;}
.y1f4{bottom:999.690000px;}
.y2e{bottom:1001.429997px;}
.y15b{bottom:1002.844500px;}
.y5{bottom:1002.951000px;}
.y2d{bottom:1008.988499px;}
.y4{bottom:1010.451000px;}
.y1f3{bottom:1011.645000px;}
.y15a{bottom:1013.305500px;}
.yc9{bottom:1014.649500px;}
.y41{bottom:1014.675000px;}
.y1a7{bottom:1015.908000px;}
.y3{bottom:1019.737500px;}
.y2c{bottom:1021.350001px;}
.y1f2{bottom:1023.616500px;}
.y159{bottom:1023.766500px;}
.y2b{bottom:1028.850001px;}
.yc8{bottom:1031.088000px;}
.y158{bottom:1034.226000px;}
.y1f1{bottom:1035.571500px;}
.y2a{bottom:1035.802499px;}
.y2{bottom:1036.320000px;}
.y1{bottom:1043.820000px;}
.y40{bottom:1044.562500px;}
.y157{bottom:1044.687000px;}
.y29{bottom:1046.242500px;}
.yc7{bottom:1047.526500px;}
.y1a6{bottom:1050.964500px;}
.y156{bottom:1055.148000px;}
.y28{bottom:1056.682499px;}
.y27{bottom:1067.122500px;}
.y26{bottom:1077.562500px;}
.y94{bottom:1086.979500px;}
.h1{height:0.000000px;}
.h20{height:24.013008px;}
.h1e{height:25.107600px;}
.h13{height:26.961600px;}
.h8{height:28.907227px;}
.ha{height:29.311523px;}
.h6{height:29.328516px;}
.h1d{height:29.411760px;}
.h1c{height:29.500020px;}
.h15{height:29.625552px;}
.h1f{height:31.861920px;}
.h3{height:33.096680px;}
.h16{height:33.474000px;}
.h18{height:33.856560px;}
.h14{height:34.312080px;}
.h7{height:34.890820px;}
.h19{height:35.783160px;}
.h1b{height:37.152000px;}
.h1a{height:37.657200px;}
.h12{height:38.571732px;}
.h17{height:39.212400px;}
.h9{height:40.611621px;}
.h2{height:41.475586px;}
.h11{height:44.112720px;}
.h10{height:45.817800px;}
.he{height:49.017960px;}
.h5{height:50.060742px;}
.hf{height:58.818600px;}
.h4{height:60.679688px;}
.hb{height:62.578125px;}
.hd{height:69.167640px;}
.hc{height:72.096420px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:75.900000px;}
.x22{left:80.697000px;}
.x9{left:82.485000px;}
.x4a{left:85.437000px;}
.x3b{left:88.170000px;}
.x41{left:95.641500px;}
.x4b{left:97.945500px;}
.x73{left:103.851000px;}
.x2{left:105.382500px;}
.x4f{left:116.812500px;}
.x8{left:117.864000px;}
.x74{left:122.364000px;}
.x58{left:123.555000px;}
.x75{left:127.344000px;}
.xd{left:134.029500px;}
.x3c{left:136.446000px;}
.x42{left:138.942000px;}
.x59{left:140.116500px;}
.x17{left:142.039500px;}
.x16{left:145.546500px;}
.x43{left:152.640000px;}
.x66{left:157.698000px;}
.xa{left:158.965500px;}
.x48{left:164.167500px;}
.x44{left:165.241500px;}
.x3a{left:168.909000px;}
.xb{left:171.172500px;}
.x49{left:176.676000px;}
.x45{left:177.750000px;}
.x46{left:184.098000px;}
.x18{left:189.874500px;}
.x50{left:195.522000px;}
.xc{left:196.531500px;}
.x4c{left:203.625000px;}
.x51{left:208.030500px;}
.x47{left:209.230500px;}
.x54{left:210.246000px;}
.x52{left:214.504500px;}
.x5d{left:216.255000px;}
.x6d{left:220.261500px;}
.x53{left:227.013000px;}
.x5a{left:229.419000px;}
.x1c{left:230.542500px;}
.x5e{left:235.132500px;}
.x6e{left:240.049500px;}
.x1d{left:244.371000px;}
.x5b{left:250.075500px;}
.x23{left:266.664000px;}
.x24{left:283.813500px;}
.x65{left:290.703000px;}
.x3d{left:301.821000px;}
.x55{left:310.609500px;}
.x3e{left:311.611500px;}
.x5{left:319.087509px;}
.x1e{left:322.393500px;}
.x70{left:335.035500px;}
.x5c{left:337.380000px;}
.x6b{left:344.497500px;}
.x5f{left:351.391500px;}
.x63{left:363.373500px;}
.x64{left:369.193500px;}
.x60{left:374.364000px;}
.x11{left:378.915000px;}
.xe{left:383.131500px;}
.x56{left:384.784500px;}
.x57{left:397.920000px;}
.xf{left:417.396000px;}
.x3f{left:428.452500px;}
.x6f{left:430.557000px;}
.x40{left:434.707500px;}
.x10{left:442.756500px;}
.x39{left:452.250000px;}
.x25{left:476.932500px;}
.x69{left:481.749000px;}
.x20{left:484.692000px;}
.x2c{left:491.877000px;}
.x6a{left:494.257500px;}
.x71{left:499.752000px;}
.x36{left:500.883000px;}
.x37{left:513.546000px;}
.x2d{left:529.495500px;}
.x2e{left:535.750500px;}
.x1f{left:539.055000px;}
.x35{left:540.555000px;}
.x2f{left:542.146500px;}
.x21{left:544.917000px;}
.x38{left:547.570500px;}
.x30{left:554.655000px;}
.x31{left:561.051000px;}
.x32{left:573.559500px;}
.x72{left:579.126000px;}
.x15{left:591.825000px;}
.x1a{left:603.553500px;}
.x33{left:620.026500px;}
.x12{left:623.527500px;}
.x34{left:626.280000px;}
.x13{left:627.358500px;}
.x19{left:649.606500px;}
.x14{left:655.536000px;}
.x1b{left:688.233000px;}
.x61{left:691.959000px;}
.x4{left:695.550000px;}
.x6{left:696.671997px;}
.x62{left:704.466000px;}
.x4d{left:723.117000px;}
.x4e{left:728.937000px;}
.x6c{left:733.426500px;}
.x3{left:741.187500px;}
.x26{left:749.398500px;}
.x27{left:755.652000px;}
.x28{left:761.554500px;}
.x29{left:767.808000px;}
.x2a{left:773.709000px;}
.x7{left:775.191010px;}
.x2b{left:786.217500px;}
.x67{left:818.964000px;}
.x68{left:831.472500px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.868267pt;}
.ls5{letter-spacing:2.654933pt;}
.ls3{letter-spacing:2.657707pt;}
.lsd{letter-spacing:3.271381pt;}
.lse{letter-spacing:3.996235pt;}
.ls4{letter-spacing:9.296373pt;}
.ls12{letter-spacing:10.713653pt;}
.ls1{letter-spacing:11.892981pt;}
.lsc{letter-spacing:11.955723pt;}
.ls2{letter-spacing:11.977312pt;}
.lsb{letter-spacing:12.059548pt;}
.lsf{letter-spacing:12.100320pt;}
.ls11{letter-spacing:12.105653pt;}
.ls7{letter-spacing:12.121653pt;}
.lsa{letter-spacing:12.137653pt;}
.ls8{letter-spacing:12.628320pt;}
.ls10{letter-spacing:12.697653pt;}
.ls9{letter-spacing:15.700320pt;}
.ws6{word-spacing:-13.284000pt;}
.ws1f{word-spacing:-11.954667pt;}
.ws0{word-spacing:-10.533333pt;}
.ws37{word-spacing:-9.298667pt;}
.ws2{word-spacing:-9.200000pt;}
.ws1{word-spacing:-7.733333pt;}
.ws60{word-spacing:-3.825446pt;}
.ws50{word-spacing:-3.777962pt;}
.ws4d{word-spacing:-3.729952pt;}
.ws2c{word-spacing:-3.490524pt;}
.ws7e{word-spacing:-3.203612pt;}
.ws67{word-spacing:-3.156128pt;}
.wsa9{word-spacing:-2.869216pt;}
.ws94{word-spacing:-2.821206pt;}
.ws12{word-spacing:-2.773722pt;}
.ws62{word-spacing:-2.678276pt;}
.ws13{word-spacing:-2.677750pt;}
.ws4e{word-spacing:-2.630266pt;}
.ws43{word-spacing:-2.582304pt;}
.wsdd{word-spacing:-2.566209pt;}
.ws117{word-spacing:-2.492080pt;}
.ws52{word-spacing:-2.438848pt;}
.ws39{word-spacing:-2.390838pt;}
.wsf{word-spacing:-2.342828pt;}
.ws10c{word-spacing:-2.268614pt;}
.ws63{word-spacing:-2.247382pt;}
.ws65{word-spacing:-2.199898pt;}
.ws22{word-spacing:-2.168095pt;}
.ws9a{word-spacing:-2.103926pt;}
.wsf9{word-spacing:-2.045669pt;}
.ws72{word-spacing:-1.960470pt;}
.wsae{word-spacing:-1.912460pt;}
.ws58{word-spacing:-1.864976pt;}
.ws66{word-spacing:-1.769530pt;}
.ws11f{word-spacing:-1.748038pt;}
.ws98{word-spacing:-1.721520pt;}
.ws6f{word-spacing:-1.673510pt;}
.ws74{word-spacing:-1.625548pt;}
.wsf3{word-spacing:-1.487787pt;}
.ws101{word-spacing:-1.413658pt;}
.ws42{word-spacing:-1.386598pt;}
.ws5c{word-spacing:-1.339162pt;}
.ws73{word-spacing:-1.291152pt;}
.ws47{word-spacing:-1.243142pt;}
.ws9e{word-spacing:-1.242325pt;}
.ws75{word-spacing:-1.195658pt;}
.ws89{word-spacing:-1.147696pt;}
.ws7d{word-spacing:-1.100212pt;}
.ws8b{word-spacing:-1.099686pt;}
.ws2b{word-spacing:-1.052202pt;}
.ws2f{word-spacing:-1.004240pt;}
.wsd{word-spacing:-0.765290pt;}
.ws6c{word-spacing:-0.764764pt;}
.ws41{word-spacing:-0.669318pt;}
.ws122{word-spacing:-0.632272pt;}
.ws61{word-spacing:-0.573824pt;}
.ws9d{word-spacing:-0.525862pt;}
.ws76{word-spacing:-0.430368pt;}
.ws1b{word-spacing:-0.409365pt;}
.ws6b{word-spacing:-0.382406pt;}
.ws35{word-spacing:-0.334922pt;}
.ws9b{word-spacing:-0.286912pt;}
.ws87{word-spacing:-0.239476pt;}
.ws10{word-spacing:-0.238902pt;}
.ws2d{word-spacing:-0.191466pt;}
.ws2e{word-spacing:-0.190940pt;}
.wsf7{word-spacing:-0.185862pt;}
.wsba{word-spacing:-0.159477pt;}
.wsf2{word-spacing:-0.149076pt;}
.ws100{word-spacing:-0.148555pt;}
.ws16{word-spacing:-0.143456pt;}
.ws28{word-spacing:-0.127605pt;}
.wsbe{word-spacing:-0.127467pt;}
.ws123{word-spacing:-0.111733pt;}
.ws3b{word-spacing:-0.095972pt;}
.wsb6{word-spacing:-0.095489pt;}
.wsb{word-spacing:-0.095446pt;}
.wsd4{word-spacing:-0.074389pt;}
.wsca{word-spacing:-0.063989pt;}
.ws1d{word-spacing:-0.058181pt;}
.ws9{word-spacing:-0.048010pt;}
.ws64{word-spacing:-0.047819pt;}
.ws4f{word-spacing:-0.047484pt;}
.ws107{word-spacing:-0.037195pt;}
.wse7{word-spacing:-0.037083pt;}
.wsc4{word-spacing:-0.034539pt;}
.wsc0{word-spacing:-0.032010pt;}
.wsb7{word-spacing:-0.011819pt;}
.wsa4{word-spacing:-0.000260pt;}
.ws29{word-spacing:-0.000128pt;}
.ws3{word-spacing:0.000000pt;}
.ws51{word-spacing:0.000260pt;}
.ws10d{word-spacing:0.001675pt;}
.wsb3{word-spacing:0.016917pt;}
.ws110{word-spacing:0.026874pt;}
.wsb2{word-spacing:0.032010pt;}
.wse4{word-spacing:0.037083pt;}
.ws24{word-spacing:0.042549pt;}
.ws3d{word-spacing:0.048010pt;}
.wsc3{word-spacing:0.063478pt;}
.wsc5{word-spacing:0.063989pt;}
.wsa3{word-spacing:0.074389pt;}
.ws23{word-spacing:0.085226pt;}
.ws15{word-spacing:0.095446pt;}
.wsed{word-spacing:0.111733pt;}
.wsbb{word-spacing:0.127467pt;}
.ws10e{word-spacing:0.137057pt;}
.ws8{word-spacing:0.143456pt;}
.ws116{word-spacing:0.148518pt;}
.wsdc{word-spacing:0.149076pt;}
.ws59{word-spacing:0.185825pt;}
.wsdf{word-spacing:0.185862pt;}
.wsa6{word-spacing:0.190940pt;}
.ws34{word-spacing:0.191466pt;}
.ws102{word-spacing:0.223205pt;}
.ws54{word-spacing:0.238902pt;}
.ws79{word-spacing:0.286912pt;}
.ws113{word-spacing:0.334678pt;}
.ws32{word-spacing:0.334922pt;}
.ws99{word-spacing:0.382932pt;}
.ws40{word-spacing:0.478378pt;}
.ws6d{word-spacing:0.525862pt;}
.ws88{word-spacing:0.573824pt;}
.ws82{word-spacing:0.621834pt;}
.wse{word-spacing:0.669318pt;}
.wsf8{word-spacing:0.669616pt;}
.ws70{word-spacing:0.717280pt;}
.ws71{word-spacing:0.765290pt;}
.wse1{word-spacing:0.818431pt;}
.ws10b{word-spacing:0.855775pt;}
.ws109{word-spacing:0.892560pt;}
.ws11{word-spacing:0.956230pt;}
.wsd6{word-spacing:0.967210pt;}
.ws11e{word-spacing:1.041376pt;}
.wscc{word-spacing:1.052202pt;}
.wse6{word-spacing:1.190155pt;}
.ws21{word-spacing:1.190272pt;}
.ws6e{word-spacing:1.195658pt;}
.wse5{word-spacing:1.227498pt;}
.ws7{word-spacing:1.243142pt;}
.ws84{word-spacing:1.291152pt;}
.ws8a{word-spacing:1.338588pt;}
.ws83{word-spacing:1.339162pt;}
.ws9c{word-spacing:1.530054pt;}
.ws8c{word-spacing:1.578064pt;}
.wscf{word-spacing:1.626074pt;}
.wsab{word-spacing:1.721520pt;}
.wsd9{word-spacing:1.748038pt;}
.wsda{word-spacing:1.748596pt;}
.ws81{word-spacing:1.769530pt;}
.wsaf{word-spacing:1.816966pt;}
.wsa7{word-spacing:1.817540pt;}
.wsc{word-spacing:1.864976pt;}
.ws8e{word-spacing:1.912986pt;}
.ws11c{word-spacing:1.971541pt;}
.ws1e{word-spacing:2.055916pt;}
.ws68{word-spacing:2.056442pt;}
.ws97{word-spacing:2.103926pt;}
.ws11b{word-spacing:2.194448pt;}
.ws78{word-spacing:2.343354pt;}
.wscd{word-spacing:2.390838pt;}
.ws6a{word-spacing:2.438848pt;}
.wscb{word-spacing:2.486284pt;}
.ws5a{word-spacing:2.486810pt;}
.ws55{word-spacing:2.534294pt;}
.ws96{word-spacing:2.629740pt;}
.ws105{word-spacing:2.640859pt;}
.ws17{word-spacing:2.725760pt;}
.wsee{word-spacing:2.752331pt;}
.wsd3{word-spacing:2.773196pt;}
.wsd1{word-spacing:2.773722pt;}
.ws8d{word-spacing:2.821206pt;}
.wsaa{word-spacing:2.916652pt;}
.ws108{word-spacing:2.938490pt;}
.wsce{word-spacing:2.964662pt;}
.ws14{word-spacing:3.012672pt;}
.wse0{word-spacing:3.049963pt;}
.ws104{word-spacing:3.124612pt;}
.ws7f{word-spacing:3.156128pt;}
.ws86{word-spacing:3.251574pt;}
.wsef{word-spacing:3.310214pt;}
.wsfa{word-spacing:3.346544pt;}
.ws125{word-spacing:3.384901pt;}
.ws4a{word-spacing:3.443040pt;}
.wsea{word-spacing:3.496373pt;}
.ws56{word-spacing:3.538486pt;}
.wsec{word-spacing:3.570502pt;}
.ws48{word-spacing:3.586496pt;}
.ws49{word-spacing:3.633980pt;}
.ws114{word-spacing:3.641142pt;}
.ws36{word-spacing:3.729952pt;}
.ws8f{word-spacing:3.777962pt;}
.ws44{word-spacing:3.968902pt;}
.wse2{word-spacing:4.089003pt;}
.ws126{word-spacing:4.165728pt;}
.ws31{word-spacing:4.207804pt;}
.ws11a{word-spacing:4.240378pt;}
.ws30{word-spacing:4.303823pt;}
.wsd5{word-spacing:4.314507pt;}
.wsd2{word-spacing:4.399270pt;}
.wsa{word-spacing:4.494716pt;}
.ws33{word-spacing:4.638172pt;}
.wsad{word-spacing:4.686182pt;}
.wsac{word-spacing:4.734191pt;}
.ws77{word-spacing:4.781675pt;}
.ws4b{word-spacing:4.973094pt;}
.wsdb{word-spacing:4.984420pt;}
.ws93{word-spacing:5.021103pt;}
.ws45{word-spacing:5.068587pt;}
.wsa0{word-spacing:5.164559pt;}
.ws3c{word-spacing:6.503195pt;}
.ws118{word-spacing:6.769392pt;}
.ws85{word-spacing:7.125029pt;}
.ws124{word-spacing:7.178496pt;}
.ws120{word-spacing:7.512876pt;}
.wsf4{word-spacing:7.773685pt;}
.wsb9{word-spacing:7.779307pt;}
.wsb5{word-spacing:7.841291pt;}
.wsc9{word-spacing:7.873270pt;}
.wsc1{word-spacing:7.906774pt;}
.wsb8{word-spacing:7.927115pt;}
.wsbf{word-spacing:7.927264pt;}
.wsbd{word-spacing:7.928075pt;}
.wsb0{word-spacing:7.931542pt;}
.wsb1{word-spacing:7.949483pt;}
.wsb4{word-spacing:7.951339pt;}
.wsc8{word-spacing:7.970794pt;}
.wsc6{word-spacing:8.002688pt;}
.wsc7{word-spacing:8.002773pt;}
.wsc2{word-spacing:8.027904pt;}
.wsbc{word-spacing:8.051712pt;}
.ws5f{word-spacing:8.081402pt;}
.ws4c{word-spacing:8.129412pt;}
.ws26{word-spacing:8.203787pt;}
.ws121{word-spacing:8.666506pt;}
.wsf6{word-spacing:9.075052pt;}
.wsfe{word-spacing:9.075610pt;}
.ws127{word-spacing:9.187083pt;}
.wse8{word-spacing:9.224315pt;}
.wse3{word-spacing:9.261212pt;}
.wse9{word-spacing:9.261472pt;}
.ws1c{word-spacing:9.261732pt;}
.ws111{word-spacing:9.298555pt;}
.wsf1{word-spacing:9.299076pt;}
.wsf5{word-spacing:9.335861pt;}
.wsff{word-spacing:9.372684pt;}
.ws106{word-spacing:9.373205pt;}
.wsde{word-spacing:9.409990pt;}
.ws103{word-spacing:9.484677pt;}
.ws3a{word-spacing:9.516010pt;}
.ws112{word-spacing:9.596150pt;}
.wsfd{word-spacing:9.930678pt;}
.wsa1{word-spacing:9.946378pt;}
.ws10a{word-spacing:10.116689pt;}
.wsfc{word-spacing:10.132565pt;}
.wsd7{word-spacing:10.228682pt;}
.ws27{word-spacing:10.456555pt;}
.ws69{word-spacing:10.472240pt;}
.ws11d{word-spacing:10.488970pt;}
.ws20{word-spacing:10.584160pt;}
.ws25{word-spacing:10.669386pt;}
.ws7c{word-spacing:10.807162pt;}
.ws9f{word-spacing:10.896240pt;}
.wsd8{word-spacing:11.009510pt;}
.wsa8{word-spacing:11.750219pt;}
.ws5d{word-spacing:11.763392pt;}
.wsd0{word-spacing:11.858838pt;}
.ws19{word-spacing:11.859364pt;}
.ws1a{word-spacing:11.906848pt;}
.ws3e{word-spacing:11.954332pt;}
.ws5e{word-spacing:11.954858pt;}
.ws5b{word-spacing:12.002294pt;}
.ws57{word-spacing:12.050304pt;}
.wsa5{word-spacing:12.092630pt;}
.ws53{word-spacing:12.098314pt;}
.ws92{word-spacing:12.145750pt;}
.ws7a{word-spacing:12.193760pt;}
.ws3f{word-spacing:12.384700pt;}
.wsf0{word-spacing:12.571686pt;}
.wsfb{word-spacing:12.609029pt;}
.ws91{word-spacing:12.624128pt;}
.wseb{word-spacing:12.757845pt;}
.ws115{word-spacing:12.906624pt;}
.ws10f{word-spacing:12.943558pt;}
.wsa2{word-spacing:13.102506pt;}
.ws119{word-spacing:13.501850pt;}
.ws38{word-spacing:13.771824pt;}
.ws7b{word-spacing:14.154230pt;}
.ws18{word-spacing:14.487152pt;}
.ws46{word-spacing:14.487268pt;}
.ws80{word-spacing:14.871510pt;}
.ws90{word-spacing:15.684810pt;}
.ws5{word-spacing:22.861245pt;}
.ws4{word-spacing:22.861520pt;}
.ws2a{word-spacing:58.123152pt;}
.ws95{word-spacing:135.341920pt;}
._8{margin-left:-7.548984pt;}
._7{margin-left:-5.784240pt;}
._1{margin-left:-4.800000pt;}
._2{margin-left:-3.712000pt;}
._6{margin-left:-2.783485pt;}
._2d{margin-left:-1.882625pt;}
._5{margin-left:-0.966948pt;}
._0{width:0.988800pt;}
._3{width:2.063467pt;}
._4{width:3.011733pt;}
._12{width:4.023211pt;}
._28{width:8.754768pt;}
._13{width:9.658797pt;}
._9{width:10.949901pt;}
._26{width:12.003107pt;}
._14{width:13.006964pt;}
._11{width:14.409384pt;}
._2f{width:16.094494pt;}
._2b{width:18.188266pt;}
._31{width:21.328986pt;}
._30{width:22.688635pt;}
._2a{width:25.359482pt;}
._2c{width:26.817317pt;}
._2e{width:29.347038pt;}
._29{width:42.752525pt;}
._27{width:52.191925pt;}
._1d{width:53.148405pt;}
._19{width:56.432320pt;}
._10{width:58.181333pt;}
._17{width:70.396896pt;}
._1c{width:77.411051pt;}
._21{width:83.086261pt;}
._16{width:91.949611pt;}
._18{width:107.890944pt;}
._23{width:114.267573pt;}
._1b{width:129.443850pt;}
._15{width:130.846464pt;}
._1a{width:131.866677pt;}
._22{width:144.555947pt;}
._f{width:146.946567pt;}
._d{width:147.924390pt;}
._1e{width:169.679552pt;}
._e{width:217.252126pt;}
._25{width:228.801902pt;}
._20{width:239.024352pt;}
._c{width:252.626365pt;}
._24{width:255.348277pt;}
._1f{width:262.936352pt;}
._b{width:456.700362pt;}
._a{width:1686.648068pt;}
.fs0{font-size:0.000000pt;}
.fsd{font-size:29.226667pt;}
.fs4{font-size:30.933333pt;}
.fs12{font-size:31.882667pt;}
.fs13{font-size:34.538667pt;}
.fs5{font-size:36.800000pt;}
.fse{font-size:37.194667pt;}
.fs10{font-size:38.789333pt;}
.fs2{font-size:42.133333pt;}
.fsf{font-size:42.506667pt;}
.fs9{font-size:46.757333pt;}
.fsc{font-size:47.818667pt;}
.fs11{font-size:48.000000pt;}
.fs1{font-size:52.800000pt;}
.fsa{font-size:53.136000pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:58.181333pt;}
.fs8{font-size:63.760000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:16.273333pt;}
.y3e{bottom:31.061332pt;}
.y93{bottom:39.026667pt;}
.y3d{bottom:42.101333pt;}
.y3c{bottom:53.141334pt;}
.y6d{bottom:112.870667pt;}
.y92{bottom:116.389333pt;}
.yb3{bottom:116.390667pt;}
.y23c{bottom:123.482667pt;}
.y6c{bottom:123.497333pt;}
.y18c{bottom:123.832000pt;}
.y18b{bottom:127.352000pt;}
.yfd{bottom:127.481333pt;}
.y91{bottom:127.605333pt;}
.y23b{bottom:134.109333pt;}
.y6b{bottom:134.124000pt;}
.yc6{bottom:135.924000pt;}
.y142{bottom:138.449333pt;}
.y90{bottom:138.821333pt;}
.yfc{bottom:142.093333pt;}
.y23a{bottom:144.736000pt;}
.y1f0{bottom:144.750667pt;}
.y121{bottom:145.746667pt;}
.y6a{bottom:145.813333pt;}
.yc5{bottom:150.536000pt;}
.y141{bottom:153.061333pt;}
.y18a{bottom:153.677333pt;}
.y239{bottom:155.364000pt;}
.y1ef{bottom:155.377333pt;}
.yfb{bottom:156.705333pt;}
.yb2{bottom:156.788000pt;}
.y69{bottom:157.502667pt;}
.y8f{bottom:162.752000pt;}
.yc4{bottom:165.148000pt;}
.y238{bottom:165.990667pt;}
.y1ee{bottom:166.004000pt;}
.y140{bottom:167.673333pt;}
.y189{bottom:168.289333pt;}
.yfa{bottom:171.317333pt;}
.yb1{bottom:171.400000pt;}
.y237{bottom:176.617333pt;}
.y1ed{bottom:176.630667pt;}
.y8e{bottom:177.364000pt;}
.yc3{bottom:179.760000pt;}
.y120{bottom:181.473333pt;}
.y13f{bottom:182.285333pt;}
.y188{bottom:182.901333pt;}
.yf9{bottom:185.929333pt;}
.yb0{bottom:186.010667pt;}
.y236{bottom:187.244000pt;}
.y1ec{bottom:187.257333pt;}
.y8d{bottom:191.974667pt;}
.yc2{bottom:194.372000pt;}
.y11f{bottom:196.085333pt;}
.y13e{bottom:196.897333pt;}
.y187{bottom:197.512000pt;}
.y235{bottom:197.870667pt;}
.y1eb{bottom:197.884000pt;}
.yf8{bottom:200.541333pt;}
.yaf{bottom:200.622667pt;}
.y8c{bottom:206.586667pt;}
.y234{bottom:208.497333pt;}
.y1ea{bottom:208.512000pt;}
.y11e{bottom:210.697333pt;}
.y13d{bottom:211.509333pt;}
.yc1{bottom:212.049333pt;}
.y186{bottom:212.124000pt;}
.yf7{bottom:215.153333pt;}
.yae{bottom:215.234667pt;}
.y233{bottom:219.124000pt;}
.y1e9{bottom:219.138667pt;}
.y68{bottom:221.862667pt;}
.y8b{bottom:225.033333pt;}
.y11d{bottom:225.309333pt;}
.y13c{bottom:226.121333pt;}
.yc0{bottom:226.661333pt;}
.y185{bottom:226.736000pt;}
.y232{bottom:229.750667pt;}
.yf6{bottom:229.765333pt;}
.yad{bottom:229.846667pt;}
.y8a{bottom:239.645333pt;}
.y11c{bottom:239.921333pt;}
.y231{bottom:240.377333pt;}
.y1e8{bottom:240.392000pt;}
.y13b{bottom:240.732000pt;}
.ybf{bottom:241.273333pt;}
.y184{bottom:241.348000pt;}
.yf5{bottom:244.377333pt;}
.yac{bottom:244.458667pt;}
.y230{bottom:251.005333pt;}
.y1e7{bottom:251.018667pt;}
.y89{bottom:254.257333pt;}
.y11b{bottom:254.533333pt;}
.y13a{bottom:255.344000pt;}
.ybe{bottom:255.885333pt;}
.y183{bottom:255.960000pt;}
.y67{bottom:256.284000pt;}
.yf4{bottom:258.989333pt;}
.yab{bottom:259.070667pt;}
.y22f{bottom:261.632000pt;}
.y1e6{bottom:261.645333pt;}
.y88{bottom:268.869333pt;}
.y11a{bottom:269.144000pt;}
.y139{bottom:269.956000pt;}
.ybd{bottom:270.497333pt;}
.y182{bottom:270.572000pt;}
.y66{bottom:270.896000pt;}
.y22e{bottom:272.258667pt;}
.y1e5{bottom:272.272000pt;}
.yf3{bottom:273.600000pt;}
.yaa{bottom:273.682667pt;}
.y22d{bottom:282.885333pt;}
.y1e4{bottom:282.898667pt;}
.y86{bottom:283.481333pt;}
.y119{bottom:283.756000pt;}
.y138{bottom:284.568000pt;}
.ybc{bottom:285.109333pt;}
.y181{bottom:285.184000pt;}
.y87{bottom:287.821333pt;}
.yf2{bottom:288.212000pt;}
.ya9{bottom:288.294667pt;}
.y65{bottom:289.160000pt;}
.y22c{bottom:293.512000pt;}
.y1e3{bottom:293.525333pt;}
.y85{bottom:298.093333pt;}
.y118{bottom:298.368000pt;}
.y137{bottom:299.180000pt;}
.ybb{bottom:299.721333pt;}
.y180{bottom:299.796000pt;}
.yf1{bottom:302.824000pt;}
.ya8{bottom:302.906667pt;}
.y22b{bottom:304.138667pt;}
.y1e2{bottom:304.153333pt;}
.y84{bottom:312.705333pt;}
.y117{bottom:312.980000pt;}
.y136{bottom:313.792000pt;}
.yba{bottom:314.333333pt;}
.y17f{bottom:314.408000pt;}
.y22a{bottom:314.765333pt;}
.y1e1{bottom:314.780000pt;}
.yf0{bottom:317.436000pt;}
.ya7{bottom:317.518667pt;}
.y64{bottom:320.621333pt;}
.y229{bottom:325.392000pt;}
.y1e0{bottom:325.406667pt;}
.y82{bottom:327.317333pt;}
.y116{bottom:327.592000pt;}
.y135{bottom:328.404000pt;}
.yb9{bottom:328.945333pt;}
.y83{bottom:331.657333pt;}
.y155{bottom:332.048000pt;}
.ya6{bottom:332.129333pt;}
.y17e{bottom:333.273333pt;}
.y63{bottom:335.232000pt;}
.y228{bottom:336.018667pt;}
.yef{bottom:336.918667pt;}
.y1df{bottom:339.686667pt;}
.y115{bottom:342.204000pt;}
.y134{bottom:343.016000pt;}
.yb7{bottom:343.556000pt;}
.y81{bottom:345.764000pt;}
.y227{bottom:346.646667pt;}
.y154{bottom:346.660000pt;}
.ya5{bottom:346.741333pt;}
.y17d{bottom:347.885333pt;}
.yb8{bottom:347.896000pt;}
.y62{bottom:349.844000pt;}
.yee{bottom:351.530667pt;}
.y114{bottom:356.816000pt;}
.y1d1{bottom:357.181333pt;}
.y226{bottom:357.273333pt;}
.y133{bottom:357.628000pt;}
.yb6{bottom:358.168000pt;}
.y80{bottom:360.376000pt;}
.y153{bottom:361.272000pt;}
.ya4{bottom:361.353333pt;}
.y17c{bottom:362.497333pt;}
.y61{bottom:364.456000pt;}
.yed{bottom:366.142667pt;}
.y225{bottom:367.900000pt;}
.y113{bottom:371.428000pt;}
.y1d0{bottom:371.792000pt;}
.y132{bottom:372.240000pt;}
.yb5{bottom:372.780000pt;}
.y7e{bottom:374.988000pt;}
.y1de{bottom:375.830667pt;}
.y152{bottom:375.884000pt;}
.ya3{bottom:375.965333pt;}
.y17b{bottom:377.109333pt;}
.y224{bottom:378.526667pt;}
.y60{bottom:379.068000pt;}
.y7f{bottom:379.326667pt;}
.yec{bottom:380.754667pt;}
.y112{bottom:386.040000pt;}
.y1cf{bottom:386.404000pt;}
.y131{bottom:386.850667pt;}
.y223{bottom:389.153333pt;}
.y7d{bottom:389.600000pt;}
.y1dd{bottom:390.442667pt;}
.y151{bottom:390.496000pt;}
.ya2{bottom:390.577333pt;}
.yb4{bottom:391.045333pt;}
.y17a{bottom:391.721333pt;}
.y5f{bottom:393.680000pt;}
.yeb{bottom:395.366667pt;}
.y222{bottom:399.780000pt;}
.y111{bottom:400.652000pt;}
.y1ce{bottom:401.016000pt;}
.y12f{bottom:401.462667pt;}
.y7c{bottom:404.210667pt;}
.y1dc{bottom:405.054667pt;}
.y150{bottom:405.108000pt;}
.ya1{bottom:405.189333pt;}
.y130{bottom:405.802667pt;}
.y5e{bottom:408.292000pt;}
.yea{bottom:409.978667pt;}
.y179{bottom:409.986667pt;}
.y221{bottom:410.406667pt;}
.y110{bottom:415.264000pt;}
.y1cd{bottom:415.628000pt;}
.y12e{bottom:416.074667pt;}
.y7b{bottom:418.822667pt;}
.y1db{bottom:419.666667pt;}
.y14f{bottom:419.720000pt;}
.ya0{bottom:419.801333pt;}
.y220{bottom:421.033333pt;}
.y5d{bottom:422.904000pt;}
.y1a5{bottom:423.372000pt;}
.ye9{bottom:424.589333pt;}
.y10f{bottom:429.874667pt;}
.y1cc{bottom:430.240000pt;}
.y12d{bottom:430.686667pt;}
.y21f{bottom:431.660000pt;}
.y7a{bottom:433.434667pt;}
.y1da{bottom:434.278667pt;}
.y14e{bottom:434.330667pt;}
.y9f{bottom:434.413333pt;}
.y5c{bottom:437.516000pt;}
.ye8{bottom:439.201333pt;}
.y178{bottom:439.977333pt;}
.y21e{bottom:442.288000pt;}
.y10e{bottom:444.486667pt;}
.y1cb{bottom:444.852000pt;}
.y12c{bottom:445.298667pt;}
.y79{bottom:448.046667pt;}
.y1d9{bottom:448.890667pt;}
.y14d{bottom:448.942667pt;}
.y9e{bottom:449.025333pt;}
.y5b{bottom:452.128000pt;}
.y21d{bottom:452.914667pt;}
.y1a4{bottom:453.681333pt;}
.ye7{bottom:453.813333pt;}
.y177{bottom:454.588000pt;}
.y10d{bottom:459.098667pt;}
.y1ca{bottom:459.464000pt;}
.y12b{bottom:459.910667pt;}
.y78{bottom:462.658667pt;}
.y1d8{bottom:463.501333pt;}
.y21c{bottom:463.541333pt;}
.y14c{bottom:463.554667pt;}
.y9d{bottom:463.637333pt;}
.y5a{bottom:466.740000pt;}
.y1a3{bottom:468.293333pt;}
.ye6{bottom:468.425333pt;}
.y176{bottom:469.200000pt;}
.y10c{bottom:473.710667pt;}
.y1c9{bottom:474.076000pt;}
.y21b{bottom:474.168000pt;}
.y12a{bottom:474.522667pt;}
.y77{bottom:477.270667pt;}
.y1d7{bottom:478.113333pt;}
.y14b{bottom:478.166667pt;}
.y9b{bottom:478.249333pt;}
.y59{bottom:481.350667pt;}
.y9c{bottom:482.588000pt;}
.y1a2{bottom:482.905333pt;}
.ye5{bottom:483.037333pt;}
.y175{bottom:483.812000pt;}
.y21a{bottom:484.794667pt;}
.y10b{bottom:488.322667pt;}
.y1c8{bottom:488.688000pt;}
.y129{bottom:489.134667pt;}
.y1d6{bottom:492.725333pt;}
.y14a{bottom:492.778667pt;}
.y99{bottom:492.860000pt;}
.y219{bottom:495.421333pt;}
.y76{bottom:495.536000pt;}
.y58{bottom:495.962667pt;}
.y9a{bottom:497.200000pt;}
.y1a1{bottom:497.517333pt;}
.y174{bottom:498.424000pt;}
.y25{bottom:498.602686pt;}
.ye4{bottom:502.520000pt;}
.y10a{bottom:502.934667pt;}
.y1c7{bottom:503.300000pt;}
.y128{bottom:503.746667pt;}
.y218{bottom:506.048000pt;}
.y24{bottom:506.793319pt;}
.y1d5{bottom:507.337333pt;}
.y149{bottom:507.390667pt;}
.y57{bottom:510.574667pt;}
.y1a0{bottom:512.129333pt;}
.y173{bottom:513.036000pt;}
.y217{bottom:516.674667pt;}
.ye3{bottom:517.132000pt;}
.y109{bottom:517.546667pt;}
.y1c6{bottom:517.912000pt;}
.y127{bottom:518.358667pt;}
.y23{bottom:521.109318pt;}
.y1d4{bottom:521.949333pt;}
.y148{bottom:522.002667pt;}
.y56{bottom:525.186667pt;}
.y19f{bottom:526.740000pt;}
.y216{bottom:527.301333pt;}
.y172{bottom:527.648000pt;}
.y75{bottom:528.144000pt;}
.y22{bottom:529.299992pt;}
.y98{bottom:530.453333pt;}
.ye2{bottom:531.744000pt;}
.y108{bottom:532.158667pt;}
.y1c5{bottom:532.522667pt;}
.y126{bottom:532.970667pt;}
.y1d3{bottom:536.561333pt;}
.y147{bottom:536.614667pt;}
.y215{bottom:537.929333pt;}
.y55{bottom:539.798667pt;}
.y19e{bottom:541.352000pt;}
.y74{bottom:541.428000pt;}
.y171{bottom:542.260000pt;}
.y21{bottom:543.615991pt;}
.ye1{bottom:546.356000pt;}
.y107{bottom:546.770667pt;}
.y1c4{bottom:547.134667pt;}
.y125{bottom:547.581333pt;}
.y214{bottom:548.556000pt;}
.y146{bottom:551.226667pt;}
.y20{bottom:551.806665pt;}
.y54{bottom:554.410667pt;}
.y73{bottom:554.710667pt;}
.y1d2{bottom:554.826667pt;}
.y19d{bottom:555.964000pt;}
.y170{bottom:556.872000pt;}
.y213{bottom:559.182667pt;}
.ye0{bottom:560.968000pt;}
.y97{bottom:561.005333pt;}
.y106{bottom:561.382667pt;}
.y1c3{bottom:561.746667pt;}
.y124{bottom:562.193333pt;}
.y145{bottom:565.838667pt;}
.y1f{bottom:566.122664pt;}
.y72{bottom:567.994667pt;}
.y53{bottom:569.022667pt;}
.y212{bottom:569.809333pt;}
.y19c{bottom:570.576000pt;}
.y16f{bottom:571.484000pt;}
.y1e{bottom:574.313338pt;}
.ydf{bottom:575.578667pt;}
.y105{bottom:575.993333pt;}
.y1c2{bottom:576.358667pt;}
.y123{bottom:576.805333pt;}
.y211{bottom:580.436000pt;}
.y144{bottom:580.449333pt;}
.y71{bottom:581.277333pt;}
.y52{bottom:583.634667pt;}
.y19b{bottom:585.188000pt;}
.y16e{bottom:586.096000pt;}
.y1d{bottom:588.629338pt;}
.yde{bottom:590.190667pt;}
.y104{bottom:590.605333pt;}
.y1c1{bottom:590.970667pt;}
.y210{bottom:591.062667pt;}
.y70{bottom:594.561333pt;}
.y143{bottom:595.061333pt;}
.y122{bottom:595.070667pt;}
.y1c{bottom:596.820011pt;}
.y51{bottom:598.246667pt;}
.y16d{bottom:600.706667pt;}
.y20f{bottom:601.689333pt;}
.y19a{bottom:604.360000pt;}
.y1c0{bottom:605.582667pt;}
.y6f{bottom:607.845333pt;}
.y103{bottom:608.870667pt;}
.ydd{bottom:609.673333pt;}
.y1b{bottom:611.136011pt;}
.y20e{bottom:612.316000pt;}
.y50{bottom:612.858667pt;}
.y16c{bottom:615.318667pt;}
.y199{bottom:618.972000pt;}
.y1a{bottom:619.326685pt;}
.y1bf{bottom:620.194667pt;}
.y6e{bottom:621.128000pt;}
.y20d{bottom:622.942667pt;}
.ydc{bottom:624.285333pt;}
.y4f{bottom:627.470667pt;}
.y16a{bottom:629.930667pt;}
.y20c{bottom:633.570667pt;}
.y198{bottom:633.584000pt;}
.y19{bottom:633.642684pt;}
.y16b{bottom:634.270667pt;}
.y1be{bottom:634.806667pt;}
.ydb{bottom:638.897333pt;}
.y18{bottom:641.833317pt;}
.y4e{bottom:642.081333pt;}
.y20b{bottom:644.197333pt;}
.y169{bottom:644.542667pt;}
.y102{bottom:644.597333pt;}
.y197{bottom:648.196000pt;}
.y1bd{bottom:649.418667pt;}
.yda{bottom:653.509333pt;}
.y20a{bottom:654.824000pt;}
.y17{bottom:656.149316pt;}
.y4d{bottom:656.693333pt;}
.y168{bottom:659.154667pt;}
.y101{bottom:659.209333pt;}
.y196{bottom:662.808000pt;}
.y16{bottom:662.815983pt;}
.y1bc{bottom:664.030667pt;}
.y209{bottom:665.450667pt;}
.yd9{bottom:668.121333pt;}
.y15{bottom:671.070662pt;}
.y167{bottom:673.766667pt;}
.y4c{bottom:674.958667pt;}
.y208{bottom:676.077333pt;}
.y195{bottom:677.420000pt;}
.y1bb{bottom:678.641333pt;}
.yd8{bottom:682.733333pt;}
.y14{bottom:685.810673pt;}
.y207{bottom:686.704000pt;}
.y166{bottom:688.378667pt;}
.y194{bottom:692.032000pt;}
.y13{bottom:694.065332pt;}
.y206{bottom:697.330667pt;}
.yd7{bottom:697.345333pt;}
.y4b{bottom:698.622667pt;}
.y165{bottom:702.990667pt;}
.y193{bottom:706.644000pt;}
.y205{bottom:707.957333pt;}
.y12{bottom:708.805343pt;}
.yd6{bottom:711.957333pt;}
.y96{bottom:713.801333pt;}
.y4a{bottom:714.562667pt;}
.y11{bottom:717.060002pt;}
.y164{bottom:717.602667pt;}
.y1ba{bottom:717.682667pt;}
.y204{bottom:718.584000pt;}
.y192{bottom:721.254667pt;}
.yd5{bottom:726.569333pt;}
.y100{bottom:726.798667pt;}
.y1b9{bottom:726.981333pt;}
.y203{bottom:729.212000pt;}
.y49{bottom:730.504000pt;}
.y10{bottom:731.799992pt;}
.y163{bottom:732.214667pt;}
.y191{bottom:735.866667pt;}
.y1b8{bottom:736.278667pt;}
.y202{bottom:739.838667pt;}
.yf{bottom:740.054671pt;}
.yd4{bottom:741.180000pt;}
.yff{bottom:741.409333pt;}
.y1b7{bottom:746.109333pt;}
.y162{bottom:746.826667pt;}
.y201{bottom:750.465333pt;}
.y190{bottom:750.478667pt;}
.ye{bottom:754.794661pt;}
.y1b6{bottom:755.408000pt;}
.yd3{bottom:755.792000pt;}
.yfe{bottom:756.021333pt;}
.y48{bottom:760.529333pt;}
.y200{bottom:761.092000pt;}
.y161{bottom:761.437333pt;}
.yd{bottom:763.049341pt;}
.y1b5{bottom:764.705333pt;}
.y18f{bottom:765.090667pt;}
.y3b{bottom:767.225326pt;}
.yd2{bottom:770.404000pt;}
.y1ff{bottom:771.718667pt;}
.y1b4{bottom:774.004000pt;}
.y160{bottom:776.049333pt;}
.y47{bottom:776.469333pt;}
.yc{bottom:777.789331pt;}
.y3a{bottom:778.265324pt;}
.y18e{bottom:779.702667pt;}
.y1fe{bottom:782.345333pt;}
.y1b3{bottom:783.302667pt;}
.yd1{bottom:785.016000pt;}
.yb{bottom:786.043990pt;}
.y39{bottom:789.253341pt;}
.y15f{bottom:790.661333pt;}
.y46{bottom:792.410667pt;}
.y1fd{bottom:792.972000pt;}
.y1b2{bottom:793.132000pt;}
.y18d{bottom:794.314667pt;}
.y38{bottom:795.920007pt;}
.yd0{bottom:799.628000pt;}
.ya{bottom:800.784001pt;}
.y1b1{bottom:802.430667pt;}
.y37{bottom:802.634668pt;}
.y1fc{bottom:803.598667pt;}
.y15e{bottom:808.926667pt;}
.y9{bottom:809.038660pt;}
.y1b0{bottom:811.729333pt;}
.y36{bottom:813.674666pt;}
.y1fb{bottom:814.225333pt;}
.ycf{bottom:814.240000pt;}
.y1af{bottom:821.028000pt;}
.y45{bottom:822.436000pt;}
.y1fa{bottom:824.853333pt;}
.y35{bottom:826.052006pt;}
.yce{bottom:828.852000pt;}
.y1ae{bottom:830.857333pt;}
.y95{bottom:835.213333pt;}
.y1f9{bottom:835.480000pt;}
.y34{bottom:837.092004pt;}
.y44{bottom:838.376000pt;}
.y8{bottom:839.666671pt;}
.y1ad{bottom:840.156000pt;}
.ycd{bottom:843.464000pt;}
.y1f8{bottom:846.106667pt;}
.y33{bottom:848.132003pt;}
.y1ac{bottom:849.454667pt;}
.y43{bottom:854.316000pt;}
.y1f7{bottom:856.733333pt;}
.ycc{bottom:858.076000pt;}
.y7{bottom:858.866663pt;}
.y32{bottom:859.119999pt;}
.y1ab{bottom:859.284000pt;}
.y15d{bottom:862.458667pt;}
.y31{bottom:865.786666pt;}
.y1f6{bottom:867.360000pt;}
.y1aa{bottom:868.582667pt;}
.y42{bottom:870.257333pt;}
.y30{bottom:872.505334pt;}
.ycb{bottom:872.688000pt;}
.y6{bottom:876.771997pt;}
.y15c{bottom:877.070667pt;}
.y1f5{bottom:877.986667pt;}
.y1a9{bottom:878.413333pt;}
.y2f{bottom:883.493331pt;}
.yca{bottom:887.298667pt;}
.y1a8{bottom:887.710667pt;}
.y1f4{bottom:888.613333pt;}
.y2e{bottom:890.159998pt;}
.y15b{bottom:891.417333pt;}
.y5{bottom:891.512000pt;}
.y2d{bottom:896.878666pt;}
.y4{bottom:898.178666pt;}
.y1f3{bottom:899.240000pt;}
.y15a{bottom:900.716000pt;}
.yc9{bottom:901.910667pt;}
.y41{bottom:901.933333pt;}
.y1a7{bottom:903.029333pt;}
.y3{bottom:906.433333pt;}
.y2c{bottom:907.866668pt;}
.y1f2{bottom:909.881333pt;}
.y159{bottom:910.014667pt;}
.y2b{bottom:914.533334pt;}
.yc8{bottom:916.522667pt;}
.y158{bottom:919.312000pt;}
.y1f1{bottom:920.508000pt;}
.y2a{bottom:920.713332pt;}
.y2{bottom:921.173334pt;}
.y1{bottom:927.840000pt;}
.y40{bottom:928.500000pt;}
.y157{bottom:928.610667pt;}
.y29{bottom:929.993333pt;}
.yc7{bottom:931.134667pt;}
.y1a6{bottom:934.190667pt;}
.y156{bottom:937.909333pt;}
.y28{bottom:939.273332pt;}
.y27{bottom:948.553334pt;}
.y26{bottom:957.833334pt;}
.y94{bottom:966.204000pt;}
.h1{height:0.000000pt;}
.h20{height:21.344896pt;}
.h1e{height:22.317867pt;}
.h13{height:23.965867pt;}
.h8{height:25.695312pt;}
.ha{height:26.054688pt;}
.h6{height:26.069792pt;}
.h1d{height:26.143787pt;}
.h1c{height:26.222240pt;}
.h15{height:26.333824pt;}
.h1f{height:28.321707pt;}
.h3{height:29.419271pt;}
.h16{height:29.754667pt;}
.h18{height:30.094720pt;}
.h14{height:30.499627pt;}
.h7{height:31.014063pt;}
.h19{height:31.807253pt;}
.h1b{height:33.024000pt;}
.h1a{height:33.473067pt;}
.h12{height:34.285984pt;}
.h17{height:34.855467pt;}
.h9{height:36.099219pt;}
.h2{height:36.867188pt;}
.h11{height:39.211307pt;}
.h10{height:40.726933pt;}
.he{height:43.571520pt;}
.h5{height:44.498438pt;}
.hf{height:52.283200pt;}
.h4{height:53.937500pt;}
.hb{height:55.625000pt;}
.hd{height:61.482347pt;}
.hc{height:64.085707pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:67.466667pt;}
.x22{left:71.730667pt;}
.x9{left:73.320000pt;}
.x4a{left:75.944000pt;}
.x3b{left:78.373333pt;}
.x41{left:85.014667pt;}
.x4b{left:87.062667pt;}
.x73{left:92.312000pt;}
.x2{left:93.673333pt;}
.x4f{left:103.833333pt;}
.x8{left:104.768000pt;}
.x74{left:108.768000pt;}
.x58{left:109.826667pt;}
.x75{left:113.194667pt;}
.xd{left:119.137333pt;}
.x3c{left:121.285333pt;}
.x42{left:123.504000pt;}
.x59{left:124.548000pt;}
.x17{left:126.257333pt;}
.x16{left:129.374667pt;}
.x43{left:135.680000pt;}
.x66{left:140.176000pt;}
.xa{left:141.302667pt;}
.x48{left:145.926667pt;}
.x44{left:146.881333pt;}
.x3a{left:150.141333pt;}
.xb{left:152.153333pt;}
.x49{left:157.045333pt;}
.x45{left:158.000000pt;}
.x46{left:163.642667pt;}
.x18{left:168.777333pt;}
.x50{left:173.797333pt;}
.xc{left:174.694667pt;}
.x4c{left:181.000000pt;}
.x51{left:184.916000pt;}
.x47{left:185.982667pt;}
.x54{left:186.885333pt;}
.x52{left:190.670667pt;}
.x5d{left:192.226667pt;}
.x6d{left:195.788000pt;}
.x53{left:201.789333pt;}
.x5a{left:203.928000pt;}
.x1c{left:204.926667pt;}
.x5e{left:209.006667pt;}
.x6e{left:213.377333pt;}
.x1d{left:217.218667pt;}
.x5b{left:222.289333pt;}
.x23{left:237.034667pt;}
.x24{left:252.278667pt;}
.x65{left:258.402667pt;}
.x3d{left:268.285333pt;}
.x55{left:276.097333pt;}
.x3e{left:276.988000pt;}
.x5{left:283.633341pt;}
.x1e{left:286.572000pt;}
.x70{left:297.809333pt;}
.x5c{left:299.893333pt;}
.x6b{left:306.220000pt;}
.x5f{left:312.348000pt;}
.x63{left:322.998667pt;}
.x64{left:328.172000pt;}
.x60{left:332.768000pt;}
.x11{left:336.813333pt;}
.xe{left:340.561333pt;}
.x56{left:342.030667pt;}
.x57{left:353.706667pt;}
.xf{left:371.018667pt;}
.x3f{left:380.846667pt;}
.x6f{left:382.717333pt;}
.x40{left:386.406667pt;}
.x10{left:393.561333pt;}
.x39{left:402.000000pt;}
.x25{left:423.940000pt;}
.x69{left:428.221333pt;}
.x20{left:430.837333pt;}
.x2c{left:437.224000pt;}
.x6a{left:439.340000pt;}
.x71{left:444.224000pt;}
.x36{left:445.229333pt;}
.x37{left:456.485333pt;}
.x2d{left:470.662667pt;}
.x2e{left:476.222667pt;}
.x1f{left:479.160000pt;}
.x35{left:480.493333pt;}
.x2f{left:481.908000pt;}
.x21{left:484.370667pt;}
.x38{left:486.729333pt;}
.x30{left:493.026667pt;}
.x31{left:498.712000pt;}
.x32{left:509.830667pt;}
.x72{left:514.778667pt;}
.x15{left:526.066667pt;}
.x1a{left:536.492000pt;}
.x33{left:551.134667pt;}
.x12{left:554.246667pt;}
.x34{left:556.693333pt;}
.x13{left:557.652000pt;}
.x19{left:577.428000pt;}
.x14{left:582.698667pt;}
.x1b{left:611.762667pt;}
.x61{left:615.074667pt;}
.x4{left:618.266667pt;}
.x6{left:619.263997pt;}
.x62{left:626.192000pt;}
.x4d{left:642.770667pt;}
.x4e{left:647.944000pt;}
.x6c{left:651.934667pt;}
.x3{left:658.833333pt;}
.x26{left:666.132000pt;}
.x27{left:671.690667pt;}
.x28{left:676.937333pt;}
.x29{left:682.496000pt;}
.x2a{left:687.741333pt;}
.x7{left:689.058675pt;}
.x2b{left:698.860000pt;}
.x67{left:727.968000pt;}
.x68{left:739.086667pt;}
}




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