
    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_3636e753592ea57ca69f3795.woff')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_866f6e4ff95d2ee919cd44a1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.431000;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_a15be7bee70addf0705d0dd2.woff')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_62ce583967976f8135784002.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_b1a464a71612a1fe7a8cd45b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_1efe32d63e2e2ebefd89befa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_9103736115858e65c1bb83a5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7041fd04dca66c41ce22e649.woff')format("woff");}.ff8{font-family:ff8;line-height:1.576000;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_7fe3fbcc4474a2d3850be5e3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_431dfd197ecd9eb7761623ee.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_46fc6eecdc5197d7da46d482.woff')format("woff");}.ffb{font-family:ffb;line-height:0.670000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9f69aaf0f68a3fc519d10e0b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.285000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8e950f28080cf1b97ff17911.woff')format("woff");}.ffd{font-family:ffd;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_17c47f22532e005e25dfb013.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_46fc6eecdc5197d7da46d482.woff')format("woff");}.fff{font-family:fff;line-height:0.670000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6878285fdd2220884dadc247.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910000;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:ff11;src:url('chunks/assets/font_33ea21d13fc7cfd4d8a8ce01.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_335cd2a828615f2c66834fbe.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a5f9d79832e840bef47fbcf9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.703000;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:ff14;src:url('chunks/assets/font_997874fed7ce6882b7a7bd32.woff')format("woff");}.ff14{font-family:ff14;line-height:0.664000;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;}
.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);}
.m17{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.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);}
.m13{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);}
.mc{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);}
.m18{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);}
.m19{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);}
.m6{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);}
.m2{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);}
.m15{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);}
.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);}
.m11{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);}
.mf{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);}
.m8{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);}
.m10{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);}
.m16{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);}
.me{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);}
.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);}
.m5{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);}
.m9{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.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);}
.m12{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);}
.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);}
.md{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);}
.v9{vertical-align:-77.646660px;}
.va{vertical-align:-49.342800px;}
.v11{vertical-align:-38.853750px;}
.vb{vertical-align:-30.744480px;}
.v12{vertical-align:-28.788396px;}
.v2{vertical-align:-22.854000px;}
.v8{vertical-align:-20.107230px;}
.v6{vertical-align:-9.494082px;}
.v14{vertical-align:-4.524000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:6.168000px;}
.vf{vertical-align:9.716343px;}
.v4{vertical-align:19.426875px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.v5{vertical-align:25.880166px;}
.v10{vertical-align:38.855700px;}
.ve{vertical-align:44.195970px;}
.vd{vertical-align:63.623820px;}
.v7{vertical-align:82.539873px;}
.vc{vertical-align:116.563200px;}
.ls2{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000538px;}
.ls1{letter-spacing:0.001133px;}
.ls25{letter-spacing:0.002338px;}
.ls27{letter-spacing:0.004200px;}
.ls5{letter-spacing:0.046975px;}
.lse{letter-spacing:0.284787px;}
.ls2d{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.987468px;}
.ls31{letter-spacing:2.989200px;}
.ls24{letter-spacing:3.443602px;}
.ls16{letter-spacing:8.744745px;}
.ls18{letter-spacing:8.746266px;}
.ls19{letter-spacing:8.749308px;}
.ls2a{letter-spacing:9.962338px;}
.ls1a{letter-spacing:10.850995px;}
.ls14{letter-spacing:10.852321px;}
.ls1b{letter-spacing:10.854037px;}
.ls15{letter-spacing:10.854076px;}
.ls17{letter-spacing:10.855558px;}
.ls1d{letter-spacing:12.673265px;}
.ls26{letter-spacing:13.281269px;}
.ls20{letter-spacing:13.284538px;}
.ls2e{letter-spacing:14.942100px;}
.ls1c{letter-spacing:15.709537px;}
.ls13{letter-spacing:15.808074px;}
.ls2f{letter-spacing:16.600200px;}
.ls1f{letter-spacing:16.602538px;}
.ls21{letter-spacing:16.604245px;}
.ls23{letter-spacing:17.560379px;}
.ls2c{letter-spacing:17.930525px;}
.ls22{letter-spacing:19.808086px;}
.ls1e{letter-spacing:20.045602px;}
.ls29{letter-spacing:26.886538px;}
.ls9{letter-spacing:28.171074px;}
.ls28{letter-spacing:31.162379px;}
.ls4{letter-spacing:42.741075px;}
.ls11{letter-spacing:43.693129px;}
.ls12{letter-spacing:43.694416px;}
.ls6{letter-spacing:54.599251px;}
.lsf{letter-spacing:61.789074px;}
.ls8{letter-spacing:69.943974px;}
.ls7{letter-spacing:79.582894px;}
.ls2b{letter-spacing:310.270200px;}
.lsc{letter-spacing:357.393690px;}
.ls10{letter-spacing:646.137990px;}
.lsd{letter-spacing:721.513129px;}
.lsb{letter-spacing:783.488029px;}
.ls3{letter-spacing:829.114129px;}
.lsa{letter-spacing:1228.134990px;}
.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;}
}
.ws4b{word-spacing:-310.329976px;}
.ws41{word-spacing:-59.775600px;}
.ws42{word-spacing:-46.505417px;}
.ws2f{word-spacing:-26.641458px;}
.ws25{word-spacing:-26.356671px;}
.ws53{word-spacing:-14.943900px;}
.ws21{word-spacing:-13.449600px;}
.ws27{word-spacing:-10.682685px;}
.ws20{word-spacing:-8.966400px;}
.ws59{word-spacing:-2.630126px;}
.ws4{word-spacing:-2.211697px;}
.wsb{word-spacing:-1.673717px;}
.ws39{word-spacing:-1.434614px;}
.ws15{word-spacing:-0.777083px;}
.ws8{word-spacing:-0.657532px;}
.ws51{word-spacing:-0.537980px;}
.ws3a{word-spacing:-0.418429px;}
.ws37{word-spacing:-0.358654px;}
.ws12{word-spacing:-0.298878px;}
.ws22{word-spacing:-0.239102px;}
.ws11{word-spacing:-0.179327px;}
.wsd{word-spacing:-0.119551px;}
.ws26{word-spacing:-0.077710px;}
.ws24{word-spacing:-0.077709px;}
.ws5a{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws2{word-spacing:0.000000px;}
.ws3d{word-spacing:0.000317px;}
.ws55{word-spacing:0.004309px;}
.ws5{word-spacing:0.059776px;}
.wsf{word-spacing:0.119551px;}
.ws50{word-spacing:0.179327px;}
.ws3b{word-spacing:0.239102px;}
.ws17{word-spacing:0.298878px;}
.ws54{word-spacing:0.597756px;}
.ws23{word-spacing:0.956410px;}
.ws5d{word-spacing:1.315063px;}
.wse{word-spacing:1.374839px;}
.ws13{word-spacing:1.434614px;}
.ws36{word-spacing:1.793268px;}
.ws49{word-spacing:1.853044px;}
.ws19{word-spacing:1.882944px;}
.ws48{word-spacing:1.912819px;}
.ws28{word-spacing:2.150479px;}
.ws9{word-spacing:2.271473px;}
.ws6{word-spacing:2.570351px;}
.ws16{word-spacing:2.689902px;}
.ws4a{word-spacing:2.749678px;}
.ws7{word-spacing:2.929004px;}
.ws10{word-spacing:3.586536px;}
.ws35{word-spacing:3.706087px;}
.ws14{word-spacing:4.004965px;}
.wsc{word-spacing:4.662497px;}
.ws4f{word-spacing:4.901599px;}
.ws1e{word-spacing:5.110848px;}
.ws46{word-spacing:5.140702px;}
.ws58{word-spacing:5.439580px;}
.ws4e{word-spacing:6.156887px;}
.ws5b{word-spacing:6.569417px;}
.ws1c{word-spacing:6.724800px;}
.ws1b{word-spacing:6.886195px;}
.ws1f{word-spacing:7.470163px;}
.ws43{word-spacing:9.922750px;}
.ws40{word-spacing:13.218237px;}
.ws57{word-spacing:13.688612px;}
.ws31{word-spacing:13.907956px;}
.ws44{word-spacing:14.880763px;}
.ws52{word-spacing:14.881800px;}
.ws1{word-spacing:14.884124px;}
.ws45{word-spacing:14.888814px;}
.ws5c{word-spacing:14.943900px;}
.ws1a{word-spacing:15.332544px;}
.ws56{word-spacing:16.532169px;}
.ws3f{word-spacing:16.541433px;}
.ws33{word-spacing:17.619883px;}
.ws34{word-spacing:17.620189px;}
.ws32{word-spacing:17.623900px;}
.ws47{word-spacing:17.861069px;}
.ws1d{word-spacing:20.120602px;}
.ws38{word-spacing:21.459440px;}
.ws0{word-spacing:25.719808px;}
.ws30{word-spacing:61.711365px;}
.ws2e{word-spacing:66.208065px;}
.ws2d{word-spacing:67.769836px;}
.wsa{word-spacing:71.659469px;}
.ws2b{word-spacing:72.619912px;}
.ws2c{word-spacing:72.624124px;}
.ws29{word-spacing:72.625288px;}
.ws2a{word-spacing:72.625336px;}
.ws3e{word-spacing:136.596237px;}
.ws4c{word-spacing:295.320300px;}
.ws4d{word-spacing:295.326300px;}
.ws3c{word-spacing:453.166517px;}
._1a{margin-left:-310.270200px;}
._12{margin-left:-17.303497px;}
._1{margin-left:-9.502901px;}
._10{margin-left:-8.038900px;}
._4{margin-left:-7.036782px;}
._2{margin-left:-5.681082px;}
._8{margin-left:-3.825638px;}
._3{margin-left:-2.582310px;}
._0{margin-left:-1.032924px;}
._11{width:1.219281px;}
._f{width:2.958912px;}
._16{width:5.515194px;}
._15{width:8.747787px;}
._14{width:10.952574px;}
._17{width:12.668574px;}
._6{width:13.901417px;}
._d{width:16.638112px;}
._5{width:18.248297px;}
._c{width:19.427070px;}
._a{width:20.962117px;}
._e{width:22.111142px;}
._18{width:24.311930px;}
._7{width:26.164974px;}
._b{width:30.126902px;}
._9{width:33.115682px;}
._1c{width:34.944808px;}
._1b{width:59.775600px;}
._19{width:71.731200px;}
._13{width:106.922595px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.921069px;}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs8{font-size:42.730740px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:53.839890px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:69.230460px;}
.fs3{font-size:71.731200px;}
.fs6{font-size:77.708670px;}
.fs9{font-size:77.709840px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.ydd{bottom:0.926933px;}
.y6b{bottom:1.163078px;}
.y74{bottom:2.764028px;}
.y7d{bottom:9.105428px;}
.ydc{bottom:12.276420px;}
.y6a{bottom:12.366315px;}
.y73{bottom:14.113223px;}
.yd0{bottom:15.589958px;}
.y7c{bottom:20.454428px;}
.y5d{bottom:22.614150px;}
.y60{bottom:24.240353px;}
.yda{bottom:24.951810px;}
.y4d{bottom:25.801328px;}
.ycf{bottom:26.939055px;}
.yd3{bottom:26.939825px;}
.ye0{bottom:26.939932px;}
.y57{bottom:32.635883px;}
.yc5{bottom:33.171158px;}
.ybb{bottom:33.966758px;}
.y5f{bottom:35.589548px;}
.y4c{bottom:37.150425px;}
.y59{bottom:37.150718px;}
.y85{bottom:44.178128px;}
.yc4{bottom:44.520158px;}
.y69{bottom:48.936810px;}
.yd6{bottom:51.548933px;}
.y72{bottom:52.458023px;}
.y4f{bottom:53.716358px;}
.y41{bottom:56.222225px;}
.y3e{bottom:56.222254px;}
.y3b{bottom:56.222283px;}
.y81{bottom:59.870753px;}
.y5e{bottom:61.272803px;}
.yf2{bottom:63.168000px;}
.y4b{bottom:63.507015px;}
.y4e{bottom:63.507503px;}
.yce{bottom:66.822015px;}
.y77{bottom:68.364368px;}
.yb9{bottom:70.586422px;}
.y40{bottom:73.902894px;}
.y3d{bottom:73.902923px;}
.y3a{bottom:73.902953px;}
.y75{bottom:75.892050px;}
.yc3{bottom:77.870910px;}
.yc7{bottom:77.871008px;}
.ycc{bottom:77.871203px;}
.ybd{bottom:77.871300px;}
.y56{bottom:78.077708px;}
.y5c{bottom:78.077903px;}
.y7b{bottom:78.078098px;}
.y2f{bottom:78.184500px;}
.y6f{bottom:80.227778px;}
.yd1{bottom:80.299733px;}
.y6d{bottom:80.505584px;}
.y80{bottom:80.506043px;}
.yd9{bottom:82.728165px;}
.yd7{bottom:82.728360px;}
.y58{bottom:83.104710px;}
.y6c{bottom:83.931413px;}
.y7e{bottom:83.932095px;}
.yd5{bottom:85.156598px;}
.y47{bottom:86.118728px;}
.y67{bottom:86.379053px;}
.y61{bottom:88.338998px;}
.yb8{bottom:89.366258px;}
.yd2{bottom:90.256520px;}
.ye7{bottom:92.441798px;}
.ydf{bottom:92.442383px;}
.y2e{bottom:93.129000px;}
.ye1{bottom:94.870425px;}
.y46{bottom:97.468215px;}
.y79{bottom:97.645178px;}
.y66{bottom:97.728053px;}
.yd4{bottom:99.789593px;}
.y55{bottom:100.975778px;}
.ye8{bottom:102.067846px;}
.ydb{bottom:102.155820px;}
.yc2{bottom:104.745908px;}
.ye5{bottom:105.006233px;}
.yf1{bottom:108.000000px;}
.y78{bottom:108.993203px;}
.y45{bottom:110.143215px;}
.y65{bottom:110.543940px;}
.y52{bottom:111.092309px;}
.yde{bottom:111.757133px;}
.y54{bottom:112.325187px;}
.y5b{bottom:113.108678px;}
.yc1{bottom:116.096370px;}
.ye4{bottom:116.356208px;}
.y44{bottom:120.486210px;}
.y63{bottom:121.668203px;}
.y53{bottom:121.925895px;}
.yf0{bottom:124.363500px;}
.y12a{bottom:128.658000px;}
.yc0{bottom:128.771370px;}
.ye3{bottom:129.172095px;}
.yca{bottom:130.934408px;}
.y43{bottom:131.727278px;}
.y70{bottom:131.727570px;}
.y83{bottom:132.948563px;}
.y4a{bottom:134.078003px;}
.y62{bottom:136.583753px;}
.y42{bottom:136.584308px;}
.y3f{bottom:136.584338px;}
.y3c{bottom:136.584367px;}
.ybf{bottom:139.114365px;}
.y2d{bottom:139.450500px;}
.ye2{bottom:140.554440px;}
.yc9{bottom:142.284383px;}
.y49{bottom:143.869538px;}
.y5a{bottom:143.869928px;}
.y82{bottom:147.518670px;}
.y6e{bottom:148.532378px;}
.y129{bottom:149.709000px;}
.ybe{bottom:150.355433px;}
.y7f{bottom:153.388853px;}
.y110{bottom:154.326000px;}
.y2c{bottom:154.395000px;}
.y71{bottom:154.918823px;}
.yba{bottom:155.211888px;}
.yc8{bottom:155.211908px;}
.y84{bottom:157.567703px;}
.y76{bottom:157.625228px;}
.yef{bottom:160.510500px;}
.y51{bottom:162.023453px;}
.ybc{bottom:162.497108px;}
.y7a{bottom:163.151820px;}
.y48{bottom:165.311153px;}
.y68{bottom:165.311348px;}
.y64{bottom:165.619350px;}
.y128{bottom:166.072500px;}
.yc6{bottom:167.159558px;}
.y2b{bottom:169.338000px;}
.ycd{bottom:173.546490px;}
.yd8{bottom:176.194883px;}
.y50{bottom:177.485003px;}
.y127{bottom:182.436000px;}
.ycb{bottom:183.721103px;}
.ye6{bottom:183.938528px;}
.y2a{bottom:184.282500px;}
.ya6{bottom:184.380983px;}
.ya5{bottom:195.729983px;}
.yb4{bottom:197.986133px;}
.y10f{bottom:198.637500px;}
.y29{bottom:199.227000px;}
.y99{bottom:199.265333px;}
.yee{bottom:205.563000px;}
.y126{bottom:207.018000px;}
.ya3{bottom:207.347693px;}
.yb3{bottom:209.335913px;}
.y98{bottom:210.613943px;}
.y28{bottom:214.170000px;}
.y8d{bottom:216.363908px;}
.y27{bottom:219.883500px;}
.yed{bottom:221.926500px;}
.y97{bottom:223.124460px;}
.y125{bottom:223.381500px;}
.y26{bottom:236.160000px;}
.y96{bottom:237.213990px;}
.yec{bottom:238.290000px;}
.y124{bottom:239.745000px;}
.ya2{bottom:240.735885px;}
.y9c{bottom:241.993635px;}
.y88{bottom:244.499561px;}
.y8b{bottom:244.499795px;}
.yb7{bottom:248.147933px;}
.yb6{bottom:251.784683px;}
.y9b{bottom:251.784780px;}
.y123{bottom:256.110000px;}
.ya9{bottom:256.641158px;}
.yb0{bottom:256.641255px;}
.y25{bottom:257.385000px;}
.y87{bottom:263.238983px;}
.y8a{bottom:263.239217px;}
.yaa{bottom:264.169220px;}
.ya4{bottom:264.169230px;}
.yb1{bottom:264.169318px;}
.yb2{bottom:264.169425px;}
.y9a{bottom:264.169523px;}
.y122{bottom:272.473500px;}
.yb5{bottom:273.703268px;}
.ya7{bottom:273.703950px;}
.y24{bottom:273.748500px;}
.yeb{bottom:274.774500px;}
.ya0{bottom:284.910308px;}
.y92{bottom:284.993183px;}
.y121{bottom:288.837000px;}
.y23{bottom:290.112000px;}
.yea{bottom:291.139500px;}
.y9f{bottom:296.259210px;}
.y91{bottom:296.343353px;}
.yad{bottom:299.685458px;}
.y10c{bottom:304.705500px;}
.ye9{bottom:307.503000px;}
.y90{bottom:308.853870px;}
.y9e{bottom:309.075878px;}
.yac{bottom:311.035462px;}
.y120{bottom:313.419000px;}
.y22{bottom:314.695500px;}
.y10d{bottom:315.099000px;}
.y8f{bottom:319.196865px;}
.yab{bottom:320.636550px;}
.y11f{bottom:329.782500px;}
.y8e{bottom:330.437933px;}
.y21{bottom:331.059000px;}
.yaf{bottom:331.657560px;}
.y95{bottom:332.787975px;}
.y86{bottom:334.326817px;}
.y8c{bottom:335.294378px;}
.y89{bottom:335.294408px;}
.y94{bottom:342.579120px;}
.y11e{bottom:346.146000px;}
.yae{bottom:346.228058px;}
.ya8{bottom:347.242058px;}
.y20{bottom:347.422500px;}
.ya1{bottom:353.629185px;}
.y93{bottom:357.075810px;}
.y10e{bottom:362.277000px;}
.y11d{bottom:362.509500px;}
.y1f{bottom:363.786000px;}
.y9d{bottom:369.249758px;}
.y11c{bottom:378.874500px;}
.y1e{bottom:380.149500px;}
.y11b{bottom:395.238000px;}
.y10b{bottom:397.116000px;}
.y10a{bottom:413.479500px;}
.y1d{bottom:414.927000px;}
.y11a{bottom:419.820000px;}
.y109{bottom:429.843000px;}
.y119{bottom:436.183500px;}
.y108{bottom:446.206500px;}
.y1c{bottom:457.695000px;}
.y118{bottom:466.146000px;}
.y1b{bottom:474.058500px;}
.y107{bottom:480.228000px;}
.y1a{bottom:490.422000px;}
.y19{bottom:506.785500px;}
.y117{bottom:510.148500px;}
.y18{bottom:523.149000px;}
.y106{bottom:531.001500px;}
.y17{bottom:539.512500px;}
.y105{bottom:547.366500px;}
.y16{bottom:555.876000px;}
.y104{bottom:563.730000px;}
.y15{bottom:572.239500px;}
.y103{bottom:580.093500px;}
.y14{bottom:588.603000px;}
.y13{bottom:604.968000px;}
.y100{bottom:616.696500px;}
.y11{bottom:621.331500px;}
.y12{bottom:626.754000px;}
.y102{bottom:651.025500px;}
.y10{bottom:656.107500px;}
.yff{bottom:696.103500px;}
.yf{bottom:706.467000px;}
.yfe{bottom:712.467000px;}
.y39{bottom:719.281597px;}
.ye{bottom:722.830500px;}
.yd{bottom:739.194000px;}
.yc{bottom:755.557500px;}
.y101{bottom:762.370500px;}
.yb{bottom:771.921000px;}
.ya{bottom:788.284500px;}
.yfd{bottom:792.342000px;}
.y9{bottom:804.648000px;}
.y8{bottom:821.011500px;}
.yfc{bottom:829.837500px;}
.y7{bottom:837.375000px;}
.y134{bottom:843.511500px;}
.yfb{bottom:846.201000px;}
.y133{bottom:859.875000px;}
.yfa{bottom:862.564500px;}
.y6{bottom:872.911500px;}
.y132{bottom:876.238500px;}
.yf9{bottom:895.419000px;}
.y116{bottom:901.345500px;}
.y131{bottom:904.558500px;}
.yf8{bottom:911.782500px;}
.y115{bottom:925.927500px;}
.yf7{bottom:928.146000px;}
.y130{bottom:932.877000px;}
.y38{bottom:934.147500px;}
.y5{bottom:934.684500px;}
.y114{bottom:942.291000px;}
.yf6{bottom:944.511000px;}
.y12f{bottom:949.240500px;}
.y37{bottom:950.511000px;}
.y4{bottom:951.048000px;}
.y113{bottom:958.654500px;}
.y36{bottom:966.874500px;}
.y3{bottom:967.411500px;}
.yf5{bottom:971.506500px;}
.y112{bottom:975.018000px;}
.y12e{bottom:977.559000px;}
.y35{bottom:983.238000px;}
.yf4{bottom:987.870000px;}
.y111{bottom:991.383000px;}
.y12d{bottom:993.922500px;}
.y34{bottom:999.601500px;}
.yf3{bottom:1004.233500px;}
.y2{bottom:1013.299500px;}
.y33{bottom:1015.965000px;}
.y12c{bottom:1022.241000px;}
.y32{bottom:1032.328500px;}
.y12b{bottom:1038.606000px;}
.y1{bottom:1043.188500px;}
.y31{bottom:1048.692000px;}
.y30{bottom:1065.055500px;}
.h7{height:16.677504px;}
.h17{height:22.923222px;}
.h8{height:24.675533px;}
.h6{height:28.787846px;}
.h11{height:29.669488px;}
.h16{height:34.211130px;}
.h13{height:36.899835px;}
.h9{height:37.013299px;}
.h4{height:37.240199px;}
.h14{height:37.382970px;}
.ha{height:37.389888px;}
.h3{height:41.125613px;}
.h2{height:41.304940px;}
.h1f{height:41.418721px;}
.h20{height:41.419345px;}
.h28{height:41.421061px;}
.h2a{height:42.141798px;}
.h29{height:44.831700px;}
.hb{height:47.529533px;}
.h2b{height:48.309798px;}
.h5{height:49.566259px;}
.h2c{height:50.483846px;}
.h26{height:51.132568px;}
.h25{height:51.133621px;}
.h10{height:54.318360px;}
.h12{height:54.319178px;}
.h1{height:71.375048px;}
.h27{height:80.275591px;}
.h24{height:85.614691px;}
.h1c{height:99.699346px;}
.h1d{height:99.700867px;}
.h21{height:105.039811px;}
.h23{height:106.855200px;}
.h1e{height:106.855239px;}
.he{height:112.598985px;}
.hf{height:112.600506px;}
.h19{height:117.942180px;}
.h15{height:136.858233px;}
.h18{height:170.882730px;}
.hc{height:191.511060px;}
.hd{height:287.443902px;}
.h22{height:293.971138px;}
.h1b{height:313.398013px;}
.h1a{height:383.465063px;}
.h0{height:1188.000000px;}
.w1{width:426.788066px;}
.w2{width:535.375172px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3d{left:1.751441px;}
.x51{left:4.803572px;}
.x3e{left:7.721026px;}
.x52{left:11.436614px;}
.x5b{left:30.100678px;}
.x24{left:34.026184px;}
.x5a{left:35.652084px;}
.x35{left:38.861599px;}
.x48{left:42.577216px;}
.x22{left:45.855137px;}
.x44{left:49.570209px;}
.x5c{left:57.432999px;}
.x23{left:66.253990px;}
.x45{left:69.969062px;}
.x20{left:78.209703px;}
.x5d{left:79.213817px;}
.x21{left:81.638749px;}
.x1f{left:83.760349px;}
.x43{left:87.475967px;}
.x62{left:92.845292px;}
.x64{left:95.696192px;}
.x25{left:103.627924px;}
.x27{left:117.943118px;}
.x3f{left:121.173049px;}
.x26{left:123.494524px;}
.x42{left:134.857067px;}
.x47{left:139.973252px;}
.x46{left:141.134117px;}
.x49{left:147.467717px;}
.x28{left:149.189674px;}
.xa{left:160.012500px;}
.x9{left:162.000000px;}
.x4b{left:167.268280px;}
.x4a{left:169.025942px;}
.x5e{left:171.864167px;}
.x1e{left:174.884239px;}
.x8f{left:176.944500px;}
.x12{left:179.733000px;}
.x13{left:180.979500px;}
.x2a{left:182.072524px;}
.x82{left:183.810000px;}
.x14{left:185.793000px;}
.x40{left:191.316058px;}
.x1{left:195.271500px;}
.x76{left:201.687000px;}
.x2d{left:206.038648px;}
.x2b{left:207.135874px;}
.x2c{left:211.589674px;}
.x7{left:213.810000px;}
.x8{left:215.799000px;}
.x4c{left:223.053880px;}
.x5f{left:229.683617px;}
.x2f{left:235.261835px;}
.x2e{left:237.583174px;}
.x2{left:240.720000px;}
.x60{left:242.979419px;}
.x1b{left:245.608451px;}
.x77{left:247.683000px;}
.x4d{left:250.945705px;}
.x4{left:254.284500px;}
.x8b{left:257.155500px;}
.x1d{left:258.982961px;}
.xb{left:261.163500px;}
.x78{left:262.866000px;}
.xe{left:266.508000px;}
.x79{left:270.787500px;}
.x61{left:272.929030px;}
.x4f{left:278.838505px;}
.x4e{left:280.596167px;}
.x6d{left:284.784000px;}
.x70{left:293.044500px;}
.x6e{left:297.811500px;}
.x30{left:302.734624px;}
.x8c{left:304.216500px;}
.x50{left:306.731305px;}
.x31{left:311.254447px;}
.x18{left:313.027500px;}
.x63{left:314.913242px;}
.x80{left:319.275000px;}
.x32{left:321.722749px;}
.xf{left:324.879000px;}
.x33{left:328.057324px;}
.x29{left:335.105599px;}
.x59{left:341.738417px;}
.x1c{left:343.122049px;}
.x19{left:348.117000px;}
.x34{left:349.678924px;}
.x36{left:355.103824px;}
.x5{left:360.954000px;}
.x54{left:362.515852px;}
.x53{left:364.273514px;}
.x65{left:369.763817px;}
.x85{left:371.088000px;}
.x37{left:384.750649px;}
.x86{left:386.775000px;}
.x55{left:390.408730px;}
.x3{left:393.658500px;}
.x39{left:398.404198px;}
.x3a{left:401.832649px;}
.x38{left:403.955224px;}
.x8d{left:408.529500px;}
.x3b{left:410.269324px;}
.x3c{left:412.475261px;}
.x57{left:416.722742px;}
.x56{left:418.845317px;}
.x8e{left:424.216500px;}
.x6{left:425.637000px;}
.x67{left:429.096603px;}
.x66{left:431.417942px;}
.x71{left:433.668000px;}
.x68{left:437.751542px;}
.x6f{left:440.076000px;}
.x69{left:444.088554px;}
.x58{left:451.725242px;}
.x6c{left:455.263500px;}
.x72{left:470.329500px;}
.x6a{left:472.422863px;}
.x10{left:478.957500px;}
.x6b{left:488.076000px;}
.x73{left:489.357000px;}
.x7e{left:497.784000px;}
.x15{left:500.970000px;}
.x87{left:527.583000px;}
.x41{left:530.415542px;}
.x16{left:535.996500px;}
.x11{left:537.616500px;}
.x7f{left:540.303000px;}
.x88{left:541.327500px;}
.xc{left:543.135000px;}
.x81{left:554.799000px;}
.x7a{left:580.863000px;}
.x7c{left:582.552000px;}
.x7d{left:596.323500px;}
.xd{left:598.039500px;}
.x83{left:611.502000px;}
.x84{left:627.189000px;}
.x74{left:638.571000px;}
.x1a{left:654.033000px;}
.x75{left:656.346000px;}
.x7b{left:659.299500px;}
.x17{left:701.094000px;}
.x89{left:741.070500px;}
.x8a{left:754.191000px;}
@media print{
.v9{vertical-align:-69.019253pt;}
.va{vertical-align:-43.860267pt;}
.v11{vertical-align:-34.536667pt;}
.vb{vertical-align:-27.328427pt;}
.v12{vertical-align:-25.589685pt;}
.v2{vertical-align:-20.314667pt;}
.v8{vertical-align:-17.873093pt;}
.v6{vertical-align:-8.439184pt;}
.v14{vertical-align:-4.021333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:5.482667pt;}
.vf{vertical-align:8.636749pt;}
.v4{vertical-align:17.268333pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.v5{vertical-align:23.004592pt;}
.v10{vertical-align:34.538400pt;}
.ve{vertical-align:39.285307pt;}
.vd{vertical-align:56.554507pt;}
.v7{vertical-align:73.368776pt;}
.vc{vertical-align:103.611733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000479pt;}
.ls1{letter-spacing:0.001007pt;}
.ls25{letter-spacing:0.002079pt;}
.ls27{letter-spacing:0.003733pt;}
.ls5{letter-spacing:0.041756pt;}
.lse{letter-spacing:0.253144pt;}
.ls2d{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.655527pt;}
.ls31{letter-spacing:2.657067pt;}
.ls24{letter-spacing:3.060980pt;}
.ls16{letter-spacing:7.773106pt;}
.ls18{letter-spacing:7.774458pt;}
.ls19{letter-spacing:7.777162pt;}
.ls2a{letter-spacing:8.855412pt;}
.ls1a{letter-spacing:9.645329pt;}
.ls14{letter-spacing:9.646508pt;}
.ls1b{letter-spacing:9.648033pt;}
.ls15{letter-spacing:9.648068pt;}
.ls17{letter-spacing:9.649385pt;}
.ls1d{letter-spacing:11.265125pt;}
.ls26{letter-spacing:11.805573pt;}
.ls20{letter-spacing:11.808479pt;}
.ls2e{letter-spacing:13.281867pt;}
.ls1c{letter-spacing:13.964033pt;}
.ls13{letter-spacing:14.051621pt;}
.ls2f{letter-spacing:14.755733pt;}
.ls1f{letter-spacing:14.757812pt;}
.ls21{letter-spacing:14.759329pt;}
.ls23{letter-spacing:15.609225pt;}
.ls2c{letter-spacing:15.938245pt;}
.ls22{letter-spacing:17.607188pt;}
.ls1e{letter-spacing:17.818313pt;}
.ls29{letter-spacing:23.899145pt;}
.ls9{letter-spacing:25.040954pt;}
.ls28{letter-spacing:27.699892pt;}
.ls4{letter-spacing:37.992067pt;}
.ls11{letter-spacing:38.838337pt;}
.ls12{letter-spacing:38.839481pt;}
.ls6{letter-spacing:48.532668pt;}
.lsf{letter-spacing:54.923621pt;}
.ls8{letter-spacing:62.172421pt;}
.ls7{letter-spacing:70.740350pt;}
.ls2b{letter-spacing:275.795733pt;}
.lsc{letter-spacing:317.683280pt;}
.ls10{letter-spacing:574.344880pt;}
.lsd{letter-spacing:641.345004pt;}
.lsb{letter-spacing:696.433804pt;}
.ls3{letter-spacing:736.990337pt;}
.lsa{letter-spacing:1091.675547pt;}
.ws4b{word-spacing:-275.848867pt;}
.ws41{word-spacing:-53.133867pt;}
.ws42{word-spacing:-41.338148pt;}
.ws2f{word-spacing:-23.681296pt;}
.ws25{word-spacing:-23.428152pt;}
.ws53{word-spacing:-13.283467pt;}
.ws21{word-spacing:-11.955200pt;}
.ws27{word-spacing:-9.495720pt;}
.ws20{word-spacing:-7.970133pt;}
.ws59{word-spacing:-2.337890pt;}
.ws4{word-spacing:-1.965953pt;}
.wsb{word-spacing:-1.487748pt;}
.ws39{word-spacing:-1.275213pt;}
.ws15{word-spacing:-0.690740pt;}
.ws8{word-spacing:-0.584473pt;}
.ws51{word-spacing:-0.478205pt;}
.ws3a{word-spacing:-0.371937pt;}
.ws37{word-spacing:-0.318803pt;}
.ws12{word-spacing:-0.265669pt;}
.ws22{word-spacing:-0.212535pt;}
.ws11{word-spacing:-0.159402pt;}
.wsd{word-spacing:-0.106268pt;}
.ws26{word-spacing:-0.069075pt;}
.ws24{word-spacing:-0.069074pt;}
.ws5a{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws2{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.000282pt;}
.ws55{word-spacing:0.003830pt;}
.ws5{word-spacing:0.053134pt;}
.wsf{word-spacing:0.106268pt;}
.ws50{word-spacing:0.159402pt;}
.ws3b{word-spacing:0.212535pt;}
.ws17{word-spacing:0.265669pt;}
.ws54{word-spacing:0.531339pt;}
.ws23{word-spacing:0.850142pt;}
.ws5d{word-spacing:1.168945pt;}
.wse{word-spacing:1.222079pt;}
.ws13{word-spacing:1.275213pt;}
.ws36{word-spacing:1.594016pt;}
.ws49{word-spacing:1.647150pt;}
.ws19{word-spacing:1.673728pt;}
.ws48{word-spacing:1.700284pt;}
.ws28{word-spacing:1.911537pt;}
.ws9{word-spacing:2.019087pt;}
.ws6{word-spacing:2.284756pt;}
.ws16{word-spacing:2.391024pt;}
.ws4a{word-spacing:2.444158pt;}
.ws7{word-spacing:2.603559pt;}
.ws10{word-spacing:3.188032pt;}
.ws35{word-spacing:3.294300pt;}
.ws14{word-spacing:3.559969pt;}
.wsc{word-spacing:4.144442pt;}
.ws4f{word-spacing:4.356977pt;}
.ws1e{word-spacing:4.542976pt;}
.ws46{word-spacing:4.569513pt;}
.ws58{word-spacing:4.835182pt;}
.ws4e{word-spacing:5.472788pt;}
.ws5b{word-spacing:5.839482pt;}
.ws1c{word-spacing:5.977600pt;}
.ws1b{word-spacing:6.121062pt;}
.ws1f{word-spacing:6.640145pt;}
.ws43{word-spacing:8.820222pt;}
.ws40{word-spacing:11.749544pt;}
.ws57{word-spacing:12.167655pt;}
.ws31{word-spacing:12.362627pt;}
.ws44{word-spacing:13.227345pt;}
.ws52{word-spacing:13.228266pt;}
.ws1{word-spacing:13.230333pt;}
.ws45{word-spacing:13.234502pt;}
.ws5c{word-spacing:13.283467pt;}
.ws1a{word-spacing:13.628928pt;}
.ws56{word-spacing:14.695261pt;}
.ws3f{word-spacing:14.703496pt;}
.ws33{word-spacing:15.662118pt;}
.ws34{word-spacing:15.662390pt;}
.ws32{word-spacing:15.665688pt;}
.ws47{word-spacing:15.876506pt;}
.ws1d{word-spacing:17.884979pt;}
.ws38{word-spacing:19.075058pt;}
.ws0{word-spacing:22.862051pt;}
.ws30{word-spacing:54.854547pt;}
.ws2e{word-spacing:58.851613pt;}
.ws2d{word-spacing:60.239854pt;}
.wsa{word-spacing:63.697306pt;}
.ws2b{word-spacing:64.551033pt;}
.ws2c{word-spacing:64.554777pt;}
.ws29{word-spacing:64.555811pt;}
.ws2a{word-spacing:64.555854pt;}
.ws3e{word-spacing:121.418878pt;}
.ws4c{word-spacing:262.506933pt;}
.ws4d{word-spacing:262.512267pt;}
.ws3c{word-spacing:402.814682pt;}
._1a{margin-left:-275.795733pt;}
._12{margin-left:-15.380886pt;}
._1{margin-left:-8.447023pt;}
._10{margin-left:-7.145689pt;}
._4{margin-left:-6.254917pt;}
._2{margin-left:-5.049851pt;}
._8{margin-left:-3.400567pt;}
._3{margin-left:-2.295387pt;}
._0{margin-left:-0.918155pt;}
._11{width:1.083806pt;}
._f{width:2.630144pt;}
._16{width:4.902394pt;}
._15{width:7.775810pt;}
._14{width:9.735621pt;}
._17{width:11.260954pt;}
._6{width:12.356815pt;}
._d{width:14.789433pt;}
._5{width:16.220708pt;}
._c{width:17.268507pt;}
._a{width:18.632993pt;}
._e{width:19.654349pt;}
._18{width:21.610605pt;}
._7{width:23.257755pt;}
._b{width:26.779469pt;}
._9{width:29.436162pt;}
._1c{width:31.062051pt;}
._1b{width:53.133867pt;}
._19{width:63.761067pt;}
._13{width:95.042307pt;}
.fs7{font-size:30.152061pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs8{font-size:37.982880pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:47.857680pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:61.538187pt;}
.fs3{font-size:63.761067pt;}
.fs6{font-size:69.074373pt;}
.fs9{font-size:69.075413pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:0.823940pt;}
.y6b{bottom:1.033847pt;}
.y74{bottom:2.456913pt;}
.y7d{bottom:8.093713pt;}
.ydc{bottom:10.912373pt;}
.y6a{bottom:10.992280pt;}
.y73{bottom:12.545087pt;}
.yd0{bottom:13.857740pt;}
.y7c{bottom:18.181713pt;}
.y5d{bottom:20.101467pt;}
.y60{bottom:21.546980pt;}
.yda{bottom:22.179387pt;}
.y4d{bottom:22.934513pt;}
.ycf{bottom:23.945827pt;}
.yd3{bottom:23.946511pt;}
.ye0{bottom:23.946607pt;}
.y57{bottom:29.009673pt;}
.yc5{bottom:29.485473pt;}
.ybb{bottom:30.192673pt;}
.y5f{bottom:31.635153pt;}
.y4c{bottom:33.022600pt;}
.y59{bottom:33.022860pt;}
.y85{bottom:39.269447pt;}
.yc4{bottom:39.573473pt;}
.y69{bottom:43.499387pt;}
.yd6{bottom:45.821273pt;}
.y72{bottom:46.629353pt;}
.y4f{bottom:47.747873pt;}
.y41{bottom:49.975311pt;}
.y3e{bottom:49.975337pt;}
.y3b{bottom:49.975363pt;}
.y81{bottom:53.218447pt;}
.y5e{bottom:54.464713pt;}
.yf2{bottom:56.149333pt;}
.y4b{bottom:56.450680pt;}
.y4e{bottom:56.451113pt;}
.yce{bottom:59.397347pt;}
.y77{bottom:60.768327pt;}
.yb9{bottom:62.743486pt;}
.y40{bottom:65.691461pt;}
.y3d{bottom:65.691487pt;}
.y3a{bottom:65.691513pt;}
.y75{bottom:67.459600pt;}
.yc3{bottom:69.218587pt;}
.yc7{bottom:69.218673pt;}
.ycc{bottom:69.218847pt;}
.ybd{bottom:69.218933pt;}
.y56{bottom:69.402407pt;}
.y5c{bottom:69.402580pt;}
.y7b{bottom:69.402753pt;}
.y2f{bottom:69.497333pt;}
.y6f{bottom:71.313580pt;}
.yd1{bottom:71.377540pt;}
.y6d{bottom:71.560519pt;}
.y80{bottom:71.560927pt;}
.yd9{bottom:73.536147pt;}
.yd7{bottom:73.536320pt;}
.y58{bottom:73.870853pt;}
.y6c{bottom:74.605700pt;}
.y7e{bottom:74.606307pt;}
.yd5{bottom:75.694753pt;}
.y47{bottom:76.549980pt;}
.y67{bottom:76.781380pt;}
.y61{bottom:78.523553pt;}
.yb8{bottom:79.436673pt;}
.yd2{bottom:80.228018pt;}
.ye7{bottom:82.170487pt;}
.ydf{bottom:82.171007pt;}
.y2e{bottom:82.781333pt;}
.ye1{bottom:84.329267pt;}
.y46{bottom:86.638413pt;}
.y79{bottom:86.795713pt;}
.y66{bottom:86.869380pt;}
.yd4{bottom:88.701860pt;}
.y55{bottom:89.756247pt;}
.ye8{bottom:90.726974pt;}
.ydb{bottom:90.805173pt;}
.yc2{bottom:93.107473pt;}
.ye5{bottom:93.338873pt;}
.yf1{bottom:96.000000pt;}
.y78{bottom:96.882847pt;}
.y45{bottom:97.905080pt;}
.y65{bottom:98.261280pt;}
.y52{bottom:98.748719pt;}
.yde{bottom:99.339673pt;}
.y54{bottom:99.844611pt;}
.y5b{bottom:100.541047pt;}
.yc1{bottom:103.196773pt;}
.ye4{bottom:103.427740pt;}
.y44{bottom:107.098853pt;}
.y63{bottom:108.149513pt;}
.y53{bottom:108.378573pt;}
.yf0{bottom:110.545333pt;}
.y12a{bottom:114.362667pt;}
.yc0{bottom:114.463440pt;}
.ye3{bottom:114.819640pt;}
.yca{bottom:116.386140pt;}
.y43{bottom:117.090913pt;}
.y70{bottom:117.091173pt;}
.y83{bottom:118.176500pt;}
.y4a{bottom:119.180447pt;}
.y62{bottom:121.407780pt;}
.y42{bottom:121.408274pt;}
.y3f{bottom:121.408300pt;}
.y3c{bottom:121.408326pt;}
.ybf{bottom:123.657213pt;}
.y2d{bottom:123.956000pt;}
.ye2{bottom:124.937280pt;}
.yc9{bottom:126.475007pt;}
.y49{bottom:127.884033pt;}
.y5a{bottom:127.884380pt;}
.y82{bottom:131.127707pt;}
.y6e{bottom:132.028780pt;}
.y129{bottom:133.074667pt;}
.ybe{bottom:133.649273pt;}
.y7f{bottom:136.345647pt;}
.y110{bottom:137.178667pt;}
.y2c{bottom:137.240000pt;}
.y71{bottom:137.705620pt;}
.yba{bottom:137.966123pt;}
.yc8{bottom:137.966140pt;}
.y84{bottom:140.060180pt;}
.y76{bottom:140.111313pt;}
.yef{bottom:142.676000pt;}
.y51{bottom:144.020847pt;}
.ybc{bottom:144.441873pt;}
.y7a{bottom:145.023840pt;}
.y48{bottom:146.943247pt;}
.y68{bottom:146.943420pt;}
.y64{bottom:147.217200pt;}
.y128{bottom:147.620000pt;}
.yc6{bottom:148.586273pt;}
.y2b{bottom:150.522667pt;}
.ycd{bottom:154.263547pt;}
.yd8{bottom:156.617673pt;}
.y50{bottom:157.764447pt;}
.y127{bottom:162.165333pt;}
.ycb{bottom:163.307647pt;}
.ye6{bottom:163.500913pt;}
.y2a{bottom:163.806667pt;}
.ya6{bottom:163.894207pt;}
.ya5{bottom:173.982207pt;}
.yb4{bottom:175.987673pt;}
.y10f{bottom:176.566667pt;}
.y29{bottom:177.090667pt;}
.y99{bottom:177.124740pt;}
.yee{bottom:182.722667pt;}
.y126{bottom:184.016000pt;}
.ya3{bottom:184.309060pt;}
.yb3{bottom:186.076367pt;}
.y98{bottom:187.212393pt;}
.y28{bottom:190.373333pt;}
.y8d{bottom:192.323473pt;}
.y27{bottom:195.452000pt;}
.yed{bottom:197.268000pt;}
.y97{bottom:198.332853pt;}
.y125{bottom:198.561333pt;}
.y26{bottom:209.920000pt;}
.y96{bottom:210.856880pt;}
.yec{bottom:211.813333pt;}
.y124{bottom:213.106667pt;}
.ya2{bottom:213.987453pt;}
.y9c{bottom:215.105453pt;}
.y88{bottom:217.332943pt;}
.y8b{bottom:217.333151pt;}
.yb7{bottom:220.575940pt;}
.yb6{bottom:223.808607pt;}
.y9b{bottom:223.808693pt;}
.y123{bottom:227.653333pt;}
.ya9{bottom:228.125473pt;}
.yb0{bottom:228.125560pt;}
.y25{bottom:228.786667pt;}
.y87{bottom:233.990207pt;}
.y8a{bottom:233.990415pt;}
.yaa{bottom:234.817085pt;}
.ya4{bottom:234.817093pt;}
.yb1{bottom:234.817171pt;}
.yb2{bottom:234.817267pt;}
.y9a{bottom:234.817353pt;}
.y122{bottom:242.198667pt;}
.yb5{bottom:243.291793pt;}
.ya7{bottom:243.292400pt;}
.y24{bottom:243.332000pt;}
.yeb{bottom:244.244000pt;}
.ya0{bottom:253.253607pt;}
.y92{bottom:253.327273pt;}
.y121{bottom:256.744000pt;}
.y23{bottom:257.877333pt;}
.yea{bottom:258.790667pt;}
.y9f{bottom:263.341520pt;}
.y91{bottom:263.416313pt;}
.yad{bottom:266.387073pt;}
.y10c{bottom:270.849333pt;}
.ye9{bottom:273.336000pt;}
.y90{bottom:274.536773pt;}
.y9e{bottom:274.734113pt;}
.yac{bottom:276.475966pt;}
.y120{bottom:278.594667pt;}
.y22{bottom:279.729333pt;}
.y10d{bottom:280.088000pt;}
.y8f{bottom:283.730547pt;}
.yab{bottom:285.010267pt;}
.y11f{bottom:293.140000pt;}
.y8e{bottom:293.722607pt;}
.y21{bottom:294.274667pt;}
.yaf{bottom:294.806720pt;}
.y95{bottom:295.811533pt;}
.y86{bottom:297.179393pt;}
.y8c{bottom:298.039447pt;}
.y89{bottom:298.039473pt;}
.y94{bottom:304.514773pt;}
.y11e{bottom:307.685333pt;}
.yae{bottom:307.758273pt;}
.ya8{bottom:308.659607pt;}
.y20{bottom:308.820000pt;}
.ya1{bottom:314.337053pt;}
.y93{bottom:317.400720pt;}
.y10e{bottom:322.024000pt;}
.y11d{bottom:322.230667pt;}
.y1f{bottom:323.365333pt;}
.y9d{bottom:328.222007pt;}
.y11c{bottom:336.777333pt;}
.y1e{bottom:337.910667pt;}
.y11b{bottom:351.322667pt;}
.y10b{bottom:352.992000pt;}
.y10a{bottom:367.537333pt;}
.y1d{bottom:368.824000pt;}
.y11a{bottom:373.173333pt;}
.y109{bottom:382.082667pt;}
.y119{bottom:387.718667pt;}
.y108{bottom:396.628000pt;}
.y1c{bottom:406.840000pt;}
.y118{bottom:414.352000pt;}
.y1b{bottom:421.385333pt;}
.y107{bottom:426.869333pt;}
.y1a{bottom:435.930667pt;}
.y19{bottom:450.476000pt;}
.y117{bottom:453.465333pt;}
.y18{bottom:465.021333pt;}
.y106{bottom:472.001333pt;}
.y17{bottom:479.566667pt;}
.y105{bottom:486.548000pt;}
.y16{bottom:494.112000pt;}
.y104{bottom:501.093333pt;}
.y15{bottom:508.657333pt;}
.y103{bottom:515.638667pt;}
.y14{bottom:523.202667pt;}
.y13{bottom:537.749333pt;}
.y100{bottom:548.174667pt;}
.y11{bottom:552.294667pt;}
.y12{bottom:557.114667pt;}
.y102{bottom:578.689333pt;}
.y10{bottom:583.206667pt;}
.yff{bottom:618.758667pt;}
.yf{bottom:627.970667pt;}
.yfe{bottom:633.304000pt;}
.y39{bottom:639.361420pt;}
.ye{bottom:642.516000pt;}
.yd{bottom:657.061333pt;}
.yc{bottom:671.606667pt;}
.y101{bottom:677.662667pt;}
.yb{bottom:686.152000pt;}
.ya{bottom:700.697333pt;}
.yfd{bottom:704.304000pt;}
.y9{bottom:715.242667pt;}
.y8{bottom:729.788000pt;}
.yfc{bottom:737.633333pt;}
.y7{bottom:744.333333pt;}
.y134{bottom:749.788000pt;}
.yfb{bottom:752.178667pt;}
.y133{bottom:764.333333pt;}
.yfa{bottom:766.724000pt;}
.y6{bottom:775.921333pt;}
.y132{bottom:778.878667pt;}
.yf9{bottom:795.928000pt;}
.y116{bottom:801.196000pt;}
.y131{bottom:804.052000pt;}
.yf8{bottom:810.473333pt;}
.y115{bottom:823.046667pt;}
.yf7{bottom:825.018667pt;}
.y130{bottom:829.224000pt;}
.y38{bottom:830.353333pt;}
.y5{bottom:830.830667pt;}
.y114{bottom:837.592000pt;}
.yf6{bottom:839.565333pt;}
.y12f{bottom:843.769333pt;}
.y37{bottom:844.898667pt;}
.y4{bottom:845.376000pt;}
.y113{bottom:852.137333pt;}
.y36{bottom:859.444000pt;}
.y3{bottom:859.921333pt;}
.yf5{bottom:863.561333pt;}
.y112{bottom:866.682667pt;}
.y12e{bottom:868.941333pt;}
.y35{bottom:873.989333pt;}
.yf4{bottom:878.106667pt;}
.y111{bottom:881.229333pt;}
.y12d{bottom:883.486667pt;}
.y34{bottom:888.534667pt;}
.yf3{bottom:892.652000pt;}
.y2{bottom:900.710667pt;}
.y33{bottom:903.080000pt;}
.y12c{bottom:908.658667pt;}
.y32{bottom:917.625333pt;}
.y12b{bottom:923.205333pt;}
.y1{bottom:927.278667pt;}
.y31{bottom:932.170667pt;}
.y30{bottom:946.716000pt;}
.h7{height:14.824448pt;}
.h17{height:20.376198pt;}
.h8{height:21.933807pt;}
.h6{height:25.589197pt;}
.h11{height:26.372879pt;}
.h16{height:30.409894pt;}
.h13{height:32.799853pt;}
.h9{height:32.900710pt;}
.h4{height:33.102399pt;}
.h14{height:33.229307pt;}
.ha{height:33.235456pt;}
.h3{height:36.556100pt;}
.h2{height:36.715502pt;}
.h1f{height:36.816641pt;}
.h20{height:36.817195pt;}
.h28{height:36.818721pt;}
.h2a{height:37.459376pt;}
.h29{height:39.850400pt;}
.hb{height:42.248474pt;}
.h2b{height:42.942043pt;}
.h5{height:44.058897pt;}
.h2c{height:44.874530pt;}
.h26{height:45.451172pt;}
.h25{height:45.452108pt;}
.h10{height:48.282987pt;}
.h12{height:48.283714pt;}
.h1{height:63.444487pt;}
.h27{height:71.356081pt;}
.h24{height:76.101948pt;}
.h1c{height:88.621641pt;}
.h1d{height:88.622993pt;}
.h21{height:93.368721pt;}
.h23{height:94.982400pt;}
.h1e{height:94.982435pt;}
.he{height:100.087987pt;}
.hf{height:100.089339pt;}
.h19{height:104.837494pt;}
.h15{height:121.651763pt;}
.h18{height:151.895760pt;}
.hc{height:170.232053pt;}
.hd{height:255.505691pt;}
.h22{height:261.307678pt;}
.h1b{height:278.576012pt;}
.h1a{height:340.857833pt;}
.h0{height:1056.000000pt;}
.w1{width:379.367170pt;}
.w2{width:475.889041pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:1.556837pt;}
.x51{left:4.269841pt;}
.x3e{left:6.863134pt;}
.x52{left:10.165879pt;}
.x5b{left:26.756158pt;}
.x24{left:30.245497pt;}
.x5a{left:31.690741pt;}
.x35{left:34.543643pt;}
.x48{left:37.846415pt;}
.x22{left:40.760122pt;}
.x44{left:44.062408pt;}
.x5c{left:51.051555pt;}
.x23{left:58.892435pt;}
.x45{left:62.194721pt;}
.x20{left:69.519736pt;}
.x5d{left:70.412281pt;}
.x21{left:72.567777pt;}
.x1f{left:74.453643pt;}
.x43{left:77.756415pt;}
.x62{left:82.529148pt;}
.x64{left:85.063281pt;}
.x25{left:92.113710pt;}
.x27{left:104.838327pt;}
.x3f{left:107.709377pt;}
.x26{left:109.772910pt;}
.x42{left:119.872948pt;}
.x47{left:124.420669pt;}
.x46{left:125.452548pt;}
.x49{left:131.082415pt;}
.x28{left:132.613043pt;}
.xa{left:142.233333pt;}
.x9{left:144.000000pt;}
.x4b{left:148.682915pt;}
.x4a{left:150.245281pt;}
.x5e{left:152.768148pt;}
.x1e{left:155.452657pt;}
.x8f{left:157.284000pt;}
.x12{left:159.762667pt;}
.x13{left:160.870667pt;}
.x2a{left:161.842243pt;}
.x82{left:163.386667pt;}
.x14{left:165.149333pt;}
.x40{left:170.058719pt;}
.x1{left:173.574667pt;}
.x76{left:179.277333pt;}
.x2d{left:183.145465pt;}
.x2b{left:184.120777pt;}
.x2c{left:188.079710pt;}
.x7{left:190.053333pt;}
.x8{left:191.821333pt;}
.x4c{left:198.270115pt;}
.x5f{left:204.163215pt;}
.x2f{left:209.121631pt;}
.x2e{left:211.185043pt;}
.x2{left:213.973333pt;}
.x60{left:215.981705pt;}
.x1b{left:218.318623pt;}
.x77{left:220.162667pt;}
.x4d{left:223.062849pt;}
.x4{left:226.030667pt;}
.x8b{left:228.582667pt;}
.x1d{left:230.207077pt;}
.xb{left:232.145333pt;}
.x78{left:233.658667pt;}
.xe{left:236.896000pt;}
.x79{left:240.700000pt;}
.x61{left:242.603582pt;}
.x4f{left:247.856449pt;}
.x4e{left:249.418815pt;}
.x6d{left:253.141333pt;}
.x70{left:260.484000pt;}
.x6e{left:264.721333pt;}
.x30{left:269.097443pt;}
.x8c{left:270.414667pt;}
.x50{left:272.650049pt;}
.x31{left:276.670619pt;}
.x18{left:278.246667pt;}
.x63{left:279.922881pt;}
.x80{left:283.800000pt;}
.x32{left:285.975777pt;}
.xf{left:288.781333pt;}
.x33{left:291.606510pt;}
.x29{left:297.871643pt;}
.x59{left:303.767481pt;}
.x1c{left:304.997377pt;}
.x19{left:309.437333pt;}
.x34{left:310.825710pt;}
.x36{left:315.647843pt;}
.x5{left:320.848000pt;}
.x54{left:322.236313pt;}
.x53{left:323.798679pt;}
.x65{left:328.678948pt;}
.x85{left:329.856000pt;}
.x37{left:342.000577pt;}
.x86{left:343.800000pt;}
.x55{left:347.029982pt;}
.x3{left:349.918667pt;}
.x39{left:354.137065pt;}
.x3a{left:357.184577pt;}
.x38{left:359.071310pt;}
.x8d{left:363.137333pt;}
.x3b{left:364.683843pt;}
.x3c{left:366.644677pt;}
.x57{left:370.420215pt;}
.x56{left:372.306948pt;}
.x8e{left:377.081333pt;}
.x6{left:378.344000pt;}
.x67{left:381.419203pt;}
.x66{left:383.482615pt;}
.x71{left:385.482667pt;}
.x68{left:389.112481pt;}
.x6f{left:391.178667pt;}
.x69{left:394.745381pt;}
.x58{left:401.533548pt;}
.x6c{left:404.678667pt;}
.x72{left:418.070667pt;}
.x6a{left:419.931434pt;}
.x10{left:425.740000pt;}
.x6b{left:433.845333pt;}
.x73{left:434.984000pt;}
.x7e{left:442.474667pt;}
.x15{left:445.306667pt;}
.x87{left:468.962667pt;}
.x41{left:471.480481pt;}
.x16{left:476.441333pt;}
.x11{left:477.881333pt;}
.x7f{left:480.269333pt;}
.x88{left:481.180000pt;}
.xc{left:482.786667pt;}
.x81{left:493.154667pt;}
.x7a{left:516.322667pt;}
.x7c{left:517.824000pt;}
.x7d{left:530.065333pt;}
.xd{left:531.590667pt;}
.x83{left:543.557333pt;}
.x84{left:557.501333pt;}
.x74{left:567.618667pt;}
.x1a{left:581.362667pt;}
.x75{left:583.418667pt;}
.x7b{left:586.044000pt;}
.x17{left:623.194667pt;}
.x89{left:658.729333pt;}
.x8a{left:670.392000pt;}
}




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