
    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_71d3165ed74f8552524ff1a6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_af258eef27194652df99f194.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a86331825587cb30d022b59b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_21bca3539bfdd7701b3e9320.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_4950825b78a7cde619a3f4ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ef6bdbe4f876d65622fbe530.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_f2a8f1d67c8772ccbcfa46e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_f5c821b35d6052a3f8899f1e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d8817c70dd7f08206c5a92cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_cf85b68591f3f402f5a1b2f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_39c21a1e67b00ddb5f3ea1f9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.141602;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;}
.m20{transform:matrix(0.240203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240203,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243682,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.244877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244877,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244887,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247949,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248324,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253417,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253779,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255965,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.257071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257071,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.257537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257537,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.258032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258032,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258946,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.259466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259466,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.259779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259779,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.259897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259897,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.260493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260493,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.261017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261017,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-31.997234px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v3{vertical-align:18.131266px;}
.v8{vertical-align:26.640000px;}
.v1{vertical-align:31.997234px;}
.v5{vertical-align:48.240000px;}
.v4{vertical-align:54.720000px;}
.v7{vertical-align:61.920000px;}
.ls5{letter-spacing:-5.220000px;}
.ls27{letter-spacing:-2.836531px;}
.ls25{letter-spacing:-2.686291px;}
.ls29{letter-spacing:-2.542061px;}
.ls1d{letter-spacing:-2.492189px;}
.ls21{letter-spacing:-2.361001px;}
.ls2a{letter-spacing:-2.261433px;}
.ls24{letter-spacing:-2.261339px;}
.ls1f{letter-spacing:-2.223132px;}
.ls23{letter-spacing:-2.085264px;}
.ls26{letter-spacing:-1.929081px;}
.ls2e{letter-spacing:-1.902878px;}
.ls1e{letter-spacing:-1.814644px;}
.ls28{letter-spacing:-1.784851px;}
.ls20{letter-spacing:-1.729103px;}
.ls2c{letter-spacing:-1.667351px;}
.ls22{letter-spacing:-1.591234px;}
.ls2d{letter-spacing:-1.487833px;}
.ls3f{letter-spacing:-1.458000px;}
.ls2f{letter-spacing:-1.453366px;}
.ls6{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls39{letter-spacing:0.115920px;}
.ls33{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.261002px;}
.ls3b{letter-spacing:0.341400px;}
.ls13{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.378600px;}
.ls38{letter-spacing:0.378720px;}
.ls1{letter-spacing:0.504000px;}
.ls30{letter-spacing:1.872000px;}
.ls35{letter-spacing:4.352400px;}
.ls3a{letter-spacing:10.620000px;}
.ls36{letter-spacing:15.872400px;}
.ls32{letter-spacing:16.056000px;}
.ls34{letter-spacing:17.712000px;}
.ls31{letter-spacing:18.612000px;}
.ls16{letter-spacing:24.427592px;}
.ls1b{letter-spacing:24.429206px;}
.ls19{letter-spacing:25.649221px;}
.ls11{letter-spacing:25.720511px;}
.ls37{letter-spacing:25.740000px;}
.ls12{letter-spacing:27.635076px;}
.lsa{letter-spacing:27.779802px;}
.lsf{letter-spacing:27.780951px;}
.ls9{letter-spacing:84.516387px;}
.ls18{letter-spacing:87.865100px;}
.ls14{letter-spacing:164.714551px;}
.lse{letter-spacing:191.723922px;}
.ls7{letter-spacing:245.095175px;}
.ls1a{letter-spacing:245.290030px;}
.lsd{letter-spacing:248.823385px;}
.ls17{letter-spacing:262.294304px;}
.lsc{letter-spacing:265.557414px;}
.ls15{letter-spacing:290.467585px;}
.ls8{letter-spacing:325.648984px;}
.ls10{letter-spacing:326.757678px;}
.lsb{letter-spacing:507.595997px;}
.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;}
}
.ws4{word-spacing:-84.600000px;}
.ws2{word-spacing:-84.221280px;}
.ws50{word-spacing:-82.782000px;}
.ws1b{word-spacing:-39.953986px;}
.ws1c{word-spacing:-39.952333px;}
.ws34{word-spacing:-39.910763px;}
.ws3b{word-spacing:-39.112098px;}
.ws2b{word-spacing:-39.034469px;}
.ws39{word-spacing:-37.983718px;}
.ws0{word-spacing:-24.300000px;}
.ws4f{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws4c{word-spacing:-15.840000px;}
.ws46{word-spacing:-15.768000px;}
.ws49{word-spacing:-15.624000px;}
.ws4e{word-spacing:-3.240000px;}
.ws4d{word-spacing:-3.192000px;}
.ws35{word-spacing:-0.332103px;}
.ws44{word-spacing:-0.100080px;}
.ws1f{word-spacing:-0.072812px;}
.ws33{word-spacing:-0.072697px;}
.ws31{word-spacing:-0.071242px;}
.ws9{word-spacing:-0.071101px;}
.ws3e{word-spacing:-0.069325px;}
.wsf{word-spacing:-0.069187px;}
.ws6{word-spacing:0.000000px;}
.ws45{word-spacing:0.216000px;}
.ws13{word-spacing:1.522047px;}
.ws3c{word-spacing:1.596250px;}
.wse{word-spacing:1.659916px;}
.ws22{word-spacing:1.712039px;}
.ws8{word-spacing:1.743543px;}
.ws40{word-spacing:1.830180px;}
.ws1e{word-spacing:1.856269px;}
.ws18{word-spacing:2.016077px;}
.wsd{word-spacing:2.153945px;}
.ws12{word-spacing:2.291814px;}
.ws7{word-spacing:2.421088px;}
.ws25{word-spacing:2.469248px;}
.ws1d{word-spacing:2.613479px;}
.ws21{word-spacing:2.763719px;}
.ws48{word-spacing:3.816000px;}
.ws4a{word-spacing:4.104000px;}
.ws47{word-spacing:4.536000px;}
.ws4b{word-spacing:6.192000px;}
.ws30{word-spacing:16.107814px;}
.ws3a{word-spacing:16.283946px;}
.ws2f{word-spacing:42.035936px;}
.ws1a{word-spacing:42.398572px;}
.ws2a{word-spacing:43.369397px;}
.ws29{word-spacing:43.513010px;}
.ws3d{word-spacing:45.615521px;}
.ws32{word-spacing:48.833409px;}
.ws17{word-spacing:66.433678px;}
.ws19{word-spacing:67.404504px;}
.ws27{word-spacing:69.174286px;}
.ws28{word-spacing:69.606977px;}
.ws43{word-spacing:70.221253px;}
.ws38{word-spacing:145.944661px;}
.ws42{word-spacing:153.432470px;}
.ws3f{word-spacing:156.907335px;}
.ws24{word-spacing:188.783341px;}
.ws15{word-spacing:195.915348px;}
.wsb{word-spacing:230.855143px;}
.ws37{word-spacing:234.691957px;}
.wsc{word-spacing:234.833358px;}
.ws20{word-spacing:237.034414px;}
.ws11{word-spacing:242.038166px;}
.ws16{word-spacing:246.406260px;}
.ws36{word-spacing:255.811062px;}
.ws26{word-spacing:304.134619px;}
.ws41{word-spacing:307.092285px;}
.ws14{word-spacing:375.331285px;}
.ws23{word-spacing:397.878959px;}
.wsa{word-spacing:405.525499px;}
.ws2e{word-spacing:483.162622px;}
.ws10{word-spacing:504.381977px;}
.ws2c{word-spacing:563.970209px;}
.ws2d{word-spacing:630.966381px;}
._48{margin-left:-488.238404px;}
._39{margin-left:-397.647196px;}
._22{margin-left:-394.847492px;}
._19{margin-left:-391.781506px;}
._27{margin-left:-348.586805px;}
._4d{margin-left:-325.234755px;}
._3f{margin-left:-283.831403px;}
._38{margin-left:-275.154215px;}
._53{margin-left:-257.653986px;}
._58{margin-left:-256.450406px;}
._20{margin-left:-253.742459px;}
._3c{margin-left:-250.718584px;}
._12{margin-left:-247.427833px;}
._40{margin-left:-245.624544px;}
._15{margin-left:-242.941304px;}
._4a{margin-left:-238.651156px;}
._1e{margin-left:-237.289808px;}
._25{margin-left:-235.902504px;}
._37{margin-left:-233.767600px;}
._2d{margin-left:-231.373266px;}
._29{margin-left:-229.243639px;}
._18{margin-left:-227.606175px;}
._17{margin-left:-225.197565px;}
._23{margin-left:-222.768399px;}
._2e{margin-left:-220.494163px;}
._2a{margin-left:-219.248749px;}
._3d{margin-left:-218.154464px;}
._57{margin-left:-214.233995px;}
._1b{margin-left:-208.419713px;}
._41{margin-left:-207.338159px;}
._4c{margin-left:-205.368118px;}
._42{margin-left:-203.421896px;}
._30{margin-left:-202.313202px;}
._2b{margin-left:-200.053201px;}
._45{margin-left:-198.249813px;}
._3e{margin-left:-193.955247px;}
._3a{margin-left:-192.920040px;}
._5d{margin-left:-191.618988px;}
._21{margin-left:-190.110318px;}
._26{margin-left:-188.706367px;}
._2c{margin-left:-185.470715px;}
._28{margin-left:-183.337956px;}
._4e{margin-left:-181.578785px;}
._49{margin-left:-179.963933px;}
._13{margin-left:-177.074478px;}
._2f{margin-left:-176.023838px;}
._44{margin-left:-174.358970px;}
._4f{margin-left:-172.829306px;}
._55{margin-left:-170.944343px;}
._52{margin-left:-167.781476px;}
._4b{margin-left:-165.988820px;}
._54{margin-left:-164.280115px;}
._5c{margin-left:-154.997251px;}
._24{margin-left:-140.529730px;}
._56{margin-left:-138.984016px;}
._35{margin-left:-135.648675px;}
._50{margin-left:-134.030283px;}
._10{margin-left:-132.987452px;}
._5a{margin-left:-131.704802px;}
._1a{margin-left:-129.883787px;}
._5e{margin-left:-127.592616px;}
._1c{margin-left:-125.359577px;}
._33{margin-left:-122.932035px;}
._59{margin-left:-120.923634px;}
._1f{margin-left:-116.363197px;}
._32{margin-left:-114.916573px;}
._31{margin-left:-99.897039px;}
._36{margin-left:-98.402669px;}
._11{margin-left:-96.405321px;}
._14{margin-left:-94.783572px;}
._1d{margin-left:-92.364273px;}
._3b{margin-left:-91.250525px;}
._47{margin-left:-90.128540px;}
._60{margin-left:-88.799138px;}
._51{margin-left:-84.218010px;}
._5f{margin-left:-83.135711px;}
._46{margin-left:-59.156462px;}
._43{margin-left:-56.846916px;}
._5b{margin-left:-52.497246px;}
._6{margin-left:-5.728320px;}
._61{margin-left:-4.397511px;}
._16{margin-left:-3.107342px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._c{width:2.970960px;}
._8{width:4.043520px;}
._9{width:8.443440px;}
._3{width:9.900240px;}
._7{width:11.119680px;}
._69{width:12.720000px;}
._65{width:13.924080px;}
._a{width:14.972160px;}
._b{width:16.658880px;}
._68{width:19.240320px;}
._66{width:21.092400px;}
._34{width:22.157040px;}
._67{width:23.964960px;}
._4{width:25.103520px;}
._5{width:26.430720px;}
._d{width:28.155600px;}
._64{width:30.137280px;}
._e{width:34.201440px;}
._f{width:35.747280px;}
._6b{width:42.039840px;}
._6a{width:43.776000px;}
._63{width:48.269520px;}
._62{width:49.596720px;}
._2{width:59.726160px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:40.289250px;}
.fs6{font-size:41.464017px;}
.fsf{font-size:41.606596px;}
.fsc{font-size:42.439011px;}
.fsa{font-size:42.440767px;}
.fs12{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.187100px;}
.fs11{font-size:69.324968px;}
.fs5{font-size:71.101036px;}
.fse{font-size:71.242436px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:72.697200px;}
.fsb{font-size:72.772920px;}
.fs9{font-size:72.775931px;}
.fsd{font-size:72.812305px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:0.720000px;}
.y85{bottom:3.326462px;}
.y69{bottom:3.326492px;}
.y49{bottom:3.326495px;}
.ya6{bottom:3.326584px;}
.y60{bottom:3.326632px;}
.y46{bottom:3.326635px;}
.y3{bottom:3.960000px;}
.yc1{bottom:4.140000px;}
.y88{bottom:4.631243px;}
.y80{bottom:4.631245px;}
.y41{bottom:4.631246px;}
.y76{bottom:4.631249px;}
.y57{bottom:4.631253px;}
.y5c{bottom:4.631255px;}
.y90{bottom:4.678630px;}
.y66{bottom:4.714306px;}
.y96{bottom:4.885669px;}
.y9e{bottom:4.885677px;}
.y7a{bottom:4.885680px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y99{bottom:7.486700px;}
.ya4{bottom:7.486708px;}
.y9b{bottom:7.521455px;}
.ya3{bottom:7.521456px;}
.yab{bottom:7.521459px;}
.y37{bottom:7.521463px;}
.y39{bottom:7.521464px;}
.y3c{bottom:7.521467px;}
.y3e{bottom:7.521470px;}
.y6f{bottom:7.678507px;}
.y74{bottom:7.678509px;}
.y34{bottom:7.678514px;}
.y8c{bottom:7.859066px;}
.y84{bottom:7.859069px;}
.y68{bottom:7.859078px;}
.y48{bottom:7.859088px;}
.ya5{bottom:7.859389px;}
.yac{bottom:7.859392px;}
.y45{bottom:7.859401px;}
.y5f{bottom:7.859414px;}
.ybb{bottom:8.100000px;}
.y8f{bottom:9.142749px;}
.y65{bottom:9.178551px;}
.y4f{bottom:10.819390px;}
.y51{bottom:10.819392px;}
.y53{bottom:10.819394px;}
.y55{bottom:10.819397px;}
.yb6{bottom:12.060000px;}
.y77{bottom:12.396579px;}
.y81{bottom:12.396583px;}
.y89{bottom:12.396585px;}
.y58{bottom:12.396621px;}
.y42{bottom:12.396622px;}
.y7d{bottom:15.677850px;}
.y70{bottom:15.677852px;}
.y4{bottom:16.020000px;}
.yb8{bottom:16.200000px;}
.yb{bottom:16.380000px;}
.yc4{bottom:17.100000px;}
.ybe{bottom:17.640000px;}
.yb5{bottom:19.440000px;}
.yba{bottom:20.160000px;}
.yc6{bottom:20.880000px;}
.yc0{bottom:21.420000px;}
.y2{bottom:24.660000px;}
.yc3{bottom:29.160000px;}
.ybd{bottom:29.700000px;}
.yc5{bottom:32.940000px;}
.ybf{bottom:33.480000px;}
.y8{bottom:44.640000px;}
.ydb{bottom:98.496000px;}
.yaf{bottom:123.696000px;}
.yda{bottom:126.216000px;}
.y30{bottom:126.576000px;}
.yae{bottom:151.590000px;}
.yd9{bottom:153.930000px;}
.y2f{bottom:154.470000px;}
.yad{bottom:179.310000px;}
.yd8{bottom:181.830000px;}
.y2e{bottom:182.190000px;}
.ya9{bottom:202.530000px;}
.yaa{bottom:202.589980px;}
.ya8{bottom:202.590000px;}
.yd7{bottom:209.550000px;}
.y2d{bottom:209.910000px;}
.ya7{bottom:210.090000px;}
.ya2{bottom:233.130000px;}
.ya1{bottom:233.189980px;}
.yd6{bottom:237.270000px;}
.y2c{bottom:237.630000px;}
.ya0{bottom:240.690000px;}
.y9c{bottom:263.910000px;}
.y9a{bottom:263.940000px;}
.yd5{bottom:265.170000px;}
.y2b{bottom:265.530000px;}
.y9d{bottom:267.014980px;}
.y9f{bottom:271.470000px;}
.y98{bottom:292.215000px;}
.yd4{bottom:292.890000px;}
.y2a{bottom:293.250000px;}
.y97{bottom:299.730000px;}
.yd3{bottom:320.610000px;}
.y29{bottom:320.970000px;}
.y95{bottom:323.040000px;}
.y94{bottom:327.450000px;}
.yd2{bottom:348.375000px;}
.y28{bottom:348.915000px;}
.y93{bottom:350.714959px;}
.y92{bottom:358.275000px;}
.yd1{bottom:376.275000px;}
.y27{bottom:376.635000px;}
.y91{bottom:385.995000px;}
.yd0{bottom:400.395000px;}
.y26{bottom:404.355000px;}
.y8e{bottom:409.214959px;}
.y8b{bottom:410.639959px;}
.y8d{bottom:410.655000px;}
.y87{bottom:413.714959px;}
.y8a{bottom:413.715000px;}
.y86{bottom:418.215000px;}
.ycf{bottom:428.115000px;}
.y25{bottom:432.075000px;}
.y83{bottom:441.464959px;}
.y82{bottom:444.495000px;}
.y7f{bottom:444.539959px;}
.y7e{bottom:448.995000px;}
.yce{bottom:455.835000px;}
.y24{bottom:459.975000px;}
.y7c{bottom:472.214959px;}
.y7b{bottom:479.775000px;}
.ycd{bottom:483.735000px;}
.y23{bottom:487.695000px;}
.y79{bottom:503.039959px;}
.y78{bottom:507.495000px;}
.ycc{bottom:511.455000px;}
.y22{bottom:515.415000px;}
.y73{bottom:530.714959px;}
.y75{bottom:533.789959px;}
.y72{bottom:538.275000px;}
.ycb{bottom:539.175000px;}
.y21{bottom:543.315000px;}
.y71{bottom:565.995000px;}
.yca{bottom:567.075000px;}
.y20{bottom:571.035000px;}
.y6e{bottom:589.214959px;}
.yc9{bottom:594.795000px;}
.y6d{bottom:596.775000px;}
.y1f{bottom:598.755000px;}
.yc8{bottom:622.545000px;}
.y6c{bottom:624.525000px;}
.y1e{bottom:626.505000px;}
.yc7{bottom:650.265000px;}
.y6b{bottom:652.245000px;}
.y1d{bottom:654.405000px;}
.yc2{bottom:670.785000px;}
.y6a{bottom:679.965000px;}
.y1c{bottom:682.125000px;}
.y64{bottom:703.139919px;}
.y67{bottom:704.639919px;}
.y62{bottom:707.639919px;}
.y63{bottom:707.685000px;}
.y1b{bottom:709.845000px;}
.y61{bottom:712.185000px;}
.ybc{bottom:728.925000px;}
.y5e{bottom:735.389919px;}
.y1a{bottom:737.745000px;}
.y5b{bottom:738.464919px;}
.y5d{bottom:738.465000px;}
.y5a{bottom:742.965000px;}
.y19{bottom:765.465000px;}
.y52{bottom:766.139919px;}
.y54{bottom:766.185000px;}
.y56{bottom:772.139919px;}
.y59{bottom:776.625000px;}
.yb7{bottom:787.605000px;}
.y18{bottom:793.185000px;}
.y4e{bottom:800.339919px;}
.y50{bottom:800.385000px;}
.y4d{bottom:810.825000px;}
.y17{bottom:820.905000px;}
.yb4{bottom:833.145000px;}
.y4c{bottom:839.265000px;}
.y16{bottom:848.805000px;}
.y4b{bottom:866.985000px;}
.yb3{bottom:870.630000px;}
.y15{bottom:876.570000px;}
.y4a{bottom:894.750000px;}
.yb2{bottom:900.330000px;}
.y14{bottom:904.290000px;}
.y44{bottom:917.939919px;}
.y40{bottom:920.939919px;}
.y43{bottom:921.030000px;}
.y47{bottom:925.530000px;}
.yb1{bottom:928.410000px;}
.y13{bottom:932.010000px;}
.y3b{bottom:948.689919px;}
.y3d{bottom:948.750000px;}
.y3f{bottom:956.310000px;}
.y12{bottom:959.910000px;}
.y36{bottom:976.439919px;}
.y38{bottom:976.470000px;}
.y3a{bottom:984.030000px;}
.y11{bottom:987.630000px;}
.y35{bottom:1008.870000px;}
.yb0{bottom:1011.750000px;}
.y10{bottom:1015.350000px;}
.y33{bottom:1031.864919px;}
.y32{bottom:1039.470000px;}
.yf{bottom:1043.250000px;}
.y31{bottom:1067.370000px;}
.ye{bottom:1070.970000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h30{height:20.700000px;}
.h29{height:21.599783px;}
.h2c{height:21.599803px;}
.h24{height:21.599823px;}
.h2a{height:23.400336px;}
.h2e{height:23.400357px;}
.h22{height:23.400377px;}
.hf{height:23.400418px;}
.h26{height:26.098914px;}
.h16{height:26.098954px;}
.h2f{height:26.099973px;}
.h13{height:26.100034px;}
.h2d{height:27.000208px;}
.h1f{height:27.000229px;}
.hc{height:27.000270px;}
.h7{height:27.576000px;}
.h19{height:30.599459px;}
.h32{height:36.540000px;}
.h12{height:39.541695px;}
.h23{height:40.190887px;}
.h20{height:41.362787px;}
.h2{height:41.400000px;}
.h36{height:44.640000px;}
.h4{height:53.709961px;}
.h39{height:57.420000px;}
.h38{height:57.960000px;}
.h6{height:66.757500px;}
.h11{height:67.903355px;}
.h10{height:69.018186px;}
.h2b{height:69.155718px;}
.h1d{height:69.781778px;}
.h27{height:69.920555px;}
.h31{height:70.628906px;}
.h8{height:70.664062px;}
.h17{height:71.422641px;}
.h14{height:71.425597px;}
.h25{height:72.519716px;}
.h3{height:72.562500px;}
.h1a{height:72.634541px;}
.h21{height:72.690432px;}
.hd{height:72.691899px;}
.he{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h1b{height:86.585445px;}
.h1e{height:88.784603px;}
.h28{height:88.925069px;}
.h18{height:90.725767px;}
.h15{height:90.729521px;}
.h9{height:96.508125px;}
.h1c{height:100.676953px;}
.h35{height:118.868906px;}
.h34{height:118.904063px;}
.h33{height:121.024687px;}
.h37{height:132.584063px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:31.500658px;}
.w26{width:31.500688px;}
.w22{width:41.400391px;}
.w1c{width:43.201067px;}
.w27{width:44.999927px;}
.w20{width:48.599778px;}
.w1f{width:49.500320px;}
.w18{width:49.500341px;}
.w1b{width:49.500381px;}
.w2a{width:57.600207px;}
.w29{width:57.600228px;}
.we{width:57.600248px;}
.wd{width:58.499097px;}
.w21{width:58.499117px;}
.w16{width:58.499137px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w1e{width:74.701376px;}
.w28{width:80.998941px;}
.w24{width:81.898074px;}
.w1a{width:96.302206px;}
.w14{width:103.500162px;}
.wb{width:105.295185px;}
.w12{width:110.698807px;}
.w17{width:112.503359px;}
.w13{width:112.503379px;}
.w25{width:119.696604px;}
.wc{width:127.797621px;}
.w15{width:127.797631px;}
.wa{width:138.595950px;}
.w11{width:143.099132px;}
.w10{width:166.497061px;}
.w9{width:170.994640px;}
.w1d{width:178.200700px;}
.w7{width:199.798835px;}
.wf{width:200.852118px;}
.w8{width:207.002341px;}
.w2b{width:211.890000px;}
.w2d{width:222.510000px;}
.w19{width:231.303296px;}
.w2c{width:264.990000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6f{left:7.560000px;}
.x2{left:8.640000px;}
.x22{left:10.714103px;}
.x1e{left:12.743945px;}
.x4d{left:18.090326px;}
.x7{left:19.800000px;}
.x61{left:29.214348px;}
.x5b{left:30.346120px;}
.x1{left:31.860000px;}
.x6a{left:34.500138px;}
.x25{left:36.992918px;}
.x41{left:38.213610px;}
.x70{left:41.400000px;}
.x73{left:43.020000px;}
.x21{left:46.499206px;}
.x54{left:48.463268px;}
.x4{left:59.970000px;}
.x4e{left:63.095028px;}
.x5e{left:69.697245px;}
.x76{left:71.274000px;}
.x74{left:77.040000px;}
.x7a{left:80.280000px;}
.x34{left:82.419027px;}
.x5{left:84.959987px;}
.x45{left:87.817153px;}
.x2e{left:90.832714px;}
.x31{left:92.440303px;}
.x6e{left:95.976000px;}
.x58{left:98.866336px;}
.x52{left:100.422399px;}
.x8{left:103.175987px;}
.x65{left:108.727766px;}
.x71{left:109.980000px;}
.x1d{left:116.019795px;}
.x1a{left:117.236701px;}
.x75{left:120.954000px;}
.x2c{left:122.548488px;}
.x10{left:127.475987px;}
.x77{left:130.674000px;}
.x79{left:131.934000px;}
.x72{left:144.180000px;}
.x2a{left:145.541955px;}
.x18{left:150.433974px;}
.x4c{left:166.435119px;}
.x78{left:172.830000px;}
.x13{left:179.365709px;}
.x27{left:180.675869px;}
.x15{left:185.727305px;}
.x33{left:191.264980px;}
.x5d{left:197.669987px;}
.x12{left:203.339980px;}
.x5f{left:209.369987px;}
.x57{left:213.914980px;}
.x43{left:221.614181px;}
.x60{left:230.489980px;}
.x1f{left:255.269987px;}
.xe{left:265.889987px;}
.x2d{left:270.569987px;}
.x6c{left:272.189987px;}
.x4b{left:275.639980px;}
.x62{left:279.974987px;}
.x20{left:286.815000px;}
.xc{left:290.954987px;}
.x49{left:293.339980px;}
.x35{left:294.734987px;}
.xb{left:296.714987px;}
.x4f{left:302.639980px;}
.x3c{left:303.734987px;}
.xd{left:306.794987px;}
.x1b{left:308.039980px;}
.x53{left:314.189980px;}
.x36{left:321.014980px;}
.x9{left:322.994987px;}
.x59{left:324.614987px;}
.x16{left:334.514987px;}
.x4a{left:336.494987px;}
.x23{left:345.314987px;}
.x6d{left:350.894987px;}
.x50{left:352.154987px;}
.xf{left:368.894987px;}
.x24{left:371.639959px;}
.x55{left:372.674987px;}
.x17{left:376.439959px;}
.x11{left:389.234987px;}
.x63{left:391.574987px;}
.x14{left:403.094987px;}
.x1c{left:413.354987px;}
.x51{left:416.594987px;}
.x2f{left:418.034987px;}
.x26{left:429.194987px;}
.x64{left:431.039959px;}
.x44{left:434.594987px;}
.x56{left:437.114987px;}
.xa{left:446.474987px;}
.x37{left:448.814987px;}
.x30{left:454.739959px;}
.x3d{left:463.034987px;}
.x28{left:492.404987px;}
.x3e{left:504.989959px;}
.x46{left:514.724987px;}
.x38{left:517.064959px;}
.x29{left:529.139959px;}
.x19{left:547.484987px;}
.x66{left:550.724987px;}
.x3f{left:554.504987px;}
.x32{left:567.284987px;}
.x5a{left:574.439959px;}
.x39{left:575.564987px;}
.x67{left:576.839959px;}
.x40{left:580.739959px;}
.x3a{left:601.814959px;}
.x68{left:608.324987px;}
.x5c{left:615.884987px;}
.x42{left:630.284987px;}
.x3b{left:659.489987px;}
.x69{left:662.114959px;}
.x2b{left:695.669987px;}
.x6b{left:721.589987px;}
.x47{left:758.414919px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
.x48{left:807.989987px;}
@media print{
.v2{vertical-align:-28.441985pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v3{vertical-align:16.116681pt;}
.v8{vertical-align:23.680000pt;}
.v1{vertical-align:28.441985pt;}
.v5{vertical-align:42.880000pt;}
.v4{vertical-align:48.640000pt;}
.v7{vertical-align:55.040000pt;}
.ls5{letter-spacing:-4.640000pt;}
.ls27{letter-spacing:-2.521361pt;}
.ls25{letter-spacing:-2.387814pt;}
.ls29{letter-spacing:-2.259609pt;}
.ls1d{letter-spacing:-2.215279pt;}
.ls21{letter-spacing:-2.098668pt;}
.ls2a{letter-spacing:-2.010163pt;}
.ls24{letter-spacing:-2.010080pt;}
.ls1f{letter-spacing:-1.976118pt;}
.ls23{letter-spacing:-1.853568pt;}
.ls26{letter-spacing:-1.714739pt;}
.ls2e{letter-spacing:-1.691447pt;}
.ls1e{letter-spacing:-1.613017pt;}
.ls28{letter-spacing:-1.586534pt;}
.ls20{letter-spacing:-1.536980pt;}
.ls2c{letter-spacing:-1.482090pt;}
.ls22{letter-spacing:-1.414431pt;}
.ls2d{letter-spacing:-1.322518pt;}
.ls3f{letter-spacing:-1.296000pt;}
.ls2f{letter-spacing:-1.291881pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls39{letter-spacing:0.103040pt;}
.ls33{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.232002pt;}
.ls3b{letter-spacing:0.303467pt;}
.ls13{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.336533pt;}
.ls38{letter-spacing:0.336640pt;}
.ls1{letter-spacing:0.448000pt;}
.ls30{letter-spacing:1.664000pt;}
.ls35{letter-spacing:3.868800pt;}
.ls3a{letter-spacing:9.440000pt;}
.ls36{letter-spacing:14.108800pt;}
.ls32{letter-spacing:14.272000pt;}
.ls34{letter-spacing:15.744000pt;}
.ls31{letter-spacing:16.544000pt;}
.ls16{letter-spacing:21.713415pt;}
.ls1b{letter-spacing:21.714850pt;}
.ls19{letter-spacing:22.799308pt;}
.ls11{letter-spacing:22.862676pt;}
.ls37{letter-spacing:22.880000pt;}
.ls12{letter-spacing:24.564512pt;}
.lsa{letter-spacing:24.693157pt;}
.lsf{letter-spacing:24.694179pt;}
.ls9{letter-spacing:75.125678pt;}
.ls18{letter-spacing:78.102311pt;}
.ls14{letter-spacing:146.412935pt;}
.lse{letter-spacing:170.421264pt;}
.ls7{letter-spacing:217.862377pt;}
.ls1a{letter-spacing:218.035582pt;}
.lsd{letter-spacing:221.176342pt;}
.ls17{letter-spacing:233.150492pt;}
.lsc{letter-spacing:236.051035pt;}
.ls15{letter-spacing:258.193409pt;}
.ls8{letter-spacing:289.465764pt;}
.ls10{letter-spacing:290.451269pt;}
.lsb{letter-spacing:451.196442pt;}
.ws4{word-spacing:-75.200000pt;}
.ws2{word-spacing:-74.863360pt;}
.ws50{word-spacing:-73.584000pt;}
.ws1b{word-spacing:-35.514654pt;}
.ws1c{word-spacing:-35.513185pt;}
.ws34{word-spacing:-35.476233pt;}
.ws3b{word-spacing:-34.766309pt;}
.ws2b{word-spacing:-34.697305pt;}
.ws39{word-spacing:-33.763305pt;}
.ws0{word-spacing:-21.600000pt;}
.ws4f{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws4c{word-spacing:-14.080000pt;}
.ws46{word-spacing:-14.016000pt;}
.ws49{word-spacing:-13.888000pt;}
.ws4e{word-spacing:-2.880000pt;}
.ws4d{word-spacing:-2.837333pt;}
.ws35{word-spacing:-0.295203pt;}
.ws44{word-spacing:-0.088960pt;}
.ws1f{word-spacing:-0.064722pt;}
.ws33{word-spacing:-0.064620pt;}
.ws31{word-spacing:-0.063327pt;}
.ws9{word-spacing:-0.063201pt;}
.ws3e{word-spacing:-0.061622pt;}
.wsf{word-spacing:-0.061500pt;}
.ws6{word-spacing:0.000000pt;}
.ws45{word-spacing:0.192000pt;}
.ws13{word-spacing:1.352931pt;}
.ws3c{word-spacing:1.418889pt;}
.wse{word-spacing:1.475481pt;}
.ws22{word-spacing:1.521812pt;}
.ws8{word-spacing:1.549816pt;}
.ws40{word-spacing:1.626827pt;}
.ws1e{word-spacing:1.650017pt;}
.ws18{word-spacing:1.792068pt;}
.wsd{word-spacing:1.914618pt;}
.ws12{word-spacing:2.037168pt;}
.ws7{word-spacing:2.152078pt;}
.ws25{word-spacing:2.194887pt;}
.ws1d{word-spacing:2.323092pt;}
.ws21{word-spacing:2.456639pt;}
.ws48{word-spacing:3.392000pt;}
.ws4a{word-spacing:3.648000pt;}
.ws47{word-spacing:4.032000pt;}
.ws4b{word-spacing:5.504000pt;}
.ws30{word-spacing:14.318056pt;}
.ws3a{word-spacing:14.474618pt;}
.ws2f{word-spacing:37.365277pt;}
.ws1a{word-spacing:37.687619pt;}
.ws2a{word-spacing:38.550575pt;}
.ws29{word-spacing:38.678231pt;}
.ws3d{word-spacing:40.547130pt;}
.ws32{word-spacing:43.407474pt;}
.ws17{word-spacing:59.052159pt;}
.ws19{word-spacing:59.915114pt;}
.ws27{word-spacing:61.488254pt;}
.ws28{word-spacing:61.872869pt;}
.ws43{word-spacing:62.418891pt;}
.ws38{word-spacing:129.728587pt;}
.ws42{word-spacing:136.384417pt;}
.ws3f{word-spacing:139.473187pt;}
.ws24{word-spacing:167.807414pt;}
.ws15{word-spacing:174.146976pt;}
.wsb{word-spacing:205.204571pt;}
.ws37{word-spacing:208.615073pt;}
.wsc{word-spacing:208.740763pt;}
.ws20{word-spacing:210.697257pt;}
.ws11{word-spacing:215.145037pt;}
.ws16{word-spacing:219.027786pt;}
.ws36{word-spacing:227.387611pt;}
.ws26{word-spacing:270.341883pt;}
.ws41{word-spacing:272.970920pt;}
.ws14{word-spacing:333.627808pt;}
.ws23{word-spacing:353.670186pt;}
.wsa{word-spacing:360.467110pt;}
.ws2e{word-spacing:429.477886pt;}
.ws10{word-spacing:448.339535pt;}
.ws2c{word-spacing:501.306853pt;}
.ws2d{word-spacing:560.859006pt;}
._48{margin-left:-433.989692pt;}
._39{margin-left:-353.464174pt;}
._22{margin-left:-350.975549pt;}
._19{margin-left:-348.250228pt;}
._27{margin-left:-309.854938pt;}
._4d{margin-left:-289.097560pt;}
._3f{margin-left:-252.294580pt;}
._38{margin-left:-244.581525pt;}
._53{margin-left:-229.025766pt;}
._58{margin-left:-227.955917pt;}
._20{margin-left:-225.548852pt;}
._3c{margin-left:-222.860963pt;}
._12{margin-left:-219.935852pt;}
._40{margin-left:-218.332928pt;}
._15{margin-left:-215.947825pt;}
._4a{margin-left:-212.134361pt;}
._1e{margin-left:-210.924274pt;}
._25{margin-left:-209.691115pt;}
._37{margin-left:-207.793422pt;}
._2d{margin-left:-205.665125pt;}
._29{margin-left:-203.772124pt;}
._18{margin-left:-202.316600pt;}
._17{margin-left:-200.175614pt;}
._23{margin-left:-198.016354pt;}
._2e{margin-left:-195.994811pt;}
._2a{margin-left:-194.887777pt;}
._3d{margin-left:-193.915079pt;}
._57{margin-left:-190.430218pt;}
._1b{margin-left:-185.261967pt;}
._41{margin-left:-184.300586pt;}
._4c{margin-left:-182.549438pt;}
._42{margin-left:-180.819463pt;}
._30{margin-left:-179.833957pt;}
._2b{margin-left:-177.825067pt;}
._45{margin-left:-176.222056pt;}
._3e{margin-left:-172.404664pt;}
._3a{margin-left:-171.484480pt;}
._5d{margin-left:-170.327989pt;}
._21{margin-left:-168.986950pt;}
._26{margin-left:-167.738993pt;}
._2c{margin-left:-164.862858pt;}
._28{margin-left:-162.967072pt;}
._4e{margin-left:-161.403364pt;}
._49{margin-left:-159.967940pt;}
._13{margin-left:-157.399536pt;}
._2f{margin-left:-156.465634pt;}
._44{margin-left:-154.985751pt;}
._4f{margin-left:-153.626050pt;}
._55{margin-left:-151.950527pt;}
._52{margin-left:-149.139090pt;}
._4b{margin-left:-147.545618pt;}
._54{margin-left:-146.026769pt;}
._5c{margin-left:-137.775334pt;}
._24{margin-left:-124.915316pt;}
._56{margin-left:-123.541347pt;}
._35{margin-left:-120.576600pt;}
._50{margin-left:-119.138030pt;}
._10{margin-left:-118.211069pt;}
._5a{margin-left:-117.070935pt;}
._1a{margin-left:-115.452255pt;}
._5e{margin-left:-113.415659pt;}
._1c{margin-left:-111.430735pt;}
._33{margin-left:-109.272920pt;}
._59{margin-left:-107.487675pt;}
._1f{margin-left:-103.433953pt;}
._32{margin-left:-102.148065pt;}
._31{margin-left:-88.797368pt;}
._36{margin-left:-87.469039pt;}
._11{margin-left:-85.693619pt;}
._14{margin-left:-84.252064pt;}
._1d{margin-left:-82.101576pt;}
._3b{margin-left:-81.111578pt;}
._47{margin-left:-80.114258pt;}
._60{margin-left:-78.932567pt;}
._51{margin-left:-74.860453pt;}
._5f{margin-left:-73.898410pt;}
._46{margin-left:-52.583522pt;}
._43{margin-left:-50.530592pt;}
._5b{margin-left:-46.664218pt;}
._6{margin-left:-5.091840pt;}
._61{margin-left:-3.908899pt;}
._16{margin-left:-2.762082pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._c{width:2.640853pt;}
._8{width:3.594240pt;}
._9{width:7.505280pt;}
._3{width:8.800213pt;}
._7{width:9.884160pt;}
._69{width:11.306667pt;}
._65{width:12.376960pt;}
._a{width:13.308587pt;}
._b{width:14.807893pt;}
._68{width:17.102507pt;}
._66{width:18.748800pt;}
._34{width:19.695147pt;}
._67{width:21.302187pt;}
._4{width:22.314240pt;}
._5{width:23.493973pt;}
._d{width:25.027200pt;}
._64{width:26.788693pt;}
._e{width:30.401280pt;}
._f{width:31.775360pt;}
._6b{width:37.368747pt;}
._6a{width:38.912000pt;}
._63{width:42.906240pt;}
._62{width:44.085973pt;}
._2{width:53.089920pt;}
.fs8{font-size:35.812666pt;}
.fs6{font-size:36.856904pt;}
.fsf{font-size:36.983641pt;}
.fsc{font-size:37.723565pt;}
.fsa{font-size:37.725126pt;}
.fs12{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.499644pt;}
.fs11{font-size:61.622194pt;}
.fs5{font-size:63.200921pt;}
.fse{font-size:63.326610pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:64.619733pt;}
.fsb{font-size:64.687040pt;}
.fs9{font-size:64.689717pt;}
.fsd{font-size:64.722049pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:0.640000pt;}
.y85{bottom:2.956855pt;}
.y69{bottom:2.956882pt;}
.y49{bottom:2.956884pt;}
.ya6{bottom:2.956963pt;}
.y60{bottom:2.957007pt;}
.y46{bottom:2.957008pt;}
.y3{bottom:3.520000pt;}
.yc1{bottom:3.680000pt;}
.y88{bottom:4.116661pt;}
.y80{bottom:4.116662pt;}
.y41{bottom:4.116663pt;}
.y76{bottom:4.116665pt;}
.y57{bottom:4.116670pt;}
.y5c{bottom:4.116671pt;}
.y90{bottom:4.158782pt;}
.y66{bottom:4.190494pt;}
.y96{bottom:4.342817pt;}
.y9e{bottom:4.342824pt;}
.y7a{bottom:4.342827pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y99{bottom:6.654845pt;}
.ya4{bottom:6.654851pt;}
.y9b{bottom:6.685737pt;}
.ya3{bottom:6.685739pt;}
.yab{bottom:6.685741pt;}
.y37{bottom:6.685745pt;}
.y39{bottom:6.685746pt;}
.y3c{bottom:6.685749pt;}
.y3e{bottom:6.685751pt;}
.y6f{bottom:6.825340pt;}
.y74{bottom:6.825341pt;}
.y34{bottom:6.825345pt;}
.y8c{bottom:6.985837pt;}
.y84{bottom:6.985839pt;}
.y68{bottom:6.985847pt;}
.y48{bottom:6.985856pt;}
.ya5{bottom:6.986124pt;}
.yac{bottom:6.986126pt;}
.y45{bottom:6.986134pt;}
.y5f{bottom:6.986145pt;}
.ybb{bottom:7.200000pt;}
.y8f{bottom:8.126888pt;}
.y65{bottom:8.158712pt;}
.y4f{bottom:9.617236pt;}
.y51{bottom:9.617238pt;}
.y53{bottom:9.617239pt;}
.y55{bottom:9.617242pt;}
.yb6{bottom:10.720000pt;}
.y77{bottom:11.019182pt;}
.y81{bottom:11.019185pt;}
.y89{bottom:11.019186pt;}
.y58{bottom:11.019218pt;}
.y42{bottom:11.019219pt;}
.y7d{bottom:13.935867pt;}
.y70{bottom:13.935869pt;}
.y4{bottom:14.240000pt;}
.yb8{bottom:14.400000pt;}
.yb{bottom:14.560000pt;}
.yc4{bottom:15.200000pt;}
.ybe{bottom:15.680000pt;}
.yb5{bottom:17.280000pt;}
.yba{bottom:17.920000pt;}
.yc6{bottom:18.560000pt;}
.yc0{bottom:19.040000pt;}
.y2{bottom:21.920000pt;}
.yc3{bottom:25.920000pt;}
.ybd{bottom:26.400000pt;}
.yc5{bottom:29.280000pt;}
.ybf{bottom:29.760000pt;}
.y8{bottom:39.680000pt;}
.ydb{bottom:87.552000pt;}
.yaf{bottom:109.952000pt;}
.yda{bottom:112.192000pt;}
.y30{bottom:112.512000pt;}
.yae{bottom:134.746667pt;}
.yd9{bottom:136.826667pt;}
.y2f{bottom:137.306667pt;}
.yad{bottom:159.386667pt;}
.yd8{bottom:161.626667pt;}
.y2e{bottom:161.946667pt;}
.ya9{bottom:180.026667pt;}
.yaa{bottom:180.079982pt;}
.ya8{bottom:180.080000pt;}
.yd7{bottom:186.266667pt;}
.y2d{bottom:186.586667pt;}
.ya7{bottom:186.746667pt;}
.ya2{bottom:207.226667pt;}
.ya1{bottom:207.279982pt;}
.yd6{bottom:210.906667pt;}
.y2c{bottom:211.226667pt;}
.ya0{bottom:213.946667pt;}
.y9c{bottom:234.586667pt;}
.y9a{bottom:234.613333pt;}
.yd5{bottom:235.706667pt;}
.y2b{bottom:236.026667pt;}
.y9d{bottom:237.346649pt;}
.y9f{bottom:241.306667pt;}
.y98{bottom:259.746667pt;}
.yd4{bottom:260.346667pt;}
.y2a{bottom:260.666667pt;}
.y97{bottom:266.426667pt;}
.yd3{bottom:284.986667pt;}
.y29{bottom:285.306667pt;}
.y95{bottom:287.146667pt;}
.y94{bottom:291.066667pt;}
.yd2{bottom:309.666667pt;}
.y28{bottom:310.146667pt;}
.y93{bottom:311.746630pt;}
.y92{bottom:318.466667pt;}
.yd1{bottom:334.466667pt;}
.y27{bottom:334.786667pt;}
.y91{bottom:343.106667pt;}
.yd0{bottom:355.906667pt;}
.y26{bottom:359.426667pt;}
.y8e{bottom:363.746630pt;}
.y8b{bottom:365.013297pt;}
.y8d{bottom:365.026667pt;}
.y87{bottom:367.746630pt;}
.y8a{bottom:367.746667pt;}
.y86{bottom:371.746667pt;}
.ycf{bottom:380.546667pt;}
.y25{bottom:384.066667pt;}
.y83{bottom:392.413297pt;}
.y82{bottom:395.106667pt;}
.y7f{bottom:395.146630pt;}
.y7e{bottom:399.106667pt;}
.yce{bottom:405.186667pt;}
.y24{bottom:408.866667pt;}
.y7c{bottom:419.746630pt;}
.y7b{bottom:426.466667pt;}
.ycd{bottom:429.986667pt;}
.y23{bottom:433.506667pt;}
.y79{bottom:447.146630pt;}
.y78{bottom:451.106667pt;}
.ycc{bottom:454.626667pt;}
.y22{bottom:458.146667pt;}
.y73{bottom:471.746630pt;}
.y75{bottom:474.479964pt;}
.y72{bottom:478.466667pt;}
.ycb{bottom:479.266667pt;}
.y21{bottom:482.946667pt;}
.y71{bottom:503.106667pt;}
.yca{bottom:504.066667pt;}
.y20{bottom:507.586667pt;}
.y6e{bottom:523.746630pt;}
.yc9{bottom:528.706667pt;}
.y6d{bottom:530.466667pt;}
.y1f{bottom:532.226667pt;}
.yc8{bottom:553.373333pt;}
.y6c{bottom:555.133333pt;}
.y1e{bottom:556.893333pt;}
.yc7{bottom:578.013333pt;}
.y6b{bottom:579.773333pt;}
.y1d{bottom:581.693333pt;}
.yc2{bottom:596.253333pt;}
.y6a{bottom:604.413333pt;}
.y1c{bottom:606.333333pt;}
.y64{bottom:625.013261pt;}
.y67{bottom:626.346594pt;}
.y62{bottom:629.013261pt;}
.y63{bottom:629.053333pt;}
.y1b{bottom:630.973333pt;}
.y61{bottom:633.053333pt;}
.ybc{bottom:647.933333pt;}
.y5e{bottom:653.679928pt;}
.y1a{bottom:655.773333pt;}
.y5b{bottom:656.413261pt;}
.y5d{bottom:656.413333pt;}
.y5a{bottom:660.413333pt;}
.y19{bottom:680.413333pt;}
.y52{bottom:681.013261pt;}
.y54{bottom:681.053333pt;}
.y56{bottom:686.346594pt;}
.y59{bottom:690.333333pt;}
.yb7{bottom:700.093333pt;}
.y18{bottom:705.053333pt;}
.y4e{bottom:711.413261pt;}
.y50{bottom:711.453333pt;}
.y4d{bottom:720.733333pt;}
.y17{bottom:729.693333pt;}
.yb4{bottom:740.573333pt;}
.y4c{bottom:746.013333pt;}
.y16{bottom:754.493333pt;}
.y4b{bottom:770.653333pt;}
.yb3{bottom:773.893333pt;}
.y15{bottom:779.173333pt;}
.y4a{bottom:795.333333pt;}
.yb2{bottom:800.293333pt;}
.y14{bottom:803.813333pt;}
.y44{bottom:815.946594pt;}
.y40{bottom:818.613261pt;}
.y43{bottom:818.693333pt;}
.y47{bottom:822.693333pt;}
.yb1{bottom:825.253333pt;}
.y13{bottom:828.453333pt;}
.y3b{bottom:843.279928pt;}
.y3d{bottom:843.333333pt;}
.y3f{bottom:850.053333pt;}
.y12{bottom:853.253333pt;}
.y36{bottom:867.946594pt;}
.y38{bottom:867.973333pt;}
.y3a{bottom:874.693333pt;}
.y11{bottom:877.893333pt;}
.y35{bottom:896.773333pt;}
.yb0{bottom:899.333333pt;}
.y10{bottom:902.533333pt;}
.y33{bottom:917.213261pt;}
.y32{bottom:923.973333pt;}
.yf{bottom:927.333333pt;}
.y31{bottom:948.773333pt;}
.ye{bottom:951.973333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h30{height:18.400000pt;}
.h29{height:19.199807pt;}
.h2c{height:19.199825pt;}
.h24{height:19.199843pt;}
.h2a{height:20.800299pt;}
.h2e{height:20.800317pt;}
.h22{height:20.800335pt;}
.hf{height:20.800371pt;}
.h26{height:23.199034pt;}
.h16{height:23.199070pt;}
.h2f{height:23.199976pt;}
.h13{height:23.200030pt;}
.h2d{height:24.000185pt;}
.h1f{height:24.000203pt;}
.hc{height:24.000240pt;}
.h7{height:24.512000pt;}
.h19{height:27.199519pt;}
.h32{height:32.480000pt;}
.h12{height:35.148174pt;}
.h23{height:35.725233pt;}
.h20{height:36.766921pt;}
.h2{height:36.800000pt;}
.h36{height:39.680000pt;}
.h4{height:47.742188pt;}
.h39{height:51.040000pt;}
.h38{height:51.520000pt;}
.h6{height:59.340000pt;}
.h11{height:60.358538pt;}
.h10{height:61.349499pt;}
.h2b{height:61.471749pt;}
.h1d{height:62.028247pt;}
.h27{height:62.151605pt;}
.h31{height:62.781250pt;}
.h8{height:62.812500pt;}
.h17{height:63.486792pt;}
.h14{height:63.489419pt;}
.h25{height:64.461970pt;}
.h3{height:64.500000pt;}
.h1a{height:64.564036pt;}
.h21{height:64.613717pt;}
.hd{height:64.615021pt;}
.he{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h1b{height:76.964840pt;}
.h1e{height:78.919647pt;}
.h28{height:79.044506pt;}
.h18{height:80.645126pt;}
.h15{height:80.648464pt;}
.h9{height:85.785000pt;}
.h1c{height:89.490625pt;}
.h35{height:105.661250pt;}
.h34{height:105.692500pt;}
.h33{height:107.577500pt;}
.h37{height:117.852500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:28.000585pt;}
.w26{width:28.000612pt;}
.w22{width:36.800348pt;}
.w1c{width:38.400949pt;}
.w27{width:39.999935pt;}
.w20{width:43.199802pt;}
.w1f{width:44.000285pt;}
.w18{width:44.000303pt;}
.w1b{width:44.000339pt;}
.w2a{width:51.200184pt;}
.w29{width:51.200202pt;}
.we{width:51.200221pt;}
.wd{width:51.999197pt;}
.w21{width:51.999215pt;}
.w16{width:51.999233pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w1e{width:66.401223pt;}
.w28{width:71.999059pt;}
.w24{width:72.798288pt;}
.w1a{width:85.601961pt;}
.w14{width:92.000144pt;}
.wb{width:93.595720pt;}
.w12{width:98.398939pt;}
.w17{width:100.002986pt;}
.w13{width:100.003004pt;}
.w25{width:106.396981pt;}
.wc{width:113.597885pt;}
.w15{width:113.597894pt;}
.wa{width:123.196400pt;}
.w11{width:127.199229pt;}
.w10{width:147.997388pt;}
.w9{width:151.995235pt;}
.w1d{width:158.400622pt;}
.w7{width:177.598964pt;}
.wf{width:178.535216pt;}
.w8{width:184.002081pt;}
.w2b{width:188.346667pt;}
.w2d{width:197.786667pt;}
.w19{width:205.602929pt;}
.w2c{width:235.546667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6f{left:6.720000pt;}
.x2{left:7.680000pt;}
.x22{left:9.523648pt;}
.x1e{left:11.327951pt;}
.x4d{left:16.080290pt;}
.x7{left:17.600000pt;}
.x61{left:25.968310pt;}
.x5b{left:26.974329pt;}
.x1{left:28.320000pt;}
.x6a{left:30.666789pt;}
.x25{left:32.882594pt;}
.x41{left:33.967654pt;}
.x70{left:36.800000pt;}
.x73{left:38.240000pt;}
.x21{left:41.332628pt;}
.x54{left:43.078461pt;}
.x4{left:53.306667pt;}
.x4e{left:56.084469pt;}
.x5e{left:61.953107pt;}
.x76{left:63.354667pt;}
.x74{left:68.480000pt;}
.x7a{left:71.360000pt;}
.x34{left:73.261358pt;}
.x5{left:75.519988pt;}
.x45{left:78.059691pt;}
.x2e{left:80.740190pt;}
.x31{left:82.169158pt;}
.x6e{left:85.312000pt;}
.x58{left:87.881188pt;}
.x52{left:89.264355pt;}
.x8{left:91.711988pt;}
.x65{left:96.646903pt;}
.x71{left:97.760000pt;}
.x1d{left:103.128706pt;}
.x1a{left:104.210401pt;}
.x75{left:107.514667pt;}
.x2c{left:108.931990pt;}
.x10{left:113.311988pt;}
.x77{left:116.154667pt;}
.x79{left:117.274667pt;}
.x72{left:128.160000pt;}
.x2a{left:129.370627pt;}
.x18{left:133.719088pt;}
.x4c{left:147.942328pt;}
.x78{left:153.626667pt;}
.x13{left:159.436186pt;}
.x27{left:160.600773pt;}
.x15{left:165.090938pt;}
.x33{left:170.013315pt;}
.x5d{left:175.706655pt;}
.x12{left:180.746649pt;}
.x5f{left:186.106655pt;}
.x57{left:190.146649pt;}
.x43{left:196.990383pt;}
.x60{left:204.879982pt;}
.x1f{left:226.906655pt;}
.xe{left:236.346655pt;}
.x2d{left:240.506655pt;}
.x6c{left:241.946655pt;}
.x4b{left:245.013315pt;}
.x62{left:248.866655pt;}
.x20{left:254.946667pt;}
.xc{left:258.626655pt;}
.x49{left:260.746649pt;}
.x35{left:261.986655pt;}
.xb{left:263.746655pt;}
.x4f{left:269.013315pt;}
.x3c{left:269.986655pt;}
.xd{left:272.706655pt;}
.x1b{left:273.813315pt;}
.x53{left:279.279982pt;}
.x36{left:285.346649pt;}
.x9{left:287.106655pt;}
.x59{left:288.546655pt;}
.x16{left:297.346655pt;}
.x4a{left:299.106655pt;}
.x23{left:306.946655pt;}
.x6d{left:311.906655pt;}
.x50{left:313.026655pt;}
.xf{left:327.906655pt;}
.x24{left:330.346630pt;}
.x55{left:331.266655pt;}
.x17{left:334.613297pt;}
.x11{left:345.986655pt;}
.x63{left:348.066655pt;}
.x14{left:358.306655pt;}
.x1c{left:367.426655pt;}
.x51{left:370.306655pt;}
.x2f{left:371.586655pt;}
.x26{left:381.506655pt;}
.x64{left:383.146630pt;}
.x44{left:386.306655pt;}
.x56{left:388.546655pt;}
.xa{left:396.866655pt;}
.x37{left:398.946655pt;}
.x30{left:404.213297pt;}
.x3d{left:411.586655pt;}
.x28{left:437.693322pt;}
.x3e{left:448.879964pt;}
.x46{left:457.533322pt;}
.x38{left:459.613297pt;}
.x29{left:470.346630pt;}
.x19{left:486.653322pt;}
.x66{left:489.533322pt;}
.x3f{left:492.893322pt;}
.x32{left:504.253322pt;}
.x5a{left:510.613297pt;}
.x39{left:511.613322pt;}
.x67{left:512.746630pt;}
.x40{left:516.213297pt;}
.x3a{left:534.946630pt;}
.x68{left:540.733322pt;}
.x5c{left:547.453322pt;}
.x42{left:560.253322pt;}
.x3b{left:586.213322pt;}
.x69{left:588.546630pt;}
.x2b{left:618.373322pt;}
.x6b{left:641.413322pt;}
.x47{left:674.146594pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
.x48{left:718.213322pt;}
}




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