
    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_c1fed2266ee12d5dfd018bfe.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_289063054a49f767b7807431.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3e1536392f25cddf74799674.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_54b9b51c18d1e91dd2f2fe04.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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_46b25fd473be335427933326.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_958007abebeead8e31aba318.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_624fb70ff42a5539877271ee.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a5518a02ce03ae455d6ebd34.woff')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_f25beed4ad74442160d79e2f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md{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);}
.m22{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);}
.m24{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);}
.m23{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);}
.m17{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);}
.m16{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);}
.m1b{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);}
.m1d{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);}
.m2{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);}
.m1{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);}
.m13{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);}
.m2c{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);}
.ma{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);}
.m25{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);}
.m11{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);}
.m1f{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);}
.m5{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);}
.m1e{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);}
.m2a{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);}
.m27{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,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);}
.m8{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);}
.mb{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);}
.mf{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);}
.mc{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);}
.m21{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);}
.m19{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);}
.m18{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m6{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);}
.m2d{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);}
.m10{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);}
.m7{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);}
.m1a{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);}
.m1c{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);}
.m4{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);}
.m14{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);}
.me{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:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:28.392000px;}
.v5{vertical-align:35.862000px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000608px;}
.ls17{letter-spacing:0.001133px;}
.ls20{letter-spacing:0.001155px;}
.lsf{letter-spacing:0.002780px;}
.ls19{letter-spacing:0.002888px;}
.ls13{letter-spacing:0.572693px;}
.ls12{letter-spacing:0.578693px;}
.lsd{letter-spacing:0.717483px;}
.ls6{letter-spacing:11.954850px;}
.ls10{letter-spacing:11.955746px;}
.ls11{letter-spacing:12.530693px;}
.ls22{letter-spacing:13.345246px;}
.ls1e{letter-spacing:13.448400px;}
.ls1f{letter-spacing:13.454400px;}
.ls8{letter-spacing:14.764573px;}
.ls5{letter-spacing:14.893419px;}
.ls1d{letter-spacing:14.943900px;}
.lsc{letter-spacing:14.944200px;}
.ls1c{letter-spacing:14.983329px;}
.ls18{letter-spacing:15.063451px;}
.ls1b{letter-spacing:15.123227px;}
.ls15{letter-spacing:15.323965px;}
.ls2{letter-spacing:15.388200px;}
.ls1a{letter-spacing:16.594553px;}
.lse{letter-spacing:16.624329px;}
.ls4{letter-spacing:16.847494px;}
.ls14{letter-spacing:17.095822px;}
.lsb{letter-spacing:18.291334px;}
.ls16{letter-spacing:18.318447px;}
.ls21{letter-spacing:18.632753px;}
.lsa{letter-spacing:19.441612px;}
.ls1{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls0{letter-spacing:72.355200px;}
.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;}
}
.ws4e{word-spacing:-14.943900px;}
.ws86{word-spacing:-13.449600px;}
.ws26{word-spacing:-11.955150px;}
.ws89{word-spacing:-11.474995px;}
.ws8{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws88{word-spacing:-10.250996px;}
.ws36{word-spacing:-3.347434px;}
.ws3e{word-spacing:-3.168107px;}
.ws47{word-spacing:-3.048556px;}
.ws7d{word-spacing:-2.929004px;}
.ws37{word-spacing:-2.092146px;}
.ws4c{word-spacing:-1.972595px;}
.ws81{word-spacing:-1.793268px;}
.ws2e{word-spacing:-1.733492px;}
.ws2f{word-spacing:-1.673717px;}
.wsa9{word-spacing:-1.667750px;}
.ws4a{word-spacing:-1.554166px;}
.wsa3{word-spacing:-1.374839px;}
.ws83{word-spacing:-1.315063px;}
.ws3b{word-spacing:-1.195512px;}
.ws82{word-spacing:-1.135736px;}
.ws39{word-spacing:-1.075961px;}
.ws98{word-spacing:-1.016185px;}
.ws9c{word-spacing:-0.956410px;}
.ws7e{word-spacing:-0.836858px;}
.ws4f{word-spacing:-0.717307px;}
.wsa2{word-spacing:-0.597756px;}
.ws99{word-spacing:-0.478205px;}
.ws6f{word-spacing:-0.430385px;}
.ws43{word-spacing:-0.418429px;}
.ws24{word-spacing:-0.358654px;}
.wsb0{word-spacing:-0.322790px;}
.ws16{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.268992px;}
.wsd{word-spacing:-0.239102px;}
.wsa7{word-spacing:-0.215194px;}
.ws28{word-spacing:-0.179327px;}
.ws8a{word-spacing:-0.161395px;}
.ws23{word-spacing:-0.119551px;}
.wsab{word-spacing:-0.107597px;}
.ws1a{word-spacing:-0.059776px;}
.ws84{word-spacing:-0.053798px;}
.ws27{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.wsad{word-spacing:-0.027811px;}
.ws7{word-spacing:-0.003466px;}
.ws0{word-spacing:0.000000px;}
.ws51{word-spacing:0.000900px;}
.wsbc{word-spacing:0.053798px;}
.ws1c{word-spacing:0.059776px;}
.ws2{word-spacing:0.083686px;}
.ws59{word-spacing:0.095641px;}
.ws87{word-spacing:0.107597px;}
.ws3a{word-spacing:0.119551px;}
.ws9{word-spacing:0.143462px;}
.wsaa{word-spacing:0.161395px;}
.ws3d{word-spacing:0.179327px;}
.ws41{word-spacing:0.239102px;}
.wsc7{word-spacing:0.268992px;}
.ws2a{word-spacing:0.298878px;}
.wsb1{word-spacing:0.322790px;}
.ws72{word-spacing:0.358654px;}
.ws2d{word-spacing:0.537980px;}
.wsa6{word-spacing:0.537984px;}
.ws5a{word-spacing:0.586141px;}
.ws65{word-spacing:0.590699px;}
.ws56{word-spacing:0.597263px;}
.ws22{word-spacing:0.597756px;}
.ws5d{word-spacing:0.598800px;}
.ws57{word-spacing:0.617509px;}
.wse{word-spacing:0.657532px;}
.ws40{word-spacing:0.717307px;}
.ws95{word-spacing:0.777083px;}
.wsa0{word-spacing:0.836858px;}
.ws9b{word-spacing:0.956410px;}
.ws8d{word-spacing:1.016185px;}
.ws96{word-spacing:1.075961px;}
.wsf{word-spacing:1.135736px;}
.ws33{word-spacing:1.195512px;}
.ws2c{word-spacing:1.255288px;}
.ws4b{word-spacing:1.374839px;}
.ws8c{word-spacing:1.434614px;}
.ws9a{word-spacing:1.554166px;}
.ws90{word-spacing:1.613941px;}
.ws8f{word-spacing:1.673717px;}
.ws44{word-spacing:1.733492px;}
.wsbd{word-spacing:1.775347px;}
.ws2b{word-spacing:1.793268px;}
.ws19{word-spacing:1.912819px;}
.ws70{word-spacing:2.092146px;}
.ws71{word-spacing:2.151922px;}
.wsa5{word-spacing:2.211697px;}
.ws91{word-spacing:2.271473px;}
.wsb5{word-spacing:2.420928px;}
.ws93{word-spacing:2.450800px;}
.ws6{word-spacing:2.510252px;}
.ws9f{word-spacing:2.510575px;}
.wsa4{word-spacing:2.630126px;}
.ws7c{word-spacing:2.689902px;}
.ws3c{word-spacing:2.749678px;}
.ws35{word-spacing:2.809453px;}
.ws94{word-spacing:2.869229px;}
.wsa{word-spacing:2.869236px;}
.ws97{word-spacing:2.929004px;}
.ws8b{word-spacing:2.988780px;}
.ws30{word-spacing:3.048556px;}
.ws32{word-spacing:3.168107px;}
.ws53{word-spacing:3.174106px;}
.wsc0{word-spacing:3.219206px;}
.wsb6{word-spacing:3.221837px;}
.wsa8{word-spacing:3.224822px;}
.wsaf{word-spacing:3.227904px;}
.ws29{word-spacing:3.287658px;}
.ws52{word-spacing:3.335501px;}
.ws31{word-spacing:3.347434px;}
.ws8e{word-spacing:3.407209px;}
.wsc6{word-spacing:3.496896px;}
.ws92{word-spacing:3.526760px;}
.ws1d{word-spacing:3.583475px;}
.ws21{word-spacing:3.646312px;}
.ws48{word-spacing:3.706087px;}
.ws38{word-spacing:3.765863px;}
.ws3f{word-spacing:3.945190px;}
.ws18{word-spacing:4.004965px;}
.wsc1{word-spacing:4.088678px;}
.ws1e{word-spacing:4.303872px;}
.ws9d{word-spacing:4.423394px;}
.ws50{word-spacing:4.483170px;}
.ws15{word-spacing:4.542946px;}
.wsa1{word-spacing:4.602721px;}
.ws13{word-spacing:4.782048px;}
.ws74{word-spacing:4.841856px;}
.ws73{word-spacing:4.895654px;}
.ws49{word-spacing:5.080926px;}
.ws7f{word-spacing:5.140702px;}
.wsc4{word-spacing:5.164646px;}
.ws80{word-spacing:5.379804px;}
.wsc{word-spacing:5.439580px;}
.ws10{word-spacing:5.678682px;}
.ws20{word-spacing:5.917784px;}
.ws11{word-spacing:6.156887px;}
.ws12{word-spacing:6.216662px;}
.ws1f{word-spacing:6.276438px;}
.wsbe{word-spacing:6.563405px;}
.ws17{word-spacing:6.635092px;}
.ws9e{word-spacing:6.694867px;}
.ws46{word-spacing:6.874194px;}
.ws34{word-spacing:7.651277px;}
.ws1b{word-spacing:7.711052px;}
.ws14{word-spacing:7.890379px;}
.ws25{word-spacing:11.910929px;}
.ws3{word-spacing:12.929425px;}
.wsba{word-spacing:13.234406px;}
.wsc3{word-spacing:13.288205px;}
.wsbf{word-spacing:13.390282px;}
.wsb3{word-spacing:13.390675px;}
.wsb4{word-spacing:13.391069px;}
.wsae{word-spacing:13.393027px;}
.wsb9{word-spacing:13.393200px;}
.wsb8{word-spacing:13.394534px;}
.wsac{word-spacing:13.395802px;}
.wsbb{word-spacing:13.396070px;}
.wsb2{word-spacing:13.718592px;}
.wsb{word-spacing:14.657983px;}
.ws45{word-spacing:14.884124px;}
.wsc5{word-spacing:16.615920px;}
.wsb7{word-spacing:16.623706px;}
.wsc2{word-spacing:17.484480px;}
.ws42{word-spacing:18.470660px;}
.ws1{word-spacing:28.455541px;}
.ws5f{word-spacing:66.748800px;}
.ws75{word-spacing:86.716800px;}
.ws76{word-spacing:111.838800px;}
.ws66{word-spacing:131.806800px;}
.ws60{word-spacing:138.280800px;}
.ws6a{word-spacing:138.297175px;}
.ws7a{word-spacing:158.238365px;}
.ws54{word-spacing:159.609428px;}
.ws5e{word-spacing:202.554128px;}
.ws5c{word-spacing:221.922128px;}
.ws67{word-spacing:241.310546px;}
.ws77{word-spacing:260.678546px;}
.ws6d{word-spacing:267.130500px;}
.ws6c{word-spacing:267.130800px;}
.ws61{word-spacing:267.758129px;}
.ws62{word-spacing:279.082800px;}
.ws63{word-spacing:279.088800px;}
.ws68{word-spacing:298.448365px;}
.ws78{word-spacing:299.032225px;}
.ws6e{word-spacing:308.955581px;}
.ws5b{word-spacing:318.437375px;}
.ws79{word-spacing:322.493834px;}
.ws64{word-spacing:334.683064px;}
.ws7b{word-spacing:341.855834px;}
.ws6b{word-spacing:372.317876px;}
.ws69{word-spacing:375.378394px;}
.ws58{word-spacing:381.411904px;}
.ws4d{word-spacing:412.212538px;}
.ws55{word-spacing:412.309213px;}
._36{margin-left:-8.449395px;}
._5{margin-left:-6.631626px;}
._8{margin-left:-5.308087px;}
._1{margin-left:-4.184280px;}
._16{margin-left:-2.645543px;}
._2{margin-left:-1.506341px;}
._34{width:1.446558px;}
._6{width:2.998354px;}
._10{width:4.722281px;}
._35{width:5.804219px;}
._0{width:12.971268px;}
._1b{width:13.999441px;}
._9{width:15.087346px;}
._1a{width:16.346106px;}
._b{width:17.645753px;}
._13{width:18.973459px;}
._f{width:20.861684px;}
._c{width:22.415850px;}
._15{width:23.623313px;}
._12{width:24.677057px;}
._3{width:25.943736px;}
._11{width:27.664152px;}
._19{width:28.931390px;}
._a{width:30.079078px;}
._22{width:32.315417px;}
._4{width:33.355008px;}
._32{width:34.490521px;}
._d{width:36.295740px;}
._e{width:37.598852px;}
._1d{width:39.930101px;}
._14{width:41.899221px;}
._7{width:54.410726px;}
._39{width:61.868160px;}
._31{width:83.248349px;}
._38{width:88.767360px;}
._25{width:91.480808px;}
._2a{width:98.080051px;}
._2f{width:99.705951px;}
._27{width:118.021241px;}
._21{width:164.309749px;}
._28{width:170.193515px;}
._20{width:208.420535px;}
._23{width:213.758082px;}
._1f{width:224.564987px;}
._26{width:232.312475px;}
._2e{width:267.789575px;}
._29{width:287.162703px;}
._30{width:330.978667px;}
._2d{width:373.957092px;}
._2b{width:438.610543px;}
._2c{width:440.858111px;}
._1e{width:611.560698px;}
._24{width:692.633570px;}
._33{width:1789.056039px;}
._17{width:1858.210040px;}
._37{width:2516.015945px;}
._18{width:2538.838040px;}
._1c{width:2539.925945px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs6{font-size:37.371600px;}
.fsb{font-size:41.003984px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsd{font-size:45.899982px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:49.829400px;}
.fsc{font-size:50.795980px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fse{font-size:61.199976px;}
.fs9{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y148{bottom:-270.376527px;}
.y147{bottom:-252.475534px;}
.y146{bottom:-234.574542px;}
.y145{bottom:-216.826549px;}
.y144{bottom:-198.925556px;}
.y143{bottom:-181.024563px;}
.y142{bottom:-163.276570px;}
.y141{bottom:-145.375577px;}
.y140{bottom:-127.474584px;}
.y13f{bottom:-109.726592px;}
.y13e{bottom:-87.235601px;}
.y13d{bottom:-52.504614px;}
.y13c{bottom:-34.603622px;}
.y13b{bottom:-12.571630px;}
.y0{bottom:0.000000px;}
.y41{bottom:45.921000px;}
.y16{bottom:100.260000px;}
.y1b1{bottom:101.778000px;}
.y14a{bottom:109.867500px;}
.y135{bottom:111.337500px;}
.y74{bottom:116.407500px;}
.y15{bottom:118.147500px;}
.y40{bottom:119.293500px;}
.y1b0{bottom:120.928500px;}
.y149{bottom:129.099000px;}
.y16a{bottom:132.816000px;}
.y14{bottom:136.035000px;}
.y73{bottom:137.298000px;}
.y1af{bottom:140.079000px;}
.y3f{bottom:140.185500px;}
.y188{bottom:141.213000px;}
.y138{bottom:151.528500px;}
.y169{bottom:153.706500px;}
.y13{bottom:153.924000px;}
.y9e{bottom:157.041000px;}
.ye1{bottom:158.032500px;}
.y72{bottom:158.190000px;}
.y1ae{bottom:159.229500px;}
.y3e{bottom:161.077500px;}
.y187{bottom:162.105000px;}
.yde{bottom:166.999500px;}
.y12{bottom:171.811500px;}
.y168{bottom:174.598500px;}
.ye0{bottom:175.965000px;}
.y9d{bottom:177.931500px;}
.y1ad{bottom:178.380000px;}
.y71{bottom:179.082000px;}
.y3d{bottom:181.969500px;}
.y186{bottom:182.997000px;}
.ydd{bottom:184.932000px;}
.y11{bottom:189.699000px;}
.y111{bottom:191.584500px;}
.ydf{bottom:193.899000px;}
.y167{bottom:195.490500px;}
.y1ac{bottom:197.530500px;}
.y9c{bottom:198.823500px;}
.y70{bottom:199.972500px;}
.y3c{bottom:202.860000px;}
.y185{bottom:203.887500px;}
.y10{bottom:207.588000px;}
.y110{bottom:212.476500px;}
.y166{bottom:216.381000px;}
.y1ab{bottom:216.681000px;}
.ydc{bottom:219.033000px;}
.y9b{bottom:219.715500px;}
.y6f{bottom:220.864500px;}
.y3b{bottom:223.752000px;}
.y184{bottom:224.779500px;}
.yf{bottom:225.475500px;}
.y10f{bottom:233.367000px;}
.y1aa{bottom:235.831500px;}
.ydb{bottom:236.967000px;}
.y165{bottom:237.273000px;}
.y9a{bottom:240.606000px;}
.y6e{bottom:241.756500px;}
.y3a{bottom:244.644000px;}
.y183{bottom:245.671500px;}
.ye{bottom:252.330000px;}
.yd8{bottom:254.899500px;}
.y1a9{bottom:254.982000px;}
.y164{bottom:258.165000px;}
.y99{bottom:261.498000px;}
.y6d{bottom:262.647000px;}
.y39{bottom:265.534500px;}
.y182{bottom:266.563500px;}
.yd{bottom:270.217500px;}
.yda{bottom:272.832000px;}
.y1a8{bottom:274.132500px;}
.y10e{bottom:275.563500px;}
.y163{bottom:279.055500px;}
.y98{bottom:282.390000px;}
.y6c{bottom:283.539000px;}
.y181{bottom:287.454000px;}
.yc{bottom:288.105000px;}
.y10d{bottom:289.759500px;}
.yd9{bottom:290.764500px;}
.y38{bottom:290.910000px;}
.y1a7{bottom:293.284500px;}
.ycd{bottom:299.241000px;}
.y162{bottom:299.947500px;}
.y97{bottom:303.280500px;}
.y6b{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y180{bottom:308.346000px;}
.y10c{bottom:310.920000px;}
.y1a6{bottom:312.435000px;}
.yd7{bottom:315.900000px;}
.y161{bottom:320.839500px;}
.ya{bottom:323.881500px;}
.y96{bottom:324.172500px;}
.yd4{bottom:324.865500px;}
.y10b{bottom:325.116000px;}
.y6a{bottom:325.323000px;}
.y17f{bottom:329.238000px;}
.y1a5{bottom:331.585500px;}
.yd6{bottom:333.832500px;}
.y10a{bottom:339.313500px;}
.y160{bottom:341.730000px;}
.y9{bottom:341.769000px;}
.yd3{bottom:342.799500px;}
.y95{bottom:345.064500px;}
.y69{bottom:346.213500px;}
.y17e{bottom:350.128500px;}
.y1a4{bottom:350.736000px;}
.yd5{bottom:351.765000px;}
.y109{bottom:353.509500px;}
.y8{bottom:359.658000px;}
.y15f{bottom:362.622000px;}
.y94{bottom:365.956500px;}
.y68{bottom:367.105500px;}
.y108{bottom:367.707000px;}
.y1a3{bottom:369.886500px;}
.y37{bottom:370.122000px;}
.y17d{bottom:371.020500px;}
.yd2{bottom:376.900500px;}
.y7{bottom:377.545500px;}
.y107{bottom:381.903000px;}
.y15e{bottom:383.514000px;}
.y93{bottom:386.847000px;}
.y67{bottom:387.997500px;}
.y1a2{bottom:389.037000px;}
.y17c{bottom:391.912500px;}
.yd1{bottom:394.833000px;}
.y106{bottom:396.100500px;}
.y6{bottom:401.410500px;}
.yce{bottom:403.800000px;}
.y15d{bottom:404.406000px;}
.y92{bottom:407.739000px;}
.y1a1{bottom:408.187500px;}
.y66{bottom:408.888000px;}
.y36{bottom:408.945000px;}
.y105{bottom:410.296500px;}
.yd0{bottom:412.765500px;}
.y17b{bottom:412.803000px;}
.y5{bottom:419.299500px;}
.y104{bottom:424.494000px;}
.y15c{bottom:425.296500px;}
.y1a0{bottom:427.338000px;}
.y91{bottom:428.631000px;}
.y65{bottom:429.780000px;}
.y35{bottom:429.837000px;}
.ycf{bottom:430.698000px;}
.y4{bottom:437.187000px;}
.y17a{bottom:438.178500px;}
.y103{bottom:438.690000px;}
.y15b{bottom:446.188500px;}
.y19f{bottom:446.488500px;}
.y90{bottom:449.521500px;}
.y64{bottom:450.672000px;}
.y34{bottom:450.729000px;}
.y134{bottom:451.869000px;}
.y102{bottom:452.887500px;}
.y3{bottom:455.074500px;}
.ycc{bottom:455.833500px;}
.yc9{bottom:464.800500px;}
.y15a{bottom:467.080500px;}
.y101{bottom:467.083500px;}
.y19e{bottom:470.122500px;}
.y8f{bottom:470.413500px;}
.y63{bottom:471.562500px;}
.y33{bottom:471.619500px;}
.y133{bottom:472.759500px;}
.y179{bottom:473.520000px;}
.ycb{bottom:473.766000px;}
.y2{bottom:478.941000px;}
.yc8{bottom:482.733000px;}
.y159{bottom:487.971000px;}
.yff{bottom:488.482500px;}
.y8e{bottom:491.305500px;}
.yca{bottom:491.698500px;}
.y62{bottom:492.454500px;}
.y32{bottom:492.511500px;}
.y132{bottom:493.651500px;}
.y178{bottom:494.412000px;}
.yfe{bottom:495.582000px;}
.y1{bottom:496.828500px;}
.y100{bottom:502.680000px;}
.y1cf{bottom:503.394000px;}
.yfc{bottom:504.118500px;}
.y158{bottom:508.863000px;}
.y19d{bottom:508.947000px;}
.y8d{bottom:512.196000px;}
.y61{bottom:513.346500px;}
.y31{bottom:513.403500px;}
.y131{bottom:514.543500px;}
.y177{bottom:515.304000px;}
.yc7{bottom:516.834000px;}
.y1ce{bottom:522.544500px;}
.yfd{bottom:524.079000px;}
.y157{bottom:529.755000px;}
.y8c{bottom:533.088000px;}
.y60{bottom:534.237000px;}
.y30{bottom:534.295500px;}
.yc5{bottom:534.766500px;}
.y130{bottom:535.434000px;}
.y176{bottom:536.194500px;}
.y19c{bottom:537.411000px;}
.y1cd{bottom:541.695000px;}
.y156{bottom:550.645500px;}
.yc6{bottom:552.700500px;}
.y8b{bottom:553.980000px;}
.y5f{bottom:555.129000px;}
.y2f{bottom:555.186000px;}
.y12f{bottom:556.326000px;}
.y19b{bottom:556.911000px;}
.y175{bottom:557.086500px;}
.yfb{bottom:557.118000px;}
.y155{bottom:571.537500px;}
.y5e{bottom:576.021000px;}
.y2e{bottom:576.078000px;}
.yfa{bottom:576.351000px;}
.y12e{bottom:577.218000px;}
.yc4{bottom:577.834500px;}
.y174{bottom:577.978500px;}
.y8a{bottom:579.354000px;}
.y1cc{bottom:584.725500px;}
.y19a{bottom:585.375000px;}
.yc1{bottom:586.801500px;}
.y154{bottom:592.429500px;}
.yf9{bottom:595.584000px;}
.yc3{bottom:595.767000px;}
.y5d{bottom:596.913000px;}
.y2d{bottom:596.970000px;}
.y12d{bottom:598.108500px;}
.y173{bottom:598.870500px;}
.y1cb{bottom:603.876000px;}
.yc0{bottom:604.734000px;}
.y153{bottom:613.320000px;}
.yc2{bottom:613.701000px;}
.y199{bottom:613.840500px;}
.y89{bottom:614.697000px;}
.y5c{bottom:617.803500px;}
.y2c{bottom:617.860500px;}
.y12c{bottom:619.000500px;}
.y172{bottom:619.761000px;}
.y1ca{bottom:623.026500px;}
.yf8{bottom:632.688000px;}
.y198{bottom:633.339000px;}
.y152{bottom:634.212000px;}
.y88{bottom:635.589000px;}
.y5b{bottom:638.695500px;}
.y2b{bottom:638.752500px;}
.ybf{bottom:638.835000px;}
.y12b{bottom:639.892500px;}
.y171{bottom:640.653000px;}
.y1c9{bottom:642.177000px;}
.ybc{bottom:647.802000px;}
.y197{bottom:652.837500px;}
.yf7{bottom:653.580000px;}
.y151{bottom:655.104000px;}
.y87{bottom:656.479500px;}
.ybe{bottom:656.769000px;}
.y5a{bottom:659.587500px;}
.y2a{bottom:659.644500px;}
.y12a{bottom:660.783000px;}
.y1c8{bottom:661.327500px;}
.y170{bottom:661.545000px;}
.ybb{bottom:665.734500px;}
.yaf{bottom:668.106000px;}
.y13a{bottom:670.267096px;}
.yf6{bottom:674.470500px;}
.ybd{bottom:674.701500px;}
.y150{bottom:675.996000px;}
.y86{bottom:677.371500px;}
.y139{bottom:678.376093px;}
.y59{bottom:680.478000px;}
.y29{bottom:680.535000px;}
.y196{bottom:681.303000px;}
.y129{bottom:681.675000px;}
.y16f{bottom:682.435500px;}
.yae{bottom:686.038500px;}
.yf5{bottom:695.362500px;}
.y14f{bottom:696.886500px;}
.y85{bottom:698.263500px;}
.y1c7{bottom:699.628500px;}
.yba{bottom:699.835500px;}
.y58{bottom:701.370000px;}
.y28{bottom:701.427000px;}
.y128{bottom:702.567000px;}
.y16e{bottom:703.327500px;}
.y195{bottom:709.768500px;}
.yf4{bottom:716.254500px;}
.yb9{bottom:717.769500px;}
.y14e{bottom:717.778500px;}
.y1c6{bottom:718.779000px;}
.y57{bottom:722.262000px;}
.y27{bottom:722.319000px;}
.y127{bottom:723.459000px;}
.y84{bottom:723.637500px;}
.y16d{bottom:724.219500px;}
.y194{bottom:729.267000px;}
.yb6{bottom:735.702000px;}
.yf3{bottom:737.145000px;}
.y1c5{bottom:737.929500px;}
.y14d{bottom:738.670500px;}
.y56{bottom:743.152500px;}
.y26{bottom:743.209500px;}
.y126{bottom:744.349500px;}
.y16c{bottom:745.110000px;}
.y193{bottom:748.765500px;}
.yb8{bottom:753.634500px;}
.y1c4{bottom:757.081500px;}
.y83{bottom:758.980500px;}
.y14c{bottom:759.561000px;}
.yf2{bottom:762.520500px;}
.y55{bottom:764.044500px;}
.y25{bottom:764.101500px;}
.y125{bottom:765.241500px;}
.y192{bottom:768.264000px;}
.y16b{bottom:770.485500px;}
.yb7{bottom:771.567000px;}
.y1c3{bottom:776.232000px;}
.y82{bottom:779.871000px;}
.y14b{bottom:780.453000px;}
.y54{bottom:784.936500px;}
.y24{bottom:784.993500px;}
.y124{bottom:786.133500px;}
.y191{bottom:787.764000px;}
.y1c2{bottom:795.382500px;}
.yb5{bottom:796.702500px;}
.y137{bottom:799.420500px;}
.y81{bottom:800.763000px;}
.yf1{bottom:801.345000px;}
.y53{bottom:805.827000px;}
.y23{bottom:805.885500px;}
.y123{bottom:807.024000px;}
.y1c1{bottom:814.533000px;}
.yb3{bottom:814.635000px;}
.y136{bottom:818.652000px;}
.y80{bottom:821.655000px;}
.yf0{bottom:822.235500px;}
.y190{bottom:825.195000px;}
.y52{bottom:826.719000px;}
.y22{bottom:826.776000px;}
.y122{bottom:827.916000px;}
.yb4{bottom:832.567500px;}
.y1c0{bottom:833.683500px;}
.y7f{bottom:842.545500px;}
.yef{bottom:843.127500px;}
.y18f{bottom:846.087000px;}
.y51{bottom:847.611000px;}
.y21{bottom:847.668000px;}
.y121{bottom:848.808000px;}
.y1bf{bottom:852.834000px;}
.yb2{bottom:857.703000px;}
.y7e{bottom:863.437500px;}
.yee{bottom:864.019500px;}
.y18e{bottom:866.977500px;}
.y50{bottom:868.503000px;}
.y120{bottom:869.698500px;}
.y1be{bottom:871.984500px;}
.yb0{bottom:875.635500px;}
.y7d{bottom:884.329500px;}
.yed{bottom:884.910000px;}
.y20{bottom:887.688000px;}
.y18d{bottom:887.869500px;}
.y4f{bottom:889.393500px;}
.y11f{bottom:890.590500px;}
.y1bd{bottom:891.135000px;}
.yb1{bottom:893.568000px;}
.y7c{bottom:905.220000px;}
.yec{bottom:905.802000px;}
.y1f{bottom:908.167500px;}
.y18c{bottom:908.761500px;}
.y4e{bottom:910.285500px;}
.y11e{bottom:911.482500px;}
.yaa{bottom:918.703500px;}
.y1e{bottom:919.966500px;}
.y7b{bottom:926.112000px;}
.yeb{bottom:926.694000px;}
.yad{bottom:927.670500px;}
.y1bc{bottom:929.436000px;}
.y18b{bottom:929.652000px;}
.y4d{bottom:931.177500px;}
.y1d{bottom:936.106500px;}
.ya9{bottom:936.636000px;}
.y1c{bottom:940.446000px;}
.yac{bottom:945.603000px;}
.y7a{bottom:947.004000px;}
.yea{bottom:947.584500px;}
.y1bb{bottom:948.586500px;}
.y18a{bottom:950.544000px;}
.y4c{bottom:952.068000px;}
.ya8{bottom:954.568500px;}
.y1b{bottom:956.586000px;}
.y11d{bottom:961.323000px;}
.yab{bottom:963.535500px;}
.y1ba{bottom:967.737000px;}
.y79{bottom:967.896000px;}
.ye9{bottom:968.476500px;}
.ya7{bottom:972.502500px;}
.y4b{bottom:972.960000px;}
.y11c{bottom:975.519000px;}
.y189{bottom:975.918000px;}
.y1b9{bottom:986.887500px;}
.y78{bottom:988.786500px;}
.ye8{bottom:989.368500px;}
.y11b{bottom:989.716500px;}
.y4a{bottom:993.852000px;}
.ya6{bottom:997.636500px;}
.ya1{bottom:1000.474500px;}
.y1a{bottom:1001.262000px;}
.y11a{bottom:1003.912500px;}
.y1b8{bottom:1006.038000px;}
.ya5{bottom:1006.603500px;}
.y77{bottom:1009.678500px;}
.ye7{bottom:1010.260500px;}
.y49{bottom:1014.742500px;}
.y119{bottom:1018.110000px;}
.y1b7{bottom:1025.188500px;}
.ye6{bottom:1031.151000px;}
.y118{bottom:1032.306000px;}
.y76{bottom:1035.052500px;}
.y48{bottom:1035.634500px;}
.y19{bottom:1040.086500px;}
.ya4{bottom:1040.704500px;}
.y1b6{bottom:1044.339000px;}
.ya3{bottom:1049.671500px;}
.ye5{bottom:1052.043000px;}
.y116{bottom:1053.705000px;}
.y47{bottom:1056.526500px;}
.y75{bottom:1059.484500px;}
.y115{bottom:1060.804500px;}
.y1b5{bottom:1063.489500px;}
.y117{bottom:1067.902500px;}
.y113{bottom:1069.341000px;}
.y18{bottom:1071.424500px;}
.ye4{bottom:1072.935000px;}
.y46{bottom:1077.417000px;}
.y1b4{bottom:1082.640000px;}
.ya2{bottom:1083.772500px;}
.y114{bottom:1089.301500px;}
.ye3{bottom:1093.825500px;}
.y45{bottom:1098.309000px;}
.y1b3{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.ya0{bottom:1108.908000px;}
.ye2{bottom:1114.717500px;}
.y44{bottom:1119.201000px;}
.y1b2{bottom:1120.941000px;}
.y112{bottom:1122.340500px;}
.y43{bottom:1140.091500px;}
.y9f{bottom:1141.573500px;}
.y42{bottom:1200.196500px;}
.h7{height:26.110157px;}
.h17{height:29.932107px;}
.h16{height:30.192386px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h19{height:33.797447px;}
.h10{height:34.574294px;}
.h8{height:34.813397px;}
.hb{height:35.052500px;}
.h18{height:37.080073px;}
.hc{height:39.165235px;}
.hf{height:39.434227px;}
.h14{height:41.482876px;}
.hd{height:43.217759px;}
.h9{height:43.516637px;}
.h4{height:43.815515px;}
.h1a{height:45.063263px;}
.ha{height:51.861658px;}
.h6{height:54.547601px;}
.h11{height:62.966294px;}
.h12{height:63.205397px;}
.h13{height:63.444500px;}
.h5{height:77.792486px;}
.he{height:79.378637px;}
.h15{height:622.690875px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:467.756700px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x58{left:-90.463691px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x52{left:62.541000px;}
.x5a{left:75.852215px;}
.x6c{left:84.220500px;}
.x6b{left:85.848000px;}
.x49{left:90.286500px;}
.x5b{left:102.933204px;}
.x4b{left:184.726500px;}
.x4a{left:201.666000px;}
.x5c{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x42{left:261.850500px;}
.x3{left:269.764500px;}
.x32{left:279.312000px;}
.x5{left:281.479500px;}
.x3a{left:290.610000px;}
.x33{left:296.101500px;}
.x25{left:320.577000px;}
.x26{left:335.520000px;}
.x18{left:355.410000px;}
.x19{left:370.354500px;}
.x2e{left:380.022000px;}
.x5f{left:389.664000px;}
.x2f{left:394.965000px;}
.x30{left:398.709000px;}
.x46{left:400.998000px;}
.x3f{left:403.648500px;}
.x43{left:410.082000px;}
.x31{left:413.653500px;}
.x47{left:415.633500px;}
.x44{left:417.343500px;}
.x6{left:419.031000px;}
.x40{left:420.160500px;}
.x37{left:424.143000px;}
.x7{left:426.504000px;}
.x3b{left:428.769000px;}
.x35{left:435.172500px;}
.x34{left:439.258500px;}
.x3c{left:441.187500px;}
.x41{left:443.316000px;}
.x3e{left:445.521000px;}
.x38{left:447.747000px;}
.x48{left:452.701500px;}
.x3d{left:455.040000px;}
.x39{left:456.220500px;}
.x45{left:463.774500px;}
.x53{left:474.024000px;}
.x16{left:482.310000px;}
.x54{left:486.315000px;}
.x60{left:495.301500px;}
.x17{left:497.254500px;}
.x59{left:499.968045px;}
.x66{left:501.772500px;}
.x61{left:502.774500px;}
.xe{left:515.205000px;}
.xf{left:522.676500px;}
.x10{left:530.112000px;}
.x4c{left:542.311500px;}
.x11{left:545.055000px;}
.x4d{left:566.602500px;}
.x36{left:618.589500px;}
.x8{left:635.553000px;}
.x5d{left:637.005000px;}
.x4e{left:641.850000px;}
.x9{left:643.024500px;}
.x5e{left:651.948000px;}
.x62{left:657.978000px;}
.x4f{left:670.117500px;}
.x63{left:672.474000px;}
.x64{left:679.867500px;}
.x67{left:683.752500px;}
.x65{left:694.362000px;}
.x68{left:698.697000px;}
.x69{left:702.469500px;}
.x27{left:708.921000px;}
.x28{left:716.394000px;}
.x6a{left:717.414000px;}
.x29{left:720.055500px;}
.xa{left:731.949000px;}
.x2a{left:734.998500px;}
.xb{left:739.420500px;}
.xc{left:743.230500px;}
.x50{left:749.340000px;}
.xd{left:750.703500px;}
.x2b{left:753.604500px;}
.x20{left:755.634000px;}
.x55{left:758.094000px;}
.x2c{left:760.926000px;}
.x21{left:763.105500px;}
.x22{left:766.845000px;}
.x56{left:770.386500px;}
.x51{left:773.631000px;}
.x2d{left:775.870500px;}
.x23{left:781.789500px;}
.x1a{left:784.033500px;}
.x24{left:785.529000px;}
.x1b{left:791.505000px;}
.x1c{left:795.316500px;}
.x57{left:798.556500px;}
.x12{left:800.356500px;}
.x1d{left:810.259500px;}
.x13{left:815.301000px;}
.x14{left:819.018000px;}
.x1e{left:821.599500px;}
.x15{left:833.962500px;}
.x1f{left:836.544000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:25.237333pt;}
.v5{vertical-align:31.877333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000540pt;}
.ls17{letter-spacing:0.001007pt;}
.ls20{letter-spacing:0.001026pt;}
.lsf{letter-spacing:0.002471pt;}
.ls19{letter-spacing:0.002567pt;}
.ls13{letter-spacing:0.509060pt;}
.ls12{letter-spacing:0.514393pt;}
.lsd{letter-spacing:0.637762pt;}
.ls6{letter-spacing:10.626533pt;}
.ls10{letter-spacing:10.627330pt;}
.ls11{letter-spacing:11.138393pt;}
.ls22{letter-spacing:11.862441pt;}
.ls1e{letter-spacing:11.954133pt;}
.ls1f{letter-spacing:11.959467pt;}
.ls8{letter-spacing:13.124065pt;}
.ls5{letter-spacing:13.238594pt;}
.ls1d{letter-spacing:13.283467pt;}
.lsc{letter-spacing:13.283733pt;}
.ls1c{letter-spacing:13.318515pt;}
.ls18{letter-spacing:13.389734pt;}
.ls1b{letter-spacing:13.442868pt;}
.ls15{letter-spacing:13.621302pt;}
.ls2{letter-spacing:13.678400pt;}
.ls1a{letter-spacing:14.750714pt;}
.lse{letter-spacing:14.777182pt;}
.ls4{letter-spacing:14.975550pt;}
.ls14{letter-spacing:15.196286pt;}
.lsb{letter-spacing:16.258963pt;}
.ls16{letter-spacing:16.283064pt;}
.ls21{letter-spacing:16.562447pt;}
.lsa{letter-spacing:17.281433pt;}
.ls1{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls0{letter-spacing:64.315733pt;}
.ws4e{word-spacing:-13.283467pt;}
.ws86{word-spacing:-11.955200pt;}
.ws26{word-spacing:-10.626800pt;}
.ws89{word-spacing:-10.199996pt;}
.ws8{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws88{word-spacing:-9.111996pt;}
.ws36{word-spacing:-2.975497pt;}
.ws3e{word-spacing:-2.816095pt;}
.ws47{word-spacing:-2.709827pt;}
.ws7d{word-spacing:-2.603559pt;}
.ws37{word-spacing:-1.859685pt;}
.ws4c{word-spacing:-1.753418pt;}
.ws81{word-spacing:-1.594016pt;}
.ws2e{word-spacing:-1.540882pt;}
.ws2f{word-spacing:-1.487748pt;}
.wsa9{word-spacing:-1.482445pt;}
.ws4a{word-spacing:-1.381481pt;}
.wsa3{word-spacing:-1.222079pt;}
.ws83{word-spacing:-1.168945pt;}
.ws3b{word-spacing:-1.062677pt;}
.ws82{word-spacing:-1.009543pt;}
.ws39{word-spacing:-0.956410pt;}
.ws98{word-spacing:-0.903276pt;}
.ws9c{word-spacing:-0.850142pt;}
.ws7e{word-spacing:-0.743874pt;}
.ws4f{word-spacing:-0.637606pt;}
.wsa2{word-spacing:-0.531339pt;}
.ws99{word-spacing:-0.425071pt;}
.ws6f{word-spacing:-0.382565pt;}
.ws43{word-spacing:-0.371937pt;}
.ws24{word-spacing:-0.318803pt;}
.wsb0{word-spacing:-0.286925pt;}
.ws16{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.239104pt;}
.wsd{word-spacing:-0.212535pt;}
.wsa7{word-spacing:-0.191283pt;}
.ws28{word-spacing:-0.159402pt;}
.ws8a{word-spacing:-0.143462pt;}
.ws23{word-spacing:-0.106268pt;}
.wsab{word-spacing:-0.095642pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws84{word-spacing:-0.047821pt;}
.ws27{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.wsad{word-spacing:-0.024721pt;}
.ws7{word-spacing:-0.003081pt;}
.ws0{word-spacing:0.000000pt;}
.ws51{word-spacing:0.000800pt;}
.wsbc{word-spacing:0.047821pt;}
.ws1c{word-spacing:0.053134pt;}
.ws2{word-spacing:0.074387pt;}
.ws59{word-spacing:0.085014pt;}
.ws87{word-spacing:0.095642pt;}
.ws3a{word-spacing:0.106268pt;}
.ws9{word-spacing:0.127522pt;}
.wsaa{word-spacing:0.143462pt;}
.ws3d{word-spacing:0.159402pt;}
.ws41{word-spacing:0.212535pt;}
.wsc7{word-spacing:0.239104pt;}
.ws2a{word-spacing:0.265669pt;}
.wsb1{word-spacing:0.286925pt;}
.ws72{word-spacing:0.318803pt;}
.ws2d{word-spacing:0.478205pt;}
.wsa6{word-spacing:0.478208pt;}
.ws5a{word-spacing:0.521014pt;}
.ws65{word-spacing:0.525066pt;}
.ws56{word-spacing:0.530901pt;}
.ws22{word-spacing:0.531339pt;}
.ws5d{word-spacing:0.532267pt;}
.ws57{word-spacing:0.548897pt;}
.wse{word-spacing:0.584473pt;}
.ws40{word-spacing:0.637606pt;}
.ws95{word-spacing:0.690740pt;}
.wsa0{word-spacing:0.743874pt;}
.ws9b{word-spacing:0.850142pt;}
.ws8d{word-spacing:0.903276pt;}
.ws96{word-spacing:0.956410pt;}
.wsf{word-spacing:1.009543pt;}
.ws33{word-spacing:1.062677pt;}
.ws2c{word-spacing:1.115811pt;}
.ws4b{word-spacing:1.222079pt;}
.ws8c{word-spacing:1.275213pt;}
.ws9a{word-spacing:1.381481pt;}
.ws90{word-spacing:1.434614pt;}
.ws8f{word-spacing:1.487748pt;}
.ws44{word-spacing:1.540882pt;}
.wsbd{word-spacing:1.578086pt;}
.ws2b{word-spacing:1.594016pt;}
.ws19{word-spacing:1.700284pt;}
.ws70{word-spacing:1.859685pt;}
.ws71{word-spacing:1.912819pt;}
.wsa5{word-spacing:1.965953pt;}
.ws91{word-spacing:2.019087pt;}
.wsb5{word-spacing:2.151936pt;}
.ws93{word-spacing:2.178489pt;}
.ws6{word-spacing:2.231335pt;}
.ws9f{word-spacing:2.231622pt;}
.wsa4{word-spacing:2.337890pt;}
.ws7c{word-spacing:2.391024pt;}
.ws3c{word-spacing:2.444158pt;}
.ws35{word-spacing:2.497292pt;}
.ws94{word-spacing:2.550426pt;}
.wsa{word-spacing:2.550432pt;}
.ws97{word-spacing:2.603559pt;}
.ws8b{word-spacing:2.656693pt;}
.ws30{word-spacing:2.709827pt;}
.ws32{word-spacing:2.816095pt;}
.ws53{word-spacing:2.821427pt;}
.wsc0{word-spacing:2.861517pt;}
.wsb6{word-spacing:2.863855pt;}
.wsa8{word-spacing:2.866509pt;}
.wsaf{word-spacing:2.869248pt;}
.ws29{word-spacing:2.922363pt;}
.ws52{word-spacing:2.964890pt;}
.ws31{word-spacing:2.975497pt;}
.ws8e{word-spacing:3.028630pt;}
.wsc6{word-spacing:3.108352pt;}
.ws92{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.185311pt;}
.ws21{word-spacing:3.241166pt;}
.ws48{word-spacing:3.294300pt;}
.ws38{word-spacing:3.347434pt;}
.ws3f{word-spacing:3.506835pt;}
.ws18{word-spacing:3.559969pt;}
.wsc1{word-spacing:3.634381pt;}
.ws1e{word-spacing:3.825664pt;}
.ws9d{word-spacing:3.931906pt;}
.ws50{word-spacing:3.985040pt;}
.ws15{word-spacing:4.038174pt;}
.wsa1{word-spacing:4.091308pt;}
.ws13{word-spacing:4.250709pt;}
.ws74{word-spacing:4.303872pt;}
.ws73{word-spacing:4.351693pt;}
.ws49{word-spacing:4.516379pt;}
.ws7f{word-spacing:4.569513pt;}
.wsc4{word-spacing:4.590797pt;}
.ws80{word-spacing:4.782048pt;}
.wsc{word-spacing:4.835182pt;}
.ws10{word-spacing:5.047717pt;}
.ws20{word-spacing:5.260253pt;}
.ws11{word-spacing:5.472788pt;}
.ws12{word-spacing:5.525922pt;}
.ws1f{word-spacing:5.579056pt;}
.wsbe{word-spacing:5.834138pt;}
.ws17{word-spacing:5.897859pt;}
.ws9e{word-spacing:5.950993pt;}
.ws46{word-spacing:6.110395pt;}
.ws34{word-spacing:6.801135pt;}
.ws1b{word-spacing:6.854269pt;}
.ws14{word-spacing:7.013670pt;}
.ws25{word-spacing:10.587492pt;}
.ws3{word-spacing:11.492822pt;}
.wsba{word-spacing:11.763917pt;}
.wsc3{word-spacing:11.811738pt;}
.wsbf{word-spacing:11.902473pt;}
.wsb3{word-spacing:11.902822pt;}
.wsb4{word-spacing:11.903172pt;}
.wsae{word-spacing:11.904913pt;}
.wsb9{word-spacing:11.905067pt;}
.wsb8{word-spacing:11.906253pt;}
.wsac{word-spacing:11.907379pt;}
.wsbb{word-spacing:11.907618pt;}
.wsb2{word-spacing:12.194304pt;}
.wsb{word-spacing:13.029318pt;}
.ws45{word-spacing:13.230333pt;}
.wsc5{word-spacing:14.769707pt;}
.wsb7{word-spacing:14.776627pt;}
.wsc2{word-spacing:15.541760pt;}
.ws42{word-spacing:16.418365pt;}
.ws1{word-spacing:25.293814pt;}
.ws5f{word-spacing:59.332267pt;}
.ws75{word-spacing:77.081600pt;}
.ws76{word-spacing:99.412267pt;}
.ws66{word-spacing:117.161600pt;}
.ws60{word-spacing:122.916267pt;}
.ws6a{word-spacing:122.930822pt;}
.ws7a{word-spacing:140.656325pt;}
.ws54{word-spacing:141.875047pt;}
.ws5e{word-spacing:180.048114pt;}
.ws5c{word-spacing:197.264114pt;}
.ws67{word-spacing:214.498263pt;}
.ws77{word-spacing:231.714263pt;}
.ws6d{word-spacing:237.449333pt;}
.ws6c{word-spacing:237.449600pt;}
.ws61{word-spacing:238.007226pt;}
.ws62{word-spacing:248.073600pt;}
.ws63{word-spacing:248.078933pt;}
.ws68{word-spacing:265.287435pt;}
.ws78{word-spacing:265.806422pt;}
.ws6e{word-spacing:274.627183pt;}
.ws5b{word-spacing:283.055445pt;}
.ws79{word-spacing:286.661186pt;}
.ws64{word-spacing:297.496057pt;}
.ws7b{word-spacing:303.871852pt;}
.ws6b{word-spacing:330.949223pt;}
.ws69{word-spacing:333.669684pt;}
.ws58{word-spacing:339.032803pt;}
.ws4d{word-spacing:366.411145pt;}
.ws55{word-spacing:366.497078pt;}
._36{margin-left:-7.510574pt;}
._5{margin-left:-5.894779pt;}
._8{margin-left:-4.718299pt;}
._1{margin-left:-3.719360pt;}
._16{margin-left:-2.351594pt;}
._2{margin-left:-1.338970pt;}
._34{width:1.285829pt;}
._6{width:2.665203pt;}
._10{width:4.197583pt;}
._35{width:5.159306pt;}
._0{width:11.530016pt;}
._1b{width:12.443948pt;}
._9{width:13.410974pt;}
._1a{width:14.529872pt;}
._b{width:15.685114pt;}
._13{width:16.865297pt;}
._f{width:18.543719pt;}
._c{width:19.925200pt;}
._15{width:20.998500pt;}
._12{width:21.935162pt;}
._3{width:23.061099pt;}
._11{width:24.590357pt;}
._19{width:25.716791pt;}
._a{width:26.736958pt;}
._22{width:28.724815pt;}
._4{width:29.648896pt;}
._32{width:30.658241pt;}
._d{width:32.262880pt;}
._e{width:33.421202pt;}
._1d{width:35.493423pt;}
._14{width:37.243752pt;}
._7{width:48.365090pt;}
._39{width:54.993920pt;}
._31{width:73.998532pt;}
._38{width:78.904320pt;}
._25{width:81.316274pt;}
._2a{width:87.182267pt;}
._2f{width:88.627512pt;}
._27{width:104.907770pt;}
._21{width:146.053110pt;}
._28{width:151.283125pt;}
._20{width:185.262698pt;}
._23{width:190.007184pt;}
._1f{width:199.613322pt;}
._26{width:206.499978pt;}
._2e{width:238.035178pt;}
._29{width:255.255736pt;}
._30{width:294.203259pt;}
._2d{width:332.406304pt;}
._2b{width:389.876038pt;}
._2c{width:391.873877pt;}
._1e{width:543.609509pt;}
._24{width:615.674285pt;}
._33{width:1590.272035pt;}
._17{width:1651.742258pt;}
._37{width:2236.458618pt;}
._18{width:2256.744924pt;}
._1c{width:2257.711951pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:33.219200pt;}
.fsb{font-size:36.447985pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsd{font-size:40.799984pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:44.292800pt;}
.fsc{font-size:45.151982pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:54.399978pt;}
.fs9{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y148{bottom:-240.334691pt;}
.y147{bottom:-224.422697pt;}
.y146{bottom:-208.510704pt;}
.y145{bottom:-192.734710pt;}
.y144{bottom:-176.822716pt;}
.y143{bottom:-160.910723pt;}
.y142{bottom:-145.134729pt;}
.y141{bottom:-129.222735pt;}
.y140{bottom:-113.310742pt;}
.y13f{bottom:-97.534748pt;}
.y13e{bottom:-77.542756pt;}
.y13d{bottom:-46.670768pt;}
.y13c{bottom:-30.758775pt;}
.y13b{bottom:-11.174783pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:40.818667pt;}
.y16{bottom:89.120000pt;}
.y1b1{bottom:90.469333pt;}
.y14a{bottom:97.660000pt;}
.y135{bottom:98.966667pt;}
.y74{bottom:103.473333pt;}
.y15{bottom:105.020000pt;}
.y40{bottom:106.038667pt;}
.y1b0{bottom:107.492000pt;}
.y149{bottom:114.754667pt;}
.y16a{bottom:118.058667pt;}
.y14{bottom:120.920000pt;}
.y73{bottom:122.042667pt;}
.y1af{bottom:124.514667pt;}
.y3f{bottom:124.609333pt;}
.y188{bottom:125.522667pt;}
.y138{bottom:134.692000pt;}
.y169{bottom:136.628000pt;}
.y13{bottom:136.821333pt;}
.y9e{bottom:139.592000pt;}
.ye1{bottom:140.473333pt;}
.y72{bottom:140.613333pt;}
.y1ae{bottom:141.537333pt;}
.y3e{bottom:143.180000pt;}
.y187{bottom:144.093333pt;}
.yde{bottom:148.444000pt;}
.y12{bottom:152.721333pt;}
.y168{bottom:155.198667pt;}
.ye0{bottom:156.413333pt;}
.y9d{bottom:158.161333pt;}
.y1ad{bottom:158.560000pt;}
.y71{bottom:159.184000pt;}
.y3d{bottom:161.750667pt;}
.y186{bottom:162.664000pt;}
.ydd{bottom:164.384000pt;}
.y11{bottom:168.621333pt;}
.y111{bottom:170.297333pt;}
.ydf{bottom:172.354667pt;}
.y167{bottom:173.769333pt;}
.y1ac{bottom:175.582667pt;}
.y9c{bottom:176.732000pt;}
.y70{bottom:177.753333pt;}
.y3c{bottom:180.320000pt;}
.y185{bottom:181.233333pt;}
.y10{bottom:184.522667pt;}
.y110{bottom:188.868000pt;}
.y166{bottom:192.338667pt;}
.y1ab{bottom:192.605333pt;}
.ydc{bottom:194.696000pt;}
.y9b{bottom:195.302667pt;}
.y6f{bottom:196.324000pt;}
.y3b{bottom:198.890667pt;}
.y184{bottom:199.804000pt;}
.yf{bottom:200.422667pt;}
.y10f{bottom:207.437333pt;}
.y1aa{bottom:209.628000pt;}
.ydb{bottom:210.637333pt;}
.y165{bottom:210.909333pt;}
.y9a{bottom:213.872000pt;}
.y6e{bottom:214.894667pt;}
.y3a{bottom:217.461333pt;}
.y183{bottom:218.374667pt;}
.ye{bottom:224.293333pt;}
.yd8{bottom:226.577333pt;}
.y1a9{bottom:226.650667pt;}
.y164{bottom:229.480000pt;}
.y99{bottom:232.442667pt;}
.y6d{bottom:233.464000pt;}
.y39{bottom:236.030667pt;}
.y182{bottom:236.945333pt;}
.yd{bottom:240.193333pt;}
.yda{bottom:242.517333pt;}
.y1a8{bottom:243.673333pt;}
.y10e{bottom:244.945333pt;}
.y163{bottom:248.049333pt;}
.y98{bottom:251.013333pt;}
.y6c{bottom:252.034667pt;}
.y181{bottom:255.514667pt;}
.yc{bottom:256.093333pt;}
.y10d{bottom:257.564000pt;}
.yd9{bottom:258.457333pt;}
.y38{bottom:258.586667pt;}
.y1a7{bottom:260.697333pt;}
.ycd{bottom:265.992000pt;}
.y162{bottom:266.620000pt;}
.y97{bottom:269.582667pt;}
.y6b{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y180{bottom:274.085333pt;}
.y10c{bottom:276.373333pt;}
.y1a6{bottom:277.720000pt;}
.yd7{bottom:280.800000pt;}
.y161{bottom:285.190667pt;}
.ya{bottom:287.894667pt;}
.y96{bottom:288.153333pt;}
.yd4{bottom:288.769333pt;}
.y10b{bottom:288.992000pt;}
.y6a{bottom:289.176000pt;}
.y17f{bottom:292.656000pt;}
.y1a5{bottom:294.742667pt;}
.yd6{bottom:296.740000pt;}
.y10a{bottom:301.612000pt;}
.y160{bottom:303.760000pt;}
.y9{bottom:303.794667pt;}
.yd3{bottom:304.710667pt;}
.y95{bottom:306.724000pt;}
.y69{bottom:307.745333pt;}
.y17e{bottom:311.225333pt;}
.y1a4{bottom:311.765333pt;}
.yd5{bottom:312.680000pt;}
.y109{bottom:314.230667pt;}
.y8{bottom:319.696000pt;}
.y15f{bottom:322.330667pt;}
.y94{bottom:325.294667pt;}
.y68{bottom:326.316000pt;}
.y108{bottom:326.850667pt;}
.y1a3{bottom:328.788000pt;}
.y37{bottom:328.997333pt;}
.y17d{bottom:329.796000pt;}
.yd2{bottom:335.022667pt;}
.y7{bottom:335.596000pt;}
.y107{bottom:339.469333pt;}
.y15e{bottom:340.901333pt;}
.y93{bottom:343.864000pt;}
.y67{bottom:344.886667pt;}
.y1a2{bottom:345.810667pt;}
.y17c{bottom:348.366667pt;}
.yd1{bottom:350.962667pt;}
.y106{bottom:352.089333pt;}
.y6{bottom:356.809333pt;}
.yce{bottom:358.933333pt;}
.y15d{bottom:359.472000pt;}
.y92{bottom:362.434667pt;}
.y1a1{bottom:362.833333pt;}
.y66{bottom:363.456000pt;}
.y36{bottom:363.506667pt;}
.y105{bottom:364.708000pt;}
.yd0{bottom:366.902667pt;}
.y17b{bottom:366.936000pt;}
.y5{bottom:372.710667pt;}
.y104{bottom:377.328000pt;}
.y15c{bottom:378.041333pt;}
.y1a0{bottom:379.856000pt;}
.y91{bottom:381.005333pt;}
.y65{bottom:382.026667pt;}
.y35{bottom:382.077333pt;}
.ycf{bottom:382.842667pt;}
.y4{bottom:388.610667pt;}
.y17a{bottom:389.492000pt;}
.y103{bottom:389.946667pt;}
.y15b{bottom:396.612000pt;}
.y19f{bottom:396.878667pt;}
.y90{bottom:399.574667pt;}
.y64{bottom:400.597333pt;}
.y34{bottom:400.648000pt;}
.y134{bottom:401.661333pt;}
.y102{bottom:402.566667pt;}
.y3{bottom:404.510667pt;}
.ycc{bottom:405.185333pt;}
.yc9{bottom:413.156000pt;}
.y15a{bottom:415.182667pt;}
.y101{bottom:415.185333pt;}
.y19e{bottom:417.886667pt;}
.y8f{bottom:418.145333pt;}
.y63{bottom:419.166667pt;}
.y33{bottom:419.217333pt;}
.y133{bottom:420.230667pt;}
.y179{bottom:420.906667pt;}
.ycb{bottom:421.125333pt;}
.y2{bottom:425.725333pt;}
.yc8{bottom:429.096000pt;}
.y159{bottom:433.752000pt;}
.yff{bottom:434.206667pt;}
.y8e{bottom:436.716000pt;}
.yca{bottom:437.065333pt;}
.y62{bottom:437.737333pt;}
.y32{bottom:437.788000pt;}
.y132{bottom:438.801333pt;}
.y178{bottom:439.477333pt;}
.yfe{bottom:440.517333pt;}
.y1{bottom:441.625333pt;}
.y100{bottom:446.826667pt;}
.y1cf{bottom:447.461333pt;}
.yfc{bottom:448.105333pt;}
.y158{bottom:452.322667pt;}
.y19d{bottom:452.397333pt;}
.y8d{bottom:455.285333pt;}
.y61{bottom:456.308000pt;}
.y31{bottom:456.358667pt;}
.y131{bottom:457.372000pt;}
.y177{bottom:458.048000pt;}
.yc7{bottom:459.408000pt;}
.y1ce{bottom:464.484000pt;}
.yfd{bottom:465.848000pt;}
.y157{bottom:470.893333pt;}
.y8c{bottom:473.856000pt;}
.y60{bottom:474.877333pt;}
.y30{bottom:474.929333pt;}
.yc5{bottom:475.348000pt;}
.y130{bottom:475.941333pt;}
.y176{bottom:476.617333pt;}
.y19c{bottom:477.698667pt;}
.y1cd{bottom:481.506667pt;}
.y156{bottom:489.462667pt;}
.yc6{bottom:491.289333pt;}
.y8b{bottom:492.426667pt;}
.y5f{bottom:493.448000pt;}
.y2f{bottom:493.498667pt;}
.y12f{bottom:494.512000pt;}
.y19b{bottom:495.032000pt;}
.y175{bottom:495.188000pt;}
.yfb{bottom:495.216000pt;}
.y155{bottom:508.033333pt;}
.y5e{bottom:512.018667pt;}
.y2e{bottom:512.069333pt;}
.yfa{bottom:512.312000pt;}
.y12e{bottom:513.082667pt;}
.yc4{bottom:513.630667pt;}
.y174{bottom:513.758667pt;}
.y8a{bottom:514.981333pt;}
.y1cc{bottom:519.756000pt;}
.y19a{bottom:520.333333pt;}
.yc1{bottom:521.601333pt;}
.y154{bottom:526.604000pt;}
.yf9{bottom:529.408000pt;}
.yc3{bottom:529.570667pt;}
.y5d{bottom:530.589333pt;}
.y2d{bottom:530.640000pt;}
.y12d{bottom:531.652000pt;}
.y173{bottom:532.329333pt;}
.y1cb{bottom:536.778667pt;}
.yc0{bottom:537.541333pt;}
.y153{bottom:545.173333pt;}
.yc2{bottom:545.512000pt;}
.y199{bottom:545.636000pt;}
.y89{bottom:546.397333pt;}
.y5c{bottom:549.158667pt;}
.y2c{bottom:549.209333pt;}
.y12c{bottom:550.222667pt;}
.y172{bottom:550.898667pt;}
.y1ca{bottom:553.801333pt;}
.yf8{bottom:562.389333pt;}
.y198{bottom:562.968000pt;}
.y152{bottom:563.744000pt;}
.y88{bottom:564.968000pt;}
.y5b{bottom:567.729333pt;}
.y2b{bottom:567.780000pt;}
.ybf{bottom:567.853333pt;}
.y12b{bottom:568.793333pt;}
.y171{bottom:569.469333pt;}
.y1c9{bottom:570.824000pt;}
.ybc{bottom:575.824000pt;}
.y197{bottom:580.300000pt;}
.yf7{bottom:580.960000pt;}
.y151{bottom:582.314667pt;}
.y87{bottom:583.537333pt;}
.ybe{bottom:583.794667pt;}
.y5a{bottom:586.300000pt;}
.y2a{bottom:586.350667pt;}
.y12a{bottom:587.362667pt;}
.y1c8{bottom:587.846667pt;}
.y170{bottom:588.040000pt;}
.ybb{bottom:591.764000pt;}
.yaf{bottom:593.872000pt;}
.y13a{bottom:595.792975pt;}
.yf6{bottom:599.529333pt;}
.ybd{bottom:599.734667pt;}
.y150{bottom:600.885333pt;}
.y86{bottom:602.108000pt;}
.y139{bottom:603.000972pt;}
.y59{bottom:604.869333pt;}
.y29{bottom:604.920000pt;}
.y196{bottom:605.602667pt;}
.y129{bottom:605.933333pt;}
.y16f{bottom:606.609333pt;}
.yae{bottom:609.812000pt;}
.yf5{bottom:618.100000pt;}
.y14f{bottom:619.454667pt;}
.y85{bottom:620.678667pt;}
.y1c7{bottom:621.892000pt;}
.yba{bottom:622.076000pt;}
.y58{bottom:623.440000pt;}
.y28{bottom:623.490667pt;}
.y128{bottom:624.504000pt;}
.y16e{bottom:625.180000pt;}
.y195{bottom:630.905333pt;}
.yf4{bottom:636.670667pt;}
.yb9{bottom:638.017333pt;}
.y14e{bottom:638.025333pt;}
.y1c6{bottom:638.914667pt;}
.y57{bottom:642.010667pt;}
.y27{bottom:642.061333pt;}
.y127{bottom:643.074667pt;}
.y84{bottom:643.233333pt;}
.y16d{bottom:643.750667pt;}
.y194{bottom:648.237333pt;}
.yb6{bottom:653.957333pt;}
.yf3{bottom:655.240000pt;}
.y1c5{bottom:655.937333pt;}
.y14d{bottom:656.596000pt;}
.y56{bottom:660.580000pt;}
.y26{bottom:660.630667pt;}
.y126{bottom:661.644000pt;}
.y16c{bottom:662.320000pt;}
.y193{bottom:665.569333pt;}
.yb8{bottom:669.897333pt;}
.y1c4{bottom:672.961333pt;}
.y83{bottom:674.649333pt;}
.y14c{bottom:675.165333pt;}
.yf2{bottom:677.796000pt;}
.y55{bottom:679.150667pt;}
.y25{bottom:679.201333pt;}
.y125{bottom:680.214667pt;}
.y192{bottom:682.901333pt;}
.y16b{bottom:684.876000pt;}
.yb7{bottom:685.837333pt;}
.y1c3{bottom:689.984000pt;}
.y82{bottom:693.218667pt;}
.y14b{bottom:693.736000pt;}
.y54{bottom:697.721333pt;}
.y24{bottom:697.772000pt;}
.y124{bottom:698.785333pt;}
.y191{bottom:700.234667pt;}
.y1c2{bottom:707.006667pt;}
.yb5{bottom:708.180000pt;}
.y137{bottom:710.596000pt;}
.y81{bottom:711.789333pt;}
.yf1{bottom:712.306667pt;}
.y53{bottom:716.290667pt;}
.y23{bottom:716.342667pt;}
.y123{bottom:717.354667pt;}
.y1c1{bottom:724.029333pt;}
.yb3{bottom:724.120000pt;}
.y136{bottom:727.690667pt;}
.y80{bottom:730.360000pt;}
.yf0{bottom:730.876000pt;}
.y190{bottom:733.506667pt;}
.y52{bottom:734.861333pt;}
.y22{bottom:734.912000pt;}
.y122{bottom:735.925333pt;}
.yb4{bottom:740.060000pt;}
.y1c0{bottom:741.052000pt;}
.y7f{bottom:748.929333pt;}
.yef{bottom:749.446667pt;}
.y18f{bottom:752.077333pt;}
.y51{bottom:753.432000pt;}
.y21{bottom:753.482667pt;}
.y121{bottom:754.496000pt;}
.y1bf{bottom:758.074667pt;}
.yb2{bottom:762.402667pt;}
.y7e{bottom:767.500000pt;}
.yee{bottom:768.017333pt;}
.y18e{bottom:770.646667pt;}
.y50{bottom:772.002667pt;}
.y120{bottom:773.065333pt;}
.y1be{bottom:775.097333pt;}
.yb0{bottom:778.342667pt;}
.y7d{bottom:786.070667pt;}
.yed{bottom:786.586667pt;}
.y20{bottom:789.056000pt;}
.y18d{bottom:789.217333pt;}
.y4f{bottom:790.572000pt;}
.y11f{bottom:791.636000pt;}
.y1bd{bottom:792.120000pt;}
.yb1{bottom:794.282667pt;}
.y7c{bottom:804.640000pt;}
.yec{bottom:805.157333pt;}
.y1f{bottom:807.260000pt;}
.y18c{bottom:807.788000pt;}
.y4e{bottom:809.142667pt;}
.y11e{bottom:810.206667pt;}
.yaa{bottom:816.625333pt;}
.y1e{bottom:817.748000pt;}
.y7b{bottom:823.210667pt;}
.yeb{bottom:823.728000pt;}
.yad{bottom:824.596000pt;}
.y1bc{bottom:826.165333pt;}
.y18b{bottom:826.357333pt;}
.y4d{bottom:827.713333pt;}
.y1d{bottom:832.094667pt;}
.ya9{bottom:832.565333pt;}
.y1c{bottom:835.952000pt;}
.yac{bottom:840.536000pt;}
.y7a{bottom:841.781333pt;}
.yea{bottom:842.297333pt;}
.y1bb{bottom:843.188000pt;}
.y18a{bottom:844.928000pt;}
.y4c{bottom:846.282667pt;}
.ya8{bottom:848.505333pt;}
.y1b{bottom:850.298667pt;}
.y11d{bottom:854.509333pt;}
.yab{bottom:856.476000pt;}
.y1ba{bottom:860.210667pt;}
.y79{bottom:860.352000pt;}
.ye9{bottom:860.868000pt;}
.ya7{bottom:864.446667pt;}
.y4b{bottom:864.853333pt;}
.y11c{bottom:867.128000pt;}
.y189{bottom:867.482667pt;}
.y1b9{bottom:877.233333pt;}
.y78{bottom:878.921333pt;}
.ye8{bottom:879.438667pt;}
.y11b{bottom:879.748000pt;}
.y4a{bottom:883.424000pt;}
.ya6{bottom:886.788000pt;}
.ya1{bottom:889.310667pt;}
.y1a{bottom:890.010667pt;}
.y11a{bottom:892.366667pt;}
.y1b8{bottom:894.256000pt;}
.ya5{bottom:894.758667pt;}
.y77{bottom:897.492000pt;}
.ye7{bottom:898.009333pt;}
.y49{bottom:901.993333pt;}
.y119{bottom:904.986667pt;}
.y1b7{bottom:911.278667pt;}
.ye6{bottom:916.578667pt;}
.y118{bottom:917.605333pt;}
.y76{bottom:920.046667pt;}
.y48{bottom:920.564000pt;}
.y19{bottom:924.521333pt;}
.ya4{bottom:925.070667pt;}
.y1b6{bottom:928.301333pt;}
.ya3{bottom:933.041333pt;}
.ye5{bottom:935.149333pt;}
.y116{bottom:936.626667pt;}
.y47{bottom:939.134667pt;}
.y75{bottom:941.764000pt;}
.y115{bottom:942.937333pt;}
.y1b5{bottom:945.324000pt;}
.y117{bottom:949.246667pt;}
.y113{bottom:950.525333pt;}
.y18{bottom:952.377333pt;}
.ye4{bottom:953.720000pt;}
.y46{bottom:957.704000pt;}
.y1b4{bottom:962.346667pt;}
.ya2{bottom:963.353333pt;}
.y114{bottom:968.268000pt;}
.ye3{bottom:972.289333pt;}
.y45{bottom:976.274667pt;}
.y1b3{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.ya0{bottom:985.696000pt;}
.ye2{bottom:990.860000pt;}
.y44{bottom:994.845333pt;}
.y1b2{bottom:996.392000pt;}
.y112{bottom:997.636000pt;}
.y43{bottom:1013.414667pt;}
.y9f{bottom:1014.732000pt;}
.y42{bottom:1066.841333pt;}
.h7{height:23.209028pt;}
.h17{height:26.606317pt;}
.h16{height:26.837677pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h19{height:30.042175pt;}
.h10{height:30.732706pt;}
.h8{height:30.945242pt;}
.hb{height:31.157778pt;}
.h18{height:32.960065pt;}
.hc{height:34.813542pt;}
.hf{height:35.052646pt;}
.h14{height:36.873667pt;}
.hd{height:38.415786pt;}
.h9{height:38.681455pt;}
.h4{height:38.947124pt;}
.h1a{height:40.056234pt;}
.ha{height:46.099251pt;}
.h6{height:48.486756pt;}
.h11{height:55.970039pt;}
.h12{height:56.182575pt;}
.h13{height:56.395111pt;}
.h5{height:69.148877pt;}
.he{height:70.558788pt;}
.h15{height:553.503000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:415.783733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x58{left:-80.412170pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x52{left:55.592000pt;}
.x5a{left:67.424191pt;}
.x6c{left:74.862667pt;}
.x6b{left:76.309333pt;}
.x49{left:80.254667pt;}
.x5b{left:91.496182pt;}
.x4b{left:164.201333pt;}
.x4a{left:179.258667pt;}
.x5c{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x42{left:232.756000pt;}
.x3{left:239.790667pt;}
.x32{left:248.277333pt;}
.x5{left:250.204000pt;}
.x3a{left:258.320000pt;}
.x33{left:263.201333pt;}
.x25{left:284.957333pt;}
.x26{left:298.240000pt;}
.x18{left:315.920000pt;}
.x19{left:329.204000pt;}
.x2e{left:337.797333pt;}
.x5f{left:346.368000pt;}
.x2f{left:351.080000pt;}
.x30{left:354.408000pt;}
.x46{left:356.442667pt;}
.x3f{left:358.798667pt;}
.x43{left:364.517333pt;}
.x31{left:367.692000pt;}
.x47{left:369.452000pt;}
.x44{left:370.972000pt;}
.x6{left:372.472000pt;}
.x40{left:373.476000pt;}
.x37{left:377.016000pt;}
.x7{left:379.114667pt;}
.x3b{left:381.128000pt;}
.x35{left:386.820000pt;}
.x34{left:390.452000pt;}
.x3c{left:392.166667pt;}
.x41{left:394.058667pt;}
.x3e{left:396.018667pt;}
.x38{left:397.997333pt;}
.x48{left:402.401333pt;}
.x3d{left:404.480000pt;}
.x39{left:405.529333pt;}
.x45{left:412.244000pt;}
.x53{left:421.354667pt;}
.x16{left:428.720000pt;}
.x54{left:432.280000pt;}
.x60{left:440.268000pt;}
.x17{left:442.004000pt;}
.x59{left:444.416040pt;}
.x66{left:446.020000pt;}
.x61{left:446.910667pt;}
.xe{left:457.960000pt;}
.xf{left:464.601333pt;}
.x10{left:471.210667pt;}
.x4c{left:482.054667pt;}
.x11{left:484.493333pt;}
.x4d{left:503.646667pt;}
.x36{left:549.857333pt;}
.x8{left:564.936000pt;}
.x5d{left:566.226667pt;}
.x4e{left:570.533333pt;}
.x9{left:571.577333pt;}
.x5e{left:579.509333pt;}
.x62{left:584.869333pt;}
.x4f{left:595.660000pt;}
.x63{left:597.754667pt;}
.x64{left:604.326667pt;}
.x67{left:607.780000pt;}
.x65{left:617.210667pt;}
.x68{left:621.064000pt;}
.x69{left:624.417333pt;}
.x27{left:630.152000pt;}
.x28{left:636.794667pt;}
.x6a{left:637.701333pt;}
.x29{left:640.049333pt;}
.xa{left:650.621333pt;}
.x2a{left:653.332000pt;}
.xb{left:657.262667pt;}
.xc{left:660.649333pt;}
.x50{left:666.080000pt;}
.xd{left:667.292000pt;}
.x2b{left:669.870667pt;}
.x20{left:671.674667pt;}
.x55{left:673.861333pt;}
.x2c{left:676.378667pt;}
.x21{left:678.316000pt;}
.x22{left:681.640000pt;}
.x56{left:684.788000pt;}
.x51{left:687.672000pt;}
.x2d{left:689.662667pt;}
.x23{left:694.924000pt;}
.x1a{left:696.918667pt;}
.x24{left:698.248000pt;}
.x1b{left:703.560000pt;}
.x1c{left:706.948000pt;}
.x57{left:709.828000pt;}
.x12{left:711.428000pt;}
.x1d{left:720.230667pt;}
.x13{left:724.712000pt;}
.x14{left:728.016000pt;}
.x1e{left:730.310667pt;}
.x15{left:741.300000pt;}
.x1f{left:743.594667pt;}
}




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