
    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_f6cb3d5d023c245aebafbbaf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_c0f65694c9e61768d529a8aa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dd01bb21220be8f195cac4c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b22cf20e8e1fa3739fda4f31.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_fbb97164b3d8c88ab465a62e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_0eda5e580cbe97c073a14dee.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_f22e1da11c5adf66c9e02afa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.206055;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_c8926c7e4eb7a4f9a2175015.woff')format("woff");}.ff8{font-family:ff8;line-height:0.773000;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_3771136105491acb422020f7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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;}
.m4{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);}
.m1{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);}
.m1c{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);}
.md{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);}
.m1d{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);}
.m21{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);}
.m1a{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);}
.m14{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);}
.m19{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);}
.m16{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);}
.m2b{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);}
.me{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);}
.m26{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);}
.m2a{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);}
.m23{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);}
.m8{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);}
.m12{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);}
.m24{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);}
.m29{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m20{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);}
.m2{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);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m2c{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);}
.m22{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);}
.m7{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);}
.m25{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);}
.m1f{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);}
.m15{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);}
.m1b{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);}
.mb{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m3{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);}
.m17{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);}
.m6{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);}
.m13{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);}
.ma{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);}
.m1e{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);}
.m5{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);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-54.216000px;}
.v9{vertical-align:-39.240000px;}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:35.868000px;}
.v7{vertical-align:38.159548px;}
.v8{vertical-align:39.240000px;}
.va{vertical-align:41.778000px;}
.v4{vertical-align:52.050000px;}
.ls1f{letter-spacing:-3.319943px;}
.ls28{letter-spacing:-0.401560px;}
.ls25{letter-spacing:-0.243199px;}
.ls27{letter-spacing:-0.214920px;}
.ls24{letter-spacing:-0.180985px;}
.ls2d{letter-spacing:-0.147050px;}
.ls23{letter-spacing:-0.121922px;}
.ls26{letter-spacing:-0.101804px;}
.ls21{letter-spacing:-0.079181px;}
.ls2a{letter-spacing:-0.073525px;}
.ls20{letter-spacing:-0.022623px;}
.ls2e{letter-spacing:-0.016967px;}
.ls6{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.001155px;}
.ls41{letter-spacing:0.005119px;}
.ls1e{letter-spacing:0.005656px;}
.ls1a{letter-spacing:0.022623px;}
.ls12{letter-spacing:0.030480px;}
.ls11{letter-spacing:0.079181px;}
.lsf{letter-spacing:0.090492px;}
.ls16{letter-spacing:0.096148px;}
.ls1c{letter-spacing:0.101804px;}
.lse{letter-spacing:0.107460px;}
.ls1b{letter-spacing:0.113116px;}
.ls10{letter-spacing:0.124427px;}
.ls13{letter-spacing:0.132082px;}
.ls19{letter-spacing:0.141395px;}
.ls1d{letter-spacing:0.147322px;}
.ls14{letter-spacing:0.175329px;}
.lsb{letter-spacing:0.180175px;}
.ls29{letter-spacing:0.186641px;}
.ls2f{letter-spacing:0.187963px;}
.lsc{letter-spacing:0.202697px;}
.ls18{letter-spacing:0.214920px;}
.ls17{letter-spacing:0.220575px;}
.ls2c{letter-spacing:0.231887px;}
.ls2b{letter-spacing:0.237543px;}
.lsd{letter-spacing:0.238732px;}
.ls22{letter-spacing:0.314965px;}
.ls36{letter-spacing:0.542815px;}
.ls0{letter-spacing:8.367300px;}
.ls9{letter-spacing:11.951700px;}
.ls5{letter-spacing:11.954850px;}
.ls8{letter-spacing:11.955787px;}
.ls37{letter-spacing:11.957700px;}
.ls3d{letter-spacing:13.176931px;}
.ls46{letter-spacing:13.338635px;}
.ls3f{letter-spacing:13.354360px;}
.ls43{letter-spacing:13.385094px;}
.ls3c{letter-spacing:13.395022px;}
.ls3b{letter-spacing:13.448400px;}
.ls3e{letter-spacing:13.454400px;}
.ls45{letter-spacing:13.460580px;}
.ls42{letter-spacing:13.492998px;}
.ls40{letter-spacing:13.504991px;}
.ls47{letter-spacing:13.743061px;}
.ls34{letter-spacing:14.791408px;}
.ls7{letter-spacing:14.884124px;}
.ls39{letter-spacing:14.885560px;}
.ls38{letter-spacing:14.891524px;}
.ls30{letter-spacing:14.943900px;}
.ls32{letter-spacing:14.944200px;}
.lsa{letter-spacing:15.123227px;}
.ls31{letter-spacing:15.148711px;}
.ls44{letter-spacing:15.897459px;}
.ls48{letter-spacing:16.297459px;}
.ls33{letter-spacing:17.147494px;}
.ls35{letter-spacing:22.206318px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.ls3a{letter-spacing:106.484700px;}
.ls15{letter-spacing:287.387149px;}
.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;}
}
.wsc{word-spacing:-14.943900px;}
.wscd{word-spacing:-13.449600px;}
.wsa{word-spacing:-11.955150px;}
.ws66{word-spacing:-11.463647px;}
.ws8{word-spacing:-11.357400px;}
.ws67{word-spacing:-11.260950px;}
.ws3{word-spacing:-10.460700px;}
.wse1{word-spacing:-3.466985px;}
.ws70{word-spacing:-3.427403px;}
.ws4c{word-spacing:-3.347434px;}
.ws71{word-spacing:-3.297320px;}
.ws94{word-spacing:-3.227882px;}
.ws82{word-spacing:-3.172893px;}
.ws9b{word-spacing:-3.108331px;}
.ws40{word-spacing:-2.689902px;}
.ws9a{word-spacing:-2.570351px;}
.wscf{word-spacing:-2.528525px;}
.wsc4{word-spacing:-2.271473px;}
.wsbf{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.wsc6{word-spacing:-1.853044px;}
.ws48{word-spacing:-1.793268px;}
.ws24{word-spacing:-1.673717px;}
.ws3b{word-spacing:-1.613941px;}
.ws109{word-spacing:-1.560154px;}
.wsa6{word-spacing:-1.554166px;}
.ws45{word-spacing:-1.494390px;}
.ws6a{word-spacing:-1.434614px;}
.wsa9{word-spacing:-1.374839px;}
.wsed{word-spacing:-1.344960px;}
.wsde{word-spacing:-1.237363px;}
.ws93{word-spacing:-1.135736px;}
.wsdc{word-spacing:-1.129766px;}
.wsdd{word-spacing:-1.075968px;}
.wsb2{word-spacing:-1.075961px;}
.wsda{word-spacing:-1.022170px;}
.ws49{word-spacing:-1.016185px;}
.ws95{word-spacing:-0.956410px;}
.ws1d{word-spacing:-0.896634px;}
.ws4e{word-spacing:-0.777083px;}
.ws44{word-spacing:-0.657532px;}
.ws7f{word-spacing:-0.650415px;}
.ws42{word-spacing:-0.537980px;}
.ws64{word-spacing:-0.478205px;}
.wsea{word-spacing:-0.430387px;}
.wsca{word-spacing:-0.418429px;}
.ws68{word-spacing:-0.376589px;}
.ws3f{word-spacing:-0.358654px;}
.wsd8{word-spacing:-0.322790px;}
.ws6e{word-spacing:-0.319811px;}
.ws80{word-spacing:-0.305412px;}
.ws2d{word-spacing:-0.298878px;}
.ws7b{word-spacing:-0.294101px;}
.ws7d{word-spacing:-0.288445px;}
.ws6d{word-spacing:-0.283776px;}
.wsec{word-spacing:-0.268992px;}
.ws16{word-spacing:-0.239102px;}
.wsf4{word-spacing:-0.215194px;}
.wse{word-spacing:-0.179327px;}
.wse8{word-spacing:-0.161395px;}
.ws75{word-spacing:-0.152706px;}
.ws12{word-spacing:-0.119551px;}
.wsdb{word-spacing:-0.107597px;}
.ws91{word-spacing:-0.079181px;}
.ws19{word-spacing:-0.059776px;}
.ws60{word-spacing:-0.053798px;}
.ws21{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws7{word-spacing:0.000000px;}
.ws78{word-spacing:0.028279px;}
.ws7e{word-spacing:0.050902px;}
.ws57{word-spacing:0.053798px;}
.ws81{word-spacing:0.056558px;}
.ws1f{word-spacing:0.059776px;}
.ws7c{word-spacing:0.101804px;}
.ws9f{word-spacing:0.107597px;}
.wsf{word-spacing:0.119551px;}
.ws8f{word-spacing:0.152402px;}
.wsce{word-spacing:0.161395px;}
.ws74{word-spacing:0.164018px;}
.ws87{word-spacing:0.175329px;}
.ws29{word-spacing:0.179327px;}
.ws7a{word-spacing:0.192297px;}
.wsdf{word-spacing:0.215194px;}
.ws31{word-spacing:0.239102px;}
.wsfa{word-spacing:0.268992px;}
.ws88{word-spacing:0.288445px;}
.wsd{word-spacing:0.298878px;}
.ws92{word-spacing:0.311068px;}
.wsd1{word-spacing:0.322790px;}
.ws1e{word-spacing:0.358654px;}
.wsff{word-spacing:0.376589px;}
.ws36{word-spacing:0.418429px;}
.ws6{word-spacing:0.422252px;}
.ws72{word-spacing:0.559922px;}
.ws39{word-spacing:0.597756px;}
.ws2e{word-spacing:0.657532px;}
.ws79{word-spacing:0.690005px;}
.ws73{word-spacing:0.729596px;}
.wsd4{word-spacing:0.806976px;}
.ws33{word-spacing:0.836858px;}
.ws90{word-spacing:0.893613px;}
.wse3{word-spacing:0.896634px;}
.ws55{word-spacing:0.956410px;}
.wsfb{word-spacing:0.968371px;}
.wsc1{word-spacing:1.016185px;}
.ws25{word-spacing:1.075961px;}
.wsd5{word-spacing:1.075968px;}
.ws59{word-spacing:1.135736px;}
.wsd3{word-spacing:1.183565px;}
.wsa4{word-spacing:1.195512px;}
.ws23{word-spacing:1.255288px;}
.ws15{word-spacing:1.374839px;}
.wsac{word-spacing:1.434614px;}
.ws65{word-spacing:1.494390px;}
.ws14{word-spacing:1.554166px;}
.ws38{word-spacing:1.613941px;}
.wsab{word-spacing:1.673717px;}
.ws8b{word-spacing:1.708046px;}
.ws2a{word-spacing:1.733492px;}
.ws8a{word-spacing:1.747636px;}
.wsb6{word-spacing:1.793268px;}
.ws4f{word-spacing:1.853044px;}
.ws102{word-spacing:1.882944px;}
.wsb1{word-spacing:1.912819px;}
.wsa8{word-spacing:1.972595px;}
.ws4d{word-spacing:2.032370px;}
.ws47{word-spacing:2.092146px;}
.ws6b{word-spacing:2.151922px;}
.wsd0{word-spacing:2.151936px;}
.ws10d{word-spacing:2.205734px;}
.ws22{word-spacing:2.211697px;}
.ws3d{word-spacing:2.271473px;}
.ws3e{word-spacing:2.331248px;}
.ws35{word-spacing:2.450800px;}
.ws104{word-spacing:2.474726px;}
.ws54{word-spacing:2.510575px;}
.ws10f{word-spacing:2.582323px;}
.wsa3{word-spacing:2.689902px;}
.wsf1{word-spacing:2.689920px;}
.ws99{word-spacing:2.749678px;}
.wsb0{word-spacing:2.809453px;}
.wsa7{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.ws97{word-spacing:2.929004px;}
.ws96{word-spacing:2.988780px;}
.wsc3{word-spacing:3.048556px;}
.wsd2{word-spacing:3.066509px;}
.ws3c{word-spacing:3.108331px;}
.wse2{word-spacing:3.168107px;}
.wsd9{word-spacing:3.224822px;}
.wsc8{word-spacing:3.227882px;}
.wsfd{word-spacing:3.227904px;}
.ws46{word-spacing:3.287658px;}
.wsb8{word-spacing:3.347434px;}
.ws43{word-spacing:3.407209px;}
.ws84{word-spacing:3.427403px;}
.ws89{word-spacing:3.433058px;}
.ws83{word-spacing:3.455682px;}
.wsfe{word-spacing:3.496896px;}
.wsc0{word-spacing:3.526760px;}
.wsef{word-spacing:3.531737px;}
.ws1a{word-spacing:3.534684px;}
.ws18{word-spacing:3.561210px;}
.ws53{word-spacing:3.586536px;}
.ws5b{word-spacing:3.646312px;}
.ws10b{word-spacing:3.712090px;}
.wsc9{word-spacing:3.765863px;}
.ws13{word-spacing:3.825638px;}
.ws5a{word-spacing:3.885414px;}
.wsb9{word-spacing:3.945190px;}
.ws17{word-spacing:4.004965px;}
.ws5e{word-spacing:4.034880px;}
.ws2b{word-spacing:4.064741px;}
.wscb{word-spacing:4.124516px;}
.wsa1{word-spacing:4.196275px;}
.wsc5{word-spacing:4.244068px;}
.ws32{word-spacing:4.303843px;}
.ws1b{word-spacing:4.303872px;}
.ws52{word-spacing:4.363619px;}
.wsb4{word-spacing:4.423394px;}
.ws2c{word-spacing:4.483170px;}
.ws34{word-spacing:4.542946px;}
.ws69{word-spacing:4.602721px;}
.wsba{word-spacing:4.662497px;}
.wsae{word-spacing:4.722272px;}
.wsaf{word-spacing:4.782048px;}
.wsb3{word-spacing:4.841824px;}
.wsad{word-spacing:4.901599px;}
.ws30{word-spacing:5.021150px;}
.wsbb{word-spacing:5.080926px;}
.wsb7{word-spacing:5.260253px;}
.wsd6{word-spacing:5.272243px;}
.ws41{word-spacing:5.320028px;}
.ws11{word-spacing:5.379804px;}
.ws63{word-spacing:5.499355px;}
.ws8c{word-spacing:5.506807px;}
.ws8d{word-spacing:5.547447px;}
.ws85{word-spacing:5.553976px;}
.ws77{word-spacing:5.664289px;}
.ws86{word-spacing:5.672747px;}
.ws2f{word-spacing:5.678682px;}
.ws8e{word-spacing:5.694770px;}
.ws4b{word-spacing:5.798233px;}
.ws76{word-spacing:5.816692px;}
.wsbd{word-spacing:5.858009px;}
.wscc{word-spacing:6.025421px;}
.ws101{word-spacing:6.079219px;}
.ws6c{word-spacing:6.097111px;}
.ws50{word-spacing:6.216662px;}
.wsf7{word-spacing:6.294413px;}
.ws26{word-spacing:6.395989px;}
.wsbc{word-spacing:6.635092px;}
.ws37{word-spacing:6.993745px;}
.wsaa{word-spacing:7.053521px;}
.wsc7{word-spacing:7.113296px;}
.ws10{word-spacing:7.173072px;}
.ws9d{word-spacing:7.232848px;}
.ws9c{word-spacing:7.292623px;}
.ws5c{word-spacing:7.370381px;}
.ws28{word-spacing:7.591501px;}
.wsb5{word-spacing:7.711052px;}
.ws1c{word-spacing:7.830604px;}
.ws51{word-spacing:7.890379px;}
.ws4a{word-spacing:7.950155px;}
.wsbe{word-spacing:8.129482px;}
.ws98{word-spacing:8.249033px;}
.wsc2{word-spacing:8.308808px;}
.ws2{word-spacing:8.326488px;}
.wsa5{word-spacing:8.428360px;}
.wsd7{word-spacing:10.167898px;}
.ws6f{word-spacing:10.869069px;}
.ws56{word-spacing:10.879159px;}
.ws5{word-spacing:11.297556px;}
.ws9e{word-spacing:11.903076px;}
.ws20{word-spacing:11.909076px;}
.ws27{word-spacing:12.552876px;}
.wseb{word-spacing:12.979689px;}
.ws105{word-spacing:13.126810px;}
.ws107{word-spacing:13.234406px;}
.wsf2{word-spacing:13.298218px;}
.wse6{word-spacing:13.342003px;}
.wsf6{word-spacing:13.388054px;}
.ws10c{word-spacing:13.388803px;}
.wse9{word-spacing:13.389158px;}
.ws100{word-spacing:13.390387px;}
.wsf5{word-spacing:13.390618px;}
.wsee{word-spacing:13.392691px;}
.ws10a{word-spacing:13.394486px;}
.wse5{word-spacing:13.395802px;}
.wse4{word-spacing:13.557197px;}
.ws108{word-spacing:13.664794px;}
.wsf9{word-spacing:14.741779px;}
.ws3a{word-spacing:14.884124px;}
.ws103{word-spacing:15.278746px;}
.ws106{word-spacing:16.618992px;}
.wse7{word-spacing:16.623706px;}
.wsf8{word-spacing:16.677504px;}
.wsf3{word-spacing:16.722224px;}
.wsfc{word-spacing:16.838899px;}
.wsf0{word-spacing:16.946496px;}
.ws1{word-spacing:22.179541px;}
.ws10e{word-spacing:23.778893px;}
.ws9{word-spacing:39.485734px;}
.ws61{word-spacing:133.109375px;}
.wse0{word-spacing:232.527084px;}
.ws5d{word-spacing:275.505740px;}
.ws58{word-spacing:318.723499px;}
.ws62{word-spacing:394.578736px;}
.ws5f{word-spacing:476.829961px;}
.wsa0{word-spacing:491.355432px;}
.wsa2{word-spacing:505.880903px;}
._3{margin-left:-7.962163px;}
._c{margin-left:-6.515540px;}
._5{margin-left:-5.308087px;}
._2{margin-left:-3.849538px;}
._8f{margin-left:-2.569589px;}
._1{margin-left:-1.506341px;}
._50{width:1.259390px;}
._4{width:2.993646px;}
._4f{width:4.164833px;}
._0{width:10.879128px;}
._7a{width:12.385500px;}
._90{width:13.519874px;}
._14{width:14.537422px;}
._10{width:16.023424px;}
._a{width:17.633802px;}
._6{width:18.885527px;}
._18{width:20.024826px;}
._d{width:21.160562px;}
._8{width:22.188698px;}
._16{width:23.443986px;}
._13{width:25.452464px;}
._5a{width:27.664161px;}
._15{width:29.134676px;}
._b{width:31.047438px;}
._11{width:33.187409px;}
._79{width:34.203594px;}
._9{width:35.267604px;}
._17{width:38.136833px;}
._7{width:40.707184px;}
._12{width:42.153749px;}
._5b{width:43.935066px;}
._8e{width:61.868160px;}
._1b{width:77.947382px;}
._8d{width:88.767360px;}
._39{width:123.556165px;}
._3c{width:138.500065px;}
._3b{width:147.561810px;}
._42{width:153.443965px;}
._3a{width:157.329379px;}
._43{width:160.915915px;}
._2c{width:165.709914px;}
._3d{width:168.387865px;}
._46{width:172.273279px;}
._59{width:179.032060px;}
._57{width:180.069283px;}
._38{width:183.331765px;}
._54{width:186.310433px;}
._58{width:193.597619px;}
._44{width:194.689129px;}
._56{width:200.829520px;}
._3e{width:202.161079px;}
._21{width:205.628064px;}
._31{width:206.683309px;}
._26{width:209.405878px;}
._47{width:213.219565px;}
._53{width:215.367629px;}
._45{width:217.104979px;}
._35{width:222.425008px;}
._41{width:227.745036px;}
._55{width:229.088925px;}
._36{width:232.910436px;}
._25{width:237.368908px;}
._40{width:238.803522px;}
._3f{width:243.107365px;}
._2b{width:244.960409px;}
._32{width:247.854336px;}
._1e{width:252.312808px;}
._1f{width:259.187002px;}
._34{width:262.738310px;}
._1d{width:267.256708px;}
._51{width:268.492584px;}
._24{width:273.533146px;}
._20{width:274.728658px;}
._2f{width:277.538111px;}
._22{width:282.260383px;}
._33{width:289.672558px;}
._4b{width:291.813810px;}
._2d{width:297.084732px;}
._23{width:304.616458px;}
._75{width:310.295140px;}
._2e{width:312.148183px;}
._67{width:314.419656px;}
._28{width:318.663724px;}
._27{width:326.135674px;}
._5f{width:333.547848px;}
._1a{width:335.281340px;}
._63{width:352.616264px;}
._29{width:356.023474px;}
._2a{width:357.876517px;}
._76{width:371.532995px;}
._68{width:373.479614px;}
._6a{width:384.327754px;}
._49{width:390.454219px;}
._5e{width:400.735622px;}
._48{width:409.522636px;}
._66{width:419.457336px;}
._62{width:438.992006px;}
._4a{width:455.250970px;}
._6e{width:466.246651px;}
._52{width:469.680443px;}
._4c{width:473.741366px;}
._73{width:482.628194px;}
._5d{width:487.230916px;}
._4d{width:493.854056px;}
._6f{width:501.696611px;}
._65{width:506.299332px;}
._7c{width:519.521690px;}
._71{width:520.824803px;}
._6b{width:524.554792px;}
._61{width:525.834002px;}
._37{width:533.198352px;}
._64{width:539.387970px;}
._74{width:551.431111px;}
._78{width:568.230998px;}
._30{width:569.302814px;}
._69{width:593.753786px;}
._6d{width:614.911597px;}
._77{width:625.133741px;}
._60{width:632.606190px;}
._70{width:695.312190px;}
._1c{width:698.716988px;}
._19{width:718.622263px;}
._72{width:722.776626px;}
._8a{width:729.214495px;}
._7b{width:779.294497px;}
._86{width:806.671722px;}
._88{width:923.903624px;}
._80{width:1036.568680px;}
._89{width:1081.938360px;}
._83{width:1185.947904px;}
._8b{width:1310.460479px;}
._87{width:1417.877232px;}
._82{width:1457.687782px;}
._7e{width:1628.550348px;}
._81{width:1632.830290px;}
._8c{width:1636.357050px;}
._7f{width:1766.189653px;}
._85{width:1773.781154px;}
._e{width:1788.468229px;}
._4e{width:2001.387999px;}
._7d{width:2079.176252px;}
._84{width:2431.607190px;}
._6c{width:2536.284229px;}
._f{width:2560.194229px;}
._5c{width:4014.270229px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs8{font-size:45.043800px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:50.800800px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:56.557800px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y155{bottom:-153.190500px;}
.y170{bottom:-93.069972px;}
.y16f{bottom:-73.270500px;}
.y16e{bottom:-36.999940px;}
.y16d{bottom:-17.290500px;}
.y0{bottom:0.000000px;}
.y16c{bottom:7.099367px;}
.y40{bottom:45.921000px;}
.yef{bottom:99.720000px;}
.y296{bottom:100.243500px;}
.y17{bottom:100.260000px;}
.y182{bottom:110.550000px;}
.y1cb{bottom:110.785500px;}
.yc7{bottom:114.315000px;}
.y1e0{bottom:117.796500px;}
.y16{bottom:118.147500px;}
.y1ef{bottom:118.365000px;}
.y123{bottom:118.897500px;}
.y212{bottom:119.058000px;}
.y295{bottom:119.394000px;}
.yee{bottom:120.610500px;}
.y23c{bottom:124.624500px;}
.y2c8{bottom:125.112000px;}
.y3f{bottom:125.526000px;}
.y181{bottom:131.442000px;}
.y1ca{bottom:131.677500px;}
.yc6{bottom:135.205500px;}
.y15{bottom:136.035000px;}
.y122{bottom:136.830000px;}
.y72{bottom:137.298000px;}
.y294{bottom:138.544500px;}
.y211{bottom:138.556500px;}
.y1df{bottom:138.688500px;}
.y1ee{bottom:139.255500px;}
.yed{bottom:141.502500px;}
.y2c7{bottom:144.262500px;}
.y23b{bottom:145.515000px;}
.y3e{bottom:146.416500px;}
.y180{bottom:152.334000px;}
.y1c9{bottom:152.569500px;}
.y14{bottom:153.922500px;}
.y121{bottom:154.764000px;}
.y293{bottom:157.696500px;}
.y71{bottom:158.190000px;}
.y1de{bottom:159.579000px;}
.y1ed{bottom:160.147500px;}
.yc5{bottom:160.581000px;}
.yec{bottom:162.394500px;}
.y2c6{bottom:163.413000px;}
.y23a{bottom:166.407000px;}
.y210{bottom:167.022000px;}
.y3d{bottom:167.308500px;}
.y13{bottom:171.811500px;}
.y17f{bottom:173.226000px;}
.y1c8{bottom:173.460000px;}
.y266{bottom:174.693000px;}
.y292{bottom:176.847000px;}
.y70{bottom:179.082000px;}
.y99{bottom:179.889000px;}
.y120{bottom:179.898000px;}
.y1ec{bottom:181.039500px;}
.y2c5{bottom:182.563500px;}
.y151{bottom:183.048000px;}
.yeb{bottom:183.285000px;}
.y183{bottom:184.506000px;}
.y1dd{bottom:184.954500px;}
.y20f{bottom:187.042500px;}
.y3c{bottom:188.200500px;}
.y12{bottom:189.699000px;}
.y17e{bottom:194.116500px;}
.y1c7{bottom:194.352000px;}
.y239{bottom:194.500500px;}
.y265{bottom:195.585000px;}
.y291{bottom:195.997500px;}
.y11f{bottom:197.830500px;}
.yc4{bottom:199.405500px;}
.y6f{bottom:199.972500px;}
.y98{bottom:200.781000px;}
.y2c4{bottom:201.714000px;}
.y1eb{bottom:201.930000px;}
.yea{bottom:204.177000px;}
.y150{bottom:205.329000px;}
.y20e{bottom:207.063000px;}
.y11{bottom:207.586500px;}
.y3b{bottom:209.091000px;}
.y17d{bottom:215.008500px;}
.y290{bottom:215.148000px;}
.y1c6{bottom:215.244000px;}
.y238{bottom:215.392500px;}
.y11e{bottom:215.764500px;}
.y264{bottom:216.477000px;}
.yc3{bottom:220.296000px;}
.y6e{bottom:220.864500px;}
.y97{bottom:221.673000px;}
.y1ea{bottom:222.822000px;}
.y14f{bottom:223.261500px;}
.ye9{bottom:225.069000px;}
.y10{bottom:225.475500px;}
.y20d{bottom:227.085000px;}
.y3a{bottom:229.983000px;}
.y28f{bottom:234.298500px;}
.y17c{bottom:235.900500px;}
.y1c5{bottom:236.136000px;}
.y237{bottom:236.284500px;}
.y263{bottom:237.367500px;}
.y2c3{bottom:240.015000px;}
.y11d{bottom:240.898500px;}
.yc2{bottom:241.188000px;}
.y14e{bottom:241.195500px;}
.y6d{bottom:241.756500px;}
.y96{bottom:242.563500px;}
.y1e9{bottom:243.714000px;}
.ye8{bottom:245.961000px;}
.y20c{bottom:247.105500px;}
.y39{bottom:250.875000px;}
.yf{bottom:252.330000px;}
.y28e{bottom:253.449000px;}
.y17b{bottom:256.791000px;}
.y1c4{bottom:257.026500px;}
.y19e{bottom:257.364000px;}
.y11c{bottom:258.831000px;}
.y2c2{bottom:259.165500px;}
.yc1{bottom:262.080000px;}
.y6c{bottom:262.647000px;}
.y262{bottom:262.743000px;}
.y95{bottom:263.455500px;}
.y236{bottom:264.378000px;}
.y1e8{bottom:264.606000px;}
.y14d{bottom:266.329500px;}
.ye7{bottom:266.851500px;}
.y20b{bottom:267.127500px;}
.ye{bottom:270.217500px;}
.y28d{bottom:272.599500px;}
.y38{bottom:276.249000px;}
.y11b{bottom:276.765000px;}
.y17a{bottom:277.683000px;}
.y1c3{bottom:277.918500px;}
.y2c1{bottom:278.316000px;}
.y19d{bottom:279.645000px;}
.yc0{bottom:282.970500px;}
.y6b{bottom:283.539000px;}
.y261{bottom:283.633500px;}
.y14c{bottom:284.263500px;}
.y94{bottom:284.347500px;}
.y235{bottom:285.270000px;}
.y1e7{bottom:285.496500px;}
.y20a{bottom:287.148000px;}
.ye6{bottom:287.743500px;}
.yd{bottom:288.105000px;}
.y28c{bottom:291.750000px;}
.y2c0{bottom:297.466500px;}
.y19c{bottom:297.577500px;}
.y179{bottom:298.575000px;}
.y1c2{bottom:298.810500px;}
.y11a{bottom:301.899000px;}
.y14b{bottom:302.196000px;}
.ybf{bottom:303.862500px;}
.y6a{bottom:304.431000px;}
.y260{bottom:304.525500px;}
.y93{bottom:305.238000px;}
.yc{bottom:305.994000px;}
.y234{bottom:306.160500px;}
.y1e6{bottom:306.388500px;}
.y209{bottom:307.168500px;}
.y28b{bottom:310.900500px;}
.y2bf{bottom:316.617000px;}
.y178{bottom:319.465500px;}
.y1c1{bottom:319.701000px;}
.y119{bottom:319.833000px;}
.y19b{bottom:322.713000px;}
.yb{bottom:323.881500px;}
.ybe{bottom:324.754500px;}
.y69{bottom:325.323000px;}
.y25f{bottom:325.417500px;}
.y92{bottom:326.130000px;}
.y208{bottom:327.190500px;}
.y1e5{bottom:327.280500px;}
.y14a{bottom:327.330000px;}
.y28a{bottom:330.051000px;}
.ye3{bottom:330.565500px;}
.y233{bottom:334.255500px;}
.y2be{bottom:335.767500px;}
.ye5{bottom:337.006500px;}
.y177{bottom:340.357500px;}
.y1c0{bottom:340.593000px;}
.y19a{bottom:340.645500px;}
.ya{bottom:341.769000px;}
.y118{bottom:344.967000px;}
.y149{bottom:345.264000px;}
.ybd{bottom:345.645000px;}
.y68{bottom:346.213500px;}
.y25e{bottom:346.308000px;}
.y91{bottom:347.022000px;}
.y207{bottom:347.211000px;}
.y1e4{bottom:348.171000px;}
.ye2{bottom:348.498000px;}
.y289{bottom:349.201500px;}
.y2bd{bottom:354.918000px;}
.y232{bottom:355.146000px;}
.y37{bottom:355.461000px;}
.y9{bottom:359.658000px;}
.y176{bottom:361.249500px;}
.y1bf{bottom:361.485000px;}
.y117{bottom:362.899500px;}
.y199{bottom:365.781000px;}
.ye1{bottom:366.430500px;}
.ybc{bottom:366.537000px;}
.y67{bottom:367.105500px;}
.y206{bottom:367.231500px;}
.y90{bottom:367.914000px;}
.y288{bottom:368.352000px;}
.y1e3{bottom:369.063000px;}
.y148{bottom:370.398000px;}
.y25d{bottom:373.177500px;}
.y2bc{bottom:374.070000px;}
.ye4{bottom:374.097000px;}
.y36{bottom:376.353000px;}
.y8{bottom:377.545500px;}
.y116{bottom:380.833500px;}
.y175{bottom:382.140000px;}
.y1be{bottom:382.375500px;}
.y231{bottom:383.241000px;}
.y198{bottom:383.713500px;}
.ye0{bottom:384.363000px;}
.y205{bottom:387.253500px;}
.ybb{bottom:387.429000px;}
.y287{bottom:387.502500px;}
.y66{bottom:387.997500px;}
.y147{bottom:388.332000px;}
.y8f{bottom:388.804500px;}
.y1e2{bottom:389.955000px;}
.y2bb{bottom:393.220500px;}
.y25c{bottom:394.069500px;}
.y7{bottom:395.433000px;}
.y115{bottom:398.766000px;}
.y197{bottom:401.646000px;}
.y174{bottom:403.032000px;}
.y1bd{bottom:403.267500px;}
.y230{bottom:404.131500px;}
.y146{bottom:406.264500px;}
.y286{bottom:406.653000px;}
.ydf{bottom:407.302500px;}
.yba{bottom:408.321000px;}
.y65{bottom:408.888000px;}
.y8e{bottom:409.696500px;}
.y2ba{bottom:412.371000px;}
.y6{bottom:413.322000px;}
.y35{bottom:415.177500px;}
.y1e1{bottom:415.329000px;}
.y114{bottom:416.698500px;}
.y173{bottom:423.924000px;}
.y16b{bottom:424.159412px;}
.y1bc{bottom:424.159500px;}
.ydc{bottom:424.236000px;}
.y204{bottom:425.206500px;}
.y285{bottom:425.803500px;}
.y196{bottom:426.781500px;}
.yb9{bottom:429.211500px;}
.y64{bottom:429.780000px;}
.y145{bottom:431.398500px;}
.y2b9{bottom:431.521500px;}
.y22f{bottom:432.225000px;}
.yde{bottom:432.436500px;}
.y25b{bottom:432.894000px;}
.y8d{bottom:435.070500px;}
.y34{bottom:436.068000px;}
.y5{bottom:437.187000px;}
.y113{bottom:441.834000px;}
.ydb{bottom:442.168500px;}
.y16a{bottom:443.958884px;}
.y195{bottom:444.714000px;}
.y1bb{bottom:445.050000px;}
.y203{bottom:446.098500px;}
.y144{bottom:449.332500px;}
.y284{bottom:449.437500px;}
.yb8{bottom:450.103500px;}
.y63{bottom:450.672000px;}
.y22e{bottom:453.117000px;}
.y25a{bottom:453.784500px;}
.y4{bottom:455.074500px;}
.y33{bottom:456.960000px;}
.ydd{bottom:457.572000px;}
.y172{bottom:459.552000px;}
.y112{bottom:459.766500px;}
.y169{bottom:463.669277px;}
.y1ba{bottom:465.942000px;}
.y202{bottom:466.990500px;}
.y143{bottom:467.265000px;}
.y2b8{bottom:469.822500px;}
.y194{bottom:469.849500px;}
.y8c{bottom:470.413500px;}
.yb7{bottom:470.995500px;}
.y62{bottom:471.562500px;}
.y3{bottom:472.963500px;}
.y22d{bottom:474.009000px;}
.y259{bottom:474.676500px;}
.y111{bottom:477.699000px;}
.y32{bottom:477.852000px;}
.y171{bottom:478.785000px;}
.yda{bottom:482.707500px;}
.y168{bottom:483.468749px;}
.y142{bottom:485.197500px;}
.y1b9{bottom:486.834000px;}
.y193{bottom:487.782000px;}
.y201{bottom:487.881000px;}
.y2b7{bottom:488.973000px;}
.y283{bottom:489.756000px;}
.y2{bottom:490.851000px;}
.y8b{bottom:491.305500px;}
.y1dc{bottom:491.886000px;}
.y61{bottom:492.454500px;}
.y258{bottom:495.568500px;}
.yb6{bottom:496.369500px;}
.y31{bottom:498.742500px;}
.y152{bottom:501.213000px;}
.y22c{bottom:502.102500px;}
.y10f{bottom:502.834500px;}
.y141{bottom:503.130000px;}
.y167{bottom:503.179142px;}
.y1b8{bottom:507.726000px;}
.yd9{bottom:507.841500px;}
.y2b6{bottom:508.123500px;}
.y200{bottom:508.773000px;}
.y282{bottom:510.648000px;}
.y8a{bottom:512.196000px;}
.y1db{bottom:512.778000px;}
.y192{bottom:512.917500px;}
.y60{bottom:513.346500px;}
.y1{bottom:514.716000px;}
.y257{bottom:516.460500px;}
.y30{bottom:519.634500px;}
.y10e{bottom:520.767000px;}
.y166{bottom:522.889536px;}
.y22b{bottom:522.994500px;}
.y2b5{bottom:527.274000px;}
.yd4{bottom:527.973000px;}
.y140{bottom:528.265500px;}
.y1ff{bottom:529.665000px;}
.y110{bottom:529.734000px;}
.y191{bottom:530.850000px;}
.y281{bottom:531.540000px;}
.yb5{bottom:531.712500px;}
.yd8{bottom:532.977000px;}
.y89{bottom:533.088000px;}
.y1b7{bottom:533.100000px;}
.y1da{bottom:533.670000px;}
.y5f{bottom:534.237000px;}
.y256{bottom:537.351000px;}
.y10d{bottom:538.699500px;}
.y2f{bottom:540.526500px;}
.y165{bottom:542.779500px;}
.y22a{bottom:543.885000px;}
.yd3{bottom:545.905500px;}
.y13f{bottom:546.198000px;}
.y2b4{bottom:546.424500px;}
.y190{bottom:548.782500px;}
.y1fe{bottom:550.555500px;}
.y280{bottom:552.430500px;}
.yb4{bottom:552.603000px;}
.y88{bottom:553.980000px;}
.y1d9{bottom:554.560500px;}
.y5e{bottom:555.129000px;}
.y10c{bottom:556.632000px;}
.yd7{bottom:558.112500px;}
.y255{bottom:558.243000px;}
.y2e{bottom:561.417000px;}
.yd2{bottom:563.838000px;}
.y13e{bottom:564.130500px;}
.y229{bottom:564.777000px;}
.y2b3{bottom:565.575000px;}
.y1fd{bottom:571.447500px;}
.y1b6{bottom:571.924500px;}
.y27f{bottom:573.322500px;}
.yb3{bottom:573.495000px;}
.y18f{bottom:573.918000px;}
.y87{bottom:574.870500px;}
.y1d8{bottom:575.452500px;}
.y5d{bottom:576.021000px;}
.y254{bottom:579.135000px;}
.y164{bottom:580.759500px;}
.y10b{bottom:581.767500px;}
.y2d{bottom:582.309000px;}
.yd6{bottom:583.248000px;}
.y2b2{bottom:584.725500px;}
.y13d{bottom:589.266000px;}
.y163{bottom:590.659500px;}
.y18e{bottom:591.850500px;}
.y1fc{bottom:592.339500px;}
.y1b5{bottom:592.816500px;}
.y228{bottom:592.870500px;}
.y27e{bottom:594.214500px;}
.yb2{bottom:594.387000px;}
.y86{bottom:595.762500px;}
.y1d7{bottom:596.344500px;}
.y5c{bottom:596.913000px;}
.y10a{bottom:599.700000px;}
.y2c{bottom:603.201000px;}
.y2b1{bottom:603.876000px;}
.y253{bottom:604.509000px;}
.y13c{bottom:607.198500px;}
.yd5{bottom:608.382000px;}
.y1b4{bottom:613.707000px;}
.y227{bottom:613.762500px;}
.y27d{bottom:615.105000px;}
.yb1{bottom:615.277500px;}
.y85{bottom:616.654500px;}
.y18d{bottom:616.984500px;}
.y1d6{bottom:617.235000px;}
.y109{bottom:617.632500px;}
.y1fb{bottom:617.713500px;}
.y5b{bottom:617.803500px;}
.y162{bottom:620.269500px;}
.y2b0{bottom:623.026500px;}
.y2b{bottom:624.093000px;}
.y161{bottom:630.079500px;}
.y13b{bottom:632.334000px;}
.yd1{bottom:633.517500px;}
.y1b3{bottom:634.599000px;}
.y18c{bottom:634.918500px;}
.y27c{bottom:635.997000px;}
.yb0{bottom:636.169500px;}
.y1d5{bottom:638.127000px;}
.y5a{bottom:638.695500px;}
.y226{bottom:641.856000px;}
.y84{bottom:642.028500px;}
.y2af{bottom:642.177000px;}
.y108{bottom:642.768000px;}
.y2a{bottom:644.983500px;}
.y252{bottom:645.897000px;}
.y13a{bottom:650.266500px;}
.y1fa{bottom:656.538000px;}
.y27b{bottom:656.889000px;}
.yaf{bottom:657.061500px;}
.yd0{bottom:658.653000px;}
.y1d4{bottom:659.019000px;}
.y59{bottom:659.587500px;}
.y160{bottom:659.779500px;}
.y18b{bottom:660.052500px;}
.y107{bottom:660.700500px;}
.y2ae{bottom:661.327500px;}
.ycd{bottom:662.433000px;}
.y225{bottom:662.748000px;}
.y29{bottom:665.875500px;}
.y251{bottom:666.789000px;}
.y139{bottom:668.199000px;}
.y15f{bottom:669.679500px;}
.y1b2{bottom:676.794000px;}
.y83{bottom:677.371500px;}
.y1f9{bottom:677.430000px;}
.y27a{bottom:677.779500px;}
.yae{bottom:677.953500px;}
.y18a{bottom:677.986500px;}
.ycc{bottom:680.365500px;}
.y58{bottom:680.478000px;}
.y224{bottom:683.640000px;}
.ycf{bottom:683.788500px;}
.y1d3{bottom:684.393000px;}
.y106{bottom:685.836000px;}
.y28{bottom:686.767500px;}
.y250{bottom:687.679500px;}
.y136{bottom:693.334500px;}
.y189{bottom:695.919000px;}
.y82{bottom:698.263500px;}
.y1f8{bottom:698.320500px;}
.y279{bottom:698.671500px;}
.yad{bottom:698.844000px;}
.y1b1{bottom:699.075000px;}
.y15d{bottom:699.288692px;}
.y2ad{bottom:699.628500px;}
.y57{bottom:701.370000px;}
.y138{bottom:702.300000px;}
.y105{bottom:703.768500px;}
.y27{bottom:707.658000px;}
.y24f{bottom:708.571500px;}
.y15c{bottom:708.739500px;}
.yce{bottom:708.922500px;}
.y134{bottom:711.267000px;}
.y223{bottom:711.733500px;}
.y1b0{bottom:717.007500px;}
.y15e{bottom:718.279387px;}
.y2ac{bottom:718.779000px;}
.y81{bottom:719.154000px;}
.y1f7{bottom:719.212500px;}
.y278{bottom:719.563500px;}
.y1d2{bottom:719.736000px;}
.y137{bottom:720.234000px;}
.y188{bottom:721.053000px;}
.y104{bottom:721.701000px;}
.y56{bottom:722.262000px;}
.yac{bottom:724.219500px;}
.y26{bottom:728.550000px;}
.y135{bottom:729.199500px;}
.y186{bottom:730.020000px;}
.y222{bottom:732.625500px;}
.ycb{bottom:734.058000px;}
.y24e{bottom:736.665000px;}
.y2ab{bottom:737.929500px;}
.y15b{bottom:738.079500px;}
.y187{bottom:738.987000px;}
.y80{bottom:740.046000px;}
.y277{bottom:740.454000px;}
.y1d1{bottom:740.628000px;}
.y1af{bottom:742.143000px;}
.y55{bottom:743.152500px;}
.y1f6{bottom:744.588000px;}
.y103{bottom:746.836500px;}
.y25{bottom:749.442000px;}
.y2aa{bottom:757.081500px;}
.y24d{bottom:757.557000px;}
.yca{bottom:759.193500px;}
.yab{bottom:759.561000px;}
.y1ae{bottom:760.075500px;}
.y221{bottom:760.719000px;}
.y7f{bottom:760.938000px;}
.y276{bottom:761.346000px;}
.y1d0{bottom:761.518500px;}
.y54{bottom:764.044500px;}
.y102{bottom:764.769000px;}
.y133{bottom:764.854500px;}
.y15a{bottom:766.519888px;}
.y185{bottom:771.652500px;}
.y2a9{bottom:776.232000px;}
.y24c{bottom:778.449000px;}
.y24{bottom:779.299500px;}
.yaa{bottom:780.453000px;}
.y7e{bottom:781.828500px;}
.y275{bottom:782.238000px;}
.y1cf{bottom:782.410500px;}
.y1f5{bottom:783.411000px;}
.y132{bottom:784.087500px;}
.yc9{bottom:784.329000px;}
.y53{bottom:784.936500px;}
.y1ad{bottom:785.211000px;}
.y159{bottom:786.319500px;}
.y220{bottom:788.812500px;}
.y101{bottom:789.904500px;}
.y2cb{bottom:790.651500px;}
.y2a8{bottom:795.382500px;}
.ya9{bottom:801.345000px;}
.y7d{bottom:802.720500px;}
.y274{bottom:803.128500px;}
.y1ac{bottom:803.143500px;}
.y1ce{bottom:803.302500px;}
.y1f4{bottom:804.303000px;}
.y52{bottom:805.827000px;}
.y24b{bottom:806.542500px;}
.y2ca{bottom:809.802000px;}
.y2a7{bottom:814.533000px;}
.yc8{bottom:816.994500px;}
.y23{bottom:819.319500px;}
.y21f{bottom:821.058000px;}
.ya8{bottom:822.235500px;}
.y158{bottom:823.398688px;}
.y273{bottom:824.020500px;}
.y1cd{bottom:824.193000px;}
.y1f3{bottom:825.195000px;}
.y100{bottom:825.559500px;}
.y51{bottom:826.719000px;}
.y24a{bottom:827.434500px;}
.y7c{bottom:828.096000px;}
.y1ab{bottom:828.279000px;}
.y2c9{bottom:828.954000px;}
.y184{bottom:830.275500px;}
.y2a6{bottom:833.683500px;}
.y22{bottom:835.459500px;}
.y131{bottom:836.781000px;}
.y21e{bottom:841.950000px;}
.y157{bottom:843.109082px;}
.ya7{bottom:843.127500px;}
.yff{bottom:844.791000px;}
.y272{bottom:844.912500px;}
.y1f2{bottom:846.087000px;}
.y50{bottom:847.611000px;}
.y249{bottom:848.325000px;}
.y1cc{bottom:849.568500px;}
.y2a5{bottom:852.834000px;}
.y1aa{bottom:853.414500px;}
.y130{bottom:854.713500px;}
.y21{bottom:855.937500px;}
.y156{bottom:862.999046px;}
.y7b{bottom:863.437500px;}
.ya6{bottom:864.019500px;}
.y1f1{bottom:866.977500px;}
.y4f{bottom:868.503000px;}
.y248{bottom:869.217000px;}
.y1a9{bottom:871.347000px;}
.y2a4{bottom:871.984500px;}
.y20{bottom:872.077500px;}
.y12f{bottom:879.849000px;}
.y271{bottom:880.747500px;}
.y21d{bottom:880.774500px;}
.y1f{bottom:883.878000px;}
.y7a{bottom:884.329500px;}
.ya5{bottom:884.910000px;}
.y4e{bottom:889.393500px;}
.y2a3{bottom:891.135000px;}
.y1f0{bottom:892.353000px;}
.yfe{bottom:895.797000px;}
.y1a8{bottom:896.482500px;}
.yfc{bottom:896.856000px;}
.y247{bottom:897.310500px;}
.y12e{bottom:897.781500px;}
.y1e{bottom:904.357500px;}
.y79{bottom:905.220000px;}
.ya4{bottom:905.802000px;}
.y21c{bottom:909.240000px;}
.y4d{bottom:910.285500px;}
.y1a7{bottom:914.415000px;}
.yfb{bottom:914.790000px;}
.y12d{bottom:915.714000px;}
.y154{bottom:915.829749px;}
.y246{bottom:918.202500px;}
.yfd{bottom:920.931000px;}
.y270{bottom:922.530000px;}
.y153{bottom:924.829500px;}
.y78{bottom:926.112000px;}
.ya3{bottom:926.694000px;}
.y21b{bottom:928.738500px;}
.y2a2{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.y1a6{bottom:932.347500px;}
.y245{bottom:939.094500px;}
.y12c{bottom:940.849500px;}
.y26f{bottom:943.422000px;}
.yfa{bottom:946.066500px;}
.y77{bottom:947.004000px;}
.ya2{bottom:947.584500px;}
.y2a1{bottom:948.586500px;}
.y1d{bottom:949.033500px;}
.yf8{bottom:949.074000px;}
.y4b{bottom:952.068000px;}
.y21a{bottom:957.202500px;}
.y1a5{bottom:957.483000px;}
.y12b{bottom:958.782000px;}
.y244{bottom:959.985000px;}
.y26e{bottom:964.314000px;}
.yf7{bottom:967.006500px;}
.y2a0{bottom:967.737000px;}
.y76{bottom:967.896000px;}
.ya1{bottom:968.476500px;}
.y1c{bottom:969.925500px;}
.yf9{bottom:971.202000px;}
.y4a{bottom:972.960000px;}
.y1a4{bottom:975.415500px;}
.y12a{bottom:976.716000px;}
.y26d{bottom:985.204500px;}
.y219{bottom:985.668000px;}
.y29f{bottom:986.887500px;}
.y243{bottom:988.080000px;}
.y75{bottom:988.786500px;}
.ya0{bottom:989.368500px;}
.y49{bottom:993.852000px;}
.yf6{bottom:996.337500px;}
.y1a3{bottom:1000.551000px;}
.y129{bottom:1001.850000px;}
.y218{bottom:1005.166500px;}
.y29e{bottom:1006.038000px;}
.yf5{bottom:1008.459000px;}
.y1b{bottom:1008.748500px;}
.y242{bottom:1008.970500px;}
.y9f{bottom:1010.260500px;}
.y26c{bottom:1010.580000px;}
.y74{bottom:1014.162000px;}
.y48{bottom:1014.742500px;}
.y1a2{bottom:1018.483500px;}
.y128{bottom:1019.782500px;}
.y217{bottom:1024.666500px;}
.y29d{bottom:1025.188500px;}
.y9e{bottom:1031.151000px;}
.y47{bottom:1035.634500px;}
.y241{bottom:1037.065500px;}
.y127{bottom:1037.716500px;}
.y73{bottom:1038.594000px;}
.y1a{bottom:1040.086500px;}
.y1a1{bottom:1043.617500px;}
.y29c{bottom:1044.339000px;}
.yf4{bottom:1046.607000px;}
.y9d{bottom:1052.043000px;}
.y26b{bottom:1052.362500px;}
.y216{bottom:1053.130500px;}
.y46{bottom:1056.526500px;}
.y240{bottom:1057.956000px;}
.y1a0{bottom:1061.551500px;}
.y126{bottom:1062.850500px;}
.y29b{bottom:1063.489500px;}
.yf3{bottom:1064.539500px;}
.y19{bottom:1071.424500px;}
.y9c{bottom:1072.935000px;}
.y26a{bottom:1073.254500px;}
.y45{bottom:1077.417000px;}
.y23f{bottom:1078.848000px;}
.y125{bottom:1080.784500px;}
.y215{bottom:1081.596000px;}
.y29a{bottom:1082.640000px;}
.y19f{bottom:1086.685500px;}
.yf2{bottom:1089.675000px;}
.y9b{bottom:1093.825500px;}
.y269{bottom:1094.146500px;}
.y44{bottom:1098.309000px;}
.y214{bottom:1101.094500px;}
.y299{bottom:1101.790500px;}
.y18{bottom:1102.761000px;}
.y124{bottom:1105.918500px;}
.y23e{bottom:1106.941500px;}
.y9a{bottom:1114.717500px;}
.y43{bottom:1119.201000px;}
.y268{bottom:1119.520500px;}
.y213{bottom:1120.593000px;}
.y298{bottom:1120.941000px;}
.yf1{bottom:1122.340500px;}
.y23d{bottom:1135.036500px;}
.y42{bottom:1140.091500px;}
.y267{bottom:1140.412500px;}
.yf0{bottom:1141.573500px;}
.y297{bottom:1144.974000px;}
.y41{bottom:1200.196500px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.hf{height:39.434227px;}
.h1a{height:39.614278px;}
.h1b{height:41.250077px;}
.h15{height:41.645099px;}
.h12{height:41.656717px;}
.hb{height:41.723369px;}
.h8{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.h14{height:46.980818px;}
.hc{height:48.848947px;}
.ha{height:51.861658px;}
.h13{height:52.304919px;}
.h9{height:54.276245px;}
.h5{height:54.541601px;}
.h4{height:77.792486px;}
.h10{height:79.085759px;}
.h16{height:79.804646px;}
.h1e{height:90.138245px;}
.he{height:90.144245px;}
.h17{height:91.544919px;}
.h19{height:91.904919px;}
.h18{height:91.906690px;}
.h1f{height:96.054245px;}
.hd{height:106.326245px;}
.h11{height:406.323000px;}
.h1c{height:892.914000px;}
.h1d{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:489.910500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x66{left:-181.062000px;}
.x0{left:0.000000px;}
.x68{left:2.897696px;}
.x71{left:16.488000px;}
.x67{left:32.867532px;}
.x6f{left:36.108000px;}
.x69{left:44.928000px;}
.x1{left:53.574000px;}
.x51{left:62.571000px;}
.x54{left:65.878500px;}
.x55{left:67.006500px;}
.x58{left:68.613000px;}
.x61{left:69.624000px;}
.x5a{left:70.668000px;}
.x4c{left:72.931500px;}
.x4e{left:75.024000px;}
.x62{left:76.027500px;}
.x52{left:77.101500px;}
.x4b{left:79.470000px;}
.x64{left:80.757000px;}
.x4d{left:82.099500px;}
.x85{left:84.183000px;}
.x4a{left:85.783500px;}
.x5b{left:86.956500px;}
.x57{left:88.360500px;}
.x59{left:90.064500px;}
.x4f{left:92.994000px;}
.x8d{left:94.627500px;}
.x87{left:101.659500px;}
.x88{left:105.037500px;}
.x65{left:109.696500px;}
.x53{left:114.676500px;}
.x5c{left:116.727000px;}
.x50{left:122.545500px;}
.x42{left:125.025000px;}
.x63{left:126.889500px;}
.x84{left:127.945500px;}
.x8e{left:130.530000px;}
.x56{left:132.094500px;}
.x8a{left:140.461500px;}
.x86{left:141.537000px;}
.x8c{left:144.757500px;}
.x83{left:146.028000px;}
.x79{left:148.149000px;}
.x70{left:165.078000px;}
.x89{left:166.627500px;}
.x72{left:168.588000px;}
.x6a{left:171.197012px;}
.x36{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x6b{left:251.566300px;}
.xaa{left:254.359500px;}
.xc1{left:258.556500px;}
.xab{left:266.650500px;}
.x3{left:269.914500px;}
.x2e{left:272.653500px;}
.x27{left:275.604000px;}
.x41{left:277.395000px;}
.x30{left:278.721000px;}
.x37{left:279.883500px;}
.x5{left:281.479500px;}
.x40{left:283.723500px;}
.x28{left:286.065000px;}
.x2d{left:288.769500px;}
.x24{left:290.682000px;}
.x15{left:291.720000px;}
.x26{left:294.598500px;}
.x31{left:296.278500px;}
.x22{left:299.695500px;}
.x16{left:301.620000px;}
.x60{left:304.636500px;}
.x43{left:307.926000px;}
.x23{left:314.638500px;}
.xb3{left:343.102500px;}
.x74{left:344.650500px;}
.x6c{left:355.245618px;}
.xb4{left:358.047000px;}
.xa2{left:360.268500px;}
.x7a{left:365.868000px;}
.xa8{left:367.290000px;}
.x9d{left:370.588500px;}
.xa3{left:375.213000px;}
.x38{left:377.946000px;}
.x99{left:380.589000px;}
.xa9{left:382.233000px;}
.xae{left:390.001500px;}
.xc0{left:391.933500px;}
.xb9{left:393.139500px;}
.x3f{left:395.259000px;}
.xb1{left:396.877500px;}
.x33{left:398.841000px;}
.x39{left:402.066000px;}
.x2a{left:405.192000px;}
.x8b{left:407.329500px;}
.x2c{left:409.758000px;}
.xb2{left:411.820500px;}
.x9e{left:414.529500px;}
.x32{left:418.761000px;}
.x2b{left:420.292500px;}
.x29{left:422.310000px;}
.x34{left:424.320000px;}
.x35{left:426.144000px;}
.x5d{left:427.359000px;}
.x9f{left:429.474000px;}
.x2f{left:433.450500px;}
.xa0{left:437.095500px;}
.x44{left:440.790000px;}
.x95{left:442.578000px;}
.xa1{left:452.038500px;}
.x96{left:457.522500px;}
.x6d{left:458.924936px;}
.x45{left:464.910000px;}
.xe{left:474.783000px;}
.x6e{left:482.234965px;}
.x73{left:485.565504px;}
.xf{left:489.727500px;}
.x25{left:495.064500px;}
.x7b{left:497.848500px;}
.x14{left:499.875000px;}
.x7c{left:504.483000px;}
.x1b{left:511.096500px;}
.x8f{left:512.859000px;}
.xac{left:517.098000px;}
.x3a{left:519.930000px;}
.xa4{left:521.494500px;}
.x1c{left:526.041000px;}
.x90{left:527.803500px;}
.x17{left:530.598000px;}
.xad{left:532.042500px;}
.xa5{left:536.439000px;}
.x18{left:538.069500px;}
.x9a{left:541.348500px;}
.x1d{left:544.795500px;}
.xc2{left:553.218000px;}
.x10{left:561.036000px;}
.x11{left:575.980500px;}
.x12{left:579.753000px;}
.xb7{left:590.899500px;}
.x13{left:594.697500px;}
.x46{left:597.772500px;}
.xb8{left:605.844000px;}
.x3b{left:613.675500px;}
.x47{left:621.892500px;}
.x76{left:624.082500px;}
.xbc{left:630.931500px;}
.xba{left:635.421000px;}
.x3c{left:637.795500px;}
.x77{left:642.036000px;}
.xbd{left:645.876000px;}
.x93{left:649.468500px;}
.x78{left:657.421500px;}
.x7d{left:659.506500px;}
.x94{left:664.413000px;}
.x1e{left:672.535500px;}
.x91{left:677.416500px;}
.x1f{left:687.478500px;}
.x5e{left:691.299000px;}
.x92{left:692.361000px;}
.x20{left:695.070000px;}
.x6{left:697.198500px;}
.xc3{left:698.845500px;}
.x19{left:702.624000px;}
.x7{left:704.671500px;}
.xc4{left:707.406000px;}
.x8{left:708.418500px;}
.x21{left:710.014500px;}
.x5f{left:714.544500px;}
.x9{left:715.890000px;}
.x1a{left:717.568500px;}
.x97{left:721.228500px;}
.xa6{left:725.971500px;}
.x3d{left:731.541000px;}
.x48{left:733.675500px;}
.x98{left:736.171500px;}
.xa7{left:740.914500px;}
.x3e{left:755.659500px;}
.x49{left:757.275000px;}
.x75{left:760.189500px;}
.xbe{left:775.405500px;}
.x9b{left:783.918000px;}
.xbf{left:790.350000px;}
.xbb{left:792.528000px;}
.xa{left:795.132000px;}
.x9c{left:798.862500px;}
.xaf{left:803.986500px;}
.xb{left:810.076500px;}
.xb0{left:816.277500px;}
.xc{left:817.698000px;}
.xb5{left:818.893500px;}
.xd{left:832.642500px;}
.xb6{left:833.838000px;}
.x7e{left:860.796000px;}
.x7f{left:993.166500px;}
.x80{left:1004.173500px;}
.x81{left:1107.883500px;}
.x82{left:1125.949500px;}
@media print{
.v5{vertical-align:-48.192000pt;}
.v9{vertical-align:-34.880000pt;}
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:31.882667pt;}
.v7{vertical-align:33.919598pt;}
.v8{vertical-align:34.880000pt;}
.va{vertical-align:37.136000pt;}
.v4{vertical-align:46.266667pt;}
.ls1f{letter-spacing:-2.951060pt;}
.ls28{letter-spacing:-0.356943pt;}
.ls25{letter-spacing:-0.216176pt;}
.ls27{letter-spacing:-0.191040pt;}
.ls24{letter-spacing:-0.160876pt;}
.ls2d{letter-spacing:-0.130711pt;}
.ls23{letter-spacing:-0.108375pt;}
.ls26{letter-spacing:-0.090492pt;}
.ls21{letter-spacing:-0.070383pt;}
.ls2a{letter-spacing:-0.065356pt;}
.ls20{letter-spacing:-0.020109pt;}
.ls2e{letter-spacing:-0.015082pt;}
.ls6{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.001026pt;}
.ls41{letter-spacing:0.004550pt;}
.ls1e{letter-spacing:0.005027pt;}
.ls1a{letter-spacing:0.020109pt;}
.ls12{letter-spacing:0.027094pt;}
.ls11{letter-spacing:0.070383pt;}
.lsf{letter-spacing:0.080438pt;}
.ls16{letter-spacing:0.085465pt;}
.ls1c{letter-spacing:0.090492pt;}
.lse{letter-spacing:0.095520pt;}
.ls1b{letter-spacing:0.100547pt;}
.ls10{letter-spacing:0.110602pt;}
.ls13{letter-spacing:0.117406pt;}
.ls19{letter-spacing:0.125684pt;}
.ls1d{letter-spacing:0.130953pt;}
.ls14{letter-spacing:0.155848pt;}
.lsb{letter-spacing:0.160156pt;}
.ls29{letter-spacing:0.165903pt;}
.ls2f{letter-spacing:0.167078pt;}
.lsc{letter-spacing:0.180175pt;}
.ls18{letter-spacing:0.191040pt;}
.ls17{letter-spacing:0.196067pt;}
.ls2c{letter-spacing:0.206122pt;}
.ls2b{letter-spacing:0.211149pt;}
.lsd{letter-spacing:0.212206pt;}
.ls22{letter-spacing:0.279969pt;}
.ls36{letter-spacing:0.482502pt;}
.ls0{letter-spacing:7.437600pt;}
.ls9{letter-spacing:10.623733pt;}
.ls5{letter-spacing:10.626533pt;}
.ls8{letter-spacing:10.627366pt;}
.ls37{letter-spacing:10.629067pt;}
.ls3d{letter-spacing:11.712827pt;}
.ls46{letter-spacing:11.856565pt;}
.ls3f{letter-spacing:11.870543pt;}
.ls43{letter-spacing:11.897861pt;}
.ls3c{letter-spacing:11.906686pt;}
.ls3b{letter-spacing:11.954133pt;}
.ls3e{letter-spacing:11.959467pt;}
.ls45{letter-spacing:11.964960pt;}
.ls42{letter-spacing:11.993776pt;}
.ls40{letter-spacing:12.004437pt;}
.ls47{letter-spacing:12.216054pt;}
.ls34{letter-spacing:13.147918pt;}
.ls7{letter-spacing:13.230333pt;}
.ls39{letter-spacing:13.231609pt;}
.ls38{letter-spacing:13.236910pt;}
.ls30{letter-spacing:13.283467pt;}
.ls32{letter-spacing:13.283733pt;}
.lsa{letter-spacing:13.442868pt;}
.ls31{letter-spacing:13.465521pt;}
.ls44{letter-spacing:14.131075pt;}
.ls48{letter-spacing:14.486630pt;}
.ls33{letter-spacing:15.242217pt;}
.ls35{letter-spacing:19.738949pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ls3a{letter-spacing:94.653067pt;}
.ls15{letter-spacing:255.455244pt;}
.wsc{word-spacing:-13.283467pt;}
.wscd{word-spacing:-11.955200pt;}
.wsa{word-spacing:-10.626800pt;}
.ws66{word-spacing:-10.189909pt;}
.ws8{word-spacing:-10.095467pt;}
.ws67{word-spacing:-10.009733pt;}
.ws3{word-spacing:-9.298400pt;}
.wse1{word-spacing:-3.081764pt;}
.ws70{word-spacing:-3.046580pt;}
.ws4c{word-spacing:-2.975497pt;}
.ws71{word-spacing:-2.930951pt;}
.ws94{word-spacing:-2.869229pt;}
.ws82{word-spacing:-2.820349pt;}
.ws9b{word-spacing:-2.762961pt;}
.ws40{word-spacing:-2.391024pt;}
.ws9a{word-spacing:-2.284756pt;}
.wscf{word-spacing:-2.247578pt;}
.wsc4{word-spacing:-2.019087pt;}
.wsbf{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.wsc6{word-spacing:-1.647150pt;}
.ws48{word-spacing:-1.594016pt;}
.ws24{word-spacing:-1.487748pt;}
.ws3b{word-spacing:-1.434614pt;}
.ws109{word-spacing:-1.386803pt;}
.wsa6{word-spacing:-1.381481pt;}
.ws45{word-spacing:-1.328347pt;}
.ws6a{word-spacing:-1.275213pt;}
.wsa9{word-spacing:-1.222079pt;}
.wsed{word-spacing:-1.195520pt;}
.wsde{word-spacing:-1.099878pt;}
.ws93{word-spacing:-1.009543pt;}
.wsdc{word-spacing:-1.004237pt;}
.wsdd{word-spacing:-0.956416pt;}
.wsb2{word-spacing:-0.956410pt;}
.wsda{word-spacing:-0.908595pt;}
.ws49{word-spacing:-0.903276pt;}
.ws95{word-spacing:-0.850142pt;}
.ws1d{word-spacing:-0.797008pt;}
.ws4e{word-spacing:-0.690740pt;}
.ws44{word-spacing:-0.584473pt;}
.ws7f{word-spacing:-0.578146pt;}
.ws42{word-spacing:-0.478205pt;}
.ws64{word-spacing:-0.425071pt;}
.wsea{word-spacing:-0.382566pt;}
.wsca{word-spacing:-0.371937pt;}
.ws68{word-spacing:-0.334746pt;}
.ws3f{word-spacing:-0.318803pt;}
.wsd8{word-spacing:-0.286925pt;}
.ws6e{word-spacing:-0.284276pt;}
.ws80{word-spacing:-0.271477pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws7b{word-spacing:-0.261423pt;}
.ws7d{word-spacing:-0.256395pt;}
.ws6d{word-spacing:-0.252245pt;}
.wsec{word-spacing:-0.239104pt;}
.ws16{word-spacing:-0.212535pt;}
.wsf4{word-spacing:-0.191283pt;}
.wse{word-spacing:-0.159402pt;}
.wse8{word-spacing:-0.143462pt;}
.ws75{word-spacing:-0.135739pt;}
.ws12{word-spacing:-0.106268pt;}
.wsdb{word-spacing:-0.095642pt;}
.ws91{word-spacing:-0.070383pt;}
.ws19{word-spacing:-0.053134pt;}
.ws60{word-spacing:-0.047821pt;}
.ws21{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws7{word-spacing:0.000000pt;}
.ws78{word-spacing:0.025137pt;}
.ws7e{word-spacing:0.045246pt;}
.ws57{word-spacing:0.047821pt;}
.ws81{word-spacing:0.050274pt;}
.ws1f{word-spacing:0.053134pt;}
.ws7c{word-spacing:0.090492pt;}
.ws9f{word-spacing:0.095642pt;}
.wsf{word-spacing:0.106268pt;}
.ws8f{word-spacing:0.135469pt;}
.wsce{word-spacing:0.143462pt;}
.ws74{word-spacing:0.145793pt;}
.ws87{word-spacing:0.155848pt;}
.ws29{word-spacing:0.159402pt;}
.ws7a{word-spacing:0.170930pt;}
.wsdf{word-spacing:0.191283pt;}
.ws31{word-spacing:0.212535pt;}
.wsfa{word-spacing:0.239104pt;}
.ws88{word-spacing:0.256395pt;}
.wsd{word-spacing:0.265669pt;}
.ws92{word-spacing:0.276505pt;}
.wsd1{word-spacing:0.286925pt;}
.ws1e{word-spacing:0.318803pt;}
.wsff{word-spacing:0.334746pt;}
.ws36{word-spacing:0.371937pt;}
.ws6{word-spacing:0.375335pt;}
.ws72{word-spacing:0.497709pt;}
.ws39{word-spacing:0.531339pt;}
.ws2e{word-spacing:0.584473pt;}
.ws79{word-spacing:0.613338pt;}
.ws73{word-spacing:0.648529pt;}
.wsd4{word-spacing:0.717312pt;}
.ws33{word-spacing:0.743874pt;}
.ws90{word-spacing:0.794323pt;}
.wse3{word-spacing:0.797008pt;}
.ws55{word-spacing:0.850142pt;}
.wsfb{word-spacing:0.860774pt;}
.wsc1{word-spacing:0.903276pt;}
.ws25{word-spacing:0.956410pt;}
.wsd5{word-spacing:0.956416pt;}
.ws59{word-spacing:1.009543pt;}
.wsd3{word-spacing:1.052058pt;}
.wsa4{word-spacing:1.062677pt;}
.ws23{word-spacing:1.115811pt;}
.ws15{word-spacing:1.222079pt;}
.wsac{word-spacing:1.275213pt;}
.ws65{word-spacing:1.328347pt;}
.ws14{word-spacing:1.381481pt;}
.ws38{word-spacing:1.434614pt;}
.wsab{word-spacing:1.487748pt;}
.ws8b{word-spacing:1.518263pt;}
.ws2a{word-spacing:1.540882pt;}
.ws8a{word-spacing:1.553454pt;}
.wsb6{word-spacing:1.594016pt;}
.ws4f{word-spacing:1.647150pt;}
.ws102{word-spacing:1.673728pt;}
.wsb1{word-spacing:1.700284pt;}
.wsa8{word-spacing:1.753418pt;}
.ws4d{word-spacing:1.806551pt;}
.ws47{word-spacing:1.859685pt;}
.ws6b{word-spacing:1.912819pt;}
.wsd0{word-spacing:1.912832pt;}
.ws10d{word-spacing:1.960653pt;}
.ws22{word-spacing:1.965953pt;}
.ws3d{word-spacing:2.019087pt;}
.ws3e{word-spacing:2.072221pt;}
.ws35{word-spacing:2.178489pt;}
.ws104{word-spacing:2.199757pt;}
.ws54{word-spacing:2.231622pt;}
.ws10f{word-spacing:2.295398pt;}
.wsa3{word-spacing:2.391024pt;}
.wsf1{word-spacing:2.391040pt;}
.ws99{word-spacing:2.444158pt;}
.wsb0{word-spacing:2.497292pt;}
.wsa7{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.ws97{word-spacing:2.603559pt;}
.ws96{word-spacing:2.656693pt;}
.wsc3{word-spacing:2.709827pt;}
.wsd2{word-spacing:2.725786pt;}
.ws3c{word-spacing:2.762961pt;}
.wse2{word-spacing:2.816095pt;}
.wsd9{word-spacing:2.866509pt;}
.wsc8{word-spacing:2.869229pt;}
.wsfd{word-spacing:2.869248pt;}
.ws46{word-spacing:2.922363pt;}
.wsb8{word-spacing:2.975497pt;}
.ws43{word-spacing:3.028630pt;}
.ws84{word-spacing:3.046580pt;}
.ws89{word-spacing:3.051608pt;}
.ws83{word-spacing:3.071717pt;}
.wsfe{word-spacing:3.108352pt;}
.wsc0{word-spacing:3.134898pt;}
.wsef{word-spacing:3.139321pt;}
.ws1a{word-spacing:3.141942pt;}
.ws18{word-spacing:3.165520pt;}
.ws53{word-spacing:3.188032pt;}
.ws5b{word-spacing:3.241166pt;}
.ws10b{word-spacing:3.299635pt;}
.wsc9{word-spacing:3.347434pt;}
.ws13{word-spacing:3.400567pt;}
.ws5a{word-spacing:3.453701pt;}
.wsb9{word-spacing:3.506835pt;}
.ws17{word-spacing:3.559969pt;}
.ws5e{word-spacing:3.586560pt;}
.ws2b{word-spacing:3.613103pt;}
.wscb{word-spacing:3.666237pt;}
.wsa1{word-spacing:3.730022pt;}
.wsc5{word-spacing:3.772505pt;}
.ws32{word-spacing:3.825638pt;}
.ws1b{word-spacing:3.825664pt;}
.ws52{word-spacing:3.878772pt;}
.wsb4{word-spacing:3.931906pt;}
.ws2c{word-spacing:3.985040pt;}
.ws34{word-spacing:4.038174pt;}
.ws69{word-spacing:4.091308pt;}
.wsba{word-spacing:4.144442pt;}
.wsae{word-spacing:4.197575pt;}
.wsaf{word-spacing:4.250709pt;}
.wsb3{word-spacing:4.303843pt;}
.wsad{word-spacing:4.356977pt;}
.ws30{word-spacing:4.463245pt;}
.wsbb{word-spacing:4.516379pt;}
.wsb7{word-spacing:4.675780pt;}
.wsd6{word-spacing:4.686438pt;}
.ws41{word-spacing:4.728914pt;}
.ws11{word-spacing:4.782048pt;}
.ws63{word-spacing:4.888316pt;}
.ws8c{word-spacing:4.894939pt;}
.ws8d{word-spacing:4.931064pt;}
.ws85{word-spacing:4.936868pt;}
.ws77{word-spacing:5.034924pt;}
.ws86{word-spacing:5.042442pt;}
.ws2f{word-spacing:5.047717pt;}
.ws8e{word-spacing:5.062017pt;}
.ws4b{word-spacing:5.153985pt;}
.ws76{word-spacing:5.170393pt;}
.wsbd{word-spacing:5.207119pt;}
.wscc{word-spacing:5.355930pt;}
.ws101{word-spacing:5.403750pt;}
.ws6c{word-spacing:5.419654pt;}
.ws50{word-spacing:5.525922pt;}
.wsf7{word-spacing:5.595034pt;}
.ws26{word-spacing:5.685324pt;}
.wsbc{word-spacing:5.897859pt;}
.ws37{word-spacing:6.216662pt;}
.wsaa{word-spacing:6.269796pt;}
.wsc7{word-spacing:6.322930pt;}
.ws10{word-spacing:6.376064pt;}
.ws9d{word-spacing:6.429198pt;}
.ws9c{word-spacing:6.482332pt;}
.ws5c{word-spacing:6.551450pt;}
.ws28{word-spacing:6.748001pt;}
.wsb5{word-spacing:6.854269pt;}
.ws1c{word-spacing:6.960537pt;}
.ws51{word-spacing:7.013670pt;}
.ws4a{word-spacing:7.066804pt;}
.wsbe{word-spacing:7.226206pt;}
.ws98{word-spacing:7.332474pt;}
.wsc2{word-spacing:7.385607pt;}
.ws2{word-spacing:7.401323pt;}
.wsa5{word-spacing:7.491875pt;}
.wsd7{word-spacing:9.038131pt;}
.ws6f{word-spacing:9.661395pt;}
.ws56{word-spacing:9.670364pt;}
.ws5{word-spacing:10.042272pt;}
.ws9e{word-spacing:10.580512pt;}
.ws20{word-spacing:10.585845pt;}
.ws27{word-spacing:11.158112pt;}
.wseb{word-spacing:11.537501pt;}
.ws105{word-spacing:11.668275pt;}
.ws107{word-spacing:11.763917pt;}
.wsf2{word-spacing:11.820639pt;}
.wse6{word-spacing:11.859558pt;}
.wsf6{word-spacing:11.900493pt;}
.ws10c{word-spacing:11.901158pt;}
.wse9{word-spacing:11.901474pt;}
.ws100{word-spacing:11.902566pt;}
.wsf5{word-spacing:11.902771pt;}
.wsee{word-spacing:11.904614pt;}
.ws10a{word-spacing:11.906210pt;}
.wse5{word-spacing:11.907379pt;}
.wse4{word-spacing:12.050842pt;}
.ws108{word-spacing:12.146483pt;}
.wsf9{word-spacing:13.103804pt;}
.ws3a{word-spacing:13.230333pt;}
.ws103{word-spacing:13.581107pt;}
.ws106{word-spacing:14.772437pt;}
.wse7{word-spacing:14.776627pt;}
.wsf8{word-spacing:14.824448pt;}
.wsf3{word-spacing:14.864199pt;}
.wsfc{word-spacing:14.967910pt;}
.wsf0{word-spacing:15.063552pt;}
.ws1{word-spacing:19.715148pt;}
.ws10e{word-spacing:21.136794pt;}
.ws9{word-spacing:35.098430pt;}
.ws61{word-spacing:118.319444pt;}
.wse0{word-spacing:206.690741pt;}
.ws5d{word-spacing:244.893991pt;}
.ws58{word-spacing:283.309777pt;}
.ws62{word-spacing:350.736654pt;}
.ws5f{word-spacing:423.848854pt;}
.wsa0{word-spacing:436.760384pt;}
.wsa2{word-spacing:449.671914pt;}
._3{margin-left:-7.077478pt;}
._c{margin-left:-5.791591pt;}
._5{margin-left:-4.718299pt;}
._2{margin-left:-3.421811pt;}
._8f{margin-left:-2.284079pt;}
._1{margin-left:-1.338970pt;}
._50{width:1.119458pt;}
._4{width:2.661019pt;}
._4f{width:3.702074pt;}
._0{width:9.670336pt;}
._7a{width:11.009333pt;}
._90{width:12.017666pt;}
._14{width:12.922153pt;}
._10{width:14.243043pt;}
._a{width:15.674491pt;}
._6{width:16.787135pt;}
._18{width:17.799845pt;}
._d{width:18.809389pt;}
._8{width:19.723287pt;}
._16{width:20.839099pt;}
._13{width:22.624412pt;}
._5a{width:24.590365pt;}
._15{width:25.897490pt;}
._b{width:27.597723pt;}
._11{width:29.499919pt;}
._79{width:30.403195pt;}
._9{width:31.348981pt;}
._17{width:33.899407pt;}
._7{width:36.184163pt;}
._12{width:37.469999pt;}
._5b{width:39.053392pt;}
._8e{width:54.993920pt;}
._1b{width:69.286562pt;}
._8d{width:78.904320pt;}
._39{width:109.827702pt;}
._3c{width:123.111169pt;}
._3b{width:131.166053pt;}
._42{width:136.394636pt;}
._3a{width:139.848337pt;}
._43{width:143.036369pt;}
._2c{width:147.297701pt;}
._3d{width:149.678102pt;}
._46{width:153.131804pt;}
._59{width:159.139609pt;}
._57{width:160.061585pt;}
._38{width:162.961569pt;}
._54{width:165.609274pt;}
._58{width:172.086773pt;}
._44{width:173.057004pt;}
._56{width:178.515129pt;}
._3e{width:179.698737pt;}
._21{width:182.780501pt;}
._31{width:183.718497pt;}
._26{width:186.138558pt;}
._47{width:189.528502pt;}
._53{width:191.437892pt;}
._45{width:192.982204pt;}
._35{width:197.711118pt;}
._41{width:202.440032pt;}
._55{width:203.634600pt;}
._36{width:207.031499pt;}
._25{width:210.994585pt;}
._40{width:212.269797pt;}
._3f{width:216.095436pt;}
._2b{width:217.742586pt;}
._32{width:220.314965pt;}
._1e{width:224.278051pt;}
._1f{width:230.388446pt;}
._34{width:233.545165pt;}
._1d{width:237.561518pt;}
._51{width:238.660074pt;}
._24{width:243.140574pt;}
._20{width:244.203251pt;}
._2f{width:246.700543pt;}
._22{width:250.898118pt;}
._33{width:257.486718pt;}
._4b{width:259.390053pt;}
._2d{width:264.075317pt;}
._23{width:270.770185pt;}
._75{width:275.817902pt;}
._2e{width:277.465052pt;}
._67{width:279.484139pt;}
._28{width:283.256643pt;}
._27{width:289.898377pt;}
._5f{width:296.486976pt;}
._1a{width:298.027858pt;}
._63{width:313.436679pt;}
._29{width:316.465310pt;}
._2a{width:318.112460pt;}
._76{width:330.251551pt;}
._68{width:331.981879pt;}
._6a{width:341.624670pt;}
._49{width:347.070417pt;}
._5e{width:356.209442pt;}
._48{width:364.020121pt;}
._66{width:372.850965pt;}
._62{width:390.215117pt;}
._4a{width:404.667529pt;}
._6e{width:414.441468pt;}
._52{width:417.493727pt;}
._4c{width:421.103437pt;}
._73{width:429.002839pt;}
._5d{width:433.094147pt;}
._4d{width:438.981383pt;}
._6f{width:445.952543pt;}
._65{width:450.043851pt;}
._7c{width:461.797058pt;}
._71{width:462.955380pt;}
._6b{width:466.270926pt;}
._61{width:467.408002pt;}
._37{width:473.954091pt;}
._64{width:479.455973pt;}
._74{width:490.160988pt;}
._78{width:505.094221pt;}
._30{width:506.046946pt;}
._69{width:527.781143pt;}
._6d{width:546.588086pt;}
._77{width:555.674436pt;}
._60{width:562.316613pt;}
._70{width:618.055280pt;}
._1c{width:621.081767pt;}
._19{width:638.775345pt;}
._72{width:642.468112pt;}
._8a{width:648.190662pt;}
._7b{width:692.706220pt;}
._86{width:717.041531pt;}
._88{width:821.247666pt;}
._80{width:921.394382pt;}
._89{width:961.722987pt;}
._83{width:1054.175915pt;}
._8b{width:1164.853759pt;}
._87{width:1260.335317pt;}
._82{width:1295.722473pt;}
._7e{width:1447.600309pt;}
._81{width:1451.404702pt;}
._8c{width:1454.539600pt;}
._7f{width:1569.946358pt;}
._85{width:1576.694359pt;}
._e{width:1589.749537pt;}
._4e{width:1779.011555pt;}
._7d{width:1848.156669pt;}
._84{width:2161.428613pt;}
._6c{width:2254.474870pt;}
._f{width:2275.728204pt;}
._5c{width:3568.240204pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs8{font-size:40.038933pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:45.156267pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:50.273600pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y155{bottom:-136.169333pt;}
.y170{bottom:-82.728864pt;}
.y16f{bottom:-65.129333pt;}
.y16e{bottom:-32.888836pt;}
.y16d{bottom:-15.369333pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:6.310548pt;}
.y40{bottom:40.818667pt;}
.yef{bottom:88.640000pt;}
.y296{bottom:89.105333pt;}
.y17{bottom:89.120000pt;}
.y182{bottom:98.266667pt;}
.y1cb{bottom:98.476000pt;}
.yc7{bottom:101.613333pt;}
.y1e0{bottom:104.708000pt;}
.y16{bottom:105.020000pt;}
.y1ef{bottom:105.213333pt;}
.y123{bottom:105.686667pt;}
.y212{bottom:105.829333pt;}
.y295{bottom:106.128000pt;}
.yee{bottom:107.209333pt;}
.y23c{bottom:110.777333pt;}
.y2c8{bottom:111.210667pt;}
.y3f{bottom:111.578667pt;}
.y181{bottom:116.837333pt;}
.y1ca{bottom:117.046667pt;}
.yc6{bottom:120.182667pt;}
.y15{bottom:120.920000pt;}
.y122{bottom:121.626667pt;}
.y72{bottom:122.042667pt;}
.y294{bottom:123.150667pt;}
.y211{bottom:123.161333pt;}
.y1df{bottom:123.278667pt;}
.y1ee{bottom:123.782667pt;}
.yed{bottom:125.780000pt;}
.y2c7{bottom:128.233333pt;}
.y23b{bottom:129.346667pt;}
.y3e{bottom:130.148000pt;}
.y180{bottom:135.408000pt;}
.y1c9{bottom:135.617333pt;}
.y14{bottom:136.820000pt;}
.y121{bottom:137.568000pt;}
.y293{bottom:140.174667pt;}
.y71{bottom:140.613333pt;}
.y1de{bottom:141.848000pt;}
.y1ed{bottom:142.353333pt;}
.yc5{bottom:142.738667pt;}
.yec{bottom:144.350667pt;}
.y2c6{bottom:145.256000pt;}
.y23a{bottom:147.917333pt;}
.y210{bottom:148.464000pt;}
.y3d{bottom:148.718667pt;}
.y13{bottom:152.721333pt;}
.y17f{bottom:153.978667pt;}
.y1c8{bottom:154.186667pt;}
.y266{bottom:155.282667pt;}
.y292{bottom:157.197333pt;}
.y70{bottom:159.184000pt;}
.y99{bottom:159.901333pt;}
.y120{bottom:159.909333pt;}
.y1ec{bottom:160.924000pt;}
.y2c5{bottom:162.278667pt;}
.y151{bottom:162.709333pt;}
.yeb{bottom:162.920000pt;}
.y183{bottom:164.005333pt;}
.y1dd{bottom:164.404000pt;}
.y20f{bottom:166.260000pt;}
.y3c{bottom:167.289333pt;}
.y12{bottom:168.621333pt;}
.y17e{bottom:172.548000pt;}
.y1c7{bottom:172.757333pt;}
.y239{bottom:172.889333pt;}
.y265{bottom:173.853333pt;}
.y291{bottom:174.220000pt;}
.y11f{bottom:175.849333pt;}
.yc4{bottom:177.249333pt;}
.y6f{bottom:177.753333pt;}
.y98{bottom:178.472000pt;}
.y2c4{bottom:179.301333pt;}
.y1eb{bottom:179.493333pt;}
.yea{bottom:181.490667pt;}
.y150{bottom:182.514667pt;}
.y20e{bottom:184.056000pt;}
.y11{bottom:184.521333pt;}
.y3b{bottom:185.858667pt;}
.y17d{bottom:191.118667pt;}
.y290{bottom:191.242667pt;}
.y1c6{bottom:191.328000pt;}
.y238{bottom:191.460000pt;}
.y11e{bottom:191.790667pt;}
.y264{bottom:192.424000pt;}
.yc3{bottom:195.818667pt;}
.y6e{bottom:196.324000pt;}
.y97{bottom:197.042667pt;}
.y1ea{bottom:198.064000pt;}
.y14f{bottom:198.454667pt;}
.ye9{bottom:200.061333pt;}
.y10{bottom:200.422667pt;}
.y20d{bottom:201.853333pt;}
.y3a{bottom:204.429333pt;}
.y28f{bottom:208.265333pt;}
.y17c{bottom:209.689333pt;}
.y1c5{bottom:209.898667pt;}
.y237{bottom:210.030667pt;}
.y263{bottom:210.993333pt;}
.y2c3{bottom:213.346667pt;}
.y11d{bottom:214.132000pt;}
.yc2{bottom:214.389333pt;}
.y14e{bottom:214.396000pt;}
.y6d{bottom:214.894667pt;}
.y96{bottom:215.612000pt;}
.y1e9{bottom:216.634667pt;}
.ye8{bottom:218.632000pt;}
.y20c{bottom:219.649333pt;}
.y39{bottom:223.000000pt;}
.yf{bottom:224.293333pt;}
.y28e{bottom:225.288000pt;}
.y17b{bottom:228.258667pt;}
.y1c4{bottom:228.468000pt;}
.y19e{bottom:228.768000pt;}
.y11c{bottom:230.072000pt;}
.y2c2{bottom:230.369333pt;}
.yc1{bottom:232.960000pt;}
.y6c{bottom:233.464000pt;}
.y262{bottom:233.549333pt;}
.y95{bottom:234.182667pt;}
.y236{bottom:235.002667pt;}
.y1e8{bottom:235.205333pt;}
.y14d{bottom:236.737333pt;}
.ye7{bottom:237.201333pt;}
.y20b{bottom:237.446667pt;}
.ye{bottom:240.193333pt;}
.y28d{bottom:242.310667pt;}
.y38{bottom:245.554667pt;}
.y11b{bottom:246.013333pt;}
.y17a{bottom:246.829333pt;}
.y1c3{bottom:247.038667pt;}
.y2c1{bottom:247.392000pt;}
.y19d{bottom:248.573333pt;}
.yc0{bottom:251.529333pt;}
.y6b{bottom:252.034667pt;}
.y261{bottom:252.118667pt;}
.y14c{bottom:252.678667pt;}
.y94{bottom:252.753333pt;}
.y235{bottom:253.573333pt;}
.y1e7{bottom:253.774667pt;}
.y20a{bottom:255.242667pt;}
.ye6{bottom:255.772000pt;}
.yd{bottom:256.093333pt;}
.y28c{bottom:259.333333pt;}
.y2c0{bottom:264.414667pt;}
.y19c{bottom:264.513333pt;}
.y179{bottom:265.400000pt;}
.y1c2{bottom:265.609333pt;}
.y11a{bottom:268.354667pt;}
.y14b{bottom:268.618667pt;}
.ybf{bottom:270.100000pt;}
.y6a{bottom:270.605333pt;}
.y260{bottom:270.689333pt;}
.y93{bottom:271.322667pt;}
.yc{bottom:271.994667pt;}
.y234{bottom:272.142667pt;}
.y1e6{bottom:272.345333pt;}
.y209{bottom:273.038667pt;}
.y28b{bottom:276.356000pt;}
.y2bf{bottom:281.437333pt;}
.y178{bottom:283.969333pt;}
.y1c1{bottom:284.178667pt;}
.y119{bottom:284.296000pt;}
.y19b{bottom:286.856000pt;}
.yb{bottom:287.894667pt;}
.ybe{bottom:288.670667pt;}
.y69{bottom:289.176000pt;}
.y25f{bottom:289.260000pt;}
.y92{bottom:289.893333pt;}
.y208{bottom:290.836000pt;}
.y1e5{bottom:290.916000pt;}
.y14a{bottom:290.960000pt;}
.y28a{bottom:293.378667pt;}
.ye3{bottom:293.836000pt;}
.y233{bottom:297.116000pt;}
.y2be{bottom:298.460000pt;}
.ye5{bottom:299.561333pt;}
.y177{bottom:302.540000pt;}
.y1c0{bottom:302.749333pt;}
.y19a{bottom:302.796000pt;}
.ya{bottom:303.794667pt;}
.y118{bottom:306.637333pt;}
.y149{bottom:306.901333pt;}
.ybd{bottom:307.240000pt;}
.y68{bottom:307.745333pt;}
.y25e{bottom:307.829333pt;}
.y91{bottom:308.464000pt;}
.y207{bottom:308.632000pt;}
.y1e4{bottom:309.485333pt;}
.ye2{bottom:309.776000pt;}
.y289{bottom:310.401333pt;}
.y2bd{bottom:315.482667pt;}
.y232{bottom:315.685333pt;}
.y37{bottom:315.965333pt;}
.y9{bottom:319.696000pt;}
.y176{bottom:321.110667pt;}
.y1bf{bottom:321.320000pt;}
.y117{bottom:322.577333pt;}
.y199{bottom:325.138667pt;}
.ye1{bottom:325.716000pt;}
.ybc{bottom:325.810667pt;}
.y67{bottom:326.316000pt;}
.y206{bottom:326.428000pt;}
.y90{bottom:327.034667pt;}
.y288{bottom:327.424000pt;}
.y1e3{bottom:328.056000pt;}
.y148{bottom:329.242667pt;}
.y25d{bottom:331.713333pt;}
.y2bc{bottom:332.506667pt;}
.ye4{bottom:332.530667pt;}
.y36{bottom:334.536000pt;}
.y8{bottom:335.596000pt;}
.y116{bottom:338.518667pt;}
.y175{bottom:339.680000pt;}
.y1be{bottom:339.889333pt;}
.y231{bottom:340.658667pt;}
.y198{bottom:341.078667pt;}
.ye0{bottom:341.656000pt;}
.y205{bottom:344.225333pt;}
.ybb{bottom:344.381333pt;}
.y287{bottom:344.446667pt;}
.y66{bottom:344.886667pt;}
.y147{bottom:345.184000pt;}
.y8f{bottom:345.604000pt;}
.y1e2{bottom:346.626667pt;}
.y2bb{bottom:349.529333pt;}
.y25c{bottom:350.284000pt;}
.y7{bottom:351.496000pt;}
.y115{bottom:354.458667pt;}
.y197{bottom:357.018667pt;}
.y174{bottom:358.250667pt;}
.y1bd{bottom:358.460000pt;}
.y230{bottom:359.228000pt;}
.y146{bottom:361.124000pt;}
.y286{bottom:361.469333pt;}
.ydf{bottom:362.046667pt;}
.yba{bottom:362.952000pt;}
.y65{bottom:363.456000pt;}
.y8e{bottom:364.174667pt;}
.y2ba{bottom:366.552000pt;}
.y6{bottom:367.397333pt;}
.y35{bottom:369.046667pt;}
.y1e1{bottom:369.181333pt;}
.y114{bottom:370.398667pt;}
.y173{bottom:376.821333pt;}
.y16b{bottom:377.030589pt;}
.y1bc{bottom:377.030667pt;}
.ydc{bottom:377.098667pt;}
.y204{bottom:377.961333pt;}
.y285{bottom:378.492000pt;}
.y196{bottom:379.361333pt;}
.yb9{bottom:381.521333pt;}
.y64{bottom:382.026667pt;}
.y145{bottom:383.465333pt;}
.y2b9{bottom:383.574667pt;}
.y22f{bottom:384.200000pt;}
.yde{bottom:384.388000pt;}
.y25b{bottom:384.794667pt;}
.y8d{bottom:386.729333pt;}
.y34{bottom:387.616000pt;}
.y5{bottom:388.610667pt;}
.y113{bottom:392.741333pt;}
.ydb{bottom:393.038667pt;}
.y16a{bottom:394.630119pt;}
.y195{bottom:395.301333pt;}
.y1bb{bottom:395.600000pt;}
.y203{bottom:396.532000pt;}
.y144{bottom:399.406667pt;}
.y284{bottom:399.500000pt;}
.yb8{bottom:400.092000pt;}
.y63{bottom:400.597333pt;}
.y22e{bottom:402.770667pt;}
.y25a{bottom:403.364000pt;}
.y4{bottom:404.510667pt;}
.y33{bottom:406.186667pt;}
.ydd{bottom:406.730667pt;}
.y172{bottom:408.490667pt;}
.y112{bottom:408.681333pt;}
.y169{bottom:412.150469pt;}
.y1ba{bottom:414.170667pt;}
.y202{bottom:415.102667pt;}
.y143{bottom:415.346667pt;}
.y2b8{bottom:417.620000pt;}
.y194{bottom:417.644000pt;}
.y8c{bottom:418.145333pt;}
.yb7{bottom:418.662667pt;}
.y62{bottom:419.166667pt;}
.y3{bottom:420.412000pt;}
.y22d{bottom:421.341333pt;}
.y259{bottom:421.934667pt;}
.y111{bottom:424.621333pt;}
.y32{bottom:424.757333pt;}
.y171{bottom:425.586667pt;}
.yda{bottom:429.073333pt;}
.y168{bottom:429.749999pt;}
.y142{bottom:431.286667pt;}
.y1b9{bottom:432.741333pt;}
.y193{bottom:433.584000pt;}
.y201{bottom:433.672000pt;}
.y2b7{bottom:434.642667pt;}
.y283{bottom:435.338667pt;}
.y2{bottom:436.312000pt;}
.y8b{bottom:436.716000pt;}
.y1dc{bottom:437.232000pt;}
.y61{bottom:437.737333pt;}
.y258{bottom:440.505333pt;}
.yb6{bottom:441.217333pt;}
.y31{bottom:443.326667pt;}
.y152{bottom:445.522667pt;}
.y22c{bottom:446.313333pt;}
.y10f{bottom:446.964000pt;}
.y141{bottom:447.226667pt;}
.y167{bottom:447.270349pt;}
.y1b8{bottom:451.312000pt;}
.yd9{bottom:451.414667pt;}
.y2b6{bottom:451.665333pt;}
.y200{bottom:452.242667pt;}
.y282{bottom:453.909333pt;}
.y8a{bottom:455.285333pt;}
.y1db{bottom:455.802667pt;}
.y192{bottom:455.926667pt;}
.y60{bottom:456.308000pt;}
.y1{bottom:457.525333pt;}
.y257{bottom:459.076000pt;}
.y30{bottom:461.897333pt;}
.y10e{bottom:462.904000pt;}
.y166{bottom:464.790698pt;}
.y22b{bottom:464.884000pt;}
.y2b5{bottom:468.688000pt;}
.yd4{bottom:469.309333pt;}
.y140{bottom:469.569333pt;}
.y1ff{bottom:470.813333pt;}
.y110{bottom:470.874667pt;}
.y191{bottom:471.866667pt;}
.y281{bottom:472.480000pt;}
.yb5{bottom:472.633333pt;}
.yd8{bottom:473.757333pt;}
.y89{bottom:473.856000pt;}
.y1b7{bottom:473.866667pt;}
.y1da{bottom:474.373333pt;}
.y5f{bottom:474.877333pt;}
.y256{bottom:477.645333pt;}
.y10d{bottom:478.844000pt;}
.y2f{bottom:480.468000pt;}
.y165{bottom:482.470667pt;}
.y22a{bottom:483.453333pt;}
.yd3{bottom:485.249333pt;}
.y13f{bottom:485.509333pt;}
.y2b4{bottom:485.710667pt;}
.y190{bottom:487.806667pt;}
.y1fe{bottom:489.382667pt;}
.y280{bottom:491.049333pt;}
.yb4{bottom:491.202667pt;}
.y88{bottom:492.426667pt;}
.y1d9{bottom:492.942667pt;}
.y5e{bottom:493.448000pt;}
.y10c{bottom:494.784000pt;}
.yd7{bottom:496.100000pt;}
.y255{bottom:496.216000pt;}
.y2e{bottom:499.037333pt;}
.yd2{bottom:501.189333pt;}
.y13e{bottom:501.449333pt;}
.y229{bottom:502.024000pt;}
.y2b3{bottom:502.733333pt;}
.y1fd{bottom:507.953333pt;}
.y1b6{bottom:508.377333pt;}
.y27f{bottom:509.620000pt;}
.yb3{bottom:509.773333pt;}
.y18f{bottom:510.149333pt;}
.y87{bottom:510.996000pt;}
.y1d8{bottom:511.513333pt;}
.y5d{bottom:512.018667pt;}
.y254{bottom:514.786667pt;}
.y164{bottom:516.230667pt;}
.y10b{bottom:517.126667pt;}
.y2d{bottom:517.608000pt;}
.yd6{bottom:518.442667pt;}
.y2b2{bottom:519.756000pt;}
.y13d{bottom:523.792000pt;}
.y163{bottom:525.030667pt;}
.y18e{bottom:526.089333pt;}
.y1fc{bottom:526.524000pt;}
.y1b5{bottom:526.948000pt;}
.y228{bottom:526.996000pt;}
.y27e{bottom:528.190667pt;}
.yb2{bottom:528.344000pt;}
.y86{bottom:529.566667pt;}
.y1d7{bottom:530.084000pt;}
.y5c{bottom:530.589333pt;}
.y10a{bottom:533.066667pt;}
.y2c{bottom:536.178667pt;}
.y2b1{bottom:536.778667pt;}
.y253{bottom:537.341333pt;}
.y13c{bottom:539.732000pt;}
.yd5{bottom:540.784000pt;}
.y1b4{bottom:545.517333pt;}
.y227{bottom:545.566667pt;}
.y27d{bottom:546.760000pt;}
.yb1{bottom:546.913333pt;}
.y85{bottom:548.137333pt;}
.y18d{bottom:548.430667pt;}
.y1d6{bottom:548.653333pt;}
.y109{bottom:549.006667pt;}
.y1fb{bottom:549.078667pt;}
.y5b{bottom:549.158667pt;}
.y162{bottom:551.350667pt;}
.y2b0{bottom:553.801333pt;}
.y2b{bottom:554.749333pt;}
.y161{bottom:560.070667pt;}
.y13b{bottom:562.074667pt;}
.yd1{bottom:563.126667pt;}
.y1b3{bottom:564.088000pt;}
.y18c{bottom:564.372000pt;}
.y27c{bottom:565.330667pt;}
.yb0{bottom:565.484000pt;}
.y1d5{bottom:567.224000pt;}
.y5a{bottom:567.729333pt;}
.y226{bottom:570.538667pt;}
.y84{bottom:570.692000pt;}
.y2af{bottom:570.824000pt;}
.y108{bottom:571.349333pt;}
.y2a{bottom:573.318667pt;}
.y252{bottom:574.130667pt;}
.y13a{bottom:578.014667pt;}
.y1fa{bottom:583.589333pt;}
.y27b{bottom:583.901333pt;}
.yaf{bottom:584.054667pt;}
.yd0{bottom:585.469333pt;}
.y1d4{bottom:585.794667pt;}
.y59{bottom:586.300000pt;}
.y160{bottom:586.470667pt;}
.y18b{bottom:586.713333pt;}
.y107{bottom:587.289333pt;}
.y2ae{bottom:587.846667pt;}
.ycd{bottom:588.829333pt;}
.y225{bottom:589.109333pt;}
.y29{bottom:591.889333pt;}
.y251{bottom:592.701333pt;}
.y139{bottom:593.954667pt;}
.y15f{bottom:595.270667pt;}
.y1b2{bottom:601.594667pt;}
.y83{bottom:602.108000pt;}
.y1f9{bottom:602.160000pt;}
.y27a{bottom:602.470667pt;}
.yae{bottom:602.625333pt;}
.y18a{bottom:602.654667pt;}
.ycc{bottom:604.769333pt;}
.y58{bottom:604.869333pt;}
.y224{bottom:607.680000pt;}
.ycf{bottom:607.812000pt;}
.y1d3{bottom:608.349333pt;}
.y106{bottom:609.632000pt;}
.y28{bottom:610.460000pt;}
.y250{bottom:611.270667pt;}
.y136{bottom:616.297333pt;}
.y189{bottom:618.594667pt;}
.y82{bottom:620.678667pt;}
.y1f8{bottom:620.729333pt;}
.y279{bottom:621.041333pt;}
.yad{bottom:621.194667pt;}
.y1b1{bottom:621.400000pt;}
.y15d{bottom:621.589948pt;}
.y2ad{bottom:621.892000pt;}
.y57{bottom:623.440000pt;}
.y138{bottom:624.266667pt;}
.y105{bottom:625.572000pt;}
.y27{bottom:629.029333pt;}
.y24f{bottom:629.841333pt;}
.y15c{bottom:629.990667pt;}
.yce{bottom:630.153333pt;}
.y134{bottom:632.237333pt;}
.y223{bottom:632.652000pt;}
.y1b0{bottom:637.340000pt;}
.y15e{bottom:638.470566pt;}
.y2ac{bottom:638.914667pt;}
.y81{bottom:639.248000pt;}
.y1f7{bottom:639.300000pt;}
.y278{bottom:639.612000pt;}
.y1d2{bottom:639.765333pt;}
.y137{bottom:640.208000pt;}
.y188{bottom:640.936000pt;}
.y104{bottom:641.512000pt;}
.y56{bottom:642.010667pt;}
.yac{bottom:643.750667pt;}
.y26{bottom:647.600000pt;}
.y135{bottom:648.177333pt;}
.y186{bottom:648.906667pt;}
.y222{bottom:651.222667pt;}
.ycb{bottom:652.496000pt;}
.y24e{bottom:654.813333pt;}
.y2ab{bottom:655.937333pt;}
.y15b{bottom:656.070667pt;}
.y187{bottom:656.877333pt;}
.y80{bottom:657.818667pt;}
.y277{bottom:658.181333pt;}
.y1d1{bottom:658.336000pt;}
.y1af{bottom:659.682667pt;}
.y55{bottom:660.580000pt;}
.y1f6{bottom:661.856000pt;}
.y103{bottom:663.854667pt;}
.y25{bottom:666.170667pt;}
.y2aa{bottom:672.961333pt;}
.y24d{bottom:673.384000pt;}
.yca{bottom:674.838667pt;}
.yab{bottom:675.165333pt;}
.y1ae{bottom:675.622667pt;}
.y221{bottom:676.194667pt;}
.y7f{bottom:676.389333pt;}
.y276{bottom:676.752000pt;}
.y1d0{bottom:676.905333pt;}
.y54{bottom:679.150667pt;}
.y102{bottom:679.794667pt;}
.y133{bottom:679.870667pt;}
.y15a{bottom:681.351012pt;}
.y185{bottom:685.913333pt;}
.y2a9{bottom:689.984000pt;}
.y24c{bottom:691.954667pt;}
.y24{bottom:692.710667pt;}
.yaa{bottom:693.736000pt;}
.y7e{bottom:694.958667pt;}
.y275{bottom:695.322667pt;}
.y1cf{bottom:695.476000pt;}
.y1f5{bottom:696.365333pt;}
.y132{bottom:696.966667pt;}
.yc9{bottom:697.181333pt;}
.y53{bottom:697.721333pt;}
.y1ad{bottom:697.965333pt;}
.y159{bottom:698.950667pt;}
.y220{bottom:701.166667pt;}
.y101{bottom:702.137333pt;}
.y2cb{bottom:702.801333pt;}
.y2a8{bottom:707.006667pt;}
.ya9{bottom:712.306667pt;}
.y7d{bottom:713.529333pt;}
.y274{bottom:713.892000pt;}
.y1ac{bottom:713.905333pt;}
.y1ce{bottom:714.046667pt;}
.y1f4{bottom:714.936000pt;}
.y52{bottom:716.290667pt;}
.y24b{bottom:716.926667pt;}
.y2ca{bottom:719.824000pt;}
.y2a7{bottom:724.029333pt;}
.yc8{bottom:726.217333pt;}
.y23{bottom:728.284000pt;}
.y21f{bottom:729.829333pt;}
.ya8{bottom:730.876000pt;}
.y158{bottom:731.909945pt;}
.y273{bottom:732.462667pt;}
.y1cd{bottom:732.616000pt;}
.y1f3{bottom:733.506667pt;}
.y100{bottom:733.830667pt;}
.y51{bottom:734.861333pt;}
.y24a{bottom:735.497333pt;}
.y7c{bottom:736.085333pt;}
.y1ab{bottom:736.248000pt;}
.y2c9{bottom:736.848000pt;}
.y184{bottom:738.022667pt;}
.y2a6{bottom:741.052000pt;}
.y22{bottom:742.630667pt;}
.y131{bottom:743.805333pt;}
.y21e{bottom:748.400000pt;}
.y157{bottom:749.430295pt;}
.ya7{bottom:749.446667pt;}
.yff{bottom:750.925333pt;}
.y272{bottom:751.033333pt;}
.y1f2{bottom:752.077333pt;}
.y50{bottom:753.432000pt;}
.y249{bottom:754.066667pt;}
.y1cc{bottom:755.172000pt;}
.y2a5{bottom:758.074667pt;}
.y1aa{bottom:758.590667pt;}
.y130{bottom:759.745333pt;}
.y21{bottom:760.833333pt;}
.y156{bottom:767.110263pt;}
.y7b{bottom:767.500000pt;}
.ya6{bottom:768.017333pt;}
.y1f1{bottom:770.646667pt;}
.y4f{bottom:772.002667pt;}
.y248{bottom:772.637333pt;}
.y1a9{bottom:774.530667pt;}
.y2a4{bottom:775.097333pt;}
.y20{bottom:775.180000pt;}
.y12f{bottom:782.088000pt;}
.y271{bottom:782.886667pt;}
.y21d{bottom:782.910667pt;}
.y1f{bottom:785.669333pt;}
.y7a{bottom:786.070667pt;}
.ya5{bottom:786.586667pt;}
.y4e{bottom:790.572000pt;}
.y2a3{bottom:792.120000pt;}
.y1f0{bottom:793.202667pt;}
.yfe{bottom:796.264000pt;}
.y1a8{bottom:796.873333pt;}
.yfc{bottom:797.205333pt;}
.y247{bottom:797.609333pt;}
.y12e{bottom:798.028000pt;}
.y1e{bottom:803.873333pt;}
.y79{bottom:804.640000pt;}
.ya4{bottom:805.157333pt;}
.y21c{bottom:808.213333pt;}
.y4d{bottom:809.142667pt;}
.y1a7{bottom:812.813333pt;}
.yfb{bottom:813.146667pt;}
.y12d{bottom:813.968000pt;}
.y154{bottom:814.070888pt;}
.y246{bottom:816.180000pt;}
.yfd{bottom:818.605333pt;}
.y270{bottom:820.026667pt;}
.y153{bottom:822.070667pt;}
.y78{bottom:823.210667pt;}
.ya3{bottom:823.728000pt;}
.y21b{bottom:825.545333pt;}
.y2a2{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.y1a6{bottom:828.753333pt;}
.y245{bottom:834.750667pt;}
.y12c{bottom:836.310667pt;}
.y26f{bottom:838.597333pt;}
.yfa{bottom:840.948000pt;}
.y77{bottom:841.781333pt;}
.ya2{bottom:842.297333pt;}
.y2a1{bottom:843.188000pt;}
.y1d{bottom:843.585333pt;}
.yf8{bottom:843.621333pt;}
.y4b{bottom:846.282667pt;}
.y21a{bottom:850.846667pt;}
.y1a5{bottom:851.096000pt;}
.y12b{bottom:852.250667pt;}
.y244{bottom:853.320000pt;}
.y26e{bottom:857.168000pt;}
.yf7{bottom:859.561333pt;}
.y2a0{bottom:860.210667pt;}
.y76{bottom:860.352000pt;}
.ya1{bottom:860.868000pt;}
.y1c{bottom:862.156000pt;}
.yf9{bottom:863.290667pt;}
.y4a{bottom:864.853333pt;}
.y1a4{bottom:867.036000pt;}
.y12a{bottom:868.192000pt;}
.y26d{bottom:875.737333pt;}
.y219{bottom:876.149333pt;}
.y29f{bottom:877.233333pt;}
.y243{bottom:878.293333pt;}
.y75{bottom:878.921333pt;}
.ya0{bottom:879.438667pt;}
.y49{bottom:883.424000pt;}
.yf6{bottom:885.633333pt;}
.y1a3{bottom:889.378667pt;}
.y129{bottom:890.533333pt;}
.y218{bottom:893.481333pt;}
.y29e{bottom:894.256000pt;}
.yf5{bottom:896.408000pt;}
.y1b{bottom:896.665333pt;}
.y242{bottom:896.862667pt;}
.y9f{bottom:898.009333pt;}
.y26c{bottom:898.293333pt;}
.y74{bottom:901.477333pt;}
.y48{bottom:901.993333pt;}
.y1a2{bottom:905.318667pt;}
.y128{bottom:906.473333pt;}
.y217{bottom:910.814667pt;}
.y29d{bottom:911.278667pt;}
.y9e{bottom:916.578667pt;}
.y47{bottom:920.564000pt;}
.y241{bottom:921.836000pt;}
.y127{bottom:922.414667pt;}
.y73{bottom:923.194667pt;}
.y1a{bottom:924.521333pt;}
.y1a1{bottom:927.660000pt;}
.y29c{bottom:928.301333pt;}
.yf4{bottom:930.317333pt;}
.y9d{bottom:935.149333pt;}
.y26b{bottom:935.433333pt;}
.y216{bottom:936.116000pt;}
.y46{bottom:939.134667pt;}
.y240{bottom:940.405333pt;}
.y1a0{bottom:943.601333pt;}
.y126{bottom:944.756000pt;}
.y29b{bottom:945.324000pt;}
.yf3{bottom:946.257333pt;}
.y19{bottom:952.377333pt;}
.y9c{bottom:953.720000pt;}
.y26a{bottom:954.004000pt;}
.y45{bottom:957.704000pt;}
.y23f{bottom:958.976000pt;}
.y125{bottom:960.697333pt;}
.y215{bottom:961.418667pt;}
.y29a{bottom:962.346667pt;}
.y19f{bottom:965.942667pt;}
.yf2{bottom:968.600000pt;}
.y9b{bottom:972.289333pt;}
.y269{bottom:972.574667pt;}
.y44{bottom:976.274667pt;}
.y214{bottom:978.750667pt;}
.y299{bottom:979.369333pt;}
.y18{bottom:980.232000pt;}
.y124{bottom:983.038667pt;}
.y23e{bottom:983.948000pt;}
.y9a{bottom:990.860000pt;}
.y43{bottom:994.845333pt;}
.y268{bottom:995.129333pt;}
.y213{bottom:996.082667pt;}
.y298{bottom:996.392000pt;}
.yf1{bottom:997.636000pt;}
.y23d{bottom:1008.921333pt;}
.y42{bottom:1013.414667pt;}
.y267{bottom:1013.700000pt;}
.yf0{bottom:1014.732000pt;}
.y297{bottom:1017.754667pt;}
.y41{bottom:1066.841333pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.hf{height:35.052646pt;}
.h1a{height:35.212691pt;}
.h1b{height:36.666735pt;}
.h15{height:37.017866pt;}
.h12{height:37.028193pt;}
.hb{height:37.087439pt;}
.h8{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.h14{height:41.760727pt;}
.hc{height:43.421286pt;}
.ha{height:46.099251pt;}
.h13{height:46.493261pt;}
.h9{height:48.245551pt;}
.h5{height:48.481423pt;}
.h4{height:69.148877pt;}
.h10{height:70.298452pt;}
.h16{height:70.937464pt;}
.h1e{height:80.122884pt;}
.he{height:80.128218pt;}
.h17{height:81.373261pt;}
.h19{height:81.693261pt;}
.h18{height:81.694836pt;}
.h1f{height:85.381551pt;}
.hd{height:94.512218pt;}
.h11{height:361.176000pt;}
.h1c{height:793.701333pt;}
.h1d{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:435.476000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x66{left:-160.944000pt;}
.x0{left:0.000000pt;}
.x68{left:2.575730pt;}
.x71{left:14.656000pt;}
.x67{left:29.215584pt;}
.x6f{left:32.096000pt;}
.x69{left:39.936000pt;}
.x1{left:47.621333pt;}
.x51{left:55.618667pt;}
.x54{left:58.558667pt;}
.x55{left:59.561333pt;}
.x58{left:60.989333pt;}
.x61{left:61.888000pt;}
.x5a{left:62.816000pt;}
.x4c{left:64.828000pt;}
.x4e{left:66.688000pt;}
.x62{left:67.580000pt;}
.x52{left:68.534667pt;}
.x4b{left:70.640000pt;}
.x64{left:71.784000pt;}
.x4d{left:72.977333pt;}
.x85{left:74.829333pt;}
.x4a{left:76.252000pt;}
.x5b{left:77.294667pt;}
.x57{left:78.542667pt;}
.x59{left:80.057333pt;}
.x4f{left:82.661333pt;}
.x8d{left:84.113333pt;}
.x87{left:90.364000pt;}
.x88{left:93.366667pt;}
.x65{left:97.508000pt;}
.x53{left:101.934667pt;}
.x5c{left:103.757333pt;}
.x50{left:108.929333pt;}
.x42{left:111.133333pt;}
.x63{left:112.790667pt;}
.x84{left:113.729333pt;}
.x8e{left:116.026667pt;}
.x56{left:117.417333pt;}
.x8a{left:124.854667pt;}
.x86{left:125.810667pt;}
.x8c{left:128.673333pt;}
.x83{left:129.802667pt;}
.x79{left:131.688000pt;}
.x70{left:146.736000pt;}
.x89{left:148.113333pt;}
.x72{left:149.856000pt;}
.x6a{left:152.175121pt;}
.x36{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x6b{left:223.614489pt;}
.xaa{left:226.097333pt;}
.xc1{left:229.828000pt;}
.xab{left:237.022667pt;}
.x3{left:239.924000pt;}
.x2e{left:242.358667pt;}
.x27{left:244.981333pt;}
.x41{left:246.573333pt;}
.x30{left:247.752000pt;}
.x37{left:248.785333pt;}
.x5{left:250.204000pt;}
.x40{left:252.198667pt;}
.x28{left:254.280000pt;}
.x2d{left:256.684000pt;}
.x24{left:258.384000pt;}
.x15{left:259.306667pt;}
.x26{left:261.865333pt;}
.x31{left:263.358667pt;}
.x22{left:266.396000pt;}
.x16{left:268.106667pt;}
.x60{left:270.788000pt;}
.x43{left:273.712000pt;}
.x23{left:279.678667pt;}
.xb3{left:304.980000pt;}
.x74{left:306.356000pt;}
.x6c{left:315.773883pt;}
.xb4{left:318.264000pt;}
.xa2{left:320.238667pt;}
.x7a{left:325.216000pt;}
.xa8{left:326.480000pt;}
.x9d{left:329.412000pt;}
.xa3{left:333.522667pt;}
.x38{left:335.952000pt;}
.x99{left:338.301333pt;}
.xa9{left:339.762667pt;}
.xae{left:346.668000pt;}
.xc0{left:348.385333pt;}
.xb9{left:349.457333pt;}
.x3f{left:351.341333pt;}
.xb1{left:352.780000pt;}
.x33{left:354.525333pt;}
.x39{left:357.392000pt;}
.x2a{left:360.170667pt;}
.x8b{left:362.070667pt;}
.x2c{left:364.229333pt;}
.xb2{left:366.062667pt;}
.x9e{left:368.470667pt;}
.x32{left:372.232000pt;}
.x2b{left:373.593333pt;}
.x29{left:375.386667pt;}
.x34{left:377.173333pt;}
.x35{left:378.794667pt;}
.x5d{left:379.874667pt;}
.x9f{left:381.754667pt;}
.x2f{left:385.289333pt;}
.xa0{left:388.529333pt;}
.x44{left:391.813333pt;}
.x95{left:393.402667pt;}
.xa1{left:401.812000pt;}
.x96{left:406.686667pt;}
.x6d{left:407.933277pt;}
.x45{left:413.253333pt;}
.xe{left:422.029333pt;}
.x6e{left:428.653302pt;}
.x73{left:431.613782pt;}
.xf{left:435.313333pt;}
.x25{left:440.057333pt;}
.x7b{left:442.532000pt;}
.x14{left:444.333333pt;}
.x7c{left:448.429333pt;}
.x1b{left:454.308000pt;}
.x8f{left:455.874667pt;}
.xac{left:459.642667pt;}
.x3a{left:462.160000pt;}
.xa4{left:463.550667pt;}
.x1c{left:467.592000pt;}
.x90{left:469.158667pt;}
.x17{left:471.642667pt;}
.xad{left:472.926667pt;}
.xa5{left:476.834667pt;}
.x18{left:478.284000pt;}
.x9a{left:481.198667pt;}
.x1d{left:484.262667pt;}
.xc2{left:491.749333pt;}
.x10{left:498.698667pt;}
.x11{left:511.982667pt;}
.x12{left:515.336000pt;}
.xb7{left:525.244000pt;}
.x13{left:528.620000pt;}
.x46{left:531.353333pt;}
.xb8{left:538.528000pt;}
.x3b{left:545.489333pt;}
.x47{left:552.793333pt;}
.x76{left:554.740000pt;}
.xbc{left:560.828000pt;}
.xba{left:564.818667pt;}
.x3c{left:566.929333pt;}
.x77{left:570.698667pt;}
.xbd{left:574.112000pt;}
.x93{left:577.305333pt;}
.x78{left:584.374667pt;}
.x7d{left:586.228000pt;}
.x94{left:590.589333pt;}
.x1e{left:597.809333pt;}
.x91{left:602.148000pt;}
.x1f{left:611.092000pt;}
.x5e{left:614.488000pt;}
.x92{left:615.432000pt;}
.x20{left:617.840000pt;}
.x6{left:619.732000pt;}
.xc3{left:621.196000pt;}
.x19{left:624.554667pt;}
.x7{left:626.374667pt;}
.xc4{left:628.805333pt;}
.x8{left:629.705333pt;}
.x21{left:631.124000pt;}
.x5f{left:635.150667pt;}
.x9{left:636.346667pt;}
.x1a{left:637.838667pt;}
.x97{left:641.092000pt;}
.xa6{left:645.308000pt;}
.x3d{left:650.258667pt;}
.x48{left:652.156000pt;}
.x98{left:654.374667pt;}
.xa7{left:658.590667pt;}
.x3e{left:671.697333pt;}
.x49{left:673.133333pt;}
.x75{left:675.724000pt;}
.xbe{left:689.249333pt;}
.x9b{left:696.816000pt;}
.xbf{left:702.533333pt;}
.xbb{left:704.469333pt;}
.xa{left:706.784000pt;}
.x9c{left:710.100000pt;}
.xaf{left:714.654667pt;}
.xb{left:720.068000pt;}
.xb0{left:725.580000pt;}
.xc{left:726.842667pt;}
.xb5{left:727.905333pt;}
.xd{left:740.126667pt;}
.xb6{left:741.189333pt;}
.x7e{left:765.152000pt;}
.x7f{left:882.814667pt;}
.x80{left:892.598667pt;}
.x81{left:984.785333pt;}
.x82{left:1000.844000pt;}
}




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