
    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_7afe0ce13f0996daaf65f754.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_0011e96ab19a433ff583116e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.752000;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_59c6a502e2e46bf467d7bf36.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_28537752b00f4996fefd371a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_21d6407610c240ed97bf9b0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_edef5cbd3bbb7177d8994b59.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.762207;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_0bccdfdf78403d98e44fb84e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_866f710afbccd2f484ff6b09.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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_928dd190f7e427e93b491e23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.658000;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_22f6d785ba185b3eab212f20.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.482000;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_39d4b05d598df70af82b5fc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.049000;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_09cb5bcf92caaa92320573c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.868000;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_d571d58f52ffdf5c5e3b81de.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_29747a359396200c571f5a18.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708000;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;}
.m1a{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);}
.m1b{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);}
.m7{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);}
.m13{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);}
.ma{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);}
.m2{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);}
.m1{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);}
.m20{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);}
.m10{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);}
.mc{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);}
.m1e{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);}
.md{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);}
.mf{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);}
.m9{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);}
.m16{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);}
.m5{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);}
.m1c{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);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.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);}
.m6{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);}
.m25{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m23{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);}
.m8{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);}
.m21{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);}
.m18{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);}
.m1f{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);}
.m26{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);}
.m1d{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);}
.m12{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);}
.m24{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);}
.m27{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);}
.m14{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);}
.m17{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);}
.m22{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);}
.m19{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);}
.v3{vertical-align:-58.594709px;}
.v4{vertical-align:-15.546680px;}
.v5{vertical-align:-2.890448px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.403130px;}
.v6{vertical-align:2.637884px;}
.v7{vertical-align:15.883432px;}
.v1{vertical-align:21.690000px;}
.lsa{letter-spacing:-0.172024px;}
.lsc{letter-spacing:-0.162763px;}
.ls12{letter-spacing:-0.161079px;}
.lsb{letter-spacing:-0.134700px;}
.ls9{letter-spacing:-0.104673px;}
.ls11{letter-spacing:-0.093729px;}
.lsd{letter-spacing:-0.012516px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000564px;}
.ls13{letter-spacing:0.002245px;}
.ls1{letter-spacing:0.033675px;}
.ls8{letter-spacing:0.074085px;}
.ls10{letter-spacing:0.088958px;}
.lse{letter-spacing:0.134700px;}
.lsf{letter-spacing:0.137787px;}
.ls19{letter-spacing:2.371909px;}
.ls14{letter-spacing:13.282438px;}
.ls15{letter-spacing:13.284538px;}
.ls1a{letter-spacing:18.239880px;}
.ls3{letter-spacing:66.887723px;}
.ls7{letter-spacing:77.952290px;}
.ls5{letter-spacing:106.912893px;}
.ls18{letter-spacing:157.418023px;}
.ls17{letter-spacing:180.607951px;}
.ls6{letter-spacing:231.061836px;}
.ls2{letter-spacing:370.516120px;}
.ls4{letter-spacing:399.549686px;}
.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;}
}
.ws8{word-spacing:-16.617617px;}
.wsac{word-spacing:-13.294127px;}
.ws95{word-spacing:-13.007244px;}
.ws1{word-spacing:-11.632298px;}
.ws93{word-spacing:-10.635335px;}
.ws3b{word-spacing:-10.254074px;}
.ws5e{word-spacing:-3.586536px;}
.ws46{word-spacing:-3.526760px;}
.ws27{word-spacing:-3.347434px;}
.ws35{word-spacing:-3.227882px;}
.ws1b{word-spacing:-3.048556px;}
.ws83{word-spacing:-2.929004px;}
.wsb5{word-spacing:-2.821415px;}
.ws45{word-spacing:-2.809453px;}
.ws6f{word-spacing:-2.689902px;}
.ws8d{word-spacing:-2.582312px;}
.ws71{word-spacing:-2.331248px;}
.ws9d{word-spacing:-2.295389px;}
.ws77{word-spacing:-2.271473px;}
.wsb9{word-spacing:-2.199748px;}
.ws7e{word-spacing:-2.151922px;}
.ws84{word-spacing:-1.912819px;}
.ws4a{word-spacing:-1.853044px;}
.ws62{word-spacing:-1.673717px;}
.wsbb{word-spacing:-1.625900px;}
.wsa9{word-spacing:-1.578080px;}
.ws2d{word-spacing:-1.494390px;}
.ws9b{word-spacing:-1.482439px;}
.ws4c{word-spacing:-1.374839px;}
.ws76{word-spacing:-1.315063px;}
.wsa7{word-spacing:-1.243336px;}
.ws78{word-spacing:-1.195512px;}
.ws7c{word-spacing:-1.135736px;}
.ws9a{word-spacing:-1.099874px;}
.ws29{word-spacing:-1.016185px;}
.ws1f{word-spacing:-0.777083px;}
.wsb8{word-spacing:-0.573847px;}
.wsb7{word-spacing:-0.526027px;}
.ws73{word-spacing:-0.478205px;}
.ws30{word-spacing:-0.418429px;}
.ws26{word-spacing:-0.358654px;}
.wsa{word-spacing:-0.298878px;}
.ws51{word-spacing:-0.239102px;}
.ws9c{word-spacing:-0.191282px;}
.ws10{word-spacing:-0.179327px;}
.ws3d{word-spacing:-0.177187px;}
.wsbc{word-spacing:-0.143462px;}
.ws3f{word-spacing:-0.128426px;}
.ws11{word-spacing:-0.119551px;}
.ws8e{word-spacing:-0.095641px;}
.wse{word-spacing:-0.059776px;}
.ws97{word-spacing:-0.047821px;}
.ws75{word-spacing:-0.041843px;}
.ws40{word-spacing:-0.039467px;}
.ws3e{word-spacing:-0.039400px;}
.ws39{word-spacing:-0.030981px;}
.ws61{word-spacing:-0.005324px;}
.ws60{word-spacing:-0.000642px;}
.ws0{word-spacing:0.000000px;}
.wsbd{word-spacing:0.047821px;}
.ws3{word-spacing:0.053572px;}
.ws41{word-spacing:0.054329px;}
.ws15{word-spacing:0.059776px;}
.wsb4{word-spacing:0.095641px;}
.ws20{word-spacing:0.119551px;}
.ws42{word-spacing:0.121679px;}
.wsad{word-spacing:0.143462px;}
.wsc{word-spacing:0.179327px;}
.ws9e{word-spacing:0.191282px;}
.ws18{word-spacing:0.239102px;}
.ws52{word-spacing:0.291822px;}
.ws2{word-spacing:0.298878px;}
.ws4{word-spacing:0.358654px;}
.ws34{word-spacing:0.418429px;}
.ws53{word-spacing:0.478205px;}
.wsbf{word-spacing:0.526027px;}
.ws6b{word-spacing:0.597756px;}
.ws2e{word-spacing:0.657532px;}
.ws4f{word-spacing:0.836858px;}
.ws5c{word-spacing:1.374839px;}
.ws7b{word-spacing:1.494390px;}
.wsb6{word-spacing:1.530259px;}
.wsc1{word-spacing:1.573834px;}
.wsc2{word-spacing:1.578080px;}
.ws72{word-spacing:1.673717px;}
.ws1a{word-spacing:1.733492px;}
.ws74{word-spacing:1.853044px;}
.ws81{word-spacing:1.912819px;}
.ws2c{word-spacing:2.151922px;}
.wsb3{word-spacing:2.199748px;}
.wsb2{word-spacing:2.247568px;}
.wsb{word-spacing:2.271473px;}
.ws69{word-spacing:2.331248px;}
.wsaa{word-spacing:2.343209px;}
.ws2a{word-spacing:2.510575px;}
.ws2b{word-spacing:2.570351px;}
.ws44{word-spacing:2.630126px;}
.ws43{word-spacing:2.689902px;}
.ws63{word-spacing:2.749678px;}
.ws86{word-spacing:2.809453px;}
.ws8a{word-spacing:2.869229px;}
.ws25{word-spacing:2.929004px;}
.ws13{word-spacing:2.988780px;}
.ws50{word-spacing:3.048556px;}
.ws58{word-spacing:3.108331px;}
.ws31{word-spacing:3.168107px;}
.ws48{word-spacing:3.227882px;}
.ws21{word-spacing:3.287658px;}
.ws6c{word-spacing:3.347434px;}
.ws14{word-spacing:3.407209px;}
.ws80{word-spacing:3.466985px;}
.ws82{word-spacing:3.586536px;}
.wsb1{word-spacing:3.634366px;}
.ws7f{word-spacing:3.706087px;}
.ws12{word-spacing:3.825638px;}
.ws8f{word-spacing:3.873469px;}
.ws5d{word-spacing:3.885414px;}
.ws5{word-spacing:3.939876px;}
.ws49{word-spacing:3.945190px;}
.ws5b{word-spacing:4.184292px;}
.ws47{word-spacing:4.244068px;}
.ws4d{word-spacing:4.363619px;}
.ws98{word-spacing:4.447316px;}
.ws24{word-spacing:4.662497px;}
.ws64{word-spacing:4.722272px;}
.ws65{word-spacing:4.782048px;}
.ws70{word-spacing:4.841824px;}
.ws6d{word-spacing:4.901599px;}
.wsa0{word-spacing:4.925522px;}
.ws4e{word-spacing:4.961375px;}
.wsa4{word-spacing:4.971712px;}
.wsa5{word-spacing:4.973342px;}
.ws59{word-spacing:5.021150px;}
.wsc0{word-spacing:5.116804px;}
.ws89{word-spacing:5.140702px;}
.wsab{word-spacing:5.164625px;}
.ws7a{word-spacing:5.260253px;}
.ws55{word-spacing:5.738458px;}
.ws9f{word-spacing:5.929754px;}
.ws33{word-spacing:5.977560px;}
.wsb0{word-spacing:6.073216px;}
.ws6e{word-spacing:6.097111px;}
.ws67{word-spacing:6.455765px;}
.ws56{word-spacing:6.575316px;}
.wsf{word-spacing:6.814418px;}
.ws16{word-spacing:6.874194px;}
.ws2f{word-spacing:6.933970px;}
.wsa6{word-spacing:6.981808px;}
.ws8c{word-spacing:6.993745px;}
.ws68{word-spacing:7.113296px;}
.ws36{word-spacing:7.232848px;}
.wsba{word-spacing:7.268731px;}
.ws32{word-spacing:7.412174px;}
.ws85{word-spacing:7.471950px;}
.ws22{word-spacing:7.531726px;}
.ws8b{word-spacing:7.651277px;}
.wsbe{word-spacing:7.746937px;}
.ws19{word-spacing:7.770828px;}
.ws90{word-spacing:7.890399px;}
.wsa3{word-spacing:7.938220px;}
.ws79{word-spacing:7.950155px;}
.ws6{word-spacing:7.975800px;}
.wsa8{word-spacing:8.225143px;}
.ws37{word-spacing:8.308808px;}
.ws4b{word-spacing:8.428360px;}
.ws28{word-spacing:8.488135px;}
.ws6a{word-spacing:8.667462px;}
.wsd{word-spacing:8.787013px;}
.ws99{word-spacing:8.846811px;}
.ws66{word-spacing:8.966340px;}
.wsa2{word-spacing:9.325017px;}
.wsa1{word-spacing:9.372838px;}
.ws7d{word-spacing:9.384769px;}
.ws5a{word-spacing:9.623872px;}
.ws96{word-spacing:9.803223px;}
.ws38{word-spacing:9.862974px;}
.ws94{word-spacing:9.991018px;}
.ws87{word-spacing:10.998710px;}
.ws9{word-spacing:11.297588px;}
.ws23{word-spacing:11.536691px;}
.ws91{word-spacing:11.572585px;}
.ws92{word-spacing:11.620406px;}
.ws54{word-spacing:11.955120px;}
.wsaf{word-spacing:12.815921px;}
.wsae{word-spacing:12.863741px;}
.ws57{word-spacing:13.090856px;}
.ws1e{word-spacing:14.405920px;}
.ws1d{word-spacing:15.481880px;}
.ws88{word-spacing:16.139412px;}
.ws17{word-spacing:25.165528px;}
.ws1c{word-spacing:39.930101px;}
.ws3a{word-spacing:48.784024px;}
.ws7{word-spacing:50.745732px;}
.ws5f{word-spacing:96.971366px;}
.ws3c{word-spacing:513.697118px;}
._24{margin-left:-8.559887px;}
._4{margin-left:-7.292623px;}
._5{margin-left:-5.977560px;}
._3{margin-left:-4.000235px;}
._8{margin-left:-2.988780px;}
._0{margin-left:-1.912824px;}
._14{width:1.016185px;}
._2{width:2.079308px;}
._1{width:3.825648px;}
._22{width:5.116804px;}
._21{width:7.022560px;}
._23{width:11.190020px;}
._25{width:14.415040px;}
._16{width:15.541666px;}
._b{width:17.275158px;}
._10{width:19.499683px;}
._6{width:20.672815px;}
._13{width:22.057201px;}
._d{width:23.432040px;}
._7{width:25.404630px;}
._1e{width:26.958800px;}
._f{width:28.154317px;}
._c{width:29.239820px;}
._9{width:31.023541px;}
._12{width:33.188305px;}
._a{width:35.088277px;}
._15{width:38.316160px;}
._1c{width:39.631228px;}
._20{width:40.647408px;}
._1d{width:41.723369px;}
._e{width:43.397086px;}
._1f{width:44.891476px;}
._11{width:49.912626px;}
._1a{width:74.116966px;}
._1b{width:77.900615px;}
._19{width:201.520766px;}
._18{width:210.719882px;}
._17{width:234.000858px;}
.fc4{color:transparent;}
.fc2{color:rgb(21,96,130);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.981110px;}
.fs6{font-size:31.048461px;}
.fsb{font-size:38.256600px;}
.fs8{font-size:39.399890px;}
.fs9{font-size:39.467241px;}
.fs2{font-size:41.842800px;}
.fsa{font-size:47.820600px;}
.fs3{font-size:50.512680px;}
.fs4{font-size:50.580030px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:67.350240px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y66{bottom:19.481057px;}
.y5a{bottom:21.063788px;}
.y59{bottom:36.217592px;}
.y76{bottom:39.164165px;}
.y70{bottom:61.608632px;}
.y6c{bottom:67.872204px;}
.y80{bottom:73.699403px;}
.y7f{bottom:85.485695px;}
.y7e{bottom:97.271987px;}
.y37{bottom:104.805000px;}
.ya5{bottom:106.299000px;}
.y7d{bottom:109.058279px;}
.y75{bottom:113.113325px;}
.y72{bottom:117.035073px;}
.y36{bottom:122.737500px;}
.ya4{bottom:124.231500px;}
.y12a{bottom:124.852500px;}
.y169{bottom:125.565000px;}
.y5f{bottom:127.123578px;}
.y74{bottom:128.267129px;}
.y60{bottom:128.772256px;}
.y5d{bottom:129.094976px;}
.y168{bottom:139.762500px;}
.y35{bottom:140.670000px;}
.ya3{bottom:142.164000px;}
.y129{bottom:142.785000px;}
.yf1{bottom:144.252000px;}
.y68{bottom:145.406362px;}
.y5b{bottom:146.809492px;}
.y167{bottom:153.958500px;}
.y6d{bottom:155.410679px;}
.y34{bottom:158.602500px;}
.ya2{bottom:160.098000px;}
.y128{bottom:160.717500px;}
.y6a{bottom:162.110625px;}
.yb8{bottom:162.126000px;}
.y166{bottom:168.156000px;}
.y33{bottom:176.536500px;}
.ya1{bottom:178.030500px;}
.y127{bottom:178.650000px;}
.yb7{bottom:180.058500px;}
.yf0{bottom:180.439500px;}
.y165{bottom:188.329500px;}
.y61{bottom:192.151638px;}
.y63{bottom:193.126813px;}
.y32{bottom:194.469000px;}
.ya0{bottom:195.963000px;}
.y126{bottom:196.584000px;}
.yef{bottom:198.372000px;}
.y164{bottom:202.527000px;}
.y5c{bottom:211.093893px;}
.y31{bottom:212.401500px;}
.y5e{bottom:212.981103px;}
.y9f{bottom:213.895500px;}
.y125{bottom:214.516500px;}
.yb6{bottom:215.946000px;}
.yee{bottom:216.304500px;}
.y163{bottom:216.723000px;}
.y7c{bottom:227.103606px;}
.y69{bottom:230.267664px;}
.y30{bottom:230.334000px;}
.y162{bottom:230.920500px;}
.y73{bottom:231.754982px;}
.y9e{bottom:231.828000px;}
.y124{bottom:233.230500px;}
.yb5{bottom:233.878500px;}
.yed{bottom:234.237000px;}
.y6b{bottom:240.608732px;}
.y71{bottom:240.896374px;}
.y161{bottom:245.116500px;}
.y78{bottom:247.919040px;}
.y2f{bottom:248.266500px;}
.y9d{bottom:249.760500px;}
.yb4{bottom:251.811000px;}
.yec{bottom:252.169500px;}
.y160{bottom:259.314000px;}
.y77{bottom:259.705332px;}
.y7b{bottom:259.838629px;}
.y123{bottom:262.887000px;}
.y2e{bottom:266.199000px;}
.y9c{bottom:267.694500px;}
.yb3{bottom:269.743500px;}
.yeb{bottom:270.103500px;}
.y7a{bottom:271.624921px;}
.y67{bottom:273.154333px;}
.y6e{bottom:275.329184px;}
.y62{bottom:278.324867px;}
.y15f{bottom:279.487500px;}
.y122{bottom:280.819500px;}
.y79{bottom:283.411213px;}
.y2d{bottom:284.133000px;}
.y9b{bottom:285.627000px;}
.y65{bottom:286.729615px;}
.yb2{bottom:287.677500px;}
.yea{bottom:288.036000px;}
.y15e{bottom:293.685000px;}
.y121{bottom:298.752000px;}
.y64{bottom:301.883419px;}
.y2c{bottom:302.065500px;}
.y99{bottom:303.559500px;}
.yb1{bottom:305.610000px;}
.ye9{bottom:305.968500px;}
.y58{bottom:306.597936px;}
.y15d{bottom:307.881000px;}
.y9a{bottom:308.982000px;}
.y120{bottom:316.684500px;}
.y2b{bottom:319.998000px;}
.y98{bottom:321.492000px;}
.y57{bottom:321.751740px;}
.y15c{bottom:322.078500px;}
.yb0{bottom:323.542500px;}
.ye8{bottom:323.901000px;}
.y11f{bottom:334.617000px;}
.y54{bottom:337.930500px;}
.y97{bottom:339.424500px;}
.y2a{bottom:340.951500px;}
.yaf{bottom:341.475000px;}
.ye7{bottom:341.833500px;}
.y15b{bottom:342.252000px;}
.y55{bottom:343.353000px;}
.y11e{bottom:352.551000px;}
.y53{bottom:355.863000px;}
.y15a{bottom:356.449500px;}
.y96{bottom:357.357000px;}
.y29{bottom:358.885500px;}
.yae{bottom:359.407500px;}
.ye6{bottom:359.766000px;}
.y6f{bottom:366.301118px;}
.y11d{bottom:370.483500px;}
.y159{bottom:370.645500px;}
.y52{bottom:373.795500px;}
.y95{bottom:375.291000px;}
.yad{bottom:377.340000px;}
.ye5{bottom:377.700000px;}
.y158{bottom:384.843000px;}
.y11c{bottom:388.416000px;}
.y51{bottom:391.729500px;}
.y94{bottom:393.223500px;}
.yac{bottom:395.274000px;}
.ye4{bottom:395.632500px;}
.y157{bottom:399.039000px;}
.y28{bottom:399.741000px;}
.y11b{bottom:406.348500px;}
.y50{bottom:409.662000px;}
.y93{bottom:411.156000px;}
.yab{bottom:413.206500px;}
.ye3{bottom:413.565000px;}
.y27{bottom:417.673500px;}
.y156{bottom:419.214000px;}
.y11a{bottom:424.281000px;}
.y4f{bottom:427.594500px;}
.y92{bottom:429.088500px;}
.yaa{bottom:431.139000px;}
.ye2{bottom:431.497500px;}
.y155{bottom:433.410000px;}
.y26{bottom:435.606000px;}
.y119{bottom:442.213500px;}
.y4e{bottom:445.527000px;}
.y91{bottom:447.021000px;}
.y154{bottom:447.607500px;}
.ya9{bottom:449.071500px;}
.ye1{bottom:449.430000px;}
.y25{bottom:453.540000px;}
.y118{bottom:460.147500px;}
.y153{bottom:461.803500px;}
.y4d{bottom:463.459500px;}
.y90{bottom:466.981500px;}
.ya8{bottom:467.004000px;}
.ye0{bottom:467.362500px;}
.y24{bottom:471.472500px;}
.y117{bottom:478.080000px;}
.y4c{bottom:481.392000px;}
.y152{bottom:481.978500px;}
.y8f{bottom:484.915500px;}
.ya7{bottom:484.936500px;}
.yde{bottom:485.296500px;}
.y23{bottom:489.405000px;}
.ydf{bottom:490.719000px;}
.y116{bottom:496.012500px;}
.y151{bottom:496.176000px;}
.y4b{bottom:499.326000px;}
.ya6{bottom:502.870500px;}
.ydd{bottom:503.229000px;}
.y22{bottom:507.337500px;}
.y150{bottom:510.372000px;}
.y115{bottom:513.945000px;}
.y4a{bottom:517.258500px;}
.y8e{bottom:520.803000px;}
.ydc{bottom:521.161500px;}
.y21{bottom:525.270000px;}
.y14f{bottom:530.547000px;}
.y114{bottom:531.877500px;}
.y49{bottom:535.191000px;}
.y8d{bottom:538.735500px;}
.ydb{bottom:539.094000px;}
.y20{bottom:543.202500px;}
.y14e{bottom:544.743000px;}
.y113{bottom:549.810000px;}
.y48{bottom:553.123500px;}
.y8c{bottom:556.668000px;}
.yda{bottom:557.026500px;}
.y14d{bottom:558.940500px;}
.y1f{bottom:561.136500px;}
.y112{bottom:567.744000px;}
.y47{bottom:571.056000px;}
.y14c{bottom:573.136500px;}
.y8b{bottom:574.600500px;}
.yd9{bottom:574.959000px;}
.y1d{bottom:579.069000px;}
.y1e{bottom:584.491500px;}
.y111{bottom:585.676500px;}
.y46{bottom:588.988500px;}
.y8a{bottom:592.533000px;}
.yd8{bottom:592.893000px;}
.y14b{bottom:593.311500px;}
.y1c{bottom:597.001500px;}
.y110{bottom:603.609000px;}
.y45{bottom:606.922500px;}
.y14a{bottom:607.507500px;}
.y89{bottom:610.467000px;}
.yd7{bottom:610.825500px;}
.y1b{bottom:614.934000px;}
.y10f{bottom:621.541500px;}
.y149{bottom:621.705000px;}
.y44{bottom:624.855000px;}
.y88{bottom:628.399500px;}
.yd6{bottom:628.758000px;}
.y1a{bottom:632.866500px;}
.y148{bottom:635.901000px;}
.y10e{bottom:639.474000px;}
.y43{bottom:642.787500px;}
.y87{bottom:646.332000px;}
.yd5{bottom:646.690500px;}
.y147{bottom:650.098500px;}
.y19{bottom:650.799000px;}
.y10d{bottom:657.406500px;}
.y42{bottom:660.720000px;}
.y86{bottom:664.264500px;}
.y146{bottom:664.294500px;}
.yd4{bottom:664.623000px;}
.y17{bottom:668.733000px;}
.y18{bottom:674.155500px;}
.y10c{bottom:675.340500px;}
.y41{bottom:678.652500px;}
.y85{bottom:682.197000px;}
.yd2{bottom:682.555500px;}
.y145{bottom:684.469500px;}
.y16{bottom:686.665500px;}
.yd3{bottom:687.979500px;}
.y10b{bottom:693.273000px;}
.y40{bottom:696.585000px;}
.y144{bottom:698.665500px;}
.y84{bottom:700.129500px;}
.yd1{bottom:700.489500px;}
.y15{bottom:704.598000px;}
.y10a{bottom:711.205500px;}
.y143{bottom:712.863000px;}
.y3f{bottom:714.519000px;}
.y83{bottom:718.063500px;}
.yd0{bottom:718.422000px;}
.y14{bottom:722.530500px;}
.y142{bottom:727.059000px;}
.y109{bottom:729.138000px;}
.y3e{bottom:732.451500px;}
.y82{bottom:735.996000px;}
.ycf{bottom:736.354500px;}
.y13{bottom:740.463000px;}
.y108{bottom:747.070500px;}
.y141{bottom:747.234000px;}
.y3d{bottom:750.384000px;}
.yce{bottom:754.287000px;}
.y12{bottom:758.395500px;}
.y140{bottom:761.430000px;}
.y81{bottom:764.763000px;}
.y107{bottom:765.003000px;}
.y3c{bottom:769.098000px;}
.ycd{bottom:772.219500px;}
.y13f{bottom:775.627500px;}
.y10{bottom:776.329500px;}
.y56{bottom:777.690000px;}
.y11{bottom:781.752000px;}
.y106{bottom:782.937000px;}
.y3b{bottom:787.030500px;}
.y13e{bottom:789.823500px;}
.ycc{bottom:790.152000px;}
.yf{bottom:794.262000px;}
.y105{bottom:800.869500px;}
.y13d{bottom:804.021000px;}
.ycb{bottom:808.086000px;}
.ye{bottom:812.194500px;}
.y3a{bottom:815.215500px;}
.y13c{bottom:818.217000px;}
.y104{bottom:818.802000px;}
.yca{bottom:826.018500px;}
.yd{bottom:830.127000px;}
.y13b{bottom:832.414500px;}
.y39{bottom:833.148000px;}
.y103{bottom:836.734500px;}
.yc9{bottom:843.951000px;}
.y13a{bottom:846.610500px;}
.yc{bottom:848.059500px;}
.y38{bottom:851.082000px;}
.y102{bottom:854.667000px;}
.yc8{bottom:861.883500px;}
.y139{bottom:866.785500px;}
.yb{bottom:869.014500px;}
.y101{bottom:872.599500px;}
.yc7{bottom:879.816000px;}
.y138{bottom:880.983000px;}
.y100{bottom:890.533500px;}
.y137{bottom:895.179000px;}
.yc6{bottom:897.750000px;}
.yff{bottom:908.466000px;}
.y136{bottom:909.376500px;}
.ya{bottom:911.193000px;}
.yc5{bottom:915.682500px;}
.yfe{bottom:926.398500px;}
.y9{bottom:929.125500px;}
.y135{bottom:931.825500px;}
.yc3{bottom:933.615000px;}
.yc4{bottom:939.037500px;}
.yfd{bottom:944.331000px;}
.y176{bottom:945.078000px;}
.y8{bottom:947.059500px;}
.yc2{bottom:951.547500px;}
.y175{bottom:959.275500px;}
.y134{bottom:961.482000px;}
.yfc{bottom:962.263500px;}
.yc1{bottom:969.480000px;}
.y174{bottom:973.471500px;}
.y133{bottom:979.414500px;}
.yfb{bottom:980.196000px;}
.y7{bottom:984.468000px;}
.yc0{bottom:987.412500px;}
.y173{bottom:987.669000px;}
.y132{bottom:997.348500px;}
.yfa{bottom:998.130000px;}
.y172{bottom:1001.865000px;}
.y6{bottom:1002.402000px;}
.ybf{bottom:1005.346500px;}
.y5{bottom:1007.824500px;}
.y131{bottom:1015.281000px;}
.yf9{bottom:1016.062500px;}
.y171{bottom:1022.040000px;}
.ybe{bottom:1023.279000px;}
.y130{bottom:1033.213500px;}
.yf8{bottom:1033.995000px;}
.y170{bottom:1036.236000px;}
.y4{bottom:1039.875000px;}
.y16f{bottom:1050.433500px;}
.y12f{bottom:1051.146000px;}
.yf7{bottom:1051.927500px;}
.y3{bottom:1058.371500px;}
.y16e{bottom:1064.629500px;}
.y12e{bottom:1069.078500px;}
.yf6{bottom:1069.860000px;}
.ybd{bottom:1071.205500px;}
.y16d{bottom:1078.827000px;}
.y12d{bottom:1087.011000px;}
.yf5{bottom:1087.792500px;}
.ybc{bottom:1089.138000px;}
.y16c{bottom:1099.000500px;}
.y12c{bottom:1104.945000px;}
.y2{bottom:1105.201500px;}
.yf4{bottom:1105.726500px;}
.ybb{bottom:1107.669000px;}
.y16b{bottom:1113.198000px;}
.y12b{bottom:1122.877500px;}
.yf3{bottom:1123.659000px;}
.yba{bottom:1126.200000px;}
.y16a{bottom:1127.394000px;}
.y1{bottom:1135.089000px;}
.yf2{bottom:1141.591500px;}
.yb9{bottom:1146.598500px;}
.hb{height:23.235833px;}
.hc{height:23.286345px;}
.h14{height:26.420815px;}
.h16{height:27.783619px;}
.h4{height:31.005515px;}
.h18{height:33.235317px;}
.h11{height:34.205569px;}
.h12{height:34.264040px;}
.h13{height:35.435065px;}
.h17{height:35.482885px;}
.h9{height:43.779300px;}
.ha{height:43.837673px;}
.hf{height:43.853293px;}
.h5{height:44.293720px;}
.h7{height:44.353495px;}
.hd{height:45.182430px;}
.h15{height:49.473619px;}
.h3{height:52.695515px;}
.h6{height:52.701515px;}
.he{height:58.471058px;}
.h10{height:65.208932px;}
.h2{height:70.870129px;}
.h8{height:378.844398px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:673.500987px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:13.672089px;}
.x2d{left:23.606249px;}
.x19{left:40.965773px;}
.x1a{left:68.074245px;}
.x21{left:85.689139px;}
.x30{left:88.348070px;}
.x5{left:105.954000px;}
.x16{left:109.699510px;}
.x4e{left:112.945500px;}
.x3{left:117.006000px;}
.x28{left:118.487303px;}
.x11{left:121.243500px;}
.x6{left:123.654000px;}
.x38{left:133.956000px;}
.x48{left:135.753000px;}
.x52{left:139.989000px;}
.x4f{left:141.184500px;}
.x44{left:142.714500px;}
.x4{left:148.534500px;}
.x39{left:152.151000px;}
.x3f{left:157.354500px;}
.x1e{left:162.720976px;}
.x3e{left:164.161500px;}
.x45{left:165.232500px;}
.x1{left:167.307000px;}
.x35{left:169.687517px;}
.x49{left:204.039000px;}
.x1c{left:213.366953px;}
.x4a{left:216.735000px;}
.x4c{left:219.660000px;}
.x26{left:222.831065px;}
.xb{left:232.015500px;}
.x7{left:236.032500px;}
.x40{left:237.595500px;}
.x4d{left:255.637500px;}
.xc{left:258.934500px;}
.x41{left:261.240000px;}
.x50{left:263.164500px;}
.x2{left:266.008500px;}
.x1d{left:278.647577px;}
.x2a{left:283.109530px;}
.x22{left:291.640560px;}
.x2e{left:299.119243px;}
.x33{left:308.955185px;}
.xd{left:320.115000px;}
.x29{left:331.882329px;}
.x4b{left:345.181500px;}
.xf{left:348.874500px;}
.xe{left:349.942500px;}
.x53{left:351.963000px;}
.x46{left:370.983000px;}
.x42{left:374.292000px;}
.x51{left:377.394000px;}
.x10{left:384.517500px;}
.x8{left:389.571000px;}
.x2b{left:394.995116px;}
.x43{left:400.519500px;}
.x47{left:428.605500px;}
.x34{left:431.560684px;}
.x24{left:436.359389px;}
.x25{left:457.069587px;}
.x20{left:460.002129px;}
.x12{left:461.775000px;}
.x2c{left:469.817024px;}
.x13{left:477.091500px;}
.x23{left:478.151616px;}
.x14{left:489.804000px;}
.x54{left:496.734000px;}
.x1f{left:497.956796px;}
.x15{left:512.887500px;}
.x3a{left:536.851500px;}
.x3b{left:545.856000px;}
.x17{left:549.458682px;}
.x2f{left:554.278434px;}
.x27{left:557.119772px;}
.x32{left:558.824575px;}
.x18{left:576.567154px;}
.x1b{left:578.117613px;}
.x31{left:586.452205px;}
.x3c{left:614.964000px;}
.x36{left:621.137578px;}
.x3d{left:623.968500px;}
.x9{left:653.535000px;}
.xa{left:671.235000px;}
.x55{left:695.814000px;}
@media print{
.v3{vertical-align:-52.084186pt;}
.v4{vertical-align:-13.819271pt;}
.v5{vertical-align:-2.569287pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.247227pt;}
.v6{vertical-align:2.344786pt;}
.v7{vertical-align:14.118606pt;}
.v1{vertical-align:19.280000pt;}
.lsa{letter-spacing:-0.152910pt;}
.lsc{letter-spacing:-0.144678pt;}
.ls12{letter-spacing:-0.143182pt;}
.lsb{letter-spacing:-0.119734pt;}
.ls9{letter-spacing:-0.093043pt;}
.ls11{letter-spacing:-0.083315pt;}
.lsd{letter-spacing:-0.011125pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000501pt;}
.ls13{letter-spacing:0.001995pt;}
.ls1{letter-spacing:0.029933pt;}
.ls8{letter-spacing:0.065854pt;}
.ls10{letter-spacing:0.079074pt;}
.lse{letter-spacing:0.119734pt;}
.lsf{letter-spacing:0.122478pt;}
.ls19{letter-spacing:2.108364pt;}
.ls14{letter-spacing:11.806612pt;}
.ls15{letter-spacing:11.808479pt;}
.ls1a{letter-spacing:16.213226pt;}
.ls3{letter-spacing:59.455754pt;}
.ls7{letter-spacing:69.290925pt;}
.ls5{letter-spacing:95.033683pt;}
.ls18{letter-spacing:139.927132pt;}
.ls17{letter-spacing:160.540401pt;}
.ls6{letter-spacing:205.388299pt;}
.ls2{letter-spacing:329.347663pt;}
.ls4{letter-spacing:355.155277pt;}
.ws8{word-spacing:-14.771215pt;}
.wsac{word-spacing:-11.817002pt;}
.ws95{word-spacing:-11.561995pt;}
.ws1{word-spacing:-10.339821pt;}
.ws93{word-spacing:-9.453631pt;}
.ws3b{word-spacing:-9.114732pt;}
.ws5e{word-spacing:-3.188032pt;}
.ws46{word-spacing:-3.134898pt;}
.ws27{word-spacing:-2.975497pt;}
.ws35{word-spacing:-2.869229pt;}
.ws1b{word-spacing:-2.709827pt;}
.ws83{word-spacing:-2.603559pt;}
.wsb5{word-spacing:-2.507925pt;}
.ws45{word-spacing:-2.497292pt;}
.ws6f{word-spacing:-2.391024pt;}
.ws8d{word-spacing:-2.295389pt;}
.ws71{word-spacing:-2.072221pt;}
.ws9d{word-spacing:-2.040346pt;}
.ws77{word-spacing:-2.019087pt;}
.wsb9{word-spacing:-1.955331pt;}
.ws7e{word-spacing:-1.912819pt;}
.ws84{word-spacing:-1.700284pt;}
.ws4a{word-spacing:-1.647150pt;}
.ws62{word-spacing:-1.487748pt;}
.wsbb{word-spacing:-1.445245pt;}
.wsa9{word-spacing:-1.402738pt;}
.ws2d{word-spacing:-1.328347pt;}
.ws9b{word-spacing:-1.317723pt;}
.ws4c{word-spacing:-1.222079pt;}
.ws76{word-spacing:-1.168945pt;}
.wsa7{word-spacing:-1.105187pt;}
.ws78{word-spacing:-1.062677pt;}
.ws7c{word-spacing:-1.009543pt;}
.ws9a{word-spacing:-0.977666pt;}
.ws29{word-spacing:-0.903276pt;}
.ws1f{word-spacing:-0.690740pt;}
.wsb8{word-spacing:-0.510086pt;}
.wsb7{word-spacing:-0.467579pt;}
.ws73{word-spacing:-0.425071pt;}
.ws30{word-spacing:-0.371937pt;}
.ws26{word-spacing:-0.318803pt;}
.wsa{word-spacing:-0.265669pt;}
.ws51{word-spacing:-0.212535pt;}
.ws9c{word-spacing:-0.170029pt;}
.ws10{word-spacing:-0.159402pt;}
.ws3d{word-spacing:-0.157500pt;}
.wsbc{word-spacing:-0.127522pt;}
.ws3f{word-spacing:-0.114156pt;}
.ws11{word-spacing:-0.106268pt;}
.ws8e{word-spacing:-0.085014pt;}
.wse{word-spacing:-0.053134pt;}
.ws97{word-spacing:-0.042507pt;}
.ws75{word-spacing:-0.037194pt;}
.ws40{word-spacing:-0.035082pt;}
.ws3e{word-spacing:-0.035022pt;}
.ws39{word-spacing:-0.027539pt;}
.ws61{word-spacing:-0.004733pt;}
.ws60{word-spacing:-0.000571pt;}
.ws0{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.042507pt;}
.ws3{word-spacing:0.047619pt;}
.ws41{word-spacing:0.048293pt;}
.ws15{word-spacing:0.053134pt;}
.wsb4{word-spacing:0.085014pt;}
.ws20{word-spacing:0.106268pt;}
.ws42{word-spacing:0.108159pt;}
.wsad{word-spacing:0.127522pt;}
.wsc{word-spacing:0.159402pt;}
.ws9e{word-spacing:0.170029pt;}
.ws18{word-spacing:0.212535pt;}
.ws52{word-spacing:0.259397pt;}
.ws2{word-spacing:0.265669pt;}
.ws4{word-spacing:0.318803pt;}
.ws34{word-spacing:0.371937pt;}
.ws53{word-spacing:0.425071pt;}
.wsbf{word-spacing:0.467579pt;}
.ws6b{word-spacing:0.531339pt;}
.ws2e{word-spacing:0.584473pt;}
.ws4f{word-spacing:0.743874pt;}
.ws5c{word-spacing:1.222079pt;}
.ws7b{word-spacing:1.328347pt;}
.wsb6{word-spacing:1.360230pt;}
.wsc1{word-spacing:1.398964pt;}
.wsc2{word-spacing:1.402738pt;}
.ws72{word-spacing:1.487748pt;}
.ws1a{word-spacing:1.540882pt;}
.ws74{word-spacing:1.647150pt;}
.ws81{word-spacing:1.700284pt;}
.ws2c{word-spacing:1.912819pt;}
.wsb3{word-spacing:1.955331pt;}
.wsb2{word-spacing:1.997838pt;}
.wsb{word-spacing:2.019087pt;}
.ws69{word-spacing:2.072221pt;}
.wsaa{word-spacing:2.082853pt;}
.ws2a{word-spacing:2.231622pt;}
.ws2b{word-spacing:2.284756pt;}
.ws44{word-spacing:2.337890pt;}
.ws43{word-spacing:2.391024pt;}
.ws63{word-spacing:2.444158pt;}
.ws86{word-spacing:2.497292pt;}
.ws8a{word-spacing:2.550426pt;}
.ws25{word-spacing:2.603559pt;}
.ws13{word-spacing:2.656693pt;}
.ws50{word-spacing:2.709827pt;}
.ws58{word-spacing:2.762961pt;}
.ws31{word-spacing:2.816095pt;}
.ws48{word-spacing:2.869229pt;}
.ws21{word-spacing:2.922363pt;}
.ws6c{word-spacing:2.975497pt;}
.ws14{word-spacing:3.028630pt;}
.ws80{word-spacing:3.081764pt;}
.ws82{word-spacing:3.188032pt;}
.wsb1{word-spacing:3.230547pt;}
.ws7f{word-spacing:3.294300pt;}
.ws12{word-spacing:3.400567pt;}
.ws8f{word-spacing:3.443083pt;}
.ws5d{word-spacing:3.453701pt;}
.ws5{word-spacing:3.502112pt;}
.ws49{word-spacing:3.506835pt;}
.ws5b{word-spacing:3.719371pt;}
.ws47{word-spacing:3.772505pt;}
.ws4d{word-spacing:3.878772pt;}
.ws98{word-spacing:3.953170pt;}
.ws24{word-spacing:4.144442pt;}
.ws64{word-spacing:4.197575pt;}
.ws65{word-spacing:4.250709pt;}
.ws70{word-spacing:4.303843pt;}
.ws6d{word-spacing:4.356977pt;}
.wsa0{word-spacing:4.378242pt;}
.ws4e{word-spacing:4.410111pt;}
.wsa4{word-spacing:4.419300pt;}
.wsa5{word-spacing:4.420749pt;}
.ws59{word-spacing:4.463245pt;}
.wsc0{word-spacing:4.548270pt;}
.ws89{word-spacing:4.569513pt;}
.wsab{word-spacing:4.590778pt;}
.ws7a{word-spacing:4.675780pt;}
.ws55{word-spacing:5.100851pt;}
.ws9f{word-spacing:5.270893pt;}
.ws33{word-spacing:5.313387pt;}
.wsb0{word-spacing:5.398414pt;}
.ws6e{word-spacing:5.419654pt;}
.ws67{word-spacing:5.738458pt;}
.ws56{word-spacing:5.844725pt;}
.wsf{word-spacing:6.057261pt;}
.ws16{word-spacing:6.110395pt;}
.ws2f{word-spacing:6.163529pt;}
.wsa6{word-spacing:6.206051pt;}
.ws8c{word-spacing:6.216662pt;}
.ws68{word-spacing:6.322930pt;}
.ws36{word-spacing:6.429198pt;}
.wsba{word-spacing:6.461094pt;}
.ws32{word-spacing:6.588599pt;}
.ws85{word-spacing:6.641733pt;}
.ws22{word-spacing:6.694867pt;}
.ws8b{word-spacing:6.801135pt;}
.wsbe{word-spacing:6.886166pt;}
.ws19{word-spacing:6.907403pt;}
.ws90{word-spacing:7.013688pt;}
.wsa3{word-spacing:7.056195pt;}
.ws79{word-spacing:7.066804pt;}
.ws6{word-spacing:7.089600pt;}
.wsa8{word-spacing:7.311238pt;}
.ws37{word-spacing:7.385607pt;}
.ws4b{word-spacing:7.491875pt;}
.ws28{word-spacing:7.545009pt;}
.ws6a{word-spacing:7.704411pt;}
.wsd{word-spacing:7.810678pt;}
.ws99{word-spacing:7.863832pt;}
.ws66{word-spacing:7.970080pt;}
.wsa2{word-spacing:8.288904pt;}
.wsa1{word-spacing:8.331411pt;}
.ws7d{word-spacing:8.342017pt;}
.ws5a{word-spacing:8.554553pt;}
.ws96{word-spacing:8.713976pt;}
.ws38{word-spacing:8.767088pt;}
.ws94{word-spacing:8.880905pt;}
.ws87{word-spacing:9.776631pt;}
.ws9{word-spacing:10.042301pt;}
.ws23{word-spacing:10.254836pt;}
.ws91{word-spacing:10.286742pt;}
.ws92{word-spacing:10.329250pt;}
.ws54{word-spacing:10.626773pt;}
.wsaf{word-spacing:11.391930pt;}
.wsae{word-spacing:11.434437pt;}
.ws57{word-spacing:11.636317pt;}
.ws1e{word-spacing:12.805262pt;}
.ws1d{word-spacing:13.761671pt;}
.ws88{word-spacing:14.346144pt;}
.ws17{word-spacing:22.369358pt;}
.ws1c{word-spacing:35.493423pt;}
.ws3a{word-spacing:43.363577pt;}
.ws7{word-spacing:45.107317pt;}
.ws5f{word-spacing:86.196770pt;}
.ws3c{word-spacing:456.619660pt;}
._24{margin-left:-7.608789pt;}
._4{margin-left:-6.482332pt;}
._5{margin-left:-5.313387pt;}
._3{margin-left:-3.555764pt;}
._8{margin-left:-2.656693pt;}
._0{margin-left:-1.700288pt;}
._14{width:0.903276pt;}
._2{width:1.848274pt;}
._1{width:3.400576pt;}
._22{width:4.548270pt;}
._21{width:6.242276pt;}
._23{width:9.946685pt;}
._25{width:12.813369pt;}
._16{width:13.814814pt;}
._b{width:15.355696pt;}
._10{width:17.333052pt;}
._6{width:18.375836pt;}
._13{width:19.606401pt;}
._d{width:20.828480pt;}
._7{width:22.581893pt;}
._1e{width:23.963378pt;}
._f{width:25.026060pt;}
._c{width:25.990951pt;}
._9{width:27.576481pt;}
._12{width:29.500716pt;}
._a{width:31.189580pt;}
._15{width:34.058809pt;}
._1c{width:35.227758pt;}
._20{width:36.131029pt;}
._1d{width:37.087439pt;}
._e{width:38.575187pt;}
._1f{width:39.903534pt;}
._11{width:44.366779pt;}
._1a{width:65.881747pt;}
._1b{width:69.244991pt;}
._19{width:179.129570pt;}
._18{width:187.306562pt;}
._17{width:208.000763pt;}
.fs5{font-size:27.538765pt;}
.fs6{font-size:27.598632pt;}
.fsb{font-size:34.005867pt;}
.fs8{font-size:35.022125pt;}
.fs9{font-size:35.081992pt;}
.fs2{font-size:37.193600pt;}
.fsa{font-size:42.507200pt;}
.fs3{font-size:44.900160pt;}
.fs4{font-size:44.960027pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:59.866880pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:17.316495pt;}
.y5a{bottom:18.723367pt;}
.y59{bottom:32.193415pt;}
.y76{bottom:34.812591pt;}
.y70{bottom:54.763228pt;}
.y6c{bottom:60.330848pt;}
.y80{bottom:65.510581pt;}
.y7f{bottom:75.987285pt;}
.y7e{bottom:86.463989pt;}
.y37{bottom:93.160000pt;}
.ya5{bottom:94.488000pt;}
.y7d{bottom:96.940693pt;}
.y75{bottom:100.545178pt;}
.y72{bottom:104.031176pt;}
.y36{bottom:109.100000pt;}
.ya4{bottom:110.428000pt;}
.y12a{bottom:110.980000pt;}
.y169{bottom:111.613333pt;}
.y5f{bottom:112.998736pt;}
.y74{bottom:114.015226pt;}
.y60{bottom:114.464227pt;}
.y5d{bottom:114.751089pt;}
.y168{bottom:124.233333pt;}
.y35{bottom:125.040000pt;}
.ya3{bottom:126.368000pt;}
.y129{bottom:126.920000pt;}
.yf1{bottom:128.224000pt;}
.y68{bottom:129.250099pt;}
.y5b{bottom:130.497326pt;}
.y167{bottom:136.852000pt;}
.y6d{bottom:138.142826pt;}
.y34{bottom:140.980000pt;}
.ya2{bottom:142.309333pt;}
.y128{bottom:142.860000pt;}
.y6a{bottom:144.098333pt;}
.yb8{bottom:144.112000pt;}
.y166{bottom:149.472000pt;}
.y33{bottom:156.921333pt;}
.ya1{bottom:158.249333pt;}
.y127{bottom:158.800000pt;}
.yb7{bottom:160.052000pt;}
.yf0{bottom:160.390667pt;}
.y165{bottom:167.404000pt;}
.y61{bottom:170.801456pt;}
.y63{bottom:171.668278pt;}
.y32{bottom:172.861333pt;}
.ya0{bottom:174.189333pt;}
.y126{bottom:174.741333pt;}
.yef{bottom:176.330667pt;}
.y164{bottom:180.024000pt;}
.y5c{bottom:187.639016pt;}
.y31{bottom:188.801333pt;}
.y5e{bottom:189.316536pt;}
.y9f{bottom:190.129333pt;}
.y125{bottom:190.681333pt;}
.yb6{bottom:191.952000pt;}
.yee{bottom:192.270667pt;}
.y163{bottom:192.642667pt;}
.y7c{bottom:201.869872pt;}
.y69{bottom:204.682368pt;}
.y30{bottom:204.741333pt;}
.y162{bottom:205.262667pt;}
.y73{bottom:206.004429pt;}
.y9e{bottom:206.069333pt;}
.y124{bottom:207.316000pt;}
.yb5{bottom:207.892000pt;}
.yed{bottom:208.210667pt;}
.y6b{bottom:213.874429pt;}
.y71{bottom:214.130110pt;}
.y161{bottom:217.881333pt;}
.y78{bottom:220.372480pt;}
.y2f{bottom:220.681333pt;}
.y9d{bottom:222.009333pt;}
.yb4{bottom:223.832000pt;}
.yec{bottom:224.150667pt;}
.y160{bottom:230.501333pt;}
.y77{bottom:230.849184pt;}
.y7b{bottom:230.967670pt;}
.y123{bottom:233.677333pt;}
.y2e{bottom:236.621333pt;}
.y9c{bottom:237.950667pt;}
.yb3{bottom:239.772000pt;}
.yeb{bottom:240.092000pt;}
.y7a{bottom:241.444374pt;}
.y67{bottom:242.803851pt;}
.y6e{bottom:244.737053pt;}
.y62{bottom:247.399882pt;}
.y15f{bottom:248.433333pt;}
.y122{bottom:249.617333pt;}
.y79{bottom:251.921078pt;}
.y2d{bottom:252.562667pt;}
.y9b{bottom:253.890667pt;}
.y65{bottom:254.870769pt;}
.yb2{bottom:255.713333pt;}
.yea{bottom:256.032000pt;}
.y15e{bottom:261.053333pt;}
.y121{bottom:265.557333pt;}
.y64{bottom:268.340817pt;}
.y2c{bottom:268.502667pt;}
.y99{bottom:269.830667pt;}
.yb1{bottom:271.653333pt;}
.ye9{bottom:271.972000pt;}
.y58{bottom:272.531499pt;}
.y15d{bottom:273.672000pt;}
.y9a{bottom:274.650667pt;}
.y120{bottom:281.497333pt;}
.y2b{bottom:284.442667pt;}
.y98{bottom:285.770667pt;}
.y57{bottom:286.001547pt;}
.y15c{bottom:286.292000pt;}
.yb0{bottom:287.593333pt;}
.ye8{bottom:287.912000pt;}
.y11f{bottom:297.437333pt;}
.y54{bottom:300.382667pt;}
.y97{bottom:301.710667pt;}
.y2a{bottom:303.068000pt;}
.yaf{bottom:303.533333pt;}
.ye7{bottom:303.852000pt;}
.y15b{bottom:304.224000pt;}
.y55{bottom:305.202667pt;}
.y11e{bottom:313.378667pt;}
.y53{bottom:316.322667pt;}
.y15a{bottom:316.844000pt;}
.y96{bottom:317.650667pt;}
.y29{bottom:319.009333pt;}
.yae{bottom:319.473333pt;}
.ye6{bottom:319.792000pt;}
.y6f{bottom:325.600994pt;}
.y11d{bottom:329.318667pt;}
.y159{bottom:329.462667pt;}
.y52{bottom:332.262667pt;}
.y95{bottom:333.592000pt;}
.yad{bottom:335.413333pt;}
.ye5{bottom:335.733333pt;}
.y158{bottom:342.082667pt;}
.y11c{bottom:345.258667pt;}
.y51{bottom:348.204000pt;}
.y94{bottom:349.532000pt;}
.yac{bottom:351.354667pt;}
.ye4{bottom:351.673333pt;}
.y157{bottom:354.701333pt;}
.y28{bottom:355.325333pt;}
.y11b{bottom:361.198667pt;}
.y50{bottom:364.144000pt;}
.y93{bottom:365.472000pt;}
.yab{bottom:367.294667pt;}
.ye3{bottom:367.613333pt;}
.y27{bottom:371.265333pt;}
.y156{bottom:372.634667pt;}
.y11a{bottom:377.138667pt;}
.y4f{bottom:380.084000pt;}
.y92{bottom:381.412000pt;}
.yaa{bottom:383.234667pt;}
.ye2{bottom:383.553333pt;}
.y155{bottom:385.253333pt;}
.y26{bottom:387.205333pt;}
.y119{bottom:393.078667pt;}
.y4e{bottom:396.024000pt;}
.y91{bottom:397.352000pt;}
.y154{bottom:397.873333pt;}
.ya9{bottom:399.174667pt;}
.ye1{bottom:399.493333pt;}
.y25{bottom:403.146667pt;}
.y118{bottom:409.020000pt;}
.y153{bottom:410.492000pt;}
.y4d{bottom:411.964000pt;}
.y90{bottom:415.094667pt;}
.ya8{bottom:415.114667pt;}
.ye0{bottom:415.433333pt;}
.y24{bottom:419.086667pt;}
.y117{bottom:424.960000pt;}
.y4c{bottom:427.904000pt;}
.y152{bottom:428.425333pt;}
.y8f{bottom:431.036000pt;}
.ya7{bottom:431.054667pt;}
.yde{bottom:431.374667pt;}
.y23{bottom:435.026667pt;}
.ydf{bottom:436.194667pt;}
.y116{bottom:440.900000pt;}
.y151{bottom:441.045333pt;}
.y4b{bottom:443.845333pt;}
.ya6{bottom:446.996000pt;}
.ydd{bottom:447.314667pt;}
.y22{bottom:450.966667pt;}
.y150{bottom:453.664000pt;}
.y115{bottom:456.840000pt;}
.y4a{bottom:459.785333pt;}
.y8e{bottom:462.936000pt;}
.ydc{bottom:463.254667pt;}
.y21{bottom:466.906667pt;}
.y14f{bottom:471.597333pt;}
.y114{bottom:472.780000pt;}
.y49{bottom:475.725333pt;}
.y8d{bottom:478.876000pt;}
.ydb{bottom:479.194667pt;}
.y20{bottom:482.846667pt;}
.y14e{bottom:484.216000pt;}
.y113{bottom:488.720000pt;}
.y48{bottom:491.665333pt;}
.y8c{bottom:494.816000pt;}
.yda{bottom:495.134667pt;}
.y14d{bottom:496.836000pt;}
.y1f{bottom:498.788000pt;}
.y112{bottom:504.661333pt;}
.y47{bottom:507.605333pt;}
.y14c{bottom:509.454667pt;}
.y8b{bottom:510.756000pt;}
.yd9{bottom:511.074667pt;}
.y1d{bottom:514.728000pt;}
.y1e{bottom:519.548000pt;}
.y111{bottom:520.601333pt;}
.y46{bottom:523.545333pt;}
.y8a{bottom:526.696000pt;}
.yd8{bottom:527.016000pt;}
.y14b{bottom:527.388000pt;}
.y1c{bottom:530.668000pt;}
.y110{bottom:536.541333pt;}
.y45{bottom:539.486667pt;}
.y14a{bottom:540.006667pt;}
.y89{bottom:542.637333pt;}
.yd7{bottom:542.956000pt;}
.y1b{bottom:546.608000pt;}
.y10f{bottom:552.481333pt;}
.y149{bottom:552.626667pt;}
.y44{bottom:555.426667pt;}
.y88{bottom:558.577333pt;}
.yd6{bottom:558.896000pt;}
.y1a{bottom:562.548000pt;}
.y148{bottom:565.245333pt;}
.y10e{bottom:568.421333pt;}
.y43{bottom:571.366667pt;}
.y87{bottom:574.517333pt;}
.yd5{bottom:574.836000pt;}
.y147{bottom:577.865333pt;}
.y19{bottom:578.488000pt;}
.y10d{bottom:584.361333pt;}
.y42{bottom:587.306667pt;}
.y86{bottom:590.457333pt;}
.y146{bottom:590.484000pt;}
.yd4{bottom:590.776000pt;}
.y17{bottom:594.429333pt;}
.y18{bottom:599.249333pt;}
.y10c{bottom:600.302667pt;}
.y41{bottom:603.246667pt;}
.y85{bottom:606.397333pt;}
.yd2{bottom:606.716000pt;}
.y145{bottom:608.417333pt;}
.y16{bottom:610.369333pt;}
.yd3{bottom:611.537333pt;}
.y10b{bottom:616.242667pt;}
.y40{bottom:619.186667pt;}
.y144{bottom:621.036000pt;}
.y84{bottom:622.337333pt;}
.yd1{bottom:622.657333pt;}
.y15{bottom:626.309333pt;}
.y10a{bottom:632.182667pt;}
.y143{bottom:633.656000pt;}
.y3f{bottom:635.128000pt;}
.y83{bottom:638.278667pt;}
.yd0{bottom:638.597333pt;}
.y14{bottom:642.249333pt;}
.y142{bottom:646.274667pt;}
.y109{bottom:648.122667pt;}
.y3e{bottom:651.068000pt;}
.y82{bottom:654.218667pt;}
.ycf{bottom:654.537333pt;}
.y13{bottom:658.189333pt;}
.y108{bottom:664.062667pt;}
.y141{bottom:664.208000pt;}
.y3d{bottom:667.008000pt;}
.yce{bottom:670.477333pt;}
.y12{bottom:674.129333pt;}
.y140{bottom:676.826667pt;}
.y81{bottom:679.789333pt;}
.y107{bottom:680.002667pt;}
.y3c{bottom:683.642667pt;}
.ycd{bottom:686.417333pt;}
.y13f{bottom:689.446667pt;}
.y10{bottom:690.070667pt;}
.y56{bottom:691.280000pt;}
.y11{bottom:694.890667pt;}
.y106{bottom:695.944000pt;}
.y3b{bottom:699.582667pt;}
.y13e{bottom:702.065333pt;}
.ycc{bottom:702.357333pt;}
.yf{bottom:706.010667pt;}
.y105{bottom:711.884000pt;}
.y13d{bottom:714.685333pt;}
.ycb{bottom:718.298667pt;}
.ye{bottom:721.950667pt;}
.y3a{bottom:724.636000pt;}
.y13c{bottom:727.304000pt;}
.y104{bottom:727.824000pt;}
.yca{bottom:734.238667pt;}
.yd{bottom:737.890667pt;}
.y13b{bottom:739.924000pt;}
.y39{bottom:740.576000pt;}
.y103{bottom:743.764000pt;}
.yc9{bottom:750.178667pt;}
.y13a{bottom:752.542667pt;}
.yc{bottom:753.830667pt;}
.y38{bottom:756.517333pt;}
.y102{bottom:759.704000pt;}
.yc8{bottom:766.118667pt;}
.y139{bottom:770.476000pt;}
.yb{bottom:772.457333pt;}
.y101{bottom:775.644000pt;}
.yc7{bottom:782.058667pt;}
.y138{bottom:783.096000pt;}
.y100{bottom:791.585333pt;}
.y137{bottom:795.714667pt;}
.yc6{bottom:798.000000pt;}
.yff{bottom:807.525333pt;}
.y136{bottom:808.334667pt;}
.ya{bottom:809.949333pt;}
.yc5{bottom:813.940000pt;}
.yfe{bottom:823.465333pt;}
.y9{bottom:825.889333pt;}
.y135{bottom:828.289333pt;}
.yc3{bottom:829.880000pt;}
.yc4{bottom:834.700000pt;}
.yfd{bottom:839.405333pt;}
.y176{bottom:840.069333pt;}
.y8{bottom:841.830667pt;}
.yc2{bottom:845.820000pt;}
.y175{bottom:852.689333pt;}
.y134{bottom:854.650667pt;}
.yfc{bottom:855.345333pt;}
.yc1{bottom:861.760000pt;}
.y174{bottom:865.308000pt;}
.y133{bottom:870.590667pt;}
.yfb{bottom:871.285333pt;}
.y7{bottom:875.082667pt;}
.yc0{bottom:877.700000pt;}
.y173{bottom:877.928000pt;}
.y132{bottom:886.532000pt;}
.yfa{bottom:887.226667pt;}
.y172{bottom:890.546667pt;}
.y6{bottom:891.024000pt;}
.ybf{bottom:893.641333pt;}
.y5{bottom:895.844000pt;}
.y131{bottom:902.472000pt;}
.yf9{bottom:903.166667pt;}
.y171{bottom:908.480000pt;}
.ybe{bottom:909.581333pt;}
.y130{bottom:918.412000pt;}
.yf8{bottom:919.106667pt;}
.y170{bottom:921.098667pt;}
.y4{bottom:924.333333pt;}
.y16f{bottom:933.718667pt;}
.y12f{bottom:934.352000pt;}
.yf7{bottom:935.046667pt;}
.y3{bottom:940.774667pt;}
.y16e{bottom:946.337333pt;}
.y12e{bottom:950.292000pt;}
.yf6{bottom:950.986667pt;}
.ybd{bottom:952.182667pt;}
.y16d{bottom:958.957333pt;}
.y12d{bottom:966.232000pt;}
.yf5{bottom:966.926667pt;}
.ybc{bottom:968.122667pt;}
.y16c{bottom:976.889333pt;}
.y12c{bottom:982.173333pt;}
.y2{bottom:982.401333pt;}
.yf4{bottom:982.868000pt;}
.ybb{bottom:984.594667pt;}
.y16b{bottom:989.509333pt;}
.y12b{bottom:998.113333pt;}
.yf3{bottom:998.808000pt;}
.yba{bottom:1001.066667pt;}
.y16a{bottom:1002.128000pt;}
.y1{bottom:1008.968000pt;}
.yf2{bottom:1014.748000pt;}
.yb9{bottom:1019.198667pt;}
.hb{height:20.654074pt;}
.hc{height:20.698974pt;}
.h14{height:23.485169pt;}
.h16{height:24.696550pt;}
.h4{height:27.560458pt;}
.h18{height:29.542504pt;}
.h11{height:30.404950pt;}
.h12{height:30.456924pt;}
.h13{height:31.497835pt;}
.h17{height:31.540342pt;}
.h9{height:38.914934pt;}
.ha{height:38.966820pt;}
.hf{height:38.980705pt;}
.h5{height:39.372195pt;}
.h7{height:39.425329pt;}
.hd{height:40.162160pt;}
.h15{height:43.976550pt;}
.h3{height:46.840458pt;}
.h6{height:46.845791pt;}
.he{height:51.974274pt;}
.h10{height:57.963495pt;}
.h2{height:62.995670pt;}
.h8{height:336.750576pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:598.667544pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:12.152968pt;}
.x2d{left:20.983333pt;}
.x19{left:36.414021pt;}
.x1a{left:60.510440pt;}
.x21{left:76.168124pt;}
.x30{left:78.531618pt;}
.x5{left:94.181333pt;}
.x16{left:97.510676pt;}
.x4e{left:100.396000pt;}
.x3{left:104.005333pt;}
.x28{left:105.322047pt;}
.x11{left:107.772000pt;}
.x6{left:109.914667pt;}
.x38{left:119.072000pt;}
.x48{left:120.669333pt;}
.x52{left:124.434667pt;}
.x4f{left:125.497333pt;}
.x44{left:126.857333pt;}
.x4{left:132.030667pt;}
.x39{left:135.245333pt;}
.x3f{left:139.870667pt;}
.x1e{left:144.640868pt;}
.x3e{left:145.921333pt;}
.x45{left:146.873333pt;}
.x1{left:148.717333pt;}
.x35{left:150.833348pt;}
.x49{left:181.368000pt;}
.x1c{left:189.659514pt;}
.x4a{left:192.653333pt;}
.x4c{left:195.253333pt;}
.x26{left:198.072058pt;}
.xb{left:206.236000pt;}
.x7{left:209.806667pt;}
.x40{left:211.196000pt;}
.x4d{left:227.233333pt;}
.xc{left:230.164000pt;}
.x41{left:232.213333pt;}
.x50{left:233.924000pt;}
.x2{left:236.452000pt;}
.x1d{left:247.686735pt;}
.x2a{left:251.652916pt;}
.x22{left:259.236054pt;}
.x2e{left:265.883772pt;}
.x33{left:274.626831pt;}
.xd{left:284.546667pt;}
.x29{left:295.006515pt;}
.x4b{left:306.828000pt;}
.xf{left:310.110667pt;}
.xe{left:311.060000pt;}
.x53{left:312.856000pt;}
.x46{left:329.762667pt;}
.x42{left:332.704000pt;}
.x51{left:335.461333pt;}
.x10{left:341.793333pt;}
.x8{left:346.285333pt;}
.x2b{left:351.106770pt;}
.x43{left:356.017333pt;}
.x47{left:380.982667pt;}
.x34{left:383.609497pt;}
.x24{left:387.875012pt;}
.x25{left:406.284078pt;}
.x20{left:408.890781pt;}
.x12{left:410.466667pt;}
.x2c{left:417.615132pt;}
.x13{left:424.081333pt;}
.x23{left:425.023658pt;}
.x14{left:435.381333pt;}
.x54{left:441.541333pt;}
.x1f{left:442.628263pt;}
.x15{left:455.900000pt;}
.x3a{left:477.201333pt;}
.x3b{left:485.205333pt;}
.x17{left:488.407718pt;}
.x2f{left:492.691941pt;}
.x27{left:495.217575pt;}
.x32{left:496.732956pt;}
.x18{left:512.504137pt;}
.x1b{left:513.882322pt;}
.x31{left:521.290849pt;}
.x3c{left:546.634667pt;}
.x36{left:552.122292pt;}
.x3d{left:554.638667pt;}
.x9{left:580.920000pt;}
.xa{left:596.653333pt;}
.x55{left:618.501333pt;}
}




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