
    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_8eaf8c9d49c04d8bfb8e7092.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_fa0f6a8d962406693ecfd0d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b44744b07d59eed8f4f57d18.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_463559cf8ec28c6c09537767.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_95918a8f93012bd2f799cb50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_45b62805bc4cbe811ada8bb9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f3613ba79a8b2726229878fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898200;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_ee1524a9b670a9d25f806d4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.828000;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_5959b622e64053a3c7d0e855.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_683a3662ed59aeb8820bc7a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.704000;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_6a7905e7045cb54e19b9bd17.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.399000;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_c84c8935f0959b06f8833d60.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_5418e692f5a1bffcf5506bc2.woff2')format("woff");}.fff{font-family:fff;line-height:0.052000;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_c71642bce55ab7c447fa721e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921000;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_9585072843296d759d5b3a70.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.733000;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_2e43942b435caffca30e70e4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.733000;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_8b57b4c4c2a13fadfd72791e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958000;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_683a3662ed59aeb8820bc7a3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.704000;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:ff15;src:url('chunks/assets/font_7f14329158965aaf8f430a31.woff2')format("woff");}.ff15{font-family:ff15;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_be748f2a578c20bf2d3c4128.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.m5{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);}
.m8{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);}
.me{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);}
.m18{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);}
.m11{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);}
.mc{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);}
.ma{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);}
.md{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m13{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.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);}
.m9{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);}
.m15{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);}
.m7{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);}
.m3{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);}
.m6{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);}
.m4{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);}
.m16{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);}
.mb{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);}
.m19{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);}
.m14{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);}
.m10{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);}
.m1{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);}
.vd{vertical-align:-14.376000px;}
.v13{vertical-align:-12.094008px;}
.v10{vertical-align:-10.884554px;}
.v1{vertical-align:-6.372000px;}
.vf{vertical-align:-4.133883px;}
.v9{vertical-align:-2.988000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:1.509210px;}
.ve{vertical-align:6.378000px;}
.v6{vertical-align:9.468000px;}
.v3{vertical-align:12.500099px;}
.v2{vertical-align:14.285827px;}
.v11{vertical-align:19.727859px;}
.v4{vertical-align:22.854000px;}
.v5{vertical-align:25.842000px;}
.vb{vertical-align:45.882000px;}
.v8{vertical-align:48.690000px;}
.vc{vertical-align:59.778000px;}
.v7{vertical-align:82.788000px;}
.va{vertical-align:138.030000px;}
.ls0{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000031px;}
.ls36{letter-spacing:0.000378px;}
.ls3f{letter-spacing:0.000532px;}
.ls30{letter-spacing:0.000557px;}
.ls53{letter-spacing:0.000579px;}
.ls49{letter-spacing:0.000710px;}
.ls3e{letter-spacing:0.000992px;}
.ls2f{letter-spacing:0.001002px;}
.ls38{letter-spacing:0.001050px;}
.ls3d{letter-spacing:0.001181px;}
.ls1{letter-spacing:0.001235px;}
.ls2c{letter-spacing:0.001559px;}
.ls39{letter-spacing:0.001663px;}
.ls41{letter-spacing:0.001682px;}
.ls47{letter-spacing:0.001691px;}
.ls4{letter-spacing:0.001749px;}
.ls5{letter-spacing:0.001968px;}
.ls4f{letter-spacing:0.002450px;}
.ls28{letter-spacing:0.002519px;}
.ls1f{letter-spacing:0.002680px;}
.ls48{letter-spacing:0.003106px;}
.ls37{letter-spacing:0.003521px;}
.ls1e{letter-spacing:0.003573px;}
.ls35{letter-spacing:0.004601px;}
.ls17{letter-spacing:0.005418px;}
.ls34{letter-spacing:0.005636px;}
.ls4b{letter-spacing:0.005991px;}
.ls45{letter-spacing:0.006031px;}
.ls4d{letter-spacing:0.006579px;}
.ls51{letter-spacing:0.006710px;}
.ls16{letter-spacing:2.984352px;}
.ls10{letter-spacing:2.990289px;}
.lsd{letter-spacing:5.760188px;}
.ls29{letter-spacing:5.974363px;}
.ls1c{letter-spacing:5.980363px;}
.ls4a{letter-spacing:6.624710px;}
.lsc{letter-spacing:7.970367px;}
.ls44{letter-spacing:9.211002px;}
.ls25{letter-spacing:9.214771px;}
.ls3c{letter-spacing:9.217002px;}
.ls18{letter-spacing:10.158532px;}
.ls4c{letter-spacing:11.046532px;}
.ls52{letter-spacing:11.052532px;}
.ls14{letter-spacing:12.021967px;}
.lsb{letter-spacing:12.283559px;}
.ls26{letter-spacing:12.288780px;}
.ls24{letter-spacing:12.289559px;}
.ls19{letter-spacing:12.291181px;}
.ls27{letter-spacing:12.293092px;}
.ls50{letter-spacing:14.035994px;}
.ls4e{letter-spacing:14.037959px;}
.ls6{letter-spacing:14.041994px;}
.ls54{letter-spacing:14.043959px;}
.ls32{letter-spacing:14.208024px;}
.ls23{letter-spacing:15.272289px;}
.ls1b{letter-spacing:15.276532px;}
.ls13{letter-spacing:15.355559px;}
.ls42{letter-spacing:16.489162px;}
.lsa{letter-spacing:16.497158px;}
.ls2{letter-spacing:17.192352px;}
.ls20{letter-spacing:18.095600px;}
.ls12{letter-spacing:18.350289px;}
.ls11{letter-spacing:18.426780px;}
.ls46{letter-spacing:18.432557px;}
.ls2e{letter-spacing:18.775642px;}
.ls3b{letter-spacing:19.189559px;}
.ls8{letter-spacing:19.569158px;}
.ls31{letter-spacing:20.357781px;}
.ls2d{letter-spacing:21.181794px;}
.ls7{letter-spacing:21.416352px;}
.ls3{letter-spacing:21.422352px;}
.ls21{letter-spacing:22.459534px;}
.ls2a{letter-spacing:22.995809px;}
.lsf{letter-spacing:24.186780px;}
.ls3a{letter-spacing:25.165994px;}
.ls9{letter-spacing:31.081559px;}
.ls1a{letter-spacing:36.475559px;}
.ls22{letter-spacing:39.547559px;}
.ls15{letter-spacing:46.359181px;}
.ls2b{letter-spacing:832.460352px;}
.ls1d{letter-spacing:968.466780px;}
.lse{letter-spacing:1213.938557px;}
.ls33{letter-spacing:1560.020592px;}
.ls40{letter-spacing:1561.451616px;}
.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;}
}
.ws35{word-spacing:-55.293996px;}
.ws10{word-spacing:-39.853855px;}
.ws9{word-spacing:-36.071827px;}
.wsb{word-spacing:-31.633157px;}
.ws27{word-spacing:-28.416048px;}
.ws15{word-spacing:-27.646998px;}
.ws13{word-spacing:-26.872301px;}
.ws1c{word-spacing:-23.779229px;}
.ws11{word-spacing:-17.618976px;}
.ws46{word-spacing:-15.786786px;}
.ws12{word-spacing:-15.359443px;}
.ws3e{word-spacing:-14.208024px;}
.ws14{word-spacing:-11.507478px;}
.ws3b{word-spacing:-11.050667px;}
.ws50{word-spacing:-10.700502px;}
.ws1f{word-spacing:-10.646703px;}
.ws3f{word-spacing:-10.162518px;}
.wse{word-spacing:-10.108719px;}
.ws1a{word-spacing:-9.570735px;}
.ws1b{word-spacing:-9.516937px;}
.ws7{word-spacing:-9.463139px;}
.ws5{word-spacing:-9.355542px;}
.ws6{word-spacing:-9.301743px;}
.ws8{word-spacing:-9.247945px;}
.ws40{word-spacing:-9.236753px;}
.ws33{word-spacing:-9.213867px;}
.ws36{word-spacing:-9.211768px;}
.ws2{word-spacing:-9.194147px;}
.ws1e{word-spacing:-9.140348px;}
.ws26{word-spacing:-9.086550px;}
.wsf{word-spacing:-9.032751px;}
.ws19{word-spacing:-8.978953px;}
.ws4{word-spacing:-8.925155px;}
.ws20{word-spacing:-8.871356px;}
.ws24{word-spacing:-8.817558px;}
.ws42{word-spacing:-8.709961px;}
.ws22{word-spacing:-8.333372px;}
.ws2f{word-spacing:-8.118179px;}
.ws44{word-spacing:-7.902985px;}
.ws30{word-spacing:-7.741590px;}
.ws4f{word-spacing:-7.633993px;}
.ws51{word-spacing:-6.988412px;}
.ws45{word-spacing:-6.880815px;}
.ws21{word-spacing:-6.450428px;}
.ws18{word-spacing:-6.159917px;}
.ws34{word-spacing:-6.141439px;}
.ws16{word-spacing:-5.943773px;}
.ws48{word-spacing:-5.858646px;}
.ws4e{word-spacing:-4.352291px;}
.wsd{word-spacing:-3.222524px;}
.ws49{word-spacing:-3.138543px;}
.ws1d{word-spacing:-3.093408px;}
.ws25{word-spacing:-2.523145px;}
.ws3d{word-spacing:-0.715512px;}
.ws2e{word-spacing:-0.242093px;}
.ws2c{word-spacing:-0.119252px;}
.ws2b{word-spacing:-0.079501px;}
.ws47{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.041843px;}
.ws17{word-spacing:-0.035866px;}
.ws2d{word-spacing:-0.016737px;}
.ws3{word-spacing:-0.006048px;}
.ws39{word-spacing:-0.003900px;}
.ws3a{word-spacing:-0.000183px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.051108px;}
.ws29{word-spacing:0.079501px;}
.ws28{word-spacing:0.278254px;}
.ws41{word-spacing:0.766620px;}
.ws43{word-spacing:1.584348px;}
.ws31{word-spacing:2.125037px;}
.ws1{word-spacing:3.373128px;}
.ws4c{word-spacing:15.122730px;}
.ws3c{word-spacing:15.775394px;}
.ws4a{word-spacing:19.690214px;}
.ws23{word-spacing:20.013005px;}
.ws4b{word-spacing:22.923498px;}
.ws32{word-spacing:23.472480px;}
.ws37{word-spacing:23.478480px;}
.ws4d{word-spacing:42.016550px;}
.wsa{word-spacing:46.962940px;}
.ws55{word-spacing:47.743413px;}
.ws38{word-spacing:96.882119px;}
.ws54{word-spacing:177.932335px;}
.ws59{word-spacing:197.703561px;}
.ws56{word-spacing:249.571800px;}
.ws5a{word-spacing:277.303356px;}
.ws53{word-spacing:420.154882px;}
.ws52{word-spacing:442.260668px;}
.ws58{word-spacing:466.841041px;}
.ws57{word-spacing:491.403145px;}
._29{margin-left:-3115.918105px;}
._24{margin-left:-3114.882527px;}
._1d{margin-left:-3111.098191px;}
._28{margin-left:-3080.954302px;}
._3e{margin-left:-2742.887416px;}
._3a{margin-left:-2659.386935px;}
._26{margin-left:-2402.738409px;}
._11{margin-left:-2384.727286px;}
._32{margin-left:-2247.768088px;}
._3{margin-left:-2203.604594px;}
._17{margin-left:-2170.073685px;}
._31{margin-left:-1971.732517px;}
._38{margin-left:-1916.357824px;}
._2c{margin-left:-1907.047090px;}
._37{margin-left:-1773.496226px;}
._2e{margin-left:-1750.478530px;}
._18{margin-left:-1729.801171px;}
._19{margin-left:-1580.491178px;}
._5{margin-left:-1391.523444px;}
._1f{margin-left:-1342.711390px;}
._1a{margin-left:-1330.175896px;}
._2{margin-left:-1321.980775px;}
._3c{margin-left:-1160.894829px;}
._25{margin-left:-1024.207012px;}
._23{margin-left:-987.608825px;}
._7{margin-left:-949.664124px;}
._d{margin-left:-851.185887px;}
._8{margin-left:-682.642023px;}
._9{margin-left:-570.726773px;}
._b{margin-left:-525.770089px;}
._a{margin-left:-523.654262px;}
._1e{margin-left:-502.963117px;}
._6{margin-left:-493.964748px;}
._2d{margin-left:-397.488717px;}
._3b{margin-left:-370.565875px;}
._2a{margin-left:-239.231042px;}
._20{margin-left:-14.208024px;}
._3d{margin-left:-6.068915px;}
._10{margin-left:-5.029061px;}
._4{margin-left:-3.659328px;}
._1{margin-left:-1.962552px;}
._0{width:1.962552px;}
._16{width:13.671116px;}
._21{width:14.777018px;}
._1b{width:18.049310px;}
._4a{width:19.178236px;}
._2f{width:20.335795px;}
._15{width:22.199593px;}
._f{width:23.914478px;}
._e{width:25.042066px;}
._1c{width:27.652378px;}
._22{width:28.969349px;}
._42{width:30.697556px;}
._2b{width:32.089656px;}
._48{width:34.108562px;}
._44{width:41.184817px;}
._30{width:42.312389px;}
._39{width:43.577741px;}
._36{width:48.956544px;}
._33{width:59.204050px;}
._34{width:89.869138px;}
._35{width:97.279517px;}
._14{width:112.522224px;}
._27{width:129.440406px;}
._13{width:144.756451px;}
._12{width:155.142831px;}
._3f{width:206.025727px;}
._40{width:215.800657px;}
._41{width:225.607337px;}
._45{width:228.918593px;}
._43{width:234.143234px;}
._46{width:239.779681px;}
._47{width:250.676044px;}
._49{width:260.160421px;}
._4c{width:295.108014px;}
._4b{width:307.300951px;}
._c{width:1573.380228px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:14.815836px;}
.fs12{font-size:17.637900px;}
.fs14{font-size:21.165480px;}
.fsc{font-size:22.857324px;}
.fs11{font-size:25.197000px;}
.fs1e{font-size:25.251660px;}
.fs9{font-size:26.122656px;}
.fs17{font-size:28.220640px;}
.fs0{font-size:28.393200px;}
.fsb{font-size:29.387988px;}
.fsf{font-size:29.887800px;}
.fs13{font-size:30.236400px;}
.fs7{font-size:32.653320px;}
.fs6{font-size:35.865600px;}
.fs1d{font-size:36.073800px;}
.fs1f{font-size:36.810000px;}
.fs8{font-size:37.318080px;}
.fs28{font-size:38.338800px;}
.fsd{font-size:39.750600px;}
.fs26{font-size:40.082196px;}
.fs16{font-size:40.315200px;}
.fs27{font-size:40.900200px;}
.fs1c{font-size:41.227200px;}
.fse{font-size:41.842800px;}
.fsa{font-size:41.982840px;}
.fs2a{font-size:42.172680px;}
.fs18{font-size:44.172000px;}
.fs25{font-size:45.808224px;}
.fs29{font-size:46.006560px;}
.fs20{font-size:46.380600px;}
.fs21{font-size:49.080240px;}
.fs3{font-size:51.108000px;}
.fs19{font-size:51.534000px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:56.787000px;}
.fs22{font-size:57.260280px;}
.fs1b{font-size:58.896000px;}
.fs10{font-size:59.775600px;}
.fs24{font-size:65.440320px;}
.fs1a{font-size:66.258000px;}
.fs2{font-size:68.144400px;}
.fs23{font-size:73.620360px;}
.fs1{font-size:98.127600px;}
.y0{bottom:0.000000px;}
.y13{bottom:4.409796px;}
.yf4{bottom:5.644490px;}
.y79{bottom:8.444027px;}
.yc5{bottom:9.674128px;}
.yde{bottom:10.749084px;}
.yc4{bottom:11.787827px;}
.ydd{bottom:13.097650px;}
.y12{bottom:16.855230px;}
.y78{bottom:17.907665px;}
.y14{bottom:24.039142px;}
.y1c{bottom:24.121140px;}
.y7a{bottom:24.226601px;}
.yc3{bottom:26.943195px;}
.ydc{bottom:29.937029px;}
.ye2{bottom:32.998624px;}
.ye3{bottom:39.996204px;}
.yb{bottom:54.570000px;}
.y1d{bottom:68.827127px;}
.y15{bottom:73.208606px;}
.y19{bottom:73.337863px;}
.yec{bottom:75.490542px;}
.y7d{bottom:80.888047px;}
.y7b{bottom:82.024865px;}
.y1a{bottom:84.717326px;}
.y20{bottom:85.464416px;}
.y54{bottom:91.930500px;}
.yc0{bottom:93.155329px;}
.ybf{bottom:95.269028px;}
.ye4{bottom:95.638979px;}
.yd9{bottom:103.506427px;}
.y8c{bottom:105.633000px;}
.yd8{bottom:105.854993px;}
.y53{bottom:108.294000px;}
.yed{bottom:110.984879px;}
.ybe{bottom:112.875999px;}
.ye8{bottom:113.314966px;}
.y1e{bottom:113.380051px;}
.yf3{bottom:116.396297px;}
.y16{bottom:122.378069px;}
.y52{bottom:124.657500px;}
.yd7{bottom:125.418389px;}
.yc1{bottom:126.840543px;}
.y8b{bottom:134.026500px;}
.y80{bottom:137.753968px;}
.y7c{bottom:139.823129px;}
.y51{bottom:141.021000px;}
.yc2{bottom:143.370174px;}
.y7e{bottom:145.295603px;}
.yee{bottom:146.479217px;}
.y7f{bottom:146.535768px;}
.y8a{bottom:149.419500px;}
.ye5{bottom:151.281753px;}
.yda{bottom:153.715938px;}
.y71{bottom:155.018676px;}
.y50{bottom:157.384500px;}
.y1f{bottom:158.009507px;}
.y72{bottom:162.503957px;}
.y17{bottom:166.084259px;}
.ydb{bottom:172.082285px;}
.yb1{bottom:173.485875px;}
.y4e{bottom:173.748000px;}
.y4f{bottom:177.223500px;}
.y81{bottom:179.933746px;}
.yef{bottom:181.973554px;}
.y4d{bottom:190.113000px;}
.yca{bottom:192.763026px;}
.y18{bottom:193.400627px;}
.y21{bottom:197.163552px;}
.y1b{bottom:200.192773px;}
.y4b{bottom:206.476500px;}
.ye6{bottom:206.924528px;}
.y4c{bottom:209.950500px;}
.yb2{bottom:216.687160px;}
.yf0{bottom:217.467892px;}
.y85{bottom:218.105749px;}
.y75{bottom:219.165404px;}
.y73{bottom:220.302221px;}
.y82{bottom:222.113524px;}
.y4a{bottom:222.840000px;}
.y86{bottom:228.190085px;}
.y49{bottom:239.203500px;}
.ycb{bottom:240.764688px;}
.yb7{bottom:247.199357px;}
.ybb{bottom:247.386282px;}
.yf1{bottom:252.962230px;}
.y48{bottom:255.567000px;}
.yb3{bottom:259.888444px;}
.ye7{bottom:262.567303px;}
.y83{bottom:264.293302px;}
.y47{bottom:271.930500px;}
.yd0{bottom:274.667295px;}
.yd4{bottom:274.874991px;}
.y74{bottom:278.100486px;}
.yeb{bottom:279.354468px;}
.y76{bottom:283.572959px;}
.y77{bottom:284.813124px;}
.y46{bottom:288.294000px;}
.yf2{bottom:288.456567px;}
.ycc{bottom:288.766350px;}
.y6a{bottom:293.296033px;}
.yea{bottom:293.424508px;}
.y6b{bottom:300.781313px;}
.yb4{bottom:303.089729px;}
.y45{bottom:304.657500px;}
.y84{bottom:306.473080px;}
.ye9{bottom:313.882931px;}
.y44{bottom:321.021000px;}
.ye0{bottom:336.180000px;}
.ycd{bottom:336.768012px;}
.y43{bottom:345.987000px;}
.yb5{bottom:346.291014px;}
.y42{bottom:348.352500px;}
.y41{bottom:351.826500px;}
.y6e{bottom:357.442760px;}
.y6c{bottom:358.579578px;}
.yc9{bottom:360.538500px;}
.yc8{bottom:361.248000px;}
.yce{bottom:384.769675px;}
.yb6{bottom:385.172170px;}
.yb0{bottom:385.606500px;}
.y40{bottom:392.047500px;}
.yb9{bottom:394.751750px;}
.ybc{bottom:395.413180px;}
.yba{bottom:397.167406px;}
.ybd{bottom:397.828836px;}
.yb8{bottom:400.549974px;}
.y3e{bottom:408.411000px;}
.y68{bottom:410.404500px;}
.y3f{bottom:411.886500px;}
.y6d{bottom:416.377842px;}
.y6f{bottom:421.850316px;}
.y70{bottom:423.090481px;}
.yf5{bottom:423.792000px;}
.y3c{bottom:424.774500px;}
.y67{bottom:426.768000px;}
.ycf{bottom:427.971171px;}
.y3d{bottom:428.250000px;}
.yc7{bottom:429.238119px;}
.yc6{bottom:431.955732px;}
.y88{bottom:435.341168px;}
.y87{bottom:436.994721px;}
.yd2{bottom:438.615200px;}
.yd5{bottom:439.350126px;}
.y3a{bottom:441.138000px;}
.yd3{bottom:441.299276px;}
.yd6{bottom:442.034201px;}
.y66{bottom:443.133000px;}
.y3b{bottom:444.613500px;}
.yd1{bottom:445.057703px;}
.ye1{bottom:448.150500px;}
.y38{bottom:457.501500px;}
.y65{bottom:459.496500px;}
.yaf{bottom:460.503000px;}
.y39{bottom:460.977000px;}
.y36{bottom:475.821000px;}
.y64{bottom:475.860000px;}
.yae{bottom:476.866500px;}
.y37{bottom:479.295000px;}
.ydf{bottom:479.953160px;}
.y63{bottom:492.223500px;}
.yad{bottom:493.230000px;}
.y34{bottom:505.107000px;}
.y33{bottom:508.582500px;}
.y62{bottom:508.587000px;}
.yac{bottom:509.593500px;}
.y35{bottom:514.210500px;}
.y31{bottom:516.577500px;}
.y30{bottom:520.051500px;}
.y61{bottom:524.950500px;}
.y32{bottom:525.276000px;}
.yab{bottom:525.957000px;}
.y60{bottom:539.719500px;}
.y5f{bottom:541.314000px;}
.yaa{bottom:542.322000px;}
.y5e{bottom:557.677500px;}
.ya9{bottom:558.685500px;}
.y2f{bottom:566.841000px;}
.y5d{bottom:572.448000px;}
.y5c{bottom:574.041000px;}
.ya8{bottom:575.049000px;}
.y2d{bottom:583.204500px;}
.y2e{bottom:586.678500px;}
.y5b{bottom:588.811500px;}
.y5a{bottom:590.404500px;}
.ya7{bottom:591.412500px;}
.ya{bottom:599.133000px;}
.ya6{bottom:607.776000px;}
.y2c{bottom:610.948500px;}
.y2b{bottom:613.315500px;}
.y9{bottom:615.496500px;}
.y89{bottom:623.439000px;}
.ya5{bottom:624.139500px;}
.y8{bottom:631.861500px;}
.y59{bottom:634.788000px;}
.y69{bottom:638.832000px;}
.ya4{bottom:640.503000px;}
.y2a{bottom:640.647000px;}
.y58{bottom:648.238500px;}
.y29{bottom:654.205500px;}
.y7{bottom:655.696500px;}
.ya3{bottom:656.866500px;}
.y28{bottom:657.010500px;}
.y56{bottom:661.687500px;}
.y57{bottom:664.390500px;}
.ya2{bottom:673.230000px;}
.y27{bottom:673.374000px;}
.y55{bottom:675.136500px;}
.ya1{bottom:689.593500px;}
.y26{bottom:689.737500px;}
.ya0{bottom:705.957000px;}
.y25{bottom:706.101000px;}
.y6{bottom:708.934500px;}
.y9f{bottom:722.322000px;}
.y24{bottom:722.464500px;}
.y5{bottom:725.298000px;}
.y9e{bottom:738.685500px;}
.y23{bottom:738.828000px;}
.y9d{bottom:755.049000px;}
.y4{bottom:759.594000px;}
.y22{bottom:769.174500px;}
.y9c{bottom:771.412500px;}
.y9b{bottom:787.776000px;}
.y11{bottom:790.678500px;}
.y3{bottom:793.890000px;}
.y9a{bottom:811.611000px;}
.y2{bottom:832.744500px;}
.y99{bottom:846.916500px;}
.y98{bottom:863.280000px;}
.y97{bottom:879.643500px;}
.y96{bottom:896.007000px;}
.y95{bottom:912.370500px;}
.y94{bottom:928.734000px;}
.y1{bottom:944.824500px;}
.y93{bottom:959.575500px;}
.y92{bottom:975.939000px;}
.y91{bottom:992.302500px;}
.y90{bottom:1008.666000px;}
.y10{bottom:1015.671000px;}
.y8f{bottom:1025.029500px;}
.yf{bottom:1032.034500px;}
.ye{bottom:1048.398000px;}
.y8e{bottom:1055.869500px;}
.yd{bottom:1064.761500px;}
.y8d{bottom:1072.234500px;}
.yc{bottom:1088.598000px;}
.h22{height:16.385609px;}
.h21{height:19.662731px;}
.h1{height:21.039361px;}
.h1e{height:23.408013px;}
.h11{height:25.249382px;}
.h1f{height:26.031336px;}
.h24{height:26.216975px;}
.h20{height:28.089616px;}
.h1b{height:28.578632px;}
.h19{height:29.455195px;}
.he{height:29.614197px;}
.h1a{height:29.833916px;}
.h9{height:30.334934px;}
.h2c{height:33.512560px;}
.hd{height:33.734553px;}
.h2f{height:34.196490px;}
.ha{height:34.668496px;}
.h2e{height:35.021770px;}
.h3b{height:35.616745px;}
.h25{height:36.367718px;}
.h37{height:37.236360px;}
.h23{height:37.452821px;}
.h7{height:37.927872px;}
.h39{height:37.996286px;}
.h4{height:38.075460px;}
.h2a{height:38.300069px;}
.hb{height:38.553775px;}
.hc{height:39.002058px;}
.h3d{height:39.178420px;}
.h1c{height:39.380429px;}
.h6{height:40.348800px;}
.h27{height:41.035788px;}
.hf{height:41.801357px;}
.h5{height:42.306315px;}
.h35{height:42.555840px;}
.h3c{height:42.740094px;}
.h30{height:43.087577px;}
.h32{height:45.595543px;}
.h10{height:47.350205px;}
.h28{height:47.875086px;}
.h14{height:49.816800px;}
.h13{height:50.338205px;}
.h3{height:50.767578px;}
.h33{height:53.194800px;}
.h2d{height:53.240420px;}
.h12{height:53.944800px;}
.h15{height:54.244800px;}
.h2b{height:54.714384px;}
.h38{height:59.156311px;}
.h36{height:60.794057px;}
.h29{height:61.553682px;}
.h18{height:63.706800px;}
.h34{height:68.393314px;}
.h2{height:73.105062px;}
.h16{height:89.038800px;}
.h17{height:131.061024px;}
.h8{height:209.914200px;}
.h3a{height:326.071973px;}
.h26{height:451.163075px;}
.h1d{height:453.546000px;}
.h31{height:501.294757px;}
.h0{height:1188.000000px;}
.w3{width:680.158213px;}
.w2{width:680.319000px;}
.w5{width:755.678115px;}
.w1{width:755.691120px;}
.w4{width:755.735043px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xea{left:6.045550px;}
.x9d{left:11.608337px;}
.x9c{left:15.437100px;}
.xdc{left:18.242128px;}
.xce{left:20.803402px;}
.xf{left:22.719669px;}
.xdb{left:25.303803px;}
.xdd{left:26.326308px;}
.xe{left:27.712420px;}
.xe4{left:29.042337px;}
.xab{left:30.888234px;}
.xd{left:32.905610px;}
.xda{left:37.014681px;}
.xcb{left:39.754800px;}
.xb{left:42.180465px;}
.xd3{left:43.324363px;}
.xe7{left:48.138417px;}
.x81{left:54.946500px;}
.x10{left:57.418237px;}
.x1{left:58.893000px;}
.x8{left:61.672500px;}
.x11{left:70.220134px;}
.x8f{left:76.636500px;}
.x2{left:77.784000px;}
.xc5{left:82.392000px;}
.x4{left:84.508500px;}
.xc1{left:89.304000px;}
.xc{left:93.570127px;}
.xac{left:96.026911px;}
.xa5{left:98.231648px;}
.x9e{left:100.751348px;}
.x9a{left:102.259723px;}
.x3{left:105.430500px;}
.xc2{left:106.966500px;}
.x9b{left:109.943086px;}
.xcc{left:112.751278px;}
.xad{left:114.030339px;}
.xd8{left:115.572000px;}
.x71{left:116.841000px;}
.x89{left:118.882500px;}
.x99{left:119.901000px;}
.xa6{left:122.895795px;}
.x60{left:126.025500px;}
.x8a{left:133.807500px;}
.xef{left:141.924000px;}
.xba{left:148.009500px;}
.x94{left:151.933500px;}
.x61{left:156.087000px;}
.x68{left:160.125000px;}
.x6e{left:161.946000px;}
.x4d{left:163.782000px;}
.x90{left:164.787000px;}
.x7a{left:166.687500px;}
.x4c{left:168.762000px;}
.x91{left:171.697500px;}
.x6f{left:174.403500px;}
.x69{left:176.629500px;}
.xd9{left:182.727000px;}
.x4e{left:185.104500px;}
.xd5{left:186.622746px;}
.xd7{left:189.451500px;}
.xc6{left:192.348590px;}
.xde{left:195.805495px;}
.x7b{left:197.761500px;}
.x8b{left:204.184500px;}
.xcd{left:208.142021px;}
.xbe{left:210.658500px;}
.xd6{left:211.708905px;}
.x9f{left:214.480346px;}
.x8c{left:216.556500px;}
.xbf{left:217.570500px;}
.x7c{left:218.877000px;}
.xe9{left:229.128000px;}
.xe2{left:231.270043px;}
.xe3{left:238.022171px;}
.x70{left:244.326000px;}
.x38{left:261.087000px;}
.x84{left:262.974000px;}
.x37{left:267.135000px;}
.x15{left:268.153512px;}
.x12{left:269.993906px;}
.xae{left:278.682265px;}
.xa7{left:280.887002px;}
.xa0{left:283.406702px;}
.x16{left:285.231678px;}
.xbd{left:286.524000px;}
.x39{left:290.937000px;}
.x85{left:293.290500px;}
.x17{left:298.033574px;}
.xb8{left:303.274438px;}
.x41{left:305.131500px;}
.x59{left:306.469500px;}
.xaf{left:308.707173px;}
.x40{left:310.113000px;}
.x58{left:312.516000px;}
.xb5{left:314.613088px;}
.x65{left:315.753000px;}
.x22{left:317.830500px;}
.x21{left:320.350500px;}
.x13{left:321.383568px;}
.x3a{left:323.163000px;}
.x42{left:326.625000px;}
.x14{left:332.763031px;}
.x66{left:337.422000px;}
.xb6{left:338.581735px;}
.x33{left:341.218500px;}
.x86{left:344.323500px;}
.x32{left:347.265000px;}
.x3b{left:349.303500px;}
.x5a{left:351.066000px;}
.xc8{left:352.526599px;}
.xd2{left:356.912165px;}
.x8d{left:358.008000px;}
.xc9{left:359.442853px;}
.x6a{left:361.243500px;}
.x92{left:364.609500px;}
.xc7{left:369.421814px;}
.xd4{left:372.251729px;}
.x6b{left:373.764000px;}
.xcf{left:375.863564px;}
.x8e{left:379.494000px;}
.xed{left:384.658871px;}
.xee{left:386.063329px;}
.xec{left:388.567632px;}
.xe0{left:391.698136px;}
.x5{left:393.067500px;}
.xdf{left:398.759811px;}
.xe6{left:400.149779px;}
.x2c{left:402.585000px;}
.xb0{left:408.167518px;}
.xbb{left:410.452500px;}
.xe8{left:413.615055px;}
.x63{left:416.797500px;}
.x35{left:420.861000px;}
.x62{left:422.845500px;}
.x34{left:425.676000px;}
.xb7{left:428.232000px;}
.x76{left:431.340000px;}
.x2d{left:433.486500px;}
.xb9{left:437.377500px;}
.x9{left:440.938500px;}
.x77{left:449.205000px;}
.xeb{left:457.610333px;}
.x46{left:461.493000px;}
.xa{left:463.113000px;}
.xb1{left:467.321907px;}
.xa8{left:469.526644px;}
.x7d{left:472.408500px;}
.xa3{left:474.115869px;}
.x36{left:477.052500px;}
.xa1{left:479.539007px;}
.x78{left:482.157000px;}
.xa2{left:487.222369px;}
.x95{left:491.587500px;}
.x6c{left:494.434500px;}
.x1b{left:495.966953px;}
.x18{left:497.807346px;}
.xa9{left:499.551552px;}
.x2e{left:502.506000px;}
.xb2{left:504.007533px;}
.xaa{left:506.212271px;}
.xa4{left:508.731971px;}
.xc0{left:511.431000px;}
.x1c{left:513.045119px;}
.x25{left:514.768500px;}
.x6d{left:515.920500px;}
.xca{left:522.935853px;}
.x1d{left:525.847015px;}
.xbc{left:528.819000px;}
.x26{left:531.858000px;}
.x3c{left:533.238000px;}
.x53{left:536.697000px;}
.x7e{left:537.880500px;}
.x5f{left:540.922500px;}
.x52{left:542.743500px;}
.xd0{left:544.250784px;}
.x19{left:549.197009px;}
.xd1{left:550.327670px;}
.x7f{left:552.672000px;}
.x5b{left:554.209500px;}
.x1a{left:560.576472px;}
.x54{left:562.863000px;}
.x67{left:575.767500px;}
.xe1{left:581.042678px;}
.x73{left:587.278500px;}
.x72{left:591.849000px;}
.x3d{left:593.476500px;}
.x48{left:596.550000px;}
.x97{left:597.970500px;}
.x87{left:600.154500px;}
.x5c{left:601.383000px;}
.x47{left:602.596500px;}
.xe5{left:604.726051px;}
.x50{left:606.106500px;}
.x88{left:608.062500px;}
.x80{left:610.408500px;}
.x4f{left:612.154500px;}
.x27{left:616.015500px;}
.x3e{left:620.721000px;}
.xb3{left:621.974658px;}
.x74{left:624.396000px;}
.x51{left:629.563500px;}
.x3f{left:633.831000px;}
.x93{left:636.142500px;}
.xb4{left:639.186866px;}
.x75{left:640.638000px;}
.xc3{left:641.796000px;}
.x6{left:644.578500px;}
.x5d{left:649.399500px;}
.x28{left:656.143500px;}
.xc4{left:657.711000px;}
.x96{left:664.443000px;}
.x98{left:665.668500px;}
.x7{left:666.742500px;}
.x29{left:672.495000px;}
.x5e{left:677.533500px;}
.x2a{left:682.914000px;}
.x56{left:690.997500px;}
.x55{left:697.044000px;}
.x79{left:704.265000px;}
.x57{left:714.597000px;}
.x1e{left:726.232175px;}
.x20{left:731.485680px;}
.x44{left:741.637500px;}
.x82{left:745.669500px;}
.x43{left:747.684000px;}
.x1f{left:750.230179px;}
.x83{left:766.740000px;}
.x45{left:770.005500px;}
.x2b{left:791.098500px;}
.x4a{left:792.840000px;}
.x49{left:798.888000px;}
.x23{left:807.996000px;}
.x2f{left:809.157000px;}
.x24{left:814.908000px;}
.x30{left:819.405000px;}
.x4b{left:821.022000px;}
.x31{left:831.297000px;}
.x64{left:832.308000px;}
@media print{
.vd{vertical-align:-12.778667pt;}
.v13{vertical-align:-10.750229pt;}
.v10{vertical-align:-9.675159pt;}
.v1{vertical-align:-5.664000pt;}
.vf{vertical-align:-3.674563pt;}
.v9{vertical-align:-2.656000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.341520pt;}
.ve{vertical-align:5.669333pt;}
.v6{vertical-align:8.416000pt;}
.v3{vertical-align:11.111199pt;}
.v2{vertical-align:12.698513pt;}
.v11{vertical-align:17.535875pt;}
.v4{vertical-align:20.314667pt;}
.v5{vertical-align:22.970667pt;}
.vb{vertical-align:40.784000pt;}
.v8{vertical-align:43.280000pt;}
.vc{vertical-align:53.136000pt;}
.v7{vertical-align:73.589333pt;}
.va{vertical-align:122.693333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000027pt;}
.ls36{letter-spacing:0.000336pt;}
.ls3f{letter-spacing:0.000473pt;}
.ls30{letter-spacing:0.000495pt;}
.ls53{letter-spacing:0.000515pt;}
.ls49{letter-spacing:0.000631pt;}
.ls3e{letter-spacing:0.000882pt;}
.ls2f{letter-spacing:0.000891pt;}
.ls38{letter-spacing:0.000934pt;}
.ls3d{letter-spacing:0.001050pt;}
.ls1{letter-spacing:0.001097pt;}
.ls2c{letter-spacing:0.001386pt;}
.ls39{letter-spacing:0.001478pt;}
.ls41{letter-spacing:0.001495pt;}
.ls47{letter-spacing:0.001503pt;}
.ls4{letter-spacing:0.001555pt;}
.ls5{letter-spacing:0.001749pt;}
.ls4f{letter-spacing:0.002178pt;}
.ls28{letter-spacing:0.002239pt;}
.ls1f{letter-spacing:0.002383pt;}
.ls48{letter-spacing:0.002761pt;}
.ls37{letter-spacing:0.003130pt;}
.ls1e{letter-spacing:0.003176pt;}
.ls35{letter-spacing:0.004090pt;}
.ls17{letter-spacing:0.004816pt;}
.ls34{letter-spacing:0.005010pt;}
.ls4b{letter-spacing:0.005325pt;}
.ls45{letter-spacing:0.005361pt;}
.ls4d{letter-spacing:0.005848pt;}
.ls51{letter-spacing:0.005964pt;}
.ls16{letter-spacing:2.652757pt;}
.ls10{letter-spacing:2.658034pt;}
.lsd{letter-spacing:5.120167pt;}
.ls29{letter-spacing:5.310545pt;}
.ls1c{letter-spacing:5.315879pt;}
.ls4a{letter-spacing:5.888631pt;}
.lsc{letter-spacing:7.084771pt;}
.ls44{letter-spacing:8.187558pt;}
.ls25{letter-spacing:8.190908pt;}
.ls3c{letter-spacing:8.192891pt;}
.ls18{letter-spacing:9.029806pt;}
.ls4c{letter-spacing:9.819140pt;}
.ls52{letter-spacing:9.824473pt;}
.ls14{letter-spacing:10.686193pt;}
.lsb{letter-spacing:10.918719pt;}
.ls26{letter-spacing:10.923360pt;}
.ls24{letter-spacing:10.924052pt;}
.ls19{letter-spacing:10.925494pt;}
.ls27{letter-spacing:10.927193pt;}
.ls50{letter-spacing:12.476439pt;}
.ls4e{letter-spacing:12.478186pt;}
.ls6{letter-spacing:12.481773pt;}
.ls54{letter-spacing:12.483519pt;}
.ls32{letter-spacing:12.629355pt;}
.ls23{letter-spacing:13.575368pt;}
.ls1b{letter-spacing:13.579139pt;}
.ls13{letter-spacing:13.649386pt;}
.ls42{letter-spacing:14.657033pt;}
.lsa{letter-spacing:14.664141pt;}
.ls2{letter-spacing:15.282091pt;}
.ls20{letter-spacing:16.084978pt;}
.ls12{letter-spacing:16.311368pt;}
.ls11{letter-spacing:16.379360pt;}
.ls46{letter-spacing:16.384495pt;}
.ls2e{letter-spacing:16.689459pt;}
.ls3b{letter-spacing:17.057386pt;}
.ls8{letter-spacing:17.394807pt;}
.ls31{letter-spacing:18.095805pt;}
.ls2d{letter-spacing:18.828262pt;}
.ls7{letter-spacing:19.036757pt;}
.ls3{letter-spacing:19.042091pt;}
.ls21{letter-spacing:19.964030pt;}
.ls2a{letter-spacing:20.440719pt;}
.lsf{letter-spacing:21.499360pt;}
.ls3a{letter-spacing:22.369773pt;}
.ls9{letter-spacing:27.628052pt;}
.ls1a{letter-spacing:32.422719pt;}
.ls22{letter-spacing:35.153386pt;}
.ls15{letter-spacing:41.208161pt;}
.ls2b{letter-spacing:739.964757pt;}
.ls1d{letter-spacing:860.859360pt;}
.lse{letter-spacing:1079.056495pt;}
.ls33{letter-spacing:1386.684971pt;}
.ls40{letter-spacing:1387.956992pt;}
.ws35{word-spacing:-49.150218pt;}
.ws10{word-spacing:-35.425649pt;}
.ws9{word-spacing:-32.063846pt;}
.wsb{word-spacing:-28.118362pt;}
.ws27{word-spacing:-25.258709pt;}
.ws15{word-spacing:-24.575109pt;}
.ws13{word-spacing:-23.886490pt;}
.ws1c{word-spacing:-21.137092pt;}
.ws11{word-spacing:-15.661312pt;}
.ws46{word-spacing:-14.032699pt;}
.ws12{word-spacing:-13.652838pt;}
.ws3e{word-spacing:-12.629355pt;}
.ws14{word-spacing:-10.228869pt;}
.ws3b{word-spacing:-9.822815pt;}
.ws50{word-spacing:-9.511557pt;}
.ws1f{word-spacing:-9.463736pt;}
.ws3f{word-spacing:-9.033349pt;}
.wse{word-spacing:-8.985528pt;}
.ws1a{word-spacing:-8.507320pt;}
.ws1b{word-spacing:-8.459500pt;}
.ws7{word-spacing:-8.411679pt;}
.ws5{word-spacing:-8.316037pt;}
.ws6{word-spacing:-8.268216pt;}
.ws8{word-spacing:-8.220396pt;}
.ws40{word-spacing:-8.210447pt;}
.ws33{word-spacing:-8.190104pt;}
.ws36{word-spacing:-8.188239pt;}
.ws2{word-spacing:-8.172575pt;}
.ws1e{word-spacing:-8.124754pt;}
.ws26{word-spacing:-8.076933pt;}
.wsf{word-spacing:-8.029112pt;}
.ws19{word-spacing:-7.981292pt;}
.ws4{word-spacing:-7.933471pt;}
.ws20{word-spacing:-7.885650pt;}
.ws24{word-spacing:-7.837829pt;}
.ws42{word-spacing:-7.742188pt;}
.ws22{word-spacing:-7.407442pt;}
.ws2f{word-spacing:-7.216159pt;}
.ws44{word-spacing:-7.024876pt;}
.ws30{word-spacing:-6.881413pt;}
.ws4f{word-spacing:-6.785772pt;}
.ws51{word-spacing:-6.211922pt;}
.ws45{word-spacing:-6.116280pt;}
.ws21{word-spacing:-5.733714pt;}
.ws18{word-spacing:-5.475482pt;}
.ws34{word-spacing:-5.459057pt;}
.ws16{word-spacing:-5.283354pt;}
.ws48{word-spacing:-5.207685pt;}
.ws4e{word-spacing:-3.868703pt;}
.wsd{word-spacing:-2.864466pt;}
.ws49{word-spacing:-2.789816pt;}
.ws1d{word-spacing:-2.749696pt;}
.ws25{word-spacing:-2.242796pt;}
.ws3d{word-spacing:-0.636011pt;}
.ws2e{word-spacing:-0.215194pt;}
.ws2c{word-spacing:-0.106002pt;}
.ws2b{word-spacing:-0.070668pt;}
.ws47{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.037194pt;}
.ws17{word-spacing:-0.031881pt;}
.ws2d{word-spacing:-0.014877pt;}
.ws3{word-spacing:-0.005376pt;}
.ws39{word-spacing:-0.003467pt;}
.ws3a{word-spacing:-0.000163pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.045429pt;}
.ws29{word-spacing:0.070668pt;}
.ws28{word-spacing:0.247337pt;}
.ws41{word-spacing:0.681440pt;}
.ws43{word-spacing:1.408309pt;}
.ws31{word-spacing:1.888922pt;}
.ws1{word-spacing:2.998336pt;}
.ws4c{word-spacing:13.442427pt;}
.ws3c{word-spacing:14.022573pt;}
.ws4a{word-spacing:17.502413pt;}
.ws23{word-spacing:17.789338pt;}
.ws4b{word-spacing:20.376443pt;}
.ws32{word-spacing:20.864427pt;}
.ws37{word-spacing:20.869760pt;}
.ws4d{word-spacing:37.348045pt;}
.wsa{word-spacing:41.744835pt;}
.ws55{word-spacing:42.438589pt;}
.ws38{word-spacing:86.117439pt;}
.ws54{word-spacing:158.162075pt;}
.ws59{word-spacing:175.736498pt;}
.ws56{word-spacing:221.841600pt;}
.ws5a{word-spacing:246.491872pt;}
.ws53{word-spacing:373.471007pt;}
.ws52{word-spacing:393.120594pt;}
.ws58{word-spacing:414.969814pt;}
.ws57{word-spacing:436.802795pt;}
._29{margin-left:-2769.704982pt;}
._24{margin-left:-2768.784468pt;}
._1d{margin-left:-2765.420614pt;}
._28{margin-left:-2738.626046pt;}
._3e{margin-left:-2438.122148pt;}
._3a{margin-left:-2363.899498pt;}
._26{margin-left:-2135.767474pt;}
._11{margin-left:-2119.757588pt;}
._32{margin-left:-1998.016079pt;}
._3{margin-left:-1958.759639pt;}
._17{margin-left:-1928.954386pt;}
._31{margin-left:-1752.651127pt;}
._38{margin-left:-1703.429177pt;}
._2c{margin-left:-1695.152969pt;}
._37{margin-left:-1576.441090pt;}
._2e{margin-left:-1555.980915pt;}
._18{margin-left:-1537.601041pt;}
._19{margin-left:-1404.881047pt;}
._5{margin-left:-1236.909728pt;}
._1f{margin-left:-1193.521236pt;}
._1a{margin-left:-1182.378575pt;}
._2{margin-left:-1175.094022pt;}
._3c{margin-left:-1031.906515pt;}
._25{margin-left:-910.406233pt;}
._23{margin-left:-877.874511pt;}
._7{margin-left:-844.145888pt;}
._d{margin-left:-756.609677pt;}
._8{margin-left:-606.792909pt;}
._9{margin-left:-507.312687pt;}
._b{margin-left:-467.351190pt;}
._a{margin-left:-465.470455pt;}
._1e{margin-left:-447.078327pt;}
._6{margin-left:-439.079776pt;}
._2d{margin-left:-353.323304pt;}
._3b{margin-left:-329.391889pt;}
._2a{margin-left:-212.649815pt;}
._20{margin-left:-12.629355pt;}
._3d{margin-left:-5.394591pt;}
._10{margin-left:-4.470276pt;}
._4{margin-left:-3.252736pt;}
._1{margin-left:-1.744491pt;}
._0{width:1.744491pt;}
._16{width:12.152103pt;}
._21{width:13.135127pt;}
._1b{width:16.043831pt;}
._4a{width:17.047321pt;}
._2f{width:18.076262pt;}
._15{width:19.732971pt;}
._f{width:21.257314pt;}
._e{width:22.259614pt;}
._1c{width:24.579891pt;}
._22{width:25.750532pt;}
._42{width:27.286716pt;}
._2b{width:28.524139pt;}
._48{width:30.318722pt;}
._44{width:36.608727pt;}
._30{width:37.611012pt;}
._39{width:38.735770pt;}
._36{width:43.516928pt;}
._33{width:52.625822pt;}
._34{width:79.883678pt;}
._35{width:86.470682pt;}
._14{width:100.019755pt;}
._27{width:115.058139pt;}
._13{width:128.672401pt;}
._12{width:137.904738pt;}
._3f{width:183.133979pt;}
._40{width:191.822806pt;}
._41{width:200.539855pt;}
._45{width:203.483194pt;}
._43{width:208.127319pt;}
._46{width:213.137494pt;}
._47{width:222.823150pt;}
._49{width:231.253707pt;}
._4c{width:262.318235pt;}
._4b{width:273.156401pt;}
._c{width:1398.560203pt;}
.fs15{font-size:13.169632pt;}
.fs12{font-size:15.678133pt;}
.fs14{font-size:18.813760pt;}
.fsc{font-size:20.317621pt;}
.fs11{font-size:22.397333pt;}
.fs1e{font-size:22.445920pt;}
.fs9{font-size:23.220139pt;}
.fs17{font-size:25.085013pt;}
.fs0{font-size:25.238400pt;}
.fsb{font-size:26.122656pt;}
.fsf{font-size:26.566933pt;}
.fs13{font-size:26.876800pt;}
.fs7{font-size:29.025173pt;}
.fs6{font-size:31.880533pt;}
.fs1d{font-size:32.065600pt;}
.fs1f{font-size:32.720000pt;}
.fs8{font-size:33.171627pt;}
.fs28{font-size:34.078933pt;}
.fsd{font-size:35.333867pt;}
.fs26{font-size:35.628619pt;}
.fs16{font-size:35.835733pt;}
.fs27{font-size:36.355733pt;}
.fs1c{font-size:36.646400pt;}
.fse{font-size:37.193600pt;}
.fsa{font-size:37.318080pt;}
.fs2a{font-size:37.486827pt;}
.fs18{font-size:39.264000pt;}
.fs25{font-size:40.718421pt;}
.fs29{font-size:40.894720pt;}
.fs20{font-size:41.227200pt;}
.fs21{font-size:43.626880pt;}
.fs3{font-size:45.429333pt;}
.fs19{font-size:45.808000pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:50.477333pt;}
.fs22{font-size:50.898027pt;}
.fs1b{font-size:52.352000pt;}
.fs10{font-size:53.133867pt;}
.fs24{font-size:58.169173pt;}
.fs1a{font-size:58.896000pt;}
.fs2{font-size:60.572800pt;}
.fs23{font-size:65.440320pt;}
.fs1{font-size:87.224533pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.919819pt;}
.yf4{bottom:5.017324pt;}
.y79{bottom:7.505801pt;}
.yc5{bottom:8.599225pt;}
.yde{bottom:9.554741pt;}
.yc4{bottom:10.478069pt;}
.ydd{bottom:11.642356pt;}
.y12{bottom:14.982426pt;}
.y78{bottom:15.917925pt;}
.y14{bottom:21.368127pt;}
.y1c{bottom:21.441013pt;}
.y7a{bottom:21.534756pt;}
.yc3{bottom:23.949506pt;}
.ydc{bottom:26.610693pt;}
.ye2{bottom:29.332111pt;}
.ye3{bottom:35.552182pt;}
.yb{bottom:48.506667pt;}
.y1d{bottom:61.179668pt;}
.y15{bottom:65.074316pt;}
.y19{bottom:65.189211pt;}
.yec{bottom:67.102704pt;}
.y7d{bottom:71.900486pt;}
.y7b{bottom:72.910991pt;}
.y1a{bottom:75.304290pt;}
.y20{bottom:75.968370pt;}
.y54{bottom:81.716000pt;}
.yc0{bottom:82.804737pt;}
.ybf{bottom:84.683580pt;}
.ye4{bottom:85.012426pt;}
.yd9{bottom:92.005713pt;}
.y8c{bottom:93.896000pt;}
.yd8{bottom:94.093327pt;}
.y53{bottom:96.261333pt;}
.yed{bottom:98.653226pt;}
.ybe{bottom:100.334221pt;}
.ye8{bottom:100.724414pt;}
.y1e{bottom:100.782268pt;}
.yf3{bottom:103.463375pt;}
.y16{bottom:108.780506pt;}
.y52{bottom:110.806667pt;}
.yd7{bottom:111.483013pt;}
.yc1{bottom:112.747149pt;}
.y8b{bottom:119.134667pt;}
.y80{bottom:122.447971pt;}
.y7c{bottom:124.287226pt;}
.y51{bottom:125.352000pt;}
.yc2{bottom:127.440155pt;}
.y7e{bottom:129.151647pt;}
.yee{bottom:130.203748pt;}
.y7f{bottom:130.254016pt;}
.y8a{bottom:132.817333pt;}
.ye5{bottom:134.472670pt;}
.yda{bottom:136.636390pt;}
.y71{bottom:137.794379pt;}
.y50{bottom:139.897333pt;}
.y1f{bottom:140.452895pt;}
.y72{bottom:144.447962pt;}
.y17{bottom:147.630452pt;}
.ydb{bottom:152.962031pt;}
.yb1{bottom:154.209667pt;}
.y4e{bottom:154.442667pt;}
.y4f{bottom:157.532000pt;}
.y81{bottom:159.941107pt;}
.yef{bottom:161.754271pt;}
.y4d{bottom:168.989333pt;}
.yca{bottom:171.344912pt;}
.y18{bottom:171.911669pt;}
.y21{bottom:175.256491pt;}
.y1b{bottom:177.949132pt;}
.y4b{bottom:183.534667pt;}
.ye6{bottom:183.932914pt;}
.y4c{bottom:186.622667pt;}
.yb2{bottom:192.610809pt;}
.yf0{bottom:193.304793pt;}
.y85{bottom:193.871777pt;}
.y75{bottom:194.813692pt;}
.y73{bottom:195.824197pt;}
.y82{bottom:197.434243pt;}
.y4a{bottom:198.080000pt;}
.y86{bottom:202.835631pt;}
.y49{bottom:212.625333pt;}
.ycb{bottom:214.013056pt;}
.yb7{bottom:219.732761pt;}
.ybb{bottom:219.898918pt;}
.yf1{bottom:224.855315pt;}
.y48{bottom:227.170667pt;}
.yb3{bottom:231.011951pt;}
.ye7{bottom:233.393158pt;}
.y83{bottom:234.927379pt;}
.y47{bottom:241.716000pt;}
.yd0{bottom:244.148707pt;}
.yd4{bottom:244.333325pt;}
.y74{bottom:247.200432pt;}
.yeb{bottom:248.315083pt;}
.y76{bottom:252.064853pt;}
.y77{bottom:253.167221pt;}
.y46{bottom:256.261333pt;}
.yf2{bottom:256.405837pt;}
.ycc{bottom:256.681200pt;}
.y6a{bottom:260.707585pt;}
.yea{bottom:260.821785pt;}
.y6b{bottom:267.361167pt;}
.yb4{bottom:269.413093pt;}
.y45{bottom:270.806667pt;}
.y84{bottom:272.420515pt;}
.ye9{bottom:279.007049pt;}
.y44{bottom:285.352000pt;}
.ye0{bottom:298.826667pt;}
.ycd{bottom:299.349344pt;}
.y43{bottom:307.544000pt;}
.yb5{bottom:307.814234pt;}
.y42{bottom:309.646667pt;}
.y41{bottom:312.734667pt;}
.y6e{bottom:317.726898pt;}
.y6c{bottom:318.737403pt;}
.yc9{bottom:320.478667pt;}
.yc8{bottom:321.109333pt;}
.yce{bottom:342.017489pt;}
.yb6{bottom:342.375262pt;}
.yb0{bottom:342.761333pt;}
.y40{bottom:348.486667pt;}
.yb9{bottom:350.890444pt;}
.ybc{bottom:351.478382pt;}
.yba{bottom:353.037694pt;}
.ybd{bottom:353.625632pt;}
.yb8{bottom:356.044422pt;}
.y3e{bottom:363.032000pt;}
.y68{bottom:364.804000pt;}
.y3f{bottom:366.121333pt;}
.y6d{bottom:370.113638pt;}
.y6f{bottom:374.978058pt;}
.y70{bottom:376.080427pt;}
.yf5{bottom:376.704000pt;}
.y3c{bottom:377.577333pt;}
.y67{bottom:379.349333pt;}
.ycf{bottom:380.418818pt;}
.y3d{bottom:380.666667pt;}
.yc7{bottom:381.544994pt;}
.yc6{bottom:383.960651pt;}
.y88{bottom:386.969927pt;}
.y87{bottom:388.439752pt;}
.yd2{bottom:389.880178pt;}
.yd5{bottom:390.533445pt;}
.y3a{bottom:392.122667pt;}
.yd3{bottom:392.266023pt;}
.yd6{bottom:392.919290pt;}
.y66{bottom:393.896000pt;}
.y3b{bottom:395.212000pt;}
.yd1{bottom:395.606847pt;}
.ye1{bottom:398.356000pt;}
.y38{bottom:406.668000pt;}
.y65{bottom:408.441333pt;}
.yaf{bottom:409.336000pt;}
.y39{bottom:409.757333pt;}
.y36{bottom:422.952000pt;}
.y64{bottom:422.986667pt;}
.yae{bottom:423.881333pt;}
.y37{bottom:426.040000pt;}
.ydf{bottom:426.625031pt;}
.y63{bottom:437.532000pt;}
.yad{bottom:438.426667pt;}
.y34{bottom:448.984000pt;}
.y33{bottom:452.073333pt;}
.y62{bottom:452.077333pt;}
.yac{bottom:452.972000pt;}
.y35{bottom:457.076000pt;}
.y31{bottom:459.180000pt;}
.y30{bottom:462.268000pt;}
.y61{bottom:466.622667pt;}
.y32{bottom:466.912000pt;}
.yab{bottom:467.517333pt;}
.y60{bottom:479.750667pt;}
.y5f{bottom:481.168000pt;}
.yaa{bottom:482.064000pt;}
.y5e{bottom:495.713333pt;}
.ya9{bottom:496.609333pt;}
.y2f{bottom:503.858667pt;}
.y5d{bottom:508.842667pt;}
.y5c{bottom:510.258667pt;}
.ya8{bottom:511.154667pt;}
.y2d{bottom:518.404000pt;}
.y2e{bottom:521.492000pt;}
.y5b{bottom:523.388000pt;}
.y5a{bottom:524.804000pt;}
.ya7{bottom:525.700000pt;}
.ya{bottom:532.562667pt;}
.ya6{bottom:540.245333pt;}
.y2c{bottom:543.065333pt;}
.y2b{bottom:545.169333pt;}
.y9{bottom:547.108000pt;}
.y89{bottom:554.168000pt;}
.ya5{bottom:554.790667pt;}
.y8{bottom:561.654667pt;}
.y59{bottom:564.256000pt;}
.y69{bottom:567.850667pt;}
.ya4{bottom:569.336000pt;}
.y2a{bottom:569.464000pt;}
.y58{bottom:576.212000pt;}
.y29{bottom:581.516000pt;}
.y7{bottom:582.841333pt;}
.ya3{bottom:583.881333pt;}
.y28{bottom:584.009333pt;}
.y56{bottom:588.166667pt;}
.y57{bottom:590.569333pt;}
.ya2{bottom:598.426667pt;}
.y27{bottom:598.554667pt;}
.y55{bottom:600.121333pt;}
.ya1{bottom:612.972000pt;}
.y26{bottom:613.100000pt;}
.ya0{bottom:627.517333pt;}
.y25{bottom:627.645333pt;}
.y6{bottom:630.164000pt;}
.y9f{bottom:642.064000pt;}
.y24{bottom:642.190667pt;}
.y5{bottom:644.709333pt;}
.y9e{bottom:656.609333pt;}
.y23{bottom:656.736000pt;}
.y9d{bottom:671.154667pt;}
.y4{bottom:675.194667pt;}
.y22{bottom:683.710667pt;}
.y9c{bottom:685.700000pt;}
.y9b{bottom:700.245333pt;}
.y11{bottom:702.825333pt;}
.y3{bottom:705.680000pt;}
.y9a{bottom:721.432000pt;}
.y2{bottom:740.217333pt;}
.y99{bottom:752.814667pt;}
.y98{bottom:767.360000pt;}
.y97{bottom:781.905333pt;}
.y96{bottom:796.450667pt;}
.y95{bottom:810.996000pt;}
.y94{bottom:825.541333pt;}
.y1{bottom:839.844000pt;}
.y93{bottom:852.956000pt;}
.y92{bottom:867.501333pt;}
.y91{bottom:882.046667pt;}
.y90{bottom:896.592000pt;}
.y10{bottom:902.818667pt;}
.y8f{bottom:911.137333pt;}
.yf{bottom:917.364000pt;}
.ye{bottom:931.909333pt;}
.y8e{bottom:938.550667pt;}
.yd{bottom:946.454667pt;}
.y8d{bottom:953.097333pt;}
.yc{bottom:967.642667pt;}
.h22{height:14.564986pt;}
.h21{height:17.477983pt;}
.h1{height:18.701654pt;}
.h1e{height:20.807123pt;}
.h11{height:22.443895pt;}
.h1f{height:23.138965pt;}
.h24{height:23.303977pt;}
.h20{height:24.968547pt;}
.h1b{height:25.403229pt;}
.h19{height:26.182395pt;}
.he{height:26.323731pt;}
.h1a{height:26.519037pt;}
.h9{height:26.964386pt;}
.h2c{height:29.788942pt;}
.hd{height:29.986269pt;}
.h2f{height:30.396880pt;}
.ha{height:30.816441pt;}
.h2e{height:31.130462pt;}
.h3b{height:31.659329pt;}
.h25{height:32.326861pt;}
.h37{height:33.098987pt;}
.h23{height:33.291396pt;}
.h7{height:33.713664pt;}
.h39{height:33.774476pt;}
.h4{height:33.844853pt;}
.h2a{height:34.044506pt;}
.hb{height:34.270022pt;}
.hc{height:34.668496pt;}
.h3d{height:34.825262pt;}
.h1c{height:35.004826pt;}
.h6{height:35.865600pt;}
.h27{height:36.476256pt;}
.hf{height:37.156762pt;}
.h5{height:37.605613pt;}
.h35{height:37.827413pt;}
.h3c{height:37.991195pt;}
.h30{height:38.300069pt;}
.h32{height:40.529372pt;}
.h10{height:42.089071pt;}
.h28{height:42.555632pt;}
.h14{height:44.281600pt;}
.h13{height:44.745071pt;}
.h3{height:45.126736pt;}
.h33{height:47.284267pt;}
.h2d{height:47.324817pt;}
.h12{height:47.950933pt;}
.h15{height:48.217600pt;}
.h2b{height:48.635008pt;}
.h38{height:52.583388pt;}
.h36{height:54.039162pt;}
.h29{height:54.714384pt;}
.h18{height:56.628267pt;}
.h34{height:60.794057pt;}
.h2{height:64.982277pt;}
.h16{height:79.145600pt;}
.h17{height:116.498688pt;}
.h8{height:186.590400pt;}
.h3a{height:289.841754pt;}
.h26{height:401.033844pt;}
.h1d{height:403.152000pt;}
.h31{height:445.595339pt;}
.h0{height:1056.000000pt;}
.w3{width:604.585078pt;}
.w2{width:604.728000pt;}
.w5{width:671.713880pt;}
.w1{width:671.725440pt;}
.w4{width:671.764483pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xea{left:5.373822pt;}
.x9d{left:10.318521pt;}
.x9c{left:13.721866pt;}
.xdc{left:16.215225pt;}
.xce{left:18.491912pt;}
.xf{left:20.195262pt;}
.xdb{left:22.492270pt;}
.xdd{left:23.401163pt;}
.xe{left:24.633263pt;}
.xe4{left:25.815411pt;}
.xab{left:27.456208pt;}
.xd{left:29.249431pt;}
.xda{left:32.901939pt;}
.xcb{left:35.337600pt;}
.xb{left:37.493747pt;}
.xd3{left:38.510545pt;}
.xe7{left:42.789704pt;}
.x81{left:48.841333pt;}
.x10{left:51.038433pt;}
.x1{left:52.349333pt;}
.x8{left:54.820000pt;}
.x11{left:62.417897pt;}
.x8f{left:68.121333pt;}
.x2{left:69.141333pt;}
.xc5{left:73.237333pt;}
.x4{left:75.118667pt;}
.xc1{left:79.381333pt;}
.xc{left:83.173447pt;}
.xac{left:85.357254pt;}
.xa5{left:87.317020pt;}
.x9e{left:89.556754pt;}
.x9a{left:90.897532pt;}
.x3{left:93.716000pt;}
.xc2{left:95.081333pt;}
.x9b{left:97.727187pt;}
.xcc{left:100.223359pt;}
.xad{left:101.360302pt;}
.xd8{left:102.730667pt;}
.x71{left:103.858667pt;}
.x89{left:105.673333pt;}
.x99{left:106.578667pt;}
.xa6{left:109.240707pt;}
.x60{left:112.022667pt;}
.x8a{left:118.940000pt;}
.xef{left:126.154667pt;}
.xba{left:131.564000pt;}
.x94{left:135.052000pt;}
.x61{left:138.744000pt;}
.x68{left:142.333333pt;}
.x6e{left:143.952000pt;}
.x4d{left:145.584000pt;}
.x90{left:146.477333pt;}
.x7a{left:148.166667pt;}
.x4c{left:150.010667pt;}
.x91{left:152.620000pt;}
.x6f{left:155.025333pt;}
.x69{left:157.004000pt;}
.xd9{left:162.424000pt;}
.x4e{left:164.537333pt;}
.xd5{left:165.886885pt;}
.xd7{left:168.401333pt;}
.xc6{left:170.976524pt;}
.xde{left:174.049329pt;}
.x7b{left:175.788000pt;}
.x8b{left:181.497333pt;}
.xcd{left:185.015130pt;}
.xbe{left:187.252000pt;}
.xd6{left:188.185693pt;}
.x9f{left:190.649197pt;}
.x8c{left:192.494667pt;}
.xbf{left:193.396000pt;}
.x7c{left:194.557333pt;}
.xe9{left:203.669333pt;}
.xe2{left:205.573371pt;}
.xe3{left:211.575263pt;}
.x70{left:217.178667pt;}
.x38{left:232.077333pt;}
.x84{left:233.754667pt;}
.x37{left:237.453333pt;}
.x15{left:238.358677pt;}
.x12{left:239.994583pt;}
.xae{left:247.717569pt;}
.xa7{left:249.677335pt;}
.xa0{left:251.917069pt;}
.x16{left:253.539269pt;}
.xbd{left:254.688000pt;}
.x39{left:258.610667pt;}
.x85{left:260.702667pt;}
.x17{left:264.918733pt;}
.xb8{left:269.577279pt;}
.x41{left:271.228000pt;}
.x59{left:272.417333pt;}
.xaf{left:274.406376pt;}
.x40{left:275.656000pt;}
.x58{left:277.792000pt;}
.xb5{left:279.656079pt;}
.x65{left:280.669333pt;}
.x22{left:282.516000pt;}
.x21{left:284.756000pt;}
.x13{left:285.674283pt;}
.x3a{left:287.256000pt;}
.x42{left:290.333333pt;}
.x14{left:295.789361pt;}
.x66{left:299.930667pt;}
.xb6{left:300.961542pt;}
.x33{left:303.305333pt;}
.x86{left:306.065333pt;}
.x32{left:308.680000pt;}
.x3b{left:310.492000pt;}
.x5a{left:312.058667pt;}
.xc8{left:313.356977pt;}
.xd2{left:317.255258pt;}
.x8d{left:318.229333pt;}
.xc9{left:319.504758pt;}
.x6a{left:321.105333pt;}
.x92{left:324.097333pt;}
.xc7{left:328.374945pt;}
.xd4{left:330.890426pt;}
.x6b{left:332.234667pt;}
.xcf{left:334.100945pt;}
.x8e{left:337.328000pt;}
.xed{left:341.918997pt;}
.xee{left:343.167404pt;}
.xec{left:345.393450pt;}
.xe0{left:348.176121pt;}
.x5{left:349.393333pt;}
.xdf{left:354.453166pt;}
.xe6{left:355.688693pt;}
.x2c{left:357.853333pt;}
.xb0{left:362.815571pt;}
.xbb{left:364.846667pt;}
.xe8{left:367.657827pt;}
.x63{left:370.486667pt;}
.x35{left:374.098667pt;}
.x62{left:375.862667pt;}
.x34{left:378.378667pt;}
.xb7{left:380.650667pt;}
.x76{left:383.413333pt;}
.x2d{left:385.321333pt;}
.xb9{left:388.780000pt;}
.x9{left:391.945333pt;}
.x77{left:399.293333pt;}
.xeb{left:406.764741pt;}
.x46{left:410.216000pt;}
.xa{left:411.656000pt;}
.xb1{left:415.397250pt;}
.xa8{left:417.357017pt;}
.x7d{left:419.918667pt;}
.xa3{left:421.436328pt;}
.x36{left:424.046667pt;}
.xa1{left:426.256895pt;}
.x78{left:428.584000pt;}
.xa2{left:433.086551pt;}
.x95{left:436.966667pt;}
.x6c{left:439.497333pt;}
.x1b{left:440.859514pt;}
.x18{left:442.495419pt;}
.xa9{left:444.045824pt;}
.x2e{left:446.672000pt;}
.xb2{left:448.006696pt;}
.xaa{left:449.966463pt;}
.xa4{left:452.206196pt;}
.xc0{left:454.605333pt;}
.x1c{left:456.040105pt;}
.x25{left:457.572000pt;}
.x6d{left:458.596000pt;}
.xca{left:464.831870pt;}
.x1d{left:467.419569pt;}
.xbc{left:470.061333pt;}
.x26{left:472.762667pt;}
.x3c{left:473.989333pt;}
.x53{left:477.064000pt;}
.x7e{left:478.116000pt;}
.x5f{left:480.820000pt;}
.x52{left:482.438667pt;}
.xd0{left:483.778475pt;}
.x19{left:488.175119pt;}
.xd1{left:489.180151pt;}
.x7f{left:491.264000pt;}
.x5b{left:492.630667pt;}
.x1a{left:498.290197pt;}
.x54{left:500.322667pt;}
.x67{left:511.793333pt;}
.xe1{left:516.482381pt;}
.x73{left:522.025333pt;}
.x72{left:526.088000pt;}
.x3d{left:527.534667pt;}
.x48{left:530.266667pt;}
.x97{left:531.529333pt;}
.x87{left:533.470667pt;}
.x5c{left:534.562667pt;}
.x47{left:535.641333pt;}
.xe5{left:537.534267pt;}
.x50{left:538.761333pt;}
.x88{left:540.500000pt;}
.x80{left:542.585333pt;}
.x4f{left:544.137333pt;}
.x27{left:547.569333pt;}
.x3e{left:551.752000pt;}
.xb3{left:552.866362pt;}
.x74{left:555.018667pt;}
.x51{left:559.612000pt;}
.x3f{left:563.405333pt;}
.x93{left:565.460000pt;}
.xb4{left:568.166103pt;}
.x75{left:569.456000pt;}
.xc3{left:570.485333pt;}
.x6{left:572.958667pt;}
.x5d{left:577.244000pt;}
.x28{left:583.238667pt;}
.xc4{left:584.632000pt;}
.x96{left:590.616000pt;}
.x98{left:591.705333pt;}
.x7{left:592.660000pt;}
.x29{left:597.773333pt;}
.x5e{left:602.252000pt;}
.x2a{left:607.034667pt;}
.x56{left:614.220000pt;}
.x55{left:619.594667pt;}
.x79{left:626.013333pt;}
.x57{left:635.197333pt;}
.x1e{left:645.539711pt;}
.x20{left:650.209494pt;}
.x44{left:659.233333pt;}
.x82{left:662.817333pt;}
.x43{left:664.608000pt;}
.x1f{left:666.871270pt;}
.x83{left:681.546667pt;}
.x45{left:684.449333pt;}
.x2b{left:703.198667pt;}
.x4a{left:704.746667pt;}
.x49{left:710.122667pt;}
.x23{left:718.218667pt;}
.x2f{left:719.250667pt;}
.x24{left:724.362667pt;}
.x30{left:728.360000pt;}
.x4b{left:729.797333pt;}
.x31{left:738.930667pt;}
.x64{left:739.829333pt;}
}




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