
    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_982523e31d2605500b45ed06.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_ee10bf437990e104284b9b94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_222d0efc5dc74aa9130f48dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_bf0de878ad55efcd7153732a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862400;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_ae477254bc425334b389998c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.110000;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_55f1bf93b589ce128d883cd5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.748000;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_fc4780eeb5e630b3ac7f859d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.833000;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_0049252aa8213fa3e43b1c5b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.730000;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_c1619d74aaae52891a19709d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110000;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_9dd096b6acada22af311d431.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862400;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_7059a420bccb6267b8046e17.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.110000;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_6c0aaac2d7952984c6ba5406.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.862400;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-66.480000px;}
.v3{vertical-align:-21.187800px;}
.v4{vertical-align:-17.250000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.250000px;}
.v1{vertical-align:19.125000px;}
.v2{vertical-align:21.143400px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.012000px;}
.ls1b{letter-spacing:0.016800px;}
.ls12{letter-spacing:0.034800px;}
.ls13{letter-spacing:0.047400px;}
.ls1a{letter-spacing:0.054600px;}
.ls2{letter-spacing:0.597000px;}
.ls17{letter-spacing:8.262000px;}
.ls16{letter-spacing:11.740200px;}
.lsf{letter-spacing:13.024200px;}
.ls14{letter-spacing:13.535700px;}
.ls3{letter-spacing:13.680000px;}
.ls15{letter-spacing:13.806000px;}
.lsc{letter-spacing:14.229600px;}
.ls6{letter-spacing:14.671800px;}
.ls19{letter-spacing:14.842500px;}
.ls5{letter-spacing:14.850000px;}
.lsb{letter-spacing:14.976000px;}
.lsa{letter-spacing:16.494600px;}
.ls9{letter-spacing:16.495200px;}
.lse{letter-spacing:16.565400px;}
.ls11{letter-spacing:16.648200px;}
.ls7{letter-spacing:17.104200px;}
.ls8{letter-spacing:17.569800px;}
.lsd{letter-spacing:18.484200px;}
.ls1{letter-spacing:18.540000px;}
.ls10{letter-spacing:21.717000px;}
.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;}
}
.ws45{word-spacing:-21.762000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.500000px;}
.ws7{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.375000px;}
.ws11{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.250000px;}
.ws26{word-spacing:-10.125000px;}
.ws12{word-spacing:-9.000000px;}
.ws18{word-spacing:-8.250000px;}
.ws4c{word-spacing:-2.568450px;}
.ws22{word-spacing:-2.492700px;}
.ws35{word-spacing:-1.815000px;}
.ws3a{word-spacing:-1.095600px;}
.wsb{word-spacing:-1.002000px;}
.ws29{word-spacing:-0.462000px;}
.ws3e{word-spacing:-0.432000px;}
.ws4{word-spacing:-0.420000px;}
.ws1c{word-spacing:-0.336600px;}
.ws3b{word-spacing:-0.330000px;}
.ws16{word-spacing:-0.132000px;}
.wsa{word-spacing:-0.060000px;}
.ws10{word-spacing:-0.048000px;}
.ws14{word-spacing:-0.012000px;}
.ws13{word-spacing:0.000000px;}
.ws41{word-spacing:0.066000px;}
.ws40{word-spacing:0.072600px;}
.ws1d{word-spacing:0.234000px;}
.ws2f{word-spacing:0.257400px;}
.ws2c{word-spacing:0.312000px;}
.ws30{word-spacing:0.345600px;}
.ws1f{word-spacing:0.594000px;}
.ws39{word-spacing:0.599400px;}
.ws21{word-spacing:0.627000px;}
.ws1e{word-spacing:0.900000px;}
.ws27{word-spacing:0.983400px;}
.ws23{word-spacing:1.056000px;}
.ws46{word-spacing:1.057200px;}
.ws17{word-spacing:1.122000px;}
.wsc{word-spacing:1.140000px;}
.ws4a{word-spacing:1.160400px;}
.ws52{word-spacing:1.290600px;}
.ws4f{word-spacing:1.302450px;}
.ws53{word-spacing:1.317600px;}
.ws1a{word-spacing:1.350000px;}
.ws2b{word-spacing:1.379400px;}
.ws1b{word-spacing:1.674000px;}
.wsf{word-spacing:1.768500px;}
.ws15{word-spacing:1.794000px;}
.ws4d{word-spacing:1.797300px;}
.ws38{word-spacing:1.815000px;}
.ws31{word-spacing:1.894200px;}
.ws3f{word-spacing:2.158200px;}
.ws24{word-spacing:2.192400px;}
.ws49{word-spacing:2.309700px;}
.ws20{word-spacing:2.442000px;}
.wse{word-spacing:2.616000px;}
.ws25{word-spacing:2.626800px;}
.ws3c{word-spacing:2.897400px;}
.ws44{word-spacing:3.234600px;}
.ws6{word-spacing:3.360000px;}
.ws36{word-spacing:3.511200px;}
.ws47{word-spacing:3.925800px;}
.ws34{word-spacing:4.019400px;}
.ws32{word-spacing:4.158000px;}
.ws33{word-spacing:4.187100px;}
.ws2e{word-spacing:4.290000px;}
.ws51{word-spacing:4.701600px;}
.ws50{word-spacing:4.708650px;}
.ws48{word-spacing:4.716000px;}
.ws43{word-spacing:4.989000px;}
.ws2d{word-spacing:5.082000px;}
.ws37{word-spacing:5.860800px;}
.wsd{word-spacing:6.212400px;}
.ws19{word-spacing:6.270000px;}
.ws3d{word-spacing:6.510000px;}
.ws42{word-spacing:6.677700px;}
.ws8{word-spacing:7.326000px;}
.ws28{word-spacing:7.490250px;}
.ws2a{word-spacing:7.719600px;}
.ws4e{word-spacing:7.804800px;}
.ws5{word-spacing:8.411400px;}
.ws4b{word-spacing:14.094000px;}
._c{margin-left:-15.984000px;}
._17{margin-left:-10.395924px;}
._10{margin-left:-9.017280px;}
._f{margin-left:-7.253400px;}
._a{margin-left:-5.391480px;}
._e{margin-left:-4.248168px;}
._4{margin-left:-3.213744px;}
._2{margin-left:-1.238400px;}
._0{width:1.776024px;}
._1{width:2.793552px;}
._3{width:4.442448px;}
._7{width:5.475312px;}
._d{width:7.209888px;}
._12{width:8.616936px;}
._11{width:10.403400px;}
._18{width:11.705400px;}
._14{width:13.124376px;}
._15{width:14.417088px;}
._5{width:16.281672px;}
._9{width:18.382680px;}
._6{width:19.418760px;}
._8{width:22.341144px;}
._13{width:24.362832px;}
._b{width:43.018896px;}
._16{width:609.768048px;}
.fc1{color:rgb(0,34,163);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.000000px;}
.fs6{font-size:30.000000px;}
.fs9{font-size:33.000000px;}
.fs8{font-size:36.000000px;}
.fsc{font-size:40.500000px;}
.fs5{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1ea{bottom:105.295500px;}
.y1c4{bottom:105.674550px;}
.y9e{bottom:105.732450px;}
.y154{bottom:106.069200px;}
.y26{bottom:113.378400px;}
.y19e{bottom:113.580900px;}
.y13c{bottom:113.730900px;}
.yed{bottom:113.869050px;}
.y179{bottom:114.297900px;}
.y73{bottom:114.557400px;}
.yc9{bottom:114.673950px;}
.y115{bottom:114.799500px;}
.y4c{bottom:118.867800px;}
.y1e9{bottom:121.985550px;}
.y1c3{bottom:123.791550px;}
.y9d{bottom:123.865950px;}
.y153{bottom:124.070700px;}
.y19d{bottom:128.579400px;}
.y13b{bottom:128.729400px;}
.yec{bottom:128.867550px;}
.y178{bottom:129.296400px;}
.y114{bottom:129.501000px;}
.yc8{bottom:129.672450px;}
.y4b{bottom:133.867800px;}
.y72{bottom:133.868400px;}
.y1c2{bottom:141.903600px;}
.y9c{bottom:141.999450px;}
.y1e8{bottom:143.356050px;}
.y19c{bottom:143.577900px;}
.y13a{bottom:143.727900px;}
.yeb{bottom:143.866050px;}
.y113{bottom:144.202500px;}
.y177{bottom:144.294900px;}
.yc7{bottom:144.670950px;}
.y152{bottom:155.584500px;}
.y19b{bottom:158.576400px;}
.y139{bottom:158.726400px;}
.y112{bottom:158.904000px;}
.y176{bottom:159.293400px;}
.yc6{bottom:159.669450px;}
.y1c1{bottom:160.020600px;}
.y1e7{bottom:160.046250px;}
.y9b{bottom:160.132950px;}
.y24{bottom:161.395500px;}
.yea{bottom:163.177050px;}
.y151{bottom:172.105200px;}
.y111{bottom:173.605500px;}
.y138{bottom:173.724900px;}
.y175{bottom:174.291900px;}
.yc5{bottom:174.667950px;}
.y19a{bottom:177.887400px;}
.y1c0{bottom:178.137600px;}
.y9a{bottom:178.266450px;}
.y23{bottom:179.562000px;}
.y1e6{bottom:181.416750px;}
.y110{bottom:188.307000px;}
.y150{bottom:188.605200px;}
.y174{bottom:189.290400px;}
.yc4{bottom:189.666450px;}
.y137{bottom:193.035900px;}
.y1bf{bottom:196.254600px;}
.y99{bottom:196.399950px;}
.y1e5{bottom:198.101250px;}
.y10f{bottom:203.008500px;}
.y173{bottom:204.288900px;}
.yc3{bottom:204.664950px;}
.y14f{bottom:205.105200px;}
.y22{bottom:211.606500px;}
.y1be{bottom:214.371600px;}
.y98{bottom:214.533450px;}
.y172{bottom:219.287400px;}
.y1e4{bottom:219.470100px;}
.yc2{bottom:219.663450px;}
.y14e{bottom:221.618850px;}
.y10e{bottom:222.022500px;}
.y49{bottom:230.713500px;}
.y1bd{bottom:232.478700px;}
.y97{bottom:232.666950px;}
.y71{bottom:233.924100px;}
.yc1{bottom:234.661950px;}
.y25{bottom:236.638500px;}
.y14d{bottom:238.118850px;}
.y171{bottom:238.598400px;}
.y1e3{bottom:240.839250px;}
.y48{bottom:248.248500px;}
.yc0{bottom:249.660450px;}
.y1bc{bottom:250.595700px;}
.y70{bottom:250.769100px;}
.y96{bottom:250.800450px;}
.y21{bottom:250.811400px;}
.y4a{bottom:251.638500px;}
.y14c{bottom:254.632500px;}
.ye9{bottom:262.023900px;}
.y1e2{bottom:262.209750px;}
.ybf{bottom:264.658950px;}
.y47{bottom:265.783500px;}
.y6f{bottom:267.614100px;}
.y1bb{bottom:268.712700px;}
.y95{bottom:268.933950px;}
.y14b{bottom:271.132500px;}
.y20{bottom:271.736400px;}
.y199{bottom:276.727650px;}
.y1e1{bottom:278.899800px;}
.ybe{bottom:279.657450px;}
.ye8{bottom:280.338900px;}
.y46{bottom:283.318500px;}
.y1ba{bottom:286.829700px;}
.y94{bottom:287.067450px;}
.y1f{bottom:288.401400px;}
.y136{bottom:291.837750px;}
.ybd{bottom:294.655950px;}
.y198{bottom:295.141650px;}
.ye7{bottom:298.653900px;}
.y1e0{bottom:300.270300px;}
.y45{bottom:300.853500px;}
.y14a{bottom:301.160250px;}
.y6e{bottom:301.269450px;}
.y1b9{bottom:304.946700px;}
.y1e{bottom:305.074500px;}
.y93{bottom:305.200950px;}
.ybc{bottom:309.654450px;}
.y135{bottom:309.855750px;}
.y197{bottom:313.555650px;}
.y10d{bottom:315.631350px;}
.ye6{bottom:316.968900px;}
.y149{bottom:317.660250px;}
.y44{bottom:318.388500px;}
.y6d{bottom:319.617450px;}
.y1df{bottom:321.639150px;}
.y1d{bottom:321.739500px;}
.y1b8{bottom:323.063700px;}
.y92{bottom:323.334450px;}
.ybb{bottom:324.652950px;}
.y134{bottom:327.873750px;}
.y196{bottom:331.969650px;}
.y10c{bottom:333.632850px;}
.ye5{bottom:335.283900px;}
.y43{bottom:335.923500px;}
.y6c{bottom:337.965450px;}
.y1c{bottom:338.404500px;}
.yba{bottom:339.651450px;}
.y170{bottom:340.217250px;}
.y1b7{bottom:341.180700px;}
.y91{bottom:341.467950px;}
.y1de{bottom:343.019550px;}
.y133{bottom:345.891750px;}
.y148{bottom:347.673750px;}
.y195{bottom:350.383650px;}
.y42{bottom:353.458500px;}
.ye4{bottom:353.598900px;}
.yb9{bottom:354.649950px;}
.y1b{bottom:355.069500px;}
.y6b{bottom:356.313450px;}
.y16f{bottom:358.664250px;}
.y1b6{bottom:359.294100px;}
.y90{bottom:359.601450px;}
.y1dd{bottom:359.705550px;}
.y132{bottom:363.909750px;}
.y147{bottom:364.173750px;}
.y10b{bottom:365.133750px;}
.y194{bottom:368.797650px;}
.yb8{bottom:369.648450px;}
.y41{bottom:370.993500px;}
.y1a{bottom:371.734500px;}
.ye3{bottom:371.913900px;}
.y6a{bottom:374.661450px;}
.y1dc{bottom:376.391550px;}
.y16e{bottom:377.111250px;}
.y1b5{bottom:377.411100px;}
.y8f{bottom:377.734950px;}
.y10a{bottom:380.883750px;}
.y131{bottom:381.927750px;}
.yb7{bottom:384.646950px;}
.y193{bottom:387.217350px;}
.y19{bottom:388.399500px;}
.y40{bottom:388.528500px;}
.ye2{bottom:390.228900px;}
.y69{bottom:393.009450px;}
.y146{bottom:394.221900px;}
.y1b4{bottom:395.528100px;}
.y16d{bottom:395.558250px;}
.y8e{bottom:395.868450px;}
.y109{bottom:396.633750px;}
.y1db{bottom:397.760400px;}
.yb6{bottom:399.645450px;}
.y130{bottom:399.945750px;}
.y18{bottom:405.064500px;}
.y192{bottom:405.694350px;}
.y3f{bottom:406.063500px;}
.ye1{bottom:408.531900px;}
.y145{bottom:410.721900px;}
.y68{bottom:411.316650px;}
.y108{bottom:412.383750px;}
.y1b3{bottom:413.645100px;}
.y8d{bottom:414.001950px;}
.y16c{bottom:414.005250px;}
.yb5{bottom:414.643950px;}
.y12f{bottom:417.963750px;}
.y1da{bottom:419.135100px;}
.y17{bottom:421.729500px;}
.y191{bottom:424.108350px;}
.ye0{bottom:426.846900px;}
.y144{bottom:427.221900px;}
.y107{bottom:428.133750px;}
.yb4{bottom:429.642450px;}
.y67{bottom:429.664650px;}
.y8c{bottom:432.141600px;}
.y16b{bottom:432.424500px;}
.y1d9{bottom:435.819600px;}
.y12e{bottom:435.981750px;}
.y16{bottom:438.394500px;}
.y3e{bottom:442.042950px;}
.y190{bottom:442.522350px;}
.y143{bottom:443.721900px;}
.y106{bottom:443.883750px;}
.ydf{bottom:445.131750px;}
.y66{bottom:448.012650px;}
.yb3{bottom:448.953450px;}
.y1b2{bottom:449.820000px;}
.y8b{bottom:450.275100px;}
.y16a{bottom:450.871500px;}
.y1d8{bottom:457.188450px;}
.y105{bottom:459.633750px;}
.y142{bottom:460.221900px;}
.y3d{bottom:460.473450px;}
.yde{bottom:463.446750px;}
.y15{bottom:465.690300px;}
.y65{bottom:466.360650px;}
.y8a{bottom:468.411600px;}
.y169{bottom:469.318500px;}
.y12d{bottom:470.511750px;}
.y141{bottom:476.721900px;}
.y1d7{bottom:478.558950px;}
.y3c{bottom:478.903950px;}
.y18f{bottom:479.350350px;}
.ydd{bottom:481.761750px;}
.y64{bottom:484.708650px;}
.y89{bottom:486.545100px;}
.y12c{bottom:487.026750px;}
.y168{bottom:487.716900px;}
.y104{bottom:488.852100px;}
.y1d6{bottom:495.254850px;}
.y3b{bottom:497.334450px;}
.y18e{bottom:497.764350px;}
.ydc{bottom:500.076750px;}
.y1b1{bottom:502.724400px;}
.y63{bottom:503.056650px;}
.y12b{bottom:503.541750px;}
.y14{bottom:505.117200px;}
.y167{bottom:506.163900px;}
.y140{bottom:506.757000px;}
.y103{bottom:506.853600px;}
.y3a{bottom:515.776200px;}
.y18d{bottom:516.178350px;}
.y1d5{bottom:516.625350px;}
.ydb{bottom:518.391750px;}
.y1ff{bottom:519.754050px;}
.y12a{bottom:520.056750px;}
.y88{bottom:521.353800px;}
.y62{bottom:521.404650px;}
.y13{bottom:521.778150px;}
.y166{bottom:524.610900px;}
.y13f{bottom:524.758500px;}
.y102{bottom:524.855100px;}
.y1d4{bottom:533.309700px;}
.y39{bottom:534.206700px;}
.y18c{bottom:534.592350px;}
.y1b0{bottom:535.949400px;}
.y129{bottom:536.571750px;}
.yda{bottom:536.688450px;}
.y87{bottom:537.988800px;}
.y61{bottom:539.752650px;}
.yb2{bottom:541.598550px;}
.y1fe{bottom:541.786050px;}
.y12{bottom:542.703150px;}
.y13e{bottom:542.760000px;}
.y101{bottom:542.856600px;}
.y165{bottom:543.057900px;}
.y38{bottom:552.637200px;}
.y18b{bottom:553.006350px;}
.y128{bottom:553.086750px;}
.y86{bottom:554.623800px;}
.y1d3{bottom:554.684400px;}
.yd9{bottom:555.003450px;}
.y60{bottom:558.075150px;}
.y1fd{bottom:558.278700px;}
.y11{bottom:559.368150px;}
.yb1{bottom:559.666050px;}
.y13d{bottom:560.761500px;}
.y100{bottom:560.858100px;}
.y164{bottom:561.504900px;}
.y1af{bottom:569.174400px;}
.y127{bottom:569.601750px;}
.y85{bottom:571.258800px;}
.y18a{bottom:571.420350px;}
.yd8{bottom:573.318450px;}
.y10{bottom:576.033150px;}
.y1d2{bottom:576.054900px;}
.y5f{bottom:576.423150px;}
.yb0{bottom:577.733550px;}
.yff{bottom:578.859600px;}
.y163{bottom:579.951900px;}
.y37{bottom:579.987000px;}
.y1fc{bottom:580.310700px;}
.y1ae{bottom:585.794400px;}
.y126{bottom:586.116750px;}
.y84{bottom:587.893800px;}
.y189{bottom:589.834350px;}
.yd7{bottom:591.633450px;}
.yf{bottom:592.703250px;}
.y1d1{bottom:592.745100px;}
.y5e{bottom:594.771150px;}
.yaf{bottom:595.801050px;}
.y1fb{bottom:596.813700px;}
.yfe{bottom:596.861100px;}
.y162{bottom:598.398900px;}
.y36{bottom:598.887000px;}
.y1ad{bottom:602.414400px;}
.y125{bottom:602.631750px;}
.y83{bottom:604.528800px;}
.y188{bottom:608.248350px;}
.ye{bottom:609.368250px;}
.y5d{bottom:613.119150px;}
.y1fa{bottom:613.310700px;}
.yae{bottom:613.868550px;}
.y1d0{bottom:614.115600px;}
.yfd{bottom:614.862600px;}
.y161{bottom:616.845900px;}
.y1ac{bottom:619.034400px;}
.y124{bottom:619.146750px;}
.y82{bottom:621.163800px;}
.yd{bottom:626.033250px;}
.y187{bottom:626.662350px;}
.yd6{bottom:627.756000px;}
.y1f9{bottom:629.813700px;}
.y1cf{bottom:630.800100px;}
.y5c{bottom:631.467150px;}
.yad{bottom:631.936050px;}
.yfc{bottom:632.864100px;}
.y123{bottom:635.661750px;}
.y81{bottom:637.798800px;}
.yc{bottom:642.698250px;}
.y35{bottom:644.818950px;}
.y186{bottom:645.076350px;}
.y1f8{bottom:646.306200px;}
.yd5{bottom:646.656000px;}
.y5b{bottom:649.815150px;}
.yac{bottom:650.003550px;}
.yfb{bottom:650.865600px;}
.y1ce{bottom:652.174650px;}
.y160{bottom:652.241100px;}
.y1ab{bottom:652.265850px;}
.y80{bottom:654.433800px;}
.yb{bottom:659.363250px;}
.y34{bottom:663.249450px;}
.y185{bottom:663.490350px;}
.yab{bottom:668.052000px;}
.y1f7{bottom:668.336700px;}
.y122{bottom:668.664600px;}
.yfa{bottom:668.867100px;}
.y15f{bottom:669.176100px;}
.y7f{bottom:671.068800px;}
.y1cd{bottom:673.545150px;}
.ya{bottom:676.030350px;}
.y33{bottom:681.679950px;}
.y184{bottom:681.904350px;}
.y5a{bottom:684.973800px;}
.y1aa{bottom:685.487550px;}
.y15e{bottom:686.111100px;}
.yaa{bottom:686.119500px;}
.y121{bottom:686.682600px;}
.yf9{bottom:686.868600px;}
.y7e{bottom:687.703800px;}
.y1cc{bottom:690.229650px;}
.y1f6{bottom:690.368700px;}
.y9{bottom:692.695350px;}
.y32{bottom:700.110450px;}
.y183{bottom:700.318350px;}
.yd4{bottom:701.457600px;}
.y59{bottom:701.818800px;}
.y15d{bottom:703.046100px;}
.y1a9{bottom:703.604550px;}
.ya9{bottom:704.187000px;}
.y7d{bottom:704.338800px;}
.y120{bottom:704.700600px;}
.yf8{bottom:704.870100px;}
.y1f5{bottom:706.864350px;}
.y8{bottom:709.361250px;}
.y1cb{bottom:711.604350px;}
.y31{bottom:718.559400px;}
.y58{bottom:718.663800px;}
.y182{bottom:718.732350px;}
.yd3{bottom:719.772600px;}
.y7c{bottom:720.973800px;}
.y1a8{bottom:721.721550px;}
.ya8{bottom:722.254500px;}
.y11f{bottom:722.718600px;}
.yf7{bottom:722.871600px;}
.y7{bottom:726.026250px;}
.y1f4{bottom:728.896350px;}
.y1ca{bottom:732.974850px;}
.y57{bottom:735.508800px;}
.y15c{bottom:736.880100px;}
.y30{bottom:736.989900px;}
.y181{bottom:737.146350px;}
.y7b{bottom:737.608800px;}
.yd2{bottom:738.087600px;}
.y1a7{bottom:739.838550px;}
.ya7{bottom:740.307750px;}
.y11e{bottom:740.736600px;}
.yf6{bottom:740.873100px;}
.y1f3{bottom:745.391850px;}
.y1c9{bottom:749.666550px;}
.y56{bottom:752.353800px;}
.y6{bottom:753.322200px;}
.y7a{bottom:754.243800px;}
.y15b{bottom:755.327100px;}
.y2f{bottom:755.420400px;}
.y180{bottom:755.560350px;}
.yd1{bottom:756.402600px;}
.y1a6{bottom:757.955550px;}
.ya6{bottom:758.375250px;}
.y11d{bottom:758.754600px;}
.yf5{bottom:758.874600px;}
.y1c8{bottom:766.352550px;}
.y1f2{bottom:767.423850px;}
.y55{bottom:769.198800px;}
.y79{bottom:770.878800px;}
.y15a{bottom:773.774100px;}
.y2e{bottom:773.850900px;}
.y17f{bottom:773.974350px;}
.yd0{bottom:774.717600px;}
.y1a5{bottom:776.072550px;}
.ya5{bottom:776.442750px;}
.y11c{bottom:776.772600px;}
.yf4{bottom:776.876100px;}
.y1f1{bottom:783.916500px;}
.y54{bottom:786.043800px;}
.y78{bottom:787.513800px;}
.y2d{bottom:792.292500px;}
.ycf{bottom:792.996600px;}
.y1a4{bottom:794.189550px;}
.ya4{bottom:794.481600px;}
.y11b{bottom:794.790600px;}
.yf3{bottom:794.877600px;}
.y1c7{bottom:801.236100px;}
.y53{bottom:802.888800px;}
.y77{bottom:804.148800px;}
.y5{bottom:804.907650px;}
.y1f0{bottom:805.944000px;}
.y159{bottom:810.651600px;}
.y2c{bottom:810.723000px;}
.y17e{bottom:810.805350px;}
.yce{bottom:811.311600px;}
.y1a3{bottom:812.306550px;}
.ya3{bottom:812.549100px;}
.y11a{bottom:812.808600px;}
.yf2{bottom:812.879100px;}
.y52{bottom:819.733800px;}
.y4{bottom:821.580150px;}
.y1ef{bottom:827.974500px;}
.y158{bottom:829.098600px;}
.y2b{bottom:829.153500px;}
.y17d{bottom:829.230600px;}
.ycd{bottom:829.626600px;}
.y1a2{bottom:830.418600px;}
.ya2{bottom:830.616600px;}
.y119{bottom:830.814600px;}
.yf1{bottom:830.880600px;}
.y51{bottom:836.578800px;}
.y76{bottom:837.418800px;}
.y3{bottom:838.246200px;}
.y157{bottom:847.545600px;}
.y2a{bottom:847.595100px;}
.y17c{bottom:847.644600px;}
.ycc{bottom:847.941600px;}
.y1a1{bottom:848.535600px;}
.ya1{bottom:848.684100px;}
.y118{bottom:848.832600px;}
.yf0{bottom:848.882100px;}
.y1ee{bottom:850.006500px;}
.y50{bottom:853.423800px;}
.y1c6{bottom:854.311350px;}
.y156{bottom:865.992600px;}
.y29{bottom:866.025600px;}
.y17b{bottom:866.058600px;}
.ycb{bottom:866.256600px;}
.y1ed{bottom:866.502150px;}
.y1a0{bottom:866.652600px;}
.ya0{bottom:866.751600px;}
.y117{bottom:866.850600px;}
.yef{bottom:866.883600px;}
.y4f{bottom:870.268800px;}
.y75{bottom:870.688800px;}
.y2{bottom:881.860500px;}
.y155{bottom:884.439600px;}
.y28{bottom:884.456100px;}
.y17a{bottom:884.472600px;}
.yca{bottom:884.571600px;}
.y1c5{bottom:884.687100px;}
.y19f{bottom:884.769600px;}
.y9f{bottom:884.819100px;}
.y116{bottom:884.868600px;}
.yee{bottom:884.885100px;}
.y4e{bottom:887.113800px;}
.y74{bottom:887.323800px;}
.y1ec{bottom:888.534150px;}
.y1{bottom:901.815000px;}
.y27{bottom:902.886600px;}
.y4d{bottom:903.958800px;}
.y1eb{bottom:905.031150px;}
.hb{height:28.164000px;}
.h8{height:35.088000px;}
.h9{height:40.368000px;}
.h3{height:45.414000px;}
.h1e{height:45.419400px;}
.h1c{height:45.420000px;}
.h1d{height:45.420600px;}
.h20{height:45.431400px;}
.h1f{height:45.432000px;}
.h5{height:50.460000px;}
.h6{height:50.476200px;}
.h7{height:50.479800px;}
.ha{height:52.983000px;}
.h12{height:52.983600px;}
.h4{height:55.506000px;}
.h16{height:55.511400px;}
.h1b{height:55.516200px;}
.h1a{height:55.520400px;}
.h19{height:55.525800px;}
.h15{height:55.554000px;}
.hf{height:55.563000px;}
.h13{height:55.579200px;}
.h10{height:55.582200px;}
.h18{height:55.589400px;}
.hc{height:55.608000px;}
.he{height:55.620600px;}
.h14{height:55.626600px;}
.h11{height:55.650000px;}
.hd{height:55.669200px;}
.h17{height:55.700400px;}
.h2{height:60.552000px;}
.h1{height:999.000000px;}
.h0{height:999.213045px;}
.w1{width:701.250000px;}
.w0{width:701.575515px;}
.x0{left:0.000000px;}
.xd{left:55.960200px;}
.x2{left:74.400000px;}
.x9{left:107.799150px;}
.x1{left:119.992500px;}
.x6{left:124.800750px;}
.xe{left:155.359500px;}
.xc{left:158.822400px;}
.xa{left:177.522000px;}
.x13{left:201.355350px;}
.x8{left:202.830000px;}
.x4{left:220.830000px;}
.x5{left:262.288500px;}
.x3{left:270.761400px;}
.xb{left:289.590000px;}
.x12{left:295.308900px;}
.x11{left:303.561000px;}
.x10{left:328.127850px;}
.xf{left:368.820750px;}
.x7{left:652.857450px;}
@media print{
.v6{vertical-align:-59.093333pt;}
.v3{vertical-align:-18.833600pt;}
.v4{vertical-align:-15.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.333333pt;}
.v1{vertical-align:17.000000pt;}
.v2{vertical-align:18.794133pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1b{letter-spacing:0.014933pt;}
.ls12{letter-spacing:0.030933pt;}
.ls13{letter-spacing:0.042133pt;}
.ls1a{letter-spacing:0.048533pt;}
.ls2{letter-spacing:0.530667pt;}
.ls17{letter-spacing:7.344000pt;}
.ls16{letter-spacing:10.435733pt;}
.lsf{letter-spacing:11.577067pt;}
.ls14{letter-spacing:12.031733pt;}
.ls3{letter-spacing:12.160000pt;}
.ls15{letter-spacing:12.272000pt;}
.lsc{letter-spacing:12.648533pt;}
.ls6{letter-spacing:13.041600pt;}
.ls19{letter-spacing:13.193333pt;}
.ls5{letter-spacing:13.200000pt;}
.lsb{letter-spacing:13.312000pt;}
.lsa{letter-spacing:14.661867pt;}
.ls9{letter-spacing:14.662400pt;}
.lse{letter-spacing:14.724800pt;}
.ls11{letter-spacing:14.798400pt;}
.ls7{letter-spacing:15.203733pt;}
.ls8{letter-spacing:15.617600pt;}
.lsd{letter-spacing:16.430400pt;}
.ls1{letter-spacing:16.480000pt;}
.ls10{letter-spacing:19.304000pt;}
.ws45{word-spacing:-19.344000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws7{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.000000pt;}
.ws11{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.000000pt;}
.ws26{word-spacing:-9.000000pt;}
.ws12{word-spacing:-8.000000pt;}
.ws18{word-spacing:-7.333333pt;}
.ws4c{word-spacing:-2.283067pt;}
.ws22{word-spacing:-2.215733pt;}
.ws35{word-spacing:-1.613333pt;}
.ws3a{word-spacing:-0.973867pt;}
.wsb{word-spacing:-0.890667pt;}
.ws29{word-spacing:-0.410667pt;}
.ws3e{word-spacing:-0.384000pt;}
.ws4{word-spacing:-0.373333pt;}
.ws1c{word-spacing:-0.299200pt;}
.ws3b{word-spacing:-0.293333pt;}
.ws16{word-spacing:-0.117333pt;}
.wsa{word-spacing:-0.053333pt;}
.ws10{word-spacing:-0.042667pt;}
.ws14{word-spacing:-0.010667pt;}
.ws13{word-spacing:0.000000pt;}
.ws41{word-spacing:0.058667pt;}
.ws40{word-spacing:0.064533pt;}
.ws1d{word-spacing:0.208000pt;}
.ws2f{word-spacing:0.228800pt;}
.ws2c{word-spacing:0.277333pt;}
.ws30{word-spacing:0.307200pt;}
.ws1f{word-spacing:0.528000pt;}
.ws39{word-spacing:0.532800pt;}
.ws21{word-spacing:0.557333pt;}
.ws1e{word-spacing:0.800000pt;}
.ws27{word-spacing:0.874133pt;}
.ws23{word-spacing:0.938667pt;}
.ws46{word-spacing:0.939733pt;}
.ws17{word-spacing:0.997333pt;}
.wsc{word-spacing:1.013333pt;}
.ws4a{word-spacing:1.031467pt;}
.ws52{word-spacing:1.147200pt;}
.ws4f{word-spacing:1.157733pt;}
.ws53{word-spacing:1.171200pt;}
.ws1a{word-spacing:1.200000pt;}
.ws2b{word-spacing:1.226133pt;}
.ws1b{word-spacing:1.488000pt;}
.wsf{word-spacing:1.572000pt;}
.ws15{word-spacing:1.594667pt;}
.ws4d{word-spacing:1.597600pt;}
.ws38{word-spacing:1.613333pt;}
.ws31{word-spacing:1.683733pt;}
.ws3f{word-spacing:1.918400pt;}
.ws24{word-spacing:1.948800pt;}
.ws49{word-spacing:2.053067pt;}
.ws20{word-spacing:2.170667pt;}
.wse{word-spacing:2.325333pt;}
.ws25{word-spacing:2.334933pt;}
.ws3c{word-spacing:2.575467pt;}
.ws44{word-spacing:2.875200pt;}
.ws6{word-spacing:2.986667pt;}
.ws36{word-spacing:3.121067pt;}
.ws47{word-spacing:3.489600pt;}
.ws34{word-spacing:3.572800pt;}
.ws32{word-spacing:3.696000pt;}
.ws33{word-spacing:3.721867pt;}
.ws2e{word-spacing:3.813333pt;}
.ws51{word-spacing:4.179200pt;}
.ws50{word-spacing:4.185467pt;}
.ws48{word-spacing:4.192000pt;}
.ws43{word-spacing:4.434667pt;}
.ws2d{word-spacing:4.517333pt;}
.ws37{word-spacing:5.209600pt;}
.wsd{word-spacing:5.522133pt;}
.ws19{word-spacing:5.573333pt;}
.ws3d{word-spacing:5.786667pt;}
.ws42{word-spacing:5.935733pt;}
.ws8{word-spacing:6.512000pt;}
.ws28{word-spacing:6.658000pt;}
.ws2a{word-spacing:6.861867pt;}
.ws4e{word-spacing:6.937600pt;}
.ws5{word-spacing:7.476800pt;}
.ws4b{word-spacing:12.528000pt;}
._c{margin-left:-14.208000pt;}
._17{margin-left:-9.240821pt;}
._10{margin-left:-8.015360pt;}
._f{margin-left:-6.447467pt;}
._a{margin-left:-4.792427pt;}
._e{margin-left:-3.776149pt;}
._4{margin-left:-2.856661pt;}
._2{margin-left:-1.100800pt;}
._0{width:1.578688pt;}
._1{width:2.483157pt;}
._3{width:3.948843pt;}
._7{width:4.866944pt;}
._d{width:6.408789pt;}
._12{width:7.659499pt;}
._11{width:9.247467pt;}
._18{width:10.404800pt;}
._14{width:11.666112pt;}
._15{width:12.815189pt;}
._5{width:14.472597pt;}
._9{width:16.340160pt;}
._6{width:17.261120pt;}
._8{width:19.858795pt;}
._13{width:21.655851pt;}
._b{width:38.239019pt;}
._16{width:542.016043pt;}
.fsb{font-size:24.000000pt;}
.fs6{font-size:26.666667pt;}
.fs9{font-size:29.333333pt;}
.fs8{font-size:32.000000pt;}
.fsc{font-size:36.000000pt;}
.fs5{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1ea{bottom:93.596000pt;}
.y1c4{bottom:93.932933pt;}
.y9e{bottom:93.984400pt;}
.y154{bottom:94.283733pt;}
.y26{bottom:100.780800pt;}
.y19e{bottom:100.960800pt;}
.y13c{bottom:101.094133pt;}
.yed{bottom:101.216933pt;}
.y179{bottom:101.598133pt;}
.y73{bottom:101.828800pt;}
.yc9{bottom:101.932400pt;}
.y115{bottom:102.044000pt;}
.y4c{bottom:105.660267pt;}
.y1e9{bottom:108.431600pt;}
.y1c3{bottom:110.036933pt;}
.y9d{bottom:110.103067pt;}
.y153{bottom:110.285067pt;}
.y19d{bottom:114.292800pt;}
.y13b{bottom:114.426133pt;}
.yec{bottom:114.548933pt;}
.y178{bottom:114.930133pt;}
.y114{bottom:115.112000pt;}
.yc8{bottom:115.264400pt;}
.y4b{bottom:118.993600pt;}
.y72{bottom:118.994133pt;}
.y1c2{bottom:126.136533pt;}
.y9c{bottom:126.221733pt;}
.y1e8{bottom:127.427600pt;}
.y19c{bottom:127.624800pt;}
.y13a{bottom:127.758133pt;}
.yeb{bottom:127.880933pt;}
.y113{bottom:128.180000pt;}
.y177{bottom:128.262133pt;}
.yc7{bottom:128.596400pt;}
.y152{bottom:138.297333pt;}
.y19b{bottom:140.956800pt;}
.y139{bottom:141.090133pt;}
.y112{bottom:141.248000pt;}
.y176{bottom:141.594133pt;}
.yc6{bottom:141.928400pt;}
.y1c1{bottom:142.240533pt;}
.y1e7{bottom:142.263333pt;}
.y9b{bottom:142.340400pt;}
.y24{bottom:143.462667pt;}
.yea{bottom:145.046267pt;}
.y151{bottom:152.982400pt;}
.y111{bottom:154.316000pt;}
.y138{bottom:154.422133pt;}
.y175{bottom:154.926133pt;}
.yc5{bottom:155.260400pt;}
.y19a{bottom:158.122133pt;}
.y1c0{bottom:158.344533pt;}
.y9a{bottom:158.459067pt;}
.y23{bottom:159.610667pt;}
.y1e6{bottom:161.259333pt;}
.y110{bottom:167.384000pt;}
.y150{bottom:167.649067pt;}
.y174{bottom:168.258133pt;}
.yc4{bottom:168.592400pt;}
.y137{bottom:171.587467pt;}
.y1bf{bottom:174.448533pt;}
.y99{bottom:174.577733pt;}
.y1e5{bottom:176.090000pt;}
.y10f{bottom:180.452000pt;}
.y173{bottom:181.590133pt;}
.yc3{bottom:181.924400pt;}
.y14f{bottom:182.315733pt;}
.y22{bottom:188.094667pt;}
.y1be{bottom:190.552533pt;}
.y98{bottom:190.696400pt;}
.y172{bottom:194.922133pt;}
.y1e4{bottom:195.084533pt;}
.yc2{bottom:195.256400pt;}
.y14e{bottom:196.994533pt;}
.y10e{bottom:197.353333pt;}
.y49{bottom:205.078667pt;}
.y1bd{bottom:206.647733pt;}
.y97{bottom:206.815067pt;}
.y71{bottom:207.932533pt;}
.yc1{bottom:208.588400pt;}
.y25{bottom:210.345333pt;}
.y14d{bottom:211.661200pt;}
.y171{bottom:212.087467pt;}
.y1e3{bottom:214.079333pt;}
.y48{bottom:220.665333pt;}
.yc0{bottom:221.920400pt;}
.y1bc{bottom:222.751733pt;}
.y70{bottom:222.905867pt;}
.y96{bottom:222.933733pt;}
.y21{bottom:222.943467pt;}
.y4a{bottom:223.678667pt;}
.y14c{bottom:226.340000pt;}
.ye9{bottom:232.910133pt;}
.y1e2{bottom:233.075333pt;}
.ybf{bottom:235.252400pt;}
.y47{bottom:236.252000pt;}
.y6f{bottom:237.879200pt;}
.y1bb{bottom:238.855733pt;}
.y95{bottom:239.052400pt;}
.y14b{bottom:241.006667pt;}
.y20{bottom:241.543467pt;}
.y199{bottom:245.980133pt;}
.y1e1{bottom:247.910933pt;}
.ybe{bottom:248.584400pt;}
.ye8{bottom:249.190133pt;}
.y46{bottom:251.838667pt;}
.y1ba{bottom:254.959733pt;}
.y94{bottom:255.171067pt;}
.y1f{bottom:256.356800pt;}
.y136{bottom:259.411333pt;}
.ybd{bottom:261.916400pt;}
.y198{bottom:262.348133pt;}
.ye7{bottom:265.470133pt;}
.y1e0{bottom:266.906933pt;}
.y45{bottom:267.425333pt;}
.y14a{bottom:267.698000pt;}
.y6e{bottom:267.795067pt;}
.y1b9{bottom:271.063733pt;}
.y1e{bottom:271.177333pt;}
.y93{bottom:271.289733pt;}
.ybc{bottom:275.248400pt;}
.y135{bottom:275.427333pt;}
.y197{bottom:278.716133pt;}
.y10d{bottom:280.561200pt;}
.ye6{bottom:281.750133pt;}
.y149{bottom:282.364667pt;}
.y44{bottom:283.012000pt;}
.y6d{bottom:284.104400pt;}
.y1df{bottom:285.901467pt;}
.y1d{bottom:285.990667pt;}
.y1b8{bottom:287.167733pt;}
.y92{bottom:287.408400pt;}
.ybb{bottom:288.580400pt;}
.y134{bottom:291.443333pt;}
.y196{bottom:295.084133pt;}
.y10c{bottom:296.562533pt;}
.ye5{bottom:298.030133pt;}
.y43{bottom:298.598667pt;}
.y6c{bottom:300.413733pt;}
.y1c{bottom:300.804000pt;}
.yba{bottom:301.912400pt;}
.y170{bottom:302.415333pt;}
.y1b7{bottom:303.271733pt;}
.y91{bottom:303.527067pt;}
.y1de{bottom:304.906267pt;}
.y133{bottom:307.459333pt;}
.y148{bottom:309.043333pt;}
.y195{bottom:311.452133pt;}
.y42{bottom:314.185333pt;}
.ye4{bottom:314.310133pt;}
.yb9{bottom:315.244400pt;}
.y1b{bottom:315.617333pt;}
.y6b{bottom:316.723067pt;}
.y16f{bottom:318.812667pt;}
.y1b6{bottom:319.372533pt;}
.y90{bottom:319.645733pt;}
.y1dd{bottom:319.738267pt;}
.y132{bottom:323.475333pt;}
.y147{bottom:323.710000pt;}
.y10b{bottom:324.563333pt;}
.y194{bottom:327.820133pt;}
.yb8{bottom:328.576400pt;}
.y41{bottom:329.772000pt;}
.y1a{bottom:330.430667pt;}
.ye3{bottom:330.590133pt;}
.y6a{bottom:333.032400pt;}
.y1dc{bottom:334.570267pt;}
.y16e{bottom:335.210000pt;}
.y1b5{bottom:335.476533pt;}
.y8f{bottom:335.764400pt;}
.y10a{bottom:338.563333pt;}
.y131{bottom:339.491333pt;}
.yb7{bottom:341.908400pt;}
.y193{bottom:344.193200pt;}
.y19{bottom:345.244000pt;}
.y40{bottom:345.358667pt;}
.ye2{bottom:346.870133pt;}
.y69{bottom:349.341733pt;}
.y146{bottom:350.419467pt;}
.y1b4{bottom:351.580533pt;}
.y16d{bottom:351.607333pt;}
.y8e{bottom:351.883067pt;}
.y109{bottom:352.563333pt;}
.y1db{bottom:353.564800pt;}
.yb6{bottom:355.240400pt;}
.y130{bottom:355.507333pt;}
.y18{bottom:360.057333pt;}
.y192{bottom:360.617200pt;}
.y3f{bottom:360.945333pt;}
.ye1{bottom:363.139467pt;}
.y145{bottom:365.086133pt;}
.y68{bottom:365.614800pt;}
.y108{bottom:366.563333pt;}
.y1b3{bottom:367.684533pt;}
.y8d{bottom:368.001733pt;}
.y16c{bottom:368.004667pt;}
.yb5{bottom:368.572400pt;}
.y12f{bottom:371.523333pt;}
.y1da{bottom:372.564533pt;}
.y17{bottom:374.870667pt;}
.y191{bottom:376.985200pt;}
.ye0{bottom:379.419467pt;}
.y144{bottom:379.752800pt;}
.y107{bottom:380.563333pt;}
.yb4{bottom:381.904400pt;}
.y67{bottom:381.924133pt;}
.y8c{bottom:384.125867pt;}
.y16b{bottom:384.377333pt;}
.y1d9{bottom:387.395200pt;}
.y12e{bottom:387.539333pt;}
.y16{bottom:389.684000pt;}
.y3e{bottom:392.927067pt;}
.y190{bottom:393.353200pt;}
.y143{bottom:394.419467pt;}
.y106{bottom:394.563333pt;}
.ydf{bottom:395.672667pt;}
.y66{bottom:398.233467pt;}
.yb3{bottom:399.069733pt;}
.y1b2{bottom:399.840000pt;}
.y8b{bottom:400.244533pt;}
.y16a{bottom:400.774667pt;}
.y1d8{bottom:406.389733pt;}
.y105{bottom:408.563333pt;}
.y142{bottom:409.086133pt;}
.y3d{bottom:409.309733pt;}
.yde{bottom:411.952667pt;}
.y15{bottom:413.946933pt;}
.y65{bottom:414.542800pt;}
.y8a{bottom:416.365867pt;}
.y169{bottom:417.172000pt;}
.y12d{bottom:418.232667pt;}
.y141{bottom:423.752800pt;}
.y1d7{bottom:425.385733pt;}
.y3c{bottom:425.692400pt;}
.y18f{bottom:426.089200pt;}
.ydd{bottom:428.232667pt;}
.y64{bottom:430.852133pt;}
.y89{bottom:432.484533pt;}
.y12c{bottom:432.912667pt;}
.y168{bottom:433.526133pt;}
.y104{bottom:434.535200pt;}
.y1d6{bottom:440.226533pt;}
.y3b{bottom:442.075067pt;}
.y18e{bottom:442.457200pt;}
.ydc{bottom:444.512667pt;}
.y1b1{bottom:446.866133pt;}
.y63{bottom:447.161467pt;}
.y12b{bottom:447.592667pt;}
.y14{bottom:448.993067pt;}
.y167{bottom:449.923467pt;}
.y140{bottom:450.450667pt;}
.y103{bottom:450.536533pt;}
.y3a{bottom:458.467733pt;}
.y18d{bottom:458.825200pt;}
.y1d5{bottom:459.222533pt;}
.ydb{bottom:460.792667pt;}
.y1ff{bottom:462.003600pt;}
.y12a{bottom:462.272667pt;}
.y88{bottom:463.425600pt;}
.y62{bottom:463.470800pt;}
.y13{bottom:463.802800pt;}
.y166{bottom:466.320800pt;}
.y13f{bottom:466.452000pt;}
.y102{bottom:466.537867pt;}
.y1d4{bottom:474.053067pt;}
.y39{bottom:474.850400pt;}
.y18c{bottom:475.193200pt;}
.y1b0{bottom:476.399467pt;}
.y129{bottom:476.952667pt;}
.yda{bottom:477.056400pt;}
.y87{bottom:478.212267pt;}
.y61{bottom:479.780133pt;}
.yb2{bottom:481.420933pt;}
.y1fe{bottom:481.587600pt;}
.y12{bottom:482.402800pt;}
.y13e{bottom:482.453333pt;}
.y101{bottom:482.539200pt;}
.y165{bottom:482.718133pt;}
.y38{bottom:491.233067pt;}
.y18b{bottom:491.561200pt;}
.y128{bottom:491.632667pt;}
.y86{bottom:492.998933pt;}
.y1d3{bottom:493.052800pt;}
.yd9{bottom:493.336400pt;}
.y60{bottom:496.066800pt;}
.y1fd{bottom:496.247733pt;}
.y11{bottom:497.216133pt;}
.yb1{bottom:497.480933pt;}
.y13d{bottom:498.454667pt;}
.y100{bottom:498.540533pt;}
.y164{bottom:499.115467pt;}
.y1af{bottom:505.932800pt;}
.y127{bottom:506.312667pt;}
.y85{bottom:507.785600pt;}
.y18a{bottom:507.929200pt;}
.yd8{bottom:509.616400pt;}
.y10{bottom:512.029467pt;}
.y1d2{bottom:512.048800pt;}
.y5f{bottom:512.376133pt;}
.yb0{bottom:513.540933pt;}
.yff{bottom:514.541867pt;}
.y163{bottom:515.512800pt;}
.y37{bottom:515.544000pt;}
.y1fc{bottom:515.831733pt;}
.y1ae{bottom:520.706133pt;}
.y126{bottom:520.992667pt;}
.y84{bottom:522.572267pt;}
.y189{bottom:524.297200pt;}
.yd7{bottom:525.896400pt;}
.yf{bottom:526.847333pt;}
.y1d1{bottom:526.884533pt;}
.y5e{bottom:528.685467pt;}
.yaf{bottom:529.600933pt;}
.y1fb{bottom:530.501067pt;}
.yfe{bottom:530.543200pt;}
.y162{bottom:531.910133pt;}
.y36{bottom:532.344000pt;}
.y1ad{bottom:535.479467pt;}
.y125{bottom:535.672667pt;}
.y83{bottom:537.358933pt;}
.y188{bottom:540.665200pt;}
.ye{bottom:541.660667pt;}
.y5d{bottom:544.994800pt;}
.y1fa{bottom:545.165067pt;}
.yae{bottom:545.660933pt;}
.y1d0{bottom:545.880533pt;}
.yfd{bottom:546.544533pt;}
.y161{bottom:548.307467pt;}
.y1ac{bottom:550.252800pt;}
.y124{bottom:550.352667pt;}
.y82{bottom:552.145600pt;}
.yd{bottom:556.474000pt;}
.y187{bottom:557.033200pt;}
.yd6{bottom:558.005333pt;}
.y1f9{bottom:559.834400pt;}
.y1cf{bottom:560.711200pt;}
.y5c{bottom:561.304133pt;}
.yad{bottom:561.720933pt;}
.yfc{bottom:562.545867pt;}
.y123{bottom:565.032667pt;}
.y81{bottom:566.932267pt;}
.yc{bottom:571.287333pt;}
.y35{bottom:573.172400pt;}
.y186{bottom:573.401200pt;}
.y1f8{bottom:574.494400pt;}
.yd5{bottom:574.805333pt;}
.y5b{bottom:577.613467pt;}
.yac{bottom:577.780933pt;}
.yfb{bottom:578.547200pt;}
.y1ce{bottom:579.710800pt;}
.y160{bottom:579.769867pt;}
.y1ab{bottom:579.791867pt;}
.y80{bottom:581.718933pt;}
.yb{bottom:586.100667pt;}
.y34{bottom:589.555067pt;}
.y185{bottom:589.769200pt;}
.yab{bottom:593.824000pt;}
.y1f7{bottom:594.077067pt;}
.y122{bottom:594.368533pt;}
.yfa{bottom:594.548533pt;}
.y15f{bottom:594.823200pt;}
.y7f{bottom:596.505600pt;}
.y1cd{bottom:598.706800pt;}
.ya{bottom:600.915867pt;}
.y33{bottom:605.937733pt;}
.y184{bottom:606.137200pt;}
.y5a{bottom:608.865600pt;}
.y1aa{bottom:609.322267pt;}
.y15e{bottom:609.876533pt;}
.yaa{bottom:609.884000pt;}
.y121{bottom:610.384533pt;}
.yf9{bottom:610.549867pt;}
.y7e{bottom:611.292267pt;}
.y1cc{bottom:613.537467pt;}
.y1f6{bottom:613.661067pt;}
.y9{bottom:615.729200pt;}
.y32{bottom:622.320400pt;}
.y183{bottom:622.505200pt;}
.yd4{bottom:623.517867pt;}
.y59{bottom:623.838933pt;}
.y15d{bottom:624.929867pt;}
.y1a9{bottom:625.426267pt;}
.ya9{bottom:625.944000pt;}
.y7d{bottom:626.078933pt;}
.y120{bottom:626.400533pt;}
.yf8{bottom:626.551200pt;}
.y1f5{bottom:628.323867pt;}
.y8{bottom:630.543333pt;}
.y1cb{bottom:632.537200pt;}
.y31{bottom:638.719467pt;}
.y58{bottom:638.812267pt;}
.y182{bottom:638.873200pt;}
.yd3{bottom:639.797867pt;}
.y7c{bottom:640.865600pt;}
.y1a8{bottom:641.530267pt;}
.ya8{bottom:642.004000pt;}
.y11f{bottom:642.416533pt;}
.yf7{bottom:642.552533pt;}
.y7{bottom:645.356667pt;}
.y1f4{bottom:647.907867pt;}
.y1ca{bottom:651.533200pt;}
.y57{bottom:653.785600pt;}
.y15c{bottom:655.004533pt;}
.y30{bottom:655.102133pt;}
.y181{bottom:655.241200pt;}
.y7b{bottom:655.652267pt;}
.yd2{bottom:656.077867pt;}
.y1a7{bottom:657.634267pt;}
.ya7{bottom:658.051333pt;}
.y11e{bottom:658.432533pt;}
.yf6{bottom:658.553867pt;}
.y1f3{bottom:662.570533pt;}
.y1c9{bottom:666.370267pt;}
.y56{bottom:668.758933pt;}
.y6{bottom:669.619733pt;}
.y7a{bottom:670.438933pt;}
.y15b{bottom:671.401867pt;}
.y2f{bottom:671.484800pt;}
.y180{bottom:671.609200pt;}
.yd1{bottom:672.357867pt;}
.y1a6{bottom:673.738267pt;}
.ya6{bottom:674.111333pt;}
.y11d{bottom:674.448533pt;}
.yf5{bottom:674.555200pt;}
.y1c8{bottom:681.202267pt;}
.y1f2{bottom:682.154533pt;}
.y55{bottom:683.732267pt;}
.y79{bottom:685.225600pt;}
.y15a{bottom:687.799200pt;}
.y2e{bottom:687.867467pt;}
.y17f{bottom:687.977200pt;}
.yd0{bottom:688.637867pt;}
.y1a5{bottom:689.842267pt;}
.ya5{bottom:690.171333pt;}
.y11c{bottom:690.464533pt;}
.yf4{bottom:690.556533pt;}
.y1f1{bottom:696.814667pt;}
.y54{bottom:698.705600pt;}
.y78{bottom:700.012267pt;}
.y2d{bottom:704.260000pt;}
.ycf{bottom:704.885867pt;}
.y1a4{bottom:705.946267pt;}
.ya4{bottom:706.205867pt;}
.y11b{bottom:706.480533pt;}
.yf3{bottom:706.557867pt;}
.y1c7{bottom:712.209867pt;}
.y53{bottom:713.678933pt;}
.y77{bottom:714.798933pt;}
.y5{bottom:715.473467pt;}
.y1f0{bottom:716.394667pt;}
.y159{bottom:720.579200pt;}
.y2c{bottom:720.642667pt;}
.y17e{bottom:720.715867pt;}
.yce{bottom:721.165867pt;}
.y1a3{bottom:722.050267pt;}
.ya3{bottom:722.265867pt;}
.y11a{bottom:722.496533pt;}
.yf2{bottom:722.559200pt;}
.y52{bottom:728.652267pt;}
.y4{bottom:730.293467pt;}
.y1ef{bottom:735.977333pt;}
.y158{bottom:736.976533pt;}
.y2b{bottom:737.025333pt;}
.y17d{bottom:737.093867pt;}
.ycd{bottom:737.445867pt;}
.y1a2{bottom:738.149867pt;}
.ya2{bottom:738.325867pt;}
.y119{bottom:738.501867pt;}
.yf1{bottom:738.560533pt;}
.y51{bottom:743.625600pt;}
.y76{bottom:744.372267pt;}
.y3{bottom:745.107733pt;}
.y157{bottom:753.373867pt;}
.y2a{bottom:753.417867pt;}
.y17c{bottom:753.461867pt;}
.ycc{bottom:753.725867pt;}
.y1a1{bottom:754.253867pt;}
.ya1{bottom:754.385867pt;}
.y118{bottom:754.517867pt;}
.yf0{bottom:754.561867pt;}
.y1ee{bottom:755.561333pt;}
.y50{bottom:758.598933pt;}
.y1c6{bottom:759.387867pt;}
.y156{bottom:769.771200pt;}
.y29{bottom:769.800533pt;}
.y17b{bottom:769.829867pt;}
.ycb{bottom:770.005867pt;}
.y1ed{bottom:770.224133pt;}
.y1a0{bottom:770.357867pt;}
.ya0{bottom:770.445867pt;}
.y117{bottom:770.533867pt;}
.yef{bottom:770.563200pt;}
.y4f{bottom:773.572267pt;}
.y75{bottom:773.945600pt;}
.y2{bottom:783.876000pt;}
.y155{bottom:786.168533pt;}
.y28{bottom:786.183200pt;}
.y17a{bottom:786.197867pt;}
.yca{bottom:786.285867pt;}
.y1c5{bottom:786.388533pt;}
.y19f{bottom:786.461867pt;}
.y9f{bottom:786.505867pt;}
.y116{bottom:786.549867pt;}
.yee{bottom:786.564533pt;}
.y4e{bottom:788.545600pt;}
.y74{bottom:788.732267pt;}
.y1ec{bottom:789.808133pt;}
.y1{bottom:801.613333pt;}
.y27{bottom:802.565867pt;}
.y4d{bottom:803.518933pt;}
.y1eb{bottom:804.472133pt;}
.hb{height:25.034667pt;}
.h8{height:31.189333pt;}
.h9{height:35.882667pt;}
.h3{height:40.368000pt;}
.h1e{height:40.372800pt;}
.h1c{height:40.373333pt;}
.h1d{height:40.373867pt;}
.h20{height:40.383467pt;}
.h1f{height:40.384000pt;}
.h5{height:44.853333pt;}
.h6{height:44.867733pt;}
.h7{height:44.870933pt;}
.ha{height:47.096000pt;}
.h12{height:47.096533pt;}
.h4{height:49.338667pt;}
.h16{height:49.343467pt;}
.h1b{height:49.347733pt;}
.h1a{height:49.351467pt;}
.h19{height:49.356267pt;}
.h15{height:49.381333pt;}
.hf{height:49.389333pt;}
.h13{height:49.403733pt;}
.h10{height:49.406400pt;}
.h18{height:49.412800pt;}
.hc{height:49.429333pt;}
.he{height:49.440533pt;}
.h14{height:49.445867pt;}
.h11{height:49.466667pt;}
.hd{height:49.483733pt;}
.h17{height:49.511467pt;}
.h2{height:53.824000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189373pt;}
.w1{width:623.333333pt;}
.w0{width:623.622680pt;}
.x0{left:0.000000pt;}
.xd{left:49.742400pt;}
.x2{left:66.133333pt;}
.x9{left:95.821467pt;}
.x1{left:106.660000pt;}
.x6{left:110.934000pt;}
.xe{left:138.097333pt;}
.xc{left:141.175467pt;}
.xa{left:157.797333pt;}
.x13{left:178.982533pt;}
.x8{left:180.293333pt;}
.x4{left:196.293333pt;}
.x5{left:233.145333pt;}
.x3{left:240.676800pt;}
.xb{left:257.413333pt;}
.x12{left:262.496800pt;}
.x11{left:269.832000pt;}
.x10{left:291.669200pt;}
.xf{left:327.840667pt;}
.x7{left:580.317733pt;}
}




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