
    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_fa995f15974c830516eed1b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_493dbde7e84e7f98f64da5eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_354699e4c104f6cfcee9947d.woff2')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_2392ec17ec00932d9b274eb7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_0278bcdc82bce07fb4ae4aab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.803000;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_018f29027a8ca72acf8b1072.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a6a4041248c5de43bddc98f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014160;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_467090d0fbe44a5d6cc74b67.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b8e177551527a59f2a1c3708.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.021484;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_7eb35be261d994b085c06577.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.021484;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_a6a4041248c5de43bddc98f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014160;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_2d481e094a457f526f093b80.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_531aa8d1b13f2c4dc761d3e8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.021484;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_7567b4f7741db9c0edae5bfa.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.021484;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_a6a4041248c5de43bddc98f0.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;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_0c7b3d7f9f57c1cf013dac93.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6edfc66a03b93ea8409049f4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.021484;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:ff12;src:url('chunks/assets/font_7eb35be261d994b085c06577.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.021484;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:ff13;src:url('chunks/assets/font_36a2aba4e18c98153c678894.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m2{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);}
.m23{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);}
.m11{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);}
.m1b{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);}
.m10{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);}
.m1d{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);}
.mc{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);}
.m1f{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);}
.m7{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);}
.m1{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);}
.m20{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m18{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);}
.m19{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);}
.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);}
.me{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);}
.m8{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);}
.m1c{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);}
.ma{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);}
.m12{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);}
.m17{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);}
.m9{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);}
.m1e{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);}
.m6{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);}
.m21{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);}
.m1a{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);}
.m15{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);}
.m5{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);}
.md{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);}
.m14{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);}
.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);}
.mf{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;}
.v4{vertical-align:-10.494000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.880000px;}
.ls24{letter-spacing:-1.944000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.342000px;}
.ls29{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.198000px;}
.ls23{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.159000px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000175px;}
.ls8{letter-spacing:0.000435px;}
.lsb{letter-spacing:0.000466px;}
.ls1{letter-spacing:0.000600px;}
.ls30{letter-spacing:0.000800px;}
.lsc{letter-spacing:0.000810px;}
.ls2f{letter-spacing:0.001036px;}
.ls20{letter-spacing:0.001133px;}
.lse{letter-spacing:0.001958px;}
.lsd{letter-spacing:0.002401px;}
.ls9{letter-spacing:0.002422px;}
.ls2e{letter-spacing:0.004800px;}
.ls25{letter-spacing:0.006480px;}
.ls15{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.138000px;}
.ls1d{letter-spacing:0.140040px;}
.ls28{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.717483px;}
.ls12{letter-spacing:2.988600px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls32{letter-spacing:13.335261px;}
.ls21{letter-spacing:13.444800px;}
.ls2d{letter-spacing:13.448400px;}
.ls22{letter-spacing:13.450800px;}
.ls2c{letter-spacing:13.454400px;}
.ls34{letter-spacing:13.511283px;}
.ls1f{letter-spacing:13.632342px;}
.ls31{letter-spacing:13.920988px;}
.ls17{letter-spacing:14.094088px;}
.ls10{letter-spacing:14.627775px;}
.ls1a{letter-spacing:15.063451px;}
.ls11{letter-spacing:15.242778px;}
.ls1b{letter-spacing:16.737168px;}
.ls33{letter-spacing:17.050400px;}
.ls3{letter-spacing:17.929200px;}
.ls27{letter-spacing:26.100000px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{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;}
}
.wsf{word-spacing:-86.792642px;}
.ws7e{word-spacing:-60.120000px;}
.ws9d{word-spacing:-54.000000px;}
.ws91{word-spacing:-15.036480px;}
.ws44{word-spacing:-14.943900px;}
.ws92{word-spacing:-14.871000px;}
.ws90{word-spacing:-14.850000px;}
.ws9f{word-spacing:-13.698000px;}
.ws9c{word-spacing:-13.644000px;}
.ws7d{word-spacing:-13.590000px;}
.ws9b{word-spacing:-13.518000px;}
.ws7c{word-spacing:-13.500000px;}
.wsa2{word-spacing:-13.449600px;}
.ws9e{word-spacing:-12.996000px;}
.ws79{word-spacing:-12.150000px;}
.ws7a{word-spacing:-11.970000px;}
.ws30{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws7b{word-spacing:-9.000000px;}
.ws14{word-spacing:-2.743718px;}
.ws74{word-spacing:-2.630126px;}
.ws3d{word-spacing:-2.391024px;}
.ws29{word-spacing:-2.271473px;}
.wsa9{word-spacing:-2.044339px;}
.ws3e{word-spacing:-1.972595px;}
.wsaa{word-spacing:-1.829146px;}
.ws55{word-spacing:-1.733492px;}
.ws2d{word-spacing:-1.673717px;}
.wsab{word-spacing:-1.667750px;}
.ws56{word-spacing:-1.613941px;}
.ws4a{word-spacing:-1.494390px;}
.wsac{word-spacing:-1.452557px;}
.ws60{word-spacing:-1.344960px;}
.ws5d{word-spacing:-1.255288px;}
.ws49{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws78{word-spacing:-1.135736px;}
.ws61{word-spacing:-1.075968px;}
.ws7{word-spacing:-1.046070px;}
.ws73{word-spacing:-1.016185px;}
.ws82{word-spacing:-0.968371px;}
.ws57{word-spacing:-0.777083px;}
.ws8d{word-spacing:-0.717307px;}
.ws3f{word-spacing:-0.657532px;}
.ws89{word-spacing:-0.597756px;}
.ws1c{word-spacing:-0.484186px;}
.ws76{word-spacing:-0.478205px;}
.ws83{word-spacing:-0.376589px;}
.ws41{word-spacing:-0.358654px;}
.ws2c{word-spacing:-0.298878px;}
.ws28{word-spacing:-0.239102px;}
.ws53{word-spacing:-0.216958px;}
.ws13{word-spacing:-0.215194px;}
.ws35{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws27{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.107597px;}
.ws5a{word-spacing:-0.093359px;}
.ws22{word-spacing:-0.059776px;}
.ws62{word-spacing:-0.053798px;}
.ws31{word-spacing:-0.047821px;}
.ws94{word-spacing:-0.007622px;}
.ws95{word-spacing:-0.001661px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws11{word-spacing:0.095641px;}
.ws85{word-spacing:0.107597px;}
.ws36{word-spacing:0.119551px;}
.ws84{word-spacing:0.161395px;}
.ws40{word-spacing:0.179327px;}
.ws81{word-spacing:0.215194px;}
.ws2b{word-spacing:0.239102px;}
.ws32{word-spacing:0.298878px;}
.wsa3{word-spacing:0.322790px;}
.ws2a{word-spacing:0.358654px;}
.ws1d{word-spacing:0.376589px;}
.ws5c{word-spacing:0.418429px;}
.ws42{word-spacing:0.537980px;}
.ws4b{word-spacing:0.597756px;}
.wsb2{word-spacing:0.645581px;}
.ws26{word-spacing:0.717307px;}
.ws75{word-spacing:0.777083px;}
.ws58{word-spacing:0.836858px;}
.ws39{word-spacing:0.896634px;}
.ws33{word-spacing:0.956410px;}
.wsb1{word-spacing:0.968371px;}
.ws6{word-spacing:1.004227px;}
.ws21{word-spacing:1.016185px;}
.ws54{word-spacing:1.075961px;}
.wsa7{word-spacing:1.183565px;}
.ws87{word-spacing:1.255288px;}
.ws5b{word-spacing:1.315063px;}
.ws23{word-spacing:1.374839px;}
.ws24{word-spacing:1.494390px;}
.ws25{word-spacing:1.554166px;}
.wsa6{word-spacing:1.613952px;}
.ws8f{word-spacing:1.733492px;}
.ws8e{word-spacing:1.793268px;}
.ws3b{word-spacing:1.912819px;}
.ws99{word-spacing:2.092146px;}
.ws97{word-spacing:2.391024px;}
.ws4f{word-spacing:2.450800px;}
.ws0{word-spacing:2.511541px;}
.ws2{word-spacing:2.513191px;}
.ws8a{word-spacing:2.630126px;}
.wsb9{word-spacing:2.851315px;}
.ws88{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws20{word-spacing:2.929004px;}
.ws3c{word-spacing:3.048556px;}
.wsbe{word-spacing:3.216586px;}
.ws1e{word-spacing:3.219667px;}
.wsb4{word-spacing:3.227904px;}
.ws4e{word-spacing:3.287658px;}
.ws86{word-spacing:3.347434px;}
.wsa5{word-spacing:3.389299px;}
.ws4c{word-spacing:3.407209px;}
.ws77{word-spacing:3.466985px;}
.wsbd{word-spacing:3.496896px;}
.ws1f{word-spacing:3.586536px;}
.wsa8{word-spacing:3.604493px;}
.ws2e{word-spacing:3.706087px;}
.wsa4{word-spacing:3.765888px;}
.ws8b{word-spacing:4.004965px;}
.ws34{word-spacing:4.064741px;}
.ws9a{word-spacing:4.124516px;}
.ws8c{word-spacing:4.184292px;}
.ws15{word-spacing:4.411469px;}
.ws80{word-spacing:4.465267px;}
.ws52{word-spacing:4.542946px;}
.ws72{word-spacing:4.662497px;}
.ws93{word-spacing:4.734259px;}
.wsd{word-spacing:4.770079px;}
.ws59{word-spacing:4.841824px;}
.ws7f{word-spacing:4.841856px;}
.wse{word-spacing:4.853765px;}
.wsa1{word-spacing:5.164646px;}
.ws46{word-spacing:5.379804px;}
.ws50{word-spacing:5.439580px;}
.wsa0{word-spacing:5.487437px;}
.ws51{word-spacing:5.499355px;}
.ws98{word-spacing:5.559131px;}
.ws3a{word-spacing:5.678682px;}
.ws43{word-spacing:5.738458px;}
.wsaf{word-spacing:6.079219px;}
.ws1a{word-spacing:6.240614px;}
.ws47{word-spacing:6.455765px;}
.ws19{word-spacing:6.455808px;}
.ws17{word-spacing:6.563405px;}
.ws5e{word-spacing:7.232848px;}
.ws4d{word-spacing:7.292623px;}
.ws45{word-spacing:7.352399px;}
.ws96{word-spacing:7.412174px;}
.wsb{word-spacing:7.782761px;}
.ws48{word-spacing:7.830604px;}
.ws5f{word-spacing:8.249033px;}
.ws3{word-spacing:10.414456px;}
.ws2f{word-spacing:11.905306px;}
.ws9{word-spacing:12.176255px;}
.wsb8{word-spacing:13.288205px;}
.wsb6{word-spacing:13.393181px;}
.wsb7{word-spacing:13.395802px;}
.wsbb{word-spacing:13.396800px;}
.wsbc{word-spacing:13.449600px;}
.wsb5{word-spacing:13.557197px;}
.wsb3{word-spacing:13.718592px;}
.ws38{word-spacing:14.884124px;}
.wsa{word-spacing:16.109478px;}
.wsb0{word-spacing:16.569907px;}
.wsae{word-spacing:16.615373px;}
.wsad{word-spacing:16.619549px;}
.wsbf{word-spacing:16.623706px;}
.wsba{word-spacing:25.554240px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws6e{word-spacing:159.458458px;}
.ws63{word-spacing:211.750502px;}
.ws66{word-spacing:221.595610px;}
.ws65{word-spacing:223.962739px;}
.ws70{word-spacing:242.307994px;}
.ws67{word-spacing:246.289075px;}
.ws6f{word-spacing:266.248282px;}
.ws64{word-spacing:272.381299px;}
.ws6b{word-spacing:284.808730px;}
.ws68{word-spacing:297.935539px;}
.ws71{word-spacing:298.903910px;}
.ws6a{word-spacing:302.777395px;}
.ws6d{word-spacing:309.663590px;}
.ws69{word-spacing:315.151027px;}
.ws6c{word-spacing:325.157530px;}
._6{margin-left:-11.943245px;}
._13{margin-left:-6.969844px;}
._b{margin-left:-5.864026px;}
._1{margin-left:-4.644551px;}
._16{margin-left:-3.598487px;}
._31{margin-left:-2.517049px;}
._0{margin-left:-1.506341px;}
._2f{width:1.003080px;}
._3{width:2.301354px;}
._7{width:3.901315px;}
._33{width:5.230440px;}
._34{width:6.252480px;}
._37{width:7.329821px;}
._36{width:8.777520px;}
._35{width:10.241138px;}
._4{width:11.582422px;}
._2{width:12.971268px;}
._18{width:14.483663px;}
._8{width:15.816730px;}
._9{width:16.838899px;}
._10{width:17.944631px;}
._a{width:19.044634px;}
._e{width:21.590942px;}
._f{width:22.786454px;}
._15{width:23.916217px;}
._c{width:25.417048px;}
._38{width:26.766697px;}
._2e{width:27.885251px;}
._19{width:29.349820px;}
._5{width:30.587087px;}
._32{width:32.051672px;}
._17{width:33.886303px;}
._14{width:36.044687px;}
._d{width:37.515359px;}
._39{width:88.767360px;}
._1c{width:251.819197px;}
._29{width:289.758182px;}
._2d{width:300.087475px;}
._1d{width:307.511654px;}
._25{width:335.110234px;}
._1e{width:337.746355px;}
._21{width:344.255962px;}
._23{width:348.882624px;}
._24{width:358.996723px;}
._28{width:367.819661px;}
._1a{width:373.091904px;}
._1b{width:380.193293px;}
._2c{width:409.585108px;}
._26{width:415.915430px;}
._2b{width:429.795418px;}
._1f{width:432.001152px;}
._20{width:437.912970px;}
._22{width:443.185213px;}
._2a{width:452.229350px;}
._27{width:485.422963px;}
._11{width:713.995849px;}
._30{width:2117.361840px;}
._12{width:2552.067300px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(71,162,206);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:33.120000px;}
.fs5{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fsa{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:111.558666px;}
.yea{bottom:-467.008500px;}
.y101{bottom:-392.848500px;}
.y100{bottom:-373.678500px;}
.yff{bottom:-354.418500px;}
.yfe{bottom:-335.158500px;}
.yfd{bottom:-315.988500px;}
.y11e{bottom:-314.905500px;}
.yfc{bottom:-296.728500px;}
.y15b{bottom:-288.097500px;}
.yfb{bottom:-277.558500px;}
.yfa{bottom:-258.268500px;}
.y147{bottom:-245.965500px;}
.yf9{bottom:-239.008500px;}
.y146{bottom:-226.795500px;}
.y16c{bottom:-220.777500px;}
.yf8{bottom:-219.838500px;}
.y145{bottom:-207.535500px;}
.y16b{bottom:-203.407500px;}
.yf7{bottom:-200.578500px;}
.y144{bottom:-188.275500px;}
.y16a{bottom:-186.127500px;}
.y143{bottom:-169.105500px;}
.y169{bottom:-168.757500px;}
.yf6{bottom:-163.768500px;}
.y142{bottom:-149.845500px;}
.yf5{bottom:-146.398500px;}
.y168{bottom:-142.567500px;}
.y141{bottom:-130.675500px;}
.yf4{bottom:-129.118500px;}
.y167{bottom:-125.197500px;}
.yf3{bottom:-111.838500px;}
.y166{bottom:-107.917500px;}
.yf2{bottom:-94.468500px;}
.y140{bottom:-93.835500px;}
.y165{bottom:-90.517500px;}
.yf1{bottom:-77.188500px;}
.y13f{bottom:-76.375500px;}
.yf0{bottom:-59.908500px;}
.y13e{bottom:-59.095500px;}
.y164{bottom:-55.327500px;}
.yef{bottom:-42.628500px;}
.y13d{bottom:-41.815500px;}
.y163{bottom:-37.957500px;}
.yee{bottom:-25.258500px;}
.y13c{bottom:-24.535500px;}
.y162{bottom:-15.547500px;}
.yed{bottom:-2.848500px;}
.y13b{bottom:-2.035500px;}
.y0{bottom:0.000000px;}
.y1a{bottom:17.783610px;}
.y49{bottom:31.890000px;}
.y119{bottom:93.829500px;}
.y11a{bottom:99.253500px;}
.y48{bottom:103.621500px;}
.y18{bottom:104.646000px;}
.y83{bottom:105.399000px;}
.y179{bottom:105.600000px;}
.y157{bottom:109.630500px;}
.y118{bottom:112.659000px;}
.ye6{bottom:119.823000px;}
.y47{bottom:122.449500px;}
.y17{bottom:122.535000px;}
.y178{bottom:123.174000px;}
.y82{bottom:124.228500px;}
.y156{bottom:128.460000px;}
.y117{bottom:131.488500px;}
.ye4{bottom:138.652500px;}
.y16{bottom:140.422500px;}
.y46{bottom:141.279000px;}
.y81{bottom:143.058000px;}
.ye5{bottom:144.078000px;}
.y155{bottom:147.289500px;}
.y177{bottom:149.715000px;}
.y116{bottom:150.318000px;}
.ye3{bottom:157.482000px;}
.y15{bottom:158.310000px;}
.y45{bottom:160.108500px;}
.y80{bottom:161.887500px;}
.y154{bottom:166.119000px;}
.y176{bottom:167.289000px;}
.y115{bottom:169.147500px;}
.y14{bottom:176.199000px;}
.ye2{bottom:176.311500px;}
.y44{bottom:178.938000px;}
.y7f{bottom:180.717000px;}
.y175{bottom:184.863000px;}
.y153{bottom:184.948500px;}
.y114{bottom:187.977000px;}
.y13{bottom:194.086500px;}
.ye1{bottom:195.141000px;}
.y43{bottom:197.767500px;}
.y174{bottom:202.437000px;}
.y152{bottom:203.778000px;}
.y7e{bottom:204.030000px;}
.y113{bottom:206.806500px;}
.y12{bottom:211.974000px;}
.ye0{bottom:213.970500px;}
.y42{bottom:216.597000px;}
.y151{bottom:222.607500px;}
.y112{bottom:225.636000px;}
.y173{bottom:228.978000px;}
.y11{bottom:229.863000px;}
.ydf{bottom:232.800000px;}
.y41{bottom:235.426500px;}
.y7d{bottom:237.654000px;}
.yb0{bottom:238.999500px;}
.y150{bottom:241.437000px;}
.y111{bottom:244.465500px;}
.y13a{bottom:245.464500px;}
.y172{bottom:247.023000px;}
.yde{bottom:251.629500px;}
.y40{bottom:254.256000px;}
.y7c{bottom:256.483500px;}
.yaf{bottom:257.829000px;}
.y14f{bottom:260.266500px;}
.y110{bottom:263.295000px;}
.y139{bottom:264.634500px;}
.y171{bottom:265.068000px;}
.ydd{bottom:270.459000px;}
.y7b{bottom:272.583000px;}
.y3f{bottom:273.085500px;}
.y79{bottom:275.313000px;}
.yae{bottom:276.658500px;}
.y14e{bottom:279.096000px;}
.y7a{bottom:280.737000px;}
.y10f{bottom:282.124500px;}
.y170{bottom:283.113000px;}
.y138{bottom:283.894500px;}
.ydc{bottom:289.288500px;}
.y3e{bottom:291.915000px;}
.y78{bottom:294.142500px;}
.yad{bottom:295.488000px;}
.y14d{bottom:297.925500px;}
.y10{bottom:300.154500px;}
.y10e{bottom:300.954000px;}
.y16f{bottom:301.158000px;}
.y137{bottom:303.184500px;}
.ydb{bottom:308.118000px;}
.y3d{bottom:310.744500px;}
.y77{bottom:312.972000px;}
.yac{bottom:314.317500px;}
.yf{bottom:318.043500px;}
.y10d{bottom:319.783500px;}
.y136{bottom:322.354500px;}
.yda{bottom:326.947500px;}
.y3c{bottom:329.574000px;}
.y14c{bottom:331.491000px;}
.y76{bottom:331.801500px;}
.yab{bottom:333.145500px;}
.ye{bottom:335.931000px;}
.y10c{bottom:338.613000px;}
.y135{bottom:341.614500px;}
.yd9{bottom:345.777000px;}
.y3b{bottom:348.403500px;}
.y75{bottom:350.631000px;}
.y14b{bottom:350.724000px;}
.y16e{bottom:351.871500px;}
.yaa{bottom:351.975000px;}
.yd{bottom:353.818500px;}
.y10b{bottom:357.442500px;}
.y134{bottom:360.784500px;}
.yd8{bottom:364.606500px;}
.y3a{bottom:367.233000px;}
.y73{bottom:369.460500px;}
.y14a{bottom:369.957000px;}
.ya9{bottom:370.804500px;}
.y16d{bottom:371.104500px;}
.y74{bottom:374.884500px;}
.y133{bottom:380.044500px;}
.yc{bottom:380.673000px;}
.yd7{bottom:383.436000px;}
.y39{bottom:386.062500px;}
.y72{bottom:388.290000px;}
.y149{bottom:389.188500px;}
.ya8{bottom:389.634000px;}
.y10a{bottom:391.008000px;}
.y158{bottom:396.522000px;}
.yb{bottom:398.562000px;}
.y132{bottom:399.304500px;}
.yd6{bottom:402.265500px;}
.y38{bottom:404.892000px;}
.y71{bottom:407.119500px;}
.y148{bottom:408.421500px;}
.ya7{bottom:408.463500px;}
.y109{bottom:410.241000px;}
.ya{bottom:416.449500px;}
.y131{bottom:418.474500px;}
.yd5{bottom:421.095000px;}
.y37{bottom:423.721500px;}
.y70{bottom:425.949000px;}
.ya6{bottom:427.293000px;}
.y108{bottom:429.472500px;}
.y11b{bottom:430.851000px;}
.y130{bottom:437.734500px;}
.yd4{bottom:439.924500px;}
.y36{bottom:442.551000px;}
.y6f{bottom:444.778500px;}
.y9{bottom:444.798000px;}
.ya5{bottom:446.122500px;}
.y106{bottom:448.705500px;}
.y107{bottom:453.588000px;}
.y12f{bottom:456.904500px;}
.yd3{bottom:458.754000px;}
.y35{bottom:461.380500px;}
.y8{bottom:462.685500px;}
.y6e{bottom:463.608000px;}
.ya4{bottom:464.952000px;}
.y19b{bottom:465.670500px;}
.y105{bottom:467.938500px;}
.y12e{bottom:476.164500px;}
.yd2{bottom:477.583500px;}
.y34{bottom:480.210000px;}
.y6d{bottom:482.437500px;}
.y19a{bottom:482.929500px;}
.y104{bottom:487.171500px;}
.ya3{bottom:488.265000px;}
.y7{bottom:489.540000px;}
.y12d{bottom:495.424500px;}
.yd1{bottom:496.413000px;}
.y199{bottom:500.190000px;}
.y6c{bottom:501.267000px;}
.y33{bottom:503.523000px;}
.y103{bottom:506.404500px;}
.y6{bottom:507.429000px;}
.y12c{bottom:514.594500px;}
.yd0{bottom:515.241000px;}
.y198{bottom:517.450500px;}
.y6b{bottom:520.095000px;}
.ya2{bottom:521.889000px;}
.y5{bottom:525.316500px;}
.y102{bottom:525.637500px;}
.y12b{bottom:533.854500px;}
.ycf{bottom:534.070500px;}
.y197{bottom:534.711000px;}
.y6a{bottom:538.924500px;}
.ya1{bottom:540.718500px;}
.y4{bottom:543.204000px;}
.ye7{bottom:551.055000px;}
.y196{bottom:551.971500px;}
.yce{bottom:552.900000px;}
.y12a{bottom:553.024500px;}
.y69{bottom:557.754000px;}
.y9f{bottom:559.548000px;}
.y3{bottom:561.093000px;}
.ya0{bottom:564.972000px;}
.y195{bottom:569.232000px;}
.ycd{bottom:571.729500px;}
.y129{bottom:572.284500px;}
.y68{bottom:576.583500px;}
.y9e{bottom:578.377500px;}
.y32{bottom:578.673000px;}
.y2{bottom:578.980500px;}
.y194{bottom:586.492500px;}
.ycc{bottom:590.559000px;}
.y128{bottom:591.544500px;}
.yec{bottom:593.281500px;}
.y67{bottom:595.413000px;}
.y1{bottom:596.868000px;}
.y9d{bottom:597.207000px;}
.y193{bottom:603.753000px;}
.ycb{bottom:609.388500px;}
.y127{bottom:610.714500px;}
.yeb{bottom:612.451500px;}
.y66{bottom:614.242500px;}
.y9b{bottom:616.036500px;}
.y31{bottom:616.062000px;}
.y192{bottom:621.012000px;}
.y9c{bottom:621.460500px;}
.yca{bottom:628.218000px;}
.y126{bottom:629.974500px;}
.y65{bottom:633.072000px;}
.y9a{bottom:634.866000px;}
.y30{bottom:635.518500px;}
.y191{bottom:638.272500px;}
.yc9{bottom:647.047500px;}
.y125{bottom:649.234500px;}
.y64{bottom:651.901500px;}
.y99{bottom:653.695500px;}
.y2f{bottom:654.976500px;}
.y190{bottom:655.533000px;}
.yc8{bottom:665.877000px;}
.ye9{bottom:667.171500px;}
.y124{bottom:668.404500px;}
.y63{bottom:670.731000px;}
.y97{bottom:672.525000px;}
.y18f{bottom:672.793500px;}
.y2e{bottom:674.433000px;}
.ye8{bottom:676.801500px;}
.y98{bottom:677.949000px;}
.yc7{bottom:684.706500px;}
.y123{bottom:687.664500px;}
.y62{bottom:689.560500px;}
.y18e{bottom:690.054000px;}
.y96{bottom:691.354500px;}
.y2d{bottom:693.891000px;}
.y161{bottom:695.212500px;}
.y122{bottom:706.834500px;}
.y18d{bottom:707.314500px;}
.yc6{bottom:708.019500px;}
.y61{bottom:708.390000px;}
.y95{bottom:710.184000px;}
.y2c{bottom:713.347500px;}
.y160{bottom:714.472500px;}
.y18c{bottom:724.575000px;}
.y121{bottom:726.124500px;}
.y60{bottom:727.219500px;}
.y94{bottom:729.013500px;}
.y2b{bottom:732.804000px;}
.y15f{bottom:733.642500px;}
.y18b{bottom:741.835500px;}
.y120{bottom:745.384500px;}
.y5f{bottom:746.049000px;}
.y93{bottom:747.843000px;}
.yc5{bottom:750.343500px;}
.y2a{bottom:752.262000px;}
.y15e{bottom:752.932500px;}
.y18a{bottom:759.096000px;}
.y11f{bottom:764.554500px;}
.y5e{bottom:764.878500px;}
.y92{bottom:766.671000px;}
.yc4{bottom:766.782000px;}
.y29{bottom:771.718500px;}
.y15d{bottom:772.192500px;}
.y189{bottom:776.355000px;}
.yc3{bottom:783.220500px;}
.y5d{bottom:783.708000px;}
.y91{bottom:785.500500px;}
.y28{bottom:791.175000px;}
.y15c{bottom:791.362500px;}
.y188{bottom:793.615500px;}
.yc2{bottom:799.657500px;}
.y5c{bottom:802.537500px;}
.y90{bottom:804.330000px;}
.y27{bottom:810.633000px;}
.y187{bottom:810.876000px;}
.yc1{bottom:816.096000px;}
.y11d{bottom:819.274500px;}
.y5b{bottom:821.367000px;}
.y8f{bottom:823.159500px;}
.y186{bottom:828.136500px;}
.y11c{bottom:828.904500px;}
.y26{bottom:830.089500px;}
.yc0{bottom:832.534500px;}
.y5a{bottom:840.196500px;}
.y8e{bottom:841.989000px;}
.y185{bottom:845.397000px;}
.y15a{bottom:846.082500px;}
.ybf{bottom:848.973000px;}
.y25{bottom:849.547500px;}
.y159{bottom:855.712500px;}
.y59{bottom:859.026000px;}
.y8d{bottom:860.818500px;}
.y184{bottom:862.657500px;}
.ybe{bottom:865.411500px;}
.y57{bottom:875.125500px;}
.y56{bottom:877.855500px;}
.y8b{bottom:879.648000px;}
.y183{bottom:879.918000px;}
.ybd{bottom:881.850000px;}
.y58{bottom:883.279500px;}
.y8c{bottom:885.073500px;}
.y24{bottom:885.795000px;}
.y55{bottom:896.685000px;}
.y182{bottom:897.178500px;}
.ybc{bottom:898.288500px;}
.y8a{bottom:898.477500px;}
.y23{bottom:901.935000px;}
.ybb{bottom:914.727000px;}
.y54{bottom:915.514500px;}
.y89{bottom:917.307000px;}
.y22{bottom:918.075000px;}
.y181{bottom:918.921000px;}
.y21{bottom:922.414500px;}
.yba{bottom:931.165500px;}
.y20{bottom:934.213500px;}
.y53{bottom:934.344000px;}
.y88{bottom:936.136500px;}
.yb9{bottom:947.604000px;}
.y1f{bottom:954.693000px;}
.y87{bottom:954.966000px;}
.y180{bottom:955.683000px;}
.y52{bottom:957.655500px;}
.yb8{bottom:964.041000px;}
.y17f{bottom:973.258500px;}
.y86{bottom:973.795500px;}
.y51{bottom:977.830500px;}
.yb7{bottom:980.479500px;}
.y17e{bottom:990.832500px;}
.y85{bottom:992.625000px;}
.yb6{bottom:996.918000px;}
.y1e{bottom:997.032000px;}
.y50{bottom:1011.454500px;}
.y84{bottom:1016.878500px;}
.y17d{bottom:1017.372000px;}
.yb5{bottom:1020.559500px;}
.yb4{bottom:1028.778000px;}
.y4f{bottom:1030.284000px;}
.y1d{bottom:1036.951500px;}
.y17c{bottom:1043.913000px;}
.y4e{bottom:1049.113500px;}
.y1c{bottom:1065.196500px;}
.y4d{bottom:1067.943000px;}
.yb3{bottom:1068.616500px;}
.y17b{bottom:1070.454000px;}
.y4c{bottom:1086.772500px;}
.yb2{bottom:1087.849500px;}
.y17a{bottom:1088.028000px;}
.y1b{bottom:1093.440000px;}
.y4b{bottom:1105.602000px;}
.yb1{bottom:1107.082500px;}
.y19{bottom:1136.926500px;}
.y4a{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h11{height:31.526842px;}
.h10{height:33.072749px;}
.ha{height:34.813397px;}
.h17{height:34.951465px;}
.hf{height:35.052500px;}
.h16{height:35.091738px;}
.h1d{height:37.334628px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h19{height:39.418945px;}
.h1c{height:39.434227px;}
.h1b{height:39.577148px;}
.h13{height:41.482876px;}
.h12{height:41.723369px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h6{height:43.815515px;}
.h18{height:43.886426px;}
.h4{height:50.660535px;}
.h8{height:54.411312px;}
.h14{height:71.614848px;}
.h5{height:75.636776px;}
.h7{height:77.469696px;}
.h1a{height:218.032500px;}
.h15{height:569.491500px;}
.h1e{height:666.610500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:188.723210px;}
.w4{width:426.535500px;}
.w5{width:603.464850px;}
.w3{width:654.699300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6a{left:-197.394000px;}
.x70{left:-88.377150px;}
.x5a{left:-65.867700px;}
.x6b{left:-1.794000px;}
.x0{left:0.000000px;}
.x6c{left:30.066000px;}
.x1{left:53.574000px;}
.x2{left:58.304389px;}
.x75{left:85.848000px;}
.x71{left:107.222850px;}
.x59{left:118.895700px;}
.x5b{left:129.732300px;}
.x6f{left:144.511650px;}
.x5d{left:161.592300px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x61{left:253.536000px;}
.x4c{left:258.556500px;}
.x62{left:262.506000px;}
.x4{left:269.914500px;}
.x16{left:272.088000px;}
.x1e{left:276.456000px;}
.x7{left:281.479500px;}
.x4b{left:282.517500px;}
.x22{left:283.903500px;}
.x1f{left:285.685500px;}
.x3a{left:293.241000px;}
.x23{left:299.946000px;}
.x73{left:306.802500px;}
.x6{left:308.077500px;}
.x5e{left:311.646000px;}
.x3b{left:371.746500px;}
.x1a{left:377.275500px;}
.x3c{left:378.552000px;}
.x24{left:385.059000px;}
.x1b{left:393.216000px;}
.x5f{left:397.002000px;}
.x46{left:403.924500px;}
.x60{left:407.466000px;}
.x37{left:411.649500px;}
.x47{left:416.217000px;}
.x38{left:418.455000px;}
.x4f{left:422.593500px;}
.x6d{left:430.266000px;}
.x51{left:439.411500px;}
.x2f{left:441.505500px;}
.x50{left:445.396500px;}
.x53{left:451.032000px;}
.x30{left:458.449500px;}
.x52{left:468.757500px;}
.x54{left:473.754000px;}
.x4d{left:475.947000px;}
.x4e{left:477.916500px;}
.x74{left:487.300500px;}
.x17{left:519.780000px;}
.x2c{left:524.824500px;}
.x18{left:526.585500px;}
.x31{left:530.043000px;}
.x34{left:534.961500px;}
.x32{left:539.274000px;}
.x2a{left:541.914000px;}
.x65{left:549.079500px;}
.x3d{left:559.857000px;}
.x41{left:561.826500px;}
.x63{left:570.951000px;}
.x3e{left:575.935500px;}
.x42{left:577.837500px;}
.x3f{left:591.178500px;}
.x43{left:592.885500px;}
.x40{left:597.604500px;}
.x44{left:603.031500px;}
.x72{left:604.532850px;}
.x20{left:609.385500px;}
.x69{left:612.156000px;}
.x68{left:613.857000px;}
.x21{left:619.285500px;}
.x2d{left:625.225500px;}
.x39{left:632.172000px;}
.x2e{left:634.455000px;}
.xa{left:636.372000px;}
.xb{left:643.845000px;}
.x12{left:655.198500px;}
.x5c{left:656.292300px;}
.x13{left:662.670000px;}
.x25{left:666.820500px;}
.x19{left:668.704500px;}
.x14{left:669.993000px;}
.x33{left:674.392500px;}
.x15{left:677.464500px;}
.x55{left:680.176500px;}
.x26{left:686.175000px;}
.x56{left:687.649500px;}
.x27{left:692.982000px;}
.x48{left:711.141000px;}
.x8{left:714.172500px;}
.xc{left:715.671000px;}
.x9{left:721.645500px;}
.xd{left:723.142500px;}
.xe{left:726.811500px;}
.x45{left:728.655000px;}
.xf{left:734.283000px;}
.x78{left:737.233500px;}
.x10{left:738.643500px;}
.x11{left:746.115000px;}
.x2b{left:747.490500px;}
.x28{left:749.295000px;}
.x29{left:759.691500px;}
.x57{left:763.951500px;}
.x64{left:770.328000px;}
.x1c{left:772.179000px;}
.x58{left:774.106500px;}
.x1d{left:779.650500px;}
.x76{left:782.707500px;}
.x35{left:793.131000px;}
.x36{left:802.362000px;}
.x49{left:803.892000px;}
.x77{left:809.607000px;}
.x66{left:816.951000px;}
.x4a{left:819.907500px;}
.x6e{left:827.851500px;}
.x67{left:831.894000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-9.328000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.226667pt;}
.ls24{letter-spacing:-1.728000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.304000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.176000pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.141333pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000156pt;}
.ls8{letter-spacing:0.000387pt;}
.lsb{letter-spacing:0.000414pt;}
.ls1{letter-spacing:0.000533pt;}
.ls30{letter-spacing:0.000711pt;}
.lsc{letter-spacing:0.000720pt;}
.ls2f{letter-spacing:0.000921pt;}
.ls20{letter-spacing:0.001007pt;}
.lse{letter-spacing:0.001740pt;}
.lsd{letter-spacing:0.002135pt;}
.ls9{letter-spacing:0.002153pt;}
.ls2e{letter-spacing:0.004267pt;}
.ls25{letter-spacing:0.005760pt;}
.ls15{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.122667pt;}
.ls1d{letter-spacing:0.124480pt;}
.ls28{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.637762pt;}
.ls12{letter-spacing:2.656533pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls32{letter-spacing:11.853565pt;}
.ls21{letter-spacing:11.950933pt;}
.ls2d{letter-spacing:11.954133pt;}
.ls22{letter-spacing:11.956267pt;}
.ls2c{letter-spacing:11.959467pt;}
.ls34{letter-spacing:12.010029pt;}
.ls1f{letter-spacing:12.117637pt;}
.ls31{letter-spacing:12.374212pt;}
.ls17{letter-spacing:12.528078pt;}
.ls10{letter-spacing:13.002467pt;}
.ls1a{letter-spacing:13.389734pt;}
.ls11{letter-spacing:13.549136pt;}
.ls1b{letter-spacing:14.877483pt;}
.ls33{letter-spacing:15.155911pt;}
.ls3{letter-spacing:15.937067pt;}
.ls27{letter-spacing:23.200000pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.wsf{word-spacing:-77.149015pt;}
.ws7e{word-spacing:-53.440000pt;}
.ws9d{word-spacing:-48.000000pt;}
.ws91{word-spacing:-13.365760pt;}
.ws44{word-spacing:-13.283467pt;}
.ws92{word-spacing:-13.218667pt;}
.ws90{word-spacing:-13.200000pt;}
.ws9f{word-spacing:-12.176000pt;}
.ws9c{word-spacing:-12.128000pt;}
.ws7d{word-spacing:-12.080000pt;}
.ws9b{word-spacing:-12.016000pt;}
.ws7c{word-spacing:-12.000000pt;}
.wsa2{word-spacing:-11.955200pt;}
.ws9e{word-spacing:-11.552000pt;}
.ws79{word-spacing:-10.800000pt;}
.ws7a{word-spacing:-10.640000pt;}
.ws30{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws7b{word-spacing:-8.000000pt;}
.ws14{word-spacing:-2.438861pt;}
.ws74{word-spacing:-2.337890pt;}
.ws3d{word-spacing:-2.125355pt;}
.ws29{word-spacing:-2.019087pt;}
.wsa9{word-spacing:-1.817190pt;}
.ws3e{word-spacing:-1.753418pt;}
.wsaa{word-spacing:-1.625907pt;}
.ws55{word-spacing:-1.540882pt;}
.ws2d{word-spacing:-1.487748pt;}
.wsab{word-spacing:-1.482445pt;}
.ws56{word-spacing:-1.434614pt;}
.ws4a{word-spacing:-1.328347pt;}
.wsac{word-spacing:-1.291162pt;}
.ws60{word-spacing:-1.195520pt;}
.ws5d{word-spacing:-1.115811pt;}
.ws49{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws78{word-spacing:-1.009543pt;}
.ws61{word-spacing:-0.956416pt;}
.ws7{word-spacing:-0.929840pt;}
.ws73{word-spacing:-0.903276pt;}
.ws82{word-spacing:-0.860774pt;}
.ws57{word-spacing:-0.690740pt;}
.ws8d{word-spacing:-0.637606pt;}
.ws3f{word-spacing:-0.584473pt;}
.ws89{word-spacing:-0.531339pt;}
.ws1c{word-spacing:-0.430387pt;}
.ws76{word-spacing:-0.425071pt;}
.ws83{word-spacing:-0.334746pt;}
.ws41{word-spacing:-0.318803pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws28{word-spacing:-0.212535pt;}
.ws53{word-spacing:-0.192852pt;}
.ws13{word-spacing:-0.191283pt;}
.ws35{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws27{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws5a{word-spacing:-0.082986pt;}
.ws22{word-spacing:-0.053134pt;}
.ws62{word-spacing:-0.047821pt;}
.ws31{word-spacing:-0.042507pt;}
.ws94{word-spacing:-0.006775pt;}
.ws95{word-spacing:-0.001476pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws11{word-spacing:0.085014pt;}
.ws85{word-spacing:0.095642pt;}
.ws36{word-spacing:0.106268pt;}
.ws84{word-spacing:0.143462pt;}
.ws40{word-spacing:0.159402pt;}
.ws81{word-spacing:0.191283pt;}
.ws2b{word-spacing:0.212535pt;}
.ws32{word-spacing:0.265669pt;}
.wsa3{word-spacing:0.286925pt;}
.ws2a{word-spacing:0.318803pt;}
.ws1d{word-spacing:0.334746pt;}
.ws5c{word-spacing:0.371937pt;}
.ws42{word-spacing:0.478205pt;}
.ws4b{word-spacing:0.531339pt;}
.wsb2{word-spacing:0.573850pt;}
.ws26{word-spacing:0.637606pt;}
.ws75{word-spacing:0.690740pt;}
.ws58{word-spacing:0.743874pt;}
.ws39{word-spacing:0.797008pt;}
.ws33{word-spacing:0.850142pt;}
.wsb1{word-spacing:0.860774pt;}
.ws6{word-spacing:0.892646pt;}
.ws21{word-spacing:0.903276pt;}
.ws54{word-spacing:0.956410pt;}
.wsa7{word-spacing:1.052058pt;}
.ws87{word-spacing:1.115811pt;}
.ws5b{word-spacing:1.168945pt;}
.ws23{word-spacing:1.222079pt;}
.ws24{word-spacing:1.328347pt;}
.ws25{word-spacing:1.381481pt;}
.wsa6{word-spacing:1.434624pt;}
.ws8f{word-spacing:1.540882pt;}
.ws8e{word-spacing:1.594016pt;}
.ws3b{word-spacing:1.700284pt;}
.ws99{word-spacing:1.859685pt;}
.ws97{word-spacing:2.125355pt;}
.ws4f{word-spacing:2.178489pt;}
.ws0{word-spacing:2.232481pt;}
.ws2{word-spacing:2.233948pt;}
.ws8a{word-spacing:2.337890pt;}
.wsb9{word-spacing:2.534502pt;}
.ws88{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws20{word-spacing:2.603559pt;}
.ws3c{word-spacing:2.709827pt;}
.wsbe{word-spacing:2.859187pt;}
.ws1e{word-spacing:2.861926pt;}
.wsb4{word-spacing:2.869248pt;}
.ws4e{word-spacing:2.922363pt;}
.ws86{word-spacing:2.975497pt;}
.wsa5{word-spacing:3.012710pt;}
.ws4c{word-spacing:3.028630pt;}
.ws77{word-spacing:3.081764pt;}
.wsbd{word-spacing:3.108352pt;}
.ws1f{word-spacing:3.188032pt;}
.wsa8{word-spacing:3.203994pt;}
.ws2e{word-spacing:3.294300pt;}
.wsa4{word-spacing:3.347456pt;}
.ws8b{word-spacing:3.559969pt;}
.ws34{word-spacing:3.613103pt;}
.ws9a{word-spacing:3.666237pt;}
.ws8c{word-spacing:3.719371pt;}
.ws15{word-spacing:3.921306pt;}
.ws80{word-spacing:3.969126pt;}
.ws52{word-spacing:4.038174pt;}
.ws72{word-spacing:4.144442pt;}
.ws93{word-spacing:4.208230pt;}
.wsd{word-spacing:4.240070pt;}
.ws59{word-spacing:4.303843pt;}
.ws7f{word-spacing:4.303872pt;}
.wse{word-spacing:4.314458pt;}
.wsa1{word-spacing:4.590797pt;}
.ws46{word-spacing:4.782048pt;}
.ws50{word-spacing:4.835182pt;}
.wsa0{word-spacing:4.877722pt;}
.ws51{word-spacing:4.888316pt;}
.ws98{word-spacing:4.941450pt;}
.ws3a{word-spacing:5.047717pt;}
.ws43{word-spacing:5.100851pt;}
.wsaf{word-spacing:5.403750pt;}
.ws1a{word-spacing:5.547213pt;}
.ws47{word-spacing:5.738458pt;}
.ws19{word-spacing:5.738496pt;}
.ws17{word-spacing:5.834138pt;}
.ws5e{word-spacing:6.429198pt;}
.ws4d{word-spacing:6.482332pt;}
.ws45{word-spacing:6.535466pt;}
.ws96{word-spacing:6.588599pt;}
.wsb{word-spacing:6.918010pt;}
.ws48{word-spacing:6.960537pt;}
.ws5f{word-spacing:7.332474pt;}
.ws3{word-spacing:9.257294pt;}
.ws2f{word-spacing:10.582494pt;}
.ws9{word-spacing:10.823338pt;}
.wsb8{word-spacing:11.811738pt;}
.wsb6{word-spacing:11.905050pt;}
.wsb7{word-spacing:11.907379pt;}
.wsbb{word-spacing:11.908267pt;}
.wsbc{word-spacing:11.955200pt;}
.wsb5{word-spacing:12.050842pt;}
.wsb3{word-spacing:12.194304pt;}
.ws38{word-spacing:13.230333pt;}
.wsa{word-spacing:14.319536pt;}
.wsb0{word-spacing:14.728806pt;}
.wsae{word-spacing:14.769220pt;}
.wsad{word-spacing:14.772932pt;}
.wsbf{word-spacing:14.776627pt;}
.wsba{word-spacing:22.714880pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws6e{word-spacing:141.740851pt;}
.ws63{word-spacing:188.222669pt;}
.ws66{word-spacing:196.973875pt;}
.ws65{word-spacing:199.077990pt;}
.ws70{word-spacing:215.384883pt;}
.ws67{word-spacing:218.923622pt;}
.ws6f{word-spacing:236.665139pt;}
.ws64{word-spacing:242.116710pt;}
.ws6b{word-spacing:253.163315pt;}
.ws68{word-spacing:264.831590pt;}
.ws71{word-spacing:265.692365pt;}
.ws6a{word-spacing:269.135462pt;}
.ws6d{word-spacing:275.256525pt;}
.ws69{word-spacing:280.134246pt;}
.ws6c{word-spacing:289.028915pt;}
._6{margin-left:-10.616218pt;}
._13{margin-left:-6.195417pt;}
._b{margin-left:-5.212467pt;}
._1{margin-left:-4.128490pt;}
._16{margin-left:-3.198655pt;}
._31{margin-left:-2.237377pt;}
._0{margin-left:-1.338970pt;}
._2f{width:0.891627pt;}
._3{width:2.045648pt;}
._7{width:3.467836pt;}
._33{width:4.649280pt;}
._34{width:5.557760pt;}
._37{width:6.515396pt;}
._36{width:7.802240pt;}
._35{width:9.103234pt;}
._4{width:10.295486pt;}
._2{width:11.530016pt;}
._18{width:12.874367pt;}
._8{width:14.059315pt;}
._9{width:14.967910pt;}
._10{width:15.950783pt;}
._a{width:16.928563pt;}
._e{width:19.191949pt;}
._f{width:20.254626pt;}
._15{width:21.258860pt;}
._c{width:22.592931pt;}
._38{width:23.792620pt;}
._2e{width:24.786890pt;}
._19{width:26.088729pt;}
._5{width:27.188522pt;}
._32{width:28.490375pt;}
._17{width:30.121158pt;}
._14{width:32.039722pt;}
._d{width:33.346986pt;}
._39{width:78.904320pt;}
._1c{width:223.839286pt;}
._29{width:257.562829pt;}
._2d{width:266.744422pt;}
._1d{width:273.343693pt;}
._25{width:297.875763pt;}
._1e{width:300.218982pt;}
._21{width:306.005299pt;}
._23{width:310.117888pt;}
._24{width:319.108198pt;}
._28{width:326.950810pt;}
._1a{width:331.637248pt;}
._1b{width:337.949594pt;}
._2c{width:364.075651pt;}
._26{width:369.702605pt;}
._2b{width:382.040371pt;}
._1f{width:384.001024pt;}
._20{width:389.255973pt;}
._22{width:393.942412pt;}
._2a{width:401.981645pt;}
._27{width:431.487078pt;}
._11{width:634.662977pt;}
._30{width:1882.099413pt;}
._12{width:2268.504267pt;}
.fsf{font-size:29.440000pt;}
.fs5{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fsa{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:99.163259pt;}
.yea{bottom:-415.118667pt;}
.y101{bottom:-349.198667pt;}
.y100{bottom:-332.158667pt;}
.yff{bottom:-315.038667pt;}
.yfe{bottom:-297.918667pt;}
.yfd{bottom:-280.878667pt;}
.y11e{bottom:-279.916000pt;}
.yfc{bottom:-263.758667pt;}
.y15b{bottom:-256.086667pt;}
.yfb{bottom:-246.718667pt;}
.yfa{bottom:-229.572000pt;}
.y147{bottom:-218.636000pt;}
.yf9{bottom:-212.452000pt;}
.y146{bottom:-201.596000pt;}
.y16c{bottom:-196.246667pt;}
.yf8{bottom:-195.412000pt;}
.y145{bottom:-184.476000pt;}
.y16b{bottom:-180.806667pt;}
.yf7{bottom:-178.292000pt;}
.y144{bottom:-167.356000pt;}
.y16a{bottom:-165.446667pt;}
.y143{bottom:-150.316000pt;}
.y169{bottom:-150.006667pt;}
.yf6{bottom:-145.572000pt;}
.y142{bottom:-133.196000pt;}
.yf5{bottom:-130.132000pt;}
.y168{bottom:-126.726667pt;}
.y141{bottom:-116.156000pt;}
.yf4{bottom:-114.772000pt;}
.y167{bottom:-111.286667pt;}
.yf3{bottom:-99.412000pt;}
.y166{bottom:-95.926667pt;}
.yf2{bottom:-83.972000pt;}
.y140{bottom:-83.409333pt;}
.y165{bottom:-80.460000pt;}
.yf1{bottom:-68.612000pt;}
.y13f{bottom:-67.889333pt;}
.yf0{bottom:-53.252000pt;}
.y13e{bottom:-52.529333pt;}
.y164{bottom:-49.180000pt;}
.yef{bottom:-37.892000pt;}
.y13d{bottom:-37.169333pt;}
.y163{bottom:-33.740000pt;}
.yee{bottom:-22.452000pt;}
.y13c{bottom:-21.809333pt;}
.y162{bottom:-13.820000pt;}
.yed{bottom:-2.532000pt;}
.y13b{bottom:-1.809333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:15.807653pt;}
.y49{bottom:28.346667pt;}
.y119{bottom:83.404000pt;}
.y11a{bottom:88.225333pt;}
.y48{bottom:92.108000pt;}
.y18{bottom:93.018667pt;}
.y83{bottom:93.688000pt;}
.y179{bottom:93.866667pt;}
.y157{bottom:97.449333pt;}
.y118{bottom:100.141333pt;}
.ye6{bottom:106.509333pt;}
.y47{bottom:108.844000pt;}
.y17{bottom:108.920000pt;}
.y178{bottom:109.488000pt;}
.y82{bottom:110.425333pt;}
.y156{bottom:114.186667pt;}
.y117{bottom:116.878667pt;}
.ye4{bottom:123.246667pt;}
.y16{bottom:124.820000pt;}
.y46{bottom:125.581333pt;}
.y81{bottom:127.162667pt;}
.ye5{bottom:128.069333pt;}
.y155{bottom:130.924000pt;}
.y177{bottom:133.080000pt;}
.y116{bottom:133.616000pt;}
.ye3{bottom:139.984000pt;}
.y15{bottom:140.720000pt;}
.y45{bottom:142.318667pt;}
.y80{bottom:143.900000pt;}
.y154{bottom:147.661333pt;}
.y176{bottom:148.701333pt;}
.y115{bottom:150.353333pt;}
.y14{bottom:156.621333pt;}
.ye2{bottom:156.721333pt;}
.y44{bottom:159.056000pt;}
.y7f{bottom:160.637333pt;}
.y175{bottom:164.322667pt;}
.y153{bottom:164.398667pt;}
.y114{bottom:167.090667pt;}
.y13{bottom:172.521333pt;}
.ye1{bottom:173.458667pt;}
.y43{bottom:175.793333pt;}
.y174{bottom:179.944000pt;}
.y152{bottom:181.136000pt;}
.y7e{bottom:181.360000pt;}
.y113{bottom:183.828000pt;}
.y12{bottom:188.421333pt;}
.ye0{bottom:190.196000pt;}
.y42{bottom:192.530667pt;}
.y151{bottom:197.873333pt;}
.y112{bottom:200.565333pt;}
.y173{bottom:203.536000pt;}
.y11{bottom:204.322667pt;}
.ydf{bottom:206.933333pt;}
.y41{bottom:209.268000pt;}
.y7d{bottom:211.248000pt;}
.yb0{bottom:212.444000pt;}
.y150{bottom:214.610667pt;}
.y111{bottom:217.302667pt;}
.y13a{bottom:218.190667pt;}
.y172{bottom:219.576000pt;}
.yde{bottom:223.670667pt;}
.y40{bottom:226.005333pt;}
.y7c{bottom:227.985333pt;}
.yaf{bottom:229.181333pt;}
.y14f{bottom:231.348000pt;}
.y110{bottom:234.040000pt;}
.y139{bottom:235.230667pt;}
.y171{bottom:235.616000pt;}
.ydd{bottom:240.408000pt;}
.y7b{bottom:242.296000pt;}
.y3f{bottom:242.742667pt;}
.y79{bottom:244.722667pt;}
.yae{bottom:245.918667pt;}
.y14e{bottom:248.085333pt;}
.y7a{bottom:249.544000pt;}
.y10f{bottom:250.777333pt;}
.y170{bottom:251.656000pt;}
.y138{bottom:252.350667pt;}
.ydc{bottom:257.145333pt;}
.y3e{bottom:259.480000pt;}
.y78{bottom:261.460000pt;}
.yad{bottom:262.656000pt;}
.y14d{bottom:264.822667pt;}
.y10{bottom:266.804000pt;}
.y10e{bottom:267.514667pt;}
.y16f{bottom:267.696000pt;}
.y137{bottom:269.497333pt;}
.ydb{bottom:273.882667pt;}
.y3d{bottom:276.217333pt;}
.y77{bottom:278.197333pt;}
.yac{bottom:279.393333pt;}
.yf{bottom:282.705333pt;}
.y10d{bottom:284.252000pt;}
.y136{bottom:286.537333pt;}
.yda{bottom:290.620000pt;}
.y3c{bottom:292.954667pt;}
.y14c{bottom:294.658667pt;}
.y76{bottom:294.934667pt;}
.yab{bottom:296.129333pt;}
.ye{bottom:298.605333pt;}
.y10c{bottom:300.989333pt;}
.y135{bottom:303.657333pt;}
.yd9{bottom:307.357333pt;}
.y3b{bottom:309.692000pt;}
.y75{bottom:311.672000pt;}
.y14b{bottom:311.754667pt;}
.y16e{bottom:312.774667pt;}
.yaa{bottom:312.866667pt;}
.yd{bottom:314.505333pt;}
.y10b{bottom:317.726667pt;}
.y134{bottom:320.697333pt;}
.yd8{bottom:324.094667pt;}
.y3a{bottom:326.429333pt;}
.y73{bottom:328.409333pt;}
.y14a{bottom:328.850667pt;}
.ya9{bottom:329.604000pt;}
.y16d{bottom:329.870667pt;}
.y74{bottom:333.230667pt;}
.y133{bottom:337.817333pt;}
.yc{bottom:338.376000pt;}
.yd7{bottom:340.832000pt;}
.y39{bottom:343.166667pt;}
.y72{bottom:345.146667pt;}
.y149{bottom:345.945333pt;}
.ya8{bottom:346.341333pt;}
.y10a{bottom:347.562667pt;}
.y158{bottom:352.464000pt;}
.yb{bottom:354.277333pt;}
.y132{bottom:354.937333pt;}
.yd6{bottom:357.569333pt;}
.y38{bottom:359.904000pt;}
.y71{bottom:361.884000pt;}
.y148{bottom:363.041333pt;}
.ya7{bottom:363.078667pt;}
.y109{bottom:364.658667pt;}
.ya{bottom:370.177333pt;}
.y131{bottom:371.977333pt;}
.yd5{bottom:374.306667pt;}
.y37{bottom:376.641333pt;}
.y70{bottom:378.621333pt;}
.ya6{bottom:379.816000pt;}
.y108{bottom:381.753333pt;}
.y11b{bottom:382.978667pt;}
.y130{bottom:389.097333pt;}
.yd4{bottom:391.044000pt;}
.y36{bottom:393.378667pt;}
.y6f{bottom:395.358667pt;}
.y9{bottom:395.376000pt;}
.ya5{bottom:396.553333pt;}
.y106{bottom:398.849333pt;}
.y107{bottom:403.189333pt;}
.y12f{bottom:406.137333pt;}
.yd3{bottom:407.781333pt;}
.y35{bottom:410.116000pt;}
.y8{bottom:411.276000pt;}
.y6e{bottom:412.096000pt;}
.ya4{bottom:413.290667pt;}
.y19b{bottom:413.929333pt;}
.y105{bottom:415.945333pt;}
.y12e{bottom:423.257333pt;}
.yd2{bottom:424.518667pt;}
.y34{bottom:426.853333pt;}
.y6d{bottom:428.833333pt;}
.y19a{bottom:429.270667pt;}
.y104{bottom:433.041333pt;}
.ya3{bottom:434.013333pt;}
.y7{bottom:435.146667pt;}
.y12d{bottom:440.377333pt;}
.yd1{bottom:441.256000pt;}
.y199{bottom:444.613333pt;}
.y6c{bottom:445.570667pt;}
.y33{bottom:447.576000pt;}
.y103{bottom:450.137333pt;}
.y6{bottom:451.048000pt;}
.y12c{bottom:457.417333pt;}
.yd0{bottom:457.992000pt;}
.y198{bottom:459.956000pt;}
.y6b{bottom:462.306667pt;}
.ya2{bottom:463.901333pt;}
.y5{bottom:466.948000pt;}
.y102{bottom:467.233333pt;}
.y12b{bottom:474.537333pt;}
.ycf{bottom:474.729333pt;}
.y197{bottom:475.298667pt;}
.y6a{bottom:479.044000pt;}
.ya1{bottom:480.638667pt;}
.y4{bottom:482.848000pt;}
.ye7{bottom:489.826667pt;}
.y196{bottom:490.641333pt;}
.yce{bottom:491.466667pt;}
.y12a{bottom:491.577333pt;}
.y69{bottom:495.781333pt;}
.y9f{bottom:497.376000pt;}
.y3{bottom:498.749333pt;}
.ya0{bottom:502.197333pt;}
.y195{bottom:505.984000pt;}
.ycd{bottom:508.204000pt;}
.y129{bottom:508.697333pt;}
.y68{bottom:512.518667pt;}
.y9e{bottom:514.113333pt;}
.y32{bottom:514.376000pt;}
.y2{bottom:514.649333pt;}
.y194{bottom:521.326667pt;}
.ycc{bottom:524.941333pt;}
.y128{bottom:525.817333pt;}
.yec{bottom:527.361333pt;}
.y67{bottom:529.256000pt;}
.y1{bottom:530.549333pt;}
.y9d{bottom:530.850667pt;}
.y193{bottom:536.669333pt;}
.ycb{bottom:541.678667pt;}
.y127{bottom:542.857333pt;}
.yeb{bottom:544.401333pt;}
.y66{bottom:545.993333pt;}
.y9b{bottom:547.588000pt;}
.y31{bottom:547.610667pt;}
.y192{bottom:552.010667pt;}
.y9c{bottom:552.409333pt;}
.yca{bottom:558.416000pt;}
.y126{bottom:559.977333pt;}
.y65{bottom:562.730667pt;}
.y9a{bottom:564.325333pt;}
.y30{bottom:564.905333pt;}
.y191{bottom:567.353333pt;}
.yc9{bottom:575.153333pt;}
.y125{bottom:577.097333pt;}
.y64{bottom:579.468000pt;}
.y99{bottom:581.062667pt;}
.y2f{bottom:582.201333pt;}
.y190{bottom:582.696000pt;}
.yc8{bottom:591.890667pt;}
.ye9{bottom:593.041333pt;}
.y124{bottom:594.137333pt;}
.y63{bottom:596.205333pt;}
.y97{bottom:597.800000pt;}
.y18f{bottom:598.038667pt;}
.y2e{bottom:599.496000pt;}
.ye8{bottom:601.601333pt;}
.y98{bottom:602.621333pt;}
.yc7{bottom:608.628000pt;}
.y123{bottom:611.257333pt;}
.y62{bottom:612.942667pt;}
.y18e{bottom:613.381333pt;}
.y96{bottom:614.537333pt;}
.y2d{bottom:616.792000pt;}
.y161{bottom:617.966667pt;}
.y122{bottom:628.297333pt;}
.y18d{bottom:628.724000pt;}
.yc6{bottom:629.350667pt;}
.y61{bottom:629.680000pt;}
.y95{bottom:631.274667pt;}
.y2c{bottom:634.086667pt;}
.y160{bottom:635.086667pt;}
.y18c{bottom:644.066667pt;}
.y121{bottom:645.444000pt;}
.y60{bottom:646.417333pt;}
.y94{bottom:648.012000pt;}
.y2b{bottom:651.381333pt;}
.y15f{bottom:652.126667pt;}
.y18b{bottom:659.409333pt;}
.y120{bottom:662.564000pt;}
.y5f{bottom:663.154667pt;}
.y93{bottom:664.749333pt;}
.yc5{bottom:666.972000pt;}
.y2a{bottom:668.677333pt;}
.y15e{bottom:669.273333pt;}
.y18a{bottom:674.752000pt;}
.y11f{bottom:679.604000pt;}
.y5e{bottom:679.892000pt;}
.y92{bottom:681.485333pt;}
.yc4{bottom:681.584000pt;}
.y29{bottom:685.972000pt;}
.y15d{bottom:686.393333pt;}
.y189{bottom:690.093333pt;}
.yc3{bottom:696.196000pt;}
.y5d{bottom:696.629333pt;}
.y91{bottom:698.222667pt;}
.y28{bottom:703.266667pt;}
.y15c{bottom:703.433333pt;}
.y188{bottom:705.436000pt;}
.yc2{bottom:710.806667pt;}
.y5c{bottom:713.366667pt;}
.y90{bottom:714.960000pt;}
.y27{bottom:720.562667pt;}
.y187{bottom:720.778667pt;}
.yc1{bottom:725.418667pt;}
.y11d{bottom:728.244000pt;}
.y5b{bottom:730.104000pt;}
.y8f{bottom:731.697333pt;}
.y186{bottom:736.121333pt;}
.y11c{bottom:736.804000pt;}
.y26{bottom:737.857333pt;}
.yc0{bottom:740.030667pt;}
.y5a{bottom:746.841333pt;}
.y8e{bottom:748.434667pt;}
.y185{bottom:751.464000pt;}
.y15a{bottom:752.073333pt;}
.ybf{bottom:754.642667pt;}
.y25{bottom:755.153333pt;}
.y159{bottom:760.633333pt;}
.y59{bottom:763.578667pt;}
.y8d{bottom:765.172000pt;}
.y184{bottom:766.806667pt;}
.ybe{bottom:769.254667pt;}
.y57{bottom:777.889333pt;}
.y56{bottom:780.316000pt;}
.y8b{bottom:781.909333pt;}
.y183{bottom:782.149333pt;}
.ybd{bottom:783.866667pt;}
.y58{bottom:785.137333pt;}
.y8c{bottom:786.732000pt;}
.y24{bottom:787.373333pt;}
.y55{bottom:797.053333pt;}
.y182{bottom:797.492000pt;}
.ybc{bottom:798.478667pt;}
.y8a{bottom:798.646667pt;}
.y23{bottom:801.720000pt;}
.ybb{bottom:813.090667pt;}
.y54{bottom:813.790667pt;}
.y89{bottom:815.384000pt;}
.y22{bottom:816.066667pt;}
.y181{bottom:816.818667pt;}
.y21{bottom:819.924000pt;}
.yba{bottom:827.702667pt;}
.y20{bottom:830.412000pt;}
.y53{bottom:830.528000pt;}
.y88{bottom:832.121333pt;}
.yb9{bottom:842.314667pt;}
.y1f{bottom:848.616000pt;}
.y87{bottom:848.858667pt;}
.y180{bottom:849.496000pt;}
.y52{bottom:851.249333pt;}
.yb8{bottom:856.925333pt;}
.y17f{bottom:865.118667pt;}
.y86{bottom:865.596000pt;}
.y51{bottom:869.182667pt;}
.yb7{bottom:871.537333pt;}
.y17e{bottom:880.740000pt;}
.y85{bottom:882.333333pt;}
.yb6{bottom:886.149333pt;}
.y1e{bottom:886.250667pt;}
.y50{bottom:899.070667pt;}
.y84{bottom:903.892000pt;}
.y17d{bottom:904.330667pt;}
.yb5{bottom:907.164000pt;}
.yb4{bottom:914.469333pt;}
.y4f{bottom:915.808000pt;}
.y1d{bottom:921.734667pt;}
.y17c{bottom:927.922667pt;}
.y4e{bottom:932.545333pt;}
.y1c{bottom:946.841333pt;}
.y4d{bottom:949.282667pt;}
.yb3{bottom:949.881333pt;}
.y17b{bottom:951.514667pt;}
.y4c{bottom:966.020000pt;}
.yb2{bottom:966.977333pt;}
.y17a{bottom:967.136000pt;}
.y1b{bottom:971.946667pt;}
.y4b{bottom:982.757333pt;}
.yb1{bottom:984.073333pt;}
.y19{bottom:1010.601333pt;}
.y4a{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h11{height:28.023859pt;}
.h10{height:29.397999pt;}
.ha{height:30.945242pt;}
.h17{height:31.067969pt;}
.hf{height:31.157778pt;}
.h16{height:31.192656pt;}
.h1d{height:33.186336pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h19{height:35.039062pt;}
.h1c{height:35.052646pt;}
.h1b{height:35.179688pt;}
.h13{height:36.873667pt;}
.h12{height:37.087439pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h6{height:38.947124pt;}
.h18{height:39.010156pt;}
.h4{height:45.031586pt;}
.h8{height:48.365611pt;}
.h14{height:63.657643pt;}
.h5{height:67.232690pt;}
.h7{height:68.861952pt;}
.h1a{height:193.806667pt;}
.h15{height:506.214667pt;}
.h1e{height:592.542667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:167.753964pt;}
.w4{width:379.142667pt;}
.w5{width:536.413200pt;}
.w3{width:581.954933pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6a{left:-175.461333pt;}
.x70{left:-78.557467pt;}
.x5a{left:-58.549067pt;}
.x6b{left:-1.594667pt;}
.x0{left:0.000000pt;}
.x6c{left:26.725333pt;}
.x1{left:47.621333pt;}
.x2{left:51.826124pt;}
.x75{left:76.309333pt;}
.x71{left:95.309200pt;}
.x59{left:105.685067pt;}
.x5b{left:115.317600pt;}
.x6f{left:128.454800pt;}
.x5d{left:143.637600pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x61{left:225.365333pt;}
.x4c{left:229.828000pt;}
.x62{left:233.338667pt;}
.x4{left:239.924000pt;}
.x16{left:241.856000pt;}
.x1e{left:245.738667pt;}
.x7{left:250.204000pt;}
.x4b{left:251.126667pt;}
.x22{left:252.358667pt;}
.x1f{left:253.942667pt;}
.x3a{left:260.658667pt;}
.x23{left:266.618667pt;}
.x73{left:272.713333pt;}
.x6{left:273.846667pt;}
.x5e{left:277.018667pt;}
.x3b{left:330.441333pt;}
.x1a{left:335.356000pt;}
.x3c{left:336.490667pt;}
.x24{left:342.274667pt;}
.x1b{left:349.525333pt;}
.x5f{left:352.890667pt;}
.x46{left:359.044000pt;}
.x60{left:362.192000pt;}
.x37{left:365.910667pt;}
.x47{left:369.970667pt;}
.x38{left:371.960000pt;}
.x4f{left:375.638667pt;}
.x6d{left:382.458667pt;}
.x51{left:390.588000pt;}
.x2f{left:392.449333pt;}
.x50{left:395.908000pt;}
.x53{left:400.917333pt;}
.x30{left:407.510667pt;}
.x52{left:416.673333pt;}
.x54{left:421.114667pt;}
.x4d{left:423.064000pt;}
.x4e{left:424.814667pt;}
.x74{left:433.156000pt;}
.x17{left:462.026667pt;}
.x2c{left:466.510667pt;}
.x18{left:468.076000pt;}
.x31{left:471.149333pt;}
.x34{left:475.521333pt;}
.x32{left:479.354667pt;}
.x2a{left:481.701333pt;}
.x65{left:488.070667pt;}
.x3d{left:497.650667pt;}
.x41{left:499.401333pt;}
.x63{left:507.512000pt;}
.x3e{left:511.942667pt;}
.x42{left:513.633333pt;}
.x3f{left:525.492000pt;}
.x43{left:527.009333pt;}
.x40{left:531.204000pt;}
.x44{left:536.028000pt;}
.x72{left:537.362533pt;}
.x20{left:541.676000pt;}
.x69{left:544.138667pt;}
.x68{left:545.650667pt;}
.x21{left:550.476000pt;}
.x2d{left:555.756000pt;}
.x39{left:561.930667pt;}
.x2e{left:563.960000pt;}
.xa{left:565.664000pt;}
.xb{left:572.306667pt;}
.x12{left:582.398667pt;}
.x5c{left:583.370933pt;}
.x13{left:589.040000pt;}
.x25{left:592.729333pt;}
.x19{left:594.404000pt;}
.x14{left:595.549333pt;}
.x33{left:599.460000pt;}
.x15{left:602.190667pt;}
.x55{left:604.601333pt;}
.x26{left:609.933333pt;}
.x56{left:611.244000pt;}
.x27{left:615.984000pt;}
.x48{left:632.125333pt;}
.x8{left:634.820000pt;}
.xc{left:636.152000pt;}
.x9{left:641.462667pt;}
.xd{left:642.793333pt;}
.xe{left:646.054667pt;}
.x45{left:647.693333pt;}
.xf{left:652.696000pt;}
.x78{left:655.318667pt;}
.x10{left:656.572000pt;}
.x11{left:663.213333pt;}
.x2b{left:664.436000pt;}
.x28{left:666.040000pt;}
.x29{left:675.281333pt;}
.x57{left:679.068000pt;}
.x64{left:684.736000pt;}
.x1c{left:686.381333pt;}
.x58{left:688.094667pt;}
.x1d{left:693.022667pt;}
.x76{left:695.740000pt;}
.x35{left:705.005333pt;}
.x36{left:713.210667pt;}
.x49{left:714.570667pt;}
.x77{left:719.650667pt;}
.x66{left:726.178667pt;}
.x4a{left:728.806667pt;}
.x6e{left:735.868000pt;}
.x67{left:739.461333pt;}
}




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