
    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_3136699ee00e17fd5a723fbf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_b412c47a3a4bc1925197679f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;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_a966eef4189e0de72360bee7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_5afa771e2a204dd937fbcfcd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924000;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_473d523e89be295230e36aae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906250;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_a77be1f0a23f5de3fa80dd83.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128000;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_9649dc0a9201bf6280240c59.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128000;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_2ea24e2d70b4dc6b5a7b5710.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128000;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_9649dc0a9201bf6280240c59.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128000;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;}
.m2c{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);}
.m58{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.m6c{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248287,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);}
.m1f{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.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.m5e{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m41{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);}
.m22{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m37{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.m26{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2a{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m78{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m59{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251771,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls14{letter-spacing:-1.320000px;}
.ls10{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.096000px;}
.lsd{letter-spacing:-0.060000px;}
.ls16{letter-spacing:-0.055968px;}
.lsa{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.027984px;}
.ls11{letter-spacing:0.030000px;}
.ls9{letter-spacing:0.048000px;}
.ls3{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.167904px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.230983px;}
.ls2{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.780000px;}
.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;}
}
.ws1f{word-spacing:-21.000000px;}
.ws3c{word-spacing:-12.300000px;}
.ws1{word-spacing:-12.240000px;}
.ws20{word-spacing:-12.120000px;}
.ws2b{word-spacing:-12.060000px;}
.ws1e{word-spacing:-12.000000px;}
.ws37{word-spacing:-11.940000px;}
.ws3d{word-spacing:-11.820000px;}
.ws0{word-spacing:-6.996000px;}
.ws2{word-spacing:-5.624784px;}
.ws42{word-spacing:-5.596800px;}
.ws39{word-spacing:-1.920000px;}
.ws28{word-spacing:-1.860000px;}
.ws4{word-spacing:-1.800000px;}
.ws3b{word-spacing:-1.740000px;}
.ws1d{word-spacing:-1.680000px;}
.ws33{word-spacing:-1.560000px;}
.ws50{word-spacing:-1.500000px;}
.ws48{word-spacing:-1.440000px;}
.ws10{word-spacing:-1.380000px;}
.ws34{word-spacing:-1.320000px;}
.wsc{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.200000px;}
.ws3a{word-spacing:-1.140000px;}
.ws45{word-spacing:-1.020000px;}
.ws36{word-spacing:-0.960000px;}
.ws4a{word-spacing:-0.900000px;}
.ws4f{word-spacing:-0.840000px;}
.ws25{word-spacing:-0.780000px;}
.ws44{word-spacing:-0.720000px;}
.ws43{word-spacing:-0.660000px;}
.ws38{word-spacing:-0.600000px;}
.ws2d{word-spacing:-0.540000px;}
.wsb{word-spacing:-0.420000px;}
.ws11{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.300000px;}
.ws4c{word-spacing:-0.288000px;}
.ws8{word-spacing:-0.240000px;}
.wse{word-spacing:-0.180000px;}
.ws4b{word-spacing:-0.167904px;}
.wsa{word-spacing:-0.120000px;}
.ws13{word-spacing:-0.060000px;}
.ws14{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.048000px;}
.ws47{word-spacing:0.055968px;}
.ws19{word-spacing:0.060000px;}
.ws49{word-spacing:0.096000px;}
.ws17{word-spacing:0.120000px;}
.ws9{word-spacing:0.180000px;}
.ws32{word-spacing:0.240000px;}
.ws4e{word-spacing:0.300000px;}
.ws1b{word-spacing:0.360000px;}
.ws4d{word-spacing:0.420000px;}
.ws29{word-spacing:0.540000px;}
.ws6{word-spacing:0.660000px;}
.ws2a{word-spacing:0.840000px;}
.ws27{word-spacing:0.960000px;}
.wsf{word-spacing:1.020000px;}
.ws22{word-spacing:1.080000px;}
.ws2f{word-spacing:1.140000px;}
.ws26{word-spacing:1.200000px;}
.ws24{word-spacing:1.260000px;}
.ws23{word-spacing:1.440000px;}
.ws31{word-spacing:1.500000px;}
.ws46{word-spacing:1.560000px;}
.ws7{word-spacing:1.620000px;}
.ws35{word-spacing:1.740000px;}
.ws1a{word-spacing:1.920000px;}
.ws16{word-spacing:2.040000px;}
.ws2e{word-spacing:2.100000px;}
.ws2c{word-spacing:2.160000px;}
.ws3f{word-spacing:2.280000px;}
.wsd{word-spacing:2.340000px;}
.ws5{word-spacing:2.400000px;}
.ws18{word-spacing:2.520000px;}
.ws3e{word-spacing:3.000000px;}
.ws12{word-spacing:3.360000px;}
.ws1c{word-spacing:3.660000px;}
.ws41{word-spacing:3.900000px;}
.ws30{word-spacing:5.340000px;}
._4{margin-left:-6.900000px;}
._7{margin-left:-5.583000px;}
._1{margin-left:-4.518000px;}
._2{margin-left:-3.012000px;}
._0{margin-left:-1.894200px;}
._3{width:1.410000px;}
._5{width:2.706479px;}
._6{width:3.720000px;}
._8{width:7.872000px;}
._9{width:9.624000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs3{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:50.226900px;}
.y24{bottom:54.502500px;}
.y21{bottom:86.740050px;}
.y46{bottom:86.740200px;}
.y139{bottom:86.740350px;}
.y6a{bottom:87.211500px;}
.y115{bottom:90.736200px;}
.y126{bottom:90.736350px;}
.y20{bottom:101.740050px;}
.yf6{bottom:101.740200px;}
.yf5{bottom:105.736200px;}
.y138{bottom:105.736350px;}
.ya5{bottom:106.501500px;}
.yc3{bottom:107.183550px;}
.y69{bottom:107.461500px;}
.ye2{bottom:107.607750px;}
.y45{bottom:108.006300px;}
.y88{bottom:112.985700px;}
.y1f{bottom:116.740050px;}
.y114{bottom:116.740200px;}
.y137{bottom:116.740500px;}
.y1e{bottom:120.736050px;}
.y113{bottom:120.736200px;}
.ya4{bottom:126.751500px;}
.yc2{bottom:127.627050px;}
.y68{bottom:127.681500px;}
.ye1{bottom:128.475150px;}
.y44{bottom:129.272250px;}
.y112{bottom:131.740200px;}
.y136{bottom:131.740500px;}
.y87{bottom:133.235700px;}
.y135{bottom:135.736500px;}
.y134{bottom:146.740650px;}
.ya3{bottom:147.001500px;}
.y67{bottom:147.901500px;}
.yc1{bottom:148.070400px;}
.y111{bottom:150.736200px;}
.y125{bottom:156.727800px;}
.y1d{bottom:160.238550px;}
.y133{bottom:165.736650px;}
.ye0{bottom:166.350600px;}
.yf4{bottom:166.454250px;}
.ya2{bottom:167.251500px;}
.y43{bottom:167.546100px;}
.y66{bottom:168.121500px;}
.y86{bottom:170.493600px;}
.y1c{bottom:180.488550px;}
.y110{bottom:183.000000px;}
.yc0{bottom:185.521800px;}
.yf2{bottom:186.704250px;}
.ydf{bottom:187.218150px;}
.ya1{bottom:187.501500px;}
.y65{bottom:188.341500px;}
.y42{bottom:188.812050px;}
.yf3{bottom:191.699250px;}
.y124{bottom:193.985700px;}
.y1b{bottom:200.738550px;}
.y132{bottom:201.267150px;}
.y10f{bottom:203.672550px;}
.ybf{bottom:205.965150px;}
.y85{bottom:207.751500px;}
.yde{bottom:208.085700px;}
.y64{bottom:208.561500px;}
.y41{bottom:210.078000px;}
.y131{bottom:221.517150px;}
.yf1{bottom:223.962150px;}
.y10e{bottom:224.345100px;}
.ya0{bottom:224.759400px;}
.y84{bottom:228.001500px;}
.y63{bottom:228.781500px;}
.y123{bottom:231.243600px;}
.y40{bottom:231.343950px;}
.y1a{bottom:237.996450px;}
.y130{bottom:241.767150px;}
.ybe{bottom:243.416400px;}
.yf0{bottom:244.212150px;}
.y9f{bottom:245.009400px;}
.ydd{bottom:245.961150px;}
.y83{bottom:248.251500px;}
.y62{bottom:249.001500px;}
.y122{bottom:251.493600px;}
.y19{bottom:258.246450px;}
.y12f{bottom:262.017150px;}
.y10d{bottom:262.025400px;}
.ybd{bottom:263.859900px;}
.y9e{bottom:265.259400px;}
.ydc{bottom:266.828700px;}
.y82{bottom:268.501500px;}
.y61{bottom:269.221500px;}
.y3f{bottom:269.617800px;}
.y121{bottom:271.743600px;}
.y18{bottom:278.496450px;}
.yef{bottom:281.469900px;}
.y12e{bottom:282.267150px;}
.y10c{bottom:282.697950px;}
.ybc{bottom:284.303250px;}
.ydb{bottom:287.696250px;}
.y81{bottom:288.751500px;}
.y60{bottom:289.441500px;}
.y3e{bottom:290.883750px;}
.y17{bottom:298.746450px;}
.y13e{bottom:299.275050px;}
.y9d{bottom:302.517150px;}
.y10b{bottom:303.370500px;}
.ybb{bottom:304.746600px;}
.yda{bottom:308.563800px;}
.y120{bottom:309.001500px;}
.y5f{bottom:309.661500px;}
.y3d{bottom:312.149700px;}
.yee{bottom:318.727800px;}
.y16{bottom:318.996450px;}
.y13d{bottom:319.525050px;}
.y12d{bottom:322.767150px;}
.y80{bottom:326.009400px;}
.y11f{bottom:329.251500px;}
.yd9{bottom:329.431350px;}
.y5e{bottom:329.881500px;}
.y3c{bottom:333.415650px;}
.y15{bottom:339.246450px;}
.y9c{bottom:339.775050px;}
.y10a{bottom:341.050950px;}
.yba{bottom:342.198000px;}
.y12c{bottom:343.017150px;}
.y7f{bottom:346.259400px;}
.y11e{bottom:349.501500px;}
.y5d{bottom:350.101500px;}
.yd8{bottom:350.298900px;}
.y3b{bottom:354.681600px;}
.yed{bottom:355.985700px;}
.y14{bottom:359.496450px;}
.y9b{bottom:360.025050px;}
.yb9{bottom:362.641350px;}
.y7e{bottom:366.509400px;}
.y11d{bottom:369.751500px;}
.y5c{bottom:370.321500px;}
.yd7{bottom:371.166300px;}
.yec{bottom:376.235700px;}
.y109{bottom:378.731250px;}
.y13{bottom:379.746450px;}
.y9a{bottom:380.275050px;}
.y7d{bottom:386.759400px;}
.y5b{bottom:390.541500px;}
.yd6{bottom:392.034000px;}
.y3a{bottom:392.955450px;}
.yeb{bottom:396.485700px;}
.y108{bottom:399.403800px;}
.y12{bottom:399.996450px;}
.yb8{bottom:400.092600px;}
.y99{bottom:400.525050px;}
.y11c{bottom:407.009400px;}
.y5a{bottom:410.761500px;}
.y39{bottom:414.221550px;}
.y11{bottom:420.246450px;}
.y98{bottom:420.775050px;}
.y7c{bottom:424.017150px;}
.yd5{bottom:429.909300px;}
.yea{bottom:433.743600px;}
.y38{bottom:435.487500px;}
.y107{bottom:437.084250px;}
.yb7{bottom:437.543850px;}
.y13c{bottom:437.782950px;}
.y10{bottom:440.496450px;}
.y97{bottom:441.025050px;}
.y7b{bottom:444.267150px;}
.y59{bottom:447.989250px;}
.yd4{bottom:450.776850px;}
.y37{bottom:456.753450px;}
.y106{bottom:457.756800px;}
.yb6{bottom:457.987350px;}
.y13b{bottom:458.032950px;}
.yf{bottom:460.746450px;}
.y96{bottom:461.275050px;}
.y7a{bottom:464.517150px;}
.ye9{bottom:471.001500px;}
.yd3{bottom:471.644400px;}
.y36{bottom:478.019400px;}
.y13a{bottom:478.282950px;}
.y105{bottom:478.429350px;}
.y11b{bottom:481.525050px;}
.y79{bottom:484.767150px;}
.y58{bottom:485.217150px;}
.ye8{bottom:491.251500px;}
.yd2{bottom:492.511950px;}
.yb5{bottom:495.438600px;}
.ye{bottom:498.004200px;}
.y95{bottom:498.532950px;}
.y35{bottom:499.285350px;}
.y78{bottom:505.017300px;}
.y57{bottom:505.437150px;}
.yd1{bottom:513.379500px;}
.yb4{bottom:515.881950px;}
.y104{bottom:516.109650px;}
.yd{bottom:518.254200px;}
.y94{bottom:518.782950px;}
.y34{bottom:520.551300px;}
.y77{bottom:525.267300px;}
.y56{bottom:525.657150px;}
.ye7{bottom:528.509250px;}
.yd0{bottom:534.247050px;}
.yb3{bottom:536.325300px;}
.yc{bottom:538.504200px;}
.y93{bottom:539.032950px;}
.y33{bottom:541.817250px;}
.y103{bottom:553.790100px;}
.yb2{bottom:556.768800px;}
.yb{bottom:558.754200px;}
.y11a{bottom:559.282950px;}
.y76{bottom:562.525050px;}
.y55{bottom:562.885050px;}
.y32{bottom:563.083350px;}
.ye6{bottom:565.767300px;}
.ycf{bottom:572.122500px;}
.y92{bottom:576.290850px;}
.yb1{bottom:577.212150px;}
.y12b{bottom:579.532950px;}
.y75{bottom:582.775050px;}
.y54{bottom:583.105050px;}
.y31{bottom:584.349300px;}
.y102{bottom:591.470550px;}
.yce{bottom:592.990050px;}
.ya{bottom:596.012100px;}
.y91{bottom:596.540850px;}
.y12a{bottom:599.782950px;}
.y74{bottom:603.025050px;}
.y53{bottom:603.325050px;}
.y30{bottom:605.615250px;}
.y101{bottom:612.142950px;}
.ycd{bottom:613.857450px;}
.yb0{bottom:614.663400px;}
.y9{bottom:616.262100px;}
.y90{bottom:616.790850px;}
.y129{bottom:620.032950px;}
.y73{bottom:623.275050px;}
.y52{bottom:623.545050px;}
.y2f{bottom:626.881200px;}
.y100{bottom:632.815500px;}
.y119{bottom:633.798750px;}
.yaf{bottom:635.106900px;}
.y8{bottom:636.512100px;}
.y8f{bottom:637.040850px;}
.y72{bottom:643.525050px;}
.y51{bottom:643.765050px;}
.y2e{bottom:648.147150px;}
.ycc{bottom:651.732900px;}
.yff{bottom:653.488050px;}
.y118{bottom:654.048750px;}
.yae{bottom:655.550250px;}
.y7{bottom:656.762100px;}
.y8e{bottom:657.290850px;}
.ye5{bottom:660.532950px;}
.y71{bottom:663.775050px;}
.y2d{bottom:669.413250px;}
.ycb{bottom:672.600450px;}
.yfe{bottom:674.160600px;}
.y117{bottom:674.298750px;}
.yad{bottom:675.993750px;}
.y6{bottom:677.012100px;}
.y8d{bottom:677.540850px;}
.ye4{bottom:680.782950px;}
.y50{bottom:680.992950px;}
.y70{bottom:684.025050px;}
.y2c{bottom:690.679200px;}
.yca{bottom:693.468000px;}
.y116{bottom:694.548750px;}
.yfd{bottom:694.833150px;}
.yac{bottom:696.437100px;}
.y128{bottom:697.790850px;}
.ye3{bottom:701.032950px;}
.y4f{bottom:701.212950px;}
.yc9{bottom:714.335550px;}
.y8c{bottom:714.798750px;}
.yfc{bottom:715.505700px;}
.yab{bottom:716.880450px;}
.y127{bottom:718.040850px;}
.y6f{bottom:721.282950px;}
.y4e{bottom:721.432950px;}
.y2b{bottom:728.952900px;}
.y8b{bottom:735.048750px;}
.yc8{bottom:735.203100px;}
.yfb{bottom:736.178250px;}
.yaa{bottom:737.323950px;}
.y4d{bottom:741.652950px;}
.y2a{bottom:750.219000px;}
.y8a{bottom:755.298750px;}
.yc7{bottom:756.070650px;}
.yfa{bottom:756.850650px;}
.ya9{bottom:757.767300px;}
.y6e{bottom:758.540850px;}
.y4c{bottom:761.872950px;}
.y29{bottom:771.484800px;}
.y89{bottom:775.548750px;}
.yc6{bottom:776.938200px;}
.yf9{bottom:777.523200px;}
.ya8{bottom:778.210650px;}
.y5{bottom:786.553500px;}
.y28{bottom:792.750750px;}
.y6d{bottom:795.798750px;}
.yc5{bottom:797.805750px;}
.y4b{bottom:799.100850px;}
.y4{bottom:807.553500px;}
.y27{bottom:814.016850px;}
.yf8{bottom:815.203650px;}
.ya7{bottom:815.662050px;}
.y6c{bottom:816.048750px;}
.yc4{bottom:818.673300px;}
.y26{bottom:835.282800px;}
.yf7{bottom:835.876200px;}
.ya6{bottom:836.105400px;}
.y6b{bottom:836.298750px;}
.y4a{bottom:836.328750px;}
.y25{bottom:856.548750px;}
.y3{bottom:880.653450px;}
.y2{bottom:880.653600px;}
.y1{bottom:893.253600px;}
.y23{bottom:898.288950px;}
.y48{bottom:898.290300px;}
.y22{bottom:898.309800px;}
.y47{bottom:898.311150px;}
.ha{height:23.450592px;}
.hf{height:24.240000px;}
.he{height:24.695880px;}
.h2{height:29.652000px;}
.hc{height:33.888000px;}
.h10{height:34.032000px;}
.h9{height:34.125000px;}
.hd{height:35.196000px;}
.hb{height:40.224000px;}
.h5{height:42.360000px;}
.h8{height:42.480000px;}
.h4{height:42.540000px;}
.h7{height:44.675880px;}
.h6{height:50.280000px;}
.h3{height:60.336000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x7{left:114.803100px;}
.x3{left:170.078700px;}
.x4{left:174.802200px;}
.x6{left:180.451650px;}
.x5{left:217.621200px;}
.x1{left:441.664650px;}
.x2{left:464.701500px;}
.x9{left:549.065550px;}
.xa{left:553.317750px;}
.x8{left:569.926350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls14{letter-spacing:-1.173333pt;}
.ls10{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.085333pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls16{letter-spacing:-0.049749pt;}
.lsa{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024875pt;}
.ls11{letter-spacing:0.026667pt;}
.ls9{letter-spacing:0.042667pt;}
.ls3{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.149248pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.205318pt;}
.ls2{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.693333pt;}
.ws1f{word-spacing:-18.666667pt;}
.ws3c{word-spacing:-10.933333pt;}
.ws1{word-spacing:-10.880000pt;}
.ws20{word-spacing:-10.773333pt;}
.ws2b{word-spacing:-10.720000pt;}
.ws1e{word-spacing:-10.666667pt;}
.ws37{word-spacing:-10.613333pt;}
.ws3d{word-spacing:-10.506667pt;}
.ws0{word-spacing:-6.218667pt;}
.ws2{word-spacing:-4.999808pt;}
.ws42{word-spacing:-4.974933pt;}
.ws39{word-spacing:-1.706667pt;}
.ws28{word-spacing:-1.653333pt;}
.ws4{word-spacing:-1.600000pt;}
.ws3b{word-spacing:-1.546667pt;}
.ws1d{word-spacing:-1.493333pt;}
.ws33{word-spacing:-1.386667pt;}
.ws50{word-spacing:-1.333333pt;}
.ws48{word-spacing:-1.280000pt;}
.ws10{word-spacing:-1.226667pt;}
.ws34{word-spacing:-1.173333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.066667pt;}
.ws3a{word-spacing:-1.013333pt;}
.ws45{word-spacing:-0.906667pt;}
.ws36{word-spacing:-0.853333pt;}
.ws4a{word-spacing:-0.800000pt;}
.ws4f{word-spacing:-0.746667pt;}
.ws25{word-spacing:-0.693333pt;}
.ws44{word-spacing:-0.640000pt;}
.ws43{word-spacing:-0.586667pt;}
.ws38{word-spacing:-0.533333pt;}
.ws2d{word-spacing:-0.480000pt;}
.wsb{word-spacing:-0.373333pt;}
.ws11{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.266667pt;}
.ws4c{word-spacing:-0.256000pt;}
.ws8{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.160000pt;}
.ws4b{word-spacing:-0.149248pt;}
.wsa{word-spacing:-0.106667pt;}
.ws13{word-spacing:-0.053333pt;}
.ws14{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.042667pt;}
.ws47{word-spacing:0.049749pt;}
.ws19{word-spacing:0.053333pt;}
.ws49{word-spacing:0.085333pt;}
.ws17{word-spacing:0.106667pt;}
.ws9{word-spacing:0.160000pt;}
.ws32{word-spacing:0.213333pt;}
.ws4e{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.320000pt;}
.ws4d{word-spacing:0.373333pt;}
.ws29{word-spacing:0.480000pt;}
.ws6{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.746667pt;}
.ws27{word-spacing:0.853333pt;}
.wsf{word-spacing:0.906667pt;}
.ws22{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.013333pt;}
.ws26{word-spacing:1.066667pt;}
.ws24{word-spacing:1.120000pt;}
.ws23{word-spacing:1.280000pt;}
.ws31{word-spacing:1.333333pt;}
.ws46{word-spacing:1.386667pt;}
.ws7{word-spacing:1.440000pt;}
.ws35{word-spacing:1.546667pt;}
.ws1a{word-spacing:1.706667pt;}
.ws16{word-spacing:1.813333pt;}
.ws2e{word-spacing:1.866667pt;}
.ws2c{word-spacing:1.920000pt;}
.ws3f{word-spacing:2.026667pt;}
.wsd{word-spacing:2.080000pt;}
.ws5{word-spacing:2.133333pt;}
.ws18{word-spacing:2.240000pt;}
.ws3e{word-spacing:2.666667pt;}
.ws12{word-spacing:2.986667pt;}
.ws1c{word-spacing:3.253333pt;}
.ws41{word-spacing:3.466667pt;}
.ws30{word-spacing:4.746667pt;}
._4{margin-left:-6.133333pt;}
._7{margin-left:-4.962667pt;}
._1{margin-left:-4.016000pt;}
._2{margin-left:-2.677333pt;}
._0{margin-left:-1.683733pt;}
._3{width:1.253333pt;}
._5{width:2.405759pt;}
._6{width:3.306667pt;}
._8{width:6.997333pt;}
._9{width:8.554667pt;}
.fs4{font-size:24.874667pt;}
.fs3{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:44.646133pt;}
.y24{bottom:48.446667pt;}
.y21{bottom:77.102267pt;}
.y46{bottom:77.102400pt;}
.y139{bottom:77.102533pt;}
.y6a{bottom:77.521333pt;}
.y115{bottom:80.654400pt;}
.y126{bottom:80.654533pt;}
.y20{bottom:90.435600pt;}
.yf6{bottom:90.435733pt;}
.yf5{bottom:93.987733pt;}
.y138{bottom:93.987867pt;}
.ya5{bottom:94.668000pt;}
.yc3{bottom:95.274267pt;}
.y69{bottom:95.521333pt;}
.ye2{bottom:95.651333pt;}
.y45{bottom:96.005600pt;}
.y88{bottom:100.431733pt;}
.y1f{bottom:103.768933pt;}
.y114{bottom:103.769067pt;}
.y137{bottom:103.769333pt;}
.y1e{bottom:107.320933pt;}
.y113{bottom:107.321067pt;}
.ya4{bottom:112.668000pt;}
.yc2{bottom:113.446267pt;}
.y68{bottom:113.494667pt;}
.ye1{bottom:114.200133pt;}
.y44{bottom:114.908667pt;}
.y112{bottom:117.102400pt;}
.y136{bottom:117.102667pt;}
.y87{bottom:118.431733pt;}
.y135{bottom:120.654667pt;}
.y134{bottom:130.436133pt;}
.ya3{bottom:130.668000pt;}
.y67{bottom:131.468000pt;}
.yc1{bottom:131.618133pt;}
.y111{bottom:133.987733pt;}
.y125{bottom:139.313600pt;}
.y1d{bottom:142.434267pt;}
.y133{bottom:147.321467pt;}
.ye0{bottom:147.867200pt;}
.yf4{bottom:147.959333pt;}
.ya2{bottom:148.668000pt;}
.y43{bottom:148.929867pt;}
.y66{bottom:149.441333pt;}
.y86{bottom:151.549867pt;}
.y1c{bottom:160.434267pt;}
.y110{bottom:162.666667pt;}
.yc0{bottom:164.908267pt;}
.yf2{bottom:165.959333pt;}
.ydf{bottom:166.416133pt;}
.ya1{bottom:166.668000pt;}
.y65{bottom:167.414667pt;}
.y42{bottom:167.832933pt;}
.yf3{bottom:170.399333pt;}
.y124{bottom:172.431733pt;}
.y1b{bottom:178.434267pt;}
.y132{bottom:178.904133pt;}
.y10f{bottom:181.042267pt;}
.ybf{bottom:183.080133pt;}
.y85{bottom:184.668000pt;}
.yde{bottom:184.965067pt;}
.y64{bottom:185.388000pt;}
.y41{bottom:186.736000pt;}
.y131{bottom:196.904133pt;}
.yf1{bottom:199.077467pt;}
.y10e{bottom:199.417867pt;}
.ya0{bottom:199.786133pt;}
.y84{bottom:202.668000pt;}
.y63{bottom:203.361333pt;}
.y123{bottom:205.549867pt;}
.y40{bottom:205.639067pt;}
.y1a{bottom:211.552400pt;}
.y130{bottom:214.904133pt;}
.ybe{bottom:216.370133pt;}
.yf0{bottom:217.077467pt;}
.y9f{bottom:217.786133pt;}
.ydd{bottom:218.632133pt;}
.y83{bottom:220.668000pt;}
.y62{bottom:221.334667pt;}
.y122{bottom:223.549867pt;}
.y19{bottom:229.552400pt;}
.y12f{bottom:232.904133pt;}
.y10d{bottom:232.911467pt;}
.ybd{bottom:234.542133pt;}
.y9e{bottom:235.786133pt;}
.ydc{bottom:237.181067pt;}
.y82{bottom:238.668000pt;}
.y61{bottom:239.308000pt;}
.y3f{bottom:239.660267pt;}
.y121{bottom:241.549867pt;}
.y18{bottom:247.552400pt;}
.yef{bottom:250.195467pt;}
.y12e{bottom:250.904133pt;}
.y10c{bottom:251.287067pt;}
.ybc{bottom:252.714000pt;}
.ydb{bottom:255.730000pt;}
.y81{bottom:256.668000pt;}
.y60{bottom:257.281333pt;}
.y3e{bottom:258.563333pt;}
.y17{bottom:265.552400pt;}
.y13e{bottom:266.022267pt;}
.y9d{bottom:268.904133pt;}
.y10b{bottom:269.662667pt;}
.ybb{bottom:270.885867pt;}
.yda{bottom:274.278933pt;}
.y120{bottom:274.668000pt;}
.y5f{bottom:275.254667pt;}
.y3d{bottom:277.466400pt;}
.yee{bottom:283.313600pt;}
.y16{bottom:283.552400pt;}
.y13d{bottom:284.022267pt;}
.y12d{bottom:286.904133pt;}
.y80{bottom:289.786133pt;}
.y11f{bottom:292.668000pt;}
.yd9{bottom:292.827867pt;}
.y5e{bottom:293.228000pt;}
.y3c{bottom:296.369467pt;}
.y15{bottom:301.552400pt;}
.y9c{bottom:302.022267pt;}
.y10a{bottom:303.156400pt;}
.yba{bottom:304.176000pt;}
.y12c{bottom:304.904133pt;}
.y7f{bottom:307.786133pt;}
.y11e{bottom:310.668000pt;}
.y5d{bottom:311.201333pt;}
.yd8{bottom:311.376800pt;}
.y3b{bottom:315.272533pt;}
.yed{bottom:316.431733pt;}
.y14{bottom:319.552400pt;}
.y9b{bottom:320.022267pt;}
.yb9{bottom:322.347867pt;}
.y7e{bottom:325.786133pt;}
.y11d{bottom:328.668000pt;}
.y5c{bottom:329.174667pt;}
.yd7{bottom:329.925600pt;}
.yec{bottom:334.431733pt;}
.y109{bottom:336.650000pt;}
.y13{bottom:337.552400pt;}
.y9a{bottom:338.022267pt;}
.y7d{bottom:343.786133pt;}
.y5b{bottom:347.148000pt;}
.yd6{bottom:348.474667pt;}
.y3a{bottom:349.293733pt;}
.yeb{bottom:352.431733pt;}
.y108{bottom:355.025600pt;}
.y12{bottom:355.552400pt;}
.yb8{bottom:355.637867pt;}
.y99{bottom:356.022267pt;}
.y11c{bottom:361.786133pt;}
.y5a{bottom:365.121333pt;}
.y39{bottom:368.196933pt;}
.y11{bottom:373.552400pt;}
.y98{bottom:374.022267pt;}
.y7c{bottom:376.904133pt;}
.yd5{bottom:382.141600pt;}
.yea{bottom:385.549867pt;}
.y38{bottom:387.100000pt;}
.y107{bottom:388.519333pt;}
.yb7{bottom:388.927867pt;}
.y13c{bottom:389.140400pt;}
.y10{bottom:391.552400pt;}
.y97{bottom:392.022267pt;}
.y7b{bottom:394.904133pt;}
.y59{bottom:398.212667pt;}
.yd4{bottom:400.690533pt;}
.y37{bottom:406.003067pt;}
.y106{bottom:406.894933pt;}
.yb6{bottom:407.099867pt;}
.y13b{bottom:407.140400pt;}
.yf{bottom:409.552400pt;}
.y96{bottom:410.022267pt;}
.y7a{bottom:412.904133pt;}
.ye9{bottom:418.668000pt;}
.yd3{bottom:419.239467pt;}
.y36{bottom:424.906133pt;}
.y13a{bottom:425.140400pt;}
.y105{bottom:425.270533pt;}
.y11b{bottom:428.022267pt;}
.y79{bottom:430.904133pt;}
.y58{bottom:431.304133pt;}
.ye8{bottom:436.668000pt;}
.yd2{bottom:437.788400pt;}
.yb5{bottom:440.389867pt;}
.ye{bottom:442.670400pt;}
.y95{bottom:443.140400pt;}
.y35{bottom:443.809200pt;}
.y78{bottom:448.904267pt;}
.y57{bottom:449.277467pt;}
.yd1{bottom:456.337333pt;}
.yb4{bottom:458.561733pt;}
.y104{bottom:458.764133pt;}
.yd{bottom:460.670400pt;}
.y94{bottom:461.140400pt;}
.y34{bottom:462.712267pt;}
.y77{bottom:466.904267pt;}
.y56{bottom:467.250800pt;}
.ye7{bottom:469.786000pt;}
.yd0{bottom:474.886267pt;}
.yb3{bottom:476.733600pt;}
.yc{bottom:478.670400pt;}
.y93{bottom:479.140400pt;}
.y33{bottom:481.615333pt;}
.y103{bottom:492.257867pt;}
.yb2{bottom:494.905600pt;}
.yb{bottom:496.670400pt;}
.y11a{bottom:497.140400pt;}
.y76{bottom:500.022267pt;}
.y55{bottom:500.342267pt;}
.y32{bottom:500.518533pt;}
.ye6{bottom:502.904267pt;}
.ycf{bottom:508.553333pt;}
.y92{bottom:512.258533pt;}
.yb1{bottom:513.077467pt;}
.y12b{bottom:515.140400pt;}
.y75{bottom:518.022267pt;}
.y54{bottom:518.315600pt;}
.y31{bottom:519.421600pt;}
.y102{bottom:525.751600pt;}
.yce{bottom:527.102267pt;}
.ya{bottom:529.788533pt;}
.y91{bottom:530.258533pt;}
.y12a{bottom:533.140400pt;}
.y74{bottom:536.022267pt;}
.y53{bottom:536.288933pt;}
.y30{bottom:538.324667pt;}
.y101{bottom:544.127067pt;}
.ycd{bottom:545.651067pt;}
.yb0{bottom:546.367467pt;}
.y9{bottom:547.788533pt;}
.y90{bottom:548.258533pt;}
.y129{bottom:551.140400pt;}
.y73{bottom:554.022267pt;}
.y52{bottom:554.262267pt;}
.y2f{bottom:557.227733pt;}
.y100{bottom:562.502667pt;}
.y119{bottom:563.376667pt;}
.yaf{bottom:564.539467pt;}
.y8{bottom:565.788533pt;}
.y8f{bottom:566.258533pt;}
.y72{bottom:572.022267pt;}
.y51{bottom:572.235600pt;}
.y2e{bottom:576.130800pt;}
.ycc{bottom:579.318133pt;}
.yff{bottom:580.878267pt;}
.y118{bottom:581.376667pt;}
.yae{bottom:582.711333pt;}
.y7{bottom:583.788533pt;}
.y8e{bottom:584.258533pt;}
.ye5{bottom:587.140400pt;}
.y71{bottom:590.022267pt;}
.y2d{bottom:595.034000pt;}
.ycb{bottom:597.867067pt;}
.yfe{bottom:599.253867pt;}
.y117{bottom:599.376667pt;}
.yad{bottom:600.883333pt;}
.y6{bottom:601.788533pt;}
.y8d{bottom:602.258533pt;}
.ye4{bottom:605.140400pt;}
.y50{bottom:605.327067pt;}
.y70{bottom:608.022267pt;}
.y2c{bottom:613.937067pt;}
.yca{bottom:616.416000pt;}
.y116{bottom:617.376667pt;}
.yfd{bottom:617.629467pt;}
.yac{bottom:619.055200pt;}
.y128{bottom:620.258533pt;}
.ye3{bottom:623.140400pt;}
.y4f{bottom:623.300400pt;}
.yc9{bottom:634.964933pt;}
.y8c{bottom:635.376667pt;}
.yfc{bottom:636.005067pt;}
.yab{bottom:637.227067pt;}
.y127{bottom:638.258533pt;}
.y6f{bottom:641.140400pt;}
.y4e{bottom:641.273733pt;}
.y2b{bottom:647.958133pt;}
.y8b{bottom:653.376667pt;}
.yc8{bottom:653.513867pt;}
.yfb{bottom:654.380667pt;}
.yaa{bottom:655.399067pt;}
.y4d{bottom:659.247067pt;}
.y2a{bottom:666.861333pt;}
.y8a{bottom:671.376667pt;}
.yc7{bottom:672.062800pt;}
.yfa{bottom:672.756133pt;}
.ya9{bottom:673.570933pt;}
.y6e{bottom:674.258533pt;}
.y4c{bottom:677.220400pt;}
.y29{bottom:685.764267pt;}
.y89{bottom:689.376667pt;}
.yc6{bottom:690.611733pt;}
.yf9{bottom:691.131733pt;}
.ya8{bottom:691.742800pt;}
.y5{bottom:699.158667pt;}
.y28{bottom:704.667333pt;}
.y6d{bottom:707.376667pt;}
.yc5{bottom:709.160667pt;}
.y4b{bottom:710.311867pt;}
.y4{bottom:717.825333pt;}
.y27{bottom:723.570533pt;}
.yf8{bottom:724.625467pt;}
.ya7{bottom:725.032933pt;}
.y6c{bottom:725.376667pt;}
.yc4{bottom:727.709600pt;}
.y26{bottom:742.473600pt;}
.yf7{bottom:743.001067pt;}
.ya6{bottom:743.204800pt;}
.y6b{bottom:743.376667pt;}
.y4a{bottom:743.403333pt;}
.y25{bottom:761.376667pt;}
.y3{bottom:782.803067pt;}
.y2{bottom:782.803200pt;}
.y1{bottom:794.003200pt;}
.y23{bottom:798.479067pt;}
.y48{bottom:798.480267pt;}
.y22{bottom:798.497600pt;}
.y47{bottom:798.498800pt;}
.ha{height:20.844971pt;}
.hf{height:21.546667pt;}
.he{height:21.951893pt;}
.h2{height:26.357333pt;}
.hc{height:30.122667pt;}
.h10{height:30.250667pt;}
.h9{height:30.333333pt;}
.hd{height:31.285333pt;}
.hb{height:35.754667pt;}
.h5{height:37.653333pt;}
.h8{height:37.760000pt;}
.h4{height:37.813333pt;}
.h7{height:39.711893pt;}
.h6{height:44.693333pt;}
.h3{height:53.632000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x7{left:102.047200pt;}
.x3{left:151.181067pt;}
.x4{left:155.379733pt;}
.x6{left:160.401467pt;}
.x5{left:193.441067pt;}
.x1{left:392.590800pt;}
.x2{left:413.068000pt;}
.x9{left:488.058267pt;}
.xa{left:491.838000pt;}
.x8{left:506.601200pt;}
}




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