
    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_817bfd5bd0ba7e61166f4722.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1cc6f7f8960a0e9fe5a7213c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4890e53cdfb19af704295955.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.168000;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_ee9b5ef4d9863bfef39cb865.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0cd6c73273e420189cabeb07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.167000;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_dddd61a86878ea809137a91b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.167000;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;}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,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);}
.m3a{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-1.620000px;}
.ls24{letter-spacing:-1.500000px;}
.ls1d{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.399000px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.342000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.285000px;}
.ls6{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.228000px;}
.ls19{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.171000px;}
.ls9{letter-spacing:-0.120000px;}
.ls1f{letter-spacing:-0.114000px;}
.ls17{letter-spacing:-0.060000px;}
.lsd{letter-spacing:-0.057000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060000px;}
.ls21{letter-spacing:0.114000px;}
.ls5{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.210000px;}
.ls1e{letter-spacing:0.228000px;}
.ls1{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.660000px;}
.lse{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.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;}
}
.ws1{word-spacing:-15.192000px;}
.ws19{word-spacing:-14.148000px;}
.ws18{word-spacing:-13.878000px;}
.ws2{word-spacing:-11.700000px;}
.ws6d{word-spacing:-11.178000px;}
.ws4c{word-spacing:-10.740000px;}
.ws6f{word-spacing:-2.880000px;}
.ws4a{word-spacing:-2.760000px;}
.ws1d{word-spacing:-2.736000px;}
.ws62{word-spacing:-2.700000px;}
.ws2d{word-spacing:-2.580000px;}
.ws4{word-spacing:-2.520000px;}
.ws2f{word-spacing:-2.460000px;}
.ws15{word-spacing:-2.451000px;}
.ws16{word-spacing:-2.394000px;}
.ws36{word-spacing:-2.340000px;}
.ws74{word-spacing:-2.166000px;}
.ws2a{word-spacing:-2.160000px;}
.ws5f{word-spacing:-2.052000px;}
.ws43{word-spacing:-2.040000px;}
.ws1e{word-spacing:-1.995000px;}
.ws4e{word-spacing:-1.980000px;}
.ws22{word-spacing:-1.920000px;}
.ws26{word-spacing:-1.860000px;}
.ws27{word-spacing:-1.740000px;}
.ws55{word-spacing:-1.620000px;}
.ws68{word-spacing:-1.500000px;}
.ws52{word-spacing:-1.482000px;}
.ws67{word-spacing:-1.440000px;}
.ws72{word-spacing:-1.380000px;}
.ws3{word-spacing:-1.350000px;}
.ws5{word-spacing:-1.320000px;}
.ws1f{word-spacing:-1.311000px;}
.ws49{word-spacing:-1.260000px;}
.ws48{word-spacing:-1.200000px;}
.ws1a{word-spacing:-1.197000px;}
.ws30{word-spacing:-1.020000px;}
.ws2b{word-spacing:-0.960000px;}
.ws32{word-spacing:-0.660000px;}
.ws31{word-spacing:-0.600000px;}
.ws66{word-spacing:-0.540000px;}
.ws7e{word-spacing:-0.513000px;}
.ws3a{word-spacing:-0.480000px;}
.ws73{word-spacing:-0.420000px;}
.ws29{word-spacing:-0.300000px;}
.ws60{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.228000px;}
.ws5b{word-spacing:-0.180000px;}
.ws53{word-spacing:-0.171000px;}
.ws6a{word-spacing:-0.120000px;}
.ws51{word-spacing:-0.057000px;}
.ws6{word-spacing:0.000000px;}
.ws40{word-spacing:0.114000px;}
.ws56{word-spacing:0.120000px;}
.ws3b{word-spacing:0.180000px;}
.ws70{word-spacing:0.228000px;}
.ws7c{word-spacing:0.240000px;}
.ws7b{word-spacing:0.300000px;}
.wsc{word-spacing:0.360000px;}
.wsd{word-spacing:0.420000px;}
.ws45{word-spacing:0.480000px;}
.ws1c{word-spacing:0.513000px;}
.ws4f{word-spacing:0.540000px;}
.ws79{word-spacing:0.600000px;}
.ws21{word-spacing:0.627000px;}
.wsb{word-spacing:0.660000px;}
.ws4d{word-spacing:0.720000px;}
.ws24{word-spacing:0.780000px;}
.ws6b{word-spacing:0.900000px;}
.ws6c{word-spacing:0.960000px;}
.ws35{word-spacing:1.020000px;}
.ws59{word-spacing:1.080000px;}
.ws2e{word-spacing:1.140000px;}
.ws7a{word-spacing:1.200000px;}
.ws69{word-spacing:1.260000px;}
.ws71{word-spacing:1.311000px;}
.ws65{word-spacing:1.320000px;}
.wsa{word-spacing:1.380000px;}
.ws10{word-spacing:1.440000px;}
.ws1b{word-spacing:1.482000px;}
.ws9{word-spacing:1.500000px;}
.ws7d{word-spacing:1.596000px;}
.ws12{word-spacing:1.620000px;}
.ws57{word-spacing:1.680000px;}
.ws63{word-spacing:1.860000px;}
.ws7{word-spacing:1.920000px;}
.ws5e{word-spacing:1.938000px;}
.ws5a{word-spacing:1.980000px;}
.ws7f{word-spacing:1.995000px;}
.ws46{word-spacing:2.040000px;}
.ws17{word-spacing:2.052000px;}
.ws54{word-spacing:2.100000px;}
.ws3e{word-spacing:2.109000px;}
.ws2c{word-spacing:2.160000px;}
.ws44{word-spacing:2.220000px;}
.ws47{word-spacing:2.280000px;}
.ws11{word-spacing:2.340000px;}
.ws75{word-spacing:2.460000px;}
.ws42{word-spacing:2.520000px;}
.ws6e{word-spacing:2.580000px;}
.ws33{word-spacing:2.640000px;}
.ws58{word-spacing:2.700000px;}
.ws34{word-spacing:2.820000px;}
.ws13{word-spacing:2.880000px;}
.wsf{word-spacing:2.940000px;}
.ws25{word-spacing:3.060000px;}
.ws14{word-spacing:3.120000px;}
.ws61{word-spacing:3.180000px;}
.ws3d{word-spacing:3.240000px;}
.ws39{word-spacing:3.300000px;}
.ws64{word-spacing:3.360000px;}
.ws50{word-spacing:3.363000px;}
.ws41{word-spacing:3.420000px;}
.ws20{word-spacing:3.477000px;}
.ws4b{word-spacing:3.600000px;}
.ws38{word-spacing:3.780000px;}
.ws28{word-spacing:3.840000px;}
.ws23{word-spacing:3.900000px;}
.ws5d{word-spacing:3.933000px;}
.ws3c{word-spacing:3.960000px;}
.ws77{word-spacing:4.080000px;}
.ws8{word-spacing:4.140000px;}
.wse{word-spacing:4.200000px;}
.ws78{word-spacing:5.820000px;}
.ws37{word-spacing:1710.883800px;}
.ws5c{word-spacing:1712.071800px;}
.ws76{word-spacing:1712.287800px;}
.ws0{word-spacing:1718.011800px;}
._a{margin-left:-2178.090000px;}
._10{margin-left:-2176.056000px;}
._11{margin-left:-18.180000px;}
._9{margin-left:-16.614000px;}
._3{margin-left:-14.712000px;}
._d{margin-left:-12.486000px;}
._7{margin-left:-10.740000px;}
._e{margin-left:-9.498000px;}
._8{margin-left:-8.359200px;}
._c{margin-left:-6.690000px;}
._6{margin-left:-5.250000px;}
._b{margin-left:-4.215600px;}
._4{margin-left:-2.652000px;}
._1{margin-left:-1.614000px;}
._0{width:1.350000px;}
._5{width:3.366000px;}
._2{width:4.710000px;}
._f{width:7.470000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:59.527500px;}
.y74{bottom:59.531250px;}
.y81{bottom:59.545800px;}
.y26{bottom:78.236250px;}
.y80{bottom:78.250800px;}
.y25{bottom:96.944850px;}
.y7f{bottom:96.955800px;}
.y47{bottom:96.974100px;}
.y24{bottom:115.653600px;}
.y5e{bottom:115.657200px;}
.y73{bottom:115.660800px;}
.y46{bottom:115.679100px;}
.y23{bottom:134.362200px;}
.y72{bottom:134.365800px;}
.y45{bottom:134.384100px;}
.y22{bottom:153.070800px;}
.y44{bottom:153.089100px;}
.y5d{bottom:171.779550px;}
.y8e{bottom:171.783150px;}
.y43{bottom:171.794100px;}
.y5c{bottom:190.488150px;}
.y71{bottom:190.495500px;}
.y42{bottom:190.499100px;}
.y21{bottom:190.502850px;}
.y5b{bottom:209.196750px;}
.y70{bottom:209.200500px;}
.y41{bottom:209.204100px;}
.y20{bottom:209.207850px;}
.y86{bottom:227.902350px;}
.y6f{bottom:227.905500px;}
.y40{bottom:227.909100px;}
.y1f{bottom:227.912850px;}
.y5a{bottom:227.916450px;}
.y85{bottom:246.612600px;}
.y3f{bottom:246.614100px;}
.y1e{bottom:246.617850px;}
.y59{bottom:246.621450px;}
.y1d{bottom:265.322850px;}
.y58{bottom:265.326450px;}
.y7e{bottom:265.341150px;}
.y3e{bottom:284.031450px;}
.y7d{bottom:284.046150px;}
.y3d{bottom:302.740200px;}
.y7c{bottom:302.751150px;}
.y1c{bottom:319.582050px;}
.y8d{bottom:321.445650px;}
.y6e{bottom:321.448800px;}
.y3c{bottom:321.452400px;}
.y7b{bottom:321.456150px;}
.y8c{bottom:340.155900px;}
.y3b{bottom:340.157400px;}
.y7a{bottom:340.161150px;}
.y1b{bottom:340.588050px;}
.y3a{bottom:358.866150px;}
.y57{bottom:377.574750px;}
.y39{bottom:377.582100px;}
.y1a{bottom:387.100050px;}
.y56{bottom:396.283500px;}
.y38{bottom:396.287100px;}
.y8b{bottom:396.294450px;}
.y6d{bottom:396.298050px;}
.y19{bottom:408.106050px;}
.y37{bottom:414.992100px;}
.y8a{bottom:414.999450px;}
.y6c{bottom:415.003050px;}
.y18{bottom:429.112050px;}
.y36{bottom:433.700850px;}
.y89{bottom:433.704450px;}
.y6b{bottom:433.708050px;}
.y17{bottom:450.118050px;}
.y79{bottom:452.409450px;}
.y35{bottom:452.413050px;}
.y34{bottom:471.118050px;}
.y33{bottom:489.826800px;}
.y84{bottom:508.533750px;}
.y55{bottom:508.535400px;}
.y88{bottom:508.539000px;}
.y32{bottom:508.542750px;}
.y78{bottom:508.550100px;}
.y6a{bottom:527.237700px;}
.y54{bottom:527.244000px;}
.y16{bottom:527.247750px;}
.y77{bottom:527.255100px;}
.y69{bottom:545.947950px;}
.y15{bottom:545.952750px;}
.y76{bottom:545.960100px;}
.y68{bottom:564.658200px;}
.y14{bottom:564.661350px;}
.y75{bottom:564.665100px;}
.y67{bottom:583.368450px;}
.y13{bottom:583.370100px;}
.y53{bottom:583.377300px;}
.y12{bottom:602.078700px;}
.y52{bottom:602.082300px;}
.y31{bottom:602.089650px;}
.y11{bottom:620.787300px;}
.y30{bottom:620.794650px;}
.y87{bottom:620.798400px;}
.y10{bottom:639.496050px;}
.y2f{bottom:639.499650px;}
.y66{bottom:639.503400px;}
.y51{bottom:658.198350px;}
.yf{bottom:658.204650px;}
.y65{bottom:658.208400px;}
.y50{bottom:676.908600px;}
.ye{bottom:676.913400px;}
.y4f{bottom:695.618850px;}
.yd{bottom:695.622000px;}
.y2e{bottom:714.324300px;}
.y4e{bottom:714.329100px;}
.yc{bottom:714.330750px;}
.y64{bottom:714.334350px;}
.y2d{bottom:733.034550px;}
.yb{bottom:733.039350px;}
.y83{bottom:733.042950px;}
.y2c{bottom:751.744800px;}
.y63{bottom:751.747950px;}
.ya{bottom:751.758900px;}
.y2b{bottom:770.455050px;}
.y4d{bottom:770.456700px;}
.y9{bottom:770.463900px;}
.y2a{bottom:789.165300px;}
.y8{bottom:789.168900px;}
.y7{bottom:807.873900px;}
.y62{bottom:807.885000px;}
.y4c{bottom:807.892350px;}
.y6{bottom:826.582650px;}
.y61{bottom:826.590000px;}
.y4b{bottom:826.597350px;}
.y29{bottom:845.288100px;}
.y82{bottom:845.291250px;}
.y60{bottom:845.295000px;}
.y5{bottom:845.298600px;}
.y4a{bottom:845.302350px;}
.y28{bottom:863.998350px;}
.y5f{bottom:864.000000px;}
.y4{bottom:864.003600px;}
.y49{bottom:864.007350px;}
.y3{bottom:882.708600px;}
.y48{bottom:882.712350px;}
.y2{bottom:901.417350px;}
.y1{bottom:954.666900px;}
.h2{height:50.868000px;}
.h7{height:51.414000px;}
.h4{height:53.880000px;}
.h3{height:54.120000px;}
.h6{height:67.824000px;}
.h5{height:68.040000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x3{left:67.684500px;}
.xa{left:69.574500px;}
.x1{left:72.283500px;}
.x9{left:76.373700px;}
.xb{left:78.078450px;}
.x7{left:81.068100px;}
.x2{left:93.825300px;}
.x6{left:97.673850px;}
.x5{left:102.565650px;}
.x4{left:605.113650px;}
.x8{left:623.096700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-1.440000pt;}
.ls24{letter-spacing:-1.333333pt;}
.ls1d{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.354667pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.304000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.253333pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.202667pt;}
.ls19{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.152000pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls1f{letter-spacing:-0.101333pt;}
.ls17{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:-0.050667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls21{letter-spacing:0.101333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.186667pt;}
.ls1e{letter-spacing:0.202667pt;}
.ls1{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ws1{word-spacing:-13.504000pt;}
.ws19{word-spacing:-12.576000pt;}
.ws18{word-spacing:-12.336000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws6d{word-spacing:-9.936000pt;}
.ws4c{word-spacing:-9.546667pt;}
.ws6f{word-spacing:-2.560000pt;}
.ws4a{word-spacing:-2.453333pt;}
.ws1d{word-spacing:-2.432000pt;}
.ws62{word-spacing:-2.400000pt;}
.ws2d{word-spacing:-2.293333pt;}
.ws4{word-spacing:-2.240000pt;}
.ws2f{word-spacing:-2.186667pt;}
.ws15{word-spacing:-2.178667pt;}
.ws16{word-spacing:-2.128000pt;}
.ws36{word-spacing:-2.080000pt;}
.ws74{word-spacing:-1.925333pt;}
.ws2a{word-spacing:-1.920000pt;}
.ws5f{word-spacing:-1.824000pt;}
.ws43{word-spacing:-1.813333pt;}
.ws1e{word-spacing:-1.773333pt;}
.ws4e{word-spacing:-1.760000pt;}
.ws22{word-spacing:-1.706667pt;}
.ws26{word-spacing:-1.653333pt;}
.ws27{word-spacing:-1.546667pt;}
.ws55{word-spacing:-1.440000pt;}
.ws68{word-spacing:-1.333333pt;}
.ws52{word-spacing:-1.317333pt;}
.ws67{word-spacing:-1.280000pt;}
.ws72{word-spacing:-1.226667pt;}
.ws3{word-spacing:-1.200000pt;}
.ws5{word-spacing:-1.173333pt;}
.ws1f{word-spacing:-1.165333pt;}
.ws49{word-spacing:-1.120000pt;}
.ws48{word-spacing:-1.066667pt;}
.ws1a{word-spacing:-1.064000pt;}
.ws30{word-spacing:-0.906667pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws32{word-spacing:-0.586667pt;}
.ws31{word-spacing:-0.533333pt;}
.ws66{word-spacing:-0.480000pt;}
.ws7e{word-spacing:-0.456000pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws73{word-spacing:-0.373333pt;}
.ws29{word-spacing:-0.266667pt;}
.ws60{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.202667pt;}
.ws5b{word-spacing:-0.160000pt;}
.ws53{word-spacing:-0.152000pt;}
.ws6a{word-spacing:-0.106667pt;}
.ws51{word-spacing:-0.050667pt;}
.ws6{word-spacing:0.000000pt;}
.ws40{word-spacing:0.101333pt;}
.ws56{word-spacing:0.106667pt;}
.ws3b{word-spacing:0.160000pt;}
.ws70{word-spacing:0.202667pt;}
.ws7c{word-spacing:0.213333pt;}
.ws7b{word-spacing:0.266667pt;}
.wsc{word-spacing:0.320000pt;}
.wsd{word-spacing:0.373333pt;}
.ws45{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.456000pt;}
.ws4f{word-spacing:0.480000pt;}
.ws79{word-spacing:0.533333pt;}
.ws21{word-spacing:0.557333pt;}
.wsb{word-spacing:0.586667pt;}
.ws4d{word-spacing:0.640000pt;}
.ws24{word-spacing:0.693333pt;}
.ws6b{word-spacing:0.800000pt;}
.ws6c{word-spacing:0.853333pt;}
.ws35{word-spacing:0.906667pt;}
.ws59{word-spacing:0.960000pt;}
.ws2e{word-spacing:1.013333pt;}
.ws7a{word-spacing:1.066667pt;}
.ws69{word-spacing:1.120000pt;}
.ws71{word-spacing:1.165333pt;}
.ws65{word-spacing:1.173333pt;}
.wsa{word-spacing:1.226667pt;}
.ws10{word-spacing:1.280000pt;}
.ws1b{word-spacing:1.317333pt;}
.ws9{word-spacing:1.333333pt;}
.ws7d{word-spacing:1.418667pt;}
.ws12{word-spacing:1.440000pt;}
.ws57{word-spacing:1.493333pt;}
.ws63{word-spacing:1.653333pt;}
.ws7{word-spacing:1.706667pt;}
.ws5e{word-spacing:1.722667pt;}
.ws5a{word-spacing:1.760000pt;}
.ws7f{word-spacing:1.773333pt;}
.ws46{word-spacing:1.813333pt;}
.ws17{word-spacing:1.824000pt;}
.ws54{word-spacing:1.866667pt;}
.ws3e{word-spacing:1.874667pt;}
.ws2c{word-spacing:1.920000pt;}
.ws44{word-spacing:1.973333pt;}
.ws47{word-spacing:2.026667pt;}
.ws11{word-spacing:2.080000pt;}
.ws75{word-spacing:2.186667pt;}
.ws42{word-spacing:2.240000pt;}
.ws6e{word-spacing:2.293333pt;}
.ws33{word-spacing:2.346667pt;}
.ws58{word-spacing:2.400000pt;}
.ws34{word-spacing:2.506667pt;}
.ws13{word-spacing:2.560000pt;}
.wsf{word-spacing:2.613333pt;}
.ws25{word-spacing:2.720000pt;}
.ws14{word-spacing:2.773333pt;}
.ws61{word-spacing:2.826667pt;}
.ws3d{word-spacing:2.880000pt;}
.ws39{word-spacing:2.933333pt;}
.ws64{word-spacing:2.986667pt;}
.ws50{word-spacing:2.989333pt;}
.ws41{word-spacing:3.040000pt;}
.ws20{word-spacing:3.090667pt;}
.ws4b{word-spacing:3.200000pt;}
.ws38{word-spacing:3.360000pt;}
.ws28{word-spacing:3.413333pt;}
.ws23{word-spacing:3.466667pt;}
.ws5d{word-spacing:3.496000pt;}
.ws3c{word-spacing:3.520000pt;}
.ws77{word-spacing:3.626667pt;}
.ws8{word-spacing:3.680000pt;}
.wse{word-spacing:3.733333pt;}
.ws78{word-spacing:5.173333pt;}
.ws37{word-spacing:1520.785600pt;}
.ws5c{word-spacing:1521.841600pt;}
.ws76{word-spacing:1522.033600pt;}
.ws0{word-spacing:1527.121600pt;}
._a{margin-left:-1936.080000pt;}
._10{margin-left:-1934.272000pt;}
._11{margin-left:-16.160000pt;}
._9{margin-left:-14.768000pt;}
._3{margin-left:-13.077333pt;}
._d{margin-left:-11.098667pt;}
._7{margin-left:-9.546667pt;}
._e{margin-left:-8.442667pt;}
._8{margin-left:-7.430400pt;}
._c{margin-left:-5.946667pt;}
._6{margin-left:-4.666667pt;}
._b{margin-left:-3.747200pt;}
._4{margin-left:-2.357333pt;}
._1{margin-left:-1.434667pt;}
._0{width:1.200000pt;}
._5{width:2.992000pt;}
._2{width:4.186667pt;}
._f{width:6.640000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:52.913333pt;}
.y74{bottom:52.916667pt;}
.y81{bottom:52.929600pt;}
.y26{bottom:69.543333pt;}
.y80{bottom:69.556267pt;}
.y25{bottom:86.173200pt;}
.y7f{bottom:86.182933pt;}
.y47{bottom:86.199200pt;}
.y24{bottom:102.803200pt;}
.y5e{bottom:102.806400pt;}
.y73{bottom:102.809600pt;}
.y46{bottom:102.825867pt;}
.y23{bottom:119.433067pt;}
.y72{bottom:119.436267pt;}
.y45{bottom:119.452533pt;}
.y22{bottom:136.062933pt;}
.y44{bottom:136.079200pt;}
.y5d{bottom:152.692933pt;}
.y8e{bottom:152.696133pt;}
.y43{bottom:152.705867pt;}
.y5c{bottom:169.322800pt;}
.y71{bottom:169.329333pt;}
.y42{bottom:169.332533pt;}
.y21{bottom:169.335867pt;}
.y5b{bottom:185.952667pt;}
.y70{bottom:185.956000pt;}
.y41{bottom:185.959200pt;}
.y20{bottom:185.962533pt;}
.y86{bottom:202.579867pt;}
.y6f{bottom:202.582667pt;}
.y40{bottom:202.585867pt;}
.y1f{bottom:202.589200pt;}
.y5a{bottom:202.592400pt;}
.y85{bottom:219.211200pt;}
.y3f{bottom:219.212533pt;}
.y1e{bottom:219.215867pt;}
.y59{bottom:219.219067pt;}
.y1d{bottom:235.842533pt;}
.y58{bottom:235.845733pt;}
.y7e{bottom:235.858800pt;}
.y3e{bottom:252.472400pt;}
.y7d{bottom:252.485467pt;}
.y3d{bottom:269.102400pt;}
.y7c{bottom:269.112133pt;}
.y1c{bottom:284.072933pt;}
.y8d{bottom:285.729467pt;}
.y6e{bottom:285.732267pt;}
.y3c{bottom:285.735467pt;}
.y7b{bottom:285.738800pt;}
.y8c{bottom:302.360800pt;}
.y3b{bottom:302.362133pt;}
.y7a{bottom:302.365467pt;}
.y1b{bottom:302.744933pt;}
.y3a{bottom:318.992133pt;}
.y57{bottom:335.622000pt;}
.y39{bottom:335.628533pt;}
.y1a{bottom:344.088933pt;}
.y56{bottom:352.252000pt;}
.y38{bottom:352.255200pt;}
.y8b{bottom:352.261733pt;}
.y6d{bottom:352.264933pt;}
.y19{bottom:362.760933pt;}
.y37{bottom:368.881867pt;}
.y8a{bottom:368.888400pt;}
.y6c{bottom:368.891600pt;}
.y18{bottom:381.432933pt;}
.y36{bottom:385.511867pt;}
.y89{bottom:385.515067pt;}
.y6b{bottom:385.518267pt;}
.y17{bottom:400.104933pt;}
.y79{bottom:402.141733pt;}
.y35{bottom:402.144933pt;}
.y34{bottom:418.771600pt;}
.y33{bottom:435.401600pt;}
.y84{bottom:452.030000pt;}
.y55{bottom:452.031467pt;}
.y88{bottom:452.034667pt;}
.y32{bottom:452.038000pt;}
.y78{bottom:452.044533pt;}
.y6a{bottom:468.655733pt;}
.y54{bottom:468.661333pt;}
.y16{bottom:468.664667pt;}
.y77{bottom:468.671200pt;}
.y69{bottom:485.287067pt;}
.y15{bottom:485.291333pt;}
.y76{bottom:485.297867pt;}
.y68{bottom:501.918400pt;}
.y14{bottom:501.921200pt;}
.y75{bottom:501.924533pt;}
.y67{bottom:518.549733pt;}
.y13{bottom:518.551200pt;}
.y53{bottom:518.557600pt;}
.y12{bottom:535.181067pt;}
.y52{bottom:535.184267pt;}
.y31{bottom:535.190800pt;}
.y11{bottom:551.810933pt;}
.y30{bottom:551.817467pt;}
.y87{bottom:551.820800pt;}
.y10{bottom:568.440933pt;}
.y2f{bottom:568.444133pt;}
.y66{bottom:568.447467pt;}
.y51{bottom:585.065200pt;}
.yf{bottom:585.070800pt;}
.y65{bottom:585.074133pt;}
.y50{bottom:601.696533pt;}
.ye{bottom:601.700800pt;}
.y4f{bottom:618.327867pt;}
.yd{bottom:618.330667pt;}
.y2e{bottom:634.954933pt;}
.y4e{bottom:634.959200pt;}
.yc{bottom:634.960667pt;}
.y64{bottom:634.963867pt;}
.y2d{bottom:651.586267pt;}
.yb{bottom:651.590533pt;}
.y83{bottom:651.593733pt;}
.y2c{bottom:668.217600pt;}
.y63{bottom:668.220400pt;}
.ya{bottom:668.230133pt;}
.y2b{bottom:684.848933pt;}
.y4d{bottom:684.850400pt;}
.y9{bottom:684.856800pt;}
.y2a{bottom:701.480267pt;}
.y8{bottom:701.483467pt;}
.y7{bottom:718.110133pt;}
.y62{bottom:718.120000pt;}
.y4c{bottom:718.126533pt;}
.y6{bottom:734.740133pt;}
.y61{bottom:734.746667pt;}
.y4b{bottom:734.753200pt;}
.y29{bottom:751.367200pt;}
.y82{bottom:751.370000pt;}
.y60{bottom:751.373333pt;}
.y5{bottom:751.376533pt;}
.y4a{bottom:751.379867pt;}
.y28{bottom:767.998533pt;}
.y5f{bottom:768.000000pt;}
.y4{bottom:768.003200pt;}
.y49{bottom:768.006533pt;}
.y3{bottom:784.629867pt;}
.y48{bottom:784.633200pt;}
.y2{bottom:801.259867pt;}
.y1{bottom:848.592800pt;}
.h2{height:45.216000pt;}
.h7{height:45.701333pt;}
.h4{height:47.893333pt;}
.h3{height:48.106667pt;}
.h6{height:60.288000pt;}
.h5{height:60.480000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x3{left:60.164000pt;}
.xa{left:61.844000pt;}
.x1{left:64.252000pt;}
.x9{left:67.887733pt;}
.xb{left:69.403067pt;}
.x7{left:72.060533pt;}
.x2{left:83.400267pt;}
.x6{left:86.821200pt;}
.x5{left:91.169467pt;}
.x4{left:537.878800pt;}
.x8{left:553.863733pt;}
}




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