
    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_1da6165852b9cea8e6cafa1a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m5d{transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m31{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m49{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m47{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);}
.m21{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);}
.m54{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);}
.m4d{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);}
.m4b{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m48{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);}
.me{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);}
.m3d{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);}
.m30{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);}
.m37{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);}
.m1a{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);}
.m18{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);}
.m20{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);}
.m10{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);}
.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);}
.m7{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);}
.ma{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);}
.m5{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);}
.mf{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);}
.m9{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);}
.m13{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);}
.m14{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);}
.md{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);}
.m4{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);}
.m8{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);}
.mb{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);}
.m15{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);}
.m2c{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);}
.m1f{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);}
.m2d{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);}
.m12{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);}
.mc{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);}
.m1d{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);}
.m1c{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);}
.m1e{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);}
.m35{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);}
.m17{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);}
.m16{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);}
.m27{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);}
.m2a{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);}
.m29{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);}
.m2b{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);}
.m26{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);}
.m1{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);}
.m34{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);}
.m24{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);}
.m3{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);}
.m2f{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);}
.m42{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);}
.m36{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);}
.m43{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);}
.m25{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);}
.m3f{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);}
.m33{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);}
.m39{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);}
.m2{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);}
.m32{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);}
.m23{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);}
.m3a{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);}
.m0{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);}
.m5e{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);}
.m50{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);}
.m44{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);}
.m51{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);}
.m22{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);}
.m38{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);}
.m40{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);}
.m56{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);}
.m4a{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);}
.m62{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(2.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.452500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(2.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.655000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(2.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.810000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:9.909677px;}
.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;}
}
.ws4{word-spacing:-36.360000px;}
.ws5{word-spacing:-36.000000px;}
.ws8{word-spacing:-32.400000px;}
.ws9{word-spacing:-30.600000px;}
.ws3{word-spacing:-28.800000px;}
.ws0{word-spacing:-15.428571px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:8.571429px;}
.ws2{word-spacing:30.192000px;}
.ws7{word-spacing:56.000000px;}
._d{width:1.674000px;}
._e{width:2.712000px;}
._a{width:4.860759px;}
._1{width:8.016000px;}
._4{width:9.420000px;}
._5{width:11.100000px;}
._3{width:13.479452px;}
._2{width:15.428571px;}
._b{width:17.513514px;}
._c{width:27.756000px;}
._8{width:37.680000px;}
._6{width:44.615385px;}
._7{width:59.013699px;}
._9{width:63.000000px;}
._0{width:67.594937px;}
.fc0{color:transparent;}
.fs8{font-size:46.500000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:69.000000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:42.000000px;}
.y136{bottom:43.500000px;}
.y190{bottom:49.500000px;}
.y1b4{bottom:52.500000px;}
.y162{bottom:54.000000px;}
.y1c0{bottom:55.500000px;}
.yb2{bottom:57.000000px;}
.y135{bottom:58.500000px;}
.y4d{bottom:60.000000px;}
.y19a{bottom:61.500000px;}
.y199{bottom:63.000000px;}
.y18f{bottom:64.500000px;}
.y1f6{bottom:66.000000px;}
.y1dd{bottom:67.500000px;}
.y161{bottom:69.000000px;}
.y1b3{bottom:70.500000px;}
.yb1{bottom:72.000000px;}
.y134{bottom:73.500000px;}
.y1f5{bottom:78.000000px;}
.y18e{bottom:79.500000px;}
.y1dc{bottom:81.000000px;}
.y1e0{bottom:82.500000px;}
.y160{bottom:84.000000px;}
.ycf{bottom:85.500000px;}
.yb0{bottom:87.000000px;}
.y4b{bottom:88.500000px;}
.y4c{bottom:90.000000px;}
.y7a{bottom:91.500000px;}
.y198{bottom:93.000000px;}
.y18d{bottom:94.500000px;}
.y1db{bottom:97.500000px;}
.y15f{bottom:99.000000px;}
.y4a{bottom:100.500000px;}
.yaf{bottom:102.000000px;}
.y133{bottom:103.500000px;}
.y1f4{bottom:105.000000px;}
.y79{bottom:106.500000px;}
.y197{bottom:108.000000px;}
.y18c{bottom:109.500000px;}
.y1da{bottom:112.500000px;}
.y15e{bottom:114.000000px;}
.y105{bottom:115.500000px;}
.yae{bottom:117.000000px;}
.y132{bottom:118.500000px;}
.y49{bottom:120.000000px;}
.y1e1{bottom:121.500000px;}
.y78{bottom:123.000000px;}
.y18b{bottom:124.500000px;}
.y1d9{bottom:127.500000px;}
.y15d{bottom:129.000000px;}
.y1bf{bottom:130.500000px;}
.yad{bottom:132.000000px;}
.y47{bottom:133.500000px;}
.y48{bottom:135.000000px;}
.y77{bottom:138.000000px;}
.y18a{bottom:139.500000px;}
.y1b2{bottom:142.500000px;}
.y15c{bottom:144.000000px;}
.y104{bottom:145.500000px;}
.yac{bottom:147.000000px;}
.yce{bottom:148.500000px;}
.y46{bottom:150.000000px;}
.y196{bottom:151.500000px;}
.y76{bottom:153.000000px;}
.y189{bottom:154.500000px;}
.y1d8{bottom:157.500000px;}
.y15b{bottom:159.000000px;}
.y103{bottom:160.500000px;}
.yab{bottom:162.000000px;}
.ycd{bottom:163.500000px;}
.y45{bottom:165.000000px;}
.y1a7{bottom:166.500000px;}
.y75{bottom:168.000000px;}
.y188{bottom:169.500000px;}
.y1ed{bottom:171.000000px;}
.y1d7{bottom:172.500000px;}
.y15a{bottom:174.000000px;}
.y102{bottom:175.500000px;}
.yaa{bottom:177.000000px;}
.ycc{bottom:178.500000px;}
.ycb{bottom:180.000000px;}
.y43{bottom:181.500000px;}
.y44{bottom:183.000000px;}
.y187{bottom:184.500000px;}
.y1d6{bottom:187.500000px;}
.y159{bottom:189.000000px;}
.y101{bottom:190.500000px;}
.ya9{bottom:192.000000px;}
.y131{bottom:193.500000px;}
.yca{bottom:195.000000px;}
.y42{bottom:196.500000px;}
.y74{bottom:198.000000px;}
.y186{bottom:199.500000px;}
.y1df{bottom:201.000000px;}
.y1d5{bottom:202.500000px;}
.y158{bottom:204.000000px;}
.yf5{bottom:205.500000px;}
.ya8{bottom:207.000000px;}
.y130{bottom:208.500000px;}
.yc9{bottom:210.000000px;}
.y40{bottom:211.500000px;}
.y41{bottom:213.000000px;}
.y195{bottom:214.500000px;}
.y185{bottom:216.000000px;}
.y1d4{bottom:217.500000px;}
.y157{bottom:219.000000px;}
.yf4{bottom:220.500000px;}
.y1ec{bottom:222.000000px;}
.ya7{bottom:223.500000px;}
.yc8{bottom:225.000000px;}
.y3f{bottom:226.500000px;}
.y73{bottom:229.500000px;}
.y184{bottom:231.000000px;}
.y1d3{bottom:232.500000px;}
.y156{bottom:234.000000px;}
.y100{bottom:235.500000px;}
.yf3{bottom:237.000000px;}
.ya6{bottom:238.500000px;}
.y12f{bottom:240.000000px;}
.y3e{bottom:241.500000px;}
.y1be{bottom:243.000000px;}
.y72{bottom:244.500000px;}
.y183{bottom:246.000000px;}
.y1de{bottom:247.500000px;}
.y1d2{bottom:249.000000px;}
.yf2{bottom:250.500000px;}
.y1eb{bottom:252.000000px;}
.ya5{bottom:253.500000px;}
.y12e{bottom:255.000000px;}
.y3c{bottom:256.500000px;}
.y3d{bottom:258.000000px;}
.y71{bottom:259.500000px;}
.y17d{bottom:261.000000px;}
.y1d1{bottom:262.500000px;}
.y155{bottom:264.000000px;}
.y154{bottom:265.500000px;}
.yf1{bottom:267.000000px;}
.ya4{bottom:268.500000px;}
.y12d{bottom:270.000000px;}
.y3a{bottom:271.500000px;}
.y3b{bottom:273.000000px;}
.y70{bottom:274.500000px;}
.y17c{bottom:276.000000px;}
.y1b1{bottom:277.500000px;}
.y1d0{bottom:279.000000px;}
.y153{bottom:280.500000px;}
.yf0{bottom:282.000000px;}
.ya3{bottom:283.500000px;}
.y12c{bottom:285.000000px;}
.y39{bottom:286.500000px;}
.yc7{bottom:288.000000px;}
.y6f{bottom:289.500000px;}
.y182{bottom:291.000000px;}
.y17b{bottom:292.500000px;}
.y1cf{bottom:294.000000px;}
.y152{bottom:295.500000px;}
.yef{bottom:297.000000px;}
.ya2{bottom:298.500000px;}
.y12b{bottom:300.000000px;}
.y38{bottom:301.500000px;}
.yc6{bottom:303.000000px;}
.y6e{bottom:306.000000px;}
.y17a{bottom:307.500000px;}
.y1ce{bottom:309.000000px;}
.y151{bottom:310.500000px;}
.yee{bottom:312.000000px;}
.ya1{bottom:313.500000px;}
.y12a{bottom:315.000000px;}
.y1ab{bottom:316.500000px;}
.y37{bottom:318.000000px;}
.y1bd{bottom:319.500000px;}
.y6d{bottom:321.000000px;}
.y179{bottom:322.500000px;}
.y1b0{bottom:324.000000px;}
.y150{bottom:325.500000px;}
.yed{bottom:327.000000px;}
.ya0{bottom:328.500000px;}
.y129{bottom:330.000000px;}
.y35{bottom:333.000000px;}
.y36{bottom:334.500000px;}
.y181{bottom:336.000000px;}
.y178{bottom:337.500000px;}
.y6c{bottom:339.000000px;}
.y14f{bottom:340.500000px;}
.yec{bottom:342.000000px;}
.y1ea{bottom:343.500000px;}
.y9f{bottom:345.000000px;}
.y128{bottom:346.500000px;}
.y32{bottom:348.000000px;}
.y33{bottom:349.500000px;}
.y34{bottom:351.000000px;}
.y177{bottom:352.500000px;}
.y6b{bottom:354.000000px;}
.y1cd{bottom:355.500000px;}
.yff{bottom:357.000000px;}
.yeb{bottom:358.500000px;}
.y9e{bottom:360.000000px;}
.y127{bottom:361.500000px;}
.y31{bottom:364.500000px;}
.y146{bottom:366.000000px;}
.y176{bottom:367.500000px;}
.y6a{bottom:369.000000px;}
.y1cc{bottom:370.500000px;}
.y14e{bottom:372.000000px;}
.yea{bottom:373.500000px;}
.y9d{bottom:375.000000px;}
.y126{bottom:376.500000px;}
.y1aa{bottom:379.500000px;}
.y30{bottom:381.000000px;}
.y1a6{bottom:382.500000px;}
.y69{bottom:384.000000px;}
.y1cb{bottom:385.500000px;}
.yc5{bottom:387.000000px;}
.yc4{bottom:388.500000px;}
.y9c{bottom:390.000000px;}
.y125{bottom:391.500000px;}
.y2e{bottom:394.500000px;}
.y2f{bottom:396.000000px;}
.y1a5{bottom:397.500000px;}
.y68{bottom:399.000000px;}
.y1ca{bottom:400.500000px;}
.y14d{bottom:402.000000px;}
.ye9{bottom:403.500000px;}
.y9b{bottom:405.000000px;}
.y124{bottom:406.500000px;}
.y2d{bottom:411.000000px;}
.yc3{bottom:412.500000px;}
.y67{bottom:414.000000px;}
.y1af{bottom:415.500000px;}
.y14c{bottom:417.000000px;}
.ye8{bottom:418.500000px;}
.y194{bottom:420.000000px;}
.y9a{bottom:421.500000px;}
.y2a{bottom:424.500000px;}
.y2b{bottom:426.000000px;}
.y2c{bottom:427.500000px;}
.y145{bottom:429.000000px;}
.y180{bottom:430.500000px;}
.y66{bottom:432.000000px;}
.ye7{bottom:433.500000px;}
.y99{bottom:435.000000px;}
.y98{bottom:436.500000px;}
.y123{bottom:438.000000px;}
.y27{bottom:439.500000px;}
.y28{bottom:441.000000px;}
.y29{bottom:442.500000px;}
.y144{bottom:444.000000px;}
.y175{bottom:445.500000px;}
.y65{bottom:447.000000px;}
.ye6{bottom:448.500000px;}
.y1e9{bottom:450.000000px;}
.y97{bottom:451.500000px;}
.y122{bottom:453.000000px;}
.y26{bottom:456.000000px;}
.y1a4{bottom:457.500000px;}
.yc2{bottom:459.000000px;}
.y174{bottom:460.500000px;}
.y64{bottom:462.000000px;}
.yfe{bottom:463.500000px;}
.ye5{bottom:465.000000px;}
.y96{bottom:466.500000px;}
.y121{bottom:468.000000px;}
.y25{bottom:471.000000px;}
.y1bc{bottom:472.500000px;}
.yc1{bottom:474.000000px;}
.y173{bottom:475.500000px;}
.y63{bottom:477.000000px;}
.yfd{bottom:478.500000px;}
.ye4{bottom:480.000000px;}
.y95{bottom:481.500000px;}
.y120{bottom:483.000000px;}
.y23{bottom:486.000000px;}
.y24{bottom:487.500000px;}
.yc0{bottom:489.000000px;}
.y143{bottom:490.500000px;}
.y1c9{bottom:492.000000px;}
.y14b{bottom:493.500000px;}
.ye3{bottom:495.000000px;}
.y62{bottom:496.500000px;}
.y11f{bottom:498.000000px;}
.y1f3{bottom:499.500000px;}
.y1f2{bottom:501.000000px;}
.y1ae{bottom:502.500000px;}
.ybf{bottom:504.000000px;}
.y142{bottom:505.500000px;}
.y22{bottom:507.000000px;}
.y14a{bottom:508.500000px;}
.ye2{bottom:510.000000px;}
.y94{bottom:511.500000px;}
.y11e{bottom:513.000000px;}
.y1a3{bottom:517.500000px;}
.y1a9{bottom:519.000000px;}
.ybe{bottom:520.500000px;}
.y61{bottom:522.000000px;}
.y149{bottom:523.500000px;}
.ye1{bottom:525.000000px;}
.y93{bottom:526.500000px;}
.y92{bottom:528.000000px;}
.y1c3{bottom:529.500000px;}
.y20{bottom:531.000000px;}
.y21{bottom:532.500000px;}
.ybd{bottom:534.000000px;}
.ybc{bottom:535.500000px;}
.y60{bottom:537.000000px;}
.y17f{bottom:538.500000px;}
.yfc{bottom:540.000000px;}
.y193{bottom:541.500000px;}
.y91{bottom:543.000000px;}
.y11d{bottom:544.500000px;}
.y1f{bottom:546.000000px;}
.y1a2{bottom:547.500000px;}
.y1a8{bottom:549.000000px;}
.ybb{bottom:550.500000px;}
.y5f{bottom:552.000000px;}
.y17e{bottom:553.500000px;}
.yfa{bottom:555.000000px;}
.yfb{bottom:556.500000px;}
.y90{bottom:558.000000px;}
.y11c{bottom:559.500000px;}
.y1e{bottom:561.000000px;}
.y1a0{bottom:562.500000px;}
.y1a1{bottom:564.000000px;}
.y141{bottom:565.500000px;}
.y5e{bottom:567.000000px;}
.yba{bottom:568.500000px;}
.y148{bottom:570.000000px;}
.yf9{bottom:571.500000px;}
.y8f{bottom:573.000000px;}
.y11b{bottom:574.500000px;}
.y1d{bottom:576.000000px;}
.y1c2{bottom:577.500000px;}
.y19f{bottom:579.000000px;}
.y140{bottom:580.500000px;}
.yb9{bottom:582.000000px;}
.y5d{bottom:583.500000px;}
.ye0{bottom:585.000000px;}
.yf8{bottom:586.500000px;}
.y8e{bottom:589.500000px;}
.y8d{bottom:591.000000px;}
.y1c{bottom:592.500000px;}
.y19e{bottom:594.000000px;}
.y13f{bottom:595.500000px;}
.yb8{bottom:597.000000px;}
.y5c{bottom:598.500000px;}
.ydf{bottom:600.000000px;}
.yf7{bottom:601.500000px;}
.y192{bottom:603.000000px;}
.y11a{bottom:604.500000px;}
.y1a{bottom:606.000000px;}
.y1b{bottom:607.500000px;}
.y172{bottom:609.000000px;}
.y1f1{bottom:610.500000px;}
.yb7{bottom:612.000000px;}
.y5b{bottom:613.500000px;}
.y8c{bottom:615.000000px;}
.y147{bottom:616.500000px;}
.y119{bottom:619.500000px;}
.yf6{bottom:621.000000px;}
.y18{bottom:622.500000px;}
.y19{bottom:624.000000px;}
.y13e{bottom:627.000000px;}
.y5a{bottom:628.500000px;}
.y8b{bottom:630.000000px;}
.y1e8{bottom:631.500000px;}
.y1c8{bottom:633.000000px;}
.y1c7{bottom:634.500000px;}
.y118{bottom:636.000000px;}
.y16{bottom:637.500000px;}
.y17{bottom:639.000000px;}
.y1bb{bottom:640.500000px;}
.y13d{bottom:642.000000px;}
.y59{bottom:643.500000px;}
.y8a{bottom:645.000000px;}
.yde{bottom:646.500000px;}
.y117{bottom:651.000000px;}
.y15{bottom:652.500000px;}
.y171{bottom:654.000000px;}
.y19d{bottom:655.500000px;}
.y13c{bottom:657.000000px;}
.y58{bottom:658.500000px;}
.y89{bottom:660.000000px;}
.ydd{bottom:661.500000px;}
.y1e7{bottom:663.000000px;}
.y116{bottom:664.500000px;}
.y12{bottom:666.000000px;}
.y13{bottom:667.500000px;}
.y14{bottom:669.000000px;}
.y1ba{bottom:670.500000px;}
.y19c{bottom:672.000000px;}
.y57{bottom:673.500000px;}
.yb6{bottom:675.000000px;}
.y88{bottom:676.500000px;}
.y1e6{bottom:678.000000px;}
.y115{bottom:681.000000px;}
.y11{bottom:682.500000px;}
.y170{bottom:684.000000px;}
.y16f{bottom:685.500000px;}
.y19b{bottom:687.000000px;}
.y13b{bottom:688.500000px;}
.y56{bottom:690.000000px;}
.y87{bottom:691.500000px;}
.y1e5{bottom:693.000000px;}
.y1f0{bottom:694.500000px;}
.y114{bottom:696.000000px;}
.y10{bottom:699.000000px;}
.y16e{bottom:700.500000px;}
.y13a{bottom:703.500000px;}
.y55{bottom:705.000000px;}
.y86{bottom:706.500000px;}
.ydc{bottom:708.000000px;}
.y112{bottom:711.000000px;}
.y113{bottom:712.500000px;}
.yf{bottom:714.000000px;}
.y16d{bottom:715.500000px;}
.y1b9{bottom:717.000000px;}
.y139{bottom:718.500000px;}
.y54{bottom:720.000000px;}
.y85{bottom:721.500000px;}
.ydb{bottom:723.000000px;}
.y1fc{bottom:724.500000px;}
.y111{bottom:727.500000px;}
.ye{bottom:729.000000px;}
.y16c{bottom:730.500000px;}
.y1b8{bottom:732.000000px;}
.y138{bottom:733.500000px;}
.y53{bottom:735.000000px;}
.y84{bottom:736.500000px;}
.yda{bottom:738.000000px;}
.y110{bottom:742.500000px;}
.yd{bottom:744.000000px;}
.y16b{bottom:745.500000px;}
.y1b7{bottom:747.000000px;}
.y137{bottom:748.500000px;}
.y52{bottom:750.000000px;}
.y83{bottom:751.500000px;}
.yd9{bottom:753.000000px;}
.y1fa{bottom:754.500000px;}
.y1ef{bottom:756.000000px;}
.y10f{bottom:757.500000px;}
.yb{bottom:759.000000px;}
.yc{bottom:760.500000px;}
.y16a{bottom:762.000000px;}
.y51{bottom:765.000000px;}
.y82{bottom:766.500000px;}
.yd8{bottom:768.000000px;}
.y1e4{bottom:769.500000px;}
.y9{bottom:774.000000px;}
.ya{bottom:775.500000px;}
.y169{bottom:777.000000px;}
.y1f9{bottom:778.500000px;}
.y1c6{bottom:780.000000px;}
.y50{bottom:781.500000px;}
.yd7{bottom:783.000000px;}
.y1e3{bottom:784.500000px;}
.y7{bottom:789.000000px;}
.y8{bottom:790.500000px;}
.y168{bottom:792.000000px;}
.y1c1{bottom:793.500000px;}
.y1c5{bottom:795.000000px;}
.y4f{bottom:796.500000px;}
.y81{bottom:798.000000px;}
.yd6{bottom:799.500000px;}
.y1ee{bottom:802.500000px;}
.y10d{bottom:804.000000px;}
.y10e{bottom:805.500000px;}
.y167{bottom:807.000000px;}
.y166{bottom:808.500000px;}
.y6{bottom:810.000000px;}
.y4e{bottom:811.500000px;}
.y80{bottom:813.000000px;}
.yd5{bottom:814.500000px;}
.y1f8{bottom:816.000000px;}
.y10c{bottom:820.500000px;}
.y165{bottom:822.000000px;}
.y1b6{bottom:823.500000px;}
.yb5{bottom:826.500000px;}
.y7f{bottom:828.000000px;}
.yd4{bottom:829.500000px;}
.y10b{bottom:835.500000px;}
.y164{bottom:837.000000px;}
.y1b5{bottom:838.500000px;}
.y1c4{bottom:840.000000px;}
.yb4{bottom:841.500000px;}
.y7e{bottom:843.000000px;}
.y4{bottom:844.500000px;}
.y5{bottom:846.000000px;}
.y1fb{bottom:847.500000px;}
.y1ac{bottom:850.500000px;}
.y1ad{bottom:852.000000px;}
.y163{bottom:853.500000px;}
.y10a{bottom:855.000000px;}
.y191{bottom:856.500000px;}
.y7d{bottom:858.000000px;}
.yd3{bottom:859.500000px;}
.y1f7{bottom:862.500000px;}
.y2{bottom:864.000000px;}
.y3{bottom:865.500000px;}
.y108{bottom:870.000000px;}
.y109{bottom:871.500000px;}
.y7c{bottom:873.000000px;}
.yd2{bottom:874.500000px;}
.y1e2{bottom:876.000000px;}
.y1{bottom:901.500000px;}
.y106{bottom:903.000000px;}
.y107{bottom:904.500000px;}
.y7b{bottom:906.000000px;}
.yd0{bottom:907.500000px;}
.yd1{bottom:970.500000px;}
.hb{height:47.794673px;}
.h6{height:49.336436px;}
.h5{height:52.419963px;}
.h8{height:55.336436px;}
.ha{height:55.503491px;}
.h2{height:58.587018px;}
.h3{height:61.670545px;}
.h7{height:64.754072px;}
.h4{height:67.670545px;}
.h9{height:67.837600px;}
.h1{height:70.921127px;}
.h0{height:972.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x167{left:1.500000px;}
.x1{left:54.000000px;}
.xc{left:55.500000px;}
.x10{left:57.000000px;}
.xf{left:58.500000px;}
.x1f{left:60.000000px;}
.x22{left:61.500000px;}
.x31{left:63.000000px;}
.x36{left:64.500000px;}
.x8f{left:66.000000px;}
.x137{left:67.500000px;}
.x38{left:69.000000px;}
.x9{left:70.500000px;}
.x12{left:72.000000px;}
.x13{left:73.500000px;}
.x95{left:75.000000px;}
.x30{left:76.500000px;}
.x14{left:81.000000px;}
.xf6{left:82.500000px;}
.x60{left:84.000000px;}
.x138{left:85.500000px;}
.x94{left:87.000000px;}
.x139{left:88.500000px;}
.x23{left:90.000000px;}
.x108{left:93.000000px;}
.x109{left:94.500000px;}
.x177{left:96.000000px;}
.x145{left:97.500000px;}
.xdd{left:99.000000px;}
.xb0{left:100.500000px;}
.x15{left:103.500000px;}
.xcf{left:105.000000px;}
.x146{left:106.500000px;}
.x106{left:108.000000px;}
.xe2{left:109.500000px;}
.xf5{left:111.000000px;}
.x5d{left:112.500000px;}
.x61{left:114.000000px;}
.xa6{left:115.500000px;}
.x92{left:117.000000px;}
.xac{left:118.500000px;}
.x34{left:120.000000px;}
.x11b{left:121.500000px;}
.xe4{left:123.000000px;}
.x2b{left:124.500000px;}
.x149{left:126.000000px;}
.x11a{left:127.500000px;}
.x13e{left:129.000000px;}
.xb2{left:130.500000px;}
.xd0{left:133.500000px;}
.x63{left:135.000000px;}
.xa{left:136.500000px;}
.x2c{left:138.000000px;}
.xb1{left:139.500000px;}
.x93{left:141.000000px;}
.x2f{left:142.500000px;}
.x13d{left:144.000000px;}
.x168{left:145.500000px;}
.x14a{left:147.000000px;}
.x12c{left:150.000000px;}
.x13a{left:151.500000px;}
.xc9{left:153.000000px;}
.x37{left:154.500000px;}
.xa9{left:157.500000px;}
.xe0{left:159.000000px;}
.x88{left:160.500000px;}
.x6b{left:162.000000px;}
.x170{left:163.500000px;}
.xaa{left:165.000000px;}
.x107{left:166.500000px;}
.x16c{left:168.000000px;}
.x8{left:169.500000px;}
.x16{left:171.000000px;}
.x105{left:172.500000px;}
.xe3{left:174.000000px;}
.x12b{left:177.000000px;}
.x8c{left:178.500000px;}
.xa5{left:180.000000px;}
.x104{left:181.500000px;}
.x12e{left:183.000000px;}
.x175{left:184.500000px;}
.x176{left:187.500000px;}
.x57{left:189.000000px;}
.x20{left:190.500000px;}
.xa3{left:192.000000px;}
.xb{left:193.500000px;}
.xdc{left:195.000000px;}
.x96{left:196.500000px;}
.x129{left:198.000000px;}
.xc8{left:199.500000px;}
.x90{left:201.000000px;}
.x21{left:202.500000px;}
.x5f{left:204.000000px;}
.xae{left:205.500000px;}
.x1d{left:207.000000px;}
.x172{left:208.500000px;}
.x27{left:210.000000px;}
.x174{left:211.500000px;}
.xf9{left:213.000000px;}
.x62{left:214.500000px;}
.x169{left:216.000000px;}
.x6a{left:217.500000px;}
.x8a{left:220.500000px;}
.xcd{left:222.000000px;}
.xcc{left:223.500000px;}
.x16f{left:225.000000px;}
.x5{left:226.500000px;}
.x147{left:228.000000px;}
.x64{left:229.500000px;}
.x2d{left:231.000000px;}
.x5a{left:232.500000px;}
.x8d{left:234.000000px;}
.x12d{left:235.500000px;}
.xce{left:237.000000px;}
.x13f{left:240.000000px;}
.xde{left:241.500000px;}
.x85{left:243.000000px;}
.x58{left:244.500000px;}
.xc6{left:246.000000px;}
.x59{left:247.500000px;}
.x56{left:249.000000px;}
.x33{left:250.500000px;}
.xb4{left:252.000000px;}
.x17{left:253.500000px;}
.x11c{left:255.000000px;}
.xd{left:258.000000px;}
.xf7{left:259.500000px;}
.x5b{left:261.000000px;}
.x24{left:262.500000px;}
.x8e{left:264.000000px;}
.x65{left:265.500000px;}
.x1e{left:267.000000px;}
.x69{left:268.500000px;}
.x16d{left:270.000000px;}
.x66{left:271.500000px;}
.x25{left:273.000000px;}
.x12f{left:274.500000px;}
.x16e{left:276.000000px;}
.xa7{left:279.000000px;}
.x67{left:280.500000px;}
.x28{left:282.000000px;}
.x1a{left:283.500000px;}
.xb3{left:288.000000px;}
.x35{left:289.500000px;}
.x18{left:291.000000px;}
.x29{left:292.500000px;}
.xfa{left:294.000000px;}
.x2{left:295.500000px;}
.x16b{left:297.000000px;}
.xca{left:298.500000px;}
.x68{left:300.000000px;}
.xad{left:301.500000px;}
.x148{left:303.000000px;}
.x2a{left:304.500000px;}
.x1b{left:306.000000px;}
.x16a{left:307.500000px;}
.x86{left:309.000000px;}
.xdf{left:310.500000px;}
.x11e{left:312.000000px;}
.x91{left:313.500000px;}
.x3{left:316.500000px;}
.x5c{left:319.500000px;}
.x11{left:321.000000px;}
.x87{left:322.500000px;}
.x26{left:324.000000px;}
.x89{left:325.500000px;}
.xe1{left:327.000000px;}
.xf8{left:328.500000px;}
.xe{left:330.000000px;}
.xab{left:333.000000px;}
.xcb{left:334.500000px;}
.x11d{left:337.500000px;}
.x171{left:339.000000px;}
.x97{left:342.000000px;}
.xa8{left:343.500000px;}
.x173{left:345.000000px;}
.x19{left:346.500000px;}
.x2e{left:349.500000px;}
.x1c{left:351.000000px;}
.x8b{left:355.500000px;}
.x5e{left:357.000000px;}
.xaf{left:358.500000px;}
.x32{left:360.000000px;}
.x6{left:364.500000px;}
.x4{left:373.500000px;}
.x126{left:391.500000px;}
.x39{left:393.000000px;}
.x3e{left:394.500000px;}
.x43{left:396.000000px;}
.x49{left:397.500000px;}
.x4c{left:399.000000px;}
.x7f{left:402.000000px;}
.x46{left:403.500000px;}
.xe5{left:405.000000px;}
.x115{left:406.500000px;}
.x3b{left:408.000000px;}
.x42{left:409.500000px;}
.x47{left:411.000000px;}
.x4b{left:412.500000px;}
.x4e{left:414.000000px;}
.x54{left:417.000000px;}
.xbb{left:423.000000px;}
.xc5{left:424.500000px;}
.x45{left:427.500000px;}
.x98{left:429.000000px;}
.x4d{left:430.500000px;}
.xc4{left:432.000000px;}
.x6e{left:433.500000px;}
.x77{left:435.000000px;}
.x82{left:436.500000px;}
.xe6{left:438.000000px;}
.x178{left:439.500000px;}
.xd2{left:441.000000px;}
.x102{left:442.500000px;}
.xfe{left:444.000000px;}
.x165{left:445.500000px;}
.x10f{left:447.000000px;}
.x131{left:448.500000px;}
.x44{left:450.000000px;}
.x50{left:451.500000px;}
.xc7{left:453.000000px;}
.x7b{left:454.500000px;}
.x4f{left:456.000000px;}
.x127{left:457.500000px;}
.x152{left:459.000000px;}
.x12a{left:460.500000px;}
.x11f{left:462.000000px;}
.x13b{left:463.500000px;}
.x14c{left:465.000000px;}
.x17b{left:466.500000px;}
.xb9{left:468.000000px;}
.xd9{left:469.500000px;}
.x158{left:471.000000px;}
.x113{left:472.500000px;}
.x162{left:474.000000px;}
.x157{left:475.500000px;}
.x14f{left:477.000000px;}
.x80{left:478.500000px;}
.x116{left:480.000000px;}
.xba{left:481.500000px;}
.x41{left:483.000000px;}
.x166{left:484.500000px;}
.x81{left:486.000000px;}
.x9b{left:487.500000px;}
.x156{left:489.000000px;}
.xfb{left:490.500000px;}
.xb5{left:492.000000px;}
.xa1{left:493.500000px;}
.x7d{left:495.000000px;}
.x114{left:496.500000px;}
.x15a{left:498.000000px;}
.x132{left:499.500000px;}
.x153{left:501.000000px;}
.x7c{left:502.500000px;}
.x3f{left:504.000000px;}
.x7e{left:505.500000px;}
.x7a{left:507.000000px;}
.x9d{left:508.500000px;}
.xed{left:510.000000px;}
.xd3{left:511.500000px;}
.x10a{left:513.000000px;}
.x136{left:514.500000px;}
.xd6{left:516.000000px;}
.x7{left:517.500000px;}
.xbc{left:519.000000px;}
.xda{left:520.500000px;}
.x83{left:522.000000px;}
.xd7{left:523.500000px;}
.x154{left:525.000000px;}
.x124{left:526.500000px;}
.xe8{left:528.000000px;}
.x99{left:529.500000px;}
.x3a{left:531.000000px;}
.xe7{left:532.500000px;}
.xdb{left:534.000000px;}
.x122{left:535.500000px;}
.xf0{left:537.000000px;}
.xee{left:538.500000px;}
.x141{left:540.000000px;}
.x13c{left:541.500000px;}
.x150{left:543.000000px;}
.xbd{left:544.500000px;}
.xbf{left:546.000000px;}
.x17a{left:547.500000px;}
.x101{left:549.000000px;}
.x9f{left:550.500000px;}
.xf3{left:552.000000px;}
.xbe{left:553.500000px;}
.xec{left:555.000000px;}
.xef{left:556.500000px;}
.x70{left:558.000000px;}
.x160{left:559.500000px;}
.x3c{left:561.000000px;}
.xe9{left:562.500000px;}
.xfc{left:564.000000px;}
.xfd{left:565.500000px;}
.xeb{left:567.000000px;}
.x14b{left:568.500000px;}
.x128{left:570.000000px;}
.x161{left:571.500000px;}
.xc2{left:573.000000px;}
.xb6{left:574.500000px;}
.x15c{left:576.000000px;}
.x100{left:577.500000px;}
.x3d{left:579.000000px;}
.xf2{left:580.500000px;}
.x118{left:582.000000px;}
.x142{left:583.500000px;}
.x140{left:585.000000px;}
.x143{left:586.500000px;}
.x155{left:588.000000px;}
.xff{left:589.500000px;}
.x110{left:591.000000px;}
.x79{left:594.000000px;}
.x15e{left:595.500000px;}
.x84{left:597.000000px;}
.x135{left:598.500000px;}
.x51{left:600.000000px;}
.xea{left:601.500000px;}
.x4a{left:603.000000px;}
.x78{left:604.500000px;}
.x17c{left:606.000000px;}
.xd4{left:607.500000px;}
.x164{left:609.000000px;}
.x120{left:610.500000px;}
.x151{left:612.000000px;}
.x15d{left:613.500000px;}
.x52{left:615.000000px;}
.xa0{left:616.500000px;}
.x111{left:618.000000px;}
.x74{left:619.500000px;}
.x133{left:621.000000px;}
.x40{left:622.500000px;}
.x73{left:624.000000px;}
.x9a{left:625.500000px;}
.xf1{left:627.000000px;}
.x121{left:628.500000px;}
.x112{left:630.000000px;}
.x15b{left:631.500000px;}
.xc0{left:633.000000px;}
.xb7{left:634.500000px;}
.x10d{left:636.000000px;}
.x14d{left:637.500000px;}
.x55{left:639.000000px;}
.x71{left:640.500000px;}
.xd8{left:642.000000px;}
.x14e{left:643.500000px;}
.xa2{left:645.000000px;}
.x117{left:646.500000px;}
.xd5{left:648.000000px;}
.x134{left:649.500000px;}
.x72{left:651.000000px;}
.x10e{left:652.500000px;}
.x179{left:654.000000px;}
.xc1{left:655.500000px;}
.x9c{left:657.000000px;}
.x10c{left:658.500000px;}
.x9e{left:660.000000px;}
.x119{left:661.500000px;}
.x10b{left:663.000000px;}
.x123{left:664.500000px;}
.x103{left:666.000000px;}
.x76{left:667.500000px;}
.x15f{left:669.000000px;}
.x159{left:670.500000px;}
.x163{left:672.000000px;}
.x144{left:673.500000px;}
.xa4{left:676.500000px;}
.x6c{left:678.000000px;}
.x53{left:679.500000px;}
.xb8{left:681.000000px;}
.x130{left:682.500000px;}
.xf4{left:684.000000px;}
.x75{left:687.000000px;}
.x125{left:690.000000px;}
.x6d{left:691.500000px;}
.x48{left:693.000000px;}
.x6f{left:694.500000px;}
.xc3{left:696.000000px;}
.x17d{left:697.500000px;}
.xd1{left:699.000000px;}
@media print{
.v2{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:8.808602pt;}
.ws4{word-spacing:-32.320000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws8{word-spacing:-28.800000pt;}
.ws9{word-spacing:-27.200000pt;}
.ws3{word-spacing:-25.600000pt;}
.ws0{word-spacing:-13.714286pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:7.619048pt;}
.ws2{word-spacing:26.837333pt;}
.ws7{word-spacing:49.777778pt;}
._d{width:1.488000pt;}
._e{width:2.410667pt;}
._a{width:4.320675pt;}
._1{width:7.125333pt;}
._4{width:8.373333pt;}
._5{width:9.866667pt;}
._3{width:11.981735pt;}
._2{width:13.714286pt;}
._b{width:15.567568pt;}
._c{width:24.672000pt;}
._8{width:33.493333pt;}
._6{width:39.658120pt;}
._7{width:52.456621pt;}
._9{width:56.000000pt;}
._0{width:60.084388pt;}
.fs8{font-size:41.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:61.333333pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:37.333333pt;}
.y136{bottom:38.666667pt;}
.y190{bottom:44.000000pt;}
.y1b4{bottom:46.666667pt;}
.y162{bottom:48.000000pt;}
.y1c0{bottom:49.333333pt;}
.yb2{bottom:50.666667pt;}
.y135{bottom:52.000000pt;}
.y4d{bottom:53.333333pt;}
.y19a{bottom:54.666667pt;}
.y199{bottom:56.000000pt;}
.y18f{bottom:57.333333pt;}
.y1f6{bottom:58.666667pt;}
.y1dd{bottom:60.000000pt;}
.y161{bottom:61.333333pt;}
.y1b3{bottom:62.666667pt;}
.yb1{bottom:64.000000pt;}
.y134{bottom:65.333333pt;}
.y1f5{bottom:69.333333pt;}
.y18e{bottom:70.666667pt;}
.y1dc{bottom:72.000000pt;}
.y1e0{bottom:73.333333pt;}
.y160{bottom:74.666667pt;}
.ycf{bottom:76.000000pt;}
.yb0{bottom:77.333333pt;}
.y4b{bottom:78.666667pt;}
.y4c{bottom:80.000000pt;}
.y7a{bottom:81.333333pt;}
.y198{bottom:82.666667pt;}
.y18d{bottom:84.000000pt;}
.y1db{bottom:86.666667pt;}
.y15f{bottom:88.000000pt;}
.y4a{bottom:89.333333pt;}
.yaf{bottom:90.666667pt;}
.y133{bottom:92.000000pt;}
.y1f4{bottom:93.333333pt;}
.y79{bottom:94.666667pt;}
.y197{bottom:96.000000pt;}
.y18c{bottom:97.333333pt;}
.y1da{bottom:100.000000pt;}
.y15e{bottom:101.333333pt;}
.y105{bottom:102.666667pt;}
.yae{bottom:104.000000pt;}
.y132{bottom:105.333333pt;}
.y49{bottom:106.666667pt;}
.y1e1{bottom:108.000000pt;}
.y78{bottom:109.333333pt;}
.y18b{bottom:110.666667pt;}
.y1d9{bottom:113.333333pt;}
.y15d{bottom:114.666667pt;}
.y1bf{bottom:116.000000pt;}
.yad{bottom:117.333333pt;}
.y47{bottom:118.666667pt;}
.y48{bottom:120.000000pt;}
.y77{bottom:122.666667pt;}
.y18a{bottom:124.000000pt;}
.y1b2{bottom:126.666667pt;}
.y15c{bottom:128.000000pt;}
.y104{bottom:129.333333pt;}
.yac{bottom:130.666667pt;}
.yce{bottom:132.000000pt;}
.y46{bottom:133.333333pt;}
.y196{bottom:134.666667pt;}
.y76{bottom:136.000000pt;}
.y189{bottom:137.333333pt;}
.y1d8{bottom:140.000000pt;}
.y15b{bottom:141.333333pt;}
.y103{bottom:142.666667pt;}
.yab{bottom:144.000000pt;}
.ycd{bottom:145.333333pt;}
.y45{bottom:146.666667pt;}
.y1a7{bottom:148.000000pt;}
.y75{bottom:149.333333pt;}
.y188{bottom:150.666667pt;}
.y1ed{bottom:152.000000pt;}
.y1d7{bottom:153.333333pt;}
.y15a{bottom:154.666667pt;}
.y102{bottom:156.000000pt;}
.yaa{bottom:157.333333pt;}
.ycc{bottom:158.666667pt;}
.ycb{bottom:160.000000pt;}
.y43{bottom:161.333333pt;}
.y44{bottom:162.666667pt;}
.y187{bottom:164.000000pt;}
.y1d6{bottom:166.666667pt;}
.y159{bottom:168.000000pt;}
.y101{bottom:169.333333pt;}
.ya9{bottom:170.666667pt;}
.y131{bottom:172.000000pt;}
.yca{bottom:173.333333pt;}
.y42{bottom:174.666667pt;}
.y74{bottom:176.000000pt;}
.y186{bottom:177.333333pt;}
.y1df{bottom:178.666667pt;}
.y1d5{bottom:180.000000pt;}
.y158{bottom:181.333333pt;}
.yf5{bottom:182.666667pt;}
.ya8{bottom:184.000000pt;}
.y130{bottom:185.333333pt;}
.yc9{bottom:186.666667pt;}
.y40{bottom:188.000000pt;}
.y41{bottom:189.333333pt;}
.y195{bottom:190.666667pt;}
.y185{bottom:192.000000pt;}
.y1d4{bottom:193.333333pt;}
.y157{bottom:194.666667pt;}
.yf4{bottom:196.000000pt;}
.y1ec{bottom:197.333333pt;}
.ya7{bottom:198.666667pt;}
.yc8{bottom:200.000000pt;}
.y3f{bottom:201.333333pt;}
.y73{bottom:204.000000pt;}
.y184{bottom:205.333333pt;}
.y1d3{bottom:206.666667pt;}
.y156{bottom:208.000000pt;}
.y100{bottom:209.333333pt;}
.yf3{bottom:210.666667pt;}
.ya6{bottom:212.000000pt;}
.y12f{bottom:213.333333pt;}
.y3e{bottom:214.666667pt;}
.y1be{bottom:216.000000pt;}
.y72{bottom:217.333333pt;}
.y183{bottom:218.666667pt;}
.y1de{bottom:220.000000pt;}
.y1d2{bottom:221.333333pt;}
.yf2{bottom:222.666667pt;}
.y1eb{bottom:224.000000pt;}
.ya5{bottom:225.333333pt;}
.y12e{bottom:226.666667pt;}
.y3c{bottom:228.000000pt;}
.y3d{bottom:229.333333pt;}
.y71{bottom:230.666667pt;}
.y17d{bottom:232.000000pt;}
.y1d1{bottom:233.333333pt;}
.y155{bottom:234.666667pt;}
.y154{bottom:236.000000pt;}
.yf1{bottom:237.333333pt;}
.ya4{bottom:238.666667pt;}
.y12d{bottom:240.000000pt;}
.y3a{bottom:241.333333pt;}
.y3b{bottom:242.666667pt;}
.y70{bottom:244.000000pt;}
.y17c{bottom:245.333333pt;}
.y1b1{bottom:246.666667pt;}
.y1d0{bottom:248.000000pt;}
.y153{bottom:249.333333pt;}
.yf0{bottom:250.666667pt;}
.ya3{bottom:252.000000pt;}
.y12c{bottom:253.333333pt;}
.y39{bottom:254.666667pt;}
.yc7{bottom:256.000000pt;}
.y6f{bottom:257.333333pt;}
.y182{bottom:258.666667pt;}
.y17b{bottom:260.000000pt;}
.y1cf{bottom:261.333333pt;}
.y152{bottom:262.666667pt;}
.yef{bottom:264.000000pt;}
.ya2{bottom:265.333333pt;}
.y12b{bottom:266.666667pt;}
.y38{bottom:268.000000pt;}
.yc6{bottom:269.333333pt;}
.y6e{bottom:272.000000pt;}
.y17a{bottom:273.333333pt;}
.y1ce{bottom:274.666667pt;}
.y151{bottom:276.000000pt;}
.yee{bottom:277.333333pt;}
.ya1{bottom:278.666667pt;}
.y12a{bottom:280.000000pt;}
.y1ab{bottom:281.333333pt;}
.y37{bottom:282.666667pt;}
.y1bd{bottom:284.000000pt;}
.y6d{bottom:285.333333pt;}
.y179{bottom:286.666667pt;}
.y1b0{bottom:288.000000pt;}
.y150{bottom:289.333333pt;}
.yed{bottom:290.666667pt;}
.ya0{bottom:292.000000pt;}
.y129{bottom:293.333333pt;}
.y35{bottom:296.000000pt;}
.y36{bottom:297.333333pt;}
.y181{bottom:298.666667pt;}
.y178{bottom:300.000000pt;}
.y6c{bottom:301.333333pt;}
.y14f{bottom:302.666667pt;}
.yec{bottom:304.000000pt;}
.y1ea{bottom:305.333333pt;}
.y9f{bottom:306.666667pt;}
.y128{bottom:308.000000pt;}
.y32{bottom:309.333333pt;}
.y33{bottom:310.666667pt;}
.y34{bottom:312.000000pt;}
.y177{bottom:313.333333pt;}
.y6b{bottom:314.666667pt;}
.y1cd{bottom:316.000000pt;}
.yff{bottom:317.333333pt;}
.yeb{bottom:318.666667pt;}
.y9e{bottom:320.000000pt;}
.y127{bottom:321.333333pt;}
.y31{bottom:324.000000pt;}
.y146{bottom:325.333333pt;}
.y176{bottom:326.666667pt;}
.y6a{bottom:328.000000pt;}
.y1cc{bottom:329.333333pt;}
.y14e{bottom:330.666667pt;}
.yea{bottom:332.000000pt;}
.y9d{bottom:333.333333pt;}
.y126{bottom:334.666667pt;}
.y1aa{bottom:337.333333pt;}
.y30{bottom:338.666667pt;}
.y1a6{bottom:340.000000pt;}
.y69{bottom:341.333333pt;}
.y1cb{bottom:342.666667pt;}
.yc5{bottom:344.000000pt;}
.yc4{bottom:345.333333pt;}
.y9c{bottom:346.666667pt;}
.y125{bottom:348.000000pt;}
.y2e{bottom:350.666667pt;}
.y2f{bottom:352.000000pt;}
.y1a5{bottom:353.333333pt;}
.y68{bottom:354.666667pt;}
.y1ca{bottom:356.000000pt;}
.y14d{bottom:357.333333pt;}
.ye9{bottom:358.666667pt;}
.y9b{bottom:360.000000pt;}
.y124{bottom:361.333333pt;}
.y2d{bottom:365.333333pt;}
.yc3{bottom:366.666667pt;}
.y67{bottom:368.000000pt;}
.y1af{bottom:369.333333pt;}
.y14c{bottom:370.666667pt;}
.ye8{bottom:372.000000pt;}
.y194{bottom:373.333333pt;}
.y9a{bottom:374.666667pt;}
.y2a{bottom:377.333333pt;}
.y2b{bottom:378.666667pt;}
.y2c{bottom:380.000000pt;}
.y145{bottom:381.333333pt;}
.y180{bottom:382.666667pt;}
.y66{bottom:384.000000pt;}
.ye7{bottom:385.333333pt;}
.y99{bottom:386.666667pt;}
.y98{bottom:388.000000pt;}
.y123{bottom:389.333333pt;}
.y27{bottom:390.666667pt;}
.y28{bottom:392.000000pt;}
.y29{bottom:393.333333pt;}
.y144{bottom:394.666667pt;}
.y175{bottom:396.000000pt;}
.y65{bottom:397.333333pt;}
.ye6{bottom:398.666667pt;}
.y1e9{bottom:400.000000pt;}
.y97{bottom:401.333333pt;}
.y122{bottom:402.666667pt;}
.y26{bottom:405.333333pt;}
.y1a4{bottom:406.666667pt;}
.yc2{bottom:408.000000pt;}
.y174{bottom:409.333333pt;}
.y64{bottom:410.666667pt;}
.yfe{bottom:412.000000pt;}
.ye5{bottom:413.333333pt;}
.y96{bottom:414.666667pt;}
.y121{bottom:416.000000pt;}
.y25{bottom:418.666667pt;}
.y1bc{bottom:420.000000pt;}
.yc1{bottom:421.333333pt;}
.y173{bottom:422.666667pt;}
.y63{bottom:424.000000pt;}
.yfd{bottom:425.333333pt;}
.ye4{bottom:426.666667pt;}
.y95{bottom:428.000000pt;}
.y120{bottom:429.333333pt;}
.y23{bottom:432.000000pt;}
.y24{bottom:433.333333pt;}
.yc0{bottom:434.666667pt;}
.y143{bottom:436.000000pt;}
.y1c9{bottom:437.333333pt;}
.y14b{bottom:438.666667pt;}
.ye3{bottom:440.000000pt;}
.y62{bottom:441.333333pt;}
.y11f{bottom:442.666667pt;}
.y1f3{bottom:444.000000pt;}
.y1f2{bottom:445.333333pt;}
.y1ae{bottom:446.666667pt;}
.ybf{bottom:448.000000pt;}
.y142{bottom:449.333333pt;}
.y22{bottom:450.666667pt;}
.y14a{bottom:452.000000pt;}
.ye2{bottom:453.333333pt;}
.y94{bottom:454.666667pt;}
.y11e{bottom:456.000000pt;}
.y1a3{bottom:460.000000pt;}
.y1a9{bottom:461.333333pt;}
.ybe{bottom:462.666667pt;}
.y61{bottom:464.000000pt;}
.y149{bottom:465.333333pt;}
.ye1{bottom:466.666667pt;}
.y93{bottom:468.000000pt;}
.y92{bottom:469.333333pt;}
.y1c3{bottom:470.666667pt;}
.y20{bottom:472.000000pt;}
.y21{bottom:473.333333pt;}
.ybd{bottom:474.666667pt;}
.ybc{bottom:476.000000pt;}
.y60{bottom:477.333333pt;}
.y17f{bottom:478.666667pt;}
.yfc{bottom:480.000000pt;}
.y193{bottom:481.333333pt;}
.y91{bottom:482.666667pt;}
.y11d{bottom:484.000000pt;}
.y1f{bottom:485.333333pt;}
.y1a2{bottom:486.666667pt;}
.y1a8{bottom:488.000000pt;}
.ybb{bottom:489.333333pt;}
.y5f{bottom:490.666667pt;}
.y17e{bottom:492.000000pt;}
.yfa{bottom:493.333333pt;}
.yfb{bottom:494.666667pt;}
.y90{bottom:496.000000pt;}
.y11c{bottom:497.333333pt;}
.y1e{bottom:498.666667pt;}
.y1a0{bottom:500.000000pt;}
.y1a1{bottom:501.333333pt;}
.y141{bottom:502.666667pt;}
.y5e{bottom:504.000000pt;}
.yba{bottom:505.333333pt;}
.y148{bottom:506.666667pt;}
.yf9{bottom:508.000000pt;}
.y8f{bottom:509.333333pt;}
.y11b{bottom:510.666667pt;}
.y1d{bottom:512.000000pt;}
.y1c2{bottom:513.333333pt;}
.y19f{bottom:514.666667pt;}
.y140{bottom:516.000000pt;}
.yb9{bottom:517.333333pt;}
.y5d{bottom:518.666667pt;}
.ye0{bottom:520.000000pt;}
.yf8{bottom:521.333333pt;}
.y8e{bottom:524.000000pt;}
.y8d{bottom:525.333333pt;}
.y1c{bottom:526.666667pt;}
.y19e{bottom:528.000000pt;}
.y13f{bottom:529.333333pt;}
.yb8{bottom:530.666667pt;}
.y5c{bottom:532.000000pt;}
.ydf{bottom:533.333333pt;}
.yf7{bottom:534.666667pt;}
.y192{bottom:536.000000pt;}
.y11a{bottom:537.333333pt;}
.y1a{bottom:538.666667pt;}
.y1b{bottom:540.000000pt;}
.y172{bottom:541.333333pt;}
.y1f1{bottom:542.666667pt;}
.yb7{bottom:544.000000pt;}
.y5b{bottom:545.333333pt;}
.y8c{bottom:546.666667pt;}
.y147{bottom:548.000000pt;}
.y119{bottom:550.666667pt;}
.yf6{bottom:552.000000pt;}
.y18{bottom:553.333333pt;}
.y19{bottom:554.666667pt;}
.y13e{bottom:557.333333pt;}
.y5a{bottom:558.666667pt;}
.y8b{bottom:560.000000pt;}
.y1e8{bottom:561.333333pt;}
.y1c8{bottom:562.666667pt;}
.y1c7{bottom:564.000000pt;}
.y118{bottom:565.333333pt;}
.y16{bottom:566.666667pt;}
.y17{bottom:568.000000pt;}
.y1bb{bottom:569.333333pt;}
.y13d{bottom:570.666667pt;}
.y59{bottom:572.000000pt;}
.y8a{bottom:573.333333pt;}
.yde{bottom:574.666667pt;}
.y117{bottom:578.666667pt;}
.y15{bottom:580.000000pt;}
.y171{bottom:581.333333pt;}
.y19d{bottom:582.666667pt;}
.y13c{bottom:584.000000pt;}
.y58{bottom:585.333333pt;}
.y89{bottom:586.666667pt;}
.ydd{bottom:588.000000pt;}
.y1e7{bottom:589.333333pt;}
.y116{bottom:590.666667pt;}
.y12{bottom:592.000000pt;}
.y13{bottom:593.333333pt;}
.y14{bottom:594.666667pt;}
.y1ba{bottom:596.000000pt;}
.y19c{bottom:597.333333pt;}
.y57{bottom:598.666667pt;}
.yb6{bottom:600.000000pt;}
.y88{bottom:601.333333pt;}
.y1e6{bottom:602.666667pt;}
.y115{bottom:605.333333pt;}
.y11{bottom:606.666667pt;}
.y170{bottom:608.000000pt;}
.y16f{bottom:609.333333pt;}
.y19b{bottom:610.666667pt;}
.y13b{bottom:612.000000pt;}
.y56{bottom:613.333333pt;}
.y87{bottom:614.666667pt;}
.y1e5{bottom:616.000000pt;}
.y1f0{bottom:617.333333pt;}
.y114{bottom:618.666667pt;}
.y10{bottom:621.333333pt;}
.y16e{bottom:622.666667pt;}
.y13a{bottom:625.333333pt;}
.y55{bottom:626.666667pt;}
.y86{bottom:628.000000pt;}
.ydc{bottom:629.333333pt;}
.y112{bottom:632.000000pt;}
.y113{bottom:633.333333pt;}
.yf{bottom:634.666667pt;}
.y16d{bottom:636.000000pt;}
.y1b9{bottom:637.333333pt;}
.y139{bottom:638.666667pt;}
.y54{bottom:640.000000pt;}
.y85{bottom:641.333333pt;}
.ydb{bottom:642.666667pt;}
.y1fc{bottom:644.000000pt;}
.y111{bottom:646.666667pt;}
.ye{bottom:648.000000pt;}
.y16c{bottom:649.333333pt;}
.y1b8{bottom:650.666667pt;}
.y138{bottom:652.000000pt;}
.y53{bottom:653.333333pt;}
.y84{bottom:654.666667pt;}
.yda{bottom:656.000000pt;}
.y110{bottom:660.000000pt;}
.yd{bottom:661.333333pt;}
.y16b{bottom:662.666667pt;}
.y1b7{bottom:664.000000pt;}
.y137{bottom:665.333333pt;}
.y52{bottom:666.666667pt;}
.y83{bottom:668.000000pt;}
.yd9{bottom:669.333333pt;}
.y1fa{bottom:670.666667pt;}
.y1ef{bottom:672.000000pt;}
.y10f{bottom:673.333333pt;}
.yb{bottom:674.666667pt;}
.yc{bottom:676.000000pt;}
.y16a{bottom:677.333333pt;}
.y51{bottom:680.000000pt;}
.y82{bottom:681.333333pt;}
.yd8{bottom:682.666667pt;}
.y1e4{bottom:684.000000pt;}
.y9{bottom:688.000000pt;}
.ya{bottom:689.333333pt;}
.y169{bottom:690.666667pt;}
.y1f9{bottom:692.000000pt;}
.y1c6{bottom:693.333333pt;}
.y50{bottom:694.666667pt;}
.yd7{bottom:696.000000pt;}
.y1e3{bottom:697.333333pt;}
.y7{bottom:701.333333pt;}
.y8{bottom:702.666667pt;}
.y168{bottom:704.000000pt;}
.y1c1{bottom:705.333333pt;}
.y1c5{bottom:706.666667pt;}
.y4f{bottom:708.000000pt;}
.y81{bottom:709.333333pt;}
.yd6{bottom:710.666667pt;}
.y1ee{bottom:713.333333pt;}
.y10d{bottom:714.666667pt;}
.y10e{bottom:716.000000pt;}
.y167{bottom:717.333333pt;}
.y166{bottom:718.666667pt;}
.y6{bottom:720.000000pt;}
.y4e{bottom:721.333333pt;}
.y80{bottom:722.666667pt;}
.yd5{bottom:724.000000pt;}
.y1f8{bottom:725.333333pt;}
.y10c{bottom:729.333333pt;}
.y165{bottom:730.666667pt;}
.y1b6{bottom:732.000000pt;}
.yb5{bottom:734.666667pt;}
.y7f{bottom:736.000000pt;}
.yd4{bottom:737.333333pt;}
.y10b{bottom:742.666667pt;}
.y164{bottom:744.000000pt;}
.y1b5{bottom:745.333333pt;}
.y1c4{bottom:746.666667pt;}
.yb4{bottom:748.000000pt;}
.y7e{bottom:749.333333pt;}
.y4{bottom:750.666667pt;}
.y5{bottom:752.000000pt;}
.y1fb{bottom:753.333333pt;}
.y1ac{bottom:756.000000pt;}
.y1ad{bottom:757.333333pt;}
.y163{bottom:758.666667pt;}
.y10a{bottom:760.000000pt;}
.y191{bottom:761.333333pt;}
.y7d{bottom:762.666667pt;}
.yd3{bottom:764.000000pt;}
.y1f7{bottom:766.666667pt;}
.y2{bottom:768.000000pt;}
.y3{bottom:769.333333pt;}
.y108{bottom:773.333333pt;}
.y109{bottom:774.666667pt;}
.y7c{bottom:776.000000pt;}
.yd2{bottom:777.333333pt;}
.y1e2{bottom:778.666667pt;}
.y1{bottom:801.333333pt;}
.y106{bottom:802.666667pt;}
.y107{bottom:804.000000pt;}
.y7b{bottom:805.333333pt;}
.yd0{bottom:806.666667pt;}
.yd1{bottom:862.666667pt;}
.hb{height:42.484153pt;}
.h6{height:43.854610pt;}
.h5{height:46.595523pt;}
.h8{height:49.187943pt;}
.ha{height:49.336436pt;}
.h2{height:52.077349pt;}
.h3{height:54.818262pt;}
.h7{height:57.559176pt;}
.h4{height:60.151596pt;}
.h9{height:60.300089pt;}
.h1{height:63.041002pt;}
.h0{height:864.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x167{left:1.333333pt;}
.x1{left:48.000000pt;}
.xc{left:49.333333pt;}
.x10{left:50.666667pt;}
.xf{left:52.000000pt;}
.x1f{left:53.333333pt;}
.x22{left:54.666667pt;}
.x31{left:56.000000pt;}
.x36{left:57.333333pt;}
.x8f{left:58.666667pt;}
.x137{left:60.000000pt;}
.x38{left:61.333333pt;}
.x9{left:62.666667pt;}
.x12{left:64.000000pt;}
.x13{left:65.333333pt;}
.x95{left:66.666667pt;}
.x30{left:68.000000pt;}
.x14{left:72.000000pt;}
.xf6{left:73.333333pt;}
.x60{left:74.666667pt;}
.x138{left:76.000000pt;}
.x94{left:77.333333pt;}
.x139{left:78.666667pt;}
.x23{left:80.000000pt;}
.x108{left:82.666667pt;}
.x109{left:84.000000pt;}
.x177{left:85.333333pt;}
.x145{left:86.666667pt;}
.xdd{left:88.000000pt;}
.xb0{left:89.333333pt;}
.x15{left:92.000000pt;}
.xcf{left:93.333333pt;}
.x146{left:94.666667pt;}
.x106{left:96.000000pt;}
.xe2{left:97.333333pt;}
.xf5{left:98.666667pt;}
.x5d{left:100.000000pt;}
.x61{left:101.333333pt;}
.xa6{left:102.666667pt;}
.x92{left:104.000000pt;}
.xac{left:105.333333pt;}
.x34{left:106.666667pt;}
.x11b{left:108.000000pt;}
.xe4{left:109.333333pt;}
.x2b{left:110.666667pt;}
.x149{left:112.000000pt;}
.x11a{left:113.333333pt;}
.x13e{left:114.666667pt;}
.xb2{left:116.000000pt;}
.xd0{left:118.666667pt;}
.x63{left:120.000000pt;}
.xa{left:121.333333pt;}
.x2c{left:122.666667pt;}
.xb1{left:124.000000pt;}
.x93{left:125.333333pt;}
.x2f{left:126.666667pt;}
.x13d{left:128.000000pt;}
.x168{left:129.333333pt;}
.x14a{left:130.666667pt;}
.x12c{left:133.333333pt;}
.x13a{left:134.666667pt;}
.xc9{left:136.000000pt;}
.x37{left:137.333333pt;}
.xa9{left:140.000000pt;}
.xe0{left:141.333333pt;}
.x88{left:142.666667pt;}
.x6b{left:144.000000pt;}
.x170{left:145.333333pt;}
.xaa{left:146.666667pt;}
.x107{left:148.000000pt;}
.x16c{left:149.333333pt;}
.x8{left:150.666667pt;}
.x16{left:152.000000pt;}
.x105{left:153.333333pt;}
.xe3{left:154.666667pt;}
.x12b{left:157.333333pt;}
.x8c{left:158.666667pt;}
.xa5{left:160.000000pt;}
.x104{left:161.333333pt;}
.x12e{left:162.666667pt;}
.x175{left:164.000000pt;}
.x176{left:166.666667pt;}
.x57{left:168.000000pt;}
.x20{left:169.333333pt;}
.xa3{left:170.666667pt;}
.xb{left:172.000000pt;}
.xdc{left:173.333333pt;}
.x96{left:174.666667pt;}
.x129{left:176.000000pt;}
.xc8{left:177.333333pt;}
.x90{left:178.666667pt;}
.x21{left:180.000000pt;}
.x5f{left:181.333333pt;}
.xae{left:182.666667pt;}
.x1d{left:184.000000pt;}
.x172{left:185.333333pt;}
.x27{left:186.666667pt;}
.x174{left:188.000000pt;}
.xf9{left:189.333333pt;}
.x62{left:190.666667pt;}
.x169{left:192.000000pt;}
.x6a{left:193.333333pt;}
.x8a{left:196.000000pt;}
.xcd{left:197.333333pt;}
.xcc{left:198.666667pt;}
.x16f{left:200.000000pt;}
.x5{left:201.333333pt;}
.x147{left:202.666667pt;}
.x64{left:204.000000pt;}
.x2d{left:205.333333pt;}
.x5a{left:206.666667pt;}
.x8d{left:208.000000pt;}
.x12d{left:209.333333pt;}
.xce{left:210.666667pt;}
.x13f{left:213.333333pt;}
.xde{left:214.666667pt;}
.x85{left:216.000000pt;}
.x58{left:217.333333pt;}
.xc6{left:218.666667pt;}
.x59{left:220.000000pt;}
.x56{left:221.333333pt;}
.x33{left:222.666667pt;}
.xb4{left:224.000000pt;}
.x17{left:225.333333pt;}
.x11c{left:226.666667pt;}
.xd{left:229.333333pt;}
.xf7{left:230.666667pt;}
.x5b{left:232.000000pt;}
.x24{left:233.333333pt;}
.x8e{left:234.666667pt;}
.x65{left:236.000000pt;}
.x1e{left:237.333333pt;}
.x69{left:238.666667pt;}
.x16d{left:240.000000pt;}
.x66{left:241.333333pt;}
.x25{left:242.666667pt;}
.x12f{left:244.000000pt;}
.x16e{left:245.333333pt;}
.xa7{left:248.000000pt;}
.x67{left:249.333333pt;}
.x28{left:250.666667pt;}
.x1a{left:252.000000pt;}
.xb3{left:256.000000pt;}
.x35{left:257.333333pt;}
.x18{left:258.666667pt;}
.x29{left:260.000000pt;}
.xfa{left:261.333333pt;}
.x2{left:262.666667pt;}
.x16b{left:264.000000pt;}
.xca{left:265.333333pt;}
.x68{left:266.666667pt;}
.xad{left:268.000000pt;}
.x148{left:269.333333pt;}
.x2a{left:270.666667pt;}
.x1b{left:272.000000pt;}
.x16a{left:273.333333pt;}
.x86{left:274.666667pt;}
.xdf{left:276.000000pt;}
.x11e{left:277.333333pt;}
.x91{left:278.666667pt;}
.x3{left:281.333333pt;}
.x5c{left:284.000000pt;}
.x11{left:285.333333pt;}
.x87{left:286.666667pt;}
.x26{left:288.000000pt;}
.x89{left:289.333333pt;}
.xe1{left:290.666667pt;}
.xf8{left:292.000000pt;}
.xe{left:293.333333pt;}
.xab{left:296.000000pt;}
.xcb{left:297.333333pt;}
.x11d{left:300.000000pt;}
.x171{left:301.333333pt;}
.x97{left:304.000000pt;}
.xa8{left:305.333333pt;}
.x173{left:306.666667pt;}
.x19{left:308.000000pt;}
.x2e{left:310.666667pt;}
.x1c{left:312.000000pt;}
.x8b{left:316.000000pt;}
.x5e{left:317.333333pt;}
.xaf{left:318.666667pt;}
.x32{left:320.000000pt;}
.x6{left:324.000000pt;}
.x4{left:332.000000pt;}
.x126{left:348.000000pt;}
.x39{left:349.333333pt;}
.x3e{left:350.666667pt;}
.x43{left:352.000000pt;}
.x49{left:353.333333pt;}
.x4c{left:354.666667pt;}
.x7f{left:357.333333pt;}
.x46{left:358.666667pt;}
.xe5{left:360.000000pt;}
.x115{left:361.333333pt;}
.x3b{left:362.666667pt;}
.x42{left:364.000000pt;}
.x47{left:365.333333pt;}
.x4b{left:366.666667pt;}
.x4e{left:368.000000pt;}
.x54{left:370.666667pt;}
.xbb{left:376.000000pt;}
.xc5{left:377.333333pt;}
.x45{left:380.000000pt;}
.x98{left:381.333333pt;}
.x4d{left:382.666667pt;}
.xc4{left:384.000000pt;}
.x6e{left:385.333333pt;}
.x77{left:386.666667pt;}
.x82{left:388.000000pt;}
.xe6{left:389.333333pt;}
.x178{left:390.666667pt;}
.xd2{left:392.000000pt;}
.x102{left:393.333333pt;}
.xfe{left:394.666667pt;}
.x165{left:396.000000pt;}
.x10f{left:397.333333pt;}
.x131{left:398.666667pt;}
.x44{left:400.000000pt;}
.x50{left:401.333333pt;}
.xc7{left:402.666667pt;}
.x7b{left:404.000000pt;}
.x4f{left:405.333333pt;}
.x127{left:406.666667pt;}
.x152{left:408.000000pt;}
.x12a{left:409.333333pt;}
.x11f{left:410.666667pt;}
.x13b{left:412.000000pt;}
.x14c{left:413.333333pt;}
.x17b{left:414.666667pt;}
.xb9{left:416.000000pt;}
.xd9{left:417.333333pt;}
.x158{left:418.666667pt;}
.x113{left:420.000000pt;}
.x162{left:421.333333pt;}
.x157{left:422.666667pt;}
.x14f{left:424.000000pt;}
.x80{left:425.333333pt;}
.x116{left:426.666667pt;}
.xba{left:428.000000pt;}
.x41{left:429.333333pt;}
.x166{left:430.666667pt;}
.x81{left:432.000000pt;}
.x9b{left:433.333333pt;}
.x156{left:434.666667pt;}
.xfb{left:436.000000pt;}
.xb5{left:437.333333pt;}
.xa1{left:438.666667pt;}
.x7d{left:440.000000pt;}
.x114{left:441.333333pt;}
.x15a{left:442.666667pt;}
.x132{left:444.000000pt;}
.x153{left:445.333333pt;}
.x7c{left:446.666667pt;}
.x3f{left:448.000000pt;}
.x7e{left:449.333333pt;}
.x7a{left:450.666667pt;}
.x9d{left:452.000000pt;}
.xed{left:453.333333pt;}
.xd3{left:454.666667pt;}
.x10a{left:456.000000pt;}
.x136{left:457.333333pt;}
.xd6{left:458.666667pt;}
.x7{left:460.000000pt;}
.xbc{left:461.333333pt;}
.xda{left:462.666667pt;}
.x83{left:464.000000pt;}
.xd7{left:465.333333pt;}
.x154{left:466.666667pt;}
.x124{left:468.000000pt;}
.xe8{left:469.333333pt;}
.x99{left:470.666667pt;}
.x3a{left:472.000000pt;}
.xe7{left:473.333333pt;}
.xdb{left:474.666667pt;}
.x122{left:476.000000pt;}
.xf0{left:477.333333pt;}
.xee{left:478.666667pt;}
.x141{left:480.000000pt;}
.x13c{left:481.333333pt;}
.x150{left:482.666667pt;}
.xbd{left:484.000000pt;}
.xbf{left:485.333333pt;}
.x17a{left:486.666667pt;}
.x101{left:488.000000pt;}
.x9f{left:489.333333pt;}
.xf3{left:490.666667pt;}
.xbe{left:492.000000pt;}
.xec{left:493.333333pt;}
.xef{left:494.666667pt;}
.x70{left:496.000000pt;}
.x160{left:497.333333pt;}
.x3c{left:498.666667pt;}
.xe9{left:500.000000pt;}
.xfc{left:501.333333pt;}
.xfd{left:502.666667pt;}
.xeb{left:504.000000pt;}
.x14b{left:505.333333pt;}
.x128{left:506.666667pt;}
.x161{left:508.000000pt;}
.xc2{left:509.333333pt;}
.xb6{left:510.666667pt;}
.x15c{left:512.000000pt;}
.x100{left:513.333333pt;}
.x3d{left:514.666667pt;}
.xf2{left:516.000000pt;}
.x118{left:517.333333pt;}
.x142{left:518.666667pt;}
.x140{left:520.000000pt;}
.x143{left:521.333333pt;}
.x155{left:522.666667pt;}
.xff{left:524.000000pt;}
.x110{left:525.333333pt;}
.x79{left:528.000000pt;}
.x15e{left:529.333333pt;}
.x84{left:530.666667pt;}
.x135{left:532.000000pt;}
.x51{left:533.333333pt;}
.xea{left:534.666667pt;}
.x4a{left:536.000000pt;}
.x78{left:537.333333pt;}
.x17c{left:538.666667pt;}
.xd4{left:540.000000pt;}
.x164{left:541.333333pt;}
.x120{left:542.666667pt;}
.x151{left:544.000000pt;}
.x15d{left:545.333333pt;}
.x52{left:546.666667pt;}
.xa0{left:548.000000pt;}
.x111{left:549.333333pt;}
.x74{left:550.666667pt;}
.x133{left:552.000000pt;}
.x40{left:553.333333pt;}
.x73{left:554.666667pt;}
.x9a{left:556.000000pt;}
.xf1{left:557.333333pt;}
.x121{left:558.666667pt;}
.x112{left:560.000000pt;}
.x15b{left:561.333333pt;}
.xc0{left:562.666667pt;}
.xb7{left:564.000000pt;}
.x10d{left:565.333333pt;}
.x14d{left:566.666667pt;}
.x55{left:568.000000pt;}
.x71{left:569.333333pt;}
.xd8{left:570.666667pt;}
.x14e{left:572.000000pt;}
.xa2{left:573.333333pt;}
.x117{left:574.666667pt;}
.xd5{left:576.000000pt;}
.x134{left:577.333333pt;}
.x72{left:578.666667pt;}
.x10e{left:580.000000pt;}
.x179{left:581.333333pt;}
.xc1{left:582.666667pt;}
.x9c{left:584.000000pt;}
.x10c{left:585.333333pt;}
.x9e{left:586.666667pt;}
.x119{left:588.000000pt;}
.x10b{left:589.333333pt;}
.x123{left:590.666667pt;}
.x103{left:592.000000pt;}
.x76{left:593.333333pt;}
.x15f{left:594.666667pt;}
.x159{left:596.000000pt;}
.x163{left:597.333333pt;}
.x144{left:598.666667pt;}
.xa4{left:601.333333pt;}
.x6c{left:602.666667pt;}
.x53{left:604.000000pt;}
.xb8{left:605.333333pt;}
.x130{left:606.666667pt;}
.xf4{left:608.000000pt;}
.x75{left:610.666667pt;}
.x125{left:613.333333pt;}
.x6d{left:614.666667pt;}
.x48{left:616.000000pt;}
.x6f{left:617.333333pt;}
.xc3{left:618.666667pt;}
.x17d{left:620.000000pt;}
.xd1{left:621.333333pt;}
}




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