
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_ad7244ae918e539e8e9de2f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_4982dd503c31385c5c6862e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_c53d2a83519069bab211b00a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_6ac7330050a071ea8d10b126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_500d794b086eb915d3ef2f4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;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_bfa5a3fa58245510999bd488.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.803000;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_6cd25e7c7191d2752d619265.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.013672;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_ab1ca8b19d698aa86e59cc5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_12e94776fffa9b858fa4b038.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_c8e2b7936ee69abc8163a185.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.949219;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_47ab72f0101435ada3d8e7cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.013672;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_2d04b85cff78d018455289a1.woff2')format("woff");}.fff{font-family:fff;line-height:1.003906;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_b9eccf47d36d5c3ece954343.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_9e487eb27909789a24f8b5c1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.933000;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;}
.m5{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);}
.mf{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);}
.mb{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);}
.m16{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);}
.m3{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);}
.m1d{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);}
.m21{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);}
.me{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);}
.m2{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);}
.m11{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);}
.m27{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.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);}
.m23{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);}
.ma{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);}
.m1f{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);}
.m22{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);}
.m14{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);}
.m9{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);}
.m6{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);}
.m25{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);}
.m13{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);}
.m12{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);}
.m1e{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);}
.m19{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);}
.md{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);}
.m1{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);}
.m26{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);}
.m10{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);}
.m17{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);}
.m15{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);}
.m1a{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);}
.m1b{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);}
.m4{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);}
.m8{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);}
.m24{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);}
.m20{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);}
.m7{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);}
.mc{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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls49{letter-spacing:-0.189378px;}
.ls3a{letter-spacing:-0.176753px;}
.ls4b{letter-spacing:-0.132565px;}
.ls30{letter-spacing:-0.119939px;}
.ls33{letter-spacing:-0.113627px;}
.ls4c{letter-spacing:-0.101002px;}
.ls2d{letter-spacing:-0.095521px;}
.ls4a{letter-spacing:-0.088376px;}
.ls47{letter-spacing:-0.075751px;}
.ls37{letter-spacing:-0.069439px;}
.ls39{letter-spacing:-0.063126px;}
.ls32{letter-spacing:-0.050501px;}
.ls48{letter-spacing:-0.044188px;}
.ls2c{letter-spacing:-0.040219px;}
.ls38{letter-spacing:-0.031563px;}
.ls36{letter-spacing:-0.025250px;}
.ls34{letter-spacing:-0.022680px;}
.ls31{letter-spacing:-0.018938px;}
.ls2f{letter-spacing:-0.012625px;}
.ls4d{letter-spacing:-0.011340px;}
.ls2e{letter-spacing:-0.010055px;}
.ls3b{letter-spacing:-0.006313px;}
.ls35{letter-spacing:-0.005670px;}
.lsf{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.000009px;}
.ls60{letter-spacing:0.000179px;}
.ls5c{letter-spacing:0.000503px;}
.ls2{letter-spacing:0.000600px;}
.ls52{letter-spacing:0.000676px;}
.ls4e{letter-spacing:0.000800px;}
.ls62{letter-spacing:0.001036px;}
.ls57{letter-spacing:0.001123px;}
.ls5a{letter-spacing:0.001584px;}
.ls61{letter-spacing:0.002488px;}
.ls4f{letter-spacing:0.002544px;}
.ls6{letter-spacing:0.002725px;}
.ls55{letter-spacing:0.003544px;}
.ls5f{letter-spacing:0.003752px;}
.ls45{letter-spacing:0.004090px;}
.ls5d{letter-spacing:0.004221px;}
.ls58{letter-spacing:0.004800px;}
.ls44{letter-spacing:0.005670px;}
.lsd{letter-spacing:0.005700px;}
.ls28{letter-spacing:0.006313px;}
.ls22{letter-spacing:0.011340px;}
.ls1f{letter-spacing:0.017010px;}
.ls41{letter-spacing:0.022680px;}
.ls1d{letter-spacing:0.025250px;}
.ls40{letter-spacing:0.028350px;}
.ls3d{letter-spacing:0.031563px;}
.ls46{letter-spacing:0.037876px;}
.ls42{letter-spacing:0.039690px;}
.ls1e{letter-spacing:0.044188px;}
.ls21{letter-spacing:0.045360px;}
.ls23{letter-spacing:0.051030px;}
.ls25{letter-spacing:0.056700px;}
.ls3c{letter-spacing:0.069439px;}
.ls29{letter-spacing:0.075751px;}
.ls43{letter-spacing:0.079380px;}
.ls3f{letter-spacing:0.094689px;}
.ls1c{letter-spacing:0.101002px;}
.ls20{letter-spacing:0.113400px;}
.ls24{letter-spacing:0.130410px;}
.ls3e{letter-spacing:0.145190px;}
.ls26{letter-spacing:0.151502px;}
.ls1b{letter-spacing:0.170932px;}
.ls27{letter-spacing:0.189378px;}
.ls1a{letter-spacing:0.191041px;}
.ls2a{letter-spacing:0.642088px;}
.ls13{letter-spacing:0.648088px;}
.ls18{letter-spacing:0.717483px;}
.lse{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls5{letter-spacing:2.983200px;}
.ls3{letter-spacing:2.989200px;}
.ls1{letter-spacing:10.461300px;}
.lsc{letter-spacing:11.954850px;}
.ls9{letter-spacing:12.449780px;}
.ls5b{letter-spacing:13.234144px;}
.lsa{letter-spacing:13.368532px;}
.ls51{letter-spacing:13.448400px;}
.ls50{letter-spacing:13.454400px;}
.lsb{letter-spacing:13.547859px;}
.ls12{letter-spacing:14.094088px;}
.ls14{letter-spacing:14.100088px;}
.ls5e{letter-spacing:14.426871px;}
.ls16{letter-spacing:14.842812px;}
.ls19{letter-spacing:14.944200px;}
.ls2b{letter-spacing:14.965261px;}
.ls15{letter-spacing:15.163872px;}
.ls11{letter-spacing:15.657483px;}
.ls17{letter-spacing:15.663483px;}
.ls53{letter-spacing:15.697459px;}
.ls63{letter-spacing:17.220988px;}
.ls59{letter-spacing:17.444518px;}
.ls10{letter-spacing:18.618082px;}
.ls64{letter-spacing:18.738635px;}
.ls56{letter-spacing:18.915106px;}
.ls4{letter-spacing:57.415200px;}
.ls7{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.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;}
}
.ws10{word-spacing:-118.379603px;}
.ws93{word-spacing:-15.781500px;}
.ws11{word-spacing:-14.943900px;}
.ws69{word-spacing:-14.175000px;}
.ws98{word-spacing:-13.449600px;}
.ws67{word-spacing:-12.759541px;}
.ws68{word-spacing:-12.568500px;}
.ws1a{word-spacing:-11.955150px;}
.ws17{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsa1{word-spacing:-3.642370px;}
.wsa2{word-spacing:-3.598182px;}
.ws37{word-spacing:-3.347434px;}
.ws6d{word-spacing:-3.108331px;}
.ws35{word-spacing:-2.510575px;}
.ws4c{word-spacing:-2.391024px;}
.ws6c{word-spacing:-2.092146px;}
.wsc7{word-spacing:-1.990541px;}
.ws1{word-spacing:-1.908367px;}
.wsb6{word-spacing:-1.793268px;}
.ws92{word-spacing:-1.786466px;}
.wsc8{word-spacing:-1.775347px;}
.wsc6{word-spacing:-1.613952px;}
.wsbb{word-spacing:-1.613941px;}
.ws0{word-spacing:-1.322630px;}
.ws91{word-spacing:-1.243582px;}
.ws6{word-spacing:-1.171598px;}
.ws42{word-spacing:-1.135736px;}
.ws9b{word-spacing:-1.079455px;}
.ws8{word-spacing:-1.046070px;}
.wsac{word-spacing:-1.026270px;}
.ws21{word-spacing:-1.022170px;}
.ws89{word-spacing:-1.010016px;}
.ws7f{word-spacing:-1.003590px;}
.ws7d{word-spacing:-0.997920px;}
.wsad{word-spacing:-0.986580px;}
.ws88{word-spacing:-0.978453px;}
.wsa5{word-spacing:-0.975240px;}
.wsa7{word-spacing:-0.969570px;}
.ws9c{word-spacing:-0.965828px;}
.ws7e{word-spacing:-0.958230px;}
.wsa6{word-spacing:-0.935550px;}
.ws51{word-spacing:-0.836858px;}
.ws45{word-spacing:-0.777083px;}
.ws20{word-spacing:-0.753178px;}
.ws2a{word-spacing:-0.717307px;}
.ws9e{word-spacing:-0.688073px;}
.ws40{word-spacing:-0.597756px;}
.ws52{word-spacing:-0.537980px;}
.ws39{word-spacing:-0.478205px;}
.ws82{word-spacing:-0.435569px;}
.ws3f{word-spacing:-0.418429px;}
.ws81{word-spacing:-0.385069px;}
.ws94{word-spacing:-0.376589px;}
.ws8d{word-spacing:-0.359818px;}
.ws26{word-spacing:-0.322790px;}
.ws31{word-spacing:-0.298878px;}
.ws1f{word-spacing:-0.268992px;}
.ws3b{word-spacing:-0.239102px;}
.ws6a{word-spacing:-0.215194px;}
.ws46{word-spacing:-0.179327px;}
.ws95{word-spacing:-0.161395px;}
.ws2b{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.107597px;}
.ws6f{word-spacing:-0.085466px;}
.ws12{word-spacing:-0.059776px;}
.ws22{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.002092px;}
.ws14{word-spacing:-0.000008px;}
.ws3{word-spacing:0.000000px;}
.ws64{word-spacing:0.000900px;}
.ws13{word-spacing:0.001550px;}
.ws16{word-spacing:0.002117px;}
.ws19{word-spacing:0.002717px;}
.ws8e{word-spacing:0.012625px;}
.ws79{word-spacing:0.050501px;}
.wsc9{word-spacing:0.053798px;}
.ws43{word-spacing:0.059776px;}
.ws23{word-spacing:0.107597px;}
.ws3c{word-spacing:0.119551px;}
.ws1d{word-spacing:0.161395px;}
.wsae{word-spacing:0.164430px;}
.wsb0{word-spacing:0.170100px;}
.ws2c{word-spacing:0.179327px;}
.wsaf{word-spacing:0.181440px;}
.ws80{word-spacing:0.192780px;}
.wsa4{word-spacing:0.195691px;}
.ws1e{word-spacing:0.215194px;}
.wsa3{word-spacing:0.227254px;}
.ws47{word-spacing:0.239102px;}
.ws96{word-spacing:0.268992px;}
.ws32{word-spacing:0.298878px;}
.ws97{word-spacing:0.322790px;}
.ws3a{word-spacing:0.358654px;}
.ws72{word-spacing:0.372443px;}
.ws24{word-spacing:0.376589px;}
.ws34{word-spacing:0.418429px;}
.ws29{word-spacing:0.478205px;}
.ws71{word-spacing:0.486070px;}
.ws83{word-spacing:0.498695px;}
.ws5d{word-spacing:0.662237px;}
.ws5f{word-spacing:0.667200px;}
.ws5e{word-spacing:0.673200px;}
.ws5c{word-spacing:0.686986px;}
.wse5{word-spacing:0.699379px;}
.wscc{word-spacing:0.753178px;}
.ws5a{word-spacing:0.777083px;}
.wsbd{word-spacing:0.836858px;}
.ws25{word-spacing:0.914573px;}
.ws41{word-spacing:0.956410px;}
.ws7{word-spacing:1.004227px;}
.wsca{word-spacing:1.022170px;}
.wscb{word-spacing:1.034206px;}
.ws4b{word-spacing:1.135736px;}
.wsb5{word-spacing:1.195512px;}
.wsc3{word-spacing:1.237363px;}
.wsc1{word-spacing:1.255288px;}
.ws87{word-spacing:1.262520px;}
.ws7b{word-spacing:1.275750px;}
.ws86{word-spacing:1.300396px;}
.ws7c{word-spacing:1.309770px;}
.ws53{word-spacing:1.315063px;}
.ws7a{word-spacing:1.343790px;}
.wsda{word-spacing:1.344960px;}
.wsbc{word-spacing:1.374839px;}
.ws9d{word-spacing:1.533962px;}
.ws57{word-spacing:1.554166px;}
.wsd5{word-spacing:1.560154px;}
.ws63{word-spacing:1.673717px;}
.wsdb{word-spacing:1.721549px;}
.ws50{word-spacing:1.733492px;}
.ws2e{word-spacing:1.793268px;}
.ws48{word-spacing:1.853044px;}
.wsa0{word-spacing:1.950593px;}
.wse4{word-spacing:1.990541px;}
.wsba{word-spacing:2.032370px;}
.wsab{word-spacing:2.041200px;}
.wsd3{word-spacing:2.044339px;}
.wsaa{word-spacing:2.052540px;}
.wsa8{word-spacing:2.063880px;}
.wsa9{word-spacing:2.069550px;}
.wsbe{word-spacing:2.092146px;}
.wsd9{word-spacing:2.205734px;}
.wsdd{word-spacing:2.259533px;}
.ws56{word-spacing:2.331248px;}
.ws66{word-spacing:2.391024px;}
.ws4e{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.wsc0{word-spacing:2.749678px;}
.ws1b{word-spacing:2.869236px;}
.wsec{word-spacing:2.958912px;}
.ws77{word-spacing:3.093174px;}
.wsb9{word-spacing:3.108331px;}
.wse6{word-spacing:3.120307px;}
.ws27{word-spacing:3.219667px;}
.wsd6{word-spacing:3.220186px;}
.wse3{word-spacing:3.227904px;}
.ws62{word-spacing:3.347434px;}
.wsb1{word-spacing:3.407209px;}
.ws85{word-spacing:3.490868px;}
.ws84{word-spacing:3.516118px;}
.ws2d{word-spacing:3.526760px;}
.ws28{word-spacing:3.586536px;}
.ws59{word-spacing:3.646312px;}
.ws58{word-spacing:3.706087px;}
.wsd8{word-spacing:3.712090px;}
.wsb2{word-spacing:3.765863px;}
.ws4a{word-spacing:3.825638px;}
.wse8{word-spacing:3.981082px;}
.wsb8{word-spacing:4.004965px;}
.ws38{word-spacing:4.124516px;}
.wsee{word-spacing:4.196275px;}
.ws6b{word-spacing:4.250074px;}
.wsb4{word-spacing:4.303843px;}
.wse0{word-spacing:4.303872px;}
.ws55{word-spacing:4.363619px;}
.ws54{word-spacing:4.423394px;}
.ws44{word-spacing:4.483170px;}
.wsc2{word-spacing:4.519066px;}
.ws65{word-spacing:4.602721px;}
.wse{word-spacing:4.770079px;}
.ws4f{word-spacing:4.782048px;}
.wsf{word-spacing:4.853765px;}
.ws9f{word-spacing:4.986954px;}
.wsd7{word-spacing:5.057050px;}
.wsf0{word-spacing:5.272243px;}
.wse9{word-spacing:5.433638px;}
.wse2{word-spacing:5.487437px;}
.ws3e{word-spacing:5.499355px;}
.ws75{word-spacing:5.813905px;}
.ws5b{word-spacing:5.858009px;}
.ws76{word-spacing:5.877031px;}
.ws9a{word-spacing:6.097111px;}
.ws8c{word-spacing:6.167410px;}
.ws8b{word-spacing:6.192661px;}
.ws49{word-spacing:6.216662px;}
.ws4d{word-spacing:6.276438px;}
.wsb7{word-spacing:6.395989px;}
.ws78{word-spacing:6.476728px;}
.ws8a{word-spacing:6.514603px;}
.ws2f{word-spacing:6.575316px;}
.ws99{word-spacing:6.635092px;}
.ws3d{word-spacing:6.814418px;}
.wsbf{word-spacing:6.993745px;}
.ws30{word-spacing:7.053521px;}
.wsc5{word-spacing:7.424179px;}
.ws6e{word-spacing:7.471950px;}
.ws61{word-spacing:7.770828px;}
.wsc{word-spacing:7.782761px;}
.wsc4{word-spacing:7.854566px;}
.ws90{word-spacing:10.276913px;}
.ws8f{word-spacing:10.314788px;}
.ws4{word-spacing:10.415777px;}
.ws33{word-spacing:11.901364px;}
.wsa{word-spacing:12.176255px;}
.ws70{word-spacing:12.206527px;}
.wsd0{word-spacing:13.180608px;}
.wsd4{word-spacing:13.391645px;}
.wsea{word-spacing:13.392336px;}
.wscd{word-spacing:13.395802px;}
.ws36{word-spacing:14.884124px;}
.ws74{word-spacing:15.611060px;}
.ws73{word-spacing:15.712061px;}
.wsb{word-spacing:16.109478px;}
.wsed{word-spacing:16.354714px;}
.wscf{word-spacing:16.462310px;}
.wsde{word-spacing:16.569907px;}
.wsd1{word-spacing:16.617322px;}
.wsdf{word-spacing:16.618934px;}
.wsd2{word-spacing:16.619030px;}
.wsce{word-spacing:16.623706px;}
.wsef{word-spacing:17.592077px;}
.wse1{word-spacing:17.699674px;}
.wseb{word-spacing:19.259827px;}
.wsdc{word-spacing:22.326336px;}
.wsb3{word-spacing:22.774504px;}
.wsd{word-spacing:26.109907px;}
.wse7{word-spacing:26.522611px;}
.ws9{word-spacing:26.840252px;}
.ws18{word-spacing:54.425734px;}
.ws60{word-spacing:196.381200px;}
._34{margin-left:-19.690398px;}
._8{margin-left:-11.943245px;}
._11{margin-left:-7.337264px;}
._2{margin-left:-6.150892px;}
._3{margin-left:-4.602708px;}
._5{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._6{width:2.301354px;}
._15{width:4.423394px;}
._4{width:12.971358px;}
._e{width:14.380829px;}
._9{width:16.276961px;}
._a{width:17.430682px;}
._b{width:18.856453px;}
._18{width:19.897708px;}
._12{width:20.988803px;}
._35{width:22.320589px;}
._14{width:23.379827px;}
._c{width:24.388445px;}
._17{width:26.121937px;}
._31{width:27.496776px;}
._33{width:29.265015px;}
._7{width:30.587087px;}
._16{width:33.057479px;}
._30{width:35.506706px;}
._13{width:36.769561px;}
._d{width:38.854140px;}
._32{width:88.767360px;}
._1b{width:130.084531px;}
._24{width:181.814638px;}
._1a{width:185.389286px;}
._25{width:224.823514px;}
._22{width:227.879184px;}
._26{width:230.902733px;}
._2e{width:252.915358px;}
._1f{width:254.089843px;}
._23{width:257.801933px;}
._27{width:261.502147px;}
._2a{width:268.198368px;}
._29{width:270.605952px;}
._2c{width:274.743629px;}
._21{width:283.463770px;}
._28{width:291.425933px;}
._20{width:298.150733px;}
._2b{width:311.600333px;}
._1d{width:348.237043px;}
._2d{width:372.123533px;}
._1e{width:378.848333px;}
._19{width:406.195794px;}
._1c{width:529.107264px;}
._f{width:1091.792119px;}
._2f{width:2330.435964px;}
._10{width:2703.353843px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(67,157,170);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:50.274000px;}
.fs9{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fse{font-size:56.700000px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fsd{font-size:63.126000px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:152.158872px;}
.yab{bottom:-421.926277px;}
.yc0{bottom:-358.608490px;}
.ybf{bottom:-338.386076px;}
.ybe{bottom:-313.531791px;}
.ybd{bottom:-274.409453px;}
.ybc{bottom:-254.281728px;}
.ybb{bottom:-234.059314px;}
.yba{bottom:-213.836899px;}
.yb9{bottom:-193.709174px;}
.yb8{bottom:-173.486760px;}
.yd9{bottom:-162.775778px;}
.yb7{bottom:-153.264346px;}
.yb6{bottom:-128.410062px;}
.yb5{bottom:-103.555777px;}
.ye6{bottom:-94.169723px;}
.ye5{bottom:-75.930750px;}
.yb4{bottom:-64.811092px;}
.ye4{bottom:-57.786750px;}
.yb3{bottom:-46.572120px;}
.ye3{bottom:-39.642750px;}
.yb2{bottom:-28.428120px;}
.ye2{bottom:-21.403777px;}
.y0{bottom:0.000000px;}
.ye1{bottom:2.129085px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y20{bottom:14.872592px;}
.y4f{bottom:31.890000px;}
.yd5{bottom:96.906000px;}
.y143{bottom:97.150500px;}
.yef{bottom:100.692000px;}
.y4e{bottom:104.325000px;}
.y1e{bottom:104.646000px;}
.y83{bottom:104.952000px;}
.y11a{bottom:107.641500px;}
.y142{bottom:114.411000px;}
.yd4{bottom:115.735500px;}
.yee{bottom:119.521500px;}
.y1d{bottom:122.535000px;}
.y4d{bottom:123.154500px;}
.y82{bottom:123.781500px;}
.y119{bottom:126.471000px;}
.y141{bottom:131.671500px;}
.yd3{bottom:134.565000px;}
.yed{bottom:138.351000px;}
.y1c{bottom:140.422500px;}
.y4c{bottom:141.984000px;}
.y81{bottom:142.611000px;}
.y118{bottom:145.300500px;}
.y140{bottom:148.932000px;}
.ya7{bottom:152.067000px;}
.yd2{bottom:153.394500px;}
.y177{bottom:156.283500px;}
.y1b{bottom:158.310000px;}
.y4b{bottom:160.813500px;}
.y80{bottom:161.440500px;}
.yec{bottom:161.664000px;}
.y117{bottom:164.130000px;}
.y13f{bottom:166.192500px;}
.ya6{bottom:170.896500px;}
.yd1{bottom:172.224000px;}
.y176{bottom:173.544000px;}
.y1a{bottom:176.199000px;}
.y4a{bottom:179.643000px;}
.y7f{bottom:180.268500px;}
.y116{bottom:182.959500px;}
.y13e{bottom:183.453000px;}
.ya5{bottom:189.726000px;}
.y175{bottom:190.804500px;}
.yd0{bottom:191.053500px;}
.yeb{bottom:192.091500px;}
.y19{bottom:194.086500px;}
.y49{bottom:198.472500px;}
.y7e{bottom:199.098000px;}
.y13d{bottom:200.713500px;}
.y115{bottom:201.789000px;}
.y174{bottom:208.065000px;}
.ya4{bottom:208.555500px;}
.ycf{bottom:209.883000px;}
.yea{bottom:211.324500px;}
.y18{bottom:211.974000px;}
.y48{bottom:217.302000px;}
.y13c{bottom:217.974000px;}
.y114{bottom:220.618500px;}
.y7d{bottom:222.411000px;}
.y173{bottom:225.325500px;}
.ya3{bottom:227.383500px;}
.yce{bottom:228.712500px;}
.y17{bottom:229.863000px;}
.ye9{bottom:230.556000px;}
.y13b{bottom:235.233000px;}
.y47{bottom:236.131500px;}
.y113{bottom:239.446500px;}
.y172{bottom:242.586000px;}
.ya2{bottom:246.213000px;}
.ycd{bottom:247.542000px;}
.ye8{bottom:249.789000px;}
.y13a{bottom:252.493500px;}
.y46{bottom:254.961000px;}
.y7c{bottom:256.035000px;}
.y112{bottom:258.276000px;}
.y171{bottom:259.846500px;}
.ya1{bottom:265.042500px;}
.ye7{bottom:269.022000px;}
.y139{bottom:269.754000px;}
.ycc{bottom:270.853500px;}
.y45{bottom:273.790500px;}
.y7b{bottom:274.864500px;}
.y111{bottom:277.105500px;}
.ya0{bottom:283.872000px;}
.y138{bottom:287.014500px;}
.y44{bottom:292.620000px;}
.y7a{bottom:293.694000px;}
.y170{bottom:294.366000px;}
.yd6{bottom:294.441000px;}
.y110{bottom:295.935000px;}
.y16{bottom:300.154500px;}
.y9f{bottom:302.701500px;}
.y137{bottom:304.275000px;}
.ycb{bottom:304.477500px;}
.y43{bottom:311.449500px;}
.y16f{bottom:311.626500px;}
.y79{bottom:312.523500px;}
.y10f{bottom:314.764500px;}
.y15{bottom:318.043500px;}
.y9e{bottom:321.531000px;}
.y136{bottom:321.535500px;}
.yca{bottom:323.307000px;}
.y16e{bottom:328.887000px;}
.y78{bottom:331.353000px;}
.y10e{bottom:333.594000px;}
.y42{bottom:334.762500px;}
.y14{bottom:335.931000px;}
.y9d{bottom:340.360500px;}
.yc9{bottom:342.136500px;}
.y135{bottom:343.278000px;}
.y16d{bottom:346.147500px;}
.y77{bottom:350.182500px;}
.y10d{bottom:352.423500px;}
.y13{bottom:353.818500px;}
.y9c{bottom:359.190000px;}
.yc8{bottom:360.966000px;}
.y16c{bottom:363.408000px;}
.y76{bottom:369.012000px;}
.y10c{bottom:371.253000px;}
.y134{bottom:376.902000px;}
.y9b{bottom:378.019500px;}
.yc7{bottom:379.795500px;}
.y16b{bottom:380.668500px;}
.y12{bottom:380.673000px;}
.y75{bottom:387.841500px;}
.y10b{bottom:390.082500px;}
.y9a{bottom:396.849000px;}
.y16a{bottom:397.929000px;}
.y11{bottom:398.562000px;}
.yc6{bottom:398.625000px;}
.y133{bottom:403.443000px;}
.y74{bottom:406.671000px;}
.y10a{bottom:408.912000px;}
.y41{bottom:409.912500px;}
.y169{bottom:415.188000px;}
.y10{bottom:416.449500px;}
.y132{bottom:421.017000px;}
.yc5{bottom:421.938000px;}
.y73{bottom:425.500500px;}
.y109{bottom:427.741500px;}
.y99{bottom:428.016000px;}
.y168{bottom:432.448500px;}
.yc4{bottom:442.113000px;}
.y72{bottom:444.330000px;}
.yf{bottom:444.798000px;}
.y108{bottom:446.571000px;}
.y98{bottom:446.860500px;}
.y40{bottom:447.301500px;}
.y131{bottom:447.558000px;}
.y167{bottom:449.709000px;}
.y71{bottom:463.159500px;}
.y97{bottom:463.299000px;}
.y130{bottom:465.132000px;}
.y107{bottom:465.400500px;}
.y3f{bottom:466.759500px;}
.y166{bottom:466.969500px;}
.ye{bottom:471.652500px;}
.yc3{bottom:472.540500px;}
.y96{bottom:479.736000px;}
.y70{bottom:481.989000px;}
.y106{bottom:484.230000px;}
.y3e{bottom:486.216000px;}
.yd{bottom:489.540000px;}
.y12f{bottom:491.673000px;}
.yc2{bottom:491.772000px;}
.y95{bottom:496.174500px;}
.y165{bottom:501.490500px;}
.y105{bottom:503.059500px;}
.y6f{bottom:505.300500px;}
.y3d{bottom:505.674000px;}
.yc{bottom:507.429000px;}
.yc1{bottom:511.005000px;}
.y94{bottom:512.613000px;}
.y12e{bottom:518.212500px;}
.y164{bottom:518.751000px;}
.y104{bottom:521.889000px;}
.y3c{bottom:525.130500px;}
.yb{bottom:525.316500px;}
.y93{bottom:529.051500px;}
.y12d{bottom:535.786500px;}
.y163{bottom:536.011500px;}
.ya8{bottom:536.424000px;}
.y6e{bottom:538.924500px;}
.y103{bottom:540.718500px;}
.ya{bottom:543.204000px;}
.y3b{bottom:544.587000px;}
.y92{bottom:545.490000px;}
.y162{bottom:553.272000px;}
.y12c{bottom:553.362000px;}
.y6d{bottom:557.754000px;}
.y102{bottom:559.548000px;}
.y9{bottom:561.093000px;}
.y91{bottom:561.928500px;}
.y3a{bottom:564.045000px;}
.y161{bottom:570.531000px;}
.y6c{bottom:576.583500px;}
.y90{bottom:578.367000px;}
.y101{bottom:578.377500px;}
.y8{bottom:578.980500px;}
.y12b{bottom:579.901500px;}
.y39{bottom:583.501500px;}
.y160{bottom:587.791500px;}
.y6b{bottom:595.413000px;}
.y7{bottom:596.868000px;}
.y100{bottom:597.207000px;}
.y12a{bottom:597.475500px;}
.y8f{bottom:602.007000px;}
.y38{bottom:602.958000px;}
.y15f{bottom:605.052000px;}
.yb1{bottom:611.432952px;}
.y6a{bottom:614.242500px;}
.y6{bottom:614.757000px;}
.yff{bottom:616.036500px;}
.y15e{bottom:622.312500px;}
.y37{bottom:622.416000px;}
.y129{bottom:624.016500px;}
.yb0{bottom:631.655366px;}
.y5{bottom:632.644500px;}
.y69{bottom:633.072000px;}
.y8e{bottom:633.627000px;}
.yfe{bottom:634.866000px;}
.y15d{bottom:639.573000px;}
.y128{bottom:641.590500px;}
.y36{bottom:641.872500px;}
.y4{bottom:650.532000px;}
.yaf{bottom:651.783091px;}
.y68{bottom:651.901500px;}
.yfd{bottom:653.695500px;}
.y15c{bottom:656.833500px;}
.y127{bottom:659.164500px;}
.y35{bottom:661.330500px;}
.y1{bottom:668.420964px;}
.y67{bottom:670.731000px;}
.yae{bottom:672.005505px;}
.yfc{bottom:672.525000px;}
.y15b{bottom:674.094000px;}
.y126{bottom:676.738500px;}
.y34{bottom:680.787000px;}
.y66{bottom:689.560500px;}
.yfb{bottom:691.354500px;}
.yad{bottom:692.227919px;}
.y125{bottom:694.312500px;}
.y65{bottom:708.390000px;}
.y15a{bottom:708.613500px;}
.yfa{bottom:710.184000px;}
.y124{bottom:711.886500px;}
.yac{bottom:712.357223px;}
.y33{bottom:719.373000px;}
.y159{bottom:725.874000px;}
.y64{bottom:727.219500px;}
.yf9{bottom:729.013500px;}
.y32{bottom:735.511500px;}
.y158{bottom:743.134500px;}
.y63{bottom:746.049000px;}
.y123{bottom:747.394500px;}
.yf8{bottom:747.843000px;}
.y31{bottom:755.991000px;}
.y157{bottom:760.395000px;}
.y62{bottom:764.878500px;}
.y122{bottom:766.224000px;}
.yf7{bottom:766.671000px;}
.y30{bottom:767.791500px;}
.yaa{bottom:769.813364px;}
.y156{bottom:777.655500px;}
.ya9{bottom:779.924723px;}
.y61{bottom:783.708000px;}
.y121{bottom:785.053500px;}
.yf6{bottom:785.500500px;}
.y2f{bottom:788.269500px;}
.y155{bottom:794.916000px;}
.y2e{bottom:800.070000px;}
.y60{bottom:802.537500px;}
.y120{bottom:803.883000px;}
.yf5{bottom:804.330000px;}
.y154{bottom:812.176500px;}
.y2d{bottom:816.210000px;}
.y5f{bottom:821.367000px;}
.y11f{bottom:822.712500px;}
.yf4{bottom:823.159500px;}
.y153{bottom:829.437000px;}
.y2c{bottom:836.689500px;}
.y5e{bottom:840.196500px;}
.y11e{bottom:841.540500px;}
.yf3{bottom:841.989000px;}
.y152{bottom:846.697500px;}
.y2b{bottom:848.488500px;}
.ye0{bottom:850.455727px;}
.y5d{bottom:859.026000px;}
.y11d{bottom:860.370000px;}
.yf2{bottom:860.818500px;}
.y8d{bottom:863.509500px;}
.y151{bottom:863.956500px;}
.y2a{bottom:864.628500px;}
.ydf{bottom:870.583452px;}
.y5c{bottom:877.855500px;}
.y11c{bottom:879.199500px;}
.yf1{bottom:879.648000px;}
.y150{bottom:881.217000px;}
.y8c{bottom:883.683000px;}
.y29{bottom:885.108000px;}
.yde{bottom:890.805866px;}
.y5b{bottom:896.685000px;}
.y28{bottom:896.907000px;}
.yf0{bottom:898.477500px;}
.y11b{bottom:902.512500px;}
.ydd{bottom:910.933591px;}
.y5a{bottom:915.514500px;}
.y14f{bottom:915.738000px;}
.y8b{bottom:917.307000px;}
.y27{bottom:917.386500px;}
.ydc{bottom:931.156005px;}
.y14e{bottom:932.998500px;}
.y59{bottom:934.344000px;}
.y8a{bottom:936.136500px;}
.y14d{bottom:950.259000px;}
.ydb{bottom:951.378419px;}
.y58{bottom:953.173500px;}
.y89{bottom:954.966000px;}
.y26{bottom:962.062500px;}
.y14c{bottom:967.519500px;}
.yda{bottom:971.507723px;}
.y57{bottom:972.003000px;}
.y88{bottom:973.795500px;}
.y25{bottom:980.892000px;}
.y14b{bottom:984.780000px;}
.y56{bottom:990.832500px;}
.y87{bottom:992.625000px;}
.y24{bottom:999.721500px;}
.y149{bottom:1002.039000px;}
.y14a{bottom:1002.040500px;}
.y86{bottom:1011.454500px;}
.y55{bottom:1014.144000px;}
.y148{bottom:1019.299500px;}
.yd8{bottom:1028.963864px;}
.y85{bottom:1030.284000px;}
.y54{bottom:1034.319000px;}
.y23{bottom:1036.485000px;}
.y147{bottom:1036.560000px;}
.yd7{bottom:1039.075223px;}
.y84{bottom:1049.113500px;}
.y146{bottom:1053.820500px;}
.y22{bottom:1064.728500px;}
.y53{bottom:1067.943000px;}
.y145{bottom:1071.081000px;}
.y52{bottom:1086.772500px;}
.y144{bottom:1088.341500px;}
.y21{bottom:1092.972000px;}
.y51{bottom:1105.602000px;}
.y1f{bottom:1136.460000px;}
.y50{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hc{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hd{height:34.813397px;}
.h14{height:35.052500px;}
.h11{height:37.334628px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h10{height:39.434227px;}
.h15{height:41.482876px;}
.h12{height:43.038432px;}
.h13{height:43.516637px;}
.h9{height:43.815515px;}
.h1a{height:46.265687px;}
.h17{height:46.493631px;}
.h1c{height:49.117939px;}
.h7{height:51.022650px;}
.h19{height:52.436426px;}
.hb{height:54.411312px;}
.h18{height:58.379221px;}
.ha{height:77.469696px;}
.h8{height:103.163715px;}
.h16{height:584.121825px;}
.h1b{height:826.104825px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:173.659234px;}
.w5{width:630.919485px;}
.w4{width:720.237420px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4f{left:-95.875290px;}
.x3f{left:-91.133280px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x4{left:52.444500px;}
.x1{left:53.574073px;}
.x3{left:62.800573px;}
.x3e{left:86.124555px;}
.x50{left:109.473210px;}
.x41{left:114.214596px;}
.x4e{left:130.783815px;}
.x40{left:147.668220px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x58{left:253.558500px;}
.x33{left:258.556500px;}
.x73{left:262.068000px;}
.x59{left:264.762000px;}
.x36{left:268.147500px;}
.x6{left:269.914500px;}
.x37{left:275.449500px;}
.x38{left:280.332000px;}
.xf{left:281.479500px;}
.x2b{left:285.834000px;}
.x39{left:286.888500px;}
.x3a{left:287.964000px;}
.x35{left:293.472000px;}
.x70{left:298.557000px;}
.x42{left:306.798000px;}
.x8{left:308.134500px;}
.x77{left:310.188000px;}
.x43{left:311.326500px;}
.x71{left:314.593500px;}
.x2a{left:319.786500px;}
.x44{left:321.789000px;}
.x31{left:324.480000px;}
.x32{left:338.064000px;}
.x67{left:339.957000px;}
.x68{left:347.578500px;}
.x74{left:348.700500px;}
.x2f{left:350.665500px;}
.x2c{left:351.826500px;}
.x63{left:359.431500px;}
.x69{left:362.523000px;}
.x75{left:363.645000px;}
.x64{left:366.903000px;}
.x61{left:369.052500px;}
.x65{left:370.594500px;}
.x7a{left:372.411000px;}
.x76{left:374.247000px;}
.x66{left:378.066000px;}
.x62{left:383.997000px;}
.xb{left:385.009500px;}
.x6c{left:387.871500px;}
.x5f{left:389.863500px;}
.xc{left:396.072000px;}
.x60{left:397.335000px;}
.x6d{left:402.816000px;}
.x72{left:403.993500px;}
.x30{left:413.458500px;}
.x4c{left:426.030000px;}
.x20{left:427.566000px;}
.x79{left:433.692000px;}
.x21{left:435.039000px;}
.x4d{left:441.468000px;}
.x1e{left:460.131000px;}
.x46{left:461.736000px;}
.xd{left:464.685000px;}
.x47{left:471.447000px;}
.xe{left:475.747500px;}
.x34{left:481.272000px;}
.x1f{left:482.697000px;}
.x5a{left:486.919500px;}
.x16{left:489.381000px;}
.x5b{left:495.138000px;}
.x17{left:496.854000px;}
.x78{left:498.898500px;}
.x26{left:504.280500px;}
.x5c{left:512.101500px;}
.x27{left:519.225000px;}
.x56{left:541.182000px;}
.x57{left:550.893000px;}
.x18{left:553.216500px;}
.x19{left:560.688000px;}
.x1a{left:568.309500px;}
.x10{left:570.439500px;}
.x11{left:577.911000px;}
.x1b{left:583.254000px;}
.x12{left:585.234000px;}
.x13{left:592.705500px;}
.x45{left:601.179000px;}
.x6e{left:605.869500px;}
.x22{left:613.983000px;}
.x23{left:621.454500px;}
.x5d{left:632.239500px;}
.x51{left:635.647358px;}
.x5e{left:639.711000px;}
.x52{left:667.830000px;}
.x53{left:678.294000px;}
.x48{left:686.626500px;}
.x49{left:697.689000px;}
.x3d{left:710.245500px;}
.x6f{left:713.397000px;}
.x1c{left:720.729000px;}
.x2d{left:725.202000px;}
.x7e{left:726.589500px;}
.x7f{left:729.154500px;}
.x7c{left:732.697500px;}
.x1d{left:735.672000px;}
.x6a{left:738.495000px;}
.x28{left:740.032500px;}
.x2e{left:741.298500px;}
.x54{left:746.892000px;}
.x6b{left:753.438000px;}
.x55{left:755.863500px;}
.x29{left:757.245000px;}
.x7d{left:759.597000px;}
.x24{left:762.606000px;}
.x82{left:767.085000px;}
.x4a{left:773.637000px;}
.x25{left:778.989000px;}
.x7b{left:781.816500px;}
.x4b{left:784.840500px;}
.x80{left:789.438000px;}
.x83{left:793.984500px;}
.x3b{left:798.990000px;}
.x9{left:803.170500px;}
.x3c{left:811.282500px;}
.xa{left:814.233000px;}
.x81{left:816.337500px;}
.x14{left:825.352500px;}
.x15{left:832.825500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls49{letter-spacing:-0.168336pt;}
.ls3a{letter-spacing:-0.157114pt;}
.ls4b{letter-spacing:-0.117835pt;}
.ls30{letter-spacing:-0.106613pt;}
.ls33{letter-spacing:-0.101002pt;}
.ls4c{letter-spacing:-0.089779pt;}
.ls2d{letter-spacing:-0.084907pt;}
.ls4a{letter-spacing:-0.078557pt;}
.ls47{letter-spacing:-0.067334pt;}
.ls37{letter-spacing:-0.061723pt;}
.ls39{letter-spacing:-0.056112pt;}
.ls32{letter-spacing:-0.044890pt;}
.ls48{letter-spacing:-0.039278pt;}
.ls2c{letter-spacing:-0.035750pt;}
.ls38{letter-spacing:-0.028056pt;}
.ls36{letter-spacing:-0.022445pt;}
.ls34{letter-spacing:-0.020160pt;}
.ls31{letter-spacing:-0.016834pt;}
.ls2f{letter-spacing:-0.011222pt;}
.ls4d{letter-spacing:-0.010080pt;}
.ls2e{letter-spacing:-0.008938pt;}
.ls3b{letter-spacing:-0.005611pt;}
.ls35{letter-spacing:-0.005040pt;}
.lsf{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.000008pt;}
.ls60{letter-spacing:0.000159pt;}
.ls5c{letter-spacing:0.000447pt;}
.ls2{letter-spacing:0.000533pt;}
.ls52{letter-spacing:0.000600pt;}
.ls4e{letter-spacing:0.000711pt;}
.ls62{letter-spacing:0.000921pt;}
.ls57{letter-spacing:0.000998pt;}
.ls5a{letter-spacing:0.001408pt;}
.ls61{letter-spacing:0.002212pt;}
.ls4f{letter-spacing:0.002262pt;}
.ls6{letter-spacing:0.002422pt;}
.ls55{letter-spacing:0.003150pt;}
.ls5f{letter-spacing:0.003335pt;}
.ls45{letter-spacing:0.003635pt;}
.ls5d{letter-spacing:0.003752pt;}
.ls58{letter-spacing:0.004267pt;}
.ls44{letter-spacing:0.005040pt;}
.lsd{letter-spacing:0.005067pt;}
.ls28{letter-spacing:0.005611pt;}
.ls22{letter-spacing:0.010080pt;}
.ls1f{letter-spacing:0.015120pt;}
.ls41{letter-spacing:0.020160pt;}
.ls1d{letter-spacing:0.022445pt;}
.ls40{letter-spacing:0.025200pt;}
.ls3d{letter-spacing:0.028056pt;}
.ls46{letter-spacing:0.033667pt;}
.ls42{letter-spacing:0.035280pt;}
.ls1e{letter-spacing:0.039278pt;}
.ls21{letter-spacing:0.040320pt;}
.ls23{letter-spacing:0.045360pt;}
.ls25{letter-spacing:0.050400pt;}
.ls3c{letter-spacing:0.061723pt;}
.ls29{letter-spacing:0.067334pt;}
.ls43{letter-spacing:0.070560pt;}
.ls3f{letter-spacing:0.084168pt;}
.ls1c{letter-spacing:0.089779pt;}
.ls20{letter-spacing:0.100800pt;}
.ls24{letter-spacing:0.115920pt;}
.ls3e{letter-spacing:0.129058pt;}
.ls26{letter-spacing:0.134669pt;}
.ls1b{letter-spacing:0.151939pt;}
.ls27{letter-spacing:0.168336pt;}
.ls1a{letter-spacing:0.169814pt;}
.ls2a{letter-spacing:0.570745pt;}
.ls13{letter-spacing:0.576078pt;}
.ls18{letter-spacing:0.637762pt;}
.lse{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls5{letter-spacing:2.651733pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1{letter-spacing:9.298933pt;}
.lsc{letter-spacing:10.626533pt;}
.ls9{letter-spacing:11.066471pt;}
.ls5b{letter-spacing:11.763683pt;}
.lsa{letter-spacing:11.883140pt;}
.ls51{letter-spacing:11.954133pt;}
.ls50{letter-spacing:11.959467pt;}
.lsb{letter-spacing:12.042541pt;}
.ls12{letter-spacing:12.528078pt;}
.ls14{letter-spacing:12.533411pt;}
.ls5e{letter-spacing:12.823885pt;}
.ls16{letter-spacing:13.193611pt;}
.ls19{letter-spacing:13.283733pt;}
.ls2b{letter-spacing:13.302454pt;}
.ls15{letter-spacing:13.478997pt;}
.ls11{letter-spacing:13.917762pt;}
.ls17{letter-spacing:13.923096pt;}
.ls53{letter-spacing:13.953297pt;}
.ls63{letter-spacing:15.307545pt;}
.ls59{letter-spacing:15.506238pt;}
.ls10{letter-spacing:16.549407pt;}
.ls64{letter-spacing:16.656565pt;}
.ls56{letter-spacing:16.813427pt;}
.ls4{letter-spacing:51.035733pt;}
.ls7{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ws10{word-spacing:-105.226313pt;}
.ws93{word-spacing:-14.028000pt;}
.ws11{word-spacing:-13.283467pt;}
.ws69{word-spacing:-12.600000pt;}
.ws98{word-spacing:-11.955200pt;}
.ws67{word-spacing:-11.341814pt;}
.ws68{word-spacing:-11.172000pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws17{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsa1{word-spacing:-3.237662pt;}
.wsa2{word-spacing:-3.198384pt;}
.ws37{word-spacing:-2.975497pt;}
.ws6d{word-spacing:-2.762961pt;}
.ws35{word-spacing:-2.231622pt;}
.ws4c{word-spacing:-2.125355pt;}
.ws6c{word-spacing:-1.859685pt;}
.wsc7{word-spacing:-1.769370pt;}
.ws1{word-spacing:-1.696326pt;}
.wsb6{word-spacing:-1.594016pt;}
.ws92{word-spacing:-1.587970pt;}
.wsc8{word-spacing:-1.578086pt;}
.wsc6{word-spacing:-1.434624pt;}
.wsbb{word-spacing:-1.434614pt;}
.ws0{word-spacing:-1.175671pt;}
.ws91{word-spacing:-1.105406pt;}
.ws6{word-spacing:-1.041421pt;}
.ws42{word-spacing:-1.009543pt;}
.ws9b{word-spacing:-0.959515pt;}
.ws8{word-spacing:-0.929840pt;}
.wsac{word-spacing:-0.912240pt;}
.ws21{word-spacing:-0.908595pt;}
.ws89{word-spacing:-0.897792pt;}
.ws7f{word-spacing:-0.892080pt;}
.ws7d{word-spacing:-0.887040pt;}
.wsad{word-spacing:-0.876960pt;}
.ws88{word-spacing:-0.869736pt;}
.wsa5{word-spacing:-0.866880pt;}
.wsa7{word-spacing:-0.861840pt;}
.ws9c{word-spacing:-0.858514pt;}
.ws7e{word-spacing:-0.851760pt;}
.wsa6{word-spacing:-0.831600pt;}
.ws51{word-spacing:-0.743874pt;}
.ws45{word-spacing:-0.690740pt;}
.ws20{word-spacing:-0.669491pt;}
.ws2a{word-spacing:-0.637606pt;}
.ws9e{word-spacing:-0.611621pt;}
.ws40{word-spacing:-0.531339pt;}
.ws52{word-spacing:-0.478205pt;}
.ws39{word-spacing:-0.425071pt;}
.ws82{word-spacing:-0.387173pt;}
.ws3f{word-spacing:-0.371937pt;}
.ws81{word-spacing:-0.342283pt;}
.ws94{word-spacing:-0.334746pt;}
.ws8d{word-spacing:-0.319838pt;}
.ws26{word-spacing:-0.286925pt;}
.ws31{word-spacing:-0.265669pt;}
.ws1f{word-spacing:-0.239104pt;}
.ws3b{word-spacing:-0.212535pt;}
.ws6a{word-spacing:-0.191283pt;}
.ws46{word-spacing:-0.159402pt;}
.ws95{word-spacing:-0.143462pt;}
.ws2b{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.095642pt;}
.ws6f{word-spacing:-0.075970pt;}
.ws12{word-spacing:-0.053134pt;}
.ws22{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.001859pt;}
.ws14{word-spacing:-0.000007pt;}
.ws3{word-spacing:0.000000pt;}
.ws64{word-spacing:0.000800pt;}
.ws13{word-spacing:0.001378pt;}
.ws16{word-spacing:0.001882pt;}
.ws19{word-spacing:0.002415pt;}
.ws8e{word-spacing:0.011222pt;}
.ws79{word-spacing:0.044890pt;}
.wsc9{word-spacing:0.047821pt;}
.ws43{word-spacing:0.053134pt;}
.ws23{word-spacing:0.095642pt;}
.ws3c{word-spacing:0.106268pt;}
.ws1d{word-spacing:0.143462pt;}
.wsae{word-spacing:0.146160pt;}
.wsb0{word-spacing:0.151200pt;}
.ws2c{word-spacing:0.159402pt;}
.wsaf{word-spacing:0.161280pt;}
.ws80{word-spacing:0.171360pt;}
.wsa4{word-spacing:0.173947pt;}
.ws1e{word-spacing:0.191283pt;}
.wsa3{word-spacing:0.202003pt;}
.ws47{word-spacing:0.212535pt;}
.ws96{word-spacing:0.239104pt;}
.ws32{word-spacing:0.265669pt;}
.ws97{word-spacing:0.286925pt;}
.ws3a{word-spacing:0.318803pt;}
.ws72{word-spacing:0.331061pt;}
.ws24{word-spacing:0.334746pt;}
.ws34{word-spacing:0.371937pt;}
.ws29{word-spacing:0.425071pt;}
.ws71{word-spacing:0.432062pt;}
.ws83{word-spacing:0.443285pt;}
.ws5d{word-spacing:0.588655pt;}
.ws5f{word-spacing:0.593067pt;}
.ws5e{word-spacing:0.598400pt;}
.ws5c{word-spacing:0.610654pt;}
.wse5{word-spacing:0.621670pt;}
.wscc{word-spacing:0.669491pt;}
.ws5a{word-spacing:0.690740pt;}
.wsbd{word-spacing:0.743874pt;}
.ws25{word-spacing:0.812954pt;}
.ws41{word-spacing:0.850142pt;}
.ws7{word-spacing:0.892646pt;}
.wsca{word-spacing:0.908595pt;}
.wscb{word-spacing:0.919294pt;}
.ws4b{word-spacing:1.009543pt;}
.wsb5{word-spacing:1.062677pt;}
.wsc3{word-spacing:1.099878pt;}
.wsc1{word-spacing:1.115811pt;}
.ws87{word-spacing:1.122240pt;}
.ws7b{word-spacing:1.134000pt;}
.ws86{word-spacing:1.155907pt;}
.ws7c{word-spacing:1.164240pt;}
.ws53{word-spacing:1.168945pt;}
.ws7a{word-spacing:1.194480pt;}
.wsda{word-spacing:1.195520pt;}
.wsbc{word-spacing:1.222079pt;}
.ws9d{word-spacing:1.363522pt;}
.ws57{word-spacing:1.381481pt;}
.wsd5{word-spacing:1.386803pt;}
.ws63{word-spacing:1.487748pt;}
.wsdb{word-spacing:1.530266pt;}
.ws50{word-spacing:1.540882pt;}
.ws2e{word-spacing:1.594016pt;}
.ws48{word-spacing:1.647150pt;}
.wsa0{word-spacing:1.733861pt;}
.wse4{word-spacing:1.769370pt;}
.wsba{word-spacing:1.806551pt;}
.wsab{word-spacing:1.814400pt;}
.wsd3{word-spacing:1.817190pt;}
.wsaa{word-spacing:1.824480pt;}
.wsa8{word-spacing:1.834560pt;}
.wsa9{word-spacing:1.839600pt;}
.wsbe{word-spacing:1.859685pt;}
.wsd9{word-spacing:1.960653pt;}
.wsdd{word-spacing:2.008474pt;}
.ws56{word-spacing:2.072221pt;}
.ws66{word-spacing:2.125355pt;}
.ws4e{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.wsc0{word-spacing:2.444158pt;}
.ws1b{word-spacing:2.550432pt;}
.wsec{word-spacing:2.630144pt;}
.ws77{word-spacing:2.749488pt;}
.wsb9{word-spacing:2.762961pt;}
.wse6{word-spacing:2.773606pt;}
.ws27{word-spacing:2.861926pt;}
.wsd6{word-spacing:2.862387pt;}
.wse3{word-spacing:2.869248pt;}
.ws62{word-spacing:2.975497pt;}
.wsb1{word-spacing:3.028630pt;}
.ws85{word-spacing:3.102994pt;}
.ws84{word-spacing:3.125438pt;}
.ws2d{word-spacing:3.134898pt;}
.ws28{word-spacing:3.188032pt;}
.ws59{word-spacing:3.241166pt;}
.ws58{word-spacing:3.294300pt;}
.wsd8{word-spacing:3.299635pt;}
.wsb2{word-spacing:3.347434pt;}
.ws4a{word-spacing:3.400567pt;}
.wse8{word-spacing:3.538739pt;}
.wsb8{word-spacing:3.559969pt;}
.ws38{word-spacing:3.666237pt;}
.wsee{word-spacing:3.730022pt;}
.ws6b{word-spacing:3.777843pt;}
.wsb4{word-spacing:3.825638pt;}
.wse0{word-spacing:3.825664pt;}
.ws55{word-spacing:3.878772pt;}
.ws54{word-spacing:3.931906pt;}
.ws44{word-spacing:3.985040pt;}
.wsc2{word-spacing:4.016947pt;}
.ws65{word-spacing:4.091308pt;}
.wse{word-spacing:4.240070pt;}
.ws4f{word-spacing:4.250709pt;}
.wsf{word-spacing:4.314458pt;}
.ws9f{word-spacing:4.432848pt;}
.wsd7{word-spacing:4.495155pt;}
.wsf0{word-spacing:4.686438pt;}
.wse9{word-spacing:4.829901pt;}
.wse2{word-spacing:4.877722pt;}
.ws3e{word-spacing:4.888316pt;}
.ws75{word-spacing:5.167915pt;}
.ws5b{word-spacing:5.207119pt;}
.ws76{word-spacing:5.224027pt;}
.ws9a{word-spacing:5.419654pt;}
.ws8c{word-spacing:5.482142pt;}
.ws8b{word-spacing:5.504587pt;}
.ws49{word-spacing:5.525922pt;}
.ws4d{word-spacing:5.579056pt;}
.wsb7{word-spacing:5.685324pt;}
.ws78{word-spacing:5.757091pt;}
.ws8a{word-spacing:5.790758pt;}
.ws2f{word-spacing:5.844725pt;}
.ws99{word-spacing:5.897859pt;}
.ws3d{word-spacing:6.057261pt;}
.wsbf{word-spacing:6.216662pt;}
.ws30{word-spacing:6.269796pt;}
.wsc5{word-spacing:6.599270pt;}
.ws6e{word-spacing:6.641733pt;}
.ws61{word-spacing:6.907403pt;}
.wsc{word-spacing:6.918010pt;}
.wsc4{word-spacing:6.981837pt;}
.ws90{word-spacing:9.135034pt;}
.ws8f{word-spacing:9.168701pt;}
.ws4{word-spacing:9.258468pt;}
.ws33{word-spacing:10.578990pt;}
.wsa{word-spacing:10.823338pt;}
.ws70{word-spacing:10.850246pt;}
.wsd0{word-spacing:11.716096pt;}
.wsd4{word-spacing:11.903684pt;}
.wsea{word-spacing:11.904299pt;}
.wscd{word-spacing:11.907379pt;}
.ws36{word-spacing:13.230333pt;}
.ws74{word-spacing:13.876498pt;}
.ws73{word-spacing:13.966277pt;}
.wsb{word-spacing:14.319536pt;}
.wsed{word-spacing:14.537523pt;}
.wscf{word-spacing:14.633165pt;}
.wsde{word-spacing:14.728806pt;}
.wsd1{word-spacing:14.770953pt;}
.wsdf{word-spacing:14.772386pt;}
.wsd2{word-spacing:14.772471pt;}
.wsce{word-spacing:14.776627pt;}
.wsef{word-spacing:15.637402pt;}
.wse1{word-spacing:15.733043pt;}
.wseb{word-spacing:17.119846pt;}
.wsdc{word-spacing:19.845632pt;}
.wsb3{word-spacing:20.244003pt;}
.wsd{word-spacing:23.208806pt;}
.wse7{word-spacing:23.575654pt;}
.ws9{word-spacing:23.858002pt;}
.ws18{word-spacing:48.378430pt;}
.ws60{word-spacing:174.561067pt;}
._34{margin-left:-17.502576pt;}
._8{margin-left:-10.616218pt;}
._11{margin-left:-6.522013pt;}
._2{margin-left:-5.467459pt;}
._3{margin-left:-4.091296pt;}
._5{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._6{width:2.045648pt;}
._15{width:3.931906pt;}
._4{width:11.530096pt;}
._e{width:12.782959pt;}
._9{width:14.468410pt;}
._a{width:15.493939pt;}
._b{width:16.761292pt;}
._18{width:17.686851pt;}
._12{width:18.656714pt;}
._35{width:19.840524pt;}
._14{width:20.782068pt;}
._c{width:21.678618pt;}
._17{width:23.219500pt;}
._31{width:24.441579pt;}
._33{width:26.013347pt;}
._7{width:27.188522pt;}
._16{width:29.384426pt;}
._30{width:31.561517pt;}
._13{width:32.684054pt;}
._d{width:34.537013pt;}
._32{width:78.904320pt;}
._1b{width:115.630694pt;}
._24{width:161.613011pt;}
._1a{width:164.790477pt;}
._25{width:199.843123pt;}
._22{width:202.559275pt;}
._26{width:205.246874pt;}
._2e{width:224.813651pt;}
._1f{width:225.857638pt;}
._23{width:229.157274pt;}
._27{width:232.446353pt;}
._2a{width:238.398549pt;}
._29{width:240.538624pt;}
._2c{width:244.216559pt;}
._21{width:251.967795pt;}
._28{width:259.045274pt;}
._20{width:265.022874pt;}
._2b{width:276.978074pt;}
._1d{width:309.544038pt;}
._2d{width:330.776474pt;}
._1e{width:336.754074pt;}
._19{width:361.062928pt;}
._1c{width:470.317568pt;}
._f{width:970.481883pt;}
._2f{width:2071.498634pt;}
._10{width:2402.981194pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:44.688000pt;}
.fs9{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fse{font-size:50.400000pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fsd{font-size:56.112000pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:135.252331pt;}
.yab{bottom:-375.045580pt;}
.yc0{bottom:-318.763102pt;}
.ybf{bottom:-300.787623pt;}
.ybe{bottom:-278.694926pt;}
.ybd{bottom:-243.919514pt;}
.ybc{bottom:-226.028202pt;}
.ybb{bottom:-208.052723pt;}
.yba{bottom:-190.077244pt;}
.yb9{bottom:-172.185933pt;}
.yb8{bottom:-154.210454pt;}
.yd9{bottom:-144.689580pt;}
.yb7{bottom:-136.234974pt;}
.yb6{bottom:-114.142277pt;}
.yb5{bottom:-92.049580pt;}
.ye6{bottom:-83.706420pt;}
.ye5{bottom:-67.494000pt;}
.yb4{bottom:-57.609860pt;}
.ye4{bottom:-51.366000pt;}
.yb3{bottom:-41.397440pt;}
.ye3{bottom:-35.238000pt;}
.yb2{bottom:-25.269440pt;}
.ye2{bottom:-19.025580pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:1.892520pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y20{bottom:13.220082pt;}
.y4f{bottom:28.346667pt;}
.yd5{bottom:86.138667pt;}
.y143{bottom:86.356000pt;}
.yef{bottom:89.504000pt;}
.y4e{bottom:92.733333pt;}
.y1e{bottom:93.018667pt;}
.y83{bottom:93.290667pt;}
.y11a{bottom:95.681333pt;}
.y142{bottom:101.698667pt;}
.yd4{bottom:102.876000pt;}
.yee{bottom:106.241333pt;}
.y1d{bottom:108.920000pt;}
.y4d{bottom:109.470667pt;}
.y82{bottom:110.028000pt;}
.y119{bottom:112.418667pt;}
.y141{bottom:117.041333pt;}
.yd3{bottom:119.613333pt;}
.yed{bottom:122.978667pt;}
.y1c{bottom:124.820000pt;}
.y4c{bottom:126.208000pt;}
.y81{bottom:126.765333pt;}
.y118{bottom:129.156000pt;}
.y140{bottom:132.384000pt;}
.ya7{bottom:135.170667pt;}
.yd2{bottom:136.350667pt;}
.y177{bottom:138.918667pt;}
.y1b{bottom:140.720000pt;}
.y4b{bottom:142.945333pt;}
.y80{bottom:143.502667pt;}
.yec{bottom:143.701333pt;}
.y117{bottom:145.893333pt;}
.y13f{bottom:147.726667pt;}
.ya6{bottom:151.908000pt;}
.yd1{bottom:153.088000pt;}
.y176{bottom:154.261333pt;}
.y1a{bottom:156.621333pt;}
.y4a{bottom:159.682667pt;}
.y7f{bottom:160.238667pt;}
.y116{bottom:162.630667pt;}
.y13e{bottom:163.069333pt;}
.ya5{bottom:168.645333pt;}
.y175{bottom:169.604000pt;}
.yd0{bottom:169.825333pt;}
.yeb{bottom:170.748000pt;}
.y19{bottom:172.521333pt;}
.y49{bottom:176.420000pt;}
.y7e{bottom:176.976000pt;}
.y13d{bottom:178.412000pt;}
.y115{bottom:179.368000pt;}
.y174{bottom:184.946667pt;}
.ya4{bottom:185.382667pt;}
.ycf{bottom:186.562667pt;}
.yea{bottom:187.844000pt;}
.y18{bottom:188.421333pt;}
.y48{bottom:193.157333pt;}
.y13c{bottom:193.754667pt;}
.y114{bottom:196.105333pt;}
.y7d{bottom:197.698667pt;}
.y173{bottom:200.289333pt;}
.ya3{bottom:202.118667pt;}
.yce{bottom:203.300000pt;}
.y17{bottom:204.322667pt;}
.ye9{bottom:204.938667pt;}
.y13b{bottom:209.096000pt;}
.y47{bottom:209.894667pt;}
.y113{bottom:212.841333pt;}
.y172{bottom:215.632000pt;}
.ya2{bottom:218.856000pt;}
.ycd{bottom:220.037333pt;}
.ye8{bottom:222.034667pt;}
.y13a{bottom:224.438667pt;}
.y46{bottom:226.632000pt;}
.y7c{bottom:227.586667pt;}
.y112{bottom:229.578667pt;}
.y171{bottom:230.974667pt;}
.ya1{bottom:235.593333pt;}
.ye7{bottom:239.130667pt;}
.y139{bottom:239.781333pt;}
.ycc{bottom:240.758667pt;}
.y45{bottom:243.369333pt;}
.y7b{bottom:244.324000pt;}
.y111{bottom:246.316000pt;}
.ya0{bottom:252.330667pt;}
.y138{bottom:255.124000pt;}
.y44{bottom:260.106667pt;}
.y7a{bottom:261.061333pt;}
.y170{bottom:261.658667pt;}
.yd6{bottom:261.725333pt;}
.y110{bottom:263.053333pt;}
.y16{bottom:266.804000pt;}
.y9f{bottom:269.068000pt;}
.y137{bottom:270.466667pt;}
.ycb{bottom:270.646667pt;}
.y43{bottom:276.844000pt;}
.y16f{bottom:277.001333pt;}
.y79{bottom:277.798667pt;}
.y10f{bottom:279.790667pt;}
.y15{bottom:282.705333pt;}
.y9e{bottom:285.805333pt;}
.y136{bottom:285.809333pt;}
.yca{bottom:287.384000pt;}
.y16e{bottom:292.344000pt;}
.y78{bottom:294.536000pt;}
.y10e{bottom:296.528000pt;}
.y42{bottom:297.566667pt;}
.y14{bottom:298.605333pt;}
.y9d{bottom:302.542667pt;}
.yc9{bottom:304.121333pt;}
.y135{bottom:305.136000pt;}
.y16d{bottom:307.686667pt;}
.y77{bottom:311.273333pt;}
.y10d{bottom:313.265333pt;}
.y13{bottom:314.505333pt;}
.y9c{bottom:319.280000pt;}
.yc8{bottom:320.858667pt;}
.y16c{bottom:323.029333pt;}
.y76{bottom:328.010667pt;}
.y10c{bottom:330.002667pt;}
.y134{bottom:335.024000pt;}
.y9b{bottom:336.017333pt;}
.yc7{bottom:337.596000pt;}
.y16b{bottom:338.372000pt;}
.y12{bottom:338.376000pt;}
.y75{bottom:344.748000pt;}
.y10b{bottom:346.740000pt;}
.y9a{bottom:352.754667pt;}
.y16a{bottom:353.714667pt;}
.y11{bottom:354.277333pt;}
.yc6{bottom:354.333333pt;}
.y133{bottom:358.616000pt;}
.y74{bottom:361.485333pt;}
.y10a{bottom:363.477333pt;}
.y41{bottom:364.366667pt;}
.y169{bottom:369.056000pt;}
.y10{bottom:370.177333pt;}
.y132{bottom:374.237333pt;}
.yc5{bottom:375.056000pt;}
.y73{bottom:378.222667pt;}
.y109{bottom:380.214667pt;}
.y99{bottom:380.458667pt;}
.y168{bottom:384.398667pt;}
.yc4{bottom:392.989333pt;}
.y72{bottom:394.960000pt;}
.yf{bottom:395.376000pt;}
.y108{bottom:396.952000pt;}
.y98{bottom:397.209333pt;}
.y40{bottom:397.601333pt;}
.y131{bottom:397.829333pt;}
.y167{bottom:399.741333pt;}
.y71{bottom:411.697333pt;}
.y97{bottom:411.821333pt;}
.y130{bottom:413.450667pt;}
.y107{bottom:413.689333pt;}
.y3f{bottom:414.897333pt;}
.y166{bottom:415.084000pt;}
.ye{bottom:419.246667pt;}
.yc3{bottom:420.036000pt;}
.y96{bottom:426.432000pt;}
.y70{bottom:428.434667pt;}
.y106{bottom:430.426667pt;}
.y3e{bottom:432.192000pt;}
.yd{bottom:435.146667pt;}
.y12f{bottom:437.042667pt;}
.yc2{bottom:437.130667pt;}
.y95{bottom:441.044000pt;}
.y165{bottom:445.769333pt;}
.y105{bottom:447.164000pt;}
.y6f{bottom:449.156000pt;}
.y3d{bottom:449.488000pt;}
.yc{bottom:451.048000pt;}
.yc1{bottom:454.226667pt;}
.y94{bottom:455.656000pt;}
.y12e{bottom:460.633333pt;}
.y164{bottom:461.112000pt;}
.y104{bottom:463.901333pt;}
.y3c{bottom:466.782667pt;}
.yb{bottom:466.948000pt;}
.y93{bottom:470.268000pt;}
.y12d{bottom:476.254667pt;}
.y163{bottom:476.454667pt;}
.ya8{bottom:476.821333pt;}
.y6e{bottom:479.044000pt;}
.y103{bottom:480.638667pt;}
.ya{bottom:482.848000pt;}
.y3b{bottom:484.077333pt;}
.y92{bottom:484.880000pt;}
.y162{bottom:491.797333pt;}
.y12c{bottom:491.877333pt;}
.y6d{bottom:495.781333pt;}
.y102{bottom:497.376000pt;}
.y9{bottom:498.749333pt;}
.y91{bottom:499.492000pt;}
.y3a{bottom:501.373333pt;}
.y161{bottom:507.138667pt;}
.y6c{bottom:512.518667pt;}
.y90{bottom:514.104000pt;}
.y101{bottom:514.113333pt;}
.y8{bottom:514.649333pt;}
.y12b{bottom:515.468000pt;}
.y39{bottom:518.668000pt;}
.y160{bottom:522.481333pt;}
.y6b{bottom:529.256000pt;}
.y7{bottom:530.549333pt;}
.y100{bottom:530.850667pt;}
.y12a{bottom:531.089333pt;}
.y8f{bottom:535.117333pt;}
.y38{bottom:535.962667pt;}
.y15f{bottom:537.824000pt;}
.yb1{bottom:543.495957pt;}
.y6a{bottom:545.993333pt;}
.y6{bottom:546.450667pt;}
.yff{bottom:547.588000pt;}
.y15e{bottom:553.166667pt;}
.y37{bottom:553.258667pt;}
.y129{bottom:554.681333pt;}
.yb0{bottom:561.471436pt;}
.y5{bottom:562.350667pt;}
.y69{bottom:562.730667pt;}
.y8e{bottom:563.224000pt;}
.yfe{bottom:564.325333pt;}
.y15d{bottom:568.509333pt;}
.y128{bottom:570.302667pt;}
.y36{bottom:570.553333pt;}
.y4{bottom:578.250667pt;}
.yaf{bottom:579.362748pt;}
.y68{bottom:579.468000pt;}
.yfd{bottom:581.062667pt;}
.y15c{bottom:583.852000pt;}
.y127{bottom:585.924000pt;}
.y35{bottom:587.849333pt;}
.y1{bottom:594.151968pt;}
.y67{bottom:596.205333pt;}
.yae{bottom:597.338227pt;}
.yfc{bottom:597.800000pt;}
.y15b{bottom:599.194667pt;}
.y126{bottom:601.545333pt;}
.y34{bottom:605.144000pt;}
.y66{bottom:612.942667pt;}
.yfb{bottom:614.537333pt;}
.yad{bottom:615.313706pt;}
.y125{bottom:617.166667pt;}
.y65{bottom:629.680000pt;}
.y15a{bottom:629.878667pt;}
.yfa{bottom:631.274667pt;}
.y124{bottom:632.788000pt;}
.yac{bottom:633.206420pt;}
.y33{bottom:639.442667pt;}
.y159{bottom:645.221333pt;}
.y64{bottom:646.417333pt;}
.yf9{bottom:648.012000pt;}
.y32{bottom:653.788000pt;}
.y158{bottom:660.564000pt;}
.y63{bottom:663.154667pt;}
.y123{bottom:664.350667pt;}
.yf8{bottom:664.749333pt;}
.y31{bottom:671.992000pt;}
.y157{bottom:675.906667pt;}
.y62{bottom:679.892000pt;}
.y122{bottom:681.088000pt;}
.yf7{bottom:681.485333pt;}
.y30{bottom:682.481333pt;}
.yaa{bottom:684.278546pt;}
.y156{bottom:691.249333pt;}
.ya9{bottom:693.266420pt;}
.y61{bottom:696.629333pt;}
.y121{bottom:697.825333pt;}
.yf6{bottom:698.222667pt;}
.y2f{bottom:700.684000pt;}
.y155{bottom:706.592000pt;}
.y2e{bottom:711.173333pt;}
.y60{bottom:713.366667pt;}
.y120{bottom:714.562667pt;}
.yf5{bottom:714.960000pt;}
.y154{bottom:721.934667pt;}
.y2d{bottom:725.520000pt;}
.y5f{bottom:730.104000pt;}
.y11f{bottom:731.300000pt;}
.yf4{bottom:731.697333pt;}
.y153{bottom:737.277333pt;}
.y2c{bottom:743.724000pt;}
.y5e{bottom:746.841333pt;}
.y11e{bottom:748.036000pt;}
.yf3{bottom:748.434667pt;}
.y152{bottom:752.620000pt;}
.y2b{bottom:754.212000pt;}
.ye0{bottom:755.960646pt;}
.y5d{bottom:763.578667pt;}
.y11d{bottom:764.773333pt;}
.yf2{bottom:765.172000pt;}
.y8d{bottom:767.564000pt;}
.y151{bottom:767.961333pt;}
.y2a{bottom:768.558667pt;}
.ydf{bottom:773.851957pt;}
.y5c{bottom:780.316000pt;}
.y11c{bottom:781.510667pt;}
.yf1{bottom:781.909333pt;}
.y150{bottom:783.304000pt;}
.y8c{bottom:785.496000pt;}
.y29{bottom:786.762667pt;}
.yde{bottom:791.827436pt;}
.y5b{bottom:797.053333pt;}
.y28{bottom:797.250667pt;}
.yf0{bottom:798.646667pt;}
.y11b{bottom:802.233333pt;}
.ydd{bottom:809.718748pt;}
.y5a{bottom:813.790667pt;}
.y14f{bottom:813.989333pt;}
.y8b{bottom:815.384000pt;}
.y27{bottom:815.454667pt;}
.ydc{bottom:827.694227pt;}
.y14e{bottom:829.332000pt;}
.y59{bottom:830.528000pt;}
.y8a{bottom:832.121333pt;}
.y14d{bottom:844.674667pt;}
.ydb{bottom:845.669706pt;}
.y58{bottom:847.265333pt;}
.y89{bottom:848.858667pt;}
.y26{bottom:855.166667pt;}
.y14c{bottom:860.017333pt;}
.yda{bottom:863.562420pt;}
.y57{bottom:864.002667pt;}
.y88{bottom:865.596000pt;}
.y25{bottom:871.904000pt;}
.y14b{bottom:875.360000pt;}
.y56{bottom:880.740000pt;}
.y87{bottom:882.333333pt;}
.y24{bottom:888.641333pt;}
.y149{bottom:890.701333pt;}
.y14a{bottom:890.702667pt;}
.y86{bottom:899.070667pt;}
.y55{bottom:901.461333pt;}
.y148{bottom:906.044000pt;}
.yd8{bottom:914.634546pt;}
.y85{bottom:915.808000pt;}
.y54{bottom:919.394667pt;}
.y23{bottom:921.320000pt;}
.y147{bottom:921.386667pt;}
.yd7{bottom:923.622420pt;}
.y84{bottom:932.545333pt;}
.y146{bottom:936.729333pt;}
.y22{bottom:946.425333pt;}
.y53{bottom:949.282667pt;}
.y145{bottom:952.072000pt;}
.y52{bottom:966.020000pt;}
.y144{bottom:967.414667pt;}
.y21{bottom:971.530667pt;}
.y51{bottom:982.757333pt;}
.y1f{bottom:1010.186667pt;}
.y50{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hc{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hd{height:30.945242pt;}
.h14{height:31.157778pt;}
.h11{height:33.186336pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h10{height:35.052646pt;}
.h15{height:36.873667pt;}
.h12{height:38.256384pt;}
.h13{height:38.681455pt;}
.h9{height:38.947124pt;}
.h1a{height:41.125055pt;}
.h17{height:41.327672pt;}
.h1c{height:43.660390pt;}
.h7{height:45.353467pt;}
.h19{height:46.610156pt;}
.hb{height:48.365611pt;}
.h18{height:51.892641pt;}
.ha{height:68.861952pt;}
.h8{height:91.701080pt;}
.h16{height:519.219400pt;}
.h1b{height:734.315400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:154.363763pt;}
.w5{width:560.817320pt;}
.w4{width:640.211040pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4f{left:-85.222480pt;}
.x3f{left:-81.007360pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x4{left:46.617333pt;}
.x1{left:47.621398pt;}
.x3{left:55.822731pt;}
.x3e{left:76.555160pt;}
.x50{left:97.309520pt;}
.x41{left:101.524086pt;}
.x4e{left:116.252280pt;}
.x40{left:131.260640pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x58{left:225.385333pt;}
.x33{left:229.828000pt;}
.x73{left:232.949333pt;}
.x59{left:235.344000pt;}
.x36{left:238.353333pt;}
.x6{left:239.924000pt;}
.x37{left:244.844000pt;}
.x38{left:249.184000pt;}
.xf{left:250.204000pt;}
.x2b{left:254.074667pt;}
.x39{left:255.012000pt;}
.x3a{left:255.968000pt;}
.x35{left:260.864000pt;}
.x70{left:265.384000pt;}
.x42{left:272.709333pt;}
.x8{left:273.897333pt;}
.x77{left:275.722667pt;}
.x43{left:276.734667pt;}
.x71{left:279.638667pt;}
.x2a{left:284.254667pt;}
.x44{left:286.034667pt;}
.x31{left:288.426667pt;}
.x32{left:300.501333pt;}
.x67{left:302.184000pt;}
.x68{left:308.958667pt;}
.x74{left:309.956000pt;}
.x2f{left:311.702667pt;}
.x2c{left:312.734667pt;}
.x63{left:319.494667pt;}
.x69{left:322.242667pt;}
.x75{left:323.240000pt;}
.x64{left:326.136000pt;}
.x61{left:328.046667pt;}
.x65{left:329.417333pt;}
.x7a{left:331.032000pt;}
.x76{left:332.664000pt;}
.x66{left:336.058667pt;}
.x62{left:341.330667pt;}
.xb{left:342.230667pt;}
.x6c{left:344.774667pt;}
.x5f{left:346.545333pt;}
.xc{left:352.064000pt;}
.x60{left:353.186667pt;}
.x6d{left:358.058667pt;}
.x72{left:359.105333pt;}
.x30{left:367.518667pt;}
.x4c{left:378.693333pt;}
.x20{left:380.058667pt;}
.x79{left:385.504000pt;}
.x21{left:386.701333pt;}
.x4d{left:392.416000pt;}
.x1e{left:409.005333pt;}
.x46{left:410.432000pt;}
.xd{left:413.053333pt;}
.x47{left:419.064000pt;}
.xe{left:422.886667pt;}
.x34{left:427.797333pt;}
.x1f{left:429.064000pt;}
.x5a{left:432.817333pt;}
.x16{left:435.005333pt;}
.x5b{left:440.122667pt;}
.x17{left:441.648000pt;}
.x78{left:443.465333pt;}
.x26{left:448.249333pt;}
.x5c{left:455.201333pt;}
.x27{left:461.533333pt;}
.x56{left:481.050667pt;}
.x57{left:489.682667pt;}
.x18{left:491.748000pt;}
.x19{left:498.389333pt;}
.x1a{left:505.164000pt;}
.x10{left:507.057333pt;}
.x11{left:513.698667pt;}
.x1b{left:518.448000pt;}
.x12{left:520.208000pt;}
.x13{left:526.849333pt;}
.x45{left:534.381333pt;}
.x6e{left:538.550667pt;}
.x22{left:545.762667pt;}
.x23{left:552.404000pt;}
.x5d{left:561.990667pt;}
.x51{left:565.019874pt;}
.x5e{left:568.632000pt;}
.x52{left:593.626667pt;}
.x53{left:602.928000pt;}
.x48{left:610.334667pt;}
.x49{left:620.168000pt;}
.x3d{left:631.329333pt;}
.x6f{left:634.130667pt;}
.x1c{left:640.648000pt;}
.x2d{left:644.624000pt;}
.x7e{left:645.857333pt;}
.x7f{left:648.137333pt;}
.x7c{left:651.286667pt;}
.x1d{left:653.930667pt;}
.x6a{left:656.440000pt;}
.x28{left:657.806667pt;}
.x2e{left:658.932000pt;}
.x54{left:663.904000pt;}
.x6b{left:669.722667pt;}
.x55{left:671.878667pt;}
.x29{left:673.106667pt;}
.x7d{left:675.197333pt;}
.x24{left:677.872000pt;}
.x82{left:681.853333pt;}
.x4a{left:687.677333pt;}
.x25{left:692.434667pt;}
.x7b{left:694.948000pt;}
.x4b{left:697.636000pt;}
.x80{left:701.722667pt;}
.x83{left:705.764000pt;}
.x3b{left:710.213333pt;}
.x9{left:713.929333pt;}
.x3c{left:721.140000pt;}
.xa{left:723.762667pt;}
.x81{left:725.633333pt;}
.x14{left:733.646667pt;}
.x15{left:740.289333pt;}
}




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