
    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_261d9294bb0a0747bb5d2e77.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07fa026b1df91cd7ccea8040.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_08387189949b9c3d7083d012.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4f886d68efb33917fafb53a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.364746;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_e6bbc9d131933afcf26e8828.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d44c03f41ceba6357854f05b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4451e30ad8e9c27fe1ae73c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d5ae9b990d758b9fbf9490fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364746;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_69e4d957e9f59dfd3692fd6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.364746;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_13c5495f4a032789b73a0d89.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_41fd7720a7d1424ddbb4e9ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e277e4107680325f03267405.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.364746;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:ffd;src:url('chunks/assets/font_7feaa9ed8141a4d27512ffbd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c0d7d17ebd76c8365d84a080.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c{transform:matrix(0.123843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123843,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m1b{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m36{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326087,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.352174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352174,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.352941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352941,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.376302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376302,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.393443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393443,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.405914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405914,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.419118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419118,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.440476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440476,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.850746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850746,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(1.379699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.379699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.379699,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.457250px;}
.ls23{letter-spacing:-10.547475px;}
.ls21{letter-spacing:-8.683200px;}
.ls20{letter-spacing:-8.065125px;}
.ls22{letter-spacing:-7.442025px;}
.ls1f{letter-spacing:-6.823950px;}
.ls65{letter-spacing:-6.465825px;}
.ls62{letter-spacing:-6.030000px;}
.ls68{letter-spacing:-5.411100px;}
.ls5c{letter-spacing:-5.361675px;}
.ls66{letter-spacing:-4.688325px;}
.ls64{letter-spacing:-4.472700px;}
.ls89{letter-spacing:-4.471200px;}
.ls1d{letter-spacing:-4.341600px;}
.ls67{letter-spacing:-3.351675px;}
.ls83{letter-spacing:-3.192975px;}
.ls59{letter-spacing:-2.678325px;}
.ls81{letter-spacing:-2.556450px;}
.ls2a{letter-spacing:-2.482350px;}
.ls82{letter-spacing:-2.249100px;}
.ls4a{letter-spacing:-2.010000px;}
.ls61{letter-spacing:-1.998000px;}
.ls7f{letter-spacing:-1.914750px;}
.ls51{letter-spacing:-1.341675px;}
.ls87{letter-spacing:-1.278225px;}
.ls1e{letter-spacing:-1.241175px;}
.ls50{letter-spacing:-0.850500px;}
.ls5d{letter-spacing:-0.832350px;}
.ls45{letter-spacing:-0.668325px;}
.ls8c{letter-spacing:-0.636525px;}
.ls14{letter-spacing:-0.618075px;}
.ls13{letter-spacing:0.000000px;}
.lse{letter-spacing:0.618075px;}
.ls79{letter-spacing:0.636525px;}
.ls36{letter-spacing:0.668325px;}
.ls27{letter-spacing:0.751275px;}
.ls88{letter-spacing:0.759900px;}
.ls29{letter-spacing:0.772800px;}
.ls5f{letter-spacing:0.775125px;}
.ls8b{letter-spacing:0.878400px;}
.ls5e{letter-spacing:1.102275px;}
.ls52{letter-spacing:1.134225px;}
.ls4{letter-spacing:1.241175px;}
.ls72{letter-spacing:1.278225px;}
.ls37{letter-spacing:1.341675px;}
.ls16{letter-spacing:1.502550px;}
.ls24{letter-spacing:1.574400px;}
.ls25{letter-spacing:1.605825px;}
.ls8a{letter-spacing:1.658475px;}
.ls55{letter-spacing:1.735950px;}
.lsa{letter-spacing:1.859250px;}
.ls6a{letter-spacing:1.914750px;}
.ls40{letter-spacing:2.010000px;}
.ls8e{letter-spacing:2.425500px;}
.ls6{letter-spacing:2.482350px;}
.ls6e{letter-spacing:2.556450px;}
.ls34{letter-spacing:2.678325px;}
.ls46{letter-spacing:2.815200px;}
.ls49{letter-spacing:2.859375px;}
.ls5a{letter-spacing:2.905200px;}
.ls1c{letter-spacing:2.997000px;}
.ls1a{letter-spacing:2.999250px;}
.ls26{letter-spacing:3.048000px;}
.ls3{letter-spacing:3.100425px;}
.ls15{letter-spacing:3.101850px;}
.ls2c{letter-spacing:3.115350px;}
.ls74{letter-spacing:3.192975px;}
.ls32{letter-spacing:3.351675px;}
.ls7{letter-spacing:3.723525px;}
.ls69{letter-spacing:3.834675px;}
.ls3c{letter-spacing:4.020000px;}
.ls17{letter-spacing:4.192200px;}
.ls53{letter-spacing:4.340100px;}
.ls1{letter-spacing:4.341600px;}
.ls6c{letter-spacing:4.471200px;}
.ls19{letter-spacing:4.649400px;}
.ls3a{letter-spacing:4.688325px;}
.ls0{letter-spacing:4.964700px;}
.ls70{letter-spacing:5.112900px;}
.ls31{letter-spacing:5.361675px;}
.ls4f{letter-spacing:5.431500px;}
.ls2{letter-spacing:5.582775px;}
.ls4d{letter-spacing:5.666100px;}
.ls6b{letter-spacing:5.749425px;}
.ls58{letter-spacing:5.825400px;}
.ls57{letter-spacing:5.844600px;}
.ls2d{letter-spacing:6.030000px;}
.ls5{letter-spacing:6.205875px;}
.ls47{letter-spacing:6.318000px;}
.ls73{letter-spacing:6.391125px;}
.ls85{letter-spacing:6.647850px;}
.ls33{letter-spacing:6.698325px;}
.lsc{letter-spacing:6.823950px;}
.ls54{letter-spacing:7.020000px;}
.ls77{letter-spacing:7.027650px;}
.ls38{letter-spacing:7.371675px;}
.ls56{letter-spacing:7.395075px;}
.ls10{letter-spacing:7.442025px;}
.ls18{letter-spacing:7.484700px;}
.ls7b{letter-spacing:7.664175px;}
.ls7e{letter-spacing:7.742400px;}
.ls4c{letter-spacing:7.843800px;}
.ls35{letter-spacing:8.040000px;}
.lsf{letter-spacing:8.065125px;}
.ls71{letter-spacing:8.305875px;}
.ls63{letter-spacing:8.428875px;}
.ls9{letter-spacing:8.683200px;}
.ls30{letter-spacing:8.708325px;}
.ls1b{letter-spacing:8.766900px;}
.ls76{letter-spacing:8.942400px;}
.ls4e{letter-spacing:8.965800px;}
.lsb{letter-spacing:9.306300px;}
.ls2e{letter-spacing:9.381675px;}
.ls4b{letter-spacing:9.465675px;}
.ls5b{letter-spacing:9.493200px;}
.ls6d{letter-spacing:9.584100px;}
.ls3b{letter-spacing:10.050000px;}
.ls60{letter-spacing:10.087800px;}
.ls78{letter-spacing:10.220625px;}
.ls86{letter-spacing:10.339875px;}
.ls12{letter-spacing:10.547475px;}
.ls3d{letter-spacing:10.718325px;}
.ls75{letter-spacing:10.862325px;}
.ls2f{letter-spacing:11.391675px;}
.ls8{letter-spacing:11.788650px;}
.ls84{letter-spacing:12.055800px;}
.ls3f{letter-spacing:12.060000px;}
.ls6f{letter-spacing:12.140550px;}
.ls43{letter-spacing:12.728325px;}
.ls11{letter-spacing:13.029825px;}
.ls7a{letter-spacing:13.418775px;}
.ls41{letter-spacing:14.070000px;}
.lsd{letter-spacing:14.271000px;}
.ls7d{letter-spacing:14.697000px;}
.ls44{letter-spacing:14.738325px;}
.ls39{letter-spacing:15.411675px;}
.ls7c{letter-spacing:15.970050px;}
.ls42{letter-spacing:16.748325px;}
.ls2b{letter-spacing:17.077500px;}
.ls3e{letter-spacing:18.090000px;}
.ls80{letter-spacing:24.671250px;}
.ls8d{letter-spacing:27.844425px;}
.ls48{letter-spacing:30.722550px;}
.ls28{letter-spacing:76.304625px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._2b{margin-left:-48.948525px;}
._22{margin-left:-22.059750px;}
._39{margin-left:-20.638800px;}
._13{margin-left:-15.426750px;}
._1e{margin-left:-13.019775px;}
._19{margin-left:-11.637714px;}
._1d{margin-left:-10.625530px;}
._23{margin-left:-9.619659px;}
._38{margin-left:-8.607750px;}
._25{margin-left:-7.124750px;}
._10{margin-left:-5.909400px;}
._1f{margin-left:-4.733550px;}
._c{margin-left:-3.592875px;}
._1c{margin-left:-2.261250px;}
._16{margin-left:-1.025100px;}
._1a{width:1.206000px;}
._1{width:2.472300px;}
._6{width:3.678300px;}
._2{width:4.723500px;}
._4{width:6.024975px;}
._14{width:7.723797px;}
._3{width:8.974650px;}
._b{width:10.371600px;}
._12{width:11.426850px;}
._18{width:12.783600px;}
._0{width:14.190600px;}
._15{width:16.130250px;}
._1b{width:17.421303px;}
._d{width:18.517125px;}
._21{width:20.632278px;}
._e{width:21.687900px;}
._f{width:24.557175px;}
._17{width:25.712925px;}
._9{width:28.210350px;}
._20{width:31.391175px;}
._33{width:33.225300px;}
._26{width:34.311772px;}
._8{width:38.174553px;}
._24{width:39.265350px;}
._a{width:40.672350px;}
._5{width:42.841847px;}
._11{width:46.536525px;}
._7{width:49.938450px;}
._2e{width:91.254000px;}
._28{width:92.560500px;}
._2c{width:95.424750px;}
._35{width:97.887000px;}
._2a{width:107.283750px;}
._32{width:129.489225px;}
._31{width:147.408375px;}
._2f{width:149.971125px;}
._2d{width:152.034792px;}
._29{width:153.312750px;}
._30{width:209.436603px;}
._36{width:230.396250px;}
._34{width:235.622250px;}
._37{width:246.765275px;}
._27{width:287.069808px;}
.fc0{color:transparent;}
.fs6{font-size:43.500000px;}
.fsf{font-size:45.000000px;}
.fs2{font-size:45.750000px;}
.fs8{font-size:46.500000px;}
.fs3{font-size:47.250000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:48.750000px;}
.fs19{font-size:49.500000px;}
.fs1{font-size:50.250000px;}
.fs5{font-size:51.000000px;}
.fse{font-size:51.750000px;}
.fs9{font-size:52.500000px;}
.fs10{font-size:53.250000px;}
.fs11{font-size:54.000000px;}
.fs12{font-size:54.750000px;}
.fsc{font-size:56.250000px;}
.fs14{font-size:57.750000px;}
.fs16{font-size:58.500000px;}
.fs7{font-size:69.000000px;}
.fs17{font-size:69.750000px;}
.fs0{font-size:86.250000px;}
.fs15{font-size:99.750000px;}
.fsb{font-size:101.250000px;}
.fsd{font-size:104.250000px;}
.fs13{font-size:144.000000px;}
.fs18{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:27.493687px;}
.y50{bottom:27.495450px;}
.y4e{bottom:47.656500px;}
.y4d{bottom:47.658150px;}
.y26{bottom:55.576500px;}
.y25{bottom:55.582687px;}
.y4c{bottom:67.451850px;}
.y24{bottom:82.943812px;}
.y5f{bottom:93.736500px;}
.y23{bottom:102.742312px;}
.y5c{bottom:105.616500px;}
.y5e{bottom:113.175600px;}
.y22{bottom:123.621187px;}
.y5d{bottom:133.336650px;}
.y20{bottom:144.129750px;}
.y21{bottom:144.135750px;}
.y5b{bottom:152.775900px;}
.y1f{bottom:163.576500px;}
.y5a{bottom:172.396350px;}
.y58{bottom:172.576050px;}
.y80{bottom:182.295600px;}
.y1e{bottom:183.371925px;}
.y59{bottom:192.010238px;}
.y57{bottom:192.016800px;}
.y1d{bottom:209.652675px;}
.y56{bottom:211.815300px;}
.y54{bottom:221.895750px;}
.y53{bottom:225.135750px;}
.y55{bottom:225.855900px;}
.y1c{bottom:229.275300px;}
.y52{bottom:233.775900px;}
.y51{bottom:244.215600px;}
.y1b{bottom:248.895750px;}
.y1a{bottom:268.695900px;}
.y19{bottom:268.708537px;}
.y4b{bottom:271.215600px;}
.y4a{bottom:271.217250px;}
.y18{bottom:288.507037px;}
.y48{bottom:291.009900px;}
.y49{bottom:291.015750px;}
.y7f{bottom:304.692487px;}
.y17{bottom:308.305538px;}
.y47{bottom:310.463212px;}
.y7e{bottom:323.771138px;}
.y46{bottom:330.261712px;}
.y16{bottom:334.221975px;}
.y7d{bottom:343.216200px;}
.y7c{bottom:343.221975px;}
.y45{bottom:349.695900px;}
.y15{bottom:358.341975px;}
.y7b{bottom:363.016350px;}
.y7a{bottom:363.027750px;}
.y44{bottom:375.975750px;}
.y14{bottom:377.776163px;}
.y79{bottom:382.822125px;}
.y42{bottom:388.216800px;}
.y43{bottom:395.775900px;}
.y13{bottom:397.398788px;}
.y77{bottom:402.610688px;}
.y78{bottom:402.616500px;}
.y12{bottom:417.737475px;}
.y41{bottom:421.696500px;}
.y40{bottom:421.698150px;}
.y76{bottom:422.051588px;}
.y11{bottom:436.455600px;}
.y3f{bottom:441.496650px;}
.y3d{bottom:460.929900px;}
.y3e{bottom:460.935750px;}
.y75{bottom:467.415600px;}
.y3c{bottom:480.378300px;}
.y10{bottom:482.896350px;}
.y74{bottom:487.221375px;}
.y3b{bottom:500.176800px;}
.yf{bottom:502.335600px;}
.y73{bottom:507.015750px;}
.y3a{bottom:519.975300px;}
.y72{bottom:526.456650px;}
.y71{bottom:526.457813px;}
.y39{bottom:539.055150px;}
.y70{bottom:546.252187px;}
.ye{bottom:547.695450px;}
.yd{bottom:547.696950px;}
.y38{bottom:558.855300px;}
.y6f{bottom:565.335000px;}
.y6e{bottom:565.336425px;}
.yc{bottom:567.495450px;}
.y37{bottom:578.661038px;}
.y6d{bottom:584.781488px;}
.yb{bottom:586.936350px;}
.y36{bottom:599.175600px;}
.y6c{bottom:604.575862px;}
.ya{bottom:606.736500px;}
.y35{bottom:617.898000px;}
.y6b{bottom:624.020925px;}
.y9{bottom:626.536500px;}
.y34{bottom:637.696500px;}
.y6a{bottom:643.815300px;}
.y8{bottom:645.975750px;}
.y33{bottom:657.496650px;}
.y32{bottom:657.501563px;}
.y69{bottom:663.615450px;}
.y68{bottom:663.621225px;}
.y7{bottom:672.255600px;}
.y31{bottom:676.935750px;}
.y67{bottom:683.421225px;}
.y6{bottom:690.976350px;}
.y2f{bottom:696.730050px;}
.y30{bottom:696.735900px;}
.y66{bottom:703.215600px;}
.y2e{bottom:716.176800px;}
.y5{bottom:717.615450px;}
.y65{bottom:728.781075px;}
.y2c{bottom:735.969975px;}
.y2d{bottom:735.975300px;}
.y4{bottom:737.056350px;}
.y64{bottom:748.575450px;}
.y2b{bottom:755.416725px;}
.y3{bottom:757.215600px;}
.y62{bottom:768.381375px;}
.y63{bottom:768.736500px;}
.y2a{bottom:776.295600px;}
.y29{bottom:776.297925px;}
.y2{bottom:778.096800px;}
.y61{bottom:788.175750px;}
.y28{bottom:797.176800px;}
.y1{bottom:802.216200px;}
.y60{bottom:814.455450px;}
.y27{bottom:816.616050px;}
.h1b{height:44.165039px;}
.hb{height:44.901123px;}
.h1e{height:45.351562px;}
.h9{height:45.369141px;}
.hd{height:45.637207px;}
.h6{height:46.373291px;}
.h7{height:47.109375px;}
.h33{height:47.619141px;}
.h5{height:47.715820px;}
.hf{height:47.845459px;}
.h31{height:48.581543px;}
.hc{height:49.280273px;}
.h4{height:49.317627px;}
.h14{height:49.336527px;}
.h23{height:49.336827px;}
.h8{height:50.053711px;}
.h1d{height:50.402344px;}
.h2d{height:50.642578px;}
.h2b{height:50.774877px;}
.h2a{height:50.780877px;}
.h1a{height:50.789795px;}
.h32{height:50.806445px;}
.he{height:51.525879px;}
.h1c{height:51.884766px;}
.h16{height:52.154297px;}
.h30{height:52.238795px;}
.h1f{height:52.261963px;}
.h11{height:52.409180px;}
.h25{height:52.625977px;}
.h20{height:52.998047px;}
.h21{height:53.734131px;}
.h24{height:54.421875px;}
.h15{height:55.206299px;}
.h12{height:55.590820px;}
.h26{height:57.073242px;}
.h28{height:61.013672px;}
.h29{height:68.455811px;}
.ha{height:71.964844px;}
.h3{height:89.956055px;}
.h27{height:104.036133px;}
.h10{height:105.600586px;}
.h13{height:108.729492px;}
.h22{height:150.187500px;}
.h2c{height:337.921875px;}
.h18{height:884.792550px;}
.h19{height:885.000000px;}
.h2{height:885.750000px;}
.h1{height:885.872550px;}
.h2f{height:891.750000px;}
.h2e{height:891.992550px;}
.h0{height:894.000000px;}
.h17{height:898.500000px;}
.w4{width:640.500000px;}
.w3{width:642.000000px;}
.w1{width:645.528090px;}
.w2{width:645.750000px;}
.w6{width:654.000000px;}
.w5{width:654.168090px;}
.w0{width:669.000000px;}
.x0{left:0.000000px;}
.x5e{left:63.924840px;}
.x1{left:65.004240px;}
.x25{left:67.180440px;}
.x26{left:74.379315px;}
.x2{left:79.403940px;}
.x66{left:88.405140px;}
.x2e{left:90.202177px;}
.x48{left:96.325140px;}
.x5f{left:103.884240px;}
.x4c{left:105.324540px;}
.x67{left:111.804390px;}
.x23{left:113.603940px;}
.x4d{left:114.684990px;}
.x3c{left:120.805440px;}
.x24{left:129.084690px;}
.x63{left:134.844240px;}
.x18{left:136.643940px;}
.x3d{left:138.804390px;}
.x69{left:141.684990px;}
.xa{left:142.764390px;}
.x16{left:143.843790px;}
.x3e{left:145.284090px;}
.x19{left:151.404540px;}
.x32{left:152.844840px;}
.xb{left:157.523340px;}
.x14{left:158.604390px;}
.x15{left:159.683790px;}
.x68{left:165.084240px;}
.x3{left:166.163640px;}
.x50{left:168.324090px;}
.x1c{left:175.523940px;}
.x61{left:181.285140px;}
.x11{left:184.523340px;}
.x51{left:185.604390px;}
.x4{left:188.483340px;}
.x41{left:191.724990px;}
.xc{left:196.044240px;}
.x1d{left:197.843790px;}
.x2a{left:204.316740px;}
.x27{left:205.796753px;}
.x17{left:207.563340px;}
.x12{left:212.963640px;}
.x42{left:215.124090px;}
.x1e{left:221.603940px;}
.x2d{left:222.684990px;}
.x54{left:230.604990px;}
.x64{left:236.005290px;}
.x59{left:241.044690px;}
.x3f{left:246.804390px;}
.x55{left:247.885440px;}
.x65{left:252.565590px;}
.x13{left:254.004240px;}
.x56{left:256.525590px;}
.x5{left:258.684390px;}
.x6d{left:266.965290px;}
.x40{left:269.484990px;}
.xd{left:274.524540px;}
.x1f{left:276.683340px;}
.x2b{left:282.444540px;}
.x52{left:284.964240px;}
.x4e{left:288.204090px;}
.x6{left:290.364540px;}
.x33{left:308.724390px;}
.x5c{left:313.765440px;}
.x2c{left:315.204090px;}
.x7{left:316.644390px;}
.x4f{left:324.564390px;}
.x34{left:331.764390px;}
.x1a{left:338.603340px;}
.x8{left:344.723790px;}
.x57{left:346.524990px;}
.x5a{left:348.324540px;}
.x46{left:355.165290px;}
.x5b{left:356.237003px;}
.x1b{left:362.363490px;}
.x49{left:371.364540px;}
.x9{left:385.403490px;}
.x4a{left:387.204690px;}
.xe{left:392.603340px;}
.x6a{left:400.164090px;}
.x20{left:402.324540px;}
.x6c{left:407.364090px;}
.xf{left:408.804390px;}
.x6b{left:423.204090px;}
.x36{left:426.084690px;}
.x10{left:431.124090px;}
.x2f{left:434.004840px;}
.x6e{left:436.165290px;}
.x28{left:439.403490px;}
.x21{left:448.763790px;}
.x29{left:455.243490px;}
.x30{left:457.405590px;}
.x39{left:465.684990px;}
.x3a{left:481.164090px;}
.x6f{left:482.965290px;}
.x47{left:492.684990px;}
.x5d{left:496.644990px;}
.x3b{left:506.005290px;}
.x43{left:511.764990px;}
.x58{left:512.844240px;}
.x31{left:535.164090px;}
.x53{left:543.445140px;}
.x60{left:556.045290px;}
.x62{left:557.485590px;}
.x22{left:558.563340px;}
.x37{left:559.644390px;}
.x35{left:567.564540px;}
.x44{left:573.684990px;}
.x4b{left:576.204690px;}
.x38{left:583.404540px;}
.x45{left:589.884240px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.295333pt;}
.ls23{letter-spacing:-9.375533pt;}
.ls21{letter-spacing:-7.718400pt;}
.ls20{letter-spacing:-7.169000pt;}
.ls22{letter-spacing:-6.615133pt;}
.ls1f{letter-spacing:-6.065733pt;}
.ls65{letter-spacing:-5.747400pt;}
.ls62{letter-spacing:-5.360000pt;}
.ls68{letter-spacing:-4.809867pt;}
.ls5c{letter-spacing:-4.765933pt;}
.ls66{letter-spacing:-4.167400pt;}
.ls64{letter-spacing:-3.975733pt;}
.ls89{letter-spacing:-3.974400pt;}
.ls1d{letter-spacing:-3.859200pt;}
.ls67{letter-spacing:-2.979267pt;}
.ls83{letter-spacing:-2.838200pt;}
.ls59{letter-spacing:-2.380733pt;}
.ls81{letter-spacing:-2.272400pt;}
.ls2a{letter-spacing:-2.206533pt;}
.ls82{letter-spacing:-1.999200pt;}
.ls4a{letter-spacing:-1.786667pt;}
.ls61{letter-spacing:-1.776000pt;}
.ls7f{letter-spacing:-1.702000pt;}
.ls51{letter-spacing:-1.192600pt;}
.ls87{letter-spacing:-1.136200pt;}
.ls1e{letter-spacing:-1.103267pt;}
.ls50{letter-spacing:-0.756000pt;}
.ls5d{letter-spacing:-0.739867pt;}
.ls45{letter-spacing:-0.594067pt;}
.ls8c{letter-spacing:-0.565800pt;}
.ls14{letter-spacing:-0.549400pt;}
.ls13{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.549400pt;}
.ls79{letter-spacing:0.565800pt;}
.ls36{letter-spacing:0.594067pt;}
.ls27{letter-spacing:0.667800pt;}
.ls88{letter-spacing:0.675467pt;}
.ls29{letter-spacing:0.686933pt;}
.ls5f{letter-spacing:0.689000pt;}
.ls8b{letter-spacing:0.780800pt;}
.ls5e{letter-spacing:0.979800pt;}
.ls52{letter-spacing:1.008200pt;}
.ls4{letter-spacing:1.103267pt;}
.ls72{letter-spacing:1.136200pt;}
.ls37{letter-spacing:1.192600pt;}
.ls16{letter-spacing:1.335600pt;}
.ls24{letter-spacing:1.399467pt;}
.ls25{letter-spacing:1.427400pt;}
.ls8a{letter-spacing:1.474200pt;}
.ls55{letter-spacing:1.543067pt;}
.lsa{letter-spacing:1.652667pt;}
.ls6a{letter-spacing:1.702000pt;}
.ls40{letter-spacing:1.786667pt;}
.ls8e{letter-spacing:2.156000pt;}
.ls6{letter-spacing:2.206533pt;}
.ls6e{letter-spacing:2.272400pt;}
.ls34{letter-spacing:2.380733pt;}
.ls46{letter-spacing:2.502400pt;}
.ls49{letter-spacing:2.541667pt;}
.ls5a{letter-spacing:2.582400pt;}
.ls1c{letter-spacing:2.664000pt;}
.ls1a{letter-spacing:2.666000pt;}
.ls26{letter-spacing:2.709333pt;}
.ls3{letter-spacing:2.755933pt;}
.ls15{letter-spacing:2.757200pt;}
.ls2c{letter-spacing:2.769200pt;}
.ls74{letter-spacing:2.838200pt;}
.ls32{letter-spacing:2.979267pt;}
.ls7{letter-spacing:3.309800pt;}
.ls69{letter-spacing:3.408600pt;}
.ls3c{letter-spacing:3.573333pt;}
.ls17{letter-spacing:3.726400pt;}
.ls53{letter-spacing:3.857867pt;}
.ls1{letter-spacing:3.859200pt;}
.ls6c{letter-spacing:3.974400pt;}
.ls19{letter-spacing:4.132800pt;}
.ls3a{letter-spacing:4.167400pt;}
.ls0{letter-spacing:4.413067pt;}
.ls70{letter-spacing:4.544800pt;}
.ls31{letter-spacing:4.765933pt;}
.ls4f{letter-spacing:4.828000pt;}
.ls2{letter-spacing:4.962467pt;}
.ls4d{letter-spacing:5.036533pt;}
.ls6b{letter-spacing:5.110600pt;}
.ls58{letter-spacing:5.178133pt;}
.ls57{letter-spacing:5.195200pt;}
.ls2d{letter-spacing:5.360000pt;}
.ls5{letter-spacing:5.516333pt;}
.ls47{letter-spacing:5.616000pt;}
.ls73{letter-spacing:5.681000pt;}
.ls85{letter-spacing:5.909200pt;}
.ls33{letter-spacing:5.954067pt;}
.lsc{letter-spacing:6.065733pt;}
.ls54{letter-spacing:6.240000pt;}
.ls77{letter-spacing:6.246800pt;}
.ls38{letter-spacing:6.552600pt;}
.ls56{letter-spacing:6.573400pt;}
.ls10{letter-spacing:6.615133pt;}
.ls18{letter-spacing:6.653067pt;}
.ls7b{letter-spacing:6.812600pt;}
.ls7e{letter-spacing:6.882133pt;}
.ls4c{letter-spacing:6.972267pt;}
.ls35{letter-spacing:7.146667pt;}
.lsf{letter-spacing:7.169000pt;}
.ls71{letter-spacing:7.383000pt;}
.ls63{letter-spacing:7.492333pt;}
.ls9{letter-spacing:7.718400pt;}
.ls30{letter-spacing:7.740733pt;}
.ls1b{letter-spacing:7.792800pt;}
.ls76{letter-spacing:7.948800pt;}
.ls4e{letter-spacing:7.969600pt;}
.lsb{letter-spacing:8.272267pt;}
.ls2e{letter-spacing:8.339267pt;}
.ls4b{letter-spacing:8.413933pt;}
.ls5b{letter-spacing:8.438400pt;}
.ls6d{letter-spacing:8.519200pt;}
.ls3b{letter-spacing:8.933333pt;}
.ls60{letter-spacing:8.966933pt;}
.ls78{letter-spacing:9.085000pt;}
.ls86{letter-spacing:9.191000pt;}
.ls12{letter-spacing:9.375533pt;}
.ls3d{letter-spacing:9.527400pt;}
.ls75{letter-spacing:9.655400pt;}
.ls2f{letter-spacing:10.125933pt;}
.ls8{letter-spacing:10.478800pt;}
.ls84{letter-spacing:10.716267pt;}
.ls3f{letter-spacing:10.720000pt;}
.ls6f{letter-spacing:10.791600pt;}
.ls43{letter-spacing:11.314067pt;}
.ls11{letter-spacing:11.582067pt;}
.ls7a{letter-spacing:11.927800pt;}
.ls41{letter-spacing:12.506667pt;}
.lsd{letter-spacing:12.685333pt;}
.ls7d{letter-spacing:13.064000pt;}
.ls44{letter-spacing:13.100733pt;}
.ls39{letter-spacing:13.699267pt;}
.ls7c{letter-spacing:14.195600pt;}
.ls42{letter-spacing:14.887400pt;}
.ls2b{letter-spacing:15.180000pt;}
.ls3e{letter-spacing:16.080000pt;}
.ls80{letter-spacing:21.930000pt;}
.ls8d{letter-spacing:24.750600pt;}
.ls48{letter-spacing:27.308933pt;}
.ls28{letter-spacing:67.826333pt;}
.ws0{word-spacing:0.000000pt;}
._2b{margin-left:-43.509800pt;}
._22{margin-left:-19.608667pt;}
._39{margin-left:-18.345600pt;}
._13{margin-left:-13.712667pt;}
._1e{margin-left:-11.573133pt;}
._19{margin-left:-10.344635pt;}
._1d{margin-left:-9.444916pt;}
._23{margin-left:-8.550808pt;}
._38{margin-left:-7.651333pt;}
._25{margin-left:-6.333111pt;}
._10{margin-left:-5.252800pt;}
._1f{margin-left:-4.207600pt;}
._c{margin-left:-3.193667pt;}
._1c{margin-left:-2.010000pt;}
._16{margin-left:-0.911200pt;}
._1a{width:1.072000pt;}
._1{width:2.197600pt;}
._6{width:3.269600pt;}
._2{width:4.198667pt;}
._4{width:5.355533pt;}
._14{width:6.865598pt;}
._3{width:7.977467pt;}
._b{width:9.219200pt;}
._12{width:10.157200pt;}
._18{width:11.363200pt;}
._0{width:12.613867pt;}
._15{width:14.338000pt;}
._1b{width:15.485602pt;}
._d{width:16.459667pt;}
._21{width:18.339802pt;}
._e{width:19.278133pt;}
._f{width:21.828600pt;}
._17{width:22.855933pt;}
._9{width:25.075867pt;}
._20{width:27.903267pt;}
._33{width:29.533600pt;}
._26{width:30.499353pt;}
._8{width:33.932936pt;}
._24{width:34.902533pt;}
._a{width:36.153200pt;}
._5{width:38.081642pt;}
._11{width:41.365800pt;}
._7{width:44.389733pt;}
._2e{width:81.114667pt;}
._28{width:82.276000pt;}
._2c{width:84.822000pt;}
._35{width:87.010667pt;}
._2a{width:95.363333pt;}
._32{width:115.101533pt;}
._31{width:131.029667pt;}
._2f{width:133.307667pt;}
._2d{width:135.142037pt;}
._29{width:136.278000pt;}
._30{width:186.165869pt;}
._36{width:204.796667pt;}
._34{width:209.442000pt;}
._37{width:219.346911pt;}
._27{width:255.173163pt;}
.fs6{font-size:38.666667pt;}
.fsf{font-size:40.000000pt;}
.fs2{font-size:40.666667pt;}
.fs8{font-size:41.333333pt;}
.fs3{font-size:42.000000pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:43.333333pt;}
.fs19{font-size:44.000000pt;}
.fs1{font-size:44.666667pt;}
.fs5{font-size:45.333333pt;}
.fse{font-size:46.000000pt;}
.fs9{font-size:46.666667pt;}
.fs10{font-size:47.333333pt;}
.fs11{font-size:48.000000pt;}
.fs12{font-size:48.666667pt;}
.fsc{font-size:50.000000pt;}
.fs14{font-size:51.333333pt;}
.fs16{font-size:52.000000pt;}
.fs7{font-size:61.333333pt;}
.fs17{font-size:62.000000pt;}
.fs0{font-size:76.666667pt;}
.fs15{font-size:88.666667pt;}
.fsb{font-size:90.000000pt;}
.fsd{font-size:92.666667pt;}
.fs13{font-size:128.000000pt;}
.fs18{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:24.438833pt;}
.y50{bottom:24.440400pt;}
.y4e{bottom:42.361333pt;}
.y4d{bottom:42.362800pt;}
.y26{bottom:49.401333pt;}
.y25{bottom:49.406833pt;}
.y4c{bottom:59.957200pt;}
.y24{bottom:73.727833pt;}
.y5f{bottom:83.321333pt;}
.y23{bottom:91.326500pt;}
.y5c{bottom:93.881333pt;}
.y5e{bottom:100.600533pt;}
.y22{bottom:109.885500pt;}
.y5d{bottom:118.521467pt;}
.y20{bottom:128.115333pt;}
.y21{bottom:128.120667pt;}
.y5b{bottom:135.800800pt;}
.y1f{bottom:145.401333pt;}
.y5a{bottom:153.241200pt;}
.y58{bottom:153.400933pt;}
.y80{bottom:162.040533pt;}
.y1e{bottom:162.997267pt;}
.y59{bottom:170.675767pt;}
.y57{bottom:170.681600pt;}
.y1d{bottom:186.357933pt;}
.y56{bottom:188.280267pt;}
.y54{bottom:197.240667pt;}
.y53{bottom:200.120667pt;}
.y55{bottom:200.760800pt;}
.y1c{bottom:203.800267pt;}
.y52{bottom:207.800800pt;}
.y51{bottom:217.080533pt;}
.y1b{bottom:221.240667pt;}
.y1a{bottom:238.840800pt;}
.y19{bottom:238.852033pt;}
.y4b{bottom:241.080533pt;}
.y4a{bottom:241.082000pt;}
.y18{bottom:256.450700pt;}
.y48{bottom:258.675467pt;}
.y49{bottom:258.680667pt;}
.y7f{bottom:270.837767pt;}
.y17{bottom:274.049367pt;}
.y47{bottom:275.967300pt;}
.y7e{bottom:287.796567pt;}
.y46{bottom:293.565967pt;}
.y16{bottom:297.086200pt;}
.y7d{bottom:305.081067pt;}
.y7c{bottom:305.086200pt;}
.y45{bottom:310.840800pt;}
.y15{bottom:318.526200pt;}
.y7b{bottom:322.681200pt;}
.y7a{bottom:322.691333pt;}
.y44{bottom:334.200667pt;}
.y14{bottom:335.801033pt;}
.y79{bottom:340.286333pt;}
.y42{bottom:345.081600pt;}
.y43{bottom:351.800800pt;}
.y13{bottom:353.243367pt;}
.y77{bottom:357.876167pt;}
.y78{bottom:357.881333pt;}
.y12{bottom:371.322200pt;}
.y41{bottom:374.841333pt;}
.y40{bottom:374.842800pt;}
.y76{bottom:375.156967pt;}
.y11{bottom:387.960533pt;}
.y3f{bottom:392.441467pt;}
.y3d{bottom:409.715467pt;}
.y3e{bottom:409.720667pt;}
.y75{bottom:415.480533pt;}
.y3c{bottom:427.002933pt;}
.y10{bottom:429.241200pt;}
.y74{bottom:433.085667pt;}
.y3b{bottom:444.601600pt;}
.yf{bottom:446.520533pt;}
.y73{bottom:450.680667pt;}
.y3a{bottom:462.200267pt;}
.y72{bottom:467.961467pt;}
.y71{bottom:467.962500pt;}
.y39{bottom:479.160133pt;}
.y70{bottom:485.557500pt;}
.ye{bottom:486.840400pt;}
.yd{bottom:486.841733pt;}
.y38{bottom:496.760267pt;}
.y6f{bottom:502.520000pt;}
.y6e{bottom:502.521267pt;}
.yc{bottom:504.440400pt;}
.y37{bottom:514.365367pt;}
.y6d{bottom:519.805767pt;}
.yb{bottom:521.721200pt;}
.y36{bottom:532.600533pt;}
.y6c{bottom:537.400767pt;}
.ya{bottom:539.321333pt;}
.y35{bottom:549.242667pt;}
.y6b{bottom:554.685267pt;}
.y9{bottom:556.921333pt;}
.y34{bottom:566.841333pt;}
.y6a{bottom:572.280267pt;}
.y8{bottom:574.200667pt;}
.y33{bottom:584.441467pt;}
.y32{bottom:584.445833pt;}
.y69{bottom:589.880400pt;}
.y68{bottom:589.885533pt;}
.y7{bottom:597.560533pt;}
.y31{bottom:601.720667pt;}
.y67{bottom:607.485533pt;}
.y6{bottom:614.201200pt;}
.y2f{bottom:619.315600pt;}
.y30{bottom:619.320800pt;}
.y66{bottom:625.080533pt;}
.y2e{bottom:636.601600pt;}
.y5{bottom:637.880400pt;}
.y65{bottom:647.805400pt;}
.y2c{bottom:654.195533pt;}
.y2d{bottom:654.200267pt;}
.y4{bottom:655.161200pt;}
.y64{bottom:665.400400pt;}
.y2b{bottom:671.481533pt;}
.y3{bottom:673.080533pt;}
.y62{bottom:683.005667pt;}
.y63{bottom:683.321333pt;}
.y2a{bottom:690.040533pt;}
.y29{bottom:690.042600pt;}
.y2{bottom:691.641600pt;}
.y61{bottom:700.600667pt;}
.y28{bottom:708.601600pt;}
.y1{bottom:713.081067pt;}
.y60{bottom:723.960400pt;}
.y27{bottom:725.880933pt;}
.h1b{height:39.257812pt;}
.hb{height:39.912109pt;}
.h1e{height:40.312500pt;}
.h9{height:40.328125pt;}
.hd{height:40.566406pt;}
.h6{height:41.220703pt;}
.h7{height:41.875000pt;}
.h33{height:42.328125pt;}
.h5{height:42.414062pt;}
.hf{height:42.529297pt;}
.h31{height:43.183594pt;}
.hc{height:43.804688pt;}
.h4{height:43.837891pt;}
.h14{height:43.854691pt;}
.h23{height:43.854957pt;}
.h8{height:44.492188pt;}
.h1d{height:44.802083pt;}
.h2d{height:45.015625pt;}
.h2b{height:45.133224pt;}
.h2a{height:45.138557pt;}
.h1a{height:45.146484pt;}
.h32{height:45.161284pt;}
.he{height:45.800781pt;}
.h1c{height:46.119792pt;}
.h16{height:46.359375pt;}
.h30{height:46.434484pt;}
.h1f{height:46.455078pt;}
.h11{height:46.585938pt;}
.h25{height:46.778646pt;}
.h20{height:47.109375pt;}
.h21{height:47.763672pt;}
.h24{height:48.375000pt;}
.h15{height:49.072266pt;}
.h12{height:49.414063pt;}
.h26{height:50.731771pt;}
.h28{height:54.234375pt;}
.h29{height:60.849609pt;}
.ha{height:63.968750pt;}
.h3{height:79.960938pt;}
.h27{height:92.476562pt;}
.h10{height:93.867188pt;}
.h13{height:96.648438pt;}
.h22{height:133.500000pt;}
.h2c{height:300.375000pt;}
.h18{height:786.482267pt;}
.h19{height:786.666667pt;}
.h2{height:787.333333pt;}
.h1{height:787.442267pt;}
.h2f{height:792.666667pt;}
.h2e{height:792.882267pt;}
.h0{height:794.666667pt;}
.h17{height:798.666667pt;}
.w4{width:569.333333pt;}
.w3{width:570.666667pt;}
.w1{width:573.802747pt;}
.w2{width:574.000000pt;}
.w6{width:581.333333pt;}
.w5{width:581.482747pt;}
.w0{width:594.666667pt;}
.x0{left:0.000000pt;}
.x5e{left:56.822080pt;}
.x1{left:57.781547pt;}
.x25{left:59.715947pt;}
.x26{left:66.114947pt;}
.x2{left:70.581280pt;}
.x66{left:78.582347pt;}
.x2e{left:80.179713pt;}
.x48{left:85.622347pt;}
.x5f{left:92.341547pt;}
.x4c{left:93.621813pt;}
.x67{left:99.381680pt;}
.x23{left:100.981280pt;}
.x4d{left:101.942213pt;}
.x3c{left:107.382613pt;}
.x24{left:114.741947pt;}
.x63{left:119.861547pt;}
.x18{left:121.461280pt;}
.x3d{left:123.381680pt;}
.x69{left:125.942213pt;}
.xa{left:126.901680pt;}
.x16{left:127.861147pt;}
.x3e{left:129.141413pt;}
.x19{left:134.581813pt;}
.x32{left:135.862080pt;}
.xb{left:140.020747pt;}
.x14{left:140.981680pt;}
.x15{left:141.941147pt;}
.x68{left:146.741547pt;}
.x3{left:147.701013pt;}
.x50{left:149.621413pt;}
.x1c{left:156.021280pt;}
.x61{left:161.142347pt;}
.x11{left:164.020747pt;}
.x51{left:164.981680pt;}
.x4{left:167.540747pt;}
.x41{left:170.422213pt;}
.xc{left:174.261547pt;}
.x1d{left:175.861147pt;}
.x2a{left:181.614880pt;}
.x27{left:182.930447pt;}
.x17{left:184.500747pt;}
.x12{left:189.301013pt;}
.x42{left:191.221413pt;}
.x1e{left:196.981280pt;}
.x2d{left:197.942213pt;}
.x54{left:204.982213pt;}
.x64{left:209.782480pt;}
.x59{left:214.261947pt;}
.x3f{left:219.381680pt;}
.x55{left:220.342613pt;}
.x65{left:224.502747pt;}
.x13{left:225.781547pt;}
.x56{left:228.022747pt;}
.x5{left:229.941680pt;}
.x6d{left:237.302480pt;}
.x40{left:239.542213pt;}
.xd{left:244.021813pt;}
.x1f{left:245.940747pt;}
.x2b{left:251.061813pt;}
.x52{left:253.301547pt;}
.x4e{left:256.181413pt;}
.x6{left:258.101813pt;}
.x33{left:274.421680pt;}
.x5c{left:278.902613pt;}
.x2c{left:280.181413pt;}
.x7{left:281.461680pt;}
.x4f{left:288.501680pt;}
.x34{left:294.901680pt;}
.x1a{left:300.980747pt;}
.x8{left:306.421147pt;}
.x57{left:308.022213pt;}
.x5a{left:309.621813pt;}
.x46{left:315.702480pt;}
.x5b{left:316.655113pt;}
.x1b{left:322.100880pt;}
.x49{left:330.101813pt;}
.x9{left:342.580880pt;}
.x4a{left:344.181947pt;}
.xe{left:348.980747pt;}
.x6a{left:355.701413pt;}
.x20{left:357.621813pt;}
.x6c{left:362.101413pt;}
.xf{left:363.381680pt;}
.x6b{left:376.181413pt;}
.x36{left:378.741947pt;}
.x10{left:383.221413pt;}
.x2f{left:385.782080pt;}
.x6e{left:387.702480pt;}
.x28{left:390.580880pt;}
.x21{left:398.901147pt;}
.x29{left:404.660880pt;}
.x30{left:406.582747pt;}
.x39{left:413.942213pt;}
.x3a{left:427.701413pt;}
.x6f{left:429.302480pt;}
.x47{left:437.942213pt;}
.x5d{left:441.462213pt;}
.x3b{left:449.782480pt;}
.x43{left:454.902213pt;}
.x58{left:455.861547pt;}
.x31{left:475.701413pt;}
.x53{left:483.062347pt;}
.x60{left:494.262480pt;}
.x62{left:495.542747pt;}
.x22{left:496.500747pt;}
.x37{left:497.461680pt;}
.x35{left:504.501813pt;}
.x44{left:509.942213pt;}
.x4b{left:512.181947pt;}
.x38{left:518.581813pt;}
.x45{left:524.341547pt;}
}




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