
    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_435f82b729197eec99ff6e20.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_72d3bef42fbfd12528a80292.woff2')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_6274f152f93337735d941151.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1efc21784f41df7b02ecbdb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_f9003cd8546ebf78af3d6381.woff2')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_a9eebe22488a5b775f312eec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_2afa216cd076102ba419e223.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_12a13b8fab3a2a6b2ff59f99.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_e8114f10f133902d5c2f1de8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4b8315071b9c53bfa35b8fe8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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;}
.m14{transform:matrix(0.185819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185819,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.190172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190172,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.190196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190196,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.190202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190202,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235640,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.236196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236196,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244384,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244384,0.000001,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248851,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249456,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.249456,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249456,0.000001,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);}
.mc{transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252152,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255496,0.000001,0.000001,0.250000,0,0);-ms-transform:matrix(0.255496,0.000001,0.000001,0.250000,0,0);-webkit-transform:matrix(0.255496,0.000001,0.000001,0.250000,0,0);}
.m20{transform:matrix(0.255496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255496,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255514,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.255514,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.255514,0.000000,0.000001,0.250000,0,0);}
.m6{transform:matrix(0.255514,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.255514,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255514,0.000001,0.000000,0.250000,0,0);}
.me{transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261762,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-62.971159px;}
.v7{vertical-align:-44.879848px;}
.v5{vertical-align:-38.425078px;}
.v1{vertical-align:-17.857154px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.111974px;}
.v2{vertical-align:17.857154px;}
.v4{vertical-align:33.481368px;}
.v9{vertical-align:45.305837px;}
.v6{vertical-align:56.713504px;}
.va{vertical-align:73.228974px;}
.lsb{letter-spacing:-3.000000px;}
.lsd{letter-spacing:-2.994000px;}
.lsa{letter-spacing:-2.988000px;}
.lsc{letter-spacing:-2.700000px;}
.ls26{letter-spacing:-1.950153px;}
.ls28{letter-spacing:-1.944860px;}
.ls15{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.024000px;}
.ls9{letter-spacing:-0.012000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls2b{letter-spacing:0.030000px;}
.ls30{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.150000px;}
.ls2d{letter-spacing:0.192000px;}
.ls2f{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.300000px;}
.ls33{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.624000px;}
.ls32{letter-spacing:0.660000px;}
.ls31{letter-spacing:1.200000px;}
.ls27{letter-spacing:1.245651px;}
.ls25{letter-spacing:1.738052px;}
.ls14{letter-spacing:1.938369px;}
.ls1b{letter-spacing:5.400000px;}
.ls6{letter-spacing:5.940000px;}
.ls11{letter-spacing:6.600000px;}
.ls2e{letter-spacing:6.660000px;}
.ls2c{letter-spacing:7.260000px;}
.lsf{letter-spacing:18.000000px;}
.lse{letter-spacing:18.120000px;}
.ls22{letter-spacing:19.200000px;}
.ls21{letter-spacing:19.350000px;}
.ls10{letter-spacing:19.800000px;}
.ls29{letter-spacing:29.940000px;}
.ls2a{letter-spacing:30.000000px;}
.ls5{letter-spacing:33.984000px;}
.ls12{letter-spacing:40.140000px;}
.ls24{letter-spacing:63.720000px;}
.ls1d{letter-spacing:143.749198px;}
.ls18{letter-spacing:170.381375px;}
.ls19{letter-spacing:173.908968px;}
.ls17{letter-spacing:212.325880px;}
.ls16{letter-spacing:223.165608px;}
.ls1e{letter-spacing:223.417333px;}
.ls1c{letter-spacing:458.400651px;}
.ls1a{letter-spacing:567.933325px;}
.ls1f{letter-spacing:703.315112px;}
.ls20{letter-spacing:793.352425px;}
.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;}
}
.ws1b{word-spacing:-39.581106px;}
.ws20{word-spacing:-39.473684px;}
.ws13{word-spacing:-39.034469px;}
.wsc{word-spacing:-32.940000px;}
.ws26{word-spacing:-23.013896px;}
.wsb{word-spacing:-18.624000px;}
.ws14{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws1a{word-spacing:-8.158212px;}
.ws10{word-spacing:-7.048199px;}
.ws12{word-spacing:-1.779516px;}
.ws1f{word-spacing:-0.071901px;}
.ws17{word-spacing:-0.042544px;}
.ws1d{word-spacing:-0.041920px;}
.ws16{word-spacing:-0.030347px;}
.wsa{word-spacing:0.000000px;}
.ws24{word-spacing:41.136410px;}
.ws22{word-spacing:46.904332px;}
.ws23{word-spacing:60.842243px;}
.ws25{word-spacing:133.883970px;}
.wsf{word-spacing:147.829099px;}
.ws11{word-spacing:180.057870px;}
.ws1c{word-spacing:186.408195px;}
.wse{word-spacing:188.500080px;}
.ws15{word-spacing:191.731912px;}
.ws21{word-spacing:355.032573px;}
.ws18{word-spacing:470.054475px;}
.ws27{word-spacing:509.530948px;}
.ws19{word-spacing:518.772729px;}
.ws1e{word-spacing:556.093120px;}
._3d{margin-left:-310.692103px;}
._3e{margin-left:-298.474508px;}
._3b{margin-left:-294.480785px;}
._3c{margin-left:-291.985459px;}
._44{margin-left:-280.699160px;}
._43{margin-left:-271.663189px;}
._30{margin-left:-265.693244px;}
._36{margin-left:-230.590852px;}
._46{margin-left:-220.387157px;}
._35{margin-left:-219.124436px;}
._37{margin-left:-211.417763px;}
._34{margin-left:-194.737794px;}
._3f{margin-left:-155.893809px;}
._31{margin-left:-152.058988px;}
._49{margin-left:-143.416563px;}
._4a{margin-left:-141.881421px;}
._45{margin-left:-124.189671px;}
._4f{margin-left:-120.453395px;}
._48{margin-left:-117.842272px;}
._41{margin-left:-97.290308px;}
._39{margin-left:-85.005430px;}
._3a{margin-left:-83.552894px;}
._4b{margin-left:-66.494150px;}
._4c{margin-left:-63.059774px;}
._4d{margin-left:-57.568289px;}
._4e{margin-left:-55.104063px;}
._42{margin-left:-12.540000px;}
._1a{margin-left:-4.560000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._5{width:2.376000px;}
._6{width:3.456000px;}
._4{width:4.806000px;}
._a{width:5.856000px;}
._9{width:6.930000px;}
._8{width:8.784000px;}
._18{width:10.728000px;}
._22{width:11.808000px;}
._23{width:12.888000px;}
._e{width:14.184000px;}
._7{width:15.984000px;}
._2e{width:16.992000px;}
._10{width:19.368000px;}
._b{width:21.384000px;}
._c{width:22.608000px;}
._f{width:23.976000px;}
._11{width:25.344000px;}
._12{width:26.568000px;}
._19{width:27.792000px;}
._1c{width:29.088000px;}
._63{width:30.096000px;}
._1b{width:31.176000px;}
._2f{width:32.616000px;}
._58{width:33.768000px;}
._15{width:35.280000px;}
._1f{width:36.360000px;}
._29{width:38.190000px;}
._2d{width:39.672000px;}
._26{width:40.896000px;}
._2a{width:41.904000px;}
._1d{width:43.128000px;}
._6b{width:44.136000px;}
._20{width:45.360000px;}
._21{width:46.368000px;}
._25{width:47.652000px;}
._24{width:48.960000px;}
._27{width:50.184000px;}
._28{width:51.480000px;}
._53{width:53.352000px;}
._2b{width:55.080000px;}
._2c{width:56.232000px;}
._57{width:58.056000px;}
._52{width:59.400000px;}
._50{width:60.768000px;}
._6a{width:62.352000px;}
._13{width:64.656000px;}
._54{width:66.024000px;}
._56{width:67.896000px;}
._69{width:69.264000px;}
._16{width:70.632000px;}
._17{width:71.928000px;}
._62{width:73.368000px;}
._d{width:74.448000px;}
._55{width:75.984000px;}
._68{width:77.046000px;}
._51{width:81.576000px;}
._5e{width:83.088000px;}
._59{width:84.528000px;}
._5a{width:85.680000px;}
._40{width:88.260000px;}
._61{width:89.436000px;}
._5c{width:93.960000px;}
._5d{width:95.472000px;}
._6e{width:96.696000px;}
._66{width:97.704000px;}
._67{width:99.438000px;}
._71{width:103.896000px;}
._5f{width:112.824000px;}
._1e{width:117.816000px;}
._6c{width:119.496000px;}
._47{width:126.000000px;}
._6f{width:128.400000px;}
._70{width:129.864000px;}
._14{width:133.848000px;}
._64{width:138.384000px;}
._65{width:139.896000px;}
._5b{width:143.142000px;}
._6d{width:147.240000px;}
._32{width:161.724000px;}
._38{width:164.556000px;}
._73{width:181.656000px;}
._33{width:194.460000px;}
._60{width:214.200000px;}
._72{width:482.688000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:29.325715px;}
.fs1f{font-size:29.983161px;}
.fs19{font-size:30.347330px;}
.fs13{font-size:41.168748px;}
.fsf{font-size:41.464017px;}
.fsb{font-size:41.606596px;}
.fs20{font-size:41.919665px;}
.fsd{font-size:41.952558px;}
.fs1c{font-size:42.033744px;}
.fs1a{font-size:42.544260px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs7{font-size:69.164116px;}
.fs6{font-size:69.302490px;}
.fs8{font-size:69.306210px;}
.fs17{font-size:70.492715px;}
.fs14{font-size:70.632627px;}
.fs10{font-size:71.101036px;}
.fsc{font-size:71.242436px;}
.fs21{font-size:71.901063px;}
.fse{font-size:71.938769px;}
.fs5{font-size:72.000000px;}
.fs11{font-size:72.081836px;}
.fs1d{font-size:72.096733px;}
.fs12{font-size:72.434945px;}
.fs1b{font-size:72.893392px;}
.fs23{font-size:74.654972px;}
.fsa{font-size:75.477360px;}
.fs9{font-size:75.482637px;}
.fs0{font-size:84.000000px;}
.fs15{font-size:93.053648px;}
.fs1e{font-size:95.063112px;}
.fs18{font-size:96.122494px;}
.fs22{font-size:107.995550px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y7a{bottom:2.837625px;}
.y86{bottom:2.837657px;}
.y78{bottom:2.837690px;}
.y10e{bottom:2.837856px;}
.y75{bottom:2.837888px;}
.yb8{bottom:3.180420px;}
.y9e{bottom:3.216023px;}
.yac{bottom:3.216065px;}
.y11a{bottom:3.270392px;}
.y81{bottom:3.270425px;}
.y6d{bottom:3.270458px;}
.y95{bottom:3.288302px;}
.yb1{bottom:3.288330px;}
.yd4{bottom:3.526175px;}
.yc8{bottom:3.714295px;}
.y22{bottom:3.900000px;}
.y3f{bottom:3.915000px;}
.yf4{bottom:4.131665px;}
.yf8{bottom:4.131675px;}
.y107{bottom:4.312879px;}
.y5a{bottom:4.648225px;}
.y58{bottom:4.648257px;}
.y69{bottom:4.648292px;}
.y90{bottom:4.678619px;}
.y9a{bottom:4.714244px;}
.yae{bottom:4.714273px;}
.yee{bottom:5.093238px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.ya7{bottom:6.078222px;}
.yc3{bottom:6.223392px;}
.yc{bottom:6.750000px;}
.yb9{bottom:7.597735px;}
.yb5{bottom:7.668441px;}
.y9f{bottom:7.732911px;}
.yad{bottom:7.732982px;}
.y96{bottom:7.768976px;}
.ye8{bottom:7.768985px;}
.ye9{bottom:7.769007px;}
.yb2{bottom:7.769046px;}
.ya3{bottom:7.822560px;}
.yd1{bottom:8.156395px;}
.yfe{bottom:8.334434px;}
.y100{bottom:8.476905px;}
.ye2{bottom:9.142740px;}
.y91{bottom:9.142777px;}
.y9b{bottom:9.178532px;}
.ybc{bottom:9.178542px;}
.yaf{bottom:9.178603px;}
.yd9{bottom:9.687929px;}
.ye1{bottom:10.495498px;}
.ya8{bottom:10.495568px;}
.yc4{bottom:10.809155px;}
.ybf{bottom:10.881838px;}
.yb6{bottom:14.205962px;}
.yd2{bottom:14.817077px;}
.yf2{bottom:15.707254px;}
.yf6{bottom:15.707265px;}
.yf0{bottom:16.419701px;}
.yc0{bottom:16.522746px;}
.yb7{bottom:16.785172px;}
.yd3{bottom:17.452335px;}
.yc1{bottom:17.651510px;}
.yfb{bottom:17.772593px;}
.yca{bottom:17.856337px;}
.yed{bottom:18.129530px;}
.yd7{bottom:19.269466px;}
.ya{bottom:19.950000px;}
.yc2{bottom:20.308241px;}
.y6{bottom:20.550000px;}
.yfa{bottom:22.296887px;}
.yff{bottom:22.296891px;}
.ycd{bottom:22.357573px;}
.ycc{bottom:22.357607px;}
.yf3{bottom:22.652344px;}
.yf7{bottom:22.652354px;}
.ydc{bottom:23.792264px;}
.ydb{bottom:23.792299px;}
.y21{bottom:24.600000px;}
.y3e{bottom:24.615000px;}
.yd6{bottom:31.094313px;}
.yc9{bottom:31.999306px;}
.yd5{bottom:33.409305px;}
.yf1{bottom:33.515057px;}
.yfc{bottom:33.515060px;}
.y102{bottom:33.515081px;}
.yec{bottom:33.587038px;}
.y9{bottom:33.900000px;}
.yf5{bottom:34.192238px;}
.yf9{bottom:34.192248px;}
.y101{bottom:35.509868px;}
.yfd{bottom:35.509871px;}
.yda{bottom:35.617146px;}
.y5{bottom:36.000000px;}
.ycb{bottom:36.535924px;}
.yd8{bottom:37.932136px;}
.ydd{bottom:37.932143px;}
.yef{bottom:42.882403px;}
.y20{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y1f{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y1e{bottom:86.700000px;}
.y1d{bottom:107.400000px;}
.y66{bottom:107.437500px;}
.y3c{bottom:107.587500px;}
.y41{bottom:110.737500px;}
.y176{bottom:118.837500px;}
.y11b{bottom:119.887500px;}
.ya4{bottom:120.037500px;}
.y19e{bottom:126.637500px;}
.y1c{bottom:128.100000px;}
.y65{bottom:131.137500px;}
.y3b{bottom:131.287500px;}
.y40{bottom:132.187500px;}
.y175{bottom:142.537500px;}
.y118{bottom:143.737500px;}
.y119{bottom:143.775000px;}
.ya1{bottom:143.887500px;}
.ya2{bottom:143.925000px;}
.y1b{bottom:148.800000px;}
.y19d{bottom:150.495000px;}
.y3d{bottom:153.630000px;}
.y64{bottom:154.995000px;}
.y3a{bottom:155.130000px;}
.y174{bottom:166.395000px;}
.y1a{bottom:169.500000px;}
.y116{bottom:169.995000px;}
.y117{bottom:170.025000px;}
.y19c{bottom:174.345000px;}
.y63{bottom:174.795000px;}
.ya0{bottom:175.380000px;}
.y39{bottom:178.995000px;}
.y155{bottom:179.895000px;}
.y173{bottom:190.245000px;}
.y115{bottom:197.595000px;}
.y19b{bottom:198.195000px;}
.y9c{bottom:199.080000px;}
.y9d{bottom:199.125000px;}
.y38{bottom:202.695000px;}
.y154{bottom:203.745000px;}
.y172{bottom:213.945000px;}
.y114{bottom:221.295000px;}
.y19a{bottom:221.895000px;}
.y37{bottom:226.545000px;}
.y153{bottom:227.595000px;}
.y98{bottom:231.945000px;}
.y99{bottom:231.975000px;}
.y171{bottom:237.795000px;}
.y113{bottom:245.145000px;}
.y199{bottom:245.745000px;}
.y36{bottom:250.395000px;}
.y152{bottom:251.295000px;}
.y170{bottom:261.645000px;}
.y97{bottom:265.845000px;}
.y112{bottom:268.995000px;}
.y198{bottom:269.595000px;}
.y35{bottom:274.080000px;}
.y151{bottom:275.145000px;}
.y16f{bottom:285.345000px;}
.y93{bottom:289.695000px;}
.y94{bottom:289.725000px;}
.y111{bottom:292.695000px;}
.y197{bottom:293.295000px;}
.y62{bottom:297.045000px;}
.y34{bottom:297.945000px;}
.y150{bottom:298.995000px;}
.y16e{bottom:309.195000px;}
.y110{bottom:316.545000px;}
.y196{bottom:317.130000px;}
.y61{bottom:320.880000px;}
.y33{bottom:321.795000px;}
.y92{bottom:322.395000px;}
.y14f{bottom:322.845000px;}
.y16d{bottom:333.045000px;}
.y10f{bottom:340.380000px;}
.y195{bottom:340.995000px;}
.y60{bottom:344.580000px;}
.y32{bottom:345.645000px;}
.y8e{bottom:346.245000px;}
.y8f{bottom:346.274959px;}
.y14e{bottom:346.545000px;}
.y136{bottom:351.795000px;}
.y16c{bottom:356.745000px;}
.y10c{bottom:364.095000px;}
.y10d{bottom:364.124959px;}
.y194{bottom:364.695000px;}
.y5f{bottom:368.445000px;}
.y31{bottom:369.345000px;}
.y14d{bottom:370.395000px;}
.y135{bottom:375.645000px;}
.y8d{bottom:380.325000px;}
.y16b{bottom:380.625000px;}
.y10b{bottom:387.975000px;}
.y193{bottom:388.575000px;}
.y5e{bottom:392.325000px;}
.y30{bottom:393.225000px;}
.y14c{bottom:394.275000px;}
.y134{bottom:399.375000px;}
.y8c{bottom:404.025000px;}
.y16a{bottom:404.475000px;}
.y192{bottom:412.425000px;}
.y10a{bottom:415.574959px;}
.y109{bottom:415.575000px;}
.y5d{bottom:416.025000px;}
.y2f{bottom:417.075000px;}
.y14b{bottom:417.975000px;}
.y133{bottom:423.225000px;}
.y8b{bottom:427.875000px;}
.y169{bottom:428.175000px;}
.y191{bottom:436.125000px;}
.y108{bottom:439.275000px;}
.y5c{bottom:439.874959px;}
.y5b{bottom:439.875000px;}
.y2e{bottom:440.775000px;}
.y14a{bottom:441.825000px;}
.y132{bottom:447.075000px;}
.y8a{bottom:451.725000px;}
.y168{bottom:452.025000px;}
.y190{bottom:459.975000px;}
.y106{bottom:463.124959px;}
.y105{bottom:463.125000px;}
.y2d{bottom:464.625000px;}
.y149{bottom:465.675000px;}
.y59{bottom:467.475000px;}
.y131{bottom:470.775000px;}
.y89{bottom:475.425000px;}
.y167{bottom:475.875000px;}
.y18f{bottom:483.825000px;}
.y104{bottom:486.975000px;}
.y2c{bottom:488.475000px;}
.y148{bottom:489.375000px;}
.y130{bottom:494.625000px;}
.y57{bottom:494.924959px;}
.y56{bottom:494.925000px;}
.y88{bottom:499.275000px;}
.y166{bottom:499.725000px;}
.y18e{bottom:507.525000px;}
.yeb{bottom:510.674959px;}
.y103{bottom:510.675000px;}
.y2b{bottom:512.175000px;}
.y147{bottom:513.225000px;}
.y12f{bottom:518.475000px;}
.y55{bottom:522.525000px;}
.y87{bottom:523.125000px;}
.y165{bottom:523.425000px;}
.y18d{bottom:531.375000px;}
.y2a{bottom:536.025000px;}
.y146{bottom:537.075000px;}
.y12e{bottom:542.325000px;}
.y54{bottom:546.375000px;}
.y85{bottom:546.824959px;}
.y84{bottom:546.825000px;}
.y164{bottom:547.275000px;}
.y18c{bottom:555.225000px;}
.y29{bottom:559.875000px;}
.y145{bottom:560.775000px;}
.y12d{bottom:566.025000px;}
.y53{bottom:570.075000px;}
.y83{bottom:570.674959px;}
.y82{bottom:570.675000px;}
.y163{bottom:571.125000px;}
.yea{bottom:573.075000px;}
.y18b{bottom:579.075000px;}
.y28{bottom:583.575000px;}
.y144{bottom:584.625000px;}
.y12c{bottom:589.875000px;}
.y52{bottom:593.925000px;}
.y162{bottom:594.825000px;}
.ye7{bottom:596.774959px;}
.ye6{bottom:596.775000px;}
.y80{bottom:598.274959px;}
.y7f{bottom:598.275000px;}
.y18a{bottom:602.775000px;}
.y27{bottom:607.425000px;}
.y143{bottom:608.475000px;}
.y12b{bottom:613.725000px;}
.y51{bottom:617.775000px;}
.y161{bottom:618.675000px;}
.y7e{bottom:624.525000px;}
.y189{bottom:626.625000px;}
.ye5{bottom:629.625000px;}
.y26{bottom:631.275000px;}
.y142{bottom:632.175000px;}
.y12a{bottom:637.425000px;}
.y50{bottom:641.475000px;}
.y160{bottom:642.525000px;}
.y7d{bottom:648.375000px;}
.y188{bottom:650.475000px;}
.ye4{bottom:653.325000px;}
.y141{bottom:656.025000px;}
.y129{bottom:661.275000px;}
.y25{bottom:663.975000px;}
.y4f{bottom:665.325000px;}
.y15f{bottom:666.225000px;}
.y7c{bottom:672.075000px;}
.y187{bottom:674.175000px;}
.ye3{bottom:677.025000px;}
.y140{bottom:679.875000px;}
.y24{bottom:680.775000px;}
.y128{bottom:685.125000px;}
.y4e{bottom:685.275000px;}
.y15e{bottom:690.075000px;}
.y7b{bottom:695.925000px;}
.y186{bottom:698.025000px;}
.y13f{bottom:703.575000px;}
.y127{bottom:708.825000px;}
.ye0{bottom:710.025000px;}
.y15d{bottom:713.925000px;}
.y79{bottom:719.775000px;}
.y185{bottom:721.875000px;}
.y23{bottom:722.175000px;}
.y13e{bottom:727.425000px;}
.y126{bottom:732.675000px;}
.y15c{bottom:737.670000px;}
.y19{bottom:742.920000px;}
.y77{bottom:743.474919px;}
.y76{bottom:743.520000px;}
.ydf{bottom:745.170000px;}
.y184{bottom:745.620000px;}
.y13d{bottom:751.320000px;}
.y125{bottom:756.570000px;}
.y15b{bottom:761.520000px;}
.y74{bottom:767.324919px;}
.y73{bottom:767.370000px;}
.yd0{bottom:768.824919px;}
.yde{bottom:768.870000px;}
.y183{bottom:769.470000px;}
.y13c{bottom:775.170000px;}
.y124{bottom:780.270000px;}
.y15a{bottom:785.370000px;}
.y72{bottom:791.220000px;}
.y182{bottom:793.320000px;}
.y13b{bottom:798.870000px;}
.y123{bottom:800.220000px;}
.y159{bottom:809.070000px;}
.y71{bottom:814.920000px;}
.y181{bottom:817.020000px;}
.y13a{bottom:822.705000px;}
.ycf{bottom:831.270000px;}
.y158{bottom:832.920000px;}
.y70{bottom:835.020000px;}
.y180{bottom:840.870000px;}
.y139{bottom:846.570000px;}
.yc7{bottom:855.074919px;}
.yce{bottom:855.120000px;}
.y157{bottom:856.770000px;}
.y17f{bottom:864.720000px;}
.y138{bottom:870.270000px;}
.y156{bottom:876.720000px;}
.y17e{bottom:888.420000px;}
.y137{bottom:890.220000px;}
.y4d{bottom:894.870000px;}
.y17d{bottom:912.270000px;}
.yc6{bottom:916.020000px;}
.y4c{bottom:918.570000px;}
.y18{bottom:932.820000px;}
.y17c{bottom:936.120000px;}
.ybe{bottom:939.974919px;}
.yc5{bottom:940.020000px;}
.y4b{bottom:942.420000px;}
.y17{bottom:952.020000px;}
.y17b{bottom:959.970000px;}
.y4a{bottom:966.270000px;}
.y16{bottom:972.720000px;}
.ybb{bottom:978.974919px;}
.ybd{bottom:979.020000px;}
.y122{bottom:981.270000px;}
.y17a{bottom:983.670000px;}
.y49{bottom:989.970000px;}
.y15{bottom:993.420000px;}
.y121{bottom:1004.970000px;}
.y179{bottom:1007.520000px;}
.yb4{bottom:1013.024919px;}
.yba{bottom:1013.070000px;}
.y48{bottom:1013.820000px;}
.y14{bottom:1014.120000px;}
.y6f{bottom:1025.070000px;}
.y120{bottom:1028.774919px;}
.y11f{bottom:1028.820000px;}
.y178{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y47{bottom:1037.670000px;}
.yb0{bottom:1048.274919px;}
.yb3{bottom:1048.320000px;}
.y6e{bottom:1048.920000px;}
.y11e{bottom:1052.624919px;}
.y11d{bottom:1052.670000px;}
.y177{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y46{bottom:1061.370000px;}
.y6c{bottom:1072.724919px;}
.y6b{bottom:1072.770000px;}
.y11{bottom:1076.220000px;}
.y11c{bottom:1078.920000px;}
.yab{bottom:1080.974919px;}
.yaa{bottom:1081.020000px;}
.y45{bottom:1085.220000px;}
.y10{bottom:1096.950000px;}
.y68{bottom:1098.974919px;}
.y6a{bottom:1099.050000px;}
.y44{bottom:1102.800000px;}
.ya9{bottom:1115.100000px;}
.yf{bottom:1117.650000px;}
.y43{bottom:1124.250000px;}
.y67{bottom:1126.500000px;}
.ya6{bottom:1138.874919px;}
.ya5{bottom:1138.950000px;}
.y42{bottom:1145.700000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h1e{height:15.449453px;}
.h20{height:15.449494px;}
.h1c{height:15.449534px;}
.h59{height:15.450574px;}
.h1a{height:15.450614px;}
.h57{height:16.798987px;}
.h8{height:17.887500px;}
.h5a{height:19.200320px;}
.h1f{height:19.200361px;}
.h18{height:19.200402px;}
.h15{height:20.550033px;}
.h13{height:20.550074px;}
.h16{height:20.550115px;}
.h12{height:20.700000px;}
.hf{height:20.737500px;}
.h2c{height:24.450095px;}
.h25{height:25.799718px;}
.h4d{height:25.799758px;}
.h31{height:25.799799px;}
.h28{height:27.000188px;}
.h22{height:27.000229px;}
.h32{height:27.000270px;}
.h49{height:28.199709px;}
.h2e{height:28.199791px;}
.h34{height:28.767267px;}
.h44{height:29.412192px;}
.h38{height:29.769427px;}
.h36{height:32.099951px;}
.h51{height:38.828909px;}
.h2f{height:40.384773px;}
.h29{height:40.674419px;}
.h23{height:40.814283px;}
.h45{height:41.121391px;}
.h56{height:41.141859px;}
.h26{height:41.153657px;}
.h3e{height:41.233297px;}
.h10{height:41.400000px;}
.h3a{height:41.734091px;}
.h6{height:45.300000px;}
.h39{height:47.846065px;}
.h3{height:48.600000px;}
.hb{height:52.066406px;}
.h7{height:52.998047px;}
.h3d{height:53.998985px;}
.h4e{height:55.349229px;}
.h42{height:55.349270px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h21{height:61.670545px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h47{height:66.599764px;}
.h41{height:66.781007px;}
.h17{height:67.847026px;}
.h14{height:67.982765px;}
.h19{height:67.986414px;}
.h35{height:69.184744px;}
.h30{height:69.287572px;}
.h4a{height:69.322061px;}
.h2a{height:69.747061px;}
.h24{height:69.885769px;}
.h4b{height:69.920555px;}
.h46{height:70.531854px;}
.h48{height:70.566962px;}
.h27{height:70.568841px;}
.h4c{height:70.603967px;}
.h5b{height:70.628906px;}
.hc{height:70.664062px;}
.h2b{height:70.709183px;}
.h3f{height:70.723797px;}
.h2d{height:71.055569px;}
.h3c{height:71.540878px;}
.h52{height:71.870276px;}
.ha{height:72.562500px;}
.h58{height:73.233320px;}
.h11{height:74.004654px;}
.h1d{height:74.040047px;}
.h1b{height:74.045223px;}
.h2{height:82.441406px;}
.h50{height:84.134746px;}
.h33{height:86.192759px;}
.h54{height:86.427228px;}
.h43{height:88.054064px;}
.h37{height:89.035338px;}
.h3b{height:91.231946px;}
.h4f{height:100.032987px;}
.h53{height:114.350364px;}
.h55{height:115.439759px;}
.h40{height:127.472505px;}
.he{height:186.300000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w14{width:10.349856px;}
.w27{width:10.350001px;}
.wd{width:10.350032px;}
.w12{width:14.249426px;}
.w28{width:14.249436px;}
.w15{width:14.249467px;}
.w11{width:14.249508px;}
.we{width:15.449907px;}
.w29{width:16.799289px;}
.wf{width:16.800369px;}
.w2a{width:18.000579px;}
.w10{width:18.000620px;}
.w13{width:18.000661px;}
.w25{width:19.200644px;}
.w26{width:19.200675px;}
.w19{width:23.250005px;}
.w1a{width:25.800364px;}
.w18{width:25.800395px;}
.w1b{width:26.999425px;}
.w17{width:26.999461px;}
.w16{width:34.799485px;}
.w21{width:35.999857px;}
.w23{width:41.248883px;}
.w22{width:42.451229px;}
.w1f{width:100.348067px;}
.w1d{width:104.250756px;}
.w1c{width:109.350800px;}
.wa{width:139.200000px;}
.wc{width:139.237500px;}
.w6{width:178.350000px;}
.w1e{width:181.351027px;}
.w20{width:224.993442px;}
.w24{width:250.800954px;}
.w9{width:251.880000px;}
.wb{width:251.895000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:2.168637px;}
.x2e{left:3.360132px;}
.x4{left:6.900000px;}
.x5c{left:9.428515px;}
.x9{left:12.435000px;}
.x3f{left:13.950158px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1c{left:20.887500px;}
.x5{left:22.200000px;}
.x5b{left:26.321332px;}
.x66{left:28.300409px;}
.xb{left:32.100000px;}
.x43{left:34.151155px;}
.x49{left:40.903342px;}
.x3{left:42.599987px;}
.x6b{left:43.899152px;}
.x50{left:45.988346px;}
.x58{left:55.813581px;}
.x6d{left:59.171668px;}
.x46{left:62.809668px;}
.x57{left:64.103605px;}
.x68{left:67.422963px;}
.x1e{left:69.599987px;}
.x45{left:71.931393px;}
.x10{left:75.899987px;}
.x4f{left:76.958719px;}
.x4c{left:78.663141px;}
.x4e{left:87.880876px;}
.x44{left:92.005711px;}
.x63{left:94.674373px;}
.x1d{left:95.699987px;}
.x4b{left:98.680775px;}
.x1b{left:100.200000px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x65{left:108.679419px;}
.x72{left:110.849987px;}
.x6f{left:115.799987px;}
.x40{left:119.849987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x41{left:135.524990px;}
.x6a{left:139.658420px;}
.x27{left:146.624990px;}
.x59{left:148.331335px;}
.x28{left:162.029987px;}
.x6c{left:163.828687px;}
.x56{left:165.740525px;}
.x4a{left:172.132570px;}
.x55{left:176.666170px;}
.x54{left:183.550828px;}
.x69{left:188.908782px;}
.x51{left:196.079987px;}
.x48{left:199.994987px;}
.x53{left:203.606117px;}
.x47{left:205.094987px;}
.x52{left:211.493534px;}
.x61{left:224.924980px;}
.x64{left:233.532194px;}
.x67{left:239.652575px;}
.x62{left:266.129987px;}
.x4d{left:277.079987px;}
.x22{left:295.995000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x5f{left:316.874980px;}
.x5a{left:320.744987px;}
.x5d{left:322.874980px;}
.x6e{left:346.544987px;}
.x70{left:353.024959px;}
.x60{left:358.079987px;}
.x24{left:359.774959px;}
.x5e{left:365.279987px;}
.x26{left:370.094987px;}
.x71{left:372.194987px;}
.x42{left:388.124959px;}
.x23{left:408.224987px;}
.x75{left:411.974959px;}
.x73{left:413.324959px;}
.x2b{left:414.824987px;}
.x7b{left:418.124987px;}
.x29{left:425.624959px;}
.x74{left:430.124987px;}
.x2a{left:435.974987px;}
.x12{left:448.274987px;}
.x20{left:457.274987px;}
.x3a{left:484.274987px;}
.x1f{left:510.374987px;}
.x17{left:512.174987px;}
.x2c{left:527.174987px;}
.x3e{left:529.274987px;}
.x3d{left:537.074987px;}
.x3c{left:538.274987px;}
.x2d{left:544.874959px;}
.x3b{left:546.074987px;}
.x38{left:553.124959px;}
.x2f{left:562.874987px;}
.x39{left:567.374987px;}
.x11{left:587.174987px;}
.x13{left:588.224987px;}
.x19{left:614.174987px;}
.x16{left:619.124987px;}
.x76{left:620.925000px;}
.xc{left:625.425000px;}
.x14{left:630.524987px;}
.x77{left:638.969987px;}
.x78{left:666.824959px;}
.x79{left:681.119987px;}
.x21{left:710.655000px;}
.xf{left:713.655000px;}
.x18{left:764.654987px;}
.x37{left:766.274919px;}
.x32{left:776.475000px;}
.x30{left:781.424919px;}
.x33{left:790.754987px;}
.x31{left:795.704987px;}
.x34{left:812.174919px;}
.x35{left:826.454987px;}
.x2{left:829.619987px;}
.x36{left:832.574919px;}
.x15{left:850.619987px;}
.x7c{left:861.704987px;}
.x7a{left:872.369987px;}
@media print{
.v8{vertical-align:-55.974364pt;}
.v7{vertical-align:-39.893198pt;}
.v5{vertical-align:-34.155625pt;}
.v1{vertical-align:-15.873025pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.432866pt;}
.v2{vertical-align:15.873025pt;}
.v4{vertical-align:29.761216pt;}
.v9{vertical-align:40.271855pt;}
.v6{vertical-align:50.412004pt;}
.va{vertical-align:65.092421pt;}
.lsb{letter-spacing:-2.666667pt;}
.lsd{letter-spacing:-2.661333pt;}
.lsa{letter-spacing:-2.656000pt;}
.lsc{letter-spacing:-2.400000pt;}
.ls26{letter-spacing:-1.733469pt;}
.ls28{letter-spacing:-1.728764pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.021333pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls2b{letter-spacing:0.026667pt;}
.ls30{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.133333pt;}
.ls2d{letter-spacing:0.170667pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls33{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.554667pt;}
.ls32{letter-spacing:0.586667pt;}
.ls31{letter-spacing:1.066667pt;}
.ls27{letter-spacing:1.107245pt;}
.ls25{letter-spacing:1.544935pt;}
.ls14{letter-spacing:1.722995pt;}
.ls1b{letter-spacing:4.800000pt;}
.ls6{letter-spacing:5.280000pt;}
.ls11{letter-spacing:5.866667pt;}
.ls2e{letter-spacing:5.920000pt;}
.ls2c{letter-spacing:6.453333pt;}
.lsf{letter-spacing:16.000000pt;}
.lse{letter-spacing:16.106667pt;}
.ls22{letter-spacing:17.066667pt;}
.ls21{letter-spacing:17.200000pt;}
.ls10{letter-spacing:17.600000pt;}
.ls29{letter-spacing:26.613333pt;}
.ls2a{letter-spacing:26.666667pt;}
.ls5{letter-spacing:30.208000pt;}
.ls12{letter-spacing:35.680000pt;}
.ls24{letter-spacing:56.640000pt;}
.ls1d{letter-spacing:127.777065pt;}
.ls18{letter-spacing:151.450111pt;}
.ls19{letter-spacing:154.585749pt;}
.ls17{letter-spacing:188.734116pt;}
.ls16{letter-spacing:198.369429pt;}
.ls1e{letter-spacing:198.593185pt;}
.ls1c{letter-spacing:407.467245pt;}
.ls1a{letter-spacing:504.829623pt;}
.ls1f{letter-spacing:625.168988pt;}
.ls20{letter-spacing:705.202155pt;}
.ws1b{word-spacing:-35.183206pt;}
.ws20{word-spacing:-35.087719pt;}
.ws13{word-spacing:-34.697305pt;}
.wsc{word-spacing:-29.280000pt;}
.ws26{word-spacing:-20.456797pt;}
.wsb{word-spacing:-16.554667pt;}
.ws14{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws1a{word-spacing:-7.251744pt;}
.ws10{word-spacing:-6.265066pt;}
.ws12{word-spacing:-1.581792pt;}
.ws1f{word-spacing:-0.063912pt;}
.ws17{word-spacing:-0.037817pt;}
.ws1d{word-spacing:-0.037262pt;}
.ws16{word-spacing:-0.026975pt;}
.wsa{word-spacing:0.000000pt;}
.ws24{word-spacing:36.565697pt;}
.ws22{word-spacing:41.692739pt;}
.ws23{word-spacing:54.081993pt;}
.ws25{word-spacing:119.007973pt;}
.wsf{word-spacing:131.403643pt;}
.ws11{word-spacing:160.051440pt;}
.ws1c{word-spacing:165.696174pt;}
.wse{word-spacing:167.555627pt;}
.ws15{word-spacing:170.428366pt;}
.ws21{word-spacing:315.584509pt;}
.ws18{word-spacing:417.826200pt;}
.ws27{word-spacing:452.916398pt;}
.ws19{word-spacing:461.131314pt;}
.ws1e{word-spacing:494.304995pt;}
._3d{margin-left:-276.170758pt;}
._3e{margin-left:-265.310673pt;}
._3b{margin-left:-261.760698pt;}
._3c{margin-left:-259.542630pt;}
._44{margin-left:-249.510364pt;}
._43{margin-left:-241.478390pt;}
._30{margin-left:-236.171772pt;}
._36{margin-left:-204.969646pt;}
._46{margin-left:-195.899695pt;}
._35{margin-left:-194.777277pt;}
._37{margin-left:-187.926900pt;}
._34{margin-left:-173.100262pt;}
._3f{margin-left:-138.572274pt;}
._31{margin-left:-135.163545pt;}
._49{margin-left:-127.481389pt;}
._4a{margin-left:-126.116819pt;}
._45{margin-left:-110.390818pt;}
._4f{margin-left:-107.069684pt;}
._48{margin-left:-104.748686pt;}
._41{margin-left:-86.480274pt;}
._39{margin-left:-75.560382pt;}
._3a{margin-left:-74.269239pt;}
._4b{margin-left:-59.105911pt;}
._4c{margin-left:-56.053133pt;}
._4d{margin-left:-51.171812pt;}
._4e{margin-left:-48.981389pt;}
._42{margin-left:-11.146667pt;}
._1a{margin-left:-4.053333pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._5{width:2.112000pt;}
._6{width:3.072000pt;}
._4{width:4.272000pt;}
._a{width:5.205333pt;}
._9{width:6.160000pt;}
._8{width:7.808000pt;}
._18{width:9.536000pt;}
._22{width:10.496000pt;}
._23{width:11.456000pt;}
._e{width:12.608000pt;}
._7{width:14.208000pt;}
._2e{width:15.104000pt;}
._10{width:17.216000pt;}
._b{width:19.008000pt;}
._c{width:20.096000pt;}
._f{width:21.312000pt;}
._11{width:22.528000pt;}
._12{width:23.616000pt;}
._19{width:24.704000pt;}
._1c{width:25.856000pt;}
._63{width:26.752000pt;}
._1b{width:27.712000pt;}
._2f{width:28.992000pt;}
._58{width:30.016000pt;}
._15{width:31.360000pt;}
._1f{width:32.320000pt;}
._29{width:33.946667pt;}
._2d{width:35.264000pt;}
._26{width:36.352000pt;}
._2a{width:37.248000pt;}
._1d{width:38.336000pt;}
._6b{width:39.232000pt;}
._20{width:40.320000pt;}
._21{width:41.216000pt;}
._25{width:42.357333pt;}
._24{width:43.520000pt;}
._27{width:44.608000pt;}
._28{width:45.760000pt;}
._53{width:47.424000pt;}
._2b{width:48.960000pt;}
._2c{width:49.984000pt;}
._57{width:51.605333pt;}
._52{width:52.800000pt;}
._50{width:54.016000pt;}
._6a{width:55.424000pt;}
._13{width:57.472000pt;}
._54{width:58.688000pt;}
._56{width:60.352000pt;}
._69{width:61.568000pt;}
._16{width:62.784000pt;}
._17{width:63.936000pt;}
._62{width:65.216000pt;}
._d{width:66.176000pt;}
._55{width:67.541333pt;}
._68{width:68.485333pt;}
._51{width:72.512000pt;}
._5e{width:73.856000pt;}
._59{width:75.136000pt;}
._5a{width:76.160000pt;}
._40{width:78.453333pt;}
._61{width:79.498667pt;}
._5c{width:83.520000pt;}
._5d{width:84.864000pt;}
._6e{width:85.952000pt;}
._66{width:86.848000pt;}
._67{width:88.389333pt;}
._71{width:92.352000pt;}
._5f{width:100.288000pt;}
._1e{width:104.725333pt;}
._6c{width:106.218667pt;}
._47{width:112.000000pt;}
._6f{width:114.133333pt;}
._70{width:115.434667pt;}
._14{width:118.976000pt;}
._64{width:123.008000pt;}
._65{width:124.352000pt;}
._5b{width:127.237333pt;}
._6d{width:130.880000pt;}
._32{width:143.754667pt;}
._38{width:146.272000pt;}
._73{width:161.472000pt;}
._33{width:172.853333pt;}
._60{width:190.400000pt;}
._72{width:429.056000pt;}
.fs16{font-size:26.067303pt;}
.fs1f{font-size:26.651698pt;}
.fs19{font-size:26.975405pt;}
.fs13{font-size:36.594443pt;}
.fsf{font-size:36.856904pt;}
.fsb{font-size:36.983641pt;}
.fs20{font-size:37.261925pt;}
.fsd{font-size:37.291163pt;}
.fs1c{font-size:37.363328pt;}
.fs1a{font-size:37.817120pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs7{font-size:61.479214pt;}
.fs6{font-size:61.602213pt;}
.fs8{font-size:61.605520pt;}
.fs17{font-size:62.660191pt;}
.fs14{font-size:62.784558pt;}
.fs10{font-size:63.200921pt;}
.fsc{font-size:63.326610pt;}
.fs21{font-size:63.912056pt;}
.fse{font-size:63.945572pt;}
.fs5{font-size:64.000000pt;}
.fs11{font-size:64.072743pt;}
.fs1d{font-size:64.085985pt;}
.fs12{font-size:64.386618pt;}
.fs1b{font-size:64.794126pt;}
.fs23{font-size:66.359975pt;}
.fsa{font-size:67.090987pt;}
.fs9{font-size:67.095677pt;}
.fs0{font-size:74.666667pt;}
.fs15{font-size:82.714354pt;}
.fs1e{font-size:84.500544pt;}
.fs18{font-size:85.442217pt;}
.fs22{font-size:95.996044pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y7a{bottom:2.522333pt;}
.y86{bottom:2.522362pt;}
.y78{bottom:2.522391pt;}
.y10e{bottom:2.522539pt;}
.y75{bottom:2.522567pt;}
.yb8{bottom:2.827040pt;}
.y9e{bottom:2.858687pt;}
.yac{bottom:2.858725pt;}
.y11a{bottom:2.907015pt;}
.y81{bottom:2.907045pt;}
.y6d{bottom:2.907074pt;}
.y95{bottom:2.922935pt;}
.yb1{bottom:2.922960pt;}
.yd4{bottom:3.134378pt;}
.yc8{bottom:3.301595pt;}
.y22{bottom:3.466667pt;}
.y3f{bottom:3.480000pt;}
.yf4{bottom:3.672591pt;}
.yf8{bottom:3.672600pt;}
.y107{bottom:3.833670pt;}
.y5a{bottom:4.131756pt;}
.y58{bottom:4.131784pt;}
.y69{bottom:4.131815pt;}
.y90{bottom:4.158773pt;}
.y9a{bottom:4.190439pt;}
.yae{bottom:4.190465pt;}
.yee{bottom:4.527322pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.ya7{bottom:5.402864pt;}
.yc3{bottom:5.531904pt;}
.yc{bottom:6.000000pt;}
.yb9{bottom:6.753542pt;}
.yb5{bottom:6.816392pt;}
.y9f{bottom:6.873699pt;}
.yad{bottom:6.873762pt;}
.y96{bottom:6.905756pt;}
.ye8{bottom:6.905764pt;}
.ye9{bottom:6.905784pt;}
.yb2{bottom:6.905819pt;}
.ya3{bottom:6.953387pt;}
.yd1{bottom:7.250129pt;}
.yfe{bottom:7.408386pt;}
.y100{bottom:7.535027pt;}
.ye2{bottom:8.126880pt;}
.y91{bottom:8.126913pt;}
.y9b{bottom:8.158695pt;}
.ybc{bottom:8.158704pt;}
.yaf{bottom:8.158758pt;}
.yd9{bottom:8.611492pt;}
.ye1{bottom:9.329331pt;}
.ya8{bottom:9.329393pt;}
.yc4{bottom:9.608138pt;}
.ybf{bottom:9.672745pt;}
.yb6{bottom:12.627522pt;}
.yd2{bottom:13.170735pt;}
.yf2{bottom:13.962004pt;}
.yf6{bottom:13.962013pt;}
.yf0{bottom:14.595289pt;}
.yc0{bottom:14.686886pt;}
.yb7{bottom:14.920153pt;}
.yd3{bottom:15.513187pt;}
.yc1{bottom:15.690231pt;}
.yfb{bottom:15.797860pt;}
.yca{bottom:15.872299pt;}
.yed{bottom:16.115138pt;}
.yd7{bottom:17.128414pt;}
.ya{bottom:17.733333pt;}
.yc2{bottom:18.051769pt;}
.y6{bottom:18.266667pt;}
.yfa{bottom:19.819455pt;}
.yff{bottom:19.819458pt;}
.ycd{bottom:19.873398pt;}
.ycc{bottom:19.873429pt;}
.yf3{bottom:20.135417pt;}
.yf7{bottom:20.135426pt;}
.ydc{bottom:21.148679pt;}
.ydb{bottom:21.148710pt;}
.y21{bottom:21.866667pt;}
.y3e{bottom:21.880000pt;}
.yd6{bottom:27.639390pt;}
.yc9{bottom:28.443827pt;}
.yd5{bottom:29.697160pt;}
.yf1{bottom:29.791162pt;}
.yfc{bottom:29.791164pt;}
.y102{bottom:29.791183pt;}
.yec{bottom:29.855145pt;}
.y9{bottom:30.133333pt;}
.yf5{bottom:30.393101pt;}
.yf9{bottom:30.393110pt;}
.y101{bottom:31.564327pt;}
.yfd{bottom:31.564330pt;}
.yda{bottom:31.659686pt;}
.y5{bottom:32.000000pt;}
.ycb{bottom:32.476377pt;}
.yd8{bottom:33.717454pt;}
.ydd{bottom:33.717460pt;}
.yef{bottom:38.117692pt;}
.y20{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y1f{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y1e{bottom:77.066667pt;}
.y1d{bottom:95.466667pt;}
.y66{bottom:95.500000pt;}
.y3c{bottom:95.633333pt;}
.y41{bottom:98.433333pt;}
.y176{bottom:105.633333pt;}
.y11b{bottom:106.566667pt;}
.ya4{bottom:106.700000pt;}
.y19e{bottom:112.566667pt;}
.y1c{bottom:113.866667pt;}
.y65{bottom:116.566667pt;}
.y3b{bottom:116.700000pt;}
.y40{bottom:117.500000pt;}
.y175{bottom:126.700000pt;}
.y118{bottom:127.766667pt;}
.y119{bottom:127.800000pt;}
.ya1{bottom:127.900000pt;}
.ya2{bottom:127.933333pt;}
.y1b{bottom:132.266667pt;}
.y19d{bottom:133.773333pt;}
.y3d{bottom:136.560000pt;}
.y64{bottom:137.773333pt;}
.y3a{bottom:137.893333pt;}
.y174{bottom:147.906667pt;}
.y1a{bottom:150.666667pt;}
.y116{bottom:151.106667pt;}
.y117{bottom:151.133333pt;}
.y19c{bottom:154.973333pt;}
.y63{bottom:155.373333pt;}
.ya0{bottom:155.893333pt;}
.y39{bottom:159.106667pt;}
.y155{bottom:159.906667pt;}
.y173{bottom:169.106667pt;}
.y115{bottom:175.640000pt;}
.y19b{bottom:176.173333pt;}
.y9c{bottom:176.960000pt;}
.y9d{bottom:177.000000pt;}
.y38{bottom:180.173333pt;}
.y154{bottom:181.106667pt;}
.y172{bottom:190.173333pt;}
.y114{bottom:196.706667pt;}
.y19a{bottom:197.240000pt;}
.y37{bottom:201.373333pt;}
.y153{bottom:202.306667pt;}
.y98{bottom:206.173333pt;}
.y99{bottom:206.200000pt;}
.y171{bottom:211.373333pt;}
.y113{bottom:217.906667pt;}
.y199{bottom:218.440000pt;}
.y36{bottom:222.573333pt;}
.y152{bottom:223.373333pt;}
.y170{bottom:232.573333pt;}
.y97{bottom:236.306667pt;}
.y112{bottom:239.106667pt;}
.y198{bottom:239.640000pt;}
.y35{bottom:243.626667pt;}
.y151{bottom:244.573333pt;}
.y16f{bottom:253.640000pt;}
.y93{bottom:257.506667pt;}
.y94{bottom:257.533333pt;}
.y111{bottom:260.173333pt;}
.y197{bottom:260.706667pt;}
.y62{bottom:264.040000pt;}
.y34{bottom:264.840000pt;}
.y150{bottom:265.773333pt;}
.y16e{bottom:274.840000pt;}
.y110{bottom:281.373333pt;}
.y196{bottom:281.893333pt;}
.y61{bottom:285.226667pt;}
.y33{bottom:286.040000pt;}
.y92{bottom:286.573333pt;}
.y14f{bottom:286.973333pt;}
.y16d{bottom:296.040000pt;}
.y10f{bottom:302.560000pt;}
.y195{bottom:303.106667pt;}
.y60{bottom:306.293333pt;}
.y32{bottom:307.240000pt;}
.y8e{bottom:307.773333pt;}
.y8f{bottom:307.799964pt;}
.y14e{bottom:308.040000pt;}
.y136{bottom:312.706667pt;}
.y16c{bottom:317.106667pt;}
.y10c{bottom:323.640000pt;}
.y10d{bottom:323.666630pt;}
.y194{bottom:324.173333pt;}
.y5f{bottom:327.506667pt;}
.y31{bottom:328.306667pt;}
.y14d{bottom:329.240000pt;}
.y135{bottom:333.906667pt;}
.y8d{bottom:338.066667pt;}
.y16b{bottom:338.333333pt;}
.y10b{bottom:344.866667pt;}
.y193{bottom:345.400000pt;}
.y5e{bottom:348.733333pt;}
.y30{bottom:349.533333pt;}
.y14c{bottom:350.466667pt;}
.y134{bottom:355.000000pt;}
.y8c{bottom:359.133333pt;}
.y16a{bottom:359.533333pt;}
.y192{bottom:366.600000pt;}
.y10a{bottom:369.399964pt;}
.y109{bottom:369.400000pt;}
.y5d{bottom:369.800000pt;}
.y2f{bottom:370.733333pt;}
.y14b{bottom:371.533333pt;}
.y133{bottom:376.200000pt;}
.y8b{bottom:380.333333pt;}
.y169{bottom:380.600000pt;}
.y191{bottom:387.666667pt;}
.y108{bottom:390.466667pt;}
.y5c{bottom:390.999964pt;}
.y5b{bottom:391.000000pt;}
.y2e{bottom:391.800000pt;}
.y14a{bottom:392.733333pt;}
.y132{bottom:397.400000pt;}
.y8a{bottom:401.533333pt;}
.y168{bottom:401.800000pt;}
.y190{bottom:408.866667pt;}
.y106{bottom:411.666630pt;}
.y105{bottom:411.666667pt;}
.y2d{bottom:413.000000pt;}
.y149{bottom:413.933333pt;}
.y59{bottom:415.533333pt;}
.y131{bottom:418.466667pt;}
.y89{bottom:422.600000pt;}
.y167{bottom:423.000000pt;}
.y18f{bottom:430.066667pt;}
.y104{bottom:432.866667pt;}
.y2c{bottom:434.200000pt;}
.y148{bottom:435.000000pt;}
.y130{bottom:439.666667pt;}
.y57{bottom:439.933297pt;}
.y56{bottom:439.933333pt;}
.y88{bottom:443.800000pt;}
.y166{bottom:444.200000pt;}
.y18e{bottom:451.133333pt;}
.yeb{bottom:453.933297pt;}
.y103{bottom:453.933333pt;}
.y2b{bottom:455.266667pt;}
.y147{bottom:456.200000pt;}
.y12f{bottom:460.866667pt;}
.y55{bottom:464.466667pt;}
.y87{bottom:465.000000pt;}
.y165{bottom:465.266667pt;}
.y18d{bottom:472.333333pt;}
.y2a{bottom:476.466667pt;}
.y146{bottom:477.400000pt;}
.y12e{bottom:482.066667pt;}
.y54{bottom:485.666667pt;}
.y85{bottom:486.066630pt;}
.y84{bottom:486.066667pt;}
.y164{bottom:486.466667pt;}
.y18c{bottom:493.533333pt;}
.y29{bottom:497.666667pt;}
.y145{bottom:498.466667pt;}
.y12d{bottom:503.133333pt;}
.y53{bottom:506.733333pt;}
.y83{bottom:507.266630pt;}
.y82{bottom:507.266667pt;}
.y163{bottom:507.666667pt;}
.yea{bottom:509.400000pt;}
.y18b{bottom:514.733333pt;}
.y28{bottom:518.733333pt;}
.y144{bottom:519.666667pt;}
.y12c{bottom:524.333333pt;}
.y52{bottom:527.933333pt;}
.y162{bottom:528.733333pt;}
.ye7{bottom:530.466630pt;}
.ye6{bottom:530.466667pt;}
.y80{bottom:531.799964pt;}
.y7f{bottom:531.800000pt;}
.y18a{bottom:535.800000pt;}
.y27{bottom:539.933333pt;}
.y143{bottom:540.866667pt;}
.y12b{bottom:545.533333pt;}
.y51{bottom:549.133333pt;}
.y161{bottom:549.933333pt;}
.y7e{bottom:555.133333pt;}
.y189{bottom:557.000000pt;}
.ye5{bottom:559.666667pt;}
.y26{bottom:561.133333pt;}
.y142{bottom:561.933333pt;}
.y12a{bottom:566.600000pt;}
.y50{bottom:570.200000pt;}
.y160{bottom:571.133333pt;}
.y7d{bottom:576.333333pt;}
.y188{bottom:578.200000pt;}
.ye4{bottom:580.733333pt;}
.y141{bottom:583.133333pt;}
.y129{bottom:587.800000pt;}
.y25{bottom:590.200000pt;}
.y4f{bottom:591.400000pt;}
.y15f{bottom:592.200000pt;}
.y7c{bottom:597.400000pt;}
.y187{bottom:599.266667pt;}
.ye3{bottom:601.800000pt;}
.y140{bottom:604.333333pt;}
.y24{bottom:605.133333pt;}
.y128{bottom:609.000000pt;}
.y4e{bottom:609.133333pt;}
.y15e{bottom:613.400000pt;}
.y7b{bottom:618.600000pt;}
.y186{bottom:620.466667pt;}
.y13f{bottom:625.400000pt;}
.y127{bottom:630.066667pt;}
.ye0{bottom:631.133333pt;}
.y15d{bottom:634.600000pt;}
.y79{bottom:639.800000pt;}
.y185{bottom:641.666667pt;}
.y23{bottom:641.933333pt;}
.y13e{bottom:646.600000pt;}
.y126{bottom:651.266667pt;}
.y15c{bottom:655.706667pt;}
.y19{bottom:660.373333pt;}
.y77{bottom:660.866594pt;}
.y76{bottom:660.906667pt;}
.ydf{bottom:662.373333pt;}
.y184{bottom:662.773333pt;}
.y13d{bottom:667.840000pt;}
.y125{bottom:672.506667pt;}
.y15b{bottom:676.906667pt;}
.y74{bottom:682.066594pt;}
.y73{bottom:682.106667pt;}
.yd0{bottom:683.399928pt;}
.yde{bottom:683.440000pt;}
.y183{bottom:683.973333pt;}
.y13c{bottom:689.040000pt;}
.y124{bottom:693.573333pt;}
.y15a{bottom:698.106667pt;}
.y72{bottom:703.306667pt;}
.y182{bottom:705.173333pt;}
.y13b{bottom:710.106667pt;}
.y123{bottom:711.306667pt;}
.y159{bottom:719.173333pt;}
.y71{bottom:724.373333pt;}
.y181{bottom:726.240000pt;}
.y13a{bottom:731.293333pt;}
.ycf{bottom:738.906667pt;}
.y158{bottom:740.373333pt;}
.y70{bottom:742.240000pt;}
.y180{bottom:747.440000pt;}
.y139{bottom:752.506667pt;}
.yc7{bottom:760.066594pt;}
.yce{bottom:760.106667pt;}
.y157{bottom:761.573333pt;}
.y17f{bottom:768.640000pt;}
.y138{bottom:773.573333pt;}
.y156{bottom:779.306667pt;}
.y17e{bottom:789.706667pt;}
.y137{bottom:791.306667pt;}
.y4d{bottom:795.440000pt;}
.y17d{bottom:810.906667pt;}
.yc6{bottom:814.240000pt;}
.y4c{bottom:816.506667pt;}
.y18{bottom:829.173333pt;}
.y17c{bottom:832.106667pt;}
.ybe{bottom:835.533261pt;}
.yc5{bottom:835.573333pt;}
.y4b{bottom:837.706667pt;}
.y17{bottom:846.240000pt;}
.y17b{bottom:853.306667pt;}
.y4a{bottom:858.906667pt;}
.y16{bottom:864.640000pt;}
.ybb{bottom:870.199928pt;}
.ybd{bottom:870.240000pt;}
.y122{bottom:872.240000pt;}
.y17a{bottom:874.373333pt;}
.y49{bottom:879.973333pt;}
.y15{bottom:883.040000pt;}
.y121{bottom:893.306667pt;}
.y179{bottom:895.573333pt;}
.yb4{bottom:900.466594pt;}
.yba{bottom:900.506667pt;}
.y48{bottom:901.173333pt;}
.y14{bottom:901.440000pt;}
.y6f{bottom:911.173333pt;}
.y120{bottom:914.466594pt;}
.y11f{bottom:914.506667pt;}
.y178{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y47{bottom:922.373333pt;}
.yb0{bottom:931.799928pt;}
.yb3{bottom:931.840000pt;}
.y6e{bottom:932.373333pt;}
.y11e{bottom:935.666594pt;}
.y11d{bottom:935.706667pt;}
.y177{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y46{bottom:943.440000pt;}
.y6c{bottom:953.533261pt;}
.y6b{bottom:953.573333pt;}
.y11{bottom:956.640000pt;}
.y11c{bottom:959.040000pt;}
.yab{bottom:960.866594pt;}
.yaa{bottom:960.906667pt;}
.y45{bottom:964.640000pt;}
.y10{bottom:975.066667pt;}
.y68{bottom:976.866594pt;}
.y6a{bottom:976.933333pt;}
.y44{bottom:980.266667pt;}
.ya9{bottom:991.200000pt;}
.yf{bottom:993.466667pt;}
.y43{bottom:999.333333pt;}
.y67{bottom:1001.333333pt;}
.ya6{bottom:1012.333261pt;}
.ya5{bottom:1012.400000pt;}
.y42{bottom:1018.400000pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h1e{height:13.732847pt;}
.h20{height:13.732883pt;}
.h1c{height:13.732919pt;}
.h59{height:13.733843pt;}
.h1a{height:13.733879pt;}
.h57{height:14.932433pt;}
.h8{height:15.900000pt;}
.h5a{height:17.066951pt;}
.h1f{height:17.066988pt;}
.h18{height:17.067024pt;}
.h15{height:18.266696pt;}
.h13{height:18.266732pt;}
.h16{height:18.266769pt;}
.h12{height:18.400000pt;}
.hf{height:18.433333pt;}
.h2c{height:21.733418pt;}
.h25{height:22.933082pt;}
.h4d{height:22.933118pt;}
.h31{height:22.933155pt;}
.h28{height:24.000167pt;}
.h22{height:24.000203pt;}
.h32{height:24.000240pt;}
.h49{height:25.066408pt;}
.h2e{height:25.066481pt;}
.h34{height:25.570904pt;}
.h44{height:26.144171pt;}
.h38{height:26.461713pt;}
.h36{height:28.533290pt;}
.h51{height:34.514586pt;}
.h2f{height:35.897576pt;}
.h29{height:36.155039pt;}
.h23{height:36.279363pt;}
.h45{height:36.552347pt;}
.h56{height:36.570541pt;}
.h26{height:36.581028pt;}
.h3e{height:36.651820pt;}
.h10{height:36.800000pt;}
.h3a{height:37.096970pt;}
.h6{height:40.266667pt;}
.h39{height:42.529835pt;}
.h3{height:43.200000pt;}
.hb{height:46.281250pt;}
.h7{height:47.109375pt;}
.h3d{height:47.999098pt;}
.h4e{height:49.199315pt;}
.h42{height:49.199351pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h21{height:54.818262pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h47{height:59.199790pt;}
.h41{height:59.360895pt;}
.h17{height:60.308467pt;}
.h14{height:60.429124pt;}
.h19{height:60.432368pt;}
.h35{height:61.497550pt;}
.h30{height:61.588953pt;}
.h4a{height:61.619610pt;}
.h2a{height:61.997387pt;}
.h24{height:62.120683pt;}
.h4b{height:62.151605pt;}
.h46{height:62.694981pt;}
.h48{height:62.726188pt;}
.h27{height:62.727859pt;}
.h4c{height:62.759082pt;}
.h5b{height:62.781250pt;}
.hc{height:62.812500pt;}
.h2b{height:62.852607pt;}
.h3f{height:62.865597pt;}
.h2d{height:63.160506pt;}
.h3c{height:63.591891pt;}
.h52{height:63.884690pt;}
.ha{height:64.500000pt;}
.h58{height:65.096284pt;}
.h11{height:65.781915pt;}
.h1d{height:65.813376pt;}
.h1b{height:65.817976pt;}
.h2{height:73.281250pt;}
.h50{height:74.786441pt;}
.h33{height:76.615786pt;}
.h54{height:76.824202pt;}
.h43{height:78.270279pt;}
.h37{height:79.142522pt;}
.h3b{height:81.095063pt;}
.h4f{height:88.918211pt;}
.h53{height:101.644768pt;}
.h55{height:102.613119pt;}
.h40{height:113.308893pt;}
.he{height:165.600000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w14{width:9.199872pt;}
.w27{width:9.200001pt;}
.wd{width:9.200028pt;}
.w12{width:12.666157pt;}
.w28{width:12.666166pt;}
.w15{width:12.666193pt;}
.w11{width:12.666229pt;}
.we{width:13.733251pt;}
.w29{width:14.932701pt;}
.wf{width:14.933661pt;}
.w2a{width:16.000515pt;}
.w10{width:16.000551pt;}
.w13{width:16.000587pt;}
.w25{width:17.067239pt;}
.w26{width:17.067266pt;}
.w19{width:20.666671pt;}
.w1a{width:22.933657pt;}
.w18{width:22.933684pt;}
.w1b{width:23.999489pt;}
.w17{width:23.999521pt;}
.w16{width:30.932876pt;}
.w21{width:31.999873pt;}
.w23{width:36.665674pt;}
.w22{width:37.734426pt;}
.w1f{width:89.198282pt;}
.w1d{width:92.667338pt;}
.w1c{width:97.200711pt;}
.wa{width:123.733333pt;}
.wc{width:123.766667pt;}
.w6{width:158.533333pt;}
.w1e{width:161.200913pt;}
.w20{width:199.994171pt;}
.w24{width:222.934181pt;}
.w9{width:223.893333pt;}
.wb{width:223.906667pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:1.927678pt;}
.x2e{left:2.986784pt;}
.x4{left:6.133333pt;}
.x5c{left:8.380902pt;}
.x9{left:11.053333pt;}
.x3f{left:12.400140pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1c{left:18.566667pt;}
.x5{left:19.733333pt;}
.x5b{left:23.396740pt;}
.x66{left:25.155919pt;}
.xb{left:28.533333pt;}
.x43{left:30.356582pt;}
.x49{left:36.358526pt;}
.x3{left:37.866655pt;}
.x6b{left:39.021469pt;}
.x50{left:40.878530pt;}
.x58{left:49.612072pt;}
.x6d{left:52.597038pt;}
.x46{left:55.830816pt;}
.x57{left:56.980982pt;}
.x68{left:59.931522pt;}
.x1e{left:61.866655pt;}
.x45{left:63.939016pt;}
.x10{left:67.466655pt;}
.x4f{left:68.407750pt;}
.x4c{left:69.922792pt;}
.x4e{left:78.116335pt;}
.x44{left:81.782854pt;}
.x63{left:84.154998pt;}
.x1d{left:85.066655pt;}
.x4b{left:87.716244pt;}
.x1b{left:89.066667pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x65{left:96.603928pt;}
.x72{left:98.533322pt;}
.x6f{left:102.933322pt;}
.x40{left:106.533322pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x41{left:120.466658pt;}
.x6a{left:124.140817pt;}
.x27{left:130.333324pt;}
.x59{left:131.850075pt;}
.x28{left:144.026655pt;}
.x6c{left:145.625500pt;}
.x56{left:147.324911pt;}
.x4a{left:153.006728pt;}
.x55{left:157.036595pt;}
.x54{left:163.156291pt;}
.x69{left:167.918917pt;}
.x51{left:174.293322pt;}
.x48{left:177.773322pt;}
.x53{left:180.983215pt;}
.x47{left:182.306655pt;}
.x52{left:187.994253pt;}
.x61{left:199.933315pt;}
.x64{left:207.584172pt;}
.x67{left:213.024511pt;}
.x62{left:236.559988pt;}
.x4d{left:246.293322pt;}
.x22{left:263.106667pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x5f{left:281.666649pt;}
.x5a{left:285.106655pt;}
.x5d{left:286.999982pt;}
.x6e{left:308.039988pt;}
.x70{left:313.799964pt;}
.x60{left:318.293322pt;}
.x24{left:319.799964pt;}
.x5e{left:324.693322pt;}
.x26{left:328.973322pt;}
.x71{left:330.839988pt;}
.x42{left:344.999964pt;}
.x23{left:362.866655pt;}
.x75{left:366.199964pt;}
.x73{left:367.399964pt;}
.x2b{left:368.733322pt;}
.x7b{left:371.666655pt;}
.x29{left:378.333297pt;}
.x74{left:382.333322pt;}
.x2a{left:387.533322pt;}
.x12{left:398.466655pt;}
.x20{left:406.466655pt;}
.x3a{left:430.466655pt;}
.x1f{left:453.666655pt;}
.x17{left:455.266655pt;}
.x2c{left:468.599988pt;}
.x3e{left:470.466655pt;}
.x3d{left:477.399988pt;}
.x3c{left:478.466655pt;}
.x2d{left:484.333297pt;}
.x3b{left:485.399988pt;}
.x38{left:491.666630pt;}
.x2f{left:500.333322pt;}
.x39{left:504.333322pt;}
.x11{left:521.933322pt;}
.x13{left:522.866655pt;}
.x19{left:545.933322pt;}
.x16{left:550.333322pt;}
.x76{left:551.933333pt;}
.xc{left:555.933333pt;}
.x14{left:560.466655pt;}
.x77{left:567.973322pt;}
.x78{left:592.733297pt;}
.x79{left:605.439988pt;}
.x21{left:631.693333pt;}
.xf{left:634.360000pt;}
.x18{left:679.693322pt;}
.x37{left:681.133261pt;}
.x32{left:690.200000pt;}
.x30{left:694.599928pt;}
.x33{left:702.893322pt;}
.x31{left:707.293322pt;}
.x34{left:721.933261pt;}
.x35{left:734.626655pt;}
.x2{left:737.439988pt;}
.x36{left:740.066594pt;}
.x15{left:756.106655pt;}
.x7c{left:765.959988pt;}
.x7a{left:775.439988pt;}
}




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