
    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_72c3b671227f7f7e254ae226.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_12e9cd8691822e9be3b46ba3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b52d53b9456e18d44b94c635.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_29d09b95e69422a10d00a954.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_a4db8008c1bb65b05acd8e8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_c626ee44bc65dca925466300.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70f8fcc6a722648cab4b5c1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_c7df9e5e6fb35c36160c0d96.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.161000;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_cefcd2f869ee64fe056c53bc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5c75d331f43808d8acd85941.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.143000;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_74d03e4af0499a31e81aed15.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.159000;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_b58d5c1dd28247e97121c27b.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_e66b0cd8d2253ac7b5cca507.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.159000;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_d23aa50fa1f1a9c6ce6c6722.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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;}
.me{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);}
.m5{transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.ma{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);}
.m23{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);}
.m2c{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);}
.m13{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);}
.m17{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);}
.mf{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);}
.m2a{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);}
.m29{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);}
.m21{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m20{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);}
.m22{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);}
.m2b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m12{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);}
.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);}
.md{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);}
.m3{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m1d{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);}
.m9{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);}
.mc{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);}
.m16{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);}
.m25{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);}
.m4{transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253011,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m19{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);}
.m11{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);}
.m1c{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-13.502796px;}
.ls1{letter-spacing:-0.000191px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.484164px;}
.ls5{letter-spacing:20.164357px;}
.ls4{letter-spacing:21.548468px;}
.ls6{letter-spacing:26.851481px;}
.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;}
}
.wsb2{word-spacing:-37.636395px;}
.ws17{word-spacing:-31.831093px;}
.ws36{word-spacing:-30.551309px;}
.wsa{word-spacing:-29.889000px;}
.ws91{word-spacing:-29.887800px;}
.ws19{word-spacing:-27.645764px;}
.ws4d{word-spacing:-26.234381px;}
.ws0{word-spacing:-26.234052px;}
.ws87{word-spacing:-15.422105px;}
.ws6e{word-spacing:-15.063451px;}
.ws46{word-spacing:-15.003676px;}
.ws1c{word-spacing:-14.681018px;}
.ws70{word-spacing:-14.585246px;}
.wsbd{word-spacing:-14.465695px;}
.ws2{word-spacing:-14.080963px;}
.ws3{word-spacing:-14.077085px;}
.ws8e{word-spacing:-14.047266px;}
.wsbf{word-spacing:-13.867939px;}
.ws40{word-spacing:-13.569061px;}
.ws76{word-spacing:-13.509286px;}
.ws72{word-spacing:-13.449510px;}
.ws92{word-spacing:-13.210408px;}
.wsac{word-spacing:-12.851754px;}
.ws4f{word-spacing:-12.567283px;}
.ws54{word-spacing:-12.493100px;}
.wsc1{word-spacing:-12.433325px;}
.ws4b{word-spacing:-12.313774px;}
.wsbc{word-spacing:-11.835569px;}
.ws7c{word-spacing:-11.716018px;}
.ws88{word-spacing:-11.656242px;}
.ws4c{word-spacing:-11.118262px;}
.ws50{word-spacing:-11.058486px;}
.ws89{word-spacing:-10.998710px;}
.wsaa{word-spacing:-10.938935px;}
.ws93{word-spacing:-10.879159px;}
.ws55{word-spacing:-10.830127px;}
.ws56{word-spacing:-10.819384px;}
.ws75{word-spacing:-10.759608px;}
.ws5{word-spacing:-10.759500px;}
.ws4{word-spacing:-10.755000px;}
.wsbe{word-spacing:-10.699832px;}
.wsd9{word-spacing:-10.643394px;}
.ws5a{word-spacing:-10.640057px;}
.ws59{word-spacing:-10.580281px;}
.wsb1{word-spacing:-10.520506px;}
.ws7d{word-spacing:-10.460730px;}
.ws98{word-spacing:-10.400954px;}
.ws2a{word-spacing:-10.341179px;}
.wsaf{word-spacing:-10.340675px;}
.ws62{word-spacing:-10.293195px;}
.ws3d{word-spacing:-10.281403px;}
.ws61{word-spacing:-10.274967px;}
.ws2c{word-spacing:-10.221628px;}
.ws20{word-spacing:-10.215108px;}
.wsa6{word-spacing:-10.196021px;}
.ws8b{word-spacing:-10.179247px;}
.ws32{word-spacing:-10.161852px;}
.ws31{word-spacing:-10.102076px;}
.ws5d{word-spacing:-10.099909px;}
.ws6f{word-spacing:-10.086554px;}
.wsca{word-spacing:-10.061553px;}
.ws34{word-spacing:-10.042301px;}
.ws7b{word-spacing:-10.021099px;}
.ws6{word-spacing:-9.992143px;}
.ws9{word-spacing:-9.985328px;}
.ws30{word-spacing:-9.982525px;}
.ws2e{word-spacing:-9.978143px;}
.ws3e{word-spacing:-9.922750px;}
.ws4a{word-spacing:-9.862974px;}
.ws45{word-spacing:-9.803198px;}
.ws41{word-spacing:-9.744280px;}
.ws43{word-spacing:-9.743423px;}
.ws8f{word-spacing:-9.696743px;}
.ws3b{word-spacing:-9.683647px;}
.wsa4{word-spacing:-9.658066px;}
.ws49{word-spacing:-9.623872px;}
.ws1f{word-spacing:-9.576235px;}
.wsae{word-spacing:-9.570074px;}
.ws2d{word-spacing:-9.564096px;}
.ws2b{word-spacing:-9.510298px;}
.ws33{word-spacing:-9.504320px;}
.ws18{word-spacing:-9.455417px;}
.wsd6{word-spacing:-9.450522px;}
.ws1a{word-spacing:-9.410417px;}
.ws9a{word-spacing:-9.390747px;}
.wsd3{word-spacing:-9.330971px;}
.wsb6{word-spacing:-9.324994px;}
.wsc9{word-spacing:-9.271196px;}
.wsdb{word-spacing:-9.265218px;}
.ws1d{word-spacing:-9.261986px;}
.ws21{word-spacing:-9.247529px;}
.ws16{word-spacing:-9.240038px;}
.ws7{word-spacing:-9.221292px;}
.ws8{word-spacing:-9.210416px;}
.wsad{word-spacing:-9.200563px;}
.ws23{word-spacing:-9.185470px;}
.wsa9{word-spacing:-9.151644px;}
.ws79{word-spacing:-9.145667px;}
.wsc{word-spacing:-9.096302px;}
.ws7e{word-spacing:-9.032093px;}
.ws77{word-spacing:-9.028997px;}
.wsb8{word-spacing:-9.026116px;}
.ws7f{word-spacing:-8.972318px;}
.ws3f{word-spacing:-8.966340px;}
.ws6d{word-spacing:-8.906564px;}
.ws90{word-spacing:-8.852766px;}
.ws80{word-spacing:-8.840679px;}
.wsc8{word-spacing:-8.792991px;}
.ws52{word-spacing:-8.787013px;}
.wsb7{word-spacing:-8.727238px;}
.ws99{word-spacing:-8.667462px;}
.ws9f{word-spacing:-8.631579px;}
.wsa1{word-spacing:-8.607686px;}
.wsc3{word-spacing:-8.547911px;}
.ws1{word-spacing:-8.480448px;}
.ws26{word-spacing:-8.478592px;}
.ws24{word-spacing:-8.478420px;}
.ws35{word-spacing:-8.428360px;}
.ws97{word-spacing:-8.368584px;}
.wsb5{word-spacing:-8.249033px;}
.wsa3{word-spacing:-8.189257px;}
.wscc{word-spacing:-8.162846px;}
.ws95{word-spacing:-8.129482px;}
.ws74{word-spacing:-8.069706px;}
.wsb0{word-spacing:-8.024698px;}
.wsa0{word-spacing:-8.015908px;}
.wsf{word-spacing:-8.013656px;}
.ws51{word-spacing:-7.942251px;}
.ws37{word-spacing:-7.890379px;}
.ws4e{word-spacing:-7.871271px;}
.ws66{word-spacing:-7.830604px;}
.ws8a{word-spacing:-7.770828px;}
.ws94{word-spacing:-7.764700px;}
.ws6b{word-spacing:-7.651277px;}
.ws2f{word-spacing:-7.612087px;}
.ws7a{word-spacing:-7.471950px;}
.ws69{word-spacing:-7.436833px;}
.ws63{word-spacing:-7.392701px;}
.ws8d{word-spacing:-7.298829px;}
.wscd{word-spacing:-7.232848px;}
.ws5e{word-spacing:-7.187864px;}
.ws6c{word-spacing:-7.173072px;}
.ws3c{word-spacing:-7.128784px;}
.ws38{word-spacing:-7.109598px;}
.ws15{word-spacing:-7.101117px;}
.ws10{word-spacing:-7.100900px;}
.wse{word-spacing:-7.098367px;}
.wsd5{word-spacing:-7.053521px;}
.wsd{word-spacing:-7.050858px;}
.ws57{word-spacing:-7.001797px;}
.ws67{word-spacing:-6.993745px;}
.ws53{word-spacing:-6.933970px;}
.ws96{word-spacing:-6.814418px;}
.ws42{word-spacing:-6.741382px;}
.ws60{word-spacing:-6.733133px;}
.ws3a{word-spacing:-6.682390px;}
.wsb3{word-spacing:-6.515540px;}
.ws68{word-spacing:-6.461742px;}
.ws73{word-spacing:-6.276438px;}
.wsc0{word-spacing:-6.179301px;}
.ws58{word-spacing:-6.097111px;}
.ws85{word-spacing:-5.977560px;}
.ws65{word-spacing:-5.697896px;}
.ws81{word-spacing:-5.678682px;}
.ws5f{word-spacing:-5.618906px;}
.wsb{word-spacing:-5.545281px;}
.ws9c{word-spacing:-5.499355px;}
.wsdf{word-spacing:-5.445557px;}
.wsab{word-spacing:-5.379804px;}
.ws82{word-spacing:-5.260253px;}
.ws29{word-spacing:-5.200477px;}
.ws9d{word-spacing:-4.847801px;}
.ws71{word-spacing:-4.782048px;}
.ws6a{word-spacing:-4.722272px;}
.ws9b{word-spacing:-4.602721px;}
.wscb{word-spacing:-4.567868px;}
.wsb4{word-spacing:-4.483170px;}
.ws8c{word-spacing:-4.363619px;}
.ws47{word-spacing:-4.303843px;}
.ws1e{word-spacing:-4.198181px;}
.ws9e{word-spacing:-4.124516px;}
.ws86{word-spacing:-3.945190px;}
.wsb9{word-spacing:-3.885414px;}
.ws64{word-spacing:-3.874307px;}
.wsc6{word-spacing:-3.771840px;}
.ws83{word-spacing:-3.646312px;}
.wsd4{word-spacing:-3.466985px;}
.wsa8{word-spacing:-3.461704px;}
.wsa7{word-spacing:-3.454488px;}
.wsc4{word-spacing:-3.347434px;}
.wsce{word-spacing:-3.336714px;}
.wsda{word-spacing:-3.332270px;}
.wsde{word-spacing:-3.287658px;}
.wsa5{word-spacing:-3.094301px;}
.wsc7{word-spacing:-2.988780px;}
.ws44{word-spacing:-2.929004px;}
.ws28{word-spacing:-2.809453px;}
.ws5b{word-spacing:-2.636104px;}
.wsd2{word-spacing:-2.510575px;}
.wsc5{word-spacing:-2.450800px;}
.wsa2{word-spacing:-2.393263px;}
.ws84{word-spacing:-2.331248px;}
.ws13{word-spacing:-2.141081px;}
.ws48{word-spacing:-2.092146px;}
.wsc2{word-spacing:-1.912819px;}
.ws39{word-spacing:-1.554166px;}
.wsbb{word-spacing:-1.434614px;}
.wse0{word-spacing:-1.135736px;}
.ws12{word-spacing:-0.971242px;}
.ws14{word-spacing:-0.915347px;}
.ws5c{word-spacing:-0.896634px;}
.wsba{word-spacing:-0.836858px;}
.ws78{word-spacing:-0.478205px;}
.wse2{word-spacing:-0.185304px;}
.wsd0{word-spacing:-0.065753px;}
.ws25{word-spacing:0.000000px;}
.ws22{word-spacing:1.181297px;}
.wsd7{word-spacing:2.032370px;}
.wse1{word-spacing:2.391024px;}
.wscf{word-spacing:2.570351px;}
.ws11{word-spacing:2.910944px;}
.wsd8{word-spacing:3.447665px;}
.wsdc{word-spacing:3.520783px;}
.ws1b{word-spacing:7.048414px;}
.wsdd{word-spacing:7.412174px;}
.wsd1{word-spacing:16.856719px;}
.ws27{word-spacing:37.636395px;}
._1d{margin-left:-30.498630px;}
._12{margin-left:-8.471892px;}
._f{margin-left:-5.241970px;}
._0{margin-left:-3.921240px;}
._4{margin-left:-2.917770px;}
._1{margin-left:-1.391082px;}
._6{width:1.225958px;}
._2{width:2.324052px;}
._20{width:3.366067px;}
._24{width:5.415630px;}
._1c{width:16.987316px;}
._c{width:18.464084px;}
._26{width:20.405434px;}
._7{width:21.744769px;}
._1e{width:23.126356px;}
._b{width:24.534930px;}
._10{width:26.420815px;}
._15{width:27.555435px;}
._13{width:28.976963px;}
._1a{width:30.460307px;}
._8{width:31.559679px;}
._5{width:32.616990px;}
._19{width:34.574888px;}
._e{width:36.120706px;}
._3{width:37.446576px;}
._29{width:39.899654px;}
._a{width:40.971702px;}
._18{width:42.978656px;}
._23{width:45.011027px;}
._14{width:48.255152px;}
._1f{width:49.838647px;}
._22{width:50.841746px;}
._11{width:52.482977px;}
._21{width:53.743273px;}
._25{width:57.085698px;}
._9{width:61.439000px;}
._27{width:62.848294px;}
._1b{width:66.894601px;}
._28{width:69.134956px;}
._17{width:75.272790px;}
._16{width:339.141429px;}
._d{width:730.077100px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.820000px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.796000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:59.778000px;}
.fs6{font-size:65.454600px;}
.fs2{font-size:71.730000px;}
.fs1{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y20{bottom:66.190500px;}
.y46{bottom:100.207500px;}
.yfd{bottom:105.357000px;}
.y141{bottom:107.695500px;}
.y82{bottom:118.449000px;}
.y11e{bottom:118.527000px;}
.y62{bottom:118.582500px;}
.y45{bottom:118.590000px;}
.y1f{bottom:118.636500px;}
.ya2{bottom:118.737000px;}
.ye1{bottom:118.827000px;}
.y146{bottom:118.887000px;}
.yfc{bottom:124.038000px;}
.y140{bottom:126.376500px;}
.y1e{bottom:135.075000px;}
.y11d{bottom:136.848000px;}
.y61{bottom:136.957500px;}
.y44{bottom:136.971000px;}
.ya1{bottom:137.266500px;}
.y145{bottom:137.566500px;}
.y81{bottom:140.943000px;}
.ye0{bottom:141.697500px;}
.yfb{bottom:142.717500px;}
.y13f{bottom:149.308500px;}
.y11c{bottom:155.167500px;}
.y43{bottom:155.353500px;}
.ya0{bottom:155.796000px;}
.y80{bottom:159.186000px;}
.y60{bottom:159.585000px;}
.ydf{bottom:160.317000px;}
.yfa{bottom:161.397000px;}
.y13e{bottom:167.988000px;}
.y1d{bottom:171.579000px;}
.y42{bottom:173.736000px;}
.y9f{bottom:174.325500px;}
.y7f{bottom:177.427500px;}
.y11b{bottom:177.741000px;}
.y5f{bottom:177.960000px;}
.ybf{bottom:178.516500px;}
.yde{bottom:178.936500px;}
.yf9{bottom:184.329000px;}
.y13d{bottom:186.667500px;}
.y1c{bottom:188.017500px;}
.y9e{bottom:192.856500px;}
.y7e{bottom:195.670500px;}
.y11a{bottom:196.060500px;}
.y5e{bottom:196.336500px;}
.ybe{bottom:197.197500px;}
.ydd{bottom:201.808500px;}
.yf8{bottom:203.010000px;}
.y1b{bottom:204.456000px;}
.y13c{bottom:205.348500px;}
.y41{bottom:211.377000px;}
.y9d{bottom:211.386000px;}
.y7d{bottom:213.912000px;}
.y5d{bottom:214.711500px;}
.ybd{bottom:215.877000px;}
.y119{bottom:218.632500px;}
.ydc{bottom:220.428000px;}
.y1a{bottom:220.894500px;}
.yf7{bottom:221.689500px;}
.y13b{bottom:228.280500px;}
.y40{bottom:229.759500px;}
.y9c{bottom:229.915500px;}
.y7c{bottom:232.155000px;}
.y5c{bottom:233.086500px;}
.ybc{bottom:234.556500px;}
.y118{bottom:236.953500px;}
.y19{bottom:237.333000px;}
.ydb{bottom:239.047500px;}
.yf6{bottom:240.369000px;}
.y13a{bottom:246.960000px;}
.y3f{bottom:248.142000px;}
.y9b{bottom:248.445000px;}
.y5b{bottom:251.463000px;}
.ybb{bottom:253.236000px;}
.y18{bottom:253.771500px;}
.y7b{bottom:254.649000px;}
.yda{bottom:257.667000px;}
.yf5{bottom:259.050000px;}
.y3e{bottom:266.524500px;}
.y5a{bottom:269.838000px;}
.y139{bottom:269.892000px;}
.y17{bottom:270.208500px;}
.y9a{bottom:271.227000px;}
.yba{bottom:271.917000px;}
.y7a{bottom:272.890500px;}
.y117{bottom:274.324500px;}
.yd9{bottom:276.286500px;}
.yf4{bottom:277.729500px;}
.y3d{bottom:284.907000px;}
.y16{bottom:286.647000px;}
.y59{bottom:288.213000px;}
.y138{bottom:288.571500px;}
.y99{bottom:289.756500px;}
.y79{bottom:291.133500px;}
.yd8{bottom:294.906000px;}
.yf3{bottom:296.409000px;}
.y3c{bottom:303.289500px;}
.y58{bottom:306.589500px;}
.y98{bottom:308.287500px;}
.y78{bottom:309.375000px;}
.yb9{bottom:310.390500px;}
.y137{bottom:311.503500px;}
.yd7{bottom:313.525500px;}
.yf2{bottom:315.088500px;}
.y116{bottom:321.265500px;}
.y3b{bottom:321.672000px;}
.y15{bottom:326.103000px;}
.y97{bottom:326.817000px;}
.y77{bottom:327.618000px;}
.y136{bottom:330.183000px;}
.yd6{bottom:332.145000px;}
.yf1{bottom:338.020500px;}
.y115{bottom:339.585000px;}
.y3a{bottom:340.054500px;}
.yb8{bottom:341.025000px;}
.y14{bottom:342.541500px;}
.y96{bottom:345.346500px;}
.y76{bottom:345.859500px;}
.y135{bottom:348.864000px;}
.yd5{bottom:350.764500px;}
.yf0{bottom:356.701500px;}
.y114{bottom:357.906000px;}
.y39{bottom:358.437000px;}
.y95{bottom:363.876000px;}
.y75{bottom:364.102500px;}
.y134{bottom:367.543500px;}
.yb7{bottom:371.658000px;}
.yd4{bottom:373.636500px;}
.yef{bottom:375.381000px;}
.y113{bottom:376.227000px;}
.y38{bottom:376.819500px;}
.y13{bottom:379.045500px;}
.y74{bottom:382.344000px;}
.y133{bottom:390.475500px;}
.yd3{bottom:392.256000px;}
.yee{bottom:394.060500px;}
.y112{bottom:394.546500px;}
.y37{bottom:395.202000px;}
.y12{bottom:395.484000px;}
.y73{bottom:400.587000px;}
.y94{bottom:401.929500px;}
.y132{bottom:409.155000px;}
.yb6{bottom:410.133000px;}
.yd2{bottom:410.875500px;}
.y11{bottom:411.922500px;}
.yed{bottom:412.741500px;}
.y111{bottom:412.867500px;}
.y36{bottom:413.584500px;}
.y72{bottom:418.828500px;}
.y131{bottom:427.834500px;}
.y10{bottom:428.361000px;}
.yb5{bottom:428.812500px;}
.yd1{bottom:429.495000px;}
.y110{bottom:431.187000px;}
.yec{bottom:431.421000px;}
.y35{bottom:431.967000px;}
.y93{bottom:432.264000px;}
.y71{bottom:437.071500px;}
.yf{bottom:444.799500px;}
.yb4{bottom:447.492000px;}
.yd0{bottom:448.114500px;}
.y10f{bottom:449.508000px;}
.yeb{bottom:450.100500px;}
.y34{bottom:450.349500px;}
.y130{bottom:450.766500px;}
.y57{bottom:460.600500px;}
.ye{bottom:461.238000px;}
.y92{bottom:462.597000px;}
.yb3{bottom:466.173000px;}
.ycf{bottom:466.734000px;}
.yea{bottom:468.780000px;}
.y70{bottom:469.216500px;}
.y12f{bottom:469.447500px;}
.yd{bottom:477.676500px;}
.y56{bottom:478.975500px;}
.y33{bottom:480.387000px;}
.yb2{bottom:484.852500px;}
.y10e{bottom:486.879000px;}
.ye9{bottom:487.461000px;}
.y12e{bottom:488.127000px;}
.yce{bottom:489.606000px;}
.y91{bottom:492.931500px;}
.yc{bottom:494.113500px;}
.y55{bottom:497.352000px;}
.y32{bottom:498.769500px;}
.yb1{bottom:503.532000px;}
.ye8{bottom:506.140500px;}
.y12d{bottom:506.806500px;}
.y6f{bottom:508.591500px;}
.y54{bottom:515.727000px;}
.y31{bottom:517.152000px;}
.yb0{bottom:522.213000px;}
.ye7{bottom:524.820000px;}
.ycd{bottom:527.275500px;}
.y12c{bottom:529.738500px;}
.y90{bottom:530.985000px;}
.yb{bottom:533.569500px;}
.y10d{bottom:533.820000px;}
.y53{bottom:534.102000px;}
.y30{bottom:535.534500px;}
.ye6{bottom:543.501000px;}
.yaf{bottom:545.145000px;}
.y12b{bottom:548.418000px;}
.y8f{bottom:549.514500px;}
.ya{bottom:551.190000px;}
.y10c{bottom:552.139500px;}
.y52{bottom:552.477000px;}
.y6e{bottom:555.498000px;}
.ye5{bottom:562.180500px;}
.yae{bottom:563.824500px;}
.y8e{bottom:568.044000px;}
.y9{bottom:568.810500px;}
.y10b{bottom:570.460500px;}
.y12a{bottom:571.350000px;}
.y2f{bottom:573.175500px;}
.y6d{bottom:573.739500px;}
.ycc{bottom:574.345500px;}
.ye4{bottom:580.860000px;}
.yad{bottom:582.504000px;}
.y8d{bottom:586.573500px;}
.y10a{bottom:588.780000px;}
.y129{bottom:590.031000px;}
.y51{bottom:590.100000px;}
.y8{bottom:590.683500px;}
.y2e{bottom:591.558000px;}
.y6c{bottom:591.982500px;}
.ycb{bottom:592.965000px;}
.ye3{bottom:599.541000px;}
.yac{bottom:601.183500px;}
.y8c{bottom:605.104500px;}
.y109{bottom:607.101000px;}
.y2d{bottom:609.940500px;}
.y6b{bottom:610.224000px;}
.yca{bottom:611.584500px;}
.y128{bottom:612.963000px;}
.yab{bottom:619.864500px;}
.y50{bottom:620.124000px;}
.y108{bottom:625.422000px;}
.y2c{bottom:628.323000px;}
.y6a{bottom:628.467000px;}
.yc9{bottom:630.204000px;}
.y127{bottom:631.642500px;}
.ye2{bottom:637.270500px;}
.y8b{bottom:637.537500px;}
.y107{bottom:643.741500px;}
.y2b{bottom:646.705500px;}
.yc8{bottom:648.823500px;}
.y4f{bottom:650.149500px;}
.y126{bottom:654.574500px;}
.yaa{bottom:657.594000px;}
.y106{bottom:662.062500px;}
.y7{bottom:662.073000px;}
.y2a{bottom:665.088000px;}
.y69{bottom:665.715000px;}
.yc7{bottom:667.443000px;}
.y125{bottom:673.254000px;}
.y8a{bottom:682.959000px;}
.y6{bottom:683.742000px;}
.y105{bottom:684.634500px;}
.yc6{bottom:686.062500px;}
.y29{bottom:687.723000px;}
.y4e{bottom:687.771000px;}
.y144{bottom:691.933500px;}
.y68{bottom:695.473500px;}
.y124{bottom:696.186000px;}
.y89{bottom:701.488500px;}
.y104{bottom:702.955500px;}
.yc5{bottom:704.682000px;}
.ya9{bottom:704.689500px;}
.y28{bottom:706.104000px;}
.y4d{bottom:706.146000px;}
.y5{bottom:709.363500px;}
.y143{bottom:710.614500px;}
.y123{bottom:714.865500px;}
.y88{bottom:720.019500px;}
.y103{bottom:721.275000px;}
.yc4{bottom:723.301500px;}
.ya8{bottom:723.370500px;}
.y27{bottom:724.486500px;}
.y4c{bottom:724.522500px;}
.y67{bottom:725.232000px;}
.y122{bottom:733.546500px;}
.y4{bottom:736.263000px;}
.y87{bottom:738.549000px;}
.y102{bottom:739.596000px;}
.yc3{bottom:741.921000px;}
.ya7{bottom:742.050000px;}
.y26{bottom:742.869000px;}
.y4b{bottom:742.897500px;}
.y142{bottom:752.226000px;}
.y121{bottom:756.478500px;}
.y86{bottom:757.078500px;}
.y101{bottom:757.915500px;}
.yc2{bottom:760.540500px;}
.ya6{bottom:760.729500px;}
.y25{bottom:761.251500px;}
.y4a{bottom:761.272500px;}
.y66{bottom:762.481500px;}
.y3{bottom:763.162500px;}
.y120{bottom:775.158000px;}
.y85{bottom:775.608000px;}
.y100{bottom:776.236500px;}
.yc1{bottom:779.160000px;}
.ya5{bottom:779.410500px;}
.y24{bottom:779.634000px;}
.y49{bottom:779.647500px;}
.y65{bottom:780.723000px;}
.y11f{bottom:793.837500px;}
.yff{bottom:794.557500px;}
.yc0{bottom:797.779500px;}
.y23{bottom:798.016500px;}
.y48{bottom:798.024000px;}
.ya4{bottom:798.090000px;}
.y84{bottom:798.390000px;}
.y64{bottom:798.964500px;}
.ya3{bottom:816.769500px;}
.y83{bottom:816.919500px;}
.yfe{bottom:817.129500px;}
.y63{bottom:817.207500px;}
.y22{bottom:835.449000px;}
.y2{bottom:849.939000px;}
.y21{bottom:864.277500px;}
.y1{bottom:864.285000px;}
.y47{bottom:882.210000px;}
.h2{height:35.865000px;}
.h9{height:35.865450px;}
.h7{height:38.141364px;}
.h6{height:44.833500px;}
.h8{height:49.008156px;}
.hc{height:49.090950px;}
.h4{height:51.215220px;}
.hb{height:54.336020px;}
.h5{height:54.338202px;}
.ha{height:58.450958px;}
.h3{height:64.557000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1d{left:84.346500px;}
.x10{left:85.584000px;}
.x1c{left:88.905000px;}
.x18{left:92.802000px;}
.x16{left:94.551000px;}
.x1a{left:96.376500px;}
.x1b{left:97.870500px;}
.x12{left:103.848000px;}
.x6{left:105.118500px;}
.x11{left:108.000000px;}
.x4{left:111.327000px;}
.x1e{left:113.322000px;}
.x17{left:116.967000px;}
.x13{left:122.944500px;}
.x3{left:133.741500px;}
.xa{left:154.623000px;}
.x14{left:179.916000px;}
.x15{left:190.651500px;}
.x7{left:197.013000px;}
.x1{left:204.616500px;}
.x19{left:206.137500px;}
.xd{left:220.768500px;}
.xb{left:228.132000px;}
.x2{left:232.287000px;}
.xc{left:234.013500px;}
.x9{left:243.165000px;}
.xf{left:248.559000px;}
.xe{left:271.053000px;}
.x8{left:280.021500px;}
.x5{left:293.823000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-12.002485pt;}
.ls1{letter-spacing:-0.000170pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.430368pt;}
.ls5{letter-spacing:17.923873pt;}
.ls4{letter-spacing:19.154194pt;}
.ls6{letter-spacing:23.867983pt;}
.wsb2{word-spacing:-33.454573pt;}
.ws17{word-spacing:-28.294305pt;}
.ws36{word-spacing:-27.156719pt;}
.wsa{word-spacing:-26.568000pt;}
.ws91{word-spacing:-26.566933pt;}
.ws19{word-spacing:-24.574013pt;}
.ws4d{word-spacing:-23.319450pt;}
.ws0{word-spacing:-23.319157pt;}
.ws87{word-spacing:-13.708538pt;}
.ws6e{word-spacing:-13.389734pt;}
.ws46{word-spacing:-13.336601pt;}
.ws1c{word-spacing:-13.049794pt;}
.ws70{word-spacing:-12.964663pt;}
.wsbd{word-spacing:-12.858396pt;}
.ws2{word-spacing:-12.516412pt;}
.ws3{word-spacing:-12.512964pt;}
.ws8e{word-spacing:-12.486459pt;}
.wsbf{word-spacing:-12.327057pt;}
.ws40{word-spacing:-12.061388pt;}
.ws76{word-spacing:-12.008254pt;}
.ws72{word-spacing:-11.955120pt;}
.ws92{word-spacing:-11.742585pt;}
.wsac{word-spacing:-11.423781pt;}
.ws4f{word-spacing:-11.170918pt;}
.ws54{word-spacing:-11.104978pt;}
.wsc1{word-spacing:-11.051844pt;}
.ws4b{word-spacing:-10.945577pt;}
.wsbc{word-spacing:-10.520506pt;}
.ws7c{word-spacing:-10.414238pt;}
.ws88{word-spacing:-10.361104pt;}
.ws4c{word-spacing:-9.882899pt;}
.ws50{word-spacing:-9.829765pt;}
.ws89{word-spacing:-9.776631pt;}
.wsaa{word-spacing:-9.723498pt;}
.ws93{word-spacing:-9.670364pt;}
.ws55{word-spacing:-9.626779pt;}
.ws56{word-spacing:-9.617230pt;}
.ws75{word-spacing:-9.564096pt;}
.ws5{word-spacing:-9.564000pt;}
.ws4{word-spacing:-9.560000pt;}
.wsbe{word-spacing:-9.510962pt;}
.wsd9{word-spacing:-9.460794pt;}
.ws5a{word-spacing:-9.457828pt;}
.ws59{word-spacing:-9.404694pt;}
.wsb1{word-spacing:-9.351561pt;}
.ws7d{word-spacing:-9.298427pt;}
.ws98{word-spacing:-9.245293pt;}
.ws2a{word-spacing:-9.192159pt;}
.wsaf{word-spacing:-9.191711pt;}
.ws62{word-spacing:-9.149507pt;}
.ws3d{word-spacing:-9.139025pt;}
.ws61{word-spacing:-9.133304pt;}
.ws2c{word-spacing:-9.085891pt;}
.ws20{word-spacing:-9.080096pt;}
.wsa6{word-spacing:-9.063130pt;}
.ws8b{word-spacing:-9.048220pt;}
.ws32{word-spacing:-9.032757pt;}
.ws31{word-spacing:-8.979623pt;}
.ws5d{word-spacing:-8.977697pt;}
.ws6f{word-spacing:-8.965826pt;}
.wsca{word-spacing:-8.943602pt;}
.ws34{word-spacing:-8.926490pt;}
.ws7b{word-spacing:-8.907644pt;}
.ws6{word-spacing:-8.881905pt;}
.ws9{word-spacing:-8.875847pt;}
.ws30{word-spacing:-8.873356pt;}
.ws2e{word-spacing:-8.869460pt;}
.ws3e{word-spacing:-8.820222pt;}
.ws4a{word-spacing:-8.767088pt;}
.ws45{word-spacing:-8.713954pt;}
.ws41{word-spacing:-8.661582pt;}
.ws43{word-spacing:-8.660820pt;}
.ws8f{word-spacing:-8.619327pt;}
.ws3b{word-spacing:-8.607686pt;}
.wsa4{word-spacing:-8.584948pt;}
.ws49{word-spacing:-8.554553pt;}
.ws1f{word-spacing:-8.512209pt;}
.wsae{word-spacing:-8.506732pt;}
.ws2d{word-spacing:-8.501419pt;}
.ws2b{word-spacing:-8.453598pt;}
.ws33{word-spacing:-8.448285pt;}
.ws18{word-spacing:-8.404815pt;}
.wsd6{word-spacing:-8.400464pt;}
.ws1a{word-spacing:-8.364815pt;}
.ws9a{word-spacing:-8.347330pt;}
.wsd3{word-spacing:-8.294197pt;}
.wsb6{word-spacing:-8.288883pt;}
.wsc9{word-spacing:-8.241063pt;}
.wsdb{word-spacing:-8.235749pt;}
.ws1d{word-spacing:-8.232877pt;}
.ws21{word-spacing:-8.220026pt;}
.ws16{word-spacing:-8.213367pt;}
.ws7{word-spacing:-8.196704pt;}
.ws8{word-spacing:-8.187036pt;}
.wsad{word-spacing:-8.178279pt;}
.ws23{word-spacing:-8.164862pt;}
.wsa9{word-spacing:-8.134795pt;}
.ws79{word-spacing:-8.129482pt;}
.wsc{word-spacing:-8.085602pt;}
.ws7e{word-spacing:-8.028527pt;}
.ws77{word-spacing:-8.025775pt;}
.wsb8{word-spacing:-8.023214pt;}
.ws7f{word-spacing:-7.975393pt;}
.ws3f{word-spacing:-7.970080pt;}
.ws6d{word-spacing:-7.916946pt;}
.ws90{word-spacing:-7.869126pt;}
.ws80{word-spacing:-7.858382pt;}
.wsc8{word-spacing:-7.815992pt;}
.ws52{word-spacing:-7.810678pt;}
.wsb7{word-spacing:-7.757545pt;}
.ws99{word-spacing:-7.704411pt;}
.ws9f{word-spacing:-7.672515pt;}
.wsa1{word-spacing:-7.651277pt;}
.wsc3{word-spacing:-7.598143pt;}
.ws1{word-spacing:-7.538176pt;}
.ws26{word-spacing:-7.536527pt;}
.ws24{word-spacing:-7.536373pt;}
.ws35{word-spacing:-7.491875pt;}
.ws97{word-spacing:-7.438741pt;}
.wsb5{word-spacing:-7.332474pt;}
.wsa3{word-spacing:-7.279340pt;}
.wscc{word-spacing:-7.255863pt;}
.ws95{word-spacing:-7.226206pt;}
.ws74{word-spacing:-7.173072pt;}
.wsb0{word-spacing:-7.133065pt;}
.wsa0{word-spacing:-7.125252pt;}
.wsf{word-spacing:-7.123250pt;}
.ws51{word-spacing:-7.059779pt;}
.ws37{word-spacing:-7.013670pt;}
.ws4e{word-spacing:-6.996685pt;}
.ws66{word-spacing:-6.960537pt;}
.ws8a{word-spacing:-6.907403pt;}
.ws94{word-spacing:-6.901956pt;}
.ws6b{word-spacing:-6.801135pt;}
.ws2f{word-spacing:-6.766299pt;}
.ws7a{word-spacing:-6.641733pt;}
.ws69{word-spacing:-6.610518pt;}
.ws63{word-spacing:-6.571290pt;}
.ws8d{word-spacing:-6.487848pt;}
.wscd{word-spacing:-6.429198pt;}
.ws5e{word-spacing:-6.389212pt;}
.ws6c{word-spacing:-6.376064pt;}
.ws3c{word-spacing:-6.336697pt;}
.ws38{word-spacing:-6.319643pt;}
.ws15{word-spacing:-6.312104pt;}
.ws10{word-spacing:-6.311911pt;}
.wse{word-spacing:-6.309660pt;}
.wsd5{word-spacing:-6.269796pt;}
.wsd{word-spacing:-6.267429pt;}
.ws57{word-spacing:-6.223819pt;}
.ws67{word-spacing:-6.216662pt;}
.ws53{word-spacing:-6.163529pt;}
.ws96{word-spacing:-6.057261pt;}
.ws42{word-spacing:-5.992340pt;}
.ws60{word-spacing:-5.985007pt;}
.ws3a{word-spacing:-5.939902pt;}
.wsb3{word-spacing:-5.791591pt;}
.ws68{word-spacing:-5.743771pt;}
.ws73{word-spacing:-5.579056pt;}
.wsc0{word-spacing:-5.492712pt;}
.ws58{word-spacing:-5.419654pt;}
.ws85{word-spacing:-5.313387pt;}
.ws65{word-spacing:-5.064797pt;}
.ws81{word-spacing:-5.047717pt;}
.ws5f{word-spacing:-4.994583pt;}
.wsb{word-spacing:-4.929138pt;}
.ws9c{word-spacing:-4.888316pt;}
.wsdf{word-spacing:-4.840495pt;}
.wsab{word-spacing:-4.782048pt;}
.ws82{word-spacing:-4.675780pt;}
.ws29{word-spacing:-4.622646pt;}
.ws9d{word-spacing:-4.309157pt;}
.ws71{word-spacing:-4.250709pt;}
.ws6a{word-spacing:-4.197575pt;}
.ws9b{word-spacing:-4.091308pt;}
.wscb{word-spacing:-4.060327pt;}
.wsb4{word-spacing:-3.985040pt;}
.ws8c{word-spacing:-3.878772pt;}
.ws47{word-spacing:-3.825638pt;}
.ws1e{word-spacing:-3.731716pt;}
.ws9e{word-spacing:-3.666237pt;}
.ws86{word-spacing:-3.506835pt;}
.wsb9{word-spacing:-3.453701pt;}
.ws64{word-spacing:-3.443828pt;}
.wsc6{word-spacing:-3.352747pt;}
.ws83{word-spacing:-3.241166pt;}
.wsd4{word-spacing:-3.081764pt;}
.wsa8{word-spacing:-3.077070pt;}
.wsa7{word-spacing:-3.070656pt;}
.wsc4{word-spacing:-2.975497pt;}
.wsce{word-spacing:-2.965968pt;}
.wsda{word-spacing:-2.962018pt;}
.wsde{word-spacing:-2.922363pt;}
.wsa5{word-spacing:-2.750490pt;}
.wsc7{word-spacing:-2.656693pt;}
.ws44{word-spacing:-2.603559pt;}
.ws28{word-spacing:-2.497292pt;}
.ws5b{word-spacing:-2.343204pt;}
.wsd2{word-spacing:-2.231622pt;}
.wsc5{word-spacing:-2.178489pt;}
.wsa2{word-spacing:-2.127345pt;}
.ws84{word-spacing:-2.072221pt;}
.ws13{word-spacing:-1.903183pt;}
.ws48{word-spacing:-1.859685pt;}
.wsc2{word-spacing:-1.700284pt;}
.ws39{word-spacing:-1.381481pt;}
.wsbb{word-spacing:-1.275213pt;}
.wse0{word-spacing:-1.009543pt;}
.ws12{word-spacing:-0.863326pt;}
.ws14{word-spacing:-0.813642pt;}
.ws5c{word-spacing:-0.797008pt;}
.wsba{word-spacing:-0.743874pt;}
.ws78{word-spacing:-0.425071pt;}
.wse2{word-spacing:-0.164715pt;}
.wsd0{word-spacing:-0.058447pt;}
.ws25{word-spacing:0.000000pt;}
.ws22{word-spacing:1.050042pt;}
.wsd7{word-spacing:1.806551pt;}
.wse1{word-spacing:2.125355pt;}
.wscf{word-spacing:2.284756pt;}
.ws11{word-spacing:2.587505pt;}
.wsd8{word-spacing:3.064591pt;}
.wsdc{word-spacing:3.129585pt;}
.ws1b{word-spacing:6.265256pt;}
.wsdd{word-spacing:6.588599pt;}
.wsd1{word-spacing:14.983750pt;}
.ws27{word-spacing:33.454573pt;}
._1d{margin-left:-27.109893pt;}
._12{margin-left:-7.530571pt;}
._f{margin-left:-4.659528pt;}
._0{margin-left:-3.485547pt;}
._4{margin-left:-2.593573pt;}
._1{margin-left:-1.236517pt;}
._6{width:1.089741pt;}
._2{width:2.065824pt;}
._20{width:2.992059pt;}
._24{width:4.813893pt;}
._1c{width:15.099837pt;}
._c{width:16.412519pt;}
._26{width:18.138164pt;}
._7{width:19.328684pt;}
._1e{width:20.556761pt;}
._b{width:21.808826pt;}
._10{width:23.485169pt;}
._15{width:24.493720pt;}
._13{width:25.757300pt;}
._1a{width:27.075828pt;}
._8{width:28.053048pt;}
._5{width:28.992880pt;}
._19{width:30.733234pt;}
._e{width:32.107294pt;}
._3{width:33.285845pt;}
._29{width:35.466360pt;}
._a{width:36.419290pt;}
._18{width:38.203250pt;}
._23{width:40.009802pt;}
._14{width:42.893469pt;}
._1f{width:44.301020pt;}
._22{width:45.192663pt;}
._11{width:46.651535pt;}
._21{width:47.771798pt;}
._25{width:50.742843pt;}
._9{width:54.612444pt;}
._27{width:55.865150pt;}
._1b{width:59.461868pt;}
._28{width:61.453294pt;}
._17{width:66.909147pt;}
._16{width:301.459048pt;}
._d{width:648.957422pt;}
.fs0{font-size:42.506667pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.818667pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.136000pt;}
.fs6{font-size:58.181867pt;}
.fs2{font-size:63.760000pt;}
.fs1{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:58.836000pt;}
.y46{bottom:89.073333pt;}
.yfd{bottom:93.650667pt;}
.y141{bottom:95.729333pt;}
.y82{bottom:105.288000pt;}
.y11e{bottom:105.357333pt;}
.y62{bottom:105.406667pt;}
.y45{bottom:105.413333pt;}
.y1f{bottom:105.454667pt;}
.ya2{bottom:105.544000pt;}
.ye1{bottom:105.624000pt;}
.y146{bottom:105.677333pt;}
.yfc{bottom:110.256000pt;}
.y140{bottom:112.334667pt;}
.y1e{bottom:120.066667pt;}
.y11d{bottom:121.642667pt;}
.y61{bottom:121.740000pt;}
.y44{bottom:121.752000pt;}
.ya1{bottom:122.014667pt;}
.y145{bottom:122.281333pt;}
.y81{bottom:125.282667pt;}
.ye0{bottom:125.953333pt;}
.yfb{bottom:126.860000pt;}
.y13f{bottom:132.718667pt;}
.y11c{bottom:137.926667pt;}
.y43{bottom:138.092000pt;}
.ya0{bottom:138.485333pt;}
.y80{bottom:141.498667pt;}
.y60{bottom:141.853333pt;}
.ydf{bottom:142.504000pt;}
.yfa{bottom:143.464000pt;}
.y13e{bottom:149.322667pt;}
.y1d{bottom:152.514667pt;}
.y42{bottom:154.432000pt;}
.y9f{bottom:154.956000pt;}
.y7f{bottom:157.713333pt;}
.y11b{bottom:157.992000pt;}
.y5f{bottom:158.186667pt;}
.ybf{bottom:158.681333pt;}
.yde{bottom:159.054667pt;}
.yf9{bottom:163.848000pt;}
.y13d{bottom:165.926667pt;}
.y1c{bottom:167.126667pt;}
.y9e{bottom:171.428000pt;}
.y7e{bottom:173.929333pt;}
.y11a{bottom:174.276000pt;}
.y5e{bottom:174.521333pt;}
.ybe{bottom:175.286667pt;}
.ydd{bottom:179.385333pt;}
.yf8{bottom:180.453333pt;}
.y1b{bottom:181.738667pt;}
.y13c{bottom:182.532000pt;}
.y41{bottom:187.890667pt;}
.y9d{bottom:187.898667pt;}
.y7d{bottom:190.144000pt;}
.y5d{bottom:190.854667pt;}
.ybd{bottom:191.890667pt;}
.y119{bottom:194.340000pt;}
.ydc{bottom:195.936000pt;}
.y1a{bottom:196.350667pt;}
.yf7{bottom:197.057333pt;}
.y13b{bottom:202.916000pt;}
.y40{bottom:204.230667pt;}
.y9c{bottom:204.369333pt;}
.y7c{bottom:206.360000pt;}
.y5c{bottom:207.188000pt;}
.ybc{bottom:208.494667pt;}
.y118{bottom:210.625333pt;}
.y19{bottom:210.962667pt;}
.ydb{bottom:212.486667pt;}
.yf6{bottom:213.661333pt;}
.y13a{bottom:219.520000pt;}
.y3f{bottom:220.570667pt;}
.y9b{bottom:220.840000pt;}
.y5b{bottom:223.522667pt;}
.ybb{bottom:225.098667pt;}
.y18{bottom:225.574667pt;}
.y7b{bottom:226.354667pt;}
.yda{bottom:229.037333pt;}
.yf5{bottom:230.266667pt;}
.y3e{bottom:236.910667pt;}
.y5a{bottom:239.856000pt;}
.y139{bottom:239.904000pt;}
.y17{bottom:240.185333pt;}
.y9a{bottom:241.090667pt;}
.yba{bottom:241.704000pt;}
.y7a{bottom:242.569333pt;}
.y117{bottom:243.844000pt;}
.yd9{bottom:245.588000pt;}
.yf4{bottom:246.870667pt;}
.y3d{bottom:253.250667pt;}
.y16{bottom:254.797333pt;}
.y59{bottom:256.189333pt;}
.y138{bottom:256.508000pt;}
.y99{bottom:257.561333pt;}
.y79{bottom:258.785333pt;}
.yd8{bottom:262.138667pt;}
.yf3{bottom:263.474667pt;}
.y3c{bottom:269.590667pt;}
.y58{bottom:272.524000pt;}
.y98{bottom:274.033333pt;}
.y78{bottom:275.000000pt;}
.yb9{bottom:275.902667pt;}
.y137{bottom:276.892000pt;}
.yd7{bottom:278.689333pt;}
.yf2{bottom:280.078667pt;}
.y116{bottom:285.569333pt;}
.y3b{bottom:285.930667pt;}
.y15{bottom:289.869333pt;}
.y97{bottom:290.504000pt;}
.y77{bottom:291.216000pt;}
.y136{bottom:293.496000pt;}
.yd6{bottom:295.240000pt;}
.yf1{bottom:300.462667pt;}
.y115{bottom:301.853333pt;}
.y3a{bottom:302.270667pt;}
.yb8{bottom:303.133333pt;}
.y14{bottom:304.481333pt;}
.y96{bottom:306.974667pt;}
.y76{bottom:307.430667pt;}
.y135{bottom:310.101333pt;}
.yd5{bottom:311.790667pt;}
.yf0{bottom:317.068000pt;}
.y114{bottom:318.138667pt;}
.y39{bottom:318.610667pt;}
.y95{bottom:323.445333pt;}
.y75{bottom:323.646667pt;}
.y134{bottom:326.705333pt;}
.yb7{bottom:330.362667pt;}
.yd4{bottom:332.121333pt;}
.yef{bottom:333.672000pt;}
.y113{bottom:334.424000pt;}
.y38{bottom:334.950667pt;}
.y13{bottom:336.929333pt;}
.y74{bottom:339.861333pt;}
.y133{bottom:347.089333pt;}
.yd3{bottom:348.672000pt;}
.yee{bottom:350.276000pt;}
.y112{bottom:350.708000pt;}
.y37{bottom:351.290667pt;}
.y12{bottom:351.541333pt;}
.y73{bottom:356.077333pt;}
.y94{bottom:357.270667pt;}
.y132{bottom:363.693333pt;}
.yb6{bottom:364.562667pt;}
.yd2{bottom:365.222667pt;}
.y11{bottom:366.153333pt;}
.yed{bottom:366.881333pt;}
.y111{bottom:366.993333pt;}
.y36{bottom:367.630667pt;}
.y72{bottom:372.292000pt;}
.y131{bottom:380.297333pt;}
.y10{bottom:380.765333pt;}
.yb5{bottom:381.166667pt;}
.yd1{bottom:381.773333pt;}
.y110{bottom:383.277333pt;}
.yec{bottom:383.485333pt;}
.y35{bottom:383.970667pt;}
.y93{bottom:384.234667pt;}
.y71{bottom:388.508000pt;}
.yf{bottom:395.377333pt;}
.yb4{bottom:397.770667pt;}
.yd0{bottom:398.324000pt;}
.y10f{bottom:399.562667pt;}
.yeb{bottom:400.089333pt;}
.y34{bottom:400.310667pt;}
.y130{bottom:400.681333pt;}
.y57{bottom:409.422667pt;}
.ye{bottom:409.989333pt;}
.y92{bottom:411.197333pt;}
.yb3{bottom:414.376000pt;}
.ycf{bottom:414.874667pt;}
.yea{bottom:416.693333pt;}
.y70{bottom:417.081333pt;}
.y12f{bottom:417.286667pt;}
.yd{bottom:424.601333pt;}
.y56{bottom:425.756000pt;}
.y33{bottom:427.010667pt;}
.yb2{bottom:430.980000pt;}
.y10e{bottom:432.781333pt;}
.ye9{bottom:433.298667pt;}
.y12e{bottom:433.890667pt;}
.yce{bottom:435.205333pt;}
.y91{bottom:438.161333pt;}
.yc{bottom:439.212000pt;}
.y55{bottom:442.090667pt;}
.y32{bottom:443.350667pt;}
.yb1{bottom:447.584000pt;}
.ye8{bottom:449.902667pt;}
.y12d{bottom:450.494667pt;}
.y6f{bottom:452.081333pt;}
.y54{bottom:458.424000pt;}
.y31{bottom:459.690667pt;}
.yb0{bottom:464.189333pt;}
.ye7{bottom:466.506667pt;}
.ycd{bottom:468.689333pt;}
.y12c{bottom:470.878667pt;}
.y90{bottom:471.986667pt;}
.yb{bottom:474.284000pt;}
.y10d{bottom:474.506667pt;}
.y53{bottom:474.757333pt;}
.y30{bottom:476.030667pt;}
.ye6{bottom:483.112000pt;}
.yaf{bottom:484.573333pt;}
.y12b{bottom:487.482667pt;}
.y8f{bottom:488.457333pt;}
.ya{bottom:489.946667pt;}
.y10c{bottom:490.790667pt;}
.y52{bottom:491.090667pt;}
.y6e{bottom:493.776000pt;}
.ye5{bottom:499.716000pt;}
.yae{bottom:501.177333pt;}
.y8e{bottom:504.928000pt;}
.y9{bottom:505.609333pt;}
.y10b{bottom:507.076000pt;}
.y12a{bottom:507.866667pt;}
.y2f{bottom:509.489333pt;}
.y6d{bottom:509.990667pt;}
.ycc{bottom:510.529333pt;}
.ye4{bottom:516.320000pt;}
.yad{bottom:517.781333pt;}
.y8d{bottom:521.398667pt;}
.y10a{bottom:523.360000pt;}
.y129{bottom:524.472000pt;}
.y51{bottom:524.533333pt;}
.y8{bottom:525.052000pt;}
.y2e{bottom:525.829333pt;}
.y6c{bottom:526.206667pt;}
.ycb{bottom:527.080000pt;}
.ye3{bottom:532.925333pt;}
.yac{bottom:534.385333pt;}
.y8c{bottom:537.870667pt;}
.y109{bottom:539.645333pt;}
.y2d{bottom:542.169333pt;}
.y6b{bottom:542.421333pt;}
.yca{bottom:543.630667pt;}
.y128{bottom:544.856000pt;}
.yab{bottom:550.990667pt;}
.y50{bottom:551.221333pt;}
.y108{bottom:555.930667pt;}
.y2c{bottom:558.509333pt;}
.y6a{bottom:558.637333pt;}
.yc9{bottom:560.181333pt;}
.y127{bottom:561.460000pt;}
.ye2{bottom:566.462667pt;}
.y8b{bottom:566.700000pt;}
.y107{bottom:572.214667pt;}
.y2b{bottom:574.849333pt;}
.yc8{bottom:576.732000pt;}
.y4f{bottom:577.910667pt;}
.y126{bottom:581.844000pt;}
.yaa{bottom:584.528000pt;}
.y106{bottom:588.500000pt;}
.y7{bottom:588.509333pt;}
.y2a{bottom:591.189333pt;}
.y69{bottom:591.746667pt;}
.yc7{bottom:593.282667pt;}
.y125{bottom:598.448000pt;}
.y8a{bottom:607.074667pt;}
.y6{bottom:607.770667pt;}
.y105{bottom:608.564000pt;}
.yc6{bottom:609.833333pt;}
.y29{bottom:611.309333pt;}
.y4e{bottom:611.352000pt;}
.y144{bottom:615.052000pt;}
.y68{bottom:618.198667pt;}
.y124{bottom:618.832000pt;}
.y89{bottom:623.545333pt;}
.y104{bottom:624.849333pt;}
.yc5{bottom:626.384000pt;}
.ya9{bottom:626.390667pt;}
.y28{bottom:627.648000pt;}
.y4d{bottom:627.685333pt;}
.y5{bottom:630.545333pt;}
.y143{bottom:631.657333pt;}
.y123{bottom:635.436000pt;}
.y88{bottom:640.017333pt;}
.y103{bottom:641.133333pt;}
.yc4{bottom:642.934667pt;}
.ya8{bottom:642.996000pt;}
.y27{bottom:643.988000pt;}
.y4c{bottom:644.020000pt;}
.y67{bottom:644.650667pt;}
.y122{bottom:652.041333pt;}
.y4{bottom:654.456000pt;}
.y87{bottom:656.488000pt;}
.y102{bottom:657.418667pt;}
.yc3{bottom:659.485333pt;}
.ya7{bottom:659.600000pt;}
.y26{bottom:660.328000pt;}
.y4b{bottom:660.353333pt;}
.y142{bottom:668.645333pt;}
.y121{bottom:672.425333pt;}
.y86{bottom:672.958667pt;}
.y101{bottom:673.702667pt;}
.yc2{bottom:676.036000pt;}
.ya6{bottom:676.204000pt;}
.y25{bottom:676.668000pt;}
.y4a{bottom:676.686667pt;}
.y66{bottom:677.761333pt;}
.y3{bottom:678.366667pt;}
.y120{bottom:689.029333pt;}
.y85{bottom:689.429333pt;}
.y100{bottom:689.988000pt;}
.yc1{bottom:692.586667pt;}
.ya5{bottom:692.809333pt;}
.y24{bottom:693.008000pt;}
.y49{bottom:693.020000pt;}
.y65{bottom:693.976000pt;}
.y11f{bottom:705.633333pt;}
.yff{bottom:706.273333pt;}
.yc0{bottom:709.137333pt;}
.y23{bottom:709.348000pt;}
.y48{bottom:709.354667pt;}
.ya4{bottom:709.413333pt;}
.y84{bottom:709.680000pt;}
.y64{bottom:710.190667pt;}
.ya3{bottom:726.017333pt;}
.y83{bottom:726.150667pt;}
.yfe{bottom:726.337333pt;}
.y63{bottom:726.406667pt;}
.y22{bottom:742.621333pt;}
.y2{bottom:755.501333pt;}
.y21{bottom:768.246667pt;}
.y1{bottom:768.253333pt;}
.y47{bottom:784.186667pt;}
.h2{height:31.880000pt;}
.h9{height:31.880400pt;}
.h7{height:33.903435pt;}
.h6{height:39.852000pt;}
.h8{height:43.562805pt;}
.hc{height:43.636400pt;}
.h4{height:45.524640pt;}
.hb{height:48.298685pt;}
.h5{height:48.300624pt;}
.ha{height:51.956407pt;}
.h3{height:57.384000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1d{left:74.974667pt;}
.x10{left:76.074667pt;}
.x1c{left:79.026667pt;}
.x18{left:82.490667pt;}
.x16{left:84.045333pt;}
.x1a{left:85.668000pt;}
.x1b{left:86.996000pt;}
.x12{left:92.309333pt;}
.x6{left:93.438667pt;}
.x11{left:96.000000pt;}
.x4{left:98.957333pt;}
.x1e{left:100.730667pt;}
.x17{left:103.970667pt;}
.x13{left:109.284000pt;}
.x3{left:118.881333pt;}
.xa{left:137.442667pt;}
.x14{left:159.925333pt;}
.x15{left:169.468000pt;}
.x7{left:175.122667pt;}
.x1{left:181.881333pt;}
.x19{left:183.233333pt;}
.xd{left:196.238667pt;}
.xb{left:202.784000pt;}
.x2{left:206.477333pt;}
.xc{left:208.012000pt;}
.x9{left:216.146667pt;}
.xf{left:220.941333pt;}
.xe{left:240.936000pt;}
.x8{left:248.908000pt;}
.x5{left:261.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; }
  