
    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_6450a96061db872b09d6c3f1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6aefba2727ea9c6b08ff3151.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b74ad00483941c626b6d1206.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6411a25f9f7402e5683c3a6e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_564c5592441d512f817c4887.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3a6b08573d16bd2f5e00ee4d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_07507d442b293e3582f0252f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_378e448046a4d7a636fc5b80.woff2')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;}
.m2c{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m49{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);}
.m48{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);}
.m4d{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);}
.m40{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);}
.m50{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);}
.m53{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);}
.m42{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);}
.m4f{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);}
.m4e{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);}
.m51{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);}
.m39{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);}
.m2d{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);}
.m55{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);}
.m41{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m44{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);}
.m32{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);}
.m3c{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);}
.m35{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);}
.m23{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);}
.m30{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);}
.m37{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);}
.m1f{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);}
.m47{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);}
.m43{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);}
.m2e{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);}
.m31{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);}
.m15{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);}
.m3a{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);}
.m1b{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m3f{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);}
.m38{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);}
.m21{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);}
.m1c{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);}
.ma{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);}
.m5{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);}
.m24{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);}
.m7{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);}
.m1a{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);}
.m2{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.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);}
.m3{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);}
.m26{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);}
.m1{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.me{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);}
.m11{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);}
.m9{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);}
.mf{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);}
.m13{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);}
.m16{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);}
.m1d{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);}
.m29{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);}
.m27{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);}
.m12{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);}
.m34{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);}
.m1e{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);}
.m46{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);}
.m18{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);}
.m14{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);}
.m3e{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);}
.m2b{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);}
.m19{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);}
.m28{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);}
.m2a{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);}
.m25{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);}
.m36{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);}
.m22{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);}
.m56{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);}
.m4c{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);}
.m52{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);}
.m54{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:7.992000px;}
.ls2{letter-spacing:21.000000px;}
.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;}
}
.ws47{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.000000px;}
.ws5e{word-spacing:-13.344000px;}
.wsa6{word-spacing:-10.500000px;}
.ws87{word-spacing:-3.522000px;}
.ws71{word-spacing:-3.456000px;}
.ws2b{word-spacing:-3.108000px;}
.ws46{word-spacing:-2.826000px;}
.ws40{word-spacing:-2.715473px;}
.ws2f{word-spacing:-2.548801px;}
.ws7f{word-spacing:-2.478000px;}
.wsa{word-spacing:-2.431543px;}
.ws60{word-spacing:-2.412000px;}
.ws31{word-spacing:-2.401837px;}
.ws43{word-spacing:-2.279764px;}
.ws2e{word-spacing:-2.174979px;}
.ws97{word-spacing:-2.170617px;}
.ws5f{word-spacing:-2.130000px;}
.ws12{word-spacing:-2.067985px;}
.wse{word-spacing:-1.673450px;}
.ws94{word-spacing:-1.500427px;}
.ws4f{word-spacing:-1.248382px;}
.ws25{word-spacing:-1.020000px;}
.ws10{word-spacing:-0.840470px;}
.ws55{word-spacing:-0.804000px;}
.ws92{word-spacing:-0.780470px;}
.ws28{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.660000px;}
.ws8f{word-spacing:-0.599764px;}
.ws80{word-spacing:-0.456000px;}
.ws9a{word-spacing:-0.060833px;}
.ws13{word-spacing:0.000000px;}
.ws21{word-spacing:0.360000px;}
.ws53{word-spacing:0.522000px;}
.ws91{word-spacing:0.632251px;}
.wsb{word-spacing:0.856955px;}
.ws8{word-spacing:0.912593px;}
.ws96{word-spacing:1.199509px;}
.ws2{word-spacing:1.292015px;}
.ws4e{word-spacing:1.350000px;}
.ws58{word-spacing:1.566000px;}
.ws41{word-spacing:1.680000px;}
.ws7d{word-spacing:1.806000px;}
.ws34{word-spacing:1.848000px;}
.wsf{word-spacing:1.870068px;}
.ws49{word-spacing:1.914000px;}
.ws36{word-spacing:1.920000px;}
.ws57{word-spacing:1.980000px;}
.ws70{word-spacing:2.022000px;}
.ws1a{word-spacing:2.196000px;}
.ws7e{word-spacing:2.262000px;}
.ws99{word-spacing:2.459530px;}
.ws78{word-spacing:2.544000px;}
.ws64{word-spacing:2.610000px;}
.ws32{word-spacing:2.749383px;}
.ws56{word-spacing:2.826000px;}
.ws51{word-spacing:2.892000px;}
.ws0{word-spacing:2.940000px;}
.ws30{word-spacing:3.000000px;}
.ws9f{word-spacing:3.060000px;}
.ws95{word-spacing:3.172647px;}
.ws4b{word-spacing:3.240000px;}
.ws37{word-spacing:3.264000px;}
.ws4a{word-spacing:3.306000px;}
.wsa9{word-spacing:3.360000px;}
.ws81{word-spacing:3.414000px;}
.ws6f{word-spacing:3.522000px;}
.ws73{word-spacing:3.588000px;}
.ws38{word-spacing:3.804000px;}
.ws42{word-spacing:3.839551px;}
.ws4c{word-spacing:3.870000px;}
.ws5a{word-spacing:4.320000px;}
.ws29{word-spacing:4.434000px;}
.ws90{word-spacing:4.485021px;}
.ws98{word-spacing:4.499509px;}
.ws52{word-spacing:4.500000px;}
.ws74{word-spacing:4.566000px;}
.ws77{word-spacing:4.848000px;}
.ws88{word-spacing:4.914000px;}
.ws59{word-spacing:4.980000px;}
.wsa3{word-spacing:5.100000px;}
.ws89{word-spacing:5.196000px;}
.ws9c{word-spacing:5.280000px;}
.ws14{word-spacing:5.328000px;}
.ws1c{word-spacing:5.700000px;}
.ws2c{word-spacing:6.174000px;}
.ws7c{word-spacing:6.176861px;}
.ws5{word-spacing:6.360000px;}
.ws3a{word-spacing:6.539487px;}
.wsd{word-spacing:7.020000px;}
.ws1e{word-spacing:7.139551px;}
.ws19{word-spacing:7.320000px;}
.ws93{word-spacing:7.380000px;}
.ws2a{word-spacing:7.566000px;}
.ws8c{word-spacing:7.799509px;}
.ws2d{word-spacing:7.848000px;}
.ws1b{word-spacing:7.914000px;}
.ws8b{word-spacing:8.022000px;}
.ws8a{word-spacing:8.196000px;}
.ws15{word-spacing:8.340000px;}
.ws79{word-spacing:8.523021px;}
.ws6a{word-spacing:8.544000px;}
.ws17{word-spacing:8.855066px;}
.ws4d{word-spacing:8.892000px;}
.ws7{word-spacing:9.000000px;}
.ws5c{word-spacing:9.164893px;}
.ws9{word-spacing:9.179530px;}
.wsa1{word-spacing:9.360000px;}
.ws85{word-spacing:9.588000px;}
.ws24{word-spacing:9.660000px;}
.ws66{word-spacing:10.182067px;}
.ws22{word-spacing:10.289467px;}
.ws39{word-spacing:10.380000px;}
.ws69{word-spacing:10.538562px;}
.ws1f{word-spacing:10.848000px;}
.ws20{word-spacing:11.088000px;}
.ws65{word-spacing:11.102449px;}
.ws72{word-spacing:11.691523px;}
.wsc{word-spacing:11.700000px;}
.ws18{word-spacing:12.000000px;}
.ws16{word-spacing:12.360000px;}
.wsa7{word-spacing:12.419943px;}
.ws3b{word-spacing:12.895782px;}
.ws8e{word-spacing:13.020000px;}
.ws48{word-spacing:13.444833px;}
.ws1{word-spacing:13.680000px;}
.ws82{word-spacing:13.914000px;}
.ws3e{word-spacing:14.040000px;}
.ws44{word-spacing:14.196000px;}
.wsaa{word-spacing:14.244309px;}
.ws11{word-spacing:14.340000px;}
.ws68{word-spacing:14.544000px;}
.ws76{word-spacing:14.666449px;}
.wsa0{word-spacing:14.982000px;}
.ws6{word-spacing:15.000000px;}
.ws61{word-spacing:15.032928px;}
.ws63{word-spacing:15.496587px;}
.ws9e{word-spacing:15.641182px;}
.wsa4{word-spacing:16.208833px;}
.ws67{word-spacing:16.218000px;}
.ws6b{word-spacing:16.300296px;}
.ws7a{word-spacing:16.429464px;}
.ws8d{word-spacing:16.980000px;}
.ws86{word-spacing:16.993624px;}
.wsa5{word-spacing:17.328675px;}
.ws3f{word-spacing:17.492296px;}
.ws4{word-spacing:17.700000px;}
.ws84{word-spacing:18.138227px;}
.ws1d{word-spacing:18.360000px;}
.ws5b{word-spacing:18.507273px;}
.ws9b{word-spacing:18.988296px;}
.ws62{word-spacing:19.546055px;}
.ws7b{word-spacing:19.662309px;}
.ws23{word-spacing:19.680000px;}
.ws27{word-spacing:20.129135px;}
.ws26{word-spacing:20.340000px;}
.ws54{word-spacing:20.394675px;}
.wsa2{word-spacing:20.621182px;}
.ws33{word-spacing:21.000000px;}
.ws5d{word-spacing:22.322876px;}
.ws75{word-spacing:22.490609px;}
.ws50{word-spacing:22.846830px;}
.ws3d{word-spacing:24.360000px;}
.ws6d{word-spacing:24.375120px;}
.ws83{word-spacing:24.609846px;}
.ws6e{word-spacing:38.944264px;}
.ws45{word-spacing:45.301333px;}
.ws35{word-spacing:45.936000px;}
.ws6c{word-spacing:45.984000px;}
.wsa8{word-spacing:63.872525px;}
.ws9d{word-spacing:146.481481px;}
._13{margin-left:-14.564163px;}
._d{margin-left:-9.865785px;}
._f{margin-left:-8.818047px;}
._19{margin-left:-6.434403px;}
._7{margin-left:-4.910085px;}
._18{margin-left:-3.535202px;}
._e{margin-left:-2.128760px;}
._10{margin-left:-1.086122px;}
._14{width:2.111618px;}
._9{width:3.676364px;}
._2{width:4.744798px;}
._c{width:5.763838px;}
._1{width:7.513918px;}
._3{width:9.620868px;}
._4{width:11.252015px;}
._16{width:12.348000px;}
._1e{width:13.392000px;}
._1f{width:18.696000px;}
._0{width:19.738575px;}
._1d{width:20.784000px;}
._17{width:22.044000px;}
._5{width:23.340000px;}
._b{width:24.696000px;}
._a{width:27.348000px;}
._1a{width:28.356000px;}
._6{width:29.718000px;}
._1c{width:30.762000px;}
._8{width:33.360000px;}
._12{width:38.700000px;}
._11{width:40.152000px;}
._15{width:69.312000px;}
._1b{width:80.370000px;}
.fc1{color:transparent;}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:24.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:92.481015px;}
.y48{bottom:98.481015px;}
.yc2{bottom:99.981015px;}
.y6c{bottom:105.981015px;}
.y7f{bottom:108.981015px;}
.y47{bottom:111.981015px;}
.yfc{bottom:114.981015px;}
.y10d{bottom:117.981015px;}
.y6b{bottom:120.981015px;}
.y1c{bottom:122.481015px;}
.y7e{bottom:123.981015px;}
.y46{bottom:125.481015px;}
.yc1{bottom:128.481015px;}
.yeb{bottom:131.481015px;}
.y6a{bottom:134.481015px;}
.y1b{bottom:138.981015px;}
.yc0{bottom:141.981015px;}
.y69{bottom:147.981015px;}
.ya5{bottom:149.481015px;}
.yea{bottom:150.981015px;}
.y1a{bottom:156.981015px;}
.yfb{bottom:158.481015px;}
.y10c{bottom:159.981015px;}
.y45{bottom:162.981015px;}
.y68{bottom:164.481015px;}
.y7d{bottom:170.481015px;}
.ybf{bottom:171.981015px;}
.y19{bottom:174.981015px;}
.y67{bottom:177.981015px;}
.ya4{bottom:179.481015px;}
.y44{bottom:180.981015px;}
.ybe{bottom:185.481015px;}
.ye9{bottom:186.981015px;}
.y7c{bottom:188.481015px;}
.y66{bottom:191.481015px;}
.y18{bottom:192.981015px;}
.y10b{bottom:195.981015px;}
.y43{bottom:198.981015px;}
.ybd{bottom:200.481015px;}
.ye8{bottom:203.481015px;}
.y65{bottom:206.481015px;}
.y17{bottom:209.481015px;}
.ybc{bottom:213.981015px;}
.yfa{bottom:215.481015px;}
.y42{bottom:216.981015px;}
.ye7{bottom:219.981015px;}
.y64{bottom:221.481015px;}
.y7b{bottom:224.481015px;}
.y16{bottom:227.481015px;}
.ybb{bottom:228.981015px;}
.yf9{bottom:230.481015px;}
.y41{bottom:234.981015px;}
.ye6{bottom:237.981015px;}
.y10a{bottom:239.481015px;}
.y7a{bottom:240.981015px;}
.yba{bottom:243.981015px;}
.y15{bottom:245.481015px;}
.y63{bottom:249.981015px;}
.y40{bottom:252.981015px;}
.ye5{bottom:255.981015px;}
.yb9{bottom:257.481015px;}
.y79{bottom:258.981015px;}
.y14{bottom:261.981015px;}
.ya3{bottom:264.981015px;}
.y3f{bottom:269.481015px;}
.yb8{bottom:272.481015px;}
.ye4{bottom:273.981015px;}
.y62{bottom:275.481015px;}
.y78{bottom:276.981015px;}
.ya2{bottom:281.481015px;}
.y109{bottom:282.981015px;}
.y3e{bottom:287.481015px;}
.yf8{bottom:288.981015px;}
.ye3{bottom:290.481015px;}
.y61{bottom:294.981015px;}
.y13{bottom:296.481015px;}
.ya1{bottom:299.481015px;}
.yb7{bottom:300.981015px;}
.y3d{bottom:303.981015px;}
.yf7{bottom:306.981015px;}
.ye2{bottom:309.981015px;}
.y60{bottom:311.481015px;}
.y77{bottom:312.981015px;}
.ya0{bottom:315.981015px;}
.yf6{bottom:317.481015px;}
.y3c{bottom:321.981015px;}
.ye1{bottom:326.481015px;}
.y5f{bottom:329.481015px;}
.yb6{bottom:330.981015px;}
.y9f{bottom:333.981015px;}
.y108{bottom:335.481015px;}
.y3b{bottom:338.481015px;}
.ye0{bottom:342.981015px;}
.y5e{bottom:345.981015px;}
.y12{bottom:347.481015px;}
.y9e{bottom:350.481015px;}
.yf5{bottom:353.481015px;}
.y3a{bottom:356.481015px;}
.yb5{bottom:359.481015px;}
.ydf{bottom:360.981015px;}
.y9d{bottom:362.481015px;}
.y5d{bottom:363.981015px;}
.y11{bottom:365.481015px;}
.yf4{bottom:369.981015px;}
.y39{bottom:374.481015px;}
.yde{bottom:378.981015px;}
.y5c{bottom:381.981015px;}
.y10{bottom:383.481015px;}
.y9c{bottom:386.481015px;}
.yb4{bottom:387.981015px;}
.y38{bottom:392.481015px;}
.ydd{bottom:396.981015px;}
.yf{bottom:399.981015px;}
.y9b{bottom:404.481015px;}
.yf3{bottom:405.981015px;}
.y37{bottom:408.981015px;}
.ydc{bottom:413.481015px;}
.y107{bottom:414.981015px;}
.y76{bottom:416.481015px;}
.ye{bottom:417.981015px;}
.y9a{bottom:420.981015px;}
.yda{bottom:423.981015px;}
.y36{bottom:428.481015px;}
.ydb{bottom:431.481015px;}
.y75{bottom:434.481015px;}
.yd{bottom:435.981015px;}
.y99{bottom:438.981015px;}
.yd9{bottom:440.481015px;}
.yf2{bottom:441.981015px;}
.y35{bottom:446.481015px;}
.yb3{bottom:447.981015px;}
.yc{bottom:452.481015px;}
.y98{bottom:456.981015px;}
.yb2{bottom:458.481015px;}
.y34{bottom:462.981015px;}
.yb{bottom:470.481015px;}
.y97{bottom:474.981015px;}
.yd8{bottom:476.481015px;}
.y33{bottom:480.981015px;}
.y5b{bottom:486.981015px;}
.ya{bottom:488.481015px;}
.y96{bottom:491.481015px;}
.yd7{bottom:494.481015px;}
.y32{bottom:498.981015px;}
.y5a{bottom:504.981015px;}
.y9{bottom:506.481015px;}
.y95{bottom:509.481015px;}
.yd6{bottom:510.981015px;}
.y31{bottom:515.481015px;}
.yb1{bottom:516.981015px;}
.y106{bottom:519.981015px;}
.y8{bottom:522.981015px;}
.y94{bottom:527.481015px;}
.yd5{bottom:528.981015px;}
.y30{bottom:531.981015px;}
.yb0{bottom:534.981015px;}
.y105{bottom:537.981015px;}
.y59{bottom:539.481015px;}
.y93{bottom:543.981015px;}
.yf1{bottom:545.481015px;}
.yd4{bottom:546.981015px;}
.y2f{bottom:551.481015px;}
.yaf{bottom:552.981015px;}
.y104{bottom:554.481015px;}
.y7{bottom:557.481015px;}
.y74{bottom:558.981015px;}
.y92{bottom:561.981015px;}
.yd3{bottom:564.981015px;}
.y2e{bottom:567.981015px;}
.yae{bottom:569.481015px;}
.y58{bottom:575.481015px;}
.y91{bottom:579.981015px;}
.yf0{bottom:581.481015px;}
.yd2{bottom:582.981015px;}
.y2d{bottom:585.981015px;}
.yad{bottom:587.481015px;}
.y57{bottom:591.981015px;}
.y73{bottom:593.481015px;}
.y90{bottom:596.481015px;}
.y103{bottom:597.981015px;}
.yd1{bottom:599.481015px;}
.y2c{bottom:603.981015px;}
.y56{bottom:609.981015px;}
.y8f{bottom:614.481015px;}
.yef{bottom:615.981015px;}
.yd0{bottom:617.481015px;}
.y2b{bottom:620.481015px;}
.yac{bottom:621.981015px;}
.y55{bottom:627.981015px;}
.y8e{bottom:632.481015px;}
.yee{bottom:633.981015px;}
.ycf{bottom:635.481015px;}
.y2a{bottom:638.481015px;}
.yab{bottom:639.981015px;}
.y54{bottom:645.981015px;}
.y8d{bottom:648.981015px;}
.yce{bottom:651.981015px;}
.y29{bottom:656.481015px;}
.yaa{bottom:657.981015px;}
.y102{bottom:659.481015px;}
.y53{bottom:663.981015px;}
.y8c{bottom:666.981015px;}
.ycd{bottom:669.981015px;}
.y71{bottom:672.981015px;}
.y28{bottom:674.481015px;}
.ya9{bottom:675.981015px;}
.y101{bottom:677.481015px;}
.y72{bottom:680.481015px;}
.y52{bottom:681.981015px;}
.y8b{bottom:684.981015px;}
.y6{bottom:686.481015px;}
.ycc{bottom:687.981015px;}
.y27{bottom:690.981015px;}
.ya8{bottom:692.481015px;}
.y100{bottom:695.481015px;}
.y51{bottom:698.481015px;}
.y5{bottom:701.481015px;}
.y8a{bottom:702.981015px;}
.yed{bottom:704.481015px;}
.ycb{bottom:705.981015px;}
.y70{bottom:708.981015px;}
.y50{bottom:714.981015px;}
.y4{bottom:719.481015px;}
.y89{bottom:720.981015px;}
.yca{bottom:722.481015px;}
.y26{bottom:726.981015px;}
.y4f{bottom:732.981015px;}
.y88{bottom:738.981015px;}
.yc9{bottom:740.481015px;}
.y6f{bottom:743.481015px;}
.y25{bottom:744.981015px;}
.y4e{bottom:750.981015px;}
.y87{bottom:755.481015px;}
.yc8{bottom:756.981015px;}
.y6e{bottom:761.481015px;}
.y3{bottom:768.981015px;}
.y86{bottom:771.981015px;}
.ya7{bottom:774.981015px;}
.y24{bottom:779.481015px;}
.yff{bottom:782.481015px;}
.y4d{bottom:785.481015px;}
.y85{bottom:789.981015px;}
.yec{bottom:791.481015px;}
.yc7{bottom:792.981015px;}
.y110{bottom:794.481015px;}
.y4c{bottom:795.981015px;}
.y23{bottom:797.481015px;}
.yfe{bottom:798.981015px;}
.y2{bottom:801.981015px;}
.y84{bottom:807.981015px;}
.yc6{bottom:810.981015px;}
.y10f{bottom:812.481015px;}
.y4b{bottom:813.981015px;}
.y22{bottom:815.481015px;}
.yfd{bottom:816.981015px;}
.y83{bottom:824.481015px;}
.ya6{bottom:825.981015px;}
.yc5{bottom:827.481015px;}
.y4a{bottom:830.481015px;}
.y21{bottom:831.981015px;}
.y1{bottom:836.481015px;}
.y82{bottom:843.981015px;}
.yc4{bottom:845.481015px;}
.y10e{bottom:846.981015px;}
.y49{bottom:848.481015px;}
.y20{bottom:849.981015px;}
.y80{bottom:882.981015px;}
.y81{bottom:884.481015px;}
.yc3{bottom:885.981015px;}
.y6d{bottom:887.481015px;}
.y1f{bottom:888.981015px;}
.y1e{bottom:890.481015px;}
.h17{height:23.554688px;}
.ha{height:25.031250px;}
.h13{height:30.234375px;}
.he{height:31.289062px;}
.hb{height:37.546875px;}
.h7{height:41.200195px;}
.hf{height:42.328125px;}
.h15{height:43.804688px;}
.h12{height:47.085938px;}
.h16{height:47.109375px;}
.h4{height:50.062500px;}
.h8{height:52.971680px;}
.h10{height:52.998047px;}
.hc{height:56.320312px;}
.h6{height:58.857422px;}
.h3{height:58.886719px;}
.h19{height:62.578125px;}
.h9{height:64.775391px;}
.h5{height:66.515625px;}
.h1a{height:71.200195px;}
.h11{height:75.093750px;}
.h18{height:88.857422px;}
.hd{height:88.886719px;}
.h14{height:94.775391px;}
.h2{height:105.943359px;}
.h0{height:972.721515px;}
.h1{height:972.750000px;}
.w1{width:719.250000px;}
.w0{width:719.421030px;}
.x0{left:0.000000px;}
.xaf{left:93.460515px;}
.xa6{left:94.960515px;}
.x106{left:96.460515px;}
.x149{left:97.960515px;}
.x15d{left:99.460515px;}
.x164{left:100.960515px;}
.x165{left:102.460515px;}
.x15f{left:103.960515px;}
.x160{left:105.460515px;}
.x15e{left:106.960515px;}
.x1b{left:108.460515px;}
.x42{left:109.960515px;}
.x15a{left:111.460515px;}
.xc0{left:112.960515px;}
.x9f{left:114.460515px;}
.xa8{left:115.960515px;}
.xdf{left:117.460515px;}
.x152{left:118.960515px;}
.x154{left:120.460515px;}
.x7{left:121.960515px;}
.xd6{left:123.460515px;}
.x72{left:124.960515px;}
.xe4{left:126.460515px;}
.xe7{left:127.960515px;}
.x1c{left:129.460515px;}
.x43{left:130.960515px;}
.xf5{left:132.460515px;}
.xe0{left:133.960515px;}
.xd8{left:135.460515px;}
.x85{left:136.960515px;}
.xc3{left:138.460515px;}
.x78{left:139.960515px;}
.x123{left:141.460515px;}
.xa9{left:142.960515px;}
.x44{left:144.460515px;}
.x5a{left:145.960515px;}
.xc1{left:147.460515px;}
.x8d{left:148.960515px;}
.xb5{left:150.460515px;}
.x136{left:151.960515px;}
.x7f{left:153.460515px;}
.xfb{left:154.960515px;}
.xca{left:156.460515px;}
.x39{left:157.960515px;}
.xff{left:159.460515px;}
.x1d{left:160.960515px;}
.x148{left:162.460515px;}
.xf6{left:163.960515px;}
.x111{left:165.460515px;}
.x1{left:166.960515px;}
.x4c{left:168.460515px;}
.x5b{left:169.960515px;}
.x26{left:171.460515px;}
.xb6{left:172.960515px;}
.x31{left:174.460515px;}
.x13b{left:175.960515px;}
.x3a{left:177.460515px;}
.x79{left:178.960515px;}
.x10a{left:180.460515px;}
.x53{left:181.960515px;}
.xc4{left:183.460515px;}
.xbb{left:184.960515px;}
.xe8{left:186.460515px;}
.x8e{left:187.960515px;}
.x8{left:189.460515px;}
.x119{left:190.960515px;}
.xb8{left:192.460515px;}
.xfa{left:193.960515px;}
.x9e{left:195.460515px;}
.x62{left:196.960515px;}
.x150{left:198.460515px;}
.x10c{left:199.960515px;}
.x6d{left:201.460515px;}
.x2{left:202.960515px;}
.x8f{left:204.460515px;}
.xf7{left:205.960515px;}
.x7a{left:207.460515px;}
.x11a{left:208.960515px;}
.x73{left:210.460515px;}
.xcb{left:211.960515px;}
.x14c{left:213.460515px;}
.x32{left:214.960515px;}
.x135{left:216.460515px;}
.x80{left:217.960515px;}
.x1e{left:219.460515px;}
.x6e{left:220.960515px;}
.xc2{left:222.460515px;}
.xfe{left:223.960515px;}
.x129{left:225.460515px;}
.x140{left:226.960515px;}
.x13c{left:228.460515px;}
.x33{left:229.960515px;}
.x139{left:231.460515px;}
.xc6{left:232.960515px;}
.xa0{left:234.460515px;}
.x137{left:235.960515px;}
.x45{left:237.460515px;}
.xcc{left:238.960515px;}
.x1f{left:240.460515px;}
.x94{left:241.960515px;}
.x10f{left:243.460515px;}
.x27{left:244.960515px;}
.x3b{left:246.460515px;}
.xe5{left:247.960515px;}
.xb7{left:249.460515px;}
.x16{left:250.960515px;}
.xb0{left:252.460515px;}
.xeb{left:253.960515px;}
.xd1{left:255.460515px;}
.x14e{left:256.960515px;}
.x90{left:258.460515px;}
.x12b{left:259.960515px;}
.x3{left:261.460515px;}
.x112{left:262.960515px;}
.xc7{left:264.460515px;}
.x110{left:265.960515px;}
.xde{left:267.460515px;}
.x103{left:268.960515px;}
.x46{left:270.460515px;}
.x34{left:271.960515px;}
.x81{left:273.460515px;}
.x124{left:274.960515px;}
.x7b{left:276.460515px;}
.x9{left:277.960515px;}
.xf{left:279.460515px;}
.xaa{left:280.960515px;}
.xc{left:282.460515px;}
.x13e{left:283.960515px;}
.x155{left:285.460515px;}
.xbc{left:286.960515px;}
.x114{left:288.460515px;}
.x2c{left:289.960515px;}
.xd9{left:291.460515px;}
.x9b{left:292.960515px;}
.x4{left:294.460515px;}
.x20{left:295.960515px;}
.x125{left:297.460515px;}
.x86{left:298.960515px;}
.x17{left:300.460515px;}
.x91{left:301.960515px;}
.xb9{left:303.460515px;}
.x153{left:304.960515px;}
.x146{left:306.460515px;}
.xda{left:307.960515px;}
.x5c{left:309.460515px;}
.x104{left:310.960515px;}
.x2d{left:312.460515px;}
.x13{left:313.960515px;}
.x133{left:315.460515px;}
.x21{left:316.960515px;}
.x87{left:318.460515px;}
.x95{left:319.960515px;}
.x6f{left:321.460515px;}
.x5{left:322.960515px;}
.xef{left:324.460515px;}
.xf3{left:325.960515px;}
.x130{left:327.460515px;}
.x6a{left:328.960515px;}
.xa1{left:330.460515px;}
.x14f{left:331.960515px;}
.xe9{left:333.460515px;}
.x10{left:334.960515px;}
.x11d{left:336.460515px;}
.x2e{left:337.960515px;}
.x96{left:339.460515px;}
.x4d{left:340.960515px;}
.x28{left:342.460515px;}
.x82{left:343.960515px;}
.x162{left:345.460515px;}
.x88{left:346.960515px;}
.xec{left:348.460515px;}
.x70{left:349.960515px;}
.x63{left:351.460515px;}
.xc8{left:352.960515px;}
.xd2{left:354.460515px;}
.x14{left:355.960515px;}
.x11{left:357.460515px;}
.x18{left:358.960515px;}
.x54{left:360.460515px;}
.x115{left:361.960515px;}
.xe1{left:363.460515px;}
.xd3{left:364.960515px;}
.xd{left:366.460515px;}
.x74{left:367.960515px;}
.xab{left:369.460515px;}
.x126{left:370.960515px;}
.x15{left:372.460515px;}
.x14d{left:373.960515px;}
.x4e{left:375.460515px;}
.x35{left:376.960515px;}
.xcd{left:378.460515px;}
.x29{left:379.960515px;}
.xbd{left:381.460515px;}
.xe2{left:382.960515px;}
.xa2{left:384.460515px;}
.x141{left:385.960515px;}
.xf8{left:387.460515px;}
.x3c{left:388.960515px;}
.x11b{left:390.460515px;}
.xa7{left:391.960515px;}
.x75{left:393.460515px;}
.xac{left:394.960515px;}
.x11e{left:396.460515px;}
.x55{left:397.960515px;}
.x7c{left:399.460515px;}
.x64{left:400.960515px;}
.x83{left:402.460515px;}
.x10d{left:403.960515px;}
.xe{left:405.460515px;}
.x97{left:406.960515px;}
.x12a{left:408.460515px;}
.x128{left:409.960515px;}
.x12{left:411.460515px;}
.x157{left:412.960515px;}
.xf0{left:414.460515px;}
.xe3{left:415.960515px;}
.x4f{left:417.460515px;}
.x116{left:418.960515px;}
.x100{left:420.460515px;}
.x3d{left:421.960515px;}
.xf4{left:423.460515px;}
.x6b{left:424.960515px;}
.x36{left:426.460515px;}
.x19{left:427.960515px;}
.xa3{left:429.460515px;}
.x6{left:430.960515px;}
.x121{left:432.460515px;}
.x98{left:433.960515px;}
.xbe{left:435.460515px;}
.xd7{left:436.960515px;}
.x5d{left:438.460515px;}
.x156{left:439.960515px;}
.xad{left:441.460515px;}
.x3e{left:442.960515px;}
.x89{left:444.460515px;}
.x1a{left:445.960515px;}
.x47{left:447.460515px;}
.x9c{left:448.960515px;}
.xea{left:450.460515px;}
.x117{left:451.960515px;}
.x113{left:453.460515px;}
.x6c{left:454.960515px;}
.x56{left:456.460515px;}
.xb1{left:457.960515px;}
.x131{left:459.460515px;}
.xae{left:460.960515px;}
.x105{left:462.460515px;}
.x48{left:463.960515px;}
.xa{left:465.460515px;}
.x22{left:466.960515px;}
.x3f{left:468.460515px;}
.x8a{left:469.960515px;}
.x101{left:471.460515px;}
.x65{left:472.960515px;}
.x71{left:474.460515px;}
.x84{left:475.960515px;}
.xdb{left:477.460515px;}
.x7d{left:478.960515px;}
.x92{left:480.460515px;}
.xf1{left:481.960515px;}
.x76{left:483.460515px;}
.x57{left:484.960515px;}
.x144{left:486.460515px;}
.x107{left:487.960515px;}
.x66{left:489.460515px;}
.x12f{left:490.960515px;}
.xd4{left:492.460515px;}
.xb{left:493.960515px;}
.x23{left:495.460515px;}
.xed{left:496.960515px;}
.xfc{left:498.460515px;}
.x99{left:499.960515px;}
.x77{left:501.460515px;}
.x58{left:502.960515px;}
.x142{left:504.460515px;}
.x138{left:505.960515px;}
.x8b{left:507.460515px;}
.xbf{left:508.960515px;}
.x5e{left:510.460515px;}
.xce{left:511.960515px;}
.x134{left:513.460515px;}
.x49{left:514.960515px;}
.x127{left:516.460515px;}
.xa4{left:517.960515px;}
.xfd{left:519.460515px;}
.xc5{left:520.960515px;}
.x50{left:522.460515px;}
.x10b{left:523.960515px;}
.x2f{left:525.460515px;}
.x5f{left:526.960515px;}
.x158{left:528.460515px;}
.x10e{left:529.960515px;}
.xb2{left:531.460515px;}
.x9d{left:532.960515px;}
.x24{left:534.460515px;}
.x11f{left:535.960515px;}
.xf9{left:537.460515px;}
.x13f{left:538.960515px;}
.xd5{left:540.460515px;}
.x108{left:541.960515px;}
.xba{left:543.460515px;}
.x93{left:544.960515px;}
.x40{left:546.460515px;}
.x12e{left:547.960515px;}
.x147{left:549.460515px;}
.x51{left:550.960515px;}
.xa5{left:552.460515px;}
.x102{left:553.960515px;}
.xc9{left:555.460515px;}
.x14b{left:556.960515px;}
.x15b{left:558.460515px;}
.x7e{left:559.960515px;}
.xb3{left:561.460515px;}
.x37{left:562.960515px;}
.x4a{left:564.460515px;}
.x109{left:565.960515px;}
.x67{left:567.460515px;}
.x151{left:568.960515px;}
.xdc{left:570.460515px;}
.x30{left:571.960515px;}
.x38{left:573.460515px;}
.x145{left:574.960515px;}
.x59{left:576.460515px;}
.x2a{left:577.960515px;}
.x4b{left:579.460515px;}
.xcf{left:580.960515px;}
.x68{left:582.460515px;}
.x132{left:583.960515px;}
.xe6{left:585.460515px;}
.x52{left:586.960515px;}
.xee{left:588.460515px;}
.xf2{left:589.960515px;}
.xdd{left:591.460515px;}
.x118{left:592.960515px;}
.x60{left:594.460515px;}
.xd0{left:595.960515px;}
.x8c{left:597.460515px;}
.x9a{left:598.960515px;}
.x13a{left:600.460515px;}
.x12c{left:601.960515px;}
.x122{left:603.460515px;}
.x163{left:604.960515px;}
.x14a{left:605.987715px;}
.xb4{left:607.598415px;}
.x25{left:609.460515px;}
.x69{left:610.960515px;}
.x2b{left:612.460515px;}
.x15c{left:613.960515px;}
.x11c{left:615.460515px;}
.x166{left:617.054865px;}
.x13d{left:618.460515px;}
.x161{left:619.466640px;}
.x61{left:621.685515px;}
.x41{left:622.794315px;}
.x159{left:623.988195px;}
.x120{left:626.452515px;}
.x12d{left:627.554115px;}
.x143{left:628.985235px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:7.104000pt;}
.ls2{letter-spacing:18.666667pt;}
.ws47{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws5e{word-spacing:-11.861333pt;}
.wsa6{word-spacing:-9.333333pt;}
.ws87{word-spacing:-3.130667pt;}
.ws71{word-spacing:-3.072000pt;}
.ws2b{word-spacing:-2.762667pt;}
.ws46{word-spacing:-2.512000pt;}
.ws40{word-spacing:-2.413754pt;}
.ws2f{word-spacing:-2.265601pt;}
.ws7f{word-spacing:-2.202667pt;}
.wsa{word-spacing:-2.161372pt;}
.ws60{word-spacing:-2.144000pt;}
.ws31{word-spacing:-2.134966pt;}
.ws43{word-spacing:-2.026457pt;}
.ws2e{word-spacing:-1.933315pt;}
.ws97{word-spacing:-1.929438pt;}
.ws5f{word-spacing:-1.893333pt;}
.ws12{word-spacing:-1.838209pt;}
.wse{word-spacing:-1.487511pt;}
.ws94{word-spacing:-1.333713pt;}
.ws4f{word-spacing:-1.109672pt;}
.ws25{word-spacing:-0.906667pt;}
.ws10{word-spacing:-0.747084pt;}
.ws55{word-spacing:-0.714667pt;}
.ws92{word-spacing:-0.693751pt;}
.ws28{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws8f{word-spacing:-0.533124pt;}
.ws80{word-spacing:-0.405333pt;}
.ws9a{word-spacing:-0.054074pt;}
.ws13{word-spacing:0.000000pt;}
.ws21{word-spacing:0.320000pt;}
.ws53{word-spacing:0.464000pt;}
.ws91{word-spacing:0.562001pt;}
.wsb{word-spacing:0.761738pt;}
.ws8{word-spacing:0.811193pt;}
.ws96{word-spacing:1.066230pt;}
.ws2{word-spacing:1.148458pt;}
.ws4e{word-spacing:1.200000pt;}
.ws58{word-spacing:1.392000pt;}
.ws41{word-spacing:1.493333pt;}
.ws7d{word-spacing:1.605333pt;}
.ws34{word-spacing:1.642667pt;}
.wsf{word-spacing:1.662283pt;}
.ws49{word-spacing:1.701333pt;}
.ws36{word-spacing:1.706667pt;}
.ws57{word-spacing:1.760000pt;}
.ws70{word-spacing:1.797333pt;}
.ws1a{word-spacing:1.952000pt;}
.ws7e{word-spacing:2.010667pt;}
.ws99{word-spacing:2.186249pt;}
.ws78{word-spacing:2.261333pt;}
.ws64{word-spacing:2.320000pt;}
.ws32{word-spacing:2.443896pt;}
.ws56{word-spacing:2.512000pt;}
.ws51{word-spacing:2.570667pt;}
.ws0{word-spacing:2.613333pt;}
.ws30{word-spacing:2.666667pt;}
.ws9f{word-spacing:2.720000pt;}
.ws95{word-spacing:2.820131pt;}
.ws4b{word-spacing:2.880000pt;}
.ws37{word-spacing:2.901333pt;}
.ws4a{word-spacing:2.938667pt;}
.wsa9{word-spacing:2.986667pt;}
.ws81{word-spacing:3.034667pt;}
.ws6f{word-spacing:3.130667pt;}
.ws73{word-spacing:3.189333pt;}
.ws38{word-spacing:3.381333pt;}
.ws42{word-spacing:3.412935pt;}
.ws4c{word-spacing:3.440000pt;}
.ws5a{word-spacing:3.840000pt;}
.ws29{word-spacing:3.941333pt;}
.ws90{word-spacing:3.986685pt;}
.ws98{word-spacing:3.999563pt;}
.ws52{word-spacing:4.000000pt;}
.ws74{word-spacing:4.058667pt;}
.ws77{word-spacing:4.309333pt;}
.ws88{word-spacing:4.368000pt;}
.ws59{word-spacing:4.426667pt;}
.wsa3{word-spacing:4.533333pt;}
.ws89{word-spacing:4.618667pt;}
.ws9c{word-spacing:4.693333pt;}
.ws14{word-spacing:4.736000pt;}
.ws1c{word-spacing:5.066667pt;}
.ws2c{word-spacing:5.488000pt;}
.ws7c{word-spacing:5.490543pt;}
.ws5{word-spacing:5.653333pt;}
.ws3a{word-spacing:5.812878pt;}
.wsd{word-spacing:6.240000pt;}
.ws1e{word-spacing:6.346268pt;}
.ws19{word-spacing:6.506667pt;}
.ws93{word-spacing:6.560000pt;}
.ws2a{word-spacing:6.725333pt;}
.ws8c{word-spacing:6.932897pt;}
.ws2d{word-spacing:6.976000pt;}
.ws1b{word-spacing:7.034667pt;}
.ws8b{word-spacing:7.130667pt;}
.ws8a{word-spacing:7.285333pt;}
.ws15{word-spacing:7.413333pt;}
.ws79{word-spacing:7.576019pt;}
.ws6a{word-spacing:7.594667pt;}
.ws17{word-spacing:7.871170pt;}
.ws4d{word-spacing:7.904000pt;}
.ws7{word-spacing:8.000000pt;}
.ws5c{word-spacing:8.146571pt;}
.ws9{word-spacing:8.159582pt;}
.wsa1{word-spacing:8.320000pt;}
.ws85{word-spacing:8.522667pt;}
.ws24{word-spacing:8.586667pt;}
.ws66{word-spacing:9.050727pt;}
.ws22{word-spacing:9.146193pt;}
.ws39{word-spacing:9.226667pt;}
.ws69{word-spacing:9.367611pt;}
.ws1f{word-spacing:9.642667pt;}
.ws20{word-spacing:9.856000pt;}
.ws65{word-spacing:9.868844pt;}
.ws72{word-spacing:10.392465pt;}
.wsc{word-spacing:10.400000pt;}
.ws18{word-spacing:10.666667pt;}
.ws16{word-spacing:10.986667pt;}
.wsa7{word-spacing:11.039949pt;}
.ws3b{word-spacing:11.462918pt;}
.ws8e{word-spacing:11.573333pt;}
.ws48{word-spacing:11.950963pt;}
.ws1{word-spacing:12.160000pt;}
.ws82{word-spacing:12.368000pt;}
.ws3e{word-spacing:12.480000pt;}
.ws44{word-spacing:12.618667pt;}
.wsaa{word-spacing:12.661608pt;}
.ws11{word-spacing:12.746667pt;}
.ws68{word-spacing:12.928000pt;}
.ws76{word-spacing:13.036844pt;}
.wsa0{word-spacing:13.317333pt;}
.ws6{word-spacing:13.333333pt;}
.ws61{word-spacing:13.362603pt;}
.ws63{word-spacing:13.774744pt;}
.ws9e{word-spacing:13.903273pt;}
.wsa4{word-spacing:14.407852pt;}
.ws67{word-spacing:14.416000pt;}
.ws6b{word-spacing:14.489152pt;}
.ws7a{word-spacing:14.603968pt;}
.ws8d{word-spacing:15.093333pt;}
.ws86{word-spacing:15.105444pt;}
.wsa5{word-spacing:15.403266pt;}
.ws3f{word-spacing:15.548708pt;}
.ws4{word-spacing:15.733333pt;}
.ws84{word-spacing:16.122869pt;}
.ws1d{word-spacing:16.320000pt;}
.ws5b{word-spacing:16.450909pt;}
.ws9b{word-spacing:16.878485pt;}
.ws62{word-spacing:17.374271pt;}
.ws7b{word-spacing:17.477608pt;}
.ws23{word-spacing:17.493333pt;}
.ws27{word-spacing:17.892565pt;}
.ws26{word-spacing:18.080000pt;}
.ws54{word-spacing:18.128600pt;}
.wsa2{word-spacing:18.329939pt;}
.ws33{word-spacing:18.666667pt;}
.ws5d{word-spacing:19.842556pt;}
.ws75{word-spacing:19.991652pt;}
.ws50{word-spacing:20.308294pt;}
.ws3d{word-spacing:21.653333pt;}
.ws6d{word-spacing:21.666773pt;}
.ws83{word-spacing:21.875419pt;}
.ws6e{word-spacing:34.617124pt;}
.ws45{word-spacing:40.267852pt;}
.ws35{word-spacing:40.832000pt;}
.ws6c{word-spacing:40.874667pt;}
.wsa8{word-spacing:56.775577pt;}
.ws9d{word-spacing:130.205761pt;}
._13{margin-left:-12.945923pt;}
._d{margin-left:-8.769587pt;}
._f{margin-left:-7.838264pt;}
._19{margin-left:-5.719469pt;}
._7{margin-left:-4.364520pt;}
._18{margin-left:-3.142402pt;}
._e{margin-left:-1.892231pt;}
._10{margin-left:-0.965442pt;}
._14{width:1.876994pt;}
._9{width:3.267879pt;}
._2{width:4.217598pt;}
._c{width:5.123412pt;}
._1{width:6.679038pt;}
._3{width:8.551883pt;}
._4{width:10.001791pt;}
._16{width:10.976000pt;}
._1e{width:11.904000pt;}
._1f{width:16.618667pt;}
._0{width:17.545400pt;}
._1d{width:18.474667pt;}
._17{width:19.594667pt;}
._5{width:20.746667pt;}
._b{width:21.952000pt;}
._a{width:24.309333pt;}
._1a{width:25.205333pt;}
._6{width:26.416000pt;}
._1c{width:27.344000pt;}
._8{width:29.653333pt;}
._12{width:34.400000pt;}
._11{width:35.690667pt;}
._15{width:61.610667pt;}
._1b{width:71.440000pt;}
.fs6{font-size:21.333333pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:82.205347pt;}
.y48{bottom:87.538680pt;}
.yc2{bottom:88.872013pt;}
.y6c{bottom:94.205347pt;}
.y7f{bottom:96.872013pt;}
.y47{bottom:99.538680pt;}
.yfc{bottom:102.205347pt;}
.y10d{bottom:104.872013pt;}
.y6b{bottom:107.538680pt;}
.y1c{bottom:108.872013pt;}
.y7e{bottom:110.205347pt;}
.y46{bottom:111.538680pt;}
.yc1{bottom:114.205347pt;}
.yeb{bottom:116.872013pt;}
.y6a{bottom:119.538680pt;}
.y1b{bottom:123.538680pt;}
.yc0{bottom:126.205347pt;}
.y69{bottom:131.538680pt;}
.ya5{bottom:132.872013pt;}
.yea{bottom:134.205347pt;}
.y1a{bottom:139.538680pt;}
.yfb{bottom:140.872013pt;}
.y10c{bottom:142.205347pt;}
.y45{bottom:144.872013pt;}
.y68{bottom:146.205347pt;}
.y7d{bottom:151.538680pt;}
.ybf{bottom:152.872013pt;}
.y19{bottom:155.538680pt;}
.y67{bottom:158.205347pt;}
.ya4{bottom:159.538680pt;}
.y44{bottom:160.872013pt;}
.ybe{bottom:164.872013pt;}
.ye9{bottom:166.205347pt;}
.y7c{bottom:167.538680pt;}
.y66{bottom:170.205347pt;}
.y18{bottom:171.538680pt;}
.y10b{bottom:174.205347pt;}
.y43{bottom:176.872013pt;}
.ybd{bottom:178.205347pt;}
.ye8{bottom:180.872013pt;}
.y65{bottom:183.538680pt;}
.y17{bottom:186.205347pt;}
.ybc{bottom:190.205347pt;}
.yfa{bottom:191.538680pt;}
.y42{bottom:192.872013pt;}
.ye7{bottom:195.538680pt;}
.y64{bottom:196.872013pt;}
.y7b{bottom:199.538680pt;}
.y16{bottom:202.205347pt;}
.ybb{bottom:203.538680pt;}
.yf9{bottom:204.872013pt;}
.y41{bottom:208.872013pt;}
.ye6{bottom:211.538680pt;}
.y10a{bottom:212.872013pt;}
.y7a{bottom:214.205347pt;}
.yba{bottom:216.872013pt;}
.y15{bottom:218.205347pt;}
.y63{bottom:222.205347pt;}
.y40{bottom:224.872013pt;}
.ye5{bottom:227.538680pt;}
.yb9{bottom:228.872013pt;}
.y79{bottom:230.205347pt;}
.y14{bottom:232.872013pt;}
.ya3{bottom:235.538680pt;}
.y3f{bottom:239.538680pt;}
.yb8{bottom:242.205347pt;}
.ye4{bottom:243.538680pt;}
.y62{bottom:244.872013pt;}
.y78{bottom:246.205347pt;}
.ya2{bottom:250.205347pt;}
.y109{bottom:251.538680pt;}
.y3e{bottom:255.538680pt;}
.yf8{bottom:256.872013pt;}
.ye3{bottom:258.205347pt;}
.y61{bottom:262.205347pt;}
.y13{bottom:263.538680pt;}
.ya1{bottom:266.205347pt;}
.yb7{bottom:267.538680pt;}
.y3d{bottom:270.205347pt;}
.yf7{bottom:272.872013pt;}
.ye2{bottom:275.538680pt;}
.y60{bottom:276.872013pt;}
.y77{bottom:278.205347pt;}
.ya0{bottom:280.872013pt;}
.yf6{bottom:282.205347pt;}
.y3c{bottom:286.205347pt;}
.ye1{bottom:290.205347pt;}
.y5f{bottom:292.872013pt;}
.yb6{bottom:294.205347pt;}
.y9f{bottom:296.872013pt;}
.y108{bottom:298.205347pt;}
.y3b{bottom:300.872013pt;}
.ye0{bottom:304.872013pt;}
.y5e{bottom:307.538680pt;}
.y12{bottom:308.872013pt;}
.y9e{bottom:311.538680pt;}
.yf5{bottom:314.205347pt;}
.y3a{bottom:316.872013pt;}
.yb5{bottom:319.538680pt;}
.ydf{bottom:320.872013pt;}
.y9d{bottom:322.205347pt;}
.y5d{bottom:323.538680pt;}
.y11{bottom:324.872013pt;}
.yf4{bottom:328.872013pt;}
.y39{bottom:332.872013pt;}
.yde{bottom:336.872013pt;}
.y5c{bottom:339.538680pt;}
.y10{bottom:340.872013pt;}
.y9c{bottom:343.538680pt;}
.yb4{bottom:344.872013pt;}
.y38{bottom:348.872013pt;}
.ydd{bottom:352.872013pt;}
.yf{bottom:355.538680pt;}
.y9b{bottom:359.538680pt;}
.yf3{bottom:360.872013pt;}
.y37{bottom:363.538680pt;}
.ydc{bottom:367.538680pt;}
.y107{bottom:368.872013pt;}
.y76{bottom:370.205347pt;}
.ye{bottom:371.538680pt;}
.y9a{bottom:374.205347pt;}
.yda{bottom:376.872013pt;}
.y36{bottom:380.872013pt;}
.ydb{bottom:383.538680pt;}
.y75{bottom:386.205347pt;}
.yd{bottom:387.538680pt;}
.y99{bottom:390.205347pt;}
.yd9{bottom:391.538680pt;}
.yf2{bottom:392.872013pt;}
.y35{bottom:396.872013pt;}
.yb3{bottom:398.205347pt;}
.yc{bottom:402.205347pt;}
.y98{bottom:406.205347pt;}
.yb2{bottom:407.538680pt;}
.y34{bottom:411.538680pt;}
.yb{bottom:418.205347pt;}
.y97{bottom:422.205347pt;}
.yd8{bottom:423.538680pt;}
.y33{bottom:427.538680pt;}
.y5b{bottom:432.872013pt;}
.ya{bottom:434.205347pt;}
.y96{bottom:436.872013pt;}
.yd7{bottom:439.538680pt;}
.y32{bottom:443.538680pt;}
.y5a{bottom:448.872013pt;}
.y9{bottom:450.205347pt;}
.y95{bottom:452.872013pt;}
.yd6{bottom:454.205347pt;}
.y31{bottom:458.205347pt;}
.yb1{bottom:459.538680pt;}
.y106{bottom:462.205347pt;}
.y8{bottom:464.872013pt;}
.y94{bottom:468.872013pt;}
.yd5{bottom:470.205347pt;}
.y30{bottom:472.872013pt;}
.yb0{bottom:475.538680pt;}
.y105{bottom:478.205347pt;}
.y59{bottom:479.538680pt;}
.y93{bottom:483.538680pt;}
.yf1{bottom:484.872013pt;}
.yd4{bottom:486.205347pt;}
.y2f{bottom:490.205347pt;}
.yaf{bottom:491.538680pt;}
.y104{bottom:492.872013pt;}
.y7{bottom:495.538680pt;}
.y74{bottom:496.872013pt;}
.y92{bottom:499.538680pt;}
.yd3{bottom:502.205347pt;}
.y2e{bottom:504.872013pt;}
.yae{bottom:506.205347pt;}
.y58{bottom:511.538680pt;}
.y91{bottom:515.538680pt;}
.yf0{bottom:516.872013pt;}
.yd2{bottom:518.205347pt;}
.y2d{bottom:520.872013pt;}
.yad{bottom:522.205347pt;}
.y57{bottom:526.205347pt;}
.y73{bottom:527.538680pt;}
.y90{bottom:530.205347pt;}
.y103{bottom:531.538680pt;}
.yd1{bottom:532.872013pt;}
.y2c{bottom:536.872013pt;}
.y56{bottom:542.205347pt;}
.y8f{bottom:546.205347pt;}
.yef{bottom:547.538680pt;}
.yd0{bottom:548.872013pt;}
.y2b{bottom:551.538680pt;}
.yac{bottom:552.872013pt;}
.y55{bottom:558.205347pt;}
.y8e{bottom:562.205347pt;}
.yee{bottom:563.538680pt;}
.ycf{bottom:564.872013pt;}
.y2a{bottom:567.538680pt;}
.yab{bottom:568.872013pt;}
.y54{bottom:574.205347pt;}
.y8d{bottom:576.872013pt;}
.yce{bottom:579.538680pt;}
.y29{bottom:583.538680pt;}
.yaa{bottom:584.872013pt;}
.y102{bottom:586.205347pt;}
.y53{bottom:590.205347pt;}
.y8c{bottom:592.872013pt;}
.ycd{bottom:595.538680pt;}
.y71{bottom:598.205347pt;}
.y28{bottom:599.538680pt;}
.ya9{bottom:600.872013pt;}
.y101{bottom:602.205347pt;}
.y72{bottom:604.872013pt;}
.y52{bottom:606.205347pt;}
.y8b{bottom:608.872013pt;}
.y6{bottom:610.205347pt;}
.ycc{bottom:611.538680pt;}
.y27{bottom:614.205347pt;}
.ya8{bottom:615.538680pt;}
.y100{bottom:618.205347pt;}
.y51{bottom:620.872013pt;}
.y5{bottom:623.538680pt;}
.y8a{bottom:624.872013pt;}
.yed{bottom:626.205347pt;}
.ycb{bottom:627.538680pt;}
.y70{bottom:630.205347pt;}
.y50{bottom:635.538680pt;}
.y4{bottom:639.538680pt;}
.y89{bottom:640.872013pt;}
.yca{bottom:642.205347pt;}
.y26{bottom:646.205347pt;}
.y4f{bottom:651.538680pt;}
.y88{bottom:656.872013pt;}
.yc9{bottom:658.205347pt;}
.y6f{bottom:660.872013pt;}
.y25{bottom:662.205347pt;}
.y4e{bottom:667.538680pt;}
.y87{bottom:671.538680pt;}
.yc8{bottom:672.872013pt;}
.y6e{bottom:676.872013pt;}
.y3{bottom:683.538680pt;}
.y86{bottom:686.205347pt;}
.ya7{bottom:688.872013pt;}
.y24{bottom:692.872013pt;}
.yff{bottom:695.538680pt;}
.y4d{bottom:698.205347pt;}
.y85{bottom:702.205347pt;}
.yec{bottom:703.538680pt;}
.yc7{bottom:704.872013pt;}
.y110{bottom:706.205347pt;}
.y4c{bottom:707.538680pt;}
.y23{bottom:708.872013pt;}
.yfe{bottom:710.205347pt;}
.y2{bottom:712.872013pt;}
.y84{bottom:718.205347pt;}
.yc6{bottom:720.872013pt;}
.y10f{bottom:722.205347pt;}
.y4b{bottom:723.538680pt;}
.y22{bottom:724.872013pt;}
.yfd{bottom:726.205347pt;}
.y83{bottom:732.872013pt;}
.ya6{bottom:734.205347pt;}
.yc5{bottom:735.538680pt;}
.y4a{bottom:738.205347pt;}
.y21{bottom:739.538680pt;}
.y1{bottom:743.538680pt;}
.y82{bottom:750.205347pt;}
.yc4{bottom:751.538680pt;}
.y10e{bottom:752.872013pt;}
.y49{bottom:754.205347pt;}
.y20{bottom:755.538680pt;}
.y80{bottom:784.872013pt;}
.y81{bottom:786.205347pt;}
.yc3{bottom:787.538680pt;}
.y6d{bottom:788.872013pt;}
.y1f{bottom:790.205347pt;}
.y1e{bottom:791.538680pt;}
.h17{height:20.937500pt;}
.ha{height:22.250000pt;}
.h13{height:26.875000pt;}
.he{height:27.812500pt;}
.hb{height:33.375000pt;}
.h7{height:36.622396pt;}
.hf{height:37.625000pt;}
.h15{height:38.937500pt;}
.h12{height:41.854167pt;}
.h16{height:41.875000pt;}
.h4{height:44.500000pt;}
.h8{height:47.085938pt;}
.h10{height:47.109375pt;}
.hc{height:50.062500pt;}
.h6{height:52.317708pt;}
.h3{height:52.343750pt;}
.h19{height:55.625000pt;}
.h9{height:57.578125pt;}
.h5{height:59.125000pt;}
.h1a{height:63.289062pt;}
.h11{height:66.750000pt;}
.h18{height:78.984375pt;}
.hd{height:79.010417pt;}
.h14{height:84.244792pt;}
.h2{height:94.171875pt;}
.h0{height:864.641347pt;}
.h1{height:864.666667pt;}
.w1{width:639.333333pt;}
.w0{width:639.485360pt;}
.x0{left:0.000000pt;}
.xaf{left:83.076013pt;}
.xa6{left:84.409347pt;}
.x106{left:85.742680pt;}
.x149{left:87.076013pt;}
.x15d{left:88.409347pt;}
.x164{left:89.742680pt;}
.x165{left:91.076013pt;}
.x15f{left:92.409347pt;}
.x160{left:93.742680pt;}
.x15e{left:95.076013pt;}
.x1b{left:96.409347pt;}
.x42{left:97.742680pt;}
.x15a{left:99.076013pt;}
.xc0{left:100.409347pt;}
.x9f{left:101.742680pt;}
.xa8{left:103.076013pt;}
.xdf{left:104.409347pt;}
.x152{left:105.742680pt;}
.x154{left:107.076013pt;}
.x7{left:108.409347pt;}
.xd6{left:109.742680pt;}
.x72{left:111.076013pt;}
.xe4{left:112.409347pt;}
.xe7{left:113.742680pt;}
.x1c{left:115.076013pt;}
.x43{left:116.409347pt;}
.xf5{left:117.742680pt;}
.xe0{left:119.076013pt;}
.xd8{left:120.409347pt;}
.x85{left:121.742680pt;}
.xc3{left:123.076013pt;}
.x78{left:124.409347pt;}
.x123{left:125.742680pt;}
.xa9{left:127.076013pt;}
.x44{left:128.409347pt;}
.x5a{left:129.742680pt;}
.xc1{left:131.076013pt;}
.x8d{left:132.409347pt;}
.xb5{left:133.742680pt;}
.x136{left:135.076013pt;}
.x7f{left:136.409347pt;}
.xfb{left:137.742680pt;}
.xca{left:139.076013pt;}
.x39{left:140.409347pt;}
.xff{left:141.742680pt;}
.x1d{left:143.076013pt;}
.x148{left:144.409347pt;}
.xf6{left:145.742680pt;}
.x111{left:147.076013pt;}
.x1{left:148.409347pt;}
.x4c{left:149.742680pt;}
.x5b{left:151.076013pt;}
.x26{left:152.409347pt;}
.xb6{left:153.742680pt;}
.x31{left:155.076013pt;}
.x13b{left:156.409347pt;}
.x3a{left:157.742680pt;}
.x79{left:159.076013pt;}
.x10a{left:160.409347pt;}
.x53{left:161.742680pt;}
.xc4{left:163.076013pt;}
.xbb{left:164.409347pt;}
.xe8{left:165.742680pt;}
.x8e{left:167.076013pt;}
.x8{left:168.409347pt;}
.x119{left:169.742680pt;}
.xb8{left:171.076013pt;}
.xfa{left:172.409347pt;}
.x9e{left:173.742680pt;}
.x62{left:175.076013pt;}
.x150{left:176.409347pt;}
.x10c{left:177.742680pt;}
.x6d{left:179.076013pt;}
.x2{left:180.409347pt;}
.x8f{left:181.742680pt;}
.xf7{left:183.076013pt;}
.x7a{left:184.409347pt;}
.x11a{left:185.742680pt;}
.x73{left:187.076013pt;}
.xcb{left:188.409347pt;}
.x14c{left:189.742680pt;}
.x32{left:191.076013pt;}
.x135{left:192.409347pt;}
.x80{left:193.742680pt;}
.x1e{left:195.076013pt;}
.x6e{left:196.409347pt;}
.xc2{left:197.742680pt;}
.xfe{left:199.076013pt;}
.x129{left:200.409347pt;}
.x140{left:201.742680pt;}
.x13c{left:203.076013pt;}
.x33{left:204.409347pt;}
.x139{left:205.742680pt;}
.xc6{left:207.076013pt;}
.xa0{left:208.409347pt;}
.x137{left:209.742680pt;}
.x45{left:211.076013pt;}
.xcc{left:212.409347pt;}
.x1f{left:213.742680pt;}
.x94{left:215.076013pt;}
.x10f{left:216.409347pt;}
.x27{left:217.742680pt;}
.x3b{left:219.076013pt;}
.xe5{left:220.409347pt;}
.xb7{left:221.742680pt;}
.x16{left:223.076013pt;}
.xb0{left:224.409347pt;}
.xeb{left:225.742680pt;}
.xd1{left:227.076013pt;}
.x14e{left:228.409347pt;}
.x90{left:229.742680pt;}
.x12b{left:231.076013pt;}
.x3{left:232.409347pt;}
.x112{left:233.742680pt;}
.xc7{left:235.076013pt;}
.x110{left:236.409347pt;}
.xde{left:237.742680pt;}
.x103{left:239.076013pt;}
.x46{left:240.409347pt;}
.x34{left:241.742680pt;}
.x81{left:243.076013pt;}
.x124{left:244.409347pt;}
.x7b{left:245.742680pt;}
.x9{left:247.076013pt;}
.xf{left:248.409347pt;}
.xaa{left:249.742680pt;}
.xc{left:251.076013pt;}
.x13e{left:252.409347pt;}
.x155{left:253.742680pt;}
.xbc{left:255.076013pt;}
.x114{left:256.409347pt;}
.x2c{left:257.742680pt;}
.xd9{left:259.076013pt;}
.x9b{left:260.409347pt;}
.x4{left:261.742680pt;}
.x20{left:263.076013pt;}
.x125{left:264.409347pt;}
.x86{left:265.742680pt;}
.x17{left:267.076013pt;}
.x91{left:268.409347pt;}
.xb9{left:269.742680pt;}
.x153{left:271.076013pt;}
.x146{left:272.409347pt;}
.xda{left:273.742680pt;}
.x5c{left:275.076013pt;}
.x104{left:276.409347pt;}
.x2d{left:277.742680pt;}
.x13{left:279.076013pt;}
.x133{left:280.409347pt;}
.x21{left:281.742680pt;}
.x87{left:283.076013pt;}
.x95{left:284.409347pt;}
.x6f{left:285.742680pt;}
.x5{left:287.076013pt;}
.xef{left:288.409347pt;}
.xf3{left:289.742680pt;}
.x130{left:291.076013pt;}
.x6a{left:292.409347pt;}
.xa1{left:293.742680pt;}
.x14f{left:295.076013pt;}
.xe9{left:296.409347pt;}
.x10{left:297.742680pt;}
.x11d{left:299.076013pt;}
.x2e{left:300.409347pt;}
.x96{left:301.742680pt;}
.x4d{left:303.076013pt;}
.x28{left:304.409347pt;}
.x82{left:305.742680pt;}
.x162{left:307.076013pt;}
.x88{left:308.409347pt;}
.xec{left:309.742680pt;}
.x70{left:311.076013pt;}
.x63{left:312.409347pt;}
.xc8{left:313.742680pt;}
.xd2{left:315.076013pt;}
.x14{left:316.409347pt;}
.x11{left:317.742680pt;}
.x18{left:319.076013pt;}
.x54{left:320.409347pt;}
.x115{left:321.742680pt;}
.xe1{left:323.076013pt;}
.xd3{left:324.409347pt;}
.xd{left:325.742680pt;}
.x74{left:327.076013pt;}
.xab{left:328.409347pt;}
.x126{left:329.742680pt;}
.x15{left:331.076013pt;}
.x14d{left:332.409347pt;}
.x4e{left:333.742680pt;}
.x35{left:335.076013pt;}
.xcd{left:336.409347pt;}
.x29{left:337.742680pt;}
.xbd{left:339.076013pt;}
.xe2{left:340.409347pt;}
.xa2{left:341.742680pt;}
.x141{left:343.076013pt;}
.xf8{left:344.409347pt;}
.x3c{left:345.742680pt;}
.x11b{left:347.076013pt;}
.xa7{left:348.409347pt;}
.x75{left:349.742680pt;}
.xac{left:351.076013pt;}
.x11e{left:352.409347pt;}
.x55{left:353.742680pt;}
.x7c{left:355.076013pt;}
.x64{left:356.409347pt;}
.x83{left:357.742680pt;}
.x10d{left:359.076013pt;}
.xe{left:360.409347pt;}
.x97{left:361.742680pt;}
.x12a{left:363.076013pt;}
.x128{left:364.409347pt;}
.x12{left:365.742680pt;}
.x157{left:367.076013pt;}
.xf0{left:368.409347pt;}
.xe3{left:369.742680pt;}
.x4f{left:371.076013pt;}
.x116{left:372.409347pt;}
.x100{left:373.742680pt;}
.x3d{left:375.076013pt;}
.xf4{left:376.409347pt;}
.x6b{left:377.742680pt;}
.x36{left:379.076013pt;}
.x19{left:380.409347pt;}
.xa3{left:381.742680pt;}
.x6{left:383.076013pt;}
.x121{left:384.409347pt;}
.x98{left:385.742680pt;}
.xbe{left:387.076013pt;}
.xd7{left:388.409347pt;}
.x5d{left:389.742680pt;}
.x156{left:391.076013pt;}
.xad{left:392.409347pt;}
.x3e{left:393.742680pt;}
.x89{left:395.076013pt;}
.x1a{left:396.409347pt;}
.x47{left:397.742680pt;}
.x9c{left:399.076013pt;}
.xea{left:400.409347pt;}
.x117{left:401.742680pt;}
.x113{left:403.076013pt;}
.x6c{left:404.409347pt;}
.x56{left:405.742680pt;}
.xb1{left:407.076013pt;}
.x131{left:408.409347pt;}
.xae{left:409.742680pt;}
.x105{left:411.076013pt;}
.x48{left:412.409347pt;}
.xa{left:413.742680pt;}
.x22{left:415.076013pt;}
.x3f{left:416.409347pt;}
.x8a{left:417.742680pt;}
.x101{left:419.076013pt;}
.x65{left:420.409347pt;}
.x71{left:421.742680pt;}
.x84{left:423.076013pt;}
.xdb{left:424.409347pt;}
.x7d{left:425.742680pt;}
.x92{left:427.076013pt;}
.xf1{left:428.409347pt;}
.x76{left:429.742680pt;}
.x57{left:431.076013pt;}
.x144{left:432.409347pt;}
.x107{left:433.742680pt;}
.x66{left:435.076013pt;}
.x12f{left:436.409347pt;}
.xd4{left:437.742680pt;}
.xb{left:439.076013pt;}
.x23{left:440.409347pt;}
.xed{left:441.742680pt;}
.xfc{left:443.076013pt;}
.x99{left:444.409347pt;}
.x77{left:445.742680pt;}
.x58{left:447.076013pt;}
.x142{left:448.409347pt;}
.x138{left:449.742680pt;}
.x8b{left:451.076013pt;}
.xbf{left:452.409347pt;}
.x5e{left:453.742680pt;}
.xce{left:455.076013pt;}
.x134{left:456.409347pt;}
.x49{left:457.742680pt;}
.x127{left:459.076013pt;}
.xa4{left:460.409347pt;}
.xfd{left:461.742680pt;}
.xc5{left:463.076013pt;}
.x50{left:464.409347pt;}
.x10b{left:465.742680pt;}
.x2f{left:467.076013pt;}
.x5f{left:468.409347pt;}
.x158{left:469.742680pt;}
.x10e{left:471.076013pt;}
.xb2{left:472.409347pt;}
.x9d{left:473.742680pt;}
.x24{left:475.076013pt;}
.x11f{left:476.409347pt;}
.xf9{left:477.742680pt;}
.x13f{left:479.076013pt;}
.xd5{left:480.409347pt;}
.x108{left:481.742680pt;}
.xba{left:483.076013pt;}
.x93{left:484.409347pt;}
.x40{left:485.742680pt;}
.x12e{left:487.076013pt;}
.x147{left:488.409347pt;}
.x51{left:489.742680pt;}
.xa5{left:491.076013pt;}
.x102{left:492.409347pt;}
.xc9{left:493.742680pt;}
.x14b{left:495.076013pt;}
.x15b{left:496.409347pt;}
.x7e{left:497.742680pt;}
.xb3{left:499.076013pt;}
.x37{left:500.409347pt;}
.x4a{left:501.742680pt;}
.x109{left:503.076013pt;}
.x67{left:504.409347pt;}
.x151{left:505.742680pt;}
.xdc{left:507.076013pt;}
.x30{left:508.409347pt;}
.x38{left:509.742680pt;}
.x145{left:511.076013pt;}
.x59{left:512.409347pt;}
.x2a{left:513.742680pt;}
.x4b{left:515.076013pt;}
.xcf{left:516.409347pt;}
.x68{left:517.742680pt;}
.x132{left:519.076013pt;}
.xe6{left:520.409347pt;}
.x52{left:521.742680pt;}
.xee{left:523.076013pt;}
.xf2{left:524.409347pt;}
.xdd{left:525.742680pt;}
.x118{left:527.076013pt;}
.x60{left:528.409347pt;}
.xd0{left:529.742680pt;}
.x8c{left:531.076013pt;}
.x9a{left:532.409347pt;}
.x13a{left:533.742680pt;}
.x12c{left:535.076013pt;}
.x122{left:536.409347pt;}
.x163{left:537.742680pt;}
.x14a{left:538.655747pt;}
.xb4{left:540.087480pt;}
.x25{left:541.742680pt;}
.x69{left:543.076013pt;}
.x2b{left:544.409347pt;}
.x15c{left:545.742680pt;}
.x11c{left:547.076013pt;}
.x166{left:548.493213pt;}
.x13d{left:549.742680pt;}
.x161{left:550.637013pt;}
.x61{left:552.609347pt;}
.x41{left:553.594947pt;}
.x159{left:554.656173pt;}
.x120{left:556.846680pt;}
.x12d{left:557.825880pt;}
.x143{left:559.097987pt;}
}




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