
    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_6199bb9d84a1769bcc32277d.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_b2aff36bcad16d1e23eabac7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5224887417f852a2769ffd27.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_25c853d36ec15f1380b1fa40.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_96eb3fbda6c9cf3b37aa0f0c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_44d6f66b0611bd9b7e27eeaf.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_f4a0f6805902d4c8fb82528c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7c826053e718ad35b294a7db.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_56270bff332bd6cce14bfa45.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6c386c256d8572a4d704bf61.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_08ff30daabfa321d252072bb.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1496fd59d3845efdff12962c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_3d49e48285f23865df247a67.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e74c678d7a5a3c98f2b4e9d6.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;}
@font-face{font-family:fff;src:url('chunks/assets/font_9abc4ae9fc60e5f04b622393.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fb35c78f1045a0fdacfc2a2c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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:ff11;src:url('chunks/assets/font_7ee8f992bc6854cd21da4789.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_43e5b7a4566885be9fece16a.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e74c678d7a5a3c98f2b4e9d6.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_41793f3bfdb239b66a72678d.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_518b32479ee16f769c5113c1.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_442bc4ae4f03ee319fce11dd.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_2a468114a2afe5cc0f141723.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_abc379001261501b03c8cdae.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_16bed9f70cf7083ab5338161.woff')format("woff");}.ff19{font-family:ff19;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;}
.m16{transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m20{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m39{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m34{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m48{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);}
.m35{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,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);}
.m42{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.ma{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m5b{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m26{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m55{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m2f{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m17{transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.283951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283951,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.401235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401235,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.565217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565217,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580435,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.865942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865942,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.891304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.891304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.891304,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.183250px;}
.v4{vertical-align:5.058750px;}
.v2{vertical-align:8.626500px;}
.v1{vertical-align:10.064250px;}
.ls43{letter-spacing:-5.250300px;}
.ls24{letter-spacing:-4.499625px;}
.ls14{letter-spacing:-4.435725px;}
.ls18{letter-spacing:-3.751875px;}
.lsc{letter-spacing:-3.748800px;}
.ls40{letter-spacing:-3.601950px;}
.ls46{letter-spacing:-3.111000px;}
.ls57{letter-spacing:-3.089475px;}
.ls2c{letter-spacing:-3.041400px;}
.lsb{letter-spacing:-2.997975px;}
.ls47{letter-spacing:-2.841525px;}
.ls37{letter-spacing:-2.671800px;}
.ls26{letter-spacing:-2.523000px;}
.ls10{letter-spacing:-2.430900px;}
.ls19{letter-spacing:-2.321550px;}
.lse{letter-spacing:-2.252475px;}
.ls4b{letter-spacing:-2.185875px;}
.ls49{letter-spacing:-2.137500px;}
.ls54{letter-spacing:-1.632150px;}
.ls44{letter-spacing:-1.609650px;}
.ls3b{letter-spacing:-1.565100px;}
.ls29{letter-spacing:-1.544400px;}
.ls2e{letter-spacing:-1.543950px;}
.lsd{letter-spacing:-1.501650px;}
.ls22{letter-spacing:-1.501200px;}
.ls55{letter-spacing:-1.500150px;}
.ls7{letter-spacing:-1.479600px;}
.lsf{letter-spacing:-1.461825px;}
.ls4a{letter-spacing:-1.401600px;}
.ls2d{letter-spacing:-1.347225px;}
.ls20{letter-spacing:-1.335900px;}
.ls1b{letter-spacing:-0.915750px;}
.ls56{letter-spacing:-0.809025px;}
.ls23{letter-spacing:-0.798975px;}
.ls2f{letter-spacing:-0.771975px;}
.ls1d{letter-spacing:-0.761475px;}
.ls3f{letter-spacing:-0.761025px;}
.lsa{letter-spacing:-0.750825px;}
.ls51{letter-spacing:-0.750750px;}
.ls39{letter-spacing:-0.750600px;}
.ls42{letter-spacing:-0.749250px;}
.ls52{letter-spacing:-0.740175px;}
.ls9{letter-spacing:-0.739800px;}
.ls45{letter-spacing:-0.718200px;}
.ls12{letter-spacing:-0.714375px;}
.ls1f{letter-spacing:-0.712800px;}
.ls16{letter-spacing:-0.643200px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.676275px;}
.ls3a{letter-spacing:0.718875px;}
.ls21{letter-spacing:0.739125px;}
.ls4d{letter-spacing:0.750750px;}
.ls0{letter-spacing:0.750825px;}
.ls3d{letter-spacing:0.761025px;}
.ls3e{letter-spacing:0.761400px;}
.ls2b{letter-spacing:0.771975px;}
.ls2a{letter-spacing:0.772125px;}
.ls32{letter-spacing:0.809025px;}
.ls17{letter-spacing:0.843150px;}
.ls1e{letter-spacing:1.421775px;}
.ls1c{letter-spacing:1.437750px;}
.ls41{letter-spacing:1.479600px;}
.ls4f{letter-spacing:1.480350px;}
.ls35{letter-spacing:1.498500px;}
.ls1{letter-spacing:1.501650px;}
.ls27{letter-spacing:1.543950px;}
.ls36{letter-spacing:1.544250px;}
.ls4e{letter-spacing:1.609500px;}
.ls48{letter-spacing:1.631550px;}
.ls33{letter-spacing:1.640100px;}
.ls11{letter-spacing:2.217375px;}
.ls2{letter-spacing:2.252475px;}
.ls3c{letter-spacing:2.283075px;}
.ls28{letter-spacing:2.315925px;}
.ls31{letter-spacing:2.335200px;}
.ls25{letter-spacing:2.414475px;}
.ls3{letter-spacing:2.997975px;}
.ls13{letter-spacing:3.088500px;}
.ls4{letter-spacing:3.748800px;}
.ls50{letter-spacing:3.801750px;}
.ls5{letter-spacing:4.499625px;}
.ls34{letter-spacing:5.250450px;}
.ls4c{letter-spacing:5.324400px;}
.ls1a{letter-spacing:6.001275px;}
.ls30{letter-spacing:7.686900px;}
.ls38{letter-spacing:8.248425px;}
.ls53{letter-spacing:19.500150px;}
.ls6{letter-spacing:24.588900px;}
.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;}
._1e{margin-left:-24.585975px;}
._1d{margin-left:-17.775675px;}
._1a{margin-left:-9.581198px;}
._20{margin-left:-8.381400px;}
._1c{margin-left:-6.472664px;}
._1f{margin-left:-4.999139px;}
._12{margin-left:-3.101373px;}
._d{margin-left:-2.076750px;}
._13{margin-left:-1.030872px;}
._3{width:1.723716px;}
._6{width:2.795775px;}
._b{width:3.963300px;}
._1{width:5.145534px;}
._0{width:6.497458px;}
._8{width:8.425425px;}
._5{width:9.627058px;}
._4{width:10.947242px;}
._9{width:12.194250px;}
._16{width:13.255062px;}
._e{width:14.263708px;}
._a{width:15.777975px;}
._2{width:17.359500px;}
._c{width:18.536325px;}
._15{width:19.564465px;}
._7{width:20.613617px;}
._14{width:22.034308px;}
._18{width:23.097133px;}
._17{width:24.538650px;}
._19{width:25.636570px;}
._1b{width:28.663033px;}
._11{width:32.610300px;}
._f{width:37.685025px;}
._10{width:42.434925px;}
.fc0{color:transparent;}
.fs18{font-size:26.250000px;}
.fs15{font-size:42.000000px;}
.fs11{font-size:43.500000px;}
.fsd{font-size:46.500000px;}
.fs13{font-size:48.000000px;}
.fs16{font-size:48.750000px;}
.fse{font-size:49.500000px;}
.fsa{font-size:50.250000px;}
.fs6{font-size:51.000000px;}
.fs4{font-size:51.750000px;}
.fs3{font-size:52.500000px;}
.fs2{font-size:53.250000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:54.750000px;}
.fsf{font-size:55.500000px;}
.fs9{font-size:56.250000px;}
.fs17{font-size:57.000000px;}
.fs7{font-size:57.750000px;}
.fs5{font-size:60.750000px;}
.fsc{font-size:63.750000px;}
.fs12{font-size:66.750000px;}
.fsb{font-size:69.000000px;}
.fs14{font-size:86.250000px;}
.fs0{font-size:94.500000px;}
.fs10{font-size:121.500000px;}
.y148{bottom:-4.222815px;}
.y0{bottom:0.000000px;}
.y12b{bottom:105.210060px;}
.y12c{bottom:105.217485px;}
.y37{bottom:105.939285px;}
.y36{bottom:105.939810px;}
.y74{bottom:106.657785px;}
.yb2{bottom:109.539473px;}
.yf3{bottom:115.295122px;}
.y12a{bottom:119.614185px;}
.y35{bottom:120.343935px;}
.y72{bottom:121.377960px;}
.y73{bottom:121.416885px;}
.yb1{bottom:124.303035px;}
.yf2{bottom:130.049985px;}
.y129{bottom:134.725860px;}
.y71{bottom:136.141522px;}
.yf1{bottom:144.454110px;}
.yb0{bottom:145.177035px;}
.y33{bottom:148.774823px;}
.y34{bottom:148.779435px;}
.y128{bottom:149.129985px;}
.y70{bottom:150.545647px;}
.yef{bottom:158.851185px;}
.yf0{bottom:158.858235px;}
.yaf{bottom:159.937635px;}
.y127{bottom:162.815235px;}
.y32{bottom:163.538385px;}
.y6f{bottom:164.949772px;}
.yee{bottom:173.255310px;}
.yae{bottom:174.337485px;}
.y126{bottom:177.918023px;}
.y6e{bottom:179.713335px;}
.y30{bottom:184.411822px;}
.y31{bottom:184.417935px;}
.yed{bottom:187.659435px;}
.yad{bottom:191.977035px;}
.y125{bottom:192.681585px;}
.y6d{bottom:194.117460px;}
.yec{bottom:202.053398px;}
.y2f{bottom:205.299135px;}
.y124{bottom:206.726273px;}
.y6c{bottom:208.162147px;}
.yea{bottom:216.091373px;}
.yeb{bottom:216.098085px;}
.y2e{bottom:219.703598px;}
.yab{bottom:220.398922px;}
.yac{bottom:220.417335px;}
.y123{bottom:221.130398px;}
.y6b{bottom:222.925710px;}
.ye9{bottom:230.495497px;}
.yaa{bottom:235.162485px;}
.y122{bottom:235.893960px;}
.y6a{bottom:237.329835px;}
.ye8{bottom:244.899623px;}
.y2d{bottom:248.498535px;}
.ya9{bottom:249.739672px;}
.y121{bottom:250.298085px;}
.y69{bottom:251.733960px;}
.ye7{bottom:259.303747px;}
.y2b{bottom:262.893960px;}
.y2c{bottom:262.898235px;}
.ya8{bottom:263.957423px;}
.y68{bottom:266.122147px;}
.y2a{bottom:277.291822px;}
.ya7{bottom:278.361547px;}
.y11f{bottom:279.093210px;}
.y120{bottom:279.097635px;}
.y67{bottom:280.526273px;}
.ye6{bottom:288.098685px;}
.ya6{bottom:293.125110px;}
.y11e{bottom:293.497335px;}
.y66{bottom:294.930398px;}
.y29{bottom:298.179135px;}
.ye5{bottom:302.859285px;}
.ya5{bottom:307.529235px;}
.y65{bottom:309.334522px;}
.y11d{bottom:314.384085px;}
.ye3{bottom:316.891935px;}
.ye4{bottom:316.898235px;}
.ya4{bottom:321.933360px;}
.y64{bottom:324.098085px;}
.y63{bottom:324.098422px;}
.y11c{bottom:335.258085px;}
.ya3{bottom:336.337485px;}
.ye1{bottom:338.135723px;}
.ye2{bottom:338.138685px;}
.y62{bottom:338.316172px;}
.y27{bottom:339.564322px;}
.y28{bottom:339.578985px;}
.y11b{bottom:348.217485px;}
.ya2{bottom:351.089385px;}
.y61{bottom:352.893360px;}
.ye0{bottom:352.899285px;}
.y26{bottom:354.687322px;}
.ya1{bottom:365.134073px;}
.y5f{bottom:367.294522px;}
.y60{bottom:367.297485px;}
.y25{bottom:369.091447px;}
.ya0{bottom:379.897635px;}
.y5e{bottom:382.053623px;}
.y24{bottom:383.855010px;}
.y119{bottom:391.040010px;}
.y11a{bottom:391.057635px;}
.ydf{bottom:391.418535px;}
.y9f{bottom:394.268010px;}
.y5d{bottom:396.823260px;}
.y22{bottom:398.254710px;}
.y23{bottom:398.259135px;}
.y118{bottom:406.163010px;}
.yde{bottom:406.179135px;}
.y9e{bottom:408.672135px;}
.y21{bottom:412.658835px;}
.y117{bottom:420.567135px;}
.ydd{bottom:420.926910px;}
.y9d{bottom:423.076260px;}
.y5c{bottom:425.977635px;}
.y20{bottom:427.062960px;}
.y116{bottom:435.330697px;}
.ydc{bottom:435.331035px;}
.y9c{bottom:437.839822px;}
.y5a{bottom:443.972085px;}
.y5b{bottom:443.978235px;}
.y1f{bottom:447.218085px;}
.y115{bottom:449.734823px;}
.ydb{bottom:449.735160px;}
.y9b{bottom:452.603385px;}
.y1e{bottom:461.799135px;}
.yd9{bottom:464.134672px;}
.yda{bottom:464.139285px;}
.y114{bottom:464.489835px;}
.y9a{bottom:467.007510px;}
.y59{bottom:474.218085px;}
.y1d{bottom:477.457935px;}
.yd7{bottom:478.886722px;}
.y113{bottom:478.893960px;}
.yd8{bottom:478.898235px;}
.y99{bottom:481.771073px;}
.y1c{bottom:491.859435px;}
.y111{bottom:493.283422px;}
.yd6{bottom:493.290847px;}
.y112{bottom:493.298085px;}
.y97{bottom:502.653960px;}
.y98{bottom:502.658385px;}
.y1b{bottom:505.538985px;}
.y110{bottom:508.046985px;}
.yd5{bottom:508.054410px;}
.y96{bottom:517.058085px;}
.y1a{bottom:519.930360px;}
.y10f{bottom:522.451110px;}
.yd3{bottom:522.451298px;}
.yd4{bottom:522.458535px;}
.y57{bottom:525.682073px;}
.y58{bottom:525.698385px;}
.y95{bottom:531.817185px;}
.y94{bottom:531.819285px;}
.y19{bottom:533.256173px;}
.y10e{bottom:537.214673px;}
.yd2{bottom:537.214860px;}
.y56{bottom:540.805072px;}
.y18{bottom:547.300860px;}
.y93{bottom:549.817785px;}
.yd1{bottom:551.618985px;}
.y10d{bottom:551.962297px;}
.y55{bottom:554.849760px;}
.y10c{bottom:566.366422px;}
.ycf{bottom:566.375310px;}
.yd0{bottom:566.377935px;}
.y17{bottom:567.455985px;}
.y54{bottom:569.613322px;}
.y92{bottom:578.258085px;}
.y10b{bottom:580.770548px;}
.yce{bottom:580.779435px;}
.y16{bottom:582.565860px;}
.y53{bottom:584.376885px;}
.y146{bottom:588.694785px;}
.y147{bottom:588.697785px;}
.y90{bottom:593.369422px;}
.y91{bottom:593.377935px;}
.y10a{bottom:595.174673px;}
.ycd{bottom:595.535572px;}
.y15{bottom:596.969985px;}
.y52{bottom:598.773960px;}
.y144{bottom:603.801660px;}
.y145{bottom:603.817785px;}
.y8f{bottom:608.132985px;}
.y109{bottom:609.938235px;}
.ycc{bottom:610.299135px;}
.y14{bottom:611.014672px;}
.y51{bottom:613.178085px;}
.y143{bottom:618.205785px;}
.y8e{bottom:621.818235px;}
.ycb{bottom:625.055273px;}
.y12{bottom:625.759298px;}
.y13{bottom:625.778235px;}
.y50{bottom:627.929760px;}
.y142{bottom:632.969347px;}
.y8d{bottom:637.297485px;}
.y108{bottom:639.100597px;}
.yca{bottom:639.815873px;}
.y11{bottom:640.163422px;}
.y4f{bottom:642.693323px;}
.y141{bottom:647.732910px;}
.y8c{bottom:652.050660px;}
.yc9{bottom:654.579435px;}
.y10{bottom:654.926985px;}
.y4e{bottom:657.456885px;}
.y107{bottom:657.458535px;}
.y106{bottom:657.464123px;}
.y140{bottom:662.137035px;}
.y8b{bottom:666.095348px;}
.yc8{bottom:668.979285px;}
.yc7{bottom:668.985172px;}
.yf{bottom:669.331110px;}
.y4c{bottom:671.831873px;}
.y4d{bottom:671.858235px;}
.y13f{bottom:676.864035px;}
.y105{bottom:677.978685px;}
.y89{bottom:681.551422px;}
.y8a{bottom:681.577785px;}
.ye{bottom:683.735235px;}
.y4b{bottom:686.595435px;}
.y13e{bottom:691.627597px;}
.y104{bottom:692.383897px;}
.y88{bottom:696.314985px;}
.yc6{bottom:698.498985px;}
.yc{bottom:698.850997px;}
.yd{bottom:698.858235px;}
.y4a{bottom:700.999560px;}
.y13d{bottom:706.031723px;}
.y87{bottom:710.719110px;}
.yb{bottom:713.255122px;}
.y103{bottom:713.617335px;}
.yc5{bottom:713.618985px;}
.y49{bottom:715.763123px;}
.y13c{bottom:720.795285px;}
.y86{bottom:725.482672px;}
.y9{bottom:728.015873px;}
.ya{bottom:728.018685px;}
.yc3{bottom:728.371823px;}
.yc4{bottom:728.377935px;}
.y48{bottom:730.526685px;}
.y13b{bottom:735.558847px;}
.y85{bottom:740.246235px;}
.y8{bottom:742.779435px;}
.y7{bottom:742.780710px;}
.y47{bottom:744.930810px;}
.yc2{bottom:749.259135px;}
.y13a{bottom:749.962972px;}
.y84{bottom:755.009797px;}
.y101{bottom:757.174485px;}
.y102{bottom:757.177485px;}
.y6{bottom:757.544272px;}
.y46{bottom:759.694372px;}
.y139{bottom:764.726535px;}
.y83{bottom:769.773360px;}
.y100{bottom:772.268348px;}
.y45{bottom:774.457935px;}
.y138{bottom:779.490098px;}
.y82{bottom:784.177485px;}
.yc0{bottom:784.890398px;}
.yc1{bottom:784.899285px;}
.yff{bottom:786.672473px;}
.y5{bottom:787.058085px;}
.y44{bottom:788.853360px;}
.y137{bottom:793.894223px;}
.y81{bottom:799.269097px;}
.ybf{bottom:799.294523px;}
.yfe{bottom:801.436035px;}
.y4{bottom:801.452123px;}
.y42{bottom:803.245785px;}
.y43{bottom:803.257485px;}
.y136{bottom:808.657785px;}
.y80{bottom:813.673222px;}
.ybe{bottom:814.058085px;}
.yfd{bottom:816.199598px;}
.y41{bottom:818.009348px;}
.y3{bottom:822.339435px;}
.y135{bottom:823.411110px;}
.y7f{bottom:828.436785px;}
.ybd{bottom:828.459585px;}
.yfc{bottom:830.603723px;}
.y40{bottom:832.772910px;}
.y134{bottom:838.174672px;}
.y2{bottom:840.337935px;}
.y7e{bottom:843.200347px;}
.ybc{bottom:843.211260px;}
.yfb{bottom:845.367285px;}
.y3f{bottom:847.177035px;}
.y133{bottom:852.942660px;}
.y7d{bottom:857.963910px;}
.ybb{bottom:857.974822px;}
.yfa{bottom:859.771410px;}
.y3e{bottom:861.933360px;}
.yb9{bottom:871.479285px;}
.y7c{bottom:872.727472px;}
.yba{bottom:872.738385px;}
.yf9{bottom:874.534973px;}
.y3d{bottom:876.337485px;}
.y1{bottom:879.938235px;}
.y132{bottom:882.097035px;}
.y7b{bottom:887.131597px;}
.yb8{bottom:887.481323px;}
.yf8{bottom:889.298535px;}
.y3c{bottom:891.098085px;}
.y130{bottom:896.856885px;}
.y131{bottom:896.857785px;}
.yb7{bottom:902.244885px;}
.yf7{bottom:903.687998px;}
.y3b{bottom:905.857185px;}
.y79{bottom:908.734823px;}
.y7a{bottom:908.737785px;}
.yb6{bottom:917.008448px;}
.y12f{bottom:918.103635px;}
.yf6{bottom:918.451560px;}
.y3a{bottom:920.610547px;}
.y78{bottom:923.498385px;}
.yb5{bottom:931.772010px;}
.yf5{bottom:933.215123px;}
.y39{bottom:935.014672px;}
.y77{bottom:938.257485px;}
.y76{bottom:938.259397px;}
.y12e{bottom:938.977635px;}
.yb4{bottom:946.535573px;}
.yf4{bottom:947.978685px;}
.y38{bottom:949.778235px;}
.y12d{bottom:954.097635px;}
.y75{bottom:956.617335px;}
.yb3{bottom:961.299135px;}
.h46{height:27.377930px;}
.h33{height:41.200195px;}
.h24{height:42.692871px;}
.h43{height:45.955078px;}
.h2b{height:47.109375px;}
.h16{height:48.498047px;}
.h11{height:49.317627px;}
.h39{height:50.053711px;}
.h40{height:50.062500px;}
.h37{height:50.844727px;}
.h6{height:51.525879px;}
.h17{height:51.626953px;}
.h2c{height:52.154297px;}
.h4{height:52.261963px;}
.h28{height:52.273813px;}
.h1a{height:52.279063px;}
.h1e{height:52.279813px;}
.h5{height:52.285213px;}
.h3b{height:52.285513px;}
.h13{height:52.287013px;}
.h38{height:52.287163px;}
.ha{height:52.290913px;}
.h2a{height:52.291663px;}
.h3f{height:52.296163px;}
.h30{height:52.296763px;}
.h42{height:52.307263px;}
.hd{height:52.314463px;}
.h20{height:52.325713px;}
.h41{height:52.342813px;}
.h3e{height:52.378513px;}
.h2f{height:52.379863px;}
.h14{height:52.409180px;}
.h21{height:52.417663px;}
.h2e{height:52.910156px;}
.h1c{height:52.998047px;}
.h9{height:53.191406px;}
.h1b{height:53.666016px;}
.h32{height:53.707397px;}
.hc{height:53.734131px;}
.h7{height:53.973633px;}
.h3{height:54.421875px;}
.h31{height:54.445213px;}
.h1d{height:54.470215px;}
.h1f{height:54.755859px;}
.h23{height:55.177734px;}
.h10{height:55.206299px;}
.h27{height:55.933594px;}
.h3a{height:55.942383px;}
.hb{height:56.678467px;}
.h36{height:57.320713px;}
.hf{height:60.888463px;}
.he{height:62.326213px;}
.h8{height:63.360352px;}
.h15{height:66.489258px;}
.h29{height:69.618164px;}
.h12{height:71.964844px;}
.h2d{height:89.956055px;}
.h2{height:98.560547px;}
.h22{height:126.720703px;}
.h3d{height:1011.000000px;}
.h3c{height:1011.332085px;}
.h0{height:1015.292085px;}
.h1{height:1015.500000px;}
.h18{height:1017.452085px;}
.h19{height:1017.750000px;}
.h44{height:1020.692085px;}
.h45{height:1020.750000px;}
.h25{height:1022.132085px;}
.h26{height:1022.250000px;}
.h34{height:1027.172085px;}
.h35{height:1027.500000px;}
.w7{width:651.000000px;}
.w6{width:651.102900px;}
.w0{width:659.021430px;}
.w1{width:659.250000px;}
.w3{width:664.500000px;}
.w2{width:664.781430px;}
.w5{width:667.500000px;}
.w4{width:667.661430px;}
.xbd{left:-4.898520px;}
.x0{left:0.000000px;}
.xa4{left:38.668912px;}
.xa6{left:39.685463px;}
.xb5{left:41.542200px;}
.xa{left:42.614317px;}
.x2{left:43.701180px;}
.x59{left:46.944367px;}
.x57{left:48.381330px;}
.x64{left:49.467780px;}
.x78{left:50.902680px;}
.xa5{left:53.783400px;}
.x4{left:55.942230px;}
.x5f{left:59.541330px;}
.x63{left:61.342530px;}
.xa1{left:63.862200px;}
.xad{left:64.943250px;}
.xb7{left:66.022650px;}
.x9{left:68.187630px;}
.x79{left:71.062080px;}
.x5e{left:72.863692px;}
.x62{left:74.306280px;}
.x7d{left:75.381405px;}
.x35{left:78.621330px;}
.x3b{left:79.709617px;}
.x4f{left:80.785005px;}
.x87{left:81.861180px;}
.xb{left:83.301480px;}
.x2b{left:87.981630px;}
.x6e{left:90.501330px;}
.x22{left:91.941630px;}
.x14{left:93.022680px;}
.x13{left:94.822230px;}
.x1e{left:96.262530px;}
.x2c{left:97.701180px;}
.x90{left:99.861630px;}
.xc{left:100.942680px;}
.x5a{left:102.022080px;}
.x23{left:103.462380px;}
.x38{left:104.538067px;}
.x3e{left:105.621180px;}
.x6c{left:107.422380px;}
.x65{left:109.222080px;}
.x1f{left:111.382530px;}
.x88{left:114.261480px;}
.x9a{left:118.221480px;}
.x5b{left:120.022680px;}
.x89{left:121.822230px;}
.x66{left:122.901630px;}
.x9c{left:125.062080px;}
.x2d{left:126.861630px;}
.x6d{left:129.381330px;}
.x9b{left:130.821630px;}
.x24{left:132.261930px;}
.x1d{left:133.702380px;}
.x2e{left:135.142680px;}
.xba{left:136.581330px;}
.x6f{left:139.102680px;}
.x25{left:141.261480px;}
.x9d{left:143.421930px;}
.x75{left:145.941630px;}
.x8a{left:147.741180px;}
.x83{left:149.542380px;}
.x36{left:150.621780px;}
.x2f{left:153.141480px;}
.x43{left:154.581780px;}
.x98{left:157.101480px;}
.x26{left:158.902680px;}
.x37{left:161.422380px;}
.xab{left:164.303100px;}
.x70{left:165.741780px;}
.x11{left:167.902230px;}
.x84{left:169.342530px;}
.xb6{left:171.142050px;}
.x99{left:172.582380px;}
.x27{left:174.022680px;}
.x5c{left:175.461330px;}
.xac{left:179.422950px;}
.x12{left:180.502380px;}
.x5d{left:184.462380px;}
.x2a{left:187.341330px;}
.x44{left:190.222080px;}
.xb8{left:192.382530px;}
.x8b{left:194.902230px;}
.x16{left:195.981630px;}
.x31{left:198.501330px;}
.x9e{left:199.582380px;}
.xaa{left:203.183100px;}
.x15{left:204.262530px;}
.x32{left:206.421330px;}
.x5{left:208.222530px;}
.x7a{left:210.022080px;}
.x52{left:211.101480px;}
.x19{left:212.902680px;}
.x28{left:213.982080px;}
.xb4{left:215.063100px;}
.x1{left:216.501930px;}
.x20{left:219.021630px;}
.x67{left:220.821180px;}
.x29{left:222.622380px;}
.x80{left:225.142080px;}
.x6{left:226.221480px;}
.x42{left:228.381930px;}
.x8c{left:229.461330px;}
.x1a{left:230.901630px;}
.x68{left:233.062080px;}
.x30{left:234.141480px;}
.x76{left:236.661180px;}
.x21{left:238.821630px;}
.x7b{left:242.781630px;}
.x7{left:243.861180px;}
.x47{left:250.701780px;}
.x77{left:252.862230px;}
.x1b{left:253.941630px;}
.x85{left:256.822230px;}
.x8{left:258.982680px;}
.x7c{left:262.581780px;}
.x81{left:265.821630px;}
.x1c{left:267.621180px;}
.x3{left:272.662380px;}
.x86{left:278.781180px;}
.x45{left:283.102080px;}
.x82{left:284.181480px;}
.x48{left:285.262530px;}
.x92{left:291.742230px;}
.xae{left:293.543400px;}
.x49{left:294.982080px;}
.xa2{left:297.862800px;}
.x71{left:301.102680px;}
.x46{left:302.541330px;}
.x69{left:305.062680px;}
.xa3{left:315.502350px;}
.xb0{left:319.103100px;}
.x72{left:320.182530px;}
.x58{left:321.621180px;}
.xaf{left:323.783400px;}
.x6a{left:329.902230px;}
.xb1{left:339.262500px;}
.x73{left:343.942680px;}
.x6b{left:345.381330px;}
.x95{left:355.821180px;}
.x74{left:358.342530px;}
.xd{left:360.501330px;}
.xb9{left:363.381930px;}
.xb2{left:364.462950px;}
.x96{left:369.861630px;}
.xe{left:372.381330px;}
.x3f{left:378.142680px;}
.xb3{left:379.942200px;}
.x4a{left:388.582380px;}
.x39{left:398.661180px;}
.x40{left:400.821630px;}
.x3a{left:413.062680px;}
.x41{left:414.501330px;}
.x4b{left:435.382530px;}
.x17{left:438.261480px;}
.x4c{left:445.102080px;}
.x18{left:449.782230px;}
.x7e{left:458.061480px;}
.x4d{left:463.102680px;}
.xa7{left:466.342500px;}
.xbb{left:468.501330px;}
.x7f{left:472.822230px;}
.x93{left:474.262530px;}
.x4e{left:478.942680px;}
.xbc{left:482.182530px;}
.xf{left:485.422380px;}
.x94{left:492.981630px;}
.x10{left:498.381930px;}
.x50{left:501.621780px;}
.x60{left:505.581780px;}
.x8d{left:507.022080px;}
.xa8{left:509.902800px;}
.x51{left:516.021630px;}
.x8e{left:519.622380px;}
.xa9{left:524.302500px;}
.x53{left:525.741180px;}
.x61{left:528.262530px;}
.x91{left:532.942680px;}
.x9f{left:536.541780px;}
.x3c{left:542.301480px;}
.x54{left:544.102680px;}
.xa0{left:549.501330px;}
.x33{left:552.022680px;}
.x3d{left:553.822230px;}
.x34{left:565.341480px;}
.x55{left:567.861180px;}
.x56{left:586.222530px;}
.x8f{left:595.222080px;}
.x97{left:603.501330px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.940667pt;}
.v4{vertical-align:4.496667pt;}
.v2{vertical-align:7.668000pt;}
.v1{vertical-align:8.946000pt;}
.ls43{letter-spacing:-4.666933pt;}
.ls24{letter-spacing:-3.999667pt;}
.ls14{letter-spacing:-3.942867pt;}
.ls18{letter-spacing:-3.335000pt;}
.lsc{letter-spacing:-3.332267pt;}
.ls40{letter-spacing:-3.201733pt;}
.ls46{letter-spacing:-2.765333pt;}
.ls57{letter-spacing:-2.746200pt;}
.ls2c{letter-spacing:-2.703467pt;}
.lsb{letter-spacing:-2.664867pt;}
.ls47{letter-spacing:-2.525800pt;}
.ls37{letter-spacing:-2.374933pt;}
.ls26{letter-spacing:-2.242667pt;}
.ls10{letter-spacing:-2.160800pt;}
.ls19{letter-spacing:-2.063600pt;}
.lse{letter-spacing:-2.002200pt;}
.ls4b{letter-spacing:-1.943000pt;}
.ls49{letter-spacing:-1.900000pt;}
.ls54{letter-spacing:-1.450800pt;}
.ls44{letter-spacing:-1.430800pt;}
.ls3b{letter-spacing:-1.391200pt;}
.ls29{letter-spacing:-1.372800pt;}
.ls2e{letter-spacing:-1.372400pt;}
.lsd{letter-spacing:-1.334800pt;}
.ls22{letter-spacing:-1.334400pt;}
.ls55{letter-spacing:-1.333467pt;}
.ls7{letter-spacing:-1.315200pt;}
.lsf{letter-spacing:-1.299400pt;}
.ls4a{letter-spacing:-1.245867pt;}
.ls2d{letter-spacing:-1.197533pt;}
.ls20{letter-spacing:-1.187467pt;}
.ls1b{letter-spacing:-0.814000pt;}
.ls56{letter-spacing:-0.719133pt;}
.ls23{letter-spacing:-0.710200pt;}
.ls2f{letter-spacing:-0.686200pt;}
.ls1d{letter-spacing:-0.676867pt;}
.ls3f{letter-spacing:-0.676467pt;}
.lsa{letter-spacing:-0.667400pt;}
.ls51{letter-spacing:-0.667333pt;}
.ls39{letter-spacing:-0.667200pt;}
.ls42{letter-spacing:-0.666000pt;}
.ls52{letter-spacing:-0.657933pt;}
.ls9{letter-spacing:-0.657600pt;}
.ls45{letter-spacing:-0.638400pt;}
.ls12{letter-spacing:-0.635000pt;}
.ls1f{letter-spacing:-0.633600pt;}
.ls16{letter-spacing:-0.571733pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.601133pt;}
.ls3a{letter-spacing:0.639000pt;}
.ls21{letter-spacing:0.657000pt;}
.ls4d{letter-spacing:0.667333pt;}
.ls0{letter-spacing:0.667400pt;}
.ls3d{letter-spacing:0.676467pt;}
.ls3e{letter-spacing:0.676800pt;}
.ls2b{letter-spacing:0.686200pt;}
.ls2a{letter-spacing:0.686333pt;}
.ls32{letter-spacing:0.719133pt;}
.ls17{letter-spacing:0.749467pt;}
.ls1e{letter-spacing:1.263800pt;}
.ls1c{letter-spacing:1.278000pt;}
.ls41{letter-spacing:1.315200pt;}
.ls4f{letter-spacing:1.315867pt;}
.ls35{letter-spacing:1.332000pt;}
.ls1{letter-spacing:1.334800pt;}
.ls27{letter-spacing:1.372400pt;}
.ls36{letter-spacing:1.372667pt;}
.ls4e{letter-spacing:1.430667pt;}
.ls48{letter-spacing:1.450267pt;}
.ls33{letter-spacing:1.457867pt;}
.ls11{letter-spacing:1.971000pt;}
.ls2{letter-spacing:2.002200pt;}
.ls3c{letter-spacing:2.029400pt;}
.ls28{letter-spacing:2.058600pt;}
.ls31{letter-spacing:2.075733pt;}
.ls25{letter-spacing:2.146200pt;}
.ls3{letter-spacing:2.664867pt;}
.ls13{letter-spacing:2.745333pt;}
.ls4{letter-spacing:3.332267pt;}
.ls50{letter-spacing:3.379333pt;}
.ls5{letter-spacing:3.999667pt;}
.ls34{letter-spacing:4.667067pt;}
.ls4c{letter-spacing:4.732800pt;}
.ls1a{letter-spacing:5.334467pt;}
.ls30{letter-spacing:6.832800pt;}
.ls38{letter-spacing:7.331933pt;}
.ls53{letter-spacing:17.333467pt;}
.ls6{letter-spacing:21.856800pt;}
.ws0{word-spacing:0.000000pt;}
._1e{margin-left:-21.854200pt;}
._1d{margin-left:-15.800600pt;}
._1a{margin-left:-8.516620pt;}
._20{margin-left:-7.450133pt;}
._1c{margin-left:-5.753479pt;}
._1f{margin-left:-4.443679pt;}
._12{margin-left:-2.756776pt;}
._d{margin-left:-1.846000pt;}
._13{margin-left:-0.916331pt;}
._3{width:1.532192pt;}
._6{width:2.485133pt;}
._b{width:3.522933pt;}
._1{width:4.573808pt;}
._0{width:5.775518pt;}
._8{width:7.489267pt;}
._5{width:8.557384pt;}
._4{width:9.730882pt;}
._9{width:10.839333pt;}
._16{width:11.782278pt;}
._e{width:12.678851pt;}
._a{width:14.024867pt;}
._2{width:15.430667pt;}
._c{width:16.476733pt;}
._15{width:17.390636pt;}
._7{width:18.323216pt;}
._14{width:19.586051pt;}
._18{width:20.530784pt;}
._17{width:21.812133pt;}
._19{width:22.788062pt;}
._1b{width:25.478251pt;}
._11{width:28.986933pt;}
._f{width:33.497800pt;}
._10{width:37.719933pt;}
.fs18{font-size:23.333333pt;}
.fs15{font-size:37.333333pt;}
.fs11{font-size:38.666667pt;}
.fsd{font-size:41.333333pt;}
.fs13{font-size:42.666667pt;}
.fs16{font-size:43.333333pt;}
.fse{font-size:44.000000pt;}
.fsa{font-size:44.666667pt;}
.fs6{font-size:45.333333pt;}
.fs4{font-size:46.000000pt;}
.fs3{font-size:46.666667pt;}
.fs2{font-size:47.333333pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:48.666667pt;}
.fsf{font-size:49.333333pt;}
.fs9{font-size:50.000000pt;}
.fs17{font-size:50.666667pt;}
.fs7{font-size:51.333333pt;}
.fs5{font-size:54.000000pt;}
.fsc{font-size:56.666667pt;}
.fs12{font-size:59.333333pt;}
.fsb{font-size:61.333333pt;}
.fs14{font-size:76.666667pt;}
.fs0{font-size:84.000000pt;}
.fs10{font-size:108.000000pt;}
.y148{bottom:-3.753613pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:93.520053pt;}
.y12c{bottom:93.526653pt;}
.y37{bottom:94.168253pt;}
.y36{bottom:94.168720pt;}
.y74{bottom:94.806920pt;}
.yb2{bottom:97.368420pt;}
.yf3{bottom:102.484553pt;}
.y12a{bottom:106.323720pt;}
.y35{bottom:106.972387pt;}
.y72{bottom:107.891520pt;}
.y73{bottom:107.926120pt;}
.yb1{bottom:110.491587pt;}
.yf2{bottom:115.599987pt;}
.y129{bottom:119.756320pt;}
.y71{bottom:121.014687pt;}
.yf1{bottom:128.403653pt;}
.yb0{bottom:129.046253pt;}
.y33{bottom:132.244287pt;}
.y34{bottom:132.248387pt;}
.y128{bottom:132.559987pt;}
.y70{bottom:133.818353pt;}
.yef{bottom:141.201053pt;}
.yf0{bottom:141.207320pt;}
.yaf{bottom:142.166787pt;}
.y127{bottom:144.724653pt;}
.y32{bottom:145.367453pt;}
.y6f{bottom:146.622020pt;}
.yee{bottom:154.004720pt;}
.yae{bottom:154.966653pt;}
.y126{bottom:158.149353pt;}
.y6e{bottom:159.745187pt;}
.y30{bottom:163.921620pt;}
.y31{bottom:163.927053pt;}
.yed{bottom:166.808387pt;}
.yad{bottom:170.646253pt;}
.y125{bottom:171.272520pt;}
.y6d{bottom:172.548853pt;}
.yec{bottom:179.603020pt;}
.y2f{bottom:182.488120pt;}
.y124{bottom:183.756687pt;}
.y6c{bottom:185.033020pt;}
.yea{bottom:192.081220pt;}
.yeb{bottom:192.087187pt;}
.y2e{bottom:195.292087pt;}
.yab{bottom:195.910153pt;}
.yac{bottom:195.926520pt;}
.y123{bottom:196.560353pt;}
.y6b{bottom:198.156187pt;}
.ye9{bottom:204.884887pt;}
.yaa{bottom:209.033320pt;}
.y122{bottom:209.683520pt;}
.y6a{bottom:210.959853pt;}
.ye8{bottom:217.688553pt;}
.y2d{bottom:220.887587pt;}
.ya9{bottom:221.990820pt;}
.y121{bottom:222.487187pt;}
.y69{bottom:223.763520pt;}
.ye7{bottom:230.492220pt;}
.y2b{bottom:233.683520pt;}
.y2c{bottom:233.687320pt;}
.ya8{bottom:234.628820pt;}
.y68{bottom:236.553020pt;}
.y2a{bottom:246.481620pt;}
.ya7{bottom:247.432487pt;}
.y11f{bottom:248.082853pt;}
.y120{bottom:248.086787pt;}
.y67{bottom:249.356687pt;}
.ye6{bottom:256.087720pt;}
.ya6{bottom:260.555653pt;}
.y11e{bottom:260.886520pt;}
.y66{bottom:262.160353pt;}
.y29{bottom:265.048120pt;}
.ye5{bottom:269.208253pt;}
.ya5{bottom:273.359320pt;}
.y65{bottom:274.964020pt;}
.y11d{bottom:279.452520pt;}
.ye3{bottom:281.681720pt;}
.ye4{bottom:281.687320pt;}
.ya4{bottom:286.162987pt;}
.y64{bottom:288.087187pt;}
.y63{bottom:288.087487pt;}
.y11c{bottom:298.007187pt;}
.ya3{bottom:298.966653pt;}
.ye1{bottom:300.565087pt;}
.ye2{bottom:300.567720pt;}
.y62{bottom:300.725487pt;}
.y27{bottom:301.834953pt;}
.y28{bottom:301.847987pt;}
.y11b{bottom:309.526653pt;}
.ya2{bottom:312.079453pt;}
.y61{bottom:313.682987pt;}
.ye0{bottom:313.688253pt;}
.y26{bottom:315.277620pt;}
.ya1{bottom:324.563620pt;}
.y5f{bottom:326.484020pt;}
.y60{bottom:326.486653pt;}
.y25{bottom:328.081287pt;}
.ya0{bottom:337.686787pt;}
.y5e{bottom:339.603220pt;}
.y24{bottom:341.204453pt;}
.y119{bottom:347.591120pt;}
.y11a{bottom:347.606787pt;}
.ydf{bottom:347.927587pt;}
.y9f{bottom:350.460453pt;}
.y5d{bottom:352.731787pt;}
.y22{bottom:354.004187pt;}
.y23{bottom:354.008120pt;}
.y118{bottom:361.033787pt;}
.yde{bottom:361.048120pt;}
.y9e{bottom:363.264120pt;}
.y21{bottom:366.807853pt;}
.y117{bottom:373.837453pt;}
.ydd{bottom:374.157253pt;}
.y9d{bottom:376.067787pt;}
.y5c{bottom:378.646787pt;}
.y20{bottom:379.611520pt;}
.y116{bottom:386.960620pt;}
.ydc{bottom:386.960920pt;}
.y9c{bottom:389.190953pt;}
.y5a{bottom:394.641853pt;}
.y5b{bottom:394.647320pt;}
.y1f{bottom:397.527187pt;}
.y115{bottom:399.764287pt;}
.ydb{bottom:399.764587pt;}
.y9b{bottom:402.314120pt;}
.y1e{bottom:410.488120pt;}
.yd9{bottom:412.564153pt;}
.yda{bottom:412.568253pt;}
.y114{bottom:412.879853pt;}
.y9a{bottom:415.117787pt;}
.y59{bottom:421.527187pt;}
.y1d{bottom:424.407053pt;}
.yd7{bottom:425.677087pt;}
.y113{bottom:425.683520pt;}
.yd8{bottom:425.687320pt;}
.y99{bottom:428.240953pt;}
.y1c{bottom:437.208387pt;}
.y111{bottom:438.474153pt;}
.yd6{bottom:438.480753pt;}
.y112{bottom:438.487187pt;}
.y97{bottom:446.803520pt;}
.y98{bottom:446.807453pt;}
.y1b{bottom:449.367987pt;}
.y110{bottom:451.597320pt;}
.yd5{bottom:451.603920pt;}
.y96{bottom:459.607187pt;}
.y1a{bottom:462.160320pt;}
.y10f{bottom:464.400987pt;}
.yd3{bottom:464.401153pt;}
.yd4{bottom:464.407587pt;}
.y57{bottom:467.272953pt;}
.y58{bottom:467.287453pt;}
.y95{bottom:472.726387pt;}
.y94{bottom:472.728253pt;}
.y19{bottom:474.005487pt;}
.y10e{bottom:477.524153pt;}
.yd2{bottom:477.524320pt;}
.y56{bottom:480.715620pt;}
.y18{bottom:486.489653pt;}
.y93{bottom:488.726920pt;}
.yd1{bottom:490.327987pt;}
.y10d{bottom:490.633153pt;}
.y55{bottom:493.199787pt;}
.y10c{bottom:503.436820pt;}
.ycf{bottom:503.444720pt;}
.yd0{bottom:503.447053pt;}
.y17{bottom:504.405320pt;}
.y54{bottom:506.322953pt;}
.y92{bottom:514.007187pt;}
.y10b{bottom:516.240487pt;}
.yce{bottom:516.248387pt;}
.y16{bottom:517.836320pt;}
.y53{bottom:519.446120pt;}
.y146{bottom:523.284253pt;}
.y147{bottom:523.286920pt;}
.y90{bottom:527.439487pt;}
.y91{bottom:527.447053pt;}
.y10a{bottom:529.044153pt;}
.ycd{bottom:529.364953pt;}
.y15{bottom:530.639987pt;}
.y52{bottom:532.243520pt;}
.y144{bottom:536.712587pt;}
.y145{bottom:536.726920pt;}
.y8f{bottom:540.562653pt;}
.y109{bottom:542.167320pt;}
.ycc{bottom:542.488120pt;}
.y14{bottom:543.124153pt;}
.y51{bottom:545.047187pt;}
.y143{bottom:549.516253pt;}
.y8e{bottom:552.727320pt;}
.ycb{bottom:555.604687pt;}
.y12{bottom:556.230487pt;}
.y13{bottom:556.247320pt;}
.y50{bottom:558.159787pt;}
.y142{bottom:562.639420pt;}
.y8d{bottom:566.486653pt;}
.y108{bottom:568.089420pt;}
.yca{bottom:568.725220pt;}
.y11{bottom:569.034153pt;}
.y4f{bottom:571.282953pt;}
.y141{bottom:575.762587pt;}
.y8c{bottom:579.600587pt;}
.yc9{bottom:581.848387pt;}
.y10{bottom:582.157320pt;}
.y4e{bottom:584.406120pt;}
.y107{bottom:584.407587pt;}
.y106{bottom:584.412553pt;}
.y140{bottom:588.566253pt;}
.y8b{bottom:592.084753pt;}
.yc8{bottom:594.648253pt;}
.yc7{bottom:594.653487pt;}
.yf{bottom:594.960987pt;}
.y4c{bottom:597.183887pt;}
.y4d{bottom:597.207320pt;}
.y13f{bottom:601.656920pt;}
.y105{bottom:602.647720pt;}
.y89{bottom:605.823487pt;}
.y8a{bottom:605.846920pt;}
.ye{bottom:607.764653pt;}
.y4b{bottom:610.307053pt;}
.y13e{bottom:614.780087pt;}
.y104{bottom:615.452353pt;}
.y88{bottom:618.946653pt;}
.yc6{bottom:620.887987pt;}
.yc{bottom:621.200887pt;}
.yd{bottom:621.207320pt;}
.y4a{bottom:623.110720pt;}
.y13d{bottom:627.583753pt;}
.y87{bottom:631.750320pt;}
.yb{bottom:634.004553pt;}
.y103{bottom:634.326520pt;}
.yc5{bottom:634.327987pt;}
.y49{bottom:636.233887pt;}
.y13c{bottom:640.706920pt;}
.y86{bottom:644.873487pt;}
.y9{bottom:647.125220pt;}
.ya{bottom:647.127720pt;}
.yc3{bottom:647.441620pt;}
.yc4{bottom:647.447053pt;}
.y48{bottom:649.357053pt;}
.y13b{bottom:653.830087pt;}
.y85{bottom:657.996653pt;}
.y8{bottom:660.248387pt;}
.y7{bottom:660.249520pt;}
.y47{bottom:662.160720pt;}
.yc2{bottom:666.008120pt;}
.y13a{bottom:666.633753pt;}
.y84{bottom:671.119820pt;}
.y101{bottom:673.043987pt;}
.y102{bottom:673.046653pt;}
.y6{bottom:673.372687pt;}
.y46{bottom:675.283887pt;}
.y139{bottom:679.756920pt;}
.y83{bottom:684.242987pt;}
.y100{bottom:686.460753pt;}
.y45{bottom:688.407053pt;}
.y138{bottom:692.880087pt;}
.y82{bottom:697.046653pt;}
.yc0{bottom:697.680353pt;}
.yc1{bottom:697.688253pt;}
.yff{bottom:699.264420pt;}
.y5{bottom:699.607187pt;}
.y44{bottom:701.202987pt;}
.y137{bottom:705.683753pt;}
.y81{bottom:710.461420pt;}
.ybf{bottom:710.484020pt;}
.yfe{bottom:712.387587pt;}
.y4{bottom:712.401887pt;}
.y42{bottom:713.996253pt;}
.y43{bottom:714.006653pt;}
.y136{bottom:718.806920pt;}
.y80{bottom:723.265087pt;}
.ybe{bottom:723.607187pt;}
.yfd{bottom:725.510753pt;}
.y41{bottom:727.119420pt;}
.y3{bottom:730.968387pt;}
.y135{bottom:731.920987pt;}
.y7f{bottom:736.388253pt;}
.ybd{bottom:736.408520pt;}
.yfc{bottom:738.314420pt;}
.y40{bottom:740.242587pt;}
.y134{bottom:745.044153pt;}
.y2{bottom:746.967053pt;}
.y7e{bottom:749.511420pt;}
.ybc{bottom:749.521120pt;}
.yfb{bottom:751.437587pt;}
.y3f{bottom:753.046253pt;}
.y133{bottom:758.171253pt;}
.y7d{bottom:762.634587pt;}
.ybb{bottom:762.644287pt;}
.yfa{bottom:764.241253pt;}
.y3e{bottom:766.162987pt;}
.yb9{bottom:774.648253pt;}
.y7c{bottom:775.757753pt;}
.yba{bottom:775.767453pt;}
.yf9{bottom:777.364420pt;}
.y3d{bottom:778.966653pt;}
.y1{bottom:782.167320pt;}
.y132{bottom:784.086253pt;}
.y7b{bottom:788.561420pt;}
.yb8{bottom:788.872287pt;}
.yf8{bottom:790.487587pt;}
.y3c{bottom:792.087187pt;}
.y130{bottom:797.206120pt;}
.y131{bottom:797.206920pt;}
.yb7{bottom:801.995453pt;}
.yf7{bottom:803.278220pt;}
.y3b{bottom:805.206387pt;}
.y79{bottom:807.764287pt;}
.y7a{bottom:807.766920pt;}
.yb6{bottom:815.118620pt;}
.y12f{bottom:816.092120pt;}
.yf6{bottom:816.401387pt;}
.y3a{bottom:818.320487pt;}
.y78{bottom:820.887453pt;}
.yb5{bottom:828.241787pt;}
.yf5{bottom:829.524553pt;}
.y39{bottom:831.124153pt;}
.y77{bottom:834.006653pt;}
.y76{bottom:834.008353pt;}
.y12e{bottom:834.646787pt;}
.yb4{bottom:841.364953pt;}
.yf4{bottom:842.647720pt;}
.y38{bottom:844.247320pt;}
.y12d{bottom:848.086787pt;}
.y75{bottom:850.326520pt;}
.yb3{bottom:854.488120pt;}
.h46{height:24.335938pt;}
.h33{height:36.622396pt;}
.h24{height:37.949219pt;}
.h43{height:40.848958pt;}
.h2b{height:41.875000pt;}
.h16{height:43.109375pt;}
.h11{height:43.837891pt;}
.h39{height:44.492188pt;}
.h40{height:44.500000pt;}
.h37{height:45.195312pt;}
.h6{height:45.800781pt;}
.h17{height:45.890625pt;}
.h2c{height:46.359375pt;}
.h4{height:46.455078pt;}
.h28{height:46.465611pt;}
.h1a{height:46.470278pt;}
.h1e{height:46.470945pt;}
.h5{height:46.475745pt;}
.h3b{height:46.476011pt;}
.h13{height:46.477345pt;}
.h38{height:46.477478pt;}
.ha{height:46.480811pt;}
.h2a{height:46.481478pt;}
.h3f{height:46.485478pt;}
.h30{height:46.486011pt;}
.h42{height:46.495345pt;}
.hd{height:46.501745pt;}
.h20{height:46.511745pt;}
.h41{height:46.526945pt;}
.h3e{height:46.558678pt;}
.h2f{height:46.559878pt;}
.h14{height:46.585938pt;}
.h21{height:46.593478pt;}
.h2e{height:47.031250pt;}
.h1c{height:47.109375pt;}
.h9{height:47.281250pt;}
.h1b{height:47.703125pt;}
.h32{height:47.739909pt;}
.hc{height:47.763672pt;}
.h7{height:47.976562pt;}
.h3{height:48.375000pt;}
.h31{height:48.395745pt;}
.h1d{height:48.417969pt;}
.h1f{height:48.671875pt;}
.h23{height:49.046875pt;}
.h10{height:49.072266pt;}
.h27{height:49.718750pt;}
.h3a{height:49.726562pt;}
.hb{height:50.380859pt;}
.h36{height:50.951745pt;}
.hf{height:54.123078pt;}
.he{height:55.401078pt;}
.h8{height:56.320312pt;}
.h15{height:59.101562pt;}
.h29{height:61.882812pt;}
.h12{height:63.968750pt;}
.h2d{height:79.960938pt;}
.h2{height:87.609375pt;}
.h22{height:112.640625pt;}
.h3d{height:898.666667pt;}
.h3c{height:898.961853pt;}
.h0{height:902.481853pt;}
.h1{height:902.666667pt;}
.h18{height:904.401853pt;}
.h19{height:904.666667pt;}
.h44{height:907.281853pt;}
.h45{height:907.333333pt;}
.h25{height:908.561853pt;}
.h26{height:908.666667pt;}
.h34{height:913.041853pt;}
.h35{height:913.333333pt;}
.w7{width:578.666667pt;}
.w6{width:578.758133pt;}
.w0{width:585.796827pt;}
.w1{width:586.000000pt;}
.w3{width:590.666667pt;}
.w2{width:590.916827pt;}
.w5{width:593.333333pt;}
.w4{width:593.476827pt;}
.xbd{left:-4.354240pt;}
.x0{left:0.000000pt;}
.xa4{left:34.372367pt;}
.xa6{left:35.275967pt;}
.xb5{left:36.926400pt;}
.xa{left:37.879393pt;}
.x2{left:38.845493pt;}
.x59{left:41.728327pt;}
.x57{left:43.005627pt;}
.x64{left:43.971360pt;}
.x78{left:45.246827pt;}
.xa5{left:47.807467pt;}
.x4{left:49.726427pt;}
.x5f{left:52.925627pt;}
.x63{left:54.526693pt;}
.xa1{left:56.766400pt;}
.xad{left:57.727333pt;}
.xb7{left:58.686800pt;}
.x9{left:60.611227pt;}
.x79{left:63.166293pt;}
.x5e{left:64.767727pt;}
.x62{left:66.050027pt;}
.x7d{left:67.005693pt;}
.x35{left:69.885627pt;}
.x3b{left:70.852993pt;}
.x4f{left:71.808893pt;}
.x87{left:72.765493pt;}
.xb{left:74.045760pt;}
.x2b{left:78.205893pt;}
.x6e{left:80.445627pt;}
.x22{left:81.725893pt;}
.x14{left:82.686827pt;}
.x13{left:84.286427pt;}
.x1e{left:85.566693pt;}
.x2c{left:86.845493pt;}
.x90{left:88.765893pt;}
.xc{left:89.726827pt;}
.x5a{left:90.686293pt;}
.x23{left:91.966560pt;}
.x38{left:92.922727pt;}
.x3e{left:93.885493pt;}
.x6c{left:95.486560pt;}
.x65{left:97.086293pt;}
.x1f{left:99.006693pt;}
.x88{left:101.565760pt;}
.x9a{left:105.085760pt;}
.x5b{left:106.686827pt;}
.x89{left:108.286427pt;}
.x66{left:109.245893pt;}
.x9c{left:111.166293pt;}
.x2d{left:112.765893pt;}
.x6d{left:115.005627pt;}
.x9b{left:116.285893pt;}
.x24{left:117.566160pt;}
.x1d{left:118.846560pt;}
.x2e{left:120.126827pt;}
.xba{left:121.405627pt;}
.x6f{left:123.646827pt;}
.x25{left:125.565760pt;}
.x9d{left:127.486160pt;}
.x75{left:129.725893pt;}
.x8a{left:131.325493pt;}
.x83{left:132.926560pt;}
.x36{left:133.886027pt;}
.x2f{left:136.125760pt;}
.x43{left:137.406027pt;}
.x98{left:139.645760pt;}
.x26{left:141.246827pt;}
.x37{left:143.486560pt;}
.xab{left:146.047200pt;}
.x70{left:147.326027pt;}
.x11{left:149.246427pt;}
.x84{left:150.526693pt;}
.xb6{left:152.126267pt;}
.x99{left:153.406560pt;}
.x27{left:154.686827pt;}
.x5c{left:155.965627pt;}
.xac{left:159.487067pt;}
.x12{left:160.446560pt;}
.x5d{left:163.966560pt;}
.x2a{left:166.525627pt;}
.x44{left:169.086293pt;}
.xb8{left:171.006693pt;}
.x8b{left:173.246427pt;}
.x16{left:174.205893pt;}
.x31{left:176.445627pt;}
.x9e{left:177.406560pt;}
.xaa{left:180.607200pt;}
.x15{left:181.566693pt;}
.x32{left:183.485627pt;}
.x5{left:185.086693pt;}
.x7a{left:186.686293pt;}
.x52{left:187.645760pt;}
.x19{left:189.246827pt;}
.x28{left:190.206293pt;}
.xb4{left:191.167200pt;}
.x1{left:192.446160pt;}
.x20{left:194.685893pt;}
.x67{left:196.285493pt;}
.x29{left:197.886560pt;}
.x80{left:200.126293pt;}
.x6{left:201.085760pt;}
.x42{left:203.006160pt;}
.x8c{left:203.965627pt;}
.x1a{left:205.245893pt;}
.x68{left:207.166293pt;}
.x30{left:208.125760pt;}
.x76{left:210.365493pt;}
.x21{left:212.285893pt;}
.x7b{left:215.805893pt;}
.x7{left:216.765493pt;}
.x47{left:222.846027pt;}
.x77{left:224.766427pt;}
.x1b{left:225.725893pt;}
.x85{left:228.286427pt;}
.x8{left:230.206827pt;}
.x7c{left:233.406027pt;}
.x81{left:236.285893pt;}
.x1c{left:237.885493pt;}
.x3{left:242.366560pt;}
.x86{left:247.805493pt;}
.x45{left:251.646293pt;}
.x82{left:252.605760pt;}
.x48{left:253.566693pt;}
.x92{left:259.326427pt;}
.xae{left:260.927467pt;}
.x49{left:262.206293pt;}
.xa2{left:264.766933pt;}
.x71{left:267.646827pt;}
.x46{left:268.925627pt;}
.x69{left:271.166827pt;}
.xa3{left:280.446533pt;}
.xb0{left:283.647200pt;}
.x72{left:284.606693pt;}
.x58{left:285.885493pt;}
.xaf{left:287.807467pt;}
.x6a{left:293.246427pt;}
.xb1{left:301.566667pt;}
.x73{left:305.726827pt;}
.x6b{left:307.005627pt;}
.x95{left:316.285493pt;}
.x74{left:318.526693pt;}
.xd{left:320.445627pt;}
.xb9{left:323.006160pt;}
.xb2{left:323.967067pt;}
.x96{left:328.765893pt;}
.xe{left:331.005627pt;}
.x3f{left:336.126827pt;}
.xb3{left:337.726400pt;}
.x4a{left:345.406560pt;}
.x39{left:354.365493pt;}
.x40{left:356.285893pt;}
.x3a{left:367.166827pt;}
.x41{left:368.445627pt;}
.x4b{left:387.006693pt;}
.x17{left:389.565760pt;}
.x4c{left:395.646293pt;}
.x18{left:399.806427pt;}
.x7e{left:407.165760pt;}
.x4d{left:411.646827pt;}
.xa7{left:414.526667pt;}
.xbb{left:416.445627pt;}
.x7f{left:420.286427pt;}
.x93{left:421.566693pt;}
.x4e{left:425.726827pt;}
.xbc{left:428.606693pt;}
.xf{left:431.486560pt;}
.x94{left:438.205893pt;}
.x10{left:443.006160pt;}
.x50{left:445.886027pt;}
.x60{left:449.406027pt;}
.x8d{left:450.686293pt;}
.xa8{left:453.246933pt;}
.x51{left:458.685893pt;}
.x8e{left:461.886560pt;}
.xa9{left:466.046667pt;}
.x53{left:467.325493pt;}
.x61{left:469.566693pt;}
.x91{left:473.726827pt;}
.x9f{left:476.926027pt;}
.x3c{left:482.045760pt;}
.x54{left:483.646827pt;}
.xa0{left:488.445627pt;}
.x33{left:490.686827pt;}
.x3d{left:492.286427pt;}
.x34{left:502.525760pt;}
.x55{left:504.765493pt;}
.x56{left:521.086693pt;}
.x8f{left:529.086293pt;}
.x97{left:536.445627pt;}
}




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