
    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_1a1429cea724bbfcf6f1da9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8398877aeea2236506a8c677.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974121;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_662ec438d88ab2eeddd3f1c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_1fb130b8ad18a6fd2131186c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_a49eed7d8ccbfdd9552a647e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.047852;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_1ffe96f1fb33ffde341eff6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.004395;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_5600cb98df10b391a77cbf80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747070;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_376d1f56f21231cbbde7a80b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.004395;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_9f39fbcb0357b335ffcf7df9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_4be01de28c16a00d14cde24e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_1311b463e375b5a164dc8b7b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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;}
.ma{transform:matrix(0.000000,-0.194445,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.194445,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.194445,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.215910,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.215910,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.215910,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.223215,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.223215,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.223215,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.136362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136362,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.199225,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.199225,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.199225,0.000000,-0.079050,0.237173,0,0);}
.md{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209460,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.231483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231483,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1a{transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238637,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);}
.m1e{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-1.392000px;}
.ls29{letter-spacing:-1.032000px;}
.ls3d{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.870000px;}
.ls2{letter-spacing:-0.768000px;}
.ls3a{letter-spacing:-0.733641px;}
.ls23{letter-spacing:-0.624000px;}
.ls6{letter-spacing:-0.612000px;}
.ls31{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.588000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.480661px;}
.ls22{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.420000px;}
.ls26{letter-spacing:-0.408000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.336000px;}
.ls1f{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.087000px;}
.ls33{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.031740px;}
.ls28{letter-spacing:0.168000px;}
.ls1b{letter-spacing:0.253200px;}
.ls9{letter-spacing:0.276000px;}
.ls7{letter-spacing:0.286709px;}
.ls2b{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.360043px;}
.ls3b{letter-spacing:0.366000px;}
.ls21{letter-spacing:0.432000px;}
.ls3c{letter-spacing:0.444000px;}
.lsc{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.531257px;}
.ls27{letter-spacing:0.552000px;}
.ls4{letter-spacing:0.553200px;}
.ls38{letter-spacing:0.588000px;}
.ls34{letter-spacing:0.594000px;}
.ls30{letter-spacing:0.612000px;}
.ls2c{letter-spacing:0.624000px;}
.ls10{letter-spacing:0.684000px;}
.ls8{letter-spacing:0.756000px;}
.ls2f{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.972000px;}
.ls11{letter-spacing:1.188000px;}
.ls37{letter-spacing:1.224000px;}
.ls16{letter-spacing:1.368000px;}
.ls25{letter-spacing:1.464000px;}
.lsa{letter-spacing:1.596000px;}
.ls17{letter-spacing:1.674000px;}
.ls1c{letter-spacing:1.722000px;}
.ls36{letter-spacing:1.788000px;}
.lse{letter-spacing:1.794000px;}
.lsf{letter-spacing:2.196000px;}
.ls12{letter-spacing:2.238000px;}
.lsb{letter-spacing:2.316000px;}
.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;}
}
.ws6{word-spacing:-29.886000px;}
.ws8{word-spacing:-28.608000px;}
.ws7{word-spacing:-27.888000px;}
.ws1{word-spacing:-27.331800px;}
.ws5{word-spacing:-26.422800px;}
.ws0{word-spacing:-25.599600px;}
.ws1a{word-spacing:-22.824000px;}
.wsd{word-spacing:-20.238000px;}
.wsa{word-spacing:-20.196000px;}
.ws9{word-spacing:-19.794000px;}
.ws15{word-spacing:-19.464000px;}
.ws2{word-spacing:-19.333200px;}
.wsc{word-spacing:-19.188000px;}
.ws19{word-spacing:-18.973476px;}
.ws3{word-spacing:-18.780000px;}
.wsb{word-spacing:-18.684000px;}
.ws1c{word-spacing:-18.624000px;}
.ws18{word-spacing:-18.552000px;}
.ws29{word-spacing:-18.504000px;}
.ws1b{word-spacing:-18.432000px;}
.ws12{word-spacing:-18.420000px;}
.wsf{word-spacing:-18.360000px;}
.ws1d{word-spacing:-18.168000px;}
.ws10{word-spacing:-18.060000px;}
.wse{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.880000px;}
.ws1f{word-spacing:-17.856000px;}
.ws28{word-spacing:-17.808000px;}
.ws1e{word-spacing:-17.664000px;}
.ws11{word-spacing:-17.640000px;}
.ws17{word-spacing:-17.592000px;}
.ws16{word-spacing:-17.520000px;}
.ws13{word-spacing:-17.376000px;}
.ws2a{word-spacing:-17.064000px;}
.ws22{word-spacing:-15.294000px;}
.ws25{word-spacing:-15.288000px;}
.ws20{word-spacing:-14.112000px;}
.ws24{word-spacing:-14.094000px;}
.ws27{word-spacing:-14.088000px;}
.ws26{word-spacing:-13.500000px;}
.ws23{word-spacing:-13.488000px;}
.ws21{word-spacing:-12.912000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-13.950044px;}
._15{margin-left:-10.189170px;}
._13{margin-left:-8.899133px;}
._14{margin-left:-7.094150px;}
._10{margin-left:-4.860000px;}
._4{margin-left:-3.450578px;}
._3{margin-left:-2.190000px;}
._5{margin-left:-1.179156px;}
._1{width:1.314000px;}
._6{width:2.394000px;}
._2{width:3.712496px;}
._7{width:4.788386px;}
._f{width:6.636387px;}
._a{width:8.685590px;}
._8{width:9.978770px;}
._9{width:11.009269px;}
._b{width:12.372653px;}
._d{width:14.034807px;}
._c{width:15.176993px;}
._e{width:19.351184px;}
._16{width:198.030000px;}
._11{width:1256.850000px;}
._0{width:2276.100000px;}
.fc1{color:rgb(151,153,154);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:6.000000px;}
.fs7{font-size:48.000000px;}
.fs11{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fse{font-size:66.000000px;}
.fs8{font-size:69.600000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:75.893905px;}
.fs10{font-size:78.000000px;}
.fsb{font-size:84.000000px;}
.fs1{font-size:87.600000px;}
.fsc{font-size:96.000000px;}
.fs9{font-size:99.600000px;}
.fs2{font-size:102.000000px;}
.fs3{font-size:105.600000px;}
.fs4{font-size:120.000000px;}
.fsa{font-size:150.000000px;}
.fs5{font-size:156.000000px;}
.yd7{bottom:-0.299925px;}
.y0{bottom:0.000000px;}
.y25{bottom:1.500000px;}
.y187{bottom:3.285000px;}
.y13a{bottom:3.300000px;}
.y157{bottom:3.315000px;}
.y13e{bottom:3.600000px;}
.y135{bottom:3.615000px;}
.y18d{bottom:4.185000px;}
.y196{bottom:4.200000px;}
.y1a1{bottom:4.485000px;}
.ye6{bottom:4.500000px;}
.y185{bottom:4.507500px;}
.y60{bottom:4.800000px;}
.y163{bottom:5.100000px;}
.y12a{bottom:5.115000px;}
.y179{bottom:7.200000px;}
.y155{bottom:10.215000px;}
.y1aa{bottom:13.800000px;}
.y14a{bottom:18.885000px;}
.y139{bottom:18.900000px;}
.y134{bottom:18.915000px;}
.y145{bottom:19.200000px;}
.y159{bottom:19.215000px;}
.y1a5{bottom:19.245000px;}
.y138{bottom:20.100000px;}
.y18c{bottom:20.685000px;}
.y198{bottom:20.700000px;}
.y1a0{bottom:20.985000px;}
.y18b{bottom:21.000000px;}
.y184{bottom:21.007500px;}
.y176{bottom:21.030000px;}
.y1a7{bottom:21.600000px;}
.y178{bottom:22.800000px;}
.y2f{bottom:24.937500px;}
.y154{bottom:25.845000px;}
.y23{bottom:26.437500px;}
.y15f{bottom:29.400000px;}
.y5e{bottom:31.800000px;}
.y15b{bottom:34.485000px;}
.y133{bottom:34.500000px;}
.y1a3{bottom:34.515000px;}
.y1a4{bottom:34.545000px;}
.y144{bottom:34.800000px;}
.y137{bottom:35.445000px;}
.y19f{bottom:37.485000px;}
.y195{bottom:37.500000px;}
.y183{bottom:37.507500px;}
.y175{bottom:37.530000px;}
.y197{bottom:37.800000px;}
.y177{bottom:38.400000px;}
.y153{bottom:41.445000px;}
.y149{bottom:50.085000px;}
.y14e{bottom:50.100000px;}
.y132{bottom:50.115000px;}
.y143{bottom:50.145000px;}
.ye7{bottom:51.337500px;}
.y5f{bottom:51.637500px;}
.y22{bottom:52.237500px;}
.y182{bottom:53.407500px;}
.y19e{bottom:53.985000px;}
.y194{bottom:54.000000px;}
.y174{bottom:54.030000px;}
.y152{bottom:57.045000px;}
.y5d{bottom:57.937500px;}
.ye9{bottom:59.737500px;}
.y61{bottom:60.037500px;}
.y15e{bottom:61.800000px;}
.y148{bottom:65.385000px;}
.y14d{bottom:65.445000px;}
.y131{bottom:65.700000px;}
.y142{bottom:65.745000px;}
.y181{bottom:68.737500px;}
.y193{bottom:70.500000px;}
.y173{bottom:70.530000px;}
.y5c{bottom:75.937500px;}
.y16d{bottom:77.145000px;}
.y130{bottom:81.000000px;}
.y14c{bottom:81.030000px;}
.y141{bottom:81.345000px;}
.y180{bottom:84.337500px;}
.y192{bottom:86.445000px;}
.y30{bottom:86.700000px;}
.y19d{bottom:87.330000px;}
.y172{bottom:87.345000px;}
.y19c{bottom:87.630000px;}
.y16c{bottom:92.730000px;}
.y5b{bottom:93.937500px;}
.y21{bottom:95.137500px;}
.y12f{bottom:96.615000px;}
.y140{bottom:96.945000px;}
.y17f{bottom:99.937500px;}
.y191{bottom:102.030000px;}
.y171{bottom:103.845000px;}
.y16b{bottom:108.345000px;}
.y13b{bottom:109.537500px;}
.y12e{bottom:112.200000px;}
.y5a{bottom:112.237500px;}
.yb4{bottom:112.837500px;}
.y17a{bottom:113.737500px;}
.y17e{bottom:115.537500px;}
.y190{bottom:117.345000px;}
.y1df{bottom:117.637500px;}
.y170{bottom:120.345000px;}
.yf9{bottom:122.437500px;}
.y1b9{bottom:123.337500px;}
.y16a{bottom:123.645000px;}
.y20{bottom:129.937500px;}
.y59{bottom:130.237500px;}
.y125{bottom:132.337500px;}
.y18f{bottom:132.945000px;}
.y119{bottom:133.237500px;}
.y16f{bottom:136.845000px;}
.y169{bottom:139.230000px;}
.y1de{bottom:139.237500px;}
.yb3{bottom:141.637500px;}
.y17d{bottom:145.537500px;}
.y58{bottom:148.237500px;}
.y150{bottom:151.830000px;}
.y16e{bottom:153.345000px;}
.yf8{bottom:154.830000px;}
.y168{bottom:154.845000px;}
.y1b8{bottom:155.730000px;}
.y13f{bottom:156.630000px;}
.y1f{bottom:164.730000px;}
.y124{bottom:164.745000px;}
.y118{bottom:165.630000px;}
.y57{bottom:166.545000px;}
.yb2{bottom:170.145000px;}
.y167{bottom:170.430000px;}
.y1dd{bottom:172.830000px;}
.y1be{bottom:176.430000px;}
.y17b{bottom:179.137500px;}
.y56{bottom:184.545000px;}
.y32{bottom:185.475000px;}
.yf7{bottom:187.245000px;}
.y1b7{bottom:188.130000px;}
.y13c{bottom:191.137500px;}
.y12c{bottom:192.330000px;}
.y1dc{bottom:194.445000px;}
.y123{bottom:197.145000px;}
.y19a{bottom:197.775000px;}
.y117{bottom:198.045000px;}
.yb1{bottom:199.530000px;}
.y1e{bottom:199.575000px;}
.y55{bottom:202.530000px;}
.y2a{bottom:205.245000px;}
.y1db{bottom:216.075000px;}
.y189{bottom:217.245000px;}
.yf6{bottom:219.675000px;}
.y1b6{bottom:220.575000px;}
.y54{bottom:220.875000px;}
.y165{bottom:221.430000px;}
.y2b{bottom:223.530000px;}
.y122{bottom:229.575000px;}
.y116{bottom:230.475000px;}
.y1d{bottom:234.375000px;}
.y147{bottom:237.945000px;}
.y53{bottom:238.875000px;}
.yb0{bottom:242.175000px;}
.y1da{bottom:249.675000px;}
.yf5{bottom:252.075000px;}
.y1b5{bottom:253.275000px;}
.y52{bottom:257.175000px;}
.y121{bottom:262.575000px;}
.y115{bottom:262.875000px;}
.yaf{bottom:263.475000px;}
.y13d{bottom:266.175000px;}
.y26{bottom:268.245000px;}
.y1c{bottom:269.175000px;}
.y1d9{bottom:271.275000px;}
.y17c{bottom:273.675000px;}
.y51{bottom:275.175000px;}
.yf4{bottom:284.475000px;}
.yae{bottom:284.775000px;}
.y1b4{bottom:285.675000px;}
.y27{bottom:286.545000px;}
.y50{bottom:294.375000px;}
.y120{bottom:294.675000px;}
.y114{bottom:295.275000px;}
.y1b{bottom:304.275000px;}
.y1d8{bottom:304.875000px;}
.y164{bottom:305.475000px;}
.y2c{bottom:305.775000px;}
.yad{bottom:306.075000px;}
.y12b{bottom:313.575000px;}
.y2d{bottom:314.175000px;}
.yf3{bottom:316.875000px;}
.y1b3{bottom:318.075000px;}
.y4f{bottom:320.775000px;}
.y1d7{bottom:326.475000px;}
.y11f{bottom:327.075000px;}
.yac{bottom:327.375000px;}
.y113{bottom:327.675000px;}
.y1a{bottom:339.075000px;}
.y136{bottom:345.375000px;}
.y31{bottom:346.275000px;}
.y4e{bottom:347.175000px;}
.y1d6{bottom:348.075000px;}
.yab{bottom:348.675000px;}
.y88{bottom:349.275000px;}
.y1b2{bottom:350.475000px;}
.y166{bottom:356.475000px;}
.y112{bottom:360.075000px;}
.y11e{bottom:360.375000px;}
.y28{bottom:363.375000px;}
.yaa{bottom:370.005000px;}
.y29{bottom:372.075000px;}
.y19{bottom:373.920000px;}
.y87{bottom:381.405000px;}
.yf2{bottom:381.705000px;}
.y1b1{bottom:382.920000px;}
.y4d{bottom:390.420000px;}
.ya9{bottom:391.320000px;}
.y111{bottom:392.520000px;}
.y11d{bottom:393.120000px;}
.y12d{bottom:393.705000px;}
.y1d5{bottom:403.320000px;}
.y18{bottom:408.720000px;}
.ya8{bottom:412.620000px;}
.y86{bottom:413.820000px;}
.yf1{bottom:414.120000px;}
.y1b0{bottom:415.320000px;}
.y4c{bottom:416.505000px;}
.y110{bottom:424.920000px;}
.ya7{bottom:433.920000px;}
.y1bd{bottom:435.705000px;}
.y17{bottom:443.505000px;}
.y4b{bottom:445.620000px;}
.y85{bottom:445.905000px;}
.yf0{bottom:446.505000px;}
.y1af{bottom:447.705000px;}
.ya6{bottom:455.205000px;}
.y10f{bottom:457.320000px;}
.y1d4{bottom:458.505000px;}
.y2e{bottom:467.805000px;}
.y1f3{bottom:468.120000px;}
.y4a{bottom:472.905000px;}
.ya5{bottom:476.505000px;}
.y84{bottom:478.005000px;}
.y16{bottom:478.320000px;}
.yef{bottom:478.920000px;}
.y1ae{bottom:480.120000px;}
.y10e{bottom:489.705000px;}
.ya4{bottom:497.820000px;}
.y1d3{bottom:501.720000px;}
.y49{bottom:502.005000px;}
.y83{bottom:510.120000px;}
.yee{bottom:511.320000px;}
.y1ad{bottom:512.505000px;}
.y15{bottom:513.120000px;}
.y129{bottom:518.505000px;}
.ya3{bottom:519.105000px;}
.y10d{bottom:522.120000px;}
.y1d2{bottom:535.350000px;}
.y162{bottom:539.550000px;}
.ya2{bottom:540.450000px;}
.y128{bottom:541.950000px;}
.y82{bottom:542.250000px;}
.yed{bottom:543.750000px;}
.y1ac{bottom:544.950000px;}
.y48{bottom:546.450000px;}
.y14{bottom:547.950000px;}
.y10c{bottom:554.550000px;}
.y1d1{bottom:556.950000px;}
.y127{bottom:560.550000px;}
.ya1{bottom:561.750000px;}
.y161{bottom:562.950000px;}
.y1bc{bottom:565.350000px;}
.y1f2{bottom:566.550000px;}
.y24{bottom:567.450000px;}
.y81{bottom:574.350000px;}
.yec{bottom:576.150000px;}
.y1ab{bottom:577.950000px;}
.y1d0{bottom:578.550000px;}
.y160{bottom:581.550000px;}
.y13{bottom:582.750000px;}
.ya0{bottom:583.050000px;}
.y10b{bottom:586.950000px;}
.y1ba{bottom:587.550000px;}
.y126{bottom:588.450000px;}
.y1a9{bottom:595.950000px;}
.y15d{bottom:597.450000px;}
.y1f1{bottom:600.150000px;}
.y9f{bottom:604.350000px;}
.y80{bottom:606.450000px;}
.yc7{bottom:608.550000px;}
.y1cf{bottom:612.150000px;}
.y12{bottom:617.850000px;}
.y47{bottom:618.750000px;}
.y10a{bottom:619.350000px;}
.y1f0{bottom:621.750000px;}
.y9e{bottom:625.650000px;}
.y1a8{bottom:632.250000px;}
.y1ce{bottom:633.750000px;}
.y7f{bottom:638.550000px;}
.yc6{bottom:640.950000px;}
.y1ef{bottom:643.350000px;}
.y9d{bottom:646.950000px;}
.y1a6{bottom:648.450000px;}
.y109{bottom:651.750000px;}
.y11{bottom:652.650000px;}
.y46{bottom:655.050000px;}
.y1cd{bottom:655.350000px;}
.ye4{bottom:661.050000px;}
.yd6{bottom:664.650000px;}
.y9c{bottom:668.250000px;}
.y7e{bottom:670.650000px;}
.yc5{bottom:673.350000px;}
.y1cc{bottom:676.950000px;}
.y15c{bottom:677.850000px;}
.y108{bottom:684.150000px;}
.y199{bottom:684.450000px;}
.y10{bottom:687.450000px;}
.y9b{bottom:689.550000px;}
.y45{bottom:691.350000px;}
.y15a{bottom:694.095000px;}
.y1bb{bottom:694.980000px;}
.yd5{bottom:697.095000px;}
.y1ee{bottom:698.580000px;}
.ye3{bottom:702.195000px;}
.y7d{bottom:703.095000px;}
.yc4{bottom:705.780000px;}
.y1cb{bottom:710.595000px;}
.y9a{bottom:710.895000px;}
.y107{bottom:716.595000px;}
.y1ed{bottom:720.195000px;}
.yf{bottom:723.195000px;}
.y44{bottom:729.195000px;}
.yd4{bottom:729.495000px;}
.y1a2{bottom:731.880000px;}
.y99{bottom:732.195000px;}
.ye2{bottom:734.595000px;}
.y7c{bottom:735.195000px;}
.yc3{bottom:738.195000px;}
.y158{bottom:741.480000px;}
.y14f{bottom:741.495000px;}
.y106{bottom:748.980000px;}
.y6f{bottom:752.280000px;}
.y98{bottom:753.495000px;}
.y1ec{bottom:753.780000px;}
.ye{bottom:755.280000px;}
.y43{bottom:761.295000px;}
.yd3{bottom:761.880000px;}
.y1ca{bottom:765.780000px;}
.y7b{bottom:767.280000px;}
.yc2{bottom:770.580000px;}
.y97{bottom:774.795000px;}
.y1eb{bottom:775.380000px;}
.ye1{bottom:775.695000px;}
.y6e{bottom:780.195000px;}
.y105{bottom:781.395000px;}
.y11c{bottom:781.995000px;}
.yd{bottom:787.080000px;}
.y1c9{bottom:787.380000px;}
.y42{bottom:793.695000px;}
.yd2{bottom:794.295000px;}
.y19b{bottom:794.595000px;}
.y96{bottom:796.080000px;}
.y1ea{bottom:796.995000px;}
.y6d{bottom:797.880000px;}
.y7a{bottom:799.380000px;}
.yc1{bottom:802.980000px;}
.y156{bottom:804.480000px;}
.ye0{bottom:808.080000px;}
.y104{bottom:813.795000px;}
.y95{bottom:817.380000px;}
.yc{bottom:819.195000px;}
.y1c8{bottom:820.995000px;}
.y41{bottom:823.380000px;}
.yd1{bottom:826.695000px;}
.y1e9{bottom:830.580000px;}
.y79{bottom:831.495000px;}
.yc0{bottom:835.395000px;}
.y151{bottom:836.280000px;}
.y94{bottom:838.695000px;}
.ydf{bottom:840.195000px;}
.y1c7{bottom:842.580000px;}
.y103{bottom:846.195000px;}
.y1e8{bottom:852.195000px;}
.y6c{bottom:853.695000px;}
.y40{bottom:853.995000px;}
.yd0{bottom:859.125000px;}
.y93{bottom:860.025000px;}
.y78{bottom:863.625000px;}
.y1c6{bottom:864.225000px;}
.yb{bottom:867.525000px;}
.ybf{bottom:867.825000px;}
.yde{bottom:872.625000px;}
.y6b{bottom:873.825000px;}
.y102{bottom:878.625000px;}
.y92{bottom:881.325000px;}
.y3f{bottom:890.925000px;}
.ycf{bottom:891.525000px;}
.y188{bottom:894.825000px;}
.y77{bottom:895.725000px;}
.y1c5{bottom:897.825000px;}
.ya{bottom:898.425000px;}
.ybe{bottom:900.225000px;}
.y91{bottom:902.625000px;}
.ydd{bottom:904.725000px;}
.y146{bottom:905.925000px;}
.y1e7{bottom:907.425000px;}
.y101{bottom:911.025000px;}
.y3e{bottom:911.625000px;}
.y6a{bottom:911.925000px;}
.y1c4{bottom:919.425000px;}
.yce{bottom:923.925000px;}
.y76{bottom:927.825000px;}
.y1e6{bottom:929.025000px;}
.y3d{bottom:929.925000px;}
.y9{bottom:930.525000px;}
.ybd{bottom:932.625000px;}
.y90{bottom:933.225000px;}
.ydc{bottom:937.125000px;}
.y1c3{bottom:941.025000px;}
.y100{bottom:943.425000px;}
.y11a{bottom:944.025000px;}
.y69{bottom:944.325000px;}
.y18e{bottom:945.225000px;}
.y3c{bottom:947.925000px;}
.y1e5{bottom:950.625000px;}
.ycd{bottom:956.325000px;}
.y75{bottom:960.225000px;}
.y8{bottom:961.425000px;}
.y1c2{bottom:962.625000px;}
.ybc{bottom:965.025000px;}
.y8f{bottom:965.625000px;}
.y3b{bottom:965.925000px;}
.y14b{bottom:968.925000px;}
.ydb{bottom:969.525000px;}
.yff{bottom:975.825000px;}
.y68{bottom:976.725000px;}
.y3a{bottom:984.225000px;}
.ycc{bottom:988.725000px;}
.y7{bottom:992.025000px;}
.y74{bottom:992.325000px;}
.y1c1{bottom:996.225000px;}
.ybb{bottom:997.425000px;}
.y8e{bottom:998.025000px;}
.y67{bottom:998.325000px;}
.y39{bottom:1002.225000px;}
.y1e4{bottom:1005.825000px;}
.yfe{bottom:1008.225000px;}
.yda{bottom:1010.625000px;}
.y1c0{bottom:1017.825000px;}
.y38{bottom:1020.255000px;}
.y66{bottom:1020.870000px;}
.ycb{bottom:1021.170000px;}
.y6{bottom:1022.925000px;}
.y73{bottom:1024.455000px;}
.y1e3{bottom:1027.455000px;}
.yba{bottom:1029.870000px;}
.y8d{bottom:1030.455000px;}
.y37{bottom:1038.570000px;}
.yfd{bottom:1040.670000px;}
.y1bf{bottom:1051.455000px;}
.yb9{bottom:1052.070000px;}
.yca{bottom:1053.570000px;}
.y5{bottom:1053.870000px;}
.y72{bottom:1056.570000px;}
.y36{bottom:1058.670000px;}
.y1e2{bottom:1061.070000px;}
.y65{bottom:1061.955000px;}
.yeb{bottom:1062.255000px;}
.y8c{bottom:1062.870000px;}
.yfc{bottom:1073.070000px;}
.yb8{bottom:1073.670000px;}
.yc9{bottom:1076.670000px;}
.y1e1{bottom:1082.670000px;}
.y4{bottom:1084.170000px;}
.y71{bottom:1088.670000px;}
.y18a{bottom:1091.070000px;}
.yd9{bottom:1093.455000px;}
.y64{bottom:1094.070000px;}
.yea{bottom:1094.670000px;}
.yc8{bottom:1094.955000px;}
.yb7{bottom:1095.255000px;}
.y8b{bottom:1095.570000px;}
.y1e0{bottom:1104.255000px;}
.yfb{bottom:1105.455000px;}
.y11b{bottom:1106.070000px;}
.y3{bottom:1109.370000px;}
.y70{bottom:1110.870000px;}
.y63{bottom:1116.255000px;}
.yd8{bottom:1116.570000px;}
.yb6{bottom:1116.870000px;}
.y35{bottom:1117.170000px;}
.y8a{bottom:1118.670000px;}
.y186{bottom:1124.970000px;}
.yfa{bottom:1138.170000px;}
.y62{bottom:1138.455000px;}
.yb5{bottom:1138.755000px;}
.y34{bottom:1139.370000px;}
.y89{bottom:1139.955000px;}
.y1f4{bottom:1147.455000px;}
.y2{bottom:1151.070000px;}
.y33{bottom:1154.670000px;}
.y1{bottom:1164.870000px;}
.ye5{bottom:1188.600000px;}
.ye8{bottom:1209.300000px;}
.h20{height:4.910156px;}
.h4c{height:15.600000px;}
.h39{height:15.637500px;}
.h3b{height:18.600000px;}
.h28{height:18.637500px;}
.h22{height:22.800000px;}
.h18{height:24.600000px;}
.h42{height:30.885000px;}
.h2d{height:30.900000px;}
.h40{height:31.200000px;}
.h44{height:33.000000px;}
.h4b{height:35.400000px;}
.h4d{height:36.300000px;}
.h10{height:39.281250px;}
.h1c{height:44.238281px;}
.h1e{height:45.673828px;}
.h2f{height:46.500000px;}
.h4a{height:46.537500px;}
.h37{height:46.785000px;}
.h2c{height:47.437500px;}
.h9{height:49.101562px;}
.he{height:49.101576px;}
.h47{height:49.800000px;}
.h1f{height:50.241211px;}
.h3e{height:50.400000px;}
.h1d{height:51.316406px;}
.h2a{height:52.998047px;}
.h23{height:54.011719px;}
.h38{height:54.421875px;}
.hb{height:54.808594px;}
.h25{height:55.558594px;}
.h12{height:56.957812px;}
.h1{height:58.886719px;}
.hc{height:58.921875px;}
.h1a{height:60.609375px;}
.h19{height:61.382812px;}
.h34{height:62.100000px;}
.h24{height:63.887252px;}
.h1b{height:64.702519px;}
.h27{height:64.743164px;}
.h46{height:64.775391px;}
.h21{height:65.660156px;}
.h26{height:66.515625px;}
.h2{height:66.683789px;}
.h16{height:68.742188px;}
.h36{height:69.037500px;}
.h3{height:71.688281px;}
.h6{height:77.645508px;}
.h17{height:78.562500px;}
.h3a{height:80.400000px;}
.h13{height:81.508594px;}
.h4{height:83.472656px;}
.h5{height:86.418750px;}
.hd{height:89.100000px;}
.h7{height:91.347656px;}
.h32{height:93.000000px;}
.h33{height:93.037500px;}
.h14{height:98.203125px;}
.h49{height:99.622500px;}
.h30{height:108.937500px;}
.h8{height:118.751953px;}
.h15{height:122.753906px;}
.h2b{height:124.200000px;}
.h41{height:127.537500px;}
.h45{height:144.937500px;}
.h35{height:163.830000px;}
.h3d{height:182.475000px;}
.h3f{height:191.130000px;}
.hf{height:202.275000px;}
.h2e{height:203.145000px;}
.h29{height:204.345000px;}
.h48{height:209.775000px;}
.h43{height:229.245000px;}
.h3c{height:233.475000px;}
.h31{height:249.945000px;}
.ha{height:475.005000px;}
.h11{height:1263.000000px;}
.h0{height:1288.500000px;}
.w8{width:19.200000px;}
.w3{width:21.000000px;}
.w4{width:24.600000px;}
.wa{width:26.737500px;}
.w2{width:47.100000px;}
.wc{width:159.630000px;}
.wb{width:201.975000px;}
.wf{width:305.820000px;}
.wd{width:327.120000px;}
.w9{width:424.350000px;}
.w10{width:667.425000px;}
.we{width:688.725000px;}
.w7{width:892.500000px;}
.w6{width:893.250000px;}
.w5{width:893.400000px;}
.w1{width:1896.750000px;}
.w0{width:1896.900000px;}
.x0{left:0.000000px;}
.x55{left:1.500000px;}
.x27{left:4.500000px;}
.x61{left:7.800000px;}
.x28{left:12.300000px;}
.xe{left:17.100000px;}
.xb{left:20.400000px;}
.xc{left:45.000000px;}
.x64{left:60.907500px;}
.x29{left:97.537500px;}
.x2a{left:106.237500px;}
.x31{left:116.437500px;}
.x32{left:120.337500px;}
.x52{left:124.237500px;}
.x11{left:126.037500px;}
.x4b{left:131.437500px;}
.x33{left:136.237500px;}
.x65{left:138.337500px;}
.x54{left:142.237500px;}
.x34{left:149.737500px;}
.x48{left:159.345000px;}
.x35{left:160.530000px;}
.x49{left:166.530000px;}
.x4d{left:168.030000px;}
.x50{left:173.130000px;}
.x36{left:176.775000px;}
.x37{left:179.775000px;}
.x38{left:185.475000px;}
.x71{left:194.475000px;}
.x5b{left:198.375000px;}
.x92{left:208.875000px;}
.x72{left:212.175000px;}
.x39{left:214.875000px;}
.x99{left:216.975000px;}
.x78{left:223.575000px;}
.x3a{left:225.675000px;}
.x79{left:232.575000px;}
.x9a{left:234.975000px;}
.x91{left:237.375000px;}
.x6d{left:245.475000px;}
.x3b{left:248.775000px;}
.x6e{left:254.175000px;}
.x3c{left:259.575000px;}
.x6f{left:263.175000px;}
.x4e{left:267.975000px;}
.x3d{left:272.475000px;}
.x2{left:276.030000px;}
.x3e{left:277.875000px;}
.x7b{left:281.475000px;}
.x4c{left:288.675000px;}
.x7c{left:299.220000px;}
.x62{left:300.420000px;}
.x73{left:314.520000px;}
.x57{left:316.920000px;}
.x3f{left:322.320000px;}
.x40{left:334.320000px;}
.x41{left:337.620000px;}
.x8c{left:343.920000px;}
.x4a{left:346.320000px;}
.x12{left:347.520000px;}
.x42{left:350.220000px;}
.x43{left:353.220000px;}
.x58{left:356.505000px;}
.x44{left:367.020000px;}
.x8d{left:370.320000px;}
.x23{left:379.620000px;}
.x6a{left:381.405000px;}
.x45{left:384.720000px;}
.x46{left:388.320000px;}
.x6b{left:390.120000px;}
.x93{left:391.905000px;}
.x18{left:401.250000px;}
.x1a{left:404.550000px;}
.x69{left:408.120000px;}
.x9c{left:410.250000px;}
.x19{left:411.750000px;}
.x4f{left:414.150000px;}
.x88{left:417.150000px;}
.x25{left:419.850000px;}
.x5a{left:424.950000px;}
.x1b{left:426.150000px;}
.x8e{left:427.950000px;}
.x26{left:436.950000px;}
.x47{left:446.250000px;}
.x63{left:460.050000px;}
.x5e{left:482.250000px;}
.x7e{left:487.650000px;}
.x7f{left:496.350000px;}
.x1f{left:498.150000px;}
.x59{left:501.150000px;}
.x14{left:503.550000px;}
.x74{left:511.350000px;}
.x60{left:514.650000px;}
.x5f{left:517.650000px;}
.x75{left:520.050000px;}
.x1c{left:529.080000px;}
.x96{left:533.880000px;}
.x76{left:537.795000px;}
.x1d{left:539.595000px;}
.x97{left:542.580000px;}
.x81{left:548.880000px;}
.x66{left:552.195000px;}
.x13{left:557.895000px;}
.x2f{left:560.880000px;}
.x2c{left:562.995000px;}
.x9d{left:564.795000px;}
.x82{left:566.880000px;}
.x77{left:568.095000px;}
.x10{left:571.395000px;}
.x98{left:575.280000px;}
.x7a{left:580.380000px;}
.x6c{left:584.280000px;}
.x67{left:590.280000px;}
.x5c{left:593.880000px;}
.x70{left:596.280000px;}
.x30{left:603.195000px;}
.x15{left:608.295000px;}
.x86{left:610.995000px;}
.x2d{left:615.780000px;}
.x87{left:619.695000px;}
.x89{left:629.280000px;}
.x8f{left:630.780000px;}
.x21{left:637.125000px;}
.x83{left:640.380000px;}
.x80{left:644.625000px;}
.x8a{left:646.725000px;}
.x94{left:647.925000px;}
.x84{left:649.125000px;}
.x68{left:653.025000px;}
.x90{left:657.525000px;}
.x85{left:667.125000px;}
.x95{left:674.325000px;}
.x5d{left:684.825000px;}
.x8b{left:688.125000px;}
.x2e{left:690.825000px;}
.x9b{left:693.225000px;}
.x7d{left:699.525000px;}
.x20{left:707.925000px;}
.x16{left:710.025000px;}
.x2b{left:713.325000px;}
.x9e{left:725.025000px;}
.x17{left:731.625000px;}
.x56{left:743.625000px;}
.x1e{left:752.370000px;}
.x53{left:783.870000px;}
.x51{left:786.255000px;}
.x24{left:832.455000px;}
.x22{left:842.670000px;}
.xa{left:922.950000px;}
.xd{left:935.850000px;}
.xf{left:939.450000px;}
.x1{left:975.750000px;}
.x6{left:1324.095000px;}
.x3{left:1326.795000px;}
.x9{left:1397.895000px;}
.x5{left:1483.125000px;}
.x4{left:1536.225000px;}
.x7{left:1584.825000px;}
.x8{left:1612.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-1.237333pt;}
.ls29{letter-spacing:-0.917333pt;}
.ls3d{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.773333pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls3a{letter-spacing:-0.652125pt;}
.ls23{letter-spacing:-0.554667pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls31{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.522667pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.427255pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls26{letter-spacing:-0.362667pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.298667pt;}
.ls1f{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.077333pt;}
.ls33{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.028213pt;}
.ls28{letter-spacing:0.149333pt;}
.ls1b{letter-spacing:0.225067pt;}
.ls9{letter-spacing:0.245333pt;}
.ls7{letter-spacing:0.254852pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.320038pt;}
.ls3b{letter-spacing:0.325333pt;}
.ls21{letter-spacing:0.384000pt;}
.ls3c{letter-spacing:0.394667pt;}
.lsc{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.472229pt;}
.ls27{letter-spacing:0.490667pt;}
.ls4{letter-spacing:0.491733pt;}
.ls38{letter-spacing:0.522667pt;}
.ls34{letter-spacing:0.528000pt;}
.ls30{letter-spacing:0.544000pt;}
.ls2c{letter-spacing:0.554667pt;}
.ls10{letter-spacing:0.608000pt;}
.ls8{letter-spacing:0.672000pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.864000pt;}
.ls11{letter-spacing:1.056000pt;}
.ls37{letter-spacing:1.088000pt;}
.ls16{letter-spacing:1.216000pt;}
.ls25{letter-spacing:1.301333pt;}
.lsa{letter-spacing:1.418667pt;}
.ls17{letter-spacing:1.488000pt;}
.ls1c{letter-spacing:1.530667pt;}
.ls36{letter-spacing:1.589333pt;}
.lse{letter-spacing:1.594667pt;}
.lsf{letter-spacing:1.952000pt;}
.ls12{letter-spacing:1.989333pt;}
.lsb{letter-spacing:2.058667pt;}
.ws6{word-spacing:-26.565333pt;}
.ws8{word-spacing:-25.429333pt;}
.ws7{word-spacing:-24.789333pt;}
.ws1{word-spacing:-24.294933pt;}
.ws5{word-spacing:-23.486933pt;}
.ws0{word-spacing:-22.755200pt;}
.ws1a{word-spacing:-20.288000pt;}
.wsd{word-spacing:-17.989333pt;}
.wsa{word-spacing:-17.952000pt;}
.ws9{word-spacing:-17.594667pt;}
.ws15{word-spacing:-17.301333pt;}
.ws2{word-spacing:-17.185067pt;}
.wsc{word-spacing:-17.056000pt;}
.ws19{word-spacing:-16.865312pt;}
.ws3{word-spacing:-16.693333pt;}
.wsb{word-spacing:-16.608000pt;}
.ws1c{word-spacing:-16.554667pt;}
.ws18{word-spacing:-16.490667pt;}
.ws29{word-spacing:-16.448000pt;}
.ws1b{word-spacing:-16.384000pt;}
.ws12{word-spacing:-16.373333pt;}
.wsf{word-spacing:-16.320000pt;}
.ws1d{word-spacing:-16.149333pt;}
.ws10{word-spacing:-16.053333pt;}
.wse{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.893333pt;}
.ws1f{word-spacing:-15.872000pt;}
.ws28{word-spacing:-15.829333pt;}
.ws1e{word-spacing:-15.701333pt;}
.ws11{word-spacing:-15.680000pt;}
.ws17{word-spacing:-15.637333pt;}
.ws16{word-spacing:-15.573333pt;}
.ws13{word-spacing:-15.445333pt;}
.ws2a{word-spacing:-15.168000pt;}
.ws22{word-spacing:-13.594667pt;}
.ws25{word-spacing:-13.589333pt;}
.ws20{word-spacing:-12.544000pt;}
.ws24{word-spacing:-12.528000pt;}
.ws27{word-spacing:-12.522667pt;}
.ws26{word-spacing:-12.000000pt;}
.ws23{word-spacing:-11.989333pt;}
.ws21{word-spacing:-11.477333pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-12.400039pt;}
._15{margin-left:-9.057040pt;}
._13{margin-left:-7.910340pt;}
._14{margin-left:-6.305911pt;}
._10{margin-left:-4.320000pt;}
._4{margin-left:-3.067180pt;}
._3{margin-left:-1.946667pt;}
._5{margin-left:-1.048138pt;}
._1{width:1.168000pt;}
._6{width:2.128000pt;}
._2{width:3.299996pt;}
._7{width:4.256343pt;}
._f{width:5.899011pt;}
._a{width:7.720525pt;}
._8{width:8.870017pt;}
._9{width:9.786017pt;}
._b{width:10.997913pt;}
._d{width:12.475384pt;}
._c{width:13.490660pt;}
._e{width:17.201052pt;}
._16{width:176.026667pt;}
._11{width:1117.200000pt;}
._0{width:2023.200000pt;}
.fsf{font-size:5.333333pt;}
.fs7{font-size:42.666667pt;}
.fs11{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fse{font-size:58.666667pt;}
.fs8{font-size:61.866667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:67.461249pt;}
.fs10{font-size:69.333333pt;}
.fsb{font-size:74.666667pt;}
.fs1{font-size:77.866667pt;}
.fsc{font-size:85.333333pt;}
.fs9{font-size:88.533333pt;}
.fs2{font-size:90.666667pt;}
.fs3{font-size:93.866667pt;}
.fs4{font-size:106.666667pt;}
.fsa{font-size:133.333333pt;}
.fs5{font-size:138.666667pt;}
.yd7{bottom:-0.266600pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:1.333333pt;}
.y187{bottom:2.920000pt;}
.y13a{bottom:2.933333pt;}
.y157{bottom:2.946667pt;}
.y13e{bottom:3.200000pt;}
.y135{bottom:3.213333pt;}
.y18d{bottom:3.720000pt;}
.y196{bottom:3.733333pt;}
.y1a1{bottom:3.986667pt;}
.ye6{bottom:4.000000pt;}
.y185{bottom:4.006667pt;}
.y60{bottom:4.266667pt;}
.y163{bottom:4.533333pt;}
.y12a{bottom:4.546667pt;}
.y179{bottom:6.400000pt;}
.y155{bottom:9.080000pt;}
.y1aa{bottom:12.266667pt;}
.y14a{bottom:16.786667pt;}
.y139{bottom:16.800000pt;}
.y134{bottom:16.813333pt;}
.y145{bottom:17.066667pt;}
.y159{bottom:17.080000pt;}
.y1a5{bottom:17.106667pt;}
.y138{bottom:17.866667pt;}
.y18c{bottom:18.386667pt;}
.y198{bottom:18.400000pt;}
.y1a0{bottom:18.653333pt;}
.y18b{bottom:18.666667pt;}
.y184{bottom:18.673333pt;}
.y176{bottom:18.693333pt;}
.y1a7{bottom:19.200000pt;}
.y178{bottom:20.266667pt;}
.y2f{bottom:22.166667pt;}
.y154{bottom:22.973333pt;}
.y23{bottom:23.500000pt;}
.y15f{bottom:26.133333pt;}
.y5e{bottom:28.266667pt;}
.y15b{bottom:30.653333pt;}
.y133{bottom:30.666667pt;}
.y1a3{bottom:30.680000pt;}
.y1a4{bottom:30.706667pt;}
.y144{bottom:30.933333pt;}
.y137{bottom:31.506667pt;}
.y19f{bottom:33.320000pt;}
.y195{bottom:33.333333pt;}
.y183{bottom:33.340000pt;}
.y175{bottom:33.360000pt;}
.y197{bottom:33.600000pt;}
.y177{bottom:34.133333pt;}
.y153{bottom:36.840000pt;}
.y149{bottom:44.520000pt;}
.y14e{bottom:44.533333pt;}
.y132{bottom:44.546667pt;}
.y143{bottom:44.573333pt;}
.ye7{bottom:45.633333pt;}
.y5f{bottom:45.900000pt;}
.y22{bottom:46.433333pt;}
.y182{bottom:47.473333pt;}
.y19e{bottom:47.986667pt;}
.y194{bottom:48.000000pt;}
.y174{bottom:48.026667pt;}
.y152{bottom:50.706667pt;}
.y5d{bottom:51.500000pt;}
.ye9{bottom:53.100000pt;}
.y61{bottom:53.366667pt;}
.y15e{bottom:54.933333pt;}
.y148{bottom:58.120000pt;}
.y14d{bottom:58.173333pt;}
.y131{bottom:58.400000pt;}
.y142{bottom:58.440000pt;}
.y181{bottom:61.100000pt;}
.y193{bottom:62.666667pt;}
.y173{bottom:62.693333pt;}
.y5c{bottom:67.500000pt;}
.y16d{bottom:68.573333pt;}
.y130{bottom:72.000000pt;}
.y14c{bottom:72.026667pt;}
.y141{bottom:72.306667pt;}
.y180{bottom:74.966667pt;}
.y192{bottom:76.840000pt;}
.y30{bottom:77.066667pt;}
.y19d{bottom:77.626667pt;}
.y172{bottom:77.640000pt;}
.y19c{bottom:77.893333pt;}
.y16c{bottom:82.426667pt;}
.y5b{bottom:83.500000pt;}
.y21{bottom:84.566667pt;}
.y12f{bottom:85.880000pt;}
.y140{bottom:86.173333pt;}
.y17f{bottom:88.833333pt;}
.y191{bottom:90.693333pt;}
.y171{bottom:92.306667pt;}
.y16b{bottom:96.306667pt;}
.y13b{bottom:97.366667pt;}
.y12e{bottom:99.733333pt;}
.y5a{bottom:99.766667pt;}
.yb4{bottom:100.300000pt;}
.y17a{bottom:101.100000pt;}
.y17e{bottom:102.700000pt;}
.y190{bottom:104.306667pt;}
.y1df{bottom:104.566667pt;}
.y170{bottom:106.973333pt;}
.yf9{bottom:108.833333pt;}
.y1b9{bottom:109.633333pt;}
.y16a{bottom:109.906667pt;}
.y20{bottom:115.500000pt;}
.y59{bottom:115.766667pt;}
.y125{bottom:117.633333pt;}
.y18f{bottom:118.173333pt;}
.y119{bottom:118.433333pt;}
.y16f{bottom:121.640000pt;}
.y169{bottom:123.760000pt;}
.y1de{bottom:123.766667pt;}
.yb3{bottom:125.900000pt;}
.y17d{bottom:129.366667pt;}
.y58{bottom:131.766667pt;}
.y150{bottom:134.960000pt;}
.y16e{bottom:136.306667pt;}
.yf8{bottom:137.626667pt;}
.y168{bottom:137.640000pt;}
.y1b8{bottom:138.426667pt;}
.y13f{bottom:139.226667pt;}
.y1f{bottom:146.426667pt;}
.y124{bottom:146.440000pt;}
.y118{bottom:147.226667pt;}
.y57{bottom:148.040000pt;}
.yb2{bottom:151.240000pt;}
.y167{bottom:151.493333pt;}
.y1dd{bottom:153.626667pt;}
.y1be{bottom:156.826667pt;}
.y17b{bottom:159.233333pt;}
.y56{bottom:164.040000pt;}
.y32{bottom:164.866667pt;}
.yf7{bottom:166.440000pt;}
.y1b7{bottom:167.226667pt;}
.y13c{bottom:169.900000pt;}
.y12c{bottom:170.960000pt;}
.y1dc{bottom:172.840000pt;}
.y123{bottom:175.240000pt;}
.y19a{bottom:175.800000pt;}
.y117{bottom:176.040000pt;}
.yb1{bottom:177.360000pt;}
.y1e{bottom:177.400000pt;}
.y55{bottom:180.026667pt;}
.y2a{bottom:182.440000pt;}
.y1db{bottom:192.066667pt;}
.y189{bottom:193.106667pt;}
.yf6{bottom:195.266667pt;}
.y1b6{bottom:196.066667pt;}
.y54{bottom:196.333333pt;}
.y165{bottom:196.826667pt;}
.y2b{bottom:198.693333pt;}
.y122{bottom:204.066667pt;}
.y116{bottom:204.866667pt;}
.y1d{bottom:208.333333pt;}
.y147{bottom:211.506667pt;}
.y53{bottom:212.333333pt;}
.yb0{bottom:215.266667pt;}
.y1da{bottom:221.933333pt;}
.yf5{bottom:224.066667pt;}
.y1b5{bottom:225.133333pt;}
.y52{bottom:228.600000pt;}
.y121{bottom:233.400000pt;}
.y115{bottom:233.666667pt;}
.yaf{bottom:234.200000pt;}
.y13d{bottom:236.600000pt;}
.y26{bottom:238.440000pt;}
.y1c{bottom:239.266667pt;}
.y1d9{bottom:241.133333pt;}
.y17c{bottom:243.266667pt;}
.y51{bottom:244.600000pt;}
.yf4{bottom:252.866667pt;}
.yae{bottom:253.133333pt;}
.y1b4{bottom:253.933333pt;}
.y27{bottom:254.706667pt;}
.y50{bottom:261.666667pt;}
.y120{bottom:261.933333pt;}
.y114{bottom:262.466667pt;}
.y1b{bottom:270.466667pt;}
.y1d8{bottom:271.000000pt;}
.y164{bottom:271.533333pt;}
.y2c{bottom:271.800000pt;}
.yad{bottom:272.066667pt;}
.y12b{bottom:278.733333pt;}
.y2d{bottom:279.266667pt;}
.yf3{bottom:281.666667pt;}
.y1b3{bottom:282.733333pt;}
.y4f{bottom:285.133333pt;}
.y1d7{bottom:290.200000pt;}
.y11f{bottom:290.733333pt;}
.yac{bottom:291.000000pt;}
.y113{bottom:291.266667pt;}
.y1a{bottom:301.400000pt;}
.y136{bottom:307.000000pt;}
.y31{bottom:307.800000pt;}
.y4e{bottom:308.600000pt;}
.y1d6{bottom:309.400000pt;}
.yab{bottom:309.933333pt;}
.y88{bottom:310.466667pt;}
.y1b2{bottom:311.533333pt;}
.y166{bottom:316.866667pt;}
.y112{bottom:320.066667pt;}
.y11e{bottom:320.333333pt;}
.y28{bottom:323.000000pt;}
.yaa{bottom:328.893333pt;}
.y29{bottom:330.733333pt;}
.y19{bottom:332.373333pt;}
.y87{bottom:339.026667pt;}
.yf2{bottom:339.293333pt;}
.y1b1{bottom:340.373333pt;}
.y4d{bottom:347.040000pt;}
.ya9{bottom:347.840000pt;}
.y111{bottom:348.906667pt;}
.y11d{bottom:349.440000pt;}
.y12d{bottom:349.960000pt;}
.y1d5{bottom:358.506667pt;}
.y18{bottom:363.306667pt;}
.ya8{bottom:366.773333pt;}
.y86{bottom:367.840000pt;}
.yf1{bottom:368.106667pt;}
.y1b0{bottom:369.173333pt;}
.y4c{bottom:370.226667pt;}
.y110{bottom:377.706667pt;}
.ya7{bottom:385.706667pt;}
.y1bd{bottom:387.293333pt;}
.y17{bottom:394.226667pt;}
.y4b{bottom:396.106667pt;}
.y85{bottom:396.360000pt;}
.yf0{bottom:396.893333pt;}
.y1af{bottom:397.960000pt;}
.ya6{bottom:404.626667pt;}
.y10f{bottom:406.506667pt;}
.y1d4{bottom:407.560000pt;}
.y2e{bottom:415.826667pt;}
.y1f3{bottom:416.106667pt;}
.y4a{bottom:420.360000pt;}
.ya5{bottom:423.560000pt;}
.y84{bottom:424.893333pt;}
.y16{bottom:425.173333pt;}
.yef{bottom:425.706667pt;}
.y1ae{bottom:426.773333pt;}
.y10e{bottom:435.293333pt;}
.ya4{bottom:442.506667pt;}
.y1d3{bottom:445.973333pt;}
.y49{bottom:446.226667pt;}
.y83{bottom:453.440000pt;}
.yee{bottom:454.506667pt;}
.y1ad{bottom:455.560000pt;}
.y15{bottom:456.106667pt;}
.y129{bottom:460.893333pt;}
.ya3{bottom:461.426667pt;}
.y10d{bottom:464.106667pt;}
.y1d2{bottom:475.866667pt;}
.y162{bottom:479.600000pt;}
.ya2{bottom:480.400000pt;}
.y128{bottom:481.733333pt;}
.y82{bottom:482.000000pt;}
.yed{bottom:483.333333pt;}
.y1ac{bottom:484.400000pt;}
.y48{bottom:485.733333pt;}
.y14{bottom:487.066667pt;}
.y10c{bottom:492.933333pt;}
.y1d1{bottom:495.066667pt;}
.y127{bottom:498.266667pt;}
.ya1{bottom:499.333333pt;}
.y161{bottom:500.400000pt;}
.y1bc{bottom:502.533333pt;}
.y1f2{bottom:503.600000pt;}
.y24{bottom:504.400000pt;}
.y81{bottom:510.533333pt;}
.yec{bottom:512.133333pt;}
.y1ab{bottom:513.733333pt;}
.y1d0{bottom:514.266667pt;}
.y160{bottom:516.933333pt;}
.y13{bottom:518.000000pt;}
.ya0{bottom:518.266667pt;}
.y10b{bottom:521.733333pt;}
.y1ba{bottom:522.266667pt;}
.y126{bottom:523.066667pt;}
.y1a9{bottom:529.733333pt;}
.y15d{bottom:531.066667pt;}
.y1f1{bottom:533.466667pt;}
.y9f{bottom:537.200000pt;}
.y80{bottom:539.066667pt;}
.yc7{bottom:540.933333pt;}
.y1cf{bottom:544.133333pt;}
.y12{bottom:549.200000pt;}
.y47{bottom:550.000000pt;}
.y10a{bottom:550.533333pt;}
.y1f0{bottom:552.666667pt;}
.y9e{bottom:556.133333pt;}
.y1a8{bottom:562.000000pt;}
.y1ce{bottom:563.333333pt;}
.y7f{bottom:567.600000pt;}
.yc6{bottom:569.733333pt;}
.y1ef{bottom:571.866667pt;}
.y9d{bottom:575.066667pt;}
.y1a6{bottom:576.400000pt;}
.y109{bottom:579.333333pt;}
.y11{bottom:580.133333pt;}
.y46{bottom:582.266667pt;}
.y1cd{bottom:582.533333pt;}
.ye4{bottom:587.600000pt;}
.yd6{bottom:590.800000pt;}
.y9c{bottom:594.000000pt;}
.y7e{bottom:596.133333pt;}
.yc5{bottom:598.533333pt;}
.y1cc{bottom:601.733333pt;}
.y15c{bottom:602.533333pt;}
.y108{bottom:608.133333pt;}
.y199{bottom:608.400000pt;}
.y10{bottom:611.066667pt;}
.y9b{bottom:612.933333pt;}
.y45{bottom:614.533333pt;}
.y15a{bottom:616.973333pt;}
.y1bb{bottom:617.760000pt;}
.yd5{bottom:619.640000pt;}
.y1ee{bottom:620.960000pt;}
.ye3{bottom:624.173333pt;}
.y7d{bottom:624.973333pt;}
.yc4{bottom:627.360000pt;}
.y1cb{bottom:631.640000pt;}
.y9a{bottom:631.906667pt;}
.y107{bottom:636.973333pt;}
.y1ed{bottom:640.173333pt;}
.yf{bottom:642.840000pt;}
.y44{bottom:648.173333pt;}
.yd4{bottom:648.440000pt;}
.y1a2{bottom:650.560000pt;}
.y99{bottom:650.840000pt;}
.ye2{bottom:652.973333pt;}
.y7c{bottom:653.506667pt;}
.yc3{bottom:656.173333pt;}
.y158{bottom:659.093333pt;}
.y14f{bottom:659.106667pt;}
.y106{bottom:665.760000pt;}
.y6f{bottom:668.693333pt;}
.y98{bottom:669.773333pt;}
.y1ec{bottom:670.026667pt;}
.ye{bottom:671.360000pt;}
.y43{bottom:676.706667pt;}
.yd3{bottom:677.226667pt;}
.y1ca{bottom:680.693333pt;}
.y7b{bottom:682.026667pt;}
.yc2{bottom:684.960000pt;}
.y97{bottom:688.706667pt;}
.y1eb{bottom:689.226667pt;}
.ye1{bottom:689.506667pt;}
.y6e{bottom:693.506667pt;}
.y105{bottom:694.573333pt;}
.y11c{bottom:695.106667pt;}
.yd{bottom:699.626667pt;}
.y1c9{bottom:699.893333pt;}
.y42{bottom:705.506667pt;}
.yd2{bottom:706.040000pt;}
.y19b{bottom:706.306667pt;}
.y96{bottom:707.626667pt;}
.y1ea{bottom:708.440000pt;}
.y6d{bottom:709.226667pt;}
.y7a{bottom:710.560000pt;}
.yc1{bottom:713.760000pt;}
.y156{bottom:715.093333pt;}
.ye0{bottom:718.293333pt;}
.y104{bottom:723.373333pt;}
.y95{bottom:726.560000pt;}
.yc{bottom:728.173333pt;}
.y1c8{bottom:729.773333pt;}
.y41{bottom:731.893333pt;}
.yd1{bottom:734.840000pt;}
.y1e9{bottom:738.293333pt;}
.y79{bottom:739.106667pt;}
.yc0{bottom:742.573333pt;}
.y151{bottom:743.360000pt;}
.y94{bottom:745.506667pt;}
.ydf{bottom:746.840000pt;}
.y1c7{bottom:748.960000pt;}
.y103{bottom:752.173333pt;}
.y1e8{bottom:757.506667pt;}
.y6c{bottom:758.840000pt;}
.y40{bottom:759.106667pt;}
.yd0{bottom:763.666667pt;}
.y93{bottom:764.466667pt;}
.y78{bottom:767.666667pt;}
.y1c6{bottom:768.200000pt;}
.yb{bottom:771.133333pt;}
.ybf{bottom:771.400000pt;}
.yde{bottom:775.666667pt;}
.y6b{bottom:776.733333pt;}
.y102{bottom:781.000000pt;}
.y92{bottom:783.400000pt;}
.y3f{bottom:791.933333pt;}
.ycf{bottom:792.466667pt;}
.y188{bottom:795.400000pt;}
.y77{bottom:796.200000pt;}
.y1c5{bottom:798.066667pt;}
.ya{bottom:798.600000pt;}
.ybe{bottom:800.200000pt;}
.y91{bottom:802.333333pt;}
.ydd{bottom:804.200000pt;}
.y146{bottom:805.266667pt;}
.y1e7{bottom:806.600000pt;}
.y101{bottom:809.800000pt;}
.y3e{bottom:810.333333pt;}
.y6a{bottom:810.600000pt;}
.y1c4{bottom:817.266667pt;}
.yce{bottom:821.266667pt;}
.y76{bottom:824.733333pt;}
.y1e6{bottom:825.800000pt;}
.y3d{bottom:826.600000pt;}
.y9{bottom:827.133333pt;}
.ybd{bottom:829.000000pt;}
.y90{bottom:829.533333pt;}
.ydc{bottom:833.000000pt;}
.y1c3{bottom:836.466667pt;}
.y100{bottom:838.600000pt;}
.y11a{bottom:839.133333pt;}
.y69{bottom:839.400000pt;}
.y18e{bottom:840.200000pt;}
.y3c{bottom:842.600000pt;}
.y1e5{bottom:845.000000pt;}
.ycd{bottom:850.066667pt;}
.y75{bottom:853.533333pt;}
.y8{bottom:854.600000pt;}
.y1c2{bottom:855.666667pt;}
.ybc{bottom:857.800000pt;}
.y8f{bottom:858.333333pt;}
.y3b{bottom:858.600000pt;}
.y14b{bottom:861.266667pt;}
.ydb{bottom:861.800000pt;}
.yff{bottom:867.400000pt;}
.y68{bottom:868.200000pt;}
.y3a{bottom:874.866667pt;}
.ycc{bottom:878.866667pt;}
.y7{bottom:881.800000pt;}
.y74{bottom:882.066667pt;}
.y1c1{bottom:885.533333pt;}
.ybb{bottom:886.600000pt;}
.y8e{bottom:887.133333pt;}
.y67{bottom:887.400000pt;}
.y39{bottom:890.866667pt;}
.y1e4{bottom:894.066667pt;}
.yfe{bottom:896.200000pt;}
.yda{bottom:898.333333pt;}
.y1c0{bottom:904.733333pt;}
.y38{bottom:906.893333pt;}
.y66{bottom:907.440000pt;}
.ycb{bottom:907.706667pt;}
.y6{bottom:909.266667pt;}
.y73{bottom:910.626667pt;}
.y1e3{bottom:913.293333pt;}
.yba{bottom:915.440000pt;}
.y8d{bottom:915.960000pt;}
.y37{bottom:923.173333pt;}
.yfd{bottom:925.040000pt;}
.y1bf{bottom:934.626667pt;}
.yb9{bottom:935.173333pt;}
.yca{bottom:936.506667pt;}
.y5{bottom:936.773333pt;}
.y72{bottom:939.173333pt;}
.y36{bottom:941.040000pt;}
.y1e2{bottom:943.173333pt;}
.y65{bottom:943.960000pt;}
.yeb{bottom:944.226667pt;}
.y8c{bottom:944.773333pt;}
.yfc{bottom:953.840000pt;}
.yb8{bottom:954.373333pt;}
.yc9{bottom:957.040000pt;}
.y1e1{bottom:962.373333pt;}
.y4{bottom:963.706667pt;}
.y71{bottom:967.706667pt;}
.y18a{bottom:969.840000pt;}
.yd9{bottom:971.960000pt;}
.y64{bottom:972.506667pt;}
.yea{bottom:973.040000pt;}
.yc8{bottom:973.293333pt;}
.yb7{bottom:973.560000pt;}
.y8b{bottom:973.840000pt;}
.y1e0{bottom:981.560000pt;}
.yfb{bottom:982.626667pt;}
.y11b{bottom:983.173333pt;}
.y3{bottom:986.106667pt;}
.y70{bottom:987.440000pt;}
.y63{bottom:992.226667pt;}
.yd8{bottom:992.506667pt;}
.yb6{bottom:992.773333pt;}
.y35{bottom:993.040000pt;}
.y8a{bottom:994.373333pt;}
.y186{bottom:999.973333pt;}
.yfa{bottom:1011.706667pt;}
.y62{bottom:1011.960000pt;}
.yb5{bottom:1012.226667pt;}
.y34{bottom:1012.773333pt;}
.y89{bottom:1013.293333pt;}
.y1f4{bottom:1019.960000pt;}
.y2{bottom:1023.173333pt;}
.y33{bottom:1026.373333pt;}
.y1{bottom:1035.440000pt;}
.ye5{bottom:1056.533333pt;}
.ye8{bottom:1074.933333pt;}
.h20{height:4.364583pt;}
.h4c{height:13.866667pt;}
.h39{height:13.900000pt;}
.h3b{height:16.533333pt;}
.h28{height:16.566667pt;}
.h22{height:20.266667pt;}
.h18{height:21.866667pt;}
.h42{height:27.453333pt;}
.h2d{height:27.466667pt;}
.h40{height:27.733333pt;}
.h44{height:29.333333pt;}
.h4b{height:31.466667pt;}
.h4d{height:32.266667pt;}
.h10{height:34.916667pt;}
.h1c{height:39.322917pt;}
.h1e{height:40.598958pt;}
.h2f{height:41.333333pt;}
.h4a{height:41.366667pt;}
.h37{height:41.586667pt;}
.h2c{height:42.166667pt;}
.h9{height:43.645833pt;}
.he{height:43.645845pt;}
.h47{height:44.266667pt;}
.h1f{height:44.658854pt;}
.h3e{height:44.800000pt;}
.h1d{height:45.614583pt;}
.h2a{height:47.109375pt;}
.h23{height:48.010417pt;}
.h38{height:48.375000pt;}
.hb{height:48.718750pt;}
.h25{height:49.385417pt;}
.h12{height:50.629167pt;}
.h1{height:52.343750pt;}
.hc{height:52.375000pt;}
.h1a{height:53.875000pt;}
.h19{height:54.562500pt;}
.h34{height:55.200000pt;}
.h24{height:56.788668pt;}
.h1b{height:57.513350pt;}
.h27{height:57.549479pt;}
.h46{height:57.578125pt;}
.h21{height:58.364583pt;}
.h26{height:59.125000pt;}
.h2{height:59.274479pt;}
.h16{height:61.104167pt;}
.h36{height:61.366667pt;}
.h3{height:63.722917pt;}
.h6{height:69.018229pt;}
.h17{height:69.833333pt;}
.h3a{height:71.466667pt;}
.h13{height:72.452083pt;}
.h4{height:74.197917pt;}
.h5{height:76.816667pt;}
.hd{height:79.200000pt;}
.h7{height:81.197917pt;}
.h32{height:82.666667pt;}
.h33{height:82.700000pt;}
.h14{height:87.291667pt;}
.h49{height:88.553333pt;}
.h30{height:96.833333pt;}
.h8{height:105.557292pt;}
.h15{height:109.114583pt;}
.h2b{height:110.400000pt;}
.h41{height:113.366667pt;}
.h45{height:128.833333pt;}
.h35{height:145.626667pt;}
.h3d{height:162.200000pt;}
.h3f{height:169.893333pt;}
.hf{height:179.800000pt;}
.h2e{height:180.573333pt;}
.h29{height:181.640000pt;}
.h48{height:186.466667pt;}
.h43{height:203.773333pt;}
.h3c{height:207.533333pt;}
.h31{height:222.173333pt;}
.ha{height:422.226667pt;}
.h11{height:1122.666667pt;}
.h0{height:1145.333333pt;}
.w8{width:17.066667pt;}
.w3{width:18.666667pt;}
.w4{width:21.866667pt;}
.wa{width:23.766667pt;}
.w2{width:41.866667pt;}
.wc{width:141.893333pt;}
.wb{width:179.533333pt;}
.wf{width:271.840000pt;}
.wd{width:290.773333pt;}
.w9{width:377.200000pt;}
.w10{width:593.266667pt;}
.we{width:612.200000pt;}
.w7{width:793.333333pt;}
.w6{width:794.000000pt;}
.w5{width:794.133333pt;}
.w1{width:1686.000000pt;}
.w0{width:1686.133333pt;}
.x0{left:0.000000pt;}
.x55{left:1.333333pt;}
.x27{left:4.000000pt;}
.x61{left:6.933333pt;}
.x28{left:10.933333pt;}
.xe{left:15.200000pt;}
.xb{left:18.133333pt;}
.xc{left:40.000000pt;}
.x64{left:54.140000pt;}
.x29{left:86.700000pt;}
.x2a{left:94.433333pt;}
.x31{left:103.500000pt;}
.x32{left:106.966667pt;}
.x52{left:110.433333pt;}
.x11{left:112.033333pt;}
.x4b{left:116.833333pt;}
.x33{left:121.100000pt;}
.x65{left:122.966667pt;}
.x54{left:126.433333pt;}
.x34{left:133.100000pt;}
.x48{left:141.640000pt;}
.x35{left:142.693333pt;}
.x49{left:148.026667pt;}
.x4d{left:149.360000pt;}
.x50{left:153.893333pt;}
.x36{left:157.133333pt;}
.x37{left:159.800000pt;}
.x38{left:164.866667pt;}
.x71{left:172.866667pt;}
.x5b{left:176.333333pt;}
.x92{left:185.666667pt;}
.x72{left:188.600000pt;}
.x39{left:191.000000pt;}
.x99{left:192.866667pt;}
.x78{left:198.733333pt;}
.x3a{left:200.600000pt;}
.x79{left:206.733333pt;}
.x9a{left:208.866667pt;}
.x91{left:211.000000pt;}
.x6d{left:218.200000pt;}
.x3b{left:221.133333pt;}
.x6e{left:225.933333pt;}
.x3c{left:230.733333pt;}
.x6f{left:233.933333pt;}
.x4e{left:238.200000pt;}
.x3d{left:242.200000pt;}
.x2{left:245.360000pt;}
.x3e{left:247.000000pt;}
.x7b{left:250.200000pt;}
.x4c{left:256.600000pt;}
.x7c{left:265.973333pt;}
.x62{left:267.040000pt;}
.x73{left:279.573333pt;}
.x57{left:281.706667pt;}
.x3f{left:286.506667pt;}
.x40{left:297.173333pt;}
.x41{left:300.106667pt;}
.x8c{left:305.706667pt;}
.x4a{left:307.840000pt;}
.x12{left:308.906667pt;}
.x42{left:311.306667pt;}
.x43{left:313.973333pt;}
.x58{left:316.893333pt;}
.x44{left:326.240000pt;}
.x8d{left:329.173333pt;}
.x23{left:337.440000pt;}
.x6a{left:339.026667pt;}
.x45{left:341.973333pt;}
.x46{left:345.173333pt;}
.x6b{left:346.773333pt;}
.x93{left:348.360000pt;}
.x18{left:356.666667pt;}
.x1a{left:359.600000pt;}
.x69{left:362.773333pt;}
.x9c{left:364.666667pt;}
.x19{left:366.000000pt;}
.x4f{left:368.133333pt;}
.x88{left:370.800000pt;}
.x25{left:373.200000pt;}
.x5a{left:377.733333pt;}
.x1b{left:378.800000pt;}
.x8e{left:380.400000pt;}
.x26{left:388.400000pt;}
.x47{left:396.666667pt;}
.x63{left:408.933333pt;}
.x5e{left:428.666667pt;}
.x7e{left:433.466667pt;}
.x7f{left:441.200000pt;}
.x1f{left:442.800000pt;}
.x59{left:445.466667pt;}
.x14{left:447.600000pt;}
.x74{left:454.533333pt;}
.x60{left:457.466667pt;}
.x5f{left:460.133333pt;}
.x75{left:462.266667pt;}
.x1c{left:470.293333pt;}
.x96{left:474.560000pt;}
.x76{left:478.040000pt;}
.x1d{left:479.640000pt;}
.x97{left:482.293333pt;}
.x81{left:487.893333pt;}
.x66{left:490.840000pt;}
.x13{left:495.906667pt;}
.x2f{left:498.560000pt;}
.x2c{left:500.440000pt;}
.x9d{left:502.040000pt;}
.x82{left:503.893333pt;}
.x77{left:504.973333pt;}
.x10{left:507.906667pt;}
.x98{left:511.360000pt;}
.x7a{left:515.893333pt;}
.x6c{left:519.360000pt;}
.x67{left:524.693333pt;}
.x5c{left:527.893333pt;}
.x70{left:530.026667pt;}
.x30{left:536.173333pt;}
.x15{left:540.706667pt;}
.x86{left:543.106667pt;}
.x2d{left:547.360000pt;}
.x87{left:550.840000pt;}
.x89{left:559.360000pt;}
.x8f{left:560.693333pt;}
.x21{left:566.333333pt;}
.x83{left:569.226667pt;}
.x80{left:573.000000pt;}
.x8a{left:574.866667pt;}
.x94{left:575.933333pt;}
.x84{left:577.000000pt;}
.x68{left:580.466667pt;}
.x90{left:584.466667pt;}
.x85{left:593.000000pt;}
.x95{left:599.400000pt;}
.x5d{left:608.733333pt;}
.x8b{left:611.666667pt;}
.x2e{left:614.066667pt;}
.x9b{left:616.200000pt;}
.x7d{left:621.800000pt;}
.x20{left:629.266667pt;}
.x16{left:631.133333pt;}
.x2b{left:634.066667pt;}
.x9e{left:644.466667pt;}
.x17{left:650.333333pt;}
.x56{left:661.000000pt;}
.x1e{left:668.773333pt;}
.x53{left:696.773333pt;}
.x51{left:698.893333pt;}
.x24{left:739.960000pt;}
.x22{left:749.040000pt;}
.xa{left:820.400000pt;}
.xd{left:831.866667pt;}
.xf{left:835.066667pt;}
.x1{left:867.333333pt;}
.x6{left:1176.973333pt;}
.x3{left:1179.373333pt;}
.x9{left:1242.573333pt;}
.x5{left:1318.333333pt;}
.x4{left:1365.533333pt;}
.x7{left:1408.733333pt;}
.x8{left:1433.000000pt;}
}




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