
    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_0cd3319406de7943c8361fe6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ccbecfd22b5886ceab5d01de.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_861859dac68c34a0ee598458.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7760039e3f7d182112159296.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db262f670199fc7e0536d8d5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_61e2dbf3430991b335d34d5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b8e0bc103a1c30f991d64096.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2c5df2d536c70bc38bb59ea4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eea16f02e2286b90d4b06b0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_05d19ba83c6e511db35019a5.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_e4ae74cdc376b48eb877ec6b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37{transform:matrix(0.118132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118132,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.159836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159836,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.163556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163556,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.188444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188444,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.196023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196023,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221264,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m33{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.443600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.423500px;}
.v2{vertical-align:2.901750px;}
.ls18{letter-spacing:-28.154550px;}
.ls1d{letter-spacing:-7.708800px;}
.ls4f{letter-spacing:-6.258900px;}
.ls10{letter-spacing:-6.170325px;}
.ls14{letter-spacing:-4.626375px;}
.ls4c{letter-spacing:-4.069800px;}
.lsd{letter-spacing:-3.801900px;}
.ls4b{letter-spacing:-3.254700px;}
.ls16{letter-spacing:-3.247200px;}
.ls1e{letter-spacing:-3.082425px;}
.ls41{letter-spacing:-2.838375px;}
.ls20{letter-spacing:-2.509200px;}
.ls36{letter-spacing:-2.445300px;}
.ls1f{letter-spacing:-2.315925px;}
.ls3f{letter-spacing:-2.249475px;}
.ls17{letter-spacing:-2.148300px;}
.ls1a{letter-spacing:-2.034450px;}
.ls38{letter-spacing:-1.630200px;}
.lsc{letter-spacing:-1.543950px;}
.ls26{letter-spacing:-1.535100px;}
.ls19{letter-spacing:-1.008450px;}
.ls48{letter-spacing:-0.853125px;}
.ls3c{letter-spacing:-0.848250px;}
.ls37{letter-spacing:-0.815100px;}
.ls50{letter-spacing:-0.772200px;}
.lsf{letter-spacing:-0.771975px;}
.ls3a{letter-spacing:-0.767625px;}
.ls44{letter-spacing:-0.747600px;}
.ls4a{letter-spacing:-0.728175px;}
.ls40{letter-spacing:-0.724500px;}
.ls15{letter-spacing:-0.610650px;}
.lse{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.621600px;}
.ls3d{letter-spacing:0.724500px;}
.ls49{letter-spacing:0.730800px;}
.ls42{letter-spacing:0.739500px;}
.ls25{letter-spacing:0.750375px;}
.ls3e{letter-spacing:0.758625px;}
.ls45{letter-spacing:0.765600px;}
.ls1{letter-spacing:0.771975px;}
.ls2a{letter-spacing:0.803250px;}
.ls24{letter-spacing:0.806400px;}
.ls2b{letter-spacing:0.815100px;}
.ls32{letter-spacing:0.848250px;}
.ls2{letter-spacing:0.877800px;}
.ls47{letter-spacing:1.481550px;}
.ls46{letter-spacing:1.500000px;}
.ls43{letter-spacing:1.517250px;}
.ls21{letter-spacing:1.542150px;}
.ls3{letter-spacing:1.543950px;}
.ls27{letter-spacing:1.574625px;}
.ls4e{letter-spacing:1.610700px;}
.ls2d{letter-spacing:1.630200px;}
.ls23{letter-spacing:1.631250px;}
.ls31{letter-spacing:1.696500px;}
.ls8{letter-spacing:1.755600px;}
.ls0{letter-spacing:2.315925px;}
.ls4d{letter-spacing:2.406450px;}
.ls2c{letter-spacing:2.445300px;}
.ls33{letter-spacing:2.544750px;}
.ls7{letter-spacing:2.633400px;}
.ls22{letter-spacing:2.871000px;}
.ls1c{letter-spacing:3.036150px;}
.ls9{letter-spacing:3.082425px;}
.ls39{letter-spacing:3.254700px;}
.ls2e{letter-spacing:3.386475px;}
.ls5{letter-spacing:3.505500px;}
.ls1b{letter-spacing:3.851700px;}
.ls29{letter-spacing:3.854400px;}
.ls28{letter-spacing:4.293450px;}
.ls6{letter-spacing:4.626375px;}
.ls12{letter-spacing:4.819350px;}
.ls4{letter-spacing:5.261100px;}
.ls34{letter-spacing:5.398350px;}
.ls35{letter-spacing:5.931225px;}
.lsb{letter-spacing:6.170325px;}
.ls30{letter-spacing:6.779475px;}
.ls3b{letter-spacing:6.821550px;}
.ls2f{letter-spacing:8.480775px;}
.ls11{letter-spacing:12.277800px;}
.lsa{letter-spacing:19.277475px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._29{margin-left:-37.208100px;}
._17{margin-left:-30.257703px;}
._21{margin-left:-22.407932px;}
._15{margin-left:-15.565656px;}
._18{margin-left:-13.767157px;}
._2c{margin-left:-11.387923px;}
._1b{margin-left:-10.120036px;}
._1c{margin-left:-8.733165px;}
._28{margin-left:-7.580022px;}
._1f{margin-left:-5.171957px;}
._2b{margin-left:-3.360450px;}
._14{margin-left:-2.146200px;}
._0{margin-left:-1.034775px;}
._16{width:1.215450px;}
._2{width:2.518500px;}
._11{width:3.996750px;}
._1{width:5.256000px;}
._3{width:6.624750px;}
._6{width:8.010233px;}
._5{width:9.083025px;}
._4{width:10.495575px;}
._b{width:11.826000px;}
._7{width:12.948375px;}
._a{width:14.957392px;}
._c{width:15.987000px;}
._8{width:17.784000px;}
._f{width:19.533600px;}
._13{width:21.243000px;}
._e{width:23.173275px;}
._24{width:24.184275px;}
._1e{width:25.486125px;}
._9{width:26.696100px;}
._26{width:28.348350px;}
._10{width:29.422650px;}
._1a{width:30.696715px;}
._1d{width:31.924725px;}
._12{width:33.063525px;}
._19{width:35.948233px;}
._2a{width:40.794832px;}
._d{width:42.876884px;}
._22{width:59.261400px;}
._25{width:61.272884px;}
._27{width:62.748204px;}
._23{width:64.179458px;}
._20{width:67.301013px;}
.fc0{color:transparent;}
.fs1d{font-size:44.250000px;}
.fs1b{font-size:45.750000px;}
.fs1e{font-size:46.500000px;}
.fs16{font-size:47.250000px;}
.fsc{font-size:48.000000px;}
.fsa{font-size:49.500000px;}
.fs11{font-size:51.000000px;}
.fs9{font-size:51.750000px;}
.fs1c{font-size:52.539000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:54.750000px;}
.fs8{font-size:55.500000px;}
.fs2{font-size:56.250000px;}
.fs1{font-size:57.000000px;}
.fsb{font-size:57.750000px;}
.fsf{font-size:58.500000px;}
.fs1a{font-size:60.000000px;}
.fs3{font-size:60.750000px;}
.fs10{font-size:62.250000px;}
.fs15{font-size:63.000000px;}
.fs13{font-size:63.750000px;}
.fs6{font-size:64.500000px;}
.fs14{font-size:65.250000px;}
.fs12{font-size:65.275200px;}
.fs4{font-size:66.000000px;}
.fs7{font-size:66.750000px;}
.fs18{font-size:67.500000px;}
.fs5{font-size:68.250000px;}
.fs19{font-size:69.000000px;}
.fs17{font-size:69.750000px;}
.fs1f{font-size:78.000000px;}
.fsd{font-size:91.500000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:55.937400px;}
.y82{bottom:61.336200px;}
.yeb{bottom:91.214137px;}
.yf9{bottom:91.936950px;}
.y81{bottom:96.256200px;}
.yea{bottom:104.170312px;}
.yf8{bottom:104.890462px;}
.y80{bottom:108.854700px;}
.ye8{bottom:116.753362px;}
.ye9{bottom:116.776500px;}
.yf6{bottom:117.488100px;}
.yf7{bottom:117.496650px;}
.y7f{bottom:121.813238px;}
.ye7{bottom:129.359550px;}
.yf5{bottom:130.450163px;}
.y7d{bottom:134.416050px;}
.y7e{bottom:134.775300px;}
.ye6{bottom:142.321612px;}
.yf4{bottom:143.056350px;}
.y7b{bottom:147.014700px;}
.y7c{bottom:147.734850px;}
.ye5{bottom:154.927800px;}
.yf3{bottom:156.192825px;}
.y79{bottom:159.975750px;}
.y7a{bottom:160.335000px;}
.ye4{bottom:167.533987px;}
.yf2{bottom:168.973275px;}
.y77{bottom:172.579275px;}
.y78{bottom:173.296200px;}
.ye3{bottom:180.489000px;}
.yf1{bottom:181.579463px;}
.ye2{bottom:193.806937px;}
.yf0{bottom:194.903550px;}
.y76{bottom:199.215150px;}
.ye1{bottom:206.413125px;}
.yef{bottom:207.496050px;}
.y74{bottom:215.414513px;}
.y75{bottom:215.416050px;}
.ye0{bottom:219.375187px;}
.yee{bottom:220.098713px;}
.ydf{bottom:232.331925px;}
.yed{bottom:233.413575px;}
.yde{bottom:245.293988px;}
.yec{bottom:246.019763px;}
.y41{bottom:278.774850px;}
.ydd{bottom:284.536050px;}
.ydc{bottom:284.539613px;}
.y40{bottom:291.375000px;}
.y3f{bottom:291.727350px;}
.ydb{bottom:300.376050px;}
.y3e{bottom:304.333537px;}
.yda{bottom:316.216200px;}
.y73{bottom:316.934700px;}
.y3d{bottom:317.295600px;}
.y72{bottom:329.533988px;}
.y3c{bottom:329.893237px;}
.yd9{bottom:332.417250px;}
.y71{bottom:342.496050px;}
.y70{bottom:342.502200px;}
.y3b{bottom:342.855300px;}
.y3a{bottom:342.861450px;}
.yd8{bottom:348.257250px;}
.yd7{bottom:348.260963px;}
.y6f{bottom:355.455450px;}
.y38{bottom:355.808812px;}
.y39{bottom:355.814700px;}
.yd6{bottom:364.097400px;}
.y6e{bottom:368.413987px;}
.y37{bottom:368.415000px;}
.yd5{bottom:379.937400px;}
.y35{bottom:381.364988px;}
.y36{bottom:381.376050px;}
.y6c{bottom:393.973688px;}
.y6d{bottom:393.974700px;}
.y34{bottom:394.327050px;}
.y6b{bottom:406.935750px;}
.y33{bottom:407.289112px;}
.y6a{bottom:419.536050px;}
.y32{bottom:419.891775px;}
.y69{bottom:432.495450px;}
.y31{bottom:432.853838px;}
.y68{bottom:445.455000px;}
.y30{bottom:445.815900px;}
.y67{bottom:458.768962px;}
.y2f{bottom:458.775300px;}
.yad{bottom:462.376050px;}
.yac{bottom:462.377550px;}
.y2d{bottom:471.730575px;}
.y66{bottom:471.731025px;}
.y2e{bottom:471.734850px;}
.yab{bottom:475.339612px;}
.y2c{bottom:484.514700px;}
.y65{bottom:484.871025px;}
.yd4{bottom:488.299163px;}
.yaa{bottom:488.655037px;}
.y64{bottom:498.011025px;}
.y2a{bottom:498.372075px;}
.y2b{bottom:498.375600px;}
.yd3{bottom:501.617100px;}
.ya9{bottom:501.619462px;}
.y63{bottom:510.973087px;}
.y29{bottom:511.334138px;}
.ya8{bottom:514.937400px;}
.yd2{bottom:514.938262px;}
.y62{bottom:523.935150px;}
.y28{bottom:524.296200px;}
.ya7{bottom:527.896800px;}
.yd1{bottom:528.256200px;}
.y61{bottom:537.253087px;}
.y27{bottom:537.258112px;}
.ya6{bottom:540.858862px;}
.yd0{bottom:541.214737px;}
.y60{bottom:550.215150px;}
.y26{bottom:550.576050px;}
.ycf{bottom:554.173987px;}
.ya5{bottom:554.176800px;}
.y5f{bottom:563.173688px;}
.y25{bottom:563.176200px;}
.ya3{bottom:567.132675px;}
.ya4{bottom:567.136200px;}
.yce{bottom:567.491925px;}
.y5e{bottom:576.135750px;}
.y24{bottom:576.495000px;}
.ya2{bottom:580.094738px;}
.ycd{bottom:580.453987px;}
.y5c{bottom:589.094288px;}
.y5d{bottom:589.095150px;}
.y22{bottom:589.450725px;}
.y23{bottom:589.456050px;}
.ya1{bottom:593.056800px;}
.ycc{bottom:593.415037px;}
.y5b{bottom:602.056350px;}
.y21{bottom:602.412787px;}
.ya0{bottom:606.016350px;}
.ycb{bottom:606.377100px;}
.y59{bottom:615.374137px;}
.y20{bottom:615.374850px;}
.y5a{bottom:615.375000px;}
.y9f{bottom:619.334137px;}
.yca{bottom:619.517100px;}
.y57{bottom:628.333538px;}
.y58{bottom:628.336200px;}
.y1f{bottom:628.692787px;}
.y9d{bottom:632.289750px;}
.y9e{bottom:632.296200px;}
.yc9{bottom:632.654288px;}
.y55{bottom:641.293087px;}
.y56{bottom:641.295600px;}
.y1d{bottom:641.651325px;}
.y1e{bottom:641.654850px;}
.y9b{bottom:645.257100px;}
.y9c{bottom:645.257250px;}
.yc8{bottom:645.616350px;}
.y54{bottom:654.255150px;}
.y53{bottom:654.257512px;}
.y1c{bottom:654.613388px;}
.y9a{bottom:658.219163px;}
.yc7{bottom:658.934287px;}
.y1a{bottom:667.572938px;}
.y1b{bottom:667.575450px;}
.y98{bottom:671.531925px;}
.y99{bottom:671.537100px;}
.yc6{bottom:671.896350px;}
.y19{bottom:680.535000px;}
.y97{bottom:684.493988px;}
.yc5{bottom:684.857550px;}
.y52{bottom:693.490875px;}
.y18{bottom:693.495750px;}
.y96{bottom:697.455187px;}
.yc3{bottom:698.170312px;}
.yc4{bottom:698.176200px;}
.y51{bottom:706.452937px;}
.y17{bottom:706.457813px;}
.y95{bottom:710.417250px;}
.yc1{bottom:710.773050px;}
.yc2{bottom:710.776500px;}
.y50{bottom:719.415000px;}
.y16{bottom:719.775750px;}
.y94{bottom:723.737550px;}
.ybf{bottom:724.094137px;}
.yc0{bottom:724.096800px;}
.y4e{bottom:732.732787px;}
.y4f{bottom:732.735450px;}
.y15{bottom:732.737813px;}
.y92{bottom:736.696950px;}
.y93{bottom:736.697100px;}
.ybe{bottom:737.056200px;}
.y4d{bottom:745.694850px;}
.y14{bottom:746.055750px;}
.y91{bottom:749.659012px;}
.ybd{bottom:750.374137px;}
.y4c{bottom:759.015000px;}
.y13{bottom:759.015150px;}
.y90{bottom:762.976950px;}
.ybc{bottom:763.341075px;}
.y4b{bottom:771.977063px;}
.y12{bottom:772.335600px;}
.y8f{bottom:776.297250px;}
.y8e{bottom:776.303400px;}
.ybb{bottom:776.659012px;}
.y4a{bottom:785.294137px;}
.y10{bottom:785.294850px;}
.y11{bottom:785.295000px;}
.y8d{bottom:789.256650px;}
.y8c{bottom:789.259163px;}
.yb9{bottom:789.974287px;}
.yba{bottom:789.976950px;}
.y49{bottom:798.256200px;}
.yf{bottom:798.256912px;}
.y8b{bottom:802.577100px;}
.yb8{bottom:802.936350px;}
.yb7{bottom:802.938712px;}
.y48{bottom:811.215600px;}
.yd{bottom:811.573987px;}
.ye{bottom:811.574850px;}
.y8a{bottom:815.536500px;}
.yb5{bottom:816.254137px;}
.yb6{bottom:816.256650px;}
.y47{bottom:824.175000px;}
.yc{bottom:824.536050px;}
.yb{bottom:824.542200px;}
.y89{bottom:828.498412px;}
.yb4{bottom:829.215337px;}
.y9{bottom:837.492937px;}
.ya{bottom:837.495450px;}
.y88{bottom:841.816200px;}
.yb3{bottom:842.174737px;}
.y7{bottom:850.454850px;}
.y8{bottom:850.455000px;}
.y87{bottom:854.778262px;}
.yb2{bottom:855.139313px;}
.y46{bottom:863.416912px;}
.y6{bottom:863.772787px;}
.y86{bottom:868.096200px;}
.yb1{bottom:868.454588px;}
.y5{bottom:876.734850px;}
.y85{bottom:881.057400px;}
.yb0{bottom:881.416500px;}
.y45{bottom:889.695900px;}
.y4{bottom:889.696762px;}
.y84{bottom:894.376050px;}
.yaf{bottom:894.378563px;}
.y44{bottom:902.652787px;}
.y2{bottom:903.013687px;}
.y3{bottom:903.014700px;}
.y83{bottom:907.337250px;}
.yae{bottom:907.696500px;}
.y42{bottom:915.613163px;}
.y43{bottom:915.614850px;}
.y1{bottom:915.975750px;}
.h44{height:43.407349px;}
.h42{height:44.878784px;}
.h45{height:45.955078px;}
.h2c{height:46.350220px;}
.h11{height:50.062500px;}
.h20{height:50.789795px;}
.hf{height:51.626953px;}
.h16{height:52.998047px;}
.h1e{height:53.191406px;}
.h2{height:53.734131px;}
.h7{height:53.734731px;}
.h21{height:53.737581px;}
.h1f{height:53.738181px;}
.hd{height:53.744181px;}
.h1c{height:53.744781px;}
.h31{height:53.745381px;}
.h3f{height:53.746431px;}
.h13{height:53.748231px;}
.h40{height:53.748831px;}
.h41{height:53.751231px;}
.h1d{height:53.754831px;}
.h3c{height:53.755431px;}
.h3e{height:53.757681px;}
.h3d{height:53.762331px;}
.h1a{height:53.768331px;}
.h17{height:53.778381px;}
.he{height:53.973633px;}
.hc{height:54.470215px;}
.h43{height:54.796535px;}
.h2b{height:55.157631px;}
.h2a{height:55.171131px;}
.h19{height:55.178833px;}
.h4{height:55.206299px;}
.h6{height:55.914551px;}
.h30{height:55.928351px;}
.h15{height:55.933594px;}
.h3{height:55.942383px;}
.h29{height:56.622981px;}
.h2f{height:57.385986px;}
.h18{height:57.414551px;}
.h38{height:58.886719px;}
.h5{height:59.622803px;}
.h10{height:60.231445px;}
.h39{height:61.094971px;}
.h26{height:61.831055px;}
.h24{height:62.567139px;}
.h27{height:63.303223px;}
.h14{height:63.360352px;}
.h34{height:64.007446px;}
.h25{height:64.039307px;}
.h23{height:64.743164px;}
.h36{height:64.775391px;}
.h1b{height:64.924805px;}
.h32{height:65.511475px;}
.h28{height:65.759766px;}
.h35{height:66.247559px;}
.ha{height:67.271484px;}
.h3a{height:67.450195px;}
.h37{height:67.719727px;}
.h22{height:68.079994px;}
.h33{height:68.455811px;}
.h3b{height:68.783203px;}
.h8{height:68.835938px;}
.hb{height:69.618164px;}
.h9{height:71.182617px;}
.h46{height:78.609375px;}
.h12{height:95.431641px;}
.h2d{height:981.632550px;}
.h2e{height:981.750000px;}
.h1{height:987.000000px;}
.h0{height:987.031050px;}
.w2{width:658.351050px;}
.w3{width:658.500000px;}
.w0{width:662.672550px;}
.w1{width:663.000000px;}
.x0{left:0.000000px;}
.x87{left:56.655900px;}
.x71{left:58.096350px;}
.xa2{left:71.057287px;}
.xa8{left:77.535450px;}
.x1{left:79.695900px;}
.x1c{left:80.775300px;}
.x8c{left:86.175750px;}
.x7b{left:88.695450px;}
.x14{left:92.655450px;}
.x1d{left:97.335600px;}
.x6{left:98.780062px;}
.x22{left:100.216200px;}
.x78{left:102.015750px;}
.x23{left:105.255600px;}
.x2{left:106.695900px;}
.x32{left:109.935750px;}
.x88{left:111.376050px;}
.x24{left:114.256800px;}
.x96{left:116.056350px;}
.x3{left:118.935300px;}
.x63{left:120.375600px;}
.xf{left:121.456650px;}
.x18{left:122.895300px;}
.x28{left:125.775900px;}
.x2d{left:129.376650px;}
.x20{left:130.456050px;}
.x89{left:132.975750px;}
.x4{left:134.775300px;}
.x74{left:137.655900px;}
.x21{left:141.616050px;}
.x93{left:142.695450px;}
.x5{left:144.135750px;}
.x30{left:145.216800px;}
.x8f{left:146.655450px;}
.x27{left:152.775900px;}
.x33{left:156.735900px;}
.x2b{left:162.136200px;}
.x9b{left:167.536500px;}
.x2c{left:171.855900px;}
.x15{left:175.095750px;}
.x72{left:177.976350px;}
.x16{left:185.896350px;}
.x64{left:188.416050px;}
.x9c{left:189.495450px;}
.x69{left:190.935750px;}
.xa{left:192.016800px;}
.x35{left:196.336200px;}
.x10{left:199.216800px;}
.x8a{left:205.696500px;}
.x79{left:207.855300px;}
.x11{left:209.295600px;}
.x77{left:211.815300px;}
.xb{left:214.336650px;}
.x7{left:215.416050px;}
.x65{left:217.215600px;}
.x9d{left:219.376050px;}
.x7a{left:221.895750px;}
.xc{left:223.695450px;}
.x2e{left:225.496650px;}
.x17{left:228.016350px;}
.x6a{left:229.456650px;}
.x8{left:232.696500px;}
.x9f{left:235.936350px;}
.x2f{left:240.255600px;}
.x12{left:244.215600px;}
.x97{left:245.655900px;}
.x73{left:247.096200px;}
.x6b{left:253.216800px;}
.x13{left:256.815900px;}
.x9{left:262.216200px;}
.x26{left:264.735900px;}
.xd{left:266.535450px;}
.x75{left:267.616500px;}
.x31{left:270.856350px;}
.x6c{left:274.816500px;}
.x19{left:278.056350px;}
.x66{left:279.135750px;}
.x8d{left:282.375600px;}
.x76{left:283.815900px;}
.x90{left:285.976350px;}
.x1a{left:289.936350px;}
.xe{left:292.456050px;}
.x29{left:293.535450px;}
.x2a{left:302.895750px;}
.x1e{left:305.056350px;}
.x25{left:307.935300px;}
.x36{left:309.736500px;}
.x1f{left:315.855300px;}
.x1b{left:317.656500px;}
.x37{left:321.255600px;}
.x34{left:323.775300px;}
.x7c{left:327.735300px;}
.x67{left:330.256650px;}
.xa3{left:340.696500px;}
.x9e{left:342.496050px;}
.x94{left:343.575450px;}
.x38{left:348.253350px;}
.x3b{left:350.056800px;}
.x3c{left:363.375600px;}
.x82{left:367.335600px;}
.x60{left:370.216200px;}
.x5f{left:374.896350px;}
.x7d{left:376.695900px;}
.x98{left:378.136200px;}
.x55{left:381.376050px;}
.x3d{left:384.616050px;}
.x7e{left:386.056350px;}
.x62{left:388.216800px;}
.xa5{left:390.736500px;}
.xa0{left:392.176800px;}
.x4a{left:393.976350px;}
.x3e{left:396.496050px;}
.x48{left:399.376650px;}
.x6d{left:405.136200px;}
.x41{left:406.576500px;}
.x95{left:412.695450px;}
.x49{left:413.776500px;}
.x42{left:419.176800px;}
.xa1{left:420.976350px;}
.x56{left:423.855300px;}
.xa4{left:426.015750px;}
.x4d{left:427.815300px;}
.x84{left:428.896350px;}
.x91{left:429.975750px;}
.x5d{left:433.576500px;}
.x57{left:437.175600px;}
.x85{left:439.695450px;}
.x4e{left:440.776500px;}
.x83{left:444.016350px;}
.x46{left:445.095750px;}
.x5e{left:446.176800px;}
.x58{left:448.696500px;}
.x99{left:450.496050px;}
.xa6{left:456.616500px;}
.x47{left:457.695900px;}
.x6f{left:460.576500px;}
.xa7{left:470.655450px;}
.x8b{left:472.456650px;}
.x51{left:478.936350px;}
.x81{left:488.655900px;}
.x92{left:490.816350px;}
.x52{left:491.895750px;}
.x61{left:500.536050px;}
.x59{left:505.936350px;}
.x8e{left:511.336650px;}
.x6e{left:513.136200px;}
.x39{left:514.215600px;}
.x5a{left:519.256800px;}
.x3f{left:523.576050px;}
.x54{left:525.375600px;}
.x43{left:527.176800px;}
.x40{left:536.176200px;}
.x44{left:539.056800px;}
.x3a{left:545.895750px;}
.x9a{left:547.695450px;}
.x70{left:548.776500px;}
.x7f{left:549.855900px;}
.x5b{left:554.176800px;}
.x86{left:556.335600px;}
.x80{left:561.735900px;}
.x5c{left:565.695900px;}
.x68{left:567.856350px;}
.x4b{left:574.336200px;}
.x4f{left:576.855900px;}
.x4c{left:587.656500px;}
.x50{left:589.815300px;}
.x45{left:593.416050px;}
.x53{left:595.576500px;}
@media print{
.v1{vertical-align:-1.283200pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.265333pt;}
.v2{vertical-align:2.579333pt;}
.ls18{letter-spacing:-25.026267pt;}
.ls1d{letter-spacing:-6.852267pt;}
.ls4f{letter-spacing:-5.563467pt;}
.ls10{letter-spacing:-5.484733pt;}
.ls14{letter-spacing:-4.112333pt;}
.ls4c{letter-spacing:-3.617600pt;}
.lsd{letter-spacing:-3.379467pt;}
.ls4b{letter-spacing:-2.893067pt;}
.ls16{letter-spacing:-2.886400pt;}
.ls1e{letter-spacing:-2.739933pt;}
.ls41{letter-spacing:-2.523000pt;}
.ls20{letter-spacing:-2.230400pt;}
.ls36{letter-spacing:-2.173600pt;}
.ls1f{letter-spacing:-2.058600pt;}
.ls3f{letter-spacing:-1.999533pt;}
.ls17{letter-spacing:-1.909600pt;}
.ls1a{letter-spacing:-1.808400pt;}
.ls38{letter-spacing:-1.449067pt;}
.lsc{letter-spacing:-1.372400pt;}
.ls26{letter-spacing:-1.364533pt;}
.ls19{letter-spacing:-0.896400pt;}
.ls48{letter-spacing:-0.758333pt;}
.ls3c{letter-spacing:-0.754000pt;}
.ls37{letter-spacing:-0.724533pt;}
.ls50{letter-spacing:-0.686400pt;}
.lsf{letter-spacing:-0.686200pt;}
.ls3a{letter-spacing:-0.682333pt;}
.ls44{letter-spacing:-0.664533pt;}
.ls4a{letter-spacing:-0.647267pt;}
.ls40{letter-spacing:-0.644000pt;}
.ls15{letter-spacing:-0.542800pt;}
.lse{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.552533pt;}
.ls3d{letter-spacing:0.644000pt;}
.ls49{letter-spacing:0.649600pt;}
.ls42{letter-spacing:0.657333pt;}
.ls25{letter-spacing:0.667000pt;}
.ls3e{letter-spacing:0.674333pt;}
.ls45{letter-spacing:0.680533pt;}
.ls1{letter-spacing:0.686200pt;}
.ls2a{letter-spacing:0.714000pt;}
.ls24{letter-spacing:0.716800pt;}
.ls2b{letter-spacing:0.724533pt;}
.ls32{letter-spacing:0.754000pt;}
.ls2{letter-spacing:0.780267pt;}
.ls47{letter-spacing:1.316933pt;}
.ls46{letter-spacing:1.333333pt;}
.ls43{letter-spacing:1.348667pt;}
.ls21{letter-spacing:1.370800pt;}
.ls3{letter-spacing:1.372400pt;}
.ls27{letter-spacing:1.399667pt;}
.ls4e{letter-spacing:1.431733pt;}
.ls2d{letter-spacing:1.449067pt;}
.ls23{letter-spacing:1.450000pt;}
.ls31{letter-spacing:1.508000pt;}
.ls8{letter-spacing:1.560533pt;}
.ls0{letter-spacing:2.058600pt;}
.ls4d{letter-spacing:2.139067pt;}
.ls2c{letter-spacing:2.173600pt;}
.ls33{letter-spacing:2.262000pt;}
.ls7{letter-spacing:2.340800pt;}
.ls22{letter-spacing:2.552000pt;}
.ls1c{letter-spacing:2.698800pt;}
.ls9{letter-spacing:2.739933pt;}
.ls39{letter-spacing:2.893067pt;}
.ls2e{letter-spacing:3.010200pt;}
.ls5{letter-spacing:3.116000pt;}
.ls1b{letter-spacing:3.423733pt;}
.ls29{letter-spacing:3.426133pt;}
.ls28{letter-spacing:3.816400pt;}
.ls6{letter-spacing:4.112333pt;}
.ls12{letter-spacing:4.283867pt;}
.ls4{letter-spacing:4.676533pt;}
.ls34{letter-spacing:4.798533pt;}
.ls35{letter-spacing:5.272200pt;}
.lsb{letter-spacing:5.484733pt;}
.ls30{letter-spacing:6.026200pt;}
.ls3b{letter-spacing:6.063600pt;}
.ls2f{letter-spacing:7.538467pt;}
.ls11{letter-spacing:10.913600pt;}
.lsa{letter-spacing:17.135533pt;}
.ws0{word-spacing:0.000000pt;}
._29{margin-left:-33.073867pt;}
._17{margin-left:-26.895736pt;}
._21{margin-left:-19.918162pt;}
._15{margin-left:-13.836139pt;}
._18{margin-left:-12.237473pt;}
._2c{margin-left:-10.122598pt;}
._1b{margin-left:-8.995588pt;}
._1c{margin-left:-7.762813pt;}
._28{margin-left:-6.737797pt;}
._1f{margin-left:-4.597295pt;}
._2b{margin-left:-2.987067pt;}
._14{margin-left:-1.907733pt;}
._0{margin-left:-0.919800pt;}
._16{width:1.080400pt;}
._2{width:2.238667pt;}
._11{width:3.552667pt;}
._1{width:4.672000pt;}
._3{width:5.888667pt;}
._6{width:7.120208pt;}
._5{width:8.073800pt;}
._4{width:9.329400pt;}
._b{width:10.512000pt;}
._7{width:11.509667pt;}
._a{width:13.295459pt;}
._c{width:14.210667pt;}
._8{width:15.808000pt;}
._f{width:17.363200pt;}
._13{width:18.882667pt;}
._e{width:20.598467pt;}
._24{width:21.497133pt;}
._1e{width:22.654333pt;}
._9{width:23.729867pt;}
._26{width:25.198533pt;}
._10{width:26.153467pt;}
._1a{width:27.285969pt;}
._1d{width:28.377533pt;}
._12{width:29.389800pt;}
._19{width:31.953985pt;}
._2a{width:36.262073pt;}
._d{width:38.112786pt;}
._22{width:52.676800pt;}
._25{width:54.464786pt;}
._27{width:55.776181pt;}
._23{width:57.048408pt;}
._20{width:59.823123pt;}
.fs1d{font-size:39.333333pt;}
.fs1b{font-size:40.666667pt;}
.fs1e{font-size:41.333333pt;}
.fs16{font-size:42.000000pt;}
.fsc{font-size:42.666667pt;}
.fsa{font-size:44.000000pt;}
.fs11{font-size:45.333333pt;}
.fs9{font-size:46.000000pt;}
.fs1c{font-size:46.701333pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:48.666667pt;}
.fs8{font-size:49.333333pt;}
.fs2{font-size:50.000000pt;}
.fs1{font-size:50.666667pt;}
.fsb{font-size:51.333333pt;}
.fsf{font-size:52.000000pt;}
.fs1a{font-size:53.333333pt;}
.fs3{font-size:54.000000pt;}
.fs10{font-size:55.333333pt;}
.fs15{font-size:56.000000pt;}
.fs13{font-size:56.666667pt;}
.fs6{font-size:57.333333pt;}
.fs14{font-size:58.000000pt;}
.fs12{font-size:58.022400pt;}
.fs4{font-size:58.666667pt;}
.fs7{font-size:59.333333pt;}
.fs18{font-size:60.000000pt;}
.fs5{font-size:60.666667pt;}
.fs19{font-size:61.333333pt;}
.fs17{font-size:62.000000pt;}
.fs1f{font-size:69.333333pt;}
.fsd{font-size:81.333333pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:49.722133pt;}
.y82{bottom:54.521067pt;}
.yeb{bottom:81.079233pt;}
.yf9{bottom:81.721733pt;}
.y81{bottom:85.561067pt;}
.yea{bottom:92.595833pt;}
.yf8{bottom:93.235967pt;}
.y80{bottom:96.759733pt;}
.ye8{bottom:103.780767pt;}
.ye9{bottom:103.801333pt;}
.yf6{bottom:104.433867pt;}
.yf7{bottom:104.441467pt;}
.y7f{bottom:108.278433pt;}
.ye7{bottom:114.986267pt;}
.yf5{bottom:115.955700pt;}
.y7d{bottom:119.480933pt;}
.y7e{bottom:119.800267pt;}
.ye6{bottom:126.508100pt;}
.yf4{bottom:127.161200pt;}
.y7b{bottom:130.679733pt;}
.y7c{bottom:131.319867pt;}
.ye5{bottom:137.713600pt;}
.yf3{bottom:138.838067pt;}
.y79{bottom:142.200667pt;}
.y7a{bottom:142.520000pt;}
.ye4{bottom:148.919100pt;}
.yf2{bottom:150.198467pt;}
.y77{bottom:153.403800pt;}
.y78{bottom:154.041067pt;}
.ye3{bottom:160.434667pt;}
.yf1{bottom:161.403967pt;}
.ye2{bottom:172.272833pt;}
.yf0{bottom:173.247600pt;}
.y76{bottom:177.080133pt;}
.ye1{bottom:183.478333pt;}
.yef{bottom:184.440933pt;}
.y74{bottom:191.479567pt;}
.y75{bottom:191.480933pt;}
.ye0{bottom:195.000167pt;}
.yee{bottom:195.643300pt;}
.ydf{bottom:206.517267pt;}
.yed{bottom:207.478733pt;}
.yde{bottom:218.039100pt;}
.yec{bottom:218.684233pt;}
.y41{bottom:247.799867pt;}
.ydd{bottom:252.920933pt;}
.ydc{bottom:252.924100pt;}
.y40{bottom:259.000000pt;}
.y3f{bottom:259.313200pt;}
.ydb{bottom:267.000933pt;}
.y3e{bottom:270.518700pt;}
.yda{bottom:281.081067pt;}
.y73{bottom:281.719733pt;}
.y3d{bottom:282.040533pt;}
.y72{bottom:292.919100pt;}
.y3c{bottom:293.238433pt;}
.yd9{bottom:295.482000pt;}
.y71{bottom:304.440933pt;}
.y70{bottom:304.446400pt;}
.y3b{bottom:304.760267pt;}
.y3a{bottom:304.765733pt;}
.yd8{bottom:309.562000pt;}
.yd7{bottom:309.565300pt;}
.y6f{bottom:315.960400pt;}
.y38{bottom:316.274500pt;}
.y39{bottom:316.279733pt;}
.yd6{bottom:323.642133pt;}
.y6e{bottom:327.479100pt;}
.y37{bottom:327.480000pt;}
.yd5{bottom:337.722133pt;}
.y35{bottom:338.991100pt;}
.y36{bottom:339.000933pt;}
.y6c{bottom:350.198833pt;}
.y6d{bottom:350.199733pt;}
.y34{bottom:350.512933pt;}
.y6b{bottom:361.720667pt;}
.y33{bottom:362.034767pt;}
.y6a{bottom:372.920933pt;}
.y32{bottom:373.237133pt;}
.y69{bottom:384.440400pt;}
.y31{bottom:384.758967pt;}
.y68{bottom:395.960000pt;}
.y30{bottom:396.280800pt;}
.y67{bottom:407.794633pt;}
.y2f{bottom:407.800267pt;}
.yad{bottom:411.000933pt;}
.yac{bottom:411.002267pt;}
.y2d{bottom:419.316067pt;}
.y66{bottom:419.316467pt;}
.y2e{bottom:419.319867pt;}
.yab{bottom:422.524100pt;}
.y2c{bottom:430.679733pt;}
.y65{bottom:430.996467pt;}
.yd4{bottom:434.043700pt;}
.yaa{bottom:434.360033pt;}
.y64{bottom:442.676467pt;}
.y2a{bottom:442.997400pt;}
.y2b{bottom:443.000533pt;}
.yd3{bottom:445.881867pt;}
.ya9{bottom:445.883967pt;}
.y63{bottom:454.198300pt;}
.y29{bottom:454.519233pt;}
.ya8{bottom:457.722133pt;}
.yd2{bottom:457.722900pt;}
.y62{bottom:465.720133pt;}
.y28{bottom:466.041067pt;}
.ya7{bottom:469.241600pt;}
.yd1{bottom:469.561067pt;}
.y61{bottom:477.558300pt;}
.y27{bottom:477.562767pt;}
.ya6{bottom:480.763433pt;}
.yd0{bottom:481.079767pt;}
.y60{bottom:489.080133pt;}
.y26{bottom:489.400933pt;}
.ycf{bottom:492.599100pt;}
.ya5{bottom:492.601600pt;}
.y5f{bottom:500.598833pt;}
.y25{bottom:500.601067pt;}
.ya3{bottom:504.117933pt;}
.ya4{bottom:504.121067pt;}
.yce{bottom:504.437267pt;}
.y5e{bottom:512.120667pt;}
.y24{bottom:512.440000pt;}
.ya2{bottom:515.639767pt;}
.ycd{bottom:515.959100pt;}
.y5c{bottom:523.639367pt;}
.y5d{bottom:523.640133pt;}
.y22{bottom:523.956200pt;}
.y23{bottom:523.960933pt;}
.ya1{bottom:527.161600pt;}
.ycc{bottom:527.480033pt;}
.y5b{bottom:535.161200pt;}
.y21{bottom:535.478033pt;}
.ya0{bottom:538.681200pt;}
.ycb{bottom:539.001867pt;}
.y59{bottom:546.999233pt;}
.y20{bottom:546.999867pt;}
.y5a{bottom:547.000000pt;}
.y9f{bottom:550.519233pt;}
.yca{bottom:550.681867pt;}
.y57{bottom:558.518700pt;}
.y58{bottom:558.521067pt;}
.y1f{bottom:558.838033pt;}
.y9d{bottom:562.035333pt;}
.y9e{bottom:562.041067pt;}
.yc9{bottom:562.359367pt;}
.y55{bottom:570.038300pt;}
.y56{bottom:570.040533pt;}
.y1d{bottom:570.356733pt;}
.y1e{bottom:570.359867pt;}
.y9b{bottom:573.561867pt;}
.y9c{bottom:573.562000pt;}
.yc8{bottom:573.881200pt;}
.y54{bottom:581.560133pt;}
.y53{bottom:581.562233pt;}
.y1c{bottom:581.878567pt;}
.y9a{bottom:585.083700pt;}
.yc7{bottom:585.719367pt;}
.y1a{bottom:593.398167pt;}
.y1b{bottom:593.400400pt;}
.y98{bottom:596.917267pt;}
.y99{bottom:596.921867pt;}
.yc6{bottom:597.241200pt;}
.y19{bottom:604.920000pt;}
.y97{bottom:608.439100pt;}
.yc5{bottom:608.762267pt;}
.y52{bottom:616.436333pt;}
.y18{bottom:616.440667pt;}
.y96{bottom:619.960167pt;}
.yc3{bottom:620.595833pt;}
.yc4{bottom:620.601067pt;}
.y51{bottom:627.958167pt;}
.y17{bottom:627.962500pt;}
.y95{bottom:631.482000pt;}
.yc1{bottom:631.798267pt;}
.yc2{bottom:631.801333pt;}
.y50{bottom:639.480000pt;}
.y16{bottom:639.800667pt;}
.y94{bottom:643.322267pt;}
.ybf{bottom:643.639233pt;}
.yc0{bottom:643.641600pt;}
.y4e{bottom:651.318033pt;}
.y4f{bottom:651.320400pt;}
.y15{bottom:651.322500pt;}
.y92{bottom:654.841733pt;}
.y93{bottom:654.841867pt;}
.ybe{bottom:655.161067pt;}
.y4d{bottom:662.839867pt;}
.y14{bottom:663.160667pt;}
.y91{bottom:666.363567pt;}
.ybd{bottom:666.999233pt;}
.y4c{bottom:674.680000pt;}
.y13{bottom:674.680133pt;}
.y90{bottom:678.201733pt;}
.ybc{bottom:678.525400pt;}
.y4b{bottom:686.201833pt;}
.y12{bottom:686.520533pt;}
.y8f{bottom:690.042000pt;}
.y8e{bottom:690.047467pt;}
.ybb{bottom:690.363567pt;}
.y4a{bottom:698.039233pt;}
.y10{bottom:698.039867pt;}
.y11{bottom:698.040000pt;}
.y8d{bottom:701.561467pt;}
.y8c{bottom:701.563700pt;}
.yb9{bottom:702.199367pt;}
.yba{bottom:702.201733pt;}
.y49{bottom:709.561067pt;}
.yf{bottom:709.561700pt;}
.y8b{bottom:713.401867pt;}
.yb8{bottom:713.721200pt;}
.yb7{bottom:713.723300pt;}
.y48{bottom:721.080533pt;}
.yd{bottom:721.399100pt;}
.ye{bottom:721.399867pt;}
.y8a{bottom:724.921333pt;}
.yb5{bottom:725.559233pt;}
.yb6{bottom:725.561467pt;}
.y47{bottom:732.600000pt;}
.yc{bottom:732.920933pt;}
.yb{bottom:732.926400pt;}
.y89{bottom:736.443033pt;}
.yb4{bottom:737.080300pt;}
.y9{bottom:744.438167pt;}
.ya{bottom:744.440400pt;}
.y88{bottom:748.281067pt;}
.yb3{bottom:748.599767pt;}
.y7{bottom:755.959867pt;}
.y8{bottom:755.960000pt;}
.y87{bottom:759.802900pt;}
.yb2{bottom:760.123833pt;}
.y46{bottom:767.481700pt;}
.y6{bottom:767.798033pt;}
.y86{bottom:771.641067pt;}
.yb1{bottom:771.959633pt;}
.y5{bottom:779.319867pt;}
.y85{bottom:783.162133pt;}
.yb0{bottom:783.481333pt;}
.y45{bottom:790.840800pt;}
.y4{bottom:790.841567pt;}
.y84{bottom:795.000933pt;}
.yaf{bottom:795.003167pt;}
.y44{bottom:802.358033pt;}
.y2{bottom:802.678833pt;}
.y3{bottom:802.679733pt;}
.y83{bottom:806.522000pt;}
.yae{bottom:806.841333pt;}
.y42{bottom:813.878367pt;}
.y43{bottom:813.879867pt;}
.y1{bottom:814.200667pt;}
.h44{height:38.584310pt;}
.h42{height:39.892253pt;}
.h45{height:40.848958pt;}
.h2c{height:41.200195pt;}
.h11{height:44.500000pt;}
.h20{height:45.146484pt;}
.hf{height:45.890625pt;}
.h16{height:47.109375pt;}
.h1e{height:47.281250pt;}
.h2{height:47.763672pt;}
.h7{height:47.764205pt;}
.h21{height:47.766739pt;}
.h1f{height:47.767272pt;}
.hd{height:47.772605pt;}
.h1c{height:47.773139pt;}
.h31{height:47.773672pt;}
.h3f{height:47.774605pt;}
.h13{height:47.776205pt;}
.h40{height:47.776739pt;}
.h41{height:47.778872pt;}
.h1d{height:47.782072pt;}
.h3c{height:47.782605pt;}
.h3e{height:47.784605pt;}
.h3d{height:47.788739pt;}
.h1a{height:47.794072pt;}
.h17{height:47.803005pt;}
.he{height:47.976562pt;}
.hc{height:48.417969pt;}
.h43{height:48.708031pt;}
.h2b{height:49.029005pt;}
.h2a{height:49.041005pt;}
.h19{height:49.047852pt;}
.h4{height:49.072266pt;}
.h6{height:49.701823pt;}
.h30{height:49.714090pt;}
.h15{height:49.718750pt;}
.h3{height:49.726562pt;}
.h29{height:50.331539pt;}
.h2f{height:51.009766pt;}
.h18{height:51.035156pt;}
.h38{height:52.343750pt;}
.h5{height:52.998047pt;}
.h10{height:53.539062pt;}
.h39{height:54.306641pt;}
.h26{height:54.960938pt;}
.h24{height:55.615234pt;}
.h27{height:56.269531pt;}
.h14{height:56.320312pt;}
.h34{height:56.895508pt;}
.h25{height:56.923828pt;}
.h23{height:57.549479pt;}
.h36{height:57.578125pt;}
.h1b{height:57.710938pt;}
.h32{height:58.232422pt;}
.h28{height:58.453125pt;}
.h35{height:58.886719pt;}
.ha{height:59.796875pt;}
.h3a{height:59.955729pt;}
.h37{height:60.195312pt;}
.h22{height:60.515550pt;}
.h33{height:60.849609pt;}
.h3b{height:61.140625pt;}
.h8{height:61.187500pt;}
.hb{height:61.882812pt;}
.h9{height:63.273438pt;}
.h46{height:69.875000pt;}
.h12{height:84.828125pt;}
.h2d{height:872.562267pt;}
.h2e{height:872.666667pt;}
.h1{height:877.333333pt;}
.h0{height:877.360933pt;}
.w2{width:585.200933pt;}
.w3{width:585.333333pt;}
.w0{width:589.042267pt;}
.w1{width:589.333333pt;}
.x0{left:0.000000pt;}
.x87{left:50.360800pt;}
.x71{left:51.641200pt;}
.xa2{left:63.162033pt;}
.xa8{left:68.920400pt;}
.x1{left:70.840800pt;}
.x1c{left:71.800267pt;}
.x8c{left:76.600667pt;}
.x7b{left:78.840400pt;}
.x14{left:82.360400pt;}
.x1d{left:86.520533pt;}
.x6{left:87.804500pt;}
.x22{left:89.081067pt;}
.x78{left:90.680667pt;}
.x23{left:93.560533pt;}
.x2{left:94.840800pt;}
.x32{left:97.720667pt;}
.x88{left:99.000933pt;}
.x24{left:101.561600pt;}
.x96{left:103.161200pt;}
.x3{left:105.720267pt;}
.x63{left:107.000533pt;}
.xf{left:107.961467pt;}
.x18{left:109.240267pt;}
.x28{left:111.800800pt;}
.x2d{left:115.001467pt;}
.x20{left:115.960933pt;}
.x89{left:118.200667pt;}
.x4{left:119.800267pt;}
.x74{left:122.360800pt;}
.x21{left:125.880933pt;}
.x93{left:126.840400pt;}
.x5{left:128.120667pt;}
.x30{left:129.081600pt;}
.x8f{left:130.360400pt;}
.x27{left:135.800800pt;}
.x33{left:139.320800pt;}
.x2b{left:144.121067pt;}
.x9b{left:148.921333pt;}
.x2c{left:152.760800pt;}
.x15{left:155.640667pt;}
.x72{left:158.201200pt;}
.x16{left:165.241200pt;}
.x64{left:167.480933pt;}
.x9c{left:168.440400pt;}
.x69{left:169.720667pt;}
.xa{left:170.681600pt;}
.x35{left:174.521067pt;}
.x10{left:177.081600pt;}
.x8a{left:182.841333pt;}
.x79{left:184.760267pt;}
.x11{left:186.040533pt;}
.x77{left:188.280267pt;}
.xb{left:190.521467pt;}
.x7{left:191.480933pt;}
.x65{left:193.080533pt;}
.x9d{left:195.000933pt;}
.x7a{left:197.240667pt;}
.xc{left:198.840400pt;}
.x2e{left:200.441467pt;}
.x17{left:202.681200pt;}
.x6a{left:203.961467pt;}
.x8{left:206.841333pt;}
.x9f{left:209.721200pt;}
.x2f{left:213.560533pt;}
.x12{left:217.080533pt;}
.x97{left:218.360800pt;}
.x73{left:219.641067pt;}
.x6b{left:225.081600pt;}
.x13{left:228.280800pt;}
.x9{left:233.081067pt;}
.x26{left:235.320800pt;}
.xd{left:236.920400pt;}
.x75{left:237.881333pt;}
.x31{left:240.761200pt;}
.x6c{left:244.281333pt;}
.x19{left:247.161200pt;}
.x66{left:248.120667pt;}
.x8d{left:251.000533pt;}
.x76{left:252.280800pt;}
.x90{left:254.201200pt;}
.x1a{left:257.721200pt;}
.xe{left:259.960933pt;}
.x29{left:260.920400pt;}
.x2a{left:269.240667pt;}
.x1e{left:271.161200pt;}
.x25{left:273.720267pt;}
.x36{left:275.321333pt;}
.x1f{left:280.760267pt;}
.x1b{left:282.361333pt;}
.x37{left:285.560533pt;}
.x34{left:287.800267pt;}
.x7c{left:291.320267pt;}
.x67{left:293.561467pt;}
.xa3{left:302.841333pt;}
.x9e{left:304.440933pt;}
.x94{left:305.400400pt;}
.x38{left:309.558533pt;}
.x3b{left:311.161600pt;}
.x3c{left:323.000533pt;}
.x82{left:326.520533pt;}
.x60{left:329.081067pt;}
.x5f{left:333.241200pt;}
.x7d{left:334.840800pt;}
.x98{left:336.121067pt;}
.x55{left:339.000933pt;}
.x3d{left:341.880933pt;}
.x7e{left:343.161200pt;}
.x62{left:345.081600pt;}
.xa5{left:347.321333pt;}
.xa0{left:348.601600pt;}
.x4a{left:350.201200pt;}
.x3e{left:352.440933pt;}
.x48{left:355.001467pt;}
.x6d{left:360.121067pt;}
.x41{left:361.401333pt;}
.x95{left:366.840400pt;}
.x49{left:367.801333pt;}
.x42{left:372.601600pt;}
.xa1{left:374.201200pt;}
.x56{left:376.760267pt;}
.xa4{left:378.680667pt;}
.x4d{left:380.280267pt;}
.x84{left:381.241200pt;}
.x91{left:382.200667pt;}
.x5d{left:385.401333pt;}
.x57{left:388.600533pt;}
.x85{left:390.840400pt;}
.x4e{left:391.801333pt;}
.x83{left:394.681200pt;}
.x46{left:395.640667pt;}
.x5e{left:396.601600pt;}
.x58{left:398.841333pt;}
.x99{left:400.440933pt;}
.xa6{left:405.881333pt;}
.x47{left:406.840800pt;}
.x6f{left:409.401333pt;}
.xa7{left:418.360400pt;}
.x8b{left:419.961467pt;}
.x51{left:425.721200pt;}
.x81{left:434.360800pt;}
.x92{left:436.281200pt;}
.x52{left:437.240667pt;}
.x61{left:444.920933pt;}
.x59{left:449.721200pt;}
.x8e{left:454.521467pt;}
.x6e{left:456.121067pt;}
.x39{left:457.080533pt;}
.x5a{left:461.561600pt;}
.x3f{left:465.400933pt;}
.x54{left:467.000533pt;}
.x43{left:468.601600pt;}
.x40{left:476.601067pt;}
.x44{left:479.161600pt;}
.x3a{left:485.240667pt;}
.x9a{left:486.840400pt;}
.x70{left:487.801333pt;}
.x7f{left:488.760800pt;}
.x5b{left:492.601600pt;}
.x86{left:494.520533pt;}
.x80{left:499.320800pt;}
.x5c{left:502.840800pt;}
.x68{left:504.761200pt;}
.x4b{left:510.521067pt;}
.x4f{left:512.760800pt;}
.x4c{left:522.361333pt;}
.x50{left:524.280267pt;}
.x45{left:527.480933pt;}
.x53{left:529.401333pt;}
}




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