
    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_af1d313ac926d644a80fffb9.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_0db6e5ba36731aa14bccfd44.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6e31b1ccac94a98ea75856d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2b4a8c78d8f3739c05cacdaf.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_525a4fc2d2f11de8ff6cbfe5.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_9f01207664610fb9578e94f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_03891d607dcfd7a8c82ff8ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_06cf715d53f4241e1e50a4b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_525a4fc2d2f11de8ff6cbfe5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f76587d463584c05737da645.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_60454b77ba2422ae5e3b3de8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_de5679a3db6938b18f968ea6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_920d2fe90ed938778e5b4403.woff2')format("woff");}.fff{font-family:fff;line-height:0.776855;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;}
.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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:27.360000px;}
.v2{vertical-align:36.000000px;}
.ls22{letter-spacing:-2.880000px;}
.ls21{letter-spacing:-2.160000px;}
.ls15{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-0.864000px;}
.ls25{letter-spacing:-0.792000px;}
.ls20{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.027360px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.185760px;}
.ls3{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.311760px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.696000px;}
.ls11{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.864000px;}
.ls29{letter-spacing:2.160000px;}
.ls35{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.320000px;}
.ls2d{letter-spacing:5.040000px;}
.ls23{letter-spacing:5.220000px;}
.ls24{letter-spacing:5.760000px;}
.ls2e{letter-spacing:7.200000px;}
.ls2f{letter-spacing:7.380000px;}
.ls30{letter-spacing:8.640000px;}
.ls1f{letter-spacing:11.520000px;}
.ls1e{letter-spacing:14.400000px;}
.ls33{letter-spacing:18.000000px;}
.ls19{letter-spacing:21.197280px;}
.ls31{letter-spacing:23.760000px;}
.ls28{letter-spacing:33.984000px;}
.ls2b{letter-spacing:38.880000px;}
.ls2c{letter-spacing:39.600000px;}
.lse{letter-spacing:50.549760px;}
.ls13{letter-spacing:58.242720px;}
.lsb{letter-spacing:59.885760px;}
.ls27{letter-spacing:64.002720px;}
.ls14{letter-spacing:64.026720px;}
.lsc{letter-spacing:75.029760px;}
.lsf{letter-spacing:108.125760px;}
.lsd{letter-spacing:134.100000px;}
.ls34{letter-spacing:215.460000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws2{word-spacing:-36.432000px;}
.ws0{word-spacing:-36.000000px;}
.ws1{word-spacing:-35.712000px;}
.wsc{word-spacing:-23.940000px;}
.ws11{word-spacing:-21.420000px;}
.wse{word-spacing:-18.864000px;}
.ws16{word-spacing:-18.792000px;}
.ws17{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.504000px;}
.ws18{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.208000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.120000px;}
.ws8{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.220000px;}
.ws6{word-spacing:-14.192640px;}
.ws7{word-spacing:0.000000px;}
._33{margin-left:-19.542000px;}
._e{margin-left:-14.213280px;}
._8{margin-left:-12.873360px;}
._6{margin-left:-11.601840px;}
._3{margin-left:-10.140000px;}
._2{margin-left:-8.784000px;}
._9{margin-left:-7.540080px;}
._c{margin-left:-6.305520px;}
._4{margin-left:-5.137200px;}
._7{margin-left:-3.593040px;}
._d{margin-left:-2.280720px;}
._0{margin-left:-1.008000px;}
._1{width:1.020000px;}
._5{width:2.233680px;}
._12{width:3.377280px;}
._f{width:4.608000px;}
._10{width:5.688000px;}
._17{width:7.344000px;}
._16{width:8.400720px;}
._14{width:9.432000px;}
._15{width:10.440000px;}
._a{width:11.650560px;}
._b{width:12.862800px;}
._13{width:14.703600px;}
._1e{width:15.872400px;}
._1d{width:16.992000px;}
._18{width:19.944000px;}
._1b{width:21.650400px;}
._1f{width:22.701600px;}
._1a{width:24.336000px;}
._1c{width:25.488000px;}
._24{width:27.216000px;}
._32{width:28.284000px;}
._22{width:29.304000px;}
._23{width:30.444000px;}
._29{width:31.896000px;}
._20{width:32.976000px;}
._21{width:33.984000px;}
._2f{width:35.976000px;}
._30{width:37.116000px;}
._19{width:38.808000px;}
._42{width:39.816000px;}
._26{width:40.887120px;}
._25{width:41.918400px;}
._2c{width:52.056000px;}
._4e{width:53.268000px;}
._36{width:54.648000px;}
._37{width:56.088000px;}
._28{width:59.184000px;}
._27{width:60.192000px;}
._2a{width:66.960000px;}
._2b{width:68.256000px;}
._4d{width:71.064000px;}
._59{width:82.776000px;}
._4b{width:84.384000px;}
._4c{width:85.464000px;}
._2e{width:89.016000px;}
._2d{width:90.360000px;}
._3c{width:91.872000px;}
._3d{width:92.880000px;}
._43{width:99.336000px;}
._31{width:103.872000px;}
._48{width:108.720000px;}
._57{width:126.576000px;}
._58{width:128.388000px;}
._44{width:133.488000px;}
._45{width:134.544000px;}
._39{width:151.200000px;}
._3a{width:152.484000px;}
._3f{width:153.936000px;}
._3e{width:155.136000px;}
._34{width:161.064000px;}
._54{width:172.488720px;}
._53{width:173.808000px;}
._49{width:176.616000px;}
._4a{width:177.984000px;}
._50{width:179.112000px;}
._55{width:216.804000px;}
._56{width:273.720000px;}
._35{width:277.704000px;}
._51{width:285.048000px;}
._52{width:286.428000px;}
._46{width:353.232000px;}
._38{width:392.184000px;}
._4f{width:818.940000px;}
._3b{width:826.824000px;}
._11{width:846.156000px;}
._47{width:1429.116000px;}
._40{width:1757.424000px;}
._41{width:2331.720000px;}
.fc12{color:rgb(50,50,50);}
.fc11{color:rgb(45,46,51);}
.fc10{color:rgb(27,27,27);}
.fcf{color:rgb(85,85,85);}
.fce{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(51,51,51);}
.fc1{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(136,136,136);}
.fc3{color:rgb(33,37,41);}
.fc7{color:rgb(31,77,120);}
.fcc{color:rgb(0,181,226);}
.fcd{color:rgb(186,12,47);}
.fc5{color:rgb(46,116,181);}
.fc8{color:rgb(5,99,193);}
.fca{color:rgb(46,117,181);}
.fc9{color:rgb(0,115,152);}
.fcb{color:rgb(0,112,192);}
.fs5{font-size:38.880000px;}
.fsb{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:113.760000px;}
.fs9{font-size:120.240000px;}
.fs1{font-size:144.000000px;}
.ybb{bottom:-22.320000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.600000px;}
.y1e5{bottom:13.320000px;}
.y1e9{bottom:23.760000px;}
.y1e7{bottom:34.020000px;}
.y1b{bottom:65.160000px;}
.y1a{bottom:91.116000px;}
.y15{bottom:111.996000px;}
.y19{bottom:116.676000px;}
.y1c{bottom:142.236000px;}
.y18{bottom:145.476000px;}
.y14{bottom:146.196000px;}
.y21b{bottom:165.630000px;}
.yba{bottom:167.790000px;}
.y1d7{bottom:169.950000px;}
.yd0{bottom:170.850000px;}
.y13{bottom:172.290000px;}
.y150{bottom:172.650000px;}
.y16d{bottom:173.550000px;}
.y1fd{bottom:176.070000px;}
.y143{bottom:177.870000px;}
.y73{bottom:185.610000px;}
.y196{bottom:187.950000px;}
.ycf{bottom:188.490000px;}
.y85{bottom:191.550000px;}
.y11a{bottom:192.630000px;}
.yb0{bottom:193.710000px;}
.y3a{bottom:194.430000px;}
.y21a{bottom:196.770000px;}
.y1c0{bottom:196.950000px;}
.y12{bottom:198.210000px;}
.yb9{bottom:198.930000px;}
.y1ad{bottom:200.010000px;}
.y1d6{bottom:200.910000px;}
.ya2{bottom:201.990000px;}
.y14f{bottom:203.790000px;}
.y1fc{bottom:207.030000px;}
.y16c{bottom:207.570000px;}
.y142{bottom:209.010000px;}
.y175{bottom:211.890000px;}
.y1e2{bottom:212.790000px;}
.y17d{bottom:218.010000px;}
.y195{bottom:219.090000px;}
.yce{bottom:219.630000px;}
.y84{bottom:222.330000px;}
.y119{bottom:223.590000px;}
.yaf{bottom:224.850000px;}
.y11{bottom:226.470000px;}
.y72{bottom:227.010000px;}
.y219{bottom:227.730000px;}
.y39{bottom:227.910000px;}
.y1bf{bottom:228.090000px;}
.yb6{bottom:229.890000px;}
.y1ac{bottom:230.970000px;}
.y56{bottom:232.410000px;}
.yfe{bottom:232.590000px;}
.ya1{bottom:232.950000px;}
.y14e{bottom:234.750000px;}
.y1fb{bottom:238.170000px;}
.y16b{bottom:238.710000px;}
.y141{bottom:239.970000px;}
.y174{bottom:243.030000px;}
.y1e1{bottom:243.750000px;}
.y17c{bottom:248.970000px;}
.ycd{bottom:250.590000px;}
.y151{bottom:252.030000px;}
.y38{bottom:253.110000px;}
.y83{bottom:253.650000px;}
.yae{bottom:255.810000px;}
.y118{bottom:257.430000px;}
.y10{bottom:257.610000px;}
.y218{bottom:258.870000px;}
.y1be{bottom:259.050000px;}
.yb5{bottom:261.030000px;}
.y1ab{bottom:262.110000px;}
.y55{bottom:263.550000px;}
.y71{bottom:264.090000px;}
.y14d{bottom:265.890000px;}
.y1fa{bottom:269.130000px;}
.y16a{bottom:269.670000px;}
.y1d5{bottom:270.390000px;}
.y140{bottom:273.990000px;}
.y1e0{bottom:274.890000px;}
.y173{bottom:277.050000px;}
.y154{bottom:280.110000px;}
.ycc{bottom:281.730000px;}
.y131{bottom:282.990000px;}
.y82{bottom:284.430000px;}
.yad{bottom:286.950000px;}
.y37{bottom:287.130000px;}
.yf{bottom:288.570000px;}
.y217{bottom:289.830000px;}
.y1bd{bottom:290.010000px;}
.y117{bottom:291.810000px;}
.yb4{bottom:291.990000px;}
.y1aa{bottom:293.070000px;}
.y54{bottom:294.510000px;}
.yfd{bottom:294.690000px;}
.y70{bottom:295.050000px;}
.y14c{bottom:296.850000px;}
.y1f9{bottom:300.090000px;}
.y169{bottom:303.690000px;}
.y1d4{bottom:305.130000px;}
.y1df{bottom:305.850000px;}
.y13f{bottom:307.650000px;}
.y172{bottom:308.010000px;}
.y17b{bottom:311.070000px;}
.ycb{bottom:312.690000px;}
.y130{bottom:314.130000px;}
.y81{bottom:315.390000px;}
.yac{bottom:317.910000px;}
.ye{bottom:319.710000px;}
.y36{bottom:320.430000px;}
.y216{bottom:320.970000px;}
.y194{bottom:321.150000px;}
.y116{bottom:322.770000px;}
.yb3{bottom:323.130000px;}
.y1a9{bottom:324.030000px;}
.y53{bottom:325.650000px;}
.ya0{bottom:326.010000px;}
.y14b{bottom:327.990000px;}
.y6f{bottom:330.510000px;}
.y1f8{bottom:331.230000px;}
.y168{bottom:334.830000px;}
.y1d3{bottom:336.090000px;}
.y1de{bottom:337.035000px;}
.y13e{bottom:338.835000px;}
.y171{bottom:342.255000px;}
.yca{bottom:343.875000px;}
.y12f{bottom:345.135000px;}
.y80{bottom:346.755000px;}
.yab{bottom:349.095000px;}
.y215{bottom:351.975000px;}
.y1bc{bottom:352.155000px;}
.y35{bottom:353.955000px;}
.yb2{bottom:354.135000px;}
.y193{bottom:355.215000px;}
.y52{bottom:356.655000px;}
.yfc{bottom:356.835000px;}
.y9f{bottom:357.195000px;}
.y1a8{bottom:357.915000px;}
.y14a{bottom:361.695000px;}
.y184{bottom:362.055000px;}
.y1f7{bottom:362.235000px;}
.yd{bottom:364.575000px;}
.y167{bottom:365.835000px;}
.y1d2{bottom:367.275000px;}
.y6e{bottom:367.455000px;}
.y1dd{bottom:367.995000px;}
.y13d{bottom:372.855000px;}
.y170{bottom:373.215000px;}
.yc9{bottom:374.835000px;}
.y12e{bottom:376.275000px;}
.y7f{bottom:377.895000px;}
.yaa{bottom:380.055000px;}
.y214{bottom:383.115000px;}
.y1bb{bottom:383.295000px;}
.yb1{bottom:384.735000px;}
.y115{bottom:384.915000px;}
.yb8{bottom:385.275000px;}
.y34{bottom:387.255000px;}
.y51{bottom:387.795000px;}
.y9e{bottom:388.155000px;}
.y192{bottom:389.235000px;}
.y1a7{bottom:392.295000px;}
.y183{bottom:393.195000px;}
.y1f6{bottom:393.375000px;}
.y166{bottom:396.975000px;}
.y149{bottom:398.235000px;}
.y6d{bottom:398.595000px;}
.y1dc{bottom:399.135000px;}
.y16f{bottom:404.355000px;}
.yc8{bottom:405.975000px;}
.y12d{bottom:407.235000px;}
.y7e{bottom:408.855000px;}
.y17a{bottom:410.295000px;}
.ya9{bottom:411.195000px;}
.y33{bottom:412.635000px;}
.yc{bottom:412.815000px;}
.y213{bottom:414.075000px;}
.yb7{bottom:415.875000px;}
.y114{bottom:416.055000px;}
.yd9{bottom:416.235000px;}
.y1ba{bottom:416.955000px;}
.y50{bottom:418.755000px;}
.yfb{bottom:418.935000px;}
.y9d{bottom:419.295000px;}
.y191{bottom:423.255000px;}
.y182{bottom:424.155000px;}
.y1f5{bottom:424.335000px;}
.y1a6{bottom:426.315000px;}
.y165{bottom:427.935000px;}
.y6c{bottom:429.555000px;}
.y1db{bottom:430.095000px;}
.y1d1{bottom:432.255000px;}
.y148{bottom:435.315000px;}
.yc7{bottom:436.935000px;}
.y12c{bottom:438.375000px;}
.y7d{bottom:439.995000px;}
.y179{bottom:441.255000px;}
.ya8{bottom:442.155000px;}
.yb{bottom:443.595000px;}
.y212{bottom:445.215000px;}
.y32{bottom:446.475000px;}
.y113{bottom:447.015000px;}
.yd8{bottom:447.375000px;}
.y4f{bottom:449.895000px;}
.y9c{bottom:450.255000px;}
.y1b9{bottom:451.335000px;}
.y181{bottom:455.295000px;}
.y1f4{bottom:455.475000px;}
.y190{bottom:457.455000px;}
.y164{bottom:459.075000px;}
.y6b{bottom:460.695000px;}
.y1d0{bottom:463.395000px;}
.yc6{bottom:468.075000px;}
.y12b{bottom:469.335000px;}
.y7c{bottom:470.955000px;}
.y31{bottom:471.855000px;}
.y178{bottom:472.395000px;}
.ya7{bottom:472.755000px;}
.yed{bottom:473.295000px;}
.ya{bottom:474.915000px;}
.y211{bottom:476.175000px;}
.y112{bottom:478.155000px;}
.yd7{bottom:478.335000px;}
.y4e{bottom:480.855000px;}
.yfa{bottom:481.035000px;}
.y9b{bottom:481.395000px;}
.y1b8{bottom:485.355000px;}
.y180{bottom:486.255000px;}
.y1f3{bottom:486.435000px;}
.y18f{bottom:488.415000px;}
.y163{bottom:490.035000px;}
.y6a{bottom:491.655000px;}
.y1cf{bottom:494.355000px;}
.yc5{bottom:499.035000px;}
.y12a{bottom:500.475000px;}
.y7b{bottom:502.095000px;}
.y177{bottom:503.355000px;}
.yec{bottom:504.255000px;}
.y9{bottom:505.695000px;}
.y210{bottom:507.315000px;}
.y111{bottom:509.115000px;}
.ya6{bottom:509.295000px;}
.yd6{bottom:509.475000px;}
.y4d{bottom:511.995000px;}
.y9a{bottom:512.355000px;}
.y1b7{bottom:516.495000px;}
.y1f2{bottom:517.575000px;}
.y18e{bottom:519.555000px;}
.y17f{bottom:519.915000px;}
.y162{bottom:521.175000px;}
.y1a5{bottom:522.435000px;}
.y69{bottom:522.795000px;}
.y1ce{bottom:525.495000px;}
.yc4{bottom:530.175000px;}
.y13c{bottom:531.435000px;}
.y7a{bottom:533.055000px;}
.y129{bottom:534.495000px;}
.yeb{bottom:535.215000px;}
.y20f{bottom:538.275000px;}
.y30{bottom:539.175000px;}
.yff{bottom:540.075000px;}
.y110{bottom:540.255000px;}
.yd5{bottom:540.435000px;}
.yf9{bottom:543.135000px;}
.y99{bottom:543.495000px;}
.ya5{bottom:545.655000px;}
.y4c{bottom:547.455000px;}
.y1f1{bottom:548.535000px;}
.y8{bottom:550.875000px;}
.y161{bottom:552.135000px;}
.y18d{bottom:553.575000px;}
.y68{bottom:553.755000px;}
.y17e{bottom:556.455000px;}
.y1cd{bottom:559.515000px;}
.yc3{bottom:561.135000px;}
.y13b{bottom:562.575000px;}
.y79{bottom:564.195000px;}
.y128{bottom:565.455000px;}
.yea{bottom:566.355000px;}
.y20e{bottom:569.415000px;}
.y10f{bottom:571.215000px;}
.yd4{bottom:571.575000px;}
.y2f{bottom:572.475000px;}
.yf8{bottom:574.095000px;}
.y98{bottom:574.455000px;}
.ya4{bottom:577.155000px;}
.y1f0{bottom:579.675000px;}
.y1b6{bottom:581.655000px;}
.y160{bottom:583.275000px;}
.y18c{bottom:584.535000px;}
.y67{bottom:584.895000px;}
.y1a4{bottom:587.595000px;}
.y4b{bottom:588.855000px;}
.y1cc{bottom:590.655000px;}
.yc2{bottom:592.275000px;}
.y13a{bottom:593.535000px;}
.y78{bottom:595.155000px;}
.y147{bottom:596.595000px;}
.ye9{bottom:597.315000px;}
.y127{bottom:599.655000px;}
.y20d{bottom:600.375000px;}
.yd3{bottom:602.535000px;}
.yf7{bottom:605.265000px;}
.y97{bottom:605.625000px;}
.y2e{bottom:605.985000px;}
.y1ef{bottom:610.305000px;}
.y1b5{bottom:612.645000px;}
.y7{bottom:613.005000px;}
.y66{bottom:615.885000px;}
.y15f{bottom:617.325000px;}
.y18b{bottom:618.585000px;}
.y1cb{bottom:621.645000px;}
.yc1{bottom:623.265000px;}
.y139{bottom:624.705000px;}
.y4a{bottom:625.785000px;}
.y77{bottom:626.325000px;}
.y146{bottom:627.585000px;}
.ye8{bottom:628.485000px;}
.y126{bottom:630.645000px;}
.y20c{bottom:631.545000px;}
.yd2{bottom:633.705000px;}
.yf6{bottom:636.225000px;}
.y10e{bottom:636.405000px;}
.y96{bottom:636.585000px;}
.y1ee{bottom:638.205000px;}
.y2d{bottom:639.285000px;}
.y1b4{bottom:643.605000px;}
.y65{bottom:647.025000px;}
.y15e{bottom:648.285000px;}
.y18a{bottom:649.725000px;}
.y1ed{bottom:651.165000px;}
.y1ca{bottom:652.605000px;}
.yc0{bottom:654.405000px;}
.y138{bottom:655.665000px;}
.y49{bottom:656.925000px;}
.y76{bottom:657.285000px;}
.y145{bottom:658.725000px;}
.ye7{bottom:659.445000px;}
.y125{bottom:661.605000px;}
.y20b{bottom:662.505000px;}
.yd1{bottom:664.305000px;}
.ydc{bottom:664.665000px;}
.yf5{bottom:667.365000px;}
.y95{bottom:667.725000px;}
.y2c{bottom:672.585000px;}
.y1b3{bottom:674.745000px;}
.y6{bottom:675.105000px;}
.y64{bottom:677.985000px;}
.y15d{bottom:679.425000px;}
.y1a3{bottom:680.685000px;}
.y189{bottom:683.745000px;}
.ybf{bottom:685.365000px;}
.y1c9{bottom:686.805000px;}
.y75{bottom:688.425000px;}
.y137{bottom:689.685000px;}
.ye6{bottom:690.585000px;}
.y48{bottom:692.745000px;}
.y20a{bottom:693.645000px;}
.ydb{bottom:695.805000px;}
.yf4{bottom:698.325000px;}
.y94{bottom:698.685000px;}
.y10d{bottom:701.385000px;}
.y2b{bottom:706.065000px;}
.y1b2{bottom:708.765000px;}
.y15c{bottom:710.385000px;}
.y1ec{bottom:711.285000px;}
.y1a2{bottom:711.825000px;}
.y63{bottom:713.445000px;}
.y188{bottom:714.705000px;}
.ybe{bottom:715.965000px;}
.y1c8{bottom:717.765000px;}
.y74{bottom:719.385000px;}
.y136{bottom:720.825000px;}
.ye5{bottom:721.545000px;}
.y124{bottom:723.705000px;}
.y209{bottom:724.605000px;}
.yda{bottom:726.405000px;}
.yf3{bottom:729.465000px;}
.y93{bottom:729.825000px;}
.y10c{bottom:732.525000px;}
.y47{bottom:734.505000px;}
.y5{bottom:737.205000px;}
.y2a{bottom:739.365000px;}
.y1b1{bottom:739.905000px;}
.y15b{bottom:741.525000px;}
.y1a1{bottom:742.785000px;}
.y187{bottom:748.905000px;}
.y62{bottom:750.525000px;}
.y1eb{bottom:750.705000px;}
.y153{bottom:751.785000px;}
.ybd{bottom:752.685000px;}
.y123{bottom:754.845000px;}
.y208{bottom:755.745000px;}
.yf2{bottom:760.425000px;}
.y92{bottom:760.785000px;}
.y10b{bottom:766.545000px;}
.y46{bottom:769.065000px;}
.y15a{bottom:772.485000px;}
.y29{bottom:772.845000px;}
.y1a0{bottom:773.925000px;}
.y186{bottom:779.865000px;}
.y61{bottom:781.485000px;}
.y152{bottom:782.925000px;}
.ye4{bottom:783.645000px;}
.y122{bottom:785.805000px;}
.y207{bottom:786.705000px;}
.ybc{bottom:788.865000px;}
.yf1{bottom:791.385000px;}
.y91{bottom:791.565000px;}
.ya3{bottom:791.925000px;}
.y10a{bottom:797.505000px;}
.y4{bottom:799.305000px;}
.y45{bottom:802.545000px;}
.y28{bottom:806.145000px;}
.y159{bottom:806.505000px;}
.y19f{bottom:807.945000px;}
.y1ea{bottom:810.825000px;}
.y1c7{bottom:811.005000px;}
.y60{bottom:812.625000px;}
.y185{bottom:813.885000px;}
.ye3{bottom:814.785000px;}
.y121{bottom:816.945000px;}
.y206{bottom:817.845000px;}
.y1da{bottom:820.005000px;}
.yf0{bottom:822.525000px;}
.y90{bottom:822.885000px;}
.y109{bottom:831.705000px;}
.y44{bottom:835.845000px;}
.y158{bottom:837.645000px;}
.y19e{bottom:838.905000px;}
.y27{bottom:839.445000px;}
.y1c6{bottom:841.965000px;}
.y5f{bottom:843.585000px;}
.y3{bottom:845.025000px;}
.ye2{bottom:845.745000px;}
.y120{bottom:847.905000px;}
.y205{bottom:848.805000px;}
.y1d9{bottom:850.965000px;}
.yef{bottom:853.125000px;}
.y8f{bottom:854.025000px;}
.y108{bottom:862.665000px;}
.y2{bottom:867.525000px;}
.y157{bottom:868.605000px;}
.y43{bottom:869.325000px;}
.y19d{bottom:870.045000px;}
.y1e8{bottom:870.990000px;}
.y26{bottom:872.970000px;}
.y5e{bottom:874.770000px;}
.y1c5{bottom:876.030000px;}
.ye1{bottom:876.930000px;}
.y11f{bottom:879.090000px;}
.y204{bottom:879.810000px;}
.y176{bottom:881.790000px;}
.y1d8{bottom:882.150000px;}
.y8e{bottom:885.030000px;}
.yee{bottom:886.110000px;}
.y107{bottom:896.730000px;}
.y156{bottom:899.790000px;}
.y1b0{bottom:901.050000px;}
.y42{bottom:902.670000px;}
.y19c{bottom:904.110000px;}
.y5d{bottom:905.730000px;}
.y25{bottom:906.270000px;}
.y1c4{bottom:907.170000px;}
.ye0{bottom:907.890000px;}
.y11e{bottom:910.050000px;}
.y203{bottom:910.950000px;}
.y144{bottom:913.110000px;}
.y8d{bottom:916.170000px;}
.y106{bottom:927.870000px;}
.y155{bottom:930.750000px;}
.y1e6{bottom:931.290000px;}
.y19b{bottom:935.250000px;}
.y41{bottom:936.150000px;}
.y5c{bottom:936.870000px;}
.y1c3{bottom:938.130000px;}
.ydf{bottom:939.030000px;}
.y24{bottom:939.750000px;}
.y135{bottom:941.190000px;}
.y202{bottom:941.910000px;}
.y11d{bottom:944.250000px;}
.y8c{bottom:947.130000px;}
.y105{bottom:961.890000px;}
.y1af{bottom:966.210000px;}
.y5b{bottom:967.830000px;}
.y1c2{bottom:969.090000px;}
.y19a{bottom:969.270000px;}
.y40{bottom:969.450000px;}
.yde{bottom:969.630000px;}
.y23{bottom:973.050000px;}
.y11c{bottom:975.210000px;}
.y8b{bottom:978.270000px;}
.y1e4{bottom:991.410000px;}
.y104{bottom:992.850000px;}
.y5a{bottom:998.970000px;}
.y1ae{bottom:1000.230000px;}
.y3f{bottom:1002.750000px;}
.y1c1{bottom:1002.930000px;}
.y199{bottom:1003.290000px;}
.y201{bottom:1004.010000px;}
.ydd{bottom:1006.170000px;}
.y22{bottom:1006.350000px;}
.y8a{bottom:1009.230000px;}
.y103{bottom:1023.810000px;}
.y59{bottom:1029.930000px;}
.y198{bottom:1034.250000px;}
.y200{bottom:1035.150000px;}
.y3e{bottom:1036.230000px;}
.y11b{bottom:1037.310000px;}
.y21{bottom:1039.830000px;}
.y89{bottom:1040.370000px;}
.y1e3{bottom:1042.710000px;}
.y102{bottom:1057.650000px;}
.y58{bottom:1061.070000px;}
.y197{bottom:1065.390000px;}
.y1ff{bottom:1066.110000px;}
.y134{bottom:1068.270000px;}
.y3d{bottom:1069.530000px;}
.y88{bottom:1071.330000px;}
.y20{bottom:1073.130000px;}
.y57{bottom:1092.030000px;}
.y101{bottom:1094.190000px;}
.y1fe{bottom:1097.250000px;}
.y16e{bottom:1099.410000px;}
.y133{bottom:1102.110000px;}
.y87{bottom:1102.470000px;}
.y3c{bottom:1103.010000px;}
.y1f{bottom:1106.610000px;}
.y1e{bottom:1127.490000px;}
.y100{bottom:1130.370000px;}
.y132{bottom:1133.070000px;}
.y86{bottom:1133.430000px;}
.y3b{bottom:1136.310000px;}
.y1{bottom:1143.000000px;}
.y17{bottom:1164.240000px;}
.y16{bottom:1195.740000px;}
.h8{height:17.280000px;}
.h14{height:38.700000px;}
.h16{height:52.998047px;}
.h2{height:58.651172px;}
.h4{height:59.038594px;}
.h15{height:59.400000px;}
.h5{height:60.226875px;}
.h10{height:64.546875px;}
.h9{height:65.884219px;}
.h11{height:68.084282px;}
.h13{height:68.554688px;}
.h12{height:70.628906px;}
.ha{height:70.664062px;}
.h7{height:72.562500px;}
.h17{height:74.004654px;}
.hf{height:74.704922px;}
.he{height:84.898125px;}
.hd{height:87.695156px;}
.h6{height:96.508125px;}
.hb{height:99.855000px;}
.hc{height:123.587773px;}
.h3{height:145.125000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:7.560000px;}
.w5{width:309.675000px;}
.w4{width:326.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.740000px;}
.x13{left:54.000000px;}
.x1f{left:97.230000px;}
.x1d{left:98.454000px;}
.xf{left:127.655987px;}
.x1c{left:135.395987px;}
.x19{left:148.715987px;}
.x5{left:154.289987px;}
.x1a{left:175.709987px;}
.x1{left:181.649987px;}
.x3{left:198.209987px;}
.x17{left:208.649987px;}
.x15{left:211.709987px;}
.x1b{left:223.409987px;}
.x16{left:235.649987px;}
.x6{left:274.709987px;}
.xb{left:281.774987px;}
.x4{left:288.074987px;}
.xe{left:294.914987px;}
.xc{left:335.774987px;}
.xa{left:344.054987px;}
.x9{left:363.134987px;}
.xd{left:389.774987px;}
.x14{left:403.094987px;}
.x8{left:413.534987px;}
.x11{left:432.974987px;}
.x7{left:446.474987px;}
.x1e{left:455.115000px;}
.x10{left:505.364987px;}
.x2{left:579.344987px;}
.x18{left:750.569987px;}
.x12{left:757.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:24.320000pt;}
.v2{vertical-align:32.000000pt;}
.ls22{letter-spacing:-2.560000pt;}
.ls21{letter-spacing:-1.920000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.024320pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.165120pt;}
.ls3{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.277120pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.618667pt;}
.ls11{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls29{letter-spacing:1.920000pt;}
.ls35{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.840000pt;}
.ls2d{letter-spacing:4.480000pt;}
.ls23{letter-spacing:4.640000pt;}
.ls24{letter-spacing:5.120000pt;}
.ls2e{letter-spacing:6.400000pt;}
.ls2f{letter-spacing:6.560000pt;}
.ls30{letter-spacing:7.680000pt;}
.ls1f{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:12.800000pt;}
.ls33{letter-spacing:16.000000pt;}
.ls19{letter-spacing:18.842027pt;}
.ls31{letter-spacing:21.120000pt;}
.ls28{letter-spacing:30.208000pt;}
.ls2b{letter-spacing:34.560000pt;}
.ls2c{letter-spacing:35.200000pt;}
.lse{letter-spacing:44.933120pt;}
.ls13{letter-spacing:51.771307pt;}
.lsb{letter-spacing:53.231787pt;}
.ls27{letter-spacing:56.891307pt;}
.ls14{letter-spacing:56.912640pt;}
.lsc{letter-spacing:66.693120pt;}
.lsf{letter-spacing:96.111787pt;}
.lsd{letter-spacing:119.200000pt;}
.ls34{letter-spacing:191.520000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws2{word-spacing:-32.384000pt;}
.ws0{word-spacing:-32.000000pt;}
.ws1{word-spacing:-31.744000pt;}
.wsc{word-spacing:-21.280000pt;}
.ws11{word-spacing:-19.040000pt;}
.wse{word-spacing:-16.768000pt;}
.ws16{word-spacing:-16.704000pt;}
.ws17{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.448000pt;}
.ws18{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.296000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.615680pt;}
.ws7{word-spacing:0.000000pt;}
._33{margin-left:-17.370667pt;}
._e{margin-left:-12.634027pt;}
._8{margin-left:-11.442987pt;}
._6{margin-left:-10.312747pt;}
._3{margin-left:-9.013333pt;}
._2{margin-left:-7.808000pt;}
._9{margin-left:-6.702293pt;}
._c{margin-left:-5.604907pt;}
._4{margin-left:-4.566400pt;}
._7{margin-left:-3.193813pt;}
._d{margin-left:-2.027307pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.906667pt;}
._5{width:1.985493pt;}
._12{width:3.002027pt;}
._f{width:4.096000pt;}
._10{width:5.056000pt;}
._17{width:6.528000pt;}
._16{width:7.467307pt;}
._14{width:8.384000pt;}
._15{width:9.280000pt;}
._a{width:10.356053pt;}
._b{width:11.433600pt;}
._13{width:13.069867pt;}
._1e{width:14.108800pt;}
._1d{width:15.104000pt;}
._18{width:17.728000pt;}
._1b{width:19.244800pt;}
._1f{width:20.179200pt;}
._1a{width:21.632000pt;}
._1c{width:22.656000pt;}
._24{width:24.192000pt;}
._32{width:25.141333pt;}
._22{width:26.048000pt;}
._23{width:27.061333pt;}
._29{width:28.352000pt;}
._20{width:29.312000pt;}
._21{width:30.208000pt;}
._2f{width:31.978667pt;}
._30{width:32.992000pt;}
._19{width:34.496000pt;}
._42{width:35.392000pt;}
._26{width:36.344107pt;}
._25{width:37.260800pt;}
._2c{width:46.272000pt;}
._4e{width:47.349333pt;}
._36{width:48.576000pt;}
._37{width:49.856000pt;}
._28{width:52.608000pt;}
._27{width:53.504000pt;}
._2a{width:59.520000pt;}
._2b{width:60.672000pt;}
._4d{width:63.168000pt;}
._59{width:73.578667pt;}
._4b{width:75.008000pt;}
._4c{width:75.968000pt;}
._2e{width:79.125333pt;}
._2d{width:80.320000pt;}
._3c{width:81.664000pt;}
._3d{width:82.560000pt;}
._43{width:88.298667pt;}
._31{width:92.330667pt;}
._48{width:96.640000pt;}
._57{width:112.512000pt;}
._58{width:114.122667pt;}
._44{width:118.656000pt;}
._45{width:119.594667pt;}
._39{width:134.400000pt;}
._3a{width:135.541333pt;}
._3f{width:136.832000pt;}
._3e{width:137.898667pt;}
._34{width:143.168000pt;}
._54{width:153.323307pt;}
._53{width:154.496000pt;}
._49{width:156.992000pt;}
._4a{width:158.208000pt;}
._50{width:159.210667pt;}
._55{width:192.714667pt;}
._56{width:243.306667pt;}
._35{width:246.848000pt;}
._51{width:253.376000pt;}
._52{width:254.602667pt;}
._46{width:313.984000pt;}
._38{width:348.608000pt;}
._4f{width:727.946667pt;}
._3b{width:734.954667pt;}
._11{width:752.138667pt;}
._47{width:1270.325333pt;}
._40{width:1562.154667pt;}
._41{width:2072.640000pt;}
.fs5{font-size:34.560000pt;}
.fsb{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:101.120000pt;}
.fs9{font-size:106.880000pt;}
.fs1{font-size:128.000000pt;}
.ybb{bottom:-19.840000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.200000pt;}
.y1e5{bottom:11.840000pt;}
.y1e9{bottom:21.120000pt;}
.y1e7{bottom:30.240000pt;}
.y1b{bottom:57.920000pt;}
.y1a{bottom:80.992000pt;}
.y15{bottom:99.552000pt;}
.y19{bottom:103.712000pt;}
.y1c{bottom:126.432000pt;}
.y18{bottom:129.312000pt;}
.y14{bottom:129.952000pt;}
.y21b{bottom:147.226667pt;}
.yba{bottom:149.146667pt;}
.y1d7{bottom:151.066667pt;}
.yd0{bottom:151.866667pt;}
.y13{bottom:153.146667pt;}
.y150{bottom:153.466667pt;}
.y16d{bottom:154.266667pt;}
.y1fd{bottom:156.506667pt;}
.y143{bottom:158.106667pt;}
.y73{bottom:164.986667pt;}
.y196{bottom:167.066667pt;}
.ycf{bottom:167.546667pt;}
.y85{bottom:170.266667pt;}
.y11a{bottom:171.226667pt;}
.yb0{bottom:172.186667pt;}
.y3a{bottom:172.826667pt;}
.y21a{bottom:174.906667pt;}
.y1c0{bottom:175.066667pt;}
.y12{bottom:176.186667pt;}
.yb9{bottom:176.826667pt;}
.y1ad{bottom:177.786667pt;}
.y1d6{bottom:178.586667pt;}
.ya2{bottom:179.546667pt;}
.y14f{bottom:181.146667pt;}
.y1fc{bottom:184.026667pt;}
.y16c{bottom:184.506667pt;}
.y142{bottom:185.786667pt;}
.y175{bottom:188.346667pt;}
.y1e2{bottom:189.146667pt;}
.y17d{bottom:193.786667pt;}
.y195{bottom:194.746667pt;}
.yce{bottom:195.226667pt;}
.y84{bottom:197.626667pt;}
.y119{bottom:198.746667pt;}
.yaf{bottom:199.866667pt;}
.y11{bottom:201.306667pt;}
.y72{bottom:201.786667pt;}
.y219{bottom:202.426667pt;}
.y39{bottom:202.586667pt;}
.y1bf{bottom:202.746667pt;}
.yb6{bottom:204.346667pt;}
.y1ac{bottom:205.306667pt;}
.y56{bottom:206.586667pt;}
.yfe{bottom:206.746667pt;}
.ya1{bottom:207.066667pt;}
.y14e{bottom:208.666667pt;}
.y1fb{bottom:211.706667pt;}
.y16b{bottom:212.186667pt;}
.y141{bottom:213.306667pt;}
.y174{bottom:216.026667pt;}
.y1e1{bottom:216.666667pt;}
.y17c{bottom:221.306667pt;}
.ycd{bottom:222.746667pt;}
.y151{bottom:224.026667pt;}
.y38{bottom:224.986667pt;}
.y83{bottom:225.466667pt;}
.yae{bottom:227.386667pt;}
.y118{bottom:228.826667pt;}
.y10{bottom:228.986667pt;}
.y218{bottom:230.106667pt;}
.y1be{bottom:230.266667pt;}
.yb5{bottom:232.026667pt;}
.y1ab{bottom:232.986667pt;}
.y55{bottom:234.266667pt;}
.y71{bottom:234.746667pt;}
.y14d{bottom:236.346667pt;}
.y1fa{bottom:239.226667pt;}
.y16a{bottom:239.706667pt;}
.y1d5{bottom:240.346667pt;}
.y140{bottom:243.546667pt;}
.y1e0{bottom:244.346667pt;}
.y173{bottom:246.266667pt;}
.y154{bottom:248.986667pt;}
.ycc{bottom:250.426667pt;}
.y131{bottom:251.546667pt;}
.y82{bottom:252.826667pt;}
.yad{bottom:255.066667pt;}
.y37{bottom:255.226667pt;}
.yf{bottom:256.506667pt;}
.y217{bottom:257.626667pt;}
.y1bd{bottom:257.786667pt;}
.y117{bottom:259.386667pt;}
.yb4{bottom:259.546667pt;}
.y1aa{bottom:260.506667pt;}
.y54{bottom:261.786667pt;}
.yfd{bottom:261.946667pt;}
.y70{bottom:262.266667pt;}
.y14c{bottom:263.866667pt;}
.y1f9{bottom:266.746667pt;}
.y169{bottom:269.946667pt;}
.y1d4{bottom:271.226667pt;}
.y1df{bottom:271.866667pt;}
.y13f{bottom:273.466667pt;}
.y172{bottom:273.786667pt;}
.y17b{bottom:276.506667pt;}
.ycb{bottom:277.946667pt;}
.y130{bottom:279.226667pt;}
.y81{bottom:280.346667pt;}
.yac{bottom:282.586667pt;}
.ye{bottom:284.186667pt;}
.y36{bottom:284.826667pt;}
.y216{bottom:285.306667pt;}
.y194{bottom:285.466667pt;}
.y116{bottom:286.906667pt;}
.yb3{bottom:287.226667pt;}
.y1a9{bottom:288.026667pt;}
.y53{bottom:289.466667pt;}
.ya0{bottom:289.786667pt;}
.y14b{bottom:291.546667pt;}
.y6f{bottom:293.786667pt;}
.y1f8{bottom:294.426667pt;}
.y168{bottom:297.626667pt;}
.y1d3{bottom:298.746667pt;}
.y1de{bottom:299.586667pt;}
.y13e{bottom:301.186667pt;}
.y171{bottom:304.226667pt;}
.yca{bottom:305.666667pt;}
.y12f{bottom:306.786667pt;}
.y80{bottom:308.226667pt;}
.yab{bottom:310.306667pt;}
.y215{bottom:312.866667pt;}
.y1bc{bottom:313.026667pt;}
.y35{bottom:314.626667pt;}
.yb2{bottom:314.786667pt;}
.y193{bottom:315.746667pt;}
.y52{bottom:317.026667pt;}
.yfc{bottom:317.186667pt;}
.y9f{bottom:317.506667pt;}
.y1a8{bottom:318.146667pt;}
.y14a{bottom:321.506667pt;}
.y184{bottom:321.826667pt;}
.y1f7{bottom:321.986667pt;}
.yd{bottom:324.066667pt;}
.y167{bottom:325.186667pt;}
.y1d2{bottom:326.466667pt;}
.y6e{bottom:326.626667pt;}
.y1dd{bottom:327.106667pt;}
.y13d{bottom:331.426667pt;}
.y170{bottom:331.746667pt;}
.yc9{bottom:333.186667pt;}
.y12e{bottom:334.466667pt;}
.y7f{bottom:335.906667pt;}
.yaa{bottom:337.826667pt;}
.y214{bottom:340.546667pt;}
.y1bb{bottom:340.706667pt;}
.yb1{bottom:341.986667pt;}
.y115{bottom:342.146667pt;}
.yb8{bottom:342.466667pt;}
.y34{bottom:344.226667pt;}
.y51{bottom:344.706667pt;}
.y9e{bottom:345.026667pt;}
.y192{bottom:345.986667pt;}
.y1a7{bottom:348.706667pt;}
.y183{bottom:349.506667pt;}
.y1f6{bottom:349.666667pt;}
.y166{bottom:352.866667pt;}
.y149{bottom:353.986667pt;}
.y6d{bottom:354.306667pt;}
.y1dc{bottom:354.786667pt;}
.y16f{bottom:359.426667pt;}
.yc8{bottom:360.866667pt;}
.y12d{bottom:361.986667pt;}
.y7e{bottom:363.426667pt;}
.y17a{bottom:364.706667pt;}
.ya9{bottom:365.506667pt;}
.y33{bottom:366.786667pt;}
.yc{bottom:366.946667pt;}
.y213{bottom:368.066667pt;}
.yb7{bottom:369.666667pt;}
.y114{bottom:369.826667pt;}
.yd9{bottom:369.986667pt;}
.y1ba{bottom:370.626667pt;}
.y50{bottom:372.226667pt;}
.yfb{bottom:372.386667pt;}
.y9d{bottom:372.706667pt;}
.y191{bottom:376.226667pt;}
.y182{bottom:377.026667pt;}
.y1f5{bottom:377.186667pt;}
.y1a6{bottom:378.946667pt;}
.y165{bottom:380.386667pt;}
.y6c{bottom:381.826667pt;}
.y1db{bottom:382.306667pt;}
.y1d1{bottom:384.226667pt;}
.y148{bottom:386.946667pt;}
.yc7{bottom:388.386667pt;}
.y12c{bottom:389.666667pt;}
.y7d{bottom:391.106667pt;}
.y179{bottom:392.226667pt;}
.ya8{bottom:393.026667pt;}
.yb{bottom:394.306667pt;}
.y212{bottom:395.746667pt;}
.y32{bottom:396.866667pt;}
.y113{bottom:397.346667pt;}
.yd8{bottom:397.666667pt;}
.y4f{bottom:399.906667pt;}
.y9c{bottom:400.226667pt;}
.y1b9{bottom:401.186667pt;}
.y181{bottom:404.706667pt;}
.y1f4{bottom:404.866667pt;}
.y190{bottom:406.626667pt;}
.y164{bottom:408.066667pt;}
.y6b{bottom:409.506667pt;}
.y1d0{bottom:411.906667pt;}
.yc6{bottom:416.066667pt;}
.y12b{bottom:417.186667pt;}
.y7c{bottom:418.626667pt;}
.y31{bottom:419.426667pt;}
.y178{bottom:419.906667pt;}
.ya7{bottom:420.226667pt;}
.yed{bottom:420.706667pt;}
.ya{bottom:422.146667pt;}
.y211{bottom:423.266667pt;}
.y112{bottom:425.026667pt;}
.yd7{bottom:425.186667pt;}
.y4e{bottom:427.426667pt;}
.yfa{bottom:427.586667pt;}
.y9b{bottom:427.906667pt;}
.y1b8{bottom:431.426667pt;}
.y180{bottom:432.226667pt;}
.y1f3{bottom:432.386667pt;}
.y18f{bottom:434.146667pt;}
.y163{bottom:435.586667pt;}
.y6a{bottom:437.026667pt;}
.y1cf{bottom:439.426667pt;}
.yc5{bottom:443.586667pt;}
.y12a{bottom:444.866667pt;}
.y7b{bottom:446.306667pt;}
.y177{bottom:447.426667pt;}
.yec{bottom:448.226667pt;}
.y9{bottom:449.506667pt;}
.y210{bottom:450.946667pt;}
.y111{bottom:452.546667pt;}
.ya6{bottom:452.706667pt;}
.yd6{bottom:452.866667pt;}
.y4d{bottom:455.106667pt;}
.y9a{bottom:455.426667pt;}
.y1b7{bottom:459.106667pt;}
.y1f2{bottom:460.066667pt;}
.y18e{bottom:461.826667pt;}
.y17f{bottom:462.146667pt;}
.y162{bottom:463.266667pt;}
.y1a5{bottom:464.386667pt;}
.y69{bottom:464.706667pt;}
.y1ce{bottom:467.106667pt;}
.yc4{bottom:471.266667pt;}
.y13c{bottom:472.386667pt;}
.y7a{bottom:473.826667pt;}
.y129{bottom:475.106667pt;}
.yeb{bottom:475.746667pt;}
.y20f{bottom:478.466667pt;}
.y30{bottom:479.266667pt;}
.yff{bottom:480.066667pt;}
.y110{bottom:480.226667pt;}
.yd5{bottom:480.386667pt;}
.yf9{bottom:482.786667pt;}
.y99{bottom:483.106667pt;}
.ya5{bottom:485.026667pt;}
.y4c{bottom:486.626667pt;}
.y1f1{bottom:487.586667pt;}
.y8{bottom:489.666667pt;}
.y161{bottom:490.786667pt;}
.y18d{bottom:492.066667pt;}
.y68{bottom:492.226667pt;}
.y17e{bottom:494.626667pt;}
.y1cd{bottom:497.346667pt;}
.yc3{bottom:498.786667pt;}
.y13b{bottom:500.066667pt;}
.y79{bottom:501.506667pt;}
.y128{bottom:502.626667pt;}
.yea{bottom:503.426667pt;}
.y20e{bottom:506.146667pt;}
.y10f{bottom:507.746667pt;}
.yd4{bottom:508.066667pt;}
.y2f{bottom:508.866667pt;}
.yf8{bottom:510.306667pt;}
.y98{bottom:510.626667pt;}
.ya4{bottom:513.026667pt;}
.y1f0{bottom:515.266667pt;}
.y1b6{bottom:517.026667pt;}
.y160{bottom:518.466667pt;}
.y18c{bottom:519.586667pt;}
.y67{bottom:519.906667pt;}
.y1a4{bottom:522.306667pt;}
.y4b{bottom:523.426667pt;}
.y1cc{bottom:525.026667pt;}
.yc2{bottom:526.466667pt;}
.y13a{bottom:527.586667pt;}
.y78{bottom:529.026667pt;}
.y147{bottom:530.306667pt;}
.ye9{bottom:530.946667pt;}
.y127{bottom:533.026667pt;}
.y20d{bottom:533.666667pt;}
.yd3{bottom:535.586667pt;}
.yf7{bottom:538.013333pt;}
.y97{bottom:538.333333pt;}
.y2e{bottom:538.653333pt;}
.y1ef{bottom:542.493333pt;}
.y1b5{bottom:544.573333pt;}
.y7{bottom:544.893333pt;}
.y66{bottom:547.453333pt;}
.y15f{bottom:548.733333pt;}
.y18b{bottom:549.853333pt;}
.y1cb{bottom:552.573333pt;}
.yc1{bottom:554.013333pt;}
.y139{bottom:555.293333pt;}
.y4a{bottom:556.253333pt;}
.y77{bottom:556.733333pt;}
.y146{bottom:557.853333pt;}
.ye8{bottom:558.653333pt;}
.y126{bottom:560.573333pt;}
.y20c{bottom:561.373333pt;}
.yd2{bottom:563.293333pt;}
.yf6{bottom:565.533333pt;}
.y10e{bottom:565.693333pt;}
.y96{bottom:565.853333pt;}
.y1ee{bottom:567.293333pt;}
.y2d{bottom:568.253333pt;}
.y1b4{bottom:572.093333pt;}
.y65{bottom:575.133333pt;}
.y15e{bottom:576.253333pt;}
.y18a{bottom:577.533333pt;}
.y1ed{bottom:578.813333pt;}
.y1ca{bottom:580.093333pt;}
.yc0{bottom:581.693333pt;}
.y138{bottom:582.813333pt;}
.y49{bottom:583.933333pt;}
.y76{bottom:584.253333pt;}
.y145{bottom:585.533333pt;}
.ye7{bottom:586.173333pt;}
.y125{bottom:588.093333pt;}
.y20b{bottom:588.893333pt;}
.yd1{bottom:590.493333pt;}
.ydc{bottom:590.813333pt;}
.yf5{bottom:593.213333pt;}
.y95{bottom:593.533333pt;}
.y2c{bottom:597.853333pt;}
.y1b3{bottom:599.773333pt;}
.y6{bottom:600.093333pt;}
.y64{bottom:602.653333pt;}
.y15d{bottom:603.933333pt;}
.y1a3{bottom:605.053333pt;}
.y189{bottom:607.773333pt;}
.ybf{bottom:609.213333pt;}
.y1c9{bottom:610.493333pt;}
.y75{bottom:611.933333pt;}
.y137{bottom:613.053333pt;}
.ye6{bottom:613.853333pt;}
.y48{bottom:615.773333pt;}
.y20a{bottom:616.573333pt;}
.ydb{bottom:618.493333pt;}
.yf4{bottom:620.733333pt;}
.y94{bottom:621.053333pt;}
.y10d{bottom:623.453333pt;}
.y2b{bottom:627.613333pt;}
.y1b2{bottom:630.013333pt;}
.y15c{bottom:631.453333pt;}
.y1ec{bottom:632.253333pt;}
.y1a2{bottom:632.733333pt;}
.y63{bottom:634.173333pt;}
.y188{bottom:635.293333pt;}
.ybe{bottom:636.413333pt;}
.y1c8{bottom:638.013333pt;}
.y74{bottom:639.453333pt;}
.y136{bottom:640.733333pt;}
.ye5{bottom:641.373333pt;}
.y124{bottom:643.293333pt;}
.y209{bottom:644.093333pt;}
.yda{bottom:645.693333pt;}
.yf3{bottom:648.413333pt;}
.y93{bottom:648.733333pt;}
.y10c{bottom:651.133333pt;}
.y47{bottom:652.893333pt;}
.y5{bottom:655.293333pt;}
.y2a{bottom:657.213333pt;}
.y1b1{bottom:657.693333pt;}
.y15b{bottom:659.133333pt;}
.y1a1{bottom:660.253333pt;}
.y187{bottom:665.693333pt;}
.y62{bottom:667.133333pt;}
.y1eb{bottom:667.293333pt;}
.y153{bottom:668.253333pt;}
.ybd{bottom:669.053333pt;}
.y123{bottom:670.973333pt;}
.y208{bottom:671.773333pt;}
.yf2{bottom:675.933333pt;}
.y92{bottom:676.253333pt;}
.y10b{bottom:681.373333pt;}
.y46{bottom:683.613333pt;}
.y15a{bottom:686.653333pt;}
.y29{bottom:686.973333pt;}
.y1a0{bottom:687.933333pt;}
.y186{bottom:693.213333pt;}
.y61{bottom:694.653333pt;}
.y152{bottom:695.933333pt;}
.ye4{bottom:696.573333pt;}
.y122{bottom:698.493333pt;}
.y207{bottom:699.293333pt;}
.ybc{bottom:701.213333pt;}
.yf1{bottom:703.453333pt;}
.y91{bottom:703.613333pt;}
.ya3{bottom:703.933333pt;}
.y10a{bottom:708.893333pt;}
.y4{bottom:710.493333pt;}
.y45{bottom:713.373333pt;}
.y28{bottom:716.573333pt;}
.y159{bottom:716.893333pt;}
.y19f{bottom:718.173333pt;}
.y1ea{bottom:720.733333pt;}
.y1c7{bottom:720.893333pt;}
.y60{bottom:722.333333pt;}
.y185{bottom:723.453333pt;}
.ye3{bottom:724.253333pt;}
.y121{bottom:726.173333pt;}
.y206{bottom:726.973333pt;}
.y1da{bottom:728.893333pt;}
.yf0{bottom:731.133333pt;}
.y90{bottom:731.453333pt;}
.y109{bottom:739.293333pt;}
.y44{bottom:742.973333pt;}
.y158{bottom:744.573333pt;}
.y19e{bottom:745.693333pt;}
.y27{bottom:746.173333pt;}
.y1c6{bottom:748.413333pt;}
.y5f{bottom:749.853333pt;}
.y3{bottom:751.133333pt;}
.ye2{bottom:751.773333pt;}
.y120{bottom:753.693333pt;}
.y205{bottom:754.493333pt;}
.y1d9{bottom:756.413333pt;}
.yef{bottom:758.333333pt;}
.y8f{bottom:759.133333pt;}
.y108{bottom:766.813333pt;}
.y2{bottom:771.133333pt;}
.y157{bottom:772.093333pt;}
.y43{bottom:772.733333pt;}
.y19d{bottom:773.373333pt;}
.y1e8{bottom:774.213333pt;}
.y26{bottom:775.973333pt;}
.y5e{bottom:777.573333pt;}
.y1c5{bottom:778.693333pt;}
.ye1{bottom:779.493333pt;}
.y11f{bottom:781.413333pt;}
.y204{bottom:782.053333pt;}
.y176{bottom:783.813333pt;}
.y1d8{bottom:784.133333pt;}
.y8e{bottom:786.693333pt;}
.yee{bottom:787.653333pt;}
.y107{bottom:797.093333pt;}
.y156{bottom:799.813333pt;}
.y1b0{bottom:800.933333pt;}
.y42{bottom:802.373333pt;}
.y19c{bottom:803.653333pt;}
.y5d{bottom:805.093333pt;}
.y25{bottom:805.573333pt;}
.y1c4{bottom:806.373333pt;}
.ye0{bottom:807.013333pt;}
.y11e{bottom:808.933333pt;}
.y203{bottom:809.733333pt;}
.y144{bottom:811.653333pt;}
.y8d{bottom:814.373333pt;}
.y106{bottom:824.773333pt;}
.y155{bottom:827.333333pt;}
.y1e6{bottom:827.813333pt;}
.y19b{bottom:831.333333pt;}
.y41{bottom:832.133333pt;}
.y5c{bottom:832.773333pt;}
.y1c3{bottom:833.893333pt;}
.ydf{bottom:834.693333pt;}
.y24{bottom:835.333333pt;}
.y135{bottom:836.613333pt;}
.y202{bottom:837.253333pt;}
.y11d{bottom:839.333333pt;}
.y8c{bottom:841.893333pt;}
.y105{bottom:855.013333pt;}
.y1af{bottom:858.853333pt;}
.y5b{bottom:860.293333pt;}
.y1c2{bottom:861.413333pt;}
.y19a{bottom:861.573333pt;}
.y40{bottom:861.733333pt;}
.yde{bottom:861.893333pt;}
.y23{bottom:864.933333pt;}
.y11c{bottom:866.853333pt;}
.y8b{bottom:869.573333pt;}
.y1e4{bottom:881.253333pt;}
.y104{bottom:882.533333pt;}
.y5a{bottom:887.973333pt;}
.y1ae{bottom:889.093333pt;}
.y3f{bottom:891.333333pt;}
.y1c1{bottom:891.493333pt;}
.y199{bottom:891.813333pt;}
.y201{bottom:892.453333pt;}
.ydd{bottom:894.373333pt;}
.y22{bottom:894.533333pt;}
.y8a{bottom:897.093333pt;}
.y103{bottom:910.053333pt;}
.y59{bottom:915.493333pt;}
.y198{bottom:919.333333pt;}
.y200{bottom:920.133333pt;}
.y3e{bottom:921.093333pt;}
.y11b{bottom:922.053333pt;}
.y21{bottom:924.293333pt;}
.y89{bottom:924.773333pt;}
.y1e3{bottom:926.853333pt;}
.y102{bottom:940.133333pt;}
.y58{bottom:943.173333pt;}
.y197{bottom:947.013333pt;}
.y1ff{bottom:947.653333pt;}
.y134{bottom:949.573333pt;}
.y3d{bottom:950.693333pt;}
.y88{bottom:952.293333pt;}
.y20{bottom:953.893333pt;}
.y57{bottom:970.693333pt;}
.y101{bottom:972.613333pt;}
.y1fe{bottom:975.333333pt;}
.y16e{bottom:977.253333pt;}
.y133{bottom:979.653333pt;}
.y87{bottom:979.973333pt;}
.y3c{bottom:980.453333pt;}
.y1f{bottom:983.653333pt;}
.y1e{bottom:1002.213333pt;}
.y100{bottom:1004.773333pt;}
.y132{bottom:1007.173333pt;}
.y86{bottom:1007.493333pt;}
.y3b{bottom:1010.053333pt;}
.y1{bottom:1016.000000pt;}
.y17{bottom:1034.880000pt;}
.y16{bottom:1062.880000pt;}
.h8{height:15.360000pt;}
.h14{height:34.400000pt;}
.h16{height:47.109375pt;}
.h2{height:52.134375pt;}
.h4{height:52.478750pt;}
.h15{height:52.800000pt;}
.h5{height:53.535000pt;}
.h10{height:57.375000pt;}
.h9{height:58.563750pt;}
.h11{height:60.519362pt;}
.h13{height:60.937500pt;}
.h12{height:62.781250pt;}
.ha{height:62.812500pt;}
.h7{height:64.500000pt;}
.h17{height:65.781915pt;}
.hf{height:66.404375pt;}
.he{height:75.465000pt;}
.hd{height:77.951250pt;}
.h6{height:85.785000pt;}
.hb{height:88.760000pt;}
.hc{height:109.855798pt;}
.h3{height:129.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:6.720000pt;}
.w5{width:275.266667pt;}
.w4{width:289.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.880000pt;}
.x13{left:48.000000pt;}
.x1f{left:86.426667pt;}
.x1d{left:87.514667pt;}
.xf{left:113.471988pt;}
.x1c{left:120.351988pt;}
.x19{left:132.191988pt;}
.x5{left:137.146655pt;}
.x1a{left:156.186655pt;}
.x1{left:161.466655pt;}
.x3{left:176.186655pt;}
.x17{left:185.466655pt;}
.x15{left:188.186655pt;}
.x1b{left:198.586655pt;}
.x16{left:209.466655pt;}
.x6{left:244.186655pt;}
.xb{left:250.466655pt;}
.x4{left:256.066655pt;}
.xe{left:262.146655pt;}
.xc{left:298.466655pt;}
.xa{left:305.826655pt;}
.x9{left:322.786655pt;}
.xd{left:346.466655pt;}
.x14{left:358.306655pt;}
.x8{left:367.586655pt;}
.x11{left:384.866655pt;}
.x7{left:396.866655pt;}
.x1e{left:404.546667pt;}
.x10{left:449.213322pt;}
.x2{left:514.973322pt;}
.x18{left:667.173322pt;}
.x12{left:673.733322pt;}
}




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