
    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_9267b7313cd2a65b52f76a6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_c7327961b35d8f311ab028fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148000;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_da613e7a0bb5079373d9cf95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.169000;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_f9b752639017d1557032edc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.169000;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_63710b22e55baeb7302dad7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165000;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_5d36a8a2e8ebbcf4a0322434.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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;}
.m18{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248584,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,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);}
.m49{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251427,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.967200px;}
.ls1d{letter-spacing:-8.250000px;}
.ls14{letter-spacing:-6.468000px;}
.ls1c{letter-spacing:-6.336000px;}
.ls21{letter-spacing:-5.940000px;}
.lsc{letter-spacing:-5.400000px;}
.ls2d{letter-spacing:-5.016000px;}
.ls32{letter-spacing:-4.026000px;}
.ls34{letter-spacing:-3.762000px;}
.ls13{letter-spacing:-3.510000px;}
.ls2f{letter-spacing:-3.168000px;}
.ls22{letter-spacing:-3.036000px;}
.ls17{letter-spacing:-2.970000px;}
.ls18{letter-spacing:-2.904000px;}
.ls1b{letter-spacing:-1.980000px;}
.ls30{letter-spacing:-1.716000px;}
.ls26{letter-spacing:-1.650000px;}
.ls2e{letter-spacing:-1.452000px;}
.ls33{letter-spacing:-1.320000px;}
.ls2a{letter-spacing:-0.924000px;}
.ls1a{letter-spacing:-0.810000px;}
.ls31{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.660000px;}
.ls38{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.528000px;}
.ls10{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.396000px;}
.lse{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.264000px;}
.ls35{letter-spacing:-0.230868px;}
.ls9{letter-spacing:-0.198000px;}
.ls36{letter-spacing:-0.192390px;}
.ls29{letter-spacing:-0.153912px;}
.lsd{letter-spacing:-0.132000px;}
.ls37{letter-spacing:-0.115434px;}
.ls11{letter-spacing:-0.066000px;}
.ls28{letter-spacing:-0.038478px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.033000px;}
.lsb{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.132000px;}
.ls1f{letter-spacing:0.165000px;}
.ls3{letter-spacing:0.198000px;}
.ls25{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.270000px;}
.ls20{letter-spacing:0.297000px;}
.ls15{letter-spacing:0.330000px;}
.ls24{letter-spacing:0.384780px;}
.ls5{letter-spacing:0.396000px;}
.ls19{letter-spacing:0.462000px;}
.ls12{letter-spacing:0.528000px;}
.ls27{letter-spacing:0.594000px;}
.ls2{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.ls23{letter-spacing:1.080000px;}
.ls2b{letter-spacing:1.254000px;}
.ls0{letter-spacing:1.350000px;}
.ls1e{letter-spacing:1.841400px;}
.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;}
}
.ws9c{word-spacing:-16.632000px;}
.ws30{word-spacing:-16.302000px;}
.ws9a{word-spacing:-14.256000px;}
.ws81{word-spacing:-13.992000px;}
.ws86{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws8c{word-spacing:-13.794000px;}
.ws50{word-spacing:-13.728000px;}
.ws8a{word-spacing:-13.596000px;}
.ws87{word-spacing:-13.200000px;}
.ws4f{word-spacing:-13.068000px;}
.ws80{word-spacing:-12.936000px;}
.ws6b{word-spacing:-12.870000px;}
.ws2f{word-spacing:-12.798000px;}
.ws8b{word-spacing:-12.540000px;}
.ws5f{word-spacing:-12.474000px;}
.ws88{word-spacing:-12.408000px;}
.ws9b{word-spacing:-12.258000px;}
.ws77{word-spacing:-12.210000px;}
.ws89{word-spacing:-12.144000px;}
.ws75{word-spacing:-9.504066px;}
.ws31{word-spacing:-8.080380px;}
.ws78{word-spacing:-8.041902px;}
.ws68{word-spacing:-7.920000px;}
.ws96{word-spacing:-7.887990px;}
.ws60{word-spacing:-7.524000px;}
.ws6a{word-spacing:-7.503210px;}
.ws41{word-spacing:-7.392000px;}
.ws61{word-spacing:-5.610000px;}
.ws8f{word-spacing:-5.016000px;}
.ws8d{word-spacing:-4.356000px;}
.ws94{word-spacing:-3.630000px;}
.ws5c{word-spacing:-3.432000px;}
.ws93{word-spacing:-3.300000px;}
.ws33{word-spacing:-3.168000px;}
.ws39{word-spacing:-2.970000px;}
.ws85{word-spacing:-2.904000px;}
.wse{word-spacing:-2.838000px;}
.ws5{word-spacing:-2.772000px;}
.ws3e{word-spacing:-2.706000px;}
.ws23{word-spacing:-2.640000px;}
.wsf{word-spacing:-2.574000px;}
.wsb{word-spacing:-2.508000px;}
.ws2e{word-spacing:-2.376000px;}
.ws63{word-spacing:-2.310000px;}
.ws2c{word-spacing:-2.112000px;}
.ws37{word-spacing:-1.980000px;}
.ws65{word-spacing:-1.914000px;}
.ws4a{word-spacing:-1.848000px;}
.ws7a{word-spacing:-1.782000px;}
.ws19{word-spacing:-1.716000px;}
.ws44{word-spacing:-1.650000px;}
.ws5b{word-spacing:-1.584000px;}
.ws11{word-spacing:-1.518000px;}
.ws84{word-spacing:-1.452000px;}
.ws3a{word-spacing:-1.386000px;}
.ws1{word-spacing:-1.350000px;}
.ws10{word-spacing:-1.320000px;}
.ws58{word-spacing:-1.254000px;}
.ws72{word-spacing:-1.122000px;}
.ws9f{word-spacing:-1.056000px;}
.ws35{word-spacing:-0.990000px;}
.ws1b{word-spacing:-0.924000px;}
.ws32{word-spacing:-0.858000px;}
.ws1c{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.726000px;}
.ws3{word-spacing:-0.720000px;}
.ws4{word-spacing:-0.660000px;}
.ws73{word-spacing:-0.594000px;}
.ws12{word-spacing:-0.528000px;}
.ws7b{word-spacing:-0.462000px;}
.ws20{word-spacing:-0.396000px;}
.ws4d{word-spacing:-0.330000px;}
.ws97{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.198000px;}
.wsc{word-spacing:-0.132000px;}
.ws42{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws2b{word-spacing:0.066000px;}
.ws98{word-spacing:0.115434px;}
.ws3b{word-spacing:0.132000px;}
.ws82{word-spacing:0.153912px;}
.ws7c{word-spacing:0.198000px;}
.ws91{word-spacing:0.230868px;}
.ws38{word-spacing:0.264000px;}
.ws54{word-spacing:0.330000px;}
.ws7e{word-spacing:0.396000px;}
.ws47{word-spacing:0.462000px;}
.ws1a{word-spacing:0.528000px;}
.ws15{word-spacing:0.594000px;}
.ws53{word-spacing:0.660000px;}
.ws49{word-spacing:0.726000px;}
.ws14{word-spacing:0.792000px;}
.ws9{word-spacing:0.858000px;}
.ws13{word-spacing:0.924000px;}
.ws21{word-spacing:0.990000px;}
.ws46{word-spacing:1.056000px;}
.ws29{word-spacing:1.122000px;}
.ws8{word-spacing:1.188000px;}
.ws2a{word-spacing:1.254000px;}
.ws4e{word-spacing:1.320000px;}
.wsd{word-spacing:1.386000px;}
.ws34{word-spacing:1.452000px;}
.ws5a{word-spacing:1.518000px;}
.ws36{word-spacing:1.584000px;}
.ws59{word-spacing:1.650000px;}
.ws9e{word-spacing:1.716000px;}
.ws2d{word-spacing:1.782000px;}
.ws52{word-spacing:1.848000px;}
.ws6c{word-spacing:1.914000px;}
.ws3d{word-spacing:1.980000px;}
.ws6e{word-spacing:2.046000px;}
.ws9d{word-spacing:2.112000px;}
.ws95{word-spacing:2.178000px;}
.ws27{word-spacing:2.244000px;}
.ws26{word-spacing:2.310000px;}
.ws67{word-spacing:2.376000px;}
.ws3f{word-spacing:2.442000px;}
.ws7{word-spacing:2.508000px;}
.ws79{word-spacing:2.574000px;}
.ws64{word-spacing:2.640000px;}
.ws7d{word-spacing:2.706000px;}
.ws3c{word-spacing:2.772000px;}
.ws57{word-spacing:2.838000px;}
.ws5d{word-spacing:2.904000px;}
.ws69{word-spacing:2.970000px;}
.ws17{word-spacing:3.036000px;}
.ws62{word-spacing:3.102000px;}
.ws1f{word-spacing:3.168000px;}
.ws4c{word-spacing:3.234000px;}
.ws4b{word-spacing:3.300000px;}
.ws16{word-spacing:3.432000px;}
.ws48{word-spacing:3.498000px;}
.ws66{word-spacing:3.564000px;}
.ws1e{word-spacing:3.630000px;}
.ws71{word-spacing:3.696000px;}
.ws25{word-spacing:3.762000px;}
.ws70{word-spacing:3.828000px;}
.ws6d{word-spacing:3.894000px;}
.ws76{word-spacing:3.960000px;}
.ws56{word-spacing:4.026000px;}
.ws83{word-spacing:4.092000px;}
.ws6f{word-spacing:4.158000px;}
.ws45{word-spacing:4.224000px;}
.ws1d{word-spacing:4.290000px;}
.ws55{word-spacing:4.356000px;}
.ws28{word-spacing:4.422000px;}
.ws43{word-spacing:4.488000px;}
.ws6{word-spacing:4.554000px;}
.ws24{word-spacing:4.620000px;}
.ws51{word-spacing:4.950000px;}
.ws8e{word-spacing:5.016000px;}
.ws90{word-spacing:8.316000px;}
.ws74{word-spacing:1871.211000px;}
.ws92{word-spacing:1874.073000px;}
.ws99{word-spacing:1875.261000px;}
.wsa0{word-spacing:1875.477000px;}
.ws7f{word-spacing:1880.391000px;}
.ws5e{word-spacing:1882.767000px;}
.ws40{word-spacing:1890.651000px;}
.ws18{word-spacing:1895.133000px;}
._14{margin-left:-2620.296000px;}
._e{margin-left:-2618.946000px;}
._6{margin-left:-18.660000px;}
._f{margin-left:-17.403000px;}
._a{margin-left:-15.693000px;}
._10{margin-left:-14.652600px;}
._7{margin-left:-12.661200px;}
._b{margin-left:-11.136600px;}
._12{margin-left:-9.607800px;}
._3{margin-left:-8.420400px;}
._d{margin-left:-6.948600px;}
._4{margin-left:-5.658600px;}
._c{margin-left:-4.332000px;}
._2{margin-left:-3.060000px;}
._1{margin-left:-1.350000px;}
._0{width:1.080000px;}
._9{width:2.534400px;}
._5{width:4.554000px;}
._8{width:5.670000px;}
._13{width:6.694800px;}
._11{width:7.926600px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y66{bottom:89.716500px;}
.y8a{bottom:89.719350px;}
.y4a{bottom:89.724750px;}
.yec{bottom:89.746800px;}
.y65{bottom:109.700850px;}
.ydb{bottom:109.703550px;}
.y49{bottom:109.706250px;}
.y27{bottom:109.725600px;}
.yeb{bottom:109.728300px;}
.y89{bottom:129.685050px;}
.y48{bottom:129.687750px;}
.y9b{bottom:129.690600px;}
.y26{bottom:129.707100px;}
.y64{bottom:129.712650px;}
.y47{bottom:149.669250px;}
.y9a{bottom:149.672100px;}
.y25{bottom:149.688600px;}
.yea{bottom:149.691300px;}
.yb2{bottom:149.705100px;}
.y46{bottom:169.653600px;}
.y73{bottom:169.656300px;}
.y24{bottom:169.670100px;}
.ye9{bottom:169.672800px;}
.y63{bottom:169.675650px;}
.yb1{bottom:169.686600px;}
.y45{bottom:189.637800px;}
.yda{bottom:189.640500px;}
.yc4{bottom:189.646050px;}
.y23{bottom:189.651600px;}
.y102{bottom:189.657150px;}
.yb0{bottom:189.668100px;}
.y44{bottom:209.622000px;}
.yfc{bottom:209.624850px;}
.yc3{bottom:209.627550px;}
.y22{bottom:209.633100px;}
.ye8{bottom:209.635800px;}
.y62{bottom:209.638650px;}
.yaf{bottom:209.649600px;}
.y72{bottom:229.606350px;}
.yc2{bottom:229.609050px;}
.y43{bottom:229.611900px;}
.y21{bottom:229.614600px;}
.ye7{bottom:229.617300px;}
.y61{bottom:229.620150px;}
.yae{bottom:229.631100px;}
.y88{bottom:229.644900px;}
.y71{bottom:249.590550px;}
.y42{bottom:249.593400px;}
.y20{bottom:249.596100px;}
.ye6{bottom:249.598800px;}
.y60{bottom:249.601650px;}
.yad{bottom:249.612600px;}
.y87{bottom:249.626400px;}
.y41{bottom:269.574900px;}
.y1f{bottom:269.577600px;}
.y5f{bottom:269.583150px;}
.yac{bottom:269.594100px;}
.y86{bottom:269.607900px;}
.y1e{bottom:289.559100px;}
.yd9{bottom:289.561800px;}
.y5e{bottom:289.564650px;}
.y99{bottom:289.570050px;}
.yab{bottom:289.575600px;}
.y85{bottom:289.589400px;}
.y1d{bottom:309.543300px;}
.y40{bottom:309.546150px;}
.y98{bottom:309.551550px;}
.yaa{bottom:309.557100px;}
.y3f{bottom:329.527650px;}
.yc1{bottom:329.530350px;}
.y1c{bottom:329.533050px;}
.ya9{bottom:329.538600px;}
.yd0{bottom:329.541450px;}
.y84{bottom:329.552400px;}
.y3e{bottom:349.511850px;}
.y1b{bottom:349.514550px;}
.y70{bottom:349.517400px;}
.ya8{bottom:349.520100px;}
.ycf{bottom:349.522950px;}
.yc0{bottom:349.525650px;}
.y1a{bottom:369.496050px;}
.y5d{bottom:369.498900px;}
.ya7{bottom:369.501600px;}
.yce{bottom:369.504450px;}
.y83{bottom:369.515400px;}
.yfb{bottom:369.526350px;}
.ye5{bottom:369.529200px;}
.y19{bottom:389.480400px;}
.y5c{bottom:389.483100px;}
.ycd{bottom:389.485950px;}
.ybf{bottom:389.488650px;}
.y82{bottom:389.496900px;}
.yfa{bottom:389.507850px;}
.yf0{bottom:394.974900px;}
.y18{bottom:409.464600px;}
.ycc{bottom:409.467450px;}
.y101{bottom:409.478400px;}
.y3d{bottom:409.481100px;}
.yf9{bottom:409.489350px;}
.ye4{bottom:409.492200px;}
.y17{bottom:429.448950px;}
.ybe{bottom:429.451650px;}
.y81{bottom:429.459900px;}
.y97{bottom:429.465450px;}
.ye3{bottom:429.473700px;}
.y5b{bottom:449.433150px;}
.yd8{bottom:449.435850px;}
.y16{bottom:449.441400px;}
.y3c{bottom:449.444100px;}
.yf8{bottom:449.452350px;}
.y6f{bottom:469.417350px;}
.y80{bottom:469.422900px;}
.ya6{bottom:469.425600px;}
.y96{bottom:469.428450px;}
.y5a{bottom:469.436700px;}
.ycb{bottom:489.401700px;}
.y15{bottom:489.404400px;}
.y3b{bottom:489.407100px;}
.y95{bottom:489.409950px;}
.ybd{bottom:489.412650px;}
.yf7{bottom:489.415350px;}
.y59{bottom:489.418200px;}
.y14{bottom:509.385900px;}
.y3a{bottom:509.388600px;}
.yd7{bottom:509.391450px;}
.ybc{bottom:509.394150px;}
.yf6{bottom:509.396850px;}
.y58{bottom:509.399700px;}
.y13{bottom:529.370100px;}
.y94{bottom:529.372950px;}
.ybb{bottom:529.375650px;}
.y57{bottom:529.381200px;}
.y39{bottom:549.354450px;}
.yba{bottom:549.357150px;}
.y12{bottom:549.359850px;}
.y56{bottom:549.362700px;}
.y38{bottom:569.338650px;}
.y11{bottom:569.341350px;}
.y55{bottom:569.344200px;}
.yca{bottom:569.355150px;}
.ydc{bottom:574.833150px;}
.y10{bottom:589.322850px;}
.y54{bottom:589.325700px;}
.yd6{bottom:589.328400px;}
.ya5{bottom:589.333950px;}
.yf{bottom:609.307200px;}
.yd5{bottom:609.309900px;}
.yb9{bottom:609.312600px;}
.ya4{bottom:609.315450px;}
.y7f{bottom:609.318150px;}
.y93{bottom:609.323700px;}
.y37{bottom:629.291400px;}
.yb8{bottom:629.294100px;}
.ye{bottom:629.296950px;}
.y7e{bottom:629.299650px;}
.y92{bottom:629.305200px;}
.yb7{bottom:649.275600px;}
.yd{bottom:649.278450px;}
.y7d{bottom:649.281150px;}
.yc{bottom:669.259950px;}
.yc9{bottom:669.262650px;}
.y91{bottom:669.268200px;}
.yb{bottom:689.244150px;}
.y90{bottom:689.249700px;}
.yc8{bottom:689.252400px;}
.y36{bottom:709.228350px;}
.ya{bottom:709.231200px;}
.yc7{bottom:709.233900px;}
.y100{bottom:709.239450px;}
.y6e{bottom:709.245000px;}
.y9{bottom:729.212700px;}
.ya3{bottom:729.215400px;}
.yd4{bottom:729.218250px;}
.yff{bottom:729.220950px;}
.yf5{bottom:729.223650px;}
.y6d{bottom:729.226500px;}
.y8{bottom:749.196900px;}
.yd3{bottom:749.199750px;}
.yfe{bottom:749.202450px;}
.y6c{bottom:749.208000px;}
.y7c{bottom:749.218950px;}
.y35{bottom:749.229900px;}
.y7{bottom:769.181250px;}
.y53{bottom:769.183950px;}
.yf4{bottom:769.186650px;}
.y6b{bottom:769.189500px;}
.y7b{bottom:769.200450px;}
.ye2{bottom:769.208700px;}
.y34{bottom:769.211400px;}
.y52{bottom:789.165450px;}
.ya2{bottom:789.168150px;}
.y6{bottom:789.171000px;}
.yef{bottom:789.173700px;}
.yb6{bottom:789.176400px;}
.y7a{bottom:789.181950px;}
.y33{bottom:789.192900px;}
.y8f{bottom:789.198450px;}
.y51{bottom:809.149650px;}
.yd2{bottom:809.152500px;}
.yee{bottom:809.155200px;}
.yb5{bottom:809.157900px;}
.ya1{bottom:809.160600px;}
.y79{bottom:809.163450px;}
.ye1{bottom:809.171700px;}
.y32{bottom:809.174400px;}
.y8e{bottom:809.179950px;}
.y5{bottom:829.134000px;}
.yb4{bottom:829.139400px;}
.ya0{bottom:829.142100px;}
.y78{bottom:829.144950px;}
.ye0{bottom:829.153200px;}
.y31{bottom:829.155900px;}
.y50{bottom:849.118200px;}
.yb3{bottom:849.120900px;}
.y9f{bottom:849.123600px;}
.yf3{bottom:849.129150px;}
.ydf{bottom:849.134700px;}
.y30{bottom:849.137400px;}
.y8d{bottom:849.142950px;}
.y4{bottom:869.102400px;}
.y9e{bottom:869.105100px;}
.y77{bottom:869.107950px;}
.yf2{bottom:869.110650px;}
.yc6{bottom:869.113350px;}
.y2f{bottom:869.118900px;}
.y8c{bottom:869.124450px;}
.y9d{bottom:889.086600px;}
.y76{bottom:889.089450px;}
.y4f{bottom:889.094850px;}
.yde{bottom:889.097700px;}
.y2e{bottom:889.100400px;}
.yed{bottom:889.105950px;}
.yd1{bottom:894.581250px;}
.y75{bottom:909.070950px;}
.yf1{bottom:909.073650px;}
.yc5{bottom:909.076350px;}
.ydd{bottom:909.079200px;}
.y2d{bottom:909.081900px;}
.y8b{bottom:909.087450px;}
.y74{bottom:929.055150px;}
.y4e{bottom:929.057850px;}
.yfd{bottom:929.063400px;}
.y6a{bottom:929.068950px;}
.y4d{bottom:949.039350px;}
.y9c{bottom:949.042200px;}
.y2c{bottom:949.044900px;}
.y69{bottom:949.050450px;}
.y4c{bottom:969.023700px;}
.y2b{bottom:969.026400px;}
.y68{bottom:969.031950px;}
.y2a{bottom:989.007900px;}
.y4b{bottom:989.013450px;}
.y3{bottom:997.585350px;}
.y29{bottom:1008.992100px;}
.y67{bottom:1008.994950px;}
.y2{bottom:1026.094350px;}
.y28{bottom:1028.976450px;}
.y1{bottom:1082.225850px;}
.h9{height:34.707156px;}
.h2{height:50.868000px;}
.h8{height:59.268000px;}
.h7{height:59.521200px;}
.h6{height:59.532000px;}
.h5{height:62.172000px;}
.h4{height:66.672000px;}
.h3{height:94.452000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xa{left:69.596100px;}
.x5{left:72.283500px;}
.xb{left:76.188450px;}
.x9{left:78.100050px;}
.x2{left:79.660950px;}
.x1{left:80.787450px;}
.x7{left:95.100600px;}
.x6{left:98.029350px;}
.x3{left:105.377550px;}
.x4{left:106.693350px;}
.x13{left:153.326100px;}
.x14{left:160.678950px;}
.x15{left:352.183950px;}
.x16{left:361.040550px;}
.xd{left:607.478100px;}
.xe{left:616.299900px;}
.xf{left:693.918750px;}
.x10{left:702.653700px;}
.x8{left:716.407350px;}
.xc{left:719.026500px;}
.x11{left:726.206100px;}
.x12{left:735.001800px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.526400pt;}
.ls1d{letter-spacing:-7.333333pt;}
.ls14{letter-spacing:-5.749333pt;}
.ls1c{letter-spacing:-5.632000pt;}
.ls21{letter-spacing:-5.280000pt;}
.lsc{letter-spacing:-4.800000pt;}
.ls2d{letter-spacing:-4.458667pt;}
.ls32{letter-spacing:-3.578667pt;}
.ls34{letter-spacing:-3.344000pt;}
.ls13{letter-spacing:-3.120000pt;}
.ls2f{letter-spacing:-2.816000pt;}
.ls22{letter-spacing:-2.698667pt;}
.ls17{letter-spacing:-2.640000pt;}
.ls18{letter-spacing:-2.581333pt;}
.ls1b{letter-spacing:-1.760000pt;}
.ls30{letter-spacing:-1.525333pt;}
.ls26{letter-spacing:-1.466667pt;}
.ls2e{letter-spacing:-1.290667pt;}
.ls33{letter-spacing:-1.173333pt;}
.ls2a{letter-spacing:-0.821333pt;}
.ls1a{letter-spacing:-0.720000pt;}
.ls31{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.586667pt;}
.ls38{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.469333pt;}
.ls10{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.352000pt;}
.lse{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls35{letter-spacing:-0.205216pt;}
.ls9{letter-spacing:-0.176000pt;}
.ls36{letter-spacing:-0.171013pt;}
.ls29{letter-spacing:-0.136811pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls37{letter-spacing:-0.102608pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls28{letter-spacing:-0.034203pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.029333pt;}
.lsb{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.117333pt;}
.ls1f{letter-spacing:0.146667pt;}
.ls3{letter-spacing:0.176000pt;}
.ls25{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.240000pt;}
.ls20{letter-spacing:0.264000pt;}
.ls15{letter-spacing:0.293333pt;}
.ls24{letter-spacing:0.342027pt;}
.ls5{letter-spacing:0.352000pt;}
.ls19{letter-spacing:0.410667pt;}
.ls12{letter-spacing:0.469333pt;}
.ls27{letter-spacing:0.528000pt;}
.ls2{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls2b{letter-spacing:1.114667pt;}
.ls0{letter-spacing:1.200000pt;}
.ls1e{letter-spacing:1.636800pt;}
.ws9c{word-spacing:-14.784000pt;}
.ws30{word-spacing:-14.490667pt;}
.ws9a{word-spacing:-12.672000pt;}
.ws81{word-spacing:-12.437333pt;}
.ws86{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws8c{word-spacing:-12.261333pt;}
.ws50{word-spacing:-12.202667pt;}
.ws8a{word-spacing:-12.085333pt;}
.ws87{word-spacing:-11.733333pt;}
.ws4f{word-spacing:-11.616000pt;}
.ws80{word-spacing:-11.498667pt;}
.ws6b{word-spacing:-11.440000pt;}
.ws2f{word-spacing:-11.376000pt;}
.ws8b{word-spacing:-11.146667pt;}
.ws5f{word-spacing:-11.088000pt;}
.ws88{word-spacing:-11.029333pt;}
.ws9b{word-spacing:-10.896000pt;}
.ws77{word-spacing:-10.853333pt;}
.ws89{word-spacing:-10.794667pt;}
.ws75{word-spacing:-8.448059pt;}
.ws31{word-spacing:-7.182560pt;}
.ws78{word-spacing:-7.148357pt;}
.ws68{word-spacing:-7.040000pt;}
.ws96{word-spacing:-7.011547pt;}
.ws60{word-spacing:-6.688000pt;}
.ws6a{word-spacing:-6.669520pt;}
.ws41{word-spacing:-6.570667pt;}
.ws61{word-spacing:-4.986667pt;}
.ws8f{word-spacing:-4.458667pt;}
.ws8d{word-spacing:-3.872000pt;}
.ws94{word-spacing:-3.226667pt;}
.ws5c{word-spacing:-3.050667pt;}
.ws93{word-spacing:-2.933333pt;}
.ws33{word-spacing:-2.816000pt;}
.ws39{word-spacing:-2.640000pt;}
.ws85{word-spacing:-2.581333pt;}
.wse{word-spacing:-2.522667pt;}
.ws5{word-spacing:-2.464000pt;}
.ws3e{word-spacing:-2.405333pt;}
.ws23{word-spacing:-2.346667pt;}
.wsf{word-spacing:-2.288000pt;}
.wsb{word-spacing:-2.229333pt;}
.ws2e{word-spacing:-2.112000pt;}
.ws63{word-spacing:-2.053333pt;}
.ws2c{word-spacing:-1.877333pt;}
.ws37{word-spacing:-1.760000pt;}
.ws65{word-spacing:-1.701333pt;}
.ws4a{word-spacing:-1.642667pt;}
.ws7a{word-spacing:-1.584000pt;}
.ws19{word-spacing:-1.525333pt;}
.ws44{word-spacing:-1.466667pt;}
.ws5b{word-spacing:-1.408000pt;}
.ws11{word-spacing:-1.349333pt;}
.ws84{word-spacing:-1.290667pt;}
.ws3a{word-spacing:-1.232000pt;}
.ws1{word-spacing:-1.200000pt;}
.ws10{word-spacing:-1.173333pt;}
.ws58{word-spacing:-1.114667pt;}
.ws72{word-spacing:-0.997333pt;}
.ws9f{word-spacing:-0.938667pt;}
.ws35{word-spacing:-0.880000pt;}
.ws1b{word-spacing:-0.821333pt;}
.ws32{word-spacing:-0.762667pt;}
.ws1c{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.645333pt;}
.ws3{word-spacing:-0.640000pt;}
.ws4{word-spacing:-0.586667pt;}
.ws73{word-spacing:-0.528000pt;}
.ws12{word-spacing:-0.469333pt;}
.ws7b{word-spacing:-0.410667pt;}
.ws20{word-spacing:-0.352000pt;}
.ws4d{word-spacing:-0.293333pt;}
.ws97{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.176000pt;}
.wsc{word-spacing:-0.117333pt;}
.ws42{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.058667pt;}
.ws98{word-spacing:0.102608pt;}
.ws3b{word-spacing:0.117333pt;}
.ws82{word-spacing:0.136811pt;}
.ws7c{word-spacing:0.176000pt;}
.ws91{word-spacing:0.205216pt;}
.ws38{word-spacing:0.234667pt;}
.ws54{word-spacing:0.293333pt;}
.ws7e{word-spacing:0.352000pt;}
.ws47{word-spacing:0.410667pt;}
.ws1a{word-spacing:0.469333pt;}
.ws15{word-spacing:0.528000pt;}
.ws53{word-spacing:0.586667pt;}
.ws49{word-spacing:0.645333pt;}
.ws14{word-spacing:0.704000pt;}
.ws9{word-spacing:0.762667pt;}
.ws13{word-spacing:0.821333pt;}
.ws21{word-spacing:0.880000pt;}
.ws46{word-spacing:0.938667pt;}
.ws29{word-spacing:0.997333pt;}
.ws8{word-spacing:1.056000pt;}
.ws2a{word-spacing:1.114667pt;}
.ws4e{word-spacing:1.173333pt;}
.wsd{word-spacing:1.232000pt;}
.ws34{word-spacing:1.290667pt;}
.ws5a{word-spacing:1.349333pt;}
.ws36{word-spacing:1.408000pt;}
.ws59{word-spacing:1.466667pt;}
.ws9e{word-spacing:1.525333pt;}
.ws2d{word-spacing:1.584000pt;}
.ws52{word-spacing:1.642667pt;}
.ws6c{word-spacing:1.701333pt;}
.ws3d{word-spacing:1.760000pt;}
.ws6e{word-spacing:1.818667pt;}
.ws9d{word-spacing:1.877333pt;}
.ws95{word-spacing:1.936000pt;}
.ws27{word-spacing:1.994667pt;}
.ws26{word-spacing:2.053333pt;}
.ws67{word-spacing:2.112000pt;}
.ws3f{word-spacing:2.170667pt;}
.ws7{word-spacing:2.229333pt;}
.ws79{word-spacing:2.288000pt;}
.ws64{word-spacing:2.346667pt;}
.ws7d{word-spacing:2.405333pt;}
.ws3c{word-spacing:2.464000pt;}
.ws57{word-spacing:2.522667pt;}
.ws5d{word-spacing:2.581333pt;}
.ws69{word-spacing:2.640000pt;}
.ws17{word-spacing:2.698667pt;}
.ws62{word-spacing:2.757333pt;}
.ws1f{word-spacing:2.816000pt;}
.ws4c{word-spacing:2.874667pt;}
.ws4b{word-spacing:2.933333pt;}
.ws16{word-spacing:3.050667pt;}
.ws48{word-spacing:3.109333pt;}
.ws66{word-spacing:3.168000pt;}
.ws1e{word-spacing:3.226667pt;}
.ws71{word-spacing:3.285333pt;}
.ws25{word-spacing:3.344000pt;}
.ws70{word-spacing:3.402667pt;}
.ws6d{word-spacing:3.461333pt;}
.ws76{word-spacing:3.520000pt;}
.ws56{word-spacing:3.578667pt;}
.ws83{word-spacing:3.637333pt;}
.ws6f{word-spacing:3.696000pt;}
.ws45{word-spacing:3.754667pt;}
.ws1d{word-spacing:3.813333pt;}
.ws55{word-spacing:3.872000pt;}
.ws28{word-spacing:3.930667pt;}
.ws43{word-spacing:3.989333pt;}
.ws6{word-spacing:4.048000pt;}
.ws24{word-spacing:4.106667pt;}
.ws51{word-spacing:4.400000pt;}
.ws8e{word-spacing:4.458667pt;}
.ws90{word-spacing:7.392000pt;}
.ws74{word-spacing:1663.298667pt;}
.ws92{word-spacing:1665.842667pt;}
.ws99{word-spacing:1666.898667pt;}
.wsa0{word-spacing:1667.090667pt;}
.ws7f{word-spacing:1671.458667pt;}
.ws5e{word-spacing:1673.570667pt;}
.ws40{word-spacing:1680.578667pt;}
.ws18{word-spacing:1684.562667pt;}
._14{margin-left:-2329.152000pt;}
._e{margin-left:-2327.952000pt;}
._6{margin-left:-16.586667pt;}
._f{margin-left:-15.469333pt;}
._a{margin-left:-13.949333pt;}
._10{margin-left:-13.024533pt;}
._7{margin-left:-11.254400pt;}
._b{margin-left:-9.899200pt;}
._12{margin-left:-8.540267pt;}
._3{margin-left:-7.484800pt;}
._d{margin-left:-6.176533pt;}
._4{margin-left:-5.029867pt;}
._c{margin-left:-3.850667pt;}
._2{margin-left:-2.720000pt;}
._1{margin-left:-1.200000pt;}
._0{width:0.960000pt;}
._9{width:2.252800pt;}
._5{width:4.048000pt;}
._8{width:5.040000pt;}
._13{width:5.950933pt;}
._11{width:7.045867pt;}
.fs4{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:79.748000pt;}
.y8a{bottom:79.750533pt;}
.y4a{bottom:79.755333pt;}
.yec{bottom:79.774933pt;}
.y65{bottom:97.511867pt;}
.ydb{bottom:97.514267pt;}
.y49{bottom:97.516667pt;}
.y27{bottom:97.533867pt;}
.yeb{bottom:97.536267pt;}
.y89{bottom:115.275600pt;}
.y48{bottom:115.278000pt;}
.y9b{bottom:115.280533pt;}
.y26{bottom:115.295200pt;}
.y64{bottom:115.300133pt;}
.y47{bottom:133.039333pt;}
.y9a{bottom:133.041867pt;}
.y25{bottom:133.056533pt;}
.yea{bottom:133.058933pt;}
.yb2{bottom:133.071200pt;}
.y46{bottom:150.803200pt;}
.y73{bottom:150.805600pt;}
.y24{bottom:150.817867pt;}
.ye9{bottom:150.820267pt;}
.y63{bottom:150.822800pt;}
.yb1{bottom:150.832533pt;}
.y45{bottom:168.566933pt;}
.yda{bottom:168.569333pt;}
.yc4{bottom:168.574267pt;}
.y23{bottom:168.579200pt;}
.y102{bottom:168.584133pt;}
.yb0{bottom:168.593867pt;}
.y44{bottom:186.330667pt;}
.yfc{bottom:186.333200pt;}
.yc3{bottom:186.335600pt;}
.y22{bottom:186.340533pt;}
.ye8{bottom:186.342933pt;}
.y62{bottom:186.345467pt;}
.yaf{bottom:186.355200pt;}
.y72{bottom:204.094533pt;}
.yc2{bottom:204.096933pt;}
.y43{bottom:204.099467pt;}
.y21{bottom:204.101867pt;}
.ye7{bottom:204.104267pt;}
.y61{bottom:204.106800pt;}
.yae{bottom:204.116533pt;}
.y88{bottom:204.128800pt;}
.y71{bottom:221.858267pt;}
.y42{bottom:221.860800pt;}
.y20{bottom:221.863200pt;}
.ye6{bottom:221.865600pt;}
.y60{bottom:221.868133pt;}
.yad{bottom:221.877867pt;}
.y87{bottom:221.890133pt;}
.y41{bottom:239.622133pt;}
.y1f{bottom:239.624533pt;}
.y5f{bottom:239.629467pt;}
.yac{bottom:239.639200pt;}
.y86{bottom:239.651467pt;}
.y1e{bottom:257.385867pt;}
.yd9{bottom:257.388267pt;}
.y5e{bottom:257.390800pt;}
.y99{bottom:257.395600pt;}
.yab{bottom:257.400533pt;}
.y85{bottom:257.412800pt;}
.y1d{bottom:275.149600pt;}
.y40{bottom:275.152133pt;}
.y98{bottom:275.156933pt;}
.yaa{bottom:275.161867pt;}
.y3f{bottom:292.913467pt;}
.yc1{bottom:292.915867pt;}
.y1c{bottom:292.918267pt;}
.ya9{bottom:292.923200pt;}
.yd0{bottom:292.925733pt;}
.y84{bottom:292.935467pt;}
.y3e{bottom:310.677200pt;}
.y1b{bottom:310.679600pt;}
.y70{bottom:310.682133pt;}
.ya8{bottom:310.684533pt;}
.ycf{bottom:310.687067pt;}
.yc0{bottom:310.689467pt;}
.y1a{bottom:328.440933pt;}
.y5d{bottom:328.443467pt;}
.ya7{bottom:328.445867pt;}
.yce{bottom:328.448400pt;}
.y83{bottom:328.458133pt;}
.yfb{bottom:328.467867pt;}
.ye5{bottom:328.470400pt;}
.y19{bottom:346.204800pt;}
.y5c{bottom:346.207200pt;}
.ycd{bottom:346.209733pt;}
.ybf{bottom:346.212133pt;}
.y82{bottom:346.219467pt;}
.yfa{bottom:346.229200pt;}
.yf0{bottom:351.088800pt;}
.y18{bottom:363.968533pt;}
.ycc{bottom:363.971067pt;}
.y101{bottom:363.980800pt;}
.y3d{bottom:363.983200pt;}
.yf9{bottom:363.990533pt;}
.ye4{bottom:363.993067pt;}
.y17{bottom:381.732400pt;}
.ybe{bottom:381.734800pt;}
.y81{bottom:381.742133pt;}
.y97{bottom:381.747067pt;}
.ye3{bottom:381.754400pt;}
.y5b{bottom:399.496133pt;}
.yd8{bottom:399.498533pt;}
.y16{bottom:399.503467pt;}
.y3c{bottom:399.505867pt;}
.yf8{bottom:399.513200pt;}
.y6f{bottom:417.259867pt;}
.y80{bottom:417.264800pt;}
.ya6{bottom:417.267200pt;}
.y96{bottom:417.269733pt;}
.y5a{bottom:417.277067pt;}
.ycb{bottom:435.023733pt;}
.y15{bottom:435.026133pt;}
.y3b{bottom:435.028533pt;}
.y95{bottom:435.031067pt;}
.ybd{bottom:435.033467pt;}
.yf7{bottom:435.035867pt;}
.y59{bottom:435.038400pt;}
.y14{bottom:452.787467pt;}
.y3a{bottom:452.789867pt;}
.yd7{bottom:452.792400pt;}
.ybc{bottom:452.794800pt;}
.yf6{bottom:452.797200pt;}
.y58{bottom:452.799733pt;}
.y13{bottom:470.551200pt;}
.y94{bottom:470.553733pt;}
.ybb{bottom:470.556133pt;}
.y57{bottom:470.561067pt;}
.y39{bottom:488.315067pt;}
.yba{bottom:488.317467pt;}
.y12{bottom:488.319867pt;}
.y56{bottom:488.322400pt;}
.y38{bottom:506.078800pt;}
.y11{bottom:506.081200pt;}
.y55{bottom:506.083733pt;}
.yca{bottom:506.093467pt;}
.ydc{bottom:510.962800pt;}
.y10{bottom:523.842533pt;}
.y54{bottom:523.845067pt;}
.yd6{bottom:523.847467pt;}
.ya5{bottom:523.852400pt;}
.yf{bottom:541.606400pt;}
.yd5{bottom:541.608800pt;}
.yb9{bottom:541.611200pt;}
.ya4{bottom:541.613733pt;}
.y7f{bottom:541.616133pt;}
.y93{bottom:541.621067pt;}
.y37{bottom:559.370133pt;}
.yb8{bottom:559.372533pt;}
.ye{bottom:559.375067pt;}
.y7e{bottom:559.377467pt;}
.y92{bottom:559.382400pt;}
.yb7{bottom:577.133867pt;}
.yd{bottom:577.136400pt;}
.y7d{bottom:577.138800pt;}
.yc{bottom:594.897733pt;}
.yc9{bottom:594.900133pt;}
.y91{bottom:594.905067pt;}
.yb{bottom:612.661467pt;}
.y90{bottom:612.666400pt;}
.yc8{bottom:612.668800pt;}
.y36{bottom:630.425200pt;}
.ya{bottom:630.427733pt;}
.yc7{bottom:630.430133pt;}
.y100{bottom:630.435067pt;}
.y6e{bottom:630.440000pt;}
.y9{bottom:648.189067pt;}
.ya3{bottom:648.191467pt;}
.yd4{bottom:648.194000pt;}
.yff{bottom:648.196400pt;}
.yf5{bottom:648.198800pt;}
.y6d{bottom:648.201333pt;}
.y8{bottom:665.952800pt;}
.yd3{bottom:665.955333pt;}
.yfe{bottom:665.957733pt;}
.y6c{bottom:665.962667pt;}
.y7c{bottom:665.972400pt;}
.y35{bottom:665.982133pt;}
.y7{bottom:683.716667pt;}
.y53{bottom:683.719067pt;}
.yf4{bottom:683.721467pt;}
.y6b{bottom:683.724000pt;}
.y7b{bottom:683.733733pt;}
.ye2{bottom:683.741067pt;}
.y34{bottom:683.743467pt;}
.y52{bottom:701.480400pt;}
.ya2{bottom:701.482800pt;}
.y6{bottom:701.485333pt;}
.yef{bottom:701.487733pt;}
.yb6{bottom:701.490133pt;}
.y7a{bottom:701.495067pt;}
.y33{bottom:701.504800pt;}
.y8f{bottom:701.509733pt;}
.y51{bottom:719.244133pt;}
.yd2{bottom:719.246667pt;}
.yee{bottom:719.249067pt;}
.yb5{bottom:719.251467pt;}
.ya1{bottom:719.253867pt;}
.y79{bottom:719.256400pt;}
.ye1{bottom:719.263733pt;}
.y32{bottom:719.266133pt;}
.y8e{bottom:719.271067pt;}
.y5{bottom:737.008000pt;}
.yb4{bottom:737.012800pt;}
.ya0{bottom:737.015200pt;}
.y78{bottom:737.017733pt;}
.ye0{bottom:737.025067pt;}
.y31{bottom:737.027467pt;}
.y50{bottom:754.771733pt;}
.yb3{bottom:754.774133pt;}
.y9f{bottom:754.776533pt;}
.yf3{bottom:754.781467pt;}
.ydf{bottom:754.786400pt;}
.y30{bottom:754.788800pt;}
.y8d{bottom:754.793733pt;}
.y4{bottom:772.535467pt;}
.y9e{bottom:772.537867pt;}
.y77{bottom:772.540400pt;}
.yf2{bottom:772.542800pt;}
.yc6{bottom:772.545200pt;}
.y2f{bottom:772.550133pt;}
.y8c{bottom:772.555067pt;}
.y9d{bottom:790.299200pt;}
.y76{bottom:790.301733pt;}
.y4f{bottom:790.306533pt;}
.yde{bottom:790.309067pt;}
.y2e{bottom:790.311467pt;}
.yed{bottom:790.316400pt;}
.yd1{bottom:795.183333pt;}
.y75{bottom:808.063067pt;}
.yf1{bottom:808.065467pt;}
.yc5{bottom:808.067867pt;}
.ydd{bottom:808.070400pt;}
.y2d{bottom:808.072800pt;}
.y8b{bottom:808.077733pt;}
.y74{bottom:825.826800pt;}
.y4e{bottom:825.829200pt;}
.yfd{bottom:825.834133pt;}
.y6a{bottom:825.839067pt;}
.y4d{bottom:843.590533pt;}
.y9c{bottom:843.593067pt;}
.y2c{bottom:843.595467pt;}
.y69{bottom:843.600400pt;}
.y4c{bottom:861.354400pt;}
.y2b{bottom:861.356800pt;}
.y68{bottom:861.361733pt;}
.y2a{bottom:879.118133pt;}
.y4b{bottom:879.123067pt;}
.y3{bottom:886.742533pt;}
.y29{bottom:896.881867pt;}
.y67{bottom:896.884400pt;}
.y2{bottom:912.083867pt;}
.y28{bottom:914.645733pt;}
.y1{bottom:961.978533pt;}
.h9{height:30.850805pt;}
.h2{height:45.216000pt;}
.h8{height:52.682667pt;}
.h7{height:52.907733pt;}
.h6{height:52.917333pt;}
.h5{height:55.264000pt;}
.h4{height:59.264000pt;}
.h3{height:83.957333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xa{left:61.863200pt;}
.x5{left:64.252000pt;}
.xb{left:67.723067pt;}
.x9{left:69.422267pt;}
.x2{left:70.809733pt;}
.x1{left:71.811067pt;}
.x7{left:84.533867pt;}
.x6{left:87.137200pt;}
.x3{left:93.668933pt;}
.x4{left:94.838533pt;}
.x13{left:136.289867pt;}
.x14{left:142.825733pt;}
.x15{left:313.052400pt;}
.x16{left:320.924933pt;}
.xd{left:539.980533pt;}
.xe{left:547.822133pt;}
.xf{left:616.816667pt;}
.x10{left:624.581067pt;}
.x8{left:636.806533pt;}
.xc{left:639.134667pt;}
.x11{left:645.516533pt;}
.x12{left:653.334933pt;}
}




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