
    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_a07a6c01acee7b77f1dff22c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_411df748053944189d45edb6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2139058fa874242026b16cdf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2166adbcb01ec414bf93c634.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_24633ce50ed7bce6aac4f7cd.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_0f8aacff2cef8744c50a9036.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8e3347b71a36f9c01f995a8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_169d19020fcaf71b0919f45d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d42fce7f085726a32070c51a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_606cd8ea1636a0c08fa7df88.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_5519b31e67f52dd686daa032.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_46659d8a30c1c309de18c029.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.695312;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;}
.m6{transform:matrix(0.162156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162156,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.163009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163009,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.216207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216207,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217346,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234735,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);}
.m2{transform:matrix(0.261082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261082,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);}
.v6{vertical-align:-32.600875px;}
.v2{vertical-align:-20.705499px;}
.v7{vertical-align:-19.440000px;}
.v4{vertical-align:-14.396311px;}
.v5{vertical-align:-10.556952px;}
.v1{vertical-align:-5.940000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.187037px;}
.ls27{letter-spacing:-1.033037px;}
.ls32{letter-spacing:-0.942000px;}
.ls26{letter-spacing:-0.836570px;}
.ls2f{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.269400px;}
.ls24{letter-spacing:-0.259800px;}
.ls33{letter-spacing:-0.223800px;}
.lse{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.206400px;}
.ls22{letter-spacing:-0.181200px;}
.ls25{letter-spacing:-0.068448px;}
.ls12{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.004320px;}
.ls1b{letter-spacing:0.008640px;}
.ls10{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.144720px;}
.lsb{letter-spacing:0.153360px;}
.ls6{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.197280px;}
.ls17{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.223920px;}
.ls9{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls3a{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.314400px;}
.ls38{letter-spacing:0.314640px;}
.ls4{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.403920px;}
.ls3{letter-spacing:0.738000px;}
.ls11{letter-spacing:0.900000px;}
.ls15{letter-spacing:0.924000px;}
.ls16{letter-spacing:0.978000px;}
.ls30{letter-spacing:1.080000px;}
.ls39{letter-spacing:8.586720px;}
.ls2e{letter-spacing:9.306720px;}
.ls2b{letter-spacing:10.746720px;}
.ls1c{letter-spacing:15.066720px;}
.lsc{letter-spacing:17.946720px;}
.lsa{letter-spacing:20.826720px;}
.lsd{letter-spacing:22.589280px;}
.ls7{letter-spacing:30.186720px;}
.ls1f{letter-spacing:53.142468px;}
.ls37{letter-spacing:69.365280px;}
.ls34{letter-spacing:72.269280px;}
.ls1e{letter-spacing:72.514592px;}
.ls19{letter-spacing:88.085280px;}
.ls18{letter-spacing:103.949280px;}
.ls29{letter-spacing:337.013836px;}
.ls2a{letter-spacing:340.025209px;}
.ls28{letter-spacing:838.217668px;}
.ls3b{letter-spacing:1503.120000px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.ws2e{word-spacing:-16.020000px;}
.ws13{word-spacing:-15.918000px;}
.ws11{word-spacing:-15.864000px;}
.wsf{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.733600px;}
.ws1b{word-spacing:-14.680200px;}
.ws2d{word-spacing:-14.274000px;}
.wsb{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.284000px;}
.ws1f{word-spacing:-13.124641px;}
.wsa{word-spacing:-12.996000px;}
.ws32{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.374400px;}
.ws14{word-spacing:-12.060000px;}
.ws19{word-spacing:-11.878800px;}
.ws31{word-spacing:-11.790600px;}
.ws33{word-spacing:-11.700000px;}
.ws2f{word-spacing:-11.118000px;}
.ws18{word-spacing:-9.728640px;}
.ws30{word-spacing:-9.724320px;}
.ws23{word-spacing:-7.819558px;}
.ws29{word-spacing:-7.800380px;}
.ws17{word-spacing:-7.560000px;}
.ws1e{word-spacing:-0.367490px;}
.ws5{word-spacing:0.000000px;}
.ws20{word-spacing:0.226125px;}
.ws3{word-spacing:0.288000px;}
.ws0{word-spacing:1.296000px;}
.ws2{word-spacing:10.080000px;}
.ws4{word-spacing:12.240000px;}
.ws1c{word-spacing:49.666469px;}
.ws1{word-spacing:54.000000px;}
.ws27{word-spacing:105.516643px;}
.ws28{word-spacing:105.534598px;}
.ws21{word-spacing:105.992053px;}
.ws22{word-spacing:106.019052px;}
.ws2c{word-spacing:111.719124px;}
.ws26{word-spacing:119.734300px;}
.ws1d{word-spacing:144.349605px;}
.ws2b{word-spacing:199.895696px;}
.ws25{word-spacing:202.606458px;}
.ws24{word-spacing:244.231989px;}
.ws2a{word-spacing:247.358775px;}
._2{margin-left:-18.864000px;}
._22{margin-left:-4.182480px;}
._23{margin-left:-2.988000px;}
._0{margin-left:-1.800000px;}
._1{width:1.080000px;}
._12{width:2.196000px;}
._13{width:3.348000px;}
._1d{width:4.950720px;}
._18{width:5.971680px;}
._19{width:7.115760px;}
._f{width:8.586000px;}
._7{width:9.666000px;}
._8{width:11.124000px;}
._14{width:12.366000px;}
._1a{width:13.483920px;}
._e{width:15.192000px;}
._d{width:16.866000px;}
._20{width:18.732000px;}
._1b{width:19.959840px;}
._1c{width:21.526320px;}
._c{width:23.112000px;}
._b{width:24.912000px;}
._11{width:25.974000px;}
._10{width:27.018000px;}
._21{width:28.554480px;}
._2d{width:30.448080px;}
._1f{width:31.613040px;}
._5{width:33.318000px;}
._6{width:34.338000px;}
._1e{width:36.453600px;}
._4{width:38.520000px;}
._3{width:39.630000px;}
._9{width:41.148000px;}
._a{width:42.228000px;}
._24{width:43.587360px;}
._25{width:44.820000px;}
._31{width:47.306640px;}
._17{width:48.704400px;}
._30{width:51.035040px;}
._16{width:61.493040px;}
._39{width:67.948560px;}
._38{width:69.287760px;}
._3b{width:74.016000px;}
._3a{width:75.157920px;}
._29{width:80.820000px;}
._15{width:88.788000px;}
._37{width:90.100800px;}
._36{width:91.329840px;}
._35{width:101.448720px;}
._34{width:102.461760px;}
._26{width:201.060000px;}
._2b{width:219.064516px;}
._27{width:293.295840px;}
._2a{width:297.738623px;}
._32{width:300.810000px;}
._33{width:301.967280px;}
._28{width:318.497568px;}
._2c{width:321.442215px;}
._2e{width:1289.280000px;}
._2f{width:1298.496000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:5.760000px;}
.fs7{font-size:26.706671px;}
.fs6{font-size:30.240000px;}
.fsf{font-size:31.201521px;}
.fsc{font-size:31.278232px;}
.fs5{font-size:38.880000px;}
.fse{font-size:40.740407px;}
.fsb{font-size:40.840569px;}
.fs8{font-size:46.154438px;}
.fs1{font-size:48.240000px;}
.fsa{font-size:52.498563px;}
.fs10{font-size:53.996676px;}
.fs3{font-size:54.000000px;}
.fsd{font-size:54.129430px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:69.297824px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:2.700000px;}
.y73{bottom:2.745000px;}
.ybb{bottom:4.970033px;}
.yc0{bottom:5.903046px;}
.yd1{bottom:6.959239px;}
.yca{bottom:6.976348px;}
.yd3{bottom:7.525667px;}
.ycc{bottom:7.544169px;}
.yd2{bottom:7.727999px;}
.ycb{bottom:7.746998px;}
.y7a{bottom:9.180000px;}
.y16a{bottom:9.360000px;}
.yd5{bottom:12.057260px;}
.yce{bottom:12.086904px;}
.yd4{bottom:15.536795px;}
.ycd{bottom:15.574994px;}
.y7b{bottom:15.660000px;}
.y7d{bottom:15.840000px;}
.ybc{bottom:15.938385px;}
.yc1{bottom:16.070698px;}
.ybf{bottom:24.220916px;}
.yba{bottom:28.003759px;}
.y7e{bottom:28.980000px;}
.y7{bottom:56.700000px;}
.yff{bottom:114.516000px;}
.y126{bottom:119.196000px;}
.y132{bottom:123.336000px;}
.y197{bottom:127.296000px;}
.y144{bottom:129.996000px;}
.yfe{bottom:130.896000px;}
.y9c{bottom:134.136000px;}
.yd0{bottom:135.465000px;}
.y125{bottom:135.576000px;}
.y131{bottom:136.476000px;}
.y165{bottom:138.456000px;}
.y5f{bottom:141.696000px;}
.y196{bottom:143.676000px;}
.y3f{bottom:144.216000px;}
.y143{bottom:146.376000px;}
.yfd{bottom:147.276000px;}
.yd6{bottom:148.896000px;}
.y130{bottom:149.616000px;}
.y124{bottom:151.950000px;}
.y5e{bottom:154.830000px;}
.y9b{bottom:159.510000px;}
.y195{bottom:160.050000px;}
.y3e{bottom:160.590000px;}
.y142{bottom:162.750000px;}
.yfc{bottom:163.830000px;}
.y12f{bottom:165.990000px;}
.y123{bottom:168.330000px;}
.ycf{bottom:168.870000px;}
.yc9{bottom:168.915000px;}
.y164{bottom:169.770000px;}
.y5d{bottom:171.210000px;}
.y9a{bottom:175.890000px;}
.y194{bottom:176.430000px;}
.y3d{bottom:176.970000px;}
.y141{bottom:179.130000px;}
.yfb{bottom:180.210000px;}
.y122{bottom:184.710000px;}
.y99{bottom:192.270000px;}
.y3c{bottom:193.350000px;}
.y163{bottom:195.150000px;}
.y140{bottom:195.510000px;}
.y157{bottom:196.410000px;}
.yfa{bottom:196.590000px;}
.y121{bottom:201.090000px;}
.y193{bottom:201.810000px;}
.yc8{bottom:202.170000px;}
.y98{bottom:208.650000px;}
.y3b{bottom:209.730000px;}
.y162{bottom:211.530000px;}
.y156{bottom:212.790000px;}
.yf9{bottom:212.970000px;}
.y120{bottom:217.470000px;}
.y192{bottom:218.190000px;}
.y13f{bottom:220.890000px;}
.y186{bottom:224.850000px;}
.y97{bottom:225.210000px;}
.y3a{bottom:226.110000px;}
.yc7{bottom:227.550000px;}
.y161{bottom:227.910000px;}
.yf8{bottom:229.350000px;}
.y11f{bottom:233.850000px;}
.y191{bottom:234.570000px;}
.y13e{bottom:237.270000px;}
.y155{bottom:238.170000px;}
.y96{bottom:241.590000px;}
.y39{bottom:242.490000px;}
.yc6{bottom:243.930000px;}
.y160{bottom:244.290000px;}
.yf7{bottom:245.730000px;}
.y11e{bottom:250.230000px;}
.y13d{bottom:253.650000px;}
.y154{bottom:254.550000px;}
.y190{bottom:256.890000px;}
.y95{bottom:257.970000px;}
.y38{bottom:258.870000px;}
.yc5{bottom:260.310000px;}
.y15f{bottom:260.670000px;}
.yf6{bottom:262.110000px;}
.y11d{bottom:266.610000px;}
.y13c{bottom:270.210000px;}
.y153{bottom:270.930000px;}
.y37{bottom:275.250000px;}
.yc4{bottom:276.690000px;}
.y15e{bottom:277.050000px;}
.y11c{bottom:282.990000px;}
.y185{bottom:283.170000px;}
.y94{bottom:283.350000px;}
.y13b{bottom:286.590000px;}
.yf5{bottom:287.490000px;}
.y36{bottom:291.630000px;}
.yc3{bottom:293.070000px;}
.y15d{bottom:293.430000px;}
.y11b{bottom:299.370000px;}
.y184{bottom:299.550000px;}
.y93{bottom:299.730000px;}
.y18f{bottom:300.630000px;}
.yf4{bottom:303.870000px;}
.y35{bottom:308.010000px;}
.yc2{bottom:309.450000px;}
.y13a{bottom:311.970000px;}
.y18e{bottom:313.770000px;}
.y11a{bottom:315.750000px;}
.y183{bottom:315.930000px;}
.y92{bottom:316.110000px;}
.y15c{bottom:318.810000px;}
.yf3{bottom:320.250000px;}
.y1f7{bottom:324.570000px;}
.y139{bottom:328.395000px;}
.y18d{bottom:330.375000px;}
.y119{bottom:332.175000px;}
.y182{bottom:332.355000px;}
.y91{bottom:332.535000px;}
.y34{bottom:333.435000px;}
.ybe{bottom:333.990000px;}
.y15b{bottom:335.235000px;}
.yf2{bottom:336.675000px;}
.y1f6{bottom:338.655000px;}
.y1f5{bottom:340.455000px;}
.y1f4{bottom:342.075000px;}
.y1f3{bottom:343.875000px;}
.y138{bottom:344.775000px;}
.y181{bottom:348.735000px;}
.y90{bottom:348.915000px;}
.y33{bottom:349.815000px;}
.y1f2{bottom:350.535000px;}
.y15a{bottom:351.615000px;}
.y1bb{bottom:351.795000px;}
.yf1{bottom:353.055000px;}
.y152{bottom:355.935000px;}
.y118{bottom:357.735000px;}
.y137{bottom:361.155000px;}
.y8f{bottom:365.295000px;}
.y5c{bottom:365.475000px;}
.y1ba{bottom:365.655000px;}
.y32{bottom:366.195000px;}
.y1f1{bottom:367.815000px;}
.yb9{bottom:371.790000px;}
.y151{bottom:372.315000px;}
.y117{bottom:374.115000px;}
.y159{bottom:376.995000px;}
.y136{bottom:377.535000px;}
.yf0{bottom:378.435000px;}
.y1b9{bottom:379.515000px;}
.y8e{bottom:381.675000px;}
.y5b{bottom:381.855000px;}
.y31{bottom:382.575000px;}
.y1f0{bottom:384.375000px;}
.ybd{bottom:388.335000px;}
.y116{bottom:390.495000px;}
.y150{bottom:391.935000px;}
.y1b8{bottom:393.195000px;}
.y158{bottom:393.375000px;}
.y135{bottom:393.915000px;}
.yef{bottom:394.815000px;}
.y8d{bottom:398.055000px;}
.y5a{bottom:398.415000px;}
.y30{bottom:398.955000px;}
.y115{bottom:406.875000px;}
.y1b7{bottom:407.055000px;}
.y134{bottom:410.295000px;}
.yee{bottom:411.195000px;}
.y1ef{bottom:411.915000px;}
.y59{bottom:414.795000px;}
.y2f{bottom:415.335000px;}
.y1b6{bottom:420.915000px;}
.yb8{bottom:423.255000px;}
.y8c{bottom:423.435000px;}
.y14f{bottom:424.155000px;}
.y1ee{bottom:425.775000px;}
.y133{bottom:426.675000px;}
.yed{bottom:427.575000px;}
.y58{bottom:431.175000px;}
.y2e{bottom:431.715000px;}
.y1b5{bottom:434.595000px;}
.y1ed{bottom:439.455000px;}
.yb7{bottom:439.635000px;}
.y8b{bottom:439.815000px;}
.y14e{bottom:443.235000px;}
.yec{bottom:443.955000px;}
.y57{bottom:447.555000px;}
.y2d{bottom:448.095000px;}
.y1b4{bottom:448.455000px;}
.y180{bottom:448.635000px;}
.y1ec{bottom:453.315000px;}
.y14d{bottom:453.675000px;}
.yb6{bottom:456.015000px;}
.y8a{bottom:456.195000px;}
.y12e{bottom:457.275000px;}
.y1b3{bottom:462.315000px;}
.y56{bottom:463.935000px;}
.y2c{bottom:464.475000px;}
.y17f{bottom:465.015000px;}
.y1eb{bottom:467.175000px;}
.yeb{bottom:469.335000px;}
.yb5{bottom:472.395000px;}
.y89{bottom:472.575000px;}
.y1b2{bottom:475.995000px;}
.y12d{bottom:476.355000px;}
.y55{bottom:480.315000px;}
.y2b{bottom:480.855000px;}
.y17e{bottom:481.395000px;}
.yea{bottom:485.715000px;}
.y12c{bottom:486.795000px;}
.yb4{bottom:488.775000px;}
.y88{bottom:488.955000px;}
.y1b1{bottom:489.855000px;}
.y1ea{bottom:494.715000px;}
.y54{bottom:496.695000px;}
.y2a{bottom:497.235000px;}
.y17d{bottom:497.775000px;}
.ye9{bottom:502.095000px;}
.y1b0{bottom:503.715000px;}
.yb3{bottom:505.155000px;}
.y87{bottom:505.335000px;}
.y1e9{bottom:508.575000px;}
.y114{bottom:509.655000px;}
.y53{bottom:513.075000px;}
.y29{bottom:513.615000px;}
.y17c{bottom:514.155000px;}
.ye8{bottom:518.475000px;}
.yb2{bottom:521.535000px;}
.y86{bottom:521.715000px;}
.y1e8{bottom:522.255000px;}
.y1af{bottom:524.055000px;}
.y52{bottom:529.455000px;}
.y17b{bottom:530.535000px;}
.ye7{bottom:534.855000px;}
.y113{bottom:535.035000px;}
.y28{bottom:536.115000px;}
.yb1{bottom:537.915000px;}
.y85{bottom:538.095000px;}
.y51{bottom:545.835000px;}
.y17a{bottom:546.915000px;}
.y1e7{bottom:549.975000px;}
.ye6{bottom:551.235000px;}
.y112{bottom:551.415000px;}
.y1ae{bottom:553.395000px;}
.yb0{bottom:554.295000px;}
.y84{bottom:554.475000px;}
.y50{bottom:562.215000px;}
.y179{bottom:563.295000px;}
.y1e6{bottom:563.655000px;}
.y27{bottom:564.735000px;}
.ye5{bottom:567.615000px;}
.y111{bottom:567.795000px;}
.yaf{bottom:570.675000px;}
.y1e5{bottom:577.515000px;}
.y178{bottom:579.675000px;}
.y83{bottom:579.855000px;}
.y26{bottom:580.395000px;}
.y4f{bottom:583.095000px;}
.ye4{bottom:583.995000px;}
.y110{bottom:584.175000px;}
.yae{bottom:587.055000px;}
.y1ad{bottom:587.955000px;}
.y1e4{bottom:591.375000px;}
.y25{bottom:595.905000px;}
.y177{bottom:596.085000px;}
.y82{bottom:596.265000px;}
.ye3{bottom:600.405000px;}
.y10f{bottom:600.585000px;}
.yad{bottom:603.465000px;}
.y1e3{bottom:605.085000px;}
.y1ac{bottom:605.265000px;}
.y4e{bottom:608.505000px;}
.y176{bottom:612.465000px;}
.y81{bottom:612.645000px;}
.y18c{bottom:616.425000px;}
.ye2{bottom:616.785000px;}
.y10e{bottom:616.965000px;}
.y1e2{bottom:618.945000px;}
.yac{bottom:619.845000px;}
.y1ab{bottom:622.545000px;}
.y24{bottom:626.145000px;}
.y175{bottom:628.845000px;}
.y18b{bottom:632.805000px;}
.ye1{bottom:633.165000px;}
.y10d{bottom:633.345000px;}
.y80{bottom:633.705000px;}
.yab{bottom:636.225000px;}
.y4d{bottom:636.945000px;}
.y1aa{bottom:639.645000px;}
.y23{bottom:641.985000px;}
.y174{bottom:645.225000px;}
.y1e1{bottom:646.485000px;}
.y18a{bottom:649.185000px;}
.ye0{bottom:649.545000px;}
.y10c{bottom:649.725000px;}
.yaa{bottom:652.605000px;}
.y4c{bottom:653.325000px;}
.y7f{bottom:657.105000px;}
.y22{bottom:657.465000px;}
.y1e0{bottom:660.345000px;}
.y173{bottom:661.605000px;}
.y1a9{bottom:662.865000px;}
.y189{bottom:665.565000px;}
.y4b{bottom:669.705000px;}
.y21{bottom:672.945000px;}
.y1df{bottom:674.205000px;}
.y10b{bottom:675.105000px;}
.ya9{bottom:677.985000px;}
.ydf{bottom:680.325000px;}
.y188{bottom:681.945000px;}
.y4a{bottom:686.085000px;}
.y1de{bottom:687.885000px;}
.y20{bottom:688.425000px;}
.y10a{bottom:691.485000px;}
.y1a8{bottom:692.025000px;}
.yde{bottom:693.465000px;}
.ya8{bottom:694.365000px;}
.y7c{bottom:697.245000px;}
.y172{bottom:697.785000px;}
.y187{bottom:698.325000px;}
.y14c{bottom:698.505000px;}
.y1dd{bottom:701.745000px;}
.y49{bottom:702.465000px;}
.y1f{bottom:704.085000px;}
.y109{bottom:707.865000px;}
.y1a7{bottom:708.405000px;}
.y14b{bottom:708.945000px;}
.ydd{bottom:709.845000px;}
.ya7{bottom:710.745000px;}
.y1dc{bottom:715.605000px;}
.y48{bottom:718.845000px;}
.y1e{bottom:719.565000px;}
.y108{bottom:724.245000px;}
.y1a6{bottom:724.785000px;}
.y171{bottom:728.925000px;}
.y1db{bottom:729.285000px;}
.y12b{bottom:731.625000px;}
.y1d{bottom:735.045000px;}
.y47{bottom:735.225000px;}
.ya6{bottom:736.125000px;}
.y79{bottom:737.385000px;}
.y107{bottom:740.625000px;}
.y1a5{bottom:741.165000px;}
.y170{bottom:742.065000px;}
.y12a{bottom:742.245000px;}
.y1da{bottom:743.145000px;}
.y1c{bottom:750.525000px;}
.y46{bottom:751.605000px;}
.ya5{bottom:752.505000px;}
.y16f{bottom:755.205000px;}
.y106{bottom:757.005000px;}
.y1a4{bottom:757.545000px;}
.y78{bottom:764.205000px;}
.y1b{bottom:766.185000px;}
.ya4{bottom:768.885000px;}
.y1d9{bottom:770.685000px;}
.y16e{bottom:771.585000px;}
.y105{bottom:773.385000px;}
.y1a3{bottom:773.925000px;}
.y45{bottom:776.985000px;}
.y77{bottom:778.065000px;}
.y1a{bottom:781.665000px;}
.y1d8{bottom:784.545000px;}
.ya3{bottom:785.265000px;}
.y104{bottom:789.765000px;}
.y1a2{bottom:790.305000px;}
.y44{bottom:793.365000px;}
.y19{bottom:797.145000px;}
.y1d7{bottom:798.405000px;}
.y76{bottom:803.445000px;}
.y103{bottom:806.145000px;}
.y1a1{bottom:806.685000px;}
.y43{bottom:809.745000px;}
.ya2{bottom:810.645000px;}
.y1d6{bottom:812.085000px;}
.y18{bottom:812.625000px;}
.y1a0{bottom:823.065000px;}
.y1d5{bottom:825.945000px;}
.y42{bottom:826.125000px;}
.ya1{bottom:827.025000px;}
.y17{bottom:828.285000px;}
.y75{bottom:832.245000px;}
.y102{bottom:836.925000px;}
.y19f{bottom:839.445000px;}
.y1d4{bottom:839.625000px;}
.y41{bottom:842.505000px;}
.y16{bottom:843.765000px;}
.y74{bottom:846.105000px;}
.ya0{bottom:847.905000px;}
.y101{bottom:850.065000px;}
.y1d3{bottom:853.485000px;}
.y19e{bottom:855.825000px;}
.y40{bottom:858.885000px;}
.y15{bottom:859.245000px;}
.y72{bottom:859.965000px;}
.y100{bottom:866.490000px;}
.y1d2{bottom:867.390000px;}
.y19d{bottom:872.250000px;}
.y70{bottom:873.870000px;}
.y9f{bottom:878.730000px;}
.y1d1{bottom:881.070000px;}
.y9e{bottom:891.870000px;}
.y1d0{bottom:894.930000px;}
.y19c{bottom:897.630000px;}
.y6f{bottom:899.070000px;}
.y9d{bottom:908.250000px;}
.y1cf{bottom:908.790000px;}
.y14{bottom:909.690000px;}
.y19b{bottom:914.010000px;}
.y1ce{bottom:922.470000px;}
.y13{bottom:925.170000px;}
.y6e{bottom:930.570000px;}
.y1cd{bottom:936.330000px;}
.y12{bottom:940.650000px;}
.y6d{bottom:946.950000px;}
.y1cc{bottom:950.190000px;}
.y14a{bottom:954.510000px;}
.y11{bottom:956.310000px;}
.y6c{bottom:963.330000px;}
.y1cb{bottom:963.870000px;}
.y149{bottom:970.890000px;}
.y10{bottom:971.790000px;}
.y1ca{bottom:977.730000px;}
.y6b{bottom:979.710000px;}
.y148{bottom:984.570000px;}
.yf{bottom:987.270000px;}
.y1c9{bottom:991.590000px;}
.ydc{bottom:995.910000px;}
.y6a{bottom:996.090000px;}
.y147{bottom:998.430000px;}
.ye{bottom:1002.750000px;}
.y1c8{bottom:1005.270000px;}
.ydb{bottom:1012.290000px;}
.y69{bottom:1012.470000px;}
.yd{bottom:1018.410000px;}
.y1c7{bottom:1019.130000px;}
.yda{bottom:1028.670000px;}
.y68{bottom:1028.850000px;}
.y1c6{bottom:1032.990000px;}
.yc{bottom:1033.890000px;}
.y6{bottom:1036.800000px;}
.y146{bottom:1037.670000px;}
.y19a{bottom:1037.850000px;}
.yd9{bottom:1045.050000px;}
.y67{bottom:1045.230000px;}
.y1c5{bottom:1046.670000px;}
.y16d{bottom:1048.650000px;}
.yb{bottom:1049.370000px;}
.y199{bottom:1054.230000px;}
.y5{bottom:1057.500000px;}
.y1c4{bottom:1060.530000px;}
.y66{bottom:1061.610000px;}
.y16c{bottom:1065.030000px;}
.yd8{bottom:1065.930000px;}
.y198{bottom:1070.610000px;}
.y1c3{bottom:1074.390000px;}
.y65{bottom:1077.990000px;}
.y4{bottom:1078.200000px;}
.y16b{bottom:1078.710000px;}
.y129{bottom:1086.990000px;}
.y1c2{bottom:1088.070000px;}
.yd7{bottom:1091.310000px;}
.y64{bottom:1094.370000px;}
.y3{bottom:1098.900000px;}
.y1c1{bottom:1101.930000px;}
.y128{bottom:1103.370000px;}
.y169{bottom:1105.710000px;}
.ya{bottom:1106.250000px;}
.y127{bottom:1110.750000px;}
.y1c0{bottom:1115.790000px;}
.y2{bottom:1119.600000px;}
.y63{bottom:1119.750000px;}
.y145{bottom:1127.130000px;}
.y1bf{bottom:1129.500000px;}
.y168{bottom:1132.740000px;}
.y62{bottom:1136.160000px;}
.y1{bottom:1140.300000px;}
.y1be{bottom:1143.360000px;}
.y167{bottom:1146.600000px;}
.y9{bottom:1147.680000px;}
.y61{bottom:1152.540000px;}
.y1bd{bottom:1157.220000px;}
.y60{bottom:1168.920000px;}
.y1bc{bottom:1170.900000px;}
.y166{bottom:1171.980000px;}
.y8{bottom:1189.080000px;}
.h32{height:5.653125px;}
.hc{height:12.960000px;}
.hd{height:12.996000px;}
.he{height:13.140000px;}
.h17{height:19.782236px;}
.h2b{height:23.111674px;}
.h23{height:23.168495px;}
.hf{height:26.100000px;}
.h15{height:26.198096px;}
.h13{height:26.211137px;}
.h30{height:26.280000px;}
.h2e{height:26.316000px;}
.h29{height:30.607352px;}
.h27{height:30.622587px;}
.h21{height:30.682601px;}
.h1f{height:30.697874px;}
.h25{height:30.750399px;}
.h1d{height:30.826000px;}
.h26{height:31.148266px;}
.h1e{height:31.224845px;}
.h2f{height:34.884492px;}
.h1a{height:39.073200px;}
.h12{height:39.075211px;}
.h10{height:39.240000px;}
.h11{height:39.420000px;}
.h2c{height:39.996562px;}
.h24{height:40.094895px;}
.h19{height:40.472227px;}
.h18{height:40.773516px;}
.h31{height:47.321367px;}
.h3{height:47.344922px;}
.hb{height:49.583118px;}
.h2{height:49.992188px;}
.h1c{height:51.498834px;}
.h1b{height:51.524468px;}
.h14{height:52.385133px;}
.h2a{height:52.968419px;}
.h7{height:52.971680px;}
.h28{height:52.994785px;}
.h5{height:52.998047px;}
.h22{height:53.098645px;}
.h20{height:53.125076px;}
.h16{height:53.581877px;}
.h6{height:54.421875px;}
.h2d{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:59.614102px;}
.h8{height:61.423863px;}
.h4{height:104.132812px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:28.800000px;}
.wd{width:30.060000px;}
.w19{width:30.096000px;}
.w1a{width:30.240000px;}
.w1b{width:30.276000px;}
.wf{width:37.800000px;}
.w10{width:37.836000px;}
.we{width:37.980000px;}
.w13{width:45.540000px;}
.w12{width:45.576000px;}
.w11{width:53.280000px;}
.w15{width:58.860000px;}
.w14{width:68.760000px;}
.w9{width:92.016000px;}
.w5{width:93.075480px;}
.w16{width:152.310000px;}
.w17{width:152.490000px;}
.w4{width:181.290000px;}
.w3{width:181.470000px;}
.w8{width:192.597219px;}
.w7{width:192.752205px;}
.wb{width:199.830000px;}
.wa{width:200.010000px;}
.wc{width:261.570000px;}
.w6{width:262.647465px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:2.073871px;}
.x33{left:3.178994px;}
.x60{left:7.740000px;}
.x21{left:8.820000px;}
.x36{left:9.933215px;}
.x48{left:11.700000px;}
.x56{left:12.780000px;}
.x20{left:15.300000px;}
.x4c{left:19.260000px;}
.x55{left:21.060000px;}
.x42{left:24.300000px;}
.x54{left:27.000000px;}
.x57{left:31.320000px;}
.x2b{left:36.045000px;}
.x29{left:41.625000px;}
.x24{left:45.585000px;}
.x2a{left:46.665000px;}
.x3b{left:49.459490px;}
.x1f{left:50.625000px;}
.x27{left:52.785000px;}
.x38{left:54.807957px;}
.x26{left:57.105000px;}
.x28{left:58.545000px;}
.x2f{left:60.214623px;}
.x1d{left:64.476000px;}
.x2{left:66.959987px;}
.x15{left:68.039987px;}
.x23{left:69.336000px;}
.x71{left:70.919987px;}
.x44{left:73.800000px;}
.x22{left:79.019987px;}
.x5e{left:80.819987px;}
.x25{left:83.370000px;}
.x6{left:88.559987px;}
.x17{left:89.639987px;}
.x3{left:91.799987px;}
.x72{left:97.415987px;}
.x47{left:104.625000px;}
.x5c{left:105.875987px;}
.x3a{left:110.943568px;}
.x1c{left:112.535987px;}
.x4{left:117.035987px;}
.x58{left:119.375987px;}
.xd{left:121.895987px;}
.x32{left:124.162108px;}
.x3c{left:126.357168px;}
.x1{left:127.620000px;}
.x39{left:132.648969px;}
.x8{left:135.215987px;}
.x5b{left:139.175987px;}
.x7{left:147.815987px;}
.x9{left:154.289987px;}
.xa{left:157.709987px;}
.x40{left:159.509987px;}
.x43{left:161.490000px;}
.xc{left:165.269987px;}
.xe{left:171.389987px;}
.x6f{left:186.149987px;}
.x5f{left:187.410000px;}
.x16{left:192.449987px;}
.xb{left:206.489987px;}
.x70{left:211.889987px;}
.x49{left:230.970000px;}
.x5{left:235.469987px;}
.x61{left:246.990000px;}
.x1e{left:250.950000px;}
.x41{left:254.009987px;}
.x4a{left:269.670000px;}
.x64{left:276.510000px;}
.x4b{left:308.235000px;}
.x65{left:338.295000px;}
.x45{left:362.235000px;}
.x66{left:369.255000px;}
.x4d{left:393.015000px;}
.x62{left:400.215000px;}
.x74{left:417.854987px;}
.x67{left:429.735000px;}
.x4e{left:431.715000px;}
.x3d{left:432.974987px;}
.x5a{left:439.814987px;}
.x3f{left:444.674987px;}
.x5d{left:446.474987px;}
.x19{left:459.974987px;}
.x73{left:462.854987px;}
.x4f{left:470.235000px;}
.x18{left:481.604987px;}
.x31{left:488.415000px;}
.x68{left:491.505000px;}
.x10{left:509.504987px;}
.x11{left:511.484987px;}
.x69{left:522.465000px;}
.x63{left:553.245000px;}
.x46{left:562.785000px;}
.x35{left:567.990000px;}
.x2d{left:571.065000px;}
.x13{left:577.004987px;}
.x1a{left:579.524987px;}
.x6e{left:581.684987px;}
.x6a{left:582.945000px;}
.xf{left:605.264987px;}
.x12{left:606.884987px;}
.x59{left:607.964987px;}
.x6b{left:613.725000px;}
.x50{left:616.785000px;}
.x6c{left:644.685000px;}
.x14{left:649.724987px;}
.x51{left:663.090000px;}
.x30{left:664.169987px;}
.x6d{left:675.690000px;}
.x52{left:709.350000px;}
.x34{left:751.109987px;}
.x53{left:755.610000px;}
.x37{left:760.829987px;}
.x1b{left:783.689987px;}
.x3e{left:824.909987px;}
.x2c{left:847.049987px;}
@media print{
.v6{vertical-align:-28.978555pt;}
.v2{vertical-align:-18.404888pt;}
.v7{vertical-align:-17.280000pt;}
.v4{vertical-align:-12.796721pt;}
.v5{vertical-align:-9.383958pt;}
.v1{vertical-align:-5.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.277366pt;}
.ls27{letter-spacing:-0.918255pt;}
.ls32{letter-spacing:-0.837333pt;}
.ls26{letter-spacing:-0.743618pt;}
.ls2f{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.239467pt;}
.ls24{letter-spacing:-0.230933pt;}
.ls33{letter-spacing:-0.198933pt;}
.lse{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls22{letter-spacing:-0.161067pt;}
.ls25{letter-spacing:-0.060843pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.003840pt;}
.ls1b{letter-spacing:0.007680pt;}
.ls10{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.128640pt;}
.lsb{letter-spacing:0.136320pt;}
.ls6{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.175360pt;}
.ls17{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.199040pt;}
.ls9{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls3a{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.279467pt;}
.ls38{letter-spacing:0.279680pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.359040pt;}
.ls3{letter-spacing:0.656000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.821333pt;}
.ls16{letter-spacing:0.869333pt;}
.ls30{letter-spacing:0.960000pt;}
.ls39{letter-spacing:7.632640pt;}
.ls2e{letter-spacing:8.272640pt;}
.ls2b{letter-spacing:9.552640pt;}
.ls1c{letter-spacing:13.392640pt;}
.lsc{letter-spacing:15.952640pt;}
.lsa{letter-spacing:18.512640pt;}
.lsd{letter-spacing:20.079360pt;}
.ls7{letter-spacing:26.832640pt;}
.ls1f{letter-spacing:47.237749pt;}
.ls37{letter-spacing:61.658027pt;}
.ls34{letter-spacing:64.239360pt;}
.ls1e{letter-spacing:64.457415pt;}
.ls19{letter-spacing:78.298027pt;}
.ls18{letter-spacing:92.399360pt;}
.ls29{letter-spacing:299.567854pt;}
.ls2a{letter-spacing:302.244630pt;}
.ls28{letter-spacing:745.082372pt;}
.ls3b{letter-spacing:1336.106667pt;}
.ws9{word-spacing:-48.000000pt;}
.ws2e{word-spacing:-14.240000pt;}
.ws13{word-spacing:-14.149333pt;}
.ws11{word-spacing:-14.101333pt;}
.wsf{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.096533pt;}
.ws1b{word-spacing:-13.049067pt;}
.ws2d{word-spacing:-12.688000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.808000pt;}
.ws1f{word-spacing:-11.666347pt;}
.wsa{word-spacing:-11.552000pt;}
.ws32{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-10.999467pt;}
.ws14{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.558933pt;}
.ws31{word-spacing:-10.480533pt;}
.ws33{word-spacing:-10.400000pt;}
.ws2f{word-spacing:-9.882667pt;}
.ws18{word-spacing:-8.647680pt;}
.ws30{word-spacing:-8.643840pt;}
.ws23{word-spacing:-6.950718pt;}
.ws29{word-spacing:-6.933671pt;}
.ws17{word-spacing:-6.720000pt;}
.ws1e{word-spacing:-0.326658pt;}
.ws5{word-spacing:0.000000pt;}
.ws20{word-spacing:0.201000pt;}
.ws3{word-spacing:0.256000pt;}
.ws0{word-spacing:1.152000pt;}
.ws2{word-spacing:8.960000pt;}
.ws4{word-spacing:10.880000pt;}
.ws1c{word-spacing:44.147973pt;}
.ws1{word-spacing:48.000000pt;}
.ws27{word-spacing:93.792572pt;}
.ws28{word-spacing:93.808532pt;}
.ws21{word-spacing:94.215158pt;}
.ws22{word-spacing:94.239157pt;}
.ws2c{word-spacing:99.305888pt;}
.ws26{word-spacing:106.430489pt;}
.ws1d{word-spacing:128.310760pt;}
.ws2b{word-spacing:177.685063pt;}
.ws25{word-spacing:180.094629pt;}
.ws24{word-spacing:217.095102pt;}
.ws2a{word-spacing:219.874466pt;}
._2{margin-left:-16.768000pt;}
._22{margin-left:-3.717760pt;}
._23{margin-left:-2.656000pt;}
._0{margin-left:-1.600000pt;}
._1{width:0.960000pt;}
._12{width:1.952000pt;}
._13{width:2.976000pt;}
._1d{width:4.400640pt;}
._18{width:5.308160pt;}
._19{width:6.325120pt;}
._f{width:7.632000pt;}
._7{width:8.592000pt;}
._8{width:9.888000pt;}
._14{width:10.992000pt;}
._1a{width:11.985707pt;}
._e{width:13.504000pt;}
._d{width:14.992000pt;}
._20{width:16.650667pt;}
._1b{width:17.742080pt;}
._1c{width:19.134507pt;}
._c{width:20.544000pt;}
._b{width:22.144000pt;}
._11{width:23.088000pt;}
._10{width:24.016000pt;}
._21{width:25.381760pt;}
._2d{width:27.064960pt;}
._1f{width:28.100480pt;}
._5{width:29.616000pt;}
._6{width:30.522667pt;}
._1e{width:32.403200pt;}
._4{width:34.240000pt;}
._3{width:35.226667pt;}
._9{width:36.576000pt;}
._a{width:37.536000pt;}
._24{width:38.744320pt;}
._25{width:39.840000pt;}
._31{width:42.050347pt;}
._17{width:43.292800pt;}
._30{width:45.364480pt;}
._16{width:54.660480pt;}
._39{width:60.398720pt;}
._38{width:61.589120pt;}
._3b{width:65.792000pt;}
._3a{width:66.807040pt;}
._29{width:71.840000pt;}
._15{width:78.922667pt;}
._37{width:80.089600pt;}
._36{width:81.182080pt;}
._35{width:90.176640pt;}
._34{width:91.077120pt;}
._26{width:178.720000pt;}
._2b{width:194.724015pt;}
._27{width:260.707413pt;}
._2a{width:264.656554pt;}
._32{width:267.386667pt;}
._33{width:268.415360pt;}
._28{width:283.108949pt;}
._2c{width:285.726413pt;}
._2e{width:1146.026667pt;}
._2f{width:1154.218667pt;}
.fs11{font-size:5.120000pt;}
.fs7{font-size:23.739263pt;}
.fs6{font-size:26.880000pt;}
.fsf{font-size:27.734685pt;}
.fsc{font-size:27.802873pt;}
.fs5{font-size:34.560000pt;}
.fse{font-size:36.213695pt;}
.fsb{font-size:36.302728pt;}
.fs8{font-size:41.026168pt;}
.fs1{font-size:42.880000pt;}
.fsa{font-size:46.665389pt;}
.fs10{font-size:47.997046pt;}
.fs3{font-size:48.000000pt;}
.fsd{font-size:48.115049pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:61.598066pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:2.400000pt;}
.y73{bottom:2.440000pt;}
.ybb{bottom:4.417807pt;}
.yc0{bottom:5.247152pt;}
.yd1{bottom:6.185990pt;}
.yca{bottom:6.201199pt;}
.yd3{bottom:6.689482pt;}
.ycc{bottom:6.705928pt;}
.yd2{bottom:6.869332pt;}
.ycb{bottom:6.886221pt;}
.y7a{bottom:8.160000pt;}
.y16a{bottom:8.320000pt;}
.yd5{bottom:10.717565pt;}
.yce{bottom:10.743914pt;}
.yd4{bottom:13.810485pt;}
.ycd{bottom:13.844439pt;}
.y7b{bottom:13.920000pt;}
.y7d{bottom:14.080000pt;}
.ybc{bottom:14.167454pt;}
.yc1{bottom:14.285064pt;}
.ybf{bottom:21.529703pt;}
.yba{bottom:24.892230pt;}
.y7e{bottom:25.760000pt;}
.y7{bottom:50.400000pt;}
.yff{bottom:101.792000pt;}
.y126{bottom:105.952000pt;}
.y132{bottom:109.632000pt;}
.y197{bottom:113.152000pt;}
.y144{bottom:115.552000pt;}
.yfe{bottom:116.352000pt;}
.y9c{bottom:119.232000pt;}
.yd0{bottom:120.413333pt;}
.y125{bottom:120.512000pt;}
.y131{bottom:121.312000pt;}
.y165{bottom:123.072000pt;}
.y5f{bottom:125.952000pt;}
.y196{bottom:127.712000pt;}
.y3f{bottom:128.192000pt;}
.y143{bottom:130.112000pt;}
.yfd{bottom:130.912000pt;}
.yd6{bottom:132.352000pt;}
.y130{bottom:132.992000pt;}
.y124{bottom:135.066667pt;}
.y5e{bottom:137.626667pt;}
.y9b{bottom:141.786667pt;}
.y195{bottom:142.266667pt;}
.y3e{bottom:142.746667pt;}
.y142{bottom:144.666667pt;}
.yfc{bottom:145.626667pt;}
.y12f{bottom:147.546667pt;}
.y123{bottom:149.626667pt;}
.ycf{bottom:150.106667pt;}
.yc9{bottom:150.146667pt;}
.y164{bottom:150.906667pt;}
.y5d{bottom:152.186667pt;}
.y9a{bottom:156.346667pt;}
.y194{bottom:156.826667pt;}
.y3d{bottom:157.306667pt;}
.y141{bottom:159.226667pt;}
.yfb{bottom:160.186667pt;}
.y122{bottom:164.186667pt;}
.y99{bottom:170.906667pt;}
.y3c{bottom:171.866667pt;}
.y163{bottom:173.466667pt;}
.y140{bottom:173.786667pt;}
.y157{bottom:174.586667pt;}
.yfa{bottom:174.746667pt;}
.y121{bottom:178.746667pt;}
.y193{bottom:179.386667pt;}
.yc8{bottom:179.706667pt;}
.y98{bottom:185.466667pt;}
.y3b{bottom:186.426667pt;}
.y162{bottom:188.026667pt;}
.y156{bottom:189.146667pt;}
.yf9{bottom:189.306667pt;}
.y120{bottom:193.306667pt;}
.y192{bottom:193.946667pt;}
.y13f{bottom:196.346667pt;}
.y186{bottom:199.866667pt;}
.y97{bottom:200.186667pt;}
.y3a{bottom:200.986667pt;}
.yc7{bottom:202.266667pt;}
.y161{bottom:202.586667pt;}
.yf8{bottom:203.866667pt;}
.y11f{bottom:207.866667pt;}
.y191{bottom:208.506667pt;}
.y13e{bottom:210.906667pt;}
.y155{bottom:211.706667pt;}
.y96{bottom:214.746667pt;}
.y39{bottom:215.546667pt;}
.yc6{bottom:216.826667pt;}
.y160{bottom:217.146667pt;}
.yf7{bottom:218.426667pt;}
.y11e{bottom:222.426667pt;}
.y13d{bottom:225.466667pt;}
.y154{bottom:226.266667pt;}
.y190{bottom:228.346667pt;}
.y95{bottom:229.306667pt;}
.y38{bottom:230.106667pt;}
.yc5{bottom:231.386667pt;}
.y15f{bottom:231.706667pt;}
.yf6{bottom:232.986667pt;}
.y11d{bottom:236.986667pt;}
.y13c{bottom:240.186667pt;}
.y153{bottom:240.826667pt;}
.y37{bottom:244.666667pt;}
.yc4{bottom:245.946667pt;}
.y15e{bottom:246.266667pt;}
.y11c{bottom:251.546667pt;}
.y185{bottom:251.706667pt;}
.y94{bottom:251.866667pt;}
.y13b{bottom:254.746667pt;}
.yf5{bottom:255.546667pt;}
.y36{bottom:259.226667pt;}
.yc3{bottom:260.506667pt;}
.y15d{bottom:260.826667pt;}
.y11b{bottom:266.106667pt;}
.y184{bottom:266.266667pt;}
.y93{bottom:266.426667pt;}
.y18f{bottom:267.226667pt;}
.yf4{bottom:270.106667pt;}
.y35{bottom:273.786667pt;}
.yc2{bottom:275.066667pt;}
.y13a{bottom:277.306667pt;}
.y18e{bottom:278.906667pt;}
.y11a{bottom:280.666667pt;}
.y183{bottom:280.826667pt;}
.y92{bottom:280.986667pt;}
.y15c{bottom:283.386667pt;}
.yf3{bottom:284.666667pt;}
.y1f7{bottom:288.506667pt;}
.y139{bottom:291.906667pt;}
.y18d{bottom:293.666667pt;}
.y119{bottom:295.266667pt;}
.y182{bottom:295.426667pt;}
.y91{bottom:295.586667pt;}
.y34{bottom:296.386667pt;}
.ybe{bottom:296.880000pt;}
.y15b{bottom:297.986667pt;}
.yf2{bottom:299.266667pt;}
.y1f6{bottom:301.026667pt;}
.y1f5{bottom:302.626667pt;}
.y1f4{bottom:304.066667pt;}
.y1f3{bottom:305.666667pt;}
.y138{bottom:306.466667pt;}
.y181{bottom:309.986667pt;}
.y90{bottom:310.146667pt;}
.y33{bottom:310.946667pt;}
.y1f2{bottom:311.586667pt;}
.y15a{bottom:312.546667pt;}
.y1bb{bottom:312.706667pt;}
.yf1{bottom:313.826667pt;}
.y152{bottom:316.386667pt;}
.y118{bottom:317.986667pt;}
.y137{bottom:321.026667pt;}
.y8f{bottom:324.706667pt;}
.y5c{bottom:324.866667pt;}
.y1ba{bottom:325.026667pt;}
.y32{bottom:325.506667pt;}
.y1f1{bottom:326.946667pt;}
.yb9{bottom:330.480000pt;}
.y151{bottom:330.946667pt;}
.y117{bottom:332.546667pt;}
.y159{bottom:335.106667pt;}
.y136{bottom:335.586667pt;}
.yf0{bottom:336.386667pt;}
.y1b9{bottom:337.346667pt;}
.y8e{bottom:339.266667pt;}
.y5b{bottom:339.426667pt;}
.y31{bottom:340.066667pt;}
.y1f0{bottom:341.666667pt;}
.ybd{bottom:345.186667pt;}
.y116{bottom:347.106667pt;}
.y150{bottom:348.386667pt;}
.y1b8{bottom:349.506667pt;}
.y158{bottom:349.666667pt;}
.y135{bottom:350.146667pt;}
.yef{bottom:350.946667pt;}
.y8d{bottom:353.826667pt;}
.y5a{bottom:354.146667pt;}
.y30{bottom:354.626667pt;}
.y115{bottom:361.666667pt;}
.y1b7{bottom:361.826667pt;}
.y134{bottom:364.706667pt;}
.yee{bottom:365.506667pt;}
.y1ef{bottom:366.146667pt;}
.y59{bottom:368.706667pt;}
.y2f{bottom:369.186667pt;}
.y1b6{bottom:374.146667pt;}
.yb8{bottom:376.226667pt;}
.y8c{bottom:376.386667pt;}
.y14f{bottom:377.026667pt;}
.y1ee{bottom:378.466667pt;}
.y133{bottom:379.266667pt;}
.yed{bottom:380.066667pt;}
.y58{bottom:383.266667pt;}
.y2e{bottom:383.746667pt;}
.y1b5{bottom:386.306667pt;}
.y1ed{bottom:390.626667pt;}
.yb7{bottom:390.786667pt;}
.y8b{bottom:390.946667pt;}
.y14e{bottom:393.986667pt;}
.yec{bottom:394.626667pt;}
.y57{bottom:397.826667pt;}
.y2d{bottom:398.306667pt;}
.y1b4{bottom:398.626667pt;}
.y180{bottom:398.786667pt;}
.y1ec{bottom:402.946667pt;}
.y14d{bottom:403.266667pt;}
.yb6{bottom:405.346667pt;}
.y8a{bottom:405.506667pt;}
.y12e{bottom:406.466667pt;}
.y1b3{bottom:410.946667pt;}
.y56{bottom:412.386667pt;}
.y2c{bottom:412.866667pt;}
.y17f{bottom:413.346667pt;}
.y1eb{bottom:415.266667pt;}
.yeb{bottom:417.186667pt;}
.yb5{bottom:419.906667pt;}
.y89{bottom:420.066667pt;}
.y1b2{bottom:423.106667pt;}
.y12d{bottom:423.426667pt;}
.y55{bottom:426.946667pt;}
.y2b{bottom:427.426667pt;}
.y17e{bottom:427.906667pt;}
.yea{bottom:431.746667pt;}
.y12c{bottom:432.706667pt;}
.yb4{bottom:434.466667pt;}
.y88{bottom:434.626667pt;}
.y1b1{bottom:435.426667pt;}
.y1ea{bottom:439.746667pt;}
.y54{bottom:441.506667pt;}
.y2a{bottom:441.986667pt;}
.y17d{bottom:442.466667pt;}
.ye9{bottom:446.306667pt;}
.y1b0{bottom:447.746667pt;}
.yb3{bottom:449.026667pt;}
.y87{bottom:449.186667pt;}
.y1e9{bottom:452.066667pt;}
.y114{bottom:453.026667pt;}
.y53{bottom:456.066667pt;}
.y29{bottom:456.546667pt;}
.y17c{bottom:457.026667pt;}
.ye8{bottom:460.866667pt;}
.yb2{bottom:463.586667pt;}
.y86{bottom:463.746667pt;}
.y1e8{bottom:464.226667pt;}
.y1af{bottom:465.826667pt;}
.y52{bottom:470.626667pt;}
.y17b{bottom:471.586667pt;}
.ye7{bottom:475.426667pt;}
.y113{bottom:475.586667pt;}
.y28{bottom:476.546667pt;}
.yb1{bottom:478.146667pt;}
.y85{bottom:478.306667pt;}
.y51{bottom:485.186667pt;}
.y17a{bottom:486.146667pt;}
.y1e7{bottom:488.866667pt;}
.ye6{bottom:489.986667pt;}
.y112{bottom:490.146667pt;}
.y1ae{bottom:491.906667pt;}
.yb0{bottom:492.706667pt;}
.y84{bottom:492.866667pt;}
.y50{bottom:499.746667pt;}
.y179{bottom:500.706667pt;}
.y1e6{bottom:501.026667pt;}
.y27{bottom:501.986667pt;}
.ye5{bottom:504.546667pt;}
.y111{bottom:504.706667pt;}
.yaf{bottom:507.266667pt;}
.y1e5{bottom:513.346667pt;}
.y178{bottom:515.266667pt;}
.y83{bottom:515.426667pt;}
.y26{bottom:515.906667pt;}
.y4f{bottom:518.306667pt;}
.ye4{bottom:519.106667pt;}
.y110{bottom:519.266667pt;}
.yae{bottom:521.826667pt;}
.y1ad{bottom:522.626667pt;}
.y1e4{bottom:525.666667pt;}
.y25{bottom:529.693333pt;}
.y177{bottom:529.853333pt;}
.y82{bottom:530.013333pt;}
.ye3{bottom:533.693333pt;}
.y10f{bottom:533.853333pt;}
.yad{bottom:536.413333pt;}
.y1e3{bottom:537.853333pt;}
.y1ac{bottom:538.013333pt;}
.y4e{bottom:540.893333pt;}
.y176{bottom:544.413333pt;}
.y81{bottom:544.573333pt;}
.y18c{bottom:547.933333pt;}
.ye2{bottom:548.253333pt;}
.y10e{bottom:548.413333pt;}
.y1e2{bottom:550.173333pt;}
.yac{bottom:550.973333pt;}
.y1ab{bottom:553.373333pt;}
.y24{bottom:556.573333pt;}
.y175{bottom:558.973333pt;}
.y18b{bottom:562.493333pt;}
.ye1{bottom:562.813333pt;}
.y10d{bottom:562.973333pt;}
.y80{bottom:563.293333pt;}
.yab{bottom:565.533333pt;}
.y4d{bottom:566.173333pt;}
.y1aa{bottom:568.573333pt;}
.y23{bottom:570.653333pt;}
.y174{bottom:573.533333pt;}
.y1e1{bottom:574.653333pt;}
.y18a{bottom:577.053333pt;}
.ye0{bottom:577.373333pt;}
.y10c{bottom:577.533333pt;}
.yaa{bottom:580.093333pt;}
.y4c{bottom:580.733333pt;}
.y7f{bottom:584.093333pt;}
.y22{bottom:584.413333pt;}
.y1e0{bottom:586.973333pt;}
.y173{bottom:588.093333pt;}
.y1a9{bottom:589.213333pt;}
.y189{bottom:591.613333pt;}
.y4b{bottom:595.293333pt;}
.y21{bottom:598.173333pt;}
.y1df{bottom:599.293333pt;}
.y10b{bottom:600.093333pt;}
.ya9{bottom:602.653333pt;}
.ydf{bottom:604.733333pt;}
.y188{bottom:606.173333pt;}
.y4a{bottom:609.853333pt;}
.y1de{bottom:611.453333pt;}
.y20{bottom:611.933333pt;}
.y10a{bottom:614.653333pt;}
.y1a8{bottom:615.133333pt;}
.yde{bottom:616.413333pt;}
.ya8{bottom:617.213333pt;}
.y7c{bottom:619.773333pt;}
.y172{bottom:620.253333pt;}
.y187{bottom:620.733333pt;}
.y14c{bottom:620.893333pt;}
.y1dd{bottom:623.773333pt;}
.y49{bottom:624.413333pt;}
.y1f{bottom:625.853333pt;}
.y109{bottom:629.213333pt;}
.y1a7{bottom:629.693333pt;}
.y14b{bottom:630.173333pt;}
.ydd{bottom:630.973333pt;}
.ya7{bottom:631.773333pt;}
.y1dc{bottom:636.093333pt;}
.y48{bottom:638.973333pt;}
.y1e{bottom:639.613333pt;}
.y108{bottom:643.773333pt;}
.y1a6{bottom:644.253333pt;}
.y171{bottom:647.933333pt;}
.y1db{bottom:648.253333pt;}
.y12b{bottom:650.333333pt;}
.y1d{bottom:653.373333pt;}
.y47{bottom:653.533333pt;}
.ya6{bottom:654.333333pt;}
.y79{bottom:655.453333pt;}
.y107{bottom:658.333333pt;}
.y1a5{bottom:658.813333pt;}
.y170{bottom:659.613333pt;}
.y12a{bottom:659.773333pt;}
.y1da{bottom:660.573333pt;}
.y1c{bottom:667.133333pt;}
.y46{bottom:668.093333pt;}
.ya5{bottom:668.893333pt;}
.y16f{bottom:671.293333pt;}
.y106{bottom:672.893333pt;}
.y1a4{bottom:673.373333pt;}
.y78{bottom:679.293333pt;}
.y1b{bottom:681.053333pt;}
.ya4{bottom:683.453333pt;}
.y1d9{bottom:685.053333pt;}
.y16e{bottom:685.853333pt;}
.y105{bottom:687.453333pt;}
.y1a3{bottom:687.933333pt;}
.y45{bottom:690.653333pt;}
.y77{bottom:691.613333pt;}
.y1a{bottom:694.813333pt;}
.y1d8{bottom:697.373333pt;}
.ya3{bottom:698.013333pt;}
.y104{bottom:702.013333pt;}
.y1a2{bottom:702.493333pt;}
.y44{bottom:705.213333pt;}
.y19{bottom:708.573333pt;}
.y1d7{bottom:709.693333pt;}
.y76{bottom:714.173333pt;}
.y103{bottom:716.573333pt;}
.y1a1{bottom:717.053333pt;}
.y43{bottom:719.773333pt;}
.ya2{bottom:720.573333pt;}
.y1d6{bottom:721.853333pt;}
.y18{bottom:722.333333pt;}
.y1a0{bottom:731.613333pt;}
.y1d5{bottom:734.173333pt;}
.y42{bottom:734.333333pt;}
.ya1{bottom:735.133333pt;}
.y17{bottom:736.253333pt;}
.y75{bottom:739.773333pt;}
.y102{bottom:743.933333pt;}
.y19f{bottom:746.173333pt;}
.y1d4{bottom:746.333333pt;}
.y41{bottom:748.893333pt;}
.y16{bottom:750.013333pt;}
.y74{bottom:752.093333pt;}
.ya0{bottom:753.693333pt;}
.y101{bottom:755.613333pt;}
.y1d3{bottom:758.653333pt;}
.y19e{bottom:760.733333pt;}
.y40{bottom:763.453333pt;}
.y15{bottom:763.773333pt;}
.y72{bottom:764.413333pt;}
.y100{bottom:770.213333pt;}
.y1d2{bottom:771.013333pt;}
.y19d{bottom:775.333333pt;}
.y70{bottom:776.773333pt;}
.y9f{bottom:781.093333pt;}
.y1d1{bottom:783.173333pt;}
.y9e{bottom:792.773333pt;}
.y1d0{bottom:795.493333pt;}
.y19c{bottom:797.893333pt;}
.y6f{bottom:799.173333pt;}
.y9d{bottom:807.333333pt;}
.y1cf{bottom:807.813333pt;}
.y14{bottom:808.613333pt;}
.y19b{bottom:812.453333pt;}
.y1ce{bottom:819.973333pt;}
.y13{bottom:822.373333pt;}
.y6e{bottom:827.173333pt;}
.y1cd{bottom:832.293333pt;}
.y12{bottom:836.133333pt;}
.y6d{bottom:841.733333pt;}
.y1cc{bottom:844.613333pt;}
.y14a{bottom:848.453333pt;}
.y11{bottom:850.053333pt;}
.y6c{bottom:856.293333pt;}
.y1cb{bottom:856.773333pt;}
.y149{bottom:863.013333pt;}
.y10{bottom:863.813333pt;}
.y1ca{bottom:869.093333pt;}
.y6b{bottom:870.853333pt;}
.y148{bottom:875.173333pt;}
.yf{bottom:877.573333pt;}
.y1c9{bottom:881.413333pt;}
.ydc{bottom:885.253333pt;}
.y6a{bottom:885.413333pt;}
.y147{bottom:887.493333pt;}
.ye{bottom:891.333333pt;}
.y1c8{bottom:893.573333pt;}
.ydb{bottom:899.813333pt;}
.y69{bottom:899.973333pt;}
.yd{bottom:905.253333pt;}
.y1c7{bottom:905.893333pt;}
.yda{bottom:914.373333pt;}
.y68{bottom:914.533333pt;}
.y1c6{bottom:918.213333pt;}
.yc{bottom:919.013333pt;}
.y6{bottom:921.600000pt;}
.y146{bottom:922.373333pt;}
.y19a{bottom:922.533333pt;}
.yd9{bottom:928.933333pt;}
.y67{bottom:929.093333pt;}
.y1c5{bottom:930.373333pt;}
.y16d{bottom:932.133333pt;}
.yb{bottom:932.773333pt;}
.y199{bottom:937.093333pt;}
.y5{bottom:940.000000pt;}
.y1c4{bottom:942.693333pt;}
.y66{bottom:943.653333pt;}
.y16c{bottom:946.693333pt;}
.yd8{bottom:947.493333pt;}
.y198{bottom:951.653333pt;}
.y1c3{bottom:955.013333pt;}
.y65{bottom:958.213333pt;}
.y4{bottom:958.400000pt;}
.y16b{bottom:958.853333pt;}
.y129{bottom:966.213333pt;}
.y1c2{bottom:967.173333pt;}
.yd7{bottom:970.053333pt;}
.y64{bottom:972.773333pt;}
.y3{bottom:976.800000pt;}
.y1c1{bottom:979.493333pt;}
.y128{bottom:980.773333pt;}
.y169{bottom:982.853333pt;}
.ya{bottom:983.333333pt;}
.y127{bottom:987.333333pt;}
.y1c0{bottom:991.813333pt;}
.y2{bottom:995.200000pt;}
.y63{bottom:995.333333pt;}
.y145{bottom:1001.893333pt;}
.y1bf{bottom:1004.000000pt;}
.y168{bottom:1006.880000pt;}
.y62{bottom:1009.920000pt;}
.y1{bottom:1013.600000pt;}
.y1be{bottom:1016.320000pt;}
.y167{bottom:1019.200000pt;}
.y9{bottom:1020.160000pt;}
.y61{bottom:1024.480000pt;}
.y1bd{bottom:1028.640000pt;}
.y60{bottom:1039.040000pt;}
.y1bc{bottom:1040.800000pt;}
.y166{bottom:1041.760000pt;}
.y8{bottom:1056.960000pt;}
.h32{height:5.025000pt;}
.hc{height:11.520000pt;}
.hd{height:11.552000pt;}
.he{height:11.680000pt;}
.h17{height:17.584210pt;}
.h2b{height:20.543710pt;}
.h23{height:20.594218pt;}
.hf{height:23.200000pt;}
.h15{height:23.287197pt;}
.h13{height:23.298788pt;}
.h30{height:23.360000pt;}
.h2e{height:23.392000pt;}
.h29{height:27.206535pt;}
.h27{height:27.220077pt;}
.h21{height:27.273423pt;}
.h1f{height:27.286999pt;}
.h25{height:27.333688pt;}
.h1d{height:27.400889pt;}
.h26{height:27.687347pt;}
.h1e{height:27.755418pt;}
.h2f{height:31.008437pt;}
.h1a{height:34.731734pt;}
.h12{height:34.733521pt;}
.h10{height:34.880000pt;}
.h11{height:35.040000pt;}
.h2c{height:35.552499pt;}
.h24{height:35.639907pt;}
.h19{height:35.975313pt;}
.h18{height:36.243125pt;}
.h31{height:42.063437pt;}
.h3{height:42.084375pt;}
.hb{height:44.073883pt;}
.h2{height:44.437500pt;}
.h1c{height:45.776741pt;}
.h1b{height:45.799527pt;}
.h14{height:46.564563pt;}
.h2a{height:47.083039pt;}
.h7{height:47.085938pt;}
.h28{height:47.106476pt;}
.h5{height:47.109375pt;}
.h22{height:47.198796pt;}
.h20{height:47.222289pt;}
.h16{height:47.628335pt;}
.h6{height:48.375000pt;}
.h2d{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:52.990313pt;}
.h8{height:54.598989pt;}
.h4{height:92.562500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:25.600000pt;}
.wd{width:26.720000pt;}
.w19{width:26.752000pt;}
.w1a{width:26.880000pt;}
.w1b{width:26.912000pt;}
.wf{width:33.600000pt;}
.w10{width:33.632000pt;}
.we{width:33.760000pt;}
.w13{width:40.480000pt;}
.w12{width:40.512000pt;}
.w11{width:47.360000pt;}
.w15{width:52.320000pt;}
.w14{width:61.120000pt;}
.w9{width:81.792000pt;}
.w5{width:82.733760pt;}
.w16{width:135.386667pt;}
.w17{width:135.546667pt;}
.w4{width:161.146667pt;}
.w3{width:161.306667pt;}
.w8{width:171.197528pt;}
.w7{width:171.335293pt;}
.wb{width:177.626667pt;}
.wa{width:177.786667pt;}
.wc{width:232.506667pt;}
.w6{width:233.464414pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:1.843441pt;}
.x33{left:2.825772pt;}
.x60{left:6.880000pt;}
.x21{left:7.840000pt;}
.x36{left:8.829525pt;}
.x48{left:10.400000pt;}
.x56{left:11.360000pt;}
.x20{left:13.600000pt;}
.x4c{left:17.120000pt;}
.x55{left:18.720000pt;}
.x42{left:21.600000pt;}
.x54{left:24.000000pt;}
.x57{left:27.840000pt;}
.x2b{left:32.040000pt;}
.x29{left:37.000000pt;}
.x24{left:40.520000pt;}
.x2a{left:41.480000pt;}
.x3b{left:43.963991pt;}
.x1f{left:45.000000pt;}
.x27{left:46.920000pt;}
.x38{left:48.718184pt;}
.x26{left:50.760000pt;}
.x28{left:52.040000pt;}
.x2f{left:53.524110pt;}
.x1d{left:57.312000pt;}
.x2{left:59.519988pt;}
.x15{left:60.479988pt;}
.x23{left:61.632000pt;}
.x71{left:63.039988pt;}
.x44{left:65.600000pt;}
.x22{left:70.239988pt;}
.x5e{left:71.839988pt;}
.x25{left:74.106667pt;}
.x6{left:78.719988pt;}
.x17{left:79.679988pt;}
.x3{left:81.599988pt;}
.x72{left:86.591988pt;}
.x47{left:93.000000pt;}
.x5c{left:94.111988pt;}
.x3a{left:98.616505pt;}
.x1c{left:100.031988pt;}
.x4{left:104.031988pt;}
.x58{left:106.111988pt;}
.xd{left:108.351988pt;}
.x32{left:110.366318pt;}
.x3c{left:112.317483pt;}
.x1{left:113.440000pt;}
.x39{left:117.910194pt;}
.x8{left:120.191988pt;}
.x5b{left:123.711988pt;}
.x7{left:131.391988pt;}
.x9{left:137.146655pt;}
.xa{left:140.186655pt;}
.x40{left:141.786655pt;}
.x43{left:143.546667pt;}
.xc{left:146.906655pt;}
.xe{left:152.346655pt;}
.x6f{left:165.466655pt;}
.x5f{left:166.586667pt;}
.x16{left:171.066655pt;}
.xb{left:183.546655pt;}
.x70{left:188.346655pt;}
.x49{left:205.306667pt;}
.x5{left:209.306655pt;}
.x61{left:219.546667pt;}
.x1e{left:223.066667pt;}
.x41{left:225.786655pt;}
.x4a{left:239.706667pt;}
.x64{left:245.786667pt;}
.x4b{left:273.986667pt;}
.x65{left:300.706667pt;}
.x45{left:321.986667pt;}
.x66{left:328.226667pt;}
.x4d{left:349.346667pt;}
.x62{left:355.746667pt;}
.x74{left:371.426655pt;}
.x67{left:381.986667pt;}
.x4e{left:383.746667pt;}
.x3d{left:384.866655pt;}
.x5a{left:390.946655pt;}
.x3f{left:395.266655pt;}
.x5d{left:396.866655pt;}
.x19{left:408.866655pt;}
.x73{left:411.426655pt;}
.x4f{left:417.986667pt;}
.x18{left:428.093322pt;}
.x31{left:434.146667pt;}
.x68{left:436.893333pt;}
.x10{left:452.893322pt;}
.x11{left:454.653322pt;}
.x69{left:464.413333pt;}
.x63{left:491.773333pt;}
.x46{left:500.253333pt;}
.x35{left:504.880000pt;}
.x2d{left:507.613333pt;}
.x13{left:512.893322pt;}
.x1a{left:515.133322pt;}
.x6e{left:517.053322pt;}
.x6a{left:518.173333pt;}
.xf{left:538.013322pt;}
.x12{left:539.453322pt;}
.x59{left:540.413322pt;}
.x6b{left:545.533333pt;}
.x50{left:548.253333pt;}
.x6c{left:573.053333pt;}
.x14{left:577.533322pt;}
.x51{left:589.413333pt;}
.x30{left:590.373322pt;}
.x6d{left:600.613333pt;}
.x52{left:630.533333pt;}
.x34{left:667.653322pt;}
.x53{left:671.653333pt;}
.x37{left:676.293322pt;}
.x1b{left:696.613322pt;}
.x3e{left:733.253322pt;}
.x2c{left:752.933322pt;}
}




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