
    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_19dedf1496f10b28e196e3d6.woff2')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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5ef502af30bd1103bd8e83e4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bcbb1f9432011b28e1b96b5d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b01d0eda11c0f68b5f520ced.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.996582;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_7ec6631124c715e4bebe1a1b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_edcf2bf583cee60d881f02a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_38fa9ba59a91d2c7067e5102.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.779785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_89e7fed069e9d0f55862d85b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d3b8cb54862d145e8969acdf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_490ce731db8774183caa2415.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.781738;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;}
.m3c{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);}
.m3e{transform:matrix(0.210289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210289,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m1{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);}
.md{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);}
.m4{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);}
.m53{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);}
.m1e{transform:matrix(0.235014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235014,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.235059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235059,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.235064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235064,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235102,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.235117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235117,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235177,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.235311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235311,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235380,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.235389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235389,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235393,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.235584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235584,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.235586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235586,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.235602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235602,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.235684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235684,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.235702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235702,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.235716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235716,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235741,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.235743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235743,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.235768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235768,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.235811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235811,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.235814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235814,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.235825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235825,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235923,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.235934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235934,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.235939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235939,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.235941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235941,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.235952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235952,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.235973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235973,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.236034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236034,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.236057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236057,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.236173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236173,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.236214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236214,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.236409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236409,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.236430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236430,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.236432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236432,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.236493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236493,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236530,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.236534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236534,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.236536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236536,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.236618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236618,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236673,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.236695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236695,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.236698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236698,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.236773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236773,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.236936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236936,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237041,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.237111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237111,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.237323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237323,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.237548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237548,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.237759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237759,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.237764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237764,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.237809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237809,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.237832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237832,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.237902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237902,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.237923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237923,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.238027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238027,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.238070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238070,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.238289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238289,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.238582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238582,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.238698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238698,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.238736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238736,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.238818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238818,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.238884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238884,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.238916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238916,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.238984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238984,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.239586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239586,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.239593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239593,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,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);}
.v2{vertical-align:-21.978000px;}
.v4{vertical-align:-3.792000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:35.376000px;}
.v6{vertical-align:51.348600px;}
.ls1a{letter-spacing:-2.659800px;}
.ls13{letter-spacing:-2.646600px;}
.ls1b{letter-spacing:-2.640000px;}
.ls14{letter-spacing:-2.626800px;}
.ls17{letter-spacing:-2.620200px;}
.ls32{letter-spacing:-2.580600px;}
.ls12{letter-spacing:-2.574000px;}
.ls16{letter-spacing:-2.534400px;}
.ls18{letter-spacing:-2.369400px;}
.ls19{letter-spacing:-2.362800px;}
.ls56{letter-spacing:-2.165400px;}
.ls54{letter-spacing:-2.160000px;}
.ls5e{letter-spacing:-2.127600px;}
.ls5d{letter-spacing:-2.111400px;}
.lsa{letter-spacing:-2.039400px;}
.ls47{letter-spacing:-2.026200px;}
.ls9{letter-spacing:-2.013000px;}
.ls43{letter-spacing:-2.006400px;}
.ls75{letter-spacing:-1.999800px;}
.ls10{letter-spacing:-1.993200px;}
.ls76{letter-spacing:-1.986600px;}
.ls11{letter-spacing:-1.980000px;}
.ls1e{letter-spacing:-1.973400px;}
.lsb{letter-spacing:-1.966800px;}
.lsf{letter-spacing:-1.960200px;}
.ls3e{letter-spacing:-1.953600px;}
.ls48{letter-spacing:-1.940400px;}
.ls65{letter-spacing:-1.933800px;}
.ls45{letter-spacing:-1.927200px;}
.ls72{letter-spacing:-1.920600px;}
.ls41{letter-spacing:-1.900800px;}
.ls2a{letter-spacing:-1.874400px;}
.ls61{letter-spacing:-1.861200px;}
.ls3a{letter-spacing:-1.841400px;}
.ls24{letter-spacing:-1.834800px;}
.ls3c{letter-spacing:-1.828200px;}
.ls51{letter-spacing:-1.808400px;}
.ls44{letter-spacing:-1.795200px;}
.lse{letter-spacing:-1.788600px;}
.ls4f{letter-spacing:-1.782000px;}
.ls50{letter-spacing:-1.775400px;}
.ls3b{letter-spacing:-1.768800px;}
.ls2e{letter-spacing:-1.762200px;}
.ls31{letter-spacing:-1.742400px;}
.lsc{letter-spacing:-1.735800px;}
.ls3d{letter-spacing:-1.729200px;}
.ls46{letter-spacing:-1.722600px;}
.ls1c{letter-spacing:-1.683000px;}
.ls1d{letter-spacing:-1.669800px;}
.ls2{letter-spacing:-1.656600px;}
.ls34{letter-spacing:-1.650000px;}
.ls25{letter-spacing:-1.643400px;}
.ls3{letter-spacing:-1.636800px;}
.ls6d{letter-spacing:-1.636200px;}
.ls6b{letter-spacing:-1.630800px;}
.ls5{letter-spacing:-1.630200px;}
.ls4{letter-spacing:-1.623600px;}
.ls6c{letter-spacing:-1.603800px;}
.ls35{letter-spacing:-1.597200px;}
.ls27{letter-spacing:-1.590600px;}
.ls60{letter-spacing:-1.577400px;}
.ls67{letter-spacing:-1.570800px;}
.ls8{letter-spacing:-1.564200px;}
.ls1{letter-spacing:-1.560000px;}
.ls73{letter-spacing:-1.537800px;}
.ls64{letter-spacing:-1.531200px;}
.ls4d{letter-spacing:-1.524600px;}
.ls26{letter-spacing:-1.504800px;}
.ls2b{letter-spacing:-1.465200px;}
.ls63{letter-spacing:-1.452000px;}
.ls4c{letter-spacing:-1.447200px;}
.ls39{letter-spacing:-1.440000px;}
.ls62{letter-spacing:-1.438800px;}
.ls5b{letter-spacing:-1.430400px;}
.ls20{letter-spacing:-1.425600px;}
.ls33{letter-spacing:-1.399200px;}
.ls71{letter-spacing:-1.372800px;}
.ls30{letter-spacing:-1.366200px;}
.ls40{letter-spacing:-1.320000px;}
.ls3f{letter-spacing:-1.300200px;}
.ls79{letter-spacing:-1.280400px;}
.ls52{letter-spacing:-1.267200px;}
.ls23{letter-spacing:-1.260600px;}
.ls55{letter-spacing:-1.259280px;}
.ls53{letter-spacing:-1.254000px;}
.ls42{letter-spacing:-1.247400px;}
.ls38{letter-spacing:-1.240800px;}
.ls22{letter-spacing:-1.234200px;}
.ls77{letter-spacing:-1.207800px;}
.ls36{letter-spacing:-1.201200px;}
.ls2c{letter-spacing:-1.194600px;}
.ls2f{letter-spacing:-1.181400px;}
.ls66{letter-spacing:-1.174800px;}
.ls6{letter-spacing:-1.122000px;}
.ls74{letter-spacing:-1.102200px;}
.ls69{letter-spacing:-1.069200px;}
.ls7{letter-spacing:-1.056000px;}
.ls2d{letter-spacing:-1.042800px;}
.ls29{letter-spacing:-1.036200px;}
.ls28{letter-spacing:-1.003200px;}
.ls70{letter-spacing:-0.871200px;}
.ls21{letter-spacing:-0.851400px;}
.ls6f{letter-spacing:-0.448800px;}
.ls78{letter-spacing:-0.349800px;}
.ls57{letter-spacing:-0.019200px;}
.ls5a{letter-spacing:-0.014400px;}
.ls58{letter-spacing:-0.009600px;}
.ls59{letter-spacing:-0.004800px;}
.lsd{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.004800px;}
.ls37{letter-spacing:0.005400px;}
.ls5c{letter-spacing:0.009600px;}
.ls1f{letter-spacing:0.010800px;}
.ls0{letter-spacing:0.014400px;}
.ls4b{letter-spacing:0.024000px;}
.ls4a{letter-spacing:0.028800px;}
.ls6e{letter-spacing:1.326600px;}
.ls15{letter-spacing:2.046000px;}
.ls68{letter-spacing:3.009600px;}
.ls6a{letter-spacing:3.055800px;}
.ls4e{letter-spacing:3.082200px;}
.ls5f{letter-spacing:231.194824px;}
.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;}
}
.ws60{word-spacing:-69.082200px;}
.ws7d{word-spacing:-69.055800px;}
.ws7a{word-spacing:-69.009600px;}
.ws5{word-spacing:-68.046000px;}
.ws8f{word-spacing:-67.326600px;}
.ws90{word-spacing:-65.551200px;}
.ws0{word-spacing:-64.878000px;}
.ws79{word-spacing:-64.825200px;}
.ws7e{word-spacing:-64.759200px;}
.ws46{word-spacing:-64.699800px;}
.ws47{word-spacing:-64.680000px;}
.ws29{word-spacing:-64.600800px;}
.ws27{word-spacing:-64.534800px;}
.ws5f{word-spacing:-64.475400px;}
.ws7c{word-spacing:-64.429200px;}
.ws7b{word-spacing:-64.376400px;}
.ws2a{word-spacing:-64.363200px;}
.ws42{word-spacing:-64.343400px;}
.ws41{word-spacing:-64.330200px;}
.ws9{word-spacing:-64.317000px;}
.ws4b{word-spacing:-64.270800px;}
.ws2{word-spacing:-64.264200px;}
.ws91{word-spacing:-64.257600px;}
.ws43{word-spacing:-64.231200px;}
.ws49{word-spacing:-64.099200px;}
.ws1{word-spacing:-64.033200px;}
.ws26{word-spacing:-64.020000px;}
.ws3{word-spacing:-64.006800px;}
.ws4c{word-spacing:-63.993600px;}
.ws7{word-spacing:-63.637200px;}
.ws6{word-spacing:-63.630600px;}
.ws4{word-spacing:-63.426000px;}
.ws28{word-spacing:-63.419400px;}
.ws8{word-spacing:-63.340200px;}
.ws72{word-spacing:-51.834600px;}
.ws66{word-spacing:-46.569600px;}
.ws45{word-spacing:-23.232000px;}
.ws62{word-spacing:-21.991200px;}
.ws4a{word-spacing:-21.469800px;}
.ws25{word-spacing:-21.397200px;}
.ws78{word-spacing:-21.370800px;}
.ws48{word-spacing:-21.265200px;}
.ws65{word-spacing:-16.396800px;}
.ws44{word-spacing:-13.544256px;}
.ws80{word-spacing:-9.570528px;}
.ws63{word-spacing:-9.507564px;}
.ws97{word-spacing:-2.514600px;}
.ws59{word-spacing:-0.943800px;}
.ws23{word-spacing:-0.336600px;}
.ws13{word-spacing:-0.264000px;}
.ws5b{word-spacing:-0.231000px;}
.ws12{word-spacing:-0.112200px;}
.ws68{word-spacing:-0.013200px;}
.ws2b{word-spacing:-0.010800px;}
.ws58{word-spacing:-0.006600px;}
.ws4d{word-spacing:-0.005400px;}
.wsa{word-spacing:0.000000px;}
.wsf{word-spacing:0.006600px;}
.ws6e{word-spacing:0.009600px;}
.ws96{word-spacing:0.013200px;}
.ws6f{word-spacing:0.014400px;}
.ws6a{word-spacing:0.016200px;}
.ws6d{word-spacing:0.019200px;}
.ws19{word-spacing:0.019800px;}
.ws6c{word-spacing:0.021600px;}
.ws70{word-spacing:0.024000px;}
.wse{word-spacing:0.026400px;}
.ws6b{word-spacing:0.027000px;}
.ws50{word-spacing:0.028800px;}
.wsb{word-spacing:0.031200px;}
.wsd{word-spacing:0.033000px;}
.ws71{word-spacing:0.033600px;}
.ws67{word-spacing:0.036000px;}
.ws8e{word-spacing:0.037800px;}
.ws4f{word-spacing:0.039600px;}
.ws24{word-spacing:0.046200px;}
.wsc{word-spacing:0.046800px;}
.ws5e{word-spacing:0.145200px;}
.ws75{word-spacing:0.151200px;}
.ws5a{word-spacing:0.151800px;}
.ws87{word-spacing:0.165000px;}
.ws94{word-spacing:0.204600px;}
.ws3f{word-spacing:0.270600px;}
.ws8c{word-spacing:0.302400px;}
.ws77{word-spacing:0.376200px;}
.ws1b{word-spacing:0.495000px;}
.ws1c{word-spacing:0.514800px;}
.ws8b{word-spacing:0.534600px;}
.ws18{word-spacing:0.580800px;}
.ws76{word-spacing:0.633600px;}
.ws3a{word-spacing:0.646800px;}
.ws95{word-spacing:0.666600px;}
.ws9c{word-spacing:0.765600px;}
.ws20{word-spacing:0.792000px;}
.ws92{word-spacing:0.798600px;}
.ws88{word-spacing:1.161600px;}
.ws5d{word-spacing:1.174800px;}
.ws89{word-spacing:1.188000px;}
.ws5c{word-spacing:1.227600px;}
.ws93{word-spacing:1.313400px;}
.ws35{word-spacing:1.320000px;}
.ws98{word-spacing:1.821600px;}
.ws86{word-spacing:1.834800px;}
.ws85{word-spacing:1.848000px;}
.ws3c{word-spacing:1.900800px;}
.ws69{word-spacing:1.927200px;}
.ws3b{word-spacing:2.019600px;}
.ws53{word-spacing:2.085600px;}
.ws52{word-spacing:2.217600px;}
.ws8a{word-spacing:2.415600px;}
.ws57{word-spacing:2.514600px;}
.ws9a{word-spacing:2.626800px;}
.ws9b{word-spacing:2.640000px;}
.ws83{word-spacing:3.141600px;}
.ws84{word-spacing:3.154800px;}
.ws2f{word-spacing:3.418800px;}
.ws3d{word-spacing:3.537600px;}
.ws1d{word-spacing:3.544200px;}
.ws3e{word-spacing:3.550800px;}
.ws21{word-spacing:3.597000px;}
.ws74{word-spacing:3.699000px;}
.ws8d{word-spacing:3.709800px;}
.ws33{word-spacing:3.748800px;}
.ws55{word-spacing:3.762000px;}
.ws56{word-spacing:3.775200px;}
.ws34{word-spacing:3.887400px;}
.ws4e{word-spacing:4.006200px;}
.ws1e{word-spacing:4.138200px;}
.ws15{word-spacing:4.263600px;}
.ws51{word-spacing:4.296600px;}
.ws61{word-spacing:4.389000px;}
.ws14{word-spacing:4.395600px;}
.ws40{word-spacing:4.422000px;}
.ws1a{word-spacing:4.534200px;}
.ws36{word-spacing:4.547400px;}
.ws2c{word-spacing:4.554000px;}
.ws37{word-spacing:4.573800px;}
.ws10{word-spacing:4.580400px;}
.ws16{word-spacing:4.587000px;}
.ws38{word-spacing:4.593600px;}
.ws39{word-spacing:4.600200px;}
.ws2d{word-spacing:4.606800px;}
.ws2e{word-spacing:4.613400px;}
.ws32{word-spacing:4.620000px;}
.ws22{word-spacing:4.626600px;}
.ws17{word-spacing:4.633200px;}
.ws11{word-spacing:4.639800px;}
.ws1f{word-spacing:4.646400px;}
.ws31{word-spacing:4.653000px;}
.ws30{word-spacing:4.659600px;}
.ws54{word-spacing:4.666200px;}
.ws99{word-spacing:6.560400px;}
.ws81{word-spacing:101.654400px;}
.ws64{word-spacing:139.342729px;}
.ws73{word-spacing:145.060800px;}
.ws7f{word-spacing:427.008000px;}
.ws82{word-spacing:454.619012px;}
._9{margin-left:-9.345600px;}
._8{margin-left:-8.316000px;}
._6{margin-left:-6.690000px;}
._7{margin-left:-4.659600px;}
._5{margin-left:-3.115200px;}
._1{margin-left:-1.560000px;}
._0{width:1.552200px;}
._2{width:2.581200px;}
._3{width:3.715800px;}
._4{width:4.989600px;}
._3d{width:6.157800px;}
._36{width:100.536000px;}
._3a{width:101.630400px;}
._20{width:112.996800px;}
._b{width:116.611200px;}
._a{width:124.800000px;}
._17{width:127.238400px;}
._1f{width:133.401600px;}
._37{width:135.489882px;}
._31{width:137.040000px;}
._11{width:138.628800px;}
._33{width:150.456000px;}
._35{width:151.824000px;}
._39{width:152.913600px;}
._3c{width:154.305882px;}
._32{width:157.401318px;}
._2f{width:168.724800px;}
._2e{width:175.627200px;}
._21{width:182.904000px;}
._38{width:187.118400px;}
._34{width:201.571200px;}
._30{width:203.328000px;}
._2d{width:208.461597px;}
._13{width:213.936000px;}
._c{width:233.294400px;}
._1a{width:243.931200px;}
._19{width:248.366400px;}
._1c{width:251.942400px;}
._1e{width:266.078400px;}
._1d{width:277.867200px;}
._10{width:280.838400px;}
._f{width:282.441600px;}
._15{width:284.812800px;}
._d{width:293.136000px;}
._2b{width:301.776000px;}
._3b{width:311.646212px;}
._2c{width:325.190400px;}
._2a{width:334.948800px;}
._14{width:349.996800px;}
._29{width:356.942400px;}
._24{width:363.043200px;}
._22{width:364.665600px;}
._25{width:367.185600px;}
._27{width:370.459200px;}
._23{width:372.057600px;}
._26{width:374.630400px;}
._28{width:384.268800px;}
._16{width:408.009600px;}
._1b{width:423.211200px;}
._12{width:436.886400px;}
._e{width:438.475200px;}
._18{width:441.537600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:27.984000px;}
.fs5{font-size:31.482000px;}
.fs4{font-size:38.478000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:191.493000px;}
.y25{bottom:246.820500px;}
.y96{bottom:247.584000px;}
.ybc{bottom:251.542500px;}
.y50{bottom:256.062000px;}
.y95{bottom:261.084000px;}
.y78{bottom:264.068100px;}
.yff{bottom:264.258150px;}
.y24{bottom:264.820500px;}
.ybb{bottom:269.544000px;}
.y4f{bottom:274.062000px;}
.y77{bottom:282.069600px;}
.yfe{bottom:282.259650px;}
.y94{bottom:282.833700px;}
.yba{bottom:287.544150px;}
.y4e{bottom:292.060950px;}
.ye0{bottom:295.831650px;}
.y23{bottom:297.702300px;}
.y76{bottom:300.071100px;}
.yfd{bottom:300.259650px;}
.y93{bottom:301.217700px;}
.ydf{bottom:309.331650px;}
.y4d{bottom:310.062450px;}
.y22{bottom:315.702150px;}
.y75{bottom:318.072600px;}
.yfc{bottom:318.259650px;}
.y92{bottom:319.601700px;}
.yb9{bottom:321.700650px;}
.y4c{bottom:328.060650px;}
.y21{bottom:333.702150px;}
.y74{bottom:336.070800px;}
.yde{bottom:341.005650px;}
.y4b{bottom:346.062150px;}
.y91{bottom:346.481700px;}
.yb8{bottom:347.464050px;}
.yfb{bottom:351.141150px;}
.y20{bottom:351.702150px;}
.y73{bottom:354.072300px;}
.y4a{bottom:364.062150px;}
.y90{bottom:364.865700px;}
.yb7{bottom:365.836050px;}
.ydd{bottom:366.517800px;}
.yfa{bottom:369.141150px;}
.y1f{bottom:369.702150px;}
.y72{bottom:372.072300px;}
.y49{bottom:382.059450px;}
.y8f{bottom:383.249700px;}
.yb6{bottom:384.208050px;}
.yf9{bottom:387.141150px;}
.y1e{bottom:387.702300px;}
.y71{bottom:390.072300px;}
.ydc{bottom:392.029800px;}
.yf8{bottom:405.141300px;}
.y1d{bottom:405.702300px;}
.y70{bottom:408.072300px;}
.y8e{bottom:410.129700px;}
.yb5{bottom:411.088050px;}
.ydb{bottom:413.629800px;}
.y48{bottom:414.945600px;}
.yda{bottom:422.464800px;}
.y1c{bottom:423.702300px;}
.y6f{bottom:426.072300px;}
.y8d{bottom:428.514900px;}
.yb4{bottom:429.460050px;}
.y47{bottom:432.945450px;}
.yf7{bottom:438.021450px;}
.y1b{bottom:441.706050px;}
.y6e{bottom:444.072450px;}
.y8c{bottom:446.897700px;}
.yb3{bottom:447.832050px;}
.y46{bottom:450.945300px;}
.yf6{bottom:456.022950px;}
.yd9{bottom:459.462450px;}
.y1a{bottom:459.704250px;}
.y6d{bottom:462.070950px;}
.y45{bottom:468.945300px;}
.y8b{bottom:473.778900px;}
.yf5{bottom:474.022950px;}
.yb2{bottom:474.712050px;}
.yd8{bottom:477.462450px;}
.y19{bottom:477.702450px;}
.y6c{bottom:480.072450px;}
.y44{bottom:486.942600px;}
.yf4{bottom:492.022950px;}
.y8a{bottom:492.162900px;}
.yb1{bottom:493.084050px;}
.yd7{bottom:495.462450px;}
.y18{bottom:495.702450px;}
.y6b{bottom:498.072450px;}
.y43{bottom:504.944100px;}
.yf3{bottom:510.022950px;}
.y89{bottom:510.546900px;}
.yb0{bottom:511.456050px;}
.y42{bottom:522.945600px;}
.yf2{bottom:528.023400px;}
.yd6{bottom:528.346050px;}
.y17{bottom:528.581100px;}
.y6a{bottom:530.954400px;}
.y88{bottom:537.426900px;}
.yaf{bottom:538.336050px;}
.y41{bottom:540.945600px;}
.yd5{bottom:546.342600px;}
.y16{bottom:546.582600px;}
.y69{bottom:548.954250px;}
.y87{bottom:555.810900px;}
.yae{bottom:556.708050px;}
.y40{bottom:558.945600px;}
.yf1{bottom:560.907900px;}
.yd4{bottom:564.344100px;}
.y68{bottom:566.954100px;}
.y86{bottom:574.194900px;}
.yad{bottom:575.080050px;}
.y3f{bottom:576.945600px;}
.yf0{bottom:578.906100px;}
.y15{bottom:579.467100px;}
.yd3{bottom:582.344100px;}
.y67{bottom:584.954100px;}
.y3e{bottom:594.947100px;}
.yef{bottom:596.906100px;}
.y14{bottom:597.467250px;}
.yd2{bottom:600.344250px;}
.y85{bottom:601.074900px;}
.yac{bottom:601.960050px;}
.y66{bottom:602.954250px;}
.y3d{bottom:612.947250px;}
.yee{bottom:614.907750px;}
.y13{bottom:615.465750px;}
.yd1{bottom:618.344250px;}
.y84{bottom:619.458900px;}
.yab{bottom:620.332050px;}
.y65{bottom:620.955750px;}
.y3c{bottom:630.947250px;}
.y12{bottom:633.467250px;}
.yd0{bottom:636.344250px;}
.y83{bottom:637.842900px;}
.yaa{bottom:638.704050px;}
.y64{bottom:638.955750px;}
.yed{bottom:647.787750px;}
.y3b{bottom:648.947250px;}
.y11{bottom:651.467250px;}
.ycf{bottom:654.344250px;}
.y63{bottom:656.955750px;}
.y82{bottom:664.722900px;}
.ya9{bottom:665.584050px;}
.yec{bottom:665.787900px;}
.y3a{bottom:666.947250px;}
.y10{bottom:669.462900px;}
.yce{bottom:672.345750px;}
.y62{bottom:674.954400px;}
.y81{bottom:683.106900px;}
.yeb{bottom:683.787900px;}
.ya8{bottom:683.956050px;}
.y39{bottom:684.947250px;}
.yf{bottom:687.464400px;}
.ycd{bottom:690.345900px;}
.y61{bottom:692.955900px;}
.y80{bottom:701.490900px;}
.yea{bottom:701.789400px;}
.ya7{bottom:702.328050px;}
.y38{bottom:702.947400px;}
.ye{bottom:705.465900px;}
.ycc{bottom:708.345900px;}
.y60{bottom:710.955900px;}
.y37{bottom:720.947400px;}
.yd{bottom:723.467400px;}
.ycb{bottom:726.345900px;}
.y7f{bottom:728.370900px;}
.ya6{bottom:729.208050px;}
.ye9{bottom:734.670900px;}
.y36{bottom:738.947400px;}
.yc{bottom:741.468900px;}
.y5f{bottom:743.837550px;}
.yca{bottom:744.346050px;}
.y7e{bottom:746.754900px;}
.ya5{bottom:747.580050px;}
.y35{bottom:756.945300px;}
.yb{bottom:759.468900px;}
.y5e{bottom:761.837550px;}
.yc9{bottom:762.346050px;}
.y7d{bottom:765.018900px;}
.ya4{bottom:765.952050px;}
.ya{bottom:777.469050px;}
.y5d{bottom:779.837550px;}
.ye8{bottom:781.808700px;}
.y7c{bottom:782.443050px;}
.y34{bottom:789.829800px;}
.ya3{bottom:792.832050px;}
.y5c{bottom:797.837550px;}
.ye7{bottom:799.808550px;}
.yc8{bottom:805.858050px;}
.y33{bottom:807.828000px;}
.y7b{bottom:810.952050px;}
.ya2{bottom:811.204050px;}
.y5b{bottom:815.837550px;}
.ye6{bottom:817.808550px;}
.yc7{bottom:823.858200px;}
.y32{bottom:825.829500px;}
.y7a{bottom:828.947550px;}
.y9{bottom:829.474950px;}
.ya1{bottom:829.574850px;}
.y5a{bottom:833.837700px;}
.yc6{bottom:841.858200px;}
.y31{bottom:843.827700px;}
.ye5{bottom:850.691550px;}
.y59{bottom:851.838000px;}
.y8{bottom:853.234950px;}
.ya0{bottom:856.456050px;}
.yc5{bottom:859.858200px;}
.y30{bottom:861.829200px;}
.y58{bottom:869.837850px;}
.y7{bottom:872.734650px;}
.y9f{bottom:874.826850px;}
.yc4{bottom:877.858200px;}
.y2f{bottom:879.829350px;}
.y57{bottom:887.837700px;}
.y9e{bottom:893.198850px;}
.yc3{bottom:895.858200px;}
.y2e{bottom:897.829350px;}
.ye4{bottom:897.829800px;}
.y6{bottom:904.992150px;}
.y56{bottom:905.837700px;}
.yc2{bottom:913.858350px;}
.ye3{bottom:915.826350px;}
.y2d{bottom:915.829350px;}
.y9d{bottom:920.078850px;}
.y55{bottom:923.837700px;}
.y5{bottom:924.491850px;}
.yc1{bottom:931.858350px;}
.ye2{bottom:933.827850px;}
.y2c{bottom:933.829350px;}
.y79{bottom:933.829500px;}
.y9c{bottom:938.450850px;}
.yc0{bottom:949.858350px;}
.y2b{bottom:951.829350px;}
.y54{bottom:956.720850px;}
.y9b{bottom:956.822850px;}
.ybf{bottom:967.858500px;}
.y2a{bottom:969.829350px;}
.y9a{bottom:975.194850px;}
.ybe{bottom:985.857000px;}
.ye1{bottom:987.828000px;}
.y29{bottom:987.829350px;}
.y4{bottom:990.763500px;}
.ybd{bottom:1003.858500px;}
.y53{bottom:1003.858650px;}
.y28{bottom:1005.829500px;}
.y99{bottom:1007.956500px;}
.y3{bottom:1014.163500px;}
.y52{bottom:1021.858500px;}
.y98{bottom:1025.952000px;}
.y2{bottom:1037.563500px;}
.y27{bottom:1038.711000px;}
.y51{bottom:1039.858500px;}
.y97{bottom:1042.152150px;}
.y26{bottom:1088.923650px;}
.hb{height:39.281250px;}
.hc{height:42.662109px;}
.h9{height:51.216000px;}
.ha{height:52.032000px;}
.h5{height:54.011719px;}
.h6{height:57.618000px;}
.h3{height:70.422000px;}
.he{height:70.435200px;}
.h8{height:70.441800px;}
.h4{height:71.544000px;}
.h1{height:74.004654px;}
.h7{height:76.824000px;}
.h2{height:83.226000px;}
.hd{height:86.592000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xb{left:176.385300px;}
.xf{left:180.639300px;}
.xd{left:187.721142px;}
.xa{left:193.392300px;}
.x2{left:197.823300px;}
.x11{left:223.786500px;}
.x3{left:233.074113px;}
.xc{left:251.577450px;}
.x5{left:291.251100px;}
.xe{left:301.509600px;}
.x4{left:316.738122px;}
.x10{left:327.538680px;}
.x13{left:343.113600px;}
.x12{left:394.425750px;}
.x6{left:423.362343px;}
.x1{left:431.859900px;}
.x8{left:434.143740px;}
.x7{left:439.919598px;}
.x9{left:523.942680px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v4{vertical-align:-3.370667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:31.445333pt;}
.v6{vertical-align:45.643200pt;}
.ls1a{letter-spacing:-2.364267pt;}
.ls13{letter-spacing:-2.352533pt;}
.ls1b{letter-spacing:-2.346667pt;}
.ls14{letter-spacing:-2.334933pt;}
.ls17{letter-spacing:-2.329067pt;}
.ls32{letter-spacing:-2.293867pt;}
.ls12{letter-spacing:-2.288000pt;}
.ls16{letter-spacing:-2.252800pt;}
.ls18{letter-spacing:-2.106133pt;}
.ls19{letter-spacing:-2.100267pt;}
.ls56{letter-spacing:-1.924800pt;}
.ls54{letter-spacing:-1.920000pt;}
.ls5e{letter-spacing:-1.891200pt;}
.ls5d{letter-spacing:-1.876800pt;}
.lsa{letter-spacing:-1.812800pt;}
.ls47{letter-spacing:-1.801067pt;}
.ls9{letter-spacing:-1.789333pt;}
.ls43{letter-spacing:-1.783467pt;}
.ls75{letter-spacing:-1.777600pt;}
.ls10{letter-spacing:-1.771733pt;}
.ls76{letter-spacing:-1.765867pt;}
.ls11{letter-spacing:-1.760000pt;}
.ls1e{letter-spacing:-1.754133pt;}
.lsb{letter-spacing:-1.748267pt;}
.lsf{letter-spacing:-1.742400pt;}
.ls3e{letter-spacing:-1.736533pt;}
.ls48{letter-spacing:-1.724800pt;}
.ls65{letter-spacing:-1.718933pt;}
.ls45{letter-spacing:-1.713067pt;}
.ls72{letter-spacing:-1.707200pt;}
.ls41{letter-spacing:-1.689600pt;}
.ls2a{letter-spacing:-1.666133pt;}
.ls61{letter-spacing:-1.654400pt;}
.ls3a{letter-spacing:-1.636800pt;}
.ls24{letter-spacing:-1.630933pt;}
.ls3c{letter-spacing:-1.625067pt;}
.ls51{letter-spacing:-1.607467pt;}
.ls44{letter-spacing:-1.595733pt;}
.lse{letter-spacing:-1.589867pt;}
.ls4f{letter-spacing:-1.584000pt;}
.ls50{letter-spacing:-1.578133pt;}
.ls3b{letter-spacing:-1.572267pt;}
.ls2e{letter-spacing:-1.566400pt;}
.ls31{letter-spacing:-1.548800pt;}
.lsc{letter-spacing:-1.542933pt;}
.ls3d{letter-spacing:-1.537067pt;}
.ls46{letter-spacing:-1.531200pt;}
.ls1c{letter-spacing:-1.496000pt;}
.ls1d{letter-spacing:-1.484267pt;}
.ls2{letter-spacing:-1.472533pt;}
.ls34{letter-spacing:-1.466667pt;}
.ls25{letter-spacing:-1.460800pt;}
.ls3{letter-spacing:-1.454933pt;}
.ls6d{letter-spacing:-1.454400pt;}
.ls6b{letter-spacing:-1.449600pt;}
.ls5{letter-spacing:-1.449067pt;}
.ls4{letter-spacing:-1.443200pt;}
.ls6c{letter-spacing:-1.425600pt;}
.ls35{letter-spacing:-1.419733pt;}
.ls27{letter-spacing:-1.413867pt;}
.ls60{letter-spacing:-1.402133pt;}
.ls67{letter-spacing:-1.396267pt;}
.ls8{letter-spacing:-1.390400pt;}
.ls1{letter-spacing:-1.386667pt;}
.ls73{letter-spacing:-1.366933pt;}
.ls64{letter-spacing:-1.361067pt;}
.ls4d{letter-spacing:-1.355200pt;}
.ls26{letter-spacing:-1.337600pt;}
.ls2b{letter-spacing:-1.302400pt;}
.ls63{letter-spacing:-1.290667pt;}
.ls4c{letter-spacing:-1.286400pt;}
.ls39{letter-spacing:-1.280000pt;}
.ls62{letter-spacing:-1.278933pt;}
.ls5b{letter-spacing:-1.271467pt;}
.ls20{letter-spacing:-1.267200pt;}
.ls33{letter-spacing:-1.243733pt;}
.ls71{letter-spacing:-1.220267pt;}
.ls30{letter-spacing:-1.214400pt;}
.ls40{letter-spacing:-1.173333pt;}
.ls3f{letter-spacing:-1.155733pt;}
.ls79{letter-spacing:-1.138133pt;}
.ls52{letter-spacing:-1.126400pt;}
.ls23{letter-spacing:-1.120533pt;}
.ls55{letter-spacing:-1.119360pt;}
.ls53{letter-spacing:-1.114667pt;}
.ls42{letter-spacing:-1.108800pt;}
.ls38{letter-spacing:-1.102933pt;}
.ls22{letter-spacing:-1.097067pt;}
.ls77{letter-spacing:-1.073600pt;}
.ls36{letter-spacing:-1.067733pt;}
.ls2c{letter-spacing:-1.061867pt;}
.ls2f{letter-spacing:-1.050133pt;}
.ls66{letter-spacing:-1.044267pt;}
.ls6{letter-spacing:-0.997333pt;}
.ls74{letter-spacing:-0.979733pt;}
.ls69{letter-spacing:-0.950400pt;}
.ls7{letter-spacing:-0.938667pt;}
.ls2d{letter-spacing:-0.926933pt;}
.ls29{letter-spacing:-0.921067pt;}
.ls28{letter-spacing:-0.891733pt;}
.ls70{letter-spacing:-0.774400pt;}
.ls21{letter-spacing:-0.756800pt;}
.ls6f{letter-spacing:-0.398933pt;}
.ls78{letter-spacing:-0.310933pt;}
.ls57{letter-spacing:-0.017067pt;}
.ls5a{letter-spacing:-0.012800pt;}
.ls58{letter-spacing:-0.008533pt;}
.ls59{letter-spacing:-0.004267pt;}
.lsd{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.004267pt;}
.ls37{letter-spacing:0.004800pt;}
.ls5c{letter-spacing:0.008533pt;}
.ls1f{letter-spacing:0.009600pt;}
.ls0{letter-spacing:0.012800pt;}
.ls4b{letter-spacing:0.021333pt;}
.ls4a{letter-spacing:0.025600pt;}
.ls6e{letter-spacing:1.179200pt;}
.ls15{letter-spacing:1.818667pt;}
.ls68{letter-spacing:2.675200pt;}
.ls6a{letter-spacing:2.716267pt;}
.ls4e{letter-spacing:2.739733pt;}
.ls5f{letter-spacing:205.506510pt;}
.ws60{word-spacing:-61.406400pt;}
.ws7d{word-spacing:-61.382933pt;}
.ws7a{word-spacing:-61.341867pt;}
.ws5{word-spacing:-60.485333pt;}
.ws8f{word-spacing:-59.845867pt;}
.ws90{word-spacing:-58.267733pt;}
.ws0{word-spacing:-57.669333pt;}
.ws79{word-spacing:-57.622400pt;}
.ws7e{word-spacing:-57.563733pt;}
.ws46{word-spacing:-57.510933pt;}
.ws47{word-spacing:-57.493333pt;}
.ws29{word-spacing:-57.422933pt;}
.ws27{word-spacing:-57.364267pt;}
.ws5f{word-spacing:-57.311467pt;}
.ws7c{word-spacing:-57.270400pt;}
.ws7b{word-spacing:-57.223467pt;}
.ws2a{word-spacing:-57.211733pt;}
.ws42{word-spacing:-57.194133pt;}
.ws41{word-spacing:-57.182400pt;}
.ws9{word-spacing:-57.170667pt;}
.ws4b{word-spacing:-57.129600pt;}
.ws2{word-spacing:-57.123733pt;}
.ws91{word-spacing:-57.117867pt;}
.ws43{word-spacing:-57.094400pt;}
.ws49{word-spacing:-56.977067pt;}
.ws1{word-spacing:-56.918400pt;}
.ws26{word-spacing:-56.906667pt;}
.ws3{word-spacing:-56.894933pt;}
.ws4c{word-spacing:-56.883200pt;}
.ws7{word-spacing:-56.566400pt;}
.ws6{word-spacing:-56.560533pt;}
.ws4{word-spacing:-56.378667pt;}
.ws28{word-spacing:-56.372800pt;}
.ws8{word-spacing:-56.302400pt;}
.ws72{word-spacing:-46.075200pt;}
.ws66{word-spacing:-41.395200pt;}
.ws45{word-spacing:-20.650667pt;}
.ws62{word-spacing:-19.547733pt;}
.ws4a{word-spacing:-19.084267pt;}
.ws25{word-spacing:-19.019733pt;}
.ws78{word-spacing:-18.996267pt;}
.ws48{word-spacing:-18.902400pt;}
.ws65{word-spacing:-14.574933pt;}
.ws44{word-spacing:-12.039339pt;}
.ws80{word-spacing:-8.507136pt;}
.ws63{word-spacing:-8.451168pt;}
.ws97{word-spacing:-2.235200pt;}
.ws59{word-spacing:-0.838933pt;}
.ws23{word-spacing:-0.299200pt;}
.ws13{word-spacing:-0.234667pt;}
.ws5b{word-spacing:-0.205333pt;}
.ws12{word-spacing:-0.099733pt;}
.ws68{word-spacing:-0.011733pt;}
.ws2b{word-spacing:-0.009600pt;}
.ws58{word-spacing:-0.005867pt;}
.ws4d{word-spacing:-0.004800pt;}
.wsa{word-spacing:0.000000pt;}
.wsf{word-spacing:0.005867pt;}
.ws6e{word-spacing:0.008533pt;}
.ws96{word-spacing:0.011733pt;}
.ws6f{word-spacing:0.012800pt;}
.ws6a{word-spacing:0.014400pt;}
.ws6d{word-spacing:0.017067pt;}
.ws19{word-spacing:0.017600pt;}
.ws6c{word-spacing:0.019200pt;}
.ws70{word-spacing:0.021333pt;}
.wse{word-spacing:0.023467pt;}
.ws6b{word-spacing:0.024000pt;}
.ws50{word-spacing:0.025600pt;}
.wsb{word-spacing:0.027733pt;}
.wsd{word-spacing:0.029333pt;}
.ws71{word-spacing:0.029867pt;}
.ws67{word-spacing:0.032000pt;}
.ws8e{word-spacing:0.033600pt;}
.ws4f{word-spacing:0.035200pt;}
.ws24{word-spacing:0.041067pt;}
.wsc{word-spacing:0.041600pt;}
.ws5e{word-spacing:0.129067pt;}
.ws75{word-spacing:0.134400pt;}
.ws5a{word-spacing:0.134933pt;}
.ws87{word-spacing:0.146667pt;}
.ws94{word-spacing:0.181867pt;}
.ws3f{word-spacing:0.240533pt;}
.ws8c{word-spacing:0.268800pt;}
.ws77{word-spacing:0.334400pt;}
.ws1b{word-spacing:0.440000pt;}
.ws1c{word-spacing:0.457600pt;}
.ws8b{word-spacing:0.475200pt;}
.ws18{word-spacing:0.516267pt;}
.ws76{word-spacing:0.563200pt;}
.ws3a{word-spacing:0.574933pt;}
.ws95{word-spacing:0.592533pt;}
.ws9c{word-spacing:0.680533pt;}
.ws20{word-spacing:0.704000pt;}
.ws92{word-spacing:0.709867pt;}
.ws88{word-spacing:1.032533pt;}
.ws5d{word-spacing:1.044267pt;}
.ws89{word-spacing:1.056000pt;}
.ws5c{word-spacing:1.091200pt;}
.ws93{word-spacing:1.167467pt;}
.ws35{word-spacing:1.173333pt;}
.ws98{word-spacing:1.619200pt;}
.ws86{word-spacing:1.630933pt;}
.ws85{word-spacing:1.642667pt;}
.ws3c{word-spacing:1.689600pt;}
.ws69{word-spacing:1.713067pt;}
.ws3b{word-spacing:1.795200pt;}
.ws53{word-spacing:1.853867pt;}
.ws52{word-spacing:1.971200pt;}
.ws8a{word-spacing:2.147200pt;}
.ws57{word-spacing:2.235200pt;}
.ws9a{word-spacing:2.334933pt;}
.ws9b{word-spacing:2.346667pt;}
.ws83{word-spacing:2.792533pt;}
.ws84{word-spacing:2.804267pt;}
.ws2f{word-spacing:3.038933pt;}
.ws3d{word-spacing:3.144533pt;}
.ws1d{word-spacing:3.150400pt;}
.ws3e{word-spacing:3.156267pt;}
.ws21{word-spacing:3.197333pt;}
.ws74{word-spacing:3.288000pt;}
.ws8d{word-spacing:3.297600pt;}
.ws33{word-spacing:3.332267pt;}
.ws55{word-spacing:3.344000pt;}
.ws56{word-spacing:3.355733pt;}
.ws34{word-spacing:3.455467pt;}
.ws4e{word-spacing:3.561067pt;}
.ws1e{word-spacing:3.678400pt;}
.ws15{word-spacing:3.789867pt;}
.ws51{word-spacing:3.819200pt;}
.ws61{word-spacing:3.901333pt;}
.ws14{word-spacing:3.907200pt;}
.ws40{word-spacing:3.930667pt;}
.ws1a{word-spacing:4.030400pt;}
.ws36{word-spacing:4.042133pt;}
.ws2c{word-spacing:4.048000pt;}
.ws37{word-spacing:4.065600pt;}
.ws10{word-spacing:4.071467pt;}
.ws16{word-spacing:4.077333pt;}
.ws38{word-spacing:4.083200pt;}
.ws39{word-spacing:4.089067pt;}
.ws2d{word-spacing:4.094933pt;}
.ws2e{word-spacing:4.100800pt;}
.ws32{word-spacing:4.106667pt;}
.ws22{word-spacing:4.112533pt;}
.ws17{word-spacing:4.118400pt;}
.ws11{word-spacing:4.124267pt;}
.ws1f{word-spacing:4.130133pt;}
.ws31{word-spacing:4.136000pt;}
.ws30{word-spacing:4.141867pt;}
.ws54{word-spacing:4.147733pt;}
.ws99{word-spacing:5.831467pt;}
.ws81{word-spacing:90.359467pt;}
.ws64{word-spacing:123.860204pt;}
.ws73{word-spacing:128.942933pt;}
.ws7f{word-spacing:379.562667pt;}
.ws82{word-spacing:404.105788pt;}
._9{margin-left:-8.307200pt;}
._8{margin-left:-7.392000pt;}
._6{margin-left:-5.946667pt;}
._7{margin-left:-4.141867pt;}
._5{margin-left:-2.769067pt;}
._1{margin-left:-1.386667pt;}
._0{width:1.379733pt;}
._2{width:2.294400pt;}
._3{width:3.302933pt;}
._4{width:4.435200pt;}
._3d{width:5.473600pt;}
._36{width:89.365333pt;}
._3a{width:90.338133pt;}
._20{width:100.441600pt;}
._b{width:103.654400pt;}
._a{width:110.933333pt;}
._17{width:113.100800pt;}
._1f{width:118.579200pt;}
._37{width:120.435451pt;}
._31{width:121.813333pt;}
._11{width:123.225600pt;}
._33{width:133.738667pt;}
._35{width:134.954667pt;}
._39{width:135.923200pt;}
._3c{width:137.160784pt;}
._32{width:139.912282pt;}
._2f{width:149.977600pt;}
._2e{width:156.113067pt;}
._21{width:162.581333pt;}
._38{width:166.327467pt;}
._34{width:179.174400pt;}
._30{width:180.736000pt;}
._2d{width:185.299197pt;}
._13{width:190.165333pt;}
._c{width:207.372800pt;}
._1a{width:216.827733pt;}
._19{width:220.770133pt;}
._1c{width:223.948800pt;}
._1e{width:236.514133pt;}
._1d{width:246.993067pt;}
._10{width:249.634133pt;}
._f{width:251.059200pt;}
._15{width:253.166933pt;}
._d{width:260.565333pt;}
._2b{width:268.245333pt;}
._3b{width:277.018855pt;}
._2c{width:289.058133pt;}
._2a{width:297.732267pt;}
._14{width:311.108267pt;}
._29{width:317.282133pt;}
._24{width:322.705067pt;}
._22{width:324.147200pt;}
._25{width:326.387200pt;}
._27{width:329.297067pt;}
._23{width:330.717867pt;}
._26{width:333.004800pt;}
._28{width:341.572267pt;}
._16{width:362.675200pt;}
._1b{width:376.187733pt;}
._12{width:388.343467pt;}
._e{width:389.755733pt;}
._18{width:392.477867pt;}
.fs7{font-size:24.874667pt;}
.fs5{font-size:27.984000pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:170.216000pt;}
.y25{bottom:219.396000pt;}
.y96{bottom:220.074667pt;}
.ybc{bottom:223.593333pt;}
.y50{bottom:227.610667pt;}
.y95{bottom:232.074667pt;}
.y78{bottom:234.727200pt;}
.yff{bottom:234.896133pt;}
.y24{bottom:235.396000pt;}
.ybb{bottom:239.594667pt;}
.y4f{bottom:243.610667pt;}
.y77{bottom:250.728533pt;}
.yfe{bottom:250.897467pt;}
.y94{bottom:251.407733pt;}
.yba{bottom:255.594800pt;}
.y4e{bottom:259.609733pt;}
.ye0{bottom:262.961467pt;}
.y23{bottom:264.624267pt;}
.y76{bottom:266.729867pt;}
.yfd{bottom:266.897467pt;}
.y93{bottom:267.749067pt;}
.ydf{bottom:274.961467pt;}
.y4d{bottom:275.611067pt;}
.y22{bottom:280.624133pt;}
.y75{bottom:282.731200pt;}
.yfc{bottom:282.897467pt;}
.y92{bottom:284.090400pt;}
.yb9{bottom:285.956133pt;}
.y4c{bottom:291.609467pt;}
.y21{bottom:296.624133pt;}
.y74{bottom:298.729600pt;}
.yde{bottom:303.116133pt;}
.y4b{bottom:307.610800pt;}
.y91{bottom:307.983733pt;}
.yb8{bottom:308.856933pt;}
.yfb{bottom:312.125467pt;}
.y20{bottom:312.624133pt;}
.y73{bottom:314.730933pt;}
.y4a{bottom:323.610800pt;}
.y90{bottom:324.325067pt;}
.yb7{bottom:325.187600pt;}
.ydd{bottom:325.793600pt;}
.yfa{bottom:328.125467pt;}
.y1f{bottom:328.624133pt;}
.y72{bottom:330.730933pt;}
.y49{bottom:339.608400pt;}
.y8f{bottom:340.666400pt;}
.yb6{bottom:341.518267pt;}
.yf9{bottom:344.125467pt;}
.y1e{bottom:344.624267pt;}
.y71{bottom:346.730933pt;}
.ydc{bottom:348.470933pt;}
.yf8{bottom:360.125600pt;}
.y1d{bottom:360.624267pt;}
.y70{bottom:362.730933pt;}
.y8e{bottom:364.559733pt;}
.yb5{bottom:365.411600pt;}
.ydb{bottom:367.670933pt;}
.y48{bottom:368.840533pt;}
.yda{bottom:375.524267pt;}
.y1c{bottom:376.624267pt;}
.y6f{bottom:378.730933pt;}
.y8d{bottom:380.902133pt;}
.yb4{bottom:381.742267pt;}
.y47{bottom:384.840400pt;}
.yf7{bottom:389.352400pt;}
.y1b{bottom:392.627600pt;}
.y6e{bottom:394.731067pt;}
.y8c{bottom:397.242400pt;}
.yb3{bottom:398.072933pt;}
.y46{bottom:400.840267pt;}
.yf6{bottom:405.353733pt;}
.yd9{bottom:408.411067pt;}
.y1a{bottom:408.626000pt;}
.y6d{bottom:410.729733pt;}
.y45{bottom:416.840267pt;}
.y8b{bottom:421.136800pt;}
.yf5{bottom:421.353733pt;}
.yb2{bottom:421.966267pt;}
.yd8{bottom:424.411067pt;}
.y19{bottom:424.624400pt;}
.y6c{bottom:426.731067pt;}
.y44{bottom:432.837867pt;}
.yf4{bottom:437.353733pt;}
.y8a{bottom:437.478133pt;}
.yb1{bottom:438.296933pt;}
.yd7{bottom:440.411067pt;}
.y18{bottom:440.624400pt;}
.y6b{bottom:442.731067pt;}
.y43{bottom:448.839200pt;}
.yf3{bottom:453.353733pt;}
.y89{bottom:453.819467pt;}
.yb0{bottom:454.627600pt;}
.y42{bottom:464.840533pt;}
.yf2{bottom:469.354133pt;}
.yd6{bottom:469.640933pt;}
.y17{bottom:469.849867pt;}
.y6a{bottom:471.959467pt;}
.y88{bottom:477.712800pt;}
.yaf{bottom:478.520933pt;}
.y41{bottom:480.840533pt;}
.yd5{bottom:485.637867pt;}
.y16{bottom:485.851200pt;}
.y69{bottom:487.959333pt;}
.y87{bottom:494.054133pt;}
.yae{bottom:494.851600pt;}
.y40{bottom:496.840533pt;}
.yf1{bottom:498.584800pt;}
.yd4{bottom:501.639200pt;}
.y68{bottom:503.959200pt;}
.y86{bottom:510.395467pt;}
.yad{bottom:511.182267pt;}
.y3f{bottom:512.840533pt;}
.yf0{bottom:514.583200pt;}
.y15{bottom:515.081867pt;}
.yd3{bottom:517.639200pt;}
.y67{bottom:519.959200pt;}
.y3e{bottom:528.841867pt;}
.yef{bottom:530.583200pt;}
.y14{bottom:531.082000pt;}
.yd2{bottom:533.639333pt;}
.y85{bottom:534.288800pt;}
.yac{bottom:535.075600pt;}
.y66{bottom:535.959333pt;}
.y3d{bottom:544.842000pt;}
.yee{bottom:546.584667pt;}
.y13{bottom:547.080667pt;}
.yd1{bottom:549.639333pt;}
.y84{bottom:550.630133pt;}
.yab{bottom:551.406267pt;}
.y65{bottom:551.960667pt;}
.y3c{bottom:560.842000pt;}
.y12{bottom:563.082000pt;}
.yd0{bottom:565.639333pt;}
.y83{bottom:566.971467pt;}
.yaa{bottom:567.736933pt;}
.y64{bottom:567.960667pt;}
.yed{bottom:575.811333pt;}
.y3b{bottom:576.842000pt;}
.y11{bottom:579.082000pt;}
.ycf{bottom:581.639333pt;}
.y63{bottom:583.960667pt;}
.y82{bottom:590.864800pt;}
.ya9{bottom:591.630267pt;}
.yec{bottom:591.811467pt;}
.y3a{bottom:592.842000pt;}
.y10{bottom:595.078133pt;}
.yce{bottom:597.640667pt;}
.y62{bottom:599.959467pt;}
.y81{bottom:607.206133pt;}
.yeb{bottom:607.811467pt;}
.ya8{bottom:607.960933pt;}
.y39{bottom:608.842000pt;}
.yf{bottom:611.079467pt;}
.ycd{bottom:613.640800pt;}
.y61{bottom:615.960800pt;}
.y80{bottom:623.547467pt;}
.yea{bottom:623.812800pt;}
.ya7{bottom:624.291600pt;}
.y38{bottom:624.842133pt;}
.ye{bottom:627.080800pt;}
.ycc{bottom:629.640800pt;}
.y60{bottom:631.960800pt;}
.y37{bottom:640.842133pt;}
.yd{bottom:643.082133pt;}
.ycb{bottom:645.640800pt;}
.y7f{bottom:647.440800pt;}
.ya6{bottom:648.184933pt;}
.ye9{bottom:653.040800pt;}
.y36{bottom:656.842133pt;}
.yc{bottom:659.083467pt;}
.y5f{bottom:661.188933pt;}
.yca{bottom:661.640933pt;}
.y7e{bottom:663.782133pt;}
.ya5{bottom:664.515600pt;}
.y35{bottom:672.840267pt;}
.yb{bottom:675.083467pt;}
.y5e{bottom:677.188933pt;}
.yc9{bottom:677.640933pt;}
.y7d{bottom:680.016800pt;}
.ya4{bottom:680.846267pt;}
.ya{bottom:691.083600pt;}
.y5d{bottom:693.188933pt;}
.ye8{bottom:694.941067pt;}
.y7c{bottom:695.504933pt;}
.y34{bottom:702.070933pt;}
.ya3{bottom:704.739600pt;}
.y5c{bottom:709.188933pt;}
.ye7{bottom:710.940933pt;}
.yc8{bottom:716.318267pt;}
.y33{bottom:718.069333pt;}
.y7b{bottom:720.846267pt;}
.ya2{bottom:721.070267pt;}
.y5b{bottom:725.188933pt;}
.ye6{bottom:726.940933pt;}
.yc7{bottom:732.318400pt;}
.y32{bottom:734.070667pt;}
.y7a{bottom:736.842267pt;}
.y9{bottom:737.311067pt;}
.ya1{bottom:737.399867pt;}
.y5a{bottom:741.189067pt;}
.yc6{bottom:748.318400pt;}
.y31{bottom:750.069067pt;}
.ye5{bottom:756.170267pt;}
.y59{bottom:757.189333pt;}
.y8{bottom:758.431067pt;}
.ya0{bottom:761.294267pt;}
.yc5{bottom:764.318400pt;}
.y30{bottom:766.070400pt;}
.y58{bottom:773.189200pt;}
.y7{bottom:775.764133pt;}
.y9f{bottom:777.623867pt;}
.yc4{bottom:780.318400pt;}
.y2f{bottom:782.070533pt;}
.y57{bottom:789.189067pt;}
.y9e{bottom:793.954533pt;}
.yc3{bottom:796.318400pt;}
.y2e{bottom:798.070533pt;}
.ye4{bottom:798.070933pt;}
.y6{bottom:804.437467pt;}
.y56{bottom:805.189067pt;}
.yc2{bottom:812.318533pt;}
.ye3{bottom:814.067867pt;}
.y2d{bottom:814.070533pt;}
.y9d{bottom:817.847867pt;}
.y55{bottom:821.189067pt;}
.y5{bottom:821.770533pt;}
.yc1{bottom:828.318533pt;}
.ye2{bottom:830.069200pt;}
.y2c{bottom:830.070533pt;}
.y79{bottom:830.070667pt;}
.y9c{bottom:834.178533pt;}
.yc0{bottom:844.318533pt;}
.y2b{bottom:846.070533pt;}
.y54{bottom:850.418533pt;}
.y9b{bottom:850.509200pt;}
.ybf{bottom:860.318667pt;}
.y2a{bottom:862.070533pt;}
.y9a{bottom:866.839867pt;}
.ybe{bottom:876.317333pt;}
.ye1{bottom:878.069333pt;}
.y29{bottom:878.070533pt;}
.y4{bottom:880.678667pt;}
.ybd{bottom:892.318667pt;}
.y53{bottom:892.318800pt;}
.y28{bottom:894.070667pt;}
.y99{bottom:895.961333pt;}
.y3{bottom:901.478667pt;}
.y52{bottom:908.318667pt;}
.y98{bottom:911.957333pt;}
.y2{bottom:922.278667pt;}
.y27{bottom:923.298667pt;}
.y51{bottom:924.318667pt;}
.y97{bottom:926.357467pt;}
.y26{bottom:967.932133pt;}
.hb{height:34.916667pt;}
.hc{height:37.921875pt;}
.h9{height:45.525333pt;}
.ha{height:46.250667pt;}
.h5{height:48.010417pt;}
.h6{height:51.216000pt;}
.h3{height:62.597333pt;}
.he{height:62.609067pt;}
.h8{height:62.614933pt;}
.h4{height:63.594667pt;}
.h1{height:65.781915pt;}
.h7{height:68.288000pt;}
.h2{height:73.978667pt;}
.hd{height:76.970667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xb{left:156.786933pt;}
.xf{left:160.568267pt;}
.xd{left:166.863237pt;}
.xa{left:171.904267pt;}
.x2{left:175.842933pt;}
.x11{left:198.921333pt;}
.x3{left:207.176989pt;}
.xc{left:223.624400pt;}
.x5{left:258.889867pt;}
.xe{left:268.008533pt;}
.x4{left:281.544997pt;}
.x10{left:291.145493pt;}
.x13{left:304.989867pt;}
.x12{left:350.600667pt;}
.x6{left:376.322083pt;}
.x1{left:383.875467pt;}
.x8{left:385.905547pt;}
.x7{left:391.039643pt;}
.x9{left:465.726827pt;}
}




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