
    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_05fc86cccd937721e6772e0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_9b2f0f10fa23f11506ebf909.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_db91de6586f6eaad4618b74d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_da42be062d59ac813a0d2842.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_110425d9d3ff3f189d3228b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e8c5fc912e19602e94230e34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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;}
.m3b{transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010800px;}
.ls5{letter-spacing:0.011400px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.012600px;}
.ls6{letter-spacing:0.067800px;}
.ls7{letter-spacing:0.070200px;}
.ls0{letter-spacing:1.453200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.224004px;}
.ws2{word-spacing:-19.152004px;}
.ws1{word-spacing:0.000000px;}
._3{width:1.168800px;}
._2{width:11.004002px;}
._0{width:12.228002px;}
._1{width:34.034407px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000014px;}
.y0{bottom:0.000000px;}
.y1af{bottom:114.326035px;}
.y15a{bottom:114.686035px;}
.y1f3{bottom:114.731035px;}
.y218{bottom:115.061035px;}
.y113{bottom:115.436035px;}
.yfc{bottom:115.811036px;}
.y1f{bottom:116.276036px;}
.y90{bottom:117.866036px;}
.y1cd{bottom:126.311038px;}
.y1bd{bottom:126.326038px;}
.y1d9{bottom:126.671038px;}
.y19b{bottom:126.686038px;}
.y21d{bottom:127.031038px;}
.y17b{bottom:127.061038px;}
.y129{bottom:127.076038px;}
.y1ca{bottom:137.936040px;}
.y1dd{bottom:138.296040px;}
.y16b{bottom:138.656040px;}
.y112{bottom:139.031040px;}
.y233{bottom:139.856040px;}
.y25c{bottom:140.156040px;}
.y40{bottom:141.056041px;}
.y8f{bottom:141.461041px;}
.ybd{bottom:141.476041px;}
.y79{bottom:141.821041px;}
.y1ae{bottom:149.921042px;}
.y159{bottom:150.281042px;}
.y19a{bottom:150.296042px;}
.y1f2{bottom:150.326042px;}
.yfb{bottom:151.406043px;}
.y24b{bottom:151.841043px;}
.y1e{bottom:151.871043px;}
.y1cc{bottom:161.906045px;}
.y1bc{bottom:161.921045px;}
.y220{bottom:162.266045px;}
.y1d8{bottom:162.281045px;}
.y1fe{bottom:162.311045px;}
.y144{bottom:162.626045px;}
.y17a{bottom:162.656045px;}
.y128{bottom:162.671045px;}
.y25b{bottom:163.751045px;}
.ye0{bottom:163.841045px;}
.y3f{bottom:164.651045px;}
.ycb{bottom:164.666045px;}
.y8e{bottom:165.056045px;}
.y78{bottom:165.431045px;}
.y1c9{bottom:173.531047px;}
.y199{bottom:173.891047px;}
.y16a{bottom:174.251047px;}
.y217{bottom:174.266047px;}
.y111{bottom:174.626047px;}
.y24a{bottom:175.436047px;}
.y232{bottom:175.451047px;}
.ybc{bottom:177.071048px;}
.y1ad{bottom:185.516050px;}
.y158{bottom:185.876050px;}
.y20b{bottom:185.891050px;}
.y1fd{bottom:185.906050px;}
.y213{bottom:186.251050px;}
.yfa{bottom:187.001050px;}
.y25a{bottom:187.361050px;}
.ydf{bottom:187.436050px;}
.y5d{bottom:187.811050px;}
.y8d{bottom:188.651050px;}
.y77{bottom:189.026050px;}
.y1da{bottom:197.501052px;}
.y1bb{bottom:197.516052px;}
.y216{bottom:197.861052px;}
.y143{bottom:198.221052px;}
.y21c{bottom:198.236052px;}
.y127{bottom:198.266052px;}
.y231{bottom:199.061052px;}
.y3e{bottom:200.246052px;}
.yca{bottom:200.261052px;}
.ybb{bottom:200.666053px;}
.y1c8{bottom:209.126054px;}
.y198{bottom:209.486054px;}
.y1d1{bottom:209.501054px;}
.y169{bottom:209.846054px;}
.y110{bottom:210.221054px;}
.y259{bottom:210.956055px;}
.y249{bottom:211.046055px;}
.y5c{bottom:211.421055px;}
.y8c{bottom:212.261055px;}
.y76{bottom:212.621055px;}
.y1ac{bottom:221.111057px;}
.y157{bottom:221.471057px;}
.y1fc{bottom:221.501057px;}
.y1f1{bottom:221.516057px;}
.y21b{bottom:221.831057px;}
.y179{bottom:221.861057px;}
.yf9{bottom:222.611057px;}
.y230{bottom:222.656057px;}
.yde{bottom:223.046057px;}
.y1d{bottom:223.061057px;}
.yba{bottom:224.261057px;}
.y1d0{bottom:233.096059px;}
.y1ba{bottom:233.111059px;}
.y21f{bottom:233.456059px;}
.y215{bottom:233.471059px;}
.y142{bottom:233.816059px;}
.y10f{bottom:233.831059px;}
.y126{bottom:233.861059px;}
.y248{bottom:234.641059px;}
.y5b{bottom:235.016059px;}
.y3d{bottom:235.841060px;}
.y8b{bottom:235.856060px;}
.y75{bottom:236.216060px;}
.y1c7{bottom:244.721061px;}
.y197{bottom:245.081061px;}
.y18a{bottom:245.441061px;}
.y168{bottom:245.456061px;}
.yf8{bottom:246.206062px;}
.y258{bottom:246.566062px;}
.ydd{bottom:246.641062px;}
.y1c{bottom:246.671062px;}
.yb9{bottom:247.871062px;}
.y1ab{bottom:256.706064px;}
.y156{bottom:257.066064px;}
.y209{bottom:257.081064px;}
.y1fb{bottom:257.096064px;}
.y1f0{bottom:257.111064px;}
.y10e{bottom:257.426064px;}
.y178{bottom:257.456064px;}
.y22f{bottom:258.251064px;}
.y270{bottom:258.596064px;}
.y74{bottom:259.826064px;}
.y1cf{bottom:268.691066px;}
.y1b9{bottom:268.706066px;}
.y167{bottom:269.051066px;}
.y21e{bottom:269.066066px;}
.y141{bottom:269.426066px;}
.y125{bottom:269.456066px;}
.y257{bottom:270.161066px;}
.y247{bottom:270.251066px;}
.y1b{bottom:270.266066px;}
.y5a{bottom:270.611067px;}
.y3c{bottom:271.436067px;}
.y8a{bottom:271.451067px;}
.yb8{bottom:271.466067px;}
.y1c6{bottom:280.316068px;}
.y196{bottom:280.676069px;}
.y189{bottom:281.036069px;}
.y212{bottom:281.051069px;}
.yf7{bottom:281.801069px;}
.y22e{bottom:281.861069px;}
.y26f{bottom:282.191069px;}
.ydc{bottom:282.251069px;}
.y73{bottom:283.421069px;}
.y1aa{bottom:292.301071px;}
.y155{bottom:292.661071px;}
.y19e{bottom:292.676071px;}
.y1fa{bottom:292.691071px;}
.y1ef{bottom:292.706071px;}
.y10d{bottom:293.021071px;}
.y210{bottom:293.036071px;}
.y177{bottom:293.066071px;}
.y246{bottom:293.846071px;}
.ya2{bottom:295.046071px;}
.y214{bottom:304.286073px;}
.y1b8{bottom:304.301073px;}
.y166{bottom:304.661073px;}
.y124{bottom:305.051073px;}
.y22d{bottom:305.456073px;}
.y256{bottom:305.771074px;}
.ydb{bottom:305.846074px;}
.y1a{bottom:305.861074px;}
.y59{bottom:306.206074px;}
.y3b{bottom:307.031074px;}
.y89{bottom:307.046074px;}
.yb7{bottom:307.061074px;}
.y1c5{bottom:315.911076px;}
.y195{bottom:316.271076px;}
.y1e2{bottom:316.286076px;}
.y188{bottom:316.631076px;}
.y176{bottom:316.661076px;}
.yf6{bottom:317.396076px;}
.y26e{bottom:317.786076px;}
.ya1{bottom:318.641076px;}
.yc9{bottom:318.656076px;}
.y72{bottom:319.031076px;}
.y1a9{bottom:327.896078px;}
.y154{bottom:328.256078px;}
.y1f9{bottom:328.301078px;}
.y10c{bottom:328.616078px;}
.y140{bottom:328.631078px;}
.y255{bottom:329.366078px;}
.y245{bottom:329.456078px;}
.y19{bottom:329.471078px;}
.y3a{bottom:330.626079px;}
.yb6{bottom:330.656079px;}
.y1e1{bottom:339.881080px;}
.y1b7{bottom:339.896080px;}
.y123{bottom:340.646081px;}
.y22c{bottom:341.051081px;}
.y26d{bottom:341.396081px;}
.yda{bottom:341.441081px;}
.y58{bottom:341.801081px;}
.ya0{bottom:342.251081px;}
.y71{bottom:342.626081px;}
.y1c4{bottom:351.506083px;}
.y194{bottom:351.866083px;}
.y205{bottom:351.881083px;}
.y1f8{bottom:351.896083px;}
.y13f{bottom:352.226083px;}
.y175{bottom:352.256083px;}
.yf5{bottom:352.991083px;}
.y244{bottom:353.051083px;}
.y18{bottom:353.066083px;}
.y39{bottom:354.236083px;}
.yb5{bottom:354.266083px;}
.y1a8{bottom:363.491085px;}
.y153{bottom:363.851085px;}
.y165{bottom:363.866085px;}
.y1ee{bottom:363.896085px;}
.y21a{bottom:364.226085px;}
.y254{bottom:364.961085px;}
.y26c{bottom:364.991085px;}
.y57{bottom:365.411085px;}
.y9f{bottom:365.846086px;}
.y70{bottom:366.221086px;}
.y1e0{bottom:375.476087px;}
.y1b6{bottom:375.491087px;}
.y122{bottom:376.241088px;}
.y22b{bottom:376.646088px;}
.yd9{bottom:377.036088px;}
.y38{bottom:377.831088px;}
.yc8{bottom:377.846088px;}
.yb4{bottom:377.861088px;}
.y1c3{bottom:387.101090px;}
.y164{bottom:387.461090px;}
.y1f7{bottom:387.491090px;}
.y187{bottom:387.821090px;}
.y13e{bottom:387.836090px;}
.y174{bottom:387.851090px;}
.y253{bottom:388.571090px;}
.yf4{bottom:388.601090px;}
.y243{bottom:388.646090px;}
.y17{bottom:388.661090px;}
.y56{bottom:389.006090px;}
.y6f{bottom:389.816090px;}
.y1a7{bottom:399.086092px;}
.y1ce{bottom:399.101092px;}
.y152{bottom:399.446092px;}
.y1ed{bottom:399.491092px;}
.y10b{bottom:399.806092px;}
.y22a{bottom:400.256092px;}
.y26b{bottom:400.601093px;}
.y9e{bottom:401.441093px;}
.y1df{bottom:411.071095px;}
.y1b5{bottom:411.086095px;}
.y13d{bottom:411.431095px;}
.y121{bottom:411.836095px;}
.y252{bottom:412.166095px;}
.yf3{bottom:412.196095px;}
.y242{bottom:412.241095px;}
.y16{bottom:412.256095px;}
.yd8{bottom:412.631095px;}
.y37{bottom:413.426095px;}
.yb3{bottom:413.456095px;}
.y88{bottom:413.831095px;}
.y1c2{bottom:422.696097px;}
.y193{bottom:423.056097px;}
.y163{bottom:423.071097px;}
.y1f6{bottom:423.086097px;}
.y20f{bottom:423.416097px;}
.y186{bottom:423.431097px;}
.y173{bottom:423.446097px;}
.y229{bottom:423.851097px;}
.y26a{bottom:424.196097px;}
.y55{bottom:424.601097px;}
.yc7{bottom:425.036097px;}
.y1a6{bottom:434.681099px;}
.y1cb{bottom:434.696099px;}
.y151{bottom:435.041099px;}
.y1ec{bottom:435.086099px;}
.y10a{bottom:435.401099px;}
.y241{bottom:435.851100px;}
.y15{bottom:435.866100px;}
.y6e{bottom:437.021100px;}
.y9d{bottom:437.036100px;}
.yb2{bottom:437.051100px;}
.y87{bottom:437.426100px;}
.y162{bottom:446.666102px;}
.y1b4{bottom:446.681102px;}
.y13c{bottom:447.026102px;}
.y172{bottom:447.041102px;}
.y120{bottom:447.431102px;}
.y251{bottom:447.776102px;}
.yf2{bottom:447.791102px;}
.y54{bottom:448.211102px;}
.yd7{bottom:448.226102px;}
.yc6{bottom:448.646102px;}
.y36{bottom:449.021102px;}
.y1c1{bottom:458.291104px;}
.y192{bottom:458.651104px;}
.y1d4{bottom:458.666104px;}
.y1f5{bottom:458.681104px;}
.y20e{bottom:459.026104px;}
.y228{bottom:459.446104px;}
.y14{bottom:459.461104px;}
.y269{bottom:459.806104px;}
.y6d{bottom:460.616105px;}
.y9c{bottom:460.631105px;}
.yb1{bottom:460.646105px;}
.y86{bottom:461.036105px;}
.y1a5{bottom:470.276106px;}
.y200{bottom:470.291106px;}
.y150{bottom:470.636107px;}
.y171{bottom:470.651107px;}
.y109{bottom:470.996107px;}
.y250{bottom:471.371107px;}
.y53{bottom:471.806107px;}
.yc5{bottom:472.241107px;}
.y35{bottom:472.631107px;}
.y1d3{bottom:482.261109px;}
.y161{bottom:482.276109px;}
.y13b{bottom:482.621109px;}
.y11f{bottom:483.026109px;}
.y13{bottom:483.056109px;}
.yf1{bottom:483.386109px;}
.y268{bottom:483.401109px;}
.yd6{bottom:483.821109px;}
.y6c{bottom:484.211109px;}
.y9b{bottom:484.241109px;}
.yb0{bottom:484.256109px;}
.y85{bottom:484.631109px;}
.y1c0{bottom:493.886111px;}
.y170{bottom:494.246111px;}
.y1d7{bottom:494.261111px;}
.y240{bottom:495.056111px;}
.y34{bottom:496.226112px;}
.y160{bottom:505.871114px;}
.y1f4{bottom:505.886114px;}
.y14f{bottom:506.231114px;}
.y1eb{bottom:506.276114px;}
.y108{bottom:506.591114px;}
.y12{bottom:506.651114px;}
.y24f{bottom:506.981114px;}
.yf0{bottom:506.996114px;}
.y52{bottom:507.401114px;}
.yd5{bottom:507.431114px;}
.y6b{bottom:507.821114px;}
.y9a{bottom:507.836114px;}
.yaf{bottom:507.851114px;}
.y84{bottom:508.226114px;}
.y1d2{bottom:517.856116px;}
.y1b3{bottom:517.871116px;}
.y185{bottom:518.216116px;}
.y13a{bottom:518.231116px;}
.y11e{bottom:518.621116px;}
.y23f{bottom:518.651116px;}
.y267{bottom:519.011116px;}
.y1bf{bottom:529.481118px;}
.y16f{bottom:529.841118px;}
.y208{bottom:529.856118px;}
.y11{bottom:530.261118px;}
.y24e{bottom:530.576119px;}
.yef{bottom:530.591119px;}
.y51{bottom:531.011119px;}
.yd4{bottom:531.026119px;}
.y6a{bottom:531.416119px;}
.yc4{bottom:531.431119px;}
.y33{bottom:531.821119px;}
.y15f{bottom:541.466121px;}
.y139{bottom:541.826121px;}
.y1ea{bottom:541.871121px;}
.y107{bottom:542.186121px;}
.y227{bottom:542.246121px;}
.y266{bottom:542.606121px;}
.y99{bottom:543.431121px;}
.yae{bottom:543.446121px;}
.y1d6{bottom:553.451123px;}
.y1b2{bottom:553.466123px;}
.y184{bottom:553.811123px;}
.y10{bottom:553.856123px;}
.y11d{bottom:554.216123px;}
.y23e{bottom:554.246123px;}
.y50{bottom:554.606123px;}
.yc3{bottom:555.026123px;}
.y32{bottom:555.416123px;}
.y83{bottom:555.431123px;}
.y1be{bottom:565.076125px;}
.y16e{bottom:565.436125px;}
.y20a{bottom:565.451125px;}
.y226{bottom:565.856126px;}
.yee{bottom:566.186126px;}
.yd3{bottom:566.621126px;}
.y69{bottom:567.026126px;}
.yad{bottom:567.041126px;}
.y15e{bottom:577.061128px;}
.y1a4{bottom:577.076128px;}
.y138{bottom:577.421128px;}
.y219{bottom:577.436128px;}
.y1e9{bottom:577.466128px;}
.y106{bottom:577.796128px;}
.y23d{bottom:577.856128px;}
.y265{bottom:578.201128px;}
.yc2{bottom:578.636128px;}
.y31{bottom:579.026128px;}
.y203{bottom:589.046130px;}
.y1b1{bottom:589.061130px;}
.y183{bottom:589.421130px;}
.yf{bottom:589.451130px;}
.y24d{bottom:589.781130px;}
.y11c{bottom:589.811130px;}
.y4f{bottom:590.216130px;}
.y68{bottom:590.621131px;}
.y98{bottom:590.636131px;}
.y1a3{bottom:600.671133px;}
.y191{bottom:601.031133px;}
.y16d{bottom:601.046133px;}
.y105{bottom:601.391133px;}
.y23c{bottom:601.451133px;}
.yed{bottom:601.796133px;}
.y264{bottom:601.811133px;}
.yd2{bottom:602.216133px;}
.yc1{bottom:602.231133px;}
.y30{bottom:602.621133px;}
.y15d{bottom:612.656135px;}
.y1b0{bottom:612.671135px;}
.y14e{bottom:613.016135px;}
.y137{bottom:613.031135px;}
.ye{bottom:613.046135px;}
.y4e{bottom:613.811135px;}
.y67{bottom:614.216135px;}
.y97{bottom:614.231135px;}
.yac{bottom:614.246135px;}
.y82{bottom:614.621135px;}
.y16c{bottom:624.641137px;}
.y207{bottom:624.656137px;}
.y225{bottom:625.046137px;}
.yec{bottom:625.391137px;}
.y11b{bottom:625.406137px;}
.yd1{bottom:625.826138px;}
.y2f{bottom:626.216138px;}
.y1a2{bottom:636.266140px;}
.y136{bottom:636.626140px;}
.yd{bottom:636.641140px;}
.y104{bottom:636.986140px;}
.y23b{bottom:637.046140px;}
.y66{bottom:637.811140px;}
.yc0{bottom:637.826140px;}
.yab{bottom:637.841140px;}
.y81{bottom:638.216140px;}
.y15c{bottom:648.251142px;}
.y1de{bottom:648.266142px;}
.y182{bottom:648.611142px;}
.y14d{bottom:648.626142px;}
.y1e8{bottom:648.656142px;}
.y24c{bottom:648.986142px;}
.y4d{bottom:649.406142px;}
.yd0{bottom:649.421142px;}
.y2e{bottom:649.811142px;}
.y96{bottom:649.826142px;}
.y202{bottom:660.236144px;}
.yc{bottom:660.251144px;}
.yeb{bottom:660.986145px;}
.y263{bottom:661.001145px;}
.y11a{bottom:661.016145px;}
.y65{bottom:661.421145px;}
.y80{bottom:661.826145px;}
.y1a1{bottom:671.861147px;}
.y14c{bottom:672.221147px;}
.y135{bottom:672.236147px;}
.y224{bottom:672.251147px;}
.y103{bottom:672.581147px;}
.y4c{bottom:673.016147px;}
.y2d{bottom:673.421147px;}
.yaa{bottom:673.436147px;}
.yb{bottom:683.846149px;}
.y181{bottom:684.206149px;}
.y20d{bottom:684.221149px;}
.y1e7{bottom:684.251149px;}
.yea{bottom:684.596149px;}
.y119{bottom:684.611149px;}
.y64{bottom:685.016149px;}
.y7f{bottom:685.421149px;}
.y134{bottom:695.831152px;}
.y204{bottom:695.846152px;}
.y262{bottom:696.596152px;}
.y4b{bottom:696.611152px;}
.y2c{bottom:697.016152px;}
.ya9{bottom:697.031152px;}
.y1a0{bottom:707.456154px;}
.y190{bottom:707.816154px;}
.y14b{bottom:707.831154px;}
.y223{bottom:707.846154px;}
.ye9{bottom:708.191154px;}
.y23a{bottom:708.236154px;}
.y63{bottom:708.611154px;}
.ybf{bottom:708.626154px;}
.y7e{bottom:709.016154px;}
.ya{bottom:719.441156px;}
.y180{bottom:719.801156px;}
.y1e6{bottom:719.846156px;}
.y118{bottom:720.206156px;}
.y95{bottom:720.626157px;}
.y14a{bottom:731.426159px;}
.y133{bottom:731.441159px;}
.y102{bottom:731.786159px;}
.y239{bottom:731.831159px;}
.y261{bottom:732.191159px;}
.y62{bottom:732.206159px;}
.y4a{bottom:732.221159px;}
.y2b{bottom:732.611159px;}
.y19f{bottom:743.051161px;}
.y18f{bottom:743.411161px;}
.y1dc{bottom:743.426161px;}
.y222{bottom:743.441161px;}
.ye8{bottom:743.801161px;}
.y117{bottom:743.816161px;}
.y94{bottom:744.221161px;}
.ya8{bottom:744.236161px;}
.y132{bottom:755.036163px;}
.y19d{bottom:755.051163px;}
.y17f{bottom:755.396163px;}
.y211{bottom:755.411163px;}
.y238{bottom:755.441163px;}
.y260{bottom:755.801164px;}
.y49{bottom:755.816164px;}
.y7d{bottom:756.221164px;}
.y149{bottom:767.021166px;}
.y221{bottom:767.036166px;}
.y101{bottom:767.381166px;}
.ye7{bottom:767.396166px;}
.y116{bottom:767.411166px;}
.ybe{bottom:767.816166px;}
.ya7{bottom:767.831166px;}
.y2a{bottom:768.221166px;}
.y19c{bottom:778.646168px;}
.y18e{bottom:779.006168px;}
.y20c{bottom:779.021168px;}
.y237{bottom:779.036168px;}
.y25f{bottom:779.396168px;}
.y61{bottom:779.411168px;}
.y7c{bottom:779.816168px;}
.y9{bottom:790.631171px;}
.y131{bottom:790.646171px;}
.y17e{bottom:790.991171px;}
.y1e5{bottom:791.036171px;}
.y48{bottom:791.411171px;}
.ycf{bottom:791.426171px;}
.y29{bottom:791.816171px;}
.y148{bottom:802.616173px;}
.y1db{bottom:802.631173px;}
.y100{bottom:802.991173px;}
.ye6{bottom:803.006173px;}
.y93{bottom:803.411173px;}
.ya6{bottom:803.426173px;}
.y130{bottom:814.241175px;}
.y1ff{bottom:814.601175px;}
.y18d{bottom:814.616175px;}
.y236{bottom:814.631175px;}
.y25e{bottom:814.991175px;}
.y47{bottom:815.006175px;}
.yce{bottom:815.021175px;}
.y28{bottom:815.411175px;}
.y8{bottom:826.226178px;}
.y201{bottom:826.241178px;}
.yff{bottom:826.586178px;}
.ye5{bottom:826.601178px;}
.y115{bottom:826.616178px;}
.y1e4{bottom:826.631178px;}
.y92{bottom:827.006178px;}
.y147{bottom:838.211180px;}
.y235{bottom:838.226180px;}
.y25d{bottom:838.601180px;}
.y46{bottom:838.616180px;}
.y27{bottom:839.006180px;}
.ya5{bottom:839.021180px;}
.y12f{bottom:849.836182px;}
.y17d{bottom:850.196182px;}
.y114{bottom:850.211182px;}
.y60{bottom:850.601183px;}
.y91{bottom:850.616183px;}
.y7{bottom:861.821185px;}
.y234{bottom:861.836185px;}
.ye4{bottom:862.196185px;}
.y45{bottom:862.211185px;}
.y1e3{bottom:862.226185px;}
.y7b{bottom:862.601185px;}
.y26{bottom:862.616185px;}
.y146{bottom:873.806187px;}
.y18c{bottom:873.821187px;}
.y5f{bottom:874.211187px;}
.ycd{bottom:874.226187px;}
.y12e{bottom:885.431189px;}
.yfe{bottom:885.791190px;}
.ye3{bottom:885.806190px;}
.y25{bottom:886.211190px;}
.y6{bottom:897.416192px;}
.y1d5{bottom:897.431192px;}
.y44{bottom:897.806192px;}
.ycc{bottom:897.821192px;}
.ye2{bottom:909.401194px;}
.y145{bottom:909.416194px;}
.y7a{bottom:909.806194px;}
.ya4{bottom:909.821194px;}
.y12d{bottom:921.026197px;}
.yfd{bottom:921.401197px;}
.y24{bottom:921.806197px;}
.y5{bottom:933.011199px;}
.y18b{bottom:933.026199px;}
.y43{bottom:933.401199px;}
.ya3{bottom:933.416199px;}
.ye1{bottom:944.996201px;}
.y17c{bottom:945.011201px;}
.y23{bottom:945.416201px;}
.y12c{bottom:956.621204px;}
.y42{bottom:956.996204px;}
.y5e{bottom:957.011204px;}
.y4{bottom:968.606206px;}
.y206{bottom:968.621206px;}
.y22{bottom:969.011206px;}
.y41{bottom:980.606209px;}
.y12b{bottom:992.216211px;}
.y21{bottom:992.606211px;}
.y3{bottom:1004.201213px;}
.y15b{bottom:1004.216213px;}
.y20{bottom:1016.201216px;}
.y12a{bottom:1027.811218px;}
.y2{bottom:1039.811220px;}
.y1{bottom:1063.406225px;}
.h2{height:54.000011px;}
.h1{height:76.824015px;}
.h3{height:78.048016px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000022px;}
.x4d{left:112.785023px;}
.x1b{left:137.805028px;}
.x2c{left:140.115028px;}
.x4{left:143.805029px;}
.x38{left:145.875029px;}
.x7{left:151.004880px;}
.xd{left:156.795031px;}
.x24{left:162.000032px;}
.x41{left:163.230033px;}
.x29{left:165.030033px;}
.x1d{left:168.679684px;}
.x33{left:180.810036px;}
.x40{left:184.170037px;}
.x44{left:186.150037px;}
.x17{left:190.170038px;}
.x22{left:197.055039px;}
.x1c{left:207.915042px;}
.x26{left:214.620043px;}
.xe{left:228.045046px;}
.x3a{left:229.590046px;}
.x50{left:236.047847px;}
.x4e{left:269.415054px;}
.x4c{left:272.895055px;}
.x19{left:279.735056px;}
.x3{left:285.525057px;}
.x3b{left:290.625058px;}
.x39{left:292.290058px;}
.x2a{left:293.700059px;}
.x34{left:295.425059px;}
.x25{left:299.874060px;}
.x27{left:309.972662px;}
.x31{left:330.870066px;}
.x2d{left:334.320067px;}
.x1a{left:340.770068px;}
.x4b{left:356.145071px;}
.x23{left:378.711976px;}
.x48{left:381.690076px;}
.x12{left:388.095078px;}
.x35{left:389.580078px;}
.x42{left:394.440079px;}
.x3c{left:413.820083px;}
.xc{left:455.818441px;}
.x8{left:457.541042px;}
.x2f{left:458.640092px;}
.x9{left:461.540192px;}
.x30{left:473.340095px;}
.x11{left:475.710095px;}
.x43{left:480.885096px;}
.x15{left:485.730097px;}
.x49{left:494.955099px;}
.x1e{left:504.483551px;}
.x3d{left:521.100104px;}
.x3e{left:525.885105px;}
.x2{left:532.185106px;}
.x4a{left:540.375108px;}
.x16{left:556.965111px;}
.x47{left:564.810113px;}
.x32{left:608.160122px;}
.x3f{left:619.170124px;}
.x1f{left:627.126125px;}
.x45{left:637.620128px;}
.x13{left:651.210130px;}
.x36{left:658.035132px;}
.x2e{left:663.180133px;}
.x2b{left:667.665134px;}
.x14{left:712.245142px;}
.x21{left:722.895145px;}
.x37{left:724.290145px;}
.xa{left:728.551946px;}
.xf{left:729.915146px;}
.xb{left:736.605147px;}
.x18{left:743.175149px;}
.x46{left:744.900149px;}
.x5{left:749.065650px;}
.x6{left:753.064651px;}
.x28{left:758.160152px;}
.x20{left:759.436652px;}
.x10{left:785.145157px;}
.x4f{left:796.845159px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009600pt;}
.ls5{letter-spacing:0.010133pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.011200pt;}
.ls6{letter-spacing:0.060267pt;}
.ls7{letter-spacing:0.062400pt;}
.ls0{letter-spacing:1.291734pt;}
.ws0{word-spacing:-17.088003pt;}
.ws2{word-spacing:-17.024003pt;}
.ws1{word-spacing:0.000000pt;}
._3{width:1.038934pt;}
._2{width:9.781335pt;}
._0{width:10.869336pt;}
._1{width:30.252806pt;}
.fs0{font-size:64.000013pt;}
.y0{bottom:0.000000pt;}
.y1af{bottom:101.623142pt;}
.y15a{bottom:101.943143pt;}
.y1f3{bottom:101.983143pt;}
.y218{bottom:102.276476pt;}
.y113{bottom:102.609809pt;}
.yfc{bottom:102.943143pt;}
.y1f{bottom:103.356476pt;}
.y90{bottom:104.769810pt;}
.y1cd{bottom:112.276478pt;}
.y1bd{bottom:112.289811pt;}
.y1d9{bottom:112.596478pt;}
.y19b{bottom:112.609811pt;}
.y21d{bottom:112.916478pt;}
.y17b{bottom:112.943145pt;}
.y129{bottom:112.956478pt;}
.y1ca{bottom:122.609813pt;}
.y1dd{bottom:122.929813pt;}
.y16b{bottom:123.249813pt;}
.y112{bottom:123.583147pt;}
.y233{bottom:124.316480pt;}
.y25c{bottom:124.583147pt;}
.y40{bottom:125.383147pt;}
.y8f{bottom:125.743147pt;}
.ybd{bottom:125.756481pt;}
.y79{bottom:126.063147pt;}
.y1ae{bottom:133.263149pt;}
.y159{bottom:133.583149pt;}
.y19a{bottom:133.596482pt;}
.y1f2{bottom:133.623149pt;}
.yfb{bottom:134.583149pt;}
.y24b{bottom:134.969816pt;}
.y1e{bottom:134.996482pt;}
.y1cc{bottom:143.916484pt;}
.y1bc{bottom:143.929818pt;}
.y220{bottom:144.236484pt;}
.y1d8{bottom:144.249818pt;}
.y1fe{bottom:144.276484pt;}
.y144{bottom:144.556484pt;}
.y17a{bottom:144.583151pt;}
.y128{bottom:144.596484pt;}
.y25b{bottom:145.556485pt;}
.ye0{bottom:145.636485pt;}
.y3f{bottom:146.356485pt;}
.ycb{bottom:146.369818pt;}
.y8e{bottom:146.716485pt;}
.y78{bottom:147.049818pt;}
.y1c9{bottom:154.249820pt;}
.y199{bottom:154.569820pt;}
.y16a{bottom:154.889820pt;}
.y217{bottom:154.903153pt;}
.y111{bottom:155.223153pt;}
.y24a{bottom:155.943153pt;}
.y232{bottom:155.956487pt;}
.ybc{bottom:157.396487pt;}
.y1ad{bottom:164.903155pt;}
.y158{bottom:165.223155pt;}
.y20b{bottom:165.236489pt;}
.y1fd{bottom:165.249822pt;}
.y213{bottom:165.556489pt;}
.yfa{bottom:166.223155pt;}
.y25a{bottom:166.543155pt;}
.ydf{bottom:166.609822pt;}
.y5d{bottom:166.943156pt;}
.y8d{bottom:167.689822pt;}
.y77{bottom:168.023156pt;}
.y1da{bottom:175.556491pt;}
.y1bb{bottom:175.569824pt;}
.y216{bottom:175.876491pt;}
.y143{bottom:176.196491pt;}
.y21c{bottom:176.209824pt;}
.y127{bottom:176.236491pt;}
.y231{bottom:176.943158pt;}
.y3e{bottom:177.996491pt;}
.yca{bottom:178.009824pt;}
.ybb{bottom:178.369824pt;}
.y1c8{bottom:185.889826pt;}
.y198{bottom:186.209826pt;}
.y1d1{bottom:186.223159pt;}
.y169{bottom:186.529826pt;}
.y110{bottom:186.863160pt;}
.y259{bottom:187.516493pt;}
.y249{bottom:187.596493pt;}
.y5c{bottom:187.929826pt;}
.y8c{bottom:188.676493pt;}
.y76{bottom:188.996493pt;}
.y1ac{bottom:196.543161pt;}
.y157{bottom:196.863162pt;}
.y1fc{bottom:196.889828pt;}
.y1f1{bottom:196.903162pt;}
.y21b{bottom:197.183162pt;}
.y179{bottom:197.209828pt;}
.yf9{bottom:197.876495pt;}
.y230{bottom:197.916495pt;}
.yde{bottom:198.263162pt;}
.y1d{bottom:198.276495pt;}
.yba{bottom:199.343162pt;}
.y1d0{bottom:207.196497pt;}
.y1ba{bottom:207.209830pt;}
.y21f{bottom:207.516497pt;}
.y215{bottom:207.529830pt;}
.y142{bottom:207.836497pt;}
.y10f{bottom:207.849830pt;}
.y126{bottom:207.876497pt;}
.y248{bottom:208.569831pt;}
.y5b{bottom:208.903164pt;}
.y3d{bottom:209.636497pt;}
.y8b{bottom:209.649831pt;}
.y75{bottom:209.969831pt;}
.y1c7{bottom:217.529832pt;}
.y197{bottom:217.849832pt;}
.y18a{bottom:218.169832pt;}
.y168{bottom:218.183166pt;}
.yf8{bottom:218.849833pt;}
.y258{bottom:219.169833pt;}
.ydd{bottom:219.236499pt;}
.y1c{bottom:219.263166pt;}
.yb9{bottom:220.329833pt;}
.y1ab{bottom:228.183168pt;}
.y156{bottom:228.503168pt;}
.y209{bottom:228.516501pt;}
.y1fb{bottom:228.529835pt;}
.y1f0{bottom:228.543168pt;}
.y10e{bottom:228.823168pt;}
.y178{bottom:228.849835pt;}
.y22f{bottom:229.556501pt;}
.y270{bottom:229.863168pt;}
.y74{bottom:230.956502pt;}
.y1cf{bottom:238.836503pt;}
.y1b9{bottom:238.849837pt;}
.y167{bottom:239.156503pt;}
.y21e{bottom:239.169837pt;}
.y141{bottom:239.489837pt;}
.y125{bottom:239.516503pt;}
.y257{bottom:240.143170pt;}
.y247{bottom:240.223170pt;}
.y1b{bottom:240.236504pt;}
.y5a{bottom:240.543170pt;}
.y3c{bottom:241.276504pt;}
.y8a{bottom:241.289837pt;}
.yb8{bottom:241.303170pt;}
.y1c6{bottom:249.169839pt;}
.y196{bottom:249.489839pt;}
.y189{bottom:249.809839pt;}
.y212{bottom:249.823172pt;}
.yf7{bottom:250.489839pt;}
.y22e{bottom:250.543172pt;}
.y26f{bottom:250.836506pt;}
.ydc{bottom:250.889839pt;}
.y73{bottom:251.929839pt;}
.y1aa{bottom:259.823174pt;}
.y155{bottom:260.143174pt;}
.y19e{bottom:260.156507pt;}
.y1fa{bottom:260.169841pt;}
.y1ef{bottom:260.183174pt;}
.y10d{bottom:260.463174pt;}
.y210{bottom:260.476508pt;}
.y177{bottom:260.503174pt;}
.y246{bottom:261.196508pt;}
.ya2{bottom:262.263175pt;}
.y214{bottom:270.476510pt;}
.y1b8{bottom:270.489843pt;}
.y166{bottom:270.809843pt;}
.y124{bottom:271.156510pt;}
.y22d{bottom:271.516510pt;}
.y256{bottom:271.796510pt;}
.ydb{bottom:271.863177pt;}
.y1a{bottom:271.876510pt;}
.y59{bottom:272.183177pt;}
.y3b{bottom:272.916510pt;}
.y89{bottom:272.929843pt;}
.yb7{bottom:272.943177pt;}
.y1c5{bottom:280.809845pt;}
.y195{bottom:281.129845pt;}
.y1e2{bottom:281.143178pt;}
.y188{bottom:281.449845pt;}
.y176{bottom:281.476512pt;}
.yf6{bottom:282.129845pt;}
.y26e{bottom:282.476512pt;}
.ya1{bottom:283.236512pt;}
.yc9{bottom:283.249845pt;}
.y72{bottom:283.583179pt;}
.y1a9{bottom:291.463180pt;}
.y154{bottom:291.783180pt;}
.y1f9{bottom:291.823180pt;}
.y10c{bottom:292.103181pt;}
.y140{bottom:292.116514pt;}
.y255{bottom:292.769847pt;}
.y245{bottom:292.849847pt;}
.y19{bottom:292.863181pt;}
.y3a{bottom:293.889848pt;}
.yb6{bottom:293.916514pt;}
.y1e1{bottom:302.116516pt;}
.y1b7{bottom:302.129849pt;}
.y123{bottom:302.796516pt;}
.y22c{bottom:303.156516pt;}
.y26d{bottom:303.463183pt;}
.yda{bottom:303.503183pt;}
.y58{bottom:303.823183pt;}
.ya0{bottom:304.223183pt;}
.y71{bottom:304.556516pt;}
.y1c4{bottom:312.449851pt;}
.y194{bottom:312.769851pt;}
.y205{bottom:312.783185pt;}
.y1f8{bottom:312.796518pt;}
.y13f{bottom:313.089851pt;}
.y175{bottom:313.116518pt;}
.yf5{bottom:313.769852pt;}
.y244{bottom:313.823185pt;}
.y18{bottom:313.836518pt;}
.y39{bottom:314.876518pt;}
.yb5{bottom:314.903185pt;}
.y1a8{bottom:323.103187pt;}
.y153{bottom:323.423187pt;}
.y165{bottom:323.436520pt;}
.y1ee{bottom:323.463187pt;}
.y21a{bottom:323.756520pt;}
.y254{bottom:324.409854pt;}
.y26c{bottom:324.436520pt;}
.y57{bottom:324.809854pt;}
.y9f{bottom:325.196521pt;}
.y70{bottom:325.529854pt;}
.y1e0{bottom:333.756522pt;}
.y1b6{bottom:333.769856pt;}
.y122{bottom:334.436522pt;}
.y22b{bottom:334.796522pt;}
.yd9{bottom:335.143189pt;}
.y38{bottom:335.849856pt;}
.yc8{bottom:335.863189pt;}
.yb4{bottom:335.876523pt;}
.y1c3{bottom:344.089858pt;}
.y164{bottom:344.409858pt;}
.y1f7{bottom:344.436524pt;}
.y187{bottom:344.729858pt;}
.y13e{bottom:344.743191pt;}
.y174{bottom:344.756524pt;}
.y253{bottom:345.396525pt;}
.yf4{bottom:345.423191pt;}
.y243{bottom:345.463191pt;}
.y17{bottom:345.476525pt;}
.y56{bottom:345.783191pt;}
.y6f{bottom:346.503191pt;}
.y1a7{bottom:354.743193pt;}
.y1ce{bottom:354.756526pt;}
.y152{bottom:355.063193pt;}
.y1ed{bottom:355.103193pt;}
.y10b{bottom:355.383193pt;}
.y22a{bottom:355.783193pt;}
.y26b{bottom:356.089860pt;}
.y9e{bottom:356.836527pt;}
.y1df{bottom:365.396529pt;}
.y1b5{bottom:365.409862pt;}
.y13d{bottom:365.716529pt;}
.y121{bottom:366.076529pt;}
.y252{bottom:366.369862pt;}
.yf3{bottom:366.396529pt;}
.y242{bottom:366.436529pt;}
.y16{bottom:366.449862pt;}
.yd8{bottom:366.783195pt;}
.y37{bottom:367.489862pt;}
.yb3{bottom:367.516529pt;}
.y88{bottom:367.849862pt;}
.y1c2{bottom:375.729864pt;}
.y193{bottom:376.049864pt;}
.y163{bottom:376.063197pt;}
.y1f6{bottom:376.076531pt;}
.y20f{bottom:376.369864pt;}
.y186{bottom:376.383197pt;}
.y173{bottom:376.396531pt;}
.y229{bottom:376.756531pt;}
.y26a{bottom:377.063198pt;}
.y55{bottom:377.423198pt;}
.yc7{bottom:377.809864pt;}
.y1a6{bottom:386.383199pt;}
.y1cb{bottom:386.396533pt;}
.y151{bottom:386.703199pt;}
.y1ec{bottom:386.743199pt;}
.y10a{bottom:387.023200pt;}
.y241{bottom:387.423200pt;}
.y15{bottom:387.436533pt;}
.y6e{bottom:388.463200pt;}
.y9d{bottom:388.476533pt;}
.yb2{bottom:388.489866pt;}
.y87{bottom:388.823200pt;}
.y162{bottom:397.036535pt;}
.y1b4{bottom:397.049868pt;}
.y13c{bottom:397.356535pt;}
.y172{bottom:397.369868pt;}
.y120{bottom:397.716535pt;}
.y251{bottom:398.023202pt;}
.yf2{bottom:398.036535pt;}
.y54{bottom:398.409868pt;}
.yd7{bottom:398.423202pt;}
.yc6{bottom:398.796535pt;}
.y36{bottom:399.129869pt;}
.y1c1{bottom:407.369870pt;}
.y192{bottom:407.689870pt;}
.y1d4{bottom:407.703204pt;}
.y1f5{bottom:407.716537pt;}
.y20e{bottom:408.023204pt;}
.y228{bottom:408.396537pt;}
.y14{bottom:408.409870pt;}
.y269{bottom:408.716537pt;}
.y6d{bottom:409.436537pt;}
.y9c{bottom:409.449871pt;}
.yb1{bottom:409.463204pt;}
.y86{bottom:409.809871pt;}
.y1a5{bottom:418.023206pt;}
.y200{bottom:418.036539pt;}
.y150{bottom:418.343206pt;}
.y171{bottom:418.356539pt;}
.y109{bottom:418.663206pt;}
.y250{bottom:418.996539pt;}
.y53{bottom:419.383206pt;}
.yc5{bottom:419.769873pt;}
.y35{bottom:420.116539pt;}
.y1d3{bottom:428.676541pt;}
.y161{bottom:428.689875pt;}
.y13b{bottom:428.996541pt;}
.y11f{bottom:429.356541pt;}
.y13{bottom:429.383208pt;}
.yf1{bottom:429.676541pt;}
.y268{bottom:429.689875pt;}
.yd6{bottom:430.063208pt;}
.y6c{bottom:430.409875pt;}
.y9b{bottom:430.436542pt;}
.yb0{bottom:430.449875pt;}
.y85{bottom:430.783208pt;}
.y1c0{bottom:439.009877pt;}
.y170{bottom:439.329877pt;}
.y1d7{bottom:439.343210pt;}
.y240{bottom:440.049877pt;}
.y34{bottom:441.089877pt;}
.y160{bottom:449.663212pt;}
.y1f4{bottom:449.676545pt;}
.y14f{bottom:449.983212pt;}
.y1eb{bottom:450.023212pt;}
.y108{bottom:450.303212pt;}
.y12{bottom:450.356546pt;}
.y24f{bottom:450.649879pt;}
.yf0{bottom:450.663212pt;}
.y52{bottom:451.023212pt;}
.yd5{bottom:451.049879pt;}
.y6b{bottom:451.396546pt;}
.y9a{bottom:451.409879pt;}
.yaf{bottom:451.423212pt;}
.y84{bottom:451.756546pt;}
.y1d2{bottom:460.316548pt;}
.y1b3{bottom:460.329881pt;}
.y185{bottom:460.636548pt;}
.y13a{bottom:460.649881pt;}
.y11e{bottom:460.996548pt;}
.y23f{bottom:461.023214pt;}
.y267{bottom:461.343214pt;}
.y1bf{bottom:470.649883pt;}
.y16f{bottom:470.969883pt;}
.y208{bottom:470.983216pt;}
.y11{bottom:471.343216pt;}
.y24e{bottom:471.623216pt;}
.yef{bottom:471.636550pt;}
.y51{bottom:472.009883pt;}
.yd4{bottom:472.023217pt;}
.y6a{bottom:472.369883pt;}
.yc4{bottom:472.383217pt;}
.y33{bottom:472.729883pt;}
.y15f{bottom:481.303218pt;}
.y139{bottom:481.623218pt;}
.y1ea{bottom:481.663218pt;}
.y107{bottom:481.943219pt;}
.y227{bottom:481.996552pt;}
.y266{bottom:482.316552pt;}
.y99{bottom:483.049885pt;}
.yae{bottom:483.063219pt;}
.y1d6{bottom:491.956554pt;}
.y1b2{bottom:491.969887pt;}
.y184{bottom:492.276554pt;}
.y10{bottom:492.316554pt;}
.y11d{bottom:492.636554pt;}
.y23e{bottom:492.663221pt;}
.y50{bottom:492.983221pt;}
.yc3{bottom:493.356554pt;}
.y32{bottom:493.703221pt;}
.y83{bottom:493.716554pt;}
.y1be{bottom:502.289889pt;}
.y16e{bottom:502.609889pt;}
.y20a{bottom:502.623223pt;}
.y226{bottom:502.983223pt;}
.yee{bottom:503.276556pt;}
.yd3{bottom:503.663223pt;}
.y69{bottom:504.023223pt;}
.yad{bottom:504.036556pt;}
.y15e{bottom:512.943225pt;}
.y1a4{bottom:512.956558pt;}
.y138{bottom:513.263225pt;}
.y219{bottom:513.276558pt;}
.y1e9{bottom:513.303225pt;}
.y106{bottom:513.596558pt;}
.y23d{bottom:513.649892pt;}
.y265{bottom:513.956558pt;}
.yc2{bottom:514.343225pt;}
.y31{bottom:514.689892pt;}
.y203{bottom:523.596560pt;}
.y1b1{bottom:523.609894pt;}
.y183{bottom:523.929894pt;}
.yf{bottom:523.956560pt;}
.y24d{bottom:524.249894pt;}
.y11c{bottom:524.276560pt;}
.y4f{bottom:524.636560pt;}
.y68{bottom:524.996560pt;}
.y98{bottom:525.009894pt;}
.y1a3{bottom:533.929896pt;}
.y191{bottom:534.249896pt;}
.y16d{bottom:534.263229pt;}
.y105{bottom:534.569896pt;}
.y23c{bottom:534.623229pt;}
.yed{bottom:534.929896pt;}
.y264{bottom:534.943229pt;}
.yd2{bottom:535.303229pt;}
.yc1{bottom:535.316563pt;}
.y30{bottom:535.663229pt;}
.y15d{bottom:544.583231pt;}
.y1b0{bottom:544.596564pt;}
.y14e{bottom:544.903231pt;}
.y137{bottom:544.916564pt;}
.ye{bottom:544.929898pt;}
.y4e{bottom:545.609898pt;}
.y67{bottom:545.969898pt;}
.y97{bottom:545.983231pt;}
.yac{bottom:545.996565pt;}
.y82{bottom:546.329898pt;}
.y16c{bottom:555.236567pt;}
.y207{bottom:555.249900pt;}
.y225{bottom:555.596567pt;}
.yec{bottom:555.903233pt;}
.y11b{bottom:555.916567pt;}
.yd1{bottom:556.289900pt;}
.y2f{bottom:556.636567pt;}
.y1a2{bottom:565.569902pt;}
.y136{bottom:565.889902pt;}
.yd{bottom:565.903235pt;}
.y104{bottom:566.209902pt;}
.y23b{bottom:566.263235pt;}
.y66{bottom:566.943236pt;}
.yc0{bottom:566.956569pt;}
.yab{bottom:566.969902pt;}
.y81{bottom:567.303236pt;}
.y15c{bottom:576.223237pt;}
.y1de{bottom:576.236571pt;}
.y182{bottom:576.543237pt;}
.y14d{bottom:576.556571pt;}
.y1e8{bottom:576.583237pt;}
.y24c{bottom:576.876571pt;}
.y4d{bottom:577.249904pt;}
.yd0{bottom:577.263238pt;}
.y2e{bottom:577.609904pt;}
.y96{bottom:577.623238pt;}
.y202{bottom:586.876573pt;}
.yc{bottom:586.889906pt;}
.yeb{bottom:587.543240pt;}
.y263{bottom:587.556573pt;}
.y11a{bottom:587.569906pt;}
.y65{bottom:587.929906pt;}
.y80{bottom:588.289906pt;}
.y1a1{bottom:597.209908pt;}
.y14c{bottom:597.529908pt;}
.y135{bottom:597.543242pt;}
.y224{bottom:597.556575pt;}
.y103{bottom:597.849908pt;}
.y4c{bottom:598.236575pt;}
.y2d{bottom:598.596575pt;}
.yaa{bottom:598.609909pt;}
.yb{bottom:607.863244pt;}
.y181{bottom:608.183244pt;}
.y20d{bottom:608.196577pt;}
.y1e7{bottom:608.223244pt;}
.yea{bottom:608.529911pt;}
.y119{bottom:608.543244pt;}
.y64{bottom:608.903244pt;}
.y7f{bottom:609.263244pt;}
.y134{bottom:618.516579pt;}
.y204{bottom:618.529913pt;}
.y262{bottom:619.196579pt;}
.y4b{bottom:619.209913pt;}
.y2c{bottom:619.569913pt;}
.ya9{bottom:619.583246pt;}
.y1a0{bottom:628.849915pt;}
.y190{bottom:629.169915pt;}
.y14b{bottom:629.183248pt;}
.y223{bottom:629.196581pt;}
.ye9{bottom:629.503248pt;}
.y23a{bottom:629.543248pt;}
.y63{bottom:629.876581pt;}
.ybf{bottom:629.889915pt;}
.y7e{bottom:630.236582pt;}
.ya{bottom:639.503250pt;}
.y180{bottom:639.823250pt;}
.y1e6{bottom:639.863250pt;}
.y118{bottom:640.183250pt;}
.y95{bottom:640.556584pt;}
.y14a{bottom:650.156585pt;}
.y133{bottom:650.169919pt;}
.y102{bottom:650.476586pt;}
.y239{bottom:650.516586pt;}
.y261{bottom:650.836586pt;}
.y62{bottom:650.849919pt;}
.y4a{bottom:650.863252pt;}
.y2b{bottom:651.209919pt;}
.y19f{bottom:660.489921pt;}
.y18f{bottom:660.809921pt;}
.y1dc{bottom:660.823254pt;}
.y222{bottom:660.836588pt;}
.ye8{bottom:661.156588pt;}
.y117{bottom:661.169921pt;}
.y94{bottom:661.529921pt;}
.ya8{bottom:661.543254pt;}
.y132{bottom:671.143256pt;}
.y19d{bottom:671.156590pt;}
.y17f{bottom:671.463256pt;}
.y211{bottom:671.476590pt;}
.y238{bottom:671.503256pt;}
.y260{bottom:671.823256pt;}
.y49{bottom:671.836590pt;}
.y7d{bottom:672.196590pt;}
.y149{bottom:681.796592pt;}
.y221{bottom:681.809925pt;}
.y101{bottom:682.116592pt;}
.ye7{bottom:682.129925pt;}
.y116{bottom:682.143259pt;}
.ybe{bottom:682.503259pt;}
.ya7{bottom:682.516592pt;}
.y2a{bottom:682.863259pt;}
.y19c{bottom:692.129927pt;}
.y18e{bottom:692.449927pt;}
.y20c{bottom:692.463261pt;}
.y237{bottom:692.476594pt;}
.y25f{bottom:692.796594pt;}
.y61{bottom:692.809927pt;}
.y7c{bottom:693.169927pt;}
.y9{bottom:702.783263pt;}
.y131{bottom:702.796596pt;}
.y17e{bottom:703.103263pt;}
.y1e5{bottom:703.143263pt;}
.y48{bottom:703.476596pt;}
.ycf{bottom:703.489929pt;}
.y29{bottom:703.836596pt;}
.y148{bottom:713.436598pt;}
.y1db{bottom:713.449931pt;}
.y100{bottom:713.769932pt;}
.ye6{bottom:713.783265pt;}
.y93{bottom:714.143265pt;}
.ya6{bottom:714.156598pt;}
.y130{bottom:723.769934pt;}
.y1ff{bottom:724.089934pt;}
.y18d{bottom:724.103267pt;}
.y236{bottom:724.116600pt;}
.y25e{bottom:724.436600pt;}
.y47{bottom:724.449934pt;}
.yce{bottom:724.463267pt;}
.y28{bottom:724.809934pt;}
.y8{bottom:734.423269pt;}
.y201{bottom:734.436602pt;}
.yff{bottom:734.743269pt;}
.ye5{bottom:734.756602pt;}
.y115{bottom:734.769936pt;}
.y1e4{bottom:734.783269pt;}
.y92{bottom:735.116602pt;}
.y147{bottom:745.076604pt;}
.y235{bottom:745.089938pt;}
.y25d{bottom:745.423271pt;}
.y46{bottom:745.436605pt;}
.y27{bottom:745.783271pt;}
.ya5{bottom:745.796605pt;}
.y12f{bottom:755.409940pt;}
.y17d{bottom:755.729940pt;}
.y114{bottom:755.743273pt;}
.y60{bottom:756.089940pt;}
.y91{bottom:756.103273pt;}
.y7{bottom:766.063275pt;}
.y234{bottom:766.076609pt;}
.ye4{bottom:766.396609pt;}
.y45{bottom:766.409942pt;}
.y1e3{bottom:766.423275pt;}
.y7b{bottom:766.756609pt;}
.y26{bottom:766.769942pt;}
.y146{bottom:776.716611pt;}
.y18c{bottom:776.729944pt;}
.y5f{bottom:777.076611pt;}
.ycd{bottom:777.089944pt;}
.y12e{bottom:787.049946pt;}
.yfe{bottom:787.369946pt;}
.ye3{bottom:787.383280pt;}
.y25{bottom:787.743280pt;}
.y6{bottom:797.703282pt;}
.y1d5{bottom:797.716615pt;}
.y44{bottom:798.049948pt;}
.ycc{bottom:798.063282pt;}
.ye2{bottom:808.356617pt;}
.y145{bottom:808.369950pt;}
.y7a{bottom:808.716617pt;}
.ya4{bottom:808.729951pt;}
.y12d{bottom:818.689953pt;}
.yfd{bottom:819.023286pt;}
.y24{bottom:819.383286pt;}
.y5{bottom:829.343288pt;}
.y18b{bottom:829.356621pt;}
.y43{bottom:829.689955pt;}
.ya3{bottom:829.703288pt;}
.ye1{bottom:839.996623pt;}
.y17c{bottom:840.009957pt;}
.y23{bottom:840.369957pt;}
.y12c{bottom:850.329959pt;}
.y42{bottom:850.663292pt;}
.y5e{bottom:850.676626pt;}
.y4{bottom:860.983294pt;}
.y206{bottom:860.996628pt;}
.y22{bottom:861.343294pt;}
.y41{bottom:871.649963pt;}
.y12b{bottom:881.969965pt;}
.y21{bottom:882.316632pt;}
.y3{bottom:892.623301pt;}
.y15b{bottom:892.636634pt;}
.y20{bottom:903.289969pt;}
.y12a{bottom:913.609972pt;}
.y2{bottom:924.276640pt;}
.y1{bottom:945.249978pt;}
.h2{height:48.000010pt;}
.h1{height:68.288014pt;}
.h3{height:69.376014pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000019pt;}
.x4d{left:100.253353pt;}
.x1b{left:122.493358pt;}
.x2c{left:124.546692pt;}
.x4{left:127.826692pt;}
.x38{left:129.666693pt;}
.x7{left:134.226560pt;}
.xd{left:139.373361pt;}
.x24{left:144.000029pt;}
.x41{left:145.093362pt;}
.x29{left:146.693363pt;}
.x1d{left:149.937497pt;}
.x33{left:160.720032pt;}
.x40{left:163.706699pt;}
.x44{left:165.466700pt;}
.x17{left:169.040034pt;}
.x22{left:175.160035pt;}
.x1c{left:184.813370pt;}
.x26{left:190.773371pt;}
.xe{left:202.706707pt;}
.x3a{left:204.080041pt;}
.x50{left:209.820309pt;}
.x4e{left:239.480048pt;}
.x4c{left:242.573382pt;}
.x19{left:248.653383pt;}
.x3{left:253.800051pt;}
.x3b{left:258.333385pt;}
.x39{left:259.813385pt;}
.x2a{left:261.066719pt;}
.x34{left:262.600053pt;}
.x25{left:266.554720pt;}
.x27{left:275.531255pt;}
.x31{left:294.106725pt;}
.x2d{left:297.173393pt;}
.x1a{left:302.906727pt;}
.x4b{left:316.573397pt;}
.x23{left:336.632867pt;}
.x48{left:339.280068pt;}
.x12{left:344.973402pt;}
.x35{left:346.293403pt;}
.x42{left:350.613403pt;}
.x3c{left:367.840074pt;}
.xc{left:405.171948pt;}
.x8{left:406.703148pt;}
.x2f{left:407.680082pt;}
.x9{left:410.257949pt;}
.x30{left:420.746751pt;}
.x11{left:422.853418pt;}
.x43{left:427.453419pt;}
.x15{left:431.760086pt;}
.x49{left:439.960088pt;}
.x1e{left:448.429823pt;}
.x3d{left:463.200093pt;}
.x3e{left:467.453427pt;}
.x2{left:473.053428pt;}
.x4a{left:480.333429pt;}
.x16{left:495.080099pt;}
.x47{left:502.053434pt;}
.x32{left:540.586775pt;}
.x3f{left:550.373443pt;}
.x1f{left:557.445445pt;}
.x45{left:566.773447pt;}
.x13{left:578.853449pt;}
.x36{left:584.920117pt;}
.x2e{left:589.493451pt;}
.x2b{left:593.480119pt;}
.x14{left:633.106793pt;}
.x21{left:642.573462pt;}
.x37{left:643.813462pt;}
.xa{left:647.601730pt;}
.xf{left:648.813463pt;}
.xb{left:654.760131pt;}
.x18{left:660.600132pt;}
.x46{left:662.133466pt;}
.x5{left:665.836133pt;}
.x6{left:669.390801pt;}
.x28{left:673.920135pt;}
.x20{left:675.054802pt;}
.x10{left:697.906806pt;}
.x4f{left:708.306808pt;}
}




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