
    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_788589b00d8af658e7bf3e61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740267;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_32426be6ec29e7d9ed1e8a47.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;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_375ef0701254806f08a30fb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_6347045e5919b01926cd0c87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677000;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_a6b4da69ad3241be91144259.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.846000;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_ade8a5ebaeee8d30bb358b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_27c8c9425a2d5ec4a84c1dcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948385;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_cb5e7cf3892bfcf83f02e57f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003000;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_164717c034bb2f4df110cfe7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.954000;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_5ea324d120a0956d9314331d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.164000;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_5c430c60e294bfb9610abb06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_be14db07e8ca061a3f0c5cdc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_dfdfd1300668b233baab7da0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6e19b18314d045be8885768a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d67fcfb21d2a1b5f6c1ef63a.woff2')format("woff");}.fff{font-family:fff;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1118bf3525dda5cab77c55f0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.677000;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;}
.mc{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240518,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243068,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.243830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243830,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244205,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244207,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244216,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.244367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244367,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.245214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245214,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245523,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.245636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245636,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245641,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247470,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m55{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,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);}
.m58{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252833,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252916,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252997,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253980,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254036,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254209,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.255082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255082,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255094,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255211,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255420,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.255561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255561,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.256377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256377,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256467,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.981000px;}
.v2{vertical-align:21.978000px;}
.ls13{letter-spacing:-5.022000px;}
.ls48{letter-spacing:-4.860000px;}
.ls2a{letter-spacing:-2.052000px;}
.ls4a{letter-spacing:-1.998000px;}
.ls12{letter-spacing:-1.944000px;}
.ls26{letter-spacing:-1.890000px;}
.ls46{letter-spacing:-1.836000px;}
.ls45{letter-spacing:-1.674000px;}
.ls2c{letter-spacing:-1.404000px;}
.ls4b{letter-spacing:-1.134000px;}
.ls28{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.858000px;}
.lsf{letter-spacing:-0.726000px;}
.ls11{letter-spacing:-0.660000px;}
.ls4d{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls2{letter-spacing:-0.462000px;}
.ls4c{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.285000px;}
.ls1b{letter-spacing:-0.264000px;}
.ls19{letter-spacing:-0.198000px;}
.lse{letter-spacing:-0.171000px;}
.ls27{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.132000px;}
.ls29{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.066000px;}
.ls49{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000269px;}
.lsd{letter-spacing:0.000600px;}
.ls4f{letter-spacing:0.033000px;}
.ls1e{letter-spacing:0.047595px;}
.ls1c{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.066000px;}
.ls31{letter-spacing:0.089043px;}
.ls36{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.114000px;}
.ls3c{letter-spacing:0.116801px;}
.ls18{letter-spacing:0.132000px;}
.lsb{letter-spacing:0.157097px;}
.ls9{letter-spacing:0.157685px;}
.ls7{letter-spacing:0.162000px;}
.ls4e{letter-spacing:0.165000px;}
.ls17{letter-spacing:0.198000px;}
.ls2d{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.300600px;}
.ls20{letter-spacing:0.301200px;}
.ls4{letter-spacing:0.342000px;}
.ls2e{letter-spacing:0.399000px;}
.ls25{letter-spacing:0.718800px;}
.ls24{letter-spacing:0.719400px;}
.ls33{letter-spacing:1.072800px;}
.ls32{letter-spacing:1.073400px;}
.ls44{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.123200px;}
.ls39{letter-spacing:1.123800px;}
.ls23{letter-spacing:1.297800px;}
.ls22{letter-spacing:1.298400px;}
.ls2f{letter-spacing:1.428000px;}
.ls35{letter-spacing:1.693800px;}
.ls34{letter-spacing:1.694400px;}
.ls3a{letter-spacing:1.808400px;}
.ls3b{letter-spacing:1.809000px;}
.ls47{letter-spacing:1.836000px;}
.ls3f{letter-spacing:2.234789px;}
.ls43{letter-spacing:2.242200px;}
.ls41{letter-spacing:2.242800px;}
.ls42{letter-spacing:2.243400px;}
.lsc{letter-spacing:2.369728px;}
.ls1f{letter-spacing:2.397992px;}
.ls1d{letter-spacing:2.398588px;}
.ls37{letter-spacing:2.426868px;}
.ls40{letter-spacing:2.430678px;}
.ls3e{letter-spacing:2.446594px;}
.ls3d{letter-spacing:2.447185px;}
.ls8{letter-spacing:2.475174px;}
.lsa{letter-spacing:2.475762px;}
.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;}
}
.ws21{word-spacing:-13.200000px;}
.ws18{word-spacing:-12.483000px;}
.ws8{word-spacing:-11.988000px;}
.ws3d{word-spacing:-11.934000px;}
.ws23{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.826000px;}
.ws40{word-spacing:-11.772000px;}
.ws27{word-spacing:-11.718000px;}
.ws25{word-spacing:-11.664000px;}
.ws5{word-spacing:-11.520000px;}
.ws29{word-spacing:-11.232000px;}
.ws26{word-spacing:-10.854000px;}
.wsa{word-spacing:-10.800000px;}
.ws2b{word-spacing:-10.692000px;}
.ws3c{word-spacing:-10.152000px;}
.ws3e{word-spacing:-9.990000px;}
.ws24{word-spacing:-9.936000px;}
.ws7{word-spacing:-9.882000px;}
.ws41{word-spacing:-9.828000px;}
.ws28{word-spacing:-9.774000px;}
.ws2a{word-spacing:-9.396000px;}
.ws33{word-spacing:-8.426682px;}
.ws3f{word-spacing:-6.966000px;}
.ws9{word-spacing:-6.804000px;}
.ws1{word-spacing:-4.686000px;}
.ws38{word-spacing:-2.565000px;}
.ws2c{word-spacing:-2.508000px;}
.ws30{word-spacing:-2.376000px;}
.ws11{word-spacing:-2.280000px;}
.ws39{word-spacing:-2.223000px;}
.wsc{word-spacing:-2.109000px;}
.ws44{word-spacing:-1.836000px;}
.ws2d{word-spacing:-1.767000px;}
.ws48{word-spacing:-1.653000px;}
.ws2{word-spacing:-1.440000px;}
.ws3b{word-spacing:-1.368000px;}
.ws10{word-spacing:-1.311000px;}
.ws31{word-spacing:-1.296000px;}
.ws49{word-spacing:-1.083000px;}
.ws42{word-spacing:-1.080000px;}
.ws35{word-spacing:-0.513000px;}
.ws12{word-spacing:-0.399000px;}
.ws37{word-spacing:-0.342000px;}
.ws0{word-spacing:-0.288000px;}
.ws1b{word-spacing:-0.264000px;}
.ws34{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.198000px;}
.ws17{word-spacing:-0.162000px;}
.ws20{word-spacing:-0.132000px;}
.ws43{word-spacing:-0.108000px;}
.ws1c{word-spacing:-0.066000px;}
.ws2e{word-spacing:-0.054000px;}
.ws1a{word-spacing:-0.039000px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.066000px;}
.ws32{word-spacing:0.108000px;}
.ws1e{word-spacing:0.132000px;}
.ws2f{word-spacing:0.162000px;}
.ws1d{word-spacing:0.198000px;}
.ws22{word-spacing:0.264000px;}
.ws45{word-spacing:0.432000px;}
.ws15{word-spacing:0.660000px;}
.ws13{word-spacing:0.726000px;}
.ws4a{word-spacing:0.741000px;}
.ws14{word-spacing:0.858000px;}
.wse{word-spacing:1.482000px;}
.wsf{word-spacing:1.653000px;}
.ws36{word-spacing:2.052000px;}
.ws46{word-spacing:2.268000px;}
.wsd{word-spacing:2.280000px;}
.ws16{word-spacing:2.484000px;}
.ws4{word-spacing:2.832000px;}
.ws47{word-spacing:3.420000px;}
.wsb{word-spacing:3.591000px;}
.ws3a{word-spacing:3.876000px;}
._4{margin-left:-7.416000px;}
._7{margin-left:-5.769000px;}
._0{margin-left:-4.752000px;}
._5{margin-left:-3.649800px;}
._8{margin-left:-2.623228px;}
._1{margin-left:-1.584000px;}
._9{width:1.089000px;}
._3{width:2.270400px;}
._2{width:3.556800px;}
._6{width:5.765213px;}
._a{width:8.532000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:33.231000px;}
.fs5{font-size:38.478000px;}
.fs8{font-size:39.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs4{font-size:363.030000px;}
.y0{bottom:0.000000px;}
.y32{bottom:106.299150px;}
.y1e{bottom:106.299450px;}
.y31{bottom:125.799150px;}
.y1d{bottom:125.799450px;}
.y91{bottom:128.856750px;}
.y5e{bottom:129.272100px;}
.ya9{bottom:142.269900px;}
.y73{bottom:145.299150px;}
.y1c{bottom:145.299450px;}
.y93{bottom:146.819550px;}
.y90{bottom:151.414200px;}
.y5d{bottom:152.244900px;}
.yc6{bottom:153.250200px;}
.ya8{bottom:164.769900px;}
.y72{bottom:164.799150px;}
.y1b{bottom:164.799450px;}
.y30{bottom:166.791900px;}
.y7d{bottom:167.354250px;}
.y8f{bottom:173.971800px;}
.ybb{bottom:175.210350px;}
.y5c{bottom:175.217700px;}
.yc5{bottom:182.004150px;}
.y2f{bottom:183.291900px;}
.y7c{bottom:183.854250px;}
.y71{bottom:184.299150px;}
.y1a{bottom:184.299450px;}
.y4f{bottom:185.087250px;}
.ya7{bottom:187.269900px;}
.y8e{bottom:196.529250px;}
.yba{bottom:197.710350px;}
.y5b{bottom:198.190650px;}
.y63{bottom:198.328350px;}
.y7b{bottom:200.354250px;}
.y70{bottom:203.799150px;}
.y19{bottom:203.799600px;}
.y4e{bottom:207.587250px;}
.ya6{bottom:209.769900px;}
.yc4{bottom:210.757950px;}
.y62{bottom:214.828350px;}
.y7a{bottom:216.854250px;}
.yb9{bottom:220.210350px;}
.y5a{bottom:221.163450px;}
.y6f{bottom:223.299150px;}
.y4d{bottom:230.087250px;}
.yc3{bottom:231.007950px;}
.y8d{bottom:231.842700px;}
.ya5{bottom:232.269900px;}
.y79{bottom:233.354250px;}
.yb8{bottom:242.710350px;}
.y6e{bottom:242.799150px;}
.y59{bottom:244.136400px;}
.y78{bottom:249.854250px;}
.yc2{bottom:251.257950px;}
.y4c{bottom:252.587250px;}
.y18{bottom:252.763950px;}
.ya4{bottom:254.769900px;}
.y6d{bottom:262.299150px;}
.yb7{bottom:265.210350px;}
.y77{bottom:266.354250px;}
.y58{bottom:267.109200px;}
.yc1{bottom:271.507950px;}
.y4b{bottom:275.087250px;}
.ya3{bottom:277.269900px;}
.y6c{bottom:281.799150px;}
.y76{bottom:282.854250px;}
.yb6{bottom:287.710350px;}
.y57{bottom:290.082000px;}
.yc0{bottom:291.757950px;}
.y4a{bottom:297.587250px;}
.y75{bottom:299.354250px;}
.ya2{bottom:299.769900px;}
.y6b{bottom:301.299150px;}
.yb5{bottom:310.210350px;}
.y56{bottom:313.054800px;}
.y74{bottom:315.854250px;}
.y49{bottom:320.087250px;}
.y6a{bottom:320.799150px;}
.ya1{bottom:322.269900px;}
.yb4{bottom:332.710350px;}
.y55{bottom:336.027750px;}
.y9a{bottom:340.299150px;}
.y48{bottom:342.587250px;}
.yc8{bottom:344.409450px;}
.ya0{bottom:344.769900px;}
.yb3{bottom:355.210350px;}
.y54{bottom:359.000550px;}
.y99{bottom:359.799150px;}
.yc7{bottom:360.909450px;}
.y69{bottom:364.573500px;}
.y47{bottom:365.087250px;}
.y9f{bottom:367.269900px;}
.yb2{bottom:377.710350px;}
.y98{bottom:379.299150px;}
.y53{bottom:381.973500px;}
.y68{bottom:384.823500px;}
.y46{bottom:387.587250px;}
.y9e{bottom:389.769900px;}
.y97{bottom:398.799150px;}
.yb1{bottom:400.210350px;}
.y52{bottom:404.946300px;}
.y67{bottom:405.073500px;}
.y45{bottom:410.087250px;}
.y9d{bottom:412.269900px;}
.y96{bottom:418.299150px;}
.y92{bottom:424.083300px;}
.y7{bottom:425.499450px;}
.y51{bottom:427.919100px;}
.yb0{bottom:431.214300px;}
.y44{bottom:432.587250px;}
.y66{bottom:433.827450px;}
.y9c{bottom:434.769900px;}
.y95{bottom:437.799150px;}
.y5{bottom:444.529350px;}
.y50{bottom:450.892050px;}
.yaf{bottom:451.464300px;}
.y43{bottom:455.087250px;}
.y65{bottom:456.327450px;}
.y9b{bottom:457.269900px;}
.y4{bottom:462.529350px;}
.yae{bottom:471.714300px;}
.y42{bottom:477.587250px;}
.y64{bottom:491.583300px;}
.yad{bottom:491.964300px;}
.y41{bottom:500.087250px;}
.y61{bottom:504.978000px;}
.yac{bottom:511.356000px;}
.y3{bottom:513.648750px;}
.y2e{bottom:521.063550px;}
.y60{bottom:521.478000px;}
.y40{bottom:522.587250px;}
.yab{bottom:527.856000px;}
.y2{bottom:531.648750px;}
.y8c{bottom:535.720500px;}
.y5f{bottom:537.978000px;}
.y2d{bottom:541.313550px;}
.yaa{bottom:544.356000px;}
.ybf{bottom:544.615650px;}
.y3f{bottom:545.087250px;}
.y1{bottom:555.721050px;}
.y8b{bottom:556.027950px;}
.ybe{bottom:561.115650px;}
.y3e{bottom:567.587250px;}
.y2c{bottom:570.067500px;}
.y8a{bottom:576.335550px;}
.ybd{bottom:577.615650px;}
.y3d{bottom:590.087250px;}
.y2b{bottom:590.317500px;}
.ybc{bottom:594.115650px;}
.y89{bottom:596.643000px;}
.y16{bottom:598.767900px;}
.y17{bottom:604.262400px;}
.y3c{bottom:612.587250px;}
.y88{bottom:616.950600px;}
.y94{bottom:618.081750px;}
.y2a{bottom:619.071450px;}
.y15{bottom:621.267900px;}
.y3b{bottom:635.087250px;}
.y87{bottom:637.258050px;}
.y29{bottom:639.321450px;}
.y11{bottom:643.767900px;}
.y14{bottom:649.262400px;}
.y86{bottom:657.565500px;}
.y3a{bottom:657.587250px;}
.y13{bottom:666.267900px;}
.y28{bottom:668.075400px;}
.y85{bottom:677.873100px;}
.y39{bottom:680.087250px;}
.y27{bottom:688.325400px;}
.y12{bottom:688.767900px;}
.y84{bottom:698.180550px;}
.y38{bottom:702.587250px;}
.y26{bottom:717.079350px;}
.y83{bottom:718.488150px;}
.y10{bottom:719.771850px;}
.y37{bottom:725.087250px;}
.y25{bottom:737.329350px;}
.yf{bottom:740.021850px;}
.y82{bottom:747.299550px;}
.y36{bottom:747.587250px;}
.ye{bottom:760.271850px;}
.y24{bottom:766.083300px;}
.y81{bottom:769.857150px;}
.y35{bottom:770.087250px;}
.yd{bottom:780.521850px;}
.y23{bottom:786.333300px;}
.y80{bottom:792.414600px;}
.y34{bottom:792.587250px;}
.yc{bottom:800.771850px;}
.y7f{bottom:814.972200px;}
.y22{bottom:815.087250px;}
.yb{bottom:821.021850px;}
.y7e{bottom:837.529650px;}
.y21{bottom:837.587250px;}
.ya{bottom:841.271850px;}
.y6{bottom:857.984250px;}
.y20{bottom:860.087250px;}
.y9{bottom:861.521850px;}
.y33{bottom:871.653600px;}
.y1f{bottom:930.708000px;}
.y8{bottom:946.686000px;}
.ha{height:26.973078px;}
.hb{height:33.168036px;}
.h11{height:33.618000px;}
.h6{height:34.530462px;}
.he{height:38.914200px;}
.hf{height:39.957000px;}
.h4{height:41.376000px;}
.h7{height:42.180000px;}
.h3{height:43.584000px;}
.hc{height:44.160000px;}
.hd{height:46.548000px;}
.h2{height:47.561800px;}
.h12{height:47.626122px;}
.h10{height:49.134000px;}
.h5{height:54.678000px;}
.h9{height:56.892000px;}
.h8{height:312.931860px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x15{left:40.770150px;}
.xc{left:42.255150px;}
.x4{left:103.186200px;}
.x1{left:106.291050px;}
.x1b{left:110.709450px;}
.x1a{left:121.485450px;}
.xe{left:131.733450px;}
.xd{left:136.063050px;}
.x2{left:137.359950px;}
.x1d{left:141.699300px;}
.x5{left:144.099750px;}
.x1f{left:150.717450px;}
.xf{left:155.949300px;}
.x12{left:161.133450px;}
.x18{left:164.967450px;}
.x13{left:173.613450px;}
.x3{left:191.338650px;}
.x16{left:221.667300px;}
.x14{left:250.857450px;}
.x1c{left:252.062850px;}
.xb{left:259.965450px;}
.x8{left:273.306750px;}
.x9{left:279.698850px;}
.x20{left:280.785450px;}
.x17{left:350.787450px;}
.x1e{left:366.732300px;}
.x6{left:372.296100px;}
.x7{left:373.842600px;}
.xa{left:590.750550px;}
.x19{left:636.639750px;}
.x10{left:637.908750px;}
.x11{left:645.842550px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.872000pt;}
.v2{vertical-align:19.536000pt;}
.ls13{letter-spacing:-4.464000pt;}
.ls48{letter-spacing:-4.320000pt;}
.ls2a{letter-spacing:-1.824000pt;}
.ls4a{letter-spacing:-1.776000pt;}
.ls12{letter-spacing:-1.728000pt;}
.ls26{letter-spacing:-1.680000pt;}
.ls46{letter-spacing:-1.632000pt;}
.ls45{letter-spacing:-1.488000pt;}
.ls2c{letter-spacing:-1.248000pt;}
.ls4b{letter-spacing:-1.008000pt;}
.ls28{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.762667pt;}
.lsf{letter-spacing:-0.645333pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls4d{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls2{letter-spacing:-0.410667pt;}
.ls4c{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.253333pt;}
.ls1b{letter-spacing:-0.234667pt;}
.ls19{letter-spacing:-0.176000pt;}
.lse{letter-spacing:-0.152000pt;}
.ls27{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.117333pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.058667pt;}
.ls49{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000239pt;}
.lsd{letter-spacing:0.000533pt;}
.ls4f{letter-spacing:0.029333pt;}
.ls1e{letter-spacing:0.042307pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.058667pt;}
.ls31{letter-spacing:0.079149pt;}
.ls36{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.101333pt;}
.ls3c{letter-spacing:0.103823pt;}
.ls18{letter-spacing:0.117333pt;}
.lsb{letter-spacing:0.139642pt;}
.ls9{letter-spacing:0.140165pt;}
.ls7{letter-spacing:0.144000pt;}
.ls4e{letter-spacing:0.146667pt;}
.ls17{letter-spacing:0.176000pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.267200pt;}
.ls20{letter-spacing:0.267733pt;}
.ls4{letter-spacing:0.304000pt;}
.ls2e{letter-spacing:0.354667pt;}
.ls25{letter-spacing:0.638933pt;}
.ls24{letter-spacing:0.639467pt;}
.ls33{letter-spacing:0.953600pt;}
.ls32{letter-spacing:0.954133pt;}
.ls44{letter-spacing:0.960000pt;}
.ls38{letter-spacing:0.998400pt;}
.ls39{letter-spacing:0.998933pt;}
.ls23{letter-spacing:1.153600pt;}
.ls22{letter-spacing:1.154133pt;}
.ls2f{letter-spacing:1.269333pt;}
.ls35{letter-spacing:1.505600pt;}
.ls34{letter-spacing:1.506133pt;}
.ls3a{letter-spacing:1.607467pt;}
.ls3b{letter-spacing:1.608000pt;}
.ls47{letter-spacing:1.632000pt;}
.ls3f{letter-spacing:1.986479pt;}
.ls43{letter-spacing:1.993067pt;}
.ls41{letter-spacing:1.993600pt;}
.ls42{letter-spacing:1.994133pt;}
.lsc{letter-spacing:2.106425pt;}
.ls1f{letter-spacing:2.131548pt;}
.ls1d{letter-spacing:2.132078pt;}
.ls37{letter-spacing:2.157216pt;}
.ls40{letter-spacing:2.160603pt;}
.ls3e{letter-spacing:2.174750pt;}
.ls3d{letter-spacing:2.175276pt;}
.ls8{letter-spacing:2.200155pt;}
.lsa{letter-spacing:2.200677pt;}
.ws21{word-spacing:-11.733333pt;}
.ws18{word-spacing:-11.096000pt;}
.ws8{word-spacing:-10.656000pt;}
.ws3d{word-spacing:-10.608000pt;}
.ws23{word-spacing:-10.560000pt;}
.ws6{word-spacing:-10.512000pt;}
.ws40{word-spacing:-10.464000pt;}
.ws27{word-spacing:-10.416000pt;}
.ws25{word-spacing:-10.368000pt;}
.ws5{word-spacing:-10.240000pt;}
.ws29{word-spacing:-9.984000pt;}
.ws26{word-spacing:-9.648000pt;}
.wsa{word-spacing:-9.600000pt;}
.ws2b{word-spacing:-9.504000pt;}
.ws3c{word-spacing:-9.024000pt;}
.ws3e{word-spacing:-8.880000pt;}
.ws24{word-spacing:-8.832000pt;}
.ws7{word-spacing:-8.784000pt;}
.ws41{word-spacing:-8.736000pt;}
.ws28{word-spacing:-8.688000pt;}
.ws2a{word-spacing:-8.352000pt;}
.ws33{word-spacing:-7.490384pt;}
.ws3f{word-spacing:-6.192000pt;}
.ws9{word-spacing:-6.048000pt;}
.ws1{word-spacing:-4.165333pt;}
.ws38{word-spacing:-2.280000pt;}
.ws2c{word-spacing:-2.229333pt;}
.ws30{word-spacing:-2.112000pt;}
.ws11{word-spacing:-2.026667pt;}
.ws39{word-spacing:-1.976000pt;}
.wsc{word-spacing:-1.874667pt;}
.ws44{word-spacing:-1.632000pt;}
.ws2d{word-spacing:-1.570667pt;}
.ws48{word-spacing:-1.469333pt;}
.ws2{word-spacing:-1.280000pt;}
.ws3b{word-spacing:-1.216000pt;}
.ws10{word-spacing:-1.165333pt;}
.ws31{word-spacing:-1.152000pt;}
.ws49{word-spacing:-0.962667pt;}
.ws42{word-spacing:-0.960000pt;}
.ws35{word-spacing:-0.456000pt;}
.ws12{word-spacing:-0.354667pt;}
.ws37{word-spacing:-0.304000pt;}
.ws0{word-spacing:-0.256000pt;}
.ws1b{word-spacing:-0.234667pt;}
.ws34{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.176000pt;}
.ws17{word-spacing:-0.144000pt;}
.ws20{word-spacing:-0.117333pt;}
.ws43{word-spacing:-0.096000pt;}
.ws1c{word-spacing:-0.058667pt;}
.ws2e{word-spacing:-0.048000pt;}
.ws1a{word-spacing:-0.034667pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.058667pt;}
.ws32{word-spacing:0.096000pt;}
.ws1e{word-spacing:0.117333pt;}
.ws2f{word-spacing:0.144000pt;}
.ws1d{word-spacing:0.176000pt;}
.ws22{word-spacing:0.234667pt;}
.ws45{word-spacing:0.384000pt;}
.ws15{word-spacing:0.586667pt;}
.ws13{word-spacing:0.645333pt;}
.ws4a{word-spacing:0.658667pt;}
.ws14{word-spacing:0.762667pt;}
.wse{word-spacing:1.317333pt;}
.wsf{word-spacing:1.469333pt;}
.ws36{word-spacing:1.824000pt;}
.ws46{word-spacing:2.016000pt;}
.wsd{word-spacing:2.026667pt;}
.ws16{word-spacing:2.208000pt;}
.ws4{word-spacing:2.517333pt;}
.ws47{word-spacing:3.040000pt;}
.wsb{word-spacing:3.192000pt;}
.ws3a{word-spacing:3.445333pt;}
._4{margin-left:-6.592000pt;}
._7{margin-left:-5.128000pt;}
._0{margin-left:-4.224000pt;}
._5{margin-left:-3.244267pt;}
._8{margin-left:-2.331758pt;}
._1{margin-left:-1.408000pt;}
._9{width:0.968000pt;}
._3{width:2.018133pt;}
._2{width:3.161600pt;}
._6{width:5.124634pt;}
._a{width:7.584000pt;}
.fs7{font-size:29.538667pt;}
.fs5{font-size:34.202667pt;}
.fs8{font-size:34.666667pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs4{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:94.488133pt;}
.y1e{bottom:94.488400pt;}
.y31{bottom:111.821467pt;}
.y1d{bottom:111.821733pt;}
.y91{bottom:114.539333pt;}
.y5e{bottom:114.908533pt;}
.ya9{bottom:126.462133pt;}
.y73{bottom:129.154800pt;}
.y1c{bottom:129.155067pt;}
.y93{bottom:130.506267pt;}
.y90{bottom:134.590400pt;}
.y5d{bottom:135.328800pt;}
.yc6{bottom:136.222400pt;}
.ya8{bottom:146.462133pt;}
.y72{bottom:146.488133pt;}
.y1b{bottom:146.488400pt;}
.y30{bottom:148.259467pt;}
.y7d{bottom:148.759333pt;}
.y8f{bottom:154.641600pt;}
.ybb{bottom:155.742533pt;}
.y5c{bottom:155.749067pt;}
.yc5{bottom:161.781467pt;}
.y2f{bottom:162.926133pt;}
.y7c{bottom:163.426000pt;}
.y71{bottom:163.821467pt;}
.y1a{bottom:163.821733pt;}
.y4f{bottom:164.522000pt;}
.ya7{bottom:166.462133pt;}
.y8e{bottom:174.692667pt;}
.yba{bottom:175.742533pt;}
.y5b{bottom:176.169467pt;}
.y63{bottom:176.291867pt;}
.y7b{bottom:178.092667pt;}
.y70{bottom:181.154800pt;}
.y19{bottom:181.155200pt;}
.y4e{bottom:184.522000pt;}
.ya6{bottom:186.462133pt;}
.yc4{bottom:187.340400pt;}
.y62{bottom:190.958533pt;}
.y7a{bottom:192.759333pt;}
.yb9{bottom:195.742533pt;}
.y5a{bottom:196.589733pt;}
.y6f{bottom:198.488133pt;}
.y4d{bottom:204.522000pt;}
.yc3{bottom:205.340400pt;}
.y8d{bottom:206.082400pt;}
.ya5{bottom:206.462133pt;}
.y79{bottom:207.426000pt;}
.yb8{bottom:215.742533pt;}
.y6e{bottom:215.821467pt;}
.y59{bottom:217.010133pt;}
.y78{bottom:222.092667pt;}
.yc2{bottom:223.340400pt;}
.y4c{bottom:224.522000pt;}
.y18{bottom:224.679067pt;}
.ya4{bottom:226.462133pt;}
.y6d{bottom:233.154800pt;}
.yb7{bottom:235.742533pt;}
.y77{bottom:236.759333pt;}
.y58{bottom:237.430400pt;}
.yc1{bottom:241.340400pt;}
.y4b{bottom:244.522000pt;}
.ya3{bottom:246.462133pt;}
.y6c{bottom:250.488133pt;}
.y76{bottom:251.426000pt;}
.yb6{bottom:255.742533pt;}
.y57{bottom:257.850667pt;}
.yc0{bottom:259.340400pt;}
.y4a{bottom:264.522000pt;}
.y75{bottom:266.092667pt;}
.ya2{bottom:266.462133pt;}
.y6b{bottom:267.821467pt;}
.yb5{bottom:275.742533pt;}
.y56{bottom:278.270933pt;}
.y74{bottom:280.759333pt;}
.y49{bottom:284.522000pt;}
.y6a{bottom:285.154800pt;}
.ya1{bottom:286.462133pt;}
.yb4{bottom:295.742533pt;}
.y55{bottom:298.691333pt;}
.y9a{bottom:302.488133pt;}
.y48{bottom:304.522000pt;}
.yc8{bottom:306.141733pt;}
.ya0{bottom:306.462133pt;}
.yb3{bottom:315.742533pt;}
.y54{bottom:319.111600pt;}
.y99{bottom:319.821467pt;}
.yc7{bottom:320.808400pt;}
.y69{bottom:324.065333pt;}
.y47{bottom:324.522000pt;}
.y9f{bottom:326.462133pt;}
.yb2{bottom:335.742533pt;}
.y98{bottom:337.154800pt;}
.y53{bottom:339.532000pt;}
.y68{bottom:342.065333pt;}
.y46{bottom:344.522000pt;}
.y9e{bottom:346.462133pt;}
.y97{bottom:354.488133pt;}
.yb1{bottom:355.742533pt;}
.y52{bottom:359.952267pt;}
.y67{bottom:360.065333pt;}
.y45{bottom:364.522000pt;}
.y9d{bottom:366.462133pt;}
.y96{bottom:371.821467pt;}
.y92{bottom:376.962933pt;}
.y7{bottom:378.221733pt;}
.y51{bottom:380.372533pt;}
.yb0{bottom:383.301600pt;}
.y44{bottom:384.522000pt;}
.y66{bottom:385.624400pt;}
.y9c{bottom:386.462133pt;}
.y95{bottom:389.154800pt;}
.y5{bottom:395.137200pt;}
.y50{bottom:400.792933pt;}
.yaf{bottom:401.301600pt;}
.y43{bottom:404.522000pt;}
.y65{bottom:405.624400pt;}
.y9b{bottom:406.462133pt;}
.y4{bottom:411.137200pt;}
.yae{bottom:419.301600pt;}
.y42{bottom:424.522000pt;}
.y64{bottom:436.962933pt;}
.yad{bottom:437.301600pt;}
.y41{bottom:444.522000pt;}
.y61{bottom:448.869333pt;}
.yac{bottom:454.538667pt;}
.y3{bottom:456.576667pt;}
.y2e{bottom:463.167600pt;}
.y60{bottom:463.536000pt;}
.y40{bottom:464.522000pt;}
.yab{bottom:469.205333pt;}
.y2{bottom:472.576667pt;}
.y8c{bottom:476.196000pt;}
.y5f{bottom:478.202667pt;}
.y2d{bottom:481.167600pt;}
.yaa{bottom:483.872000pt;}
.ybf{bottom:484.102800pt;}
.y3f{bottom:484.522000pt;}
.y1{bottom:493.974267pt;}
.y8b{bottom:494.247067pt;}
.ybe{bottom:498.769467pt;}
.y3e{bottom:504.522000pt;}
.y2c{bottom:506.726667pt;}
.y8a{bottom:512.298267pt;}
.ybd{bottom:513.436133pt;}
.y3d{bottom:524.522000pt;}
.y2b{bottom:524.726667pt;}
.ybc{bottom:528.102800pt;}
.y89{bottom:530.349333pt;}
.y16{bottom:532.238133pt;}
.y17{bottom:537.122133pt;}
.y3c{bottom:544.522000pt;}
.y88{bottom:548.400533pt;}
.y94{bottom:549.406000pt;}
.y2a{bottom:550.285733pt;}
.y15{bottom:552.238133pt;}
.y3b{bottom:564.522000pt;}
.y87{bottom:566.451600pt;}
.y29{bottom:568.285733pt;}
.y11{bottom:572.238133pt;}
.y14{bottom:577.122133pt;}
.y86{bottom:584.502667pt;}
.y3a{bottom:584.522000pt;}
.y13{bottom:592.238133pt;}
.y28{bottom:593.844800pt;}
.y85{bottom:602.553867pt;}
.y39{bottom:604.522000pt;}
.y27{bottom:611.844800pt;}
.y12{bottom:612.238133pt;}
.y84{bottom:620.604933pt;}
.y38{bottom:624.522000pt;}
.y26{bottom:637.403867pt;}
.y83{bottom:638.656133pt;}
.y10{bottom:639.797200pt;}
.y37{bottom:644.522000pt;}
.y25{bottom:655.403867pt;}
.yf{bottom:657.797200pt;}
.y82{bottom:664.266267pt;}
.y36{bottom:664.522000pt;}
.ye{bottom:675.797200pt;}
.y24{bottom:680.962933pt;}
.y81{bottom:684.317467pt;}
.y35{bottom:684.522000pt;}
.yd{bottom:693.797200pt;}
.y23{bottom:698.962933pt;}
.y80{bottom:704.368533pt;}
.y34{bottom:704.522000pt;}
.yc{bottom:711.797200pt;}
.y7f{bottom:724.419733pt;}
.y22{bottom:724.522000pt;}
.yb{bottom:729.797200pt;}
.y7e{bottom:744.470800pt;}
.y21{bottom:744.522000pt;}
.ya{bottom:747.797200pt;}
.y6{bottom:762.652667pt;}
.y20{bottom:764.522000pt;}
.y9{bottom:765.797200pt;}
.y33{bottom:774.803200pt;}
.y1f{bottom:827.296000pt;}
.y8{bottom:841.498667pt;}
.ha{height:23.976069pt;}
.hb{height:29.482699pt;}
.h11{height:29.882667pt;}
.h6{height:30.693744pt;}
.he{height:34.590400pt;}
.hf{height:35.517333pt;}
.h4{height:36.778667pt;}
.h7{height:37.493333pt;}
.h3{height:38.741333pt;}
.hc{height:39.253333pt;}
.hd{height:41.376000pt;}
.h2{height:42.277156pt;}
.h12{height:42.334331pt;}
.h10{height:43.674667pt;}
.h5{height:48.602667pt;}
.h9{height:50.570667pt;}
.h8{height:278.161653pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x15{left:36.240133pt;}
.xc{left:37.560133pt;}
.x4{left:91.721067pt;}
.x1{left:94.480933pt;}
.x1b{left:98.408400pt;}
.x1a{left:107.987067pt;}
.xe{left:117.096400pt;}
.xd{left:120.944933pt;}
.x2{left:122.097733pt;}
.x1d{left:125.954933pt;}
.x5{left:128.088667pt;}
.x1f{left:133.971067pt;}
.xf{left:138.621600pt;}
.x12{left:143.229733pt;}
.x18{left:146.637733pt;}
.x13{left:154.323067pt;}
.x3{left:170.078800pt;}
.x16{left:197.037600pt;}
.x14{left:222.984400pt;}
.x1c{left:224.055867pt;}
.xb{left:231.080400pt;}
.x8{left:242.939333pt;}
.x9{left:248.621200pt;}
.x20{left:249.587067pt;}
.x17{left:311.811067pt;}
.x1e{left:325.984267pt;}
.x6{left:330.929867pt;}
.x7{left:332.304533pt;}
.xa{left:525.111600pt;}
.x19{left:565.902000pt;}
.x10{left:567.030000pt;}
.x11{left:574.082267pt;}
}




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