
    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_401e227ce01937130cb83c7f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1f90052a5d7406dfcdb5d0e3.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_789f5906368b69d82a13abcb.woff')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_28e545a21b4182e8d34fed71.woff')format("woff");}.ff4{font-family:ff4;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;}
.m39{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);}
.m3d{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m27{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);}
.m36{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);}
.m3b{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);}
.m2b{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);}
.m19{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);}
.m20{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);}
.m34{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);}
.m25{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);}
.m13{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);}
.m5{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);}
.m2c{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);}
.mf{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);}
.m6{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);}
.md{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);}
.m18{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);}
.m2{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);}
.m3{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);}
.m28{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);}
.m0{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);}
.me{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);}
.m1{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);}
.m7{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);}
.m4{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);}
.m11{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);}
.mc{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);}
.mb{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);}
.m10{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);}
.m9{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);}
.ma{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);}
.m12{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);}
.m17{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);}
.m15{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);}
.m2a{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);}
.m8{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);}
.m30{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);}
.m1e{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);}
.m24{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);}
.m29{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);}
.m1f{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);}
.m2e{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);}
.m14{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);}
.m1d{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);}
.m1b{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);}
.m23{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);}
.m1c{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);}
.m37{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);}
.m16{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);}
.m2d{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);}
.m3a{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);}
.m32{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);}
.m2f{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);}
.m1a{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);}
.m26{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);}
.m31{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);}
.m38{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);}
.m33{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);}
.m22{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.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;}
}
.ws69{word-spacing:-4.097250px;}
.wsc{word-spacing:0.000000px;}
.wsa4{word-spacing:2.652000px;}
.ws5{word-spacing:11.068058px;}
.ws86{word-spacing:13.260000px;}
.ws51{word-spacing:13.393025px;}
.ws19{word-spacing:13.561778px;}
.wsbd{word-spacing:14.345250px;}
.wsc6{word-spacing:14.884587px;}
.wsd3{word-spacing:15.153865px;}
.ws7d{word-spacing:15.348000px;}
.ws28{word-spacing:15.531273px;}
.ws3a{word-spacing:17.225667px;}
.ws59{word-spacing:17.376545px;}
.wsc5{word-spacing:17.413025px;}
.ws74{word-spacing:17.498776px;}
.ws2{word-spacing:17.858461px;}
.ws1c{word-spacing:18.477927px;}
.ws21{word-spacing:18.681689px;}
.wsb7{word-spacing:19.466177px;}
.ws7a{word-spacing:19.608000px;}
.ws77{word-spacing:20.479435px;}
.ws47{word-spacing:20.638526px;}
.ws24{word-spacing:21.018864px;}
.ws3d{word-spacing:21.785145px;}
.ws9d{word-spacing:21.785699px;}
.ws30{word-spacing:21.878417px;}
.wsce{word-spacing:22.086545px;}
.ws6b{word-spacing:23.279207px;}
.ws32{word-spacing:23.429333px;}
.wsa2{word-spacing:23.736083px;}
.ws0{word-spacing:23.839978px;}
.ws90{word-spacing:23.858982px;}
.ws43{word-spacing:24.113327px;}
.ws56{word-spacing:24.313763px;}
.ws96{word-spacing:24.648864px;}
.ws37{word-spacing:24.768545px;}
.ws7b{word-spacing:25.026364px;}
.ws29{word-spacing:25.415145px;}
.wsbf{word-spacing:25.457385px;}
.ws1{word-spacing:25.781583px;}
.ws46{word-spacing:25.792560px;}
.ws82{word-spacing:25.858560px;}
.ws45{word-spacing:26.367713px;}
.wsb{word-spacing:26.947046px;}
.ws25{word-spacing:27.093544px;}
.ws76{word-spacing:27.099175px;}
.ws58{word-spacing:27.166200px;}
.ws8f{word-spacing:27.620982px;}
.ws17{word-spacing:27.704928px;}
.ws1f{word-spacing:27.884028px;}
.ws6{word-spacing:28.533244px;}
.wsc1{word-spacing:28.533630px;}
.ws35{word-spacing:28.656364px;}
.ws78{word-spacing:28.756500px;}
.ws3b{word-spacing:28.770397px;}
.wsd0{word-spacing:29.607329px;}
.ws85{word-spacing:29.694818px;}
.wsad{word-spacing:29.725713px;}
.ws93{word-spacing:30.051374px;}
.ws99{word-spacing:30.063713px;}
.ws7{word-spacing:30.387667px;}
.wsb4{word-spacing:30.614167px;}
.ws34{word-spacing:30.729175px;}
.ws75{word-spacing:30.764548px;}
.ws84{word-spacing:30.796200px;}
.ws33{word-spacing:30.852181px;}
.ws70{word-spacing:30.918181px;}
.ws1b{word-spacing:31.027140px;}
.ws6d{word-spacing:31.250982px;}
.ws80{word-spacing:31.439267px;}
.ws3e{word-spacing:31.472975px;}
.ws62{word-spacing:31.963582px;}
.wsc9{word-spacing:32.065558px;}
.ws5f{word-spacing:32.352364px;}
.ws7c{word-spacing:32.947406px;}
.ws4a{word-spacing:33.563060px;}
.ws2c{word-spacing:33.681374px;}
.ws4{word-spacing:33.759713px;}
.wscc{word-spacing:34.011216px;}
.ws39{word-spacing:34.083667px;}
.ws38{word-spacing:34.139875px;}
.ws41{word-spacing:34.377028px;}
.ws8{word-spacing:34.492200px;}
.ws40{word-spacing:34.526548px;}
.wsbb{word-spacing:34.689778px;}
.wsd{word-spacing:34.830907px;}
.ws3f{word-spacing:34.880982px;}
.ws9f{word-spacing:35.129530px;}
.ws49{word-spacing:35.216385px;}
.ws11{word-spacing:35.356444px;}
.ws65{word-spacing:35.859244px;}
.wsba{word-spacing:36.148500px;}
.ws95{word-spacing:36.577406px;}
.ws9{word-spacing:36.814560px;}
.wsb2{word-spacing:37.112561px;}
.ws1e{word-spacing:37.136377px;}
.ws57{word-spacing:37.356565px;}
.wsc2{word-spacing:37.551630px;}
.wsa1{word-spacing:37.769875px;}
.ws4b{word-spacing:37.930382px;}
.ws12{word-spacing:37.941028px;}
.wsc8{word-spacing:38.176215px;}
.ws8a{word-spacing:38.188200px;}
.wsac{word-spacing:38.771872px;}
.ws3{word-spacing:38.903054px;}
.ws7e{word-spacing:39.289582px;}
.wsaf{word-spacing:39.484472px;}
.wscd{word-spacing:39.632878px;}
.wsc3{word-spacing:39.686128px;}
.ws8c{word-spacing:39.873254px;}
.ws1d{word-spacing:39.970253px;}
.ws8b{word-spacing:40.014519px;}
.ws61{word-spacing:40.018077px;}
.wsa6{word-spacing:40.036253px;}
.wsbe{word-spacing:40.179756px;}
.ws26{word-spacing:40.230017px;}
.ws27{word-spacing:40.273406px;}
.ws94{word-spacing:40.329573px;}
.wsb9{word-spacing:40.760906px;}
.ws7f{word-spacing:41.162722px;}
.ws5e{word-spacing:41.250951px;}
.ws2e{word-spacing:41.555310px;}
.ws14{word-spacing:41.703028px;}
.ws2a{word-spacing:41.818200px;}
.ws44{word-spacing:41.884200px;}
.ws52{word-spacing:42.013091px;}
.ws23{word-spacing:42.097185px;}
.ws48{word-spacing:42.118038px;}
.ws20{word-spacing:42.184038px;}
.wsf{word-spacing:42.355191px;}
.wscf{word-spacing:42.613704px;}
.ws31{word-spacing:42.748444px;}
.ws71{word-spacing:43.114472px;}
.ws36{word-spacing:43.472582px;}
.ws8e{word-spacing:43.569254px;}
.ws67{word-spacing:43.903406px;}
.ws6e{word-spacing:44.087966px;}
.ws53{word-spacing:44.172994px;}
.ws66{word-spacing:44.180116px;}
.wsa{word-spacing:44.411354px;}
.wsca{word-spacing:44.650842px;}
.wsa9{word-spacing:44.867600px;}
.ws63{word-spacing:45.385272px;}
.ws1a{word-spacing:45.688444px;}
.wsb0{word-spacing:45.714545px;}
.ws79{word-spacing:45.780545px;}
.wsb3{word-spacing:46.097872px;}
.wsc4{word-spacing:46.426444px;}
.ws64{word-spacing:46.876472px;}
.ws9c{word-spacing:47.036159px;}
.ws15{word-spacing:47.117081px;}
.wse{word-spacing:47.480813px;}
.ws16{word-spacing:47.612591px;}
.ws5d{word-spacing:48.054063px;}
.ws81{word-spacing:48.251569px;}
.wsa3{word-spacing:48.338591px;}
.ws4c{word-spacing:49.035732px;}
.wsab{word-spacing:49.105426px;}
.ws5c{word-spacing:50.117691px;}
.ws9e{word-spacing:50.732582px;}
.ws55{word-spacing:50.992253px;}
.wsb6{word-spacing:51.710416px;}
.ws6f{word-spacing:51.738818px;}
.ws98{word-spacing:51.804818px;}
.ws72{word-spacing:51.810149px;}
.ws97{word-spacing:52.034591px;}
.ws60{word-spacing:52.362578px;}
.ws4d{word-spacing:52.398331px;}
.wsb8{word-spacing:52.646309px;}
.wsb1{word-spacing:52.689368px;}
.ws92{word-spacing:52.777272px;}
.ws2f{word-spacing:53.359228px;}
.ws4e{word-spacing:53.578046px;}
.ws2b{word-spacing:53.747691px;}
.wsc7{word-spacing:53.833852px;}
.ws6a{word-spacing:54.509081px;}
.ws89{word-spacing:54.575081px;}
.ws91{word-spacing:54.763686px;}
.ws3c{word-spacing:54.813128px;}
.wscb{word-spacing:54.907263px;}
.ws10{word-spacing:56.322128px;}
.wsa7{word-spacing:56.407272px;}
.wsa0{word-spacing:57.481852px;}
.ws18{word-spacing:57.817088px;}
.ws50{word-spacing:57.912084px;}
.ws9b{word-spacing:58.147442px;}
.wsd2{word-spacing:58.147686px;}
.wsbc{word-spacing:58.331660px;}
.ws2d{word-spacing:60.510824px;}
.ws54{word-spacing:60.532038px;}
.wsa8{word-spacing:60.947047px;}
.ws4f{word-spacing:61.110296px;}
.ws83{word-spacing:62.059091px;}
.ws73{word-spacing:62.501963px;}
.wsae{word-spacing:62.686232px;}
.ws5b{word-spacing:64.168741px;}
.ws8d{word-spacing:64.286603px;}
.ws87{word-spacing:64.977223px;}
.ws13{word-spacing:65.031665px;}
.ws9a{word-spacing:65.408519px;}
.ws68{word-spacing:65.550327px;}
.ws5a{word-spacing:65.571333px;}
.wsaa{word-spacing:66.262927px;}
.ws88{word-spacing:67.495588px;}
.wsa5{word-spacing:68.103000px;}
.ws6c{word-spacing:68.230046px;}
.wsb5{word-spacing:71.883350px;}
.ws22{word-spacing:71.975750px;}
.wsd4{word-spacing:73.041000px;}
.ws42{word-spacing:73.741202px;}
.wsd1{word-spacing:155.517000px;}
.wsc0{word-spacing:164.892000px;}
._1{width:43.050545px;}
._4{width:49.482907px;}
._2{width:61.086562px;}
._3{width:63.215600px;}
._0{width:70.058416px;}
._5{width:74.670128px;}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:88.500000px;}
.y109{bottom:106.500000px;}
.ya1{bottom:109.500000px;}
.y177{bottom:111.000000px;}
.y63{bottom:112.500000px;}
.y17{bottom:114.000000px;}
.ybf{bottom:115.500000px;}
.y86{bottom:117.000000px;}
.y3f{bottom:120.000000px;}
.y143{bottom:124.500000px;}
.y108{bottom:126.000000px;}
.ya0{bottom:129.000000px;}
.y62{bottom:130.500000px;}
.yd4{bottom:132.000000px;}
.y16{bottom:133.500000px;}
.y85{bottom:135.000000px;}
.y12c{bottom:136.500000px;}
.yeb{bottom:138.000000px;}
.y3e{bottom:139.500000px;}
.y107{bottom:144.000000px;}
.ybe{bottom:145.500000px;}
.y152{bottom:148.500000px;}
.y61{bottom:150.000000px;}
.y15{bottom:151.500000px;}
.y122{bottom:153.000000px;}
.y84{bottom:154.500000px;}
.yea{bottom:156.000000px;}
.y3d{bottom:159.000000px;}
.y106{bottom:163.500000px;}
.y151{bottom:166.500000px;}
.y9f{bottom:168.000000px;}
.y60{bottom:169.500000px;}
.y14{bottom:171.000000px;}
.y83{bottom:174.000000px;}
.ye9{bottom:177.000000px;}
.y3c{bottom:178.500000px;}
.y142{bottom:181.500000px;}
.y105{bottom:183.000000px;}
.y150{bottom:186.000000px;}
.y9e{bottom:187.500000px;}
.y5f{bottom:189.000000px;}
.y13{bottom:190.500000px;}
.y82{bottom:192.000000px;}
.y12b{bottom:193.500000px;}
.ye8{bottom:195.000000px;}
.y3b{bottom:196.500000px;}
.ybd{bottom:199.500000px;}
.y141{bottom:201.000000px;}
.y104{bottom:202.500000px;}
.y9d{bottom:205.500000px;}
.y5e{bottom:207.000000px;}
.y118{bottom:208.500000px;}
.y12{bottom:210.000000px;}
.y81{bottom:211.500000px;}
.ye7{bottom:214.500000px;}
.y3a{bottom:216.000000px;}
.y103{bottom:220.500000px;}
.y16a{bottom:223.500000px;}
.y9c{bottom:225.000000px;}
.y11{bottom:228.000000px;}
.y121{bottom:229.500000px;}
.y80{bottom:231.000000px;}
.ye6{bottom:232.500000px;}
.y39{bottom:234.000000px;}
.y169{bottom:237.000000px;}
.ybc{bottom:238.500000px;}
.y102{bottom:240.000000px;}
.y9b{bottom:243.000000px;}
.y176{bottom:244.500000px;}
.y117{bottom:246.000000px;}
.y10{bottom:247.500000px;}
.y7f{bottom:249.000000px;}
.y120{bottom:250.500000px;}
.y38{bottom:255.000000px;}
.y175{bottom:256.500000px;}
.ybb{bottom:258.000000px;}
.y101{bottom:259.500000px;}
.y9a{bottom:262.500000px;}
.yf{bottom:265.500000px;}
.y5d{bottom:267.000000px;}
.y12a{bottom:268.500000px;}
.y7e{bottom:270.000000px;}
.y37{bottom:273.000000px;}
.ye5{bottom:274.500000px;}
.y174{bottom:276.000000px;}
.yba{bottom:277.500000px;}
.y14f{bottom:280.500000px;}
.y99{bottom:282.000000px;}
.y116{bottom:283.500000px;}
.ye{bottom:285.000000px;}
.y5c{bottom:286.500000px;}
.y7d{bottom:288.000000px;}
.y173{bottom:291.000000px;}
.y36{bottom:292.500000px;}
.ye4{bottom:294.000000px;}
.yb9{bottom:295.500000px;}
.y100{bottom:297.000000px;}
.y98{bottom:300.000000px;}
.y115{bottom:303.000000px;}
.y172{bottom:304.500000px;}
.yd{bottom:306.000000px;}
.yd3{bottom:307.500000px;}
.y35{bottom:310.500000px;}
.ye3{bottom:312.000000px;}
.yb8{bottom:313.500000px;}
.yff{bottom:316.500000px;}
.y168{bottom:318.000000px;}
.y97{bottom:319.500000px;}
.y114{bottom:322.500000px;}
.yc{bottom:324.000000px;}
.y7c{bottom:325.500000px;}
.yd2{bottom:327.000000px;}
.y11f{bottom:328.500000px;}
.y34{bottom:330.000000px;}
.ye2{bottom:331.500000px;}
.yb7{bottom:333.000000px;}
.y140{bottom:336.000000px;}
.y96{bottom:339.000000px;}
.y113{bottom:340.500000px;}
.yb{bottom:342.000000px;}
.y7b{bottom:343.500000px;}
.y5b{bottom:345.000000px;}
.yd1{bottom:346.500000px;}
.y33{bottom:348.000000px;}
.ye1{bottom:349.500000px;}
.y171{bottom:351.000000px;}
.yb6{bottom:354.000000px;}
.y13f{bottom:355.500000px;}
.y95{bottom:357.000000px;}
.yfe{bottom:358.500000px;}
.ya{bottom:361.500000px;}
.y7a{bottom:363.000000px;}
.y129{bottom:364.500000px;}
.y5a{bottom:366.000000px;}
.yd0{bottom:367.500000px;}
.y32{bottom:369.000000px;}
.ye0{bottom:370.500000px;}
.yb5{bottom:372.000000px;}
.yfd{bottom:376.500000px;}
.y167{bottom:378.000000px;}
.y9{bottom:381.000000px;}
.y79{bottom:382.500000px;}
.y59{bottom:385.500000px;}
.ycf{bottom:387.000000px;}
.y31{bottom:388.500000px;}
.yb4{bottom:391.500000px;}
.y13e{bottom:394.500000px;}
.y14e{bottom:396.000000px;}
.y94{bottom:397.500000px;}
.y8{bottom:400.500000px;}
.y78{bottom:402.000000px;}
.y58{bottom:405.000000px;}
.y30{bottom:408.000000px;}
.y11e{bottom:409.500000px;}
.yb3{bottom:411.000000px;}
.y13d{bottom:414.000000px;}
.yfc{bottom:415.500000px;}
.y7{bottom:420.000000px;}
.y128{bottom:421.500000px;}
.y112{bottom:424.500000px;}
.y2f{bottom:426.000000px;}
.y57{bottom:427.500000px;}
.yce{bottom:429.000000px;}
.yb2{bottom:430.500000px;}
.y13c{bottom:432.000000px;}
.y14d{bottom:433.500000px;}
.yfb{bottom:435.000000px;}
.y6{bottom:439.500000px;}
.y77{bottom:441.000000px;}
.y111{bottom:442.500000px;}
.y127{bottom:444.000000px;}
.y2e{bottom:445.500000px;}
.y56{bottom:447.000000px;}
.ycd{bottom:448.500000px;}
.yb1{bottom:450.000000px;}
.y13b{bottom:453.000000px;}
.yfa{bottom:454.500000px;}
.y166{bottom:457.500000px;}
.y5{bottom:459.000000px;}
.y15e{bottom:460.500000px;}
.y110{bottom:462.000000px;}
.y76{bottom:463.500000px;}
.y2d{bottom:465.000000px;}
.ydf{bottom:468.000000px;}
.y55{bottom:469.500000px;}
.yf9{bottom:472.500000px;}
.y170{bottom:475.500000px;}
.y15d{bottom:478.500000px;}
.y10f{bottom:481.500000px;}
.y75{bottom:483.000000px;}
.y2c{bottom:484.500000px;}
.y165{bottom:486.000000px;}
.yb0{bottom:487.500000px;}
.y54{bottom:489.000000px;}
.y11d{bottom:490.500000px;}
.yf8{bottom:492.000000px;}
.y4{bottom:496.500000px;}
.y10e{bottom:501.000000px;}
.y2b{bottom:502.500000px;}
.y93{bottom:504.000000px;}
.yaf{bottom:507.000000px;}
.y53{bottom:508.500000px;}
.ycc{bottom:510.000000px;}
.yf7{bottom:511.500000px;}
.y164{bottom:519.000000px;}
.y10d{bottom:520.500000px;}
.y2a{bottom:522.000000px;}
.y92{bottom:523.500000px;}
.y16f{bottom:525.000000px;}
.yae{bottom:526.500000px;}
.y52{bottom:528.000000px;}
.ycb{bottom:529.500000px;}
.y14c{bottom:531.000000px;}
.yf6{bottom:532.500000px;}
.y10c{bottom:538.500000px;}
.y74{bottom:540.000000px;}
.y29{bottom:541.500000px;}
.yad{bottom:546.000000px;}
.y51{bottom:547.500000px;}
.y11c{bottom:549.000000px;}
.yca{bottom:550.500000px;}
.y13a{bottom:552.000000px;}
.yf5{bottom:553.500000px;}
.y15c{bottom:558.000000px;}
.y73{bottom:559.500000px;}
.y91{bottom:562.500000px;}
.y28{bottom:564.000000px;}
.yac{bottom:565.500000px;}
.y50{bottom:568.500000px;}
.yc9{bottom:570.000000px;}
.y139{bottom:571.500000px;}
.yf4{bottom:573.000000px;}
.y15b{bottom:577.500000px;}
.y72{bottom:579.000000px;}
.y90{bottom:580.500000px;}
.y27{bottom:583.500000px;}
.yab{bottom:585.000000px;}
.y4f{bottom:588.000000px;}
.yc8{bottom:589.500000px;}
.y138{bottom:591.000000px;}
.yf3{bottom:592.500000px;}
.y71{bottom:598.500000px;}
.y8f{bottom:600.000000px;}
.y126{bottom:601.500000px;}
.y26{bottom:603.000000px;}
.yaa{bottom:604.500000px;}
.y4e{bottom:607.500000px;}
.yc7{bottom:609.000000px;}
.yf2{bottom:612.000000px;}
.y15a{bottom:616.500000px;}
.y70{bottom:618.000000px;}
.y8e{bottom:619.500000px;}
.y25{bottom:622.500000px;}
.ya9{bottom:624.000000px;}
.y14b{bottom:627.000000px;}
.y4d{bottom:628.500000px;}
.yf1{bottom:630.000000px;}
.y11b{bottom:631.500000px;}
.y159{bottom:634.500000px;}
.y163{bottom:637.500000px;}
.y8d{bottom:639.000000px;}
.y6f{bottom:640.500000px;}
.y24{bottom:642.000000px;}
.ya8{bottom:643.500000px;}
.y14a{bottom:646.500000px;}
.yc6{bottom:648.000000px;}
.y4c{bottom:649.500000px;}
.yf0{bottom:651.000000px;}
.y158{bottom:655.500000px;}
.y6e{bottom:658.500000px;}
.y23{bottom:660.000000px;}
.yde{bottom:661.500000px;}
.ya7{bottom:663.000000px;}
.y149{bottom:666.000000px;}
.y137{bottom:667.500000px;}
.y4b{bottom:669.000000px;}
.yc5{bottom:670.500000px;}
.y3{bottom:672.000000px;}
.y157{bottom:675.000000px;}
.y6d{bottom:678.000000px;}
.y22{bottom:679.500000px;}
.ya6{bottom:681.000000px;}
.ydd{bottom:682.500000px;}
.y148{bottom:684.000000px;}
.y136{bottom:687.000000px;}
.y4a{bottom:690.000000px;}
.yef{bottom:693.000000px;}
.y10b{bottom:696.000000px;}
.y21{bottom:697.500000px;}
.ya5{bottom:702.000000px;}
.ydc{bottom:703.500000px;}
.y135{bottom:706.500000px;}
.y49{bottom:709.500000px;}
.yc4{bottom:711.000000px;}
.y156{bottom:712.500000px;}
.y16e{bottom:714.000000px;}
.y8c{bottom:715.500000px;}
.y6c{bottom:717.000000px;}
.y20{bottom:718.500000px;}
.y162{bottom:720.000000px;}
.ya4{bottom:721.500000px;}
.y134{bottom:726.000000px;}
.y16d{bottom:727.500000px;}
.y11a{bottom:729.000000px;}
.y48{bottom:730.500000px;}
.y155{bottom:733.500000px;}
.y8b{bottom:735.000000px;}
.y6b{bottom:736.500000px;}
.y1f{bottom:738.000000px;}
.y161{bottom:739.500000px;}
.ya3{bottom:741.000000px;}
.ydb{bottom:742.500000px;}
.y133{bottom:747.000000px;}
.y47{bottom:750.000000px;}
.y154{bottom:753.000000px;}
.y6a{bottom:754.500000px;}
.y8a{bottom:756.000000px;}
.y1e{bottom:759.000000px;}
.y16c{bottom:760.500000px;}
.yda{bottom:762.000000px;}
.y132{bottom:766.500000px;}
.y46{bottom:769.500000px;}
.y119{bottom:771.000000px;}
.y153{bottom:772.500000px;}
.y89{bottom:774.000000px;}
.y69{bottom:775.500000px;}
.y160{bottom:778.500000px;}
.y1d{bottom:780.000000px;}
.y131{bottom:786.000000px;}
.yee{bottom:789.000000px;}
.y45{bottom:790.500000px;}
.yc3{bottom:792.000000px;}
.y68{bottom:793.500000px;}
.y125{bottom:795.000000px;}
.y15f{bottom:796.500000px;}
.y1c{bottom:798.000000px;}
.yd9{bottom:799.500000px;}
.y130{bottom:805.500000px;}
.yed{bottom:807.000000px;}
.y44{bottom:810.000000px;}
.yc2{bottom:811.500000px;}
.y67{bottom:813.000000px;}
.y124{bottom:814.500000px;}
.y1b{bottom:817.500000px;}
.ya2{bottom:819.000000px;}
.yd8{bottom:820.500000px;}
.y12f{bottom:825.000000px;}
.yec{bottom:826.500000px;}
.y147{bottom:829.500000px;}
.yc1{bottom:831.000000px;}
.y43{bottom:832.500000px;}
.y123{bottom:834.000000px;}
.y66{bottom:835.500000px;}
.y1a{bottom:837.000000px;}
.yd7{bottom:838.500000px;}
.y16b{bottom:840.000000px;}
.y12e{bottom:843.000000px;}
.y2{bottom:846.000000px;}
.y146{bottom:849.000000px;}
.yc0{bottom:850.500000px;}
.y42{bottom:852.000000px;}
.y88{bottom:853.500000px;}
.y65{bottom:855.000000px;}
.y19{bottom:856.500000px;}
.yd6{bottom:858.000000px;}
.y12d{bottom:879.000000px;}
.y1{bottom:880.500000px;}
.y144{bottom:882.000000px;}
.y145{bottom:883.500000px;}
.y41{bottom:885.000000px;}
.y40{bottom:886.500000px;}
.y87{bottom:888.000000px;}
.y64{bottom:889.500000px;}
.y18{bottom:891.000000px;}
.yd5{bottom:892.500000px;}
.h7{height:43.804688px;}
.h5{height:56.320312px;}
.h4{height:62.578125px;}
.h2{height:68.835938px;}
.h3{height:75.093750px;}
.h6{height:81.351562px;}
.h1{height:87.609375px;}
.h0{height:960.000000px;}
.w0{width:679.500000px;}
.x0{left:0.000000px;}
.x14b{left:79.500000px;}
.x136{left:81.000000px;}
.x137{left:82.500000px;}
.x139{left:84.000000px;}
.x13f{left:85.500000px;}
.x112{left:87.000000px;}
.xfd{left:88.500000px;}
.x53{left:90.000000px;}
.x1d{left:91.500000px;}
.x35{left:93.000000px;}
.x150{left:94.500000px;}
.x14f{left:96.000000px;}
.x152{left:99.000000px;}
.x13e{left:100.500000px;}
.x157{left:102.000000px;}
.x14e{left:103.500000px;}
.x14d{left:105.000000px;}
.x1e{left:106.500000px;}
.x1{left:108.000000px;}
.x140{left:109.500000px;}
.x13a{left:111.000000px;}
.x11f{left:112.500000px;}
.x10d{left:114.000000px;}
.x14{left:115.500000px;}
.x4c{left:117.000000px;}
.x7b{left:118.500000px;}
.x71{left:120.000000px;}
.x14c{left:121.500000px;}
.x148{left:123.000000px;}
.x44{left:124.500000px;}
.x147{left:126.000000px;}
.x54{left:127.500000px;}
.x151{left:129.000000px;}
.xfe{left:130.500000px;}
.x25{left:132.000000px;}
.x107{left:133.500000px;}
.x6{left:135.000000px;}
.x15{left:136.500000px;}
.x4d{left:138.000000px;}
.x36{left:139.500000px;}
.x13c{left:141.000000px;}
.x2{left:142.500000px;}
.x102{left:144.000000px;}
.x84{left:145.500000px;}
.x3e{left:147.000000px;}
.x45{left:148.500000px;}
.x117{left:150.000000px;}
.x6c{left:151.500000px;}
.x13b{left:153.000000px;}
.x7f{left:154.500000px;}
.x115{left:156.000000px;}
.x64{left:157.500000px;}
.x7c{left:159.000000px;}
.x101{left:160.500000px;}
.x37{left:162.000000px;}
.x55{left:163.500000px;}
.x7{left:165.000000px;}
.x4b{left:166.500000px;}
.x11d{left:168.000000px;}
.x120{left:169.500000px;}
.x1f{left:171.000000px;}
.xe{left:172.500000px;}
.x6d{left:174.000000px;}
.xaf{left:175.500000px;}
.x86{left:177.000000px;}
.x5c{left:178.500000px;}
.x26{left:180.000000px;}
.x2e{left:181.500000px;}
.x65{left:183.000000px;}
.x13d{left:184.500000px;}
.x9b{left:186.000000px;}
.xdb{left:187.500000px;}
.xa1{left:189.000000px;}
.xa0{left:190.500000px;}
.x126{left:192.000000px;}
.xe3{left:193.500000px;}
.x12f{left:195.000000px;}
.xb6{left:196.500000px;}
.x72{left:198.000000px;}
.x27{left:199.500000px;}
.xf{left:201.000000px;}
.x6e{left:202.500000px;}
.xd5{left:204.000000px;}
.x66{left:205.500000px;}
.xdf{left:207.000000px;}
.x60{left:208.500000px;}
.xff{left:210.000000px;}
.x4e{left:211.500000px;}
.x134{left:213.000000px;}
.x3f{left:214.500000px;}
.x16{left:216.000000px;}
.xcf{left:217.500000px;}
.xf2{left:219.000000px;}
.x110{left:220.500000px;}
.x122{left:222.000000px;}
.xdc{left:223.500000px;}
.xca{left:225.000000px;}
.x111{left:226.500000px;}
.x56{left:228.000000px;}
.x28{left:229.500000px;}
.x38{left:231.000000px;}
.xa4{left:232.500000px;}
.xcd{left:234.000000px;}
.xb7{left:235.500000px;}
.x4f{left:237.000000px;}
.xc4{left:238.500000px;}
.xa9{left:240.000000px;}
.x3{left:241.500000px;}
.x46{left:243.000000px;}
.x39{left:244.500000px;}
.xd8{left:246.000000px;}
.x57{left:247.500000px;}
.xbd{left:249.000000px;}
.x40{left:250.500000px;}
.xa5{left:252.000000px;}
.x7d{left:253.500000px;}
.x5d{left:255.000000px;}
.x119{left:256.500000px;}
.x11a{left:258.000000px;}
.x103{left:259.500000px;}
.x8c{left:261.000000px;}
.x127{left:262.500000px;}
.xdd{left:264.000000px;}
.x95{left:265.500000px;}
.xb0{left:267.000000px;}
.x58{left:268.500000px;}
.x7e{left:270.000000px;}
.x9c{left:271.500000px;}
.x50{left:273.000000px;}
.xbe{left:274.500000px;}
.x78{left:276.000000px;}
.x8{left:277.500000px;}
.x87{left:279.000000px;}
.xaa{left:280.500000px;}
.x6f{left:282.000000px;}
.x61{left:283.500000px;}
.x4{left:285.000000px;}
.x10{left:286.500000px;}
.xd6{left:288.000000px;}
.x3a{left:289.500000px;}
.xb8{left:291.000000px;}
.x96{left:292.500000px;}
.x5e{left:294.000000px;}
.x79{left:295.500000px;}
.x113{left:297.000000px;}
.x17{left:298.500000px;}
.x29{left:300.000000px;}
.xfc{left:301.500000px;}
.x67{left:303.000000px;}
.x51{left:304.500000px;}
.xd0{left:306.000000px;}
.xd9{left:307.500000px;}
.xab{left:309.000000px;}
.xb{left:310.500000px;}
.x9{left:312.000000px;}
.xbf{left:313.500000px;}
.x11{left:315.000000px;}
.x8d{left:316.500000px;}
.x2f{left:318.000000px;}
.x88{left:319.500000px;}
.xce{left:321.000000px;}
.x12b{left:322.500000px;}
.xb1{left:324.000000px;}
.x9d{left:325.500000px;}
.x41{left:327.000000px;}
.x59{left:328.500000px;}
.xac{left:330.000000px;}
.x8e{left:331.500000px;}
.x2a{left:333.000000px;}
.x73{left:334.500000px;}
.x68{left:336.000000px;}
.xf3{left:337.500000px;}
.xc{left:339.000000px;}
.xf7{left:340.500000px;}
.x100{left:342.000000px;}
.xa{left:343.500000px;}
.xc1{left:345.000000px;}
.x47{left:346.500000px;}
.xe9{left:348.000000px;}
.x5a{left:349.500000px;}
.x74{left:351.000000px;}
.x12{left:352.500000px;}
.x18{left:354.000000px;}
.x69{left:355.500000px;}
.x121{left:357.000000px;}
.xfa{left:358.500000px;}
.xc5{left:360.000000px;}
.x5f{left:361.500000px;}
.x30{left:363.000000px;}
.xec{left:364.500000px;}
.x48{left:366.000000px;}
.x11c{left:367.500000px;}
.x10e{left:369.000000px;}
.x19{left:370.500000px;}
.x62{left:372.000000px;}
.xe4{left:373.500000px;}
.x81{left:375.000000px;}
.x70{left:376.500000px;}
.x12c{left:378.000000px;}
.x3b{left:379.500000px;}
.x89{left:381.000000px;}
.xc2{left:382.500000px;}
.x10a{left:384.000000px;}
.x130{left:385.500000px;}
.xb2{left:387.000000px;}
.x82{left:388.500000px;}
.x124{left:390.000000px;}
.x5{left:391.500000px;}
.xd{left:393.000000px;}
.xea{left:394.500000px;}
.x114{left:396.000000px;}
.x42{left:397.500000px;}
.x97{left:399.000000px;}
.x13{left:400.500000px;}
.x8f{left:402.000000px;}
.xcb{left:403.500000px;}
.xd1{left:405.000000px;}
.x7a{left:406.500000px;}
.x75{left:408.000000px;}
.x10b{left:409.500000px;}
.xe5{left:411.000000px;}
.xb9{left:412.500000px;}
.x63{left:414.000000px;}
.x104{left:415.500000px;}
.x12e{left:417.000000px;}
.x11e{left:418.500000px;}
.x20{left:420.000000px;}
.x109{left:421.500000px;}
.xd2{left:423.000000px;}
.x31{left:424.500000px;}
.x90{left:426.000000px;}
.xa6{left:427.500000px;}
.x2b{left:429.000000px;}
.x1a{left:430.500000px;}
.xf4{left:432.000000px;}
.xee{left:433.500000px;}
.x5b{left:435.000000px;}
.xc6{left:436.500000px;}
.x49{left:438.000000px;}
.xba{left:439.500000px;}
.x32{left:441.000000px;}
.x21{left:442.500000px;}
.x118{left:444.000000px;}
.x105{left:445.500000px;}
.x92{left:447.000000px;}
.x52{left:448.500000px;}
.x98{left:450.000000px;}
.x10c{left:451.500000px;}
.x8a{left:453.000000px;}
.x1b{left:454.500000px;}
.xeb{left:456.000000px;}
.xe6{left:457.500000px;}
.x83{left:459.000000px;}
.x43{left:460.500000px;}
.x9e{left:462.000000px;}
.xc7{left:463.500000px;}
.x3c{left:465.000000px;}
.xe0{left:466.500000px;}
.xf1{left:468.000000px;}
.x108{left:469.500000px;}
.x116{left:471.000000px;}
.x2c{left:472.500000px;}
.x93{left:474.000000px;}
.xa7{left:475.500000px;}
.xad{left:477.000000px;}
.x22{left:478.500000px;}
.x33{left:480.000000px;}
.xd3{left:481.500000px;}
.x80{left:483.000000px;}
.xe1{left:484.500000px;}
.xc8{left:486.000000px;}
.x11b{left:487.500000px;}
.x6a{left:489.000000px;}
.x106{left:490.500000px;}
.xf6{left:492.000000px;}
.x76{left:493.500000px;}
.x23{left:495.000000px;}
.x2d{left:496.500000px;}
.xef{left:498.000000px;}
.xe7{left:499.500000px;}
.x99{left:501.000000px;}
.x34{left:502.500000px;}
.xd4{left:504.000000px;}
.xa2{left:505.500000px;}
.x138{left:507.000000px;}
.xa8{left:508.500000px;}
.x77{left:510.000000px;}
.x3d{left:511.500000px;}
.xd7{left:513.000000px;}
.x10f{left:514.500000px;}
.x4a{left:516.000000px;}
.x131{left:517.500000px;}
.xcc{left:519.000000px;}
.x145{left:520.500000px;}
.x6b{left:522.000000px;}
.xe2{left:523.500000px;}
.x1c{left:525.000000px;}
.x12d{left:526.500000px;}
.xb3{left:528.000000px;}
.x9a{left:529.500000px;}
.x9f{left:531.000000px;}
.x24{left:532.635840px;}
.x135{left:534.000000px;}
.x129{left:535.500000px;}
.xf8{left:537.000000px;}
.x133{left:538.500000px;}
.x12a{left:540.000000px;}
.x94{left:541.500000px;}
.xc0{left:543.000000px;}
.x91{left:544.500000px;}
.xf9{left:546.000000px;}
.x132{left:547.500000px;}
.x146{left:549.000000px;}
.x153{left:550.500000px;}
.xda{left:552.000000px;}
.xfb{left:553.500000px;}
.xbb{left:555.000000px;}
.x8b{left:556.500000px;}
.x155{left:558.000000px;}
.xc9{left:559.500000px;}
.xf0{left:561.000000px;}
.xae{left:562.500000px;}
.xb4{left:564.000000px;}
.xe8{left:565.500000px;}
.x128{left:567.000000px;}
.x123{left:568.500000px;}
.xf5{left:570.000000px;}
.xed{left:571.500000px;}
.x85{left:573.000000px;}
.x141{left:574.500000px;}
.xa3{left:576.000000px;}
.x14a{left:577.500000px;}
.x143{left:579.000000px;}
.xc3{left:580.500000px;}
.x158{left:582.000000px;}
.x149{left:583.203600px;}
.x125{left:584.726925px;}
.xde{left:586.439220px;}
.xb5{left:587.617440px;}
.xbc{left:588.991650px;}
.x142{left:590.491650px;}
.x144{left:591.895725px;}
.x159{left:593.206770px;}
.x154{left:594.714450px;}
.x156{left:596.666475px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws69{word-spacing:-3.642000pt;}
.wsc{word-spacing:0.000000pt;}
.wsa4{word-spacing:2.357333pt;}
.ws5{word-spacing:9.838274pt;}
.ws86{word-spacing:11.786667pt;}
.ws51{word-spacing:11.904911pt;}
.ws19{word-spacing:12.054914pt;}
.wsbd{word-spacing:12.751333pt;}
.wsc6{word-spacing:13.230744pt;}
.wsd3{word-spacing:13.470102pt;}
.ws7d{word-spacing:13.642667pt;}
.ws28{word-spacing:13.805576pt;}
.ws3a{word-spacing:15.311704pt;}
.ws59{word-spacing:15.445818pt;}
.wsc5{word-spacing:15.478244pt;}
.ws74{word-spacing:15.554467pt;}
.ws2{word-spacing:15.874187pt;}
.ws1c{word-spacing:16.424824pt;}
.ws21{word-spacing:16.605946pt;}
.wsb7{word-spacing:17.303269pt;}
.ws7a{word-spacing:17.429333pt;}
.ws77{word-spacing:18.203943pt;}
.ws47{word-spacing:18.345357pt;}
.ws24{word-spacing:18.683434pt;}
.ws3d{word-spacing:19.364574pt;}
.ws9d{word-spacing:19.365065pt;}
.ws30{word-spacing:19.447481pt;}
.wsce{word-spacing:19.632485pt;}
.ws6b{word-spacing:20.692628pt;}
.ws32{word-spacing:20.826074pt;}
.wsa2{word-spacing:21.098741pt;}
.ws0{word-spacing:21.191091pt;}
.ws90{word-spacing:21.207984pt;}
.ws43{word-spacing:21.434069pt;}
.ws56{word-spacing:21.612234pt;}
.ws96{word-spacing:21.910101pt;}
.ws37{word-spacing:22.016485pt;}
.ws7b{word-spacing:22.245656pt;}
.ws29{word-spacing:22.591240pt;}
.wsbf{word-spacing:22.628787pt;}
.ws1{word-spacing:22.916963pt;}
.ws46{word-spacing:22.926720pt;}
.ws82{word-spacing:22.985386pt;}
.ws45{word-spacing:23.437967pt;}
.wsb{word-spacing:23.952929pt;}
.ws25{word-spacing:24.083150pt;}
.ws76{word-spacing:24.088155pt;}
.ws58{word-spacing:24.147733pt;}
.ws8f{word-spacing:24.551984pt;}
.ws17{word-spacing:24.626603pt;}
.ws1f{word-spacing:24.785803pt;}
.ws6{word-spacing:25.362883pt;}
.wsc1{word-spacing:25.363226pt;}
.ws35{word-spacing:25.472323pt;}
.ws78{word-spacing:25.561333pt;}
.ws3b{word-spacing:25.573686pt;}
.wsd0{word-spacing:26.317626pt;}
.ws85{word-spacing:26.395394pt;}
.wsad{word-spacing:26.422856pt;}
.ws93{word-spacing:26.712332pt;}
.ws99{word-spacing:26.723300pt;}
.ws7{word-spacing:27.011259pt;}
.wsb4{word-spacing:27.212593pt;}
.ws34{word-spacing:27.314822pt;}
.ws75{word-spacing:27.346265pt;}
.ws84{word-spacing:27.374400pt;}
.ws33{word-spacing:27.424161pt;}
.ws70{word-spacing:27.482828pt;}
.ws1b{word-spacing:27.579680pt;}
.ws6d{word-spacing:27.778650pt;}
.ws80{word-spacing:27.946015pt;}
.ws3e{word-spacing:27.975978pt;}
.ws62{word-spacing:28.412073pt;}
.wsc9{word-spacing:28.502718pt;}
.ws5f{word-spacing:28.757656pt;}
.ws7c{word-spacing:29.286583pt;}
.ws4a{word-spacing:29.833831pt;}
.ws2c{word-spacing:29.938999pt;}
.ws4{word-spacing:30.008634pt;}
.wscc{word-spacing:30.232192pt;}
.ws39{word-spacing:30.296593pt;}
.ws38{word-spacing:30.346556pt;}
.ws41{word-spacing:30.557359pt;}
.ws8{word-spacing:30.659733pt;}
.ws40{word-spacing:30.690265pt;}
.wsbb{word-spacing:30.835358pt;}
.wsd{word-spacing:30.960806pt;}
.ws3f{word-spacing:31.005317pt;}
.ws9f{word-spacing:31.226249pt;}
.ws49{word-spacing:31.303453pt;}
.ws11{word-spacing:31.427951pt;}
.ws65{word-spacing:31.874883pt;}
.wsba{word-spacing:32.132000pt;}
.ws95{word-spacing:32.513250pt;}
.ws9{word-spacing:32.724053pt;}
.wsb2{word-spacing:32.988943pt;}
.ws1e{word-spacing:33.010113pt;}
.ws57{word-spacing:33.205836pt;}
.wsc2{word-spacing:33.379226pt;}
.wsa1{word-spacing:33.573222pt;}
.ws4b{word-spacing:33.715895pt;}
.ws12{word-spacing:33.725359pt;}
.wsc8{word-spacing:33.934413pt;}
.ws8a{word-spacing:33.945066pt;}
.wsac{word-spacing:34.463887pt;}
.ws3{word-spacing:34.580493pt;}
.ws7e{word-spacing:34.924073pt;}
.wsaf{word-spacing:35.097309pt;}
.wscd{word-spacing:35.229225pt;}
.wsc3{word-spacing:35.276559pt;}
.ws8c{word-spacing:35.442893pt;}
.ws1d{word-spacing:35.529114pt;}
.ws8b{word-spacing:35.568461pt;}
.ws61{word-spacing:35.571624pt;}
.wsa6{word-spacing:35.587781pt;}
.wsbe{word-spacing:35.715339pt;}
.ws26{word-spacing:35.760015pt;}
.ws27{word-spacing:35.798583pt;}
.ws94{word-spacing:35.848510pt;}
.wsb9{word-spacing:36.231917pt;}
.ws7f{word-spacing:36.589086pt;}
.ws5e{word-spacing:36.667512pt;}
.ws2e{word-spacing:36.938053pt;}
.ws14{word-spacing:37.069359pt;}
.ws2a{word-spacing:37.171733pt;}
.ws44{word-spacing:37.230400pt;}
.ws52{word-spacing:37.344969pt;}
.ws23{word-spacing:37.419720pt;}
.ws48{word-spacing:37.438256pt;}
.ws20{word-spacing:37.496922pt;}
.wsf{word-spacing:37.649059pt;}
.wscf{word-spacing:37.878848pt;}
.ws31{word-spacing:37.998617pt;}
.ws71{word-spacing:38.323975pt;}
.ws36{word-spacing:38.642295pt;}
.ws8e{word-spacing:38.728226pt;}
.ws67{word-spacing:39.025250pt;}
.ws6e{word-spacing:39.189303pt;}
.ws53{word-spacing:39.264884pt;}
.ws66{word-spacing:39.271214pt;}
.wsa{word-spacing:39.476759pt;}
.wsca{word-spacing:39.689637pt;}
.wsa9{word-spacing:39.882311pt;}
.ws63{word-spacing:40.342464pt;}
.ws1a{word-spacing:40.611950pt;}
.wsb0{word-spacing:40.635152pt;}
.ws79{word-spacing:40.693818pt;}
.wsb3{word-spacing:40.975887pt;}
.wsc4{word-spacing:41.267951pt;}
.ws64{word-spacing:41.667975pt;}
.ws9c{word-spacing:41.809919pt;}
.ws15{word-spacing:41.881849pt;}
.wse{word-spacing:42.205167pt;}
.ws16{word-spacing:42.322303pt;}
.ws5d{word-spacing:42.714723pt;}
.ws81{word-spacing:42.890284pt;}
.wsa3{word-spacing:42.967637pt;}
.ws4c{word-spacing:43.587317pt;}
.wsab{word-spacing:43.649268pt;}
.ws5c{word-spacing:44.549058pt;}
.ws9e{word-spacing:45.095629pt;}
.ws55{word-spacing:45.326447pt;}
.wsb6{word-spacing:45.964814pt;}
.ws6f{word-spacing:45.990060pt;}
.ws98{word-spacing:46.048727pt;}
.ws72{word-spacing:46.053466pt;}
.ws97{word-spacing:46.252970pt;}
.ws60{word-spacing:46.544514pt;}
.ws4d{word-spacing:46.576294pt;}
.wsb8{word-spacing:46.796719pt;}
.wsb1{word-spacing:46.834994pt;}
.ws92{word-spacing:46.913131pt;}
.ws2f{word-spacing:47.430425pt;}
.ws4e{word-spacing:47.624930pt;}
.ws2b{word-spacing:47.775725pt;}
.wsc7{word-spacing:47.852313pt;}
.ws6a{word-spacing:48.452516pt;}
.ws89{word-spacing:48.511183pt;}
.ws91{word-spacing:48.678832pt;}
.ws3c{word-spacing:48.722781pt;}
.wscb{word-spacing:48.806456pt;}
.ws10{word-spacing:50.064114pt;}
.wsa7{word-spacing:50.139798pt;}
.wsa0{word-spacing:51.094979pt;}
.ws18{word-spacing:51.392967pt;}
.ws50{word-spacing:51.477408pt;}
.ws9b{word-spacing:51.686615pt;}
.wsd2{word-spacing:51.686832pt;}
.wsbc{word-spacing:51.850364pt;}
.ws2d{word-spacing:53.787399pt;}
.ws54{word-spacing:53.806256pt;}
.wsa8{word-spacing:54.175153pt;}
.ws4f{word-spacing:54.320263pt;}
.ws83{word-spacing:55.163636pt;}
.ws73{word-spacing:55.557301pt;}
.wsae{word-spacing:55.721095pt;}
.ws5b{word-spacing:57.038881pt;}
.ws8d{word-spacing:57.143647pt;}
.ws87{word-spacing:57.757532pt;}
.ws13{word-spacing:57.805924pt;}
.ws9a{word-spacing:58.140905pt;}
.ws68{word-spacing:58.266957pt;}
.ws5a{word-spacing:58.285630pt;}
.wsaa{word-spacing:58.900379pt;}
.ws88{word-spacing:59.996078pt;}
.wsa5{word-spacing:60.536000pt;}
.ws6c{word-spacing:60.648930pt;}
.wsb5{word-spacing:63.896311pt;}
.ws22{word-spacing:63.978445pt;}
.wsd4{word-spacing:64.925333pt;}
.ws42{word-spacing:65.547735pt;}
.wsd1{word-spacing:138.237333pt;}
.wsc0{word-spacing:146.570667pt;}
._1{width:38.267151pt;}
._4{width:43.984806pt;}
._2{width:54.299166pt;}
._3{width:56.191644pt;}
._0{width:62.274147pt;}
._5{width:66.373447pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:78.666667pt;}
.y109{bottom:94.666667pt;}
.ya1{bottom:97.333333pt;}
.y177{bottom:98.666667pt;}
.y63{bottom:100.000000pt;}
.y17{bottom:101.333333pt;}
.ybf{bottom:102.666667pt;}
.y86{bottom:104.000000pt;}
.y3f{bottom:106.666667pt;}
.y143{bottom:110.666667pt;}
.y108{bottom:112.000000pt;}
.ya0{bottom:114.666667pt;}
.y62{bottom:116.000000pt;}
.yd4{bottom:117.333333pt;}
.y16{bottom:118.666667pt;}
.y85{bottom:120.000000pt;}
.y12c{bottom:121.333333pt;}
.yeb{bottom:122.666667pt;}
.y3e{bottom:124.000000pt;}
.y107{bottom:128.000000pt;}
.ybe{bottom:129.333333pt;}
.y152{bottom:132.000000pt;}
.y61{bottom:133.333333pt;}
.y15{bottom:134.666667pt;}
.y122{bottom:136.000000pt;}
.y84{bottom:137.333333pt;}
.yea{bottom:138.666667pt;}
.y3d{bottom:141.333333pt;}
.y106{bottom:145.333333pt;}
.y151{bottom:148.000000pt;}
.y9f{bottom:149.333333pt;}
.y60{bottom:150.666667pt;}
.y14{bottom:152.000000pt;}
.y83{bottom:154.666667pt;}
.ye9{bottom:157.333333pt;}
.y3c{bottom:158.666667pt;}
.y142{bottom:161.333333pt;}
.y105{bottom:162.666667pt;}
.y150{bottom:165.333333pt;}
.y9e{bottom:166.666667pt;}
.y5f{bottom:168.000000pt;}
.y13{bottom:169.333333pt;}
.y82{bottom:170.666667pt;}
.y12b{bottom:172.000000pt;}
.ye8{bottom:173.333333pt;}
.y3b{bottom:174.666667pt;}
.ybd{bottom:177.333333pt;}
.y141{bottom:178.666667pt;}
.y104{bottom:180.000000pt;}
.y9d{bottom:182.666667pt;}
.y5e{bottom:184.000000pt;}
.y118{bottom:185.333333pt;}
.y12{bottom:186.666667pt;}
.y81{bottom:188.000000pt;}
.ye7{bottom:190.666667pt;}
.y3a{bottom:192.000000pt;}
.y103{bottom:196.000000pt;}
.y16a{bottom:198.666667pt;}
.y9c{bottom:200.000000pt;}
.y11{bottom:202.666667pt;}
.y121{bottom:204.000000pt;}
.y80{bottom:205.333333pt;}
.ye6{bottom:206.666667pt;}
.y39{bottom:208.000000pt;}
.y169{bottom:210.666667pt;}
.ybc{bottom:212.000000pt;}
.y102{bottom:213.333333pt;}
.y9b{bottom:216.000000pt;}
.y176{bottom:217.333333pt;}
.y117{bottom:218.666667pt;}
.y10{bottom:220.000000pt;}
.y7f{bottom:221.333333pt;}
.y120{bottom:222.666667pt;}
.y38{bottom:226.666667pt;}
.y175{bottom:228.000000pt;}
.ybb{bottom:229.333333pt;}
.y101{bottom:230.666667pt;}
.y9a{bottom:233.333333pt;}
.yf{bottom:236.000000pt;}
.y5d{bottom:237.333333pt;}
.y12a{bottom:238.666667pt;}
.y7e{bottom:240.000000pt;}
.y37{bottom:242.666667pt;}
.ye5{bottom:244.000000pt;}
.y174{bottom:245.333333pt;}
.yba{bottom:246.666667pt;}
.y14f{bottom:249.333333pt;}
.y99{bottom:250.666667pt;}
.y116{bottom:252.000000pt;}
.ye{bottom:253.333333pt;}
.y5c{bottom:254.666667pt;}
.y7d{bottom:256.000000pt;}
.y173{bottom:258.666667pt;}
.y36{bottom:260.000000pt;}
.ye4{bottom:261.333333pt;}
.yb9{bottom:262.666667pt;}
.y100{bottom:264.000000pt;}
.y98{bottom:266.666667pt;}
.y115{bottom:269.333333pt;}
.y172{bottom:270.666667pt;}
.yd{bottom:272.000000pt;}
.yd3{bottom:273.333333pt;}
.y35{bottom:276.000000pt;}
.ye3{bottom:277.333333pt;}
.yb8{bottom:278.666667pt;}
.yff{bottom:281.333333pt;}
.y168{bottom:282.666667pt;}
.y97{bottom:284.000000pt;}
.y114{bottom:286.666667pt;}
.yc{bottom:288.000000pt;}
.y7c{bottom:289.333333pt;}
.yd2{bottom:290.666667pt;}
.y11f{bottom:292.000000pt;}
.y34{bottom:293.333333pt;}
.ye2{bottom:294.666667pt;}
.yb7{bottom:296.000000pt;}
.y140{bottom:298.666667pt;}
.y96{bottom:301.333333pt;}
.y113{bottom:302.666667pt;}
.yb{bottom:304.000000pt;}
.y7b{bottom:305.333333pt;}
.y5b{bottom:306.666667pt;}
.yd1{bottom:308.000000pt;}
.y33{bottom:309.333333pt;}
.ye1{bottom:310.666667pt;}
.y171{bottom:312.000000pt;}
.yb6{bottom:314.666667pt;}
.y13f{bottom:316.000000pt;}
.y95{bottom:317.333333pt;}
.yfe{bottom:318.666667pt;}
.ya{bottom:321.333333pt;}
.y7a{bottom:322.666667pt;}
.y129{bottom:324.000000pt;}
.y5a{bottom:325.333333pt;}
.yd0{bottom:326.666667pt;}
.y32{bottom:328.000000pt;}
.ye0{bottom:329.333333pt;}
.yb5{bottom:330.666667pt;}
.yfd{bottom:334.666667pt;}
.y167{bottom:336.000000pt;}
.y9{bottom:338.666667pt;}
.y79{bottom:340.000000pt;}
.y59{bottom:342.666667pt;}
.ycf{bottom:344.000000pt;}
.y31{bottom:345.333333pt;}
.yb4{bottom:348.000000pt;}
.y13e{bottom:350.666667pt;}
.y14e{bottom:352.000000pt;}
.y94{bottom:353.333333pt;}
.y8{bottom:356.000000pt;}
.y78{bottom:357.333333pt;}
.y58{bottom:360.000000pt;}
.y30{bottom:362.666667pt;}
.y11e{bottom:364.000000pt;}
.yb3{bottom:365.333333pt;}
.y13d{bottom:368.000000pt;}
.yfc{bottom:369.333333pt;}
.y7{bottom:373.333333pt;}
.y128{bottom:374.666667pt;}
.y112{bottom:377.333333pt;}
.y2f{bottom:378.666667pt;}
.y57{bottom:380.000000pt;}
.yce{bottom:381.333333pt;}
.yb2{bottom:382.666667pt;}
.y13c{bottom:384.000000pt;}
.y14d{bottom:385.333333pt;}
.yfb{bottom:386.666667pt;}
.y6{bottom:390.666667pt;}
.y77{bottom:392.000000pt;}
.y111{bottom:393.333333pt;}
.y127{bottom:394.666667pt;}
.y2e{bottom:396.000000pt;}
.y56{bottom:397.333333pt;}
.ycd{bottom:398.666667pt;}
.yb1{bottom:400.000000pt;}
.y13b{bottom:402.666667pt;}
.yfa{bottom:404.000000pt;}
.y166{bottom:406.666667pt;}
.y5{bottom:408.000000pt;}
.y15e{bottom:409.333333pt;}
.y110{bottom:410.666667pt;}
.y76{bottom:412.000000pt;}
.y2d{bottom:413.333333pt;}
.ydf{bottom:416.000000pt;}
.y55{bottom:417.333333pt;}
.yf9{bottom:420.000000pt;}
.y170{bottom:422.666667pt;}
.y15d{bottom:425.333333pt;}
.y10f{bottom:428.000000pt;}
.y75{bottom:429.333333pt;}
.y2c{bottom:430.666667pt;}
.y165{bottom:432.000000pt;}
.yb0{bottom:433.333333pt;}
.y54{bottom:434.666667pt;}
.y11d{bottom:436.000000pt;}
.yf8{bottom:437.333333pt;}
.y4{bottom:441.333333pt;}
.y10e{bottom:445.333333pt;}
.y2b{bottom:446.666667pt;}
.y93{bottom:448.000000pt;}
.yaf{bottom:450.666667pt;}
.y53{bottom:452.000000pt;}
.ycc{bottom:453.333333pt;}
.yf7{bottom:454.666667pt;}
.y164{bottom:461.333333pt;}
.y10d{bottom:462.666667pt;}
.y2a{bottom:464.000000pt;}
.y92{bottom:465.333333pt;}
.y16f{bottom:466.666667pt;}
.yae{bottom:468.000000pt;}
.y52{bottom:469.333333pt;}
.ycb{bottom:470.666667pt;}
.y14c{bottom:472.000000pt;}
.yf6{bottom:473.333333pt;}
.y10c{bottom:478.666667pt;}
.y74{bottom:480.000000pt;}
.y29{bottom:481.333333pt;}
.yad{bottom:485.333333pt;}
.y51{bottom:486.666667pt;}
.y11c{bottom:488.000000pt;}
.yca{bottom:489.333333pt;}
.y13a{bottom:490.666667pt;}
.yf5{bottom:492.000000pt;}
.y15c{bottom:496.000000pt;}
.y73{bottom:497.333333pt;}
.y91{bottom:500.000000pt;}
.y28{bottom:501.333333pt;}
.yac{bottom:502.666667pt;}
.y50{bottom:505.333333pt;}
.yc9{bottom:506.666667pt;}
.y139{bottom:508.000000pt;}
.yf4{bottom:509.333333pt;}
.y15b{bottom:513.333333pt;}
.y72{bottom:514.666667pt;}
.y90{bottom:516.000000pt;}
.y27{bottom:518.666667pt;}
.yab{bottom:520.000000pt;}
.y4f{bottom:522.666667pt;}
.yc8{bottom:524.000000pt;}
.y138{bottom:525.333333pt;}
.yf3{bottom:526.666667pt;}
.y71{bottom:532.000000pt;}
.y8f{bottom:533.333333pt;}
.y126{bottom:534.666667pt;}
.y26{bottom:536.000000pt;}
.yaa{bottom:537.333333pt;}
.y4e{bottom:540.000000pt;}
.yc7{bottom:541.333333pt;}
.yf2{bottom:544.000000pt;}
.y15a{bottom:548.000000pt;}
.y70{bottom:549.333333pt;}
.y8e{bottom:550.666667pt;}
.y25{bottom:553.333333pt;}
.ya9{bottom:554.666667pt;}
.y14b{bottom:557.333333pt;}
.y4d{bottom:558.666667pt;}
.yf1{bottom:560.000000pt;}
.y11b{bottom:561.333333pt;}
.y159{bottom:564.000000pt;}
.y163{bottom:566.666667pt;}
.y8d{bottom:568.000000pt;}
.y6f{bottom:569.333333pt;}
.y24{bottom:570.666667pt;}
.ya8{bottom:572.000000pt;}
.y14a{bottom:574.666667pt;}
.yc6{bottom:576.000000pt;}
.y4c{bottom:577.333333pt;}
.yf0{bottom:578.666667pt;}
.y158{bottom:582.666667pt;}
.y6e{bottom:585.333333pt;}
.y23{bottom:586.666667pt;}
.yde{bottom:588.000000pt;}
.ya7{bottom:589.333333pt;}
.y149{bottom:592.000000pt;}
.y137{bottom:593.333333pt;}
.y4b{bottom:594.666667pt;}
.yc5{bottom:596.000000pt;}
.y3{bottom:597.333333pt;}
.y157{bottom:600.000000pt;}
.y6d{bottom:602.666667pt;}
.y22{bottom:604.000000pt;}
.ya6{bottom:605.333333pt;}
.ydd{bottom:606.666667pt;}
.y148{bottom:608.000000pt;}
.y136{bottom:610.666667pt;}
.y4a{bottom:613.333333pt;}
.yef{bottom:616.000000pt;}
.y10b{bottom:618.666667pt;}
.y21{bottom:620.000000pt;}
.ya5{bottom:624.000000pt;}
.ydc{bottom:625.333333pt;}
.y135{bottom:628.000000pt;}
.y49{bottom:630.666667pt;}
.yc4{bottom:632.000000pt;}
.y156{bottom:633.333333pt;}
.y16e{bottom:634.666667pt;}
.y8c{bottom:636.000000pt;}
.y6c{bottom:637.333333pt;}
.y20{bottom:638.666667pt;}
.y162{bottom:640.000000pt;}
.ya4{bottom:641.333333pt;}
.y134{bottom:645.333333pt;}
.y16d{bottom:646.666667pt;}
.y11a{bottom:648.000000pt;}
.y48{bottom:649.333333pt;}
.y155{bottom:652.000000pt;}
.y8b{bottom:653.333333pt;}
.y6b{bottom:654.666667pt;}
.y1f{bottom:656.000000pt;}
.y161{bottom:657.333333pt;}
.ya3{bottom:658.666667pt;}
.ydb{bottom:660.000000pt;}
.y133{bottom:664.000000pt;}
.y47{bottom:666.666667pt;}
.y154{bottom:669.333333pt;}
.y6a{bottom:670.666667pt;}
.y8a{bottom:672.000000pt;}
.y1e{bottom:674.666667pt;}
.y16c{bottom:676.000000pt;}
.yda{bottom:677.333333pt;}
.y132{bottom:681.333333pt;}
.y46{bottom:684.000000pt;}
.y119{bottom:685.333333pt;}
.y153{bottom:686.666667pt;}
.y89{bottom:688.000000pt;}
.y69{bottom:689.333333pt;}
.y160{bottom:692.000000pt;}
.y1d{bottom:693.333333pt;}
.y131{bottom:698.666667pt;}
.yee{bottom:701.333333pt;}
.y45{bottom:702.666667pt;}
.yc3{bottom:704.000000pt;}
.y68{bottom:705.333333pt;}
.y125{bottom:706.666667pt;}
.y15f{bottom:708.000000pt;}
.y1c{bottom:709.333333pt;}
.yd9{bottom:710.666667pt;}
.y130{bottom:716.000000pt;}
.yed{bottom:717.333333pt;}
.y44{bottom:720.000000pt;}
.yc2{bottom:721.333333pt;}
.y67{bottom:722.666667pt;}
.y124{bottom:724.000000pt;}
.y1b{bottom:726.666667pt;}
.ya2{bottom:728.000000pt;}
.yd8{bottom:729.333333pt;}
.y12f{bottom:733.333333pt;}
.yec{bottom:734.666667pt;}
.y147{bottom:737.333333pt;}
.yc1{bottom:738.666667pt;}
.y43{bottom:740.000000pt;}
.y123{bottom:741.333333pt;}
.y66{bottom:742.666667pt;}
.y1a{bottom:744.000000pt;}
.yd7{bottom:745.333333pt;}
.y16b{bottom:746.666667pt;}
.y12e{bottom:749.333333pt;}
.y2{bottom:752.000000pt;}
.y146{bottom:754.666667pt;}
.yc0{bottom:756.000000pt;}
.y42{bottom:757.333333pt;}
.y88{bottom:758.666667pt;}
.y65{bottom:760.000000pt;}
.y19{bottom:761.333333pt;}
.yd6{bottom:762.666667pt;}
.y12d{bottom:781.333333pt;}
.y1{bottom:782.666667pt;}
.y144{bottom:784.000000pt;}
.y145{bottom:785.333333pt;}
.y41{bottom:786.666667pt;}
.y40{bottom:788.000000pt;}
.y87{bottom:789.333333pt;}
.y64{bottom:790.666667pt;}
.y18{bottom:792.000000pt;}
.yd5{bottom:793.333333pt;}
.h7{height:38.937500pt;}
.h5{height:50.062500pt;}
.h4{height:55.625000pt;}
.h2{height:61.187500pt;}
.h3{height:66.750000pt;}
.h6{height:72.312500pt;}
.h1{height:77.875000pt;}
.h0{height:853.333333pt;}
.w0{width:604.000000pt;}
.x0{left:0.000000pt;}
.x14b{left:70.666667pt;}
.x136{left:72.000000pt;}
.x137{left:73.333333pt;}
.x139{left:74.666667pt;}
.x13f{left:76.000000pt;}
.x112{left:77.333333pt;}
.xfd{left:78.666667pt;}
.x53{left:80.000000pt;}
.x1d{left:81.333333pt;}
.x35{left:82.666667pt;}
.x150{left:84.000000pt;}
.x14f{left:85.333333pt;}
.x152{left:88.000000pt;}
.x13e{left:89.333333pt;}
.x157{left:90.666667pt;}
.x14e{left:92.000000pt;}
.x14d{left:93.333333pt;}
.x1e{left:94.666667pt;}
.x1{left:96.000000pt;}
.x140{left:97.333333pt;}
.x13a{left:98.666667pt;}
.x11f{left:100.000000pt;}
.x10d{left:101.333333pt;}
.x14{left:102.666667pt;}
.x4c{left:104.000000pt;}
.x7b{left:105.333333pt;}
.x71{left:106.666667pt;}
.x14c{left:108.000000pt;}
.x148{left:109.333333pt;}
.x44{left:110.666667pt;}
.x147{left:112.000000pt;}
.x54{left:113.333333pt;}
.x151{left:114.666667pt;}
.xfe{left:116.000000pt;}
.x25{left:117.333333pt;}
.x107{left:118.666667pt;}
.x6{left:120.000000pt;}
.x15{left:121.333333pt;}
.x4d{left:122.666667pt;}
.x36{left:124.000000pt;}
.x13c{left:125.333333pt;}
.x2{left:126.666667pt;}
.x102{left:128.000000pt;}
.x84{left:129.333333pt;}
.x3e{left:130.666667pt;}
.x45{left:132.000000pt;}
.x117{left:133.333333pt;}
.x6c{left:134.666667pt;}
.x13b{left:136.000000pt;}
.x7f{left:137.333333pt;}
.x115{left:138.666667pt;}
.x64{left:140.000000pt;}
.x7c{left:141.333333pt;}
.x101{left:142.666667pt;}
.x37{left:144.000000pt;}
.x55{left:145.333333pt;}
.x7{left:146.666667pt;}
.x4b{left:148.000000pt;}
.x11d{left:149.333333pt;}
.x120{left:150.666667pt;}
.x1f{left:152.000000pt;}
.xe{left:153.333333pt;}
.x6d{left:154.666667pt;}
.xaf{left:156.000000pt;}
.x86{left:157.333333pt;}
.x5c{left:158.666667pt;}
.x26{left:160.000000pt;}
.x2e{left:161.333333pt;}
.x65{left:162.666667pt;}
.x13d{left:164.000000pt;}
.x9b{left:165.333333pt;}
.xdb{left:166.666667pt;}
.xa1{left:168.000000pt;}
.xa0{left:169.333333pt;}
.x126{left:170.666667pt;}
.xe3{left:172.000000pt;}
.x12f{left:173.333333pt;}
.xb6{left:174.666667pt;}
.x72{left:176.000000pt;}
.x27{left:177.333333pt;}
.xf{left:178.666667pt;}
.x6e{left:180.000000pt;}
.xd5{left:181.333333pt;}
.x66{left:182.666667pt;}
.xdf{left:184.000000pt;}
.x60{left:185.333333pt;}
.xff{left:186.666667pt;}
.x4e{left:188.000000pt;}
.x134{left:189.333333pt;}
.x3f{left:190.666667pt;}
.x16{left:192.000000pt;}
.xcf{left:193.333333pt;}
.xf2{left:194.666667pt;}
.x110{left:196.000000pt;}
.x122{left:197.333333pt;}
.xdc{left:198.666667pt;}
.xca{left:200.000000pt;}
.x111{left:201.333333pt;}
.x56{left:202.666667pt;}
.x28{left:204.000000pt;}
.x38{left:205.333333pt;}
.xa4{left:206.666667pt;}
.xcd{left:208.000000pt;}
.xb7{left:209.333333pt;}
.x4f{left:210.666667pt;}
.xc4{left:212.000000pt;}
.xa9{left:213.333333pt;}
.x3{left:214.666667pt;}
.x46{left:216.000000pt;}
.x39{left:217.333333pt;}
.xd8{left:218.666667pt;}
.x57{left:220.000000pt;}
.xbd{left:221.333333pt;}
.x40{left:222.666667pt;}
.xa5{left:224.000000pt;}
.x7d{left:225.333333pt;}
.x5d{left:226.666667pt;}
.x119{left:228.000000pt;}
.x11a{left:229.333333pt;}
.x103{left:230.666667pt;}
.x8c{left:232.000000pt;}
.x127{left:233.333333pt;}
.xdd{left:234.666667pt;}
.x95{left:236.000000pt;}
.xb0{left:237.333333pt;}
.x58{left:238.666667pt;}
.x7e{left:240.000000pt;}
.x9c{left:241.333333pt;}
.x50{left:242.666667pt;}
.xbe{left:244.000000pt;}
.x78{left:245.333333pt;}
.x8{left:246.666667pt;}
.x87{left:248.000000pt;}
.xaa{left:249.333333pt;}
.x6f{left:250.666667pt;}
.x61{left:252.000000pt;}
.x4{left:253.333333pt;}
.x10{left:254.666667pt;}
.xd6{left:256.000000pt;}
.x3a{left:257.333333pt;}
.xb8{left:258.666667pt;}
.x96{left:260.000000pt;}
.x5e{left:261.333333pt;}
.x79{left:262.666667pt;}
.x113{left:264.000000pt;}
.x17{left:265.333333pt;}
.x29{left:266.666667pt;}
.xfc{left:268.000000pt;}
.x67{left:269.333333pt;}
.x51{left:270.666667pt;}
.xd0{left:272.000000pt;}
.xd9{left:273.333333pt;}
.xab{left:274.666667pt;}
.xb{left:276.000000pt;}
.x9{left:277.333333pt;}
.xbf{left:278.666667pt;}
.x11{left:280.000000pt;}
.x8d{left:281.333333pt;}
.x2f{left:282.666667pt;}
.x88{left:284.000000pt;}
.xce{left:285.333333pt;}
.x12b{left:286.666667pt;}
.xb1{left:288.000000pt;}
.x9d{left:289.333333pt;}
.x41{left:290.666667pt;}
.x59{left:292.000000pt;}
.xac{left:293.333333pt;}
.x8e{left:294.666667pt;}
.x2a{left:296.000000pt;}
.x73{left:297.333333pt;}
.x68{left:298.666667pt;}
.xf3{left:300.000000pt;}
.xc{left:301.333333pt;}
.xf7{left:302.666667pt;}
.x100{left:304.000000pt;}
.xa{left:305.333333pt;}
.xc1{left:306.666667pt;}
.x47{left:308.000000pt;}
.xe9{left:309.333333pt;}
.x5a{left:310.666667pt;}
.x74{left:312.000000pt;}
.x12{left:313.333333pt;}
.x18{left:314.666667pt;}
.x69{left:316.000000pt;}
.x121{left:317.333333pt;}
.xfa{left:318.666667pt;}
.xc5{left:320.000000pt;}
.x5f{left:321.333333pt;}
.x30{left:322.666667pt;}
.xec{left:324.000000pt;}
.x48{left:325.333333pt;}
.x11c{left:326.666667pt;}
.x10e{left:328.000000pt;}
.x19{left:329.333333pt;}
.x62{left:330.666667pt;}
.xe4{left:332.000000pt;}
.x81{left:333.333333pt;}
.x70{left:334.666667pt;}
.x12c{left:336.000000pt;}
.x3b{left:337.333333pt;}
.x89{left:338.666667pt;}
.xc2{left:340.000000pt;}
.x10a{left:341.333333pt;}
.x130{left:342.666667pt;}
.xb2{left:344.000000pt;}
.x82{left:345.333333pt;}
.x124{left:346.666667pt;}
.x5{left:348.000000pt;}
.xd{left:349.333333pt;}
.xea{left:350.666667pt;}
.x114{left:352.000000pt;}
.x42{left:353.333333pt;}
.x97{left:354.666667pt;}
.x13{left:356.000000pt;}
.x8f{left:357.333333pt;}
.xcb{left:358.666667pt;}
.xd1{left:360.000000pt;}
.x7a{left:361.333333pt;}
.x75{left:362.666667pt;}
.x10b{left:364.000000pt;}
.xe5{left:365.333333pt;}
.xb9{left:366.666667pt;}
.x63{left:368.000000pt;}
.x104{left:369.333333pt;}
.x12e{left:370.666667pt;}
.x11e{left:372.000000pt;}
.x20{left:373.333333pt;}
.x109{left:374.666667pt;}
.xd2{left:376.000000pt;}
.x31{left:377.333333pt;}
.x90{left:378.666667pt;}
.xa6{left:380.000000pt;}
.x2b{left:381.333333pt;}
.x1a{left:382.666667pt;}
.xf4{left:384.000000pt;}
.xee{left:385.333333pt;}
.x5b{left:386.666667pt;}
.xc6{left:388.000000pt;}
.x49{left:389.333333pt;}
.xba{left:390.666667pt;}
.x32{left:392.000000pt;}
.x21{left:393.333333pt;}
.x118{left:394.666667pt;}
.x105{left:396.000000pt;}
.x92{left:397.333333pt;}
.x52{left:398.666667pt;}
.x98{left:400.000000pt;}
.x10c{left:401.333333pt;}
.x8a{left:402.666667pt;}
.x1b{left:404.000000pt;}
.xeb{left:405.333333pt;}
.xe6{left:406.666667pt;}
.x83{left:408.000000pt;}
.x43{left:409.333333pt;}
.x9e{left:410.666667pt;}
.xc7{left:412.000000pt;}
.x3c{left:413.333333pt;}
.xe0{left:414.666667pt;}
.xf1{left:416.000000pt;}
.x108{left:417.333333pt;}
.x116{left:418.666667pt;}
.x2c{left:420.000000pt;}
.x93{left:421.333333pt;}
.xa7{left:422.666667pt;}
.xad{left:424.000000pt;}
.x22{left:425.333333pt;}
.x33{left:426.666667pt;}
.xd3{left:428.000000pt;}
.x80{left:429.333333pt;}
.xe1{left:430.666667pt;}
.xc8{left:432.000000pt;}
.x11b{left:433.333333pt;}
.x6a{left:434.666667pt;}
.x106{left:436.000000pt;}
.xf6{left:437.333333pt;}
.x76{left:438.666667pt;}
.x23{left:440.000000pt;}
.x2d{left:441.333333pt;}
.xef{left:442.666667pt;}
.xe7{left:444.000000pt;}
.x99{left:445.333333pt;}
.x34{left:446.666667pt;}
.xd4{left:448.000000pt;}
.xa2{left:449.333333pt;}
.x138{left:450.666667pt;}
.xa8{left:452.000000pt;}
.x77{left:453.333333pt;}
.x3d{left:454.666667pt;}
.xd7{left:456.000000pt;}
.x10f{left:457.333333pt;}
.x4a{left:458.666667pt;}
.x131{left:460.000000pt;}
.xcc{left:461.333333pt;}
.x145{left:462.666667pt;}
.x6b{left:464.000000pt;}
.xe2{left:465.333333pt;}
.x1c{left:466.666667pt;}
.x12d{left:468.000000pt;}
.xb3{left:469.333333pt;}
.x9a{left:470.666667pt;}
.x9f{left:472.000000pt;}
.x24{left:473.454080pt;}
.x135{left:474.666667pt;}
.x129{left:476.000000pt;}
.xf8{left:477.333333pt;}
.x133{left:478.666667pt;}
.x12a{left:480.000000pt;}
.x94{left:481.333333pt;}
.xc0{left:482.666667pt;}
.x91{left:484.000000pt;}
.xf9{left:485.333333pt;}
.x132{left:486.666667pt;}
.x146{left:488.000000pt;}
.x153{left:489.333333pt;}
.xda{left:490.666667pt;}
.xfb{left:492.000000pt;}
.xbb{left:493.333333pt;}
.x8b{left:494.666667pt;}
.x155{left:496.000000pt;}
.xc9{left:497.333333pt;}
.xf0{left:498.666667pt;}
.xae{left:500.000000pt;}
.xb4{left:501.333333pt;}
.xe8{left:502.666667pt;}
.x128{left:504.000000pt;}
.x123{left:505.333333pt;}
.xf5{left:506.666667pt;}
.xed{left:508.000000pt;}
.x85{left:509.333333pt;}
.x141{left:510.666667pt;}
.xa3{left:512.000000pt;}
.x14a{left:513.333333pt;}
.x143{left:514.666667pt;}
.xc3{left:516.000000pt;}
.x158{left:517.333333pt;}
.x149{left:518.403200pt;}
.x125{left:519.757267pt;}
.xde{left:521.279307pt;}
.xb5{left:522.326613pt;}
.xbc{left:523.548133pt;}
.x142{left:524.881467pt;}
.x144{left:526.129533pt;}
.x159{left:527.294907pt;}
.x154{left:528.635067pt;}
.x156{left:530.370200pt;}
}




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