
    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_0f2f87f9bc7588319f74129b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.083000;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_21206707f7de2d4a988d18dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.083000;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_a2463803428b8e00ae432338.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_e988753240195362901493ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.083000;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_3926b598a8aed2690de16a42.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1ce5eeb508c022e429588130.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_69aaa9ccb9c2cfacb8dce041.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.851000;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_53e950b36ce760e2af22d61d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.851000;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_380e2e7db2eeb7730f5fb970.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087000;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_95743cdb3ec85b82078857f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_b42ea280fe672e33508e2ac9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ad03b7d84b113d1778be2007.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_93f4b453c44e25a3535e5dfe.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006000;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_f6474964aba95da69d92fe1a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m21{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);}
.m8{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);}
.m15{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);}
.ma{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);}
.m24{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);}
.mf{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);}
.m3{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);}
.m7{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);}
.m23{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);}
.mc{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);}
.m1e{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);}
.m1f{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);}
.m26{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m29{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);}
.m1c{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);}
.m4{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);}
.m1{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);}
.m16{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);}
.m28{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);}
.m22{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);}
.mb{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);}
.m1a{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);}
.m13{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);}
.m19{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);}
.m20{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);}
.m25{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);}
.m11{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);}
.m27{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);}
.m10{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);}
.m12{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);}
.m18{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);}
.md{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);}
.m1b{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);}
.m17{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);}
.m1d{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);}
.m9{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);}
.me{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);}
.m2{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);}
.v1{vertical-align:-6.697051px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.884674px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000527px;}
.ls26{letter-spacing:0.001526px;}
.ls9{letter-spacing:0.001578px;}
.ls28{letter-spacing:0.001850px;}
.ls27{letter-spacing:0.001874px;}
.ls19{letter-spacing:0.002149px;}
.ls6{letter-spacing:0.002439px;}
.lsa{letter-spacing:0.002649px;}
.ls18{letter-spacing:0.002706px;}
.lsf{letter-spacing:0.002926px;}
.ls17{letter-spacing:0.003791px;}
.lsc{letter-spacing:0.005516px;}
.ls4{letter-spacing:0.005650px;}
.ls1f{letter-spacing:10.291041px;}
.ls7{letter-spacing:10.511886px;}
.ls3{letter-spacing:11.239655px;}
.ls10{letter-spacing:11.418565px;}
.ls2{letter-spacing:12.250082px;}
.ls5{letter-spacing:12.308562px;}
.ls12{letter-spacing:12.650465px;}
.ls8{letter-spacing:12.703301px;}
.ls24{letter-spacing:12.732408px;}
.ls1d{letter-spacing:12.752266px;}
.ls22{letter-spacing:12.831894px;}
.ls1c{letter-spacing:12.945292px;}
.ls1{letter-spacing:12.959962px;}
.ls11{letter-spacing:12.964348px;}
.ls13{letter-spacing:13.004100px;}
.lsb{letter-spacing:13.041924px;}
.ls16{letter-spacing:13.064421px;}
.ls15{letter-spacing:13.082424px;}
.ls25{letter-spacing:13.087326px;}
.ls1e{letter-spacing:13.090892px;}
.ls14{letter-spacing:13.108931px;}
.ls20{letter-spacing:13.133247px;}
.lsd{letter-spacing:14.724582px;}
.ls23{letter-spacing:15.403406px;}
.ls21{letter-spacing:16.046927px;}
.ls1b{letter-spacing:18.179412px;}
.ls1a{letter-spacing:18.183791px;}
.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;}
}
.ws2{word-spacing:-0.179327px;}
.ws11{word-spacing:-0.148723px;}
.ws19{word-spacing:-0.065455px;}
.wse{word-spacing:-0.059776px;}
.wsf6{word-spacing:-0.051715px;}
.ws8{word-spacing:0.000000px;}
.ws25{word-spacing:7.842578px;}
.wsce{word-spacing:9.607272px;}
.wsd6{word-spacing:9.621826px;}
.wscf{word-spacing:9.649544px;}
.wsf9{word-spacing:9.752735px;}
.ws100{word-spacing:9.818190px;}
.wsa2{word-spacing:9.883645px;}
.wsb9{word-spacing:10.014554px;}
.wsfd{word-spacing:10.080008px;}
.ws9a{word-spacing:10.210918px;}
.wsb{word-spacing:10.341179px;}
.ws7a{word-spacing:10.341827px;}
.ws3f{word-spacing:10.415248px;}
.wsd5{word-spacing:10.472736px;}
.ws35{word-spacing:10.538191px;}
.ws15{word-spacing:10.598285px;}
.ws40{word-spacing:10.603645px;}
.ws36{word-spacing:10.669100px;}
.ws1d{word-spacing:10.734554px;}
.ws58{word-spacing:10.800009px;}
.ws41{word-spacing:10.837302px;}
.ws42{word-spacing:10.865464px;}
.ws6d{word-spacing:10.930918px;}
.ws4f{word-spacing:10.996373px;}
.ws5d{word-spacing:11.061827px;}
.ws53{word-spacing:11.127282px;}
.ws26{word-spacing:11.192737px;}
.ws3e{word-spacing:11.197114px;}
.ws3d{word-spacing:11.202523px;}
.ws1e{word-spacing:11.258191px;}
.ws6{word-spacing:11.323646px;}
.wsff{word-spacing:11.336823px;}
.ws5c{word-spacing:11.389100px;}
.ws4c{word-spacing:11.454555px;}
.ws55{word-spacing:11.520010px;}
.ws89{word-spacing:11.585464px;}
.wsf{word-spacing:11.596466px;}
.ws56{word-spacing:11.650919px;}
.ws43{word-spacing:11.716373px;}
.ws10{word-spacing:11.771533px;}
.ws9{word-spacing:11.775793px;}
.wsa{word-spacing:11.777144px;}
.ws74{word-spacing:11.781828px;}
.ws4e{word-spacing:11.847283px;}
.wsc{word-spacing:11.895344px;}
.ws1c{word-spacing:11.912737px;}
.wsd{word-spacing:11.924437px;}
.ws6a{word-spacing:11.978192px;}
.ws34{word-spacing:12.043646px;}
.wsab{word-spacing:12.086912px;}
.ws37{word-spacing:12.109101px;}
.wsaa{word-spacing:12.127967px;}
.ws6c{word-spacing:12.174556px;}
.ws1a{word-spacing:12.240010px;}
.ws63{word-spacing:12.305465px;}
.wsa8{word-spacing:12.366207px;}
.ws59{word-spacing:12.370919px;}
.ws64{word-spacing:12.436374px;}
.ws5a{word-spacing:12.501829px;}
.ws94{word-spacing:12.561746px;}
.ws2d{word-spacing:12.567283px;}
.wsd1{word-spacing:12.621918px;}
.wsd2{word-spacing:12.624001px;}
.wsd3{word-spacing:12.625069px;}
.ws14{word-spacing:12.632738px;}
.wsa9{word-spacing:12.664572px;}
.wsea{word-spacing:12.672170px;}
.wsbe{word-spacing:12.672266px;}
.wscc{word-spacing:12.672725px;}
.wsca{word-spacing:12.673824px;}
.wscb{word-spacing:12.674509px;}
.wsc9{word-spacing:12.674844px;}
.wsf8{word-spacing:12.682682px;}
.wsdc{word-spacing:12.685085px;}
.wsf7{word-spacing:12.695399px;}
.ws61{word-spacing:12.696530px;}
.ws1f{word-spacing:12.698192px;}
.wseb{word-spacing:12.701974px;}
.ws96{word-spacing:12.703456px;}
.wse5{word-spacing:12.707828px;}
.wsdd{word-spacing:12.712185px;}
.ws1b{word-spacing:12.763647px;}
.wsde{word-spacing:12.763951px;}
.ws48{word-spacing:12.774763px;}
.wse2{word-spacing:12.787358px;}
.wsbb{word-spacing:12.827049px;}
.ws18{word-spacing:12.829102px;}
.ws105{word-spacing:12.834385px;}
.wsa1{word-spacing:12.864239px;}
.ws99{word-spacing:12.892842px;}
.wsd9{word-spacing:12.893352px;}
.ws5{word-spacing:12.894556px;}
.ws7{word-spacing:12.896073px;}
.wsc0{word-spacing:12.898412px;}
.ws8c{word-spacing:12.919067px;}
.wse3{word-spacing:12.938208px;}
.wsfa{word-spacing:12.949384px;}
.ws2a{word-spacing:12.960011px;}
.wsc3{word-spacing:12.998165px;}
.wsfe{word-spacing:13.007351px;}
.wsbd{word-spacing:13.009317px;}
.ws97{word-spacing:13.010711px;}
.wsb3{word-spacing:13.023945px;}
.wsf0{word-spacing:13.024504px;}
.wsef{word-spacing:13.025123px;}
.ws17{word-spacing:13.025465px;}
.wsc1{word-spacing:13.032003px;}
.wsf1{word-spacing:13.035416px;}
.ws98{word-spacing:13.042929px;}
.ws106{word-spacing:13.049545px;}
.ws8e{word-spacing:13.069365px;}
.wsc5{word-spacing:13.075300px;}
.wsb1{word-spacing:13.085828px;}
.wsa5{word-spacing:13.090285px;}
.ws3c{word-spacing:13.090920px;}
.ws9c{word-spacing:13.114432px;}
.ws54{word-spacing:13.127549px;}
.ws12{word-spacing:13.156375px;}
.wsaf{word-spacing:13.157838px;}
.ws104{word-spacing:13.180158px;}
.ws91{word-spacing:13.193872px;}
.wse6{word-spacing:13.195225px;}
.wse7{word-spacing:13.207548px;}
.ws20{word-spacing:13.221829px;}
.wsec{word-spacing:13.254250px;}
.wsa0{word-spacing:13.287284px;}
.ws81{word-spacing:13.352738px;}
.wscd{word-spacing:13.407066px;}
.ws4d{word-spacing:13.418193px;}
.ws93{word-spacing:13.448604px;}
.ws32{word-spacing:13.483648px;}
.ws21{word-spacing:13.549102px;}
.wsd4{word-spacing:13.566804px;}
.ws82{word-spacing:13.614557px;}
.ws84{word-spacing:13.680011px;}
.ws52{word-spacing:13.745466px;}
.ws8f{word-spacing:13.800524px;}
.ws29{word-spacing:13.810921px;}
.ws8a{word-spacing:13.867647px;}
.ws39{word-spacing:13.876375px;}
.ws51{word-spacing:13.939624px;}
.ws23{word-spacing:13.941830px;}
.ws50{word-spacing:13.945845px;}
.ws65{word-spacing:14.007284px;}
.ws85{word-spacing:14.072739px;}
.ws49{word-spacing:14.138194px;}
.wse8{word-spacing:14.191977px;}
.ws3a{word-spacing:14.203648px;}
.wsa6{word-spacing:14.221052px;}
.ws28{word-spacing:14.269103px;}
.wsbc{word-spacing:14.333692px;}
.ws7c{word-spacing:14.334557px;}
.ws2c{word-spacing:14.400012px;}
.ws4{word-spacing:14.460970px;}
.ws72{word-spacing:14.465467px;}
.ws5b{word-spacing:14.530921px;}
.ws75{word-spacing:14.596376px;}
.wsa7{word-spacing:14.630639px;}
.ws68{word-spacing:14.661830px;}
.ws79{word-spacing:14.727285px;}
.ws33{word-spacing:14.792740px;}
.ws7e{word-spacing:14.811357px;}
.ws7b{word-spacing:14.858194px;}
.wsba{word-spacing:14.880182px;}
.ws16{word-spacing:14.891356px;}
.ws57{word-spacing:14.923649px;}
.wsdb{word-spacing:14.977433px;}
.ws80{word-spacing:14.977845px;}
.ws60{word-spacing:14.989103px;}
.ws44{word-spacing:15.054558px;}
.ws87{word-spacing:15.072889px;}
.ws88{word-spacing:15.120013px;}
.ws101{word-spacing:15.127710px;}
.ws95{word-spacing:15.136531px;}
.ws5e{word-spacing:15.185467px;}
.ws73{word-spacing:15.250922px;}
.wsfc{word-spacing:15.283508px;}
.ws38{word-spacing:15.316376px;}
.wse1{word-spacing:15.335010px;}
.wse0{word-spacing:15.339312px;}
.wsdf{word-spacing:15.349123px;}
.ws69{word-spacing:15.381831px;}
.ws76{word-spacing:15.447286px;}
.ws31{word-spacing:15.512740px;}
.ws8b{word-spacing:15.578195px;}
.ws2e{word-spacing:15.643649px;}
.ws4a{word-spacing:15.709104px;}
.ws62{word-spacing:15.774559px;}
.ws27{word-spacing:15.840013px;}
.ws22{word-spacing:15.876172px;}
.ws24{word-spacing:15.905468px;}
.ws83{word-spacing:15.911593px;}
.ws2b{word-spacing:15.970922px;}
.wsda{word-spacing:15.980657px;}
.wsee{word-spacing:15.994705px;}
.wsed{word-spacing:16.020170px;}
.ws77{word-spacing:16.036377px;}
.ws78{word-spacing:16.101832px;}
.wsac{word-spacing:16.167286px;}
.ws70{word-spacing:16.232741px;}
.ws3b{word-spacing:16.298195px;}
.ws103{word-spacing:16.328197px;}
.ws45{word-spacing:16.363650px;}
.ws47{word-spacing:16.399755px;}
.ws46{word-spacing:16.418849px;}
.ws92{word-spacing:16.429105px;}
.ws8d{word-spacing:16.494559px;}
.ws67{word-spacing:16.560014px;}
.ws6e{word-spacing:16.625468px;}
.wsa4{word-spacing:16.690923px;}
.ws5f{word-spacing:16.756378px;}
.ws2f{word-spacing:16.821832px;}
.ws4b{word-spacing:16.887287px;}
.wsb2{word-spacing:16.907725px;}
.ws6b{word-spacing:16.952741px;}
.ws1{word-spacing:16.957208px;}
.wsfb{word-spacing:16.977949px;}
.ws7d{word-spacing:17.018196px;}
.ws0{word-spacing:17.043286px;}
.wsbf{word-spacing:17.083651px;}
.ws66{word-spacing:17.149105px;}
.ws9e{word-spacing:17.214560px;}
.ws30{word-spacing:17.280014px;}
.wsae{word-spacing:17.345469px;}
.wsc2{word-spacing:17.410924px;}
.wsc6{word-spacing:17.476378px;}
.wsad{word-spacing:17.541833px;}
.wse9{word-spacing:17.607287px;}
.wsa3{word-spacing:17.632515px;}
.ws6f{word-spacing:17.672742px;}
.ws9f{word-spacing:17.738197px;}
.ws9b{word-spacing:17.803651px;}
.ws7f{word-spacing:17.861227px;}
.wsb7{word-spacing:17.869106px;}
.wsb8{word-spacing:17.934560px;}
.wsb4{word-spacing:18.000015px;}
.wse4{word-spacing:18.065470px;}
.wsc4{word-spacing:18.119394px;}
.ws90{word-spacing:18.130924px;}
.wsd0{word-spacing:18.196379px;}
.ws71{word-spacing:18.261833px;}
.ws102{word-spacing:18.327288px;}
.ws86{word-spacing:18.392743px;}
.wsd7{word-spacing:18.458197px;}
.wsb0{word-spacing:18.523652px;}
.wsc8{word-spacing:18.785470px;}
.wsc7{word-spacing:18.806466px;}
.wsd8{word-spacing:18.850925px;}
.wsb5{word-spacing:18.916379px;}
.ws9d{word-spacing:20.421835px;}
.wsb6{word-spacing:32.662685px;}
.ws3{word-spacing:35.327498px;}
.wsf5{word-spacing:137.906805px;}
.wsf4{word-spacing:171.987036px;}
.wsf3{word-spacing:324.519372px;}
.wsf2{word-spacing:326.588010px;}
.ws13{word-spacing:1609.986796px;}
._5{margin-left:-8.349488px;}
._18{margin-left:-6.236121px;}
._4{margin-left:-5.164632px;}
._1{margin-left:-4.045628px;}
._2{margin-left:-2.582316px;}
._0{margin-left:-1.291158px;}
._1e{width:1.005124px;}
._6{width:2.255043px;}
._3{width:4.483185px;}
._20{width:5.825459px;}
._24{width:6.985708px;}
._1d{width:8.062568px;}
._1a{width:9.098189px;}
._17{width:10.145463px;}
._16{width:12.055299px;}
._7{width:13.073722px;}
._19{width:14.096044px;}
._1c{width:15.381831px;}
._1b{width:16.690923px;}
._1f{width:18.422329px;}
._21{width:28.232382px;}
._13{width:64.669145px;}
._c{width:66.632783px;}
._e{width:67.680056px;}
._a{width:69.054603px;}
._11{width:70.690968px;}
._8{width:75.796427px;}
._22{width:186.125797px;}
._23{width:189.435328px;}
._f{width:632.077138px;}
._b{width:763.497418px;}
._14{width:784.734295px;}
._9{width:951.132445px;}
._15{width:1030.023172px;}
._10{width:1249.932694px;}
._d{width:1254.139723px;}
._12{width:1318.677958px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.820600px;}
.fs8{font-size:51.171077px;}
.fs7{font-size:51.714677px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs4{font-size:148.722600px;}
.fs1{font-size:179.327400px;}
.y0{bottom:0.000000px;}
.y141{bottom:1.599096px;}
.y12c{bottom:2.042728px;}
.y12b{bottom:22.501933px;}
.y140{bottom:24.223070px;}
.y6c{bottom:51.139500px;}
.y129{bottom:79.911000px;}
.y55{bottom:82.242000px;}
.y165{bottom:84.888000px;}
.yed{bottom:85.635000px;}
.ya6{bottom:87.726000px;}
.y13f{bottom:90.868500px;}
.y10b{bottom:90.904500px;}
.y6b{bottom:90.963000px;}
.y14a{bottom:91.918500px;}
.y8e{bottom:92.794500px;}
.y153{bottom:99.568500px;}
.y11e{bottom:100.273500px;}
.yc6{bottom:101.400000px;}
.ye0{bottom:102.063000px;}
.y54{bottom:104.394000px;}
.y164{bottom:107.040000px;}
.yec{bottom:107.788500px;}
.y5{bottom:109.794000px;}
.ya5{bottom:109.878000px;}
.y10a{bottom:113.056500px;}
.y6a{bottom:113.116500px;}
.y75{bottom:113.821500px;}
.y149{bottom:114.072000px;}
.y8d{bottom:114.948000px;}
.y152{bottom:121.722000px;}
.y11d{bottom:122.427000px;}
.yc5{bottom:123.552000px;}
.ydf{bottom:124.216500px;}
.y53{bottom:126.547500px;}
.y163{bottom:129.193500px;}
.yeb{bottom:129.942000px;}
.ya4{bottom:132.031500px;}
.y109{bottom:135.210000px;}
.y69{bottom:135.268500px;}
.y74{bottom:135.975000px;}
.y148{bottom:136.224000px;}
.y8c{bottom:137.100000px;}
.y4{bottom:139.114500px;}
.y151{bottom:143.874000px;}
.y11c{bottom:144.579000px;}
.yc4{bottom:145.705500px;}
.yde{bottom:146.368500px;}
.y52{bottom:148.699500px;}
.y162{bottom:151.345500px;}
.yea{bottom:152.094000px;}
.ya3{bottom:154.185000px;}
.y68{bottom:157.422000px;}
.y73{bottom:158.127000px;}
.y147{bottom:158.377500px;}
.y13e{bottom:163.734000px;}
.y150{bottom:166.027500px;}
.y11b{bottom:166.732500px;}
.yc3{bottom:167.859000px;}
.ydd{bottom:168.522000px;}
.y108{bottom:170.665500px;}
.y51{bottom:170.853000px;}
.y8b{bottom:172.801500px;}
.y161{bottom:173.499000px;}
.ye9{bottom:174.247500px;}
.ya2{bottom:176.337000px;}
.yf{bottom:179.103000px;}
.y67{bottom:179.575500px;}
.y72{bottom:180.280500px;}
.y146{bottom:180.529500px;}
.y13d{bottom:185.887500px;}
.y14f{bottom:188.179500px;}
.y11a{bottom:188.884500px;}
.yc2{bottom:190.011000px;}
.ydc{bottom:190.675500px;}
.y107{bottom:192.819000px;}
.y50{bottom:193.005000px;}
.y8a{bottom:194.953500px;}
.y160{bottom:195.651000px;}
.ye8{bottom:196.399500px;}
.yb1{bottom:198.490500px;}
.ye{bottom:201.256500px;}
.y66{bottom:201.727500px;}
.y71{bottom:202.432500px;}
.y145{bottom:202.683000px;}
.ya1{bottom:204.837000px;}
.y13c{bottom:208.041000px;}
.y14e{bottom:210.333000px;}
.y119{bottom:211.038000px;}
.yc1{bottom:212.164500px;}
.ydb{bottom:212.827500px;}
.y106{bottom:214.972500px;}
.y4f{bottom:215.158500px;}
.y89{bottom:217.107000px;}
.y15f{bottom:217.804500px;}
.ye7{bottom:218.553000px;}
.y18a{bottom:218.938500px;}
.yb0{bottom:220.642500px;}
.yd{bottom:223.408500px;}
.y65{bottom:223.881000px;}
.y70{bottom:224.586000px;}
.y144{bottom:224.835000px;}
.ya0{bottom:226.990500px;}
.y13b{bottom:230.193000px;}
.y14d{bottom:232.485000px;}
.y118{bottom:233.191500px;}
.yc0{bottom:234.316500px;}
.yda{bottom:234.981000px;}
.y105{bottom:237.124500px;}
.y4e{bottom:237.312000px;}
.y88{bottom:239.259000px;}
.y15e{bottom:239.958000px;}
.ye6{bottom:240.705000px;}
.y189{bottom:241.090500px;}
.yaf{bottom:242.796000px;}
.yc{bottom:245.562000px;}
.y64{bottom:246.033000px;}
.y6f{bottom:246.738000px;}
.y9f{bottom:249.144000px;}
.y13a{bottom:252.346500px;}
.y14c{bottom:254.638500px;}
.y117{bottom:255.343500px;}
.ybf{bottom:256.470000px;}
.yd9{bottom:257.133000px;}
.y104{bottom:259.278000px;}
.y4d{bottom:259.464000px;}
.y87{bottom:261.412500px;}
.y15d{bottom:262.110000px;}
.ye5{bottom:262.858500px;}
.y188{bottom:263.244000px;}
.yae{bottom:264.948000px;}
.y63{bottom:268.186500px;}
.y143{bottom:271.282500px;}
.y9e{bottom:271.296000px;}
.y139{bottom:274.498500px;}
.y14b{bottom:276.792000px;}
.y116{bottom:277.497000px;}
.ybe{bottom:278.622000px;}
.yd8{bottom:279.286500px;}
.y142{bottom:280.122000px;}
.y103{bottom:281.430000px;}
.y4c{bottom:281.617500px;}
.y86{bottom:283.564500px;}
.y15c{bottom:284.263500px;}
.y17c{bottom:285.396000px;}
.yad{bottom:287.101500px;}
.y62{bottom:290.338500px;}
.y6e{bottom:293.310000px;}
.y9d{bottom:293.449500px;}
.y138{bottom:296.652000px;}
.ye4{bottom:297.306000px;}
.y115{bottom:299.649000px;}
.ybd{bottom:300.775500px;}
.yd7{bottom:301.438500px;}
.y6d{bottom:302.149500px;}
.y102{bottom:303.583500px;}
.y4b{bottom:303.769500px;}
.y85{bottom:305.718000px;}
.y15b{bottom:306.415500px;}
.y17b{bottom:307.549500px;}
.yac{bottom:309.253500px;}
.y61{bottom:312.492000px;}
.y39{bottom:314.221500px;}
.y9c{bottom:315.601500px;}
.y137{bottom:318.804000px;}
.ye3{bottom:319.459500px;}
.y114{bottom:321.802500px;}
.ybc{bottom:322.929000px;}
.yd6{bottom:323.592000px;}
.y101{bottom:325.735500px;}
.y4a{bottom:325.923000px;}
.y84{bottom:327.871500px;}
.y15a{bottom:328.569000px;}
.y17a{bottom:329.701500px;}
.yab{bottom:331.407000px;}
.y60{bottom:334.644000px;}
.y128{bottom:335.350500px;}
.y120{bottom:336.475500px;}
.y9b{bottom:337.755000px;}
.y136{bottom:340.957500px;}
.y113{bottom:343.954500px;}
.ybb{bottom:345.081000px;}
.yd5{bottom:345.744000px;}
.y49{bottom:348.075000px;}
.y83{bottom:350.023500px;}
.yb{bottom:350.100000px;}
.y159{bottom:350.721000px;}
.y179{bottom:351.855000px;}
.y38{bottom:352.738500px;}
.yaa{bottom:353.560500px;}
.y5f{bottom:356.797500px;}
.y127{bottom:357.502500px;}
.y11f{bottom:358.629000px;}
.y100{bottom:361.192500px;}
.ye2{bottom:362.899500px;}
.y135{bottom:363.111000px;}
.y112{bottom:366.108000px;}
.y9a{bottom:366.255000px;}
.yba{bottom:367.234500px;}
.yd4{bottom:367.897500px;}
.y48{bottom:370.228500px;}
.ye1{bottom:371.739000px;}
.y82{bottom:372.177000px;}
.y158{bottom:372.874500px;}
.y187{bottom:374.008500px;}
.ya9{bottom:375.712500px;}
.y5e{bottom:378.951000px;}
.y126{bottom:379.656000px;}
.yff{bottom:383.346000px;}
.y134{bottom:385.263000px;}
.y178{bottom:387.555000px;}
.y111{bottom:388.260000px;}
.y99{bottom:388.408500px;}
.yb9{bottom:389.386500px;}
.yd3{bottom:390.051000px;}
.y37{bottom:391.255500px;}
.y47{bottom:392.380500px;}
.y2d{bottom:393.004500px;}
.y81{bottom:394.329000px;}
.y157{bottom:395.026500px;}
.y186{bottom:396.160500px;}
.ya8{bottom:397.866000px;}
.y5d{bottom:401.103000px;}
.y125{bottom:401.808000px;}
.yfe{bottom:405.498000px;}
.y133{bottom:407.416500px;}
.y177{bottom:409.708500px;}
.y110{bottom:410.413500px;}
.y98{bottom:410.560500px;}
.yd2{bottom:412.203000px;}
.y46{bottom:414.534000px;}
.y80{bottom:416.482500px;}
.y156{bottom:417.180000px;}
.y185{bottom:418.314000px;}
.ya{bottom:419.409000px;}
.ya7{bottom:420.018000px;}
.y5c{bottom:423.256500px;}
.y124{bottom:423.961500px;}
.y2c{bottom:424.909500px;}
.yb8{bottom:425.088000px;}
.y132{bottom:429.568500px;}
.y36{bottom:429.771000px;}
.y176{bottom:431.860500px;}
.y10f{bottom:432.567000px;}
.y97{bottom:432.714000px;}
.yd1{bottom:434.356500px;}
.y45{bottom:436.687500px;}
.y7f{bottom:438.634500px;}
.y155{bottom:439.333500px;}
.y184{bottom:440.466000px;}
.yfd{bottom:440.955000px;}
.y2b{bottom:444.456000px;}
.y5b{bottom:445.408500px;}
.y123{bottom:446.113500px;}
.yb7{bottom:447.240000px;}
.y131{bottom:451.722000px;}
.y35{bottom:451.924500px;}
.y175{bottom:454.014000px;}
.y96{bottom:454.866000px;}
.yd0{bottom:456.508500px;}
.y44{bottom:458.839500px;}
.y7e{bottom:460.788000px;}
.y154{bottom:461.485500px;}
.y183{bottom:462.619500px;}
.yfc{bottom:463.107000px;}
.y2a{bottom:464.002500px;}
.y1b{bottom:467.562000px;}
.y10e{bottom:468.267000px;}
.yb6{bottom:469.393500px;}
.y9{bottom:470.881500px;}
.y130{bottom:473.874000px;}
.y174{bottom:476.167500px;}
.y95{bottom:477.019500px;}
.ycf{bottom:478.662000px;}
.y43{bottom:480.993000px;}
.y7d{bottom:482.941500px;}
.y29{bottom:483.549000px;}
.y182{bottom:484.771500px;}
.yfb{bottom:485.260500px;}
.y5a{bottom:489.714000px;}
.y34{bottom:490.441500px;}
.yb5{bottom:491.545500px;}
.y122{bottom:492.685500px;}
.y12f{bottom:496.027500px;}
.y173{bottom:498.319500px;}
.y94{bottom:499.171500px;}
.yce{bottom:500.814000px;}
.y121{bottom:501.525000px;}
.y28{bottom:503.097000px;}
.y42{bottom:503.145000px;}
.y7c{bottom:505.093500px;}
.y181{bottom:506.925000px;}
.yfa{bottom:507.412500px;}
.y1a{bottom:511.867500px;}
.y10d{bottom:514.839000px;}
.y12e{bottom:518.179500px;}
.y172{bottom:520.473000px;}
.y93{bottom:521.325000px;}
.y27{bottom:522.643500px;}
.ycd{bottom:522.967500px;}
.y10c{bottom:523.678500px;}
.y41{bottom:525.298500px;}
.y7b{bottom:527.247000px;}
.y33{bottom:528.957000px;}
.y180{bottom:529.078500px;}
.yf9{bottom:529.566000px;}
.y8{bottom:531.150000px;}
.y59{bottom:534.021000px;}
.y12d{bottom:540.333000px;}
.y26{bottom:542.190000px;}
.y171{bottom:542.625000px;}
.y92{bottom:543.478500px;}
.ycc{bottom:545.121000px;}
.y40{bottom:547.450500px;}
.y7a{bottom:549.399000px;}
.y17f{bottom:551.230500px;}
.yf8{bottom:551.719500px;}
.y19{bottom:556.173000px;}
.y25{bottom:561.736500px;}
.y170{bottom:564.778500px;}
.y91{bottom:565.630500px;}
.ycb{bottom:567.273000px;}
.y32{bottom:567.474000px;}
.y3f{bottom:569.604000px;}
.y79{bottom:571.552500px;}
.y17e{bottom:573.384000px;}
.yf7{bottom:573.871500px;}
.y58{bottom:578.326500px;}
.y24{bottom:581.283000px;}
.y16f{bottom:586.930500px;}
.y90{bottom:587.784000px;}
.yca{bottom:589.426500px;}
.y7{bottom:591.420000px;}
.y3e{bottom:591.756000px;}
.y78{bottom:593.704500px;}
.y17d{bottom:595.536000px;}
.y12a{bottom:595.951500px;}
.yf6{bottom:596.025000px;}
.y18{bottom:600.478500px;}
.y23{bottom:600.829500px;}
.y31{bottom:605.989500px;}
.y16e{bottom:609.084000px;}
.y8f{bottom:609.936000px;}
.yc9{bottom:611.578500px;}
.y3d{bottom:613.909500px;}
.y77{bottom:615.858000px;}
.yf5{bottom:618.177000px;}
.y22{bottom:620.376000px;}
.y17{bottom:622.632000px;}
.y30{bottom:628.143000px;}
.y16d{bottom:631.237500px;}
.y3c{bottom:636.063000px;}
.y76{bottom:638.010000px;}
.y21{bottom:639.922500px;}
.yf4{bottom:640.330500px;}
.y16{bottom:644.784000px;}
.y6{bottom:651.688500px;}
.y16c{bottom:653.389500px;}
.y20{bottom:659.469000px;}
.yb4{bottom:660.163500px;}
.yf3{bottom:662.482500px;}
.y2f{bottom:666.660000px;}
.y15{bottom:666.937500px;}
.y16b{bottom:675.543000px;}
.y1f{bottom:679.015500px;}
.yb3{bottom:682.317000px;}
.yf2{bottom:684.636000px;}
.y14{bottom:689.089500px;}
.y16a{bottom:697.695000px;}
.y1e{bottom:698.562000px;}
.yb2{bottom:704.469000px;}
.yc8{bottom:706.095000px;}
.yf1{bottom:706.789500px;}
.y13{bottom:711.243000px;}
.y1d{bottom:718.110000px;}
.y169{bottom:719.848500px;}
.y2e{bottom:720.573000px;}
.y3b{bottom:730.578000px;}
.y12{bottom:733.396500px;}
.yc7{bottom:735.414000px;}
.y1c{bottom:737.656500px;}
.y168{bottom:742.000500px;}
.yf0{bottom:742.245000px;}
.y11{bottom:755.548500px;}
.y3a{bottom:758.167500px;}
.y167{bottom:764.154000px;}
.yef{bottom:764.398500px;}
.y10{bottom:777.702000px;}
.y166{bottom:786.306000px;}
.yee{bottom:786.550500px;}
.y57{bottom:799.854000px;}
.y3{bottom:814.840500px;}
.y2{bottom:822.007500px;}
.y1{bottom:844.159500px;}
.y56{bottom:890.455500px;}
.hd{height:32.179040px;}
.h10{height:33.945574px;}
.ha{height:35.243782px;}
.h11{height:38.890019px;}
.he{height:39.613443px;}
.hf{height:40.208161px;}
.h12{height:44.774693px;}
.h9{height:45.244454px;}
.h6{height:48.567313px;}
.hc{height:49.090950px;}
.h7{height:50.271280px;}
.h5{height:55.047319px;}
.hb{height:55.570955px;}
.h4{height:63.869282px;}
.h2{height:72.390925px;}
.h8{height:125.075707px;}
.h3{height:150.814343px;}
.h1{height:955.500000px;}
.h0{height:955.842000px;}
.w2{width:300.376664px;}
.w3{width:450.577503px;}
.w0{width:692.646000px;}
.w1{width:693.000000px;}
.x37{left:-1.240898px;}
.x0{left:0.000000px;}
.x24{left:93.786000px;}
.x10{left:94.915500px;}
.x1{left:96.054000px;}
.x5{left:100.132500px;}
.x33{left:108.000000px;}
.x8{left:110.047500px;}
.x1a{left:120.591000px;}
.x35{left:123.595500px;}
.xb{left:138.490500px;}
.x2c{left:143.107500px;}
.x4{left:148.368000px;}
.x28{left:153.466500px;}
.x1d{left:161.146500px;}
.x29{left:163.819500px;}
.x22{left:171.318000px;}
.x6{left:174.438000px;}
.x23{left:177.649500px;}
.x1c{left:190.557000px;}
.x36{left:196.168500px;}
.x7{left:197.985000px;}
.x34{left:202.402500px;}
.xd{left:203.805000px;}
.x3a{left:211.678500px;}
.xe{left:214.539000px;}
.xc{left:217.149000px;}
.x38{left:227.304229px;}
.x32{left:231.282000px;}
.x9{left:239.902500px;}
.x2a{left:246.733500px;}
.x27{left:250.789500px;}
.x1f{left:253.888500px;}
.x39{left:262.560000px;}
.x31{left:265.740000px;}
.x11{left:266.856000px;}
.x3b{left:271.080000px;}
.x15{left:275.940000px;}
.x3{left:283.455000px;}
.x2{left:285.187500px;}
.x12{left:287.911500px;}
.x2b{left:289.018500px;}
.xa{left:291.342000px;}
.xf{left:292.569000px;}
.x13{left:295.876500px;}
.x19{left:298.486500px;}
.x16{left:308.892000px;}
.x14{left:320.160000px;}
.x21{left:338.895000px;}
.x25{left:341.143500px;}
.x20{left:342.625500px;}
.x1e{left:343.636500px;}
.x17{left:359.163000px;}
.x2f{left:361.749000px;}
.x30{left:384.298500px;}
.x2d{left:411.064500px;}
.x2e{left:436.023000px;}
.x18{left:511.681500px;}
.x26{left:532.783500px;}
.x1b{left:534.573000px;}
@media print{
.v1{vertical-align:-5.952934pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.230821pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000469pt;}
.ls26{letter-spacing:0.001357pt;}
.ls9{letter-spacing:0.001403pt;}
.ls28{letter-spacing:0.001645pt;}
.ls27{letter-spacing:0.001666pt;}
.ls19{letter-spacing:0.001910pt;}
.ls6{letter-spacing:0.002168pt;}
.lsa{letter-spacing:0.002355pt;}
.ls18{letter-spacing:0.002405pt;}
.lsf{letter-spacing:0.002601pt;}
.ls17{letter-spacing:0.003370pt;}
.lsc{letter-spacing:0.004903pt;}
.ls4{letter-spacing:0.005022pt;}
.ls1f{letter-spacing:9.147592pt;}
.ls7{letter-spacing:9.343899pt;}
.ls3{letter-spacing:9.990804pt;}
.ls10{letter-spacing:10.149835pt;}
.ls2{letter-spacing:10.888962pt;}
.ls5{letter-spacing:10.940944pt;}
.ls12{letter-spacing:11.244858pt;}
.ls8{letter-spacing:11.291823pt;}
.ls24{letter-spacing:11.317696pt;}
.ls1d{letter-spacing:11.335348pt;}
.ls22{letter-spacing:11.406128pt;}
.ls1c{letter-spacing:11.506927pt;}
.ls1{letter-spacing:11.519966pt;}
.ls11{letter-spacing:11.523865pt;}
.ls13{letter-spacing:11.559200pt;}
.lsb{letter-spacing:11.592821pt;}
.ls16{letter-spacing:11.612819pt;}
.ls15{letter-spacing:11.628822pt;}
.ls25{letter-spacing:11.633179pt;}
.ls1e{letter-spacing:11.636349pt;}
.ls14{letter-spacing:11.652383pt;}
.ls20{letter-spacing:11.673998pt;}
.lsd{letter-spacing:13.088518pt;}
.ls23{letter-spacing:13.691917pt;}
.ls21{letter-spacing:14.263935pt;}
.ls1b{letter-spacing:16.159477pt;}
.ls1a{letter-spacing:16.163370pt;}
.ws2{word-spacing:-0.159402pt;}
.ws11{word-spacing:-0.132198pt;}
.ws19{word-spacing:-0.058182pt;}
.wse{word-spacing:-0.053134pt;}
.wsf6{word-spacing:-0.045969pt;}
.ws8{word-spacing:0.000000pt;}
.ws25{word-spacing:6.971181pt;}
.wsce{word-spacing:8.539798pt;}
.wsd6{word-spacing:8.552734pt;}
.wscf{word-spacing:8.577373pt;}
.wsf9{word-spacing:8.669098pt;}
.ws100{word-spacing:8.727280pt;}
.wsa2{word-spacing:8.785462pt;}
.wsb9{word-spacing:8.901826pt;}
.wsfd{word-spacing:8.960007pt;}
.ws9a{word-spacing:9.076371pt;}
.wsb{word-spacing:9.192159pt;}
.ws7a{word-spacing:9.192735pt;}
.ws3f{word-spacing:9.257998pt;}
.wsd5{word-spacing:9.309099pt;}
.ws35{word-spacing:9.367281pt;}
.ws15{word-spacing:9.420698pt;}
.ws40{word-spacing:9.425462pt;}
.ws36{word-spacing:9.483644pt;}
.ws1d{word-spacing:9.541826pt;}
.ws58{word-spacing:9.600008pt;}
.ws41{word-spacing:9.633157pt;}
.ws42{word-spacing:9.658190pt;}
.ws6d{word-spacing:9.716372pt;}
.ws4f{word-spacing:9.774554pt;}
.ws5d{word-spacing:9.832735pt;}
.ws53{word-spacing:9.890917pt;}
.ws26{word-spacing:9.949099pt;}
.ws3e{word-spacing:9.952990pt;}
.ws3d{word-spacing:9.957798pt;}
.ws1e{word-spacing:10.007281pt;}
.ws6{word-spacing:10.065463pt;}
.wsff{word-spacing:10.077176pt;}
.ws5c{word-spacing:10.123645pt;}
.ws4c{word-spacing:10.181827pt;}
.ws55{word-spacing:10.240009pt;}
.ws89{word-spacing:10.298190pt;}
.wsf{word-spacing:10.307970pt;}
.ws56{word-spacing:10.356372pt;}
.ws43{word-spacing:10.414554pt;}
.ws10{word-spacing:10.463585pt;}
.ws9{word-spacing:10.467372pt;}
.wsa{word-spacing:10.468573pt;}
.ws74{word-spacing:10.472736pt;}
.ws4e{word-spacing:10.530918pt;}
.wsc{word-spacing:10.573639pt;}
.ws1c{word-spacing:10.589100pt;}
.wsd{word-spacing:10.599499pt;}
.ws6a{word-spacing:10.647282pt;}
.ws34{word-spacing:10.705463pt;}
.wsab{word-spacing:10.743922pt;}
.ws37{word-spacing:10.763645pt;}
.wsaa{word-spacing:10.780415pt;}
.ws6c{word-spacing:10.821827pt;}
.ws1a{word-spacing:10.880009pt;}
.ws63{word-spacing:10.938191pt;}
.wsa8{word-spacing:10.992184pt;}
.ws59{word-spacing:10.996373pt;}
.ws64{word-spacing:11.054555pt;}
.ws5a{word-spacing:11.112737pt;}
.ws94{word-spacing:11.165996pt;}
.ws2d{word-spacing:11.170918pt;}
.wsd1{word-spacing:11.219483pt;}
.wsd2{word-spacing:11.221334pt;}
.wsd3{word-spacing:11.222284pt;}
.ws14{word-spacing:11.229100pt;}
.wsa9{word-spacing:11.257398pt;}
.wsea{word-spacing:11.264151pt;}
.wsbe{word-spacing:11.264236pt;}
.wscc{word-spacing:11.264644pt;}
.wsca{word-spacing:11.265622pt;}
.wscb{word-spacing:11.266231pt;}
.wsc9{word-spacing:11.266528pt;}
.wsf8{word-spacing:11.273495pt;}
.wsdc{word-spacing:11.275631pt;}
.wsf7{word-spacing:11.284799pt;}
.ws61{word-spacing:11.285805pt;}
.ws1f{word-spacing:11.287282pt;}
.wseb{word-spacing:11.290643pt;}
.ws96{word-spacing:11.291961pt;}
.wse5{word-spacing:11.295847pt;}
.wsdd{word-spacing:11.299720pt;}
.ws1b{word-spacing:11.345464pt;}
.wsde{word-spacing:11.345734pt;}
.ws48{word-spacing:11.355345pt;}
.wse2{word-spacing:11.366540pt;}
.wsbb{word-spacing:11.401821pt;}
.ws18{word-spacing:11.403646pt;}
.ws105{word-spacing:11.408342pt;}
.wsa1{word-spacing:11.434879pt;}
.ws99{word-spacing:11.460304pt;}
.wsd9{word-spacing:11.460757pt;}
.ws5{word-spacing:11.461828pt;}
.ws7{word-spacing:11.463176pt;}
.wsc0{word-spacing:11.465255pt;}
.ws8c{word-spacing:11.483615pt;}
.wse3{word-spacing:11.500630pt;}
.wsfa{word-spacing:11.510564pt;}
.ws2a{word-spacing:11.520010pt;}
.wsc3{word-spacing:11.553925pt;}
.wsfe{word-spacing:11.562090pt;}
.wsbd{word-spacing:11.563837pt;}
.ws97{word-spacing:11.565076pt;}
.wsb3{word-spacing:11.576840pt;}
.wsf0{word-spacing:11.577337pt;}
.wsef{word-spacing:11.577887pt;}
.ws17{word-spacing:11.578191pt;}
.wsc1{word-spacing:11.584002pt;}
.wsf1{word-spacing:11.587037pt;}
.ws98{word-spacing:11.593715pt;}
.ws106{word-spacing:11.599596pt;}
.ws8e{word-spacing:11.617214pt;}
.wsc5{word-spacing:11.622489pt;}
.wsb1{word-spacing:11.631847pt;}
.wsa5{word-spacing:11.635809pt;}
.ws3c{word-spacing:11.636373pt;}
.ws9c{word-spacing:11.657273pt;}
.ws54{word-spacing:11.668933pt;}
.ws12{word-spacing:11.694555pt;}
.wsaf{word-spacing:11.695856pt;}
.ws104{word-spacing:11.715696pt;}
.ws91{word-spacing:11.727886pt;}
.wse6{word-spacing:11.729089pt;}
.wse7{word-spacing:11.740043pt;}
.ws20{word-spacing:11.752737pt;}
.wsec{word-spacing:11.781555pt;}
.wsa0{word-spacing:11.810919pt;}
.ws81{word-spacing:11.869101pt;}
.wscd{word-spacing:11.917392pt;}
.ws4d{word-spacing:11.927283pt;}
.ws93{word-spacing:11.954314pt;}
.ws32{word-spacing:11.985465pt;}
.ws21{word-spacing:12.043646pt;}
.wsd4{word-spacing:12.059381pt;}
.ws82{word-spacing:12.101828pt;}
.ws84{word-spacing:12.160010pt;}
.ws52{word-spacing:12.218192pt;}
.ws8f{word-spacing:12.267133pt;}
.ws29{word-spacing:12.276374pt;}
.ws8a{word-spacing:12.326797pt;}
.ws39{word-spacing:12.334556pt;}
.ws51{word-spacing:12.390777pt;}
.ws23{word-spacing:12.392738pt;}
.ws50{word-spacing:12.396306pt;}
.ws65{word-spacing:12.450919pt;}
.ws85{word-spacing:12.509101pt;}
.ws49{word-spacing:12.567283pt;}
.wse8{word-spacing:12.615091pt;}
.ws3a{word-spacing:12.625465pt;}
.wsa6{word-spacing:12.640935pt;}
.ws28{word-spacing:12.683647pt;}
.wsbc{word-spacing:12.741059pt;}
.ws7c{word-spacing:12.741829pt;}
.ws2c{word-spacing:12.800011pt;}
.ws4{word-spacing:12.854195pt;}
.ws72{word-spacing:12.858193pt;}
.ws5b{word-spacing:12.916374pt;}
.ws75{word-spacing:12.974556pt;}
.wsa7{word-spacing:13.005013pt;}
.ws68{word-spacing:13.032738pt;}
.ws79{word-spacing:13.090920pt;}
.ws33{word-spacing:13.149102pt;}
.ws7e{word-spacing:13.165651pt;}
.ws7b{word-spacing:13.207284pt;}
.wsba{word-spacing:13.226829pt;}
.ws16{word-spacing:13.236761pt;}
.ws57{word-spacing:13.265466pt;}
.wsdb{word-spacing:13.313274pt;}
.ws80{word-spacing:13.313640pt;}
.ws60{word-spacing:13.323647pt;}
.ws44{word-spacing:13.381829pt;}
.ws87{word-spacing:13.398124pt;}
.ws88{word-spacing:13.440011pt;}
.ws101{word-spacing:13.446853pt;}
.ws95{word-spacing:13.454695pt;}
.ws5e{word-spacing:13.498193pt;}
.ws73{word-spacing:13.556375pt;}
.wsfc{word-spacing:13.585341pt;}
.ws38{word-spacing:13.614557pt;}
.wse1{word-spacing:13.631120pt;}
.wse0{word-spacing:13.634944pt;}
.wsdf{word-spacing:13.643665pt;}
.ws69{word-spacing:13.672739pt;}
.ws76{word-spacing:13.730921pt;}
.ws31{word-spacing:13.789102pt;}
.ws8b{word-spacing:13.847284pt;}
.ws2e{word-spacing:13.905466pt;}
.ws4a{word-spacing:13.963648pt;}
.ws62{word-spacing:14.021830pt;}
.ws27{word-spacing:14.080012pt;}
.ws22{word-spacing:14.112153pt;}
.ws24{word-spacing:14.138194pt;}
.ws83{word-spacing:14.143638pt;}
.ws2b{word-spacing:14.196375pt;}
.wsda{word-spacing:14.205028pt;}
.wsee{word-spacing:14.217516pt;}
.wsed{word-spacing:14.240151pt;}
.ws77{word-spacing:14.254557pt;}
.ws78{word-spacing:14.312739pt;}
.wsac{word-spacing:14.370921pt;}
.ws70{word-spacing:14.429103pt;}
.ws3b{word-spacing:14.487285pt;}
.ws103{word-spacing:14.513953pt;}
.ws45{word-spacing:14.545467pt;}
.ws47{word-spacing:14.577560pt;}
.ws46{word-spacing:14.594532pt;}
.ws92{word-spacing:14.603649pt;}
.ws8d{word-spacing:14.661830pt;}
.ws67{word-spacing:14.720012pt;}
.ws6e{word-spacing:14.778194pt;}
.wsa4{word-spacing:14.836376pt;}
.ws5f{word-spacing:14.894558pt;}
.ws2f{word-spacing:14.952740pt;}
.ws4b{word-spacing:15.010922pt;}
.wsb2{word-spacing:15.029089pt;}
.ws6b{word-spacing:15.069103pt;}
.ws1{word-spacing:15.073074pt;}
.wsfb{word-spacing:15.091511pt;}
.ws7d{word-spacing:15.127285pt;}
.ws0{word-spacing:15.149587pt;}
.wsbf{word-spacing:15.185467pt;}
.ws66{word-spacing:15.243649pt;}
.ws9e{word-spacing:15.301831pt;}
.ws30{word-spacing:15.360013pt;}
.wsae{word-spacing:15.418195pt;}
.wsc2{word-spacing:15.476377pt;}
.wsc6{word-spacing:15.534558pt;}
.wsad{word-spacing:15.592740pt;}
.wse9{word-spacing:15.650922pt;}
.wsa3{word-spacing:15.673346pt;}
.ws6f{word-spacing:15.709104pt;}
.ws9f{word-spacing:15.767286pt;}
.ws9b{word-spacing:15.825468pt;}
.ws7f{word-spacing:15.876646pt;}
.wsb7{word-spacing:15.883650pt;}
.wsb8{word-spacing:15.941831pt;}
.wsb4{word-spacing:16.000013pt;}
.wse4{word-spacing:16.058195pt;}
.wsc4{word-spacing:16.106128pt;}
.ws90{word-spacing:16.116377pt;}
.wsd0{word-spacing:16.174559pt;}
.ws71{word-spacing:16.232741pt;}
.ws102{word-spacing:16.290923pt;}
.ws86{word-spacing:16.349105pt;}
.wsd7{word-spacing:16.407286pt;}
.wsb0{word-spacing:16.465468pt;}
.wsc8{word-spacing:16.698196pt;}
.wsc7{word-spacing:16.716859pt;}
.wsd8{word-spacing:16.756378pt;}
.wsb5{word-spacing:16.814559pt;}
.ws9d{word-spacing:18.152742pt;}
.wsb6{word-spacing:29.033498pt;}
.ws3{word-spacing:31.402220pt;}
.wsf5{word-spacing:122.583827pt;}
.wsf4{word-spacing:152.877365pt;}
.wsf3{word-spacing:288.461664pt;}
.wsf2{word-spacing:290.300454pt;}
.ws13{word-spacing:1431.099374pt;}
._5{margin-left:-7.421767pt;}
._18{margin-left:-5.543219pt;}
._4{margin-left:-4.590784pt;}
._1{margin-left:-3.596114pt;}
._2{margin-left:-2.295392pt;}
._0{margin-left:-1.147696pt;}
._1e{width:0.893444pt;}
._6{width:2.004483pt;}
._3{width:3.985053pt;}
._20{width:5.178186pt;}
._24{width:6.209518pt;}
._1d{width:7.166727pt;}
._1a{width:8.087279pt;}
._17{width:9.018189pt;}
._16{width:10.715821pt;}
._7{width:11.621086pt;}
._19{width:12.529817pt;}
._1c{width:13.672739pt;}
._1b{width:14.836376pt;}
._1f{width:16.375404pt;}
._21{width:25.095451pt;}
._13{width:57.483684pt;}
._c{width:59.229140pt;}
._e{width:60.160050pt;}
._a{width:61.381869pt;}
._11{width:62.836416pt;}
._8{width:67.374602pt;}
._22{width:165.445153pt;}
._23{width:168.386959pt;}
._f{width:561.846345pt;}
._b{width:678.664372pt;}
._14{width:697.541596pt;}
._9{width:845.451062pt;}
._15{width:915.576153pt;}
._10{width:1111.051284pt;}
._d{width:1114.790865pt;}
._12{width:1172.158185pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:45.485402pt;}
.fs7{font-size:45.968602pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs4{font-size:132.197867pt;}
.fs1{font-size:159.402133pt;}
.y0{bottom:0.000000pt;}
.y141{bottom:1.421419pt;}
.y12c{bottom:1.815758pt;}
.y12b{bottom:20.001719pt;}
.y140{bottom:21.531618pt;}
.y6c{bottom:45.457333pt;}
.y129{bottom:71.032000pt;}
.y55{bottom:73.104000pt;}
.y165{bottom:75.456000pt;}
.yed{bottom:76.120000pt;}
.ya6{bottom:77.978667pt;}
.y13f{bottom:80.772000pt;}
.y10b{bottom:80.804000pt;}
.y6b{bottom:80.856000pt;}
.y14a{bottom:81.705333pt;}
.y8e{bottom:82.484000pt;}
.y153{bottom:88.505333pt;}
.y11e{bottom:89.132000pt;}
.yc6{bottom:90.133333pt;}
.ye0{bottom:90.722667pt;}
.y54{bottom:92.794667pt;}
.y164{bottom:95.146667pt;}
.yec{bottom:95.812000pt;}
.y5{bottom:97.594667pt;}
.ya5{bottom:97.669333pt;}
.y10a{bottom:100.494667pt;}
.y6a{bottom:100.548000pt;}
.y75{bottom:101.174667pt;}
.y149{bottom:101.397333pt;}
.y8d{bottom:102.176000pt;}
.y152{bottom:108.197333pt;}
.y11d{bottom:108.824000pt;}
.yc5{bottom:109.824000pt;}
.ydf{bottom:110.414667pt;}
.y53{bottom:112.486667pt;}
.y163{bottom:114.838667pt;}
.yeb{bottom:115.504000pt;}
.ya4{bottom:117.361333pt;}
.y109{bottom:120.186667pt;}
.y69{bottom:120.238667pt;}
.y74{bottom:120.866667pt;}
.y148{bottom:121.088000pt;}
.y8c{bottom:121.866667pt;}
.y4{bottom:123.657333pt;}
.y151{bottom:127.888000pt;}
.y11c{bottom:128.514667pt;}
.yc4{bottom:129.516000pt;}
.yde{bottom:130.105333pt;}
.y52{bottom:132.177333pt;}
.y162{bottom:134.529333pt;}
.yea{bottom:135.194667pt;}
.ya3{bottom:137.053333pt;}
.y68{bottom:139.930667pt;}
.y73{bottom:140.557333pt;}
.y147{bottom:140.780000pt;}
.y13e{bottom:145.541333pt;}
.y150{bottom:147.580000pt;}
.y11b{bottom:148.206667pt;}
.yc3{bottom:149.208000pt;}
.ydd{bottom:149.797333pt;}
.y108{bottom:151.702667pt;}
.y51{bottom:151.869333pt;}
.y8b{bottom:153.601333pt;}
.y161{bottom:154.221333pt;}
.ye9{bottom:154.886667pt;}
.ya2{bottom:156.744000pt;}
.yf{bottom:159.202667pt;}
.y67{bottom:159.622667pt;}
.y72{bottom:160.249333pt;}
.y146{bottom:160.470667pt;}
.y13d{bottom:165.233333pt;}
.y14f{bottom:167.270667pt;}
.y11a{bottom:167.897333pt;}
.yc2{bottom:168.898667pt;}
.ydc{bottom:169.489333pt;}
.y107{bottom:171.394667pt;}
.y50{bottom:171.560000pt;}
.y8a{bottom:173.292000pt;}
.y160{bottom:173.912000pt;}
.ye8{bottom:174.577333pt;}
.yb1{bottom:176.436000pt;}
.ye{bottom:178.894667pt;}
.y66{bottom:179.313333pt;}
.y71{bottom:179.940000pt;}
.y145{bottom:180.162667pt;}
.ya1{bottom:182.077333pt;}
.y13c{bottom:184.925333pt;}
.y14e{bottom:186.962667pt;}
.y119{bottom:187.589333pt;}
.yc1{bottom:188.590667pt;}
.ydb{bottom:189.180000pt;}
.y106{bottom:191.086667pt;}
.y4f{bottom:191.252000pt;}
.y89{bottom:192.984000pt;}
.y15f{bottom:193.604000pt;}
.ye7{bottom:194.269333pt;}
.y18a{bottom:194.612000pt;}
.yb0{bottom:196.126667pt;}
.yd{bottom:198.585333pt;}
.y65{bottom:199.005333pt;}
.y70{bottom:199.632000pt;}
.y144{bottom:199.853333pt;}
.ya0{bottom:201.769333pt;}
.y13b{bottom:204.616000pt;}
.y14d{bottom:206.653333pt;}
.y118{bottom:207.281333pt;}
.yc0{bottom:208.281333pt;}
.yda{bottom:208.872000pt;}
.y105{bottom:210.777333pt;}
.y4e{bottom:210.944000pt;}
.y88{bottom:212.674667pt;}
.y15e{bottom:213.296000pt;}
.ye6{bottom:213.960000pt;}
.y189{bottom:214.302667pt;}
.yaf{bottom:215.818667pt;}
.yc{bottom:218.277333pt;}
.y64{bottom:218.696000pt;}
.y6f{bottom:219.322667pt;}
.y9f{bottom:221.461333pt;}
.y13a{bottom:224.308000pt;}
.y14c{bottom:226.345333pt;}
.y117{bottom:226.972000pt;}
.ybf{bottom:227.973333pt;}
.yd9{bottom:228.562667pt;}
.y104{bottom:230.469333pt;}
.y4d{bottom:230.634667pt;}
.y87{bottom:232.366667pt;}
.y15d{bottom:232.986667pt;}
.ye5{bottom:233.652000pt;}
.y188{bottom:233.994667pt;}
.yae{bottom:235.509333pt;}
.y63{bottom:238.388000pt;}
.y143{bottom:241.140000pt;}
.y9e{bottom:241.152000pt;}
.y139{bottom:243.998667pt;}
.y14b{bottom:246.037333pt;}
.y116{bottom:246.664000pt;}
.ybe{bottom:247.664000pt;}
.yd8{bottom:248.254667pt;}
.y142{bottom:248.997333pt;}
.y103{bottom:250.160000pt;}
.y4c{bottom:250.326667pt;}
.y86{bottom:252.057333pt;}
.y15c{bottom:252.678667pt;}
.y17c{bottom:253.685333pt;}
.yad{bottom:255.201333pt;}
.y62{bottom:258.078667pt;}
.y6e{bottom:260.720000pt;}
.y9d{bottom:260.844000pt;}
.y138{bottom:263.690667pt;}
.ye4{bottom:264.272000pt;}
.y115{bottom:266.354667pt;}
.ybd{bottom:267.356000pt;}
.yd7{bottom:267.945333pt;}
.y6d{bottom:268.577333pt;}
.y102{bottom:269.852000pt;}
.y4b{bottom:270.017333pt;}
.y85{bottom:271.749333pt;}
.y15b{bottom:272.369333pt;}
.y17b{bottom:273.377333pt;}
.yac{bottom:274.892000pt;}
.y61{bottom:277.770667pt;}
.y39{bottom:279.308000pt;}
.y9c{bottom:280.534667pt;}
.y137{bottom:283.381333pt;}
.ye3{bottom:283.964000pt;}
.y114{bottom:286.046667pt;}
.ybc{bottom:287.048000pt;}
.yd6{bottom:287.637333pt;}
.y101{bottom:289.542667pt;}
.y4a{bottom:289.709333pt;}
.y84{bottom:291.441333pt;}
.y15a{bottom:292.061333pt;}
.y17a{bottom:293.068000pt;}
.yab{bottom:294.584000pt;}
.y60{bottom:297.461333pt;}
.y128{bottom:298.089333pt;}
.y120{bottom:299.089333pt;}
.y9b{bottom:300.226667pt;}
.y136{bottom:303.073333pt;}
.y113{bottom:305.737333pt;}
.ybb{bottom:306.738667pt;}
.yd5{bottom:307.328000pt;}
.y49{bottom:309.400000pt;}
.y83{bottom:311.132000pt;}
.yb{bottom:311.200000pt;}
.y159{bottom:311.752000pt;}
.y179{bottom:312.760000pt;}
.y38{bottom:313.545333pt;}
.yaa{bottom:314.276000pt;}
.y5f{bottom:317.153333pt;}
.y127{bottom:317.780000pt;}
.y11f{bottom:318.781333pt;}
.y100{bottom:321.060000pt;}
.ye2{bottom:322.577333pt;}
.y135{bottom:322.765333pt;}
.y112{bottom:325.429333pt;}
.y9a{bottom:325.560000pt;}
.yba{bottom:326.430667pt;}
.yd4{bottom:327.020000pt;}
.y48{bottom:329.092000pt;}
.ye1{bottom:330.434667pt;}
.y82{bottom:330.824000pt;}
.y158{bottom:331.444000pt;}
.y187{bottom:332.452000pt;}
.ya9{bottom:333.966667pt;}
.y5e{bottom:336.845333pt;}
.y126{bottom:337.472000pt;}
.yff{bottom:340.752000pt;}
.y134{bottom:342.456000pt;}
.y178{bottom:344.493333pt;}
.y111{bottom:345.120000pt;}
.y99{bottom:345.252000pt;}
.yb9{bottom:346.121333pt;}
.yd3{bottom:346.712000pt;}
.y37{bottom:347.782667pt;}
.y47{bottom:348.782667pt;}
.y2d{bottom:349.337333pt;}
.y81{bottom:350.514667pt;}
.y157{bottom:351.134667pt;}
.y186{bottom:352.142667pt;}
.ya8{bottom:353.658667pt;}
.y5d{bottom:356.536000pt;}
.y125{bottom:357.162667pt;}
.yfe{bottom:360.442667pt;}
.y133{bottom:362.148000pt;}
.y177{bottom:364.185333pt;}
.y110{bottom:364.812000pt;}
.y98{bottom:364.942667pt;}
.yd2{bottom:366.402667pt;}
.y46{bottom:368.474667pt;}
.y80{bottom:370.206667pt;}
.y156{bottom:370.826667pt;}
.y185{bottom:371.834667pt;}
.ya{bottom:372.808000pt;}
.ya7{bottom:373.349333pt;}
.y5c{bottom:376.228000pt;}
.y124{bottom:376.854667pt;}
.y2c{bottom:377.697333pt;}
.yb8{bottom:377.856000pt;}
.y132{bottom:381.838667pt;}
.y36{bottom:382.018667pt;}
.y176{bottom:383.876000pt;}
.y10f{bottom:384.504000pt;}
.y97{bottom:384.634667pt;}
.yd1{bottom:386.094667pt;}
.y45{bottom:388.166667pt;}
.y7f{bottom:389.897333pt;}
.y155{bottom:390.518667pt;}
.y184{bottom:391.525333pt;}
.yfd{bottom:391.960000pt;}
.y2b{bottom:395.072000pt;}
.y5b{bottom:395.918667pt;}
.y123{bottom:396.545333pt;}
.yb7{bottom:397.546667pt;}
.y131{bottom:401.530667pt;}
.y35{bottom:401.710667pt;}
.y175{bottom:403.568000pt;}
.y96{bottom:404.325333pt;}
.yd0{bottom:405.785333pt;}
.y44{bottom:407.857333pt;}
.y7e{bottom:409.589333pt;}
.y154{bottom:410.209333pt;}
.y183{bottom:411.217333pt;}
.yfc{bottom:411.650667pt;}
.y2a{bottom:412.446667pt;}
.y1b{bottom:415.610667pt;}
.y10e{bottom:416.237333pt;}
.yb6{bottom:417.238667pt;}
.y9{bottom:418.561333pt;}
.y130{bottom:421.221333pt;}
.y174{bottom:423.260000pt;}
.y95{bottom:424.017333pt;}
.ycf{bottom:425.477333pt;}
.y43{bottom:427.549333pt;}
.y7d{bottom:429.281333pt;}
.y29{bottom:429.821333pt;}
.y182{bottom:430.908000pt;}
.yfb{bottom:431.342667pt;}
.y5a{bottom:435.301333pt;}
.y34{bottom:435.948000pt;}
.yb5{bottom:436.929333pt;}
.y122{bottom:437.942667pt;}
.y12f{bottom:440.913333pt;}
.y173{bottom:442.950667pt;}
.y94{bottom:443.708000pt;}
.yce{bottom:445.168000pt;}
.y121{bottom:445.800000pt;}
.y28{bottom:447.197333pt;}
.y42{bottom:447.240000pt;}
.y7c{bottom:448.972000pt;}
.y181{bottom:450.600000pt;}
.yfa{bottom:451.033333pt;}
.y1a{bottom:454.993333pt;}
.y10d{bottom:457.634667pt;}
.y12e{bottom:460.604000pt;}
.y172{bottom:462.642667pt;}
.y93{bottom:463.400000pt;}
.y27{bottom:464.572000pt;}
.ycd{bottom:464.860000pt;}
.y10c{bottom:465.492000pt;}
.y41{bottom:466.932000pt;}
.y7b{bottom:468.664000pt;}
.y33{bottom:470.184000pt;}
.y180{bottom:470.292000pt;}
.yf9{bottom:470.725333pt;}
.y8{bottom:472.133333pt;}
.y59{bottom:474.685333pt;}
.y12d{bottom:480.296000pt;}
.y26{bottom:481.946667pt;}
.y171{bottom:482.333333pt;}
.y92{bottom:483.092000pt;}
.ycc{bottom:484.552000pt;}
.y40{bottom:486.622667pt;}
.y7a{bottom:488.354667pt;}
.y17f{bottom:489.982667pt;}
.yf8{bottom:490.417333pt;}
.y19{bottom:494.376000pt;}
.y25{bottom:499.321333pt;}
.y170{bottom:502.025333pt;}
.y91{bottom:502.782667pt;}
.ycb{bottom:504.242667pt;}
.y32{bottom:504.421333pt;}
.y3f{bottom:506.314667pt;}
.y79{bottom:508.046667pt;}
.y17e{bottom:509.674667pt;}
.yf7{bottom:510.108000pt;}
.y58{bottom:514.068000pt;}
.y24{bottom:516.696000pt;}
.y16f{bottom:521.716000pt;}
.y90{bottom:522.474667pt;}
.yca{bottom:523.934667pt;}
.y7{bottom:525.706667pt;}
.y3e{bottom:526.005333pt;}
.y78{bottom:527.737333pt;}
.y17d{bottom:529.365333pt;}
.y12a{bottom:529.734667pt;}
.yf6{bottom:529.800000pt;}
.y18{bottom:533.758667pt;}
.y23{bottom:534.070667pt;}
.y31{bottom:538.657333pt;}
.y16e{bottom:541.408000pt;}
.y8f{bottom:542.165333pt;}
.yc9{bottom:543.625333pt;}
.y3d{bottom:545.697333pt;}
.y77{bottom:547.429333pt;}
.yf5{bottom:549.490667pt;}
.y22{bottom:551.445333pt;}
.y17{bottom:553.450667pt;}
.y30{bottom:558.349333pt;}
.y16d{bottom:561.100000pt;}
.y3c{bottom:565.389333pt;}
.y76{bottom:567.120000pt;}
.y21{bottom:568.820000pt;}
.yf4{bottom:569.182667pt;}
.y16{bottom:573.141333pt;}
.y6{bottom:579.278667pt;}
.y16c{bottom:580.790667pt;}
.y20{bottom:586.194667pt;}
.yb4{bottom:586.812000pt;}
.yf3{bottom:588.873333pt;}
.y2f{bottom:592.586667pt;}
.y15{bottom:592.833333pt;}
.y16b{bottom:600.482667pt;}
.y1f{bottom:603.569333pt;}
.yb3{bottom:606.504000pt;}
.yf2{bottom:608.565333pt;}
.y14{bottom:612.524000pt;}
.y16a{bottom:620.173333pt;}
.y1e{bottom:620.944000pt;}
.yb2{bottom:626.194667pt;}
.yc8{bottom:627.640000pt;}
.yf1{bottom:628.257333pt;}
.y13{bottom:632.216000pt;}
.y1d{bottom:638.320000pt;}
.y169{bottom:639.865333pt;}
.y2e{bottom:640.509333pt;}
.y3b{bottom:649.402667pt;}
.y12{bottom:651.908000pt;}
.yc7{bottom:653.701333pt;}
.y1c{bottom:655.694667pt;}
.y168{bottom:659.556000pt;}
.yf0{bottom:659.773333pt;}
.y11{bottom:671.598667pt;}
.y3a{bottom:673.926667pt;}
.y167{bottom:679.248000pt;}
.yef{bottom:679.465333pt;}
.y10{bottom:691.290667pt;}
.y166{bottom:698.938667pt;}
.yee{bottom:699.156000pt;}
.y57{bottom:710.981333pt;}
.y3{bottom:724.302667pt;}
.y2{bottom:730.673333pt;}
.y1{bottom:750.364000pt;}
.y56{bottom:791.516000pt;}
.hd{height:28.603591pt;}
.h10{height:30.173843pt;}
.ha{height:31.327806pt;}
.h11{height:34.568906pt;}
.he{height:35.211949pt;}
.hf{height:35.740588pt;}
.h12{height:39.799727pt;}
.h9{height:40.217293pt;}
.h6{height:43.170945pt;}
.hc{height:43.636400pt;}
.h7{height:44.685582pt;}
.h5{height:48.930950pt;}
.hb{height:49.396405pt;}
.h4{height:56.772695pt;}
.h2{height:64.347489pt;}
.h8{height:111.178406pt;}
.h3{height:134.057194pt;}
.h1{height:849.333333pt;}
.h0{height:849.637333pt;}
.w2{width:267.001479pt;}
.w3{width:400.513336pt;}
.w0{width:615.685333pt;}
.w1{width:616.000000pt;}
.x37{left:-1.103021pt;}
.x0{left:0.000000pt;}
.x24{left:83.365333pt;}
.x10{left:84.369333pt;}
.x1{left:85.381333pt;}
.x5{left:89.006667pt;}
.x33{left:96.000000pt;}
.x8{left:97.820000pt;}
.x1a{left:107.192000pt;}
.x35{left:109.862667pt;}
.xb{left:123.102667pt;}
.x2c{left:127.206667pt;}
.x4{left:131.882667pt;}
.x28{left:136.414667pt;}
.x1d{left:143.241333pt;}
.x29{left:145.617333pt;}
.x22{left:152.282667pt;}
.x6{left:155.056000pt;}
.x23{left:157.910667pt;}
.x1c{left:169.384000pt;}
.x36{left:174.372000pt;}
.x7{left:175.986667pt;}
.x34{left:179.913333pt;}
.xd{left:181.160000pt;}
.x3a{left:188.158667pt;}
.xe{left:190.701333pt;}
.xc{left:193.021333pt;}
.x38{left:202.048203pt;}
.x32{left:205.584000pt;}
.x9{left:213.246667pt;}
.x2a{left:219.318667pt;}
.x27{left:222.924000pt;}
.x1f{left:225.678667pt;}
.x39{left:233.386667pt;}
.x31{left:236.213333pt;}
.x11{left:237.205333pt;}
.x3b{left:240.960000pt;}
.x15{left:245.280000pt;}
.x3{left:251.960000pt;}
.x2{left:253.500000pt;}
.x12{left:255.921333pt;}
.x2b{left:256.905333pt;}
.xa{left:258.970667pt;}
.xf{left:260.061333pt;}
.x13{left:263.001333pt;}
.x19{left:265.321333pt;}
.x16{left:274.570667pt;}
.x14{left:284.586667pt;}
.x21{left:301.240000pt;}
.x25{left:303.238667pt;}
.x20{left:304.556000pt;}
.x1e{left:305.454667pt;}
.x17{left:319.256000pt;}
.x2f{left:321.554667pt;}
.x30{left:341.598667pt;}
.x2d{left:365.390667pt;}
.x2e{left:387.576000pt;}
.x18{left:454.828000pt;}
.x26{left:473.585333pt;}
.x1b{left:475.176000pt;}
}




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