
    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_8de20a34de77399ae3eda6f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a285b5cc78f7d968e7ab5bae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_02259d10fa8cf1e74e5988d1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_54b71c0bd622a894b8d15205.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dafb426cb08d6808e26f4f61.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_572b20e4d785d92121682324.woff')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_60a68b3805d26812722fc20c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_041f8c4b552dd46a7b089aae.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c9abdc7dd1fc28168c294b01.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8c0e2644df837bbc032a67c9.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a5178175f2eecc0ecf3f570d.woff')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_17e18bb35442560a08ea2ef2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.281250;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_89183fdf4f8fb604a790f994.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8af12e05e2a3784e6d27b12b.woff')format("woff");}.ffe{font-family:ffe;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;}
.m34{transform:matrix(0.041016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041016,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.066964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066964,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.107759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107759,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.183219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183219,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.196023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196023,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m2e{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m26{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m3{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m0{transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250996,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m37{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m40{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.462821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462821,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.534722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534722,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.683333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683333,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.703947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703947,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(1.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.263158,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5f{letter-spacing:-49.023000px;}
.ls63{letter-spacing:-14.180250px;}
.ls21{letter-spacing:-12.787200px;}
.ls3{letter-spacing:-12.706875px;}
.ls4d{letter-spacing:-12.609600px;}
.ls27{letter-spacing:-12.079800px;}
.ls57{letter-spacing:-11.912025px;}
.ls28{letter-spacing:-11.680500px;}
.ls19{letter-spacing:-11.367000px;}
.ls48{letter-spacing:-11.209125px;}
.ls4f{letter-spacing:-10.511550px;}
.ls4{letter-spacing:-10.466700px;}
.ls64{letter-spacing:-9.622800px;}
.ls24{letter-spacing:-7.813800px;}
.ls58{letter-spacing:-7.705275px;}
.ls38{letter-spacing:-7.106400px;}
.ls4b{letter-spacing:-7.007700px;}
.ls67{letter-spacing:-6.799575px;}
.ls22{letter-spacing:-6.393600px;}
.ls4a{letter-spacing:-6.304800px;}
.ls16{letter-spacing:-5.686200px;}
.ls47{letter-spacing:-5.607225px;}
.ls59{letter-spacing:-4.984200px;}
.ls12{letter-spacing:-4.973400px;}
.ls46{letter-spacing:-4.904325px;}
.ls5d{letter-spacing:-4.363800px;}
.ls1a{letter-spacing:-4.260600px;}
.ls4c{letter-spacing:-4.201425px;}
.ls5c{letter-spacing:-4.090500px;}
.ls17{letter-spacing:-3.553200px;}
.ls41{letter-spacing:-3.503850px;}
.ls25{letter-spacing:-3.307500px;}
.lsf{letter-spacing:-2.840400px;}
.lse{letter-spacing:-2.805750px;}
.ls44{letter-spacing:-2.800950px;}
.ls26{letter-spacing:-2.587500px;}
.ls8{letter-spacing:-2.325000px;}
.lsd{letter-spacing:-2.303250px;}
.ls5e{letter-spacing:-2.274300px;}
.ls61{letter-spacing:-2.177100px;}
.ls15{letter-spacing:-2.133000px;}
.ls45{letter-spacing:-2.103375px;}
.ls30{letter-spacing:-2.080500px;}
.ls6{letter-spacing:-1.501950px;}
.ls66{letter-spacing:-1.500450px;}
.ls2e{letter-spacing:-1.481550px;}
.ls11{letter-spacing:-1.420200px;}
.ls42{letter-spacing:-1.400475px;}
.ls1b{letter-spacing:-1.387500px;}
.ls10{letter-spacing:-0.915900px;}
.ls1d{letter-spacing:-0.890100px;}
.ls40{letter-spacing:-0.789750px;}
.ls5{letter-spacing:-0.762600px;}
.ls60{letter-spacing:-0.735300px;}
.ls31{letter-spacing:-0.732600px;}
.ls13{letter-spacing:-0.712800px;}
.ls43{letter-spacing:-0.702900px;}
.ls7{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.702900px;}
.ls14{letter-spacing:0.712800px;}
.ls29{letter-spacing:0.722400px;}
.ls2c{letter-spacing:0.740775px;}
.ls2f{letter-spacing:0.761025px;}
.ls3f{letter-spacing:0.765675px;}
.ls9{letter-spacing:0.777750px;}
.ls36{letter-spacing:0.890100px;}
.ls35{letter-spacing:0.915900px;}
.ls3c{letter-spacing:1.400475px;}
.ls23{letter-spacing:1.420200px;}
.ls2a{letter-spacing:1.481550px;}
.lsa{letter-spacing:1.525200px;}
.ls0{letter-spacing:1.537575px;}
.ls49{letter-spacing:1.811250px;}
.ls34{letter-spacing:1.837125px;}
.ls3e{letter-spacing:2.103375px;}
.ls55{letter-spacing:2.187000px;}
.ls2d{letter-spacing:2.222325px;}
.ls2{letter-spacing:2.303250px;}
.ls56{letter-spacing:2.316600px;}
.ls51{letter-spacing:2.861325px;}
.ls1{letter-spacing:3.075150px;}
.ls1c{letter-spacing:3.457800px;}
.ls20{letter-spacing:3.570750px;}
.ls5b{letter-spacing:3.694950px;}
.lsb{letter-spacing:3.840825px;}
.ls53{letter-spacing:4.012800px;}
.ls54{letter-spacing:4.130100px;}
.ls52{letter-spacing:4.428000px;}
.lsc{letter-spacing:4.612725px;}
.ls37{letter-spacing:4.688250px;}
.ls50{letter-spacing:4.816500px;}
.ls62{letter-spacing:4.950000px;}
.ls32{letter-spacing:4.976775px;}
.ls39{letter-spacing:5.175000px;}
.ls3a{letter-spacing:5.325000px;}
.ls1e{letter-spacing:5.528250px;}
.ls1f{letter-spacing:5.607225px;}
.ls2b{letter-spacing:5.926200px;}
.ls18{letter-spacing:6.898275px;}
.ls5a{letter-spacing:7.298175px;}
.ls4e{letter-spacing:7.371000px;}
.ls33{letter-spacing:7.476300px;}
.ls3b{letter-spacing:7.687875px;}
.ls68{letter-spacing:13.395600px;}
.ls69{letter-spacing:22.501875px;}
.ls65{letter-spacing:55.062000px;}
.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;}
._15{margin-left:-17.079029px;}
._16{margin-left:-13.575600px;}
._18{margin-left:-12.563925px;}
._1{margin-left:-10.890605px;}
._14{margin-left:-9.849600px;}
._b{margin-left:-8.283600px;}
._8{margin-left:-6.534000px;}
._e{margin-left:-5.526524px;}
._6{margin-left:-4.492232px;}
._3{margin-left:-2.836756px;}
._2{margin-left:-1.263675px;}
._d{width:1.134000px;}
._7{width:2.797200px;}
._5{width:4.147200px;}
._f{width:5.356800px;}
._c{width:6.733800px;}
._a{width:8.598556px;}
._4{width:10.271250px;}
._0{width:12.286151px;}
._17{width:13.359600px;}
._12{width:14.659244px;}
._1a{width:16.353075px;}
._11{width:19.337400px;}
._19{width:20.893341px;}
._9{width:22.113000px;}
._10{width:23.387400px;}
._13{width:25.779600px;}
.fc0{color:transparent;}
.fs29{font-size:10.500000px;}
.fs2a{font-size:12.750000px;}
.fs1b{font-size:14.250000px;}
.fs20{font-size:16.500000px;}
.fs25{font-size:18.750000px;}
.fs12{font-size:22.500000px;}
.fs22{font-size:24.000000px;}
.fs27{font-size:26.250000px;}
.fs1a{font-size:28.500000px;}
.fs18{font-size:33.750000px;}
.fs2b{font-size:36.000000px;}
.fs2c{font-size:41.250000px;}
.fsf{font-size:42.000000px;}
.fs1e{font-size:42.750000px;}
.fs14{font-size:43.500000px;}
.fs1f{font-size:44.250000px;}
.fs23{font-size:45.000000px;}
.fs2{font-size:45.750000px;}
.fs1{font-size:46.500000px;}
.fs11{font-size:49.500000px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:51.750000px;}
.fsa{font-size:52.500000px;}
.fs6{font-size:53.250000px;}
.fs5{font-size:54.000000px;}
.fs10{font-size:54.750000px;}
.fs8{font-size:55.500000px;}
.fsb{font-size:56.250000px;}
.fs16{font-size:57.000000px;}
.fsc{font-size:57.750000px;}
.fs17{font-size:58.500000px;}
.fs15{font-size:60.750000px;}
.fs3{font-size:62.250000px;}
.fs4{font-size:64.500000px;}
.fs26{font-size:66.000000px;}
.fs28{font-size:69.000000px;}
.fs19{font-size:78.750000px;}
.fs1c{font-size:96.000000px;}
.fs13{font-size:99.000000px;}
.fs21{font-size:109.500000px;}
.fs24{font-size:115.500000px;}
.fs1d{font-size:146.250000px;}
.fs0{font-size:188.250000px;}
.fsd{font-size:189.750000px;}
.fse{font-size:195.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:96.976350px;}
.y78{bottom:107.419950px;}
.y3c{bottom:110.655900px;}
.yb9{bottom:115.697100px;}
.yb8{bottom:116.776500px;}
.y77{bottom:122.539950px;}
.yb0{bottom:124.334100px;}
.yb1{bottom:124.337250px;}
.y3b{bottom:125.775900px;}
.yb7{bottom:126.856950px;}
.y76{bottom:137.295450px;}
.y3e{bottom:137.655900px;}
.yaf{bottom:139.457100px;}
.y3a{bottom:140.901450px;}
.y75{bottom:152.415450px;}
.yae{bottom:154.205962px;}
.y39{bottom:155.656950px;}
.y74{bottom:166.819950px;}
.yad{bottom:168.610088px;}
.y38{bottom:170.412450px;}
.y3d{bottom:175.097400px;}
.y73{bottom:181.939950px;}
.yac{bottom:183.373650px;}
.y37{bottom:184.816950px;}
.y36{bottom:184.820550px;}
.y72{bottom:196.695450px;}
.yab{bottom:198.496650px;}
.y35{bottom:199.576050px;}
.y71{bottom:212.535450px;}
.yaa{bottom:212.896350px;}
.y34{bottom:216.856350px;}
.y33{bottom:216.865050px;}
.y6f{bottom:227.296050px;}
.y70{bottom:227.296200px;}
.ya8{bottom:227.652675px;}
.ya9{bottom:227.657100px;}
.y32{bottom:231.620550px;}
.ya7{bottom:242.056800px;}
.y6e{bottom:242.416050px;}
.y31{bottom:246.740550px;}
.ya6{bottom:257.172375px;}
.y6d{bottom:257.536050px;}
.y6c{bottom:257.539500px;}
.y30{bottom:261.496050px;}
.y2f{bottom:261.506250px;}
.ya5{bottom:271.576500px;}
.y6b{bottom:272.295000px;}
.y2e{bottom:276.261750px;}
.ya4{bottom:286.663575px;}
.y69{bottom:287.055600px;}
.y6a{bottom:287.055750px;}
.y2d{bottom:291.381750px;}
.ya3{bottom:301.427138px;}
.y68{bottom:302.175600px;}
.y2c{bottom:306.501750px;}
.ya2{bottom:316.190700px;}
.y67{bottom:316.934700px;}
.y66{bottom:316.936350px;}
.y2b{bottom:321.260700px;}
.ya1{bottom:330.954263px;}
.y65{bottom:332.056350px;}
.y64{bottom:332.073750px;}
.y2a{bottom:336.380700px;}
.ya0{bottom:345.717825px;}
.y63{bottom:346.829250px;}
.y29{bottom:351.136200px;}
.y9f{bottom:360.840825px;}
.y62{bottom:361.584750px;}
.y28{bottom:366.256200px;}
.y27{bottom:366.256500px;}
.y9e{bottom:375.244950px;}
.y61{bottom:376.340250px;}
.y26{bottom:381.012000px;}
.y9d{bottom:390.727388px;}
.y60{bottom:391.095750px;}
.y5f{bottom:391.099200px;}
.y25{bottom:396.132000px;}
.y9c{bottom:405.850388px;}
.y5e{bottom:405.854700px;}
.y5d{bottom:405.859950px;}
.y24{bottom:411.252000px;}
.y5c{bottom:420.615450px;}
.y5b{bottom:420.619500px;}
.y9b{bottom:420.973388px;}
.y23{bottom:426.372000px;}
.y5a{bottom:435.375000px;}
.y99{bottom:435.732487px;}
.y9a{bottom:435.736950px;}
.y22{bottom:440.776500px;}
.y59{bottom:449.779500px;}
.y98{bottom:450.496050px;}
.y21{bottom:455.540700px;}
.y58{bottom:464.535000px;}
.y97{bottom:465.616050px;}
.y20{bottom:470.296200px;}
.y1f{bottom:470.296650px;}
.y57{bottom:479.295600px;}
.y56{bottom:479.300700px;}
.y95{bottom:480.726938px;}
.y96{bottom:480.735900px;}
.y1e{bottom:485.052150px;}
.y55{bottom:494.056200px;}
.y94{bottom:495.849938px;}
.y1c{bottom:499.456500px;}
.y1d{bottom:499.456650px;}
.y54{bottom:509.176200px;}
.y53{bottom:509.185200px;}
.y93{bottom:510.972938px;}
.y1b{bottom:514.576500px;}
.yb6{bottom:523.216800px;}
.y52{bottom:523.589700px;}
.y91{bottom:525.732075px;}
.y92{bottom:525.736500px;}
.y1a{bottom:528.976350px;}
.y51{bottom:538.345200px;}
.y90{bottom:540.136200px;}
.y19{bottom:543.740550px;}
.yb5{bottom:547.336200px;}
.y50{bottom:553.100700px;}
.y8e{bottom:555.962962px;}
.y8f{bottom:555.976350px;}
.y18{bottom:558.496050px;}
.y4f{bottom:567.856200px;}
.y8d{bottom:570.726525px;}
.y17{bottom:573.616050px;}
.y16{bottom:573.620550px;}
.y4e{bottom:582.976200px;}
.y8c{bottom:585.490087px;}
.y15{bottom:589.456050px;}
.y14{bottom:589.461300px;}
.y4d{bottom:598.096200px;}
.y8b{bottom:600.613087px;}
.y13{bottom:604.216800px;}
.y4c{bottom:613.224750px;}
.y89{bottom:615.357525px;}
.y8a{bottom:615.376650px;}
.y12{bottom:618.977400px;}
.y11{bottom:618.981300px;}
.y4b{bottom:627.980250px;}
.yb4{bottom:629.417250px;}
.y88{bottom:630.121087px;}
.y10{bottom:633.385800px;}
.yb3{bottom:638.416650px;}
.y4a{bottom:643.100250px;}
.y87{bottom:644.884650px;}
.yf{bottom:648.505800px;}
.y49{bottom:658.220250px;}
.y86{bottom:659.648212px;}
.ye{bottom:663.261300px;}
.yb2{bottom:663.617100px;}
.y48{bottom:672.975750px;}
.y85{bottom:674.411775px;}
.yd{bottom:678.016800px;}
.y47{bottom:688.095750px;}
.y84{bottom:688.815900px;}
.yc{bottom:692.775900px;}
.y46{bottom:703.220850px;}
.y82{bottom:703.566262px;}
.y83{bottom:703.576500px;}
.yb{bottom:707.536500px;}
.y45{bottom:717.979950px;}
.y81{bottom:718.689263px;}
.ya{bottom:722.656500px;}
.y44{bottom:732.735450px;}
.y80{bottom:733.452825px;}
.y7f{bottom:747.856950px;}
.y9{bottom:755.776950px;}
.y8{bottom:755.781562px;}
.y7e{bottom:785.296650px;}
.y7{bottom:889.338937px;}
.y7d{bottom:894.376050px;}
.y43{bottom:901.576050px;}
.y7c{bottom:902.296200px;}
.y6{bottom:905.539500px;}
.y42{bottom:917.775787px;}
.y5{bottom:922.098000px;}
.y41{bottom:934.334287px;}
.y7b{bottom:935.778037px;}
.y4{bottom:938.656500px;}
.y40{bottom:950.534850px;}
.y7a{bottom:951.978600px;}
.y3{bottom:954.857550px;}
.y79{bottom:968.537100px;}
.y2{bottom:969.977400px;}
.y1{bottom:1019.656500px;}
.h35{height:10.305176px;}
.h36{height:12.507202px;}
.h26{height:14.862305px;}
.h2b{height:16.193848px;}
.h30{height:18.402100px;}
.h17{height:23.466797px;}
.h2d{height:25.031250px;}
.h32{height:27.377930px;}
.h25{height:29.724609px;}
.h23{height:35.200195px;}
.h37{height:37.546875px;}
.h34{height:42.692871px;}
.h38{height:43.022461px;}
.h11{height:43.804688px;}
.h29{height:44.586914px;}
.h1c{height:45.369141px;}
.h2a{height:46.151367px;}
.h2e{height:46.933594px;}
.h4{height:47.715820px;}
.h3{height:48.498047px;}
.h16{height:51.626953px;}
.hb{height:53.191406px;}
.h9{height:53.973633px;}
.hc{height:54.755859px;}
.h8{height:55.538086px;}
.h21{height:55.669786px;}
.h7{height:56.320312px;}
.h15{height:57.102539px;}
.ha{height:57.884766px;}
.hd{height:58.666992px;}
.h20{height:58.957031px;}
.h1e{height:59.449219px;}
.he{height:60.231445px;}
.h1f{height:61.224609px;}
.h1d{height:63.360352px;}
.h5{height:64.924805px;}
.h6{height:67.271484px;}
.h31{height:68.835938px;}
.h33{height:71.964844px;}
.h24{height:77.288818px;}
.h27{height:94.171875px;}
.h1b{height:103.253906px;}
.h2c{height:114.205078px;}
.h2f{height:120.462891px;}
.h28{height:144.536133px;}
.hf{height:186.136597px;}
.h2{height:196.338867px;}
.h10{height:203.378906px;}
.h0{height:1073.792565px;}
.h1{height:1074.000000px;}
.h13{height:1074.511035px;}
.h22{height:1074.512550px;}
.h14{height:1074.750000px;}
.h18{height:1078.500000px;}
.h1a{height:1081.500000px;}
.h19{height:1081.712550px;}
.h12{height:1093.500000px;}
.w2{width:934.500000px;}
.w4{width:935.250000px;}
.w3{width:935.553435px;}
.w8{width:936.750000px;}
.w7{width:936.991050px;}
.w1{width:939.000000px;}
.w0{width:939.152550px;}
.w5{width:946.351320px;}
.w6{width:946.500000px;}
.x0{left:0.000000px;}
.x5b{left:5.175600px;}
.x2b{left:17.051385px;}
.x26{left:18.121950px;}
.x22{left:19.208250px;}
.xd{left:20.303250px;}
.x9{left:21.730800px;}
.x8{left:22.809112px;}
.x1{left:23.896350px;}
.x48{left:25.328520px;}
.x46{left:26.426370px;}
.x44{left:27.854820px;}
.x3f{left:29.656020px;}
.x18{left:31.455600px;}
.x17{left:34.695450px;}
.x2c{left:41.176785px;}
.x4d{left:44.414970px;}
.x49{left:45.855270px;}
.x1a{left:50.896350px;}
.x2d{left:52.336635px;}
.x4a{left:59.534970px;}
.x2e{left:71.775885px;}
.x37{left:75.376635px;}
.x1b{left:78.255600px;}
.x52{left:79.335120px;}
.x3b{left:80.416035px;}
.x2f{left:82.935735px;}
.x13{left:85.455600px;}
.x1c{left:86.895900px;}
.x38{left:89.417235px;}
.x23{left:91.216800px;}
.xa{left:93.016350px;}
.xb{left:94.456650px;}
.x3c{left:96.256185px;}
.x1d{left:98.416650px;}
.x14{left:100.575450px;}
.x24{left:102.735900px;}
.x4c{left:103.815270px;}
.x39{left:107.416035px;}
.xc{left:109.935750px;}
.x28{left:112.096350px;}
.x57{left:113.175600px;}
.x27{left:114.256800px;}
.x19{left:115.336200px;}
.x53{left:120.734820px;}
.x43{left:125.775870px;}
.x56{left:128.295600px;}
.x4e{left:130.095120px;}
.x33{left:132.257235px;}
.x54{left:135.136170px;}
.x11{left:138.016800px;}
.x4f{left:145.215120px;}
.x34{left:148.456635px;}
.x45{left:150.256170px;}
.x15{left:151.335600px;}
.x20{left:152.416650px;}
.x35{left:153.496035px;}
.x32{left:156.735885px;}
.x30{left:159.257235px;}
.x50{left:160.695870px;}
.x21{left:162.856350px;}
.x12{left:165.016800px;}
.x16{left:166.096350px;}
.x36{left:167.175735px;}
.x3a{left:168.616035px;}
.x4b{left:169.695420px;}
.x47{left:172.576020px;}
.x31{left:175.095735px;}
.xf{left:176.536050px;}
.x51{left:178.694820px;}
.x59{left:183.015750px;}
.xe{left:186.975750px;}
.x1e{left:193.455450px;}
.x58{left:198.135750px;}
.x5a{left:200.655450px;}
.x10{left:202.815900px;}
.x3d{left:205.696485px;}
.x1f{left:207.855300px;}
.x25{left:209.295600px;}
.x55{left:211.095120px;}
.x3e{left:214.336635px;}
.x5c{left:273.376050px;}
.x5d{left:297.136200px;}
.x63{left:299.296650px;}
.x5e{left:316.216200px;}
.x5f{left:335.296200px;}
.x60{left:355.096200px;}
.x61{left:378.136200px;}
.x64{left:402.975750px;}
.x65{left:413.056350px;}
.x66{left:422.416650px;}
.x67{left:441.496650px;}
.x68{left:462.376050px;}
.x29{left:482.176200px;}
.x2{left:487.576500px;}
.x69{left:499.095750px;}
.x2a{left:510.616500px;}
.x3{left:517.096200px;}
.x62{left:528.256200px;}
.x4{left:533.295600px;}
.x6a{left:546.616050px;}
.x5{left:644.535450px;}
.x6{left:677.296650px;}
.x7{left:690.615450px;}
.x40{left:722.654820px;}
.x41{left:731.656020px;}
.x42{left:737.054670px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5f{letter-spacing:-43.576000pt;}
.ls63{letter-spacing:-12.604667pt;}
.ls21{letter-spacing:-11.366400pt;}
.ls3{letter-spacing:-11.295000pt;}
.ls4d{letter-spacing:-11.208533pt;}
.ls27{letter-spacing:-10.737600pt;}
.ls57{letter-spacing:-10.588467pt;}
.ls28{letter-spacing:-10.382667pt;}
.ls19{letter-spacing:-10.104000pt;}
.ls48{letter-spacing:-9.963667pt;}
.ls4f{letter-spacing:-9.343600pt;}
.ls4{letter-spacing:-9.303733pt;}
.ls64{letter-spacing:-8.553600pt;}
.ls24{letter-spacing:-6.945600pt;}
.ls58{letter-spacing:-6.849133pt;}
.ls38{letter-spacing:-6.316800pt;}
.ls4b{letter-spacing:-6.229067pt;}
.ls67{letter-spacing:-6.044067pt;}
.ls22{letter-spacing:-5.683200pt;}
.ls4a{letter-spacing:-5.604267pt;}
.ls16{letter-spacing:-5.054400pt;}
.ls47{letter-spacing:-4.984200pt;}
.ls59{letter-spacing:-4.430400pt;}
.ls12{letter-spacing:-4.420800pt;}
.ls46{letter-spacing:-4.359400pt;}
.ls5d{letter-spacing:-3.878933pt;}
.ls1a{letter-spacing:-3.787200pt;}
.ls4c{letter-spacing:-3.734600pt;}
.ls5c{letter-spacing:-3.636000pt;}
.ls17{letter-spacing:-3.158400pt;}
.ls41{letter-spacing:-3.114533pt;}
.ls25{letter-spacing:-2.940000pt;}
.lsf{letter-spacing:-2.524800pt;}
.lse{letter-spacing:-2.494000pt;}
.ls44{letter-spacing:-2.489733pt;}
.ls26{letter-spacing:-2.300000pt;}
.ls8{letter-spacing:-2.066667pt;}
.lsd{letter-spacing:-2.047333pt;}
.ls5e{letter-spacing:-2.021600pt;}
.ls61{letter-spacing:-1.935200pt;}
.ls15{letter-spacing:-1.896000pt;}
.ls45{letter-spacing:-1.869667pt;}
.ls30{letter-spacing:-1.849333pt;}
.ls6{letter-spacing:-1.335067pt;}
.ls66{letter-spacing:-1.333733pt;}
.ls2e{letter-spacing:-1.316933pt;}
.ls11{letter-spacing:-1.262400pt;}
.ls42{letter-spacing:-1.244867pt;}
.ls1b{letter-spacing:-1.233333pt;}
.ls10{letter-spacing:-0.814133pt;}
.ls1d{letter-spacing:-0.791200pt;}
.ls40{letter-spacing:-0.702000pt;}
.ls5{letter-spacing:-0.677867pt;}
.ls60{letter-spacing:-0.653600pt;}
.ls31{letter-spacing:-0.651200pt;}
.ls13{letter-spacing:-0.633600pt;}
.ls43{letter-spacing:-0.624800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.624800pt;}
.ls14{letter-spacing:0.633600pt;}
.ls29{letter-spacing:0.642133pt;}
.ls2c{letter-spacing:0.658467pt;}
.ls2f{letter-spacing:0.676467pt;}
.ls3f{letter-spacing:0.680600pt;}
.ls9{letter-spacing:0.691333pt;}
.ls36{letter-spacing:0.791200pt;}
.ls35{letter-spacing:0.814133pt;}
.ls3c{letter-spacing:1.244867pt;}
.ls23{letter-spacing:1.262400pt;}
.ls2a{letter-spacing:1.316933pt;}
.lsa{letter-spacing:1.355733pt;}
.ls0{letter-spacing:1.366733pt;}
.ls49{letter-spacing:1.610000pt;}
.ls34{letter-spacing:1.633000pt;}
.ls3e{letter-spacing:1.869667pt;}
.ls55{letter-spacing:1.944000pt;}
.ls2d{letter-spacing:1.975400pt;}
.ls2{letter-spacing:2.047333pt;}
.ls56{letter-spacing:2.059200pt;}
.ls51{letter-spacing:2.543400pt;}
.ls1{letter-spacing:2.733467pt;}
.ls1c{letter-spacing:3.073600pt;}
.ls20{letter-spacing:3.174000pt;}
.ls5b{letter-spacing:3.284400pt;}
.lsb{letter-spacing:3.414067pt;}
.ls53{letter-spacing:3.566933pt;}
.ls54{letter-spacing:3.671200pt;}
.ls52{letter-spacing:3.936000pt;}
.lsc{letter-spacing:4.100200pt;}
.ls37{letter-spacing:4.167333pt;}
.ls50{letter-spacing:4.281333pt;}
.ls62{letter-spacing:4.400000pt;}
.ls32{letter-spacing:4.423800pt;}
.ls39{letter-spacing:4.600000pt;}
.ls3a{letter-spacing:4.733333pt;}
.ls1e{letter-spacing:4.914000pt;}
.ls1f{letter-spacing:4.984200pt;}
.ls2b{letter-spacing:5.267733pt;}
.ls18{letter-spacing:6.131800pt;}
.ls5a{letter-spacing:6.487267pt;}
.ls4e{letter-spacing:6.552000pt;}
.ls33{letter-spacing:6.645600pt;}
.ls3b{letter-spacing:6.833667pt;}
.ls68{letter-spacing:11.907200pt;}
.ls69{letter-spacing:20.001667pt;}
.ls65{letter-spacing:48.944000pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-15.181359pt;}
._16{margin-left:-12.067200pt;}
._18{margin-left:-11.167933pt;}
._1{margin-left:-9.680538pt;}
._14{margin-left:-8.755200pt;}
._b{margin-left:-7.363200pt;}
._8{margin-left:-5.808000pt;}
._e{margin-left:-4.912466pt;}
._6{margin-left:-3.993095pt;}
._3{margin-left:-2.521560pt;}
._2{margin-left:-1.123267pt;}
._d{width:1.008000pt;}
._7{width:2.486400pt;}
._5{width:3.686400pt;}
._f{width:4.761600pt;}
._c{width:5.985600pt;}
._a{width:7.643160pt;}
._4{width:9.130000pt;}
._0{width:10.921023pt;}
._17{width:11.875200pt;}
._12{width:13.030440pt;}
._1a{width:14.536067pt;}
._11{width:17.188800pt;}
._19{width:18.571859pt;}
._9{width:19.656000pt;}
._10{width:20.788800pt;}
._13{width:22.915200pt;}
.fs29{font-size:9.333333pt;}
.fs2a{font-size:11.333333pt;}
.fs1b{font-size:12.666667pt;}
.fs20{font-size:14.666667pt;}
.fs25{font-size:16.666667pt;}
.fs12{font-size:20.000000pt;}
.fs22{font-size:21.333333pt;}
.fs27{font-size:23.333333pt;}
.fs1a{font-size:25.333333pt;}
.fs18{font-size:30.000000pt;}
.fs2b{font-size:32.000000pt;}
.fs2c{font-size:36.666667pt;}
.fsf{font-size:37.333333pt;}
.fs1e{font-size:38.000000pt;}
.fs14{font-size:38.666667pt;}
.fs1f{font-size:39.333333pt;}
.fs23{font-size:40.000000pt;}
.fs2{font-size:40.666667pt;}
.fs1{font-size:41.333333pt;}
.fs11{font-size:44.000000pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:46.000000pt;}
.fsa{font-size:46.666667pt;}
.fs6{font-size:47.333333pt;}
.fs5{font-size:48.000000pt;}
.fs10{font-size:48.666667pt;}
.fs8{font-size:49.333333pt;}
.fsb{font-size:50.000000pt;}
.fs16{font-size:50.666667pt;}
.fsc{font-size:51.333333pt;}
.fs17{font-size:52.000000pt;}
.fs15{font-size:54.000000pt;}
.fs3{font-size:55.333333pt;}
.fs4{font-size:57.333333pt;}
.fs26{font-size:58.666667pt;}
.fs28{font-size:61.333333pt;}
.fs19{font-size:70.000000pt;}
.fs1c{font-size:85.333333pt;}
.fs13{font-size:88.000000pt;}
.fs21{font-size:97.333333pt;}
.fs24{font-size:102.666667pt;}
.fs1d{font-size:130.000000pt;}
.fs0{font-size:167.333333pt;}
.fsd{font-size:168.666667pt;}
.fse{font-size:173.333333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:86.201200pt;}
.y78{bottom:95.484400pt;}
.y3c{bottom:98.360800pt;}
.yb9{bottom:102.841867pt;}
.yb8{bottom:103.801333pt;}
.y77{bottom:108.924400pt;}
.yb0{bottom:110.519200pt;}
.yb1{bottom:110.522000pt;}
.y3b{bottom:111.800800pt;}
.yb7{bottom:112.761733pt;}
.y76{bottom:122.040400pt;}
.y3e{bottom:122.360800pt;}
.yaf{bottom:123.961867pt;}
.y3a{bottom:125.245733pt;}
.y75{bottom:135.480400pt;}
.yae{bottom:137.071967pt;}
.y39{bottom:138.361733pt;}
.y74{bottom:148.284400pt;}
.yad{bottom:149.875633pt;}
.y38{bottom:151.477733pt;}
.y3d{bottom:155.642133pt;}
.y73{bottom:161.724400pt;}
.yac{bottom:162.998800pt;}
.y37{bottom:164.281733pt;}
.y36{bottom:164.284933pt;}
.y72{bottom:174.840400pt;}
.yab{bottom:176.441467pt;}
.y35{bottom:177.400933pt;}
.y71{bottom:188.920400pt;}
.yaa{bottom:189.241200pt;}
.y34{bottom:192.761200pt;}
.y33{bottom:192.768933pt;}
.y6f{bottom:202.040933pt;}
.y70{bottom:202.041067pt;}
.ya8{bottom:202.357933pt;}
.ya9{bottom:202.361867pt;}
.y32{bottom:205.884933pt;}
.ya7{bottom:215.161600pt;}
.y6e{bottom:215.480933pt;}
.y31{bottom:219.324933pt;}
.ya6{bottom:228.597667pt;}
.y6d{bottom:228.920933pt;}
.y6c{bottom:228.924000pt;}
.y30{bottom:232.440933pt;}
.y2f{bottom:232.450000pt;}
.ya5{bottom:241.401333pt;}
.y6b{bottom:242.040000pt;}
.y2e{bottom:245.566000pt;}
.ya4{bottom:254.812067pt;}
.y69{bottom:255.160533pt;}
.y6a{bottom:255.160667pt;}
.y2d{bottom:259.006000pt;}
.ya3{bottom:267.935233pt;}
.y68{bottom:268.600533pt;}
.y2c{bottom:272.446000pt;}
.ya2{bottom:281.058400pt;}
.y67{bottom:281.719733pt;}
.y66{bottom:281.721200pt;}
.y2b{bottom:285.565067pt;}
.ya1{bottom:294.181567pt;}
.y65{bottom:295.161200pt;}
.y64{bottom:295.176667pt;}
.y2a{bottom:299.005067pt;}
.ya0{bottom:307.304733pt;}
.y63{bottom:308.292667pt;}
.y29{bottom:312.121067pt;}
.y9f{bottom:320.747400pt;}
.y62{bottom:321.408667pt;}
.y28{bottom:325.561067pt;}
.y27{bottom:325.561333pt;}
.y9e{bottom:333.551067pt;}
.y61{bottom:334.524667pt;}
.y26{bottom:338.677333pt;}
.y9d{bottom:347.313233pt;}
.y60{bottom:347.640667pt;}
.y5f{bottom:347.643733pt;}
.y25{bottom:352.117333pt;}
.y9c{bottom:360.755900pt;}
.y5e{bottom:360.759733pt;}
.y5d{bottom:360.764400pt;}
.y24{bottom:365.557333pt;}
.y5c{bottom:373.880400pt;}
.y5b{bottom:373.884000pt;}
.y9b{bottom:374.198567pt;}
.y23{bottom:378.997333pt;}
.y5a{bottom:387.000000pt;}
.y99{bottom:387.317767pt;}
.y9a{bottom:387.321733pt;}
.y22{bottom:391.801333pt;}
.y59{bottom:399.804000pt;}
.y98{bottom:400.440933pt;}
.y21{bottom:404.925067pt;}
.y58{bottom:412.920000pt;}
.y97{bottom:413.880933pt;}
.y20{bottom:418.041067pt;}
.y1f{bottom:418.041467pt;}
.y57{bottom:426.040533pt;}
.y56{bottom:426.045067pt;}
.y95{bottom:427.312833pt;}
.y96{bottom:427.320800pt;}
.y1e{bottom:431.157467pt;}
.y55{bottom:439.161067pt;}
.y94{bottom:440.755500pt;}
.y1c{bottom:443.961333pt;}
.y1d{bottom:443.961467pt;}
.y54{bottom:452.601067pt;}
.y53{bottom:452.609067pt;}
.y93{bottom:454.198167pt;}
.y1b{bottom:457.401333pt;}
.yb6{bottom:465.081600pt;}
.y52{bottom:465.413067pt;}
.y91{bottom:467.317400pt;}
.y92{bottom:467.321333pt;}
.y1a{bottom:470.201200pt;}
.y51{bottom:478.529067pt;}
.y90{bottom:480.121067pt;}
.y19{bottom:483.324933pt;}
.yb5{bottom:486.521067pt;}
.y50{bottom:491.645067pt;}
.y8e{bottom:494.189300pt;}
.y8f{bottom:494.201200pt;}
.y18{bottom:496.440933pt;}
.y4f{bottom:504.761067pt;}
.y8d{bottom:507.312467pt;}
.y17{bottom:509.880933pt;}
.y16{bottom:509.884933pt;}
.y4e{bottom:518.201067pt;}
.y8c{bottom:520.435633pt;}
.y15{bottom:523.960933pt;}
.y14{bottom:523.965600pt;}
.y4d{bottom:531.641067pt;}
.y8b{bottom:533.878300pt;}
.y13{bottom:537.081600pt;}
.y4c{bottom:545.088667pt;}
.y89{bottom:546.984467pt;}
.y8a{bottom:547.001467pt;}
.y12{bottom:550.202133pt;}
.y11{bottom:550.205600pt;}
.y4b{bottom:558.204667pt;}
.yb4{bottom:559.482000pt;}
.y88{bottom:560.107633pt;}
.y10{bottom:563.009600pt;}
.yb3{bottom:567.481467pt;}
.y4a{bottom:571.644667pt;}
.y87{bottom:573.230800pt;}
.yf{bottom:576.449600pt;}
.y49{bottom:585.084667pt;}
.y86{bottom:586.353967pt;}
.ye{bottom:589.565600pt;}
.yb2{bottom:589.881867pt;}
.y48{bottom:598.200667pt;}
.y85{bottom:599.477133pt;}
.yd{bottom:602.681600pt;}
.y47{bottom:611.640667pt;}
.y84{bottom:612.280800pt;}
.yc{bottom:615.800800pt;}
.y46{bottom:625.085200pt;}
.y82{bottom:625.392233pt;}
.y83{bottom:625.401333pt;}
.yb{bottom:628.921333pt;}
.y45{bottom:638.204400pt;}
.y81{bottom:638.834900pt;}
.ya{bottom:642.361333pt;}
.y44{bottom:651.320400pt;}
.y80{bottom:651.958067pt;}
.y7f{bottom:664.761733pt;}
.y9{bottom:671.801733pt;}
.y8{bottom:671.805833pt;}
.y7e{bottom:698.041467pt;}
.y7{bottom:790.523500pt;}
.y7d{bottom:795.000933pt;}
.y43{bottom:801.400933pt;}
.y7c{bottom:802.041067pt;}
.y6{bottom:804.924000pt;}
.y42{bottom:815.800700pt;}
.y5{bottom:819.642667pt;}
.y41{bottom:830.519367pt;}
.y7b{bottom:831.802700pt;}
.y4{bottom:834.361333pt;}
.y40{bottom:844.919867pt;}
.y7a{bottom:846.203200pt;}
.y3{bottom:848.762267pt;}
.y79{bottom:860.921867pt;}
.y2{bottom:862.202133pt;}
.y1{bottom:906.361333pt;}
.h35{height:9.160156pt;}
.h36{height:11.117513pt;}
.h26{height:13.210937pt;}
.h2b{height:14.394531pt;}
.h30{height:16.357422pt;}
.h17{height:20.859375pt;}
.h2d{height:22.250000pt;}
.h32{height:24.335938pt;}
.h25{height:26.421875pt;}
.h23{height:31.289062pt;}
.h37{height:33.375000pt;}
.h34{height:37.949219pt;}
.h38{height:38.242188pt;}
.h11{height:38.937500pt;}
.h29{height:39.632812pt;}
.h1c{height:40.328125pt;}
.h2a{height:41.023438pt;}
.h2e{height:41.718750pt;}
.h4{height:42.414062pt;}
.h3{height:43.109375pt;}
.h16{height:45.890625pt;}
.hb{height:47.281250pt;}
.h9{height:47.976562pt;}
.hc{height:48.671875pt;}
.h8{height:49.367188pt;}
.h21{height:49.484254pt;}
.h7{height:50.062500pt;}
.h15{height:50.757812pt;}
.ha{height:51.453125pt;}
.hd{height:52.148438pt;}
.h20{height:52.406250pt;}
.h1e{height:52.843750pt;}
.he{height:53.539062pt;}
.h1f{height:54.421875pt;}
.h1d{height:56.320312pt;}
.h5{height:57.710938pt;}
.h6{height:59.796875pt;}
.h31{height:61.187500pt;}
.h33{height:63.968750pt;}
.h24{height:68.701172pt;}
.h27{height:83.708333pt;}
.h1b{height:91.781250pt;}
.h2c{height:101.515625pt;}
.h2f{height:107.078125pt;}
.h28{height:128.476562pt;}
.hf{height:165.454753pt;}
.h2{height:174.523438pt;}
.h10{height:180.781250pt;}
.h0{height:954.482280pt;}
.h1{height:954.666667pt;}
.h13{height:955.120920pt;}
.h22{height:955.122267pt;}
.h14{height:955.333333pt;}
.h18{height:958.666667pt;}
.h1a{height:961.333333pt;}
.h19{height:961.522267pt;}
.h12{height:972.000000pt;}
.w2{width:830.666667pt;}
.w4{width:831.333333pt;}
.w3{width:831.603053pt;}
.w8{width:832.666667pt;}
.w7{width:832.880933pt;}
.w1{width:834.666667pt;}
.w0{width:834.802267pt;}
.w5{width:841.201173pt;}
.w6{width:841.333333pt;}
.x0{left:0.000000pt;}
.x5b{left:4.600533pt;}
.x2b{left:15.156787pt;}
.x26{left:16.108400pt;}
.x22{left:17.074000pt;}
.xd{left:18.047333pt;}
.x9{left:19.316267pt;}
.x8{left:20.274767pt;}
.x1{left:21.241200pt;}
.x48{left:22.514240pt;}
.x46{left:23.490107pt;}
.x44{left:24.759840pt;}
.x3f{left:26.360907pt;}
.x18{left:27.960533pt;}
.x17{left:30.840400pt;}
.x2c{left:36.601587pt;}
.x4d{left:39.479973pt;}
.x49{left:40.760240pt;}
.x1a{left:45.241200pt;}
.x2d{left:46.521453pt;}
.x4a{left:52.919973pt;}
.x2e{left:63.800787pt;}
.x37{left:67.001453pt;}
.x1b{left:69.560533pt;}
.x52{left:70.520107pt;}
.x3b{left:71.480920pt;}
.x2f{left:73.720653pt;}
.x13{left:75.960533pt;}
.x1c{left:77.240800pt;}
.x38{left:79.481987pt;}
.x23{left:81.081600pt;}
.xa{left:82.681200pt;}
.xb{left:83.961467pt;}
.x3c{left:85.561053pt;}
.x1d{left:87.481467pt;}
.x14{left:89.400400pt;}
.x24{left:91.320800pt;}
.x4c{left:92.280240pt;}
.x39{left:95.480920pt;}
.xc{left:97.720667pt;}
.x28{left:99.641200pt;}
.x57{left:100.600533pt;}
.x27{left:101.561600pt;}
.x19{left:102.521067pt;}
.x53{left:107.319840pt;}
.x43{left:111.800773pt;}
.x56{left:114.040533pt;}
.x4e{left:115.640107pt;}
.x33{left:117.561987pt;}
.x54{left:120.121040pt;}
.x11{left:122.681600pt;}
.x4f{left:129.080107pt;}
.x34{left:131.961453pt;}
.x45{left:133.561040pt;}
.x15{left:134.520533pt;}
.x20{left:135.481467pt;}
.x35{left:136.440920pt;}
.x32{left:139.320787pt;}
.x30{left:141.561987pt;}
.x50{left:142.840773pt;}
.x21{left:144.761200pt;}
.x12{left:146.681600pt;}
.x16{left:147.641200pt;}
.x36{left:148.600653pt;}
.x3a{left:149.880920pt;}
.x4b{left:150.840373pt;}
.x47{left:153.400907pt;}
.x31{left:155.640653pt;}
.xf{left:156.920933pt;}
.x51{left:158.839840pt;}
.x59{left:162.680667pt;}
.xe{left:166.200667pt;}
.x1e{left:171.960400pt;}
.x58{left:176.120667pt;}
.x5a{left:178.360400pt;}
.x10{left:180.280800pt;}
.x3d{left:182.841320pt;}
.x1f{left:184.760267pt;}
.x25{left:186.040533pt;}
.x55{left:187.640107pt;}
.x3e{left:190.521453pt;}
.x5c{left:243.000933pt;}
.x5d{left:264.121067pt;}
.x63{left:266.041467pt;}
.x5e{left:281.081067pt;}
.x5f{left:298.041067pt;}
.x60{left:315.641067pt;}
.x61{left:336.121067pt;}
.x64{left:358.200667pt;}
.x65{left:367.161200pt;}
.x66{left:375.481467pt;}
.x67{left:392.441467pt;}
.x68{left:411.000933pt;}
.x29{left:428.601067pt;}
.x2{left:433.401333pt;}
.x69{left:443.640667pt;}
.x2a{left:453.881333pt;}
.x3{left:459.641067pt;}
.x62{left:469.561067pt;}
.x4{left:474.040533pt;}
.x6a{left:485.880933pt;}
.x5{left:572.920400pt;}
.x6{left:602.041467pt;}
.x7{left:613.880400pt;}
.x40{left:642.359840pt;}
.x41{left:650.360907pt;}
.x42{left:655.159707pt;}
}




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