
    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_89b2f39deba2956b5a5ee669.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_90c97c41952de3403f29958b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.825000;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_0bbe9e3f876d191cf955e0f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_45cc63e46ecb50a041a79389.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_d18ce269de8a2ea43e089924.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690000;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_f208d9f3fd807a92794a9072.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7b948c6a209647cb5367e06e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.459000;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_07d433a18a5f3d8f4e5a3307.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_93ddd3a130eaa53fd6c93e64.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0fe9cbfaea8f918a2d3248b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.671000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ca0f825f6e17c79c0ae73dc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.796000;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;}
.m15{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.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);}
.m2{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);}
.m6{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);}
.m14{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);}
.m10{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);}
.m12{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);}
.m1a{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);}
.m9{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);}
.m18{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);}
.m20{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);}
.m16{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);}
.m4{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);}
.m23{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);}
.m11{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);}
.m24{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);}
.m1e{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);}
.me{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);}
.m17{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);}
.m1b{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);}
.m7{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);}
.m1d{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);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.mc{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);}
.m1f{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);}
.m8{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);}
.mb{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);}
.m1c{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);}
.m13{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);}
.ma{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);}
.md{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);}
.m5{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);}
.m22{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);}
.m19{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);}
.v3{vertical-align:-26.034000px;}
.v10{vertical-align:-21.696000px;}
.v4{vertical-align:-17.358000px;}
.vf{vertical-align:-16.031132px;}
.v8{vertical-align:-10.920783px;}
.v5{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:4.246737px;}
.v7{vertical-align:15.167521px;}
.v6{vertical-align:17.998791px;}
.va{vertical-align:21.702000px;}
.v2{vertical-align:26.040000px;}
.v1{vertical-align:31.248000px;}
.vb{vertical-align:32.964246px;}
.vd{vertical-align:35.997482px;}
.vc{vertical-align:48.131767px;}
.ve{vertical-align:51.165003px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.030736px;}
.ls8{letter-spacing:0.030740px;}
.ls7{letter-spacing:0.071173px;}
.lsc{letter-spacing:0.101117px;}
.lsf{letter-spacing:0.112609px;}
.ls5{letter-spacing:1.742232px;}
.ls4{letter-spacing:1.748232px;}
.ls1{letter-spacing:2.985000px;}
.lsb{letter-spacing:2.988168px;}
.ls2{letter-spacing:2.991000px;}
.ls0{letter-spacing:3.591000px;}
.ls3{letter-spacing:17.337000px;}
.lsa{letter-spacing:17.934168px;}
.ls10{letter-spacing:17.937000px;}
.lsd{letter-spacing:123.564188px;}
.ls9{letter-spacing:131.451339px;}
.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;}
}
.ws5{word-spacing:-35.865000px;}
.ws11{word-spacing:-29.889000px;}
.ws74{word-spacing:-26.898000px;}
.ws3{word-spacing:-26.301000px;}
.ws27{word-spacing:-23.910000px;}
.ws2a{word-spacing:-21.819000px;}
.ws64{word-spacing:-18.829770px;}
.ws1e{word-spacing:-18.770530px;}
.ws21{word-spacing:-18.591017px;}
.ws31{word-spacing:-18.351606px;}
.ws8a{word-spacing:-18.128983px;}
.ws13{word-spacing:-18.112793px;}
.ws43{word-spacing:-18.052777px;}
.ws4{word-spacing:-17.932787px;}
.ws2{word-spacing:-17.932498px;}
.ws6b{word-spacing:-17.873382px;}
.ws2e{word-spacing:-17.634570px;}
.ws63{word-spacing:-17.574612px;}
.ws8{word-spacing:-17.395216px;}
.ws4a{word-spacing:-17.156406px;}
.ws4b{word-spacing:-17.096387px;}
.ws3c{word-spacing:-16.916993px;}
.ws20{word-spacing:-16.618222px;}
.ws68{word-spacing:-16.558208px;}
.ws87{word-spacing:-16.461467px;}
.ws86{word-spacing:-16.425746px;}
.ws88{word-spacing:-16.408210px;}
.ws84{word-spacing:-16.085272px;}
.ws85{word-spacing:-16.084788px;}
.ws83{word-spacing:-16.049712px;}
.ws38{word-spacing:-15.960606px;}
.ws80{word-spacing:-15.923992px;}
.ws62{word-spacing:-15.841169px;}
.ws46{word-spacing:-15.601817px;}
.ws1d{word-spacing:-15.422424px;}
.wsb{word-spacing:-15.302989px;}
.ws18{word-spacing:-15.243569px;}
.ws45{word-spacing:-15.242970px;}
.ws19{word-spacing:-15.183610px;}
.ws1b{word-spacing:-15.124193px;}
.wsd{word-spacing:-15.123595px;}
.ws29{word-spacing:-15.064174px;}
.ws3a{word-spacing:-15.017358px;}
.ws39{word-spacing:-15.007058px;}
.ws54{word-spacing:-15.004816px;}
.ws33{word-spacing:-15.004217px;}
.ws1c{word-spacing:-14.944799px;}
.ws4e{word-spacing:-14.944500px;}
.ws32{word-spacing:-14.944199px;}
.ws10{word-spacing:-14.884779px;}
.ws6{word-spacing:-14.824823px;}
.ws15{word-spacing:-14.765403px;}
.ws1f{word-spacing:-14.764809px;}
.ws7{word-spacing:-14.705387px;}
.wse{word-spacing:-14.645370px;}
.ws9{word-spacing:-14.586011px;}
.ws2d{word-spacing:-14.525991px;}
.ws7a{word-spacing:-14.417382px;}
.ws3b{word-spacing:-14.406616px;}
.ws16{word-spacing:-14.287181px;}
.ws57{word-spacing:-14.167207px;}
.ws22{word-spacing:-14.107784px;}
.ws49{word-spacing:-14.047770px;}
.ws4c{word-spacing:-13.988409px;}
.ws4d{word-spacing:-13.988351px;}
.ws6c{word-spacing:-13.928394px;}
.ws8b{word-spacing:-13.879207px;}
.ws59{word-spacing:-13.749000px;}
.ws1a{word-spacing:-13.688981px;}
.ws7b{word-spacing:-13.664397px;}
.ws71{word-spacing:-13.610387px;}
.ws17{word-spacing:-13.569546px;}
.ws7e{word-spacing:-13.557022px;}
.ws6d{word-spacing:-13.556428px;}
.ws8c{word-spacing:-13.503010px;}
.wsc{word-spacing:-13.450170px;}
.ws6e{word-spacing:-13.448998px;}
.ws70{word-spacing:-13.395580px;}
.ws6f{word-spacing:-13.394988px;}
.ws7f{word-spacing:-13.341622px;}
.ws35{word-spacing:-13.330733px;}
.ws82{word-spacing:-13.287611px;}
.ws23{word-spacing:-13.270774px;}
.ws73{word-spacing:-13.180181px;}
.ws81{word-spacing:-13.126224px;}
.ws14{word-spacing:-13.091380px;}
.ws48{word-spacing:-13.031423px;}
.ws76{word-spacing:-13.018791px;}
.ws66{word-spacing:-12.911985px;}
.ws77{word-spacing:-12.910823px;}
.ws65{word-spacing:-12.792612px;}
.ws34{word-spacing:-12.732594px;}
.ws52{word-spacing:-12.673173px;}
.ws75{word-spacing:-12.534629px;}
.ws5f{word-spacing:-12.500373px;}
.ws67{word-spacing:-12.493720px;}
.wsa{word-spacing:-12.314386px;}
.ws3f{word-spacing:-12.199945px;}
.ws2c{word-spacing:-12.015617px;}
.ws25{word-spacing:-12.002389px;}
.ws2b{word-spacing:-11.955600px;}
.ws26{word-spacing:-11.954999px;}
.ws44{word-spacing:-11.836220px;}
.ws5b{word-spacing:-11.716186px;}
.ws7c{word-spacing:-11.673622px;}
.ws24{word-spacing:-11.668223px;}
.ws42{word-spacing:-11.058571px;}
.ws47{word-spacing:-10.939792px;}
.ws6a{word-spacing:-10.640424px;}
.ws50{word-spacing:-10.375390px;}
.ws40{word-spacing:-10.344653px;}
.ws28{word-spacing:-10.282173px;}
.ws55{word-spacing:-10.222217px;}
.ws5c{word-spacing:-9.983225px;}
.ws56{word-spacing:-9.982803px;}
.wsf{word-spacing:-9.923385px;}
.ws69{word-spacing:-9.683973px;}
.ws5d{word-spacing:-9.444562px;}
.ws89{word-spacing:-9.360612px;}
.ws51{word-spacing:-9.265766px;}
.ws60{word-spacing:-9.239406px;}
.ws78{word-spacing:-7.961431px;}
.ws79{word-spacing:-7.370050px;}
.ws41{word-spacing:-7.027618px;}
.ws30{word-spacing:-5.319581px;}
.ws7d{word-spacing:-1.237198px;}
.ws53{word-spacing:-1.195799px;}
.ws12{word-spacing:-0.071730px;}
.ws5a{word-spacing:-0.059778px;}
.ws72{word-spacing:-0.053796px;}
.ws36{word-spacing:0.000000px;}
.ws37{word-spacing:4.494714px;}
.ws58{word-spacing:4.494758px;}
.ws3e{word-spacing:15.131629px;}
.ws3d{word-spacing:17.860483px;}
.ws2f{word-spacing:17.860772px;}
.ws0{word-spacing:21.432927px;}
.ws1{word-spacing:21.439668px;}
.ws5e{word-spacing:97.394327px;}
.ws4f{word-spacing:128.872692px;}
.ws61{word-spacing:937.256862px;}
._1{margin-left:-6.886081px;}
._b{margin-left:-5.379602px;}
._5{margin-left:-4.087112px;}
._2{margin-left:-3.012574px;}
._0{margin-left:-1.291140px;}
._4{width:1.793250px;}
._3{width:2.989858px;}
._14{width:3.996403px;}
._1f{width:8.177931px;}
._20{width:9.359458px;}
._1b{width:12.241232px;}
._7{width:13.521499px;}
._c{width:16.068474px;}
._a{width:17.658487px;}
._15{width:18.853894px;}
._6{width:19.988988px;}
._9{width:22.000148px;}
._19{width:23.051760px;}
._16{width:24.175725px;}
._1c{width:25.944011px;}
._d{width:27.258143px;}
._1d{width:29.004455px;}
._18{width:30.546618px;}
._8{width:34.575600px;}
._1e{width:35.603377px;}
._13{width:38.828697px;}
._17{width:82.706231px;}
._1a{width:122.407140px;}
._10{width:483.573240px;}
._e{width:500.015880px;}
._f{width:801.009000px;}
._12{width:1905.636000px;}
._11{width:2225.382240px;}
.fc2{color:transparent;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:25.279201px;}
.fs13{font-size:26.588218px;}
.fsb{font-size:29.930574px;}
.fs11{font-size:30.498251px;}
.fs15{font-size:33.235273px;}
.fs6{font-size:37.062000px;}
.fse{font-size:37.210984px;}
.fs12{font-size:39.100321px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:42.064590px;}
.fs5{font-size:43.638000px;}
.fsa{font-size:43.884693px;}
.fs10{font-size:44.965369px;}
.fs14{font-size:44.965371px;}
.fs7{font-size:47.820000px;}
.fsd{font-size:50.558402px;}
.fsc{font-size:50.558404px;}
.fs3{font-size:52.602000px;}
.fs16{font-size:53.796000px;}
.fs4{font-size:59.778000px;}
.fs1{font-size:62.766000px;}
.fs2{font-size:71.730000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:3.653412px;}
.y9f{bottom:4.107857px;}
.y5b{bottom:6.600001px;}
.y77{bottom:6.685830px;}
.yd6{bottom:21.346307px;}
.y5d{bottom:22.500000px;}
.y97{bottom:22.865066px;}
.y6f{bottom:25.443039px;}
.yd7{bottom:40.798799px;}
.y5e{bottom:42.000000px;}
.ye1{bottom:43.047067px;}
.y98{bottom:43.139028px;}
.y70{bottom:45.717001px;}
.yd8{bottom:72.567810px;}
.y99{bottom:76.810965px;}
.y71{bottom:79.388938px;}
.ye2{bottom:82.245139px;}
.ya7{bottom:86.669922px;}
.ydf{bottom:86.839509px;}
.y59{bottom:90.508500px;}
.y9e{bottom:93.293046px;}
.y36{bottom:94.848000px;}
.y76{bottom:95.871019px;}
.y93{bottom:95.932500px;}
.yd9{bottom:104.434653px;}
.y35{bottom:105.361500px;}
.y115{bottom:106.947000px;}
.ya6{bottom:107.955051px;}
.y58{bottom:108.441000px;}
.ya9{bottom:109.572920px;}
.y9a{bottom:110.533504px;}
.y7d{bottom:110.836348px;}
.y72{bottom:113.111476px;}
.y7a{bottom:113.263152px;}
.ya4{bottom:118.926224px;}
.y34{bottom:119.557500px;}
.ye3{bottom:121.443293px;}
.y114{bottom:123.385500px;}
.y57{bottom:126.373500px;}
.y5f{bottom:130.500000px;}
.y33{bottom:133.755000px;}
.yda{bottom:136.203746px;}
.y32{bottom:138.094500px;}
.y113{bottom:139.822500px;}
.y9b{bottom:144.256000px;}
.y55{bottom:144.306000px;}
.y73{bottom:146.833972px;}
.yea{bottom:147.738340px;}
.ya5{bottom:148.856839px;}
.y56{bottom:149.731500px;}
.ya8{bottom:154.064397px;}
.y7b{bottom:154.367216px;}
.y54{bottom:159.997500px;}
.y112{bottom:160.230000px;}
.ya1{bottom:160.485289px;}
.ye4{bottom:160.641446px;}
.y79{bottom:160.687042px;}
.ye9{bottom:161.032450px;}
.y53{bottom:162.238500px;}
.y31{bottom:162.916500px;}
.y92{bottom:167.664000px;}
.ydb{bottom:168.070507px;}
.ya2{bottom:174.742825px;}
.ye7{bottom:176.477077px;}
.y111{bottom:176.668500px;}
.yde{bottom:176.770329px;}
.y9c{bottom:177.927979px;}
.ya3{bottom:178.534705px;}
.y52{bottom:180.172500px;}
.ye8{bottom:180.484859px;}
.y74{bottom:180.505952px;}
.y30{bottom:180.849000px;}
.y91{bottom:185.596500px;}
.y78{bottom:188.039154px;}
.ydd{bottom:190.064520px;}
.ye5{bottom:191.921785px;}
.y110{bottom:193.107000px;}
.ye6{bottom:195.929568px;}
.yd5{bottom:196.222820px;}
.y51{bottom:198.105000px;}
.y2f{bottom:198.783000px;}
.ydc{bottom:199.839600px;}
.y7c{bottom:201.639406px;}
.ya0{bottom:204.066715px;}
.yd0{bottom:208.734923px;}
.y10f{bottom:209.545500px;}
.y9d{bottom:211.650475px;}
.y75{bottom:214.228448px;}
.y50{bottom:216.037500px;}
.y2e{bottom:216.715500px;}
.yc7{bottom:226.427818px;}
.y10e{bottom:229.951500px;}
.y90{bottom:233.970000px;}
.y2d{bottom:234.648000px;}
.y10d{bottom:246.390000px;}
.yc8{bottom:248.128578px;}
.yff{bottom:248.718000px;}
.y8f{bottom:251.902500px;}
.y2c{bottom:252.580500px;}
.y4f{bottom:255.595500px;}
.y10c{bottom:262.828500px;}
.yc5{bottom:269.835000px;}
.y8e{bottom:270.418500px;}
.y2b{bottom:270.513000px;}
.y10b{bottom:285.991500px;}
.yc9{bottom:287.326732px;}
.yc3{bottom:287.769000px;}
.y8d{bottom:288.351000px;}
.y2a{bottom:288.445500px;}
.ycf{bottom:291.921020px;}
.yc4{bottom:293.193000px;}
.yfe{bottom:302.511000px;}
.yc2{bottom:305.701500px;}
.y8c{bottom:306.283500px;}
.y29{bottom:306.379500px;}
.y10a{bottom:319.899000px;}
.yfd{bottom:320.443500px;}
.yc1{bottom:323.634000px;}
.y8a{bottom:324.216000px;}
.y28{bottom:324.312000px;}
.yca{bottom:326.524885px;}
.y8b{bottom:329.641500px;}
.y109{bottom:337.833000px;}
.yfc{bottom:338.377500px;}
.yc0{bottom:341.566500px;}
.y89{bottom:342.150000px;}
.y27{bottom:342.873000px;}
.y108{bottom:355.765500px;}
.yfb{bottom:356.310000px;}
.ybf{bottom:357.258000px;}
.y26{bottom:358.564500px;}
.ybe{bottom:359.499000px;}
.y88{bottom:360.082500px;}
.y25{bottom:360.807000px;}
.ycb{bottom:365.722957px;}
.yfa{bottom:372.001500px;}
.y107{bottom:373.698000px;}
.yf9{bottom:374.242500px;}
.ybd{bottom:377.431500px;}
.y87{bottom:378.015000px;}
.y24{bottom:378.739500px;}
.yce{bottom:382.340675px;}
.yd3{bottom:382.438426px;}
.y106{bottom:391.630500px;}
.yf8{bottom:392.175000px;}
.ybc{bottom:395.365500px;}
.ycd{bottom:395.634785px;}
.yd2{bottom:395.732536px;}
.y86{bottom:395.947500px;}
.y23{bottom:396.672000px;}
.yd1{bottom:397.101047px;}
.yd4{bottom:397.785302px;}
.ycc{bottom:404.921111px;}
.y105{bottom:409.563000px;}
.yf7{bottom:410.107500px;}
.ybb{bottom:413.298000px;}
.y85{bottom:413.880000px;}
.y22{bottom:414.604500px;}
.y104{bottom:427.495500px;}
.yf6{bottom:428.040000px;}
.yba{bottom:431.230500px;}
.y83{bottom:431.812500px;}
.y21{bottom:432.537000px;}
.y84{bottom:437.238000px;}
.y103{bottom:445.429500px;}
.yf5{bottom:445.974000px;}
.yb9{bottom:446.922000px;}
.yb7{bottom:449.163000px;}
.y82{bottom:449.746500px;}
.y20{bottom:450.469500px;}
.yb8{bottom:454.588500px;}
.yf3{bottom:461.664000px;}
.y102{bottom:463.362000px;}
.yf2{bottom:463.906500px;}
.yb6{bottom:467.095500px;}
.y81{bottom:467.679000px;}
.y1f{bottom:468.403500px;}
.yf4{bottom:469.330500px;}
.y4e{bottom:473.094000px;}
.y101{bottom:481.294500px;}
.yf0{bottom:481.839000px;}
.yb5{bottom:485.028000px;}
.y80{bottom:485.611500px;}
.y1e{bottom:486.336000px;}
.yf1{bottom:487.263000px;}
.y4c{bottom:491.028000px;}
.y4d{bottom:496.452000px;}
.yef{bottom:499.771500px;}
.yb4{bottom:502.962000px;}
.y1d{bottom:504.268500px;}
.y100{bottom:505.951500px;}
.y4b{bottom:508.960500px;}
.y1c{bottom:519.960000px;}
.yee{bottom:521.926500px;}
.y1b{bottom:522.201000px;}
.y7f{bottom:524.764500px;}
.y4a{bottom:526.893000px;}
.yb3{bottom:538.827000px;}
.yed{bottom:539.859000px;}
.y1a{bottom:540.133500px;}
.y7e{bottom:542.697000px;}
.y49{bottom:544.825500px;}
.yb2{bottom:556.759500px;}
.yec{bottom:557.793000px;}
.y19{bottom:558.066000px;}
.y47{bottom:562.758000px;}
.y6e{bottom:564.431885px;}
.y48{bottom:568.183500px;}
.yb0{bottom:574.692000px;}
.yb1{bottom:580.117500px;}
.y46{bottom:580.690500px;}
.y18{bottom:583.920000px;}
.yaf{bottom:592.624500px;}
.y45{bottom:598.624500px;}
.yeb{bottom:608.004000px;}
.yae{bottom:610.558500px;}
.y17{bottom:621.186000px;}
.y44{bottom:624.774000px;}
.yad{bottom:628.491000px;}
.y16{bottom:639.118500px;}
.yac{bottom:646.423500px;}
.yc6{bottom:652.280487px;}
.y15{bottom:657.051000px;}
.y43{bottom:662.757000px;}
.y14{bottom:674.983500px;}
.y42{bottom:680.689500px;}
.yab{bottom:681.703500px;}
.y13{bottom:692.917500px;}
.y41{bottom:698.622000px;}
.yaa{bottom:699.636000px;}
.y12{bottom:710.850000px;}
.y40{bottom:716.554500px;}
.y96{bottom:723.948858px;}
.y11{bottom:728.782500px;}
.y3f{bottom:735.273000px;}
.y10{bottom:746.715000px;}
.y129{bottom:750.283500px;}
.y3e{bottom:753.205500px;}
.yf{bottom:764.647500px;}
.y128{bottom:766.722000px;}
.y3d{bottom:771.138000px;}
.ye{bottom:782.580000px;}
.y127{bottom:783.160500px;}
.y3c{bottom:789.070500px;}
.y126{bottom:799.599000px;}
.yd{bottom:800.514000px;}
.y3b{bottom:807.004500px;}
.yc{bottom:818.446500px;}
.y125{bottom:819.960000px;}
.y3a{bottom:822.694500px;}
.y39{bottom:824.937000px;}
.y133{bottom:832.288500px;}
.y6d{bottom:834.081000px;}
.yb{bottom:836.379000px;}
.y124{bottom:836.398500px;}
.y38{bottom:842.869500px;}
.y132{bottom:848.727000px;}
.y6c{bottom:852.015000px;}
.y123{bottom:852.837000px;}
.ya{bottom:854.311500px;}
.y37{bottom:860.802000px;}
.y131{bottom:865.165500px;}
.y122{bottom:869.275500px;}
.y6b{bottom:877.779000px;}
.y9{bottom:878.734500px;}
.y130{bottom:881.604000px;}
.y121{bottom:885.714000px;}
.y120{bottom:906.075000px;}
.y12f{bottom:914.293500px;}
.y6a{bottom:914.832000px;}
.y8{bottom:921.405000px;}
.y11f{bottom:922.513500px;}
.y12e{bottom:930.732000px;}
.y69{bottom:932.764500px;}
.y11e{bottom:938.952000px;}
.y7{bottom:943.081500px;}
.y12d{bottom:947.170500px;}
.y68{bottom:950.697000px;}
.y11d{bottom:955.390500px;}
.y6{bottom:958.248000px;}
.y67{bottom:968.629500px;}
.y11c{bottom:975.751500px;}
.y12c{bottom:979.860000px;}
.y5{bottom:985.678500px;}
.y66{bottom:986.563500px;}
.y95{bottom:987.145500px;}
.y11b{bottom:992.190000px;}
.y12b{bottom:996.298500px;}
.y4{bottom:1000.845000px;}
.y65{bottom:1005.078000px;}
.y11a{bottom:1008.627000px;}
.y12a{bottom:1012.737000px;}
.y64{bottom:1023.010500px;}
.y119{bottom:1025.065500px;}
.y3{bottom:1036.707000px;}
.y63{bottom:1040.944500px;}
.y118{bottom:1045.426500px;}
.y94{bottom:1046.368500px;}
.y62{bottom:1058.877000px;}
.y117{bottom:1061.865000px;}
.y2{bottom:1063.606500px;}
.y61{bottom:1076.809500px;}
.y116{bottom:1078.303500px;}
.y1{bottom:1090.506000px;}
.y60{bottom:1094.742000px;}
.y5c{bottom:1131.000000px;}
.y5a{bottom:1150.500000px;}
.he{height:15.000000px;}
.h1a{height:18.416292px;}
.h1e{height:19.244358px;}
.h28{height:19.369933px;}
.h25{height:24.212416px;}
.ha{height:25.053912px;}
.h19{height:27.108783px;}
.h27{height:28.485195px;}
.h26{height:28.513451px;}
.hd{height:29.499288px;}
.h9{height:30.022944px;}
.h12{height:30.644711px;}
.h21{height:32.757974px;}
.h24{height:32.757976px;}
.hb{height:32.900160px;}
.h16{height:33.583813px;}
.h23{height:35.401064px;}
.h2a{height:36.097116px;}
.h4{height:36.190176px;}
.h15{height:36.832586px;}
.h14{height:36.832587px;}
.h29{height:37.011648px;}
.h1f{height:39.035034px;}
.h13{height:39.803682px;}
.hc{height:40.409928px;}
.h22{height:40.595603px;}
.h7{height:41.127264px;}
.hf{height:43.804688px;}
.h6{height:48.991590px;}
.h5{height:49.350240px;}
.h8{height:49.637160px;}
.h17{height:51.201288px;}
.h1{height:59.564592px;}
.h1d{height:60.165288px;}
.h3{height:62.230176px;}
.h1b{height:66.548059px;}
.h1c{height:69.581295px;}
.h2{height:73.677816px;}
.h18{height:223.932338px;}
.h11{height:226.510311px;}
.h20{height:417.445362px;}
.h10{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w3{width:277.243770px;}
.w4{width:521.454249px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x25{left:8.399999px;}
.x60{left:11.691000px;}
.x29{left:13.145144px;}
.x55{left:16.383038px;}
.x28{left:24.419626px;}
.x24{left:44.250000px;}
.x39{left:53.490623px;}
.x54{left:55.287697px;}
.x5e{left:56.656208px;}
.x2a{left:63.956174px;}
.x3e{left:74.623955px;}
.x3a{left:77.910252px;}
.x2b{left:79.477559px;}
.x38{left:81.348220px;}
.xa{left:84.501000px;}
.x1{left:85.621500px;}
.x3b{left:88.173608px;}
.x61{left:90.511500px;}
.x12{left:93.634500px;}
.x9{left:99.984000px;}
.x3c{left:102.127644px;}
.x3d{left:103.593838px;}
.x27{left:109.273715px;}
.x2{left:115.156500px;}
.x6f{left:116.400000px;}
.x6e{left:117.408000px;}
.x57{left:119.118811px;}
.xc{left:125.676000px;}
.xd{left:135.007500px;}
.x26{left:136.554000px;}
.x2c{left:143.989871px;}
.x3f{left:145.506630px;}
.x5{left:158.508000px;}
.x53{left:175.172540px;}
.x7{left:185.827500px;}
.xb{left:188.971500px;}
.x56{left:191.942918px;}
.x2d{left:193.334705px;}
.x5f{left:194.679859px;}
.x69{left:200.242500px;}
.x23{left:211.944030px;}
.x30{left:219.825000px;}
.x4{left:222.486000px;}
.x2e{left:228.017643px;}
.x8{left:241.680000px;}
.x63{left:262.128000px;}
.x5b{left:269.165811px;}
.x59{left:273.271264px;}
.x64{left:278.409000px;}
.x5d{left:301.423415px;}
.x67{left:304.030500px;}
.x58{left:312.176004px;}
.x65{left:313.311000px;}
.x66{left:320.211000px;}
.x68{left:326.569500px;}
.x34{left:334.099500px;}
.x6{left:346.446000px;}
.x32{left:356.320500px;}
.x33{left:363.220500px;}
.xe{left:365.865000px;}
.xf{left:371.455500px;}
.x5c{left:376.007036px;}
.x10{left:399.787500px;}
.x3{left:401.769000px;}
.x11{left:409.114500px;}
.x62{left:421.828500px;}
.x2f{left:423.472500px;}
.x31{left:430.465500px;}
.x5a{left:453.229930px;}
.x40{left:455.965500px;}
.x13{left:457.086000px;}
.x71{left:459.576000px;}
.x6c{left:466.300500px;}
.x20{left:467.715000px;}
.x16{left:472.030500px;}
.x21{left:477.655500px;}
.x37{left:481.320215px;}
.x35{left:485.764500px;}
.x6d{left:489.454500px;}
.x4e{left:494.824500px;}
.x36{left:498.120000px;}
.x17{left:500.898000px;}
.x70{left:501.931500px;}
.x43{left:526.059000px;}
.x4f{left:530.916000px;}
.x44{left:536.697000px;}
.x41{left:547.398000px;}
.x42{left:554.298000px;}
.x6a{left:564.784500px;}
.x6b{left:572.379000px;}
.x45{left:573.780000px;}
.x46{left:584.418000px;}
.x47{left:625.120500px;}
.x48{left:635.758500px;}
.x50{left:645.709500px;}
.x18{left:648.478500px;}
.x51{left:656.337000px;}
.x19{left:657.982500px;}
.x49{left:670.642500px;}
.x1a{left:673.153500px;}
.x1c{left:679.486500px;}
.x4d{left:680.616000px;}
.x4a{left:687.481500px;}
.x1d{left:688.992000px;}
.x1b{left:690.463500px;}
.x1e{left:704.163000px;}
.x1f{left:721.464000px;}
.x4b{left:723.621000px;}
.x4c{left:734.259000px;}
.x14{left:789.568500px;}
.x22{left:794.298000px;}
.x15{left:803.973000px;}
.x52{left:836.250000px;}
@media print{
.v3{vertical-align:-23.141333pt;}
.v10{vertical-align:-19.285333pt;}
.v4{vertical-align:-15.429333pt;}
.vf{vertical-align:-14.249895pt;}
.v8{vertical-align:-9.707363pt;}
.v5{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:3.774878pt;}
.v7{vertical-align:13.482240pt;}
.v6{vertical-align:15.998925pt;}
.va{vertical-align:19.290667pt;}
.v2{vertical-align:23.146667pt;}
.v1{vertical-align:27.776000pt;}
.vb{vertical-align:29.301552pt;}
.vd{vertical-align:31.997762pt;}
.vc{vertical-align:42.783793pt;}
.ve{vertical-align:45.480002pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.027321pt;}
.ls8{letter-spacing:0.027324pt;}
.ls7{letter-spacing:0.063265pt;}
.lsc{letter-spacing:0.089882pt;}
.lsf{letter-spacing:0.100097pt;}
.ls5{letter-spacing:1.548651pt;}
.ls4{letter-spacing:1.553984pt;}
.ls1{letter-spacing:2.653333pt;}
.lsb{letter-spacing:2.656149pt;}
.ls2{letter-spacing:2.658667pt;}
.ls0{letter-spacing:3.192000pt;}
.ls3{letter-spacing:15.410667pt;}
.lsa{letter-spacing:15.941483pt;}
.ls10{letter-spacing:15.944000pt;}
.lsd{letter-spacing:109.834834pt;}
.ls9{letter-spacing:116.845634pt;}
.ws5{word-spacing:-31.880000pt;}
.ws11{word-spacing:-26.568000pt;}
.ws74{word-spacing:-23.909333pt;}
.ws3{word-spacing:-23.378667pt;}
.ws27{word-spacing:-21.253333pt;}
.ws2a{word-spacing:-19.394667pt;}
.ws64{word-spacing:-16.737573pt;}
.ws1e{word-spacing:-16.684915pt;}
.ws21{word-spacing:-16.525349pt;}
.ws31{word-spacing:-16.312538pt;}
.ws8a{word-spacing:-16.114652pt;}
.ws13{word-spacing:-16.100261pt;}
.ws43{word-spacing:-16.046913pt;}
.ws4{word-spacing:-15.940255pt;}
.ws2{word-spacing:-15.939998pt;}
.ws6b{word-spacing:-15.887450pt;}
.ws2e{word-spacing:-15.675173pt;}
.ws63{word-spacing:-15.621878pt;}
.ws8{word-spacing:-15.462414pt;}
.ws4a{word-spacing:-15.250138pt;}
.ws4b{word-spacing:-15.196788pt;}
.ws3c{word-spacing:-15.037328pt;}
.ws20{word-spacing:-14.771753pt;}
.ws68{word-spacing:-14.718407pt;}
.ws87{word-spacing:-14.632415pt;}
.ws86{word-spacing:-14.600663pt;}
.ws88{word-spacing:-14.585076pt;}
.ws84{word-spacing:-14.298020pt;}
.ws85{word-spacing:-14.297589pt;}
.ws83{word-spacing:-14.266411pt;}
.ws38{word-spacing:-14.187206pt;}
.ws80{word-spacing:-14.154660pt;}
.ws62{word-spacing:-14.081039pt;}
.ws46{word-spacing:-13.868282pt;}
.ws1d{word-spacing:-13.708821pt;}
.wsb{word-spacing:-13.602657pt;}
.ws18{word-spacing:-13.549839pt;}
.ws45{word-spacing:-13.549307pt;}
.ws19{word-spacing:-13.496542pt;}
.ws1b{word-spacing:-13.443727pt;}
.wsd{word-spacing:-13.443195pt;}
.ws29{word-spacing:-13.390377pt;}
.ws3a{word-spacing:-13.348763pt;}
.ws39{word-spacing:-13.339607pt;}
.ws54{word-spacing:-13.337614pt;}
.ws33{word-spacing:-13.337082pt;}
.ws1c{word-spacing:-13.284266pt;}
.ws4e{word-spacing:-13.284000pt;}
.ws32{word-spacing:-13.283732pt;}
.ws10{word-spacing:-13.230915pt;}
.ws6{word-spacing:-13.177620pt;}
.ws15{word-spacing:-13.124802pt;}
.ws1f{word-spacing:-13.124274pt;}
.ws7{word-spacing:-13.071455pt;}
.wse{word-spacing:-13.018106pt;}
.ws9{word-spacing:-12.965343pt;}
.ws2d{word-spacing:-12.911992pt;}
.ws7a{word-spacing:-12.815450pt;}
.ws3b{word-spacing:-12.805881pt;}
.ws16{word-spacing:-12.699717pt;}
.ws57{word-spacing:-12.593073pt;}
.ws22{word-spacing:-12.540253pt;}
.ws49{word-spacing:-12.486907pt;}
.ws4c{word-spacing:-12.434141pt;}
.ws4d{word-spacing:-12.434090pt;}
.ws6c{word-spacing:-12.380794pt;}
.ws8b{word-spacing:-12.337073pt;}
.ws59{word-spacing:-12.221333pt;}
.ws1a{word-spacing:-12.167983pt;}
.ws7b{word-spacing:-12.146131pt;}
.ws71{word-spacing:-12.098122pt;}
.ws17{word-spacing:-12.061819pt;}
.ws7e{word-spacing:-12.050687pt;}
.ws6d{word-spacing:-12.050159pt;}
.ws8c{word-spacing:-12.002676pt;}
.wsc{word-spacing:-11.955706pt;}
.ws6e{word-spacing:-11.954665pt;}
.ws70{word-spacing:-11.907182pt;}
.ws6f{word-spacing:-11.906656pt;}
.ws7f{word-spacing:-11.859220pt;}
.ws35{word-spacing:-11.849541pt;}
.ws82{word-spacing:-11.811210pt;}
.ws23{word-spacing:-11.796244pt;}
.ws73{word-spacing:-11.715716pt;}
.ws81{word-spacing:-11.667755pt;}
.ws14{word-spacing:-11.636782pt;}
.ws48{word-spacing:-11.583487pt;}
.ws76{word-spacing:-11.572258pt;}
.ws66{word-spacing:-11.477320pt;}
.ws77{word-spacing:-11.476287pt;}
.ws65{word-spacing:-11.371210pt;}
.ws34{word-spacing:-11.317862pt;}
.ws52{word-spacing:-11.265042pt;}
.ws75{word-spacing:-11.141893pt;}
.ws5f{word-spacing:-11.111442pt;}
.ws67{word-spacing:-11.105529pt;}
.wsa{word-spacing:-10.946121pt;}
.ws3f{word-spacing:-10.844395pt;}
.ws2c{word-spacing:-10.680549pt;}
.ws25{word-spacing:-10.668790pt;}
.ws2b{word-spacing:-10.627200pt;}
.ws26{word-spacing:-10.626665pt;}
.ws44{word-spacing:-10.521085pt;}
.ws5b{word-spacing:-10.414388pt;}
.ws7c{word-spacing:-10.376553pt;}
.ws24{word-spacing:-10.371754pt;}
.ws42{word-spacing:-9.829841pt;}
.ws47{word-spacing:-9.724260pt;}
.ws6a{word-spacing:-9.458155pt;}
.ws50{word-spacing:-9.222568pt;}
.ws40{word-spacing:-9.195248pt;}
.ws28{word-spacing:-9.139709pt;}
.ws55{word-spacing:-9.086415pt;}
.ws5c{word-spacing:-8.873978pt;}
.ws56{word-spacing:-8.873603pt;}
.wsf{word-spacing:-8.820786pt;}
.ws69{word-spacing:-8.607976pt;}
.ws5d{word-spacing:-8.395167pt;}
.ws89{word-spacing:-8.320544pt;}
.ws51{word-spacing:-8.236237pt;}
.ws60{word-spacing:-8.212805pt;}
.ws78{word-spacing:-7.076828pt;}
.ws79{word-spacing:-6.551155pt;}
.ws41{word-spacing:-6.246771pt;}
.ws30{word-spacing:-4.728516pt;}
.ws7d{word-spacing:-1.099731pt;}
.ws53{word-spacing:-1.062933pt;}
.ws12{word-spacing:-0.063760pt;}
.ws5a{word-spacing:-0.053136pt;}
.ws72{word-spacing:-0.047819pt;}
.ws36{word-spacing:0.000000pt;}
.ws37{word-spacing:3.995301pt;}
.ws58{word-spacing:3.995340pt;}
.ws3e{word-spacing:13.450337pt;}
.ws3d{word-spacing:15.875985pt;}
.ws2f{word-spacing:15.876242pt;}
.ws0{word-spacing:19.051490pt;}
.ws1{word-spacing:19.057483pt;}
.ws5e{word-spacing:86.572735pt;}
.ws4f{word-spacing:114.553504pt;}
.ws61{word-spacing:833.117211pt;}
._1{margin-left:-6.120961pt;}
._b{margin-left:-4.781868pt;}
._5{margin-left:-3.632988pt;}
._2{margin-left:-2.677843pt;}
._0{margin-left:-1.147680pt;}
._4{width:1.594000pt;}
._3{width:2.657651pt;}
._14{width:3.552358pt;}
._1f{width:7.269272pt;}
._20{width:8.319518pt;}
._1b{width:10.881095pt;}
._7{width:12.019111pt;}
._c{width:14.283088pt;}
._a{width:15.696433pt;}
._15{width:16.759016pt;}
._6{width:17.767989pt;}
._9{width:19.555687pt;}
._19{width:20.490453pt;}
._16{width:21.489534pt;}
._1c{width:23.061343pt;}
._d{width:24.229461pt;}
._1d{width:25.781738pt;}
._18{width:27.152549pt;}
._8{width:30.733867pt;}
._1e{width:31.647446pt;}
._13{width:34.514397pt;}
._17{width:73.516650pt;}
._1a{width:108.806347pt;}
._10{width:429.842880pt;}
._e{width:444.458560pt;}
._f{width:712.008000pt;}
._12{width:1693.898667pt;}
._11{width:1978.117547pt;}
.fsf{font-size:22.470401pt;}
.fs13{font-size:23.633972pt;}
.fsb{font-size:26.604954pt;}
.fs11{font-size:27.109556pt;}
.fs15{font-size:29.542465pt;}
.fs6{font-size:32.944000pt;}
.fse{font-size:33.076430pt;}
.fs12{font-size:34.755841pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:37.390747pt;}
.fs5{font-size:38.789333pt;}
.fsa{font-size:39.008616pt;}
.fs10{font-size:39.969217pt;}
.fs14{font-size:39.969219pt;}
.fs7{font-size:42.506667pt;}
.fsd{font-size:44.940801pt;}
.fsc{font-size:44.940803pt;}
.fs3{font-size:46.757333pt;}
.fs16{font-size:47.818667pt;}
.fs4{font-size:53.136000pt;}
.fs1{font-size:55.792000pt;}
.fs2{font-size:63.760000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:3.247477pt;}
.y9f{bottom:3.651429pt;}
.y5b{bottom:5.866668pt;}
.y77{bottom:5.942960pt;}
.yd6{bottom:18.974495pt;}
.y5d{bottom:20.000000pt;}
.y97{bottom:20.324504pt;}
.y6f{bottom:22.616035pt;}
.yd7{bottom:36.265599pt;}
.y5e{bottom:37.333333pt;}
.ye1{bottom:38.264060pt;}
.y98{bottom:38.345802pt;}
.y70{bottom:40.637334pt;}
.yd8{bottom:64.504720pt;}
.y99{bottom:68.276414pt;}
.y71{bottom:70.567945pt;}
.ye2{bottom:73.106790pt;}
.ya7{bottom:77.039931pt;}
.ydf{bottom:77.190674pt;}
.y59{bottom:80.452000pt;}
.y9e{bottom:82.927152pt;}
.y36{bottom:84.309333pt;}
.y76{bottom:85.218684pt;}
.y93{bottom:85.273333pt;}
.yd9{bottom:92.830803pt;}
.y35{bottom:93.654667pt;}
.y115{bottom:95.064000pt;}
.ya6{bottom:95.960045pt;}
.y58{bottom:96.392000pt;}
.ya9{bottom:97.398151pt;}
.y9a{bottom:98.252003pt;}
.y7d{bottom:98.521198pt;}
.y72{bottom:100.543535pt;}
.y7a{bottom:100.678357pt;}
.ya4{bottom:105.712199pt;}
.y34{bottom:106.273333pt;}
.ye3{bottom:107.949594pt;}
.y114{bottom:109.676000pt;}
.y57{bottom:112.332000pt;}
.y5f{bottom:116.000000pt;}
.y33{bottom:118.893333pt;}
.yda{bottom:121.069996pt;}
.y32{bottom:122.750667pt;}
.y113{bottom:124.286667pt;}
.y9b{bottom:128.227555pt;}
.y55{bottom:128.272000pt;}
.y73{bottom:130.519087pt;}
.yea{bottom:131.322969pt;}
.ya5{bottom:132.317191pt;}
.y56{bottom:133.094667pt;}
.ya8{bottom:136.946130pt;}
.y7b{bottom:137.215303pt;}
.y54{bottom:142.220000pt;}
.y112{bottom:142.426667pt;}
.ya1{bottom:142.653590pt;}
.ye4{bottom:142.792397pt;}
.y79{bottom:142.832926pt;}
.ye9{bottom:143.139955pt;}
.y53{bottom:144.212000pt;}
.y31{bottom:144.814667pt;}
.y92{bottom:149.034667pt;}
.ydb{bottom:149.396007pt;}
.ya2{bottom:155.326955pt;}
.ye7{bottom:156.868512pt;}
.y111{bottom:157.038667pt;}
.yde{bottom:157.129181pt;}
.y9c{bottom:158.158204pt;}
.ya3{bottom:158.697515pt;}
.y52{bottom:160.153333pt;}
.ye8{bottom:160.430986pt;}
.y74{bottom:160.449735pt;}
.y30{bottom:160.754667pt;}
.y91{bottom:164.974667pt;}
.y78{bottom:167.145915pt;}
.ydd{bottom:168.946240pt;}
.ye5{bottom:170.597142pt;}
.y110{bottom:171.650667pt;}
.ye6{bottom:174.159616pt;}
.yd5{bottom:174.420285pt;}
.y51{bottom:176.093333pt;}
.y2f{bottom:176.696000pt;}
.ydc{bottom:177.635200pt;}
.y7c{bottom:179.235028pt;}
.ya0{bottom:181.392636pt;}
.yd0{bottom:185.542154pt;}
.y10f{bottom:186.262667pt;}
.y9d{bottom:188.133756pt;}
.y75{bottom:190.425287pt;}
.y50{bottom:192.033333pt;}
.y2e{bottom:192.636000pt;}
.yc7{bottom:201.269172pt;}
.y10e{bottom:204.401333pt;}
.y90{bottom:207.973333pt;}
.y2d{bottom:208.576000pt;}
.y10d{bottom:219.013333pt;}
.yc8{bottom:220.558736pt;}
.yff{bottom:221.082667pt;}
.y8f{bottom:223.913333pt;}
.y2c{bottom:224.516000pt;}
.y4f{bottom:227.196000pt;}
.y10c{bottom:233.625333pt;}
.yc5{bottom:239.853333pt;}
.y8e{bottom:240.372000pt;}
.y2b{bottom:240.456000pt;}
.y10b{bottom:254.214667pt;}
.yc9{bottom:255.401539pt;}
.yc3{bottom:255.794667pt;}
.y8d{bottom:256.312000pt;}
.y2a{bottom:256.396000pt;}
.ycf{bottom:259.485351pt;}
.yc4{bottom:260.616000pt;}
.yfe{bottom:268.898667pt;}
.yc2{bottom:271.734667pt;}
.y8c{bottom:272.252000pt;}
.y29{bottom:272.337333pt;}
.y10a{bottom:284.354667pt;}
.yfd{bottom:284.838667pt;}
.yc1{bottom:287.674667pt;}
.y8a{bottom:288.192000pt;}
.y28{bottom:288.277333pt;}
.yca{bottom:290.244343pt;}
.y8b{bottom:293.014667pt;}
.y109{bottom:300.296000pt;}
.yfc{bottom:300.780000pt;}
.yc0{bottom:303.614667pt;}
.y89{bottom:304.133333pt;}
.y27{bottom:304.776000pt;}
.y108{bottom:316.236000pt;}
.yfb{bottom:316.720000pt;}
.ybf{bottom:317.562667pt;}
.y26{bottom:318.724000pt;}
.ybe{bottom:319.554667pt;}
.y88{bottom:320.073333pt;}
.y25{bottom:320.717333pt;}
.ycb{bottom:325.087073pt;}
.yfa{bottom:330.668000pt;}
.y107{bottom:332.176000pt;}
.yf9{bottom:332.660000pt;}
.ybd{bottom:335.494667pt;}
.y87{bottom:336.013333pt;}
.y24{bottom:336.657333pt;}
.yce{bottom:339.858378pt;}
.yd3{bottom:339.945268pt;}
.y106{bottom:348.116000pt;}
.yf8{bottom:348.600000pt;}
.ybc{bottom:351.436000pt;}
.ycd{bottom:351.675364pt;}
.yd2{bottom:351.762254pt;}
.y86{bottom:351.953333pt;}
.y23{bottom:352.597333pt;}
.yd1{bottom:352.978708pt;}
.yd4{bottom:353.586935pt;}
.ycc{bottom:359.929876pt;}
.y105{bottom:364.056000pt;}
.yf7{bottom:364.540000pt;}
.ybb{bottom:367.376000pt;}
.y85{bottom:367.893333pt;}
.y22{bottom:368.537333pt;}
.y104{bottom:379.996000pt;}
.yf6{bottom:380.480000pt;}
.yba{bottom:383.316000pt;}
.y83{bottom:383.833333pt;}
.y21{bottom:384.477333pt;}
.y84{bottom:388.656000pt;}
.y103{bottom:395.937333pt;}
.yf5{bottom:396.421333pt;}
.yb9{bottom:397.264000pt;}
.yb7{bottom:399.256000pt;}
.y82{bottom:399.774667pt;}
.y20{bottom:400.417333pt;}
.yb8{bottom:404.078667pt;}
.yf3{bottom:410.368000pt;}
.y102{bottom:411.877333pt;}
.yf2{bottom:412.361333pt;}
.yb6{bottom:415.196000pt;}
.y81{bottom:415.714667pt;}
.y1f{bottom:416.358667pt;}
.yf4{bottom:417.182667pt;}
.y4e{bottom:420.528000pt;}
.y101{bottom:427.817333pt;}
.yf0{bottom:428.301333pt;}
.yb5{bottom:431.136000pt;}
.y80{bottom:431.654667pt;}
.y1e{bottom:432.298667pt;}
.yf1{bottom:433.122667pt;}
.y4c{bottom:436.469333pt;}
.y4d{bottom:441.290667pt;}
.yef{bottom:444.241333pt;}
.yb4{bottom:447.077333pt;}
.y1d{bottom:448.238667pt;}
.y100{bottom:449.734667pt;}
.y4b{bottom:452.409333pt;}
.y1c{bottom:462.186667pt;}
.yee{bottom:463.934667pt;}
.y1b{bottom:464.178667pt;}
.y7f{bottom:466.457333pt;}
.y4a{bottom:468.349333pt;}
.yb3{bottom:478.957333pt;}
.yed{bottom:479.874667pt;}
.y1a{bottom:480.118667pt;}
.y7e{bottom:482.397333pt;}
.y49{bottom:484.289333pt;}
.yb2{bottom:494.897333pt;}
.yec{bottom:495.816000pt;}
.y19{bottom:496.058667pt;}
.y47{bottom:500.229333pt;}
.y6e{bottom:501.717231pt;}
.y48{bottom:505.052000pt;}
.yb0{bottom:510.837333pt;}
.yb1{bottom:515.660000pt;}
.y46{bottom:516.169333pt;}
.y18{bottom:519.040000pt;}
.yaf{bottom:526.777333pt;}
.y45{bottom:532.110667pt;}
.yeb{bottom:540.448000pt;}
.yae{bottom:542.718667pt;}
.y17{bottom:552.165333pt;}
.y44{bottom:555.354667pt;}
.yad{bottom:558.658667pt;}
.y16{bottom:568.105333pt;}
.yac{bottom:574.598667pt;}
.yc6{bottom:579.804877pt;}
.y15{bottom:584.045333pt;}
.y43{bottom:589.117333pt;}
.y14{bottom:599.985333pt;}
.y42{bottom:605.057333pt;}
.yab{bottom:605.958667pt;}
.y13{bottom:615.926667pt;}
.y41{bottom:620.997333pt;}
.yaa{bottom:621.898667pt;}
.y12{bottom:631.866667pt;}
.y40{bottom:636.937333pt;}
.y96{bottom:643.510096pt;}
.y11{bottom:647.806667pt;}
.y3f{bottom:653.576000pt;}
.y10{bottom:663.746667pt;}
.y129{bottom:666.918667pt;}
.y3e{bottom:669.516000pt;}
.yf{bottom:679.686667pt;}
.y128{bottom:681.530667pt;}
.y3d{bottom:685.456000pt;}
.ye{bottom:695.626667pt;}
.y127{bottom:696.142667pt;}
.y3c{bottom:701.396000pt;}
.y126{bottom:710.754667pt;}
.yd{bottom:711.568000pt;}
.y3b{bottom:717.337333pt;}
.yc{bottom:727.508000pt;}
.y125{bottom:728.853333pt;}
.y3a{bottom:731.284000pt;}
.y39{bottom:733.277333pt;}
.y133{bottom:739.812000pt;}
.y6d{bottom:741.405333pt;}
.yb{bottom:743.448000pt;}
.y124{bottom:743.465333pt;}
.y38{bottom:749.217333pt;}
.y132{bottom:754.424000pt;}
.y6c{bottom:757.346667pt;}
.y123{bottom:758.077333pt;}
.ya{bottom:759.388000pt;}
.y37{bottom:765.157333pt;}
.y131{bottom:769.036000pt;}
.y122{bottom:772.689333pt;}
.y6b{bottom:780.248000pt;}
.y9{bottom:781.097333pt;}
.y130{bottom:783.648000pt;}
.y121{bottom:787.301333pt;}
.y120{bottom:805.400000pt;}
.y12f{bottom:812.705333pt;}
.y6a{bottom:813.184000pt;}
.y8{bottom:819.026667pt;}
.y11f{bottom:820.012000pt;}
.y12e{bottom:827.317333pt;}
.y69{bottom:829.124000pt;}
.y11e{bottom:834.624000pt;}
.y7{bottom:838.294667pt;}
.y12d{bottom:841.929333pt;}
.y68{bottom:845.064000pt;}
.y11d{bottom:849.236000pt;}
.y6{bottom:851.776000pt;}
.y67{bottom:861.004000pt;}
.y11c{bottom:867.334667pt;}
.y12c{bottom:870.986667pt;}
.y5{bottom:876.158667pt;}
.y66{bottom:876.945333pt;}
.y95{bottom:877.462667pt;}
.y11b{bottom:881.946667pt;}
.y12b{bottom:885.598667pt;}
.y4{bottom:889.640000pt;}
.y65{bottom:893.402667pt;}
.y11a{bottom:896.557333pt;}
.y12a{bottom:900.210667pt;}
.y64{bottom:909.342667pt;}
.y119{bottom:911.169333pt;}
.y3{bottom:921.517333pt;}
.y63{bottom:925.284000pt;}
.y118{bottom:929.268000pt;}
.y94{bottom:930.105333pt;}
.y62{bottom:941.224000pt;}
.y117{bottom:943.880000pt;}
.y2{bottom:945.428000pt;}
.y61{bottom:957.164000pt;}
.y116{bottom:958.492000pt;}
.y1{bottom:969.338667pt;}
.y60{bottom:973.104000pt;}
.y5c{bottom:1005.333333pt;}
.y5a{bottom:1022.666667pt;}
.he{height:13.333333pt;}
.h1a{height:16.370038pt;}
.h1e{height:17.106096pt;}
.h28{height:17.217718pt;}
.h25{height:21.522147pt;}
.ha{height:22.270144pt;}
.h19{height:24.096696pt;}
.h27{height:25.320173pt;}
.h26{height:25.345290pt;}
.hd{height:26.221589pt;}
.h9{height:26.687061pt;}
.h12{height:27.239743pt;}
.h21{height:29.118199pt;}
.h24{height:29.118201pt;}
.hb{height:29.244587pt;}
.h16{height:29.852278pt;}
.h23{height:31.467613pt;}
.h2a{height:32.086325pt;}
.h4{height:32.169045pt;}
.h15{height:32.740076pt;}
.h14{height:32.740077pt;}
.h29{height:32.899243pt;}
.h1f{height:34.697808pt;}
.h13{height:35.381050pt;}
.hc{height:35.919936pt;}
.h22{height:36.084981pt;}
.h7{height:36.557568pt;}
.hf{height:38.937500pt;}
.h6{height:43.548080pt;}
.h5{height:43.866880pt;}
.h8{height:44.121920pt;}
.h17{height:45.512256pt;}
.h1{height:52.946304pt;}
.h1d{height:53.480256pt;}
.h3{height:55.315712pt;}
.h1b{height:59.153831pt;}
.h1c{height:61.850040pt;}
.h2{height:65.491392pt;}
.h18{height:199.050967pt;}
.h11{height:201.342499pt;}
.h20{height:371.062544pt;}
.h10{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w3{width:246.438906pt;}
.w4{width:463.514888pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x25{left:7.466666pt;}
.x60{left:10.392000pt;}
.x29{left:11.684572pt;}
.x55{left:14.562701pt;}
.x28{left:21.706334pt;}
.x24{left:39.333333pt;}
.x39{left:47.547221pt;}
.x54{left:49.144619pt;}
.x5e{left:50.361074pt;}
.x2a{left:56.849932pt;}
.x3e{left:66.332405pt;}
.x3a{left:69.253557pt;}
.x2b{left:70.646719pt;}
.x38{left:72.309529pt;}
.xa{left:75.112000pt;}
.x1{left:76.108000pt;}
.x3b{left:78.376541pt;}
.x61{left:80.454667pt;}
.x12{left:83.230667pt;}
.x9{left:88.874667pt;}
.x3c{left:90.780128pt;}
.x3d{left:92.083411pt;}
.x27{left:97.132191pt;}
.x2{left:102.361333pt;}
.x6f{left:103.466667pt;}
.x6e{left:104.362667pt;}
.x57{left:105.883388pt;}
.xc{left:111.712000pt;}
.xd{left:120.006667pt;}
.x26{left:121.381333pt;}
.x2c{left:127.990997pt;}
.x3f{left:129.339226pt;}
.x5{left:140.896000pt;}
.x53{left:155.708925pt;}
.x7{left:165.180000pt;}
.xb{left:167.974667pt;}
.x56{left:170.615927pt;}
.x2d{left:171.853071pt;}
.x5f{left:173.048764pt;}
.x69{left:177.993333pt;}
.x23{left:188.394693pt;}
.x30{left:195.400000pt;}
.x4{left:197.765333pt;}
.x2e{left:202.682350pt;}
.x8{left:214.826667pt;}
.x63{left:233.002667pt;}
.x5b{left:239.258499pt;}
.x59{left:242.907790pt;}
.x64{left:247.474667pt;}
.x5d{left:267.931924pt;}
.x67{left:270.249333pt;}
.x58{left:277.489781pt;}
.x65{left:278.498667pt;}
.x66{left:284.632000pt;}
.x68{left:290.284000pt;}
.x34{left:296.977333pt;}
.x6{left:307.952000pt;}
.x32{left:316.729333pt;}
.x33{left:322.862667pt;}
.xe{left:325.213333pt;}
.xf{left:330.182667pt;}
.x5c{left:334.228477pt;}
.x10{left:355.366667pt;}
.x3{left:357.128000pt;}
.x11{left:363.657333pt;}
.x62{left:374.958667pt;}
.x2f{left:376.420000pt;}
.x31{left:382.636000pt;}
.x5a{left:402.871049pt;}
.x40{left:405.302667pt;}
.x13{left:406.298667pt;}
.x71{left:408.512000pt;}
.x6c{left:414.489333pt;}
.x20{left:415.746667pt;}
.x16{left:419.582667pt;}
.x21{left:424.582667pt;}
.x37{left:427.840191pt;}
.x35{left:431.790667pt;}
.x6d{left:435.070667pt;}
.x4e{left:439.844000pt;}
.x36{left:442.773333pt;}
.x17{left:445.242667pt;}
.x70{left:446.161333pt;}
.x43{left:467.608000pt;}
.x4f{left:471.925333pt;}
.x44{left:477.064000pt;}
.x41{left:486.576000pt;}
.x42{left:492.709333pt;}
.x6a{left:502.030667pt;}
.x6b{left:508.781333pt;}
.x45{left:510.026667pt;}
.x46{left:519.482667pt;}
.x47{left:555.662667pt;}
.x48{left:565.118667pt;}
.x50{left:573.964000pt;}
.x18{left:576.425333pt;}
.x51{left:583.410667pt;}
.x19{left:584.873333pt;}
.x49{left:596.126667pt;}
.x1a{left:598.358667pt;}
.x1c{left:603.988000pt;}
.x4d{left:604.992000pt;}
.x4a{left:611.094667pt;}
.x1d{left:612.437333pt;}
.x1b{left:613.745333pt;}
.x1e{left:625.922667pt;}
.x1f{left:641.301333pt;}
.x4b{left:643.218667pt;}
.x4c{left:652.674667pt;}
.x14{left:701.838667pt;}
.x22{left:706.042667pt;}
.x15{left:714.642667pt;}
.x52{left:743.333333pt;}
}




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