
    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_9fa202e766ec3c93799b8d6a.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_7fc07e25f9ed7af10dc444fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_9b102141ca5789f5f17a41ce.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_71e92a130116e6bdb256af86.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_76aee719b95ae7bdbe38e19a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.638000;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_debaa5648ab81cc7f3c5cda2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0a2ea30c0ce8705d9b31c505.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_57188cfde99ac0eee17728b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.726000;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;}
.m6{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);}
.m9{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);}
.m22{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);}
.m11{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);}
.m14{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);}
.md{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);}
.m16{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);}
.m20{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);}
.m17{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);}
.m12{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);}
.m1e{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);}
.m26{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);}
.m10{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);}
.m25{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);}
.m27{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);}
.m4{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);}
.m21{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);}
.m5{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);}
.m2{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);}
.m13{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);}
.m1c{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);}
.m1d{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);}
.m3{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);}
.ma{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);}
.mc{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);}
.m29{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);}
.mb{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);}
.m7{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);}
.m28{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);}
.m1a{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);}
.me{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);}
.m1f{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);}
.m24{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);}
.m15{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);}
.m18{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);}
.m23{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);}
.m1{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);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.880000px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000406px;}
.ls24{letter-spacing:0.000419px;}
.ls18{letter-spacing:0.000503px;}
.lsb{letter-spacing:0.000566px;}
.ls2{letter-spacing:0.000600px;}
.ls39{letter-spacing:0.000676px;}
.ls13{letter-spacing:0.000800px;}
.ls3b{letter-spacing:0.000823px;}
.ls26{letter-spacing:0.000901px;}
.ls1e{letter-spacing:0.001155px;}
.ls2d{letter-spacing:0.001391px;}
.ls3d{letter-spacing:0.001502px;}
.ls3a{letter-spacing:0.001584px;}
.ls25{letter-spacing:0.001899px;}
.ls3e{letter-spacing:0.002186px;}
.ls21{letter-spacing:0.002841px;}
.ls34{letter-spacing:0.003070px;}
.ls3c{letter-spacing:0.003090px;}
.ls2e{letter-spacing:0.004026px;}
.ls33{letter-spacing:0.004158px;}
.ls17{letter-spacing:0.004221px;}
.ls16{letter-spacing:0.004800px;}
.ls5{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.960850px;}
.ls30{letter-spacing:13.207205px;}
.ls1c{letter-spacing:13.236171px;}
.ls27{letter-spacing:13.254542px;}
.ls2b{letter-spacing:13.266935px;}
.ls19{letter-spacing:13.274890px;}
.ls14{letter-spacing:13.298672px;}
.ls1f{letter-spacing:13.299168px;}
.ls38{letter-spacing:13.397897px;}
.ls20{letter-spacing:13.415706px;}
.ls2a{letter-spacing:13.427523px;}
.ls12{letter-spacing:13.448400px;}
.ls11{letter-spacing:13.454400px;}
.ls29{letter-spacing:13.464686px;}
.lsc{letter-spacing:13.509286px;}
.ls32{letter-spacing:13.617202px;}
.ls15{letter-spacing:13.626853px;}
.ls1d{letter-spacing:13.650908px;}
.ls22{letter-spacing:13.685094px;}
.ls1b{letter-spacing:13.712150px;}
.ls40{letter-spacing:13.783053px;}
.ls31{letter-spacing:14.279812px;}
.ls8{letter-spacing:14.645022px;}
.lsd{letter-spacing:14.943900px;}
.lse{letter-spacing:15.123227px;}
.ls28{letter-spacing:15.791576px;}
.ls37{letter-spacing:15.897459px;}
.ls9{letter-spacing:16.258963px;}
.ls3f{letter-spacing:16.432753px;}
.ls35{letter-spacing:16.632753px;}
.ls7{letter-spacing:17.454475px;}
.ls1a{letter-spacing:18.462165px;}
.ls2f{letter-spacing:18.832753px;}
.ls23{letter-spacing:19.203341px;}
.ls36{letter-spacing:19.826871px;}
.lsf{letter-spacing:21.220338px;}
.lsa{letter-spacing:21.638767px;}
.ls3{letter-spacing:28.453654px;}
.ls10{letter-spacing:94.292700px;}
.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;}
}
.ws9e{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.ws7{word-spacing:-10.460700px;}
.ws70{word-spacing:-2.958912px;}
.ws58{word-spacing:-2.809453px;}
.ws71{word-spacing:-2.743718px;}
.ws77{word-spacing:-2.391024px;}
.ws8f{word-spacing:-2.331248px;}
.ws46{word-spacing:-2.092146px;}
.wsa3{word-spacing:-1.936742px;}
.ws1{word-spacing:-1.908367px;}
.ws97{word-spacing:-1.793268px;}
.ws11e{word-spacing:-1.721549px;}
.ws59{word-spacing:-1.673717px;}
.ws91{word-spacing:-1.613941px;}
.ws114{word-spacing:-1.560154px;}
.ws43{word-spacing:-1.554166px;}
.ws6b{word-spacing:-1.434614px;}
.ws96{word-spacing:-1.374839px;}
.ws9b{word-spacing:-1.344960px;}
.ws0{word-spacing:-1.322630px;}
.ws6c{word-spacing:-1.315063px;}
.ws89{word-spacing:-1.255288px;}
.ws23{word-spacing:-1.195512px;}
.ws8{word-spacing:-1.171598px;}
.wsa{word-spacing:-1.046070px;}
.ws93{word-spacing:-1.016185px;}
.ws8c{word-spacing:-0.956410px;}
.wsbf{word-spacing:-0.806976px;}
.ws7d{word-spacing:-0.753178px;}
.ws33{word-spacing:-0.657532px;}
.ws3{word-spacing:-0.627642px;}
.ws79{word-spacing:-0.597756px;}
.wsc0{word-spacing:-0.537984px;}
.ws40{word-spacing:-0.537980px;}
.ws5c{word-spacing:-0.484186px;}
.ws47{word-spacing:-0.418429px;}
.wsf9{word-spacing:-0.376589px;}
.ws2{word-spacing:-0.374459px;}
.ws6a{word-spacing:-0.358654px;}
.wsb3{word-spacing:-0.322790px;}
.ws24{word-spacing:-0.298878px;}
.wsb2{word-spacing:-0.268992px;}
.ws3d{word-spacing:-0.239102px;}
.ws5d{word-spacing:-0.215194px;}
.ws2a{word-spacing:-0.179327px;}
.ws4c{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.119551px;}
.wsba{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.wscf{word-spacing:-0.054221px;}
.ws19{word-spacing:-0.053798px;}
.ws123{word-spacing:-0.022589px;}
.wsd9{word-spacing:-0.009955px;}
.wsb6{word-spacing:-0.009859px;}
.ws119{word-spacing:-0.009302px;}
.ws117{word-spacing:-0.009264px;}
.ws10c{word-spacing:-0.007786px;}
.wsd0{word-spacing:-0.007267px;}
.wsdc{word-spacing:-0.006221px;}
.ws10b{word-spacing:-0.005645px;}
.ws11c{word-spacing:-0.004675px;}
.ws11a{word-spacing:-0.004666px;}
.ws100{word-spacing:-0.004243px;}
.ws120{word-spacing:-0.004099px;}
.ws122{word-spacing:-0.004022px;}
.wsce{word-spacing:-0.003859px;}
.wsf8{word-spacing:-0.003773px;}
.wsd3{word-spacing:-0.003610px;}
.wsd7{word-spacing:-0.003427px;}
.wsd6{word-spacing:-0.003418px;}
.wsa6{word-spacing:-0.003302px;}
.ws2e{word-spacing:-0.002857px;}
.wsd2{word-spacing:-0.002506px;}
.wsd8{word-spacing:-0.001738px;}
.wsda{word-spacing:-0.001267px;}
.wsb1{word-spacing:-0.000221px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:0.000506px;}
.ws16{word-spacing:0.053798px;}
.ws27{word-spacing:0.059776px;}
.ws1e{word-spacing:0.107597px;}
.ws31{word-spacing:0.119551px;}
.wsa5{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.wsac{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.ws9d{word-spacing:0.268992px;}
.ws32{word-spacing:0.298878px;}
.wsaa{word-spacing:0.322790px;}
.ws74{word-spacing:0.358654px;}
.ws102{word-spacing:0.376589px;}
.ws36{word-spacing:0.418429px;}
.wsbe{word-spacing:0.537984px;}
.ws104{word-spacing:0.591782px;}
.ws78{word-spacing:0.597756px;}
.wsbd{word-spacing:0.699379px;}
.ws86{word-spacing:0.717307px;}
.wsaf{word-spacing:0.753178px;}
.ws38{word-spacing:0.777083px;}
.ws105{word-spacing:0.806976px;}
.ws45{word-spacing:0.896634px;}
.ws39{word-spacing:0.956410px;}
.ws9{word-spacing:1.004227px;}
.ws87{word-spacing:1.075961px;}
.ws5b{word-spacing:1.255288px;}
.wsb5{word-spacing:1.290221px;}
.ws73{word-spacing:1.315063px;}
.ws52{word-spacing:1.374839px;}
.wsf7{word-spacing:1.398758px;}
.ws34{word-spacing:1.434614px;}
.ws9c{word-spacing:1.452557px;}
.ws41{word-spacing:1.494390px;}
.ws17{word-spacing:1.506355px;}
.ws95{word-spacing:1.554166px;}
.ws103{word-spacing:1.613952px;}
.ws5e{word-spacing:1.673717px;}
.wsd1{word-spacing:1.721549px;}
.ws42{word-spacing:1.733492px;}
.ws81{word-spacing:1.793268px;}
.wse1{word-spacing:1.829146px;}
.ws111{word-spacing:1.882944px;}
.ws14{word-spacing:1.936742px;}
.ws7c{word-spacing:1.972595px;}
.wsa1{word-spacing:1.990541px;}
.wsa0{word-spacing:2.044339px;}
.ws15{word-spacing:2.098138px;}
.ws51{word-spacing:2.151922px;}
.ws11f{word-spacing:2.205734px;}
.ws2c{word-spacing:2.211697px;}
.ws94{word-spacing:2.271473px;}
.wsc8{word-spacing:2.313331px;}
.ws4a{word-spacing:2.331248px;}
.ws116{word-spacing:2.367130px;}
.ws113{word-spacing:2.420928px;}
.ws10d{word-spacing:2.474726px;}
.ws48{word-spacing:2.510575px;}
.ws5{word-spacing:2.511413px;}
.ws8a{word-spacing:2.570351px;}
.ws1c{word-spacing:2.582323px;}
.wsf0{word-spacing:2.618156px;}
.ws83{word-spacing:2.630126px;}
.ws1b{word-spacing:2.636122px;}
.ws88{word-spacing:2.689902px;}
.ws11b{word-spacing:2.689920px;}
.ws9f{word-spacing:2.743718px;}
.ws7a{word-spacing:2.749678px;}
.ws108{word-spacing:2.797517px;}
.ws4d{word-spacing:2.809453px;}
.ws13{word-spacing:2.869236px;}
.wsc4{word-spacing:2.905114px;}
.wsc3{word-spacing:2.919954px;}
.ws3a{word-spacing:2.929004px;}
.wsde{word-spacing:3.012710px;}
.ws29{word-spacing:3.048556px;}
.wsdf{word-spacing:3.066509px;}
.ws30{word-spacing:3.108331px;}
.wsa8{word-spacing:3.120307px;}
.ws10e{word-spacing:3.174106px;}
.wsfa{word-spacing:3.218918px;}
.ws107{word-spacing:3.218957px;}
.wsef{word-spacing:3.218986px;}
.wsdd{word-spacing:3.219149px;}
.wse8{word-spacing:3.219187px;}
.wse4{word-spacing:3.219514px;}
.wse2{word-spacing:3.219600px;}
.wsee{word-spacing:3.219763px;}
.wsbb{word-spacing:3.220070px;}
.wsea{word-spacing:3.220310px;}
.wse6{word-spacing:3.220560px;}
.wsff{word-spacing:3.220694px;}
.wse0{word-spacing:3.221299px;}
.ws101{word-spacing:3.221645px;}
.wsc9{word-spacing:3.221827px;}
.wse9{word-spacing:3.221962px;}
.wsa9{word-spacing:3.221971px;}
.ws121{word-spacing:3.222019px;}
.ws115{word-spacing:3.222211px;}
.wsb7{word-spacing:3.222288px;}
.wsb0{word-spacing:3.222518px;}
.wsae{word-spacing:3.222806px;}
.wsab{word-spacing:3.223219px;}
.wsf6{word-spacing:3.223229px;}
.wsd5{word-spacing:3.223296px;}
.wscd{word-spacing:3.223718px;}
.wsfc{word-spacing:3.223862px;}
.ws11d{word-spacing:3.224093px;}
.wsb4{word-spacing:3.224563px;}
.ws124{word-spacing:3.224986px;}
.wsb8{word-spacing:3.225082px;}
.wseb{word-spacing:3.225667px;}
.ws10a{word-spacing:3.225686px;}
.ws109{word-spacing:3.227578px;}
.ws49{word-spacing:3.227882px;}
.wsa4{word-spacing:3.227904px;}
.wsd4{word-spacing:3.230986px;}
.ws8b{word-spacing:3.287658px;}
.wsf1{word-spacing:3.335501px;}
.ws82{word-spacing:3.347434px;}
.wsdb{word-spacing:3.389299px;}
.wsbc{word-spacing:3.443098px;}
.wsad{word-spacing:3.550694px;}
.ws20{word-spacing:3.586536px;}
.ws3e{word-spacing:3.646312px;}
.wsfb{word-spacing:3.658291px;}
.ws98{word-spacing:3.706087px;}
.wsc1{word-spacing:3.804270px;}
.ws37{word-spacing:3.825638px;}
.ws92{word-spacing:3.885414px;}
.wsa7{word-spacing:3.927283px;}
.wse5{word-spacing:3.981082px;}
.ws25{word-spacing:4.004965px;}
.ws35{word-spacing:4.064741px;}
.wse7{word-spacing:4.088678px;}
.ws85{word-spacing:4.124516px;}
.ws1d{word-spacing:4.142477px;}
.ws8d{word-spacing:4.184292px;}
.wsfd{word-spacing:4.250074px;}
.wsf4{word-spacing:4.303872px;}
.ws72{word-spacing:4.363619px;}
.ws8e{word-spacing:4.423394px;}
.wsca{word-spacing:4.519066px;}
.ws3c{word-spacing:4.542946px;}
.wscb{word-spacing:4.572864px;}
.wsf2{word-spacing:4.626662px;}
.ws57{word-spacing:4.722272px;}
.ws106{word-spacing:4.734259px;}
.ws10{word-spacing:4.770079px;}
.ws3f{word-spacing:4.841824px;}
.wsed{word-spacing:4.841856px;}
.ws11{word-spacing:4.853765px;}
.wse3{word-spacing:4.895654px;}
.ws7f{word-spacing:4.961375px;}
.wsb9{word-spacing:5.003251px;}
.ws4f{word-spacing:5.021150px;}
.ws10f{word-spacing:5.057050px;}
.ws7b{word-spacing:5.080926px;}
.ws22{word-spacing:5.200477px;}
.ws44{word-spacing:5.379804px;}
.wsfe{word-spacing:5.379840px;}
.wsc5{word-spacing:5.415110px;}
.wsc6{word-spacing:5.433638px;}
.ws80{word-spacing:5.439580px;}
.wsf5{word-spacing:5.487437px;}
.ws84{word-spacing:5.559131px;}
.ws90{word-spacing:5.678682px;}
.wscc{word-spacing:5.756429px;}
.wsf3{word-spacing:5.810227px;}
.ws4e{word-spacing:5.858009px;}
.wsec{word-spacing:6.133018px;}
.ws75{word-spacing:6.276438px;}
.ws69{word-spacing:6.336214px;}
.ws110{word-spacing:6.402010px;}
.ws1a{word-spacing:6.509606px;}
.ws9a{word-spacing:6.563405px;}
.wsa2{word-spacing:6.671002px;}
.ws5a{word-spacing:6.754643px;}
.wsc2{word-spacing:6.832397px;}
.ws99{word-spacing:6.939994px;}
.ws50{word-spacing:6.993745px;}
.ws1f{word-spacing:6.993792px;}
.ws18{word-spacing:7.208986px;}
.ws3b{word-spacing:7.412174px;}
.ws28{word-spacing:7.591501px;}
.ws7e{word-spacing:7.711052px;}
.wse{word-spacing:7.782761px;}
.ws118{word-spacing:7.800768px;}
.ws76{word-spacing:7.950155px;}
.ws21{word-spacing:8.069706px;}
.ws56{word-spacing:8.189257px;}
.wsc7{word-spacing:8.284954px;}
.ws112{word-spacing:9.414720px;}
.wsc{word-spacing:12.176255px;}
.wsd{word-spacing:16.109478px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws6d{word-spacing:77.254502px;}
.ws6e{word-spacing:157.952102px;}
.ws6f{word-spacing:356.253005px;}
.ws54{word-spacing:416.023027px;}
.ws55{word-spacing:520.338125px;}
.ws53{word-spacing:560.686925px;}
.ws63{word-spacing:1026.473472px;}
.ws65{word-spacing:1027.818432px;}
.ws5f{word-spacing:1062.141811px;}
.ws68{word-spacing:1062.518400px;}
.ws60{word-spacing:1066.660877px;}
.ws61{word-spacing:1071.072346px;}
.ws66{word-spacing:1072.255910px;}
.ws64{word-spacing:1075.860403px;}
.ws67{word-spacing:1082.154816px;}
.ws62{word-spacing:1084.252954px;}
.ws4b{word-spacing:1173.988685px;}
._60{margin-left:-21.799860px;}
._62{margin-left:-7.962163px;}
._c{margin-left:-6.832397px;}
._2{margin-left:-5.337550px;}
._4{margin-left:-3.849538px;}
._12{margin-left:-2.743718px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._6{width:2.301354px;}
._5e{width:4.100186px;}
._7{width:11.398711px;}
._3{width:12.971268px;}
._15{width:14.901646px;}
._d{width:16.892698px;}
._16{width:18.179350px;}
._14{width:19.444591px;}
._11{width:21.154279px;}
._1a{width:22.320103px;}
._e{width:23.509901px;}
._13{width:24.639667px;}
._5{width:25.940136px;}
._2a{width:27.317449px;}
._43{width:28.341202px;}
._8{width:30.587087px;}
._5d{width:31.653121px;}
._9{width:33.355008px;}
._2b{width:35.012708px;}
._10{width:36.636710px;}
._f{width:37.820275px;}
._17{width:42.029814px;}
._b{width:54.428167px;}
._61{width:61.868160px;}
._a{width:69.368560px;}
._5f{width:88.767360px;}
._2d{width:99.042854px;}
._2e{width:109.479744px;}
._2f{width:149.344358px;}
._4a{width:158.167296px;}
._53{width:171.401702px;}
._2c{width:178.987277px;}
._1f{width:314.021261px;}
._27{width:330.644966px;}
._26{width:338.607130px;}
._3f{width:352.917504px;}
._40{width:354.992206px;}
._4e{width:365.051995px;}
._4d{width:369.702605px;}
._41{width:376.642598px;}
._32{width:397.731571px;}
._22{width:398.915136px;}
._3d{width:402.573427px;}
._39{width:404.563968px;}
._38{width:413.225510px;}
._3b{width:416.315966px;}
._57{width:427.535885px;}
._37{width:429.472627px;}
._23{width:432.539136px;}
._31{width:442.922227px;}
._24{width:449.431834px;}
._21{width:459.276941px;}
._3e{width:463.580813px;}
._3c{width:473.049331px;}
._28{width:500.594112px;}
._1c{width:501.616282px;}
._36{width:514.145455px;}
._3a{width:540.195389px;}
._30{width:544.433954px;}
._35{width:546.460200px;}
._54{width:557.351424px;}
._29{width:561.332506px;}
._50{width:568.057306px;}
._33{width:574.136525px;}
._34{width:587.586125px;}
._42{width:602.176999px;}
._1e{width:620.994931px;}
._47{width:636.220565px;}
._25{width:666.346982px;}
._20{width:717.778253px;}
._1d{width:763.237901px;}
._4f{width:766.304410px;}
._49{width:768.108019px;}
._44{width:794.602368px;}
._46{width:912.420864px;}
._56{width:918.046474px;}
._48{width:931.791283px;}
._45{width:949.703155px;}
._52{width:984.725914px;}
._18{width:1074.354181px;}
._4c{width:1168.011209px;}
._1b{width:1233.758707px;}
._59{width:1321.019712px;}
._4b{width:1512.536162px;}
._5a{width:1521.395316px;}
._51{width:1680.548566px;}
._55{width:1706.120167px;}
._5b{width:1741.346611px;}
._58{width:1819.664227px;}
._5c{width:2581.233300px;}
._19{width:2605.143300px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(54,121,123);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs0{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fs4{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1d{bottom:16.015847px;}
.y4b{bottom:31.890000px;}
.y10b{bottom:97.300500px;}
.y139{bottom:98.226000px;}
.y104{bottom:98.734500px;}
.y1ca{bottom:104.503500px;}
.y1b{bottom:104.646000px;}
.y4a{bottom:105.294000px;}
.y81{bottom:107.193000px;}
.y151{bottom:109.672500px;}
.y103{bottom:111.804000px;}
.ya0{bottom:115.542000px;}
.y138{bottom:117.055500px;}
.y13e{bottom:117.087000px;}
.y196{bottom:117.280500px;}
.y1c9{bottom:121.762500px;}
.y1a{bottom:122.535000px;}
.y49{bottom:124.123500px;}
.y80{bottom:126.022500px;}
.y150{bottom:128.502000px;}
.y102{bottom:131.037000px;}
.y9f{bottom:131.980500px;}
.yec{bottom:132.121500px;}
.y195{bottom:134.541000px;}
.y15d{bottom:135.258000px;}
.y137{bottom:135.885000px;}
.y13d{bottom:135.916500px;}
.y1c8{bottom:139.023000px;}
.y19{bottom:140.422500px;}
.y48{bottom:142.953000px;}
.y7f{bottom:144.852000px;}
.y14f{bottom:147.331500px;}
.y9e{bottom:148.419000px;}
.y194{bottom:151.800000px;}
.y136{bottom:154.714500px;}
.y13c{bottom:154.746000px;}
.y1c7{bottom:156.283500px;}
.yb7{bottom:157.602000px;}
.y18{bottom:158.310000px;}
.y47{bottom:161.782500px;}
.y15c{bottom:161.799000px;}
.y7e{bottom:163.681500px;}
.y9d{bottom:164.857500px;}
.y14e{bottom:166.161000px;}
.y193{bottom:169.060500px;}
.y98{bottom:171.718500px;}
.y135{bottom:173.544000px;}
.y13b{bottom:173.575500px;}
.y17{bottom:176.199000px;}
.yb6{bottom:176.431500px;}
.y46{bottom:180.612000px;}
.y9c{bottom:181.296000px;}
.y7d{bottom:182.511000px;}
.y14d{bottom:184.990500px;}
.y192{bottom:186.321000px;}
.y15b{bottom:188.338500px;}
.y1c6{bottom:190.804500px;}
.y134{bottom:192.373500px;}
.y16{bottom:194.086500px;}
.y100{bottom:195.183000px;}
.yb5{bottom:195.261000px;}
.y9b{bottom:197.734500px;}
.y45{bottom:199.441500px;}
.y7c{bottom:201.340500px;}
.ycf{bottom:202.503000px;}
.y191{bottom:203.581500px;}
.y14c{bottom:203.820000px;}
.y13a{bottom:207.141000px;}
.y1c5{bottom:208.065000px;}
.y133{bottom:211.203000px;}
.yff{bottom:211.621500px;}
.y15{bottom:211.974000px;}
.yb4{bottom:214.090500px;}
.y9a{bottom:214.171500px;}
.y15a{bottom:214.879500px;}
.y44{bottom:218.271000px;}
.y7b{bottom:220.170000px;}
.y190{bottom:220.842000px;}
.yce{bottom:221.332500px;}
.y14b{bottom:222.648000px;}
.y1c4{bottom:225.325500px;}
.yfe{bottom:228.058500px;}
.y14{bottom:229.863000px;}
.y132{bottom:230.032500px;}
.y99{bottom:230.610000px;}
.yb3{bottom:232.920000px;}
.y43{bottom:237.099000px;}
.y18f{bottom:238.102500px;}
.y7a{bottom:238.999500px;}
.ycd{bottom:240.162000px;}
.y159{bottom:241.420500px;}
.y14a{bottom:241.477500px;}
.y1c3{bottom:242.586000px;}
.yfd{bottom:244.497000px;}
.y131{bottom:248.862000px;}
.yb2{bottom:251.749500px;}
.y97{bottom:254.251500px;}
.y18e{bottom:255.363000px;}
.y42{bottom:255.928500px;}
.y79{bottom:257.829000px;}
.ycc{bottom:258.991500px;}
.y158{bottom:258.994500px;}
.y1c2{bottom:259.846500px;}
.y149{bottom:260.307000px;}
.yfc{bottom:260.935500px;}
.y130{bottom:267.691500px;}
.y96{bottom:270.690000px;}
.y18d{bottom:272.623500px;}
.y41{bottom:274.758000px;}
.yb1{bottom:275.062500px;}
.y140{bottom:276.658500px;}
.y1c1{bottom:277.105500px;}
.yfb{bottom:277.374000px;}
.y148{bottom:279.136500px;}
.y78{bottom:281.140500px;}
.ycb{bottom:282.304500px;}
.y157{bottom:285.534000px;}
.y12f{bottom:286.521000px;}
.y95{bottom:287.128500px;}
.y18c{bottom:289.884000px;}
.y40{bottom:293.587500px;}
.yfa{bottom:293.812500px;}
.y1c0{bottom:294.366000px;}
.y147{bottom:297.966000px;}
.y13f{bottom:299.970000px;}
.y13{bottom:300.154500px;}
.y156{bottom:303.109500px;}
.y94{bottom:303.567000px;}
.y12e{bottom:305.350500px;}
.y18b{bottom:307.143000px;}
.yf9{bottom:310.251000px;}
.y8f{bottom:310.426500px;}
.y1bf{bottom:311.626500px;}
.y3f{bottom:312.417000px;}
.yca{bottom:312.730500px;}
.y77{bottom:314.764500px;}
.y146{bottom:316.795500px;}
.y12{bottom:318.043500px;}
.y93{bottom:320.004000px;}
.yb0{bottom:320.374500px;}
.y155{bottom:320.683500px;}
.y12d{bottom:324.180000px;}
.y18a{bottom:324.403500px;}
.yf8{bottom:326.689500px;}
.y1be{bottom:328.887000px;}
.y3e{bottom:331.246500px;}
.yc9{bottom:331.963500px;}
.y76{bottom:333.594000px;}
.y145{bottom:335.625000px;}
.y11{bottom:335.931000px;}
.y92{bottom:336.442500px;}
.y154{bottom:338.257500px;}
.y189{bottom:341.664000px;}
.y12c{bottom:343.009500px;}
.yf7{bottom:343.128000px;}
.yaf{bottom:344.016000px;}
.y1bd{bottom:346.147500px;}
.y3d{bottom:350.076000px;}
.y75{bottom:352.423500px;}
.y91{bottom:352.881000px;}
.y10{bottom:353.818500px;}
.y144{bottom:354.454500px;}
.y153{bottom:355.831500px;}
.y188{bottom:358.924500px;}
.yf6{bottom:359.566500px;}
.yae{bottom:360.454500px;}
.y12b{bottom:361.839000px;}
.y1bc{bottom:363.408000px;}
.y10a{bottom:366.654000px;}
.y3c{bottom:368.905500px;}
.y90{bottom:369.319500px;}
.y74{bottom:371.253000px;}
.y143{bottom:373.284000px;}
.y152{bottom:373.405500px;}
.yf5{bottom:376.005000px;}
.y187{bottom:376.185000px;}
.yad{bottom:376.893000px;}
.y12a{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.y109{bottom:385.483500px;}
.y3b{bottom:387.735000px;}
.y73{bottom:390.082500px;}
.yf4{bottom:392.443500px;}
.y8e{bottom:392.961000px;}
.yac{bottom:393.330000px;}
.y186{bottom:393.445500px;}
.y142{bottom:396.597000px;}
.y1bb{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.y129{bottom:399.498000px;}
.y108{bottom:404.313000px;}
.y3a{bottom:406.564500px;}
.yf3{bottom:408.880500px;}
.y72{bottom:408.912000px;}
.yab{bottom:409.768500px;}
.y185{bottom:410.706000px;}
.y1ba{bottom:415.188000px;}
.yd{bottom:416.449500px;}
.y128{bottom:418.327500px;}
.y107{bottom:423.142500px;}
.y39{bottom:425.394000px;}
.yaa{bottom:426.207000px;}
.y141{bottom:427.024500px;}
.y8d{bottom:427.569000px;}
.y71{bottom:427.741500px;}
.y184{bottom:427.966500px;}
.y1b9{bottom:432.448500px;}
.yf2{bottom:432.522000px;}
.y127{bottom:437.157000px;}
.ya9{bottom:442.645500px;}
.y38{bottom:444.223500px;}
.yc{bottom:444.798000px;}
.y183{bottom:445.225500px;}
.y106{bottom:446.455500px;}
.y70{bottom:446.571000px;}
.y1b8{bottom:449.709000px;}
.y126{bottom:455.986500px;}
.ya8{bottom:459.084000px;}
.y182{bottom:462.486000px;}
.yb{bottom:462.685500px;}
.y37{bottom:463.053000px;}
.y8c{bottom:464.673000px;}
.y6f{bottom:465.400500px;}
.y1b7{bottom:466.969500px;}
.yf1{bottom:467.130000px;}
.y125{bottom:474.816000px;}
.ya7{bottom:475.522500px;}
.y105{bottom:476.883000px;}
.y181{bottom:479.746500px;}
.y8b{bottom:483.502500px;}
.y6e{bottom:484.230000px;}
.y36{bottom:486.366000px;}
.ya{bottom:489.540000px;}
.ya6{bottom:491.961000px;}
.y124{bottom:493.645500px;}
.y180{bottom:497.007000px;}
.y1b6{bottom:501.490500px;}
.y8a{bottom:502.332000px;}
.y6d{bottom:503.059500px;}
.yf0{bottom:504.234000px;}
.y9{bottom:507.429000px;}
.ya5{bottom:508.399500px;}
.y123{bottom:512.475000px;}
.y17f{bottom:514.267500px;}
.y1b5{bottom:518.751000px;}
.y89{bottom:521.161500px;}
.y6c{bottom:521.889000px;}
.yef{bottom:523.063500px;}
.ya4{bottom:524.838000px;}
.y8{bottom:525.316500px;}
.y122{bottom:531.303000px;}
.y17e{bottom:531.528000px;}
.y1b4{bottom:536.011500px;}
.y88{bottom:539.991000px;}
.y6b{bottom:540.718500px;}
.ya3{bottom:541.276500px;}
.y7{bottom:543.204000px;}
.yee{bottom:546.376500px;}
.y17d{bottom:548.788500px;}
.y121{bottom:550.132500px;}
.y1b3{bottom:553.272000px;}
.y87{bottom:558.820500px;}
.y6a{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.y35{bottom:561.516000px;}
.ya2{bottom:564.916500px;}
.y17c{bottom:566.049000px;}
.y120{bottom:568.962000px;}
.y101{bottom:570.429000px;}
.y1b2{bottom:570.531000px;}
.yed{bottom:576.804000px;}
.y86{bottom:577.650000px;}
.y69{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.y34{bottom:580.972500px;}
.y17b{bottom:583.309500px;}
.y11f{bottom:587.791500px;}
.y85{bottom:596.479500px;}
.y4{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.ya1{bottom:599.524500px;}
.y17a{bottom:600.568500px;}
.y1b1{bottom:605.052000px;}
.y11e{bottom:606.621000px;}
.yeb{bottom:606.700500px;}
.y1{bottom:614.756964px;}
.y84{bottom:615.309000px;}
.y67{bottom:616.036500px;}
.y179{bottom:617.829000px;}
.y33{bottom:618.363000px;}
.y1b0{bottom:622.312500px;}
.y11d{bottom:625.450500px;}
.yea{bottom:625.530000px;}
.y83{bottom:634.138500px;}
.y66{bottom:634.866000px;}
.y178{bottom:635.089500px;}
.y32{bottom:637.819500px;}
.y1af{bottom:639.573000px;}
.y11c{bottom:644.280000px;}
.ye9{bottom:644.359500px;}
.y177{bottom:652.350000px;}
.y65{bottom:653.695500px;}
.y1ae{bottom:656.833500px;}
.y31{bottom:657.277500px;}
.y11b{bottom:663.109500px;}
.ye8{bottom:663.189000px;}
.y82{bottom:667.704000px;}
.y176{bottom:669.610500px;}
.y64{bottom:672.525000px;}
.y1ad{bottom:674.094000px;}
.y30{bottom:676.734000px;}
.y11a{bottom:681.939000px;}
.y175{bottom:686.871000px;}
.y63{bottom:691.354500px;}
.y2f{bottom:696.190500px;}
.y119{bottom:700.768500px;}
.y174{bottom:704.131500px;}
.y1ac{bottom:708.613500px;}
.ye6{bottom:708.651000px;}
.y62{bottom:710.184000px;}
.y2e{bottom:715.648500px;}
.y118{bottom:719.598000px;}
.y173{bottom:721.392000px;}
.ye5{bottom:725.089500px;}
.y1ab{bottom:725.874000px;}
.y61{bottom:729.013500px;}
.ye7{bottom:733.308000px;}
.y2d{bottom:735.105000px;}
.y117{bottom:738.427500px;}
.y172{bottom:738.651000px;}
.ye4{bottom:741.528000px;}
.yc8{bottom:742.462500px;}
.y1aa{bottom:743.134500px;}
.y60{bottom:747.843000px;}
.y2c{bottom:754.561500px;}
.y171{bottom:755.911500px;}
.y116{bottom:757.257000px;}
.ye3{bottom:757.965000px;}
.y1a9{bottom:760.395000px;}
.yc7{bottom:761.292000px;}
.y5f{bottom:766.671000px;}
.y170{bottom:773.172000px;}
.y2b{bottom:774.019500px;}
.y115{bottom:776.086500px;}
.y1a8{bottom:777.655500px;}
.yc6{bottom:780.121500px;}
.ye2{bottom:781.606500px;}
.y5e{bottom:785.500500px;}
.y16f{bottom:790.432500px;}
.y2a{bottom:793.476000px;}
.y114{bottom:794.916000px;}
.ye1{bottom:798.045000px;}
.yc5{bottom:803.434500px;}
.y5d{bottom:804.330000px;}
.y16e{bottom:807.693000px;}
.y1a7{bottom:812.176500px;}
.y29{bottom:812.934000px;}
.y113{bottom:813.745500px;}
.ye0{bottom:821.685000px;}
.y5c{bottom:823.159500px;}
.y16d{bottom:824.953500px;}
.y1a6{bottom:829.437000px;}
.y28{bottom:832.390500px;}
.yc4{bottom:837.058500px;}
.ydf{bottom:838.123500px;}
.y5b{bottom:841.989000px;}
.y16c{bottom:842.214000px;}
.y1a5{bottom:846.697500px;}
.y27{bottom:851.847000px;}
.yde{bottom:854.562000px;}
.yc3{bottom:855.888000px;}
.y16b{bottom:859.474500px;}
.y5a{bottom:860.818500px;}
.y1a4{bottom:863.956500px;}
.y112{bottom:870.682500px;}
.ydd{bottom:871.000500px;}
.y26{bottom:871.305000px;}
.yc2{bottom:874.717500px;}
.y16a{bottom:876.735000px;}
.y59{bottom:879.648000px;}
.y1a3{bottom:881.217000px;}
.ydc{bottom:887.439000px;}
.y111{bottom:889.512000px;}
.yc1{bottom:893.547000px;}
.y169{bottom:893.994000px;}
.y58{bottom:898.477500px;}
.ydb{bottom:903.877500px;}
.y110{bottom:908.341500px;}
.y25{bottom:909.889500px;}
.y168{bottom:911.254500px;}
.yc0{bottom:912.376500px;}
.y1a2{bottom:915.738000px;}
.y57{bottom:917.307000px;}
.yda{bottom:920.316000px;}
.y24{bottom:926.029500px;}
.y10f{bottom:927.171000px;}
.y167{bottom:928.515000px;}
.y1a1{bottom:932.998500px;}
.ybf{bottom:935.688000px;}
.y56{bottom:936.136500px;}
.yd9{bottom:936.754500px;}
.y23{bottom:942.169500px;}
.y166{bottom:945.775500px;}
.y10e{bottom:945.999000px;}
.y1a0{bottom:950.259000px;}
.yd8{bottom:953.193000px;}
.y55{bottom:954.966000px;}
.y165{bottom:963.036000px;}
.y10d{bottom:964.828500px;}
.y19f{bottom:967.519500px;}
.ybe{bottom:969.312000px;}
.yd7{bottom:969.630000px;}
.y22{bottom:971.758500px;}
.y54{bottom:973.795500px;}
.y164{bottom:980.296500px;}
.y10c{bottom:983.658000px;}
.y19e{bottom:984.780000px;}
.yd6{bottom:986.068500px;}
.ybd{bottom:988.141500px;}
.y21{bottom:990.588000px;}
.y53{bottom:992.625000px;}
.y163{bottom:997.557000px;}
.y19c{bottom:1002.039000px;}
.y19d{bottom:1002.040500px;}
.yd5{bottom:1002.507000px;}
.ybc{bottom:1006.971000px;}
.y52{bottom:1011.454500px;}
.y162{bottom:1014.817500px;}
.yd4{bottom:1018.945500px;}
.y19b{bottom:1019.299500px;}
.ybb{bottom:1025.800500px;}
.y51{bottom:1030.284000px;}
.y161{bottom:1032.076500px;}
.yd3{bottom:1035.384000px;}
.y20{bottom:1036.485000px;}
.y19a{bottom:1036.560000px;}
.yba{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.y160{bottom:1049.337000px;}
.yd2{bottom:1051.822500px;}
.y199{bottom:1053.820500px;}
.yb9{bottom:1063.459500px;}
.y1f{bottom:1064.728500px;}
.y15f{bottom:1066.597500px;}
.y4f{bottom:1067.943000px;}
.y198{bottom:1071.081000px;}
.yd1{bottom:1075.462500px;}
.yb8{bottom:1082.289000px;}
.y15e{bottom:1083.858000px;}
.y4e{bottom:1086.772500px;}
.y197{bottom:1088.341500px;}
.y1e{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.yd0{bottom:1107.082500px;}
.y1c{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.h2{height:25.508090px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h5{height:36.319550px;}
.h6{height:38.202476px;}
.he{height:38.734848px;}
.hd{height:41.508281px;}
.h15{height:42.043500px;}
.hc{height:43.038432px;}
.h9{height:43.815515px;}
.hb{height:44.473046px;}
.hf{height:46.697011px;}
.h14{height:46.714950px;}
.h13{height:49.117939px;}
.h7{height:50.930649px;}
.h10{height:51.885221px;}
.ha{height:77.469696px;}
.h12{height:79.571011px;}
.h11{height:79.577011px;}
.h8{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:58.555600px;}
.x5b{left:63.355500px;}
.x5d{left:64.942500px;}
.x39{left:67.878000px;}
.x2a{left:69.022500px;}
.x21{left:70.341000px;}
.x59{left:72.339000px;}
.x3b{left:75.967500px;}
.x58{left:80.019000px;}
.x33{left:81.489000px;}
.x37{left:82.954500px;}
.x36{left:85.120500px;}
.x31{left:86.661000px;}
.x5c{left:89.452500px;}
.x3a{left:100.069500px;}
.x57{left:105.121500px;}
.x35{left:110.224500px;}
.x5a{left:111.517500px;}
.x55{left:112.693500px;}
.x38{left:116.619000px;}
.x32{left:117.796500px;}
.x56{left:123.184500px;}
.x34{left:128.286000px;}
.x3c{left:138.979500px;}
.x2f{left:151.378500px;}
.x25{left:187.714500px;}
.x2e{left:192.771000px;}
.x2d{left:194.769000px;}
.x28{left:208.930500px;}
.x29{left:217.149000px;}
.x2b{left:222.676500px;}
.x27{left:224.277000px;}
.x22{left:234.855000px;}
.x11{left:247.348500px;}
.x5{left:248.526000px;}
.x4{left:249.591000px;}
.x51{left:260.457000px;}
.x24{left:264.483000px;}
.x4f{left:268.459500px;}
.x2c{left:276.918000px;}
.x53{left:278.896500px;}
.x8{left:281.479500px;}
.x26{left:288.888000px;}
.x4d{left:294.759000px;}
.x23{left:300.016500px;}
.x3d{left:306.655500px;}
.x4c{left:307.833000px;}
.x6{left:309.250500px;}
.x3e{left:311.044500px;}
.x9{left:312.417000px;}
.x63{left:313.441500px;}
.x3f{left:317.770500px;}
.xa{left:319.888500px;}
.x7{left:323.593500px;}
.x52{left:326.890500px;}
.xb{left:331.033500px;}
.x50{left:340.851000px;}
.x60{left:359.322000px;}
.x61{left:366.793500px;}
.x62{left:374.407500px;}
.x4a{left:377.164500px;}
.x4e{left:381.771000px;}
.x49{left:389.605500px;}
.x64{left:395.928000px;}
.x47{left:412.159500px;}
.x42{left:414.715500px;}
.x4b{left:417.816000px;}
.x43{left:421.083000px;}
.x44{left:422.206500px;}
.x45{left:423.316500px;}
.x48{left:424.513500px;}
.x46{left:426.604500px;}
.x16{left:430.276500px;}
.x85{left:439.987500px;}
.x17{left:445.221000px;}
.x86{left:447.162000px;}
.x18{left:449.017500px;}
.x19{left:463.960500px;}
.x12{left:474.523500px;}
.x13{left:481.996500px;}
.x14{left:485.806500px;}
.x15{left:500.751000px;}
.x1c{left:530.736000px;}
.xd{left:541.065000px;}
.x1d{left:545.679000px;}
.xe{left:548.536500px;}
.xf{left:552.268500px;}
.x10{left:559.740000px;}
.x1e{left:564.433500px;}
.x5e{left:614.410500px;}
.x5f{left:622.627500px;}
.x6d{left:656.650500px;}
.x81{left:669.543000px;}
.x66{left:670.869000px;}
.x6e{left:683.550000px;}
.x82{left:696.441000px;}
.x67{left:697.768500px;}
.x75{left:722.413500px;}
.x84{left:727.380000px;}
.x1f{left:731.053500px;}
.x68{left:732.076500px;}
.x54{left:737.235000px;}
.x6f{left:742.776000px;}
.x20{left:745.998000px;}
.x76{left:749.311500px;}
.x73{left:751.645500px;}
.x7e{left:753.319500px;}
.x83{left:754.438500px;}
.x80{left:755.641500px;}
.xc{left:756.663000px;}
.x69{left:758.974500px;}
.x6a{left:760.369500px;}
.x70{left:769.675500px;}
.x7c{left:777.355500px;}
.x74{left:778.545000px;}
.x7f{left:780.217500px;}
.x30{left:781.755000px;}
.x65{left:783.439500px;}
.x6c{left:784.948500px;}
.x6b{left:787.267500px;}
.x79{left:789.091500px;}
.x7b{left:790.626000px;}
.x71{left:797.227500px;}
.x7d{left:804.255000px;}
.x77{left:810.357000px;}
.x7a{left:815.989500px;}
.x1a{left:817.794000px;}
.x72{left:824.127000px;}
.x40{left:827.652000px;}
.x1b{left:832.737000px;}
.x41{left:835.869000px;}
.x78{left:837.255000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.226667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000361pt;}
.ls24{letter-spacing:0.000372pt;}
.ls18{letter-spacing:0.000447pt;}
.lsb{letter-spacing:0.000503pt;}
.ls2{letter-spacing:0.000533pt;}
.ls39{letter-spacing:0.000600pt;}
.ls13{letter-spacing:0.000711pt;}
.ls3b{letter-spacing:0.000732pt;}
.ls26{letter-spacing:0.000801pt;}
.ls1e{letter-spacing:0.001026pt;}
.ls2d{letter-spacing:0.001237pt;}
.ls3d{letter-spacing:0.001335pt;}
.ls3a{letter-spacing:0.001408pt;}
.ls25{letter-spacing:0.001688pt;}
.ls3e{letter-spacing:0.001943pt;}
.ls21{letter-spacing:0.002525pt;}
.ls34{letter-spacing:0.002729pt;}
.ls3c{letter-spacing:0.002746pt;}
.ls2e{letter-spacing:0.003578pt;}
.ls33{letter-spacing:0.003696pt;}
.ls17{letter-spacing:0.003752pt;}
.ls16{letter-spacing:0.004267pt;}
.ls5{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.631867pt;}
.ls30{letter-spacing:11.739738pt;}
.ls1c{letter-spacing:11.765485pt;}
.ls27{letter-spacing:11.781815pt;}
.ls2b{letter-spacing:11.792831pt;}
.ls19{letter-spacing:11.799902pt;}
.ls14{letter-spacing:11.821042pt;}
.ls1f{letter-spacing:11.821483pt;}
.ls38{letter-spacing:11.909242pt;}
.ls20{letter-spacing:11.925072pt;}
.ls2a{letter-spacing:11.935576pt;}
.ls12{letter-spacing:11.954133pt;}
.ls11{letter-spacing:11.959467pt;}
.ls29{letter-spacing:11.968610pt;}
.lsc{letter-spacing:12.008254pt;}
.ls32{letter-spacing:12.104179pt;}
.ls15{letter-spacing:12.112758pt;}
.ls1d{letter-spacing:12.134140pt;}
.ls22{letter-spacing:12.164528pt;}
.ls1b{letter-spacing:12.188578pt;}
.ls40{letter-spacing:12.251603pt;}
.ls31{letter-spacing:12.693166pt;}
.ls8{letter-spacing:13.017797pt;}
.lsd{letter-spacing:13.283467pt;}
.lse{letter-spacing:13.442868pt;}
.ls28{letter-spacing:14.036957pt;}
.ls37{letter-spacing:14.131075pt;}
.ls9{letter-spacing:14.452412pt;}
.ls3f{letter-spacing:14.606892pt;}
.ls35{letter-spacing:14.784669pt;}
.ls7{letter-spacing:15.515089pt;}
.ls1a{letter-spacing:16.410813pt;}
.ls2f{letter-spacing:16.740225pt;}
.ls23{letter-spacing:17.069637pt;}
.ls36{letter-spacing:17.623885pt;}
.lsf{letter-spacing:18.862523pt;}
.lsa{letter-spacing:19.234460pt;}
.ls3{letter-spacing:25.292137pt;}
.ls10{letter-spacing:83.815733pt;}
.ws9e{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws7{word-spacing:-9.298400pt;}
.ws70{word-spacing:-2.630144pt;}
.ws58{word-spacing:-2.497292pt;}
.ws71{word-spacing:-2.438861pt;}
.ws77{word-spacing:-2.125355pt;}
.ws8f{word-spacing:-2.072221pt;}
.ws46{word-spacing:-1.859685pt;}
.wsa3{word-spacing:-1.721549pt;}
.ws1{word-spacing:-1.696326pt;}
.ws97{word-spacing:-1.594016pt;}
.ws11e{word-spacing:-1.530266pt;}
.ws59{word-spacing:-1.487748pt;}
.ws91{word-spacing:-1.434614pt;}
.ws114{word-spacing:-1.386803pt;}
.ws43{word-spacing:-1.381481pt;}
.ws6b{word-spacing:-1.275213pt;}
.ws96{word-spacing:-1.222079pt;}
.ws9b{word-spacing:-1.195520pt;}
.ws0{word-spacing:-1.175671pt;}
.ws6c{word-spacing:-1.168945pt;}
.ws89{word-spacing:-1.115811pt;}
.ws23{word-spacing:-1.062677pt;}
.ws8{word-spacing:-1.041421pt;}
.wsa{word-spacing:-0.929840pt;}
.ws93{word-spacing:-0.903276pt;}
.ws8c{word-spacing:-0.850142pt;}
.wsbf{word-spacing:-0.717312pt;}
.ws7d{word-spacing:-0.669491pt;}
.ws33{word-spacing:-0.584473pt;}
.ws3{word-spacing:-0.557904pt;}
.ws79{word-spacing:-0.531339pt;}
.wsc0{word-spacing:-0.478208pt;}
.ws40{word-spacing:-0.478205pt;}
.ws5c{word-spacing:-0.430387pt;}
.ws47{word-spacing:-0.371937pt;}
.wsf9{word-spacing:-0.334746pt;}
.ws2{word-spacing:-0.332852pt;}
.ws6a{word-spacing:-0.318803pt;}
.wsb3{word-spacing:-0.286925pt;}
.ws24{word-spacing:-0.265669pt;}
.wsb2{word-spacing:-0.239104pt;}
.ws3d{word-spacing:-0.212535pt;}
.ws5d{word-spacing:-0.191283pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws4c{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.106268pt;}
.wsba{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.wscf{word-spacing:-0.048196pt;}
.ws19{word-spacing:-0.047821pt;}
.ws123{word-spacing:-0.020079pt;}
.wsd9{word-spacing:-0.008849pt;}
.wsb6{word-spacing:-0.008764pt;}
.ws119{word-spacing:-0.008269pt;}
.ws117{word-spacing:-0.008235pt;}
.ws10c{word-spacing:-0.006921pt;}
.wsd0{word-spacing:-0.006460pt;}
.wsdc{word-spacing:-0.005530pt;}
.ws10b{word-spacing:-0.005018pt;}
.ws11c{word-spacing:-0.004156pt;}
.ws11a{word-spacing:-0.004147pt;}
.ws100{word-spacing:-0.003772pt;}
.ws120{word-spacing:-0.003644pt;}
.ws122{word-spacing:-0.003575pt;}
.wsce{word-spacing:-0.003430pt;}
.wsf8{word-spacing:-0.003354pt;}
.wsd3{word-spacing:-0.003209pt;}
.wsd7{word-spacing:-0.003046pt;}
.wsd6{word-spacing:-0.003038pt;}
.wsa6{word-spacing:-0.002935pt;}
.ws2e{word-spacing:-0.002540pt;}
.wsd2{word-spacing:-0.002227pt;}
.wsd8{word-spacing:-0.001545pt;}
.wsda{word-spacing:-0.001126pt;}
.wsb1{word-spacing:-0.000196pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:0.000450pt;}
.ws16{word-spacing:0.047821pt;}
.ws27{word-spacing:0.053134pt;}
.ws1e{word-spacing:0.095642pt;}
.ws31{word-spacing:0.106268pt;}
.wsa5{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.wsac{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.ws9d{word-spacing:0.239104pt;}
.ws32{word-spacing:0.265669pt;}
.wsaa{word-spacing:0.286925pt;}
.ws74{word-spacing:0.318803pt;}
.ws102{word-spacing:0.334746pt;}
.ws36{word-spacing:0.371937pt;}
.wsbe{word-spacing:0.478208pt;}
.ws104{word-spacing:0.526029pt;}
.ws78{word-spacing:0.531339pt;}
.wsbd{word-spacing:0.621670pt;}
.ws86{word-spacing:0.637606pt;}
.wsaf{word-spacing:0.669491pt;}
.ws38{word-spacing:0.690740pt;}
.ws105{word-spacing:0.717312pt;}
.ws45{word-spacing:0.797008pt;}
.ws39{word-spacing:0.850142pt;}
.ws9{word-spacing:0.892646pt;}
.ws87{word-spacing:0.956410pt;}
.ws5b{word-spacing:1.115811pt;}
.wsb5{word-spacing:1.146863pt;}
.ws73{word-spacing:1.168945pt;}
.ws52{word-spacing:1.222079pt;}
.wsf7{word-spacing:1.243341pt;}
.ws34{word-spacing:1.275213pt;}
.ws9c{word-spacing:1.291162pt;}
.ws41{word-spacing:1.328347pt;}
.ws17{word-spacing:1.338982pt;}
.ws95{word-spacing:1.381481pt;}
.ws103{word-spacing:1.434624pt;}
.ws5e{word-spacing:1.487748pt;}
.wsd1{word-spacing:1.530266pt;}
.ws42{word-spacing:1.540882pt;}
.ws81{word-spacing:1.594016pt;}
.wse1{word-spacing:1.625907pt;}
.ws111{word-spacing:1.673728pt;}
.ws14{word-spacing:1.721549pt;}
.ws7c{word-spacing:1.753418pt;}
.wsa1{word-spacing:1.769370pt;}
.wsa0{word-spacing:1.817190pt;}
.ws15{word-spacing:1.865011pt;}
.ws51{word-spacing:1.912819pt;}
.ws11f{word-spacing:1.960653pt;}
.ws2c{word-spacing:1.965953pt;}
.ws94{word-spacing:2.019087pt;}
.wsc8{word-spacing:2.056294pt;}
.ws4a{word-spacing:2.072221pt;}
.ws116{word-spacing:2.104115pt;}
.ws113{word-spacing:2.151936pt;}
.ws10d{word-spacing:2.199757pt;}
.ws48{word-spacing:2.231622pt;}
.ws5{word-spacing:2.232367pt;}
.ws8a{word-spacing:2.284756pt;}
.ws1c{word-spacing:2.295398pt;}
.wsf0{word-spacing:2.327250pt;}
.ws83{word-spacing:2.337890pt;}
.ws1b{word-spacing:2.343219pt;}
.ws88{word-spacing:2.391024pt;}
.ws11b{word-spacing:2.391040pt;}
.ws9f{word-spacing:2.438861pt;}
.ws7a{word-spacing:2.444158pt;}
.ws108{word-spacing:2.486682pt;}
.ws4d{word-spacing:2.497292pt;}
.ws13{word-spacing:2.550432pt;}
.wsc4{word-spacing:2.582323pt;}
.wsc3{word-spacing:2.595514pt;}
.ws3a{word-spacing:2.603559pt;}
.wsde{word-spacing:2.677965pt;}
.ws29{word-spacing:2.709827pt;}
.wsdf{word-spacing:2.725786pt;}
.ws30{word-spacing:2.762961pt;}
.wsa8{word-spacing:2.773606pt;}
.ws10e{word-spacing:2.821427pt;}
.wsfa{word-spacing:2.861261pt;}
.ws107{word-spacing:2.861295pt;}
.wsef{word-spacing:2.861321pt;}
.wsdd{word-spacing:2.861466pt;}
.wse8{word-spacing:2.861500pt;}
.wse4{word-spacing:2.861790pt;}
.wse2{word-spacing:2.861867pt;}
.wsee{word-spacing:2.862012pt;}
.wsbb{word-spacing:2.862285pt;}
.wsea{word-spacing:2.862498pt;}
.wse6{word-spacing:2.862720pt;}
.wsff{word-spacing:2.862839pt;}
.wse0{word-spacing:2.863377pt;}
.ws101{word-spacing:2.863684pt;}
.wsc9{word-spacing:2.863846pt;}
.wse9{word-spacing:2.863966pt;}
.wsa9{word-spacing:2.863974pt;}
.ws121{word-spacing:2.864017pt;}
.ws115{word-spacing:2.864188pt;}
.wsb7{word-spacing:2.864256pt;}
.wsb0{word-spacing:2.864461pt;}
.wsae{word-spacing:2.864717pt;}
.wsab{word-spacing:2.865084pt;}
.wsf6{word-spacing:2.865092pt;}
.wsd5{word-spacing:2.865152pt;}
.wscd{word-spacing:2.865527pt;}
.wsfc{word-spacing:2.865655pt;}
.ws11d{word-spacing:2.865860pt;}
.wsb4{word-spacing:2.866278pt;}
.ws124{word-spacing:2.866654pt;}
.wsb8{word-spacing:2.866739pt;}
.wseb{word-spacing:2.867260pt;}
.ws10a{word-spacing:2.867277pt;}
.ws109{word-spacing:2.868958pt;}
.ws49{word-spacing:2.869229pt;}
.wsa4{word-spacing:2.869248pt;}
.wsd4{word-spacing:2.871987pt;}
.ws8b{word-spacing:2.922363pt;}
.wsf1{word-spacing:2.964890pt;}
.ws82{word-spacing:2.975497pt;}
.wsdb{word-spacing:3.012710pt;}
.wsbc{word-spacing:3.060531pt;}
.wsad{word-spacing:3.156173pt;}
.ws20{word-spacing:3.188032pt;}
.ws3e{word-spacing:3.241166pt;}
.wsfb{word-spacing:3.251814pt;}
.ws98{word-spacing:3.294300pt;}
.wsc1{word-spacing:3.381573pt;}
.ws37{word-spacing:3.400567pt;}
.ws92{word-spacing:3.453701pt;}
.wsa7{word-spacing:3.490918pt;}
.wse5{word-spacing:3.538739pt;}
.ws25{word-spacing:3.559969pt;}
.ws35{word-spacing:3.613103pt;}
.wse7{word-spacing:3.634381pt;}
.ws85{word-spacing:3.666237pt;}
.ws1d{word-spacing:3.682202pt;}
.ws8d{word-spacing:3.719371pt;}
.wsfd{word-spacing:3.777843pt;}
.wsf4{word-spacing:3.825664pt;}
.ws72{word-spacing:3.878772pt;}
.ws8e{word-spacing:3.931906pt;}
.wsca{word-spacing:4.016947pt;}
.ws3c{word-spacing:4.038174pt;}
.wscb{word-spacing:4.064768pt;}
.wsf2{word-spacing:4.112589pt;}
.ws57{word-spacing:4.197575pt;}
.ws106{word-spacing:4.208230pt;}
.ws10{word-spacing:4.240070pt;}
.ws3f{word-spacing:4.303843pt;}
.wsed{word-spacing:4.303872pt;}
.ws11{word-spacing:4.314458pt;}
.wse3{word-spacing:4.351693pt;}
.ws7f{word-spacing:4.410111pt;}
.wsb9{word-spacing:4.447334pt;}
.ws4f{word-spacing:4.463245pt;}
.ws10f{word-spacing:4.495155pt;}
.ws7b{word-spacing:4.516379pt;}
.ws22{word-spacing:4.622646pt;}
.ws44{word-spacing:4.782048pt;}
.wsfe{word-spacing:4.782080pt;}
.wsc5{word-spacing:4.813431pt;}
.wsc6{word-spacing:4.829901pt;}
.ws80{word-spacing:4.835182pt;}
.wsf5{word-spacing:4.877722pt;}
.ws84{word-spacing:4.941450pt;}
.ws90{word-spacing:5.047717pt;}
.wscc{word-spacing:5.116826pt;}
.wsf3{word-spacing:5.164646pt;}
.ws4e{word-spacing:5.207119pt;}
.wsec{word-spacing:5.451571pt;}
.ws75{word-spacing:5.579056pt;}
.ws69{word-spacing:5.632190pt;}
.ws110{word-spacing:5.690675pt;}
.ws1a{word-spacing:5.786317pt;}
.ws9a{word-spacing:5.834138pt;}
.wsa2{word-spacing:5.929779pt;}
.ws5a{word-spacing:6.004127pt;}
.wsc2{word-spacing:6.073242pt;}
.ws99{word-spacing:6.168883pt;}
.ws50{word-spacing:6.216662pt;}
.ws1f{word-spacing:6.216704pt;}
.ws18{word-spacing:6.407987pt;}
.ws3b{word-spacing:6.588599pt;}
.ws28{word-spacing:6.748001pt;}
.ws7e{word-spacing:6.854269pt;}
.wse{word-spacing:6.918010pt;}
.ws118{word-spacing:6.934016pt;}
.ws76{word-spacing:7.066804pt;}
.ws21{word-spacing:7.173072pt;}
.ws56{word-spacing:7.279340pt;}
.wsc7{word-spacing:7.364403pt;}
.ws112{word-spacing:8.368640pt;}
.wsc{word-spacing:10.823338pt;}
.wsd{word-spacing:14.319536pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws6d{word-spacing:68.670669pt;}
.ws6e{word-spacing:140.401869pt;}
.ws6f{word-spacing:316.669338pt;}
.ws54{word-spacing:369.798246pt;}
.ws55{word-spacing:462.522778pt;}
.ws53{word-spacing:498.388378pt;}
.ws63{word-spacing:912.420864pt;}
.ws65{word-spacing:913.616384pt;}
.ws5f{word-spacing:944.126054pt;}
.ws68{word-spacing:944.460800pt;}
.ws60{word-spacing:948.143002pt;}
.ws61{word-spacing:952.064307pt;}
.ws66{word-spacing:953.116365pt;}
.ws64{word-spacing:956.320358pt;}
.ws67{word-spacing:961.915392pt;}
.ws62{word-spacing:963.780403pt;}
.ws4b{word-spacing:1043.545498pt;}
._60{margin-left:-19.377653pt;}
._62{margin-left:-7.077478pt;}
._c{margin-left:-6.073242pt;}
._2{margin-left:-4.744489pt;}
._4{margin-left:-3.421811pt;}
._12{margin-left:-2.438861pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._6{width:2.045648pt;}
._5e{width:3.644610pt;}
._7{width:10.132188pt;}
._3{width:11.530016pt;}
._15{width:13.245907pt;}
._d{width:15.015731pt;}
._16{width:16.159422pt;}
._14{width:17.284081pt;}
._11{width:18.803804pt;}
._1a{width:19.840092pt;}
._e{width:20.897690pt;}
._13{width:21.901926pt;}
._5{width:23.057899pt;}
._2a{width:24.282177pt;}
._43{width:25.192179pt;}
._8{width:27.188522pt;}
._5d{width:28.136108pt;}
._9{width:29.648896pt;}
._2b{width:31.122407pt;}
._10{width:32.565965pt;}
._f{width:33.618022pt;}
._17{width:37.359835pt;}
._b{width:48.380593pt;}
._61{width:54.993920pt;}
._a{width:61.660942pt;}
._5f{width:78.904320pt;}
._2d{width:88.038093pt;}
._2e{width:97.315328pt;}
._2f{width:132.750541pt;}
._4a{width:140.593152pt;}
._53{width:152.357069pt;}
._2c{width:159.099802pt;}
._1f{width:279.130010pt;}
._27{width:293.906637pt;}
._26{width:300.984115pt;}
._3f{width:313.704448pt;}
._40{width:315.548627pt;}
._4e{width:324.490662pt;}
._4d{width:328.624538pt;}
._41{width:334.793421pt;}
._32{width:353.539174pt;}
._22{width:354.591232pt;}
._3d{width:357.843046pt;}
._39{width:359.612416pt;}
._38{width:367.311565pt;}
._3b{width:370.058637pt;}
._57{width:380.031898pt;}
._37{width:381.753446pt;}
._23{width:384.479232pt;}
._31{width:393.708646pt;}
._24{width:399.494963pt;}
._21{width:408.246170pt;}
._3e{width:412.071834pt;}
._3c{width:420.488294pt;}
._28{width:444.972544pt;}
._1c{width:445.881139pt;}
._36{width:457.018182pt;}
._3a{width:480.173679pt;}
._30{width:483.941293pt;}
._35{width:485.742400pt;}
._54{width:495.423488pt;}
._29{width:498.962227pt;}
._50{width:504.939827pt;}
._33{width:510.343578pt;}
._34{width:522.298778pt;}
._42{width:535.268444pt;}
._1e{width:551.995494pt;}
._47{width:565.529391pt;}
._25{width:592.308429pt;}
._20{width:638.025114pt;}
._1d{width:678.433690pt;}
._4f{width:681.159475pt;}
._49{width:682.762684pt;}
._44{width:706.313216pt;}
._46{width:811.040768pt;}
._56{width:816.041310pt;}
._48{width:828.258918pt;}
._45{width:844.180582pt;}
._52{width:875.311923pt;}
._18{width:954.981494pt;}
._4c{width:1038.232186pt;}
._1b{width:1096.674406pt;}
._59{width:1174.239744pt;}
._4b{width:1344.476589pt;}
._5a{width:1352.351392pt;}
._51{width:1493.820947pt;}
._55{width:1516.551260pt;}
._5b{width:1547.863654pt;}
._58{width:1617.479313pt;}
._5c{width:2294.429600pt;}
._19{width:2315.682933pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs0{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fs4{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1d{bottom:14.236308pt;}
.y4b{bottom:28.346667pt;}
.y10b{bottom:86.489333pt;}
.y139{bottom:87.312000pt;}
.y104{bottom:87.764000pt;}
.y1ca{bottom:92.892000pt;}
.y1b{bottom:93.018667pt;}
.y4a{bottom:93.594667pt;}
.y81{bottom:95.282667pt;}
.y151{bottom:97.486667pt;}
.y103{bottom:99.381333pt;}
.ya0{bottom:102.704000pt;}
.y138{bottom:104.049333pt;}
.y13e{bottom:104.077333pt;}
.y196{bottom:104.249333pt;}
.y1c9{bottom:108.233333pt;}
.y1a{bottom:108.920000pt;}
.y49{bottom:110.332000pt;}
.y80{bottom:112.020000pt;}
.y150{bottom:114.224000pt;}
.y102{bottom:116.477333pt;}
.y9f{bottom:117.316000pt;}
.yec{bottom:117.441333pt;}
.y195{bottom:119.592000pt;}
.y15d{bottom:120.229333pt;}
.y137{bottom:120.786667pt;}
.y13d{bottom:120.814667pt;}
.y1c8{bottom:123.576000pt;}
.y19{bottom:124.820000pt;}
.y48{bottom:127.069333pt;}
.y7f{bottom:128.757333pt;}
.y14f{bottom:130.961333pt;}
.y9e{bottom:131.928000pt;}
.y194{bottom:134.933333pt;}
.y136{bottom:137.524000pt;}
.y13c{bottom:137.552000pt;}
.y1c7{bottom:138.918667pt;}
.yb7{bottom:140.090667pt;}
.y18{bottom:140.720000pt;}
.y47{bottom:143.806667pt;}
.y15c{bottom:143.821333pt;}
.y7e{bottom:145.494667pt;}
.y9d{bottom:146.540000pt;}
.y14e{bottom:147.698667pt;}
.y193{bottom:150.276000pt;}
.y98{bottom:152.638667pt;}
.y135{bottom:154.261333pt;}
.y13b{bottom:154.289333pt;}
.y17{bottom:156.621333pt;}
.yb6{bottom:156.828000pt;}
.y46{bottom:160.544000pt;}
.y9c{bottom:161.152000pt;}
.y7d{bottom:162.232000pt;}
.y14d{bottom:164.436000pt;}
.y192{bottom:165.618667pt;}
.y15b{bottom:167.412000pt;}
.y1c6{bottom:169.604000pt;}
.y134{bottom:170.998667pt;}
.y16{bottom:172.521333pt;}
.y100{bottom:173.496000pt;}
.yb5{bottom:173.565333pt;}
.y9b{bottom:175.764000pt;}
.y45{bottom:177.281333pt;}
.y7c{bottom:178.969333pt;}
.ycf{bottom:180.002667pt;}
.y191{bottom:180.961333pt;}
.y14c{bottom:181.173333pt;}
.y13a{bottom:184.125333pt;}
.y1c5{bottom:184.946667pt;}
.y133{bottom:187.736000pt;}
.yff{bottom:188.108000pt;}
.y15{bottom:188.421333pt;}
.yb4{bottom:190.302667pt;}
.y9a{bottom:190.374667pt;}
.y15a{bottom:191.004000pt;}
.y44{bottom:194.018667pt;}
.y7b{bottom:195.706667pt;}
.y190{bottom:196.304000pt;}
.yce{bottom:196.740000pt;}
.y14b{bottom:197.909333pt;}
.y1c4{bottom:200.289333pt;}
.yfe{bottom:202.718667pt;}
.y14{bottom:204.322667pt;}
.y132{bottom:204.473333pt;}
.y99{bottom:204.986667pt;}
.yb3{bottom:207.040000pt;}
.y43{bottom:210.754667pt;}
.y18f{bottom:211.646667pt;}
.y7a{bottom:212.444000pt;}
.ycd{bottom:213.477333pt;}
.y159{bottom:214.596000pt;}
.y14a{bottom:214.646667pt;}
.y1c3{bottom:215.632000pt;}
.yfd{bottom:217.330667pt;}
.y131{bottom:221.210667pt;}
.yb2{bottom:223.777333pt;}
.y97{bottom:226.001333pt;}
.y18e{bottom:226.989333pt;}
.y42{bottom:227.492000pt;}
.y79{bottom:229.181333pt;}
.ycc{bottom:230.214667pt;}
.y158{bottom:230.217333pt;}
.y1c2{bottom:230.974667pt;}
.y149{bottom:231.384000pt;}
.yfc{bottom:231.942667pt;}
.y130{bottom:237.948000pt;}
.y96{bottom:240.613333pt;}
.y18d{bottom:242.332000pt;}
.y41{bottom:244.229333pt;}
.yb1{bottom:244.500000pt;}
.y140{bottom:245.918667pt;}
.y1c1{bottom:246.316000pt;}
.yfb{bottom:246.554667pt;}
.y148{bottom:248.121333pt;}
.y78{bottom:249.902667pt;}
.ycb{bottom:250.937333pt;}
.y157{bottom:253.808000pt;}
.y12f{bottom:254.685333pt;}
.y95{bottom:255.225333pt;}
.y18c{bottom:257.674667pt;}
.y40{bottom:260.966667pt;}
.yfa{bottom:261.166667pt;}
.y1c0{bottom:261.658667pt;}
.y147{bottom:264.858667pt;}
.y13f{bottom:266.640000pt;}
.y13{bottom:266.804000pt;}
.y156{bottom:269.430667pt;}
.y94{bottom:269.837333pt;}
.y12e{bottom:271.422667pt;}
.y18b{bottom:273.016000pt;}
.yf9{bottom:275.778667pt;}
.y8f{bottom:275.934667pt;}
.y1bf{bottom:277.001333pt;}
.y3f{bottom:277.704000pt;}
.yca{bottom:277.982667pt;}
.y77{bottom:279.790667pt;}
.y146{bottom:281.596000pt;}
.y12{bottom:282.705333pt;}
.y93{bottom:284.448000pt;}
.yb0{bottom:284.777333pt;}
.y155{bottom:285.052000pt;}
.y12d{bottom:288.160000pt;}
.y18a{bottom:288.358667pt;}
.yf8{bottom:290.390667pt;}
.y1be{bottom:292.344000pt;}
.y3e{bottom:294.441333pt;}
.yc9{bottom:295.078667pt;}
.y76{bottom:296.528000pt;}
.y145{bottom:298.333333pt;}
.y11{bottom:298.605333pt;}
.y92{bottom:299.060000pt;}
.y154{bottom:300.673333pt;}
.y189{bottom:303.701333pt;}
.y12c{bottom:304.897333pt;}
.yf7{bottom:305.002667pt;}
.yaf{bottom:305.792000pt;}
.y1bd{bottom:307.686667pt;}
.y3d{bottom:311.178667pt;}
.y75{bottom:313.265333pt;}
.y91{bottom:313.672000pt;}
.y10{bottom:314.505333pt;}
.y144{bottom:315.070667pt;}
.y153{bottom:316.294667pt;}
.y188{bottom:319.044000pt;}
.yf6{bottom:319.614667pt;}
.yae{bottom:320.404000pt;}
.y12b{bottom:321.634667pt;}
.y1bc{bottom:323.029333pt;}
.y10a{bottom:325.914667pt;}
.y3c{bottom:327.916000pt;}
.y90{bottom:328.284000pt;}
.y74{bottom:330.002667pt;}
.y143{bottom:331.808000pt;}
.y152{bottom:331.916000pt;}
.yf5{bottom:334.226667pt;}
.y187{bottom:334.386667pt;}
.yad{bottom:335.016000pt;}
.y12a{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.y109{bottom:342.652000pt;}
.y3b{bottom:344.653333pt;}
.y73{bottom:346.740000pt;}
.yf4{bottom:348.838667pt;}
.y8e{bottom:349.298667pt;}
.yac{bottom:349.626667pt;}
.y186{bottom:349.729333pt;}
.y142{bottom:352.530667pt;}
.y1bb{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.y129{bottom:355.109333pt;}
.y108{bottom:359.389333pt;}
.y3a{bottom:361.390667pt;}
.yf3{bottom:363.449333pt;}
.y72{bottom:363.477333pt;}
.yab{bottom:364.238667pt;}
.y185{bottom:365.072000pt;}
.y1ba{bottom:369.056000pt;}
.yd{bottom:370.177333pt;}
.y128{bottom:371.846667pt;}
.y107{bottom:376.126667pt;}
.y39{bottom:378.128000pt;}
.yaa{bottom:378.850667pt;}
.y141{bottom:379.577333pt;}
.y8d{bottom:380.061333pt;}
.y71{bottom:380.214667pt;}
.y184{bottom:380.414667pt;}
.y1b9{bottom:384.398667pt;}
.yf2{bottom:384.464000pt;}
.y127{bottom:388.584000pt;}
.ya9{bottom:393.462667pt;}
.y38{bottom:394.865333pt;}
.yc{bottom:395.376000pt;}
.y183{bottom:395.756000pt;}
.y106{bottom:396.849333pt;}
.y70{bottom:396.952000pt;}
.y1b8{bottom:399.741333pt;}
.y126{bottom:405.321333pt;}
.ya8{bottom:408.074667pt;}
.y182{bottom:411.098667pt;}
.yb{bottom:411.276000pt;}
.y37{bottom:411.602667pt;}
.y8c{bottom:413.042667pt;}
.y6f{bottom:413.689333pt;}
.y1b7{bottom:415.084000pt;}
.yf1{bottom:415.226667pt;}
.y125{bottom:422.058667pt;}
.ya7{bottom:422.686667pt;}
.y105{bottom:423.896000pt;}
.y181{bottom:426.441333pt;}
.y8b{bottom:429.780000pt;}
.y6e{bottom:430.426667pt;}
.y36{bottom:432.325333pt;}
.ya{bottom:435.146667pt;}
.ya6{bottom:437.298667pt;}
.y124{bottom:438.796000pt;}
.y180{bottom:441.784000pt;}
.y1b6{bottom:445.769333pt;}
.y8a{bottom:446.517333pt;}
.y6d{bottom:447.164000pt;}
.yf0{bottom:448.208000pt;}
.y9{bottom:451.048000pt;}
.ya5{bottom:451.910667pt;}
.y123{bottom:455.533333pt;}
.y17f{bottom:457.126667pt;}
.y1b5{bottom:461.112000pt;}
.y89{bottom:463.254667pt;}
.y6c{bottom:463.901333pt;}
.yef{bottom:464.945333pt;}
.ya4{bottom:466.522667pt;}
.y8{bottom:466.948000pt;}
.y122{bottom:472.269333pt;}
.y17e{bottom:472.469333pt;}
.y1b4{bottom:476.454667pt;}
.y88{bottom:479.992000pt;}
.y6b{bottom:480.638667pt;}
.ya3{bottom:481.134667pt;}
.y7{bottom:482.848000pt;}
.yee{bottom:485.668000pt;}
.y17d{bottom:487.812000pt;}
.y121{bottom:489.006667pt;}
.y1b3{bottom:491.797333pt;}
.y87{bottom:496.729333pt;}
.y6a{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.y35{bottom:499.125333pt;}
.ya2{bottom:502.148000pt;}
.y17c{bottom:503.154667pt;}
.y120{bottom:505.744000pt;}
.y101{bottom:507.048000pt;}
.y1b2{bottom:507.138667pt;}
.yed{bottom:512.714667pt;}
.y86{bottom:513.466667pt;}
.y69{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.y34{bottom:516.420000pt;}
.y17b{bottom:518.497333pt;}
.y11f{bottom:522.481333pt;}
.y85{bottom:530.204000pt;}
.y4{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.ya1{bottom:532.910667pt;}
.y17a{bottom:533.838667pt;}
.y1b1{bottom:537.824000pt;}
.y11e{bottom:539.218667pt;}
.yeb{bottom:539.289333pt;}
.y1{bottom:546.450634pt;}
.y84{bottom:546.941333pt;}
.y67{bottom:547.588000pt;}
.y179{bottom:549.181333pt;}
.y33{bottom:549.656000pt;}
.y1b0{bottom:553.166667pt;}
.y11d{bottom:555.956000pt;}
.yea{bottom:556.026667pt;}
.y83{bottom:563.678667pt;}
.y66{bottom:564.325333pt;}
.y178{bottom:564.524000pt;}
.y32{bottom:566.950667pt;}
.y1af{bottom:568.509333pt;}
.y11c{bottom:572.693333pt;}
.ye9{bottom:572.764000pt;}
.y177{bottom:579.866667pt;}
.y65{bottom:581.062667pt;}
.y1ae{bottom:583.852000pt;}
.y31{bottom:584.246667pt;}
.y11b{bottom:589.430667pt;}
.ye8{bottom:589.501333pt;}
.y82{bottom:593.514667pt;}
.y176{bottom:595.209333pt;}
.y64{bottom:597.800000pt;}
.y1ad{bottom:599.194667pt;}
.y30{bottom:601.541333pt;}
.y11a{bottom:606.168000pt;}
.y175{bottom:610.552000pt;}
.y63{bottom:614.537333pt;}
.y2f{bottom:618.836000pt;}
.y119{bottom:622.905333pt;}
.y174{bottom:625.894667pt;}
.y1ac{bottom:629.878667pt;}
.ye6{bottom:629.912000pt;}
.y62{bottom:631.274667pt;}
.y2e{bottom:636.132000pt;}
.y118{bottom:639.642667pt;}
.y173{bottom:641.237333pt;}
.ye5{bottom:644.524000pt;}
.y1ab{bottom:645.221333pt;}
.y61{bottom:648.012000pt;}
.ye7{bottom:651.829333pt;}
.y2d{bottom:653.426667pt;}
.y117{bottom:656.380000pt;}
.y172{bottom:656.578667pt;}
.ye4{bottom:659.136000pt;}
.yc8{bottom:659.966667pt;}
.y1aa{bottom:660.564000pt;}
.y60{bottom:664.749333pt;}
.y2c{bottom:670.721333pt;}
.y171{bottom:671.921333pt;}
.y116{bottom:673.117333pt;}
.ye3{bottom:673.746667pt;}
.y1a9{bottom:675.906667pt;}
.yc7{bottom:676.704000pt;}
.y5f{bottom:681.485333pt;}
.y170{bottom:687.264000pt;}
.y2b{bottom:688.017333pt;}
.y115{bottom:689.854667pt;}
.y1a8{bottom:691.249333pt;}
.yc6{bottom:693.441333pt;}
.ye2{bottom:694.761333pt;}
.y5e{bottom:698.222667pt;}
.y16f{bottom:702.606667pt;}
.y2a{bottom:705.312000pt;}
.y114{bottom:706.592000pt;}
.ye1{bottom:709.373333pt;}
.yc5{bottom:714.164000pt;}
.y5d{bottom:714.960000pt;}
.y16e{bottom:717.949333pt;}
.y1a7{bottom:721.934667pt;}
.y29{bottom:722.608000pt;}
.y113{bottom:723.329333pt;}
.ye0{bottom:730.386667pt;}
.y5c{bottom:731.697333pt;}
.y16d{bottom:733.292000pt;}
.y1a6{bottom:737.277333pt;}
.y28{bottom:739.902667pt;}
.yc4{bottom:744.052000pt;}
.ydf{bottom:744.998667pt;}
.y5b{bottom:748.434667pt;}
.y16c{bottom:748.634667pt;}
.y1a5{bottom:752.620000pt;}
.y27{bottom:757.197333pt;}
.yde{bottom:759.610667pt;}
.yc3{bottom:760.789333pt;}
.y16b{bottom:763.977333pt;}
.y5a{bottom:765.172000pt;}
.y1a4{bottom:767.961333pt;}
.y112{bottom:773.940000pt;}
.ydd{bottom:774.222667pt;}
.y26{bottom:774.493333pt;}
.yc2{bottom:777.526667pt;}
.y16a{bottom:779.320000pt;}
.y59{bottom:781.909333pt;}
.y1a3{bottom:783.304000pt;}
.ydc{bottom:788.834667pt;}
.y111{bottom:790.677333pt;}
.yc1{bottom:794.264000pt;}
.y169{bottom:794.661333pt;}
.y58{bottom:798.646667pt;}
.ydb{bottom:803.446667pt;}
.y110{bottom:807.414667pt;}
.y25{bottom:808.790667pt;}
.y168{bottom:810.004000pt;}
.yc0{bottom:811.001333pt;}
.y1a2{bottom:813.989333pt;}
.y57{bottom:815.384000pt;}
.yda{bottom:818.058667pt;}
.y24{bottom:823.137333pt;}
.y10f{bottom:824.152000pt;}
.y167{bottom:825.346667pt;}
.y1a1{bottom:829.332000pt;}
.ybf{bottom:831.722667pt;}
.y56{bottom:832.121333pt;}
.yd9{bottom:832.670667pt;}
.y23{bottom:837.484000pt;}
.y166{bottom:840.689333pt;}
.y10e{bottom:840.888000pt;}
.y1a0{bottom:844.674667pt;}
.yd8{bottom:847.282667pt;}
.y55{bottom:848.858667pt;}
.y165{bottom:856.032000pt;}
.y10d{bottom:857.625333pt;}
.y19f{bottom:860.017333pt;}
.ybe{bottom:861.610667pt;}
.yd7{bottom:861.893333pt;}
.y22{bottom:863.785333pt;}
.y54{bottom:865.596000pt;}
.y164{bottom:871.374667pt;}
.y10c{bottom:874.362667pt;}
.y19e{bottom:875.360000pt;}
.yd6{bottom:876.505333pt;}
.ybd{bottom:878.348000pt;}
.y21{bottom:880.522667pt;}
.y53{bottom:882.333333pt;}
.y163{bottom:886.717333pt;}
.y19c{bottom:890.701333pt;}
.y19d{bottom:890.702667pt;}
.yd5{bottom:891.117333pt;}
.ybc{bottom:895.085333pt;}
.y52{bottom:899.070667pt;}
.y162{bottom:902.060000pt;}
.yd4{bottom:905.729333pt;}
.y19b{bottom:906.044000pt;}
.ybb{bottom:911.822667pt;}
.y51{bottom:915.808000pt;}
.y161{bottom:917.401333pt;}
.yd3{bottom:920.341333pt;}
.y20{bottom:921.320000pt;}
.y19a{bottom:921.386667pt;}
.yba{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.y160{bottom:932.744000pt;}
.yd2{bottom:934.953333pt;}
.y199{bottom:936.729333pt;}
.yb9{bottom:945.297333pt;}
.y1f{bottom:946.425333pt;}
.y15f{bottom:948.086667pt;}
.y4f{bottom:949.282667pt;}
.y198{bottom:952.072000pt;}
.yd1{bottom:955.966667pt;}
.yb8{bottom:962.034667pt;}
.y15e{bottom:963.429333pt;}
.y4e{bottom:966.020000pt;}
.y197{bottom:967.414667pt;}
.y1e{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.yd0{bottom:984.073333pt;}
.y1c{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h5{height:32.284045pt;}
.h6{height:33.957757pt;}
.he{height:34.430976pt;}
.hd{height:36.896250pt;}
.h15{height:37.372000pt;}
.hc{height:38.256384pt;}
.h9{height:38.947124pt;}
.hb{height:39.531597pt;}
.hf{height:41.508454pt;}
.h14{height:41.524400pt;}
.h13{height:43.660390pt;}
.h7{height:45.271688pt;}
.h10{height:46.120196pt;}
.ha{height:68.861952pt;}
.h12{height:70.729788pt;}
.h11{height:70.735121pt;}
.h8{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:52.049422pt;}
.x5b{left:56.316000pt;}
.x5d{left:57.726667pt;}
.x39{left:60.336000pt;}
.x2a{left:61.353333pt;}
.x21{left:62.525333pt;}
.x59{left:64.301333pt;}
.x3b{left:67.526667pt;}
.x58{left:71.128000pt;}
.x33{left:72.434667pt;}
.x37{left:73.737333pt;}
.x36{left:75.662667pt;}
.x31{left:77.032000pt;}
.x5c{left:79.513333pt;}
.x3a{left:88.950667pt;}
.x57{left:93.441333pt;}
.x35{left:97.977333pt;}
.x5a{left:99.126667pt;}
.x55{left:100.172000pt;}
.x38{left:103.661333pt;}
.x32{left:104.708000pt;}
.x56{left:109.497333pt;}
.x34{left:114.032000pt;}
.x3c{left:123.537333pt;}
.x2f{left:134.558667pt;}
.x25{left:166.857333pt;}
.x2e{left:171.352000pt;}
.x2d{left:173.128000pt;}
.x28{left:185.716000pt;}
.x29{left:193.021333pt;}
.x2b{left:197.934667pt;}
.x27{left:199.357333pt;}
.x22{left:208.760000pt;}
.x11{left:219.865333pt;}
.x5{left:220.912000pt;}
.x4{left:221.858667pt;}
.x51{left:231.517333pt;}
.x24{left:235.096000pt;}
.x4f{left:238.630667pt;}
.x2c{left:246.149333pt;}
.x53{left:247.908000pt;}
.x8{left:250.204000pt;}
.x26{left:256.789333pt;}
.x4d{left:262.008000pt;}
.x23{left:266.681333pt;}
.x3d{left:272.582667pt;}
.x4c{left:273.629333pt;}
.x6{left:274.889333pt;}
.x3e{left:276.484000pt;}
.x9{left:277.704000pt;}
.x63{left:278.614667pt;}
.x3f{left:282.462667pt;}
.xa{left:284.345333pt;}
.x7{left:287.638667pt;}
.x52{left:290.569333pt;}
.xb{left:294.252000pt;}
.x50{left:302.978667pt;}
.x60{left:319.397333pt;}
.x61{left:326.038667pt;}
.x62{left:332.806667pt;}
.x4a{left:335.257333pt;}
.x4e{left:339.352000pt;}
.x49{left:346.316000pt;}
.x64{left:351.936000pt;}
.x47{left:366.364000pt;}
.x42{left:368.636000pt;}
.x4b{left:371.392000pt;}
.x43{left:374.296000pt;}
.x44{left:375.294667pt;}
.x45{left:376.281333pt;}
.x48{left:377.345333pt;}
.x46{left:379.204000pt;}
.x16{left:382.468000pt;}
.x85{left:391.100000pt;}
.x17{left:395.752000pt;}
.x86{left:397.477333pt;}
.x18{left:399.126667pt;}
.x19{left:412.409333pt;}
.x12{left:421.798667pt;}
.x13{left:428.441333pt;}
.x14{left:431.828000pt;}
.x15{left:445.112000pt;}
.x1c{left:471.765333pt;}
.xd{left:480.946667pt;}
.x1d{left:485.048000pt;}
.xe{left:487.588000pt;}
.xf{left:490.905333pt;}
.x10{left:497.546667pt;}
.x1e{left:501.718667pt;}
.x5e{left:546.142667pt;}
.x5f{left:553.446667pt;}
.x6d{left:583.689333pt;}
.x81{left:595.149333pt;}
.x66{left:596.328000pt;}
.x6e{left:607.600000pt;}
.x82{left:619.058667pt;}
.x67{left:620.238667pt;}
.x75{left:642.145333pt;}
.x84{left:646.560000pt;}
.x1f{left:649.825333pt;}
.x68{left:650.734667pt;}
.x54{left:655.320000pt;}
.x6f{left:660.245333pt;}
.x20{left:663.109333pt;}
.x76{left:666.054667pt;}
.x73{left:668.129333pt;}
.x7e{left:669.617333pt;}
.x83{left:670.612000pt;}
.x80{left:671.681333pt;}
.xc{left:672.589333pt;}
.x69{left:674.644000pt;}
.x6a{left:675.884000pt;}
.x70{left:684.156000pt;}
.x7c{left:690.982667pt;}
.x74{left:692.040000pt;}
.x7f{left:693.526667pt;}
.x30{left:694.893333pt;}
.x65{left:696.390667pt;}
.x6c{left:697.732000pt;}
.x6b{left:699.793333pt;}
.x79{left:701.414667pt;}
.x7b{left:702.778667pt;}
.x71{left:708.646667pt;}
.x7d{left:714.893333pt;}
.x77{left:720.317333pt;}
.x7a{left:725.324000pt;}
.x1a{left:726.928000pt;}
.x72{left:732.557333pt;}
.x40{left:735.690667pt;}
.x1b{left:740.210667pt;}
.x41{left:742.994667pt;}
.x78{left:744.226667pt;}
}




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