
    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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_5f022c355f7849059b4708f6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_89802bd7af75a5795f1ad9b9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2ecf1084d3f659937c439e56.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_238e7e70545870c0f235b614.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710000;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_2d86e383d1fe8d5d9a40666b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693000;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_7215b5eefa2f01dacf62c9b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_acb67b3fd42063d972cd9e9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1f8bca64e807027800eda5a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_21b33156a729b6e1486e60c8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.671000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b82d37d6ac745a8b6fba180e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_63abcffd0890a475983b08a4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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:fff;src:url('chunks/assets/font_48a307050c8e85e5914cdad5.woff2')format("woff");}.fff{font-family:fff;line-height:1.200684;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:ff10;src:url('chunks/assets/font_f2199bd5822a771207171315.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.ma{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);}
.m1{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);}
.m1a{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);}
.m6{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);}
.mc{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);}
.m1d{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);}
.m24{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);}
.m25{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);}
.m5{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);}
.m1c{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);}
.m1b{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);}
.md{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);}
.m20{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);}
.m21{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);}
.m13{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);}
.m7{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);}
.m12{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);}
.m1f{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);}
.mf{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);}
.m23{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);}
.m16{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);}
.m18{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);}
.m1e{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);}
.m2{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);}
.m22{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);}
.mb{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);}
.m8{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);}
.m14{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);}
.m26{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);}
.m15{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);}
.m17{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);}
.m9{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);}
.m27{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);}
.me{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);}
.m19{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);}
.m11{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.lsf{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000435px;}
.ls4{letter-spacing:0.000583px;}
.ls1d{letter-spacing:0.000608px;}
.ls35{letter-spacing:0.000800px;}
.ls2d{letter-spacing:0.001036px;}
.ls19{letter-spacing:0.001133px;}
.ls9{letter-spacing:0.001573px;}
.ls8{letter-spacing:0.001712px;}
.ls2b{letter-spacing:0.002744px;}
.ls13{letter-spacing:0.003389px;}
.ls32{letter-spacing:0.003634px;}
.ls5{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.004766px;}
.ls21{letter-spacing:0.192960px;}
.ls22{letter-spacing:0.358560px;}
.ls23{letter-spacing:0.648088px;}
.lse{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.lsd{letter-spacing:11.954850px;}
.ls36{letter-spacing:13.005502px;}
.ls25{letter-spacing:13.295272px;}
.ls31{letter-spacing:13.372182px;}
.ls17{letter-spacing:13.404037px;}
.ls37{letter-spacing:13.436172px;}
.ls1c{letter-spacing:13.444800px;}
.ls29{letter-spacing:13.448400px;}
.ls1a{letter-spacing:13.450090px;}
.ls1b{letter-spacing:13.450800px;}
.ls27{letter-spacing:13.454400px;}
.ls34{letter-spacing:13.477965px;}
.ls33{letter-spacing:13.556473px;}
.ls38{letter-spacing:13.608268px;}
.ls28{letter-spacing:13.626388px;}
.ls30{letter-spacing:13.678710px;}
.lsc{letter-spacing:13.718447px;}
.ls26{letter-spacing:13.721479px;}
.lsb{letter-spacing:13.888090px;}
.ls2a{letter-spacing:14.068047px;}
.ls10{letter-spacing:14.939488px;}
.ls11{letter-spacing:14.944766px;}
.ls24{letter-spacing:14.953016px;}
.ls1f{letter-spacing:15.015814px;}
.ls15{letter-spacing:15.066699px;}
.ls14{letter-spacing:15.182393px;}
.ls2c{letter-spacing:15.368047px;}
.ls18{letter-spacing:15.741612px;}
.ls16{letter-spacing:15.765141px;}
.ls2e{letter-spacing:16.468047px;}
.ls20{letter-spacing:17.394700px;}
.ls6{letter-spacing:17.929200px;}
.ls2f{letter-spacing:20.203341px;}
.ls1e{letter-spacing:20.288671px;}
.ls2{letter-spacing:57.415200px;}
.ls7{letter-spacing:62.761200px;}
.lsa{letter-spacing:64.321654px;}
.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;}
}
.ws11{word-spacing:-14.943900px;}
.ws8a{word-spacing:-13.449600px;}
.ws6a{word-spacing:-12.060000px;}
.ws33{word-spacing:-11.955150px;}
.ws15{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws5f{word-spacing:-4.124516px;}
.ws3a{word-spacing:-3.347434px;}
.ws36{word-spacing:-3.168107px;}
.ws6b{word-spacing:-2.929004px;}
.ws58{word-spacing:-2.331248px;}
.ws74{word-spacing:-2.211697px;}
.ws83{word-spacing:-2.044339px;}
.ws40{word-spacing:-1.972595px;}
.ws1{word-spacing:-1.908367px;}
.ws5d{word-spacing:-1.853044px;}
.ws84{word-spacing:-1.829146px;}
.ws73{word-spacing:-1.613941px;}
.ws7d{word-spacing:-1.560154px;}
.ws64{word-spacing:-1.554166px;}
.ws0{word-spacing:-1.322630px;}
.ws60{word-spacing:-1.315063px;}
.ws22{word-spacing:-1.291162px;}
.ws1e{word-spacing:-1.237363px;}
.ws80{word-spacing:-1.183565px;}
.ws7{word-spacing:-1.171598px;}
.ws29{word-spacing:-1.135736px;}
.ws9{word-spacing:-1.046070px;}
.ws7e{word-spacing:-1.022170px;}
.ws3c{word-spacing:-0.896634px;}
.ws59{word-spacing:-0.836858px;}
.wsae{word-spacing:-0.753178px;}
.ws87{word-spacing:-0.699379px;}
.ws70{word-spacing:-0.657532px;}
.wsa7{word-spacing:-0.645581px;}
.ws86{word-spacing:-0.484186px;}
.wsa9{word-spacing:-0.430387px;}
.ws7c{word-spacing:-0.418429px;}
.ws31{word-spacing:-0.358654px;}
.ws1d{word-spacing:-0.322790px;}
.ws28{word-spacing:-0.298878px;}
.ws88{word-spacing:-0.268992px;}
.ws2b{word-spacing:-0.239102px;}
.ws96{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.161395px;}
.ws85{word-spacing:-0.160444px;}
.ws42{word-spacing:-0.119551px;}
.ws81{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.ws23{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws18{word-spacing:-0.003757px;}
.ws17{word-spacing:-0.002167px;}
.ws13{word-spacing:-0.000541px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:0.000008px;}
.ws41{word-spacing:0.000696px;}
.ws14{word-spacing:0.003334px;}
.ws66{word-spacing:0.053798px;}
.ws30{word-spacing:0.059776px;}
.ws21{word-spacing:0.107597px;}
.ws62{word-spacing:0.117175px;}
.ws2f{word-spacing:0.119551px;}
.ws8d{word-spacing:0.161395px;}
.ws27{word-spacing:0.179327px;}
.ws20{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.ws25{word-spacing:0.268992px;}
.ws43{word-spacing:0.298878px;}
.ws1b{word-spacing:0.322790px;}
.ws5e{word-spacing:0.358654px;}
.ws24{word-spacing:0.376589px;}
.ws6c{word-spacing:0.418429px;}
.ws1f{word-spacing:0.430387px;}
.ws3b{word-spacing:0.537980px;}
.ws90{word-spacing:0.591782px;}
.ws78{word-spacing:0.597756px;}
.ws69{word-spacing:0.717307px;}
.ws65{word-spacing:0.777083px;}
.ws63{word-spacing:0.836858px;}
.ws51{word-spacing:0.956410px;}
.ws8{word-spacing:0.962384px;}
.ws52{word-spacing:1.016185px;}
.ws5b{word-spacing:1.374839px;}
.wsad{word-spacing:1.398758px;}
.ws4a{word-spacing:1.434614px;}
.ws93{word-spacing:1.506355px;}
.ws50{word-spacing:1.554166px;}
.wsa6{word-spacing:1.667750px;}
.ws45{word-spacing:1.673717px;}
.ws3d{word-spacing:1.793268px;}
.ws4f{word-spacing:1.853044px;}
.ws39{word-spacing:1.912819px;}
.ws7a{word-spacing:2.151922px;}
.wsa5{word-spacing:2.151936px;}
.ws9b{word-spacing:2.367130px;}
.ws6d{word-spacing:2.391024px;}
.ws68{word-spacing:2.450800px;}
.ws46{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws5a{word-spacing:2.570351px;}
.ws77{word-spacing:2.689902px;}
.ws7f{word-spacing:2.689920px;}
.wsaa{word-spacing:2.743718px;}
.ws1a{word-spacing:2.869236px;}
.ws54{word-spacing:2.929004px;}
.ws37{word-spacing:2.988780px;}
.wsab{word-spacing:3.012710px;}
.ws4c{word-spacing:3.168107px;}
.ws97{word-spacing:3.218342px;}
.ws82{word-spacing:3.224822px;}
.ws95{word-spacing:3.227904px;}
.ws53{word-spacing:3.287658px;}
.ws4e{word-spacing:3.466985px;}
.ws2d{word-spacing:3.526760px;}
.ws26{word-spacing:3.586536px;}
.ws35{word-spacing:3.646312px;}
.ws79{word-spacing:3.765863px;}
.ws76{word-spacing:4.004965px;}
.ws4d{word-spacing:4.124516px;}
.ws4b{word-spacing:4.184292px;}
.wsac{word-spacing:4.196275px;}
.ws48{word-spacing:4.244068px;}
.ws44{word-spacing:4.363619px;}
.ws3e{word-spacing:4.423394px;}
.ws47{word-spacing:4.602721px;}
.wsf{word-spacing:4.770079px;}
.ws7b{word-spacing:4.782048px;}
.ws75{word-spacing:4.841824px;}
.ws10{word-spacing:4.853765px;}
.ws6e{word-spacing:5.140702px;}
.ws34{word-spacing:5.260253px;}
.ws67{word-spacing:5.320028px;}
.ws9d{word-spacing:5.326042px;}
.ws57{word-spacing:5.379804px;}
.ws38{word-spacing:5.559131px;}
.ws2e{word-spacing:5.618906px;}
.ws5c{word-spacing:5.678682px;}
.ws49{word-spacing:5.917784px;}
.ws61{word-spacing:5.977560px;}
.ws99{word-spacing:6.025421px;}
.ws72{word-spacing:6.694867px;}
.ws9f{word-spacing:6.724800px;}
.ws56{word-spacing:6.814418px;}
.ws71{word-spacing:7.232848px;}
.ws55{word-spacing:7.292623px;}
.ws9a{word-spacing:7.316582px;}
.wsd{word-spacing:7.782761px;}
.wsa3{word-spacing:9.576115px;}
.ws4{word-spacing:10.418857px;}
.ws32{word-spacing:11.904926px;}
.wsb{word-spacing:12.176255px;}
.wsa8{word-spacing:12.804019px;}
.ws89{word-spacing:13.126810px;}
.wsa1{word-spacing:13.288205px;}
.wsa0{word-spacing:13.392912px;}
.ws98{word-spacing:13.393008px;}
.ws8c{word-spacing:13.395802px;}
.wsa4{word-spacing:13.449600px;}
.wsa2{word-spacing:13.503398px;}
.ws8e{word-spacing:13.557197px;}
.ws92{word-spacing:13.610995px;}
.ws8b{word-spacing:13.664794px;}
.ws8f{word-spacing:13.826189px;}
.ws3f{word-spacing:14.884124px;}
.ws94{word-spacing:14.902157px;}
.ws9c{word-spacing:15.762931px;}
.wsc{word-spacing:16.109478px;}
.ws91{word-spacing:16.623706px;}
.ws9e{word-spacing:18.721843px;}
.ws6f{word-spacing:19.606397px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
._18{margin-left:-8.659895px;}
._13{margin-left:-7.318046px;}
._3{margin-left:-6.150892px;}
._2{margin-left:-4.602708px;}
._9{margin-left:-2.550854px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._6{width:2.301354px;}
._28{width:4.301883px;}
._27{width:5.565270px;}
._26{width:6.596488px;}
._25{width:7.821688px;}
._24{width:9.023760px;}
._7{width:11.398711px;}
._4{width:12.971268px;}
._e{width:14.826789px;}
._b{width:16.307465px;}
._16{width:17.317081px;}
._c{width:18.460385px;}
._d{width:19.554188px;}
._11{width:21.425075px;}
._14{width:22.782071px;}
._2b{width:24.112828px;}
._5{width:25.937736px;}
._12{width:27.915205px;}
._8{width:30.587087px;}
._a{width:33.355008px;}
._15{width:36.463116px;}
._17{width:40.209482px;}
._2a{width:61.868160px;}
._29{width:88.767360px;}
._21{width:268.884403px;}
._19{width:275.254944px;}
._1b{width:282.334003px;}
._1e{width:288.704544px;}
._22{width:291.049344px;}
._1c{width:304.498944px;}
._1a{width:421.026278px;}
._20{width:428.105338px;}
._1f{width:434.475878px;}
._1d{width:447.925478px;}
._f{width:950.340581px;}
._23{width:2070.300202px;}
._10{width:2477.420700px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(14,15,14);}
.fc3{color:rgb(46,92,87);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs8{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fse{font-size:48.240000px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fsb{font-size:56.058000px;}
.fs3{font-size:56.694600px;}
.fsf{font-size:59.760000px;}
.fs5{font-size:59.775600px;}
.fsd{font-size:62.286600px;}
.fs4{font-size:75.592800px;}
.fs6{font-size:107.596800px;}
.ye7{bottom:-578.199540px;}
.y107{bottom:-511.059180px;}
.y106{bottom:-491.980800px;}
.y105{bottom:-472.723140px;}
.y104{bottom:-453.465480px;}
.y103{bottom:-434.192880px;}
.y102{bottom:-414.935220px;}
.y101{bottom:-395.856840px;}
.y100{bottom:-376.599180px;}
.yff{bottom:-357.341520px;}
.yfe{bottom:-338.083860px;}
.yfd{bottom:-318.826200px;}
.yfc{bottom:-299.732880px;}
.yfb{bottom:-280.475220px;}
.yfa{bottom:-261.217560px;}
.yf9{bottom:-241.959900px;}
.yf8{bottom:-222.702240px;}
.yf7{bottom:-203.444580px;}
.yf6{bottom:-184.366200px;}
.yf5{bottom:-165.093600px;}
.yf4{bottom:-145.835940px;}
.yf3{bottom:-126.578280px;}
.yf2{bottom:-103.002960px;}
.yf1{bottom:-66.283500px;}
.yf0{bottom:-48.814500px;}
.yef{bottom:-26.495220px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y22{bottom:10.988264px;}
.y2{bottom:14.151273px;}
.y21{bottom:30.831374px;}
.y4f{bottom:31.890000px;}
.y12a{bottom:103.564500px;}
.y82{bottom:104.503500px;}
.y1f{bottom:104.646000px;}
.ya7{bottom:107.193000px;}
.y13e{bottom:115.083000px;}
.y174{bottom:118.176000px;}
.y4e{bottom:118.743000px;}
.y129{bottom:122.394000px;}
.y1e{bottom:122.535000px;}
.y81{bottom:123.333000px;}
.ya6{bottom:126.022500px;}
.y173{bottom:135.436500px;}
.y4d{bottom:137.572500px;}
.ye3{bottom:140.023500px;}
.y1d{bottom:140.422500px;}
.y128{bottom:141.223500px;}
.y13d{bottom:141.624000px;}
.ya5{bottom:144.852000px;}
.y80{bottom:146.644500px;}
.y172{bottom:152.697000px;}
.y4c{bottom:156.402000px;}
.y1c{bottom:158.310000px;}
.ye2{bottom:158.853000px;}
.y13c{bottom:159.198000px;}
.y127{bottom:160.053000px;}
.ya4{bottom:163.681500px;}
.y171{bottom:169.957500px;}
.y4b{bottom:175.231500px;}
.y1b{bottom:176.199000px;}
.y13b{bottom:176.772000px;}
.ye1{bottom:177.682500px;}
.y126{bottom:178.882500px;}
.y7f{bottom:180.268500px;}
.ya3{bottom:182.511000px;}
.y170{bottom:187.218000px;}
.y4a{bottom:194.061000px;}
.y1a{bottom:194.086500px;}
.ye0{bottom:196.512000px;}
.y125{bottom:197.712000px;}
.y7e{bottom:199.098000px;}
.ya2{bottom:201.340500px;}
.y13a{bottom:203.313000px;}
.y16f{bottom:204.478500px;}
.y19{bottom:211.974000px;}
.y49{bottom:212.890500px;}
.ydf{bottom:215.341500px;}
.y124{bottom:216.541500px;}
.y7d{bottom:217.927500px;}
.ya1{bottom:220.170000px;}
.y16e{bottom:221.739000px;}
.y139{bottom:229.854000px;}
.y18{bottom:229.863000px;}
.y48{bottom:231.720000px;}
.yde{bottom:234.171000px;}
.y123{bottom:235.371000px;}
.y7c{bottom:236.757000px;}
.ya0{bottom:238.999500px;}
.y138{bottom:247.428000px;}
.y47{bottom:250.549500px;}
.ydd{bottom:253.000500px;}
.y122{bottom:254.200500px;}
.y7b{bottom:255.586500px;}
.y16d{bottom:256.260000px;}
.y9f{bottom:257.829000px;}
.y137{bottom:265.002000px;}
.y46{bottom:269.379000px;}
.ydc{bottom:271.828500px;}
.y121{bottom:273.030000px;}
.y16c{bottom:273.519000px;}
.y7a{bottom:274.416000px;}
.y9e{bottom:276.658500px;}
.y136{bottom:282.576000px;}
.y45{bottom:288.208500px;}
.ydb{bottom:290.658000px;}
.y16b{bottom:290.779500px;}
.y120{bottom:291.859500px;}
.y79{bottom:293.245500px;}
.y9d{bottom:295.488000px;}
.y135{bottom:300.150000px;}
.y17{bottom:300.154500px;}
.y44{bottom:307.038000px;}
.y16a{bottom:308.040000px;}
.yda{bottom:309.487500px;}
.y11f{bottom:310.689000px;}
.y78{bottom:312.075000px;}
.y9c{bottom:314.317500px;}
.y134{bottom:317.724000px;}
.y16{bottom:318.043500px;}
.y169{bottom:325.300500px;}
.y43{bottom:325.867500px;}
.yd9{bottom:328.317000px;}
.y11e{bottom:329.518500px;}
.y77{bottom:330.904500px;}
.y9b{bottom:333.145500px;}
.y133{bottom:335.298000px;}
.y15{bottom:335.931000px;}
.y168{bottom:342.561000px;}
.y42{bottom:344.697000px;}
.y11d{bottom:348.348000px;}
.y76{bottom:349.734000px;}
.y9a{bottom:351.975000px;}
.y14{bottom:353.818500px;}
.yd8{bottom:356.370000px;}
.y167{bottom:359.821500px;}
.y41{bottom:363.526500px;}
.y11c{bottom:367.177500px;}
.y75{bottom:368.563500px;}
.y98{bottom:370.804500px;}
.yd7{bottom:375.214500px;}
.y99{bottom:376.230000px;}
.y166{bottom:377.082000px;}
.y13{bottom:380.673000px;}
.y40{bottom:382.356000px;}
.yee{bottom:385.878660px;}
.y11b{bottom:386.007000px;}
.y74{bottom:387.393000px;}
.y97{bottom:389.634000px;}
.yd3{bottom:390.499500px;}
.yd6{bottom:391.653000px;}
.yd5{bottom:392.211000px;}
.y165{bottom:394.342500px;}
.y12{bottom:398.562000px;}
.y3f{bottom:401.185500px;}
.y11a{bottom:404.836500px;}
.yed{bottom:405.136320px;}
.y73{bottom:406.222500px;}
.yd4{bottom:408.091500px;}
.y96{bottom:408.463500px;}
.y164{bottom:411.601500px;}
.y11{bottom:416.449500px;}
.y119{bottom:423.664500px;}
.yec{bottom:424.393980px;}
.y3e{bottom:424.497000px;}
.y72{bottom:425.052000px;}
.y95{bottom:427.293000px;}
.y163{bottom:428.862000px;}
.yd2{bottom:431.731500px;}
.y118{bottom:442.494000px;}
.yeb{bottom:443.666580px;}
.y10{bottom:444.798000px;}
.y94{bottom:446.122500px;}
.yce{bottom:447.016500px;}
.yd1{bottom:448.170000px;}
.y71{bottom:448.365000px;}
.yd0{bottom:448.728000px;}
.y117{bottom:461.323500px;}
.yf{bottom:462.685500px;}
.yea{bottom:462.744960px;}
.y162{bottom:463.383000px;}
.ycf{bottom:464.608500px;}
.y93{bottom:464.952000px;}
.y132{bottom:469.435500px;}
.y116{bottom:480.153000px;}
.y161{bottom:480.643500px;}
.y70{bottom:481.989000px;}
.ye9{bottom:482.002620px;}
.y92{bottom:483.781500px;}
.ycd{bottom:488.248500px;}
.ye{bottom:489.540000px;}
.y160{bottom:497.904000px;}
.y115{bottom:498.982500px;}
.y3d{bottom:499.647000px;}
.y6f{bottom:500.818500px;}
.ye8{bottom:501.260280px;}
.y91{bottom:502.611000px;}
.y131{bottom:503.059500px;}
.ycc{bottom:504.687000px;}
.yc9{bottom:505.041000px;}
.ycb{bottom:505.245000px;}
.yd{bottom:507.429000px;}
.y15f{bottom:515.164500px;}
.y114{bottom:517.812000px;}
.y3c{bottom:519.105000px;}
.y6e{bottom:519.648000px;}
.yca{bottom:521.125500px;}
.y90{bottom:521.440500px;}
.y130{bottom:521.889000px;}
.yc{bottom:525.316500px;}
.y15e{bottom:532.425000px;}
.y113{bottom:536.641500px;}
.y6d{bottom:538.477500px;}
.y8f{bottom:540.270000px;}
.y12f{bottom:540.718500px;}
.yb{bottom:543.204000px;}
.yc8{bottom:544.767000px;}
.y15d{bottom:549.685500px;}
.y112{bottom:555.471000px;}
.ye6{bottom:555.986040px;}
.y3b{bottom:556.494000px;}
.y6c{bottom:557.307000px;}
.y8e{bottom:559.099500px;}
.y12e{bottom:559.548000px;}
.yc4{bottom:560.052000px;}
.ya{bottom:561.093000px;}
.yc7{bottom:561.204000px;}
.yc6{bottom:561.763500px;}
.ye5{bottom:565.525500px;}
.y15c{bottom:566.944500px;}
.y111{bottom:574.300500px;}
.y3a{bottom:575.952000px;}
.y6b{bottom:576.136500px;}
.yc5{bottom:577.642500px;}
.y8d{bottom:577.929000px;}
.y12d{bottom:578.377500px;}
.y9{bottom:578.980500px;}
.y15b{bottom:584.205000px;}
.y110{bottom:593.130000px;}
.y6a{bottom:594.964500px;}
.y39{bottom:595.408500px;}
.y8{bottom:596.868000px;}
.y12c{bottom:597.207000px;}
.y8c{bottom:601.242000px;}
.yc3{bottom:601.284000px;}
.y15a{bottom:601.465500px;}
.y10f{bottom:611.959500px;}
.y69{bottom:613.794000px;}
.y7{bottom:614.757000px;}
.y38{bottom:614.865000px;}
.y12b{bottom:616.036500px;}
.ybf{bottom:616.569000px;}
.yc2{bottom:617.722500px;}
.yc1{bottom:618.280500px;}
.y159{bottom:618.726000px;}
.y10e{bottom:630.789000px;}
.y68{bottom:632.623500px;}
.y6{bottom:632.644500px;}
.yc0{bottom:634.161000px;}
.y37{bottom:634.323000px;}
.y8b{bottom:634.866000px;}
.y158{bottom:635.986500px;}
.y10d{bottom:649.618500px;}
.y5{bottom:650.532000px;}
.y157{bottom:653.247000px;}
.y8a{bottom:653.695500px;}
.y36{bottom:653.779500px;}
.y67{bottom:655.936500px;}
.y18d{bottom:656.833500px;}
.ybe{bottom:657.801000px;}
.ybb{bottom:666.021000px;}
.y4{bottom:668.421000px;}
.y10c{bottom:668.448000px;}
.y156{bottom:670.507500px;}
.y89{bottom:672.525000px;}
.y35{bottom:673.237500px;}
.y18c{bottom:674.094000px;}
.ybd{bottom:674.239500px;}
.yba{bottom:682.458000px;}
.y1{bottom:686.308464px;}
.y10b{bottom:687.277500px;}
.y155{bottom:687.768000px;}
.y66{bottom:689.560500px;}
.ybc{bottom:690.678000px;}
.y88{bottom:691.354500px;}
.y34{bottom:692.694000px;}
.y154{bottom:705.027000px;}
.y65{bottom:708.390000px;}
.y18b{bottom:708.613500px;}
.y87{bottom:710.184000px;}
.y10a{bottom:710.590500px;}
.y33{bottom:712.150500px;}
.y153{bottom:722.287500px;}
.yb9{bottom:722.298000px;}
.y18a{bottom:725.874000px;}
.y64{bottom:727.219500px;}
.y86{bottom:729.013500px;}
.y32{bottom:731.608500px;}
.y152{bottom:739.548000px;}
.y109{bottom:741.018000px;}
.yb8{bottom:741.529500px;}
.yb7{bottom:741.531000px;}
.y189{bottom:743.134500px;}
.y85{bottom:747.843000px;}
.y63{bottom:750.532500px;}
.y31{bottom:751.065000px;}
.y151{bottom:756.808500px;}
.y108{bottom:760.251000px;}
.y188{bottom:760.395000px;}
.yb6{bottom:765.775500px;}
.y84{bottom:766.671000px;}
.y30{bottom:770.521500px;}
.y62{bottom:770.706000px;}
.y150{bottom:774.069000px;}
.y187{bottom:777.655500px;}
.yb5{bottom:784.605000px;}
.y83{bottom:785.500500px;}
.ye4{bottom:785.668500px;}
.y2f{bottom:789.979500px;}
.y14f{bottom:791.329500px;}
.y186{bottom:794.916000px;}
.yb4{bottom:803.434500px;}
.y61{bottom:804.330000px;}
.y14e{bottom:808.590000px;}
.y2e{bottom:809.436000px;}
.y185{bottom:812.176500px;}
.yb3{bottom:822.264000px;}
.y60{bottom:823.159500px;}
.y14d{bottom:825.850500px;}
.y184{bottom:829.437000px;}
.yb2{bottom:841.093500px;}
.y5f{bottom:841.989000px;}
.y14c{bottom:843.111000px;}
.y183{bottom:846.697500px;}
.y2d{bottom:848.022000px;}
.y14b{bottom:860.370000px;}
.y5e{bottom:860.818500px;}
.y182{bottom:863.956500px;}
.yb1{bottom:864.405000px;}
.y2c{bottom:868.501500px;}
.y14a{bottom:877.630500px;}
.y5d{bottom:879.648000px;}
.y2b{bottom:880.300500px;}
.y181{bottom:881.217000px;}
.y149{bottom:894.891000px;}
.y2a{bottom:896.440500px;}
.yb0{bottom:898.029000px;}
.y5c{bottom:898.477500px;}
.y148{bottom:912.151500px;}
.y29{bottom:912.580500px;}
.y180{bottom:915.738000px;}
.yaf{bottom:916.858500px;}
.y5b{bottom:917.307000px;}
.y147{bottom:929.412000px;}
.y17f{bottom:932.998500px;}
.y28{bottom:933.058500px;}
.yae{bottom:935.688000px;}
.y5a{bottom:936.136500px;}
.y146{bottom:946.672500px;}
.y17e{bottom:950.259000px;}
.yad{bottom:954.517500px;}
.y59{bottom:954.966000px;}
.y145{bottom:963.933000px;}
.y17d{bottom:967.519500px;}
.yac{bottom:973.347000px;}
.y58{bottom:973.795500px;}
.y27{bottom:977.736000px;}
.y144{bottom:981.193500px;}
.y17c{bottom:984.780000px;}
.yab{bottom:992.176500px;}
.y57{bottom:992.625000px;}
.y26{bottom:996.565500px;}
.y143{bottom:998.454000px;}
.y17a{bottom:1002.039000px;}
.y17b{bottom:1002.040500px;}
.yaa{bottom:1011.006000px;}
.y56{bottom:1011.454500px;}
.y142{bottom:1015.713000px;}
.y179{bottom:1019.299500px;}
.ya9{bottom:1029.835500px;}
.y55{bottom:1030.284000px;}
.y141{bottom:1032.973500px;}
.y25{bottom:1036.485000px;}
.y178{bottom:1036.560000px;}
.y54{bottom:1049.113500px;}
.y140{bottom:1050.234000px;}
.ya8{bottom:1053.148500px;}
.y177{bottom:1053.820500px;}
.y24{bottom:1064.728500px;}
.y53{bottom:1067.943000px;}
.y176{bottom:1071.081000px;}
.y13f{bottom:1071.978000px;}
.y52{bottom:1086.772500px;}
.y175{bottom:1088.341500px;}
.y23{bottom:1092.972000px;}
.y51{bottom:1105.602000px;}
.y20{bottom:1136.460000px;}
.y50{bottom:1168.366500px;}
.h16{height:23.242762px;}
.h2{height:25.508090px;}
.h11{height:27.524478px;}
.h15{height:28.214083px;}
.h17{height:30.582721px;}
.hc{height:32.565965px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h5{height:37.993262px;}
.hf{height:38.896243px;}
.h7{height:39.402747px;}
.h12{height:43.217759px;}
.hd{height:43.421105px;}
.he{height:43.660208px;}
.h9{height:43.815515px;}
.h1b{height:44.612578px;}
.h1a{height:44.871680px;}
.h10{height:48.848947px;}
.h20{height:49.117939px;}
.h1e{height:49.939453px;}
.h1d{height:50.229492px;}
.h6{height:50.931027px;}
.h8{height:51.251918px;}
.h13{height:54.276245px;}
.h14{height:54.575123px;}
.h1c{height:55.266328px;}
.hb{height:55.352206px;}
.h1f{height:55.587305px;}
.h18{height:62.952077px;}
.ha{height:77.792486px;}
.h19{height:334.878000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:209.166223px;}
.w4{width:691.829250px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x59{left:-46.269570px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:58.055459px;}
.x55{left:63.168000px;}
.x50{left:83.194500px;}
.x74{left:85.848000px;}
.x56{left:87.640500px;}
.x57{left:90.517500px;}
.x58{left:100.329750px;}
.x5a{left:149.388090px;}
.x51{left:177.135000px;}
.x53{left:179.301000px;}
.x54{left:181.479000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x5{left:269.914500px;}
.xb{left:281.479500px;}
.x3e{left:289.869000px;}
.x46{left:295.014000px;}
.x49{left:299.029500px;}
.x48{left:300.423000px;}
.x64{left:304.794000px;}
.x41{left:306.507000px;}
.x7{left:308.161500px;}
.x65{left:310.840500px;}
.x4a{left:315.909000px;}
.x1a{left:318.037500px;}
.xa{left:319.884000px;}
.x1b{left:325.509000px;}
.x1c{left:329.215500px;}
.x8{left:334.366500px;}
.x1d{left:336.687000px;}
.x3f{left:340.203000px;}
.x9{left:345.429000px;}
.x40{left:352.494000px;}
.x71{left:357.931500px;}
.x2f{left:360.876000px;}
.x66{left:362.925000px;}
.x32{left:364.386000px;}
.x35{left:367.512000px;}
.x6a{left:369.423000px;}
.x36{left:374.917500px;}
.x37{left:378.906000px;}
.x6b{left:384.366000px;}
.x72{left:390.109500px;}
.x30{left:401.758500px;}
.x6d{left:409.830000px;}
.x31{left:410.988000px;}
.x33{left:416.727000px;}
.x34{left:425.956500px;}
.x73{left:434.029500px;}
.x4c{left:448.536000px;}
.x4b{left:456.216000px;}
.x6e{left:463.099500px;}
.x1e{left:488.115000px;}
.x1f{left:495.588000px;}
.x20{left:499.387500px;}
.x21{left:514.330500px;}
.x77{left:520.515000px;}
.x5f{left:530.364000px;}
.xe{left:537.144000px;}
.xf{left:544.617000px;}
.x10{left:548.427000px;}
.x11{left:555.898500px;}
.x78{left:567.736500px;}
.x3c{left:576.391500px;}
.x3d{left:583.197000px;}
.x4e{left:599.583000px;}
.x4d{left:606.732000px;}
.x4f{left:616.636500px;}
.x38{left:622.168500px;}
.x6f{left:623.743500px;}
.x22{left:625.914000px;}
.x16{left:627.261000px;}
.x17{left:634.732500px;}
.x18{left:638.502000px;}
.x23{left:640.857000px;}
.x19{left:645.973500px;}
.x28{left:648.688500px;}
.x29{left:656.160000px;}
.x2a{left:659.970000px;}
.x47{left:664.813500px;}
.x7f{left:671.377500px;}
.x62{left:673.053000px;}
.x2b{left:674.914500px;}
.x70{left:677.011500px;}
.x60{left:679.983000px;}
.xc{left:683.155500px;}
.x63{left:687.997500px;}
.xd{left:690.627000px;}
.x5b{left:692.636370px;}
.x2c{left:697.480500px;}
.x3a{left:698.646000px;}
.x42{left:699.939000px;}
.x3b{left:713.590500px;}
.x67{left:715.504500px;}
.x68{left:730.447500px;}
.x61{left:731.944500px;}
.x69{left:734.109000px;}
.x76{left:735.174000px;}
.x24{left:737.401500px;}
.x6c{left:745.924500px;}
.x52{left:748.773000px;}
.x25{left:752.346000px;}
.x26{left:756.066000px;}
.x7d{left:757.816500px;}
.x7b{left:758.941500px;}
.x5c{left:762.003000px;}
.x12{left:765.067500px;}
.x27{left:771.010500px;}
.x13{left:772.539000px;}
.x14{left:776.205000px;}
.x5d{left:780.757500px;}
.x15{left:783.676500px;}
.x7e{left:784.716000px;}
.x79{left:789.198000px;}
.x7c{left:790.525500px;}
.x5e{left:795.700500px;}
.x43{left:805.672500px;}
.x75{left:810.400500px;}
.x7a{left:816.097500px;}
.x44{left:817.699500px;}
.x2d{left:819.082500px;}
.x45{left:832.194000px;}
.x2e{left:834.027000px;}
.x39{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000387pt;}
.ls4{letter-spacing:0.000518pt;}
.ls1d{letter-spacing:0.000540pt;}
.ls35{letter-spacing:0.000711pt;}
.ls2d{letter-spacing:0.000921pt;}
.ls19{letter-spacing:0.001007pt;}
.ls9{letter-spacing:0.001398pt;}
.ls8{letter-spacing:0.001522pt;}
.ls2b{letter-spacing:0.002439pt;}
.ls13{letter-spacing:0.003012pt;}
.ls32{letter-spacing:0.003230pt;}
.ls5{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004237pt;}
.ls21{letter-spacing:0.171520pt;}
.ls22{letter-spacing:0.318720pt;}
.ls23{letter-spacing:0.576078pt;}
.lse{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.lsd{letter-spacing:10.626533pt;}
.ls36{letter-spacing:11.560446pt;}
.ls25{letter-spacing:11.818020pt;}
.ls31{letter-spacing:11.886384pt;}
.ls17{letter-spacing:11.914699pt;}
.ls37{letter-spacing:11.943264pt;}
.ls1c{letter-spacing:11.950933pt;}
.ls29{letter-spacing:11.954133pt;}
.ls1a{letter-spacing:11.955635pt;}
.ls1b{letter-spacing:11.956267pt;}
.ls27{letter-spacing:11.959467pt;}
.ls34{letter-spacing:11.980414pt;}
.ls33{letter-spacing:12.050198pt;}
.ls38{letter-spacing:12.096238pt;}
.ls28{letter-spacing:12.112345pt;}
.ls30{letter-spacing:12.158853pt;}
.lsc{letter-spacing:12.194175pt;}
.ls26{letter-spacing:12.196871pt;}
.lsb{letter-spacing:12.344969pt;}
.ls2a{letter-spacing:12.504931pt;}
.ls10{letter-spacing:13.279545pt;}
.ls11{letter-spacing:13.284237pt;}
.ls24{letter-spacing:13.291570pt;}
.ls1f{letter-spacing:13.347391pt;}
.ls15{letter-spacing:13.392622pt;}
.ls14{letter-spacing:13.495461pt;}
.ls2c{letter-spacing:13.660486pt;}
.ls18{letter-spacing:13.992544pt;}
.ls16{letter-spacing:14.013459pt;}
.ls2e{letter-spacing:14.638264pt;}
.ls20{letter-spacing:15.461955pt;}
.ls6{letter-spacing:15.937067pt;}
.ls2f{letter-spacing:17.958525pt;}
.ls1e{letter-spacing:18.034374pt;}
.ls2{letter-spacing:51.035733pt;}
.ls7{letter-spacing:55.787733pt;}
.lsa{letter-spacing:57.174803pt;}
.ws11{word-spacing:-13.283467pt;}
.ws8a{word-spacing:-11.955200pt;}
.ws6a{word-spacing:-10.720000pt;}
.ws33{word-spacing:-10.626800pt;}
.ws15{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws5f{word-spacing:-3.666237pt;}
.ws3a{word-spacing:-2.975497pt;}
.ws36{word-spacing:-2.816095pt;}
.ws6b{word-spacing:-2.603559pt;}
.ws58{word-spacing:-2.072221pt;}
.ws74{word-spacing:-1.965953pt;}
.ws83{word-spacing:-1.817190pt;}
.ws40{word-spacing:-1.753418pt;}
.ws1{word-spacing:-1.696326pt;}
.ws5d{word-spacing:-1.647150pt;}
.ws84{word-spacing:-1.625907pt;}
.ws73{word-spacing:-1.434614pt;}
.ws7d{word-spacing:-1.386803pt;}
.ws64{word-spacing:-1.381481pt;}
.ws0{word-spacing:-1.175671pt;}
.ws60{word-spacing:-1.168945pt;}
.ws22{word-spacing:-1.147699pt;}
.ws1e{word-spacing:-1.099878pt;}
.ws80{word-spacing:-1.052058pt;}
.ws7{word-spacing:-1.041421pt;}
.ws29{word-spacing:-1.009543pt;}
.ws9{word-spacing:-0.929840pt;}
.ws7e{word-spacing:-0.908595pt;}
.ws3c{word-spacing:-0.797008pt;}
.ws59{word-spacing:-0.743874pt;}
.wsae{word-spacing:-0.669491pt;}
.ws87{word-spacing:-0.621670pt;}
.ws70{word-spacing:-0.584473pt;}
.wsa7{word-spacing:-0.573850pt;}
.ws86{word-spacing:-0.430387pt;}
.wsa9{word-spacing:-0.382566pt;}
.ws7c{word-spacing:-0.371937pt;}
.ws31{word-spacing:-0.318803pt;}
.ws1d{word-spacing:-0.286925pt;}
.ws28{word-spacing:-0.265669pt;}
.ws88{word-spacing:-0.239104pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws96{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws85{word-spacing:-0.142617pt;}
.ws42{word-spacing:-0.106268pt;}
.ws81{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.ws23{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws18{word-spacing:-0.003340pt;}
.ws17{word-spacing:-0.001926pt;}
.ws13{word-spacing:-0.000481pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:0.000007pt;}
.ws41{word-spacing:0.000619pt;}
.ws14{word-spacing:0.002963pt;}
.ws66{word-spacing:0.047821pt;}
.ws30{word-spacing:0.053134pt;}
.ws21{word-spacing:0.095642pt;}
.ws62{word-spacing:0.104156pt;}
.ws2f{word-spacing:0.106268pt;}
.ws8d{word-spacing:0.143462pt;}
.ws27{word-spacing:0.159402pt;}
.ws20{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.ws25{word-spacing:0.239104pt;}
.ws43{word-spacing:0.265669pt;}
.ws1b{word-spacing:0.286925pt;}
.ws5e{word-spacing:0.318803pt;}
.ws24{word-spacing:0.334746pt;}
.ws6c{word-spacing:0.371937pt;}
.ws1f{word-spacing:0.382566pt;}
.ws3b{word-spacing:0.478205pt;}
.ws90{word-spacing:0.526029pt;}
.ws78{word-spacing:0.531339pt;}
.ws69{word-spacing:0.637606pt;}
.ws65{word-spacing:0.690740pt;}
.ws63{word-spacing:0.743874pt;}
.ws51{word-spacing:0.850142pt;}
.ws8{word-spacing:0.855453pt;}
.ws52{word-spacing:0.903276pt;}
.ws5b{word-spacing:1.222079pt;}
.wsad{word-spacing:1.243341pt;}
.ws4a{word-spacing:1.275213pt;}
.ws93{word-spacing:1.338982pt;}
.ws50{word-spacing:1.381481pt;}
.wsa6{word-spacing:1.482445pt;}
.ws45{word-spacing:1.487748pt;}
.ws3d{word-spacing:1.594016pt;}
.ws4f{word-spacing:1.647150pt;}
.ws39{word-spacing:1.700284pt;}
.ws7a{word-spacing:1.912819pt;}
.wsa5{word-spacing:1.912832pt;}
.ws9b{word-spacing:2.104115pt;}
.ws6d{word-spacing:2.125355pt;}
.ws68{word-spacing:2.178489pt;}
.ws46{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws5a{word-spacing:2.284756pt;}
.ws77{word-spacing:2.391024pt;}
.ws7f{word-spacing:2.391040pt;}
.wsaa{word-spacing:2.438861pt;}
.ws1a{word-spacing:2.550432pt;}
.ws54{word-spacing:2.603559pt;}
.ws37{word-spacing:2.656693pt;}
.wsab{word-spacing:2.677965pt;}
.ws4c{word-spacing:2.816095pt;}
.ws97{word-spacing:2.860749pt;}
.ws82{word-spacing:2.866509pt;}
.ws95{word-spacing:2.869248pt;}
.ws53{word-spacing:2.922363pt;}
.ws4e{word-spacing:3.081764pt;}
.ws2d{word-spacing:3.134898pt;}
.ws26{word-spacing:3.188032pt;}
.ws35{word-spacing:3.241166pt;}
.ws79{word-spacing:3.347434pt;}
.ws76{word-spacing:3.559969pt;}
.ws4d{word-spacing:3.666237pt;}
.ws4b{word-spacing:3.719371pt;}
.wsac{word-spacing:3.730022pt;}
.ws48{word-spacing:3.772505pt;}
.ws44{word-spacing:3.878772pt;}
.ws3e{word-spacing:3.931906pt;}
.ws47{word-spacing:4.091308pt;}
.wsf{word-spacing:4.240070pt;}
.ws7b{word-spacing:4.250709pt;}
.ws75{word-spacing:4.303843pt;}
.ws10{word-spacing:4.314458pt;}
.ws6e{word-spacing:4.569513pt;}
.ws34{word-spacing:4.675780pt;}
.ws67{word-spacing:4.728914pt;}
.ws9d{word-spacing:4.734259pt;}
.ws57{word-spacing:4.782048pt;}
.ws38{word-spacing:4.941450pt;}
.ws2e{word-spacing:4.994583pt;}
.ws5c{word-spacing:5.047717pt;}
.ws49{word-spacing:5.260253pt;}
.ws61{word-spacing:5.313387pt;}
.ws99{word-spacing:5.355930pt;}
.ws72{word-spacing:5.950993pt;}
.ws9f{word-spacing:5.977600pt;}
.ws56{word-spacing:6.057261pt;}
.ws71{word-spacing:6.429198pt;}
.ws55{word-spacing:6.482332pt;}
.ws9a{word-spacing:6.503629pt;}
.wsd{word-spacing:6.918010pt;}
.wsa3{word-spacing:8.512102pt;}
.ws4{word-spacing:9.261206pt;}
.ws32{word-spacing:10.582157pt;}
.wsb{word-spacing:10.823338pt;}
.wsa8{word-spacing:11.381350pt;}
.ws89{word-spacing:11.668275pt;}
.wsa1{word-spacing:11.811738pt;}
.wsa0{word-spacing:11.904811pt;}
.ws98{word-spacing:11.904896pt;}
.ws8c{word-spacing:11.907379pt;}
.wsa4{word-spacing:11.955200pt;}
.wsa2{word-spacing:12.003021pt;}
.ws8e{word-spacing:12.050842pt;}
.ws92{word-spacing:12.098662pt;}
.ws8b{word-spacing:12.146483pt;}
.ws8f{word-spacing:12.289946pt;}
.ws3f{word-spacing:13.230333pt;}
.ws94{word-spacing:13.246362pt;}
.ws9c{word-spacing:14.011494pt;}
.wsc{word-spacing:14.319536pt;}
.ws91{word-spacing:14.776627pt;}
.ws9e{word-spacing:16.641638pt;}
.ws6f{word-spacing:17.427908pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
._18{margin-left:-7.697684pt;}
._13{margin-left:-6.504930pt;}
._3{margin-left:-5.467459pt;}
._2{margin-left:-4.091296pt;}
._9{margin-left:-2.267426pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._6{width:2.045648pt;}
._28{width:3.823896pt;}
._27{width:4.946906pt;}
._26{width:5.863545pt;}
._25{width:6.952611pt;}
._24{width:8.021120pt;}
._7{width:10.132188pt;}
._4{width:11.530016pt;}
._e{width:13.179368pt;}
._b{width:14.495524pt;}
._16{width:15.392961pt;}
._c{width:16.409231pt;}
._d{width:17.381501pt;}
._11{width:19.044511pt;}
._14{width:20.250730pt;}
._2b{width:21.433625pt;}
._5{width:23.055765pt;}
._12{width:24.813516pt;}
._8{width:27.188522pt;}
._a{width:29.648896pt;}
._15{width:32.411659pt;}
._17{width:35.741762pt;}
._2a{width:54.993920pt;}
._29{width:78.904320pt;}
._21{width:239.008358pt;}
._19{width:244.671061pt;}
._1b{width:250.963558pt;}
._1e{width:256.626261pt;}
._22{width:258.710528pt;}
._1c{width:270.665728pt;}
._1a{width:374.245581pt;}
._20{width:380.538078pt;}
._1f{width:386.200781pt;}
._1d{width:398.155981pt;}
._f{width:844.747183pt;}
._23{width:1840.266846pt;}
._10{width:2202.151733pt;}
.fs8{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fse{font-size:42.880000pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fsb{font-size:49.829333pt;}
.fs3{font-size:50.395200pt;}
.fsf{font-size:53.120000pt;}
.fs5{font-size:53.133867pt;}
.fsd{font-size:55.365867pt;}
.fs4{font-size:67.193600pt;}
.fs6{font-size:95.641600pt;}
.ye7{bottom:-513.955147pt;}
.y107{bottom:-454.274827pt;}
.y106{bottom:-437.316267pt;}
.y105{bottom:-420.198347pt;}
.y104{bottom:-403.080427pt;}
.y103{bottom:-385.949227pt;}
.y102{bottom:-368.831307pt;}
.y101{bottom:-351.872747pt;}
.y100{bottom:-334.754827pt;}
.yff{bottom:-317.636907pt;}
.yfe{bottom:-300.518987pt;}
.yfd{bottom:-283.401067pt;}
.yfc{bottom:-266.429227pt;}
.yfb{bottom:-249.311307pt;}
.yfa{bottom:-232.193387pt;}
.yf9{bottom:-215.075467pt;}
.yf8{bottom:-197.957547pt;}
.yf7{bottom:-180.839627pt;}
.yf6{bottom:-163.881067pt;}
.yf5{bottom:-146.749867pt;}
.yf4{bottom:-129.631947pt;}
.yf3{bottom:-112.514027pt;}
.yf2{bottom:-91.558187pt;}
.yf1{bottom:-58.918667pt;}
.yf0{bottom:-43.390667pt;}
.yef{bottom:-23.551307pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y22{bottom:9.767346pt;}
.y2{bottom:12.578910pt;}
.y21{bottom:27.405666pt;}
.y4f{bottom:28.346667pt;}
.y12a{bottom:92.057333pt;}
.y82{bottom:92.892000pt;}
.y1f{bottom:93.018667pt;}
.ya7{bottom:95.282667pt;}
.y13e{bottom:102.296000pt;}
.y174{bottom:105.045333pt;}
.y4e{bottom:105.549333pt;}
.y129{bottom:108.794667pt;}
.y1e{bottom:108.920000pt;}
.y81{bottom:109.629333pt;}
.ya6{bottom:112.020000pt;}
.y173{bottom:120.388000pt;}
.y4d{bottom:122.286667pt;}
.ye3{bottom:124.465333pt;}
.y1d{bottom:124.820000pt;}
.y128{bottom:125.532000pt;}
.y13d{bottom:125.888000pt;}
.ya5{bottom:128.757333pt;}
.y80{bottom:130.350667pt;}
.y172{bottom:135.730667pt;}
.y4c{bottom:139.024000pt;}
.y1c{bottom:140.720000pt;}
.ye2{bottom:141.202667pt;}
.y13c{bottom:141.509333pt;}
.y127{bottom:142.269333pt;}
.ya4{bottom:145.494667pt;}
.y171{bottom:151.073333pt;}
.y4b{bottom:155.761333pt;}
.y1b{bottom:156.621333pt;}
.y13b{bottom:157.130667pt;}
.ye1{bottom:157.940000pt;}
.y126{bottom:159.006667pt;}
.y7f{bottom:160.238667pt;}
.ya3{bottom:162.232000pt;}
.y170{bottom:166.416000pt;}
.y4a{bottom:172.498667pt;}
.y1a{bottom:172.521333pt;}
.ye0{bottom:174.677333pt;}
.y125{bottom:175.744000pt;}
.y7e{bottom:176.976000pt;}
.ya2{bottom:178.969333pt;}
.y13a{bottom:180.722667pt;}
.y16f{bottom:181.758667pt;}
.y19{bottom:188.421333pt;}
.y49{bottom:189.236000pt;}
.ydf{bottom:191.414667pt;}
.y124{bottom:192.481333pt;}
.y7d{bottom:193.713333pt;}
.ya1{bottom:195.706667pt;}
.y16e{bottom:197.101333pt;}
.y139{bottom:204.314667pt;}
.y18{bottom:204.322667pt;}
.y48{bottom:205.973333pt;}
.yde{bottom:208.152000pt;}
.y123{bottom:209.218667pt;}
.y7c{bottom:210.450667pt;}
.ya0{bottom:212.444000pt;}
.y138{bottom:219.936000pt;}
.y47{bottom:222.710667pt;}
.ydd{bottom:224.889333pt;}
.y122{bottom:225.956000pt;}
.y7b{bottom:227.188000pt;}
.y16d{bottom:227.786667pt;}
.y9f{bottom:229.181333pt;}
.y137{bottom:235.557333pt;}
.y46{bottom:239.448000pt;}
.ydc{bottom:241.625333pt;}
.y121{bottom:242.693333pt;}
.y16c{bottom:243.128000pt;}
.y7a{bottom:243.925333pt;}
.y9e{bottom:245.918667pt;}
.y136{bottom:251.178667pt;}
.y45{bottom:256.185333pt;}
.ydb{bottom:258.362667pt;}
.y16b{bottom:258.470667pt;}
.y120{bottom:259.430667pt;}
.y79{bottom:260.662667pt;}
.y9d{bottom:262.656000pt;}
.y135{bottom:266.800000pt;}
.y17{bottom:266.804000pt;}
.y44{bottom:272.922667pt;}
.y16a{bottom:273.813333pt;}
.yda{bottom:275.100000pt;}
.y11f{bottom:276.168000pt;}
.y78{bottom:277.400000pt;}
.y9c{bottom:279.393333pt;}
.y134{bottom:282.421333pt;}
.y16{bottom:282.705333pt;}
.y169{bottom:289.156000pt;}
.y43{bottom:289.660000pt;}
.yd9{bottom:291.837333pt;}
.y11e{bottom:292.905333pt;}
.y77{bottom:294.137333pt;}
.y9b{bottom:296.129333pt;}
.y133{bottom:298.042667pt;}
.y15{bottom:298.605333pt;}
.y168{bottom:304.498667pt;}
.y42{bottom:306.397333pt;}
.y11d{bottom:309.642667pt;}
.y76{bottom:310.874667pt;}
.y9a{bottom:312.866667pt;}
.y14{bottom:314.505333pt;}
.yd8{bottom:316.773333pt;}
.y167{bottom:319.841333pt;}
.y41{bottom:323.134667pt;}
.y11c{bottom:326.380000pt;}
.y75{bottom:327.612000pt;}
.y98{bottom:329.604000pt;}
.yd7{bottom:333.524000pt;}
.y99{bottom:334.426667pt;}
.y166{bottom:335.184000pt;}
.y13{bottom:338.376000pt;}
.y40{bottom:339.872000pt;}
.yee{bottom:343.003253pt;}
.y11b{bottom:343.117333pt;}
.y74{bottom:344.349333pt;}
.y97{bottom:346.341333pt;}
.yd3{bottom:347.110667pt;}
.yd6{bottom:348.136000pt;}
.yd5{bottom:348.632000pt;}
.y165{bottom:350.526667pt;}
.y12{bottom:354.277333pt;}
.y3f{bottom:356.609333pt;}
.y11a{bottom:359.854667pt;}
.yed{bottom:360.121173pt;}
.y73{bottom:361.086667pt;}
.yd4{bottom:362.748000pt;}
.y96{bottom:363.078667pt;}
.y164{bottom:365.868000pt;}
.y11{bottom:370.177333pt;}
.y119{bottom:376.590667pt;}
.yec{bottom:377.239093pt;}
.y3e{bottom:377.330667pt;}
.y72{bottom:377.824000pt;}
.y95{bottom:379.816000pt;}
.y163{bottom:381.210667pt;}
.yd2{bottom:383.761333pt;}
.y118{bottom:393.328000pt;}
.yeb{bottom:394.370293pt;}
.y10{bottom:395.376000pt;}
.y94{bottom:396.553333pt;}
.yce{bottom:397.348000pt;}
.yd1{bottom:398.373333pt;}
.y71{bottom:398.546667pt;}
.yd0{bottom:398.869333pt;}
.y117{bottom:410.065333pt;}
.yf{bottom:411.276000pt;}
.yea{bottom:411.328853pt;}
.y162{bottom:411.896000pt;}
.ycf{bottom:412.985333pt;}
.y93{bottom:413.290667pt;}
.y132{bottom:417.276000pt;}
.y116{bottom:426.802667pt;}
.y161{bottom:427.238667pt;}
.y70{bottom:428.434667pt;}
.ye9{bottom:428.446773pt;}
.y92{bottom:430.028000pt;}
.ycd{bottom:433.998667pt;}
.ye{bottom:435.146667pt;}
.y160{bottom:442.581333pt;}
.y115{bottom:443.540000pt;}
.y3d{bottom:444.130667pt;}
.y6f{bottom:445.172000pt;}
.ye8{bottom:445.564693pt;}
.y91{bottom:446.765333pt;}
.y131{bottom:447.164000pt;}
.ycc{bottom:448.610667pt;}
.yc9{bottom:448.925333pt;}
.ycb{bottom:449.106667pt;}
.yd{bottom:451.048000pt;}
.y15f{bottom:457.924000pt;}
.y114{bottom:460.277333pt;}
.y3c{bottom:461.426667pt;}
.y6e{bottom:461.909333pt;}
.yca{bottom:463.222667pt;}
.y90{bottom:463.502667pt;}
.y130{bottom:463.901333pt;}
.yc{bottom:466.948000pt;}
.y15e{bottom:473.266667pt;}
.y113{bottom:477.014667pt;}
.y6d{bottom:478.646667pt;}
.y8f{bottom:480.240000pt;}
.y12f{bottom:480.638667pt;}
.yb{bottom:482.848000pt;}
.yc8{bottom:484.237333pt;}
.y15d{bottom:488.609333pt;}
.y112{bottom:493.752000pt;}
.ye6{bottom:494.209813pt;}
.y3b{bottom:494.661333pt;}
.y6c{bottom:495.384000pt;}
.y8e{bottom:496.977333pt;}
.y12e{bottom:497.376000pt;}
.yc4{bottom:497.824000pt;}
.ya{bottom:498.749333pt;}
.yc7{bottom:498.848000pt;}
.yc6{bottom:499.345333pt;}
.ye5{bottom:502.689333pt;}
.y15c{bottom:503.950667pt;}
.y111{bottom:510.489333pt;}
.y3a{bottom:511.957333pt;}
.y6b{bottom:512.121333pt;}
.yc5{bottom:513.460000pt;}
.y8d{bottom:513.714667pt;}
.y12d{bottom:514.113333pt;}
.y9{bottom:514.649333pt;}
.y15b{bottom:519.293333pt;}
.y110{bottom:527.226667pt;}
.y6a{bottom:528.857333pt;}
.y39{bottom:529.252000pt;}
.y8{bottom:530.549333pt;}
.y12c{bottom:530.850667pt;}
.y8c{bottom:534.437333pt;}
.yc3{bottom:534.474667pt;}
.y15a{bottom:534.636000pt;}
.y10f{bottom:543.964000pt;}
.y69{bottom:545.594667pt;}
.y7{bottom:546.450667pt;}
.y38{bottom:546.546667pt;}
.y12b{bottom:547.588000pt;}
.ybf{bottom:548.061333pt;}
.yc2{bottom:549.086667pt;}
.yc1{bottom:549.582667pt;}
.y159{bottom:549.978667pt;}
.y10e{bottom:560.701333pt;}
.y68{bottom:562.332000pt;}
.y6{bottom:562.350667pt;}
.yc0{bottom:563.698667pt;}
.y37{bottom:563.842667pt;}
.y8b{bottom:564.325333pt;}
.y158{bottom:565.321333pt;}
.y10d{bottom:577.438667pt;}
.y5{bottom:578.250667pt;}
.y157{bottom:580.664000pt;}
.y8a{bottom:581.062667pt;}
.y36{bottom:581.137333pt;}
.y67{bottom:583.054667pt;}
.y18d{bottom:583.852000pt;}
.ybe{bottom:584.712000pt;}
.ybb{bottom:592.018667pt;}
.y4{bottom:594.152000pt;}
.y10c{bottom:594.176000pt;}
.y156{bottom:596.006667pt;}
.y89{bottom:597.800000pt;}
.y35{bottom:598.433333pt;}
.y18c{bottom:599.194667pt;}
.ybd{bottom:599.324000pt;}
.yba{bottom:606.629333pt;}
.y1{bottom:610.051968pt;}
.y10b{bottom:610.913333pt;}
.y155{bottom:611.349333pt;}
.y66{bottom:612.942667pt;}
.ybc{bottom:613.936000pt;}
.y88{bottom:614.537333pt;}
.y34{bottom:615.728000pt;}
.y154{bottom:626.690667pt;}
.y65{bottom:629.680000pt;}
.y18b{bottom:629.878667pt;}
.y87{bottom:631.274667pt;}
.y10a{bottom:631.636000pt;}
.y33{bottom:633.022667pt;}
.y153{bottom:642.033333pt;}
.yb9{bottom:642.042667pt;}
.y18a{bottom:645.221333pt;}
.y64{bottom:646.417333pt;}
.y86{bottom:648.012000pt;}
.y32{bottom:650.318667pt;}
.y152{bottom:657.376000pt;}
.y109{bottom:658.682667pt;}
.yb8{bottom:659.137333pt;}
.yb7{bottom:659.138667pt;}
.y189{bottom:660.564000pt;}
.y85{bottom:664.749333pt;}
.y63{bottom:667.140000pt;}
.y31{bottom:667.613333pt;}
.y151{bottom:672.718667pt;}
.y108{bottom:675.778667pt;}
.y188{bottom:675.906667pt;}
.yb6{bottom:680.689333pt;}
.y84{bottom:681.485333pt;}
.y30{bottom:684.908000pt;}
.y62{bottom:685.072000pt;}
.y150{bottom:688.061333pt;}
.y187{bottom:691.249333pt;}
.yb5{bottom:697.426667pt;}
.y83{bottom:698.222667pt;}
.ye4{bottom:698.372000pt;}
.y2f{bottom:702.204000pt;}
.y14f{bottom:703.404000pt;}
.y186{bottom:706.592000pt;}
.yb4{bottom:714.164000pt;}
.y61{bottom:714.960000pt;}
.y14e{bottom:718.746667pt;}
.y2e{bottom:719.498667pt;}
.y185{bottom:721.934667pt;}
.yb3{bottom:730.901333pt;}
.y60{bottom:731.697333pt;}
.y14d{bottom:734.089333pt;}
.y184{bottom:737.277333pt;}
.yb2{bottom:747.638667pt;}
.y5f{bottom:748.434667pt;}
.y14c{bottom:749.432000pt;}
.y183{bottom:752.620000pt;}
.y2d{bottom:753.797333pt;}
.y14b{bottom:764.773333pt;}
.y5e{bottom:765.172000pt;}
.y182{bottom:767.961333pt;}
.yb1{bottom:768.360000pt;}
.y2c{bottom:772.001333pt;}
.y14a{bottom:780.116000pt;}
.y5d{bottom:781.909333pt;}
.y2b{bottom:782.489333pt;}
.y181{bottom:783.304000pt;}
.y149{bottom:795.458667pt;}
.y2a{bottom:796.836000pt;}
.yb0{bottom:798.248000pt;}
.y5c{bottom:798.646667pt;}
.y148{bottom:810.801333pt;}
.y29{bottom:811.182667pt;}
.y180{bottom:813.989333pt;}
.yaf{bottom:814.985333pt;}
.y5b{bottom:815.384000pt;}
.y147{bottom:826.144000pt;}
.y17f{bottom:829.332000pt;}
.y28{bottom:829.385333pt;}
.yae{bottom:831.722667pt;}
.y5a{bottom:832.121333pt;}
.y146{bottom:841.486667pt;}
.y17e{bottom:844.674667pt;}
.yad{bottom:848.460000pt;}
.y59{bottom:848.858667pt;}
.y145{bottom:856.829333pt;}
.y17d{bottom:860.017333pt;}
.yac{bottom:865.197333pt;}
.y58{bottom:865.596000pt;}
.y27{bottom:869.098667pt;}
.y144{bottom:872.172000pt;}
.y17c{bottom:875.360000pt;}
.yab{bottom:881.934667pt;}
.y57{bottom:882.333333pt;}
.y26{bottom:885.836000pt;}
.y143{bottom:887.514667pt;}
.y17a{bottom:890.701333pt;}
.y17b{bottom:890.702667pt;}
.yaa{bottom:898.672000pt;}
.y56{bottom:899.070667pt;}
.y142{bottom:902.856000pt;}
.y179{bottom:906.044000pt;}
.ya9{bottom:915.409333pt;}
.y55{bottom:915.808000pt;}
.y141{bottom:918.198667pt;}
.y25{bottom:921.320000pt;}
.y178{bottom:921.386667pt;}
.y54{bottom:932.545333pt;}
.y140{bottom:933.541333pt;}
.ya8{bottom:936.132000pt;}
.y177{bottom:936.729333pt;}
.y24{bottom:946.425333pt;}
.y53{bottom:949.282667pt;}
.y176{bottom:952.072000pt;}
.y13f{bottom:952.869333pt;}
.y52{bottom:966.020000pt;}
.y175{bottom:967.414667pt;}
.y23{bottom:971.530667pt;}
.y51{bottom:982.757333pt;}
.y20{bottom:1010.186667pt;}
.y50{bottom:1038.548000pt;}
.h16{height:20.660233pt;}
.h2{height:22.673858pt;}
.h11{height:24.466203pt;}
.h15{height:25.079185pt;}
.h17{height:27.184641pt;}
.hc{height:28.947524pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h5{height:33.771789pt;}
.hf{height:34.574438pt;}
.h7{height:35.024664pt;}
.h12{height:38.415786pt;}
.hd{height:38.596538pt;}
.he{height:38.809074pt;}
.h9{height:38.947124pt;}
.h1b{height:39.655625pt;}
.h1a{height:39.885937pt;}
.h10{height:43.421286pt;}
.h20{height:43.660390pt;}
.h1e{height:44.390625pt;}
.h1d{height:44.648438pt;}
.h6{height:45.272024pt;}
.h8{height:45.557261pt;}
.h13{height:48.245551pt;}
.h14{height:48.511220pt;}
.h1c{height:49.125625pt;}
.hb{height:49.201961pt;}
.h1f{height:49.410937pt;}
.h18{height:55.957402pt;}
.ha{height:69.148877pt;}
.h19{height:297.669333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:185.925531pt;}
.w4{width:614.959333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x59{left:-41.128507pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:51.604853pt;}
.x55{left:56.149333pt;}
.x50{left:73.950667pt;}
.x74{left:76.309333pt;}
.x56{left:77.902667pt;}
.x57{left:80.460000pt;}
.x58{left:89.182000pt;}
.x5a{left:132.789413pt;}
.x51{left:157.453333pt;}
.x53{left:159.378667pt;}
.x54{left:161.314667pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x5{left:239.924000pt;}
.xb{left:250.204000pt;}
.x3e{left:257.661333pt;}
.x46{left:262.234667pt;}
.x49{left:265.804000pt;}
.x48{left:267.042667pt;}
.x64{left:270.928000pt;}
.x41{left:272.450667pt;}
.x7{left:273.921333pt;}
.x65{left:276.302667pt;}
.x4a{left:280.808000pt;}
.x1a{left:282.700000pt;}
.xa{left:284.341333pt;}
.x1b{left:289.341333pt;}
.x1c{left:292.636000pt;}
.x8{left:297.214667pt;}
.x1d{left:299.277333pt;}
.x3f{left:302.402667pt;}
.x9{left:307.048000pt;}
.x40{left:313.328000pt;}
.x71{left:318.161333pt;}
.x2f{left:320.778667pt;}
.x66{left:322.600000pt;}
.x32{left:323.898667pt;}
.x35{left:326.677333pt;}
.x6a{left:328.376000pt;}
.x36{left:333.260000pt;}
.x37{left:336.805333pt;}
.x6b{left:341.658667pt;}
.x72{left:346.764000pt;}
.x30{left:357.118667pt;}
.x6d{left:364.293333pt;}
.x31{left:365.322667pt;}
.x33{left:370.424000pt;}
.x34{left:378.628000pt;}
.x73{left:385.804000pt;}
.x4c{left:398.698667pt;}
.x4b{left:405.525333pt;}
.x6e{left:411.644000pt;}
.x1e{left:433.880000pt;}
.x1f{left:440.522667pt;}
.x20{left:443.900000pt;}
.x21{left:457.182667pt;}
.x77{left:462.680000pt;}
.x5f{left:471.434667pt;}
.xe{left:477.461333pt;}
.xf{left:484.104000pt;}
.x10{left:487.490667pt;}
.x11{left:494.132000pt;}
.x78{left:504.654667pt;}
.x3c{left:512.348000pt;}
.x3d{left:518.397333pt;}
.x4e{left:532.962667pt;}
.x4d{left:539.317333pt;}
.x4f{left:548.121333pt;}
.x38{left:553.038667pt;}
.x6f{left:554.438667pt;}
.x22{left:556.368000pt;}
.x16{left:557.565333pt;}
.x17{left:564.206667pt;}
.x18{left:567.557333pt;}
.x23{left:569.650667pt;}
.x19{left:574.198667pt;}
.x28{left:576.612000pt;}
.x29{left:583.253333pt;}
.x2a{left:586.640000pt;}
.x47{left:590.945333pt;}
.x7f{left:596.780000pt;}
.x62{left:598.269333pt;}
.x2b{left:599.924000pt;}
.x70{left:601.788000pt;}
.x60{left:604.429333pt;}
.xc{left:607.249333pt;}
.x63{left:611.553333pt;}
.xd{left:613.890667pt;}
.x5b{left:615.676773pt;}
.x2c{left:619.982667pt;}
.x3a{left:621.018667pt;}
.x42{left:622.168000pt;}
.x3b{left:634.302667pt;}
.x67{left:636.004000pt;}
.x68{left:649.286667pt;}
.x61{left:650.617333pt;}
.x69{left:652.541333pt;}
.x76{left:653.488000pt;}
.x24{left:655.468000pt;}
.x6c{left:663.044000pt;}
.x52{left:665.576000pt;}
.x25{left:668.752000pt;}
.x26{left:672.058667pt;}
.x7d{left:673.614667pt;}
.x7b{left:674.614667pt;}
.x5c{left:677.336000pt;}
.x12{left:680.060000pt;}
.x27{left:685.342667pt;}
.x13{left:686.701333pt;}
.x14{left:689.960000pt;}
.x5d{left:694.006667pt;}
.x15{left:696.601333pt;}
.x7e{left:697.525333pt;}
.x79{left:701.509333pt;}
.x7c{left:702.689333pt;}
.x5e{left:707.289333pt;}
.x43{left:716.153333pt;}
.x75{left:720.356000pt;}
.x7a{left:725.420000pt;}
.x44{left:726.844000pt;}
.x2d{left:728.073333pt;}
.x45{left:739.728000pt;}
.x2e{left:741.357333pt;}
.x39{left:744.770667pt;}
}




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