
    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_2971ea912cf3fb45319d40b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_854c8f0fc2545af6cd537393.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8b86d6447813dcd9ef753fd0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0af3fec6162aad68fc1b9bb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_0281bda47f04b2640d8b9e66.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e604148e533e715d1393e4d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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_1d2f503e92fd1c1d5a96fcc7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d2327f717ba5212602fffb06.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m7{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);}
.m29{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);}
.m14{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);}
.m23{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);}
.me{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);}
.m1f{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);}
.m1e{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);}
.mb{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);}
.m28{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);}
.m21{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);}
.m2{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);}
.m9{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);}
.m22{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m8{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);}
.m6{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);}
.m20{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);}
.m17{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);}
.m1{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);}
.m15{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);}
.m27{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);}
.m26{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);}
.m1b{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);}
.m16{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);}
.m25{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.mf{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);}
.m24{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);}
.m5{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);}
.m10{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);}
.m1c{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);}
.m1d{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);}
.m19{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);}
.mc{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);}
.m12{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);}
.m13{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.702000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000088px;}
.ls5{letter-spacing:0.000174px;}
.ls15{letter-spacing:0.000353px;}
.ls28{letter-spacing:0.000422px;}
.lsf{letter-spacing:0.000435px;}
.ls25{letter-spacing:0.000566px;}
.ls0{letter-spacing:0.000600px;}
.ls7{letter-spacing:0.000745px;}
.ls17{letter-spacing:0.000800px;}
.ls27{letter-spacing:0.000831px;}
.ls19{letter-spacing:0.000901px;}
.ls20{letter-spacing:0.001036px;}
.ls1e{letter-spacing:0.001155px;}
.ls1d{letter-spacing:0.001200px;}
.ls24{letter-spacing:0.001357px;}
.ls16{letter-spacing:0.001701px;}
.ls10{letter-spacing:0.002083px;}
.ls11{letter-spacing:0.002181px;}
.ls1b{letter-spacing:0.002461px;}
.ls1f{letter-spacing:0.002544px;}
.ls8{letter-spacing:0.002782px;}
.ls6{letter-spacing:0.003226px;}
.ls22{letter-spacing:0.004009px;}
.ls4{letter-spacing:0.004092px;}
.lsc{letter-spacing:0.004200px;}
.ls26{letter-spacing:0.005510px;}
.lse{letter-spacing:0.027628px;}
.ls1{letter-spacing:11.954850px;}
.ls21{letter-spacing:13.521858px;}
.ls1c{letter-spacing:13.591537px;}
.ls1a{letter-spacing:13.663462px;}
.lsb{letter-spacing:14.884124px;}
.ls12{letter-spacing:14.943900px;}
.ls9{letter-spacing:15.063451px;}
.ls3{letter-spacing:15.072927px;}
.ls2a{letter-spacing:16.676400px;}
.ls29{letter-spacing:16.682400px;}
.lsd{letter-spacing:18.112007px;}
.lsa{letter-spacing:18.291334px;}
.ls14{letter-spacing:20.861684px;}
.ls13{letter-spacing:20.921460px;}
.ls23{letter-spacing:32.538635px;}
.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;}
}
.ws28{word-spacing:-14.943900px;}
.wsb0{word-spacing:-13.449600px;}
.ws2b{word-spacing:-11.955150px;}
.ws1{word-spacing:-10.460700px;}
.ws3b{word-spacing:-3.526760px;}
.wsa8{word-spacing:-3.174106px;}
.ws46{word-spacing:-2.988780px;}
.wsac{word-spacing:-2.859545px;}
.wsab{word-spacing:-2.851315px;}
.ws45{word-spacing:-2.749678px;}
.ws5f{word-spacing:-2.689902px;}
.ws34{word-spacing:-2.032370px;}
.wsbc{word-spacing:-1.990541px;}
.ws25{word-spacing:-1.972595px;}
.ws87{word-spacing:-1.793268px;}
.ws56{word-spacing:-1.733492px;}
.ws47{word-spacing:-1.673717px;}
.ws9d{word-spacing:-1.613941px;}
.ws4b{word-spacing:-1.434614px;}
.wsaf{word-spacing:-1.344960px;}
.ws73{word-spacing:-1.315063px;}
.wsb9{word-spacing:-1.291162px;}
.ws8b{word-spacing:-1.255288px;}
.ws92{word-spacing:-1.211058px;}
.ws8a{word-spacing:-1.195512px;}
.ws52{word-spacing:-1.135736px;}
.ws81{word-spacing:-1.075961px;}
.ws3f{word-spacing:-0.956410px;}
.ws5a{word-spacing:-0.896634px;}
.ws63{word-spacing:-0.836858px;}
.ws95{word-spacing:-0.777083px;}
.ws4{word-spacing:-0.711328px;}
.ws4d{word-spacing:-0.657532px;}
.ws74{word-spacing:-0.597756px;}
.ws29{word-spacing:-0.537980px;}
.ws84{word-spacing:-0.478205px;}
.ws85{word-spacing:-0.418429px;}
.wsad{word-spacing:-0.376589px;}
.ws4c{word-spacing:-0.358654px;}
.ws4f{word-spacing:-0.313286px;}
.ws32{word-spacing:-0.298878px;}
.wsa6{word-spacing:-0.268992px;}
.ws78{word-spacing:-0.250975px;}
.ws31{word-spacing:-0.239102px;}
.ws8c{word-spacing:-0.230024px;}
.wsa3{word-spacing:-0.215194px;}
.ws22{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws27{word-spacing:-0.119551px;}
.wsae{word-spacing:-0.107597px;}
.wsb7{word-spacing:-0.092097px;}
.ws10{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.wsca{word-spacing:-0.045328px;}
.ws3{word-spacing:-0.041843px;}
.ws7a{word-spacing:-0.014914px;}
.wsba{word-spacing:-0.011309px;}
.wsd4{word-spacing:-0.009917px;}
.wsd6{word-spacing:-0.009677px;}
.ws94{word-spacing:-0.008653px;}
.wsd0{word-spacing:-0.007411px;}
.wsc9{word-spacing:-0.007018px;}
.wsd5{word-spacing:-0.005059px;}
.wsd1{word-spacing:-0.004800px;}
.ws2a{word-spacing:-0.003797px;}
.wsc7{word-spacing:-0.003734px;}
.wsc3{word-spacing:-0.003562px;}
.ws7{word-spacing:-0.001441px;}
.ws5{word-spacing:-0.000634px;}
.ws2{word-spacing:0.000000px;}
.ws6c{word-spacing:0.017506px;}
.wsa0{word-spacing:0.044494px;}
.ws7d{word-spacing:0.050520px;}
.ws1b{word-spacing:0.053798px;}
.ws2f{word-spacing:0.059776px;}
.wsa1{word-spacing:0.068837px;}
.wsce{word-spacing:0.094229px;}
.ws14{word-spacing:0.107597px;}
.ws20{word-spacing:0.119551px;}
.wsa7{word-spacing:0.161395px;}
.ws21{word-spacing:0.179327px;}
.wsa4{word-spacing:0.215194px;}
.ws3a{word-spacing:0.239102px;}
.wsb6{word-spacing:0.268992px;}
.ws2c{word-spacing:0.298878px;}
.ws1d{word-spacing:0.322790px;}
.ws9f{word-spacing:0.348958px;}
.ws57{word-spacing:0.358654px;}
.ws93{word-spacing:0.418429px;}
.ws58{word-spacing:0.478205px;}
.ws50{word-spacing:0.537980px;}
.ws1a{word-spacing:0.591782px;}
.ws82{word-spacing:0.597756px;}
.wsd2{word-spacing:0.645581px;}
.ws2e{word-spacing:0.657532px;}
.ws4a{word-spacing:0.717307px;}
.wsa5{word-spacing:0.753178px;}
.ws40{word-spacing:0.777083px;}
.ws33{word-spacing:0.836858px;}
.ws79{word-spacing:0.896634px;}
.ws9e{word-spacing:0.956410px;}
.ws2d{word-spacing:1.075961px;}
.ws54{word-spacing:1.135736px;}
.ws15{word-spacing:1.183565px;}
.ws24{word-spacing:1.195512px;}
.wscd{word-spacing:1.237363px;}
.wscc{word-spacing:1.256729px;}
.wscb{word-spacing:1.344960px;}
.ws3d{word-spacing:1.374839px;}
.wse{word-spacing:1.380812px;}
.ws13{word-spacing:1.398758px;}
.ws9a{word-spacing:1.434614px;}
.ws55{word-spacing:1.494390px;}
.ws53{word-spacing:1.554166px;}
.ws6b{word-spacing:1.613941px;}
.ws51{word-spacing:1.673717px;}
.ws26{word-spacing:1.733492px;}
.ws3e{word-spacing:1.793268px;}
.ws64{word-spacing:1.853044px;}
.ws86{word-spacing:1.912819px;}
.ws76{word-spacing:1.972595px;}
.ws3c{word-spacing:2.032370px;}
.ws49{word-spacing:2.092146px;}
.ws48{word-spacing:2.151922px;}
.ws8e{word-spacing:2.195342px;}
.ws8d{word-spacing:2.211697px;}
.ws69{word-spacing:2.271473px;}
.wsc4{word-spacing:2.367130px;}
.wsbe{word-spacing:2.420928px;}
.ws23{word-spacing:2.450800px;}
.ws68{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws6{word-spacing:2.513695px;}
.ws5b{word-spacing:2.570351px;}
.ws7b{word-spacing:2.630126px;}
.ws88{word-spacing:2.689902px;}
.ws77{word-spacing:2.749678px;}
.wsbd{word-spacing:2.797517px;}
.ws8f{word-spacing:2.809453px;}
.ws70{word-spacing:2.929004px;}
.ws60{word-spacing:2.988780px;}
.wsb8{word-spacing:3.012710px;}
.ws97{word-spacing:3.048556px;}
.ws39{word-spacing:3.108331px;}
.ws89{word-spacing:3.204931px;}
.ws1e{word-spacing:3.219667px;}
.wsa2{word-spacing:3.224822px;}
.wsc6{word-spacing:3.225178px;}
.ws71{word-spacing:3.227882px;}
.wsbb{word-spacing:3.227904px;}
.ws5d{word-spacing:3.347434px;}
.ws36{word-spacing:3.407209px;}
.wsc2{word-spacing:3.443098px;}
.ws37{word-spacing:3.466985px;}
.wsd7{word-spacing:3.496896px;}
.ws6f{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws83{word-spacing:3.646312px;}
.wscf{word-spacing:3.658291px;}
.ws99{word-spacing:3.706087px;}
.ws30{word-spacing:3.765863px;}
.ws38{word-spacing:3.825638px;}
.ws75{word-spacing:3.885414px;}
.ws5e{word-spacing:3.945190px;}
.ws80{word-spacing:4.004965px;}
.ws19{word-spacing:4.088678px;}
.ws6a{word-spacing:4.124516px;}
.ws6d{word-spacing:4.184292px;}
.ws5c{word-spacing:4.244068px;}
.ws98{word-spacing:4.303843px;}
.wsa9{word-spacing:4.303872px;}
.wsaa{word-spacing:4.572864px;}
.ws7f{word-spacing:4.662497px;}
.ws7e{word-spacing:4.676268px;}
.wsd3{word-spacing:4.680461px;}
.ws16{word-spacing:4.841856px;}
.ws91{word-spacing:4.901599px;}
.ws67{word-spacing:4.961375px;}
.ws9c{word-spacing:5.080926px;}
.wsbf{word-spacing:5.110848px;}
.wsc0{word-spacing:5.125646px;}
.wsc1{word-spacing:5.134415px;}
.ws66{word-spacing:5.140702px;}
.ws9b{word-spacing:5.320028px;}
.wsc5{word-spacing:5.326042px;}
.ws90{word-spacing:5.379804px;}
.wsb1{word-spacing:5.433638px;}
.ws59{word-spacing:5.439580px;}
.wsc{word-spacing:5.481407px;}
.wsb2{word-spacing:5.487437px;}
.ws35{word-spacing:5.499355px;}
.ws12{word-spacing:5.541235px;}
.wsc8{word-spacing:5.595034px;}
.ws72{word-spacing:5.917784px;}
.ws41{word-spacing:5.977560px;}
.wsb3{word-spacing:6.133018px;}
.wsb4{word-spacing:6.186816px;}
.ws44{word-spacing:6.276438px;}
.ws42{word-spacing:6.395989px;}
.ws65{word-spacing:6.635092px;}
.ws62{word-spacing:6.814418px;}
.ws4e{word-spacing:6.933970px;}
.ws6e{word-spacing:7.053521px;}
.ws7c{word-spacing:7.531726px;}
.ws18{word-spacing:7.585574px;}
.wsb5{word-spacing:7.746970px;}
.ws61{word-spacing:8.249033px;}
.ws43{word-spacing:8.308808px;}
.wsb{word-spacing:11.841512px;}
.ws96{word-spacing:12.493100px;}
.wsa{word-spacing:13.306010px;}
.ws11{word-spacing:14.521802px;}
.ws8{word-spacing:15.481836px;}
.wsd{word-spacing:22.720640px;}
.wsf{word-spacing:26.791603px;}
.ws9{word-spacing:29.262958px;}
._8{margin-left:-11.943245px;}
._6{margin-left:-7.962163px;}
._b{margin-left:-6.939994px;}
._4{margin-left:-5.481407px;}
._1{margin-left:-3.807695px;}
._3{margin-left:-2.259511px;}
._2{margin-left:-1.255284px;}
._1b{width:1.011174px;}
._1d{width:2.905114px;}
._15{width:4.363619px;}
._0{width:12.971268px;}
._f{width:14.822586px;}
._9{width:16.294885px;}
._e{width:17.753353px;}
._c{width:19.008634px;}
._12{width:20.794989px;}
._d{width:22.475626px;}
._16{width:24.029791px;}
._5{width:25.314894px;}
._17{width:26.528401px;}
._1c{width:27.634579px;}
._13{width:29.705142px;}
._14{width:30.969785px;}
._19{width:32.099497px;}
._7{width:33.355008px;}
._a{width:39.476012px;}
._18{width:41.962471px;}
._10{width:883.103020px;}
._1a{width:2480.523000px;}
._11{width:2504.433000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(67,77,169);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs6{font-size:45.429600px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:120.053083px;}
.y0{bottom:0.000000px;}
.y15{bottom:15.506446px;}
.y42{bottom:31.890000px;}
.y41{bottom:103.621500px;}
.y13{bottom:104.646000px;}
.y136{bottom:109.285500px;}
.y168{bottom:109.476000px;}
.y7a{bottom:110.629500px;}
.ydc{bottom:111.526500px;}
.yac{bottom:113.320500px;}
.y156{bottom:118.551000px;}
.y100{bottom:119.596500px;}
.y1a7{bottom:120.514500px;}
.y40{bottom:122.449500px;}
.y12{bottom:122.535000px;}
.y167{bottom:126.736500px;}
.y135{bottom:128.115000px;}
.y78{bottom:129.459000px;}
.ydb{bottom:130.356000px;}
.yab{bottom:132.150000px;}
.y79{bottom:134.884500px;}
.y155{bottom:137.380500px;}
.y1a6{bottom:137.775000px;}
.yff{bottom:138.426000px;}
.y11{bottom:140.422500px;}
.y3f{bottom:141.279000px;}
.y166{bottom:143.997000px;}
.y133{bottom:146.944500px;}
.y77{bottom:148.288500px;}
.yd9{bottom:149.185500px;}
.y134{bottom:152.368500px;}
.yda{bottom:154.609500px;}
.y1a5{bottom:155.035500px;}
.yaa{bottom:155.461500px;}
.y154{bottom:156.208500px;}
.yfe{bottom:157.255500px;}
.y10{bottom:158.310000px;}
.y3e{bottom:160.108500px;}
.y165{bottom:161.257500px;}
.y132{bottom:165.774000px;}
.y164{bottom:166.140000px;}
.y76{bottom:167.118000px;}
.yd8{bottom:168.015000px;}
.y1a4{bottom:172.296000px;}
.ya9{bottom:174.291000px;}
.y153{bottom:175.038000px;}
.yfd{bottom:176.085000px;}
.yf{bottom:176.199000px;}
.y3d{bottom:178.938000px;}
.y163{bottom:181.887000px;}
.y131{bottom:184.603500px;}
.y75{bottom:185.947500px;}
.y162{bottom:186.769500px;}
.yd7{bottom:186.844500px;}
.y1a3{bottom:189.556500px;}
.ya8{bottom:193.120500px;}
.y152{bottom:193.867500px;}
.ye{bottom:194.086500px;}
.yfc{bottom:194.914500px;}
.y3c{bottom:197.767500px;}
.y1d6{bottom:198.202500px;}
.y130{bottom:203.431500px;}
.y74{bottom:204.777000px;}
.yd6{bottom:205.674000px;}
.y1a2{bottom:206.817000px;}
.y161{bottom:207.915000px;}
.ya7{bottom:211.950000px;}
.yd{bottom:211.974000px;}
.yfb{bottom:213.744000px;}
.y1d5{bottom:215.461500px;}
.y3b{bottom:216.597000px;}
.y151{bottom:220.170000px;}
.y73{bottom:223.606500px;}
.y1a1{bottom:224.077500px;}
.yd5{bottom:224.503500px;}
.y12f{bottom:226.744500px;}
.yc{bottom:229.863000px;}
.ya6{bottom:230.779500px;}
.yfa{bottom:232.573500px;}
.y1d4{bottom:232.722000px;}
.y3a{bottom:235.426500px;}
.y1a0{bottom:241.338000px;}
.y160{bottom:241.539000px;}
.y72{bottom:242.436000px;}
.yd4{bottom:243.333000px;}
.y12e{bottom:245.574000px;}
.y150{bottom:246.471000px;}
.ya5{bottom:249.609000px;}
.yf9{bottom:251.403000px;}
.y39{bottom:254.256000px;}
.y19f{bottom:258.597000px;}
.y71{bottom:261.265500px;}
.yd3{bottom:262.162500px;}
.y12d{bottom:264.403500px;}
.y14f{bottom:265.300500px;}
.y15f{bottom:268.080000px;}
.ya4{bottom:268.438500px;}
.yf8{bottom:270.232500px;}
.y1d3{bottom:271.801500px;}
.y38{bottom:273.085500px;}
.y19e{bottom:275.857500px;}
.y70{bottom:280.095000px;}
.yd2{bottom:280.992000px;}
.y12c{bottom:283.233000px;}
.y14e{bottom:284.130000px;}
.y15e{bottom:285.654000px;}
.ya3{bottom:287.268000px;}
.yf7{bottom:289.062000px;}
.y37{bottom:291.915000px;}
.y19d{bottom:293.118000px;}
.yb{bottom:297.166500px;}
.y6f{bottom:298.924500px;}
.yd1{bottom:299.821500px;}
.y12b{bottom:302.062500px;}
.y14d{bottom:302.959500px;}
.ya2{bottom:306.097500px;}
.y1d2{bottom:306.321000px;}
.yf6{bottom:307.891500px;}
.y19c{bottom:310.378500px;}
.y35{bottom:310.744500px;}
.y15d{bottom:312.195000px;}
.ya{bottom:315.054000px;}
.y36{bottom:316.170000px;}
.y6e{bottom:317.754000px;}
.yd0{bottom:318.651000px;}
.y12a{bottom:320.892000px;}
.y14c{bottom:321.789000px;}
.y1d1{bottom:323.581500px;}
.yf5{bottom:326.719500px;}
.y19b{bottom:327.639000px;}
.ya1{bottom:329.410500px;}
.y34{bottom:329.574000px;}
.y9{bottom:332.943000px;}
.y6d{bottom:336.583500px;}
.ycf{bottom:337.480500px;}
.y15c{bottom:338.736000px;}
.y129{bottom:339.721500px;}
.y14b{bottom:340.618500px;}
.y1d0{bottom:340.842000px;}
.y19a{bottom:344.899500px;}
.yf4{bottom:345.549000px;}
.ya0{bottom:348.240000px;}
.y33{bottom:348.403500px;}
.y8{bottom:350.830500px;}
.y6c{bottom:355.413000px;}
.yce{bottom:356.310000px;}
.y1cf{bottom:358.102500px;}
.y199{bottom:362.160000px;}
.y128{bottom:363.034500px;}
.y14a{bottom:363.931500px;}
.yf3{bottom:364.378500px;}
.y9f{bottom:367.069500px;}
.y32{bottom:367.233000px;}
.y6b{bottom:374.242500px;}
.ycd{bottom:375.139500px;}
.y1ce{bottom:375.363000px;}
.y7{bottom:377.685000px;}
.y198{bottom:379.420500px;}
.y127{bottom:381.864000px;}
.y149{bottom:382.761000px;}
.yf2{bottom:383.208000px;}
.y9e{bottom:385.899000px;}
.y31{bottom:390.546000px;}
.y1cd{bottom:392.623500px;}
.y6a{bottom:393.072000px;}
.ycc{bottom:393.969000px;}
.y6{bottom:395.572500px;}
.y197{bottom:396.681000px;}
.y126{bottom:400.693500px;}
.y148{bottom:401.589000px;}
.yf1{bottom:402.037500px;}
.y9d{bottom:404.728500px;}
.y1cc{bottom:409.884000px;}
.y69{bottom:411.901500px;}
.y5{bottom:413.460000px;}
.y196{bottom:413.940000px;}
.y125{bottom:419.523000px;}
.ycb{bottom:420.270000px;}
.y147{bottom:420.418500px;}
.yf0{bottom:420.867000px;}
.y9c{bottom:423.558000px;}
.y30{bottom:424.170000px;}
.y1cb{bottom:427.144500px;}
.y68{bottom:430.731000px;}
.y195{bottom:431.200500px;}
.y4{bottom:431.349000px;}
.y124{bottom:438.352500px;}
.yca{bottom:439.099500px;}
.y146{bottom:439.248000px;}
.yef{bottom:439.696500px;}
.y9b{bottom:442.387500px;}
.y1ca{bottom:444.403500px;}
.y2f{bottom:447.481500px;}
.y194{bottom:448.461000px;}
.y3{bottom:449.236500px;}
.y67{bottom:449.560500px;}
.y123{bottom:457.182000px;}
.yc9{bottom:457.929000px;}
.y145{bottom:458.077500px;}
.yee{bottom:458.526000px;}
.y99{bottom:461.217000px;}
.y1c9{bottom:461.664000px;}
.y193{bottom:465.721500px;}
.y9a{bottom:466.641000px;}
.y2{bottom:467.124000px;}
.y66{bottom:468.390000px;}
.y2e{bottom:470.794500px;}
.y122{bottom:476.011500px;}
.yc8{bottom:476.758500px;}
.y144{bottom:476.907000px;}
.yed{bottom:477.355500px;}
.y1c8{bottom:478.924500px;}
.y98{bottom:480.045000px;}
.y192{bottom:482.982000px;}
.y1{bottom:485.013000px;}
.y65{bottom:487.219500px;}
.y15b{bottom:491.701500px;}
.y2d{bottom:494.107500px;}
.y121{bottom:494.839500px;}
.yc7{bottom:495.588000px;}
.y143{bottom:495.736500px;}
.yec{bottom:496.185000px;}
.y97{bottom:498.874500px;}
.y191{bottom:500.242500px;}
.y64{bottom:506.049000px;}
.y15a{bottom:510.531000px;}
.y1c7{bottom:513.445500px;}
.y120{bottom:513.669000px;}
.yc6{bottom:514.417500px;}
.y142{bottom:514.566000px;}
.yeb{bottom:515.014500px;}
.y2c{bottom:517.420500px;}
.y190{bottom:517.503000px;}
.y96{bottom:517.704000px;}
.y63{bottom:524.877000px;}
.y159{bottom:529.360500px;}
.y1c6{bottom:530.706000px;}
.y11f{bottom:532.498500px;}
.yc5{bottom:533.247000px;}
.y141{bottom:533.395500px;}
.yea{bottom:533.844000px;}
.y18f{bottom:534.763500px;}
.y95{bottom:536.533500px;}
.y2b{bottom:540.732000px;}
.y62{bottom:543.706500px;}
.y1c5{bottom:547.966500px;}
.y158{bottom:548.190000px;}
.y11e{bottom:551.328000px;}
.y18e{bottom:552.022500px;}
.yc4{bottom:552.076500px;}
.y140{bottom:552.225000px;}
.ye9{bottom:552.673500px;}
.y94{bottom:555.363000px;}
.y61{bottom:562.536000px;}
.y1c4{bottom:565.227000px;}
.y157{bottom:567.019500px;}
.y11d{bottom:570.157500px;}
.yc3{bottom:570.906000px;}
.y13f{bottom:571.054500px;}
.ye8{bottom:571.503000px;}
.y18d{bottom:573.766500px;}
.y93{bottom:574.192500px;}
.y60{bottom:581.365500px;}
.y1c3{bottom:582.487500px;}
.y11c{bottom:588.987000px;}
.y13e{bottom:589.884000px;}
.ye7{bottom:590.332500px;}
.y92{bottom:593.022000px;}
.yc2{bottom:597.207000px;}
.y1c2{bottom:599.746500px;}
.y5f{bottom:600.195000px;}
.y2a{bottom:604.275000px;}
.y18c{bottom:607.390500px;}
.y11b{bottom:607.816500px;}
.y13d{bottom:608.713500px;}
.ye6{bottom:609.162000px;}
.y91{bottom:611.851500px;}
.yc1{bottom:616.036500px;}
.y1c1{bottom:617.007000px;}
.y5e{bottom:619.024500px;}
.y18b{bottom:624.651000px;}
.y11a{bottom:626.646000px;}
.y13c{bottom:627.543000px;}
.ye5{bottom:627.991500px;}
.y90{bottom:630.681000px;}
.y137{bottom:633.415500px;}
.y1c0{bottom:634.267500px;}
.y5d{bottom:637.854000px;}
.y29{bottom:641.664000px;}
.y18a{bottom:641.911500px;}
.yc0{bottom:642.337500px;}
.y119{bottom:645.475500px;}
.y13b{bottom:646.372500px;}
.ye4{bottom:646.821000px;}
.y8f{bottom:649.510500px;}
.y1bf{bottom:651.528000px;}
.y5c{bottom:656.683500px;}
.y189{bottom:659.172000px;}
.y28{bottom:661.122000px;}
.ybf{bottom:661.167000px;}
.y188{bottom:664.054500px;}
.y118{bottom:664.305000px;}
.y13a{bottom:665.202000px;}
.ye3{bottom:665.650500px;}
.y8e{bottom:668.340000px;}
.y1be{bottom:668.788500px;}
.y5b{bottom:675.513000px;}
.y187{bottom:679.801500px;}
.ybe{bottom:679.996500px;}
.y27{bottom:680.578500px;}
.y117{bottom:683.134500px;}
.y139{bottom:684.031500px;}
.ye2{bottom:684.480000px;}
.y1bd{bottom:686.049000px;}
.y8d{bottom:687.169500px;}
.y5a{bottom:694.342500px;}
.y186{bottom:697.062000px;}
.ybd{bottom:698.826000px;}
.y26{bottom:700.035000px;}
.y116{bottom:701.964000px;}
.ye1{bottom:703.309500px;}
.y8c{bottom:705.999000px;}
.y138{bottom:707.344500px;}
.y59{bottom:713.172000px;}
.y185{bottom:714.322500px;}
.ybc{bottom:717.655500px;}
.y25{bottom:719.493000px;}
.y1bc{bottom:720.570000px;}
.y115{bottom:720.793500px;}
.ye0{bottom:722.139000px;}
.y8b{bottom:724.828500px;}
.y184{bottom:731.583000px;}
.y58{bottom:732.001500px;}
.ybb{bottom:736.485000px;}
.y1bb{bottom:737.829000px;}
.y24{bottom:738.949500px;}
.y114{bottom:739.623000px;}
.ydf{bottom:740.968500px;}
.y89{bottom:743.658000px;}
.y183{bottom:748.843500px;}
.y8a{bottom:749.082000px;}
.y57{bottom:750.831000px;}
.y1ba{bottom:755.089500px;}
.yba{bottom:755.314500px;}
.y23{bottom:758.407500px;}
.y113{bottom:758.452500px;}
.yde{bottom:759.798000px;}
.y88{bottom:762.487500px;}
.y182{bottom:766.104000px;}
.y56{bottom:769.660500px;}
.y1b9{bottom:772.350000px;}
.y112{bottom:777.282000px;}
.y22{bottom:777.864000px;}
.yb9{bottom:778.627500px;}
.y87{bottom:781.317000px;}
.y181{bottom:783.363000px;}
.y1b8{bottom:789.610500px;}
.y55{bottom:792.973500px;}
.y111{bottom:796.111500px;}
.y21{bottom:797.320500px;}
.yb8{bottom:797.457000px;}
.y86{bottom:800.146500px;}
.y180{bottom:800.623500px;}
.y17f{bottom:805.506000px;}
.y1b7{bottom:806.871000px;}
.y54{bottom:811.803000px;}
.y110{bottom:814.941000px;}
.yb7{bottom:816.286500px;}
.y20{bottom:816.778500px;}
.y85{bottom:818.976000px;}
.y17e{bottom:821.254500px;}
.y1b6{bottom:824.131500px;}
.y53{bottom:830.632500px;}
.y10f{bottom:833.770500px;}
.yb6{bottom:835.114500px;}
.y1f{bottom:836.235000px;}
.y84{bottom:837.805500px;}
.y17d{bottom:838.515000px;}
.y1b5{bottom:841.392000px;}
.y52{bottom:849.462000px;}
.y10e{bottom:852.600000px;}
.yb5{bottom:853.944000px;}
.y1e{bottom:855.691500px;}
.y17c{bottom:855.774000px;}
.y83{bottom:856.635000px;}
.y1b4{bottom:858.652500px;}
.ydd{bottom:859.369500px;}
.y17b{bottom:860.656500px;}
.y51{bottom:868.291500px;}
.y10d{bottom:871.429500px;}
.yb4{bottom:872.773500px;}
.y1d{bottom:875.149500px;}
.y82{bottom:875.464500px;}
.y1b3{bottom:875.913000px;}
.y17a{bottom:876.324000px;}
.y50{bottom:887.121000px;}
.y10c{bottom:890.259000px;}
.yb3{bottom:891.603000px;}
.y1b2{bottom:893.172000px;}
.y179{bottom:893.584500px;}
.y81{bottom:894.294000px;}
.y1c{bottom:894.606000px;}
.y178{bottom:898.467000px;}
.y4f{bottom:905.950500px;}
.y10b{bottom:909.088500px;}
.yb2{bottom:910.432500px;}
.y80{bottom:913.123500px;}
.y177{bottom:914.214000px;}
.y4e{bottom:924.778500px;}
.y1b1{bottom:927.693000px;}
.y10a{bottom:927.918000px;}
.y1b{bottom:928.314000px;}
.yb1{bottom:929.262000px;}
.y176{bottom:931.474500px;}
.y7f{bottom:931.953000px;}
.y4d{bottom:943.608000px;}
.y1b0{bottom:944.953500px;}
.y109{bottom:946.747500px;}
.yb0{bottom:948.091500px;}
.y175{bottom:948.735000px;}
.y7e{bottom:950.782500px;}
.y174{bottom:953.617500px;}
.y1af{bottom:962.214000px;}
.y4c{bottom:962.437500px;}
.y108{bottom:965.577000px;}
.yaf{bottom:966.921000px;}
.y173{bottom:969.364500px;}
.y7d{bottom:969.612000px;}
.y1a{bottom:972.453000px;}
.y1ae{bottom:979.474500px;}
.y4b{bottom:981.267000px;}
.y107{bottom:984.406500px;}
.yae{bottom:985.750500px;}
.y172{bottom:986.625000px;}
.y171{bottom:991.507500px;}
.y7c{bottom:992.923500px;}
.y1ad{bottom:996.735000px;}
.y4a{bottom:1000.096500px;}
.y106{bottom:1003.236000px;}
.yad{bottom:1004.580000px;}
.y170{bottom:1007.256000px;}
.y7b{bottom:1008.615000px;}
.y19{bottom:1009.215000px;}
.y1ac{bottom:1013.995500px;}
.y105{bottom:1022.064000px;}
.y49{bottom:1023.409500px;}
.y16f{bottom:1024.516500px;}
.y1ab{bottom:1031.254500px;}
.y18{bottom:1037.460000px;}
.y104{bottom:1040.893500px;}
.y16e{bottom:1041.775500px;}
.y48{bottom:1042.239000px;}
.y16d{bottom:1046.658000px;}
.y1aa{bottom:1048.515000px;}
.y103{bottom:1059.723000px;}
.y47{bottom:1061.068500px;}
.y16c{bottom:1062.406500px;}
.y17{bottom:1065.703500px;}
.y1a9{bottom:1065.775500px;}
.y102{bottom:1078.552500px;}
.y16b{bottom:1079.667000px;}
.y46{bottom:1079.898000px;}
.y1a8{bottom:1083.036000px;}
.y16a{bottom:1084.548000px;}
.y16{bottom:1093.948500px;}
.y45{bottom:1098.727500px;}
.y169{bottom:1100.296500px;}
.y101{bottom:1101.865500px;}
.y44{bottom:1117.557000px;}
.y14{bottom:1137.435000px;}
.y43{bottom:1177.662000px;}
.h3{height:30.461558px;}
.h4{height:30.712615px;}
.h10{height:33.072749px;}
.hb{height:34.813397px;}
.h11{height:35.100320px;}
.h2{height:38.202476px;}
.hc{height:39.165235px;}
.hd{height:39.488026px;}
.hf{height:43.217759px;}
.he{height:43.516637px;}
.h7{height:43.875290px;}
.ha{height:44.473046px;}
.h15{height:49.117939px;}
.h5{height:50.930649px;}
.h12{height:54.575123px;}
.h14{height:54.768749px;}
.h13{height:54.774749px;}
.h8{height:77.792486px;}
.h9{height:78.115277px;}
.h6{height:81.395990px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:196.615928px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:47.973000px;}
.x3{left:49.539000px;}
.x1{left:53.574000px;}
.x2{left:58.171022px;}
.x1e{left:85.890000px;}
.xa{left:247.513500px;}
.x4{left:249.591000px;}
.x1a{left:279.750000px;}
.x5{left:281.479500px;}
.x1b{left:296.872500px;}
.xb{left:317.538000px;}
.xc{left:327.271500px;}
.xf{left:340.914000px;}
.x10{left:352.002000px;}
.x16{left:376.552500px;}
.x17{left:386.692500px;}
.x6{left:390.999000px;}
.x21{left:399.330000px;}
.x7{left:401.163000px;}
.x1f{left:413.859000px;}
.x20{left:429.270000px;}
.x18{left:535.596000px;}
.x19{left:552.718500px;}
.x14{left:570.267000px;}
.x15{left:580.437000px;}
.x11{left:617.131500px;}
.x12{left:634.255500px;}
.x8{left:679.875000px;}
.x9{left:696.999000px;}
.xd{left:704.019000px;}
.xe{left:714.544500px;}
.x1c{left:790.081500px;}
.x1d{left:806.632500px;}
.x13{left:832.771500px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.290667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000078pt;}
.ls5{letter-spacing:0.000155pt;}
.ls15{letter-spacing:0.000314pt;}
.ls28{letter-spacing:0.000375pt;}
.lsf{letter-spacing:0.000387pt;}
.ls25{letter-spacing:0.000503pt;}
.ls0{letter-spacing:0.000533pt;}
.ls7{letter-spacing:0.000662pt;}
.ls17{letter-spacing:0.000711pt;}
.ls27{letter-spacing:0.000739pt;}
.ls19{letter-spacing:0.000801pt;}
.ls20{letter-spacing:0.000921pt;}
.ls1e{letter-spacing:0.001026pt;}
.ls1d{letter-spacing:0.001067pt;}
.ls24{letter-spacing:0.001207pt;}
.ls16{letter-spacing:0.001512pt;}
.ls10{letter-spacing:0.001852pt;}
.ls11{letter-spacing:0.001939pt;}
.ls1b{letter-spacing:0.002188pt;}
.ls1f{letter-spacing:0.002262pt;}
.ls8{letter-spacing:0.002473pt;}
.ls6{letter-spacing:0.002868pt;}
.ls22{letter-spacing:0.003564pt;}
.ls4{letter-spacing:0.003637pt;}
.lsc{letter-spacing:0.003733pt;}
.ls26{letter-spacing:0.004898pt;}
.lse{letter-spacing:0.024559pt;}
.ls1{letter-spacing:10.626533pt;}
.ls21{letter-spacing:12.019429pt;}
.ls1c{letter-spacing:12.081366pt;}
.ls1a{letter-spacing:12.145300pt;}
.lsb{letter-spacing:13.230333pt;}
.ls12{letter-spacing:13.283467pt;}
.ls9{letter-spacing:13.389734pt;}
.ls3{letter-spacing:13.398157pt;}
.ls2a{letter-spacing:14.823467pt;}
.ls29{letter-spacing:14.828800pt;}
.lsd{letter-spacing:16.099562pt;}
.lsa{letter-spacing:16.258963pt;}
.ls14{letter-spacing:18.543719pt;}
.ls13{letter-spacing:18.596853pt;}
.ls23{letter-spacing:28.923231pt;}
.ws28{word-spacing:-13.283467pt;}
.wsb0{word-spacing:-11.955200pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws1{word-spacing:-9.298400pt;}
.ws3b{word-spacing:-3.134898pt;}
.wsa8{word-spacing:-2.821427pt;}
.ws46{word-spacing:-2.656693pt;}
.wsac{word-spacing:-2.541817pt;}
.wsab{word-spacing:-2.534502pt;}
.ws45{word-spacing:-2.444158pt;}
.ws5f{word-spacing:-2.391024pt;}
.ws34{word-spacing:-1.806551pt;}
.wsbc{word-spacing:-1.769370pt;}
.ws25{word-spacing:-1.753418pt;}
.ws87{word-spacing:-1.594016pt;}
.ws56{word-spacing:-1.540882pt;}
.ws47{word-spacing:-1.487748pt;}
.ws9d{word-spacing:-1.434614pt;}
.ws4b{word-spacing:-1.275213pt;}
.wsaf{word-spacing:-1.195520pt;}
.ws73{word-spacing:-1.168945pt;}
.wsb9{word-spacing:-1.147699pt;}
.ws8b{word-spacing:-1.115811pt;}
.ws92{word-spacing:-1.076496pt;}
.ws8a{word-spacing:-1.062677pt;}
.ws52{word-spacing:-1.009543pt;}
.ws81{word-spacing:-0.956410pt;}
.ws3f{word-spacing:-0.850142pt;}
.ws5a{word-spacing:-0.797008pt;}
.ws63{word-spacing:-0.743874pt;}
.ws95{word-spacing:-0.690740pt;}
.ws4{word-spacing:-0.632291pt;}
.ws4d{word-spacing:-0.584473pt;}
.ws74{word-spacing:-0.531339pt;}
.ws29{word-spacing:-0.478205pt;}
.ws84{word-spacing:-0.425071pt;}
.ws85{word-spacing:-0.371937pt;}
.wsad{word-spacing:-0.334746pt;}
.ws4c{word-spacing:-0.318803pt;}
.ws4f{word-spacing:-0.278477pt;}
.ws32{word-spacing:-0.265669pt;}
.wsa6{word-spacing:-0.239104pt;}
.ws78{word-spacing:-0.223089pt;}
.ws31{word-spacing:-0.212535pt;}
.ws8c{word-spacing:-0.204465pt;}
.wsa3{word-spacing:-0.191283pt;}
.ws22{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws27{word-spacing:-0.106268pt;}
.wsae{word-spacing:-0.095642pt;}
.wsb7{word-spacing:-0.081864pt;}
.ws10{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.wsca{word-spacing:-0.040291pt;}
.ws3{word-spacing:-0.037194pt;}
.ws7a{word-spacing:-0.013257pt;}
.wsba{word-spacing:-0.010052pt;}
.wsd4{word-spacing:-0.008815pt;}
.wsd6{word-spacing:-0.008602pt;}
.ws94{word-spacing:-0.007692pt;}
.wsd0{word-spacing:-0.006588pt;}
.wsc9{word-spacing:-0.006238pt;}
.wsd5{word-spacing:-0.004497pt;}
.wsd1{word-spacing:-0.004267pt;}
.ws2a{word-spacing:-0.003375pt;}
.wsc7{word-spacing:-0.003319pt;}
.wsc3{word-spacing:-0.003166pt;}
.ws7{word-spacing:-0.001281pt;}
.ws5{word-spacing:-0.000563pt;}
.ws2{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.015561pt;}
.wsa0{word-spacing:0.039550pt;}
.ws7d{word-spacing:0.044907pt;}
.ws1b{word-spacing:0.047821pt;}
.ws2f{word-spacing:0.053134pt;}
.wsa1{word-spacing:0.061188pt;}
.wsce{word-spacing:0.083760pt;}
.ws14{word-spacing:0.095642pt;}
.ws20{word-spacing:0.106268pt;}
.wsa7{word-spacing:0.143462pt;}
.ws21{word-spacing:0.159402pt;}
.wsa4{word-spacing:0.191283pt;}
.ws3a{word-spacing:0.212535pt;}
.wsb6{word-spacing:0.239104pt;}
.ws2c{word-spacing:0.265669pt;}
.ws1d{word-spacing:0.286925pt;}
.ws9f{word-spacing:0.310185pt;}
.ws57{word-spacing:0.318803pt;}
.ws93{word-spacing:0.371937pt;}
.ws58{word-spacing:0.425071pt;}
.ws50{word-spacing:0.478205pt;}
.ws1a{word-spacing:0.526029pt;}
.ws82{word-spacing:0.531339pt;}
.wsd2{word-spacing:0.573850pt;}
.ws2e{word-spacing:0.584473pt;}
.ws4a{word-spacing:0.637606pt;}
.wsa5{word-spacing:0.669491pt;}
.ws40{word-spacing:0.690740pt;}
.ws33{word-spacing:0.743874pt;}
.ws79{word-spacing:0.797008pt;}
.ws9e{word-spacing:0.850142pt;}
.ws2d{word-spacing:0.956410pt;}
.ws54{word-spacing:1.009543pt;}
.ws15{word-spacing:1.052058pt;}
.ws24{word-spacing:1.062677pt;}
.wscd{word-spacing:1.099878pt;}
.wscc{word-spacing:1.117093pt;}
.wscb{word-spacing:1.195520pt;}
.ws3d{word-spacing:1.222079pt;}
.wse{word-spacing:1.227389pt;}
.ws13{word-spacing:1.243341pt;}
.ws9a{word-spacing:1.275213pt;}
.ws55{word-spacing:1.328347pt;}
.ws53{word-spacing:1.381481pt;}
.ws6b{word-spacing:1.434614pt;}
.ws51{word-spacing:1.487748pt;}
.ws26{word-spacing:1.540882pt;}
.ws3e{word-spacing:1.594016pt;}
.ws64{word-spacing:1.647150pt;}
.ws86{word-spacing:1.700284pt;}
.ws76{word-spacing:1.753418pt;}
.ws3c{word-spacing:1.806551pt;}
.ws49{word-spacing:1.859685pt;}
.ws48{word-spacing:1.912819pt;}
.ws8e{word-spacing:1.951415pt;}
.ws8d{word-spacing:1.965953pt;}
.ws69{word-spacing:2.019087pt;}
.wsc4{word-spacing:2.104115pt;}
.wsbe{word-spacing:2.151936pt;}
.ws23{word-spacing:2.178489pt;}
.ws68{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws6{word-spacing:2.234396pt;}
.ws5b{word-spacing:2.284756pt;}
.ws7b{word-spacing:2.337890pt;}
.ws88{word-spacing:2.391024pt;}
.ws77{word-spacing:2.444158pt;}
.wsbd{word-spacing:2.486682pt;}
.ws8f{word-spacing:2.497292pt;}
.ws70{word-spacing:2.603559pt;}
.ws60{word-spacing:2.656693pt;}
.wsb8{word-spacing:2.677965pt;}
.ws97{word-spacing:2.709827pt;}
.ws39{word-spacing:2.762961pt;}
.ws89{word-spacing:2.848828pt;}
.ws1e{word-spacing:2.861926pt;}
.wsa2{word-spacing:2.866509pt;}
.wsc6{word-spacing:2.866825pt;}
.ws71{word-spacing:2.869229pt;}
.wsbb{word-spacing:2.869248pt;}
.ws5d{word-spacing:2.975497pt;}
.ws36{word-spacing:3.028630pt;}
.wsc2{word-spacing:3.060531pt;}
.ws37{word-spacing:3.081764pt;}
.wsd7{word-spacing:3.108352pt;}
.ws6f{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws83{word-spacing:3.241166pt;}
.wscf{word-spacing:3.251814pt;}
.ws99{word-spacing:3.294300pt;}
.ws30{word-spacing:3.347434pt;}
.ws38{word-spacing:3.400567pt;}
.ws75{word-spacing:3.453701pt;}
.ws5e{word-spacing:3.506835pt;}
.ws80{word-spacing:3.559969pt;}
.ws19{word-spacing:3.634381pt;}
.ws6a{word-spacing:3.666237pt;}
.ws6d{word-spacing:3.719371pt;}
.ws5c{word-spacing:3.772505pt;}
.ws98{word-spacing:3.825638pt;}
.wsa9{word-spacing:3.825664pt;}
.wsaa{word-spacing:4.064768pt;}
.ws7f{word-spacing:4.144442pt;}
.ws7e{word-spacing:4.156683pt;}
.wsd3{word-spacing:4.160410pt;}
.ws16{word-spacing:4.303872pt;}
.ws91{word-spacing:4.356977pt;}
.ws67{word-spacing:4.410111pt;}
.ws9c{word-spacing:4.516379pt;}
.wsbf{word-spacing:4.542976pt;}
.wsc0{word-spacing:4.556129pt;}
.wsc1{word-spacing:4.563924pt;}
.ws66{word-spacing:4.569513pt;}
.ws9b{word-spacing:4.728914pt;}
.wsc5{word-spacing:4.734259pt;}
.ws90{word-spacing:4.782048pt;}
.wsb1{word-spacing:4.829901pt;}
.ws59{word-spacing:4.835182pt;}
.wsc{word-spacing:4.872362pt;}
.wsb2{word-spacing:4.877722pt;}
.ws35{word-spacing:4.888316pt;}
.ws12{word-spacing:4.925542pt;}
.wsc8{word-spacing:4.973363pt;}
.ws72{word-spacing:5.260253pt;}
.ws41{word-spacing:5.313387pt;}
.wsb3{word-spacing:5.451571pt;}
.wsb4{word-spacing:5.499392pt;}
.ws44{word-spacing:5.579056pt;}
.ws42{word-spacing:5.685324pt;}
.ws65{word-spacing:5.897859pt;}
.ws62{word-spacing:6.057261pt;}
.ws4e{word-spacing:6.163529pt;}
.ws6e{word-spacing:6.269796pt;}
.ws7c{word-spacing:6.694867pt;}
.ws18{word-spacing:6.742733pt;}
.wsb5{word-spacing:6.886195pt;}
.ws61{word-spacing:7.332474pt;}
.ws43{word-spacing:7.385607pt;}
.wsb{word-spacing:10.525789pt;}
.ws96{word-spacing:11.104978pt;}
.wsa{word-spacing:11.827565pt;}
.ws11{word-spacing:12.908268pt;}
.ws8{word-spacing:13.761632pt;}
.wsd{word-spacing:20.196125pt;}
.wsf{word-spacing:23.814758pt;}
.ws9{word-spacing:26.011518pt;}
._8{margin-left:-10.616218pt;}
._6{margin-left:-7.077478pt;}
._b{margin-left:-6.168883pt;}
._4{margin-left:-4.872362pt;}
._1{margin-left:-3.384618pt;}
._3{margin-left:-2.008454pt;}
._2{margin-left:-1.115808pt;}
._1b{width:0.898821pt;}
._1d{width:2.582323pt;}
._15{width:3.878772pt;}
._0{width:11.530016pt;}
._f{width:13.175632pt;}
._9{width:14.484342pt;}
._e{width:15.780758pt;}
._c{width:16.896563pt;}
._12{width:18.484435pt;}
._d{width:19.978334pt;}
._16{width:21.359814pt;}
._5{width:22.502128pt;}
._17{width:23.580801pt;}
._1c{width:24.564070pt;}
._13{width:26.404571pt;}
._14{width:27.528698pt;}
._19{width:28.532886pt;}
._7{width:29.648896pt;}
._a{width:35.089789pt;}
._18{width:37.299974pt;}
._10{width:784.980462pt;}
._1a{width:2204.909333pt;}
._11{width:2226.162667pt;}
.fs0{font-size:37.193600pt;}
.fs6{font-size:40.381867pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:106.713852pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:13.783507pt;}
.y42{bottom:28.346667pt;}
.y41{bottom:92.108000pt;}
.y13{bottom:93.018667pt;}
.y136{bottom:97.142667pt;}
.y168{bottom:97.312000pt;}
.y7a{bottom:98.337333pt;}
.ydc{bottom:99.134667pt;}
.yac{bottom:100.729333pt;}
.y156{bottom:105.378667pt;}
.y100{bottom:106.308000pt;}
.y1a7{bottom:107.124000pt;}
.y40{bottom:108.844000pt;}
.y12{bottom:108.920000pt;}
.y167{bottom:112.654667pt;}
.y135{bottom:113.880000pt;}
.y78{bottom:115.074667pt;}
.ydb{bottom:115.872000pt;}
.yab{bottom:117.466667pt;}
.y79{bottom:119.897333pt;}
.y155{bottom:122.116000pt;}
.y1a6{bottom:122.466667pt;}
.yff{bottom:123.045333pt;}
.y11{bottom:124.820000pt;}
.y3f{bottom:125.581333pt;}
.y166{bottom:127.997333pt;}
.y133{bottom:130.617333pt;}
.y77{bottom:131.812000pt;}
.yd9{bottom:132.609333pt;}
.y134{bottom:135.438667pt;}
.yda{bottom:137.430667pt;}
.y1a5{bottom:137.809333pt;}
.yaa{bottom:138.188000pt;}
.y154{bottom:138.852000pt;}
.yfe{bottom:139.782667pt;}
.y10{bottom:140.720000pt;}
.y3e{bottom:142.318667pt;}
.y165{bottom:143.340000pt;}
.y132{bottom:147.354667pt;}
.y164{bottom:147.680000pt;}
.y76{bottom:148.549333pt;}
.yd8{bottom:149.346667pt;}
.y1a4{bottom:153.152000pt;}
.ya9{bottom:154.925333pt;}
.y153{bottom:155.589333pt;}
.yfd{bottom:156.520000pt;}
.yf{bottom:156.621333pt;}
.y3d{bottom:159.056000pt;}
.y163{bottom:161.677333pt;}
.y131{bottom:164.092000pt;}
.y75{bottom:165.286667pt;}
.y162{bottom:166.017333pt;}
.yd7{bottom:166.084000pt;}
.y1a3{bottom:168.494667pt;}
.ya8{bottom:171.662667pt;}
.y152{bottom:172.326667pt;}
.ye{bottom:172.521333pt;}
.yfc{bottom:173.257333pt;}
.y3c{bottom:175.793333pt;}
.y1d6{bottom:176.180000pt;}
.y130{bottom:180.828000pt;}
.y74{bottom:182.024000pt;}
.yd6{bottom:182.821333pt;}
.y1a2{bottom:183.837333pt;}
.y161{bottom:184.813333pt;}
.ya7{bottom:188.400000pt;}
.yd{bottom:188.421333pt;}
.yfb{bottom:189.994667pt;}
.y1d5{bottom:191.521333pt;}
.y3b{bottom:192.530667pt;}
.y151{bottom:195.706667pt;}
.y73{bottom:198.761333pt;}
.y1a1{bottom:199.180000pt;}
.yd5{bottom:199.558667pt;}
.y12f{bottom:201.550667pt;}
.yc{bottom:204.322667pt;}
.ya6{bottom:205.137333pt;}
.yfa{bottom:206.732000pt;}
.y1d4{bottom:206.864000pt;}
.y3a{bottom:209.268000pt;}
.y1a0{bottom:214.522667pt;}
.y160{bottom:214.701333pt;}
.y72{bottom:215.498667pt;}
.yd4{bottom:216.296000pt;}
.y12e{bottom:218.288000pt;}
.y150{bottom:219.085333pt;}
.ya5{bottom:221.874667pt;}
.yf9{bottom:223.469333pt;}
.y39{bottom:226.005333pt;}
.y19f{bottom:229.864000pt;}
.y71{bottom:232.236000pt;}
.yd3{bottom:233.033333pt;}
.y12d{bottom:235.025333pt;}
.y14f{bottom:235.822667pt;}
.y15f{bottom:238.293333pt;}
.ya4{bottom:238.612000pt;}
.yf8{bottom:240.206667pt;}
.y1d3{bottom:241.601333pt;}
.y38{bottom:242.742667pt;}
.y19e{bottom:245.206667pt;}
.y70{bottom:248.973333pt;}
.yd2{bottom:249.770667pt;}
.y12c{bottom:251.762667pt;}
.y14e{bottom:252.560000pt;}
.y15e{bottom:253.914667pt;}
.ya3{bottom:255.349333pt;}
.yf7{bottom:256.944000pt;}
.y37{bottom:259.480000pt;}
.y19d{bottom:260.549333pt;}
.yb{bottom:264.148000pt;}
.y6f{bottom:265.710667pt;}
.yd1{bottom:266.508000pt;}
.y12b{bottom:268.500000pt;}
.y14d{bottom:269.297333pt;}
.ya2{bottom:272.086667pt;}
.y1d2{bottom:272.285333pt;}
.yf6{bottom:273.681333pt;}
.y19c{bottom:275.892000pt;}
.y35{bottom:276.217333pt;}
.y15d{bottom:277.506667pt;}
.ya{bottom:280.048000pt;}
.y36{bottom:281.040000pt;}
.y6e{bottom:282.448000pt;}
.yd0{bottom:283.245333pt;}
.y12a{bottom:285.237333pt;}
.y14c{bottom:286.034667pt;}
.y1d1{bottom:287.628000pt;}
.yf5{bottom:290.417333pt;}
.y19b{bottom:291.234667pt;}
.ya1{bottom:292.809333pt;}
.y34{bottom:292.954667pt;}
.y9{bottom:295.949333pt;}
.y6d{bottom:299.185333pt;}
.ycf{bottom:299.982667pt;}
.y15c{bottom:301.098667pt;}
.y129{bottom:301.974667pt;}
.y14b{bottom:302.772000pt;}
.y1d0{bottom:302.970667pt;}
.y19a{bottom:306.577333pt;}
.yf4{bottom:307.154667pt;}
.ya0{bottom:309.546667pt;}
.y33{bottom:309.692000pt;}
.y8{bottom:311.849333pt;}
.y6c{bottom:315.922667pt;}
.yce{bottom:316.720000pt;}
.y1cf{bottom:318.313333pt;}
.y199{bottom:321.920000pt;}
.y128{bottom:322.697333pt;}
.y14a{bottom:323.494667pt;}
.yf3{bottom:323.892000pt;}
.y9f{bottom:326.284000pt;}
.y32{bottom:326.429333pt;}
.y6b{bottom:332.660000pt;}
.ycd{bottom:333.457333pt;}
.y1ce{bottom:333.656000pt;}
.y7{bottom:335.720000pt;}
.y198{bottom:337.262667pt;}
.y127{bottom:339.434667pt;}
.y149{bottom:340.232000pt;}
.yf2{bottom:340.629333pt;}
.y9e{bottom:343.021333pt;}
.y31{bottom:347.152000pt;}
.y1cd{bottom:348.998667pt;}
.y6a{bottom:349.397333pt;}
.ycc{bottom:350.194667pt;}
.y6{bottom:351.620000pt;}
.y197{bottom:352.605333pt;}
.y126{bottom:356.172000pt;}
.y148{bottom:356.968000pt;}
.yf1{bottom:357.366667pt;}
.y9d{bottom:359.758667pt;}
.y1cc{bottom:364.341333pt;}
.y69{bottom:366.134667pt;}
.y5{bottom:367.520000pt;}
.y196{bottom:367.946667pt;}
.y125{bottom:372.909333pt;}
.ycb{bottom:373.573333pt;}
.y147{bottom:373.705333pt;}
.yf0{bottom:374.104000pt;}
.y9c{bottom:376.496000pt;}
.y30{bottom:377.040000pt;}
.y1cb{bottom:379.684000pt;}
.y68{bottom:382.872000pt;}
.y195{bottom:383.289333pt;}
.y4{bottom:383.421333pt;}
.y124{bottom:389.646667pt;}
.yca{bottom:390.310667pt;}
.y146{bottom:390.442667pt;}
.yef{bottom:390.841333pt;}
.y9b{bottom:393.233333pt;}
.y1ca{bottom:395.025333pt;}
.y2f{bottom:397.761333pt;}
.y194{bottom:398.632000pt;}
.y3{bottom:399.321333pt;}
.y67{bottom:399.609333pt;}
.y123{bottom:406.384000pt;}
.yc9{bottom:407.048000pt;}
.y145{bottom:407.180000pt;}
.yee{bottom:407.578667pt;}
.y99{bottom:409.970667pt;}
.y1c9{bottom:410.368000pt;}
.y193{bottom:413.974667pt;}
.y9a{bottom:414.792000pt;}
.y2{bottom:415.221333pt;}
.y66{bottom:416.346667pt;}
.y2e{bottom:418.484000pt;}
.y122{bottom:423.121333pt;}
.yc8{bottom:423.785333pt;}
.y144{bottom:423.917333pt;}
.yed{bottom:424.316000pt;}
.y1c8{bottom:425.710667pt;}
.y98{bottom:426.706667pt;}
.y192{bottom:429.317333pt;}
.y1{bottom:431.122667pt;}
.y65{bottom:433.084000pt;}
.y15b{bottom:437.068000pt;}
.y2d{bottom:439.206667pt;}
.y121{bottom:439.857333pt;}
.yc7{bottom:440.522667pt;}
.y143{bottom:440.654667pt;}
.yec{bottom:441.053333pt;}
.y97{bottom:443.444000pt;}
.y191{bottom:444.660000pt;}
.y64{bottom:449.821333pt;}
.y15a{bottom:453.805333pt;}
.y1c7{bottom:456.396000pt;}
.y120{bottom:456.594667pt;}
.yc6{bottom:457.260000pt;}
.y142{bottom:457.392000pt;}
.yeb{bottom:457.790667pt;}
.y2c{bottom:459.929333pt;}
.y190{bottom:460.002667pt;}
.y96{bottom:460.181333pt;}
.y63{bottom:466.557333pt;}
.y159{bottom:470.542667pt;}
.y1c6{bottom:471.738667pt;}
.y11f{bottom:473.332000pt;}
.yc5{bottom:473.997333pt;}
.y141{bottom:474.129333pt;}
.yea{bottom:474.528000pt;}
.y18f{bottom:475.345333pt;}
.y95{bottom:476.918667pt;}
.y2b{bottom:480.650667pt;}
.y62{bottom:483.294667pt;}
.y1c5{bottom:487.081333pt;}
.y158{bottom:487.280000pt;}
.y11e{bottom:490.069333pt;}
.y18e{bottom:490.686667pt;}
.yc4{bottom:490.734667pt;}
.y140{bottom:490.866667pt;}
.ye9{bottom:491.265333pt;}
.y94{bottom:493.656000pt;}
.y61{bottom:500.032000pt;}
.y1c4{bottom:502.424000pt;}
.y157{bottom:504.017333pt;}
.y11d{bottom:506.806667pt;}
.yc3{bottom:507.472000pt;}
.y13f{bottom:507.604000pt;}
.ye8{bottom:508.002667pt;}
.y18d{bottom:510.014667pt;}
.y93{bottom:510.393333pt;}
.y60{bottom:516.769333pt;}
.y1c3{bottom:517.766667pt;}
.y11c{bottom:523.544000pt;}
.y13e{bottom:524.341333pt;}
.ye7{bottom:524.740000pt;}
.y92{bottom:527.130667pt;}
.yc2{bottom:530.850667pt;}
.y1c2{bottom:533.108000pt;}
.y5f{bottom:533.506667pt;}
.y2a{bottom:537.133333pt;}
.y18c{bottom:539.902667pt;}
.y11b{bottom:540.281333pt;}
.y13d{bottom:541.078667pt;}
.ye6{bottom:541.477333pt;}
.y91{bottom:543.868000pt;}
.yc1{bottom:547.588000pt;}
.y1c1{bottom:548.450667pt;}
.y5e{bottom:550.244000pt;}
.y18b{bottom:555.245333pt;}
.y11a{bottom:557.018667pt;}
.y13c{bottom:557.816000pt;}
.ye5{bottom:558.214667pt;}
.y90{bottom:560.605333pt;}
.y137{bottom:563.036000pt;}
.y1c0{bottom:563.793333pt;}
.y5d{bottom:566.981333pt;}
.y29{bottom:570.368000pt;}
.y18a{bottom:570.588000pt;}
.yc0{bottom:570.966667pt;}
.y119{bottom:573.756000pt;}
.y13b{bottom:574.553333pt;}
.ye4{bottom:574.952000pt;}
.y8f{bottom:577.342667pt;}
.y1bf{bottom:579.136000pt;}
.y5c{bottom:583.718667pt;}
.y189{bottom:585.930667pt;}
.y28{bottom:587.664000pt;}
.ybf{bottom:587.704000pt;}
.y188{bottom:590.270667pt;}
.y118{bottom:590.493333pt;}
.y13a{bottom:591.290667pt;}
.ye3{bottom:591.689333pt;}
.y8e{bottom:594.080000pt;}
.y1be{bottom:594.478667pt;}
.y5b{bottom:600.456000pt;}
.y187{bottom:604.268000pt;}
.ybe{bottom:604.441333pt;}
.y27{bottom:604.958667pt;}
.y117{bottom:607.230667pt;}
.y139{bottom:608.028000pt;}
.ye2{bottom:608.426667pt;}
.y1bd{bottom:609.821333pt;}
.y8d{bottom:610.817333pt;}
.y5a{bottom:617.193333pt;}
.y186{bottom:619.610667pt;}
.ybd{bottom:621.178667pt;}
.y26{bottom:622.253333pt;}
.y116{bottom:623.968000pt;}
.ye1{bottom:625.164000pt;}
.y8c{bottom:627.554667pt;}
.y138{bottom:628.750667pt;}
.y59{bottom:633.930667pt;}
.y185{bottom:634.953333pt;}
.ybc{bottom:637.916000pt;}
.y25{bottom:639.549333pt;}
.y1bc{bottom:640.506667pt;}
.y115{bottom:640.705333pt;}
.ye0{bottom:641.901333pt;}
.y8b{bottom:644.292000pt;}
.y184{bottom:650.296000pt;}
.y58{bottom:650.668000pt;}
.ybb{bottom:654.653333pt;}
.y1bb{bottom:655.848000pt;}
.y24{bottom:656.844000pt;}
.y114{bottom:657.442667pt;}
.ydf{bottom:658.638667pt;}
.y89{bottom:661.029333pt;}
.y183{bottom:665.638667pt;}
.y8a{bottom:665.850667pt;}
.y57{bottom:667.405333pt;}
.y1ba{bottom:671.190667pt;}
.yba{bottom:671.390667pt;}
.y23{bottom:674.140000pt;}
.y113{bottom:674.180000pt;}
.yde{bottom:675.376000pt;}
.y88{bottom:677.766667pt;}
.y182{bottom:680.981333pt;}
.y56{bottom:684.142667pt;}
.y1b9{bottom:686.533333pt;}
.y112{bottom:690.917333pt;}
.y22{bottom:691.434667pt;}
.yb9{bottom:692.113333pt;}
.y87{bottom:694.504000pt;}
.y181{bottom:696.322667pt;}
.y1b8{bottom:701.876000pt;}
.y55{bottom:704.865333pt;}
.y111{bottom:707.654667pt;}
.y21{bottom:708.729333pt;}
.yb8{bottom:708.850667pt;}
.y86{bottom:711.241333pt;}
.y180{bottom:711.665333pt;}
.y17f{bottom:716.005333pt;}
.y1b7{bottom:717.218667pt;}
.y54{bottom:721.602667pt;}
.y110{bottom:724.392000pt;}
.yb7{bottom:725.588000pt;}
.y20{bottom:726.025333pt;}
.y85{bottom:727.978667pt;}
.y17e{bottom:730.004000pt;}
.y1b6{bottom:732.561333pt;}
.y53{bottom:738.340000pt;}
.y10f{bottom:741.129333pt;}
.yb6{bottom:742.324000pt;}
.y1f{bottom:743.320000pt;}
.y84{bottom:744.716000pt;}
.y17d{bottom:745.346667pt;}
.y1b5{bottom:747.904000pt;}
.y52{bottom:755.077333pt;}
.y10e{bottom:757.866667pt;}
.yb5{bottom:759.061333pt;}
.y1e{bottom:760.614667pt;}
.y17c{bottom:760.688000pt;}
.y83{bottom:761.453333pt;}
.y1b4{bottom:763.246667pt;}
.ydd{bottom:763.884000pt;}
.y17b{bottom:765.028000pt;}
.y51{bottom:771.814667pt;}
.y10d{bottom:774.604000pt;}
.yb4{bottom:775.798667pt;}
.y1d{bottom:777.910667pt;}
.y82{bottom:778.190667pt;}
.y1b3{bottom:778.589333pt;}
.y17a{bottom:778.954667pt;}
.y50{bottom:788.552000pt;}
.y10c{bottom:791.341333pt;}
.yb3{bottom:792.536000pt;}
.y1b2{bottom:793.930667pt;}
.y179{bottom:794.297333pt;}
.y81{bottom:794.928000pt;}
.y1c{bottom:795.205333pt;}
.y178{bottom:798.637333pt;}
.y4f{bottom:805.289333pt;}
.y10b{bottom:808.078667pt;}
.yb2{bottom:809.273333pt;}
.y80{bottom:811.665333pt;}
.y177{bottom:812.634667pt;}
.y4e{bottom:822.025333pt;}
.y1b1{bottom:824.616000pt;}
.y10a{bottom:824.816000pt;}
.y1b{bottom:825.168000pt;}
.yb1{bottom:826.010667pt;}
.y176{bottom:827.977333pt;}
.y7f{bottom:828.402667pt;}
.y4d{bottom:838.762667pt;}
.y1b0{bottom:839.958667pt;}
.y109{bottom:841.553333pt;}
.yb0{bottom:842.748000pt;}
.y175{bottom:843.320000pt;}
.y7e{bottom:845.140000pt;}
.y174{bottom:847.660000pt;}
.y1af{bottom:855.301333pt;}
.y4c{bottom:855.500000pt;}
.y108{bottom:858.290667pt;}
.yaf{bottom:859.485333pt;}
.y173{bottom:861.657333pt;}
.y7d{bottom:861.877333pt;}
.y1a{bottom:864.402667pt;}
.y1ae{bottom:870.644000pt;}
.y4b{bottom:872.237333pt;}
.y107{bottom:875.028000pt;}
.yae{bottom:876.222667pt;}
.y172{bottom:877.000000pt;}
.y171{bottom:881.340000pt;}
.y7c{bottom:882.598667pt;}
.y1ad{bottom:885.986667pt;}
.y4a{bottom:888.974667pt;}
.y106{bottom:891.765333pt;}
.yad{bottom:892.960000pt;}
.y170{bottom:895.338667pt;}
.y7b{bottom:896.546667pt;}
.y19{bottom:897.080000pt;}
.y1ac{bottom:901.329333pt;}
.y105{bottom:908.501333pt;}
.y49{bottom:909.697333pt;}
.y16f{bottom:910.681333pt;}
.y1ab{bottom:916.670667pt;}
.y18{bottom:922.186667pt;}
.y104{bottom:925.238667pt;}
.y16e{bottom:926.022667pt;}
.y48{bottom:926.434667pt;}
.y16d{bottom:930.362667pt;}
.y1aa{bottom:932.013333pt;}
.y103{bottom:941.976000pt;}
.y47{bottom:943.172000pt;}
.y16c{bottom:944.361333pt;}
.y17{bottom:947.292000pt;}
.y1a9{bottom:947.356000pt;}
.y102{bottom:958.713333pt;}
.y16b{bottom:959.704000pt;}
.y46{bottom:959.909333pt;}
.y1a8{bottom:962.698667pt;}
.y16a{bottom:964.042667pt;}
.y16{bottom:972.398667pt;}
.y45{bottom:976.646667pt;}
.y169{bottom:978.041333pt;}
.y101{bottom:979.436000pt;}
.y44{bottom:993.384000pt;}
.y14{bottom:1011.053333pt;}
.y43{bottom:1046.810667pt;}
.h3{height:27.076941pt;}
.h4{height:27.300102pt;}
.h10{height:29.397999pt;}
.hb{height:30.945242pt;}
.h11{height:31.200285pt;}
.h2{height:33.957757pt;}
.hc{height:34.813542pt;}
.hd{height:35.100467pt;}
.hf{height:38.415786pt;}
.he{height:38.681455pt;}
.h7{height:39.000258pt;}
.ha{height:39.531597pt;}
.h15{height:43.660390pt;}
.h5{height:45.271688pt;}
.h12{height:48.511220pt;}
.h14{height:48.683332pt;}
.h13{height:48.688666pt;}
.h8{height:69.148877pt;}
.h9{height:69.435802pt;}
.h6{height:72.351992pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:174.769714pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:42.642667pt;}
.x3{left:44.034667pt;}
.x1{left:47.621333pt;}
.x2{left:51.707575pt;}
.x1e{left:76.346667pt;}
.xa{left:220.012000pt;}
.x4{left:221.858667pt;}
.x1a{left:248.666667pt;}
.x5{left:250.204000pt;}
.x1b{left:263.886667pt;}
.xb{left:282.256000pt;}
.xc{left:290.908000pt;}
.xf{left:303.034667pt;}
.x10{left:312.890667pt;}
.x16{left:334.713333pt;}
.x17{left:343.726667pt;}
.x6{left:347.554667pt;}
.x21{left:354.960000pt;}
.x7{left:356.589333pt;}
.x1f{left:367.874667pt;}
.x20{left:381.573333pt;}
.x18{left:476.085333pt;}
.x19{left:491.305333pt;}
.x14{left:506.904000pt;}
.x15{left:515.944000pt;}
.x11{left:548.561333pt;}
.x12{left:563.782667pt;}
.x8{left:604.333333pt;}
.x9{left:619.554667pt;}
.xd{left:625.794667pt;}
.xe{left:635.150667pt;}
.x1c{left:702.294667pt;}
.x1d{left:717.006667pt;}
.x13{left:740.241333pt;}
}




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