
    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_2745024e2b914c620a964d0d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_dc3cdb7899edc0eb17019cb1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_642ff91ceafbe6f8ed6c4a7a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691895;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_b8e84e771f999c839a4437ef.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_2a69d72d639db619bd95d4f1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_a0592b1119ecc41ee7a72502.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_d3e7e2939b45fe558fbfc109.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f7ebe962b89c49a8a21fb866.woff')format("woff");}.ff9{font-family:ff9;line-height:0.969238;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_8c891cb9c669a4f319f84e5a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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;}
.m17{transform:matrix(0.132145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132145,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.135686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135686,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.232895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232895,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.239709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239709,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.240772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240772,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.241437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241437,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242031,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243877,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.243877,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243877,0.000001,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243929,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.244529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244529,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244533,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.244812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244812,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247512,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,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);}
.mb{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250351,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250704,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254637,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.257129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257129,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259984,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.259984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259984,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.261715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261715,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);}
.va{vertical-align:-44.362500px;}
.v9{vertical-align:-36.564064px;}
.vb{vertical-align:-28.097707px;}
.v3{vertical-align:-23.760000px;}
.v8{vertical-align:-18.281730px;}
.vc{vertical-align:-10.444941px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:4.135250px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:10.716061px;}
.v7{vertical-align:14.772323px;}
.v6{vertical-align:18.348249px;}
.v2{vertical-align:23.940000px;}
.ve{vertical-align:36.641307px;}
.ls9{letter-spacing:-0.870000px;}
.ls5{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.645422px;}
.ls1e{letter-spacing:-0.502464px;}
.ls2{letter-spacing:-0.472200px;}
.lsc{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.238800px;}
.lsb{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.070448px;}
.ls15{letter-spacing:0.080400px;}
.ls17{letter-spacing:0.080829px;}
.ls16{letter-spacing:0.142203px;}
.lsf{letter-spacing:0.178560px;}
.ls8{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.207360px;}
.ls14{letter-spacing:0.262200px;}
.lse{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.427054px;}
.ls10{letter-spacing:1.049760px;}
.ls23{letter-spacing:2.700000px;}
.ls7{letter-spacing:3.749760px;}
.ls24{letter-spacing:6.785280px;}
.ls21{letter-spacing:16.740000px;}
.ls6{letter-spacing:39.905280px;}
.lsd{letter-spacing:49.265280px;}
.ls19{letter-spacing:56.385156px;}
.ls1b{letter-spacing:85.372502px;}
.ls1a{letter-spacing:101.966989px;}
.ls1c{letter-spacing:104.520978px;}
.ls12{letter-spacing:117.355669px;}
.ls11{letter-spacing:117.644195px;}
.ls13{letter-spacing:132.532893px;}
.ls1d{letter-spacing:189.079333px;}
.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;}
}
.ws2a{word-spacing:-39.526829px;}
.ws3{word-spacing:-20.821200px;}
.ws17{word-spacing:-18.337352px;}
.ws31{word-spacing:-18.311693px;}
.ws1c{word-spacing:-18.308573px;}
.ws16{word-spacing:-18.292379px;}
.ws23{word-spacing:-18.060811px;}
.ws28{word-spacing:-17.999467px;}
.ws2b{word-spacing:-17.847808px;}
.ws18{word-spacing:-17.798822px;}
.ws1a{word-spacing:-17.763565px;}
.ws10{word-spacing:-16.920142px;}
.wsf{word-spacing:-16.865400px;}
.ws15{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.407600px;}
.wse{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.690000px;}
.wsa{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws30{word-spacing:-10.690433px;}
.ws1b{word-spacing:-10.685806px;}
.ws22{word-spacing:-10.543967px;}
.ws26{word-spacing:-10.494026px;}
.ws7{word-spacing:-10.440000px;}
.ws2d{word-spacing:-10.419615px;}
.ws19{word-spacing:-3.698588px;}
.ws8{word-spacing:0.000000px;}
.ws20{word-spacing:21.627218px;}
.ws21{word-spacing:25.844020px;}
.ws2f{word-spacing:44.172764px;}
.ws14{word-spacing:44.865572px;}
.ws12{word-spacing:44.975877px;}
.ws13{word-spacing:83.246783px;}
.ws11{word-spacing:83.451450px;}
.ws2e{word-spacing:135.452665px;}
.ws1f{word-spacing:152.236343px;}
.ws1e{word-spacing:190.703666px;}
.ws25{word-spacing:375.485761px;}
.ws24{word-spacing:435.513428px;}
.ws1d{word-spacing:450.994516px;}
.ws2c{word-spacing:454.162336px;}
.ws27{word-spacing:651.323393px;}
.ws29{word-spacing:802.482621px;}
._2f{margin-left:-291.992994px;}
._2b{margin-left:-273.983742px;}
._27{margin-left:-251.955249px;}
._30{margin-left:-226.625967px;}
._24{margin-left:-221.717836px;}
._2d{margin-left:-217.512039px;}
._22{margin-left:-199.420978px;}
._1b{margin-left:-195.682348px;}
._25{margin-left:-194.142028px;}
._32{margin-left:-188.227750px;}
._2a{margin-left:-187.201808px;}
._1a{margin-left:-181.611351px;}
._2c{margin-left:-179.914418px;}
._21{margin-left:-173.668814px;}
._1f{margin-left:-169.464078px;}
._34{margin-left:-166.008775px;}
._31{margin-left:-164.025587px;}
._29{margin-left:-157.006050px;}
._36{margin-left:-145.651972px;}
._33{margin-left:-139.980235px;}
._28{margin-left:-132.940648px;}
._26{margin-left:-125.676641px;}
._23{margin-left:-122.033324px;}
._35{margin-left:-116.006711px;}
._37{margin-left:-108.046289px;}
._1e{margin-left:-103.371965px;}
._20{margin-left:-101.168699px;}
._2e{margin-left:-87.413035px;}
._1c{margin-left:-85.374479px;}
._1d{margin-left:-82.786532px;}
._19{margin-left:-79.417635px;}
._17{margin-left:-9.774720px;}
._0{margin-left:-1.258800px;}
._2{width:1.042800px;}
._1{width:2.122560px;}
._12{width:3.577200px;}
._3{width:5.039040px;}
._7{width:6.292800px;}
._8{width:7.502400px;}
._11{width:8.660880px;}
._10{width:9.869760px;}
._15{width:11.297280px;}
._9{width:13.115520px;}
._6{width:14.507520px;}
._38{width:15.514560px;}
._c{width:17.588640px;}
._16{width:18.613440px;}
._b{width:19.674960px;}
._a{width:20.799360px;}
._18{width:22.388880px;}
._14{width:23.780640px;}
._13{width:25.237440px;}
._4{width:26.363520px;}
._5{width:27.440640px;}
._d{width:30.885120px;}
._f{width:32.141040px;}
._e{width:33.146160px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs1c{font-size:29.559324px;}
.fs1b{font-size:29.701526px;}
.fs2b{font-size:29.709861px;}
.fs26{font-size:30.023528px;}
.fs22{font-size:30.064431px;}
.fs1e{font-size:30.489255px;}
.fsd{font-size:30.525144px;}
.fsa{font-size:30.600192px;}
.fs8{font-size:38.880000px;}
.fs14{font-size:41.496698px;}
.fs2a{font-size:41.678460px;}
.fs7{font-size:41.760000px;}
.fs27{font-size:41.976104px;}
.fs23{font-size:42.175867px;}
.fse{font-size:42.647393px;}
.fs1f{font-size:42.743226px;}
.fsb{font-size:42.752244px;}
.fs10{font-size:42.761595px;}
.fs2d{font-size:42.761731px;}
.fs18{font-size:42.793539px;}
.fs12{font-size:42.806045px;}
.fs16{font-size:42.898749px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1a{font-size:67.546996px;}
.fs9{font-size:67.680566px;}
.fs1d{font-size:71.054259px;}
.fs15{font-size:71.195286px;}
.fs29{font-size:71.391232px;}
.fs2c{font-size:71.981585px;}
.fs28{font-size:71.997867px;}
.fs5{font-size:72.000000px;}
.fs24{font-size:72.243244px;}
.fsf{font-size:73.169518px;}
.fs11{font-size:73.220126px;}
.fs20{font-size:73.234290px;}
.fs2e{font-size:73.246772px;}
.fs19{font-size:73.320495px;}
.fsc{font-size:73.349409px;}
.fs17{font-size:73.500757px;}
.fs13{font-size:73.548275px;}
.fs2f{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs25{font-size:133.187522px;}
.fs21{font-size:135.230998px;}
.y0{bottom:0.000000px;}
.yf9{bottom:3.107116px;}
.yc3{bottom:3.146745px;}
.y95{bottom:3.193693px;}
.yaa{bottom:3.281450px;}
.yd0{bottom:3.526270px;}
.yda{bottom:3.561968px;}
.y12d{bottom:3.779694px;}
.y10c{bottom:3.780549px;}
.y139{bottom:3.838260px;}
.ybd{bottom:4.100095px;}
.yb7{bottom:4.110175px;}
.yf0{bottom:4.173324px;}
.ydd{bottom:4.183572px;}
.y9c{bottom:4.183574px;}
.ycb{bottom:4.183576px;}
.yc1{bottom:4.246542px;}
.ybb{bottom:4.256983px;}
.y9f{bottom:4.283068px;}
.yc6{bottom:4.283077px;}
.yd5{bottom:4.293598px;}
.y97{bottom:4.293601px;}
.y99{bottom:4.293604px;}
.ye2{bottom:4.753355px;}
.ye9{bottom:4.753363px;}
.yed{bottom:4.753364px;}
.yb2{bottom:4.808494px;}
.ya6{bottom:4.808507px;}
.y11e{bottom:4.870398px;}
.y122{bottom:4.870416px;}
.ya0{bottom:5.161603px;}
.y98{bottom:5.174309px;}
.y129{bottom:5.188004px;}
.yee{bottom:5.630895px;}
.ye8{bottom:5.777133px;}
.yd1{bottom:6.126608px;}
.yae{bottom:6.126623px;}
.ydb{bottom:6.162159px;}
.yfb{bottom:6.714134px;}
.y117{bottom:7.411457px;}
.y11a{bottom:7.411472px;}
.ybe{bottom:7.797383px;}
.yb8{bottom:7.816553px;}
.yc7{bottom:7.834065px;}
.yf1{bottom:7.834081px;}
.yd6{bottom:7.853309px;}
.yde{bottom:7.853317px;}
.y9a{bottom:7.853321px;}
.ycc{bottom:7.853325px;}
.yab{bottom:7.890230px;}
.y10e{bottom:8.274313px;}
.y110{bottom:8.274322px;}
.ye3{bottom:9.323941px;}
.yb3{bottom:9.396578px;}
.ya7{bottom:9.396617px;}
.y124{bottom:9.670169px;}
.y127{bottom:9.670191px;}
.yd2{bottom:10.579105px;}
.yaf{bottom:10.579142px;}
.yfd{bottom:11.249822px;}
.yff{bottom:11.249836px;}
.y1e{bottom:11.880000px;}
.ybf{bottom:12.373362px;}
.yb9{bottom:12.403781px;}
.yc8{bottom:12.409888px;}
.yf2{bottom:12.409914px;}
.yd7{bottom:12.440371px;}
.ydf{bottom:12.440384px;}
.y9b{bottom:12.440390px;}
.ycd{bottom:12.440397px;}
.y10b{bottom:13.267429px;}
.yf5{bottom:13.894384px;}
.ye7{bottom:14.040658px;}
.y10a{bottom:15.157679px;}
.y11c{bottom:16.304959px;}
.y120{bottom:16.304978px;}
.y116{bottom:22.057226px;}
.y119{bottom:22.057241px;}
.y113{bottom:22.326904px;}
.y109{bottom:22.432796px;}
.y13c{bottom:22.667866px;}
.y13b{bottom:22.667871px;}
.y126{bottom:23.540437px;}
.y11d{bottom:24.598615px;}
.y121{bottom:24.598634px;}
.y10{bottom:27.900000px;}
.y12e{bottom:29.239420px;}
.yfa{bottom:32.141854px;}
.y12a{bottom:32.892275px;}
.y46{bottom:32.940000px;}
.y10d{bottom:33.417520px;}
.y118{bottom:33.491934px;}
.y11b{bottom:33.491949px;}
.y111{bottom:33.560211px;}
.y1f{bottom:34.380000px;}
.y114{bottom:34.595726px;}
.y125{bottom:34.799012px;}
.yfc{bottom:35.784369px;}
.y11f{bottom:36.068255px;}
.y123{bottom:36.068274px;}
.y13a{bottom:36.390426px;}
.y128{bottom:37.375335px;}
.y45{bottom:37.620000px;}
.y1d{bottom:37.800000px;}
.y10f{bottom:37.912608px;}
.y112{bottom:37.912610px;}
.yfe{bottom:40.285593px;}
.y47{bottom:56.520000px;}
.y20{bottom:57.420000px;}
.y44{bottom:63.540000px;}
.y1c{bottom:63.720000px;}
.y7{bottom:72.540000px;}
.y43{bottom:77.220000px;}
.y1b{bottom:78.300000px;}
.y6{bottom:104.760000px;}
.y5{bottom:137.160000px;}
.y4{bottom:160.200000px;}
.y77{bottom:174.420000px;}
.y161{bottom:176.220000px;}
.y79{bottom:180.000000px;}
.ye6{bottom:180.794980px;}
.y14c{bottom:183.240000px;}
.y65{bottom:183.420000px;}
.y172{bottom:184.500000px;}
.y141{bottom:188.640000px;}
.ya1{bottom:188.820000px;}
.y82{bottom:190.440000px;}
.ye4{bottom:191.219980px;}
.ye5{bottom:194.250000px;}
.y42{bottom:196.230000px;}
.y160{bottom:198.210000px;}
.y3{bottom:202.530000px;}
.y64{bottom:205.230000px;}
.y78{bottom:206.310000px;}
.y9e{bottom:207.120000px;}
.y14b{bottom:209.370000px;}
.y140{bottom:210.450000px;}
.y171{bottom:215.310000px;}
.y81{bottom:216.390000px;}
.y41{bottom:218.010000px;}
.y9d{bottom:219.090000px;}
.y15f{bottom:219.990000px;}
.y2{bottom:223.410000px;}
.ye1{bottom:224.894980px;}
.ydc{bottom:226.319980px;}
.y63{bottom:227.010000px;}
.y13f{bottom:232.230000px;}
.y170{bottom:237.090000px;}
.ye0{bottom:238.350000px;}
.y40{bottom:239.790000px;}
.y96{bottom:240.719980px;}
.y15e{bottom:241.770000px;}
.y62{bottom:248.790000px;}
.y94{bottom:249.719980px;}
.y93{bottom:252.750000px;}
.y13e{bottom:254.190000px;}
.y3f{bottom:261.750000px;}
.y15d{bottom:263.550000px;}
.y16f{bottom:268.050000px;}
.yd4{bottom:268.995000px;}
.yd9{bottom:270.645000px;}
.y61{bottom:270.750000px;}
.y92{bottom:277.770000px;}
.y19{bottom:279.030000px;}
.yd8{bottom:281.010000px;}
.y138{bottom:281.594980px;}
.y3e{bottom:283.530000px;}
.y15c{bottom:285.330000px;}
.y16e{bottom:289.830000px;}
.y60{bottom:292.530000px;}
.y91{bottom:299.550000px;}
.y18{bottom:300.810000px;}
.y76{bottom:301.530000px;}
.y13d{bottom:304.050000px;}
.y15b{bottom:307.290000px;}
.ycf{bottom:311.670000px;}
.y3d{bottom:314.310000px;}
.y16d{bottom:320.610000px;}
.y90{bottom:321.510000px;}
.yd3{bottom:322.050000px;}
.y17{bottom:322.770000px;}
.y75{bottom:323.310000px;}
.y15a{bottom:329.070000px;}
.y3c{bottom:336.090000px;}
.y185{bottom:337.170000px;}
.y8f{bottom:343.290000px;}
.y16{bottom:344.550000px;}
.y74{bottom:345.090000px;}
.y159{bottom:350.850000px;}
.y16c{bottom:351.390000px;}
.y137{bottom:351.570000px;}
.yca{bottom:351.794959px;}
.y3b{bottom:358.050000px;}
.yce{bottom:363.810000px;}
.y8e{bottom:365.070000px;}
.y15{bottom:366.330000px;}
.y5f{bottom:367.050000px;}
.y184{bottom:368.130000px;}
.y158{bottom:372.630000px;}
.y136{bottom:373.350000px;}
.y14a{bottom:376.050000px;}
.y3a{bottom:379.830000px;}
.y16b{bottom:382.170000px;}
.y8d{bottom:386.850000px;}
.y14{bottom:388.110000px;}
.y73{bottom:388.830000px;}
.y134{bottom:391.769959px;}
.yc5{bottom:394.469959px;}
.y157{bottom:394.590000px;}
.y5e{bottom:397.875000px;}
.y183{bottom:398.955000px;}
.y39{bottom:401.655000px;}
.yc9{bottom:406.515000px;}
.y8c{bottom:408.855000px;}
.y135{bottom:409.755000px;}
.y13{bottom:410.115000px;}
.y72{bottom:410.655000px;}
.y16a{bottom:413.175000px;}
.y156{bottom:416.415000px;}
.y5d{bottom:419.655000px;}
.y182{bottom:429.735000px;}
.y8b{bottom:430.635000px;}
.y12{bottom:431.895000px;}
.y38{bottom:432.435000px;}
.yc2{bottom:437.519959px;}
.y155{bottom:438.195000px;}
.yc4{bottom:440.535000px;}
.y5c{bottom:441.435000px;}
.y169{bottom:443.955000px;}
.y133{bottom:444.495000px;}
.y11{bottom:453.675000px;}
.y37{bottom:454.215000px;}
.y154{bottom:459.975000px;}
.y181{bottom:460.515000px;}
.y8a{bottom:461.415000px;}
.y5b{bottom:463.215000px;}
.y132{bottom:466.455000px;}
.ybc{bottom:468.269959px;}
.y149{bottom:472.215000px;}
.y168{bottom:474.735000px;}
.y36{bottom:476.175000px;}
.yc0{bottom:480.315000px;}
.y153{bottom:481.755000px;}
.y5a{bottom:485.175000px;}
.y131{bottom:488.235000px;}
.y180{bottom:491.295000px;}
.y89{bottom:491.655000px;}
.y71{bottom:494.175000px;}
.y167{bottom:496.515000px;}
.y35{bottom:497.955000px;}
.y148{bottom:503.175000px;}
.yf{bottom:505.155000px;}
.y59{bottom:506.955000px;}
.y130{bottom:510.015000px;}
.yb6{bottom:510.719959px;}
.y152{bottom:512.715000px;}
.y70{bottom:515.955000px;}
.y88{bottom:517.755000px;}
.y34{bottom:519.735000px;}
.y17f{bottom:522.255000px;}
.yba{bottom:522.795000px;}
.y147{bottom:524.955000px;}
.y166{bottom:527.295000px;}
.y12c{bottom:528.419959px;}
.y58{bottom:528.735000px;}
.y6f{bottom:537.735000px;}
.y33{bottom:541.515000px;}
.y151{bottom:542.955000px;}
.y17e{bottom:544.035000px;}
.y12f{bottom:546.375000px;}
.y146{bottom:546.735000px;}
.y57{bottom:550.515000px;}
.yb5{bottom:556.995000px;}
.y165{bottom:558.255000px;}
.y6e{bottom:559.515000px;}
.y150{bottom:562.755000px;}
.y32{bottom:563.295000px;}
.y145{bottom:568.515000px;}
.y17d{bottom:574.815000px;}
.y56{bottom:581.295000px;}
.yb1{bottom:584.369959px;}
.y31{bottom:585.255000px;}
.y115{bottom:586.919959px;}
.y108{bottom:588.344959px;}
.y164{bottom:589.035000px;}
.y144{bottom:590.295000px;}
.yb4{bottom:593.355000px;}
.y14f{bottom:597.675000px;}
.y6d{bottom:603.285000px;}
.y17c{bottom:605.625000px;}
.y30{bottom:607.065000px;}
.y12b{bottom:610.845000px;}
.ye{bottom:611.745000px;}
.y55{bottom:612.285000px;}
.y163{bottom:619.845000px;}
.y80{bottom:621.285000px;}
.yad{bottom:623.969959px;}
.y6c{bottom:625.065000px;}
.y2f{bottom:628.845000px;}
.y54{bottom:634.065000px;}
.yb0{bottom:634.425000px;}
.y17b{bottom:636.585000px;}
.y7f{bottom:643.065000px;}
.y6b{bottom:646.845000px;}
.yd{bottom:650.085000px;}
.y2e{bottom:650.625000px;}
.y53{bottom:655.845000px;}
.y107{bottom:659.085000px;}
.y7e{bottom:664.845000px;}
.y17a{bottom:667.365000px;}
.yac{bottom:667.725000px;}
.yc{bottom:672.045000px;}
.y2d{bottom:672.585000px;}
.y52{bottom:677.625000px;}
.y106{bottom:680.865000px;}
.ya5{bottom:686.069919px;}
.y7d{bottom:686.625000px;}
.ya9{bottom:687.495000px;}
.y2c{bottom:694.365000px;}
.ya8{bottom:695.085000px;}
.y179{bottom:698.145000px;}
.y51{bottom:699.585000px;}
.y105{bottom:702.645000px;}
.y6a{bottom:708.585000px;}
.yb{bottom:709.485000px;}
.y2b{bottom:716.145000px;}
.y50{bottom:721.365000px;}
.y178{bottom:728.925000px;}
.ya4{bottom:729.105000px;}
.y69{bottom:730.365000px;}
.y104{bottom:733.605000px;}
.y2a{bottom:737.925000px;}
.y7c{bottom:739.365000px;}
.y4f{bottom:743.145000px;}
.y68{bottom:752.145000px;}
.ya3{bottom:759.345000px;}
.y29{bottom:759.705000px;}
.y7b{bottom:761.145000px;}
.y103{bottom:764.385000px;}
.y4e{bottom:764.925000px;}
.ya{bottom:772.845000px;}
.y143{bottom:773.925000px;}
.y28{bottom:781.665000px;}
.y67{bottom:782.925000px;}
.ya2{bottom:785.445000px;}
.y102{bottom:786.165000px;}
.y177{bottom:790.665000px;}
.y4d{bottom:795.705000px;}
.y27{bottom:803.445000px;}
.y66{bottom:804.705000px;}
.y101{bottom:807.990000px;}
.y9{bottom:809.250000px;}
.y14e{bottom:813.030000px;}
.y142{bottom:817.710000px;}
.y176{bottom:821.490000px;}
.y26{bottom:825.270000px;}
.y4c{bottom:826.710000px;}
.y87{bottom:835.710000px;}
.y100{bottom:838.770000px;}
.y14d{bottom:839.490000px;}
.y4b{bottom:848.490000px;}
.y175{bottom:852.270000px;}
.y25{bottom:856.050000px;}
.y86{bottom:857.490000px;}
.yf8{bottom:866.069919px;}
.y4a{bottom:870.270000px;}
.y174{bottom:874.050000px;}
.y85{bottom:879.270000px;}
.yf6{bottom:881.220000px;}
.yf7{bottom:891.690000px;}
.y49{bottom:892.050000px;}
.y84{bottom:901.050000px;}
.y173{bottom:905.010000px;}
.y8{bottom:906.270000px;}
.y24{bottom:914.010000px;}
.y83{bottom:923.010000px;}
.y23{bottom:935.790000px;}
.yf4{bottom:936.419919px;}
.yef{bottom:937.919919px;}
.y48{bottom:944.790000px;}
.yf3{bottom:950.010000px;}
.y162{bottom:953.790000px;}
.y7a{bottom:966.570000px;}
.y22{bottom:975.570000px;}
.yec{bottom:980.519919px;}
.yea{bottom:983.595000px;}
.yeb{bottom:994.110000px;}
.y21{bottom:997.350000px;}
.y1{bottom:1036.980000px;}
.y1a{bottom:1037.160000px;}
.h2f{height:18.675479px;}
.h15{height:18.749979px;}
.h38{height:21.375663px;}
.h35{height:21.478496px;}
.h4a{height:21.711350px;}
.h44{height:21.740929px;}
.h3b{height:22.048138px;}
.h1d{height:22.074091px;}
.h18{height:22.128361px;}
.h22{height:26.324589px;}
.h28{height:27.749754px;}
.h1f{height:27.749795px;}
.h34{height:28.424348px;}
.h25{height:28.424389px;}
.h1c{height:30.749496px;}
.h2c{height:30.749537px;}
.h41{height:30.749577px;}
.h37{height:30.825095px;}
.h17{height:30.825116px;}
.h29{height:30.825136px;}
.h3a{height:32.250011px;}
.h3f{height:32.250072px;}
.h26{height:34.202356px;}
.h53{height:34.352168px;}
.h4c{height:34.597492px;}
.h45{height:34.762141px;}
.h3{height:34.884492px;}
.h31{height:35.150781px;}
.h1a{height:35.237201px;}
.h20{height:35.244909px;}
.h2d{height:35.271237px;}
.h23{height:35.281545px;}
.h2a{height:35.357954px;}
.h4{height:39.049805px;}
.hd{height:43.215117px;}
.h54{height:46.426016px;}
.h13{height:46.736719px;}
.hb{height:47.901094px;}
.he{height:48.224531px;}
.h9{height:49.255313px;}
.h14{height:49.906406px;}
.h7{height:50.800781px;}
.h12{height:52.066406px;}
.h4b{height:52.713748px;}
.h10{height:53.958516px;}
.hf{height:54.138516px;}
.h8{height:54.596250px;}
.h57{height:54.748429px;}
.h48{height:55.423748px;}
.h30{height:55.673501px;}
.h4f{height:56.326453px;}
.h5{height:57.051211px;}
.h43{height:58.499611px;}
.h27{height:58.680490px;}
.h52{height:58.841992px;}
.h55{height:59.328572px;}
.h4d{height:59.341992px;}
.h5d{height:59.436914px;}
.h46{height:59.544236px;}
.h21{height:60.349401px;}
.h59{height:60.371363px;}
.h2e{height:60.432127px;}
.h1b{height:60.455958px;}
.h2b{height:60.580702px;}
.h24{height:60.619867px;}
.h16{height:62.690446px;}
.ha{height:64.800000px;}
.h2{height:65.884219px;}
.h36{height:65.946024px;}
.h50{height:66.127523px;}
.h4e{height:66.689430px;}
.h47{height:66.916716px;}
.h32{height:67.774695px;}
.h42{height:67.834692px;}
.h5b{height:67.846254px;}
.h33{height:67.941323px;}
.h56{height:70.809599px;}
.h51{height:71.355815px;}
.h5a{height:71.886327px;}
.h39{height:76.374239px;}
.h5c{height:77.342344px;}
.h11{height:77.580000px;}
.hc{height:77.760000px;}
.h58{height:78.620932px;}
.h3c{height:78.642805px;}
.h6{height:91.441406px;}
.h40{height:93.415128px;}
.h1e{height:96.767724px;}
.h19{height:97.005633px;}
.h3e{height:104.398755px;}
.h49{height:123.367544px;}
.h3d{height:125.260353px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.wb{width:18.750114px;}
.wc{width:19.425284px;}
.wd{width:21.074489px;}
.w13{width:21.749469px;}
.we{width:24.674632px;}
.wa{width:27.674406px;}
.w9{width:27.748924px;}
.w1b{width:28.424058px;}
.w7{width:28.424079px;}
.wf{width:30.749946px;}
.w11{width:31.500653px;}
.w1d{width:32.174849px;}
.w10{width:32.175664px;}
.w16{width:32.249353px;}
.w12{width:32.250185px;}
.w24{width:37.425046px;}
.w15{width:38.324277px;}
.w19{width:38.324292px;}
.w1f{width:38.399891px;}
.w4{width:39.600000px;}
.w6{width:39.996000px;}
.w14{width:40.499360px;}
.w17{width:40.499375px;}
.w18{width:59.925252px;}
.w1a{width:61.576654px;}
.w21{width:63.673770px;}
.w8{width:65.325304px;}
.w1e{width:69.001564px;}
.w20{width:80.248372px;}
.w25{width:91.423146px;}
.w1c{width:116.997300px;}
.w23{width:165.752989px;}
.w22{width:261.747848px;}
.w5{width:676.230000px;}
.w3{width:682.530000px;}
.w2{width:702.105000px;}
.w1{width:850.499987px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x1f{left:1.615032px;}
.x2a{left:3.341372px;}
.x6{left:8.640000px;}
.x1e{left:11.305376px;}
.x16{left:13.535437px;}
.x2f{left:14.591955px;}
.x1a{left:16.542923px;}
.x50{left:18.950936px;}
.x1d{left:19.967448px;}
.x2c{left:22.806273px;}
.x35{left:24.815521px;}
.x5a{left:28.588360px;}
.x34{left:30.779579px;}
.x32{left:31.928411px;}
.x4f{left:34.436175px;}
.x42{left:35.561572px;}
.x4d{left:38.298883px;}
.x4e{left:44.146717px;}
.x5{left:45.360000px;}
.x3b{left:46.620165px;}
.x3{left:48.960000px;}
.x5e{left:50.434001px;}
.x3a{left:52.612690px;}
.x8{left:53.999987px;}
.x19{left:57.265793px;}
.x47{left:59.179176px;}
.x5f{left:61.476216px;}
.x4b{left:65.177150px;}
.x63{left:66.849439px;}
.x58{left:70.618434px;}
.x27{left:72.719987px;}
.x29{left:75.059987px;}
.x59{left:76.922795px;}
.x2b{left:78.659987px;}
.x62{left:80.017011px;}
.x56{left:81.487764px;}
.xb{left:83.160000px;}
.x2d{left:84.815987px;}
.x36{left:86.255987px;}
.x2e{left:89.039990px;}
.x1{left:91.835987px;}
.x2{left:93.096000px;}
.x33{left:94.535987px;}
.x57{left:98.698909px;}
.x28{left:102.815987px;}
.x9{left:108.035987px;}
.x6a{left:118.835987px;}
.x30{left:121.175987px;}
.x53{left:124.061678px;}
.x31{left:126.035987px;}
.x61{left:129.275987px;}
.x5d{left:136.349481px;}
.x12{left:139.535987px;}
.xe{left:145.835987px;}
.x5c{left:155.722764px;}
.xa{left:187.949987px;}
.x55{left:190.733893px;}
.x52{left:214.440000px;}
.x67{left:227.549987px;}
.x26{left:230.429987px;}
.x65{left:244.469987px;}
.x54{left:253.732560px;}
.x3f{left:274.064980px;}
.x37{left:275.864980px;}
.x10{left:282.314987px;}
.x40{left:302.474987px;}
.x14{left:304.814987px;}
.x44{left:311.339980px;}
.x3d{left:314.534987px;}
.x38{left:316.334987px;}
.x41{left:320.114980px;}
.x3e{left:332.189980px;}
.x39{left:333.989980px;}
.x45{left:343.514987px;}
.x49{left:349.094987px;}
.x46{left:361.139959px;}
.x4{left:364.034987px;}
.x4a{left:366.764959px;}
.x15{left:389.264959px;}
.x3c{left:393.914987px;}
.x69{left:412.994987px;}
.x17{left:417.674987px;}
.x51{left:425.414987px;}
.x48{left:430.094987px;}
.x43{left:437.114987px;}
.x4c{left:447.044987px;}
.x23{left:467.564959px;}
.x5b{left:476.189959px;}
.x18{left:527.864959px;}
.x24{left:532.904987px;}
.x25{left:549.284987px;}
.x64{left:573.944987px;}
.x1b{left:593.204987px;}
.xf{left:620.789987px;}
.x13{left:624.209987px;}
.x11{left:636.989987px;}
.x66{left:649.049987px;}
.x68{left:652.469987px;}
.x60{left:654.809987px;}
.x1c{left:657.240000px;}
.x20{left:685.049987px;}
.x21{left:718.665000px;}
.x7{left:727.890000px;}
.x22{left:746.429987px;}
.xc{left:759.390000px;}
.xd{left:796.679987px;}
@media print{
.va{vertical-align:-39.433333pt;}
.v9{vertical-align:-32.501390pt;}
.vb{vertical-align:-24.975740pt;}
.v3{vertical-align:-21.120000pt;}
.v8{vertical-align:-16.250427pt;}
.vc{vertical-align:-9.284392pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:3.675778pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:9.525387pt;}
.v7{vertical-align:13.130954pt;}
.v6{vertical-align:16.309555pt;}
.v2{vertical-align:21.280000pt;}
.ve{vertical-align:32.570050pt;}
.ls9{letter-spacing:-0.773333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.573708pt;}
.ls1e{letter-spacing:-0.446635pt;}
.ls2{letter-spacing:-0.419733pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.212267pt;}
.lsb{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.062620pt;}
.ls15{letter-spacing:0.071467pt;}
.ls17{letter-spacing:0.071848pt;}
.ls16{letter-spacing:0.126402pt;}
.lsf{letter-spacing:0.158720pt;}
.ls8{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.184320pt;}
.ls14{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.379604pt;}
.ls10{letter-spacing:0.933120pt;}
.ls23{letter-spacing:2.400000pt;}
.ls7{letter-spacing:3.333120pt;}
.ls24{letter-spacing:6.031360pt;}
.ls21{letter-spacing:14.880000pt;}
.ls6{letter-spacing:35.471360pt;}
.lsd{letter-spacing:43.791360pt;}
.ls19{letter-spacing:50.120138pt;}
.ls1b{letter-spacing:75.886668pt;}
.ls1a{letter-spacing:90.637324pt;}
.ls1c{letter-spacing:92.907536pt;}
.ls12{letter-spacing:104.316151pt;}
.ls11{letter-spacing:104.572618pt;}
.ls13{letter-spacing:117.807016pt;}
.ls1d{letter-spacing:168.070518pt;}
.ws2a{word-spacing:-35.134959pt;}
.ws3{word-spacing:-18.507733pt;}
.ws17{word-spacing:-16.299869pt;}
.ws31{word-spacing:-16.277061pt;}
.ws1c{word-spacing:-16.274287pt;}
.ws16{word-spacing:-16.259893pt;}
.ws23{word-spacing:-16.054054pt;}
.ws28{word-spacing:-15.999526pt;}
.ws2b{word-spacing:-15.864718pt;}
.ws18{word-spacing:-15.821175pt;}
.ws1a{word-spacing:-15.789835pt;}
.ws10{word-spacing:-15.040126pt;}
.wsf{word-spacing:-14.991467pt;}
.ws15{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.584533pt;}
.wse{word-spacing:-14.313067pt;}
.ws5{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.946667pt;}
.wsa{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws30{word-spacing:-9.502607pt;}
.ws1b{word-spacing:-9.498495pt;}
.ws22{word-spacing:-9.372415pt;}
.ws26{word-spacing:-9.328023pt;}
.ws7{word-spacing:-9.280000pt;}
.ws2d{word-spacing:-9.261880pt;}
.ws19{word-spacing:-3.287634pt;}
.ws8{word-spacing:0.000000pt;}
.ws20{word-spacing:19.224194pt;}
.ws21{word-spacing:22.972462pt;}
.ws2f{word-spacing:39.264679pt;}
.ws14{word-spacing:39.880509pt;}
.ws12{word-spacing:39.978557pt;}
.ws13{word-spacing:73.997141pt;}
.ws11{word-spacing:74.179067pt;}
.ws2e{word-spacing:120.402368pt;}
.ws1f{word-spacing:135.321194pt;}
.ws1e{word-spacing:169.514370pt;}
.ws25{word-spacing:333.765121pt;}
.ws24{word-spacing:387.123047pt;}
.ws1d{word-spacing:400.884014pt;}
.ws2c{word-spacing:403.699854pt;}
.ws27{word-spacing:578.954127pt;}
.ws29{word-spacing:713.317885pt;}
._2f{margin-left:-259.549328pt;}
._2b{margin-left:-243.541104pt;}
._27{margin-left:-223.960222pt;}
._30{margin-left:-201.445304pt;}
._24{margin-left:-197.082521pt;}
._2d{margin-left:-193.344035pt;}
._22{margin-left:-177.263091pt;}
._1b{margin-left:-173.939865pt;}
._25{margin-left:-172.570692pt;}
._32{margin-left:-167.313556pt;}
._2a{margin-left:-166.401607pt;}
._1a{margin-left:-161.432312pt;}
._2c{margin-left:-159.923927pt;}
._21{margin-left:-154.372279pt;}
._1f{margin-left:-150.634736pt;}
._34{margin-left:-147.563356pt;}
._31{margin-left:-145.800522pt;}
._29{margin-left:-139.560933pt;}
._36{margin-left:-129.468419pt;}
._33{margin-left:-124.426875pt;}
._28{margin-left:-118.169465pt;}
._26{margin-left:-111.712570pt;}
._23{margin-left:-108.474066pt;}
._35{margin-left:-103.117077pt;}
._37{margin-left:-96.041146pt;}
._1e{margin-left:-91.886191pt;}
._20{margin-left:-89.927732pt;}
._2e{margin-left:-77.700476pt;}
._1c{margin-left:-75.888425pt;}
._1d{margin-left:-73.588029pt;}
._19{margin-left:-70.593454pt;}
._17{margin-left:-8.688640pt;}
._0{margin-left:-1.118933pt;}
._2{width:0.926933pt;}
._1{width:1.886720pt;}
._12{width:3.179733pt;}
._3{width:4.479147pt;}
._7{width:5.593600pt;}
._8{width:6.668800pt;}
._11{width:7.698560pt;}
._10{width:8.773120pt;}
._15{width:10.042027pt;}
._9{width:11.658240pt;}
._6{width:12.895573pt;}
._38{width:13.790720pt;}
._c{width:15.634347pt;}
._16{width:16.545280pt;}
._b{width:17.488853pt;}
._a{width:18.488320pt;}
._18{width:19.901227pt;}
._14{width:21.138347pt;}
._13{width:22.433280pt;}
._4{width:23.434240pt;}
._5{width:24.391680pt;}
._d{width:27.453440pt;}
._f{width:28.569813pt;}
._e{width:29.463253pt;}
.fs1c{font-size:26.274955pt;}
.fs1b{font-size:26.401357pt;}
.fs2b{font-size:26.408765pt;}
.fs26{font-size:26.687581pt;}
.fs22{font-size:26.723938pt;}
.fs1e{font-size:27.101560pt;}
.fsd{font-size:27.133461pt;}
.fsa{font-size:27.200170pt;}
.fs8{font-size:34.560000pt;}
.fs14{font-size:36.885954pt;}
.fs2a{font-size:37.047520pt;}
.fs7{font-size:37.120000pt;}
.fs27{font-size:37.312092pt;}
.fs23{font-size:37.489660pt;}
.fse{font-size:37.908794pt;}
.fs1f{font-size:37.993978pt;}
.fsb{font-size:38.001995pt;}
.fs10{font-size:38.010307pt;}
.fs2d{font-size:38.010428pt;}
.fs18{font-size:38.038701pt;}
.fs12{font-size:38.049818pt;}
.fs16{font-size:38.132222pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1a{font-size:60.041774pt;}
.fs9{font-size:60.160503pt;}
.fs1d{font-size:63.159341pt;}
.fs15{font-size:63.284699pt;}
.fs29{font-size:63.458873pt;}
.fs2c{font-size:63.983631pt;}
.fs28{font-size:63.998104pt;}
.fs5{font-size:64.000000pt;}
.fs24{font-size:64.216217pt;}
.fsf{font-size:65.039571pt;}
.fs11{font-size:65.084557pt;}
.fs20{font-size:65.097147pt;}
.fs2e{font-size:65.108242pt;}
.fs19{font-size:65.173773pt;}
.fsc{font-size:65.199475pt;}
.fs17{font-size:65.334007pt;}
.fs13{font-size:65.376244pt;}
.fs2f{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs25{font-size:118.388908pt;}
.fs21{font-size:120.205332pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:2.761881pt;}
.yc3{bottom:2.797106pt;}
.y95{bottom:2.838838pt;}
.yaa{bottom:2.916845pt;}
.yd0{bottom:3.134463pt;}
.yda{bottom:3.166194pt;}
.y12d{bottom:3.359728pt;}
.y10c{bottom:3.360488pt;}
.y139{bottom:3.411787pt;}
.ybd{bottom:3.644529pt;}
.yb7{bottom:3.653489pt;}
.yf0{bottom:3.709621pt;}
.ydd{bottom:3.718731pt;}
.y9c{bottom:3.718733pt;}
.ycb{bottom:3.718734pt;}
.yc1{bottom:3.774704pt;}
.ybb{bottom:3.783985pt;}
.y9f{bottom:3.807172pt;}
.yc6{bottom:3.807179pt;}
.yd5{bottom:3.816532pt;}
.y97{bottom:3.816534pt;}
.y99{bottom:3.816537pt;}
.ye2{bottom:4.225205pt;}
.ye9{bottom:4.225211pt;}
.yed{bottom:4.225212pt;}
.yb2{bottom:4.274217pt;}
.ya6{bottom:4.274229pt;}
.y11e{bottom:4.329242pt;}
.y122{bottom:4.329259pt;}
.ya0{bottom:4.588092pt;}
.y98{bottom:4.599385pt;}
.y129{bottom:4.611559pt;}
.yee{bottom:5.005240pt;}
.ye8{bottom:5.135229pt;}
.yd1{bottom:5.445874pt;}
.yae{bottom:5.445887pt;}
.ydb{bottom:5.477475pt;}
.yfb{bottom:5.968119pt;}
.y117{bottom:6.587962pt;}
.y11a{bottom:6.587975pt;}
.ybe{bottom:6.931007pt;}
.yb8{bottom:6.948047pt;}
.yc7{bottom:6.963614pt;}
.yf1{bottom:6.963628pt;}
.yd6{bottom:6.980719pt;}
.yde{bottom:6.980726pt;}
.y9a{bottom:6.980729pt;}
.ycc{bottom:6.980733pt;}
.yab{bottom:7.013538pt;}
.y10e{bottom:7.354945pt;}
.y110{bottom:7.354953pt;}
.ye3{bottom:8.287947pt;}
.yb3{bottom:8.352514pt;}
.ya7{bottom:8.352548pt;}
.y124{bottom:8.595706pt;}
.y127{bottom:8.595725pt;}
.yd2{bottom:9.403649pt;}
.yaf{bottom:9.403682pt;}
.yfd{bottom:9.999842pt;}
.yff{bottom:9.999855pt;}
.y1e{bottom:10.560000pt;}
.ybf{bottom:10.998544pt;}
.yb9{bottom:11.025583pt;}
.yc8{bottom:11.031011pt;}
.yf2{bottom:11.031034pt;}
.yd7{bottom:11.058108pt;}
.ydf{bottom:11.058119pt;}
.y9b{bottom:11.058125pt;}
.ycd{bottom:11.058131pt;}
.y10b{bottom:11.793270pt;}
.yf5{bottom:12.350563pt;}
.ye7{bottom:12.480585pt;}
.y10a{bottom:13.473493pt;}
.y11c{bottom:14.493297pt;}
.y120{bottom:14.493314pt;}
.y116{bottom:19.606424pt;}
.y119{bottom:19.606437pt;}
.y113{bottom:19.846137pt;}
.y109{bottom:19.940263pt;}
.y13c{bottom:20.149214pt;}
.y13b{bottom:20.149219pt;}
.y126{bottom:20.924833pt;}
.y11d{bottom:21.865436pt;}
.y121{bottom:21.865452pt;}
.y10{bottom:24.800000pt;}
.y12e{bottom:25.990596pt;}
.yfa{bottom:28.570537pt;}
.y12a{bottom:29.237578pt;}
.y46{bottom:29.280000pt;}
.y10d{bottom:29.704462pt;}
.y118{bottom:29.770608pt;}
.y11b{bottom:29.770621pt;}
.y111{bottom:29.831299pt;}
.y1f{bottom:30.560000pt;}
.y114{bottom:30.751756pt;}
.y125{bottom:30.932455pt;}
.yfc{bottom:31.808328pt;}
.y11f{bottom:32.060671pt;}
.y123{bottom:32.060688pt;}
.y13a{bottom:32.347045pt;}
.y128{bottom:33.222520pt;}
.y45{bottom:33.440000pt;}
.y1d{bottom:33.600000pt;}
.y10f{bottom:33.700096pt;}
.y112{bottom:33.700098pt;}
.yfe{bottom:35.809416pt;}
.y47{bottom:50.240000pt;}
.y20{bottom:51.040000pt;}
.y44{bottom:56.480000pt;}
.y1c{bottom:56.640000pt;}
.y7{bottom:64.480000pt;}
.y43{bottom:68.640000pt;}
.y1b{bottom:69.600000pt;}
.y6{bottom:93.120000pt;}
.y5{bottom:121.920000pt;}
.y4{bottom:142.400000pt;}
.y77{bottom:155.040000pt;}
.y161{bottom:156.640000pt;}
.y79{bottom:160.000000pt;}
.ye6{bottom:160.706649pt;}
.y14c{bottom:162.880000pt;}
.y65{bottom:163.040000pt;}
.y172{bottom:164.000000pt;}
.y141{bottom:167.680000pt;}
.ya1{bottom:167.840000pt;}
.y82{bottom:169.280000pt;}
.ye4{bottom:169.973315pt;}
.ye5{bottom:172.666667pt;}
.y42{bottom:174.426667pt;}
.y160{bottom:176.186667pt;}
.y3{bottom:180.026667pt;}
.y64{bottom:182.426667pt;}
.y78{bottom:183.386667pt;}
.y9e{bottom:184.106667pt;}
.y14b{bottom:186.106667pt;}
.y140{bottom:187.066667pt;}
.y171{bottom:191.386667pt;}
.y81{bottom:192.346667pt;}
.y41{bottom:193.786667pt;}
.y9d{bottom:194.746667pt;}
.y15f{bottom:195.546667pt;}
.y2{bottom:198.586667pt;}
.ye1{bottom:199.906649pt;}
.ydc{bottom:201.173315pt;}
.y63{bottom:201.786667pt;}
.y13f{bottom:206.426667pt;}
.y170{bottom:210.746667pt;}
.ye0{bottom:211.866667pt;}
.y40{bottom:213.146667pt;}
.y96{bottom:213.973315pt;}
.y15e{bottom:214.906667pt;}
.y62{bottom:221.146667pt;}
.y94{bottom:221.973315pt;}
.y93{bottom:224.666667pt;}
.y13e{bottom:225.946667pt;}
.y3f{bottom:232.666667pt;}
.y15d{bottom:234.266667pt;}
.y16f{bottom:238.266667pt;}
.yd4{bottom:239.106667pt;}
.yd9{bottom:240.573333pt;}
.y61{bottom:240.666667pt;}
.y92{bottom:246.906667pt;}
.y19{bottom:248.026667pt;}
.yd8{bottom:249.786667pt;}
.y138{bottom:250.306649pt;}
.y3e{bottom:252.026667pt;}
.y15c{bottom:253.626667pt;}
.y16e{bottom:257.626667pt;}
.y60{bottom:260.026667pt;}
.y91{bottom:266.266667pt;}
.y18{bottom:267.386667pt;}
.y76{bottom:268.026667pt;}
.y13d{bottom:270.266667pt;}
.y15b{bottom:273.146667pt;}
.ycf{bottom:277.040000pt;}
.y3d{bottom:279.386667pt;}
.y16d{bottom:284.986667pt;}
.y90{bottom:285.786667pt;}
.yd3{bottom:286.266667pt;}
.y17{bottom:286.906667pt;}
.y75{bottom:287.386667pt;}
.y15a{bottom:292.506667pt;}
.y3c{bottom:298.746667pt;}
.y185{bottom:299.706667pt;}
.y8f{bottom:305.146667pt;}
.y16{bottom:306.266667pt;}
.y74{bottom:306.746667pt;}
.y159{bottom:311.866667pt;}
.y16c{bottom:312.346667pt;}
.y137{bottom:312.506667pt;}
.yca{bottom:312.706630pt;}
.y3b{bottom:318.266667pt;}
.yce{bottom:323.386667pt;}
.y8e{bottom:324.506667pt;}
.y15{bottom:325.626667pt;}
.y5f{bottom:326.266667pt;}
.y184{bottom:327.226667pt;}
.y158{bottom:331.226667pt;}
.y136{bottom:331.866667pt;}
.y14a{bottom:334.266667pt;}
.y3a{bottom:337.626667pt;}
.y16b{bottom:339.706667pt;}
.y8d{bottom:343.866667pt;}
.y14{bottom:344.986667pt;}
.y73{bottom:345.626667pt;}
.y134{bottom:348.239964pt;}
.yc5{bottom:350.639964pt;}
.y157{bottom:350.746667pt;}
.y5e{bottom:353.666667pt;}
.y183{bottom:354.626667pt;}
.y39{bottom:357.026667pt;}
.yc9{bottom:361.346667pt;}
.y8c{bottom:363.426667pt;}
.y135{bottom:364.226667pt;}
.y13{bottom:364.546667pt;}
.y72{bottom:365.026667pt;}
.y16a{bottom:367.266667pt;}
.y156{bottom:370.146667pt;}
.y5d{bottom:373.026667pt;}
.y182{bottom:381.986667pt;}
.y8b{bottom:382.786667pt;}
.y12{bottom:383.906667pt;}
.y38{bottom:384.386667pt;}
.yc2{bottom:388.906630pt;}
.y155{bottom:389.506667pt;}
.yc4{bottom:391.586667pt;}
.y5c{bottom:392.386667pt;}
.y169{bottom:394.626667pt;}
.y133{bottom:395.106667pt;}
.y11{bottom:403.266667pt;}
.y37{bottom:403.746667pt;}
.y154{bottom:408.866667pt;}
.y181{bottom:409.346667pt;}
.y8a{bottom:410.146667pt;}
.y5b{bottom:411.746667pt;}
.y132{bottom:414.626667pt;}
.ybc{bottom:416.239964pt;}
.y149{bottom:419.746667pt;}
.y168{bottom:421.986667pt;}
.y36{bottom:423.266667pt;}
.yc0{bottom:426.946667pt;}
.y153{bottom:428.226667pt;}
.y5a{bottom:431.266667pt;}
.y131{bottom:433.986667pt;}
.y180{bottom:436.706667pt;}
.y89{bottom:437.026667pt;}
.y71{bottom:439.266667pt;}
.y167{bottom:441.346667pt;}
.y35{bottom:442.626667pt;}
.y148{bottom:447.266667pt;}
.yf{bottom:449.026667pt;}
.y59{bottom:450.626667pt;}
.y130{bottom:453.346667pt;}
.yb6{bottom:453.973297pt;}
.y152{bottom:455.746667pt;}
.y70{bottom:458.626667pt;}
.y88{bottom:460.226667pt;}
.y34{bottom:461.986667pt;}
.y17f{bottom:464.226667pt;}
.yba{bottom:464.706667pt;}
.y147{bottom:466.626667pt;}
.y166{bottom:468.706667pt;}
.y12c{bottom:469.706630pt;}
.y58{bottom:469.986667pt;}
.y6f{bottom:477.986667pt;}
.y33{bottom:481.346667pt;}
.y151{bottom:482.626667pt;}
.y17e{bottom:483.586667pt;}
.y12f{bottom:485.666667pt;}
.y146{bottom:485.986667pt;}
.y57{bottom:489.346667pt;}
.yb5{bottom:495.106667pt;}
.y165{bottom:496.226667pt;}
.y6e{bottom:497.346667pt;}
.y150{bottom:500.226667pt;}
.y32{bottom:500.706667pt;}
.y145{bottom:505.346667pt;}
.y17d{bottom:510.946667pt;}
.y56{bottom:516.706667pt;}
.yb1{bottom:519.439964pt;}
.y31{bottom:520.226667pt;}
.y115{bottom:521.706630pt;}
.y108{bottom:522.973297pt;}
.y164{bottom:523.586667pt;}
.y144{bottom:524.706667pt;}
.yb4{bottom:527.426667pt;}
.y14f{bottom:531.266667pt;}
.y6d{bottom:536.253333pt;}
.y17c{bottom:538.333333pt;}
.y30{bottom:539.613333pt;}
.y12b{bottom:542.973333pt;}
.ye{bottom:543.773333pt;}
.y55{bottom:544.253333pt;}
.y163{bottom:550.973333pt;}
.y80{bottom:552.253333pt;}
.yad{bottom:554.639964pt;}
.y6c{bottom:555.613333pt;}
.y2f{bottom:558.973333pt;}
.y54{bottom:563.613333pt;}
.yb0{bottom:563.933333pt;}
.y17b{bottom:565.853333pt;}
.y7f{bottom:571.613333pt;}
.y6b{bottom:574.973333pt;}
.yd{bottom:577.853333pt;}
.y2e{bottom:578.333333pt;}
.y53{bottom:582.973333pt;}
.y107{bottom:585.853333pt;}
.y7e{bottom:590.973333pt;}
.y17a{bottom:593.213333pt;}
.yac{bottom:593.533333pt;}
.yc{bottom:597.373333pt;}
.y2d{bottom:597.853333pt;}
.y52{bottom:602.333333pt;}
.y106{bottom:605.213333pt;}
.ya5{bottom:609.839928pt;}
.y7d{bottom:610.333333pt;}
.ya9{bottom:611.106667pt;}
.y2c{bottom:617.213333pt;}
.ya8{bottom:617.853333pt;}
.y179{bottom:620.573333pt;}
.y51{bottom:621.853333pt;}
.y105{bottom:624.573333pt;}
.y6a{bottom:629.853333pt;}
.yb{bottom:630.653333pt;}
.y2b{bottom:636.573333pt;}
.y50{bottom:641.213333pt;}
.y178{bottom:647.933333pt;}
.ya4{bottom:648.093333pt;}
.y69{bottom:649.213333pt;}
.y104{bottom:652.093333pt;}
.y2a{bottom:655.933333pt;}
.y7c{bottom:657.213333pt;}
.y4f{bottom:660.573333pt;}
.y68{bottom:668.573333pt;}
.ya3{bottom:674.973333pt;}
.y29{bottom:675.293333pt;}
.y7b{bottom:676.573333pt;}
.y103{bottom:679.453333pt;}
.y4e{bottom:679.933333pt;}
.ya{bottom:686.973333pt;}
.y143{bottom:687.933333pt;}
.y28{bottom:694.813333pt;}
.y67{bottom:695.933333pt;}
.ya2{bottom:698.173333pt;}
.y102{bottom:698.813333pt;}
.y177{bottom:702.813333pt;}
.y4d{bottom:707.293333pt;}
.y27{bottom:714.173333pt;}
.y66{bottom:715.293333pt;}
.y101{bottom:718.213333pt;}
.y9{bottom:719.333333pt;}
.y14e{bottom:722.693333pt;}
.y142{bottom:726.853333pt;}
.y176{bottom:730.213333pt;}
.y26{bottom:733.573333pt;}
.y4c{bottom:734.853333pt;}
.y87{bottom:742.853333pt;}
.y100{bottom:745.573333pt;}
.y14d{bottom:746.213333pt;}
.y4b{bottom:754.213333pt;}
.y175{bottom:757.573333pt;}
.y25{bottom:760.933333pt;}
.y86{bottom:762.213333pt;}
.yf8{bottom:769.839928pt;}
.y4a{bottom:773.573333pt;}
.y174{bottom:776.933333pt;}
.y85{bottom:781.573333pt;}
.yf6{bottom:783.306667pt;}
.yf7{bottom:792.613333pt;}
.y49{bottom:792.933333pt;}
.y84{bottom:800.933333pt;}
.y173{bottom:804.453333pt;}
.y8{bottom:805.573333pt;}
.y24{bottom:812.453333pt;}
.y83{bottom:820.453333pt;}
.y23{bottom:831.813333pt;}
.yf4{bottom:832.373261pt;}
.yef{bottom:833.706594pt;}
.y48{bottom:839.813333pt;}
.yf3{bottom:844.453333pt;}
.y162{bottom:847.813333pt;}
.y7a{bottom:859.173333pt;}
.y22{bottom:867.173333pt;}
.yec{bottom:871.573261pt;}
.yea{bottom:874.306667pt;}
.yeb{bottom:883.653333pt;}
.y21{bottom:886.533333pt;}
.y1{bottom:921.760000pt;}
.y1a{bottom:921.920000pt;}
.h2f{height:16.600426pt;}
.h15{height:16.666648pt;}
.h38{height:19.000590pt;}
.h35{height:19.091997pt;}
.h4a{height:19.298978pt;}
.h44{height:19.325270pt;}
.h3b{height:19.598345pt;}
.h1d{height:19.621414pt;}
.h18{height:19.669655pt;}
.h22{height:23.399635pt;}
.h28{height:24.666448pt;}
.h1f{height:24.666484pt;}
.h34{height:25.266087pt;}
.h25{height:25.266123pt;}
.h1c{height:27.332885pt;}
.h2c{height:27.332921pt;}
.h41{height:27.332958pt;}
.h37{height:27.400085pt;}
.h17{height:27.400103pt;}
.h29{height:27.400121pt;}
.h3a{height:28.666676pt;}
.h3f{height:28.666730pt;}
.h26{height:30.402095pt;}
.h53{height:30.535260pt;}
.h4c{height:30.753326pt;}
.h45{height:30.899681pt;}
.h3{height:31.008437pt;}
.h31{height:31.245139pt;}
.h1a{height:31.321957pt;}
.h20{height:31.328808pt;}
.h2d{height:31.352211pt;}
.h23{height:31.361373pt;}
.h2a{height:31.429292pt;}
.h4{height:34.710938pt;}
.hd{height:38.413438pt;}
.h54{height:41.267570pt;}
.h13{height:41.543750pt;}
.hb{height:42.578750pt;}
.he{height:42.866250pt;}
.h9{height:43.782500pt;}
.h14{height:44.361250pt;}
.h7{height:45.156250pt;}
.h12{height:46.281250pt;}
.h4b{height:46.856665pt;}
.h10{height:47.963125pt;}
.hf{height:48.123125pt;}
.h8{height:48.530000pt;}
.h57{height:48.665270pt;}
.h48{height:49.265554pt;}
.h30{height:49.487556pt;}
.h4f{height:50.067958pt;}
.h5{height:50.712187pt;}
.h43{height:51.999654pt;}
.h27{height:52.160435pt;}
.h52{height:52.303993pt;}
.h55{height:52.736509pt;}
.h4d{height:52.748437pt;}
.h5d{height:52.832812pt;}
.h46{height:52.928210pt;}
.h21{height:53.643912pt;}
.h59{height:53.663434pt;}
.h2e{height:53.717446pt;}
.h1b{height:53.738630pt;}
.h2b{height:53.849513pt;}
.h24{height:53.884326pt;}
.h16{height:55.724841pt;}
.ha{height:57.600000pt;}
.h2{height:58.563750pt;}
.h36{height:58.618688pt;}
.h50{height:58.780020pt;}
.h4e{height:59.279494pt;}
.h47{height:59.481525pt;}
.h32{height:60.244173pt;}
.h42{height:60.297504pt;}
.h5b{height:60.307781pt;}
.h33{height:60.392287pt;}
.h56{height:62.941866pt;}
.h51{height:63.427391pt;}
.h5a{height:63.898957pt;}
.h39{height:67.888212pt;}
.h5c{height:68.748750pt;}
.h11{height:68.960000pt;}
.hc{height:69.120000pt;}
.h58{height:69.885273pt;}
.h3c{height:69.904716pt;}
.h6{height:81.281250pt;}
.h40{height:83.035670pt;}
.h1e{height:86.015755pt;}
.h19{height:86.227229pt;}
.h3e{height:92.798893pt;}
.h49{height:109.660039pt;}
.h3d{height:111.342536pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.wb{width:16.666768pt;}
.wc{width:17.266919pt;}
.wd{width:18.732879pt;}
.w13{width:19.332861pt;}
.we{width:21.933006pt;}
.wa{width:24.599472pt;}
.w9{width:24.665710pt;}
.w1b{width:25.265830pt;}
.w7{width:25.265848pt;}
.wf{width:27.333285pt;}
.w11{width:28.000580pt;}
.w1d{width:28.599866pt;}
.w10{width:28.600590pt;}
.w16{width:28.666092pt;}
.w12{width:28.666831pt;}
.w24{width:33.266708pt;}
.w15{width:34.066024pt;}
.w19{width:34.066037pt;}
.w1f{width:34.133236pt;}
.w4{width:35.200000pt;}
.w6{width:35.552000pt;}
.w14{width:35.999431pt;}
.w17{width:35.999444pt;}
.w18{width:53.266891pt;}
.w1a{width:54.734803pt;}
.w21{width:56.598906pt;}
.w8{width:58.066937pt;}
.w1e{width:61.334724pt;}
.w20{width:71.331886pt;}
.w25{width:81.265019pt;}
.w1c{width:103.997600pt;}
.w23{width:147.335990pt;}
.w22{width:232.664754pt;}
.w5{width:601.093333pt;}
.w3{width:606.693333pt;}
.w2{width:624.093333pt;}
.w1{width:755.999989pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.435584pt;}
.x2a{left:2.970108pt;}
.x6{left:7.680000pt;}
.x1e{left:10.049223pt;}
.x16{left:12.031500pt;}
.x2f{left:12.970627pt;}
.x1a{left:14.704820pt;}
.x50{left:16.845276pt;}
.x1d{left:17.748842pt;}
.x2c{left:20.272243pt;}
.x35{left:22.058241pt;}
.x5a{left:25.411876pt;}
.x34{left:27.359626pt;}
.x32{left:28.380810pt;}
.x4f{left:30.609934pt;}
.x42{left:31.610286pt;}
.x4d{left:34.043452pt;}
.x4e{left:39.241526pt;}
.x5{left:40.320000pt;}
.x3b{left:41.440147pt;}
.x3{left:43.520000pt;}
.x5e{left:44.830223pt;}
.x3a{left:46.766836pt;}
.x8{left:47.999989pt;}
.x19{left:50.902927pt;}
.x47{left:52.603712pt;}
.x5f{left:54.645526pt;}
.x4b{left:57.935244pt;}
.x63{left:59.421723pt;}
.x58{left:62.771941pt;}
.x27{left:64.639989pt;}
.x29{left:66.719989pt;}
.x59{left:68.375818pt;}
.x2b{left:69.919989pt;}
.x62{left:71.126232pt;}
.x56{left:72.433568pt;}
.xb{left:73.920000pt;}
.x2d{left:75.391989pt;}
.x36{left:76.671989pt;}
.x2e{left:79.146658pt;}
.x1{left:81.631989pt;}
.x2{left:82.752000pt;}
.x33{left:84.031989pt;}
.x57{left:87.732364pt;}
.x28{left:91.391989pt;}
.x9{left:96.031989pt;}
.x6a{left:105.631989pt;}
.x30{left:107.711989pt;}
.x53{left:110.277047pt;}
.x31{left:112.031989pt;}
.x61{left:114.911989pt;}
.x5d{left:121.199538pt;}
.x12{left:124.031989pt;}
.xe{left:129.631989pt;}
.x5c{left:138.420234pt;}
.xa{left:167.066655pt;}
.x55{left:169.541239pt;}
.x52{left:190.613333pt;}
.x67{left:202.266655pt;}
.x26{left:204.826655pt;}
.x65{left:217.306655pt;}
.x54{left:225.540053pt;}
.x3f{left:243.613315pt;}
.x37{left:245.213315pt;}
.x10{left:250.946655pt;}
.x40{left:268.866655pt;}
.x14{left:270.946655pt;}
.x44{left:276.746649pt;}
.x3d{left:279.586655pt;}
.x38{left:281.186655pt;}
.x41{left:284.546649pt;}
.x3e{left:295.279982pt;}
.x39{left:296.879982pt;}
.x45{left:305.346655pt;}
.x49{left:310.306655pt;}
.x46{left:321.013297pt;}
.x4{left:323.586655pt;}
.x4a{left:326.013297pt;}
.x15{left:346.013297pt;}
.x3c{left:350.146655pt;}
.x69{left:367.106655pt;}
.x17{left:371.266655pt;}
.x51{left:378.146655pt;}
.x48{left:382.306655pt;}
.x43{left:388.546655pt;}
.x4c{left:397.373322pt;}
.x23{left:415.613297pt;}
.x5b{left:423.279964pt;}
.x18{left:469.213297pt;}
.x24{left:473.693322pt;}
.x25{left:488.253322pt;}
.x64{left:510.173322pt;}
.x1b{left:527.293322pt;}
.xf{left:551.813322pt;}
.x13{left:554.853322pt;}
.x11{left:566.213322pt;}
.x66{left:576.933322pt;}
.x68{left:579.973322pt;}
.x60{left:582.053322pt;}
.x1c{left:584.213333pt;}
.x20{left:608.933322pt;}
.x21{left:638.813333pt;}
.x7{left:647.013333pt;}
.x22{left:663.493322pt;}
.xc{left:675.013333pt;}
.xd{left:708.159989pt;}
}




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