
    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_e58966ca358713f7921db33a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a7418d2fab24d9436d3f5c7b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_2cea87e1aae46c0ae158d949.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_348a5c369adb41e72e8f52fc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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;}
.m1{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);}
.m2b{transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m21{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);}
.m3b{transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m23{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);}
.m40{transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m14{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);}
.m6{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);}
.me{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);}
.m42{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m33{transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m26{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);}
.m41{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m27{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);}
.m35{transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m1c{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);}
.m2f{transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m31{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.mb{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1b{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);}
.m3e{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m10{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m24{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);}
.m43{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m15{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);}
.m34{transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.mc{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);}
.m39{transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m44{transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m28{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);}
.m30{transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1f{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);}
.m1d{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);}
.m1a{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);}
.m37{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m7{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);}
.m2a{transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254997,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);}
.m29{transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls6{letter-spacing:-15.741918px;}
.ls8{letter-spacing:-14.985756px;}
.ls7{letter-spacing:-11.823624px;}
.ls5{letter-spacing:-7.905330px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls9{letter-spacing:16.498080px;}
.lsd{letter-spacing:16.910532px;}
.lsb{letter-spacing:17.185500px;}
.lsa{letter-spacing:17.460468px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws24{word-spacing:-17.185500px;}
.ws153{word-spacing:-3.712068px;}
.ws10a{word-spacing:-3.711578px;}
.wsd2{word-spacing:-3.581588px;}
.ws57{word-spacing:-3.574584px;}
.ws63{word-spacing:-3.505842px;}
.ws13e{word-spacing:-3.301379px;}
.ws1a{word-spacing:-3.299616px;}
.ws152{word-spacing:-3.230874px;}
.ws58{word-spacing:-3.162132px;}
.ws6b{word-spacing:-3.093390px;}
.ws165{word-spacing:-3.024648px;}
.ws10{word-spacing:-2.988780px;}
.ws67{word-spacing:-2.955906px;}
.ws60{word-spacing:-2.887164px;}
.ws171{word-spacing:-2.818422px;}
.ws41{word-spacing:-2.680938px;}
.wsc5{word-spacing:-2.612196px;}
.wsa1{word-spacing:-2.543454px;}
.ws101{word-spacing:-2.543136px;}
.ws92{word-spacing:-2.474712px;}
.ws3e{word-spacing:-2.405970px;}
.ws10e{word-spacing:-2.405627px;}
.ws7a{word-spacing:-2.337228px;}
.ws150{word-spacing:-2.268486px;}
.ws65{word-spacing:-2.199744px;}
.ws3f{word-spacing:-2.131002px;}
.ws25{word-spacing:-2.062260px;}
.ws116{word-spacing:-1.997314px;}
.ws29{word-spacing:-1.993518px;}
.ws16c{word-spacing:-1.924776px;}
.ws5b{word-spacing:-1.856034px;}
.ws166{word-spacing:-1.787292px;}
.ws141{word-spacing:-1.723203px;}
.ws7f{word-spacing:-1.718550px;}
.ws163{word-spacing:-1.649808px;}
.wsba{word-spacing:-1.581066px;}
.ws9f{word-spacing:-1.512324px;}
.ws40{word-spacing:-1.443582px;}
.ws2f{word-spacing:-1.374840px;}
.ws160{word-spacing:-1.306098px;}
.ws85{word-spacing:-1.237356px;}
.ws7e{word-spacing:-1.099872px;}
.ws4d{word-spacing:-1.031130px;}
.wsb2{word-spacing:-0.896634px;}
.ws49{word-spacing:-0.893646px;}
.ws23{word-spacing:-0.824904px;}
.wsa7{word-spacing:-0.756162px;}
.wse2{word-spacing:-0.694179px;}
.ws10c{word-spacing:-0.689477px;}
.ws174{word-spacing:-0.687420px;}
.ws9d{word-spacing:-0.618678px;}
.ws99{word-spacing:-0.549936px;}
.ws59{word-spacing:-0.481194px;}
.ws3c{word-spacing:-0.412452px;}
.wsfe{word-spacing:-0.410012px;}
.wsf{word-spacing:-0.358654px;}
.ws4f{word-spacing:-0.343710px;}
.ws133{word-spacing:-0.341476px;}
.wsfd{word-spacing:-0.338538px;}
.wsd5{word-spacing:-0.280358px;}
.ws12d{word-spacing:-0.275797px;}
.wsdb{word-spacing:-0.275507px;}
.ws2c{word-spacing:-0.274968px;}
.ws8{word-spacing:-0.239102px;}
.ws107{word-spacing:-0.216111px;}
.wseb{word-spacing:-0.215767px;}
.ws14d{word-spacing:-0.214862px;}
.ws137{word-spacing:-0.212667px;}
.ws117{word-spacing:-0.207496px;}
.ws30{word-spacing:-0.206226px;}
.ws130{word-spacing:-0.205988px;}
.wsd6{word-spacing:-0.200458px;}
.ws138{word-spacing:-0.200321px;}
.ws13d{word-spacing:-0.148319px;}
.ws108{word-spacing:-0.142916px;}
.wsdd{word-spacing:-0.139972px;}
.wsf6{word-spacing:-0.138634px;}
.ws14{word-spacing:-0.137484px;}
.wsd9{word-spacing:-0.136649px;}
.ws9{word-spacing:-0.119551px;}
.wse3{word-spacing:-0.075202px;}
.ws13{word-spacing:-0.068742px;}
.wsda{word-spacing:-0.060001px;}
.wsb1{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.wsde{word-spacing:-0.009478px;}
.wsf9{word-spacing:-0.005192px;}
.wsf1{word-spacing:-0.004758px;}
.ws125{word-spacing:-0.004224px;}
.wsf4{word-spacing:-0.003120px;}
.wsc7{word-spacing:-0.002862px;}
.wsf3{word-spacing:-0.002310px;}
.wsce{word-spacing:-0.001776px;}
.wscc{word-spacing:-0.000966px;}
.ws124{word-spacing:-0.000914px;}
.ws113{word-spacing:-0.000681px;}
.ws148{word-spacing:-0.000396px;}
.wscd{word-spacing:-0.000138px;}
.ws2{word-spacing:0.000000px;}
.wse4{word-spacing:0.000365px;}
.wsed{word-spacing:0.000414px;}
.ws109{word-spacing:0.000970px;}
.wsca{word-spacing:0.001224px;}
.ws147{word-spacing:0.001518px;}
.wsea{word-spacing:0.002173px;}
.wsf0{word-spacing:0.007188px;}
.ws123{word-spacing:0.007454px;}
.wsf8{word-spacing:0.053968px;}
.wsb{word-spacing:0.059776px;}
.wse5{word-spacing:0.062620px;}
.wsee{word-spacing:0.064706px;}
.ws128{word-spacing:0.066265px;}
.wsf7{word-spacing:0.067701px;}
.ws2a{word-spacing:0.068742px;}
.ws12c{word-spacing:0.069626px;}
.wse0{word-spacing:0.070384px;}
.wsd7{word-spacing:0.070708px;}
.ws11{word-spacing:0.107597px;}
.ws5{word-spacing:0.119551px;}
.ws140{word-spacing:0.137048px;}
.ws36{word-spacing:0.137484px;}
.ws135{word-spacing:0.140448px;}
.wse7{word-spacing:0.142890px;}
.wsd{word-spacing:0.179327px;}
.ws134{word-spacing:0.188980px;}
.wse1{word-spacing:0.204389px;}
.wsef{word-spacing:0.205391px;}
.ws1c{word-spacing:0.206226px;}
.wsff{word-spacing:0.208954px;}
.ws10d{word-spacing:0.210285px;}
.wse{word-spacing:0.239102px;}
.ws127{word-spacing:0.266285px;}
.ws114{word-spacing:0.267483px;}
.wsd0{word-spacing:0.274262px;}
.ws3a{word-spacing:0.274968px;}
.wsfa{word-spacing:0.275980px;}
.wsb4{word-spacing:0.298878px;}
.ws149{word-spacing:0.342404px;}
.ws15{word-spacing:0.343710px;}
.ws10f{word-spacing:0.346360px;}
.ws46{word-spacing:0.412452px;}
.ws145{word-spacing:0.413675px;}
.ws115{word-spacing:0.414613px;}
.wsc{word-spacing:0.418429px;}
.wsa9{word-spacing:0.481194px;}
.ws3{word-spacing:0.516462px;}
.ws47{word-spacing:0.549936px;}
.wsa4{word-spacing:0.618678px;}
.ws142{word-spacing:0.618749px;}
.wse9{word-spacing:0.686891px;}
.wsa2{word-spacing:0.687420px;}
.wsb5{word-spacing:0.756162px;}
.wsd8{word-spacing:0.756621px;}
.ws6a{word-spacing:0.824904px;}
.ws13a{word-spacing:0.893634px;}
.ws71{word-spacing:0.893646px;}
.ws6{word-spacing:0.956410px;}
.ws52{word-spacing:0.962388px;}
.ws1b{word-spacing:1.031130px;}
.ws64{word-spacing:1.099872px;}
.wsc2{word-spacing:1.168614px;}
.ws13b{word-spacing:1.169379px;}
.wsad{word-spacing:1.237356px;}
.ws96{word-spacing:1.306098px;}
.ws35{word-spacing:1.374840px;}
.ws144{word-spacing:1.376981px;}
.ws70{word-spacing:1.443582px;}
.ws139{word-spacing:1.512277px;}
.ws50{word-spacing:1.512324px;}
.ws44{word-spacing:1.581066px;}
.ws16a{word-spacing:1.649808px;}
.ws13f{word-spacing:1.717903px;}
.wsd3{word-spacing:1.717950px;}
.wsb8{word-spacing:1.718550px;}
.ws7d{word-spacing:1.856034px;}
.ws1e{word-spacing:1.924776px;}
.wse8{word-spacing:1.928211px;}
.ws4c{word-spacing:1.993518px;}
.ws161{word-spacing:2.062260px;}
.ws72{word-spacing:2.131002px;}
.wsd4{word-spacing:2.199662px;}
.ws9b{word-spacing:2.199744px;}
.ws1f{word-spacing:2.268486px;}
.wsb7{word-spacing:2.337228px;}
.ws122{word-spacing:2.337404px;}
.ws75{word-spacing:2.405970px;}
.ws79{word-spacing:2.474712px;}
.ws112{word-spacing:2.478689px;}
.ws119{word-spacing:2.543160px;}
.ws56{word-spacing:2.543454px;}
.ws7b{word-spacing:2.612196px;}
.ws62{word-spacing:2.680938px;}
.ws12b{word-spacing:2.681762px;}
.wsaf{word-spacing:2.749680px;}
.ws39{word-spacing:2.818422px;}
.ws3b{word-spacing:2.887164px;}
.wsb3{word-spacing:2.988780px;}
.ws4e{word-spacing:3.024648px;}
.ws102{word-spacing:3.024789px;}
.wse6{word-spacing:3.091943px;}
.ws43{word-spacing:3.093390px;}
.ws42{word-spacing:3.162132px;}
.ws132{word-spacing:3.163520px;}
.ws8f{word-spacing:3.230874px;}
.ws11a{word-spacing:3.234839px;}
.ws5a{word-spacing:3.299616px;}
.wsdc{word-spacing:3.369287px;}
.ws7c{word-spacing:3.437100px;}
.ws37{word-spacing:3.505842px;}
.ws167{word-spacing:3.574584px;}
.ws80{word-spacing:3.643326px;}
.ws26{word-spacing:3.712068px;}
.ws5e{word-spacing:3.780810px;}
.ws55{word-spacing:3.849552px;}
.ws12f{word-spacing:3.917329px;}
.ws9c{word-spacing:3.918294px;}
.ws14a{word-spacing:3.920506px;}
.ws2b{word-spacing:3.987036px;}
.ws154{word-spacing:4.055778px;}
.wsb9{word-spacing:4.124520px;}
.ws34{word-spacing:4.262004px;}
.ws12a{word-spacing:4.263471px;}
.ws6c{word-spacing:4.330746px;}
.ws22{word-spacing:4.399488px;}
.ws121{word-spacing:4.403723px;}
.ws90{word-spacing:4.468230px;}
.ws151{word-spacing:4.536972px;}
.ws76{word-spacing:4.605714px;}
.ws27{word-spacing:4.674456px;}
.ws69{word-spacing:4.743198px;}
.ws78{word-spacing:4.811940px;}
.ws118{word-spacing:4.880329px;}
.ws89{word-spacing:4.880682px;}
.ws74{word-spacing:4.949424px;}
.wsac{word-spacing:5.018166px;}
.wsc8{word-spacing:5.055189px;}
.ws5c{word-spacing:5.086908px;}
.ws6e{word-spacing:5.155650px;}
.ws45{word-spacing:5.293134px;}
.ws97{word-spacing:5.361876px;}
.ws11d{word-spacing:5.365864px;}
.ws11f{word-spacing:5.365994px;}
.ws11b{word-spacing:5.423744px;}
.ws100{word-spacing:5.427265px;}
.ws6f{word-spacing:5.430618px;}
.ws82{word-spacing:5.499360px;}
.wsa3{word-spacing:5.568102px;}
.ws5f{word-spacing:5.636844px;}
.ws18{word-spacing:5.774328px;}
.ws7{word-spacing:5.798233px;}
.ws54{word-spacing:5.843070px;}
.ws91{word-spacing:5.911812px;}
.wsa{word-spacing:5.977560px;}
.ws17{word-spacing:5.980554px;}
.ws5d{word-spacing:6.049296px;}
.ws61{word-spacing:6.118038px;}
.wsc3{word-spacing:6.186780px;}
.ws28{word-spacing:6.255522px;}
.wsec{word-spacing:6.323111px;}
.wsab{word-spacing:6.324264px;}
.ws68{word-spacing:6.393006px;}
.ws169{word-spacing:6.461748px;}
.wsc9{word-spacing:6.462572px;}
.wsa6{word-spacing:6.530490px;}
.ws162{word-spacing:6.599232px;}
.wsfb{word-spacing:6.599456px;}
.ws9a{word-spacing:6.667974px;}
.ws4a{word-spacing:6.736716px;}
.ws10b{word-spacing:6.740763px;}
.wsa0{word-spacing:6.805458px;}
.wsc1{word-spacing:6.874200px;}
.ws136{word-spacing:7.010625px;}
.wsbf{word-spacing:7.011684px;}
.ws159{word-spacing:7.080426px;}
.ws81{word-spacing:7.149168px;}
.ws15a{word-spacing:7.217910px;}
.ws66{word-spacing:7.286652px;}
.wsaa{word-spacing:7.355394px;}
.ws14b{word-spacing:7.422395px;}
.ws1d{word-spacing:7.424136px;}
.ws98{word-spacing:7.492878px;}
.ws155{word-spacing:7.560456px;}
.ws48{word-spacing:7.561620px;}
.ws15c{word-spacing:7.562586px;}
.wsdf{word-spacing:7.564302px;}
.ws31{word-spacing:7.630362px;}
.ws8d{word-spacing:7.699104px;}
.ws2d{word-spacing:7.767846px;}
.ws4b{word-spacing:7.836588px;}
.ws53{word-spacing:7.905330px;}
.ws12e{word-spacing:7.908789px;}
.ws51{word-spacing:7.974072px;}
.ws94{word-spacing:8.111556px;}
.ws2e{word-spacing:8.180298px;}
.ws86{word-spacing:8.249040px;}
.ws131{word-spacing:8.250958px;}
.ws111{word-spacing:8.252546px;}
.ws87{word-spacing:8.386524px;}
.ws38{word-spacing:8.455266px;}
.ws6d{word-spacing:8.524008px;}
.ws170{word-spacing:8.592750px;}
.wsa8{word-spacing:8.661492px;}
.ws158{word-spacing:8.730234px;}
.ws19{word-spacing:8.798976px;}
.ws20{word-spacing:8.867718px;}
.wsb6{word-spacing:8.936460px;}
.wsc6{word-spacing:9.005202px;}
.ws32{word-spacing:9.073944px;}
.ws33{word-spacing:9.142686px;}
.ws8c{word-spacing:9.211428px;}
.ws11c{word-spacing:9.212110px;}
.ws3d{word-spacing:9.348912px;}
.wsbb{word-spacing:9.417654px;}
.ws143{word-spacing:9.418983px;}
.ws126{word-spacing:9.554267px;}
.ws8b{word-spacing:9.555138px;}
.ws93{word-spacing:9.623880px;}
.ws16b{word-spacing:9.692622px;}
.ws15e{word-spacing:9.898848px;}
.ws120{word-spacing:9.967766px;}
.ws16{word-spacing:10.105074px;}
.ws21{word-spacing:10.173816px;}
.ws164{word-spacing:10.380042px;}
.wsa5{word-spacing:10.448784px;}
.ws157{word-spacing:10.517526px;}
.ws173{word-spacing:10.586268px;}
.ws13c{word-spacing:10.652575px;}
.ws15f{word-spacing:10.655010px;}
.ws110{word-spacing:10.724881px;}
.ws156{word-spacing:10.929978px;}
.ws104{word-spacing:10.995473px;}
.ws9e{word-spacing:11.067462px;}
.ws73{word-spacing:11.204946px;}
.ws11e{word-spacing:11.459291px;}
.wsc0{word-spacing:11.548656px;}
.ws8e{word-spacing:11.617398px;}
.ws95{word-spacing:11.686140px;}
.wsc4{word-spacing:11.823624px;}
.ws77{word-spacing:12.236076px;}
.wsd1{word-spacing:12.286931px;}
.ws88{word-spacing:12.923496px;}
.ws103{word-spacing:12.937244px;}
.ws172{word-spacing:13.885884px;}
.wsb0{word-spacing:14.884124px;}
.ws8a{word-spacing:15.329466px;}
.ws14c{word-spacing:15.744177px;}
.ws129{word-spacing:15.935718px;}
.wsbd{word-spacing:16.635564px;}
.ws84{word-spacing:16.773048px;}
.ws83{word-spacing:16.841790px;}
.ws106{word-spacing:16.879206px;}
.ws0{word-spacing:16.880672px;}
.wsf2{word-spacing:17.114430px;}
.wsf5{word-spacing:17.115810px;}
.wscb{word-spacing:17.116344px;}
.ws15b{word-spacing:17.116758px;}
.ws4{word-spacing:18.649987px;}
.ws14e{word-spacing:19.179512px;}
.ws14f{word-spacing:19.247760px;}
.wsbc{word-spacing:19.349392px;}
.wsfc{word-spacing:22.466121px;}
.wsbe{word-spacing:23.303538px;}
.ws16f{word-spacing:35.677098px;}
.wsae{word-spacing:42.207588px;}
.ws16e{word-spacing:50.181660px;}
.ws16d{word-spacing:50.937822px;}
.ws168{word-spacing:51.693984px;}
.ws15d{word-spacing:54.581148px;}
.ws146{word-spacing:54.582000px;}
.wscf{word-spacing:71.700258px;}
.ws12{word-spacing:77.630692px;}
.ws105{word-spacing:943.119258px;}
._12{margin-left:-26.671896px;}
._1d{margin-left:-8.891632px;}
._a{margin-left:-6.993745px;}
._29{margin-left:-5.905805px;}
._6{margin-left:-4.841824px;}
._4{margin-left:-3.825638px;}
._8{margin-left:-2.391024px;}
._1{margin-left:-1.315063px;}
._0{width:1.386797px;}
._30{width:7.190413px;}
._3a{width:9.067070px;}
._39{width:11.885492px;}
._38{width:14.538606px;}
._c{width:16.002026px;}
._9{width:17.275148px;}
._7{width:18.769538px;}
._5{width:20.503031px;}
._2{width:22.176748px;}
._20{width:23.441022px;}
._15{width:24.609636px;}
._25{width:25.640766px;}
._10{width:26.794432px;}
._17{width:27.840510px;}
._24{width:29.352834px;}
._16{width:30.590190px;}
._1b{width:31.719946px;}
._d{width:32.823127px;}
._21{width:34.057174px;}
._3b{width:35.199069px;}
._3{width:36.343565px;}
._1a{width:37.509218px;}
._18{width:38.770488px;}
._e{width:40.611576px;}
._23{width:41.804101px;}
._1c{width:43.881299px;}
._22{width:45.094752px;}
._13{width:46.469592px;}
._f{width:47.790628px;}
._11{width:48.806820px;}
._14{width:50.097972px;}
._40{width:54.291234px;}
._1f{width:56.780892px;}
._b{width:59.775600px;}
._19{width:67.367160px;}
._1e{width:68.496916px;}
._28{width:71.730720px;}
._2a{width:77.708400px;}
._2d{width:106.140000px;}
._41{width:114.096024px;}
._27{width:120.447834px;}
._32{width:125.326909px;}
._45{width:140.508648px;}
._48{width:142.409575px;}
._42{width:184.479679px;}
._43{width:188.146854px;}
._4b{width:198.320670px;}
._49{width:203.148306px;}
._26{width:207.899537px;}
._2e{width:239.704104px;}
._2c{width:281.638380px;}
._2b{width:286.734511px;}
._34{width:299.542176px;}
._46{width:311.057550px;}
._44{width:377.584860px;}
._31{width:392.449776px;}
._47{width:445.791870px;}
._4d{width:469.744007px;}
._4a{width:473.524817px;}
._4c{width:481.155179px;}
._36{width:570.699000px;}
._35{width:711.963000px;}
._2f{width:720.189469px;}
._33{width:742.485000px;}
._3d{width:835.629000px;}
._3e{width:843.945000px;}
._37{width:901.604677px;}
._3c{width:955.857000px;}
._3f{width:998.462677px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:47.820000px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:53.796000px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y7d{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y7c{bottom:88.179000px;}
.y165{bottom:89.011500px;}
.y25{bottom:89.215500px;}
.ya9{bottom:89.719500px;}
.y170{bottom:90.025500px;}
.y5e{bottom:90.213000px;}
.y52{bottom:90.733500px;}
.y62{bottom:91.227000px;}
.y156{bottom:92.016000px;}
.y181{bottom:94.426500px;}
.y11d{bottom:94.444500px;}
.y186{bottom:95.440500px;}
.y125{bottom:95.458500px;}
.yb0{bottom:99.448500px;}
.yb7{bottom:100.462500px;}
.y147{bottom:102.364500px;}
.yde{bottom:103.245000px;}
.y14d{bottom:103.378500px;}
.ye8{bottom:104.259000px;}
.y7b{bottom:110.976000px;}
.y164{bottom:111.808500px;}
.y24{bottom:112.012500px;}
.ya8{bottom:112.516500px;}
.y16f{bottom:112.822500px;}
.y5d{bottom:113.010000px;}
.y51{bottom:113.530500px;}
.y61{bottom:114.024000px;}
.y155{bottom:114.813000px;}
.y180{bottom:117.223500px;}
.y11c{bottom:117.241500px;}
.y185{bottom:118.237500px;}
.y124{bottom:118.255500px;}
.yaf{bottom:122.245500px;}
.yb6{bottom:123.259500px;}
.y146{bottom:125.161500px;}
.ydd{bottom:126.042000px;}
.y14c{bottom:126.175500px;}
.ye7{bottom:127.056000px;}
.y193{bottom:127.092000px;}
.y7a{bottom:133.773000px;}
.y163{bottom:134.605500px;}
.y23{bottom:134.809500px;}
.ya7{bottom:135.313500px;}
.y16e{bottom:135.619500px;}
.y5c{bottom:135.807000px;}
.y50{bottom:136.327500px;}
.y60{bottom:136.821000px;}
.y154{bottom:137.610000px;}
.y17f{bottom:140.020500px;}
.y11b{bottom:140.038500px;}
.y184{bottom:141.034500px;}
.y123{bottom:141.052500px;}
.yae{bottom:145.042500px;}
.yb5{bottom:146.056500px;}
.y145{bottom:147.958500px;}
.ydc{bottom:148.840500px;}
.y14b{bottom:148.972500px;}
.ye6{bottom:149.853000px;}
.y192{bottom:149.889000px;}
.y79{bottom:156.570000px;}
.y162{bottom:157.402500px;}
.y22{bottom:157.606500px;}
.ya6{bottom:158.110500px;}
.y16d{bottom:158.416500px;}
.y5b{bottom:158.604000px;}
.y4f{bottom:159.124500px;}
.y5f{bottom:159.618000px;}
.y17e{bottom:162.817500px;}
.y11a{bottom:162.835500px;}
.y183{bottom:163.831500px;}
.y122{bottom:163.849500px;}
.yad{bottom:167.839500px;}
.yb4{bottom:168.853500px;}
.y144{bottom:170.755500px;}
.ydb{bottom:171.637500px;}
.y14a{bottom:171.769500px;}
.ye5{bottom:172.651500px;}
.y191{bottom:172.686000px;}
.y78{bottom:179.367000px;}
.y161{bottom:180.199500px;}
.y21{bottom:180.403500px;}
.ya5{bottom:180.907500px;}
.y16c{bottom:181.213500px;}
.y4e{bottom:181.921500px;}
.y17d{bottom:185.616000px;}
.y119{bottom:185.632500px;}
.y182{bottom:186.630000px;}
.y121{bottom:186.646500px;}
.y153{bottom:188.947500px;}
.yac{bottom:190.636500px;}
.yb3{bottom:191.650500px;}
.y143{bottom:193.552500px;}
.yda{bottom:194.434500px;}
.y149{bottom:194.566500px;}
.ye4{bottom:195.448500px;}
.y190{bottom:195.483000px;}
.y5a{bottom:200.347500px;}
.y77{bottom:202.164000px;}
.y160{bottom:202.996500px;}
.y20{bottom:203.200500px;}
.ya4{bottom:203.704500px;}
.y16b{bottom:204.010500px;}
.y4d{bottom:204.718500px;}
.y118{bottom:208.429500px;}
.y120{bottom:209.443500px;}
.yab{bottom:213.433500px;}
.yb2{bottom:214.447500px;}
.y142{bottom:216.349500px;}
.yd9{bottom:217.231500px;}
.y148{bottom:217.363500px;}
.ye3{bottom:218.245500px;}
.y18e{bottom:218.280000px;}
.y18f{bottom:218.367000px;}
.y152{bottom:222.237000px;}
.y59{bottom:223.144500px;}
.y76{bottom:224.961000px;}
.y15f{bottom:225.793500px;}
.y1f{bottom:225.999000px;}
.ya3{bottom:226.501500px;}
.y16a{bottom:226.807500px;}
.y17c{bottom:227.359500px;}
.y4c{bottom:227.515500px;}
.y117{bottom:231.226500px;}
.y11f{bottom:232.240500px;}
.yaa{bottom:236.230500px;}
.yb1{bottom:237.244500px;}
.yd8{bottom:240.028500px;}
.ye2{bottom:241.042500px;}
.y18d{bottom:241.078500px;}
.y58{bottom:245.941500px;}
.y75{bottom:247.758000px;}
.y151{bottom:248.022000px;}
.y15e{bottom:248.590500px;}
.y1e{bottom:248.796000px;}
.ya2{bottom:249.298500px;}
.y169{bottom:249.604500px;}
.y17b{bottom:250.156500px;}
.y4b{bottom:250.312500px;}
.y116{bottom:254.023500px;}
.y11e{bottom:255.037500px;}
.yd7{bottom:262.825500px;}
.ye1{bottom:263.839500px;}
.y18c{bottom:263.875500px;}
.y141{bottom:268.701000px;}
.y57{bottom:268.740000px;}
.y74{bottom:270.555000px;}
.y15d{bottom:271.387500px;}
.y1d{bottom:271.593000px;}
.ya1{bottom:272.097000px;}
.y168{bottom:272.401500px;}
.y17a{bottom:272.953500px;}
.y4a{bottom:273.109500px;}
.y150{bottom:273.808500px;}
.yd6{bottom:285.622500px;}
.ye0{bottom:286.636500px;}
.y18b{bottom:286.672500px;}
.y56{bottom:291.537000px;}
.y73{bottom:293.352000px;}
.y15c{bottom:294.184500px;}
.y1c{bottom:294.390000px;}
.ya0{bottom:294.894000px;}
.y167{bottom:295.198500px;}
.y179{bottom:295.750500px;}
.y49{bottom:295.908000px;}
.y140{bottom:301.990500px;}
.y14f{bottom:307.098000px;}
.yd5{bottom:308.419500px;}
.ydf{bottom:309.433500px;}
.y18a{bottom:309.469500px;}
.y115{bottom:314.334000px;}
.y72{bottom:316.149000px;}
.y15b{bottom:316.981500px;}
.y1b{bottom:317.187000px;}
.y9f{bottom:317.691000px;}
.y166{bottom:317.995500px;}
.y178{bottom:318.547500px;}
.y48{bottom:318.705000px;}
.y55{bottom:324.795000px;}
.y13f{bottom:327.777000px;}
.y189{bottom:332.266500px;}
.y103{bottom:336.117000px;}
.y114{bottom:337.131000px;}
.y71{bottom:338.946000px;}
.y9e{bottom:340.488000px;}
.y177{bottom:341.344500px;}
.y47{bottom:341.502000px;}
.y14e{bottom:353.205000px;}
.y13e{bottom:353.562000px;}
.y188{bottom:355.063500px;}
.y102{bottom:358.914000px;}
.y113{bottom:359.928000px;}
.y70{bottom:361.743000px;}
.y9d{bottom:363.285000px;}
.y46{bottom:364.299000px;}
.yd4{bottom:368.095500px;}
.y1a{bottom:368.377500px;}
.y15a{bottom:370.702500px;}
.y176{bottom:374.602500px;}
.y101{bottom:381.711000px;}
.y112{bottom:382.725000px;}
.y6f{bottom:384.541500px;}
.y9c{bottom:386.082000px;}
.y13d{bottom:386.851500px;}
.y45{bottom:387.096000px;}
.y187{bottom:388.321500px;}
.yd3{bottom:390.892500px;}
.y159{bottom:401.644500px;}
.y100{bottom:404.508000px;}
.y111{bottom:405.522000px;}
.y6e{bottom:407.338500px;}
.y9b{bottom:408.879000px;}
.y19{bottom:409.551000px;}
.y44{bottom:409.893000px;}
.yd2{bottom:413.691000px;}
.yff{bottom:427.305000px;}
.y18{bottom:428.125500px;}
.y110{bottom:428.319000px;}
.y6d{bottom:430.135500px;}
.y175{bottom:430.947000px;}
.y9a{bottom:431.676000px;}
.y43{bottom:432.690000px;}
.y13c{bottom:432.958500px;}
.yd1{bottom:436.488000px;}
.y158{bottom:440.091000px;}
.y17{bottom:449.949000px;}
.yfe{bottom:450.102000px;}
.y10f{bottom:451.116000px;}
.y6c{bottom:452.932500px;}
.y99{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.yd0{bottom:459.285000px;}
.y174{bottom:461.890500px;}
.y13b{bottom:466.849500px;}
.yfd{bottom:472.899000px;}
.y10e{bottom:473.913000px;}
.y6b{bottom:475.729500px;}
.y98{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.y194{bottom:478.369500px;}
.ycf{bottom:482.082000px;}
.y16{bottom:483.598500px;}
.y13a{bottom:489.646500px;}
.y157{bottom:489.987000px;}
.y173{bottom:492.834000px;}
.yfc{bottom:495.696000px;}
.y10d{bottom:496.710000px;}
.y6a{bottom:498.526500px;}
.y97{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.yce{bottom:504.879000px;}
.y139{bottom:512.443500px;}
.yfb{bottom:518.493000px;}
.y15{bottom:519.000000px;}
.y10c{bottom:519.507000px;}
.y69{bottom:521.323500px;}
.y96{bottom:522.864000px;}
.y3f{bottom:523.878000px;}
.ycd{bottom:527.676000px;}
.y172{bottom:531.279000px;}
.y138{bottom:535.240500px;}
.y14{bottom:540.954000px;}
.yfa{bottom:541.290000px;}
.y10b{bottom:542.304000px;}
.y68{bottom:544.120500px;}
.y95{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.ycc{bottom:550.473000px;}
.y137{bottom:558.037500px;}
.y13{bottom:562.906500px;}
.yf9{bottom:564.088500px;}
.y10a{bottom:565.101000px;}
.y67{bottom:566.917500px;}
.y94{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.ycb{bottom:573.270000px;}
.y136{bottom:580.834500px;}
.y171{bottom:581.176500px;}
.y12{bottom:584.859000px;}
.yf8{bottom:586.885500px;}
.y109{bottom:587.899500px;}
.y66{bottom:589.714500px;}
.y93{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.yca{bottom:596.067000px;}
.y135{bottom:603.631500px;}
.y11{bottom:606.811500px;}
.yf7{bottom:609.682500px;}
.y108{bottom:610.696500px;}
.y65{bottom:612.511500px;}
.y92{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.yc9{bottom:618.864000px;}
.y134{bottom:626.428500px;}
.y10{bottom:628.764000px;}
.yf6{bottom:632.479500px;}
.y107{bottom:633.493500px;}
.y64{bottom:635.308500px;}
.y91{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.yc8{bottom:641.661000px;}
.y133{bottom:649.227000px;}
.yf{bottom:650.718000px;}
.yf5{bottom:655.276500px;}
.y106{bottom:656.290500px;}
.y63{bottom:657.091500px;}
.y90{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y132{bottom:672.024000px;}
.ye{bottom:672.670500px;}
.yf4{bottom:678.073500px;}
.y105{bottom:679.087500px;}
.y8f{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.yc7{bottom:686.784000px;}
.yd{bottom:694.623000px;}
.y131{bottom:694.821000px;}
.yf3{bottom:700.870500px;}
.y104{bottom:701.884500px;}
.y8e{bottom:705.241500px;}
.yc6{bottom:706.203000px;}
.y37{bottom:706.255500px;}
.yc{bottom:716.575500px;}
.y130{bottom:717.618000px;}
.yc5{bottom:725.623500px;}
.y8d{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.yb{bottom:738.528000px;}
.y12f{bottom:740.415000px;}
.yf2{bottom:742.614000px;}
.y8c{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.yc4{bottom:752.514000px;}
.ya{bottom:760.480500px;}
.y12e{bottom:763.212000px;}
.yf1{bottom:765.411000px;}
.yc3{bottom:771.933000px;}
.y8b{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y9{bottom:782.434500px;}
.y12d{bottom:786.009000px;}
.yf0{bottom:788.208000px;}
.yc2{bottom:791.353500px;}
.y8a{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y8{bottom:804.387000px;}
.y12c{bottom:808.806000px;}
.yef{bottom:811.005000px;}
.yc1{bottom:818.242500px;}
.y89{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y7{bottom:826.339500px;}
.y12b{bottom:831.603000px;}
.yee{bottom:833.802000px;}
.yc0{bottom:837.663000px;}
.y88{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y6{bottom:848.292000px;}
.yed{bottom:856.600500px;}
.ybf{bottom:857.082000px;}
.y12a{bottom:858.523500px;}
.y87{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.yec{bottom:879.397500px;}
.ybe{bottom:883.972500px;}
.y86{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y129{bottom:896.970000px;}
.yeb{bottom:902.194500px;}
.ybd{bottom:903.393000px;}
.y85{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y5{bottom:917.967000px;}
.ybc{bottom:922.812000px;}
.yea{bottom:924.991500px;}
.y128{bottom:927.912000px;}
.y84{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.ybb{bottom:949.702500px;}
.y83{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.ye9{bottom:958.249500px;}
.y127{bottom:958.855500px;}
.y4{bottom:959.347500px;}
.yba{bottom:969.123000px;}
.y82{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.yb9{bottom:988.542000px;}
.y3{bottom:996.498000px;}
.y126{bottom:997.300500px;}
.y81{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.yb8{bottom:1022.935500px;}
.y80{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y7f{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y7e{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.hf{height:35.865000px;}
.h1{height:35.865450px;}
.hc{height:37.011648px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.484266px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hd{height:47.706948px;}
.h3{height:53.463379px;}
.h7{height:53.929630px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.he{height:92.541000px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:126.270000px;}
.x4{left:127.558500px;}
.x17{left:136.525500px;}
.x3{left:147.012000px;}
.xb{left:153.070500px;}
.x6{left:178.044000px;}
.x24{left:181.026000px;}
.x9{left:182.308500px;}
.x20{left:192.511500px;}
.x21{left:211.719000px;}
.x23{left:218.800500px;}
.x16{left:220.471500px;}
.x1a{left:231.579000px;}
.xe{left:234.756000px;}
.xf{left:242.386500px;}
.x22{left:243.810000px;}
.x8{left:251.958000px;}
.x1e{left:253.116000px;}
.x1c{left:263.634000px;}
.x28{left:271.039500px;}
.x29{left:276.762000px;}
.x25{left:293.242500px;}
.x1b{left:298.365000px;}
.x15{left:315.294000px;}
.x1f{left:361.893000px;}
.x18{left:370.606500px;}
.x5{left:398.689500px;}
.xd{left:404.373000px;}
.x7{left:410.130000px;}
.x27{left:422.550000px;}
.x26{left:423.984000px;}
.xa{left:432.832500px;}
.x1d{left:447.636000px;}
.x10{left:452.577000px;}
.xc{left:464.346000px;}
.x12{left:489.858000px;}
.x2{left:573.774000px;}
.x11{left:578.070000px;}
.x1{left:696.322500px;}
.x13{left:722.943000px;}
.x14{left:730.573500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls6{letter-spacing:-13.992816pt;}
.ls8{letter-spacing:-13.320672pt;}
.ls7{letter-spacing:-10.509888pt;}
.ls5{letter-spacing:-7.026960pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls9{letter-spacing:14.664960pt;}
.lsd{letter-spacing:15.031584pt;}
.lsb{letter-spacing:15.276000pt;}
.lsa{letter-spacing:15.520416pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws24{word-spacing:-15.276000pt;}
.ws153{word-spacing:-3.299616pt;}
.ws10a{word-spacing:-3.299181pt;}
.wsd2{word-spacing:-3.183634pt;}
.ws57{word-spacing:-3.177408pt;}
.ws63{word-spacing:-3.116304pt;}
.ws13e{word-spacing:-2.934559pt;}
.ws1a{word-spacing:-2.932992pt;}
.ws152{word-spacing:-2.871888pt;}
.ws58{word-spacing:-2.810784pt;}
.ws6b{word-spacing:-2.749680pt;}
.ws165{word-spacing:-2.688576pt;}
.ws10{word-spacing:-2.656693pt;}
.ws67{word-spacing:-2.627472pt;}
.ws60{word-spacing:-2.566368pt;}
.ws171{word-spacing:-2.505264pt;}
.ws41{word-spacing:-2.383056pt;}
.wsc5{word-spacing:-2.321952pt;}
.wsa1{word-spacing:-2.260848pt;}
.ws101{word-spacing:-2.260565pt;}
.ws92{word-spacing:-2.199744pt;}
.ws3e{word-spacing:-2.138640pt;}
.ws10e{word-spacing:-2.138335pt;}
.ws7a{word-spacing:-2.077536pt;}
.ws150{word-spacing:-2.016432pt;}
.ws65{word-spacing:-1.955328pt;}
.ws3f{word-spacing:-1.894224pt;}
.ws25{word-spacing:-1.833120pt;}
.ws116{word-spacing:-1.775390pt;}
.ws29{word-spacing:-1.772016pt;}
.ws16c{word-spacing:-1.710912pt;}
.ws5b{word-spacing:-1.649808pt;}
.ws166{word-spacing:-1.588704pt;}
.ws141{word-spacing:-1.531736pt;}
.ws7f{word-spacing:-1.527600pt;}
.ws163{word-spacing:-1.466496pt;}
.wsba{word-spacing:-1.405392pt;}
.ws9f{word-spacing:-1.344288pt;}
.ws40{word-spacing:-1.283184pt;}
.ws2f{word-spacing:-1.222080pt;}
.ws160{word-spacing:-1.160976pt;}
.ws85{word-spacing:-1.099872pt;}
.ws7e{word-spacing:-0.977664pt;}
.ws4d{word-spacing:-0.916560pt;}
.wsb2{word-spacing:-0.797008pt;}
.ws49{word-spacing:-0.794352pt;}
.ws23{word-spacing:-0.733248pt;}
.wsa7{word-spacing:-0.672144pt;}
.wse2{word-spacing:-0.617048pt;}
.ws10c{word-spacing:-0.612869pt;}
.ws174{word-spacing:-0.611040pt;}
.ws9d{word-spacing:-0.549936pt;}
.ws99{word-spacing:-0.488832pt;}
.ws59{word-spacing:-0.427728pt;}
.ws3c{word-spacing:-0.366624pt;}
.wsfe{word-spacing:-0.364455pt;}
.wsf{word-spacing:-0.318803pt;}
.ws4f{word-spacing:-0.305520pt;}
.ws133{word-spacing:-0.303534pt;}
.wsfd{word-spacing:-0.300923pt;}
.wsd5{word-spacing:-0.249207pt;}
.ws12d{word-spacing:-0.245153pt;}
.wsdb{word-spacing:-0.244895pt;}
.ws2c{word-spacing:-0.244416pt;}
.ws8{word-spacing:-0.212535pt;}
.ws107{word-spacing:-0.192098pt;}
.wseb{word-spacing:-0.191793pt;}
.ws14d{word-spacing:-0.190988pt;}
.ws137{word-spacing:-0.189038pt;}
.ws117{word-spacing:-0.184441pt;}
.ws30{word-spacing:-0.183312pt;}
.ws130{word-spacing:-0.183101pt;}
.wsd6{word-spacing:-0.178185pt;}
.ws138{word-spacing:-0.178063pt;}
.ws13d{word-spacing:-0.131839pt;}
.ws108{word-spacing:-0.127037pt;}
.wsdd{word-spacing:-0.124419pt;}
.wsf6{word-spacing:-0.123230pt;}
.ws14{word-spacing:-0.122208pt;}
.wsd9{word-spacing:-0.121466pt;}
.ws9{word-spacing:-0.106268pt;}
.wse3{word-spacing:-0.066846pt;}
.ws13{word-spacing:-0.061104pt;}
.wsda{word-spacing:-0.053334pt;}
.wsb1{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.wsde{word-spacing:-0.008425pt;}
.wsf9{word-spacing:-0.004615pt;}
.wsf1{word-spacing:-0.004229pt;}
.ws125{word-spacing:-0.003755pt;}
.wsf4{word-spacing:-0.002773pt;}
.wsc7{word-spacing:-0.002544pt;}
.wsf3{word-spacing:-0.002053pt;}
.wsce{word-spacing:-0.001579pt;}
.wscc{word-spacing:-0.000859pt;}
.ws124{word-spacing:-0.000812pt;}
.ws113{word-spacing:-0.000605pt;}
.ws148{word-spacing:-0.000352pt;}
.wscd{word-spacing:-0.000123pt;}
.ws2{word-spacing:0.000000pt;}
.wse4{word-spacing:0.000324pt;}
.wsed{word-spacing:0.000368pt;}
.ws109{word-spacing:0.000862pt;}
.wsca{word-spacing:0.001088pt;}
.ws147{word-spacing:0.001349pt;}
.wsea{word-spacing:0.001932pt;}
.wsf0{word-spacing:0.006389pt;}
.ws123{word-spacing:0.006626pt;}
.wsf8{word-spacing:0.047972pt;}
.wsb{word-spacing:0.053134pt;}
.wse5{word-spacing:0.055662pt;}
.wsee{word-spacing:0.057516pt;}
.ws128{word-spacing:0.058902pt;}
.wsf7{word-spacing:0.060179pt;}
.ws2a{word-spacing:0.061104pt;}
.ws12c{word-spacing:0.061890pt;}
.wse0{word-spacing:0.062563pt;}
.wsd7{word-spacing:0.062851pt;}
.ws11{word-spacing:0.095642pt;}
.ws5{word-spacing:0.106268pt;}
.ws140{word-spacing:0.121820pt;}
.ws36{word-spacing:0.122208pt;}
.ws135{word-spacing:0.124842pt;}
.wse7{word-spacing:0.127014pt;}
.wsd{word-spacing:0.159402pt;}
.ws134{word-spacing:0.167982pt;}
.wse1{word-spacing:0.181679pt;}
.wsef{word-spacing:0.182570pt;}
.ws1c{word-spacing:0.183312pt;}
.wsff{word-spacing:0.185737pt;}
.ws10d{word-spacing:0.186920pt;}
.wse{word-spacing:0.212535pt;}
.ws127{word-spacing:0.236698pt;}
.ws114{word-spacing:0.237763pt;}
.wsd0{word-spacing:0.243789pt;}
.ws3a{word-spacing:0.244416pt;}
.wsfa{word-spacing:0.245315pt;}
.wsb4{word-spacing:0.265669pt;}
.ws149{word-spacing:0.304359pt;}
.ws15{word-spacing:0.305520pt;}
.ws10f{word-spacing:0.307875pt;}
.ws46{word-spacing:0.366624pt;}
.ws145{word-spacing:0.367711pt;}
.ws115{word-spacing:0.368545pt;}
.wsc{word-spacing:0.371937pt;}
.wsa9{word-spacing:0.427728pt;}
.ws3{word-spacing:0.459077pt;}
.ws47{word-spacing:0.488832pt;}
.wsa4{word-spacing:0.549936pt;}
.ws142{word-spacing:0.549999pt;}
.wse9{word-spacing:0.610569pt;}
.wsa2{word-spacing:0.611040pt;}
.wsb5{word-spacing:0.672144pt;}
.wsd8{word-spacing:0.672552pt;}
.ws6a{word-spacing:0.733248pt;}
.ws13a{word-spacing:0.794342pt;}
.ws71{word-spacing:0.794352pt;}
.ws6{word-spacing:0.850142pt;}
.ws52{word-spacing:0.855456pt;}
.ws1b{word-spacing:0.916560pt;}
.ws64{word-spacing:0.977664pt;}
.wsc2{word-spacing:1.038768pt;}
.ws13b{word-spacing:1.039448pt;}
.wsad{word-spacing:1.099872pt;}
.ws96{word-spacing:1.160976pt;}
.ws35{word-spacing:1.222080pt;}
.ws144{word-spacing:1.223983pt;}
.ws70{word-spacing:1.283184pt;}
.ws139{word-spacing:1.344246pt;}
.ws50{word-spacing:1.344288pt;}
.ws44{word-spacing:1.405392pt;}
.ws16a{word-spacing:1.466496pt;}
.ws13f{word-spacing:1.527025pt;}
.wsd3{word-spacing:1.527067pt;}
.wsb8{word-spacing:1.527600pt;}
.ws7d{word-spacing:1.649808pt;}
.ws1e{word-spacing:1.710912pt;}
.wse8{word-spacing:1.713966pt;}
.ws4c{word-spacing:1.772016pt;}
.ws161{word-spacing:1.833120pt;}
.ws72{word-spacing:1.894224pt;}
.wsd4{word-spacing:1.955255pt;}
.ws9b{word-spacing:1.955328pt;}
.ws1f{word-spacing:2.016432pt;}
.wsb7{word-spacing:2.077536pt;}
.ws122{word-spacing:2.077693pt;}
.ws75{word-spacing:2.138640pt;}
.ws79{word-spacing:2.199744pt;}
.ws112{word-spacing:2.203279pt;}
.ws119{word-spacing:2.260587pt;}
.ws56{word-spacing:2.260848pt;}
.ws7b{word-spacing:2.321952pt;}
.ws62{word-spacing:2.383056pt;}
.ws12b{word-spacing:2.383788pt;}
.wsaf{word-spacing:2.444160pt;}
.ws39{word-spacing:2.505264pt;}
.ws3b{word-spacing:2.566368pt;}
.wsb3{word-spacing:2.656693pt;}
.ws4e{word-spacing:2.688576pt;}
.ws102{word-spacing:2.688701pt;}
.wse6{word-spacing:2.748394pt;}
.ws43{word-spacing:2.749680pt;}
.ws42{word-spacing:2.810784pt;}
.ws132{word-spacing:2.812018pt;}
.ws8f{word-spacing:2.871888pt;}
.ws11a{word-spacing:2.875412pt;}
.ws5a{word-spacing:2.932992pt;}
.wsdc{word-spacing:2.994922pt;}
.ws7c{word-spacing:3.055200pt;}
.ws37{word-spacing:3.116304pt;}
.ws167{word-spacing:3.177408pt;}
.ws80{word-spacing:3.238512pt;}
.ws26{word-spacing:3.299616pt;}
.ws5e{word-spacing:3.360720pt;}
.ws55{word-spacing:3.421824pt;}
.ws12f{word-spacing:3.482070pt;}
.ws9c{word-spacing:3.482928pt;}
.ws14a{word-spacing:3.484894pt;}
.ws2b{word-spacing:3.544032pt;}
.ws154{word-spacing:3.605136pt;}
.wsb9{word-spacing:3.666240pt;}
.ws34{word-spacing:3.788448pt;}
.ws12a{word-spacing:3.789752pt;}
.ws6c{word-spacing:3.849552pt;}
.ws22{word-spacing:3.910656pt;}
.ws121{word-spacing:3.914421pt;}
.ws90{word-spacing:3.971760pt;}
.ws151{word-spacing:4.032864pt;}
.ws76{word-spacing:4.093968pt;}
.ws27{word-spacing:4.155072pt;}
.ws69{word-spacing:4.216176pt;}
.ws78{word-spacing:4.277280pt;}
.ws118{word-spacing:4.338070pt;}
.ws89{word-spacing:4.338384pt;}
.ws74{word-spacing:4.399488pt;}
.wsac{word-spacing:4.460592pt;}
.wsc8{word-spacing:4.493501pt;}
.ws5c{word-spacing:4.521696pt;}
.ws6e{word-spacing:4.582800pt;}
.ws45{word-spacing:4.705008pt;}
.ws97{word-spacing:4.766112pt;}
.ws11d{word-spacing:4.769657pt;}
.ws11f{word-spacing:4.769772pt;}
.ws11b{word-spacing:4.821106pt;}
.ws100{word-spacing:4.824236pt;}
.ws6f{word-spacing:4.827216pt;}
.ws82{word-spacing:4.888320pt;}
.wsa3{word-spacing:4.949424pt;}
.ws5f{word-spacing:5.010528pt;}
.ws18{word-spacing:5.132736pt;}
.ws7{word-spacing:5.153985pt;}
.ws54{word-spacing:5.193840pt;}
.ws91{word-spacing:5.254944pt;}
.wsa{word-spacing:5.313387pt;}
.ws17{word-spacing:5.316048pt;}
.ws5d{word-spacing:5.377152pt;}
.ws61{word-spacing:5.438256pt;}
.wsc3{word-spacing:5.499360pt;}
.ws28{word-spacing:5.560464pt;}
.wsec{word-spacing:5.620543pt;}
.wsab{word-spacing:5.621568pt;}
.ws68{word-spacing:5.682672pt;}
.ws169{word-spacing:5.743776pt;}
.wsc9{word-spacing:5.744508pt;}
.wsa6{word-spacing:5.804880pt;}
.ws162{word-spacing:5.865984pt;}
.wsfb{word-spacing:5.866183pt;}
.ws9a{word-spacing:5.927088pt;}
.ws4a{word-spacing:5.988192pt;}
.ws10b{word-spacing:5.991789pt;}
.wsa0{word-spacing:6.049296pt;}
.wsc1{word-spacing:6.110400pt;}
.ws136{word-spacing:6.231667pt;}
.wsbf{word-spacing:6.232608pt;}
.ws159{word-spacing:6.293712pt;}
.ws81{word-spacing:6.354816pt;}
.ws15a{word-spacing:6.415920pt;}
.ws66{word-spacing:6.477024pt;}
.wsaa{word-spacing:6.538128pt;}
.ws14b{word-spacing:6.597684pt;}
.ws1d{word-spacing:6.599232pt;}
.ws98{word-spacing:6.660336pt;}
.ws155{word-spacing:6.720405pt;}
.ws48{word-spacing:6.721440pt;}
.ws15c{word-spacing:6.722299pt;}
.wsdf{word-spacing:6.723824pt;}
.ws31{word-spacing:6.782544pt;}
.ws8d{word-spacing:6.843648pt;}
.ws2d{word-spacing:6.904752pt;}
.ws4b{word-spacing:6.965856pt;}
.ws53{word-spacing:7.026960pt;}
.ws12e{word-spacing:7.030035pt;}
.ws51{word-spacing:7.088064pt;}
.ws94{word-spacing:7.210272pt;}
.ws2e{word-spacing:7.271376pt;}
.ws86{word-spacing:7.332480pt;}
.ws131{word-spacing:7.334185pt;}
.ws111{word-spacing:7.335596pt;}
.ws87{word-spacing:7.454688pt;}
.ws38{word-spacing:7.515792pt;}
.ws6d{word-spacing:7.576896pt;}
.ws170{word-spacing:7.638000pt;}
.wsa8{word-spacing:7.699104pt;}
.ws158{word-spacing:7.760208pt;}
.ws19{word-spacing:7.821312pt;}
.ws20{word-spacing:7.882416pt;}
.wsb6{word-spacing:7.943520pt;}
.wsc6{word-spacing:8.004624pt;}
.ws32{word-spacing:8.065728pt;}
.ws33{word-spacing:8.126832pt;}
.ws8c{word-spacing:8.187936pt;}
.ws11c{word-spacing:8.188543pt;}
.ws3d{word-spacing:8.310144pt;}
.wsbb{word-spacing:8.371248pt;}
.ws143{word-spacing:8.372430pt;}
.ws126{word-spacing:8.492682pt;}
.ws8b{word-spacing:8.493456pt;}
.ws93{word-spacing:8.554560pt;}
.ws16b{word-spacing:8.615664pt;}
.ws15e{word-spacing:8.798976pt;}
.ws120{word-spacing:8.860237pt;}
.ws16{word-spacing:8.982288pt;}
.ws21{word-spacing:9.043392pt;}
.ws164{word-spacing:9.226704pt;}
.wsa5{word-spacing:9.287808pt;}
.ws157{word-spacing:9.348912pt;}
.ws173{word-spacing:9.410016pt;}
.ws13c{word-spacing:9.468955pt;}
.ws15f{word-spacing:9.471120pt;}
.ws110{word-spacing:9.533228pt;}
.ws156{word-spacing:9.715536pt;}
.ws104{word-spacing:9.773754pt;}
.ws9e{word-spacing:9.837744pt;}
.ws73{word-spacing:9.959952pt;}
.ws11e{word-spacing:10.186037pt;}
.wsc0{word-spacing:10.265472pt;}
.ws8e{word-spacing:10.326576pt;}
.ws95{word-spacing:10.387680pt;}
.wsc4{word-spacing:10.509888pt;}
.ws77{word-spacing:10.876512pt;}
.wsd1{word-spacing:10.921716pt;}
.ws88{word-spacing:11.487552pt;}
.ws103{word-spacing:11.499773pt;}
.ws172{word-spacing:12.343008pt;}
.wsb0{word-spacing:13.230333pt;}
.ws8a{word-spacing:13.626192pt;}
.ws14c{word-spacing:13.994824pt;}
.ws129{word-spacing:14.165083pt;}
.wsbd{word-spacing:14.787168pt;}
.ws84{word-spacing:14.909376pt;}
.ws83{word-spacing:14.970480pt;}
.ws106{word-spacing:15.003739pt;}
.ws0{word-spacing:15.005042pt;}
.wsf2{word-spacing:15.212827pt;}
.wsf5{word-spacing:15.214053pt;}
.wscb{word-spacing:15.214528pt;}
.ws15b{word-spacing:15.214896pt;}
.ws4{word-spacing:16.577766pt;}
.ws14e{word-spacing:17.048455pt;}
.ws14f{word-spacing:17.109120pt;}
.wsbc{word-spacing:17.199459pt;}
.wsfc{word-spacing:19.969885pt;}
.wsbe{word-spacing:20.714256pt;}
.ws16f{word-spacing:31.712976pt;}
.wsae{word-spacing:37.517856pt;}
.ws16e{word-spacing:44.605920pt;}
.ws16d{word-spacing:45.278064pt;}
.ws168{word-spacing:45.950208pt;}
.ws15d{word-spacing:48.516576pt;}
.ws146{word-spacing:48.517333pt;}
.wscf{word-spacing:63.733563pt;}
.ws12{word-spacing:69.005059pt;}
.ws105{word-spacing:838.328229pt;}
._12{margin-left:-23.708352pt;}
._1d{margin-left:-7.903673pt;}
._a{margin-left:-6.216662pt;}
._29{margin-left:-5.249604pt;}
._6{margin-left:-4.303843pt;}
._4{margin-left:-3.400567pt;}
._8{margin-left:-2.125355pt;}
._1{margin-left:-1.168945pt;}
._0{width:1.232709pt;}
._30{width:6.391478pt;}
._3a{width:8.059618pt;}
._39{width:10.564882pt;}
._38{width:12.923205pt;}
._c{width:14.224023pt;}
._9{width:15.355687pt;}
._7{width:16.684034pt;}
._5{width:18.224916pt;}
._2{width:19.712665pt;}
._20{width:20.836464pt;}
._15{width:21.875232pt;}
._25{width:22.791792pt;}
._10{width:23.817273pt;}
._17{width:24.747120pt;}
._24{width:26.091408pt;}
._16{width:27.191280pt;}
._1b{width:28.195507pt;}
._d{width:29.176113pt;}
._21{width:30.273043pt;}
._3b{width:31.288061pt;}
._3{width:32.305391pt;}
._1a{width:33.341527pt;}
._18{width:34.462656pt;}
._e{width:36.099179pt;}
._23{width:37.159201pt;}
._1c{width:39.005599pt;}
._22{width:40.084224pt;}
._13{width:41.306304pt;}
._f{width:42.480558pt;}
._11{width:43.383840pt;}
._14{width:44.531531pt;}
._40{width:48.258875pt;}
._1f{width:50.471904pt;}
._b{width:53.133867pt;}
._19{width:59.881920pt;}
._1e{width:60.886147pt;}
._28{width:63.760640pt;}
._2a{width:69.074133pt;}
._2d{width:94.346667pt;}
._41{width:101.418688pt;}
._27{width:107.064741pt;}
._32{width:111.401697pt;}
._45{width:124.896576pt;}
._48{width:126.586289pt;}
._42{width:163.981937pt;}
._43{width:167.241648pt;}
._4b{width:176.285040pt;}
._49{width:180.576272pt;}
._26{width:184.799588pt;}
._2e{width:213.070315pt;}
._2c{width:250.345227pt;}
._2b{width:254.875121pt;}
._34{width:266.259712pt;}
._46{width:276.495600pt;}
._44{width:335.630987pt;}
._31{width:348.844245pt;}
._47{width:396.259440pt;}
._4d{width:417.550228pt;}
._4a{width:420.910948pt;}
._4c{width:427.693492pt;}
._36{width:507.288000pt;}
._35{width:632.856000pt;}
._2f{width:640.168417pt;}
._33{width:659.986667pt;}
._3d{width:742.781333pt;}
._3e{width:750.173333pt;}
._37{width:801.426380pt;}
._3c{width:849.650667pt;}
._3f{width:887.522380pt;}
.fs7{font-size:42.506667pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:47.818667pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y7d{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y7c{bottom:78.381333pt;}
.y165{bottom:79.121333pt;}
.y25{bottom:79.302667pt;}
.ya9{bottom:79.750667pt;}
.y170{bottom:80.022667pt;}
.y5e{bottom:80.189333pt;}
.y52{bottom:80.652000pt;}
.y62{bottom:81.090667pt;}
.y156{bottom:81.792000pt;}
.y181{bottom:83.934667pt;}
.y11d{bottom:83.950667pt;}
.y186{bottom:84.836000pt;}
.y125{bottom:84.852000pt;}
.yb0{bottom:88.398667pt;}
.yb7{bottom:89.300000pt;}
.y147{bottom:90.990667pt;}
.yde{bottom:91.773333pt;}
.y14d{bottom:91.892000pt;}
.ye8{bottom:92.674667pt;}
.y7b{bottom:98.645333pt;}
.y164{bottom:99.385333pt;}
.y24{bottom:99.566667pt;}
.ya8{bottom:100.014667pt;}
.y16f{bottom:100.286667pt;}
.y5d{bottom:100.453333pt;}
.y51{bottom:100.916000pt;}
.y61{bottom:101.354667pt;}
.y155{bottom:102.056000pt;}
.y180{bottom:104.198667pt;}
.y11c{bottom:104.214667pt;}
.y185{bottom:105.100000pt;}
.y124{bottom:105.116000pt;}
.yaf{bottom:108.662667pt;}
.yb6{bottom:109.564000pt;}
.y146{bottom:111.254667pt;}
.ydd{bottom:112.037333pt;}
.y14c{bottom:112.156000pt;}
.ye7{bottom:112.938667pt;}
.y193{bottom:112.970667pt;}
.y7a{bottom:118.909333pt;}
.y163{bottom:119.649333pt;}
.y23{bottom:119.830667pt;}
.ya7{bottom:120.278667pt;}
.y16e{bottom:120.550667pt;}
.y5c{bottom:120.717333pt;}
.y50{bottom:121.180000pt;}
.y60{bottom:121.618667pt;}
.y154{bottom:122.320000pt;}
.y17f{bottom:124.462667pt;}
.y11b{bottom:124.478667pt;}
.y184{bottom:125.364000pt;}
.y123{bottom:125.380000pt;}
.yae{bottom:128.926667pt;}
.yb5{bottom:129.828000pt;}
.y145{bottom:131.518667pt;}
.ydc{bottom:132.302667pt;}
.y14b{bottom:132.420000pt;}
.ye6{bottom:133.202667pt;}
.y192{bottom:133.234667pt;}
.y79{bottom:139.173333pt;}
.y162{bottom:139.913333pt;}
.y22{bottom:140.094667pt;}
.ya6{bottom:140.542667pt;}
.y16d{bottom:140.814667pt;}
.y5b{bottom:140.981333pt;}
.y4f{bottom:141.444000pt;}
.y5f{bottom:141.882667pt;}
.y17e{bottom:144.726667pt;}
.y11a{bottom:144.742667pt;}
.y183{bottom:145.628000pt;}
.y122{bottom:145.644000pt;}
.yad{bottom:149.190667pt;}
.yb4{bottom:150.092000pt;}
.y144{bottom:151.782667pt;}
.ydb{bottom:152.566667pt;}
.y14a{bottom:152.684000pt;}
.ye5{bottom:153.468000pt;}
.y191{bottom:153.498667pt;}
.y78{bottom:159.437333pt;}
.y161{bottom:160.177333pt;}
.y21{bottom:160.358667pt;}
.ya5{bottom:160.806667pt;}
.y16c{bottom:161.078667pt;}
.y4e{bottom:161.708000pt;}
.y17d{bottom:164.992000pt;}
.y119{bottom:165.006667pt;}
.y182{bottom:165.893333pt;}
.y121{bottom:165.908000pt;}
.y153{bottom:167.953333pt;}
.yac{bottom:169.454667pt;}
.yb3{bottom:170.356000pt;}
.y143{bottom:172.046667pt;}
.yda{bottom:172.830667pt;}
.y149{bottom:172.948000pt;}
.ye4{bottom:173.732000pt;}
.y190{bottom:173.762667pt;}
.y5a{bottom:178.086667pt;}
.y77{bottom:179.701333pt;}
.y160{bottom:180.441333pt;}
.y20{bottom:180.622667pt;}
.ya4{bottom:181.070667pt;}
.y16b{bottom:181.342667pt;}
.y4d{bottom:181.972000pt;}
.y118{bottom:185.270667pt;}
.y120{bottom:186.172000pt;}
.yab{bottom:189.718667pt;}
.yb2{bottom:190.620000pt;}
.y142{bottom:192.310667pt;}
.yd9{bottom:193.094667pt;}
.y148{bottom:193.212000pt;}
.ye3{bottom:193.996000pt;}
.y18e{bottom:194.026667pt;}
.y18f{bottom:194.104000pt;}
.y152{bottom:197.544000pt;}
.y59{bottom:198.350667pt;}
.y76{bottom:199.965333pt;}
.y15f{bottom:200.705333pt;}
.y1f{bottom:200.888000pt;}
.ya3{bottom:201.334667pt;}
.y16a{bottom:201.606667pt;}
.y17c{bottom:202.097333pt;}
.y4c{bottom:202.236000pt;}
.y117{bottom:205.534667pt;}
.y11f{bottom:206.436000pt;}
.yaa{bottom:209.982667pt;}
.yb1{bottom:210.884000pt;}
.yd8{bottom:213.358667pt;}
.ye2{bottom:214.260000pt;}
.y18d{bottom:214.292000pt;}
.y58{bottom:218.614667pt;}
.y75{bottom:220.229333pt;}
.y151{bottom:220.464000pt;}
.y15e{bottom:220.969333pt;}
.y1e{bottom:221.152000pt;}
.ya2{bottom:221.598667pt;}
.y169{bottom:221.870667pt;}
.y17b{bottom:222.361333pt;}
.y4b{bottom:222.500000pt;}
.y116{bottom:225.798667pt;}
.y11e{bottom:226.700000pt;}
.yd7{bottom:233.622667pt;}
.ye1{bottom:234.524000pt;}
.y18c{bottom:234.556000pt;}
.y141{bottom:238.845333pt;}
.y57{bottom:238.880000pt;}
.y74{bottom:240.493333pt;}
.y15d{bottom:241.233333pt;}
.y1d{bottom:241.416000pt;}
.ya1{bottom:241.864000pt;}
.y168{bottom:242.134667pt;}
.y17a{bottom:242.625333pt;}
.y4a{bottom:242.764000pt;}
.y150{bottom:243.385333pt;}
.yd6{bottom:253.886667pt;}
.ye0{bottom:254.788000pt;}
.y18b{bottom:254.820000pt;}
.y56{bottom:259.144000pt;}
.y73{bottom:260.757333pt;}
.y15c{bottom:261.497333pt;}
.y1c{bottom:261.680000pt;}
.ya0{bottom:262.128000pt;}
.y167{bottom:262.398667pt;}
.y179{bottom:262.889333pt;}
.y49{bottom:263.029333pt;}
.y140{bottom:268.436000pt;}
.y14f{bottom:272.976000pt;}
.yd5{bottom:274.150667pt;}
.ydf{bottom:275.052000pt;}
.y18a{bottom:275.084000pt;}
.y115{bottom:279.408000pt;}
.y72{bottom:281.021333pt;}
.y15b{bottom:281.761333pt;}
.y1b{bottom:281.944000pt;}
.y9f{bottom:282.392000pt;}
.y166{bottom:282.662667pt;}
.y178{bottom:283.153333pt;}
.y48{bottom:283.293333pt;}
.y55{bottom:288.706667pt;}
.y13f{bottom:291.357333pt;}
.y189{bottom:295.348000pt;}
.y103{bottom:298.770667pt;}
.y114{bottom:299.672000pt;}
.y71{bottom:301.285333pt;}
.y9e{bottom:302.656000pt;}
.y177{bottom:303.417333pt;}
.y47{bottom:303.557333pt;}
.y14e{bottom:313.960000pt;}
.y13e{bottom:314.277333pt;}
.y188{bottom:315.612000pt;}
.y102{bottom:319.034667pt;}
.y113{bottom:319.936000pt;}
.y70{bottom:321.549333pt;}
.y9d{bottom:322.920000pt;}
.y46{bottom:323.821333pt;}
.yd4{bottom:327.196000pt;}
.y1a{bottom:327.446667pt;}
.y15a{bottom:329.513333pt;}
.y176{bottom:332.980000pt;}
.y101{bottom:339.298667pt;}
.y112{bottom:340.200000pt;}
.y6f{bottom:341.814667pt;}
.y9c{bottom:343.184000pt;}
.y13d{bottom:343.868000pt;}
.y45{bottom:344.085333pt;}
.y187{bottom:345.174667pt;}
.yd3{bottom:347.460000pt;}
.y159{bottom:357.017333pt;}
.y100{bottom:359.562667pt;}
.y111{bottom:360.464000pt;}
.y6e{bottom:362.078667pt;}
.y9b{bottom:363.448000pt;}
.y19{bottom:364.045333pt;}
.y44{bottom:364.349333pt;}
.yd2{bottom:367.725333pt;}
.yff{bottom:379.826667pt;}
.y18{bottom:380.556000pt;}
.y110{bottom:380.728000pt;}
.y6d{bottom:382.342667pt;}
.y175{bottom:383.064000pt;}
.y9a{bottom:383.712000pt;}
.y43{bottom:384.613333pt;}
.y13c{bottom:384.852000pt;}
.yd1{bottom:387.989333pt;}
.y158{bottom:391.192000pt;}
.y17{bottom:399.954667pt;}
.yfe{bottom:400.090667pt;}
.y10f{bottom:400.992000pt;}
.y6c{bottom:402.606667pt;}
.y99{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.yd0{bottom:408.253333pt;}
.y174{bottom:410.569333pt;}
.y13b{bottom:414.977333pt;}
.yfd{bottom:420.354667pt;}
.y10e{bottom:421.256000pt;}
.y6b{bottom:422.870667pt;}
.y98{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.y194{bottom:425.217333pt;}
.ycf{bottom:428.517333pt;}
.y16{bottom:429.865333pt;}
.y13a{bottom:435.241333pt;}
.y157{bottom:435.544000pt;}
.y173{bottom:438.074667pt;}
.yfc{bottom:440.618667pt;}
.y10d{bottom:441.520000pt;}
.y6a{bottom:443.134667pt;}
.y97{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.yce{bottom:448.781333pt;}
.y139{bottom:455.505333pt;}
.yfb{bottom:460.882667pt;}
.y15{bottom:461.333333pt;}
.y10c{bottom:461.784000pt;}
.y69{bottom:463.398667pt;}
.y96{bottom:464.768000pt;}
.y3f{bottom:465.669333pt;}
.ycd{bottom:469.045333pt;}
.y172{bottom:472.248000pt;}
.y138{bottom:475.769333pt;}
.y14{bottom:480.848000pt;}
.yfa{bottom:481.146667pt;}
.y10b{bottom:482.048000pt;}
.y68{bottom:483.662667pt;}
.y95{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.ycc{bottom:489.309333pt;}
.y137{bottom:496.033333pt;}
.y13{bottom:500.361333pt;}
.yf9{bottom:501.412000pt;}
.y10a{bottom:502.312000pt;}
.y67{bottom:503.926667pt;}
.y94{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.ycb{bottom:509.573333pt;}
.y136{bottom:516.297333pt;}
.y171{bottom:516.601333pt;}
.y12{bottom:519.874667pt;}
.yf8{bottom:521.676000pt;}
.y109{bottom:522.577333pt;}
.y66{bottom:524.190667pt;}
.y93{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.yca{bottom:529.837333pt;}
.y135{bottom:536.561333pt;}
.y11{bottom:539.388000pt;}
.yf7{bottom:541.940000pt;}
.y108{bottom:542.841333pt;}
.y65{bottom:544.454667pt;}
.y92{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.yc9{bottom:550.101333pt;}
.y134{bottom:556.825333pt;}
.y10{bottom:558.901333pt;}
.yf6{bottom:562.204000pt;}
.y107{bottom:563.105333pt;}
.y64{bottom:564.718667pt;}
.y91{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.yc8{bottom:570.365333pt;}
.y133{bottom:577.090667pt;}
.yf{bottom:578.416000pt;}
.yf5{bottom:582.468000pt;}
.y106{bottom:583.369333pt;}
.y63{bottom:584.081333pt;}
.y90{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y132{bottom:597.354667pt;}
.ye{bottom:597.929333pt;}
.yf4{bottom:602.732000pt;}
.y105{bottom:603.633333pt;}
.y8f{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.yc7{bottom:610.474667pt;}
.yd{bottom:617.442667pt;}
.y131{bottom:617.618667pt;}
.yf3{bottom:622.996000pt;}
.y104{bottom:623.897333pt;}
.y8e{bottom:626.881333pt;}
.yc6{bottom:627.736000pt;}
.y37{bottom:627.782667pt;}
.yc{bottom:636.956000pt;}
.y130{bottom:637.882667pt;}
.yc5{bottom:644.998667pt;}
.y8d{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.yb{bottom:656.469333pt;}
.y12f{bottom:658.146667pt;}
.yf2{bottom:660.101333pt;}
.y8c{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.yc4{bottom:668.901333pt;}
.ya{bottom:675.982667pt;}
.y12e{bottom:678.410667pt;}
.yf1{bottom:680.365333pt;}
.yc3{bottom:686.162667pt;}
.y8b{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y9{bottom:695.497333pt;}
.y12d{bottom:698.674667pt;}
.yf0{bottom:700.629333pt;}
.yc2{bottom:703.425333pt;}
.y8a{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y8{bottom:715.010667pt;}
.y12c{bottom:718.938667pt;}
.yef{bottom:720.893333pt;}
.yc1{bottom:727.326667pt;}
.y89{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y7{bottom:734.524000pt;}
.y12b{bottom:739.202667pt;}
.yee{bottom:741.157333pt;}
.yc0{bottom:744.589333pt;}
.y88{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y6{bottom:754.037333pt;}
.yed{bottom:761.422667pt;}
.ybf{bottom:761.850667pt;}
.y12a{bottom:763.132000pt;}
.y87{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.yec{bottom:781.686667pt;}
.ybe{bottom:785.753333pt;}
.y86{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y129{bottom:797.306667pt;}
.yeb{bottom:801.950667pt;}
.ybd{bottom:803.016000pt;}
.y85{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y5{bottom:815.970667pt;}
.ybc{bottom:820.277333pt;}
.yea{bottom:822.214667pt;}
.y128{bottom:824.810667pt;}
.y84{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.ybb{bottom:844.180000pt;}
.y83{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.ye9{bottom:851.777333pt;}
.y127{bottom:852.316000pt;}
.y4{bottom:852.753333pt;}
.yba{bottom:861.442667pt;}
.y82{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.yb9{bottom:878.704000pt;}
.y3{bottom:885.776000pt;}
.y126{bottom:886.489333pt;}
.y81{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.yb8{bottom:909.276000pt;}
.y80{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y7f{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y7e{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.hf{height:31.880000pt;}
.h1{height:31.880400pt;}
.hc{height:32.899243pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.874903pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hd{height:42.406176pt;}
.h3{height:47.523004pt;}
.h7{height:47.937449pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.he{height:82.258667pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:112.240000pt;}
.x4{left:113.385333pt;}
.x17{left:121.356000pt;}
.x3{left:130.677333pt;}
.xb{left:136.062667pt;}
.x6{left:158.261333pt;}
.x24{left:160.912000pt;}
.x9{left:162.052000pt;}
.x20{left:171.121333pt;}
.x21{left:188.194667pt;}
.x23{left:194.489333pt;}
.x16{left:195.974667pt;}
.x1a{left:205.848000pt;}
.xe{left:208.672000pt;}
.xf{left:215.454667pt;}
.x22{left:216.720000pt;}
.x8{left:223.962667pt;}
.x1e{left:224.992000pt;}
.x1c{left:234.341333pt;}
.x28{left:240.924000pt;}
.x29{left:246.010667pt;}
.x25{left:260.660000pt;}
.x1b{left:265.213333pt;}
.x15{left:280.261333pt;}
.x1f{left:321.682667pt;}
.x18{left:329.428000pt;}
.x5{left:354.390667pt;}
.xd{left:359.442667pt;}
.x7{left:364.560000pt;}
.x27{left:375.600000pt;}
.x26{left:376.874667pt;}
.xa{left:384.740000pt;}
.x1d{left:397.898667pt;}
.x10{left:402.290667pt;}
.xc{left:412.752000pt;}
.x12{left:435.429333pt;}
.x2{left:510.021333pt;}
.x11{left:513.840000pt;}
.x1{left:618.953333pt;}
.x13{left:642.616000pt;}
.x14{left:649.398667pt;}
}




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