
    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_56ef3ab3697fc5f783c22d01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_6b2dc069f00e4b03964262cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_2e82282f73a65a8819de9ebc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_4882a55443838ab11b305224.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_5fa5689390ac9d9934c3267d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_43bcbd0cbba87e447776a6b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_31be1cd140ed30213a024f90.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_43e3bec540725708d78e628e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2e9548a9cd97c534c07e56cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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;}
.m1c{transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.220631,0.000000,-0.049029,0.245145,0,0);}
.m17{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m9{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.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);}
.m29{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m22{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.546000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000429px;}
.lsc{letter-spacing:0.000444px;}
.ls14{letter-spacing:0.000547px;}
.ls3{letter-spacing:0.001639px;}
.ls4{letter-spacing:2.310587px;}
.lse{letter-spacing:2.312552px;}
.ls2{letter-spacing:2.315727px;}
.lsf{letter-spacing:2.818917px;}
.lsd{letter-spacing:3.630547px;}
.ls10{letter-spacing:3.702446px;}
.ls5{letter-spacing:13.449720px;}
.ls8{letter-spacing:14.220782px;}
.ls12{letter-spacing:16.214526px;}
.ls7{letter-spacing:16.362001px;}
.ls9{letter-spacing:16.391294px;}
.lsa{letter-spacing:17.898933px;}
.lsb{letter-spacing:21.804815px;}
.ls1{letter-spacing:36.008332px;}
.ls0{letter-spacing:36.014356px;}
.ls11{letter-spacing:39.931742px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws97{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws13{word-spacing:-65.454540px;}
.ws46{word-spacing:-64.557900px;}
.ws79{word-spacing:-59.775840px;}
.ws75{word-spacing:-49.418178px;}
.ws73{word-spacing:-49.156360px;}
.ws65{word-spacing:-49.090905px;}
.ws7f{word-spacing:-48.763632px;}
.ws77{word-spacing:-48.239996px;}
.ws64{word-spacing:-48.174541px;}
.ws3{word-spacing:-47.820660px;}
.ws63{word-spacing:-47.061814px;}
.ws6e{word-spacing:-47.059458px;}
.ws6a{word-spacing:-46.939118px;}
.ws81{word-spacing:-45.130759px;}
.ws82{word-spacing:-45.070983px;}
.ws4d{word-spacing:-44.831880px;}
.ws74{word-spacing:-44.772104px;}
.ws78{word-spacing:-44.712328px;}
.ws7e{word-spacing:-44.517626px;}
.ws70{word-spacing:-44.507384px;}
.ws6c{word-spacing:-44.440037px;}
.ws14{word-spacing:-43.038600px;}
.wsad{word-spacing:-41.956360px;}
.wsb{word-spacing:-40.832895px;}
.ws21{word-spacing:-40.510105px;}
.wsa{word-spacing:-40.348710px;}
.ws4c{word-spacing:-36.305472px;}
.ws2{word-spacing:-31.202994px;}
.ws45{word-spacing:-28.472725px;}
.ws26{word-spacing:-23.402252px;}
.ws4{word-spacing:-20.801987px;}
.ws87{word-spacing:-17.214544px;}
.ws66{word-spacing:-16.756362px;}
.ws1a{word-spacing:-15.905453px;}
.ws92{word-spacing:-15.774544px;}
.ws9e{word-spacing:-15.643635px;}
.ws91{word-spacing:-15.601484px;}
.wsac{word-spacing:-15.512726px;}
.ws48{word-spacing:-15.316362px;}
.ws15{word-spacing:-15.250908px;}
.ws34{word-spacing:-15.185453px;}
.ws90{word-spacing:-15.054544px;}
.ws72{word-spacing:-14.989090px;}
.ws84{word-spacing:-14.661817px;}
.ws3f{word-spacing:-14.530908px;}
.ws27{word-spacing:-14.471737px;}
.ws40{word-spacing:-14.465453px;}
.ws37{word-spacing:-14.269090px;}
.ws39{word-spacing:-14.138181px;}
.ws93{word-spacing:-14.072726px;}
.ws50{word-spacing:-13.876362px;}
.ws88{word-spacing:-13.745453px;}
.ws33{word-spacing:-13.418181px;}
.ws67{word-spacing:-13.287272px;}
.ws5{word-spacing:-13.202414px;}
.ws9{word-spacing:-13.202242px;}
.ws6{word-spacing:-13.199745px;}
.ws1{word-spacing:-13.195529px;}
.ws7{word-spacing:-13.195037px;}
.ws85{word-spacing:-13.090908px;}
.ws6f{word-spacing:-13.025453px;}
.ws6d{word-spacing:-12.959999px;}
.ws69{word-spacing:-12.923244px;}
.ws98{word-spacing:-12.829090px;}
.ws6b{word-spacing:-12.764498px;}
.ws18{word-spacing:-12.763635px;}
.ws94{word-spacing:-12.698181px;}
.ws89{word-spacing:-12.632726px;}
.ws8a{word-spacing:-12.567272px;}
.ws5e{word-spacing:-12.501817px;}
.ws17{word-spacing:-12.436363px;}
.ws35{word-spacing:-12.370908px;}
.ws5d{word-spacing:-12.305454px;}
.ws5f{word-spacing:-12.257348px;}
.ws1d{word-spacing:-12.239999px;}
.ws1c{word-spacing:-12.174544px;}
.ws11{word-spacing:-12.158411px;}
.ws16{word-spacing:-12.109090px;}
.ws1b{word-spacing:-12.043635px;}
.ws1f{word-spacing:-11.978181px;}
.ws20{word-spacing:-11.912726px;}
.ws3d{word-spacing:-11.847272px;}
.ws1e{word-spacing:-11.781817px;}
.ws5c{word-spacing:-11.716363px;}
.ws68{word-spacing:-11.650908px;}
.ws86{word-spacing:-11.585454px;}
.ws61{word-spacing:-11.519999px;}
.ws4f{word-spacing:-11.454545px;}
.ws76{word-spacing:-11.258181px;}
.ws3a{word-spacing:-11.192726px;}
.ws71{word-spacing:-11.127272px;}
.ws19{word-spacing:-11.061817px;}
.ws7a{word-spacing:-10.996363px;}
.ws4a{word-spacing:-10.865454px;}
.ws49{word-spacing:-10.799999px;}
.ws96{word-spacing:-10.734545px;}
.wsa5{word-spacing:-10.669090px;}
.ws42{word-spacing:-10.603635px;}
.ws8d{word-spacing:-10.407272px;}
.ws31{word-spacing:-10.341817px;}
.ws80{word-spacing:-10.210908px;}
.ws62{word-spacing:-10.079999px;}
.ws7c{word-spacing:-10.014545px;}
.ws23{word-spacing:-9.985239px;}
.ws29{word-spacing:-9.984901px;}
.ws2e{word-spacing:-9.957576px;}
.ws28{word-spacing:-9.956211px;}
.ws2c{word-spacing:-9.954911px;}
.ws24{word-spacing:-9.954315px;}
.wsd{word-spacing:-9.952682px;}
.ws4b{word-spacing:-9.949090px;}
.ws2a{word-spacing:-9.949010px;}
.ws25{word-spacing:-9.933608px;}
.ws2d{word-spacing:-9.927608px;}
.ws22{word-spacing:-9.900574px;}
.wse{word-spacing:-9.898884px;}
.ws8b{word-spacing:-9.883636px;}
.wsf{word-spacing:-9.845085px;}
.ws10{word-spacing:-9.791287px;}
.ws47{word-spacing:-9.359999px;}
.ws3e{word-spacing:-9.163636px;}
.ws3b{word-spacing:-9.098181px;}
.ws41{word-spacing:-8.967272px;}
.ws4e{word-spacing:-8.836363px;}
.ws9f{word-spacing:-8.639999px;}
.wsa4{word-spacing:-8.574545px;}
.ws95{word-spacing:-8.509090px;}
.ws8c{word-spacing:-8.443636px;}
.wsa1{word-spacing:-8.312727px;}
.ws3c{word-spacing:-8.247272px;}
.wsa6{word-spacing:-8.181817px;}
.ws57{word-spacing:-8.050908px;}
.ws55{word-spacing:-7.854545px;}
.ws54{word-spacing:-7.789090px;}
.ws99{word-spacing:-7.461818px;}
.ws7d{word-spacing:-7.134545px;}
.ws12{word-spacing:-7.047575px;}
.wsc{word-spacing:-6.832382px;}
.wsa0{word-spacing:-6.807272px;}
.ws43{word-spacing:-6.676363px;}
.ws2f{word-spacing:-6.635114px;}
.ws8e{word-spacing:-6.610909px;}
.ws36{word-spacing:-6.479999px;}
.ws8f{word-spacing:-6.152727px;}
.ws83{word-spacing:-6.087272px;}
.ws38{word-spacing:-6.021818px;}
.ws56{word-spacing:-5.825454px;}
.ws60{word-spacing:-5.629090px;}
.ws51{word-spacing:-5.563636px;}
.ws2b{word-spacing:-5.487425px;}
.ws32{word-spacing:-5.301818px;}
.ws7b{word-spacing:-5.170909px;}
.ws53{word-spacing:-4.974545px;}
.ws52{word-spacing:-4.909090px;}
.wsab{word-spacing:-3.992727px;}
.ws59{word-spacing:-0.001387px;}
.ws30{word-spacing:0.000000px;}
.ws5b{word-spacing:0.000501px;}
.ws58{word-spacing:0.001696px;}
.ws5a{word-spacing:0.004085px;}
.wsa7{word-spacing:0.196364px;}
.wsaa{word-spacing:2.487273px;}
.ws44{word-spacing:4.058181px;}
.ws8{word-spacing:4.805677px;}
.wsa9{word-spacing:19.047271px;}
.wsa8{word-spacing:21.403635px;}
.ws9a{word-spacing:22.712725px;}
.wsa2{word-spacing:23.563634px;}
.ws9b{word-spacing:35.476361px;}
.ws9c{word-spacing:50.530905px;}
.wsa3{word-spacing:82.472720px;}
.ws9d{word-spacing:320.399973px;}
._19{margin-left:-7.574794px;}
._1e{margin-left:-5.694545px;}
._2{margin-left:-4.375592px;}
._3{margin-left:-3.349842px;}
._0{margin-left:-2.065853px;}
._5{margin-left:-1.036516px;}
._6{width:1.129764px;}
._c{width:2.421818px;}
._e{width:3.818782px;}
._18{width:5.904394px;}
._f{width:11.943205px;}
._d{width:13.944179px;}
._12{width:15.643635px;}
._9{width:16.804785px;}
._4{width:18.251965px;}
._15{width:19.446570px;}
._2b{width:20.552726px;}
._8{width:21.730907px;}
._b{width:22.778180px;}
._16{width:24.549046px;}
._a{width:25.582863px;}
._7{width:27.652316px;}
._22{width:28.799998px;}
._14{width:30.174543px;}
._11{width:32.269088px;}
._1{width:34.396449px;}
._17{width:35.401044px;}
._23{width:37.363786px;}
._10{width:38.683633px;}
._13{width:43.038600px;}
._25{width:44.443633px;}
._1f{width:49.614541px;}
._2a{width:52.101814px;}
._26{width:57.992722px;}
._1a{width:60.618974px;}
._29{width:66.239994px;}
._24{width:73.161144px;}
._28{width:81.098175px;}
._1c{width:92.552720px;}
._27{width:154.799987px;}
._1b{width:159.606861px;}
._21{width:162.506586px;}
._20{width:163.689256px;}
._1d{width:209.551368px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs7{font-size:52.363620px;}
.fs4{font-size:53.798280px;}
.fs8{font-size:56.727300px;}
.fsa{font-size:57.850722px;}
.fs9{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y132{bottom:111.472500px;}
.y32{bottom:112.885500px;}
.ya9{bottom:116.187000px;}
.yc8{bottom:116.515500px;}
.y93{bottom:116.524500px;}
.y65{bottom:116.532000px;}
.yb8{bottom:116.551500px;}
.y109{bottom:116.554500px;}
.y122{bottom:125.545500px;}
.y31{bottom:129.948000px;}
.y131{bottom:131.796000px;}
.y92{bottom:132.963000px;}
.y64{bottom:132.970500px;}
.y108{bottom:132.991500px;}
.ya8{bottom:136.510500px;}
.yc7{bottom:141.763500px;}
.y121{bottom:145.869000px;}
.y30{bottom:146.385000px;}
.y91{bottom:149.401500px;}
.y107{bottom:149.430000px;}
.y130{bottom:152.119500px;}
.ya7{bottom:156.834000px;}
.yea{bottom:157.617000px;}
.yb7{bottom:158.328000px;}
.yc6{bottom:162.088500px;}
.y2f{bottom:162.870000px;}
.y63{bottom:165.799500px;}
.y90{bottom:165.840000px;}
.y120{bottom:166.192500px;}
.y12f{bottom:172.444500px;}
.ya6{bottom:177.157500px;}
.ye9{bottom:177.942000px;}
.yb6{bottom:178.651500px;}
.y2e{bottom:179.308500px;}
.y8f{bottom:182.277000px;}
.yc5{bottom:182.412000px;}
.y62{bottom:186.124500px;}
.y11f{bottom:186.516000px;}
.y106{bottom:192.309000px;}
.y12e{bottom:192.768000px;}
.ya5{bottom:197.481000px;}
.ye8{bottom:198.265500px;}
.yb5{bottom:198.976500px;}
.y2d{bottom:201.052500px;}
.yc4{bottom:202.735500px;}
.y61{bottom:206.448000px;}
.y11e{bottom:206.841000px;}
.y2c{bottom:212.446500px;}
.y105{bottom:212.634000px;}
.y12d{bottom:213.091500px;}
.y8e{bottom:213.463500px;}
.ya4{bottom:217.806000px;}
.ye7{bottom:218.589000px;}
.yc3{bottom:223.059000px;}
.y60{bottom:226.771500px;}
.y11d{bottom:227.164500px;}
.y2b{bottom:228.885000px;}
.y104{bottom:232.957500px;}
.y12c{bottom:233.415000px;}
.y8d{bottom:233.787000px;}
.ya3{bottom:238.129500px;}
.ye6{bottom:238.912500px;}
.yc2{bottom:243.382500px;}
.y5f{bottom:247.095000px;}
.y11c{bottom:247.488000px;}
.yb4{bottom:249.543000px;}
.y103{bottom:253.281000px;}
.y12b{bottom:253.738500px;}
.y8c{bottom:254.112000px;}
.ya2{bottom:258.453000px;}
.ye5{bottom:259.236000px;}
.yc1{bottom:263.707500px;}
.y5d{bottom:267.418500px;}
.y11b{bottom:267.811500px;}
.y2a{bottom:270.262500px;}
.y5e{bottom:273.555000px;}
.y102{bottom:273.604500px;}
.y12a{bottom:274.063500px;}
.y8b{bottom:274.435500px;}
.ya1{bottom:278.776500px;}
.ye4{bottom:279.561000px;}
.y5c{bottom:287.743500px;}
.y11a{bottom:288.135000px;}
.y29{bottom:290.586000px;}
.y101{bottom:293.928000px;}
.y129{bottom:294.387000px;}
.y8a{bottom:294.759000px;}
.ya0{bottom:299.100000px;}
.ye3{bottom:299.884500px;}
.y5b{bottom:308.067000px;}
.yc0{bottom:310.494000px;}
.y28{bottom:310.909500px;}
.y100{bottom:314.253000px;}
.y128{bottom:314.710500px;}
.y89{bottom:315.082500px;}
.y9f{bottom:319.423500px;}
.ye2{bottom:320.208000px;}
.y119{bottom:324.606000px;}
.y5a{bottom:328.390500px;}
.ybf{bottom:328.426500px;}
.y27{bottom:331.233000px;}
.yff{bottom:334.576500px;}
.y127{bottom:335.034000px;}
.y88{bottom:335.406000px;}
.y9e{bottom:339.748500px;}
.ye1{bottom:340.531500px;}
.y59{bottom:348.714000px;}
.y26{bottom:351.558000px;}
.yfe{bottom:354.900000px;}
.y126{bottom:355.357500px;}
.y87{bottom:355.731000px;}
.y9d{bottom:360.072000px;}
.ye0{bottom:360.855000px;}
.y25{bottom:371.881500px;}
.yfd{bottom:375.223500px;}
.y125{bottom:375.682500px;}
.y86{bottom:376.054500px;}
.y118{bottom:376.074000px;}
.y9c{bottom:380.395500px;}
.ydf{bottom:381.180000px;}
.y58{bottom:385.183500px;}
.y24{bottom:392.205000px;}
.yfc{bottom:395.547000px;}
.y124{bottom:396.006000px;}
.y85{bottom:396.378000px;}
.y117{bottom:396.397500px;}
.y9b{bottom:400.719000px;}
.yde{bottom:401.503500px;}
.y23{bottom:412.528500px;}
.yfb{bottom:415.872000px;}
.y123{bottom:416.329500px;}
.y84{bottom:416.701500px;}
.y116{bottom:416.722500px;}
.y9a{bottom:421.042500px;}
.ydd{bottom:421.827000px;}
.y22{bottom:432.852000px;}
.yf9{bottom:436.195500px;}
.y57{bottom:436.653000px;}
.y99{bottom:441.367500px;}
.ydc{bottom:442.150500px;}
.yfa{bottom:442.332000px;}
.y21{bottom:453.177000px;}
.y115{bottom:453.192000px;}
.yf7{bottom:456.519000px;}
.y56{bottom:456.976500px;}
.y83{bottom:457.350000px;}
.y98{bottom:461.691000px;}
.ydb{bottom:462.474000px;}
.yf8{bottom:462.655500px;}
.y20{bottom:473.500500px;}
.yf6{bottom:476.842500px;}
.y55{bottom:477.301500px;}
.y82{bottom:477.673500px;}
.yda{bottom:482.799000px;}
.y1f{bottom:493.824000px;}
.yf5{bottom:497.166000px;}
.y54{bottom:497.625000px;}
.y81{bottom:497.997000px;}
.y97{bottom:498.160500px;}
.yd9{bottom:503.122500px;}
.y114{bottom:504.661500px;}
.y1e{bottom:514.147500px;}
.yf4{bottom:517.491000px;}
.y53{bottom:517.948500px;}
.y80{bottom:522.804000px;}
.yd8{bottom:523.446000px;}
.y113{bottom:524.985000px;}
.y1d{bottom:534.471000px;}
.yf3{bottom:537.814500px;}
.y52{bottom:538.272000px;}
.yd7{bottom:543.769500px;}
.y112{bottom:545.308500px;}
.y96{bottom:549.630000px;}
.y1c{bottom:554.796000px;}
.y7f{bottom:556.578000px;}
.yf2{bottom:558.138000px;}
.y51{bottom:558.595500px;}
.yd6{bottom:564.093000px;}
.y95{bottom:569.953500px;}
.y7e{bottom:576.901500px;}
.yf1{bottom:578.461500px;}
.y50{bottom:578.920500px;}
.y111{bottom:581.778000px;}
.yd5{bottom:584.418000px;}
.y94{bottom:590.277000px;}
.y1b{bottom:591.265500px;}
.y7d{bottom:597.225000px;}
.yf0{bottom:598.785000px;}
.y4f{bottom:599.244000px;}
.yd4{bottom:604.741500px;}
.y7c{bottom:617.548500px;}
.yef{bottom:619.110000px;}
.y4e{bottom:619.567500px;}
.yd3{bottom:625.065000px;}
.yb3{bottom:629.880000px;}
.y110{bottom:633.247500px;}
.y7b{bottom:637.872000px;}
.yee{bottom:639.433500px;}
.y4d{bottom:639.891000px;}
.yd2{bottom:645.388500px;}
.yb2{bottom:650.203500px;}
.y10f{bottom:653.571000px;}
.y7a{bottom:658.197000px;}
.yed{bottom:659.757000px;}
.y4c{bottom:660.214500px;}
.y1a{bottom:665.439000px;}
.yd1{bottom:665.712000px;}
.yb1{bottom:670.527000px;}
.y10e{bottom:673.894500px;}
.y79{bottom:678.520500px;}
.y4b{bottom:680.539500px;}
.y19{bottom:681.877500px;}
.yd0{bottom:686.037000px;}
.yb0{bottom:690.850500px;}
.y10d{bottom:694.219500px;}
.yec{bottom:696.226500px;}
.y78{bottom:698.844000px;}
.y4a{bottom:700.863000px;}
.ycf{bottom:706.360500px;}
.y18{bottom:709.737000px;}
.yaf{bottom:711.175500px;}
.y10c{bottom:714.543000px;}
.y77{bottom:719.167500px;}
.y48{bottom:721.186500px;}
.ybe{bottom:725.403000px;}
.y17{bottom:726.175500px;}
.yce{bottom:726.684000px;}
.y49{bottom:727.323000px;}
.yae{bottom:731.499000px;}
.y10b{bottom:734.866500px;}
.y76{bottom:739.491000px;}
.y47{bottom:741.510000px;}
.y16{bottom:742.614000px;}
.ybd{bottom:745.726500px;}
.ycd{bottom:747.007500px;}
.yad{bottom:751.822500px;}
.yeb{bottom:755.076000px;}
.y15{bottom:759.052500px;}
.y75{bottom:759.814500px;}
.y46{bottom:761.833500px;}
.ybb{bottom:766.050000px;}
.ycc{bottom:767.331000px;}
.y10a{bottom:771.336000px;}
.yab{bottom:772.146000px;}
.ybc{bottom:772.186500px;}
.y14{bottom:775.491000px;}
.yac{bottom:778.282500px;}
.y73{bottom:780.139500px;}
.y45{bottom:782.158500px;}
.y74{bottom:786.276000px;}
.ycb{bottom:787.656000px;}
.y13{bottom:791.929500px;}
.y72{bottom:800.463000px;}
.y44{bottom:802.482000px;}
.y12{bottom:808.368000px;}
.y71{bottom:820.786500px;}
.yba{bottom:821.400000px;}
.y43{bottom:822.805500px;}
.y11{bottom:824.806500px;}
.yaa{bottom:830.995500px;}
.yca{bottom:834.525000px;}
.yb9{bottom:839.332500px;}
.y6f{bottom:841.110000px;}
.y10{bottom:841.245000px;}
.y42{bottom:843.129000px;}
.y70{bottom:847.246500px;}
.yc9{bottom:852.457500px;}
.yf{bottom:857.682000px;}
.y6d{bottom:861.433500px;}
.y41{bottom:863.452500px;}
.y6e{bottom:867.570000px;}
.ye{bottom:874.120500px;}
.y6b{bottom:881.758500px;}
.y40{bottom:883.777500px;}
.y6c{bottom:887.895000px;}
.yd{bottom:890.559000px;}
.y6a{bottom:902.082000px;}
.y3f{bottom:904.101000px;}
.yc{bottom:906.997500px;}
.y69{bottom:922.405500px;}
.yb{bottom:923.436000px;}
.y3e{bottom:924.424500px;}
.y68{bottom:942.729000px;}
.y3d{bottom:944.748000px;}
.y67{bottom:963.052500px;}
.y3c{bottom:965.071500px;}
.ya{bottom:968.566500px;}
.y3b{bottom:985.396500px;}
.y9{bottom:990.049500px;}
.y8{bottom:1004.433000px;}
.y3a{bottom:1005.720000px;}
.y7{bottom:1009.476000px;}
.y66{bottom:1021.902000px;}
.y6{bottom:1023.859500px;}
.y39{bottom:1026.043500px;}
.y5{bottom:1045.341000px;}
.y38{bottom:1046.367000px;}
.y37{bottom:1066.690500px;}
.y3{bottom:1074.669000px;}
.y4{bottom:1081.393500px;}
.y36{bottom:1087.015500px;}
.y35{bottom:1107.339000px;}
.y2{bottom:1113.523500px;}
.y34{bottom:1127.662500px;}
.y1{bottom:1146.400500px;}
.y33{bottom:1147.986000px;}
.hc{height:25.034105px;}
.h6{height:25.105836px;}
.hf{height:26.396993px;}
.h5{height:33.474462px;}
.h4{height:35.196006px;}
.h7{height:37.658796px;}
.h10{height:38.539624px;}
.h9{height:39.595534px;}
.h11{height:41.240747px;}
.h14{height:42.057475px;}
.h12{height:42.321295px;}
.h8{height:45.687269px;}
.h15{height:45.818178px;}
.he{height:46.212723px;}
.hd{height:47.073495px;}
.hb{height:48.174541px;}
.h3{height:52.794031px;}
.ha{height:60.081886px;}
.h13{height:63.085624px;}
.h2{height:72.098263px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:107.095500px;}
.x14{left:108.579000px;}
.xb{left:112.560000px;}
.x6a{left:113.715000px;}
.x75{left:115.609500px;}
.x36{left:119.487000px;}
.xd{left:124.363500px;}
.x42{left:125.503500px;}
.x6b{left:128.932500px;}
.x76{left:143.050500px;}
.x7c{left:167.874000px;}
.x38{left:171.180000px;}
.x15{left:172.576500px;}
.xc{left:175.122000px;}
.x88{left:200.232000px;}
.x64{left:204.169500px;}
.x3f{left:205.641000px;}
.x89{left:207.922500px;}
.x5f{left:211.612500px;}
.x85{left:216.570000px;}
.x22{left:222.363000px;}
.x86{left:224.260500px;}
.x23{left:230.277000px;}
.x2{left:233.488500px;}
.x61{left:234.789000px;}
.x8e{left:236.062500px;}
.x35{left:245.544000px;}
.x3{left:256.041000px;}
.x65{left:264.117000px;}
.x16{left:266.365500px;}
.x17{left:273.973500px;}
.x5b{left:275.793000px;}
.x56{left:279.543000px;}
.x62{left:284.224500px;}
.x59{left:286.704000px;}
.x57{left:288.135000px;}
.x8a{left:292.198500px;}
.x58{left:294.925500px;}
.x8c{left:299.664000px;}
.x43{left:301.131000px;}
.x8d{left:302.350500px;}
.x7a{left:306.507000px;}
.x54{left:312.805500px;}
.x79{left:324.670500px;}
.x81{left:331.746000px;}
.x4a{left:332.925000px;}
.x60{left:338.857500px;}
.x47{left:349.117500px;}
.x30{left:350.290500px;}
.x4{left:353.938500px;}
.x80{left:355.755000px;}
.x31{left:357.082500px;}
.x5{left:360.018000px;}
.x4f{left:364.327500px;}
.x63{left:369.921000px;}
.x7d{left:382.372500px;}
.x6e{left:387.451500px;}
.x34{left:389.976000px;}
.x3d{left:391.735500px;}
.x3c{left:399.904500px;}
.x44{left:402.666000px;}
.x37{left:405.393000px;}
.x2d{left:411.694500px;}
.x5a{left:413.632500px;}
.x77{left:416.520000px;}
.x32{left:422.520000px;}
.x3e{left:424.410000px;}
.x24{left:426.327000px;}
.x6c{left:430.812000px;}
.x82{left:437.742000px;}
.x55{left:439.447500px;}
.x39{left:440.748000px;}
.x83{left:445.294500px;}
.x12{left:448.402500px;}
.x5c{left:451.426500px;}
.x13{left:456.010500px;}
.x3a{left:457.084500px;}
.x25{left:463.573500px;}
.x2e{left:468.874500px;}
.x29{left:473.947500px;}
.x2f{left:475.666500px;}
.x2a{left:480.738000px;}
.x2b{left:486.511500px;}
.x3b{left:497.929500px;}
.x2c{left:501.729000px;}
.x6{left:504.906000px;}
.x4b{left:508.192500px;}
.x7{left:510.985500px;}
.x50{left:519.534000px;}
.x7b{left:521.005500px;}
.x6d{left:525.646500px;}
.x51{left:527.190000px;}
.x33{left:542.152500px;}
.x18{left:547.236000px;}
.x48{left:552.574500px;}
.x45{left:554.467500px;}
.x19{left:558.258000px;}
.x26{left:561.598500px;}
.xe{left:562.798500px;}
.x1a{left:564.201000px;}
.x40{left:565.534500px;}
.x27{left:567.976500px;}
.xf{left:570.406500px;}
.x1b{left:571.809000px;}
.x28{left:574.767000px;}
.x10{left:578.061000px;}
.x1c{left:579.712500px;}
.x11{left:585.670500px;}
.x5d{left:589.179000px;}
.x20{left:590.229000px;}
.x1d{left:594.930000px;}
.x21{left:597.021000px;}
.x73{left:603.192000px;}
.x6f{left:607.411500px;}
.x4c{left:613.369500px;}
.x74{left:618.409500px;}
.x70{left:622.629000px;}
.x52{left:625.215000px;}
.x41{left:626.826000px;}
.x71{left:630.280500px;}
.x8{left:636.415500px;}
.x72{left:645.498000px;}
.x9{left:646.978500px;}
.x66{left:653.136000px;}
.x7e{left:656.911500px;}
.x67{left:659.077500px;}
.x53{left:661.344000px;}
.x49{left:662.860500px;}
.x87{left:668.100000px;}
.x68{left:674.296500px;}
.x78{left:698.524500px;}
.x5e{left:711.711000px;}
.x8b{left:713.028000px;}
.x84{left:721.197000px;}
.x46{left:730.716000px;}
.x1e{left:762.799500px;}
.x7f{left:766.125000px;}
.xa{left:770.683500px;}
.x69{left:772.336500px;}
.x4d{left:776.334000px;}
.x1f{left:778.017000px;}
.x4e{left:783.124500px;}
@media print{
.v1{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.818667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000382pt;}
.lsc{letter-spacing:0.000394pt;}
.ls14{letter-spacing:0.000486pt;}
.ls3{letter-spacing:0.001457pt;}
.ls4{letter-spacing:2.053855pt;}
.lse{letter-spacing:2.055602pt;}
.ls2{letter-spacing:2.058424pt;}
.lsf{letter-spacing:2.505704pt;}
.lsd{letter-spacing:3.227153pt;}
.ls10{letter-spacing:3.291063pt;}
.ls5{letter-spacing:11.955307pt;}
.ls8{letter-spacing:12.640695pt;}
.ls12{letter-spacing:14.412912pt;}
.ls7{letter-spacing:14.544001pt;}
.ls9{letter-spacing:14.570039pt;}
.lsa{letter-spacing:15.910163pt;}
.lsb{letter-spacing:19.382058pt;}
.ls1{letter-spacing:32.007406pt;}
.ls0{letter-spacing:32.012761pt;}
.ls11{letter-spacing:35.494882pt;}
.ws97{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws13{word-spacing:-58.181813pt;}
.ws46{word-spacing:-57.384800pt;}
.ws79{word-spacing:-53.134080pt;}
.ws75{word-spacing:-43.927269pt;}
.ws73{word-spacing:-43.694542pt;}
.ws65{word-spacing:-43.636360pt;}
.ws7f{word-spacing:-43.345451pt;}
.ws77{word-spacing:-42.879996pt;}
.ws64{word-spacing:-42.821815pt;}
.ws3{word-spacing:-42.507253pt;}
.ws63{word-spacing:-41.832724pt;}
.ws6e{word-spacing:-41.830629pt;}
.ws6a{word-spacing:-41.723660pt;}
.ws81{word-spacing:-40.116230pt;}
.ws82{word-spacing:-40.063096pt;}
.ws4d{word-spacing:-39.850560pt;}
.ws74{word-spacing:-39.797426pt;}
.ws78{word-spacing:-39.744292pt;}
.ws7e{word-spacing:-39.571223pt;}
.ws70{word-spacing:-39.562119pt;}
.ws6c{word-spacing:-39.502255pt;}
.ws14{word-spacing:-38.256533pt;}
.wsad{word-spacing:-37.294542pt;}
.wsb{word-spacing:-36.295906pt;}
.ws21{word-spacing:-36.008982pt;}
.wsa{word-spacing:-35.865520pt;}
.ws4c{word-spacing:-32.271531pt;}
.ws2{word-spacing:-27.735994pt;}
.ws45{word-spacing:-25.309089pt;}
.ws26{word-spacing:-20.802002pt;}
.ws4{word-spacing:-18.490655pt;}
.ws87{word-spacing:-15.301817pt;}
.ws66{word-spacing:-14.894544pt;}
.ws1a{word-spacing:-14.138181pt;}
.ws92{word-spacing:-14.021817pt;}
.ws9e{word-spacing:-13.905453pt;}
.ws91{word-spacing:-13.867986pt;}
.wsac{word-spacing:-13.789090pt;}
.ws48{word-spacing:-13.614544pt;}
.ws15{word-spacing:-13.556363pt;}
.ws34{word-spacing:-13.498181pt;}
.ws90{word-spacing:-13.381817pt;}
.ws72{word-spacing:-13.323635pt;}
.ws84{word-spacing:-13.032726pt;}
.ws3f{word-spacing:-12.916363pt;}
.ws27{word-spacing:-12.863767pt;}
.ws40{word-spacing:-12.858181pt;}
.ws37{word-spacing:-12.683635pt;}
.ws39{word-spacing:-12.567272pt;}
.ws93{word-spacing:-12.509090pt;}
.ws50{word-spacing:-12.334544pt;}
.ws88{word-spacing:-12.218181pt;}
.ws33{word-spacing:-11.927272pt;}
.ws67{word-spacing:-11.810908pt;}
.ws5{word-spacing:-11.735479pt;}
.ws9{word-spacing:-11.735326pt;}
.ws6{word-spacing:-11.733107pt;}
.ws1{word-spacing:-11.729360pt;}
.ws7{word-spacing:-11.728922pt;}
.ws85{word-spacing:-11.636363pt;}
.ws6f{word-spacing:-11.578181pt;}
.ws6d{word-spacing:-11.519999pt;}
.ws69{word-spacing:-11.487328pt;}
.ws98{word-spacing:-11.403635pt;}
.ws6b{word-spacing:-11.346220pt;}
.ws18{word-spacing:-11.345454pt;}
.ws94{word-spacing:-11.287272pt;}
.ws89{word-spacing:-11.229090pt;}
.ws8a{word-spacing:-11.170908pt;}
.ws5e{word-spacing:-11.112726pt;}
.ws17{word-spacing:-11.054545pt;}
.ws35{word-spacing:-10.996363pt;}
.ws5d{word-spacing:-10.938181pt;}
.ws5f{word-spacing:-10.895420pt;}
.ws1d{word-spacing:-10.879999pt;}
.ws1c{word-spacing:-10.821817pt;}
.ws11{word-spacing:-10.807477pt;}
.ws16{word-spacing:-10.763635pt;}
.ws1b{word-spacing:-10.705454pt;}
.ws1f{word-spacing:-10.647272pt;}
.ws20{word-spacing:-10.589090pt;}
.ws3d{word-spacing:-10.530908pt;}
.ws1e{word-spacing:-10.472726pt;}
.ws5c{word-spacing:-10.414545pt;}
.ws68{word-spacing:-10.356363pt;}
.ws86{word-spacing:-10.298181pt;}
.ws61{word-spacing:-10.239999pt;}
.ws4f{word-spacing:-10.181817pt;}
.ws76{word-spacing:-10.007272pt;}
.ws3a{word-spacing:-9.949090pt;}
.ws71{word-spacing:-9.890908pt;}
.ws19{word-spacing:-9.832726pt;}
.ws7a{word-spacing:-9.774545pt;}
.ws4a{word-spacing:-9.658181pt;}
.ws49{word-spacing:-9.599999pt;}
.ws96{word-spacing:-9.541817pt;}
.wsa5{word-spacing:-9.483636pt;}
.ws42{word-spacing:-9.425454pt;}
.ws8d{word-spacing:-9.250908pt;}
.ws31{word-spacing:-9.192727pt;}
.ws80{word-spacing:-9.076363pt;}
.ws62{word-spacing:-8.959999pt;}
.ws7c{word-spacing:-8.901817pt;}
.ws23{word-spacing:-8.875768pt;}
.ws29{word-spacing:-8.875468pt;}
.ws2e{word-spacing:-8.851178pt;}
.ws28{word-spacing:-8.849965pt;}
.ws2c{word-spacing:-8.848810pt;}
.ws24{word-spacing:-8.848280pt;}
.wsd{word-spacing:-8.846828pt;}
.ws4b{word-spacing:-8.843636pt;}
.ws2a{word-spacing:-8.843564pt;}
.ws25{word-spacing:-8.829874pt;}
.ws2d{word-spacing:-8.824540pt;}
.ws22{word-spacing:-8.800510pt;}
.wse{word-spacing:-8.799008pt;}
.ws8b{word-spacing:-8.785454pt;}
.wsf{word-spacing:-8.751187pt;}
.ws10{word-spacing:-8.703366pt;}
.ws47{word-spacing:-8.319999pt;}
.ws3e{word-spacing:-8.145454pt;}
.ws3b{word-spacing:-8.087272pt;}
.ws41{word-spacing:-7.970908pt;}
.ws4e{word-spacing:-7.854545pt;}
.ws9f{word-spacing:-7.679999pt;}
.wsa4{word-spacing:-7.621818pt;}
.ws95{word-spacing:-7.563636pt;}
.ws8c{word-spacing:-7.505454pt;}
.wsa1{word-spacing:-7.389090pt;}
.ws3c{word-spacing:-7.330908pt;}
.wsa6{word-spacing:-7.272727pt;}
.ws57{word-spacing:-7.156363pt;}
.ws55{word-spacing:-6.981818pt;}
.ws54{word-spacing:-6.923636pt;}
.ws99{word-spacing:-6.632727pt;}
.ws7d{word-spacing:-6.341818pt;}
.ws12{word-spacing:-6.264511pt;}
.wsc{word-spacing:-6.073228pt;}
.wsa0{word-spacing:-6.050909pt;}
.ws43{word-spacing:-5.934545pt;}
.ws2f{word-spacing:-5.897879pt;}
.ws8e{word-spacing:-5.876363pt;}
.ws36{word-spacing:-5.760000pt;}
.ws8f{word-spacing:-5.469090pt;}
.ws83{word-spacing:-5.410909pt;}
.ws38{word-spacing:-5.352727pt;}
.ws56{word-spacing:-5.178181pt;}
.ws60{word-spacing:-5.003636pt;}
.ws51{word-spacing:-4.945454pt;}
.ws2b{word-spacing:-4.877711pt;}
.ws32{word-spacing:-4.712727pt;}
.ws7b{word-spacing:-4.596363pt;}
.ws53{word-spacing:-4.421818pt;}
.ws52{word-spacing:-4.363636pt;}
.wsab{word-spacing:-3.549091pt;}
.ws59{word-spacing:-0.001233pt;}
.ws30{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.000446pt;}
.ws58{word-spacing:0.001508pt;}
.ws5a{word-spacing:0.003631pt;}
.wsa7{word-spacing:0.174545pt;}
.wsaa{word-spacing:2.210909pt;}
.ws44{word-spacing:3.607272pt;}
.ws8{word-spacing:4.271713pt;}
.wsa9{word-spacing:16.930908pt;}
.wsa8{word-spacing:19.025453pt;}
.ws9a{word-spacing:20.189089pt;}
.wsa2{word-spacing:20.945453pt;}
.ws9b{word-spacing:31.534543pt;}
.ws9c{word-spacing:44.916360pt;}
.wsa3{word-spacing:73.309085pt;}
.ws9d{word-spacing:284.799976pt;}
._19{margin-left:-6.733150pt;}
._1e{margin-left:-5.061818pt;}
._2{margin-left:-3.889415pt;}
._3{margin-left:-2.977637pt;}
._0{margin-left:-1.836314pt;}
._5{margin-left:-0.921347pt;}
._6{width:1.004235pt;}
._c{width:2.152727pt;}
._e{width:3.394473pt;}
._18{width:5.248350pt;}
._f{width:10.616182pt;}
._d{width:12.394826pt;}
._12{width:13.905453pt;}
._9{width:14.937586pt;}
._4{width:16.223969pt;}
._15{width:17.285840pt;}
._2b{width:18.269089pt;}
._8{width:19.316362pt;}
._b{width:20.247271pt;}
._16{width:21.821374pt;}
._a{width:22.740323pt;}
._7{width:24.579836pt;}
._22{width:25.599998pt;}
._14{width:26.821816pt;}
._11{width:28.683634pt;}
._1{width:30.574621pt;}
._17{width:31.467595pt;}
._23{width:33.212254pt;}
._10{width:34.385452pt;}
._13{width:38.256533pt;}
._25{width:39.505451pt;}
._1f{width:44.101815pt;}
._2a{width:46.312723pt;}
._26{width:51.549087pt;}
._1a{width:53.883532pt;}
._29{width:58.879995pt;}
._24{width:65.032128pt;}
._28{width:72.087267pt;}
._1c{width:82.269084pt;}
._27{width:137.599989pt;}
._1b{width:141.872765pt;}
._21{width:144.450299pt;}
._20{width:145.501561pt;}
._1d{width:186.267883pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs7{font-size:46.545440pt;}
.fs4{font-size:47.820693pt;}
.fs8{font-size:50.424267pt;}
.fsa{font-size:51.422864pt;}
.fs9{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:99.086667pt;}
.y32{bottom:100.342667pt;}
.ya9{bottom:103.277333pt;}
.yc8{bottom:103.569333pt;}
.y93{bottom:103.577333pt;}
.y65{bottom:103.584000pt;}
.yb8{bottom:103.601333pt;}
.y109{bottom:103.604000pt;}
.y122{bottom:111.596000pt;}
.y31{bottom:115.509333pt;}
.y131{bottom:117.152000pt;}
.y92{bottom:118.189333pt;}
.y64{bottom:118.196000pt;}
.y108{bottom:118.214667pt;}
.ya8{bottom:121.342667pt;}
.yc7{bottom:126.012000pt;}
.y121{bottom:129.661333pt;}
.y30{bottom:130.120000pt;}
.y91{bottom:132.801333pt;}
.y107{bottom:132.826667pt;}
.y130{bottom:135.217333pt;}
.ya7{bottom:139.408000pt;}
.yea{bottom:140.104000pt;}
.yb7{bottom:140.736000pt;}
.yc6{bottom:144.078667pt;}
.y2f{bottom:144.773333pt;}
.y63{bottom:147.377333pt;}
.y90{bottom:147.413333pt;}
.y120{bottom:147.726667pt;}
.y12f{bottom:153.284000pt;}
.ya6{bottom:157.473333pt;}
.ye9{bottom:158.170667pt;}
.yb6{bottom:158.801333pt;}
.y2e{bottom:159.385333pt;}
.y8f{bottom:162.024000pt;}
.yc5{bottom:162.144000pt;}
.y62{bottom:165.444000pt;}
.y11f{bottom:165.792000pt;}
.y106{bottom:170.941333pt;}
.y12e{bottom:171.349333pt;}
.ya5{bottom:175.538667pt;}
.ye8{bottom:176.236000pt;}
.yb5{bottom:176.868000pt;}
.y2d{bottom:178.713333pt;}
.yc4{bottom:180.209333pt;}
.y61{bottom:183.509333pt;}
.y11e{bottom:183.858667pt;}
.y2c{bottom:188.841333pt;}
.y105{bottom:189.008000pt;}
.y12d{bottom:189.414667pt;}
.y8e{bottom:189.745333pt;}
.ya4{bottom:193.605333pt;}
.ye7{bottom:194.301333pt;}
.yc3{bottom:198.274667pt;}
.y60{bottom:201.574667pt;}
.y11d{bottom:201.924000pt;}
.y2b{bottom:203.453333pt;}
.y104{bottom:207.073333pt;}
.y12c{bottom:207.480000pt;}
.y8d{bottom:207.810667pt;}
.ya3{bottom:211.670667pt;}
.ye6{bottom:212.366667pt;}
.yc2{bottom:216.340000pt;}
.y5f{bottom:219.640000pt;}
.y11c{bottom:219.989333pt;}
.yb4{bottom:221.816000pt;}
.y103{bottom:225.138667pt;}
.y12b{bottom:225.545333pt;}
.y8c{bottom:225.877333pt;}
.ya2{bottom:229.736000pt;}
.ye5{bottom:230.432000pt;}
.yc1{bottom:234.406667pt;}
.y5d{bottom:237.705333pt;}
.y11b{bottom:238.054667pt;}
.y2a{bottom:240.233333pt;}
.y5e{bottom:243.160000pt;}
.y102{bottom:243.204000pt;}
.y12a{bottom:243.612000pt;}
.y8b{bottom:243.942667pt;}
.ya1{bottom:247.801333pt;}
.ye4{bottom:248.498667pt;}
.y5c{bottom:255.772000pt;}
.y11a{bottom:256.120000pt;}
.y29{bottom:258.298667pt;}
.y101{bottom:261.269333pt;}
.y129{bottom:261.677333pt;}
.y8a{bottom:262.008000pt;}
.ya0{bottom:265.866667pt;}
.ye3{bottom:266.564000pt;}
.y5b{bottom:273.837333pt;}
.yc0{bottom:275.994667pt;}
.y28{bottom:276.364000pt;}
.y100{bottom:279.336000pt;}
.y128{bottom:279.742667pt;}
.y89{bottom:280.073333pt;}
.y9f{bottom:283.932000pt;}
.ye2{bottom:284.629333pt;}
.y119{bottom:288.538667pt;}
.y5a{bottom:291.902667pt;}
.ybf{bottom:291.934667pt;}
.y27{bottom:294.429333pt;}
.yff{bottom:297.401333pt;}
.y127{bottom:297.808000pt;}
.y88{bottom:298.138667pt;}
.y9e{bottom:301.998667pt;}
.ye1{bottom:302.694667pt;}
.y59{bottom:309.968000pt;}
.y26{bottom:312.496000pt;}
.yfe{bottom:315.466667pt;}
.y126{bottom:315.873333pt;}
.y87{bottom:316.205333pt;}
.y9d{bottom:320.064000pt;}
.ye0{bottom:320.760000pt;}
.y25{bottom:330.561333pt;}
.yfd{bottom:333.532000pt;}
.y125{bottom:333.940000pt;}
.y86{bottom:334.270667pt;}
.y118{bottom:334.288000pt;}
.y9c{bottom:338.129333pt;}
.ydf{bottom:338.826667pt;}
.y58{bottom:342.385333pt;}
.y24{bottom:348.626667pt;}
.yfc{bottom:351.597333pt;}
.y124{bottom:352.005333pt;}
.y85{bottom:352.336000pt;}
.y117{bottom:352.353333pt;}
.y9b{bottom:356.194667pt;}
.yde{bottom:356.892000pt;}
.y23{bottom:366.692000pt;}
.yfb{bottom:369.664000pt;}
.y123{bottom:370.070667pt;}
.y84{bottom:370.401333pt;}
.y116{bottom:370.420000pt;}
.y9a{bottom:374.260000pt;}
.ydd{bottom:374.957333pt;}
.y22{bottom:384.757333pt;}
.yf9{bottom:387.729333pt;}
.y57{bottom:388.136000pt;}
.y99{bottom:392.326667pt;}
.ydc{bottom:393.022667pt;}
.yfa{bottom:393.184000pt;}
.y21{bottom:402.824000pt;}
.y115{bottom:402.837333pt;}
.yf7{bottom:405.794667pt;}
.y56{bottom:406.201333pt;}
.y83{bottom:406.533333pt;}
.y98{bottom:410.392000pt;}
.ydb{bottom:411.088000pt;}
.yf8{bottom:411.249333pt;}
.y20{bottom:420.889333pt;}
.yf6{bottom:423.860000pt;}
.y55{bottom:424.268000pt;}
.y82{bottom:424.598667pt;}
.yda{bottom:429.154667pt;}
.y1f{bottom:438.954667pt;}
.yf5{bottom:441.925333pt;}
.y54{bottom:442.333333pt;}
.y81{bottom:442.664000pt;}
.y97{bottom:442.809333pt;}
.yd9{bottom:447.220000pt;}
.y114{bottom:448.588000pt;}
.y1e{bottom:457.020000pt;}
.yf4{bottom:459.992000pt;}
.y53{bottom:460.398667pt;}
.y80{bottom:464.714667pt;}
.yd8{bottom:465.285333pt;}
.y113{bottom:466.653333pt;}
.y1d{bottom:475.085333pt;}
.yf3{bottom:478.057333pt;}
.y52{bottom:478.464000pt;}
.yd7{bottom:483.350667pt;}
.y112{bottom:484.718667pt;}
.y96{bottom:488.560000pt;}
.y1c{bottom:493.152000pt;}
.y7f{bottom:494.736000pt;}
.yf2{bottom:496.122667pt;}
.y51{bottom:496.529333pt;}
.yd6{bottom:501.416000pt;}
.y95{bottom:506.625333pt;}
.y7e{bottom:512.801333pt;}
.yf1{bottom:514.188000pt;}
.y50{bottom:514.596000pt;}
.y111{bottom:517.136000pt;}
.yd5{bottom:519.482667pt;}
.y94{bottom:524.690667pt;}
.y1b{bottom:525.569333pt;}
.y7d{bottom:530.866667pt;}
.yf0{bottom:532.253333pt;}
.y4f{bottom:532.661333pt;}
.yd4{bottom:537.548000pt;}
.y7c{bottom:548.932000pt;}
.yef{bottom:550.320000pt;}
.y4e{bottom:550.726667pt;}
.yd3{bottom:555.613333pt;}
.yb3{bottom:559.893333pt;}
.y110{bottom:562.886667pt;}
.y7b{bottom:566.997333pt;}
.yee{bottom:568.385333pt;}
.y4d{bottom:568.792000pt;}
.yd2{bottom:573.678667pt;}
.yb2{bottom:577.958667pt;}
.y10f{bottom:580.952000pt;}
.y7a{bottom:585.064000pt;}
.yed{bottom:586.450667pt;}
.y4c{bottom:586.857333pt;}
.y1a{bottom:591.501333pt;}
.yd1{bottom:591.744000pt;}
.yb1{bottom:596.024000pt;}
.y10e{bottom:599.017333pt;}
.y79{bottom:603.129333pt;}
.y4b{bottom:604.924000pt;}
.y19{bottom:606.113333pt;}
.yd0{bottom:609.810667pt;}
.yb0{bottom:614.089333pt;}
.y10d{bottom:617.084000pt;}
.yec{bottom:618.868000pt;}
.y78{bottom:621.194667pt;}
.y4a{bottom:622.989333pt;}
.ycf{bottom:627.876000pt;}
.y18{bottom:630.877333pt;}
.yaf{bottom:632.156000pt;}
.y10c{bottom:635.149333pt;}
.y77{bottom:639.260000pt;}
.y48{bottom:641.054667pt;}
.ybe{bottom:644.802667pt;}
.y17{bottom:645.489333pt;}
.yce{bottom:645.941333pt;}
.y49{bottom:646.509333pt;}
.yae{bottom:650.221333pt;}
.y10b{bottom:653.214667pt;}
.y76{bottom:657.325333pt;}
.y47{bottom:659.120000pt;}
.y16{bottom:660.101333pt;}
.ybd{bottom:662.868000pt;}
.ycd{bottom:664.006667pt;}
.yad{bottom:668.286667pt;}
.yeb{bottom:671.178667pt;}
.y15{bottom:674.713333pt;}
.y75{bottom:675.390667pt;}
.y46{bottom:677.185333pt;}
.ybb{bottom:680.933333pt;}
.ycc{bottom:682.072000pt;}
.y10a{bottom:685.632000pt;}
.yab{bottom:686.352000pt;}
.ybc{bottom:686.388000pt;}
.y14{bottom:689.325333pt;}
.yac{bottom:691.806667pt;}
.y73{bottom:693.457333pt;}
.y45{bottom:695.252000pt;}
.y74{bottom:698.912000pt;}
.ycb{bottom:700.138667pt;}
.y13{bottom:703.937333pt;}
.y72{bottom:711.522667pt;}
.y44{bottom:713.317333pt;}
.y12{bottom:718.549333pt;}
.y71{bottom:729.588000pt;}
.yba{bottom:730.133333pt;}
.y43{bottom:731.382667pt;}
.y11{bottom:733.161333pt;}
.yaa{bottom:738.662667pt;}
.yca{bottom:741.800000pt;}
.yb9{bottom:746.073333pt;}
.y6f{bottom:747.653333pt;}
.y10{bottom:747.773333pt;}
.y42{bottom:749.448000pt;}
.y70{bottom:753.108000pt;}
.yc9{bottom:757.740000pt;}
.yf{bottom:762.384000pt;}
.y6d{bottom:765.718667pt;}
.y41{bottom:767.513333pt;}
.y6e{bottom:771.173333pt;}
.ye{bottom:776.996000pt;}
.y6b{bottom:783.785333pt;}
.y40{bottom:785.580000pt;}
.y6c{bottom:789.240000pt;}
.yd{bottom:791.608000pt;}
.y6a{bottom:801.850667pt;}
.y3f{bottom:803.645333pt;}
.yc{bottom:806.220000pt;}
.y69{bottom:819.916000pt;}
.yb{bottom:820.832000pt;}
.y3e{bottom:821.710667pt;}
.y68{bottom:837.981333pt;}
.y3d{bottom:839.776000pt;}
.y67{bottom:856.046667pt;}
.y3c{bottom:857.841333pt;}
.ya{bottom:860.948000pt;}
.y3b{bottom:875.908000pt;}
.y9{bottom:880.044000pt;}
.y8{bottom:892.829333pt;}
.y3a{bottom:893.973333pt;}
.y7{bottom:897.312000pt;}
.y66{bottom:908.357333pt;}
.y6{bottom:910.097333pt;}
.y39{bottom:912.038667pt;}
.y5{bottom:929.192000pt;}
.y38{bottom:930.104000pt;}
.y37{bottom:948.169333pt;}
.y3{bottom:955.261333pt;}
.y4{bottom:961.238667pt;}
.y36{bottom:966.236000pt;}
.y35{bottom:984.301333pt;}
.y2{bottom:989.798667pt;}
.y34{bottom:1002.366667pt;}
.y1{bottom:1019.022667pt;}
.y33{bottom:1020.432000pt;}
.hc{height:22.252538pt;}
.h6{height:22.316299pt;}
.hf{height:23.463994pt;}
.h5{height:29.755077pt;}
.h4{height:31.285338pt;}
.h7{height:33.474485pt;}
.h10{height:34.257444pt;}
.h9{height:35.196030pt;}
.h11{height:36.658442pt;}
.h14{height:37.384422pt;}
.h12{height:37.618929pt;}
.h8{height:40.610906pt;}
.h15{height:40.727269pt;}
.he{height:41.077976pt;}
.hd{height:41.843107pt;}
.hb{height:42.821815pt;}
.h3{height:46.928027pt;}
.ha{height:53.406121pt;}
.h13{height:56.076111pt;}
.h2{height:64.087345pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.196000pt;}
.x14{left:96.514667pt;}
.xb{left:100.053333pt;}
.x6a{left:101.080000pt;}
.x75{left:102.764000pt;}
.x36{left:106.210667pt;}
.xd{left:110.545333pt;}
.x42{left:111.558667pt;}
.x6b{left:114.606667pt;}
.x76{left:127.156000pt;}
.x7c{left:149.221333pt;}
.x38{left:152.160000pt;}
.x15{left:153.401333pt;}
.xc{left:155.664000pt;}
.x88{left:177.984000pt;}
.x64{left:181.484000pt;}
.x3f{left:182.792000pt;}
.x89{left:184.820000pt;}
.x5f{left:188.100000pt;}
.x85{left:192.506667pt;}
.x22{left:197.656000pt;}
.x86{left:199.342667pt;}
.x23{left:204.690667pt;}
.x2{left:207.545333pt;}
.x61{left:208.701333pt;}
.x8e{left:209.833333pt;}
.x35{left:218.261333pt;}
.x3{left:227.592000pt;}
.x65{left:234.770667pt;}
.x16{left:236.769333pt;}
.x17{left:243.532000pt;}
.x5b{left:245.149333pt;}
.x56{left:248.482667pt;}
.x62{left:252.644000pt;}
.x59{left:254.848000pt;}
.x57{left:256.120000pt;}
.x8a{left:259.732000pt;}
.x58{left:262.156000pt;}
.x8c{left:266.368000pt;}
.x43{left:267.672000pt;}
.x8d{left:268.756000pt;}
.x7a{left:272.450667pt;}
.x54{left:278.049333pt;}
.x79{left:288.596000pt;}
.x81{left:294.885333pt;}
.x4a{left:295.933333pt;}
.x60{left:301.206667pt;}
.x47{left:310.326667pt;}
.x30{left:311.369333pt;}
.x4{left:314.612000pt;}
.x80{left:316.226667pt;}
.x31{left:317.406667pt;}
.x5{left:320.016000pt;}
.x4f{left:323.846667pt;}
.x63{left:328.818667pt;}
.x7d{left:339.886667pt;}
.x6e{left:344.401333pt;}
.x34{left:346.645333pt;}
.x3d{left:348.209333pt;}
.x3c{left:355.470667pt;}
.x44{left:357.925333pt;}
.x37{left:360.349333pt;}
.x2d{left:365.950667pt;}
.x5a{left:367.673333pt;}
.x77{left:370.240000pt;}
.x32{left:375.573333pt;}
.x3e{left:377.253333pt;}
.x24{left:378.957333pt;}
.x6c{left:382.944000pt;}
.x82{left:389.104000pt;}
.x55{left:390.620000pt;}
.x39{left:391.776000pt;}
.x83{left:395.817333pt;}
.x12{left:398.580000pt;}
.x5c{left:401.268000pt;}
.x13{left:405.342667pt;}
.x3a{left:406.297333pt;}
.x25{left:412.065333pt;}
.x2e{left:416.777333pt;}
.x29{left:421.286667pt;}
.x2f{left:422.814667pt;}
.x2a{left:427.322667pt;}
.x2b{left:432.454667pt;}
.x3b{left:442.604000pt;}
.x2c{left:445.981333pt;}
.x6{left:448.805333pt;}
.x4b{left:451.726667pt;}
.x7{left:454.209333pt;}
.x50{left:461.808000pt;}
.x7b{left:463.116000pt;}
.x6d{left:467.241333pt;}
.x51{left:468.613333pt;}
.x33{left:481.913333pt;}
.x18{left:486.432000pt;}
.x48{left:491.177333pt;}
.x45{left:492.860000pt;}
.x19{left:496.229333pt;}
.x26{left:499.198667pt;}
.xe{left:500.265333pt;}
.x1a{left:501.512000pt;}
.x40{left:502.697333pt;}
.x27{left:504.868000pt;}
.xf{left:507.028000pt;}
.x1b{left:508.274667pt;}
.x28{left:510.904000pt;}
.x10{left:513.832000pt;}
.x1c{left:515.300000pt;}
.x11{left:520.596000pt;}
.x5d{left:523.714667pt;}
.x20{left:524.648000pt;}
.x1d{left:528.826667pt;}
.x21{left:530.685333pt;}
.x73{left:536.170667pt;}
.x6f{left:539.921333pt;}
.x4c{left:545.217333pt;}
.x74{left:549.697333pt;}
.x70{left:553.448000pt;}
.x52{left:555.746667pt;}
.x41{left:557.178667pt;}
.x71{left:560.249333pt;}
.x8{left:565.702667pt;}
.x72{left:573.776000pt;}
.x9{left:575.092000pt;}
.x66{left:580.565333pt;}
.x7e{left:583.921333pt;}
.x67{left:585.846667pt;}
.x53{left:587.861333pt;}
.x49{left:589.209333pt;}
.x87{left:593.866667pt;}
.x68{left:599.374667pt;}
.x78{left:620.910667pt;}
.x5e{left:632.632000pt;}
.x8b{left:633.802667pt;}
.x84{left:641.064000pt;}
.x46{left:649.525333pt;}
.x1e{left:678.044000pt;}
.x7f{left:681.000000pt;}
.xa{left:685.052000pt;}
.x69{left:686.521333pt;}
.x4d{left:690.074667pt;}
.x1f{left:691.570667pt;}
.x4e{left:696.110667pt;}
}




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