
    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_2ba98a4b8c190e66d95a139e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a05ea32f668188b30fde3403.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_1ea03fda60178381f44b5a83.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d1cabb759c0e4aeae868d1ce.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_e372bfc104c64bf2a8b7e1cf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_b0e22e8f4a2c35d0c256ccc7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_2079f989ca9cc5795abc88a8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_1e4d89b971ea35343ffdffca.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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;}
.m8{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.ma{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-24.480000px;}
.v6{vertical-align:-18.720000px;}
.v1{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:14.400000px;}
.vb{vertical-align:15.840000px;}
.vc{vertical-align:18.000000px;}
.v8{vertical-align:20.160000px;}
.v9{vertical-align:21.600000px;}
.v2{vertical-align:24.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:17.640000px;}
.ls8{letter-spacing:29.712000px;}
.ls6{letter-spacing:42.888000px;}
.ls3{letter-spacing:52.308000px;}
.ls2{letter-spacing:101.760000px;}
.ls1{letter-spacing:141.990000px;}
.ls4{letter-spacing:368.160000px;}
.ls5{letter-spacing:659.040000px;}
.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;}
}
.ws2c{word-spacing:-25.200000px;}
.ws4{word-spacing:-19.980000px;}
.ws54{word-spacing:-17.982000px;}
.wsa3{word-spacing:-15.984000px;}
.ws4a{word-spacing:-13.986000px;}
.ws32{word-spacing:-13.344000px;}
.ws27{word-spacing:-10.008000px;}
.ws34{word-spacing:-8.340000px;}
.ws55{word-spacing:-7.992000px;}
.ws71{word-spacing:-6.227118px;}
.ws2a{word-spacing:-5.730000px;}
.ws2b{word-spacing:-5.004000px;}
.ws28{word-spacing:-4.584000px;}
.ws9c{word-spacing:-4.314336px;}
.ws4c{word-spacing:-4.194018px;}
.ws2f{word-spacing:-2.292000px;}
.ws62{word-spacing:-1.688292px;}
.ws61{word-spacing:-1.637982px;}
.wsa1{word-spacing:-0.624000px;}
.ws26{word-spacing:0.000000px;}
.ws68{word-spacing:0.060858px;}
.ws3e{word-spacing:0.401982px;}
.ws3a{word-spacing:0.518022px;}
.ws4d{word-spacing:2.538000px;}
.ws60{word-spacing:3.575916px;}
.ws5{word-spacing:3.983904px;}
.ws20{word-spacing:4.351320px;}
.ws38{word-spacing:4.518018px;}
.ws35{word-spacing:4.932000px;}
.ws25{word-spacing:5.370432px;}
.ws5f{word-spacing:6.120000px;}
.ws53{word-spacing:6.389982px;}
.ws21{word-spacing:6.684660px;}
.ws57{word-spacing:6.713982px;}
.ws96{word-spacing:7.488000px;}
.wsa5{word-spacing:8.928000px;}
.wsa0{word-spacing:9.216000px;}
.ws4b{word-spacing:9.328746px;}
.ws6{word-spacing:10.380000px;}
.ws56{word-spacing:10.709982px;}
.ws83{word-spacing:11.033982px;}
.ws77{word-spacing:11.304000px;}
.wsd{word-spacing:11.646018px;}
.ws37{word-spacing:11.916018px;}
.ws7c{word-spacing:12.005982px;}
.wsad{word-spacing:12.023784px;}
.ws5d{word-spacing:12.150000px;}
.ws5a{word-spacing:12.192390px;}
.ws98{word-spacing:12.371982px;}
.ws75{word-spacing:13.122000px;}
.ws10{word-spacing:13.590018px;}
.ws8e{word-spacing:13.680000px;}
.wsae{word-spacing:13.865040px;}
.ws7b{word-spacing:14.562018px;}
.ws5e{word-spacing:14.699124px;}
.ws12{word-spacing:15.029982px;}
.ws1a{word-spacing:15.714000px;}
.ws18{word-spacing:16.236018px;}
.ws76{word-spacing:16.368000px;}
.ws58{word-spacing:16.470000px;}
.ws5c{word-spacing:17.087166px;}
.ws1c{word-spacing:17.442000px;}
.wsb2{word-spacing:17.610012px;}
.ws19{word-spacing:17.837982px;}
.ws9f{word-spacing:17.874000px;}
.wse{word-spacing:18.647982px;}
.ws89{word-spacing:18.882018px;}
.ws9d{word-spacing:18.976272px;}
.wsa8{word-spacing:19.248000px;}
.ws52{word-spacing:19.349982px;}
.wsac{word-spacing:19.409148px;}
.ws59{word-spacing:19.565982px;}
.wsb0{word-spacing:19.986000px;}
.ws67{word-spacing:20.068668px;}
.ws1e{word-spacing:20.178018px;}
.ws6a{word-spacing:20.340000px;}
.ws3c{word-spacing:20.767158px;}
.ws1f{word-spacing:20.790000px;}
.ws3f{word-spacing:20.956500px;}
.ws1d{word-spacing:21.384000px;}
.ws72{word-spacing:21.556260px;}
.ws42{word-spacing:21.617982px;}
.ws40{word-spacing:21.762000px;}
.ws4f{word-spacing:21.984858px;}
.wsa4{word-spacing:22.032000px;}
.ws24{word-spacing:22.065804px;}
.ws17{word-spacing:22.122018px;}
.ws91{word-spacing:22.194000px;}
.ws65{word-spacing:22.230018px;}
.ws86{word-spacing:22.355982px;}
.ws13{word-spacing:22.626000px;}
.wsf{word-spacing:22.824018px;}
.ws8a{word-spacing:22.967982px;}
.ws80{word-spacing:23.280000px;}
.ws7d{word-spacing:23.526018px;}
.ws51{word-spacing:23.561982px;}
.ws49{word-spacing:23.587680px;}
.ws66{word-spacing:23.669982px;}
.ws7f{word-spacing:23.885982px;}
.ws46{word-spacing:23.939982px;}
.wsa9{word-spacing:24.091632px;}
.ws48{word-spacing:24.144000px;}
.ws64{word-spacing:24.498018px;}
.ws15{word-spacing:24.540000px;}
.ws90{word-spacing:24.768000px;}
.ws43{word-spacing:25.110000px;}
.wsa7{word-spacing:25.200000px;}
.ws97{word-spacing:25.632000px;}
.ws8f{word-spacing:26.352000px;}
.ws9a{word-spacing:26.388000px;}
.ws78{word-spacing:26.496000px;}
.ws8c{word-spacing:27.144018px;}
.ws3d{word-spacing:27.378000px;}
.ws41{word-spacing:27.522018px;}
.ws63{word-spacing:27.540000px;}
.ws70{word-spacing:28.098000px;}
.ws4e{word-spacing:28.279692px;}
.ws88{word-spacing:28.350000px;}
.wsa2{word-spacing:28.752000px;}
.ws84{word-spacing:28.961982px;}
.ws45{word-spacing:29.196018px;}
.ws22{word-spacing:29.430000px;}
.wsb{word-spacing:29.700000px;}
.ws8b{word-spacing:30.204000px;}
.ws81{word-spacing:30.257982px;}
.ws44{word-spacing:30.402000px;}
.ws6c{word-spacing:30.870018px;}
.ws50{word-spacing:31.680018px;}
.ws8{word-spacing:31.800000px;}
.ws5b{word-spacing:31.842018px;}
.ws6d{word-spacing:32.221728px;}
.wsaa{word-spacing:33.120000px;}
.ws11{word-spacing:33.408018px;}
.ws73{word-spacing:34.344000px;}
.ws1{word-spacing:34.411068px;}
.ws92{word-spacing:35.148000px;}
.wsab{word-spacing:35.368128px;}
.ws2{word-spacing:36.036036px;}
.ws0{word-spacing:36.072540px;}
.ws9b{word-spacing:36.612000px;}
.ws85{word-spacing:36.766980px;}
.ws94{word-spacing:37.074000px;}
.wsc{word-spacing:37.601982px;}
.ws95{word-spacing:37.613982px;}
.ws99{word-spacing:37.728000px;}
.ws74{word-spacing:37.962000px;}
.ws23{word-spacing:38.195982px;}
.wsaf{word-spacing:38.215800px;}
.ws16{word-spacing:38.303982px;}
.ws9{word-spacing:38.820000px;}
.ws1b{word-spacing:39.653982px;}
.ws14{word-spacing:39.869982px;}
.ws7e{word-spacing:40.482018px;}
.wsb1{word-spacing:42.300000px;}
.wsa6{word-spacing:45.324000px;}
.ws6e{word-spacing:45.522000px;}
.ws3b{word-spacing:47.358000px;}
.ws8d{word-spacing:52.674006px;}
.ws9e{word-spacing:52.762512px;}
.ws3{word-spacing:54.918216px;}
.ws82{word-spacing:56.583408px;}
.ws93{word-spacing:58.290000px;}
.wsa{word-spacing:60.180000px;}
.ws79{word-spacing:61.380000px;}
.ws6b{word-spacing:63.840000px;}
.ws7a{word-spacing:71.568000px;}
.ws87{word-spacing:80.190000px;}
.ws47{word-spacing:90.990000px;}
.ws7{word-spacing:97.200000px;}
.ws36{word-spacing:223.199982px;}
.ws30{word-spacing:227.514000px;}
.ws2d{word-spacing:231.516000px;}
.ws69{word-spacing:362.686286px;}
.ws33{word-spacing:376.704000px;}
.ws39{word-spacing:443.376000px;}
.ws29{word-spacing:647.136000px;}
.ws31{word-spacing:674.088000px;}
.ws6f{word-spacing:720.252000px;}
.ws2e{word-spacing:837.198621px;}
._31{margin-left:-20.072664px;}
._30{margin-left:-10.800000px;}
._47{margin-left:-6.528228px;}
._32{margin-left:-3.941100px;}
._2f{margin-left:-2.839752px;}
._2d{width:4.607226px;}
._64{width:7.056000px;}
._2e{width:23.448750px;}
._2b{width:26.963298px;}
._2c{width:29.820798px;}
._2a{width:31.030020px;}
._1c{width:32.747982px;}
._17{width:34.097982px;}
._1a{width:35.279982px;}
._43{width:36.414036px;}
._5{width:38.280000px;}
._1e{width:39.479982px;}
._23{width:41.471982px;}
._25{width:43.686000px;}
._16{width:45.330018px;}
._36{width:46.368018px;}
._13{width:47.771964px;}
._19{width:49.050000px;}
._15{width:50.760000px;}
._11{width:52.038018px;}
._22{width:53.874018px;}
._4b{width:54.941982px;}
._18{width:56.123982px;}
._6{width:57.360000px;}
._28{width:59.147982px;}
._d{width:60.912000px;}
._29{width:63.234036px;}
._3e{width:65.520036px;}
._4{width:66.900000px;}
._f{width:67.920018px;}
._b{width:69.822000px;}
._54{width:70.960266px;}
._e{width:72.786018px;}
._14{width:73.962018px;}
._57{width:75.588000px;}
._8{width:76.620000px;}
._55{width:77.687964px;}
._1b{width:78.768018px;}
._1f{width:79.866000px;}
._a{width:81.366000px;}
._40{width:83.304018px;}
._41{width:84.851982px;}
._24{width:86.112018px;}
._3d{width:87.822036px;}
._20{width:90.270018px;}
._10{width:91.896018px;}
._c{width:94.355982px;}
._9{width:95.460000px;}
._7{width:98.760000px;}
._1{width:99.810036px;}
._5d{width:105.258000px;}
._3{width:110.987820px;}
._1d{width:117.035982px;}
._0{width:119.177784px;}
._5a{width:129.726036px;}
._37{width:154.404018px;}
._2{width:160.817724px;}
._21{width:166.662018px;}
._4f{width:174.977124px;}
._5c{width:182.088000px;}
._38{width:185.291982px;}
._33{width:193.080018px;}
._3f{width:201.456018px;}
._48{width:225.876018px;}
._27{width:231.731982px;}
._62{width:237.329982px;}
._49{width:240.408000px;}
._4c{width:259.430034px;}
._26{width:264.852018px;}
._35{width:268.704000px;}
._5e{width:274.080000px;}
._45{width:276.858000px;}
._12{width:279.995982px;}
._3a{width:282.258000px;}
._4d{width:299.825964px;}
._34{width:303.696000px;}
._56{width:329.957982px;}
._53{width:343.640590px;}
._50{width:349.493964px;}
._60{width:358.109946px;}
._44{width:376.596000px;}
._61{width:379.961964px;}
._63{width:387.162342px;}
._42{width:389.466018px;}
._51{width:414.360000px;}
._46{width:446.223925px;}
._3b{width:481.334253px;}
._39{width:483.580667px;}
._52{width:494.219125px;}
._4a{width:586.566000px;}
._3c{width:604.116000px;}
._5f{width:638.160000px;}
._5b{width:814.319982px;}
._58{width:834.534000px;}
._59{width:1021.248000px;}
._4e{width:1083.366000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:6.000000px;}
.fsc{font-size:12.000000px;}
.fs8{font-size:18.000000px;}
.fs9{font-size:24.000000px;}
.fs7{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs10{font-size:84.000000px;}
.fse{font-size:90.000000px;}
.fs11{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.fsf{font-size:120.000000px;}
.fs12{font-size:132.000000px;}
.fsd{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y156{bottom:93.458700px;}
.y24{bottom:96.698700px;}
.y133{bottom:100.298700px;}
.y110{bottom:101.018700px;}
.y111{bottom:102.098700px;}
.y10f{bottom:103.178700px;}
.y112{bottom:103.898700px;}
.y10d{bottom:104.618700px;}
.y10c{bottom:106.778700px;}
.y10b{bottom:107.138700px;}
.y10e{bottom:108.578700px;}
.y10a{bottom:112.538700px;}
.y105{bottom:116.498700px;}
.y103{bottom:116.858700px;}
.y107{bottom:117.218700px;}
.y108{bottom:117.578700px;}
.y104{bottom:117.938700px;}
.y106{bottom:118.298700px;}
.y109{bottom:118.658700px;}
.yfe{bottom:123.338700px;}
.y102{bottom:123.698700px;}
.y100{bottom:124.058700px;}
.yff{bottom:126.938700px;}
.y101{bottom:128.018700px;}
.yf8{bottom:130.538700px;}
.yf9{bottom:130.898700px;}
.y155{bottom:131.258700px;}
.yfd{bottom:131.618700px;}
.y132{bottom:134.858700px;}
.yf7{bottom:135.218700px;}
.yfb{bottom:136.298700px;}
.yfa{bottom:137.378700px;}
.yfc{bottom:138.098700px;}
.y154{bottom:146.018700px;}
.y23{bottom:147.098700px;}
.yf6{bottom:147.458700px;}
.y131{bottom:152.138700px;}
.yf4{bottom:155.378700px;}
.yf5{bottom:159.338700px;}
.yf3{bottom:163.658700px;}
.y22{bottom:164.738700px;}
.y153{bottom:170.498700px;}
.yf2{bottom:178.418700px;}
.y21{bottom:182.738700px;}
.y152{bottom:184.898700px;}
.y130{bottom:187.418700px;}
.y151{bottom:200.018700px;}
.yf1{bottom:201.818700px;}
.y20{bottom:203.258700px;}
.y12f{bottom:205.058700px;}
.y150{bottom:214.058700px;}
.yf0{bottom:214.418700px;}
.y12e{bottom:223.058700px;}
.y1f{bottom:224.498700px;}
.y14f{bottom:228.458700px;}
.yef{bottom:228.818700px;}
.yee{bottom:237.098700px;}
.y12d{bottom:240.698700px;}
.yeb{bottom:241.778700px;}
.yec{bottom:242.138700px;}
.y1e{bottom:242.498700px;}
.yed{bottom:243.578700px;}
.ye9{bottom:245.738700px;}
.ye7{bottom:248.258700px;}
.yea{bottom:249.338700px;}
.ye6{bottom:253.298700px;}
.ye5{bottom:254.378700px;}
.ye8{bottom:254.738700px;}
.y14d{bottom:257.618700px;}
.y12c{bottom:258.338700px;}
.y14e{bottom:259.118700px;}
.y1d{bottom:259.778700px;}
.ye4{bottom:263.018700px;}
.ye2{bottom:268.778700px;}
.ye3{bottom:270.218700px;}
.y14c{bottom:271.658700px;}
.ye1{bottom:272.738700px;}
.y12b{bottom:275.618700px;}
.ydf{bottom:277.058700px;}
.y1c{bottom:277.418700px;}
.ye0{bottom:278.498700px;}
.ydd{bottom:278.858700px;}
.yde{bottom:281.378700px;}
.y14b{bottom:286.418700px;}
.ydb{bottom:286.778700px;}
.yd9{bottom:288.938700px;}
.ydc{bottom:289.298700px;}
.y12a{bottom:293.618700px;}
.yd7{bottom:294.698700px;}
.y1b{bottom:295.058700px;}
.yda{bottom:295.418700px;}
.yd6{bottom:299.738700px;}
.y14a{bottom:300.818700px;}
.yd8{bottom:305.138700px;}
.yd5{bottom:305.858700px;}
.yd3{bottom:306.578700px;}
.yd4{bottom:308.378700px;}
.yd2{bottom:310.898700px;}
.y129{bottom:311.618700px;}
.y1a{bottom:312.698700px;}
.ycc{bottom:314.858700px;}
.ycf{bottom:315.218700px;}
.yd1{bottom:315.938700px;}
.ycb{bottom:316.658700px;}
.yce{bottom:320.978700px;}
.yd0{bottom:324.218700px;}
.yc8{bottom:324.938700px;}
.ycd{bottom:326.378700px;}
.yca{bottom:328.898700px;}
.y128{bottom:329.258700px;}
.y19{bottom:330.698700px;}
.yc4{bottom:333.578700px;}
.yc7{bottom:333.938700px;}
.yc9{bottom:334.298700px;}
.yc2{bottom:339.338700px;}
.yc5{bottom:340.058700px;}
.yc0{bottom:343.298700px;}
.yc6{bottom:344.018700px;}
.y127{bottom:346.898700px;}
.y18{bottom:348.338700px;}
.yc3{bottom:349.058700px;}
.y149{bottom:353.018700px;}
.yc1{bottom:355.178700px;}
.y126{bottom:364.538700px;}
.y17{bottom:365.978700px;}
.ybf{bottom:367.418700px;}
.ybe{bottom:369.218700px;}
.ybd{bottom:375.698700px;}
.ybc{bottom:379.658700px;}
.y125{bottom:382.178700px;}
.y16{bottom:383.978700px;}
.ybb{bottom:387.218700px;}
.yba{bottom:387.578700px;}
.y148{bottom:388.658700px;}
.yb7{bottom:392.258700px;}
.yb9{bottom:394.058700px;}
.y124{bottom:399.818700px;}
.yb8{bottom:400.538700px;}
.y15{bottom:401.258700px;}
.y147{bottom:405.938700px;}
.yb6{bottom:407.378700px;}
.yb5{bottom:417.818700px;}
.y14{bottom:418.898700px;}
.y146{bottom:423.578700px;}
.yb4{bottom:429.698700px;}
.yb3{bottom:435.818700px;}
.y13{bottom:436.538700px;}
.yaf{bottom:436.898700px;}
.yb2{bottom:440.138700px;}
.yb0{bottom:440.498700px;}
.y145{bottom:441.218700px;}
.yb1{bottom:442.298700px;}
.yac{bottom:445.178700px;}
.yad{bottom:447.698700px;}
.yae{bottom:449.138700px;}
.yab{bottom:449.858700px;}
.y123{bottom:451.658700px;}
.ya8{bottom:453.098700px;}
.y12{bottom:454.538700px;}
.ya9{bottom:454.898700px;}
.yaa{bottom:455.618700px;}
.y144{bottom:458.858700px;}
.ya7{bottom:459.218700px;}
.ya6{bottom:461.018700px;}
.ya2{bottom:464.258700px;}
.ya4{bottom:466.058700px;}
.ya5{bottom:466.418700px;}
.ya3{bottom:466.778700px;}
.ya1{bottom:469.298700px;}
.y11{bottom:472.178700px;}
.y9f{bottom:473.978700px;}
.y9a{bottom:476.138700px;}
.y9e{bottom:476.498700px;}
.ya0{bottom:478.298700px;}
.y122{bottom:480.098700px;}
.y9c{bottom:482.618700px;}
.y99{bottom:484.418700px;}
.y9d{bottom:489.818700px;}
.y9b{bottom:491.978700px;}
.y94{bottom:492.338700px;}
.y143{bottom:494.138700px;}
.y96{bottom:495.218700px;}
.y98{bottom:498.458700px;}
.y95{bottom:505.298700px;}
.y97{bottom:506.378700px;}
.y93{bottom:514.658700px;}
.y121{bottom:515.738700px;}
.y142{bottom:524.738700px;}
.y120{bottom:533.018700px;}
.y92{bottom:533.738700px;}
.y10{bottom:543.818700px;}
.y90{bottom:549.218700px;}
.y11f{bottom:550.298700px;}
.y91{bottom:552.098700px;}
.y89{bottom:552.818700px;}
.y141{bottom:553.178700px;}
.y8b{bottom:554.978700px;}
.y8f{bottom:555.698700px;}
.y8a{bottom:556.058700px;}
.y8e{bottom:556.418700px;}
.y8c{bottom:560.018700px;}
.y8d{bottom:561.818700px;}
.y87{bottom:563.618700px;}
.y86{bottom:563.978700px;}
.y81{bottom:565.778700px;}
.y83{bottom:567.218700px;}
.y80{bottom:567.578700px;}
.y11e{bottom:567.938700px;}
.y85{bottom:568.298700px;}
.y88{bottom:568.658700px;}
.y82{bottom:570.098700px;}
.y140{bottom:570.818700px;}
.y7f{bottom:571.178700px;}
.y7e{bottom:573.698700px;}
.y84{bottom:578.018700px;}
.y7c{bottom:578.378700px;}
.yf{bottom:579.458700px;}
.y78{bottom:581.258700px;}
.y7d{bottom:581.978700px;}
.y73{bottom:583.058700px;}
.y7a{bottom:584.498700px;}
.y79{bottom:585.938700px;}
.y7b{bottom:586.298700px;}
.y76{bottom:588.458700px;}
.y13f{bottom:588.818700px;}
.y74{bottom:589.898700px;}
.y71{bottom:592.058700px;}
.y75{bottom:592.418700px;}
.y77{bottom:594.218700px;}
.y6c{bottom:597.098700px;}
.y72{bottom:597.458700px;}
.y6f{bottom:597.818700px;}
.y70{bottom:598.178700px;}
.ye{bottom:600.338700px;}
.y6a{bottom:601.418700px;}
.y6d{bottom:602.498700px;}
.y11d{bottom:603.578700px;}
.y6b{bottom:606.098700px;}
.y6e{bottom:606.818700px;}
.y68{bottom:613.298700px;}
.y67{bottom:618.338700px;}
.y69{bottom:619.418700px;}
.y63{bottom:620.858700px;}
.yd{bottom:621.218700px;}
.y65{bottom:623.378700px;}
.y13e{bottom:624.098700px;}
.y64{bottom:625.898700px;}
.y66{bottom:628.778700px;}
.y60{bottom:635.618700px;}
.y62{bottom:638.858700px;}
.y13d{bottom:641.738700px;}
.y61{bottom:648.938700px;}
.y5f{bottom:656.138700px;}
.y13c{bottom:659.738700px;}
.y11c{bottom:660.818700px;}
.y5e{bottom:666.938700px;}
.y13b{bottom:677.378700px;}
.y11b{bottom:690.338700px;}
.y8{bottom:692.978700px;}
.ya{bottom:693.578700px;}
.y5b{bottom:694.658700px;}
.y5c{bottom:695.018700px;}
.y58{bottom:695.378700px;}
.yc{bottom:696.458700px;}
.y5d{bottom:698.258700px;}
.y9{bottom:698.978700px;}
.y57{bottom:700.058700px;}
.y5a{bottom:701.498700px;}
.y59{bottom:701.858700px;}
.y54{bottom:702.218700px;}
.y56{bottom:702.938700px;}
.y55{bottom:703.658700px;}
.y53{bottom:706.178700px;}
.y4c{bottom:707.618700px;}
.y51{bottom:707.978700px;}
.y52{bottom:708.338700px;}
.y11a{bottom:708.698700px;}
.y50{bottom:709.418700px;}
.y4d{bottom:710.858700px;}
.y4e{bottom:711.218700px;}
.y4f{bottom:711.938700px;}
.y7{bottom:712.658700px;}
.yb{bottom:713.738700px;}
.y49{bottom:714.458700px;}
.y4a{bottom:717.338700px;}
.y4b{bottom:719.498700px;}
.y119{bottom:725.978700px;}
.y45{bottom:726.338700px;}
.y46{bottom:728.138700px;}
.y47{bottom:729.218700px;}
.y13a{bottom:729.938700px;}
.y48{bottom:733.178700px;}
.y41{bottom:736.058700px;}
.y42{bottom:736.418700px;}
.y43{bottom:736.778700px;}
.y44{bottom:737.858700px;}
.y40{bottom:746.858700px;}
.y139{bottom:747.938700px;}
.y118{bottom:749.018700px;}
.y3c{bottom:749.378700px;}
.y3a{bottom:756.578700px;}
.y3e{bottom:757.298700px;}
.y5{bottom:757.658700px;}
.y6{bottom:758.018700px;}
.y3d{bottom:758.738700px;}
.y3f{bottom:760.178700px;}
.y3b{bottom:762.698700px;}
.y138{bottom:765.578700px;}
.y39{bottom:766.298700px;}
.y37{bottom:766.658700px;}
.y117{bottom:767.378700px;}
.y38{bottom:768.098700px;}
.y36{bottom:773.138700px;}
.y30{bottom:774.218700px;}
.y31{bottom:774.938700px;}
.y2f{bottom:775.658700px;}
.y35{bottom:776.378700px;}
.y2d{bottom:779.978700px;}
.y34{bottom:781.418700px;}
.y33{bottom:781.778700px;}
.y32{bottom:783.578700px;}
.y2c{bottom:785.378700px;}
.y2e{bottom:787.178700px;}
.y2b{bottom:792.578700px;}
.y2a{bottom:794.738700px;}
.y137{bottom:800.498700px;}
.y116{bottom:802.298700px;}
.y4{bottom:809.138700px;}
.y29{bottom:810.938700px;}
.y2{bottom:811.298700px;}
.y27{bottom:816.698700px;}
.y136{bottom:818.498700px;}
.y115{bottom:820.298700px;}
.y28{bottom:823.178700px;}
.y26{bottom:827.138700px;}
.y25{bottom:834.698700px;}
.y135{bottom:836.498700px;}
.y114{bottom:837.578700px;}
.y3{bottom:841.178700px;}
.y1{bottom:842.618700px;}
.y134{bottom:870.698700px;}
.y113{bottom:872.498700px;}
.h3b{height:5.888672px;}
.h1c{height:11.771484px;}
.h1f{height:11.777344px;}
.h2d{height:12.515625px;}
.h11{height:17.666016px;}
.h15{height:18.773438px;}
.h1d{height:23.542969px;}
.h18{height:23.554688px;}
.h13{height:25.031250px;}
.h16{height:29.428711px;}
.h10{height:29.443359px;}
.h12{height:31.289062px;}
.h27{height:35.314453px;}
.h24{height:35.332031px;}
.h7{height:37.546875px;}
.h20{height:41.200195px;}
.hb{height:41.220703px;}
.h23{height:41.897461px;}
.hc{height:43.804688px;}
.h3a{height:47.085938px;}
.he{height:47.109375px;}
.h5{height:50.062500px;}
.h30{height:50.118047px;}
.hf{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:55.503491px;}
.h6{height:56.320312px;}
.hd{height:58.857422px;}
.h8{height:58.886719px;}
.h4{height:60.468750px;}
.h14{height:62.578125px;}
.h17{height:64.775391px;}
.h2c{height:68.835938px;}
.h19{height:70.628906px;}
.h2f{height:70.664062px;}
.h21{height:71.715938px;}
.h3{height:75.093750px;}
.h1a{height:76.552734px;}
.h25{height:76.978125px;}
.h1b{height:77.478047px;}
.h33{height:78.418125px;}
.h28{height:79.911563px;}
.h39{height:81.351562px;}
.h2a{height:82.441406px;}
.h2e{height:82.738125px;}
.h22{height:88.330078px;}
.h26{height:93.867188px;}
.h31{height:94.171875px;}
.h34{height:94.218750px;}
.h2b{height:100.125000px;}
.h2{height:105.996094px;}
.h29{height:125.156250px;}
.h32{height:137.671875px;}
.h1e{height:143.929688px;}
.h1{height:918.750000px;}
.h0{height:919.060200px;}
.h36{height:926.250000px;}
.h35{height:926.560200px;}
.h38{height:932.250000px;}
.h37{height:932.560200px;}
.w0{width:568.356900px;}
.w1{width:568.500000px;}
.w2{width:578.856900px;}
.w3{width:579.000000px;}
.w4{width:584.856900px;}
.w5{width:585.000000px;}
.x0{left:0.000000px;}
.x1{left:44.820900px;}
.x21{left:55.260900px;}
.x17{left:56.340900px;}
.x19{left:57.420900px;}
.x2{left:64.260900px;}
.x32{left:69.300900px;}
.x27{left:71.460900px;}
.x8f{left:75.060900px;}
.x7d{left:76.500900px;}
.x82{left:77.580900px;}
.x7b{left:79.380900px;}
.x57{left:80.820900px;}
.x5a{left:81.900900px;}
.x89{left:82.980900px;}
.x62{left:84.060900px;}
.x40{left:91.620900px;}
.x55{left:93.060900px;}
.x36{left:94.500900px;}
.x73{left:96.660900px;}
.x2c{left:97.740900px;}
.x25{left:98.820900px;}
.x5{left:103.140900px;}
.x16{left:106.740900px;}
.x86{left:108.180900px;}
.x71{left:109.980900px;}
.x94{left:113.580900px;}
.x92{left:114.660900px;}
.x8b{left:119.700900px;}
.x8d{left:120.780900px;}
.x72{left:124.380900px;}
.x98{left:125.820900px;}
.x28{left:128.340900px;}
.x9d{left:133.020900px;}
.x7f{left:134.100900px;}
.x12{left:135.180900px;}
.xf{left:138.780900px;}
.x84{left:139.860900px;}
.x56{left:141.660900px;}
.x11{left:142.740900px;}
.x69{left:147.780900px;}
.x99{left:148.860900px;}
.x3c{left:151.740900px;}
.x2f{left:153.180900px;}
.x39{left:155.340900px;}
.x74{left:158.220900px;}
.x26{left:160.380900px;}
.x7{left:161.460900px;}
.xa{left:162.540900px;}
.x10{left:164.340900px;}
.x8e{left:165.420900px;}
.xb{left:167.696400px;}
.xc{left:169.380900px;}
.x9a{left:170.910900px;}
.x7e{left:172.620900px;}
.x30{left:175.140900px;}
.x65{left:178.380900px;}
.x63{left:179.460900px;}
.x75{left:180.900900px;}
.x9b{left:182.340900px;}
.x34{left:185.580900px;}
.x3d{left:187.020900px;}
.x37{left:189.180900px;}
.x76{left:192.420900px;}
.x1c{left:196.380900px;}
.x95{left:197.460900px;}
.x59{left:198.540900px;}
.x77{left:202.140900px;}
.x67{left:204.300900px;}
.x5d{left:209.700900px;}
.x8c{left:215.100900px;}
.x8{left:217.260900px;}
.x48{left:219.060900px;}
.x42{left:220.140900px;}
.x13{left:221.220900px;}
.x44{left:222.660900px;}
.x47{left:223.740900px;}
.x22{left:226.260900px;}
.x1d{left:229.140900px;}
.x5e{left:232.020900px;}
.x31{left:233.100900px;}
.x1a{left:236.700900px;}
.x9{left:238.860900px;}
.x68{left:241.380900px;}
.x78{left:248.580900px;}
.x4f{left:252.180900px;}
.x4e{left:253.980900px;}
.x4b{left:255.780900px;}
.x4a{left:257.220900px;}
.x1b{left:262.980900px;}
.x87{left:268.020900px;}
.x9e{left:269.100900px;}
.x64{left:273.780900px;}
.x6f{left:276.300900px;}
.x1e{left:279.540900px;}
.x23{left:282.420900px;}
.x5c{left:284.940900px;}
.x43{left:286.020900px;}
.x3{left:288.900900px;}
.x46{left:289.980900px;}
.x9c{left:291.420900px;}
.xa0{left:295.020900px;}
.x4{left:297.900900px;}
.x96{left:302.220900px;}
.x24{left:304.380900px;}
.xd{left:306.180900px;}
.x8a{left:311.940900px;}
.x6b{left:313.740900px;}
.x80{left:314.820900px;}
.x14{left:316.620900px;}
.x3e{left:319.140900px;}
.x6{left:320.220900px;}
.x38{left:322.740900px;}
.x53{left:323.820900px;}
.x5b{left:325.260900px;}
.x66{left:327.420900px;}
.x6c{left:330.300900px;}
.xa2{left:332.820900px;}
.x58{left:337.140900px;}
.x97{left:345.780900px;}
.x41{left:352.980900px;}
.x3a{left:356.220900px;}
.x88{left:358.020900px;}
.x29{left:359.460900px;}
.x2d{left:370.980900px;}
.x90{left:372.780900px;}
.x9f{left:381.780900px;}
.x81{left:382.860900px;}
.x50{left:387.180900px;}
.x4d{left:388.620900px;}
.x4c{left:390.780900px;}
.x54{left:392.220900px;}
.x52{left:393.300900px;}
.x2a{left:395.820900px;}
.x15{left:403.380900px;}
.x1f{left:407.340900px;}
.x2b{left:418.500900px;}
.x20{left:420.660900px;}
.x51{left:421.740900px;}
.x3b{left:424.620900px;}
.xa3{left:426.060900px;}
.x2e{left:427.140900px;}
.x61{left:428.940900px;}
.x91{left:430.020900px;}
.xa1{left:431.100900px;}
.x18{left:443.700900px;}
.x93{left:451.260900px;}
.x3f{left:454.140900px;}
.xe{left:455.580900px;}
.x45{left:457.740900px;}
.x6d{left:466.380900px;}
.x83{left:469.260900px;}
.x79{left:477.540900px;}
.x85{left:479.700900px;}
.x7a{left:482.580900px;}
.x6a{left:484.380900px;}
.x7c{left:486.900900px;}
.x6e{left:492.300900px;}
.x35{left:496.260900px;}
.x33{left:498.780900px;}
.x49{left:500.220900px;}
.x5f{left:505.260900px;}
.x60{left:509.220900px;}
.x70{left:510.300900px;}
@media print{
.va{vertical-align:-21.760000pt;}
.v6{vertical-align:-16.640000pt;}
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:12.800000pt;}
.vb{vertical-align:14.080000pt;}
.vc{vertical-align:16.000000pt;}
.v8{vertical-align:17.920000pt;}
.v9{vertical-align:19.200000pt;}
.v2{vertical-align:21.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:15.680000pt;}
.ls8{letter-spacing:26.410667pt;}
.ls6{letter-spacing:38.122667pt;}
.ls3{letter-spacing:46.496000pt;}
.ls2{letter-spacing:90.453333pt;}
.ls1{letter-spacing:126.213333pt;}
.ls4{letter-spacing:327.253333pt;}
.ls5{letter-spacing:585.813333pt;}
.ws2c{word-spacing:-22.400000pt;}
.ws4{word-spacing:-17.760000pt;}
.ws54{word-spacing:-15.984000pt;}
.wsa3{word-spacing:-14.208000pt;}
.ws4a{word-spacing:-12.432000pt;}
.ws32{word-spacing:-11.861333pt;}
.ws27{word-spacing:-8.896000pt;}
.ws34{word-spacing:-7.413333pt;}
.ws55{word-spacing:-7.104000pt;}
.ws71{word-spacing:-5.535216pt;}
.ws2a{word-spacing:-5.093333pt;}
.ws2b{word-spacing:-4.448000pt;}
.ws28{word-spacing:-4.074667pt;}
.ws9c{word-spacing:-3.834965pt;}
.ws4c{word-spacing:-3.728016pt;}
.ws2f{word-spacing:-2.037333pt;}
.ws62{word-spacing:-1.500704pt;}
.ws61{word-spacing:-1.455984pt;}
.wsa1{word-spacing:-0.554667pt;}
.ws26{word-spacing:0.000000pt;}
.ws68{word-spacing:0.054096pt;}
.ws3e{word-spacing:0.357317pt;}
.ws3a{word-spacing:0.460464pt;}
.ws4d{word-spacing:2.256000pt;}
.ws60{word-spacing:3.178592pt;}
.ws5{word-spacing:3.541248pt;}
.ws20{word-spacing:3.867840pt;}
.ws38{word-spacing:4.016016pt;}
.ws35{word-spacing:4.384000pt;}
.ws25{word-spacing:4.773717pt;}
.ws5f{word-spacing:5.440000pt;}
.ws53{word-spacing:5.679984pt;}
.ws21{word-spacing:5.941920pt;}
.ws57{word-spacing:5.967984pt;}
.ws96{word-spacing:6.656000pt;}
.wsa5{word-spacing:7.936000pt;}
.wsa0{word-spacing:8.192000pt;}
.ws4b{word-spacing:8.292219pt;}
.ws6{word-spacing:9.226667pt;}
.ws56{word-spacing:9.519984pt;}
.ws83{word-spacing:9.807984pt;}
.ws77{word-spacing:10.048000pt;}
.wsd{word-spacing:10.352016pt;}
.ws37{word-spacing:10.592016pt;}
.ws7c{word-spacing:10.671984pt;}
.wsad{word-spacing:10.687808pt;}
.ws5d{word-spacing:10.800000pt;}
.ws5a{word-spacing:10.837680pt;}
.ws98{word-spacing:10.997317pt;}
.ws75{word-spacing:11.664000pt;}
.ws10{word-spacing:12.080016pt;}
.ws8e{word-spacing:12.160000pt;}
.wsae{word-spacing:12.324480pt;}
.ws7b{word-spacing:12.944016pt;}
.ws5e{word-spacing:13.065888pt;}
.ws12{word-spacing:13.359984pt;}
.ws1a{word-spacing:13.968000pt;}
.ws18{word-spacing:14.432016pt;}
.ws76{word-spacing:14.549333pt;}
.ws58{word-spacing:14.640000pt;}
.ws5c{word-spacing:15.188592pt;}
.ws1c{word-spacing:15.504000pt;}
.wsb2{word-spacing:15.653344pt;}
.ws19{word-spacing:15.855984pt;}
.ws9f{word-spacing:15.888000pt;}
.wse{word-spacing:16.575984pt;}
.ws89{word-spacing:16.784016pt;}
.ws9d{word-spacing:16.867797pt;}
.wsa8{word-spacing:17.109333pt;}
.ws52{word-spacing:17.199984pt;}
.wsac{word-spacing:17.252576pt;}
.ws59{word-spacing:17.391984pt;}
.wsb0{word-spacing:17.765333pt;}
.ws67{word-spacing:17.838816pt;}
.ws1e{word-spacing:17.936016pt;}
.ws6a{word-spacing:18.080000pt;}
.ws3c{word-spacing:18.459696pt;}
.ws1f{word-spacing:18.480000pt;}
.ws3f{word-spacing:18.628000pt;}
.ws1d{word-spacing:19.008000pt;}
.ws72{word-spacing:19.161120pt;}
.ws42{word-spacing:19.215984pt;}
.ws40{word-spacing:19.344000pt;}
.ws4f{word-spacing:19.542096pt;}
.wsa4{word-spacing:19.584000pt;}
.ws24{word-spacing:19.614048pt;}
.ws17{word-spacing:19.664016pt;}
.ws91{word-spacing:19.728000pt;}
.ws65{word-spacing:19.760016pt;}
.ws86{word-spacing:19.871984pt;}
.ws13{word-spacing:20.112000pt;}
.wsf{word-spacing:20.288016pt;}
.ws8a{word-spacing:20.415984pt;}
.ws80{word-spacing:20.693333pt;}
.ws7d{word-spacing:20.912016pt;}
.ws51{word-spacing:20.943984pt;}
.ws49{word-spacing:20.966827pt;}
.ws66{word-spacing:21.039984pt;}
.ws7f{word-spacing:21.231984pt;}
.ws46{word-spacing:21.279984pt;}
.wsa9{word-spacing:21.414784pt;}
.ws48{word-spacing:21.461333pt;}
.ws64{word-spacing:21.776016pt;}
.ws15{word-spacing:21.813333pt;}
.ws90{word-spacing:22.016000pt;}
.ws43{word-spacing:22.320000pt;}
.wsa7{word-spacing:22.400000pt;}
.ws97{word-spacing:22.784000pt;}
.ws8f{word-spacing:23.424000pt;}
.ws9a{word-spacing:23.456000pt;}
.ws78{word-spacing:23.552000pt;}
.ws8c{word-spacing:24.128016pt;}
.ws3d{word-spacing:24.336000pt;}
.ws41{word-spacing:24.464016pt;}
.ws63{word-spacing:24.480000pt;}
.ws70{word-spacing:24.976000pt;}
.ws4e{word-spacing:25.137504pt;}
.ws88{word-spacing:25.200000pt;}
.wsa2{word-spacing:25.557333pt;}
.ws84{word-spacing:25.743984pt;}
.ws45{word-spacing:25.952016pt;}
.ws22{word-spacing:26.160000pt;}
.wsb{word-spacing:26.400000pt;}
.ws8b{word-spacing:26.848000pt;}
.ws81{word-spacing:26.895984pt;}
.ws44{word-spacing:27.024000pt;}
.ws6c{word-spacing:27.440016pt;}
.ws50{word-spacing:28.160016pt;}
.ws8{word-spacing:28.266667pt;}
.ws5b{word-spacing:28.304016pt;}
.ws6d{word-spacing:28.641536pt;}
.wsaa{word-spacing:29.440000pt;}
.ws11{word-spacing:29.696016pt;}
.ws73{word-spacing:30.528000pt;}
.ws1{word-spacing:30.587616pt;}
.ws92{word-spacing:31.242667pt;}
.wsab{word-spacing:31.438336pt;}
.ws2{word-spacing:32.032032pt;}
.ws0{word-spacing:32.064480pt;}
.ws9b{word-spacing:32.544000pt;}
.ws85{word-spacing:32.681760pt;}
.ws94{word-spacing:32.954667pt;}
.wsc{word-spacing:33.423984pt;}
.ws95{word-spacing:33.434651pt;}
.ws99{word-spacing:33.536000pt;}
.ws74{word-spacing:33.744000pt;}
.ws23{word-spacing:33.951984pt;}
.wsaf{word-spacing:33.969600pt;}
.ws16{word-spacing:34.047984pt;}
.ws9{word-spacing:34.506667pt;}
.ws1b{word-spacing:35.247984pt;}
.ws14{word-spacing:35.439984pt;}
.ws7e{word-spacing:35.984016pt;}
.wsb1{word-spacing:37.600000pt;}
.wsa6{word-spacing:40.288000pt;}
.ws6e{word-spacing:40.464000pt;}
.ws3b{word-spacing:42.096000pt;}
.ws8d{word-spacing:46.821339pt;}
.ws9e{word-spacing:46.900011pt;}
.ws3{word-spacing:48.816192pt;}
.ws82{word-spacing:50.296363pt;}
.ws93{word-spacing:51.813333pt;}
.wsa{word-spacing:53.493333pt;}
.ws79{word-spacing:54.560000pt;}
.ws6b{word-spacing:56.746667pt;}
.ws7a{word-spacing:63.616000pt;}
.ws87{word-spacing:71.280000pt;}
.ws47{word-spacing:80.880000pt;}
.ws7{word-spacing:86.400000pt;}
.ws36{word-spacing:198.399984pt;}
.ws30{word-spacing:202.234667pt;}
.ws2d{word-spacing:205.792000pt;}
.ws69{word-spacing:322.387810pt;}
.ws33{word-spacing:334.848000pt;}
.ws39{word-spacing:394.112000pt;}
.ws29{word-spacing:575.232000pt;}
.ws31{word-spacing:599.189333pt;}
.ws6f{word-spacing:640.224000pt;}
.ws2e{word-spacing:744.176552pt;}
._31{margin-left:-17.842368pt;}
._30{margin-left:-9.600000pt;}
._47{margin-left:-5.802869pt;}
._32{margin-left:-3.503200pt;}
._2f{margin-left:-2.524224pt;}
._2d{width:4.095312pt;}
._64{width:6.272000pt;}
._2e{width:20.843333pt;}
._2b{width:23.967376pt;}
._2c{width:26.507376pt;}
._2a{width:27.582240pt;}
._1c{width:29.109317pt;}
._17{width:30.309317pt;}
._1a{width:31.359984pt;}
._43{width:32.368032pt;}
._5{width:34.026667pt;}
._1e{width:35.093317pt;}
._23{width:36.863984pt;}
._25{width:38.832000pt;}
._16{width:40.293349pt;}
._36{width:41.216016pt;}
._13{width:42.463968pt;}
._19{width:43.600000pt;}
._15{width:45.120000pt;}
._11{width:46.256016pt;}
._22{width:47.888016pt;}
._4b{width:48.837317pt;}
._18{width:49.887984pt;}
._6{width:50.986667pt;}
._28{width:52.575984pt;}
._d{width:54.144000pt;}
._29{width:56.208032pt;}
._3e{width:58.240032pt;}
._4{width:59.466667pt;}
._f{width:60.373349pt;}
._b{width:62.064000pt;}
._54{width:63.075792pt;}
._e{width:64.698683pt;}
._14{width:65.744016pt;}
._57{width:67.189333pt;}
._8{width:68.106667pt;}
._55{width:69.055968pt;}
._1b{width:70.016016pt;}
._1f{width:70.992000pt;}
._a{width:72.325333pt;}
._40{width:74.048016pt;}
._41{width:75.423984pt;}
._24{width:76.544016pt;}
._3d{width:78.064032pt;}
._20{width:80.240016pt;}
._10{width:81.685349pt;}
._c{width:83.871984pt;}
._9{width:84.853333pt;}
._7{width:87.786667pt;}
._1{width:88.720032pt;}
._5d{width:93.562667pt;}
._3{width:98.655840pt;}
._1d{width:104.031984pt;}
._0{width:105.935808pt;}
._5a{width:115.312032pt;}
._37{width:137.248016pt;}
._2{width:142.949088pt;}
._21{width:148.144016pt;}
._4f{width:155.535221pt;}
._5c{width:161.856000pt;}
._38{width:164.703984pt;}
._33{width:171.626683pt;}
._3f{width:179.072016pt;}
._48{width:200.778683pt;}
._27{width:205.983984pt;}
._62{width:210.959984pt;}
._49{width:213.696000pt;}
._4c{width:230.604475pt;}
._26{width:235.424016pt;}
._35{width:238.848000pt;}
._5e{width:243.626667pt;}
._45{width:246.096000pt;}
._12{width:248.885317pt;}
._3a{width:250.896000pt;}
._4d{width:266.511968pt;}
._34{width:269.952000pt;}
._56{width:293.295984pt;}
._53{width:305.458302pt;}
._50{width:310.661301pt;}
._60{width:318.319952pt;}
._44{width:334.752000pt;}
._61{width:337.743968pt;}
._63{width:344.144304pt;}
._42{width:346.192016pt;}
._51{width:368.320000pt;}
._46{width:396.643489pt;}
._3b{width:427.852669pt;}
._39{width:429.849481pt;}
._52{width:439.305889pt;}
._4a{width:521.392000pt;}
._3c{width:536.992000pt;}
._5f{width:567.253333pt;}
._5b{width:723.839984pt;}
._58{width:741.808000pt;}
._59{width:907.776000pt;}
._4e{width:962.992000pt;}
.fs13{font-size:5.333333pt;}
.fsc{font-size:10.666667pt;}
.fs8{font-size:16.000000pt;}
.fs9{font-size:21.333333pt;}
.fs7{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs10{font-size:74.666667pt;}
.fse{font-size:80.000000pt;}
.fs11{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.fsf{font-size:106.666667pt;}
.fs12{font-size:117.333333pt;}
.fsd{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:83.074400pt;}
.y24{bottom:85.954400pt;}
.y133{bottom:89.154400pt;}
.y110{bottom:89.794400pt;}
.y111{bottom:90.754400pt;}
.y10f{bottom:91.714400pt;}
.y112{bottom:92.354400pt;}
.y10d{bottom:92.994400pt;}
.y10c{bottom:94.914400pt;}
.y10b{bottom:95.234400pt;}
.y10e{bottom:96.514400pt;}
.y10a{bottom:100.034400pt;}
.y105{bottom:103.554400pt;}
.y103{bottom:103.874400pt;}
.y107{bottom:104.194400pt;}
.y108{bottom:104.514400pt;}
.y104{bottom:104.834400pt;}
.y106{bottom:105.154400pt;}
.y109{bottom:105.474400pt;}
.yfe{bottom:109.634400pt;}
.y102{bottom:109.954400pt;}
.y100{bottom:110.274400pt;}
.yff{bottom:112.834400pt;}
.y101{bottom:113.794400pt;}
.yf8{bottom:116.034400pt;}
.yf9{bottom:116.354400pt;}
.y155{bottom:116.674400pt;}
.yfd{bottom:116.994400pt;}
.y132{bottom:119.874400pt;}
.yf7{bottom:120.194400pt;}
.yfb{bottom:121.154400pt;}
.yfa{bottom:122.114400pt;}
.yfc{bottom:122.754400pt;}
.y154{bottom:129.794400pt;}
.y23{bottom:130.754400pt;}
.yf6{bottom:131.074400pt;}
.y131{bottom:135.234400pt;}
.yf4{bottom:138.114400pt;}
.yf5{bottom:141.634400pt;}
.yf3{bottom:145.474400pt;}
.y22{bottom:146.434400pt;}
.y153{bottom:151.554400pt;}
.yf2{bottom:158.594400pt;}
.y21{bottom:162.434400pt;}
.y152{bottom:164.354400pt;}
.y130{bottom:166.594400pt;}
.y151{bottom:177.794400pt;}
.yf1{bottom:179.394400pt;}
.y20{bottom:180.674400pt;}
.y12f{bottom:182.274400pt;}
.y150{bottom:190.274400pt;}
.yf0{bottom:190.594400pt;}
.y12e{bottom:198.274400pt;}
.y1f{bottom:199.554400pt;}
.y14f{bottom:203.074400pt;}
.yef{bottom:203.394400pt;}
.yee{bottom:210.754400pt;}
.y12d{bottom:213.954400pt;}
.yeb{bottom:214.914400pt;}
.yec{bottom:215.234400pt;}
.y1e{bottom:215.554400pt;}
.yed{bottom:216.514400pt;}
.ye9{bottom:218.434400pt;}
.ye7{bottom:220.674400pt;}
.yea{bottom:221.634400pt;}
.ye6{bottom:225.154400pt;}
.ye5{bottom:226.114400pt;}
.ye8{bottom:226.434400pt;}
.y14d{bottom:228.994400pt;}
.y12c{bottom:229.634400pt;}
.y14e{bottom:230.327733pt;}
.y1d{bottom:230.914400pt;}
.ye4{bottom:233.794400pt;}
.ye2{bottom:238.914400pt;}
.ye3{bottom:240.194400pt;}
.y14c{bottom:241.474400pt;}
.ye1{bottom:242.434400pt;}
.y12b{bottom:244.994400pt;}
.ydf{bottom:246.274400pt;}
.y1c{bottom:246.594400pt;}
.ye0{bottom:247.554400pt;}
.ydd{bottom:247.874400pt;}
.yde{bottom:250.114400pt;}
.y14b{bottom:254.594400pt;}
.ydb{bottom:254.914400pt;}
.yd9{bottom:256.834400pt;}
.ydc{bottom:257.154400pt;}
.y12a{bottom:260.994400pt;}
.yd7{bottom:261.954400pt;}
.y1b{bottom:262.274400pt;}
.yda{bottom:262.594400pt;}
.yd6{bottom:266.434400pt;}
.y14a{bottom:267.394400pt;}
.yd8{bottom:271.234400pt;}
.yd5{bottom:271.874400pt;}
.yd3{bottom:272.514400pt;}
.yd4{bottom:274.114400pt;}
.yd2{bottom:276.354400pt;}
.y129{bottom:276.994400pt;}
.y1a{bottom:277.954400pt;}
.ycc{bottom:279.874400pt;}
.ycf{bottom:280.194400pt;}
.yd1{bottom:280.834400pt;}
.ycb{bottom:281.474400pt;}
.yce{bottom:285.314400pt;}
.yd0{bottom:288.194400pt;}
.yc8{bottom:288.834400pt;}
.ycd{bottom:290.114400pt;}
.yca{bottom:292.354400pt;}
.y128{bottom:292.674400pt;}
.y19{bottom:293.954400pt;}
.yc4{bottom:296.514400pt;}
.yc7{bottom:296.834400pt;}
.yc9{bottom:297.154400pt;}
.yc2{bottom:301.634400pt;}
.yc5{bottom:302.274400pt;}
.yc0{bottom:305.154400pt;}
.yc6{bottom:305.794400pt;}
.y127{bottom:308.354400pt;}
.y18{bottom:309.634400pt;}
.yc3{bottom:310.274400pt;}
.y149{bottom:313.794400pt;}
.yc1{bottom:315.714400pt;}
.y126{bottom:324.034400pt;}
.y17{bottom:325.314400pt;}
.ybf{bottom:326.594400pt;}
.ybe{bottom:328.194400pt;}
.ybd{bottom:333.954400pt;}
.ybc{bottom:337.474400pt;}
.y125{bottom:339.714400pt;}
.y16{bottom:341.314400pt;}
.ybb{bottom:344.194400pt;}
.yba{bottom:344.514400pt;}
.y148{bottom:345.474400pt;}
.yb7{bottom:348.674400pt;}
.yb9{bottom:350.274400pt;}
.y124{bottom:355.394400pt;}
.yb8{bottom:356.034400pt;}
.y15{bottom:356.674400pt;}
.y147{bottom:360.834400pt;}
.yb6{bottom:362.114400pt;}
.yb5{bottom:371.394400pt;}
.y14{bottom:372.354400pt;}
.y146{bottom:376.514400pt;}
.yb4{bottom:381.954400pt;}
.yb3{bottom:387.394400pt;}
.y13{bottom:388.034400pt;}
.yaf{bottom:388.354400pt;}
.yb2{bottom:391.234400pt;}
.yb0{bottom:391.554400pt;}
.y145{bottom:392.194400pt;}
.yb1{bottom:393.154400pt;}
.yac{bottom:395.714400pt;}
.yad{bottom:397.954400pt;}
.yae{bottom:399.234400pt;}
.yab{bottom:399.874400pt;}
.y123{bottom:401.474400pt;}
.ya8{bottom:402.754400pt;}
.y12{bottom:404.034400pt;}
.ya9{bottom:404.354400pt;}
.yaa{bottom:404.994400pt;}
.y144{bottom:407.874400pt;}
.ya7{bottom:408.194400pt;}
.ya6{bottom:409.794400pt;}
.ya2{bottom:412.674400pt;}
.ya4{bottom:414.274400pt;}
.ya5{bottom:414.594400pt;}
.ya3{bottom:414.914400pt;}
.ya1{bottom:417.154400pt;}
.y11{bottom:419.714400pt;}
.y9f{bottom:421.314400pt;}
.y9a{bottom:423.234400pt;}
.y9e{bottom:423.554400pt;}
.ya0{bottom:425.154400pt;}
.y122{bottom:426.754400pt;}
.y9c{bottom:428.994400pt;}
.y99{bottom:430.594400pt;}
.y9d{bottom:435.394400pt;}
.y9b{bottom:437.314400pt;}
.y94{bottom:437.634400pt;}
.y143{bottom:439.234400pt;}
.y96{bottom:440.194400pt;}
.y98{bottom:443.074400pt;}
.y95{bottom:449.154400pt;}
.y97{bottom:450.114400pt;}
.y93{bottom:457.474400pt;}
.y121{bottom:458.434400pt;}
.y142{bottom:466.434400pt;}
.y120{bottom:473.794400pt;}
.y92{bottom:474.434400pt;}
.y10{bottom:483.394400pt;}
.y90{bottom:488.194400pt;}
.y11f{bottom:489.154400pt;}
.y91{bottom:490.754400pt;}
.y89{bottom:491.394400pt;}
.y141{bottom:491.714400pt;}
.y8b{bottom:493.314400pt;}
.y8f{bottom:493.954400pt;}
.y8a{bottom:494.274400pt;}
.y8e{bottom:494.594400pt;}
.y8c{bottom:497.794400pt;}
.y8d{bottom:499.394400pt;}
.y87{bottom:500.994400pt;}
.y86{bottom:501.314400pt;}
.y81{bottom:502.914400pt;}
.y83{bottom:504.194400pt;}
.y80{bottom:504.514400pt;}
.y11e{bottom:504.834400pt;}
.y85{bottom:505.154400pt;}
.y88{bottom:505.474400pt;}
.y82{bottom:506.754400pt;}
.y140{bottom:507.394400pt;}
.y7f{bottom:507.714400pt;}
.y7e{bottom:509.954400pt;}
.y84{bottom:513.794400pt;}
.y7c{bottom:514.114400pt;}
.yf{bottom:515.074400pt;}
.y78{bottom:516.674400pt;}
.y7d{bottom:517.314400pt;}
.y73{bottom:518.274400pt;}
.y7a{bottom:519.554400pt;}
.y79{bottom:520.834400pt;}
.y7b{bottom:521.154400pt;}
.y76{bottom:523.074400pt;}
.y13f{bottom:523.394400pt;}
.y74{bottom:524.354400pt;}
.y71{bottom:526.274400pt;}
.y75{bottom:526.594400pt;}
.y77{bottom:528.194400pt;}
.y6c{bottom:530.754400pt;}
.y72{bottom:531.074400pt;}
.y6f{bottom:531.394400pt;}
.y70{bottom:531.714400pt;}
.ye{bottom:533.634400pt;}
.y6a{bottom:534.594400pt;}
.y6d{bottom:535.554400pt;}
.y11d{bottom:536.514400pt;}
.y6b{bottom:538.754400pt;}
.y6e{bottom:539.394400pt;}
.y68{bottom:545.154400pt;}
.y67{bottom:549.634400pt;}
.y69{bottom:550.594400pt;}
.y63{bottom:551.874400pt;}
.yd{bottom:552.194400pt;}
.y65{bottom:554.114400pt;}
.y13e{bottom:554.754400pt;}
.y64{bottom:556.354400pt;}
.y66{bottom:558.914400pt;}
.y60{bottom:564.994400pt;}
.y62{bottom:567.874400pt;}
.y13d{bottom:570.434400pt;}
.y61{bottom:576.834400pt;}
.y5f{bottom:583.234400pt;}
.y13c{bottom:586.434400pt;}
.y11c{bottom:587.394400pt;}
.y5e{bottom:592.834400pt;}
.y13b{bottom:602.114400pt;}
.y11b{bottom:613.634400pt;}
.y8{bottom:615.981067pt;}
.ya{bottom:616.514400pt;}
.y5b{bottom:617.474400pt;}
.y5c{bottom:617.794400pt;}
.y58{bottom:618.114400pt;}
.yc{bottom:619.074400pt;}
.y5d{bottom:620.674400pt;}
.y9{bottom:621.314400pt;}
.y57{bottom:622.274400pt;}
.y5a{bottom:623.554400pt;}
.y59{bottom:623.874400pt;}
.y54{bottom:624.194400pt;}
.y56{bottom:624.834400pt;}
.y55{bottom:625.474400pt;}
.y53{bottom:627.714400pt;}
.y4c{bottom:628.994400pt;}
.y51{bottom:629.314400pt;}
.y52{bottom:629.634400pt;}
.y11a{bottom:629.954400pt;}
.y50{bottom:630.594400pt;}
.y4d{bottom:631.874400pt;}
.y4e{bottom:632.194400pt;}
.y4f{bottom:632.834400pt;}
.y7{bottom:633.474400pt;}
.yb{bottom:634.434400pt;}
.y49{bottom:635.074400pt;}
.y4a{bottom:637.634400pt;}
.y4b{bottom:639.554400pt;}
.y119{bottom:645.314400pt;}
.y45{bottom:645.634400pt;}
.y46{bottom:647.234400pt;}
.y47{bottom:648.194400pt;}
.y13a{bottom:648.834400pt;}
.y48{bottom:651.714400pt;}
.y41{bottom:654.274400pt;}
.y42{bottom:654.594400pt;}
.y43{bottom:654.914400pt;}
.y44{bottom:655.874400pt;}
.y40{bottom:663.874400pt;}
.y139{bottom:664.834400pt;}
.y118{bottom:665.794400pt;}
.y3c{bottom:666.114400pt;}
.y3a{bottom:672.514400pt;}
.y3e{bottom:673.154400pt;}
.y5{bottom:673.474400pt;}
.y6{bottom:673.794400pt;}
.y3d{bottom:674.434400pt;}
.y3f{bottom:675.714400pt;}
.y3b{bottom:677.954400pt;}
.y138{bottom:680.514400pt;}
.y39{bottom:681.154400pt;}
.y37{bottom:681.474400pt;}
.y117{bottom:682.114400pt;}
.y38{bottom:682.754400pt;}
.y36{bottom:687.234400pt;}
.y30{bottom:688.194400pt;}
.y31{bottom:688.834400pt;}
.y2f{bottom:689.474400pt;}
.y35{bottom:690.114400pt;}
.y2d{bottom:693.314400pt;}
.y34{bottom:694.594400pt;}
.y33{bottom:694.914400pt;}
.y32{bottom:696.514400pt;}
.y2c{bottom:698.114400pt;}
.y2e{bottom:699.714400pt;}
.y2b{bottom:704.514400pt;}
.y2a{bottom:706.434400pt;}
.y137{bottom:711.554400pt;}
.y116{bottom:713.154400pt;}
.y4{bottom:719.234400pt;}
.y29{bottom:720.834400pt;}
.y2{bottom:721.154400pt;}
.y27{bottom:725.954400pt;}
.y136{bottom:727.554400pt;}
.y115{bottom:729.154400pt;}
.y28{bottom:731.714400pt;}
.y26{bottom:735.234400pt;}
.y25{bottom:741.954400pt;}
.y135{bottom:743.554400pt;}
.y114{bottom:744.514400pt;}
.y3{bottom:747.714400pt;}
.y1{bottom:748.994400pt;}
.y134{bottom:773.954400pt;}
.y113{bottom:775.554400pt;}
.h3b{height:5.234375pt;}
.h1c{height:10.463542pt;}
.h1f{height:10.468750pt;}
.h2d{height:11.125000pt;}
.h11{height:15.703125pt;}
.h15{height:16.687500pt;}
.h1d{height:20.927083pt;}
.h18{height:20.937500pt;}
.h13{height:22.250000pt;}
.h16{height:26.158854pt;}
.h10{height:26.171875pt;}
.h12{height:27.812500pt;}
.h27{height:31.390625pt;}
.h24{height:31.406250pt;}
.h7{height:33.375000pt;}
.h20{height:36.622396pt;}
.hb{height:36.640625pt;}
.h23{height:37.242188pt;}
.hc{height:38.937500pt;}
.h3a{height:41.854167pt;}
.he{height:41.875000pt;}
.h5{height:44.500000pt;}
.h30{height:44.549375pt;}
.hf{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:49.336436pt;}
.h6{height:50.062500pt;}
.hd{height:52.317708pt;}
.h8{height:52.343750pt;}
.h4{height:53.750000pt;}
.h14{height:55.625000pt;}
.h17{height:57.578125pt;}
.h2c{height:61.187500pt;}
.h19{height:62.781250pt;}
.h2f{height:62.812500pt;}
.h21{height:63.747500pt;}
.h3{height:66.750000pt;}
.h1a{height:68.046875pt;}
.h25{height:68.425000pt;}
.h1b{height:68.869375pt;}
.h33{height:69.705000pt;}
.h28{height:71.032500pt;}
.h39{height:72.312500pt;}
.h2a{height:73.281250pt;}
.h2e{height:73.545000pt;}
.h22{height:78.515625pt;}
.h26{height:83.437500pt;}
.h31{height:83.708333pt;}
.h34{height:83.750000pt;}
.h2b{height:89.000000pt;}
.h2{height:94.218750pt;}
.h29{height:111.250000pt;}
.h32{height:122.375000pt;}
.h1e{height:127.937500pt;}
.h1{height:816.666667pt;}
.h0{height:816.942400pt;}
.h36{height:823.333333pt;}
.h35{height:823.609067pt;}
.h38{height:828.666667pt;}
.h37{height:828.942400pt;}
.w0{width:505.206133pt;}
.w1{width:505.333333pt;}
.w2{width:514.539467pt;}
.w3{width:514.666667pt;}
.w4{width:519.872800pt;}
.w5{width:520.000000pt;}
.x0{left:0.000000pt;}
.x1{left:39.840800pt;}
.x21{left:49.120800pt;}
.x17{left:50.080800pt;}
.x19{left:51.040800pt;}
.x2{left:57.120800pt;}
.x32{left:61.600800pt;}
.x27{left:63.520800pt;}
.x8f{left:66.720800pt;}
.x7d{left:68.000800pt;}
.x82{left:68.960800pt;}
.x7b{left:70.560800pt;}
.x57{left:71.840800pt;}
.x5a{left:72.800800pt;}
.x89{left:73.760800pt;}
.x62{left:74.720800pt;}
.x40{left:81.440800pt;}
.x55{left:82.720800pt;}
.x36{left:84.000800pt;}
.x73{left:85.920800pt;}
.x2c{left:86.880800pt;}
.x25{left:87.840800pt;}
.x5{left:91.680800pt;}
.x16{left:94.880800pt;}
.x86{left:96.160800pt;}
.x71{left:97.760800pt;}
.x94{left:100.960800pt;}
.x92{left:101.920800pt;}
.x8b{left:106.400800pt;}
.x8d{left:107.360800pt;}
.x72{left:110.560800pt;}
.x98{left:111.840800pt;}
.x28{left:114.080800pt;}
.x9d{left:118.240800pt;}
.x7f{left:119.200800pt;}
.x12{left:120.160800pt;}
.xf{left:123.360800pt;}
.x84{left:124.320800pt;}
.x56{left:125.920800pt;}
.x11{left:126.880800pt;}
.x69{left:131.360800pt;}
.x99{left:132.320800pt;}
.x3c{left:134.880800pt;}
.x2f{left:136.160800pt;}
.x39{left:138.080800pt;}
.x74{left:140.640800pt;}
.x26{left:142.560800pt;}
.x7{left:143.520800pt;}
.xa{left:144.480800pt;}
.x10{left:146.080800pt;}
.x8e{left:147.040800pt;}
.xb{left:149.063467pt;}
.xc{left:150.560800pt;}
.x9a{left:151.920800pt;}
.x7e{left:153.440800pt;}
.x30{left:155.680800pt;}
.x65{left:158.560800pt;}
.x63{left:159.520800pt;}
.x75{left:160.800800pt;}
.x9b{left:162.080800pt;}
.x34{left:164.960800pt;}
.x3d{left:166.240800pt;}
.x37{left:168.160800pt;}
.x76{left:171.040800pt;}
.x1c{left:174.560800pt;}
.x95{left:175.520800pt;}
.x59{left:176.480800pt;}
.x77{left:179.680800pt;}
.x67{left:181.600800pt;}
.x5d{left:186.400800pt;}
.x8c{left:191.200800pt;}
.x8{left:193.120800pt;}
.x48{left:194.720800pt;}
.x42{left:195.680800pt;}
.x13{left:196.640800pt;}
.x44{left:197.920800pt;}
.x47{left:198.880800pt;}
.x22{left:201.120800pt;}
.x1d{left:203.680800pt;}
.x5e{left:206.240800pt;}
.x31{left:207.200800pt;}
.x1a{left:210.400800pt;}
.x9{left:212.320800pt;}
.x68{left:214.560800pt;}
.x78{left:220.960800pt;}
.x4f{left:224.160800pt;}
.x4e{left:225.760800pt;}
.x4b{left:227.360800pt;}
.x4a{left:228.640800pt;}
.x1b{left:233.760800pt;}
.x87{left:238.240800pt;}
.x9e{left:239.200800pt;}
.x64{left:243.360800pt;}
.x6f{left:245.600800pt;}
.x1e{left:248.480800pt;}
.x23{left:251.040800pt;}
.x5c{left:253.280800pt;}
.x43{left:254.240800pt;}
.x3{left:256.800800pt;}
.x46{left:257.760800pt;}
.x9c{left:259.040800pt;}
.xa0{left:262.240800pt;}
.x4{left:264.800800pt;}
.x96{left:268.640800pt;}
.x24{left:270.560800pt;}
.xd{left:272.160800pt;}
.x8a{left:277.280800pt;}
.x6b{left:278.880800pt;}
.x80{left:279.840800pt;}
.x14{left:281.440800pt;}
.x3e{left:283.680800pt;}
.x6{left:284.640800pt;}
.x38{left:286.880800pt;}
.x53{left:287.840800pt;}
.x5b{left:289.120800pt;}
.x66{left:291.040800pt;}
.x6c{left:293.600800pt;}
.xa2{left:295.840800pt;}
.x58{left:299.680800pt;}
.x97{left:307.360800pt;}
.x41{left:313.760800pt;}
.x3a{left:316.640800pt;}
.x88{left:318.240800pt;}
.x29{left:319.520800pt;}
.x2d{left:329.760800pt;}
.x90{left:331.360800pt;}
.x9f{left:339.360800pt;}
.x81{left:340.320800pt;}
.x50{left:344.160800pt;}
.x4d{left:345.440800pt;}
.x4c{left:347.360800pt;}
.x54{left:348.640800pt;}
.x52{left:349.600800pt;}
.x2a{left:351.840800pt;}
.x15{left:358.560800pt;}
.x1f{left:362.080800pt;}
.x2b{left:372.000800pt;}
.x20{left:373.920800pt;}
.x51{left:374.880800pt;}
.x3b{left:377.440800pt;}
.xa3{left:378.720800pt;}
.x2e{left:379.680800pt;}
.x61{left:381.280800pt;}
.x91{left:382.240800pt;}
.xa1{left:383.200800pt;}
.x18{left:394.400800pt;}
.x93{left:401.120800pt;}
.x3f{left:403.680800pt;}
.xe{left:404.960800pt;}
.x45{left:406.880800pt;}
.x6d{left:414.560800pt;}
.x83{left:417.120800pt;}
.x79{left:424.480800pt;}
.x85{left:426.400800pt;}
.x7a{left:428.960800pt;}
.x6a{left:430.560800pt;}
.x7c{left:432.800800pt;}
.x6e{left:437.600800pt;}
.x35{left:441.120800pt;}
.x33{left:443.360800pt;}
.x49{left:444.640800pt;}
.x5f{left:449.120800pt;}
.x60{left:452.640800pt;}
.x70{left:453.600800pt;}
}




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