
    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_af5f0bb3491099f65240e50d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_3338da7dcbf035eaae20d656.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_ce53a9bd0b679de1befe3d5a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c192e424ca0ec80f308faba6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6846d237319f33a17779f0df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fd3857b15192bc17328c8ab7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.903809;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_c8dcc970f9343286edfa2345.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.046387;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_2d83c112c0c019f1446295fd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ed8ea2b0322e20d097059de2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_40c49a63c490ff73debce1c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.759766;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_f23fa70adaf969a7acdf727e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_867362d3b6b4ae144033a092.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_83468c2290044b50a6c13df0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929199;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_4946dc8f82009b5ab08d094b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.201172;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_7f25da58ac5224a85e4fe3c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.767578;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);}
.v3{vertical-align:-27.000000px;}
.v1{vertical-align:-6.000000px;}
.v6{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.000000px;}
.v5{vertical-align:6.000000px;}
.v4{vertical-align:24.120000px;}
.v2{vertical-align:27.000000px;}
.ls30{letter-spacing:-1.608000px;}
.ls20{letter-spacing:-1.524000px;}
.ls28{letter-spacing:-1.500000px;}
.ls2f{letter-spacing:-1.476000px;}
.ls3c{letter-spacing:-1.188000px;}
.lsf{letter-spacing:-0.984000px;}
.ls6{letter-spacing:-0.516000px;}
.ls15{letter-spacing:-0.492000px;}
.ls16{letter-spacing:-0.468000px;}
.ls34{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.300000px;}
.ls35{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.150000px;}
.ls11{letter-spacing:-0.132000px;}
.ls31{letter-spacing:-0.114000px;}
.ls21{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024000px;}
.ls2d{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.078000px;}
.ls4{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.144000px;}
.lse{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.312000px;}
.ls1a{letter-spacing:0.324000px;}
.ls39{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.456000px;}
.ls3{letter-spacing:0.468000px;}
.ls17{letter-spacing:0.492000px;}
.ls10{letter-spacing:0.516000px;}
.ls1c{letter-spacing:0.576000px;}
.ls33{letter-spacing:0.582000px;}
.ls18{letter-spacing:0.588000px;}
.ls24{letter-spacing:0.636000px;}
.ls1{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.666000px;}
.ls1b{letter-spacing:0.696000px;}
.ls22{letter-spacing:1.032000px;}
.ls37{letter-spacing:1.392000px;}
.lsa{letter-spacing:1.500000px;}
.ls3b{letter-spacing:1.524000px;}
.ls36{letter-spacing:1.548000px;}
.ls13{letter-spacing:1.560000px;}
.ls25{letter-spacing:2.016000px;}
.ls9{letter-spacing:3.000000px;}
.ls23{letter-spacing:3.180000px;}
.ls3a{letter-spacing:3.228000px;}
.ls12{letter-spacing:4.560000px;}
.ls3e{letter-spacing:5.484000px;}
.ls8{letter-spacing:6.000000px;}
.ls27{letter-spacing:7.500000px;}
.lsd{letter-spacing:9.228000px;}
.ls1f{letter-spacing:10.500000px;}
.lsc{letter-spacing:12.000000px;}
.ls2c{letter-spacing:13.500000px;}
.ls38{letter-spacing:16.500000px;}
.ls29{letter-spacing:18.000000px;}
.ls26{letter-spacing:35.388000px;}
.ls3d{letter-spacing:39.180000px;}
.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;}
}
.ws2{word-spacing:-84.000000px;}
.wsc{word-spacing:-72.000000px;}
.ws11{word-spacing:-48.000000px;}
.ws14{word-spacing:-20.016000px;}
.ws13{word-spacing:-19.500000px;}
.ws9{word-spacing:-18.516000px;}
.ws7{word-spacing:-18.468000px;}
.ws1d{word-spacing:-18.432000px;}
.ws0{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.976000px;}
.ws12{word-spacing:-17.892000px;}
.wse{word-spacing:-17.700000px;}
.wsb{word-spacing:-17.532000px;}
.wsa{word-spacing:-17.508000px;}
.wsd{word-spacing:-17.484000px;}
.ws8{word-spacing:-17.016000px;}
.wsf{word-spacing:-16.500000px;}
.ws10{word-spacing:-16.476000px;}
.ws19{word-spacing:-16.320000px;}
.ws18{word-spacing:-15.498000px;}
.ws1b{word-spacing:-14.916000px;}
.ws16{word-spacing:-14.802000px;}
.ws17{word-spacing:-14.766000px;}
.ws1{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.344000px;}
.ws15{word-spacing:-12.828000px;}
.ws1e{word-spacing:-12.156000px;}
.ws3{word-spacing:-12.000000px;}
.ws1c{word-spacing:-11.700000px;}
.ws1a{word-spacing:-8.340000px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-5.202000px;}
._10{margin-left:-3.528000px;}
._d{margin-left:-2.196000px;}
._1{margin-left:-1.080000px;}
._0{width:1.296000px;}
._2{width:2.526000px;}
._5{width:3.696000px;}
._6{width:5.400000px;}
._7{width:6.942000px;}
._8{width:8.082000px;}
._9{width:9.936000px;}
._a{width:11.286000px;}
._c{width:12.324000px;}
._f{width:13.482000px;}
._b{width:15.408000px;}
._12{width:16.686000px;}
._15{width:20.334000px;}
._18{width:21.828000px;}
._13{width:23.832000px;}
._16{width:26.388000px;}
._17{width:34.344000px;}
._1b{width:35.484000px;}
._1a{width:36.876000px;}
._11{width:38.952000px;}
._3{width:39.960000px;}
._4{width:41.262000px;}
._19{width:45.144000px;}
._1c{width:109.650000px;}
._1d{width:127.650000px;}
._1e{width:316.884000px;}
._e{width:846.450000px;}
.fc9{color:rgb(146,208,80);}
.fc7{color:rgb(255,0,0);}
.fcb{color:rgb(0,176,240);}
.fc6{color:rgb(0,112,192);}
.fca{color:rgb(191,143,0);}
.fc4{color:rgb(112,173,71);}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.000000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y126{bottom:-31.155000px;}
.yd7{bottom:-6.630000px;}
.yb7{bottom:-3.900000px;}
.y128{bottom:-3.750000px;}
.yab{bottom:-2.700000px;}
.yad{bottom:-2.400000px;}
.y125{bottom:-1.875000px;}
.yd5{bottom:-0.225000px;}
.y0{bottom:0.000000px;}
.y14b{bottom:0.150000px;}
.yf8{bottom:0.195000px;}
.y12f{bottom:1.500000px;}
.y12c{bottom:1.875000px;}
.yf6{bottom:2.070000px;}
.yfa{bottom:2.250000px;}
.y19c{bottom:2.257500px;}
.y15b{bottom:2.400000px;}
.y14d{bottom:2.445000px;}
.y196{bottom:2.625000px;}
.y19a{bottom:2.670000px;}
.yed{bottom:4.125000px;}
.y11f{bottom:4.500000px;}
.y111{bottom:4.695000px;}
.y120{bottom:4.875000px;}
.y153{bottom:4.995000px;}
.yf2{bottom:5.445000px;}
.y132{bottom:6.000000px;}
.y147{bottom:6.030000px;}
.y134{bottom:6.375000px;}
.y175{bottom:6.405000px;}
.y12a{bottom:6.750000px;}
.y157{bottom:6.900000px;}
.y15d{bottom:7.245000px;}
.yf4{bottom:7.275000px;}
.yb5{bottom:7.425000px;}
.yf0{bottom:7.545000px;}
.y160{bottom:7.650000px;}
.y177{bottom:7.875000px;}
.y18a{bottom:8.625000px;}
.y159{bottom:8.775000px;}
.y123{bottom:9.000000px;}
.y151{bottom:9.525000px;}
.yfe{bottom:13.500000px;}
.y131{bottom:13.875000px;}
.y155{bottom:14.025000px;}
.y14f{bottom:15.150000px;}
.y165{bottom:17.925000px;}
.yec{bottom:19.125000px;}
.y143{bottom:31.875000px;}
.y2{bottom:57.412500px;}
.y1{bottom:76.912500px;}
.y1b1{bottom:113.287500px;}
.y24{bottom:113.662500px;}
.y188{bottom:126.037500px;}
.y13e{bottom:127.537500px;}
.y23{bottom:134.287500px;}
.y194{bottom:135.787500px;}
.y1b0{bottom:137.662500px;}
.y86{bottom:139.912500px;}
.y4b{bottom:143.662500px;}
.ya4{bottom:144.787500px;}
.y88{bottom:145.912500px;}
.y19b{bottom:148.912500px;}
.yea{bottom:149.287500px;}
.y13d{bottom:151.530000px;}
.y10f{bottom:154.170000px;}
.yd3{bottom:157.920000px;}
.y1af{bottom:161.295000px;}
.y187{bottom:162.030000px;}
.yef{bottom:166.170000px;}
.y22{bottom:166.920000px;}
.y1a5{bottom:169.155000px;}
.y85{bottom:171.045000px;}
.y199{bottom:173.655000px;}
.y13c{bottom:175.200000px;}
.ya3{bottom:175.950000px;}
.y6a{bottom:177.075000px;}
.y4a{bottom:177.450000px;}
.yd2{bottom:181.575000px;}
.y186{bottom:182.700000px;}
.ye9{bottom:185.700000px;}
.y10e{bottom:188.700000px;}
.y1a4{bottom:193.200000px;}
.y21{bottom:199.575000px;}
.y198{bottom:201.075000px;}
.y84{bottom:201.825000px;}
.y185{bottom:203.700000px;}
.ya9{bottom:205.200000px;}
.ye8{bottom:206.325000px;}
.ya2{bottom:206.700000px;}
.y69{bottom:208.200000px;}
.y49{bottom:210.450000px;}
.y10d{bottom:212.700000px;}
.ya1{bottom:213.450000px;}
.yd1{bottom:215.700000px;}
.y1a3{bottom:216.825000px;}
.y20{bottom:220.200000px;}
.yb3{bottom:220.575000px;}
.y13b{bottom:222.825000px;}
.y184{bottom:224.325000px;}
.y197{bottom:225.825000px;}
.y83{bottom:232.950000px;}
.ye7{bottom:236.700000px;}
.ya0{bottom:237.825000px;}
.y68{bottom:239.325000px;}
.ya8{bottom:239.700000px;}
.y1a2{bottom:240.825000px;}
.y48{bottom:243.450000px;}
.y9f{bottom:244.575000px;}
.y183{bottom:244.950000px;}
.y13a{bottom:247.200000px;}
.yd0{bottom:250.200000px;}
.y1f{bottom:253.200000px;}
.yb2{bottom:255.075000px;}
.y10c{bottom:257.325000px;}
.y195{bottom:258.075000px;}
.ya7{bottom:263.700000px;}
.y47{bottom:264.075000px;}
.y1a1{bottom:264.825000px;}
.y182{bottom:265.575000px;}
.y9e{bottom:268.950000px;}
.y67{bottom:270.075000px;}
.y139{bottom:270.450000px;}
.y17a{bottom:271.575000px;}
.y1e{bottom:273.825000px;}
.y9d{bottom:275.700000px;}
.yb1{bottom:279.075000px;}
.ycf{bottom:284.325000px;}
.y181{bottom:286.575000px;}
.ya6{bottom:287.700000px;}
.y10b{bottom:288.075000px;}
.ybf{bottom:288.825000px;}
.y138{bottom:294.450000px;}
.y82{bottom:295.200000px;}
.y46{bottom:296.700000px;}
.y11d{bottom:297.825000px;}
.y9c{bottom:300.075000px;}
.y66{bottom:301.200000px;}
.yb0{bottom:303.120000px;}
.y1d{bottom:306.495000px;}
.ybe{bottom:312.870000px;}
.y1a0{bottom:316.995000px;}
.y45{bottom:317.355000px;}
.ya5{bottom:318.105000px;}
.y180{bottom:318.495000px;}
.yce{bottom:318.870000px;}
.y19e{bottom:319.245000px;}
.y81{bottom:326.370000px;}
.yaf{bottom:326.745000px;}
.y1c{bottom:327.120000px;}
.y9b{bottom:331.230000px;}
.y94{bottom:331.995000px;}
.y65{bottom:332.370000px;}
.ybd{bottom:336.870000px;}
.y44{bottom:337.980000px;}
.y137{bottom:342.495000px;}
.yd6{bottom:343.500000px;}
.ycd{bottom:352.995000px;}
.y80{bottom:357.120000px;}
.yae{bottom:357.495000px;}
.y1b{bottom:359.745000px;}
.ybc{bottom:360.495000px;}
.y9a{bottom:361.980000px;}
.y93{bottom:363.120000px;}
.y64{bottom:363.495000px;}
.y11c{bottom:366.495000px;}
.y43{bottom:372.105000px;}
.ye2{bottom:372.495000px;}
.y18c{bottom:378.120000px;}
.y1a{bottom:380.745000px;}
.y99{bottom:383.370000px;}
.y136{bottom:384.855000px;}
.ycc{bottom:387.495000px;}
.y7f{bottom:388.230000px;}
.ybb{bottom:391.245000px;}
.y149{bottom:392.355000px;}
.y92{bottom:394.245000px;}
.y42{bottom:394.620000px;}
.ye1{bottom:396.495000px;}
.y167{bottom:396.870000px;}
.y11b{bottom:400.620000px;}
.y152{bottom:411.750000px;}
.y19{bottom:413.370000px;}
.y7e{bottom:419.370000px;}
.ye0{bottom:420.495000px;}
.y15c{bottom:421.125000px;}
.ycb{bottom:421.620000px;}
.y11a{bottom:424.995000px;}
.y87{bottom:425.370000px;}
.y41{bottom:427.620000px;}
.y102{bottom:428.745000px;}
.y63{bottom:432.150000px;}
.y156{bottom:432.750000px;}
.y104{bottom:432.900000px;}
.y163{bottom:433.275000px;}
.y100{bottom:435.150000px;}
.yfc{bottom:435.525000px;}
.y162{bottom:437.775000px;}
.y15f{bottom:442.500000px;}
.y18{bottom:447.150000px;}
.y154{bottom:447.375000px;}
.y14a{bottom:447.750000px;}
.y40{bottom:448.275000px;}
.y119{bottom:448.650000px;}
.y7d{bottom:450.525000px;}
.ydf{bottom:450.900000px;}
.yca{bottom:456.150000px;}
.y62{bottom:456.525000px;}
.y146{bottom:459.525000px;}
.y158{bottom:464.625000px;}
.y118{bottom:472.650000px;}
.y3f{bottom:480.900000px;}
.y7c{bottom:481.275000px;}
.y17{bottom:481.650000px;}
.y18b{bottom:483.900000px;}
.y91{bottom:487.275000px;}
.y61{bottom:487.650000px;}
.yc9{bottom:490.275000px;}
.y117{bottom:496.275000px;}
.y150{bottom:496.500000px;}
.yfd{bottom:499.275000px;}
.y3e{bottom:501.525000px;}
.y7b{bottom:512.400000px;}
.y16{bottom:516.150000px;}
.y90{bottom:518.400000px;}
.y60{bottom:518.775000px;}
.y116{bottom:520.275000px;}
.y3d{bottom:522.150000px;}
.yc8{bottom:524.775000px;}
.y15a{bottom:527.625000px;}
.yd4{bottom:533.250000px;}
.yee{bottom:535.650000px;}
.y14e{bottom:535.875000px;}
.y3c{bottom:543.150000px;}
.y7a{bottom:543.525000px;}
.y115{bottom:544.275000px;}
.yf3{bottom:545.625000px;}
.y8f{bottom:549.525000px;}
.y5f{bottom:549.900000px;}
.y15{bottom:550.275000px;}
.yc7{bottom:559.275000px;}
.y145{bottom:563.820000px;}
.y114{bottom:567.945000px;}
.y14c{bottom:572.250000px;}
.y79{bottom:574.695000px;}
.y3b{bottom:575.820000px;}
.y1ae{bottom:578.445000px;}
.y5d{bottom:580.695000px;}
.yf7{bottom:584.625000px;}
.y14{bottom:584.820000px;}
.y189{bottom:587.070000px;}
.y5e{bottom:587.445000px;}
.yc6{bottom:593.445000px;}
.y15e{bottom:594.375000px;}
.y3a{bottom:596.445000px;}
.y113{bottom:598.320000px;}
.yf1{bottom:599.250000px;}
.ye6{bottom:602.070000px;}
.y78{bottom:605.820000px;}
.y8e{bottom:611.445000px;}
.y5c{bottom:611.820000px;}
.y1ad{bottom:612.570000px;}
.y173{bottom:613.320000px;}
.y39{bottom:617.070000px;}
.y13{bottom:618.945000px;}
.yeb{bottom:619.320000px;}
.ye5{bottom:620.820000px;}
.y16c{bottom:621.195000px;}
.yf5{bottom:624.000000px;}
.yc5{bottom:628.695000px;}
.y179{bottom:636.570000px;}
.y77{bottom:636.945000px;}
.y172{bottom:637.320000px;}
.y38{bottom:638.445000px;}
.y8d{bottom:642.570000px;}
.y5b{bottom:642.945000px;}
.ye4{bottom:644.445000px;}
.y10a{bottom:645.195000px;}
.yba{bottom:649.320000px;}
.y12{bottom:650.445000px;}
.y16b{bottom:655.695000px;}
.yf9{bottom:657.945000px;}
.y17f{bottom:659.445000px;}
.y1ac{bottom:660.195000px;}
.y171{bottom:660.945000px;}
.yc4{bottom:662.445000px;}
.y110{bottom:665.250000px;}
.y76{bottom:667.695000px;}
.y37{bottom:671.070000px;}
.y8c{bottom:673.695000px;}
.y5a{bottom:674.070000px;}
.ye3{bottom:675.195000px;}
.y133{bottom:675.945000px;}
.y109{bottom:679.695000px;}
.y11{bottom:684.570000px;}
.y17e{bottom:691.350000px;}
.y36{bottom:691.725000px;}
.yc3{bottom:695.475000px;}
.yb9{bottom:697.350000px;}
.y75{bottom:698.850000px;}
.y16a{bottom:703.350000px;}
.y108{bottom:703.725000px;}
.y59{bottom:704.850000px;}
.y1ab{bottom:708.225000px;}
.y170{bottom:708.975000px;}
.y8b{bottom:710.850000px;}
.y17d{bottom:711.975000px;}
.y35{bottom:712.350000px;}
.yac{bottom:718.875000px;}
.yc2{bottom:719.475000px;}
.y10{bottom:722.475000px;}
.y169{bottom:726.975000px;}
.y107{bottom:727.350000px;}
.yb8{bottom:728.100000px;}
.y74{bottom:729.975000px;}
.y1aa{bottom:731.850000px;}
.y16f{bottom:732.600000px;}
.yde{bottom:733.725000px;}
.y58{bottom:735.975000px;}
.y148{bottom:739.725000px;}
.y19f{bottom:742.725000px;}
.yc1{bottom:743.475000px;}
.y19d{bottom:744.975000px;}
.y34{bottom:745.350000px;}
.yb6{bottom:746.625000px;}
.y18f{bottom:749.100000px;}
.y106{bottom:751.350000px;}
.y17c{bottom:753.225000px;}
.yf{bottom:753.600000px;}
.y1a9{bottom:755.850000px;}
.y193{bottom:756.225000px;}
.y16e{bottom:756.600000px;}
.y73{bottom:761.100000px;}
.y33{bottom:765.975000px;}
.y57{bottom:767.100000px;}
.ydd{bottom:767.850000px;}
.yc0{bottom:773.850000px;}
.y168{bottom:774.975000px;}
.y105{bottom:775.725000px;}
.ye{bottom:777.975000px;}
.y1a8{bottom:779.850000px;}
.y18e{bottom:783.225000px;}
.y32{bottom:786.600000px;}
.y16d{bottom:786.975000px;}
.y144{bottom:790.725000px;}
.y72{bottom:792.225000px;}
.y98{bottom:797.850000px;}
.y56{bottom:798.225000px;}
.y103{bottom:798.975000px;}
.y101{bottom:800.475000px;}
.yff{bottom:801.225000px;}
.ydc{bottom:802.350000px;}
.yfb{bottom:802.725000px;}
.y161{bottom:803.475000px;}
.y1a7{bottom:803.850000px;}
.y17b{bottom:804.600000px;}
.y166{bottom:805.725000px;}
.y192{bottom:812.850000px;}
.yd{bottom:815.850000px;}
.y18d{bottom:817.755000px;}
.y31{bottom:819.255000px;}
.y71{bottom:823.005000px;}
.ydb{bottom:826.380000px;}
.y8a{bottom:829.020000px;}
.y55{bottom:829.380000px;}
.y112{bottom:832.770000px;}
.y1a6{bottom:834.255000px;}
.y191{bottom:835.395000px;}
.y135{bottom:836.145000px;}
.y30{bottom:839.880000px;}
.yc{bottom:847.005000px;}
.y178{bottom:848.880000px;}
.yda{bottom:850.380000px;}
.y70{bottom:854.130000px;}
.y54{bottom:860.130000px;}
.y2f{bottom:860.880000px;}
.y190{bottom:866.130000px;}
.y97{bottom:866.880000px;}
.yb{bottom:871.005000px;}
.yd9{bottom:874.005000px;}
.y6f{bottom:886.005000px;}
.y53{bottom:891.255000px;}
.y2e{bottom:893.505000px;}
.ya{bottom:902.130000px;}
.yd8{bottom:904.755000px;}
.y141{bottom:910.005000px;}
.y121{bottom:911.505000px;}
.y2d{bottom:914.130000px;}
.y6e{bottom:919.380000px;}
.y52{bottom:922.380000px;}
.y9{bottom:933.255000px;}
.y2c{bottom:946.800000px;}
.y6d{bottom:951.300000px;}
.y96{bottom:953.175000px;}
.y51{bottom:953.550000px;}
.y176{bottom:955.050000px;}
.y8{bottom:964.425000px;}
.yaa{bottom:968.625000px;}
.y122{bottom:971.175000px;}
.y12b{bottom:973.800000px;}
.y142{bottom:975.675000px;}
.y12e{bottom:976.425000px;}
.y2b{bottom:979.425000px;}
.y6c{bottom:982.425000px;}
.y95{bottom:984.300000px;}
.y50{bottom:984.675000px;}
.y7{bottom:998.175000px;}
.y164{bottom:998.250000px;}
.y2a{bottom:1000.425000px;}
.yb4{bottom:1009.875000px;}
.y140{bottom:1012.800000px;}
.y6b{bottom:1014.300000px;}
.y4f{bottom:1015.425000px;}
.y6{bottom:1031.925000px;}
.y29{bottom:1033.050000px;}
.y4e{bottom:1046.550000px;}
.y28{bottom:1053.675000px;}
.y5{bottom:1067.925000px;}
.y174{bottom:1071.675000px;}
.y4d{bottom:1077.705000px;}
.y12d{bottom:1083.330000px;}
.y129{bottom:1083.705000px;}
.y127{bottom:1084.455000px;}
.y27{bottom:1086.330000px;}
.y130{bottom:1088.205000px;}
.y124{bottom:1089.330000px;}
.y4{bottom:1105.080000px;}
.y26{bottom:1106.955000px;}
.y4c{bottom:1108.830000px;}
.y11e{bottom:1123.830000px;}
.y13f{bottom:1125.330000px;}
.y3{bottom:1139.580000px;}
.y25{bottom:1139.955000px;}
.y89{bottom:1145.955000px;}
.h1d{height:11.625000px;}
.h2a{height:12.750000px;}
.h29{height:13.125000px;}
.h1e{height:13.485000px;}
.h3e{height:13.500000px;}
.h1c{height:13.875000px;}
.h3d{height:13.912500px;}
.h37{height:14.250000px;}
.h32{height:15.000000px;}
.h35{height:16.875000px;}
.h1a{height:17.250000px;}
.h28{height:18.000000px;}
.h1b{height:18.750000px;}
.h19{height:18.787500px;}
.h20{height:19.125000px;}
.h22{height:20.250000px;}
.h30{height:20.287500px;}
.h23{height:20.625000px;}
.h2c{height:20.662500px;}
.h34{height:21.375000px;}
.h3a{height:22.125000px;}
.h3b{height:22.875000px;}
.h3c{height:23.250000px;}
.h36{height:25.500000px;}
.h33{height:27.000000px;}
.h16{height:31.125000px;}
.h38{height:33.750000px;}
.he{height:33.867188px;}
.h18{height:34.945312px;}
.h17{height:34.968750px;}
.h6{height:39.867188px;}
.h2d{height:40.948242px;}
.h2b{height:43.710938px;}
.h2f{height:47.742188px;}
.h27{height:48.082031px;}
.hf{height:49.992188px;}
.h39{height:50.047852px;}
.h3{height:50.800781px;}
.h25{height:52.125000px;}
.h26{height:57.000000px;}
.hb{height:57.867188px;}
.h2e{height:58.875000px;}
.h4{height:59.267578px;}
.h9{height:59.343750px;}
.h1{height:59.800781px;}
.h21{height:61.435547px;}
.h24{height:63.000000px;}
.ha{height:63.622500px;}
.h8{height:63.682500px;}
.h2{height:65.645508px;}
.h5{height:66.867188px;}
.hc{height:66.987188px;}
.hd{height:69.767578px;}
.h31{height:70.125000px;}
.h7{height:71.613281px;}
.h11{height:82.500000px;}
.h15{height:84.000000px;}
.h10{height:84.375000px;}
.h13{height:86.625000px;}
.h12{height:92.250000px;}
.h14{height:96.750000px;}
.h1f{height:118.912500px;}
.h0{height:1263.000000px;}
.w1a{width:23.625000px;}
.w18{width:24.000000px;}
.w2a{width:31.500000px;}
.w2b{width:36.375000px;}
.w1d{width:37.125000px;}
.w13{width:37.162500px;}
.w1f{width:37.500000px;}
.w1c{width:37.537500px;}
.w17{width:39.000000px;}
.w19{width:40.162500px;}
.w2c{width:40.500000px;}
.w29{width:98.625000px;}
.we{width:102.750000px;}
.wa{width:103.200000px;}
.w15{width:108.787500px;}
.wb{width:111.037500px;}
.w12{width:111.750000px;}
.wc{width:119.250000px;}
.w10{width:121.162500px;}
.wf{width:124.125000px;}
.w24{width:124.875000px;}
.w8{width:126.375000px;}
.wd{width:127.500000px;}
.w2d{width:130.200000px;}
.w22{width:130.500000px;}
.w11{width:131.700000px;}
.w26{width:134.250000px;}
.w23{width:139.125000px;}
.w16{width:147.825000px;}
.w25{width:148.125000px;}
.w27{width:154.875000px;}
.w4{width:155.250000px;}
.w9{width:155.625000px;}
.w5{width:159.750000px;}
.w20{width:163.575000px;}
.w1b{width:165.450000px;}
.w28{width:168.750000px;}
.w1e{width:169.575000px;}
.w21{width:180.750000px;}
.w6{width:206.625000px;}
.w7{width:211.875000px;}
.w14{width:225.450000px;}
.w3{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:10.905000px;}
.x3a{left:15.750000px;}
.x2d{left:23.610000px;}
.x38{left:96.795000px;}
.x2{left:106.162487px;}
.x5{left:109.912487px;}
.x16{left:112.162487px;}
.x24{left:115.695000px;}
.x36{left:118.905000px;}
.x2f{left:120.825000px;}
.x40{left:123.787500px;}
.x34{left:127.162500px;}
.x33{left:128.287500px;}
.x45{left:130.575000px;}
.x4b{left:131.700000px;}
.x44{left:132.825000px;}
.x42{left:134.325000px;}
.x39{left:135.405000px;}
.x19{left:144.120000px;}
.x8{left:148.574987px;}
.x4c{left:149.700000px;}
.x1a{left:152.250000px;}
.x26{left:153.945000px;}
.x18{left:156.375000px;}
.x37{left:157.575000px;}
.x1c{left:159.375000px;}
.x1e{left:165.750000px;}
.x3e{left:169.200000px;}
.x43{left:186.450000px;}
.x1d{left:195.525000px;}
.x1f{left:200.775000px;}
.x2e{left:283.995000px;}
.x4a{left:285.000000px;}
.x23{left:290.625000px;}
.x25{left:302.625000px;}
.xb{left:315.524987px;}
.x12{left:316.649987px;}
.x15{left:322.274987px;}
.xf{left:336.149987px;}
.x13{left:338.024973px;}
.x14{left:344.024987px;}
.x3{left:354.524987px;}
.x6{left:375.149987px;}
.x7{left:377.774987px;}
.xc{left:399.944987px;}
.x20{left:432.194987px;}
.x4{left:434.819987px;}
.x1{left:436.694987px;}
.x3c{left:472.320000px;}
.x3f{left:478.695000px;}
.x35{left:489.225000px;}
.x3b{left:539.100000px;}
.x10{left:580.754973px;}
.x11{left:586.769987px;}
.x9{left:593.879973px;}
.xa{left:599.879987px;}
.xd{left:602.879973px;}
.xe{left:608.894987px;}
.x2c{left:617.520000px;}
.x2a{left:629.145000px;}
.x47{left:638.625000px;}
.x2b{left:640.769987px;}
.x48{left:643.500000px;}
.x49{left:644.625000px;}
.x4e{left:648.645000px;}
.x28{left:652.020000px;}
.x3d{left:666.300000px;}
.x30{left:667.875000px;}
.x41{left:764.219987px;}
.x32{left:765.329987px;}
.x31{left:769.079987px;}
.x22{left:786.719987px;}
.x27{left:801.719987px;}
.x4d{left:808.829987px;}
.x46{left:824.204987px;}
.x17{left:831.329987px;}
.x1b{left:840.374987px;}
.x21{left:869.249987px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v1{vertical-align:-5.333333pt;}
.v6{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.666667pt;}
.v5{vertical-align:5.333333pt;}
.v4{vertical-align:21.440000pt;}
.v2{vertical-align:24.000000pt;}
.ls30{letter-spacing:-1.429333pt;}
.ls20{letter-spacing:-1.354667pt;}
.ls28{letter-spacing:-1.333333pt;}
.ls2f{letter-spacing:-1.312000pt;}
.ls3c{letter-spacing:-1.056000pt;}
.lsf{letter-spacing:-0.874667pt;}
.ls6{letter-spacing:-0.458667pt;}
.ls15{letter-spacing:-0.437333pt;}
.ls16{letter-spacing:-0.416000pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls35{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.133333pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls31{letter-spacing:-0.101333pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls2d{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.069333pt;}
.ls4{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.277333pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls39{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.405333pt;}
.ls3{letter-spacing:0.416000pt;}
.ls17{letter-spacing:0.437333pt;}
.ls10{letter-spacing:0.458667pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls33{letter-spacing:0.517333pt;}
.ls18{letter-spacing:0.522667pt;}
.ls24{letter-spacing:0.565333pt;}
.ls1{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls1b{letter-spacing:0.618667pt;}
.ls22{letter-spacing:0.917333pt;}
.ls37{letter-spacing:1.237333pt;}
.lsa{letter-spacing:1.333333pt;}
.ls3b{letter-spacing:1.354667pt;}
.ls36{letter-spacing:1.376000pt;}
.ls13{letter-spacing:1.386667pt;}
.ls25{letter-spacing:1.792000pt;}
.ls9{letter-spacing:2.666667pt;}
.ls23{letter-spacing:2.826667pt;}
.ls3a{letter-spacing:2.869333pt;}
.ls12{letter-spacing:4.053333pt;}
.ls3e{letter-spacing:4.874667pt;}
.ls8{letter-spacing:5.333333pt;}
.ls27{letter-spacing:6.666667pt;}
.lsd{letter-spacing:8.202667pt;}
.ls1f{letter-spacing:9.333333pt;}
.lsc{letter-spacing:10.666667pt;}
.ls2c{letter-spacing:12.000000pt;}
.ls38{letter-spacing:14.666667pt;}
.ls29{letter-spacing:16.000000pt;}
.ls26{letter-spacing:31.456000pt;}
.ls3d{letter-spacing:34.826667pt;}
.ws2{word-spacing:-74.666667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws11{word-spacing:-42.666667pt;}
.ws14{word-spacing:-17.792000pt;}
.ws13{word-spacing:-17.333333pt;}
.ws9{word-spacing:-16.458667pt;}
.ws7{word-spacing:-16.416000pt;}
.ws1d{word-spacing:-16.384000pt;}
.ws0{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.978667pt;}
.ws12{word-spacing:-15.904000pt;}
.wse{word-spacing:-15.733333pt;}
.wsb{word-spacing:-15.584000pt;}
.wsa{word-spacing:-15.562667pt;}
.wsd{word-spacing:-15.541333pt;}
.ws8{word-spacing:-15.125333pt;}
.wsf{word-spacing:-14.666667pt;}
.ws10{word-spacing:-14.645333pt;}
.ws19{word-spacing:-14.506667pt;}
.ws18{word-spacing:-13.776000pt;}
.ws1b{word-spacing:-13.258667pt;}
.ws16{word-spacing:-13.157333pt;}
.ws17{word-spacing:-13.125333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.861333pt;}
.ws15{word-spacing:-11.402667pt;}
.ws1e{word-spacing:-10.805333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-7.413333pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-4.624000pt;}
._10{margin-left:-3.136000pt;}
._d{margin-left:-1.952000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.152000pt;}
._2{width:2.245333pt;}
._5{width:3.285333pt;}
._6{width:4.800000pt;}
._7{width:6.170667pt;}
._8{width:7.184000pt;}
._9{width:8.832000pt;}
._a{width:10.032000pt;}
._c{width:10.954667pt;}
._f{width:11.984000pt;}
._b{width:13.696000pt;}
._12{width:14.832000pt;}
._15{width:18.074667pt;}
._18{width:19.402667pt;}
._13{width:21.184000pt;}
._16{width:23.456000pt;}
._17{width:30.528000pt;}
._1b{width:31.541333pt;}
._1a{width:32.778667pt;}
._11{width:34.624000pt;}
._3{width:35.520000pt;}
._4{width:36.677333pt;}
._19{width:40.128000pt;}
._1c{width:97.466667pt;}
._1d{width:113.466667pt;}
._1e{width:281.674667pt;}
._e{width:752.400000pt;}
.fs8{font-size:26.666667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y126{bottom:-27.693333pt;}
.yd7{bottom:-5.893333pt;}
.yb7{bottom:-3.466667pt;}
.y128{bottom:-3.333333pt;}
.yab{bottom:-2.400000pt;}
.yad{bottom:-2.133333pt;}
.y125{bottom:-1.666667pt;}
.yd5{bottom:-0.200000pt;}
.y0{bottom:0.000000pt;}
.y14b{bottom:0.133333pt;}
.yf8{bottom:0.173333pt;}
.y12f{bottom:1.333333pt;}
.y12c{bottom:1.666667pt;}
.yf6{bottom:1.840000pt;}
.yfa{bottom:2.000000pt;}
.y19c{bottom:2.006667pt;}
.y15b{bottom:2.133333pt;}
.y14d{bottom:2.173333pt;}
.y196{bottom:2.333333pt;}
.y19a{bottom:2.373333pt;}
.yed{bottom:3.666667pt;}
.y11f{bottom:4.000000pt;}
.y111{bottom:4.173333pt;}
.y120{bottom:4.333333pt;}
.y153{bottom:4.440000pt;}
.yf2{bottom:4.840000pt;}
.y132{bottom:5.333333pt;}
.y147{bottom:5.360000pt;}
.y134{bottom:5.666667pt;}
.y175{bottom:5.693333pt;}
.y12a{bottom:6.000000pt;}
.y157{bottom:6.133333pt;}
.y15d{bottom:6.440000pt;}
.yf4{bottom:6.466667pt;}
.yb5{bottom:6.600000pt;}
.yf0{bottom:6.706667pt;}
.y160{bottom:6.800000pt;}
.y177{bottom:7.000000pt;}
.y18a{bottom:7.666667pt;}
.y159{bottom:7.800000pt;}
.y123{bottom:8.000000pt;}
.y151{bottom:8.466667pt;}
.yfe{bottom:12.000000pt;}
.y131{bottom:12.333333pt;}
.y155{bottom:12.466667pt;}
.y14f{bottom:13.466667pt;}
.y165{bottom:15.933333pt;}
.yec{bottom:17.000000pt;}
.y143{bottom:28.333333pt;}
.y2{bottom:51.033333pt;}
.y1{bottom:68.366667pt;}
.y1b1{bottom:100.700000pt;}
.y24{bottom:101.033333pt;}
.y188{bottom:112.033333pt;}
.y13e{bottom:113.366667pt;}
.y23{bottom:119.366667pt;}
.y194{bottom:120.700000pt;}
.y1b0{bottom:122.366667pt;}
.y86{bottom:124.366667pt;}
.y4b{bottom:127.700000pt;}
.ya4{bottom:128.700000pt;}
.y88{bottom:129.700000pt;}
.y19b{bottom:132.366667pt;}
.yea{bottom:132.700000pt;}
.y13d{bottom:134.693333pt;}
.y10f{bottom:137.040000pt;}
.yd3{bottom:140.373333pt;}
.y1af{bottom:143.373333pt;}
.y187{bottom:144.026667pt;}
.yef{bottom:147.706667pt;}
.y22{bottom:148.373333pt;}
.y1a5{bottom:150.360000pt;}
.y85{bottom:152.040000pt;}
.y199{bottom:154.360000pt;}
.y13c{bottom:155.733333pt;}
.ya3{bottom:156.400000pt;}
.y6a{bottom:157.400000pt;}
.y4a{bottom:157.733333pt;}
.yd2{bottom:161.400000pt;}
.y186{bottom:162.400000pt;}
.ye9{bottom:165.066667pt;}
.y10e{bottom:167.733333pt;}
.y1a4{bottom:171.733333pt;}
.y21{bottom:177.400000pt;}
.y198{bottom:178.733333pt;}
.y84{bottom:179.400000pt;}
.y185{bottom:181.066667pt;}
.ya9{bottom:182.400000pt;}
.ye8{bottom:183.400000pt;}
.ya2{bottom:183.733333pt;}
.y69{bottom:185.066667pt;}
.y49{bottom:187.066667pt;}
.y10d{bottom:189.066667pt;}
.ya1{bottom:189.733333pt;}
.yd1{bottom:191.733333pt;}
.y1a3{bottom:192.733333pt;}
.y20{bottom:195.733333pt;}
.yb3{bottom:196.066667pt;}
.y13b{bottom:198.066667pt;}
.y184{bottom:199.400000pt;}
.y197{bottom:200.733333pt;}
.y83{bottom:207.066667pt;}
.ye7{bottom:210.400000pt;}
.ya0{bottom:211.400000pt;}
.y68{bottom:212.733333pt;}
.ya8{bottom:213.066667pt;}
.y1a2{bottom:214.066667pt;}
.y48{bottom:216.400000pt;}
.y9f{bottom:217.400000pt;}
.y183{bottom:217.733333pt;}
.y13a{bottom:219.733333pt;}
.yd0{bottom:222.400000pt;}
.y1f{bottom:225.066667pt;}
.yb2{bottom:226.733333pt;}
.y10c{bottom:228.733333pt;}
.y195{bottom:229.400000pt;}
.ya7{bottom:234.400000pt;}
.y47{bottom:234.733333pt;}
.y1a1{bottom:235.400000pt;}
.y182{bottom:236.066667pt;}
.y9e{bottom:239.066667pt;}
.y67{bottom:240.066667pt;}
.y139{bottom:240.400000pt;}
.y17a{bottom:241.400000pt;}
.y1e{bottom:243.400000pt;}
.y9d{bottom:245.066667pt;}
.yb1{bottom:248.066667pt;}
.ycf{bottom:252.733333pt;}
.y181{bottom:254.733333pt;}
.ya6{bottom:255.733333pt;}
.y10b{bottom:256.066667pt;}
.ybf{bottom:256.733333pt;}
.y138{bottom:261.733333pt;}
.y82{bottom:262.400000pt;}
.y46{bottom:263.733333pt;}
.y11d{bottom:264.733333pt;}
.y9c{bottom:266.733333pt;}
.y66{bottom:267.733333pt;}
.yb0{bottom:269.440000pt;}
.y1d{bottom:272.440000pt;}
.ybe{bottom:278.106667pt;}
.y1a0{bottom:281.773333pt;}
.y45{bottom:282.093333pt;}
.ya5{bottom:282.760000pt;}
.y180{bottom:283.106667pt;}
.yce{bottom:283.440000pt;}
.y19e{bottom:283.773333pt;}
.y81{bottom:290.106667pt;}
.yaf{bottom:290.440000pt;}
.y1c{bottom:290.773333pt;}
.y9b{bottom:294.426667pt;}
.y94{bottom:295.106667pt;}
.y65{bottom:295.440000pt;}
.ybd{bottom:299.440000pt;}
.y44{bottom:300.426667pt;}
.y137{bottom:304.440000pt;}
.yd6{bottom:305.333333pt;}
.ycd{bottom:313.773333pt;}
.y80{bottom:317.440000pt;}
.yae{bottom:317.773333pt;}
.y1b{bottom:319.773333pt;}
.ybc{bottom:320.440000pt;}
.y9a{bottom:321.760000pt;}
.y93{bottom:322.773333pt;}
.y64{bottom:323.106667pt;}
.y11c{bottom:325.773333pt;}
.y43{bottom:330.760000pt;}
.ye2{bottom:331.106667pt;}
.y18c{bottom:336.106667pt;}
.y1a{bottom:338.440000pt;}
.y99{bottom:340.773333pt;}
.y136{bottom:342.093333pt;}
.ycc{bottom:344.440000pt;}
.y7f{bottom:345.093333pt;}
.ybb{bottom:347.773333pt;}
.y149{bottom:348.760000pt;}
.y92{bottom:350.440000pt;}
.y42{bottom:350.773333pt;}
.ye1{bottom:352.440000pt;}
.y167{bottom:352.773333pt;}
.y11b{bottom:356.106667pt;}
.y152{bottom:366.000000pt;}
.y19{bottom:367.440000pt;}
.y7e{bottom:372.773333pt;}
.ye0{bottom:373.773333pt;}
.y15c{bottom:374.333333pt;}
.ycb{bottom:374.773333pt;}
.y11a{bottom:377.773333pt;}
.y87{bottom:378.106667pt;}
.y41{bottom:380.106667pt;}
.y102{bottom:381.106667pt;}
.y63{bottom:384.133333pt;}
.y156{bottom:384.666667pt;}
.y104{bottom:384.800000pt;}
.y163{bottom:385.133333pt;}
.y100{bottom:386.800000pt;}
.yfc{bottom:387.133333pt;}
.y162{bottom:389.133333pt;}
.y15f{bottom:393.333333pt;}
.y18{bottom:397.466667pt;}
.y154{bottom:397.666667pt;}
.y14a{bottom:398.000000pt;}
.y40{bottom:398.466667pt;}
.y119{bottom:398.800000pt;}
.y7d{bottom:400.466667pt;}
.ydf{bottom:400.800000pt;}
.yca{bottom:405.466667pt;}
.y62{bottom:405.800000pt;}
.y146{bottom:408.466667pt;}
.y158{bottom:413.000000pt;}
.y118{bottom:420.133333pt;}
.y3f{bottom:427.466667pt;}
.y7c{bottom:427.800000pt;}
.y17{bottom:428.133333pt;}
.y18b{bottom:430.133333pt;}
.y91{bottom:433.133333pt;}
.y61{bottom:433.466667pt;}
.yc9{bottom:435.800000pt;}
.y117{bottom:441.133333pt;}
.y150{bottom:441.333333pt;}
.yfd{bottom:443.800000pt;}
.y3e{bottom:445.800000pt;}
.y7b{bottom:455.466667pt;}
.y16{bottom:458.800000pt;}
.y90{bottom:460.800000pt;}
.y60{bottom:461.133333pt;}
.y116{bottom:462.466667pt;}
.y3d{bottom:464.133333pt;}
.yc8{bottom:466.466667pt;}
.y15a{bottom:469.000000pt;}
.yd4{bottom:474.000000pt;}
.yee{bottom:476.133333pt;}
.y14e{bottom:476.333333pt;}
.y3c{bottom:482.800000pt;}
.y7a{bottom:483.133333pt;}
.y115{bottom:483.800000pt;}
.yf3{bottom:485.000000pt;}
.y8f{bottom:488.466667pt;}
.y5f{bottom:488.800000pt;}
.y15{bottom:489.133333pt;}
.yc7{bottom:497.133333pt;}
.y145{bottom:501.173333pt;}
.y114{bottom:504.840000pt;}
.y14c{bottom:508.666667pt;}
.y79{bottom:510.840000pt;}
.y3b{bottom:511.840000pt;}
.y1ae{bottom:514.173333pt;}
.y5d{bottom:516.173333pt;}
.yf7{bottom:519.666667pt;}
.y14{bottom:519.840000pt;}
.y189{bottom:521.840000pt;}
.y5e{bottom:522.173333pt;}
.yc6{bottom:527.506667pt;}
.y15e{bottom:528.333333pt;}
.y3a{bottom:530.173333pt;}
.y113{bottom:531.840000pt;}
.yf1{bottom:532.666667pt;}
.ye6{bottom:535.173333pt;}
.y78{bottom:538.506667pt;}
.y8e{bottom:543.506667pt;}
.y5c{bottom:543.840000pt;}
.y1ad{bottom:544.506667pt;}
.y173{bottom:545.173333pt;}
.y39{bottom:548.506667pt;}
.y13{bottom:550.173333pt;}
.yeb{bottom:550.506667pt;}
.ye5{bottom:551.840000pt;}
.y16c{bottom:552.173333pt;}
.yf5{bottom:554.666667pt;}
.yc5{bottom:558.840000pt;}
.y179{bottom:565.840000pt;}
.y77{bottom:566.173333pt;}
.y172{bottom:566.506667pt;}
.y38{bottom:567.506667pt;}
.y8d{bottom:571.173333pt;}
.y5b{bottom:571.506667pt;}
.ye4{bottom:572.840000pt;}
.y10a{bottom:573.506667pt;}
.yba{bottom:577.173333pt;}
.y12{bottom:578.173333pt;}
.y16b{bottom:582.840000pt;}
.yf9{bottom:584.840000pt;}
.y17f{bottom:586.173333pt;}
.y1ac{bottom:586.840000pt;}
.y171{bottom:587.506667pt;}
.yc4{bottom:588.840000pt;}
.y110{bottom:591.333333pt;}
.y76{bottom:593.506667pt;}
.y37{bottom:596.506667pt;}
.y8c{bottom:598.840000pt;}
.y5a{bottom:599.173333pt;}
.ye3{bottom:600.173333pt;}
.y133{bottom:600.840000pt;}
.y109{bottom:604.173333pt;}
.y11{bottom:608.506667pt;}
.y17e{bottom:614.533333pt;}
.y36{bottom:614.866667pt;}
.yc3{bottom:618.200000pt;}
.yb9{bottom:619.866667pt;}
.y75{bottom:621.200000pt;}
.y16a{bottom:625.200000pt;}
.y108{bottom:625.533333pt;}
.y59{bottom:626.533333pt;}
.y1ab{bottom:629.533333pt;}
.y170{bottom:630.200000pt;}
.y8b{bottom:631.866667pt;}
.y17d{bottom:632.866667pt;}
.y35{bottom:633.200000pt;}
.yac{bottom:639.000000pt;}
.yc2{bottom:639.533333pt;}
.y10{bottom:642.200000pt;}
.y169{bottom:646.200000pt;}
.y107{bottom:646.533333pt;}
.yb8{bottom:647.200000pt;}
.y74{bottom:648.866667pt;}
.y1aa{bottom:650.533333pt;}
.y16f{bottom:651.200000pt;}
.yde{bottom:652.200000pt;}
.y58{bottom:654.200000pt;}
.y148{bottom:657.533333pt;}
.y19f{bottom:660.200000pt;}
.yc1{bottom:660.866667pt;}
.y19d{bottom:662.200000pt;}
.y34{bottom:662.533333pt;}
.yb6{bottom:663.666667pt;}
.y18f{bottom:665.866667pt;}
.y106{bottom:667.866667pt;}
.y17c{bottom:669.533333pt;}
.yf{bottom:669.866667pt;}
.y1a9{bottom:671.866667pt;}
.y193{bottom:672.200000pt;}
.y16e{bottom:672.533333pt;}
.y73{bottom:676.533333pt;}
.y33{bottom:680.866667pt;}
.y57{bottom:681.866667pt;}
.ydd{bottom:682.533333pt;}
.yc0{bottom:687.866667pt;}
.y168{bottom:688.866667pt;}
.y105{bottom:689.533333pt;}
.ye{bottom:691.533333pt;}
.y1a8{bottom:693.200000pt;}
.y18e{bottom:696.200000pt;}
.y32{bottom:699.200000pt;}
.y16d{bottom:699.533333pt;}
.y144{bottom:702.866667pt;}
.y72{bottom:704.200000pt;}
.y98{bottom:709.200000pt;}
.y56{bottom:709.533333pt;}
.y103{bottom:710.200000pt;}
.y101{bottom:711.533333pt;}
.yff{bottom:712.200000pt;}
.ydc{bottom:713.200000pt;}
.yfb{bottom:713.533333pt;}
.y161{bottom:714.200000pt;}
.y1a7{bottom:714.533333pt;}
.y17b{bottom:715.200000pt;}
.y166{bottom:716.200000pt;}
.y192{bottom:722.533333pt;}
.yd{bottom:725.200000pt;}
.y18d{bottom:726.893333pt;}
.y31{bottom:728.226667pt;}
.y71{bottom:731.560000pt;}
.ydb{bottom:734.560000pt;}
.y8a{bottom:736.906667pt;}
.y55{bottom:737.226667pt;}
.y112{bottom:740.240000pt;}
.y1a6{bottom:741.560000pt;}
.y191{bottom:742.573333pt;}
.y135{bottom:743.240000pt;}
.y30{bottom:746.560000pt;}
.yc{bottom:752.893333pt;}
.y178{bottom:754.560000pt;}
.yda{bottom:755.893333pt;}
.y70{bottom:759.226667pt;}
.y54{bottom:764.560000pt;}
.y2f{bottom:765.226667pt;}
.y190{bottom:769.893333pt;}
.y97{bottom:770.560000pt;}
.yb{bottom:774.226667pt;}
.yd9{bottom:776.893333pt;}
.y6f{bottom:787.560000pt;}
.y53{bottom:792.226667pt;}
.y2e{bottom:794.226667pt;}
.ya{bottom:801.893333pt;}
.yd8{bottom:804.226667pt;}
.y141{bottom:808.893333pt;}
.y121{bottom:810.226667pt;}
.y2d{bottom:812.560000pt;}
.y6e{bottom:817.226667pt;}
.y52{bottom:819.893333pt;}
.y9{bottom:829.560000pt;}
.y2c{bottom:841.600000pt;}
.y6d{bottom:845.600000pt;}
.y96{bottom:847.266667pt;}
.y51{bottom:847.600000pt;}
.y176{bottom:848.933333pt;}
.y8{bottom:857.266667pt;}
.yaa{bottom:861.000000pt;}
.y122{bottom:863.266667pt;}
.y12b{bottom:865.600000pt;}
.y142{bottom:867.266667pt;}
.y12e{bottom:867.933333pt;}
.y2b{bottom:870.600000pt;}
.y6c{bottom:873.266667pt;}
.y95{bottom:874.933333pt;}
.y50{bottom:875.266667pt;}
.y7{bottom:887.266667pt;}
.y164{bottom:887.333333pt;}
.y2a{bottom:889.266667pt;}
.yb4{bottom:897.666667pt;}
.y140{bottom:900.266667pt;}
.y6b{bottom:901.600000pt;}
.y4f{bottom:902.600000pt;}
.y6{bottom:917.266667pt;}
.y29{bottom:918.266667pt;}
.y4e{bottom:930.266667pt;}
.y28{bottom:936.600000pt;}
.y5{bottom:949.266667pt;}
.y174{bottom:952.600000pt;}
.y4d{bottom:957.960000pt;}
.y12d{bottom:962.960000pt;}
.y129{bottom:963.293333pt;}
.y127{bottom:963.960000pt;}
.y27{bottom:965.626667pt;}
.y130{bottom:967.293333pt;}
.y124{bottom:968.293333pt;}
.y4{bottom:982.293333pt;}
.y26{bottom:983.960000pt;}
.y4c{bottom:985.626667pt;}
.y11e{bottom:998.960000pt;}
.y13f{bottom:1000.293333pt;}
.y3{bottom:1012.960000pt;}
.y25{bottom:1013.293333pt;}
.y89{bottom:1018.626667pt;}
.h1d{height:10.333333pt;}
.h2a{height:11.333333pt;}
.h29{height:11.666667pt;}
.h1e{height:11.986667pt;}
.h3e{height:12.000000pt;}
.h1c{height:12.333333pt;}
.h3d{height:12.366667pt;}
.h37{height:12.666667pt;}
.h32{height:13.333333pt;}
.h35{height:15.000000pt;}
.h1a{height:15.333333pt;}
.h28{height:16.000000pt;}
.h1b{height:16.666667pt;}
.h19{height:16.700000pt;}
.h20{height:17.000000pt;}
.h22{height:18.000000pt;}
.h30{height:18.033333pt;}
.h23{height:18.333333pt;}
.h2c{height:18.366667pt;}
.h34{height:19.000000pt;}
.h3a{height:19.666667pt;}
.h3b{height:20.333333pt;}
.h3c{height:20.666667pt;}
.h36{height:22.666667pt;}
.h33{height:24.000000pt;}
.h16{height:27.666667pt;}
.h38{height:30.000000pt;}
.he{height:30.104167pt;}
.h18{height:31.062500pt;}
.h17{height:31.083333pt;}
.h6{height:35.437500pt;}
.h2d{height:36.398438pt;}
.h2b{height:38.854167pt;}
.h2f{height:42.437500pt;}
.h27{height:42.739583pt;}
.hf{height:44.437500pt;}
.h39{height:44.486979pt;}
.h3{height:45.156250pt;}
.h25{height:46.333333pt;}
.h26{height:50.666667pt;}
.hb{height:51.437500pt;}
.h2e{height:52.333333pt;}
.h4{height:52.682292pt;}
.h9{height:52.750000pt;}
.h1{height:53.156250pt;}
.h21{height:54.609375pt;}
.h24{height:56.000000pt;}
.ha{height:56.553333pt;}
.h8{height:56.606667pt;}
.h2{height:58.351562pt;}
.h5{height:59.437500pt;}
.hc{height:59.544167pt;}
.hd{height:62.015625pt;}
.h31{height:62.333333pt;}
.h7{height:63.656250pt;}
.h11{height:73.333333pt;}
.h15{height:74.666667pt;}
.h10{height:75.000000pt;}
.h13{height:77.000000pt;}
.h12{height:82.000000pt;}
.h14{height:86.000000pt;}
.h1f{height:105.700000pt;}
.h0{height:1122.666667pt;}
.w1a{width:21.000000pt;}
.w18{width:21.333333pt;}
.w2a{width:28.000000pt;}
.w2b{width:32.333333pt;}
.w1d{width:33.000000pt;}
.w13{width:33.033333pt;}
.w1f{width:33.333333pt;}
.w1c{width:33.366667pt;}
.w17{width:34.666667pt;}
.w19{width:35.700000pt;}
.w2c{width:36.000000pt;}
.w29{width:87.666667pt;}
.we{width:91.333333pt;}
.wa{width:91.733333pt;}
.w15{width:96.700000pt;}
.wb{width:98.700000pt;}
.w12{width:99.333333pt;}
.wc{width:106.000000pt;}
.w10{width:107.700000pt;}
.wf{width:110.333333pt;}
.w24{width:111.000000pt;}
.w8{width:112.333333pt;}
.wd{width:113.333333pt;}
.w2d{width:115.733333pt;}
.w22{width:116.000000pt;}
.w11{width:117.066667pt;}
.w26{width:119.333333pt;}
.w23{width:123.666667pt;}
.w16{width:131.400000pt;}
.w25{width:131.666667pt;}
.w27{width:137.666667pt;}
.w4{width:138.000000pt;}
.w9{width:138.333333pt;}
.w5{width:142.000000pt;}
.w20{width:145.400000pt;}
.w1b{width:147.066667pt;}
.w28{width:150.000000pt;}
.w1e{width:150.733333pt;}
.w21{width:160.666667pt;}
.w6{width:183.666667pt;}
.w7{width:188.333333pt;}
.w14{width:200.400000pt;}
.w3{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:9.693333pt;}
.x3a{left:14.000000pt;}
.x2d{left:20.986667pt;}
.x38{left:86.040000pt;}
.x2{left:94.366655pt;}
.x5{left:97.699988pt;}
.x16{left:99.699988pt;}
.x24{left:102.840000pt;}
.x36{left:105.693333pt;}
.x2f{left:107.400000pt;}
.x40{left:110.033333pt;}
.x34{left:113.033333pt;}
.x33{left:114.033333pt;}
.x45{left:116.066667pt;}
.x4b{left:117.066667pt;}
.x44{left:118.066667pt;}
.x42{left:119.400000pt;}
.x39{left:120.360000pt;}
.x19{left:128.106667pt;}
.x8{left:132.066655pt;}
.x4c{left:133.066667pt;}
.x1a{left:135.333333pt;}
.x26{left:136.840000pt;}
.x18{left:139.000000pt;}
.x37{left:140.066667pt;}
.x1c{left:141.666667pt;}
.x1e{left:147.333333pt;}
.x3e{left:150.400000pt;}
.x43{left:165.733333pt;}
.x1d{left:173.800000pt;}
.x1f{left:178.466667pt;}
.x2e{left:252.440000pt;}
.x4a{left:253.333333pt;}
.x23{left:258.333333pt;}
.x25{left:269.000000pt;}
.xb{left:280.466655pt;}
.x12{left:281.466655pt;}
.x15{left:286.466655pt;}
.xf{left:298.799988pt;}
.x13{left:300.466643pt;}
.x14{left:305.799988pt;}
.x3{left:315.133322pt;}
.x6{left:333.466655pt;}
.x7{left:335.799988pt;}
.xc{left:355.506655pt;}
.x20{left:384.173322pt;}
.x4{left:386.506655pt;}
.x1{left:388.173322pt;}
.x3c{left:419.840000pt;}
.x3f{left:425.506667pt;}
.x35{left:434.866667pt;}
.x3b{left:479.200000pt;}
.x10{left:516.226643pt;}
.x11{left:521.573322pt;}
.x9{left:527.893310pt;}
.xa{left:533.226655pt;}
.xd{left:535.893310pt;}
.xe{left:541.239988pt;}
.x2c{left:548.906667pt;}
.x2a{left:559.240000pt;}
.x47{left:567.666667pt;}
.x2b{left:569.573322pt;}
.x48{left:572.000000pt;}
.x49{left:573.000000pt;}
.x4e{left:576.573333pt;}
.x28{left:579.573333pt;}
.x3d{left:592.266667pt;}
.x30{left:593.666667pt;}
.x41{left:679.306655pt;}
.x32{left:680.293322pt;}
.x31{left:683.626655pt;}
.x22{left:699.306655pt;}
.x27{left:712.639988pt;}
.x4d{left:718.959988pt;}
.x46{left:732.626655pt;}
.x17{left:738.959988pt;}
.x1b{left:746.999988pt;}
.x21{left:772.666655pt;}
}




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