
    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_fcc4daba870a3a2525f8e985.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133789;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_cf849b33867b70bdce453332.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133789;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_bb945225c27e3076b729ef3f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_47ae82ac1dd879423a42a78a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_065f9a762b019975a9b75eca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_36892435d519d6b3b25e5e7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2f02c9b42104895733971e48.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_332b491795869c2f5cc8e503.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ed0607d3a03c61a74251cc63.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_49fcc487b3e72c10dd5a5e94.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_087b73a6f53f42ead3eb57d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.097168;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3c19e4cf4de2b0858320548b.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_92acd2a92c554d39b5c7c864.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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:ff11;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-96.480000px;}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-0.738000px;}
.ls6{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.450600px;}
.ls29{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.291600px;}
.ls1b{letter-spacing:-0.243600px;}
.ls2c{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls2a{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.131040px;}
.ls26{letter-spacing:0.149760px;}
.lsd{letter-spacing:0.154800px;}
.ls7{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.612000px;}
.ls24{letter-spacing:0.666000px;}
.ls16{letter-spacing:1.233360px;}
.ls10{letter-spacing:4.500000px;}
.ls1f{letter-spacing:5.220000px;}
.ls1a{letter-spacing:5.940000px;}
.lse{letter-spacing:8.586720px;}
.lsb{letter-spacing:8.820000px;}
.ls19{letter-spacing:12.420000px;}
.lsc{letter-spacing:13.860000px;}
.ls22{letter-spacing:16.506720px;}
.lsa{letter-spacing:16.740000px;}
.lsf{letter-spacing:25.380000px;}
.ls14{letter-spacing:28.980000px;}
.ls13{letter-spacing:38.340000px;}
.ls20{letter-spacing:46.002720px;}
.ls25{letter-spacing:62.820000px;}
.ls27{letter-spacing:89.460000px;}
.ls1c{letter-spacing:249.276000px;}
.ls1{letter-spacing:279.660000px;}
.ls18{letter-spacing:440.796000px;}
.ls1e{letter-spacing:1273.836000px;}
.ls1d{letter-spacing:1445.736000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws7{word-spacing:-16.824960px;}
.wsf{word-spacing:-15.606000px;}
.wse{word-spacing:-15.552000px;}
.ws2{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.094800px;}
.ws9{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.400000px;}
.wsd{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.482000px;}
.ws13{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.140000px;}
.ws14{word-spacing:-12.960000px;}
.ws11{word-spacing:-12.762000px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.064160px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-3.986640px;}
._7{margin-left:-2.423520px;}
._1{margin-left:-1.152000px;}
._0{width:1.090800px;}
._2{width:2.373600px;}
._3{width:3.457680px;}
._6{width:4.822560px;}
._4{width:6.458400px;}
._5{width:7.627680px;}
._1d{width:8.633280px;}
._8{width:9.696240px;}
._e{width:10.761600px;}
._11{width:12.496320px;}
._a{width:13.747680px;}
._26{width:14.921280px;}
._12{width:16.032240px;}
._10{width:17.255520px;}
._f{width:18.585360px;}
._b{width:20.378160px;}
._c{width:21.692880px;}
._1b{width:22.947840px;}
._1a{width:23.963760px;}
._15{width:25.218720px;}
._18{width:26.400240px;}
._17{width:27.609120px;}
._20{width:29.162880px;}
._14{width:30.298320px;}
._16{width:31.299120px;}
._22{width:33.166800px;}
._d{width:34.720560px;}
._1c{width:35.951040px;}
._13{width:37.215360px;}
._1e{width:38.903760px;}
._24{width:40.756320px;}
._1f{width:45.417600px;}
._19{width:46.851840px;}
._21{width:48.883680px;}
._23{width:53.007120px;}
._25{width:62.712000px;}
._28{width:88.524000px;}
._27{width:89.640000px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(79,98,40);}
.fsa{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1dd{bottom:2.520000px;}
.yb9{bottom:2.880000px;}
.y106{bottom:2.910000px;}
.yb3{bottom:3.060000px;}
.y4e{bottom:4.320000px;}
.y4c{bottom:4.680000px;}
.y15e{bottom:4.830000px;}
.y162{bottom:5.910000px;}
.y7{bottom:6.300000px;}
.y4d{bottom:6.480000px;}
.y2{bottom:7.020000px;}
.yd1{bottom:10.260000px;}
.yca{bottom:10.440000px;}
.yf7{bottom:10.620000px;}
.y102{bottom:10.650000px;}
.ybb{bottom:10.800000px;}
.y3{bottom:12.060000px;}
.y166{bottom:13.470000px;}
.y1de{bottom:16.560000px;}
.ycd{bottom:17.820000px;}
.ycb{bottom:18.000000px;}
.yf9{bottom:18.360000px;}
.y105{bottom:18.390000px;}
.yb8{bottom:18.540000px;}
.yd0{bottom:25.380000px;}
.yf6{bottom:26.100000px;}
.yb5{bottom:26.280000px;}
.y100{bottom:26.310000px;}
.y8{bottom:32.940000px;}
.yf8{bottom:33.840000px;}
.y1db{bottom:33.870000px;}
.yb7{bottom:34.020000px;}
.y104{bottom:34.050000px;}
.y15c{bottom:35.820000px;}
.y167{bottom:36.870000px;}
.y160{bottom:37.050000px;}
.ycf{bottom:40.500000px;}
.yfb{bottom:41.580000px;}
.yba{bottom:41.760000px;}
.y101{bottom:41.790000px;}
.ycc{bottom:48.060000px;}
.yd8{bottom:48.090000px;}
.y6{bottom:48.600000px;}
.yb6{bottom:49.500000px;}
.y103{bottom:49.530000px;}
.yce{bottom:55.620000px;}
.yd2{bottom:63.180000px;}
.yd9{bottom:63.210000px;}
.y1d6{bottom:64.980000px;}
.y1da{bottom:65.010000px;}
.y5{bottom:72.900000px;}
.y9b{bottom:89.460000px;}
.yc8{bottom:90.540000px;}
.y7b{bottom:93.420000px;}
.y1df{bottom:94.140000px;}
.yf4{bottom:94.680000px;}
.y1dc{bottom:95.400000px;}
.y159{bottom:99.360000px;}
.y1c6{bottom:102.420000px;}
.y4a{bottom:102.600000px;}
.y199{bottom:103.320000px;}
.y125{bottom:103.500000px;}
.y9a{bottom:106.740000px;}
.yc7{bottom:107.820000px;}
.yf3{bottom:111.960000px;}
.y7a{bottom:115.200000px;}
.y158{bottom:116.640000px;}
.y1c5{bottom:119.700000px;}
.y49{bottom:119.880000px;}
.y124{bottom:120.780000px;}
.y99{bottom:123.840000px;}
.yc6{bottom:125.100000px;}
.yf2{bottom:129.240000px;}
.y157{bottom:133.920000px;}
.y48{bottom:136.980000px;}
.y123{bottom:138.060000px;}
.y98{bottom:141.120000px;}
.yc5{bottom:142.380000px;}
.yf1{bottom:146.520000px;}
.y156{bottom:151.200000px;}
.y47{bottom:154.260000px;}
.y122{bottom:155.340000px;}
.y198{bottom:158.220000px;}
.y97{bottom:158.400000px;}
.yc4{bottom:159.480000px;}
.yf0{bottom:163.620000px;}
.y1d9{bottom:165.240000px;}
.y155{bottom:168.480000px;}
.y46{bottom:171.540000px;}
.y121{bottom:172.440000px;}
.y96{bottom:175.680000px;}
.yc3{bottom:176.760000px;}
.yef{bottom:180.900000px;}
.y154{bottom:185.610000px;}
.y79{bottom:188.670000px;}
.y45{bottom:188.850000px;}
.y120{bottom:189.750000px;}
.y95{bottom:192.990000px;}
.yc2{bottom:194.070000px;}
.yee{bottom:198.210000px;}
.y153{bottom:202.890000px;}
.y78{bottom:205.950000px;}
.y44{bottom:206.130000px;}
.y11f{bottom:207.030000px;}
.y94{bottom:210.090000px;}
.yc1{bottom:211.350000px;}
.y197{bottom:212.970000px;}
.yed{bottom:215.490000px;}
.y152{bottom:220.170000px;}
.y77{bottom:223.230000px;}
.y43{bottom:223.410000px;}
.y11e{bottom:224.310000px;}
.y93{bottom:227.370000px;}
.y196{bottom:230.070000px;}
.yec{bottom:232.770000px;}
.y151{bottom:237.450000px;}
.yc0{bottom:238.890000px;}
.y42{bottom:240.510000px;}
.y11d{bottom:241.590000px;}
.y1d8{bottom:242.850000px;}
.y92{bottom:243.570000px;}
.y195{bottom:247.350000px;}
.yeb{bottom:250.050000px;}
.ybf{bottom:253.650000px;}
.y150{bottom:254.730000px;}
.y91{bottom:255.090000px;}
.y41{bottom:257.790000px;}
.y1d7{bottom:258.330000px;}
.y11c{bottom:258.870000px;}
.y194{bottom:264.630000px;}
.yea{bottom:267.150000px;}
.y14f{bottom:272.010000px;}
.y90{bottom:272.190000px;}
.y1d5{bottom:273.810000px;}
.y40{bottom:275.070000px;}
.y11b{bottom:275.970000px;}
.y193{bottom:281.910000px;}
.ye9{bottom:284.430000px;}
.y8f{bottom:288.750000px;}
.y14e{bottom:289.110000px;}
.y76{bottom:292.170000px;}
.y3f{bottom:292.350000px;}
.y11a{bottom:293.250000px;}
.y1c4{bottom:298.290000px;}
.y192{bottom:299.190000px;}
.y8e{bottom:300.090000px;}
.ye8{bottom:301.710000px;}
.y14d{bottom:306.390000px;}
.y75{bottom:309.450000px;}
.y3e{bottom:309.630000px;}
.y119{bottom:310.530000px;}
.y1c3{bottom:315.570000px;}
.ybe{bottom:316.470000px;}
.ye7{bottom:318.990000px;}
.y14c{bottom:323.670000px;}
.y3d{bottom:326.730000px;}
.y118{bottom:327.810000px;}
.y1c2{bottom:332.670000px;}
.y191{bottom:333.570000px;}
.ye6{bottom:336.270000px;}
.y14b{bottom:340.950000px;}
.y3c{bottom:344.010000px;}
.y117{bottom:345.090000px;}
.y1c1{bottom:349.950000px;}
.y190{bottom:350.850000px;}
.y1d4{bottom:351.390000px;}
.ye5{bottom:353.550000px;}
.y14a{bottom:358.230000px;}
.y3b{bottom:361.290000px;}
.y116{bottom:362.370000px;}
.ybd{bottom:363.810000px;}
.y1c0{bottom:367.230000px;}
.y18f{bottom:368.130000px;}
.y1d3{bottom:370.290000px;}
.ye4{bottom:370.650000px;}
.y149{bottom:375.330000px;}
.y3a{bottom:378.570000px;}
.y115{bottom:379.470000px;}
.y1bf{bottom:384.510000px;}
.y18e{bottom:385.410000px;}
.y1d2{bottom:387.570000px;}
.ye3{bottom:387.930000px;}
.y148{bottom:392.610000px;}
.y74{bottom:395.670000px;}
.y39{bottom:395.850000px;}
.y114{bottom:396.750000px;}
.y1be{bottom:401.790000px;}
.y18d{bottom:402.690000px;}
.y1d1{bottom:404.670000px;}
.ye2{bottom:405.210000px;}
.y147{bottom:409.890000px;}
.y73{bottom:412.950000px;}
.y38{bottom:413.130000px;}
.y113{bottom:414.030000px;}
.y1bd{bottom:419.070000px;}
.y18c{bottom:419.970000px;}
.y1d0{bottom:421.950000px;}
.ye1{bottom:422.490000px;}
.ybc{bottom:426.675000px;}
.y146{bottom:427.215000px;}
.y37{bottom:430.275000px;}
.y112{bottom:431.355000px;}
.y1bc{bottom:436.215000px;}
.y18b{bottom:437.115000px;}
.y4b{bottom:437.295000px;}
.y1cf{bottom:439.275000px;}
.ye0{bottom:439.815000px;}
.y145{bottom:444.495000px;}
.y36{bottom:447.555000px;}
.y111{bottom:448.635000px;}
.y1bb{bottom:453.495000px;}
.y18a{bottom:454.395000px;}
.y1ce{bottom:456.555000px;}
.ydf{bottom:456.915000px;}
.y144{bottom:461.775000px;}
.y35{bottom:464.835000px;}
.y110{bottom:465.735000px;}
.y1ba{bottom:470.775000px;}
.y189{bottom:471.675000px;}
.y1cd{bottom:473.835000px;}
.yb4{bottom:474.015000px;}
.yde{bottom:474.195000px;}
.y143{bottom:478.875000px;}
.y72{bottom:481.935000px;}
.y34{bottom:482.115000px;}
.y10f{bottom:483.015000px;}
.y1b9{bottom:488.055000px;}
.y188{bottom:488.955000px;}
.ydd{bottom:490.395000px;}
.y1cc{bottom:490.935000px;}
.y142{bottom:496.155000px;}
.y71{bottom:499.215000px;}
.y33{bottom:499.395000px;}
.y10e{bottom:500.295000px;}
.ydc{bottom:501.915000px;}
.y1b8{bottom:505.335000px;}
.y187{bottom:506.235000px;}
.y1cb{bottom:508.215000px;}
.y141{bottom:513.435000px;}
.y70{bottom:516.495000px;}
.ydb{bottom:516.675000px;}
.y32{bottom:516.855000px;}
.y10d{bottom:517.575000px;}
.y1b7{bottom:522.435000px;}
.y186{bottom:523.335000px;}
.y1ca{bottom:525.495000px;}
.y31{bottom:530.715000px;}
.y6f{bottom:533.775000px;}
.y10c{bottom:534.855000px;}
.yb2{bottom:536.835000px;}
.y1b6{bottom:539.715000px;}
.y185{bottom:540.615000px;}
.y1c9{bottom:542.775000px;}
.y30{bottom:544.575000px;}
.y140{bottom:547.995000px;}
.y6e{bottom:551.055000px;}
.y10b{bottom:552.135000px;}
.y1b5{bottom:556.995000px;}
.y184{bottom:557.895000px;}
.y2f{bottom:558.435000px;}
.y1c8{bottom:560.055000px;}
.y13f{bottom:565.275000px;}
.yb1{bottom:566.895000px;}
.y6d{bottom:568.335000px;}
.y10a{bottom:569.235000px;}
.y2e{bottom:572.115000px;}
.y1b4{bottom:574.275000px;}
.y183{bottom:575.175000px;}
.y1c7{bottom:577.335000px;}
.yda{bottom:577.695000px;}
.y13e{bottom:582.375000px;}
.yb0{bottom:582.915000px;}
.y6c{bottom:585.435000px;}
.y2d{bottom:585.975000px;}
.y109{bottom:586.515000px;}
.y1b3{bottom:591.555000px;}
.y182{bottom:592.455000px;}
.yaf{bottom:594.435000px;}
.y13d{bottom:599.655000px;}
.y2c{bottom:599.835000px;}
.y6b{bottom:602.715000px;}
.y108{bottom:603.795000px;}
.y1b2{bottom:608.835000px;}
.y181{bottom:609.735000px;}
.yae{bottom:611.715000px;}
.y2b{bottom:613.515000px;}
.y13c{bottom:616.935000px;}
.y107{bottom:618.555000px;}
.y6a{bottom:619.995000px;}
.yd7{bottom:623.595000px;}
.y1b1{bottom:625.935000px;}
.y180{bottom:626.835000px;}
.y2a{bottom:627.375000px;}
.yad{bottom:628.995000px;}
.y13b{bottom:634.215000px;}
.y69{bottom:637.275000px;}
.y29{bottom:641.235000px;}
.y1b0{bottom:643.215000px;}
.y17f{bottom:644.115000px;}
.yac{bottom:646.275000px;}
.y13a{bottom:651.495000px;}
.y68{bottom:654.555000px;}
.y28{bottom:654.915000px;}
.y1af{bottom:660.495000px;}
.y17e{bottom:661.395000px;}
.yab{bottom:663.555000px;}
.yff{bottom:665.895000px;}
.y139{bottom:668.625000px;}
.y27{bottom:668.805000px;}
.y67{bottom:671.865000px;}
.y1ae{bottom:677.805000px;}
.y17d{bottom:678.705000px;}
.yaa{bottom:680.865000px;}
.y26{bottom:682.665000px;}
.y138{bottom:685.905000px;}
.y66{bottom:688.965000px;}
.y1ad{bottom:695.085000px;}
.y17c{bottom:695.985000px;}
.y25{bottom:696.345000px;}
.ya9{bottom:697.965000px;}
.yd6{bottom:699.765000px;}
.y137{bottom:703.185000px;}
.y65{bottom:706.245000px;}
.y24{bottom:710.205000px;}
.y1ac{bottom:712.365000px;}
.y17b{bottom:713.265000px;}
.ya8{bottom:715.245000px;}
.y136{bottom:720.465000px;}
.y64{bottom:723.525000px;}
.y23{bottom:724.065000px;}
.yfe{bottom:728.745000px;}
.y1ab{bottom:729.465000px;}
.y17a{bottom:730.365000px;}
.ya7{bottom:732.525000px;}
.y22{bottom:737.745000px;}
.y63{bottom:740.805000px;}
.y1aa{bottom:746.745000px;}
.y179{bottom:747.645000px;}
.ya6{bottom:749.805000px;}
.y21{bottom:751.605000px;}
.y135{bottom:755.025000px;}
.y62{bottom:758.085000px;}
.y1a9{bottom:764.025000px;}
.y178{bottom:764.925000px;}
.y20{bottom:765.465000px;}
.ya5{bottom:767.085000px;}
.y134{bottom:772.125000px;}
.y61{bottom:775.365000px;}
.yd5{bottom:775.905000px;}
.y1f{bottom:779.145000px;}
.y1a8{bottom:781.305000px;}
.y177{bottom:782.205000px;}
.ya4{bottom:784.365000px;}
.y133{bottom:789.405000px;}
.yfd{bottom:791.565000px;}
.y60{bottom:792.465000px;}
.y1e{bottom:793.005000px;}
.y1a7{bottom:798.585000px;}
.y176{bottom:798.765000px;}
.ya3{bottom:801.465000px;}
.y132{bottom:806.685000px;}
.y1d{bottom:806.865000px;}
.y5f{bottom:809.745000px;}
.y175{bottom:813.165000px;}
.y1a6{bottom:815.685000px;}
.ya2{bottom:818.745000px;}
.y1c{bottom:820.545000px;}
.y131{bottom:823.965000px;}
.y5e{bottom:827.025000px;}
.y8d{bottom:827.565000px;}
.y174{bottom:829.725000px;}
.y1a5{bottom:832.965000px;}
.y1b{bottom:834.405000px;}
.ya1{bottom:836.025000px;}
.yd4{bottom:836.925000px;}
.y130{bottom:841.245000px;}
.y5d{bottom:844.305000px;}
.y8c{bottom:844.845000px;}
.y1a{bottom:848.265000px;}
.y1a4{bottom:850.245000px;}
.ya0{bottom:853.305000px;}
.yfc{bottom:854.385000px;}
.y12f{bottom:858.525000px;}
.y5c{bottom:861.585000px;}
.y19{bottom:862.125000px;}
.y1a3{bottom:867.525000px;}
.y9f{bottom:870.585000px;}
.y12e{bottom:875.625000px;}
.y18{bottom:878.505000px;}
.y5b{bottom:878.685000px;}
.y8b{bottom:879.405000px;}
.y1a2{bottom:884.805000px;}
.y9e{bottom:887.685000px;}
.y17{bottom:892.905000px;}
.y5a{bottom:895.965000px;}
.y8a{bottom:896.685000px;}
.y1a1{bottom:902.085000px;}
.y9d{bottom:904.965000px;}
.y12d{bottom:909.330000px;}
.y16{bottom:909.870000px;}
.yd3{bottom:913.110000px;}
.y173{bottom:913.290000px;}
.y89{bottom:914.010000px;}
.yfa{bottom:917.430000px;}
.y59{bottom:917.790000px;}
.y1a0{bottom:919.230000px;}
.y9c{bottom:922.290000px;}
.y15{bottom:925.710000px;}
.y172{bottom:930.570000px;}
.y88{bottom:931.110000px;}
.y15f{bottom:934.560000px;}
.y19f{bottom:936.510000px;}
.y12c{bottom:936.690000px;}
.y58{bottom:939.570000px;}
.y14{bottom:942.990000px;}
.y171{bottom:947.850000px;}
.y87{bottom:948.390000px;}
.y19e{bottom:953.790000px;}
.y12b{bottom:954.690000px;}
.y161{bottom:955.950000px;}
.y57{bottom:956.850000px;}
.y165{bottom:963.870000px;}
.y170{bottom:965.130000px;}
.y86{bottom:966.750000px;}
.y19d{bottom:971.070000px;}
.y56{bottom:974.130000px;}
.y13{bottom:977.550000px;}
.yf5{bottom:980.250000px;}
.y16f{bottom:982.230000px;}
.y85{bottom:985.110000px;}
.y19c{bottom:988.350000px;}
.y12a{bottom:990.870000px;}
.y55{bottom:991.230000px;}
.y12{bottom:995.550000px;}
.y16e{bottom:999.510000px;}
.y84{bottom:1003.470000px;}
.y19b{bottom:1005.630000px;}
.y54{bottom:1008.510000px;}
.y11{bottom:1016.250000px;}
.y16d{bottom:1016.790000px;}
.y83{bottom:1021.650000px;}
.y19a{bottom:1022.730000px;}
.y53{bottom:1025.790000px;}
.y16c{bottom:1034.070000px;}
.y10{bottom:1036.950000px;}
.y82{bottom:1040.010000px;}
.y52{bottom:1043.070000px;}
.y15a{bottom:1047.570000px;}
.yc9{bottom:1050.090000px;}
.y129{bottom:1051.170000px;}
.y16b{bottom:1051.350000px;}
.y81{bottom:1057.290000px;}
.yf{bottom:1057.650000px;}
.y51{bottom:1060.350000px;}
.y16a{bottom:1068.630000px;}
.y80{bottom:1074.570000px;}
.y128{bottom:1075.470000px;}
.y50{bottom:1077.630000px;}
.ye{bottom:1078.350000px;}
.y169{bottom:1085.730000px;}
.y7f{bottom:1091.850000px;}
.y4f{bottom:1094.730000px;}
.yd{bottom:1097.610000px;}
.y127{bottom:1099.590000px;}
.y168{bottom:1107.510000px;}
.y7e{bottom:1109.130000px;}
.yc{bottom:1112.010000px;}
.y15b{bottom:1115.820000px;}
.y126{bottom:1123.710000px;}
.y7d{bottom:1126.230000px;}
.y164{bottom:1128.390000px;}
.yb{bottom:1129.290000px;}
.y15d{bottom:1136.130000px;}
.y7c{bottom:1143.510000px;}
.y163{bottom:1143.870000px;}
.ya{bottom:1146.570000px;}
.y9{bottom:1163.880000px;}
.y4{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h29{height:5.653125px;}
.h26{height:15.480000px;}
.h1a{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h4{height:27.210938px;}
.h1f{height:30.240000px;}
.h5{height:32.835938px;}
.h3{height:33.011719px;}
.h34{height:35.280000px;}
.h19{height:35.332031px;}
.h16{height:38.089687px;}
.h27{height:40.985156px;}
.h12{height:42.516211px;}
.h32{height:44.507812px;}
.h25{height:45.180000px;}
.h1d{height:46.620000px;}
.h11{height:47.321367px;}
.h6{height:47.344922px;}
.h1c{height:47.592773px;}
.h2b{height:47.719687px;}
.h2f{height:48.616875px;}
.h9{height:50.068125px;}
.h2a{height:50.400000px;}
.h2d{height:50.580000px;}
.h13{height:52.669336px;}
.h2e{height:52.740000px;}
.h2c{height:52.920000px;}
.h30{height:52.971680px;}
.h10{height:52.998047px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.h21{height:60.120000px;}
.he{height:60.226875px;}
.h23{height:60.300000px;}
.h17{height:60.741562px;}
.h18{height:61.423863px;}
.h1b{height:62.100000px;}
.h1e{height:62.136000px;}
.hc{height:62.261719px;}
.h14{height:63.180000px;}
.ha{height:65.884219px;}
.hd{height:72.562500px;}
.h20{height:75.240000px;}
.h22{height:75.276000px;}
.h24{height:75.456000px;}
.h31{height:77.580000px;}
.h33{height:77.616000px;}
.h28{height:82.676953px;}
.h15{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.240000px;}
.w7{width:62.100000px;}
.w1b{width:84.960000px;}
.wc{width:136.800000px;}
.w18{width:145.800000px;}
.w16{width:147.060000px;}
.w9{width:157.530000px;}
.wf{width:161.280000px;}
.w12{width:161.670000px;}
.w13{width:162.360000px;}
.w10{width:173.910000px;}
.w11{width:179.850000px;}
.w19{width:192.240000px;}
.w17{width:192.420000px;}
.w2{width:228.990000px;}
.w15{width:234.570000px;}
.we{width:245.010000px;}
.wa{width:253.110000px;}
.w8{width:269.670000px;}
.w14{width:280.335000px;}
.wd{width:295.455000px;}
.w4{width:434.415000px;}
.w1c{width:595.545000px;}
.w6{width:680.325000px;}
.wb{width:682.125000px;}
.w1a{width:682.485000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:1.980000px;}
.x4d{left:5.220000px;}
.x2{left:8.100000px;}
.x4{left:9.360000px;}
.x24{left:10.440000px;}
.x39{left:13.755000px;}
.x45{left:19.545000px;}
.x2b{left:23.940000px;}
.x27{left:25.605000px;}
.x35{left:27.936000px;}
.x3e{left:29.415000px;}
.x47{left:33.585000px;}
.x1f{left:36.720000px;}
.x17{left:37.800000px;}
.x40{left:40.755000px;}
.x19{left:50.040000px;}
.x29{left:51.150000px;}
.x37{left:55.470000px;}
.x25{left:63.714000px;}
.x4b{left:74.334000px;}
.x2f{left:75.420000px;}
.x23{left:77.220000px;}
.x6{left:79.020000px;}
.x2d{left:93.825000px;}
.x15{left:95.796000px;}
.x21{left:102.645000px;}
.x1{left:104.256000px;}
.x8{left:106.415987px;}
.x34{left:113.940000px;}
.x14{left:127.655987px;}
.x36{left:129.635987px;}
.x41{left:131.255987px;}
.x49{left:133.415987px;}
.x32{left:151.949987px;}
.x13{left:157.889987px;}
.x30{left:159.509987px;}
.x12{left:162.929987px;}
.xe{left:172.289987px;}
.xa{left:174.809987px;}
.x4c{left:199.470000px;}
.xd{left:201.269987px;}
.x1c{left:238.529987px;}
.x20{left:244.830000px;}
.x1e{left:261.569987px;}
.x26{left:269.130000px;}
.x2c{left:270.390000px;}
.x3d{left:271.620000px;}
.xb{left:293.114987px;}
.x3f{left:294.914987px;}
.x33{left:300.134987px;}
.x9{left:327.279000px;}
.x1a{left:328.719000px;}
.x3{left:333.255000px;}
.x1d{left:335.594987px;}
.x38{left:343.800000px;}
.x5{left:354.495000px;}
.x3a{left:356.114987px;}
.x16{left:376.095000px;}
.x48{left:418.574987px;}
.x28{left:443.775000px;}
.xc{left:446.474987px;}
.xf{left:448.814987px;}
.x43{left:455.474987px;}
.x42{left:468.794987px;}
.x31{left:473.114987px;}
.x18{left:533.625000px;}
.x22{left:541.005000px;}
.x2e{left:551.445000px;}
.x44{left:585.360000px;}
.x10{left:596.984987px;}
.x46{left:621.104987px;}
.x2a{left:624.345000px;}
.x3b{left:625.604987px;}
.x3c{left:629.384987px;}
.x11{left:661.244987px;}
.x1b{left:777.389987px;}
.x7{left:786.749987px;}
@media print{
.v2{vertical-align:-85.760000pt;}
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-0.656000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.400533pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.259200pt;}
.ls1b{letter-spacing:-0.216533pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.116480pt;}
.ls26{letter-spacing:0.133120pt;}
.lsd{letter-spacing:0.137600pt;}
.ls7{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.544000pt;}
.ls24{letter-spacing:0.592000pt;}
.ls16{letter-spacing:1.096320pt;}
.ls10{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:4.640000pt;}
.ls1a{letter-spacing:5.280000pt;}
.lse{letter-spacing:7.632640pt;}
.lsb{letter-spacing:7.840000pt;}
.ls19{letter-spacing:11.040000pt;}
.lsc{letter-spacing:12.320000pt;}
.ls22{letter-spacing:14.672640pt;}
.lsa{letter-spacing:14.880000pt;}
.lsf{letter-spacing:22.560000pt;}
.ls14{letter-spacing:25.760000pt;}
.ls13{letter-spacing:34.080000pt;}
.ls20{letter-spacing:40.891307pt;}
.ls25{letter-spacing:55.840000pt;}
.ls27{letter-spacing:79.520000pt;}
.ls1c{letter-spacing:221.578667pt;}
.ls1{letter-spacing:248.586667pt;}
.ls18{letter-spacing:391.818667pt;}
.ls1e{letter-spacing:1132.298667pt;}
.ls1d{letter-spacing:1285.098667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws7{word-spacing:-14.955520pt;}
.wsf{word-spacing:-13.872000pt;}
.wse{word-spacing:-13.824000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.417600pt;}
.ws9{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.800000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.984000pt;}
.ws13{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.520000pt;}
.ws11{word-spacing:-11.344000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:-8.945920pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-3.543680pt;}
._7{margin-left:-2.154240pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.969600pt;}
._2{width:2.109867pt;}
._3{width:3.073493pt;}
._6{width:4.286720pt;}
._4{width:5.740800pt;}
._5{width:6.780160pt;}
._1d{width:7.674027pt;}
._8{width:8.618880pt;}
._e{width:9.565867pt;}
._11{width:11.107840pt;}
._a{width:12.220160pt;}
._26{width:13.263360pt;}
._12{width:14.250880pt;}
._10{width:15.338240pt;}
._f{width:16.520320pt;}
._b{width:18.113920pt;}
._c{width:19.282560pt;}
._1b{width:20.398080pt;}
._1a{width:21.301120pt;}
._15{width:22.416640pt;}
._18{width:23.466880pt;}
._17{width:24.541440pt;}
._20{width:25.922560pt;}
._14{width:26.931840pt;}
._16{width:27.821440pt;}
._22{width:29.481600pt;}
._d{width:30.862720pt;}
._1c{width:31.956480pt;}
._13{width:33.080320pt;}
._1e{width:34.581120pt;}
._24{width:36.227840pt;}
._1f{width:40.371200pt;}
._19{width:41.646080pt;}
._21{width:43.452160pt;}
._23{width:47.117440pt;}
._25{width:55.744000pt;}
._28{width:78.688000pt;}
._27{width:79.680000pt;}
.fsa{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1dd{bottom:2.240000pt;}
.yb9{bottom:2.560000pt;}
.y106{bottom:2.586667pt;}
.yb3{bottom:2.720000pt;}
.y4e{bottom:3.840000pt;}
.y4c{bottom:4.160000pt;}
.y15e{bottom:4.293333pt;}
.y162{bottom:5.253333pt;}
.y7{bottom:5.600000pt;}
.y4d{bottom:5.760000pt;}
.y2{bottom:6.240000pt;}
.yd1{bottom:9.120000pt;}
.yca{bottom:9.280000pt;}
.yf7{bottom:9.440000pt;}
.y102{bottom:9.466667pt;}
.ybb{bottom:9.600000pt;}
.y3{bottom:10.720000pt;}
.y166{bottom:11.973333pt;}
.y1de{bottom:14.720000pt;}
.ycd{bottom:15.840000pt;}
.ycb{bottom:16.000000pt;}
.yf9{bottom:16.320000pt;}
.y105{bottom:16.346667pt;}
.yb8{bottom:16.480000pt;}
.yd0{bottom:22.560000pt;}
.yf6{bottom:23.200000pt;}
.yb5{bottom:23.360000pt;}
.y100{bottom:23.386667pt;}
.y8{bottom:29.280000pt;}
.yf8{bottom:30.080000pt;}
.y1db{bottom:30.106667pt;}
.yb7{bottom:30.240000pt;}
.y104{bottom:30.266667pt;}
.y15c{bottom:31.840000pt;}
.y167{bottom:32.773333pt;}
.y160{bottom:32.933333pt;}
.ycf{bottom:36.000000pt;}
.yfb{bottom:36.960000pt;}
.yba{bottom:37.120000pt;}
.y101{bottom:37.146667pt;}
.ycc{bottom:42.720000pt;}
.yd8{bottom:42.746667pt;}
.y6{bottom:43.200000pt;}
.yb6{bottom:44.000000pt;}
.y103{bottom:44.026667pt;}
.yce{bottom:49.440000pt;}
.yd2{bottom:56.160000pt;}
.yd9{bottom:56.186667pt;}
.y1d6{bottom:57.760000pt;}
.y1da{bottom:57.786667pt;}
.y5{bottom:64.800000pt;}
.y9b{bottom:79.520000pt;}
.yc8{bottom:80.480000pt;}
.y7b{bottom:83.040000pt;}
.y1df{bottom:83.680000pt;}
.yf4{bottom:84.160000pt;}
.y1dc{bottom:84.800000pt;}
.y159{bottom:88.320000pt;}
.y1c6{bottom:91.040000pt;}
.y4a{bottom:91.200000pt;}
.y199{bottom:91.840000pt;}
.y125{bottom:92.000000pt;}
.y9a{bottom:94.880000pt;}
.yc7{bottom:95.840000pt;}
.yf3{bottom:99.520000pt;}
.y7a{bottom:102.400000pt;}
.y158{bottom:103.680000pt;}
.y1c5{bottom:106.400000pt;}
.y49{bottom:106.560000pt;}
.y124{bottom:107.360000pt;}
.y99{bottom:110.080000pt;}
.yc6{bottom:111.200000pt;}
.yf2{bottom:114.880000pt;}
.y157{bottom:119.040000pt;}
.y48{bottom:121.760000pt;}
.y123{bottom:122.720000pt;}
.y98{bottom:125.440000pt;}
.yc5{bottom:126.560000pt;}
.yf1{bottom:130.240000pt;}
.y156{bottom:134.400000pt;}
.y47{bottom:137.120000pt;}
.y122{bottom:138.080000pt;}
.y198{bottom:140.640000pt;}
.y97{bottom:140.800000pt;}
.yc4{bottom:141.760000pt;}
.yf0{bottom:145.440000pt;}
.y1d9{bottom:146.880000pt;}
.y155{bottom:149.760000pt;}
.y46{bottom:152.480000pt;}
.y121{bottom:153.280000pt;}
.y96{bottom:156.160000pt;}
.yc3{bottom:157.120000pt;}
.yef{bottom:160.800000pt;}
.y154{bottom:164.986667pt;}
.y79{bottom:167.706667pt;}
.y45{bottom:167.866667pt;}
.y120{bottom:168.666667pt;}
.y95{bottom:171.546667pt;}
.yc2{bottom:172.506667pt;}
.yee{bottom:176.186667pt;}
.y153{bottom:180.346667pt;}
.y78{bottom:183.066667pt;}
.y44{bottom:183.226667pt;}
.y11f{bottom:184.026667pt;}
.y94{bottom:186.746667pt;}
.yc1{bottom:187.866667pt;}
.y197{bottom:189.306667pt;}
.yed{bottom:191.546667pt;}
.y152{bottom:195.706667pt;}
.y77{bottom:198.426667pt;}
.y43{bottom:198.586667pt;}
.y11e{bottom:199.386667pt;}
.y93{bottom:202.106667pt;}
.y196{bottom:204.506667pt;}
.yec{bottom:206.906667pt;}
.y151{bottom:211.066667pt;}
.yc0{bottom:212.346667pt;}
.y42{bottom:213.786667pt;}
.y11d{bottom:214.746667pt;}
.y1d8{bottom:215.866667pt;}
.y92{bottom:216.506667pt;}
.y195{bottom:219.866667pt;}
.yeb{bottom:222.266667pt;}
.ybf{bottom:225.466667pt;}
.y150{bottom:226.426667pt;}
.y91{bottom:226.746667pt;}
.y41{bottom:229.146667pt;}
.y1d7{bottom:229.626667pt;}
.y11c{bottom:230.106667pt;}
.y194{bottom:235.226667pt;}
.yea{bottom:237.466667pt;}
.y14f{bottom:241.786667pt;}
.y90{bottom:241.946667pt;}
.y1d5{bottom:243.386667pt;}
.y40{bottom:244.506667pt;}
.y11b{bottom:245.306667pt;}
.y193{bottom:250.586667pt;}
.ye9{bottom:252.826667pt;}
.y8f{bottom:256.666667pt;}
.y14e{bottom:256.986667pt;}
.y76{bottom:259.706667pt;}
.y3f{bottom:259.866667pt;}
.y11a{bottom:260.666667pt;}
.y1c4{bottom:265.146667pt;}
.y192{bottom:265.946667pt;}
.y8e{bottom:266.746667pt;}
.ye8{bottom:268.186667pt;}
.y14d{bottom:272.346667pt;}
.y75{bottom:275.066667pt;}
.y3e{bottom:275.226667pt;}
.y119{bottom:276.026667pt;}
.y1c3{bottom:280.506667pt;}
.ybe{bottom:281.306667pt;}
.ye7{bottom:283.546667pt;}
.y14c{bottom:287.706667pt;}
.y3d{bottom:290.426667pt;}
.y118{bottom:291.386667pt;}
.y1c2{bottom:295.706667pt;}
.y191{bottom:296.506667pt;}
.ye6{bottom:298.906667pt;}
.y14b{bottom:303.066667pt;}
.y3c{bottom:305.786667pt;}
.y117{bottom:306.746667pt;}
.y1c1{bottom:311.066667pt;}
.y190{bottom:311.866667pt;}
.y1d4{bottom:312.346667pt;}
.ye5{bottom:314.266667pt;}
.y14a{bottom:318.426667pt;}
.y3b{bottom:321.146667pt;}
.y116{bottom:322.106667pt;}
.ybd{bottom:323.386667pt;}
.y1c0{bottom:326.426667pt;}
.y18f{bottom:327.226667pt;}
.y1d3{bottom:329.146667pt;}
.ye4{bottom:329.466667pt;}
.y149{bottom:333.626667pt;}
.y3a{bottom:336.506667pt;}
.y115{bottom:337.306667pt;}
.y1bf{bottom:341.786667pt;}
.y18e{bottom:342.586667pt;}
.y1d2{bottom:344.506667pt;}
.ye3{bottom:344.826667pt;}
.y148{bottom:348.986667pt;}
.y74{bottom:351.706667pt;}
.y39{bottom:351.866667pt;}
.y114{bottom:352.666667pt;}
.y1be{bottom:357.146667pt;}
.y18d{bottom:357.946667pt;}
.y1d1{bottom:359.706667pt;}
.ye2{bottom:360.186667pt;}
.y147{bottom:364.346667pt;}
.y73{bottom:367.066667pt;}
.y38{bottom:367.226667pt;}
.y113{bottom:368.026667pt;}
.y1bd{bottom:372.506667pt;}
.y18c{bottom:373.306667pt;}
.y1d0{bottom:375.066667pt;}
.ye1{bottom:375.546667pt;}
.ybc{bottom:379.266667pt;}
.y146{bottom:379.746667pt;}
.y37{bottom:382.466667pt;}
.y112{bottom:383.426667pt;}
.y1bc{bottom:387.746667pt;}
.y18b{bottom:388.546667pt;}
.y4b{bottom:388.706667pt;}
.y1cf{bottom:390.466667pt;}
.ye0{bottom:390.946667pt;}
.y145{bottom:395.106667pt;}
.y36{bottom:397.826667pt;}
.y111{bottom:398.786667pt;}
.y1bb{bottom:403.106667pt;}
.y18a{bottom:403.906667pt;}
.y1ce{bottom:405.826667pt;}
.ydf{bottom:406.146667pt;}
.y144{bottom:410.466667pt;}
.y35{bottom:413.186667pt;}
.y110{bottom:413.986667pt;}
.y1ba{bottom:418.466667pt;}
.y189{bottom:419.266667pt;}
.y1cd{bottom:421.186667pt;}
.yb4{bottom:421.346667pt;}
.yde{bottom:421.506667pt;}
.y143{bottom:425.666667pt;}
.y72{bottom:428.386667pt;}
.y34{bottom:428.546667pt;}
.y10f{bottom:429.346667pt;}
.y1b9{bottom:433.826667pt;}
.y188{bottom:434.626667pt;}
.ydd{bottom:435.906667pt;}
.y1cc{bottom:436.386667pt;}
.y142{bottom:441.026667pt;}
.y71{bottom:443.746667pt;}
.y33{bottom:443.906667pt;}
.y10e{bottom:444.706667pt;}
.ydc{bottom:446.146667pt;}
.y1b8{bottom:449.186667pt;}
.y187{bottom:449.986667pt;}
.y1cb{bottom:451.746667pt;}
.y141{bottom:456.386667pt;}
.y70{bottom:459.106667pt;}
.ydb{bottom:459.266667pt;}
.y32{bottom:459.426667pt;}
.y10d{bottom:460.066667pt;}
.y1b7{bottom:464.386667pt;}
.y186{bottom:465.186667pt;}
.y1ca{bottom:467.106667pt;}
.y31{bottom:471.746667pt;}
.y6f{bottom:474.466667pt;}
.y10c{bottom:475.426667pt;}
.yb2{bottom:477.186667pt;}
.y1b6{bottom:479.746667pt;}
.y185{bottom:480.546667pt;}
.y1c9{bottom:482.466667pt;}
.y30{bottom:484.066667pt;}
.y140{bottom:487.106667pt;}
.y6e{bottom:489.826667pt;}
.y10b{bottom:490.786667pt;}
.y1b5{bottom:495.106667pt;}
.y184{bottom:495.906667pt;}
.y2f{bottom:496.386667pt;}
.y1c8{bottom:497.826667pt;}
.y13f{bottom:502.466667pt;}
.yb1{bottom:503.906667pt;}
.y6d{bottom:505.186667pt;}
.y10a{bottom:505.986667pt;}
.y2e{bottom:508.546667pt;}
.y1b4{bottom:510.466667pt;}
.y183{bottom:511.266667pt;}
.y1c7{bottom:513.186667pt;}
.yda{bottom:513.506667pt;}
.y13e{bottom:517.666667pt;}
.yb0{bottom:518.146667pt;}
.y6c{bottom:520.386667pt;}
.y2d{bottom:520.866667pt;}
.y109{bottom:521.346667pt;}
.y1b3{bottom:525.826667pt;}
.y182{bottom:526.626667pt;}
.yaf{bottom:528.386667pt;}
.y13d{bottom:533.026667pt;}
.y2c{bottom:533.186667pt;}
.y6b{bottom:535.746667pt;}
.y108{bottom:536.706667pt;}
.y1b2{bottom:541.186667pt;}
.y181{bottom:541.986667pt;}
.yae{bottom:543.746667pt;}
.y2b{bottom:545.346667pt;}
.y13c{bottom:548.386667pt;}
.y107{bottom:549.826667pt;}
.y6a{bottom:551.106667pt;}
.yd7{bottom:554.306667pt;}
.y1b1{bottom:556.386667pt;}
.y180{bottom:557.186667pt;}
.y2a{bottom:557.666667pt;}
.yad{bottom:559.106667pt;}
.y13b{bottom:563.746667pt;}
.y69{bottom:566.466667pt;}
.y29{bottom:569.986667pt;}
.y1b0{bottom:571.746667pt;}
.y17f{bottom:572.546667pt;}
.yac{bottom:574.466667pt;}
.y13a{bottom:579.106667pt;}
.y68{bottom:581.826667pt;}
.y28{bottom:582.146667pt;}
.y1af{bottom:587.106667pt;}
.y17e{bottom:587.906667pt;}
.yab{bottom:589.826667pt;}
.yff{bottom:591.906667pt;}
.y139{bottom:594.333333pt;}
.y27{bottom:594.493333pt;}
.y67{bottom:597.213333pt;}
.y1ae{bottom:602.493333pt;}
.y17d{bottom:603.293333pt;}
.yaa{bottom:605.213333pt;}
.y26{bottom:606.813333pt;}
.y138{bottom:609.693333pt;}
.y66{bottom:612.413333pt;}
.y1ad{bottom:617.853333pt;}
.y17c{bottom:618.653333pt;}
.y25{bottom:618.973333pt;}
.ya9{bottom:620.413333pt;}
.yd6{bottom:622.013333pt;}
.y137{bottom:625.053333pt;}
.y65{bottom:627.773333pt;}
.y24{bottom:631.293333pt;}
.y1ac{bottom:633.213333pt;}
.y17b{bottom:634.013333pt;}
.ya8{bottom:635.773333pt;}
.y136{bottom:640.413333pt;}
.y64{bottom:643.133333pt;}
.y23{bottom:643.613333pt;}
.yfe{bottom:647.773333pt;}
.y1ab{bottom:648.413333pt;}
.y17a{bottom:649.213333pt;}
.ya7{bottom:651.133333pt;}
.y22{bottom:655.773333pt;}
.y63{bottom:658.493333pt;}
.y1aa{bottom:663.773333pt;}
.y179{bottom:664.573333pt;}
.ya6{bottom:666.493333pt;}
.y21{bottom:668.093333pt;}
.y135{bottom:671.133333pt;}
.y62{bottom:673.853333pt;}
.y1a9{bottom:679.133333pt;}
.y178{bottom:679.933333pt;}
.y20{bottom:680.413333pt;}
.ya5{bottom:681.853333pt;}
.y134{bottom:686.333333pt;}
.y61{bottom:689.213333pt;}
.yd5{bottom:689.693333pt;}
.y1f{bottom:692.573333pt;}
.y1a8{bottom:694.493333pt;}
.y177{bottom:695.293333pt;}
.ya4{bottom:697.213333pt;}
.y133{bottom:701.693333pt;}
.yfd{bottom:703.613333pt;}
.y60{bottom:704.413333pt;}
.y1e{bottom:704.893333pt;}
.y1a7{bottom:709.853333pt;}
.y176{bottom:710.013333pt;}
.ya3{bottom:712.413333pt;}
.y132{bottom:717.053333pt;}
.y1d{bottom:717.213333pt;}
.y5f{bottom:719.773333pt;}
.y175{bottom:722.813333pt;}
.y1a6{bottom:725.053333pt;}
.ya2{bottom:727.773333pt;}
.y1c{bottom:729.373333pt;}
.y131{bottom:732.413333pt;}
.y5e{bottom:735.133333pt;}
.y8d{bottom:735.613333pt;}
.y174{bottom:737.533333pt;}
.y1a5{bottom:740.413333pt;}
.y1b{bottom:741.693333pt;}
.ya1{bottom:743.133333pt;}
.yd4{bottom:743.933333pt;}
.y130{bottom:747.773333pt;}
.y5d{bottom:750.493333pt;}
.y8c{bottom:750.973333pt;}
.y1a{bottom:754.013333pt;}
.y1a4{bottom:755.773333pt;}
.ya0{bottom:758.493333pt;}
.yfc{bottom:759.453333pt;}
.y12f{bottom:763.133333pt;}
.y5c{bottom:765.853333pt;}
.y19{bottom:766.333333pt;}
.y1a3{bottom:771.133333pt;}
.y9f{bottom:773.853333pt;}
.y12e{bottom:778.333333pt;}
.y18{bottom:780.893333pt;}
.y5b{bottom:781.053333pt;}
.y8b{bottom:781.693333pt;}
.y1a2{bottom:786.493333pt;}
.y9e{bottom:789.053333pt;}
.y17{bottom:793.693333pt;}
.y5a{bottom:796.413333pt;}
.y8a{bottom:797.053333pt;}
.y1a1{bottom:801.853333pt;}
.y9d{bottom:804.413333pt;}
.y12d{bottom:808.293333pt;}
.y16{bottom:808.773333pt;}
.yd3{bottom:811.653333pt;}
.y173{bottom:811.813333pt;}
.y89{bottom:812.453333pt;}
.yfa{bottom:815.493333pt;}
.y59{bottom:815.813333pt;}
.y1a0{bottom:817.093333pt;}
.y9c{bottom:819.813333pt;}
.y15{bottom:822.853333pt;}
.y172{bottom:827.173333pt;}
.y88{bottom:827.653333pt;}
.y15f{bottom:830.720000pt;}
.y19f{bottom:832.453333pt;}
.y12c{bottom:832.613333pt;}
.y58{bottom:835.173333pt;}
.y14{bottom:838.213333pt;}
.y171{bottom:842.533333pt;}
.y87{bottom:843.013333pt;}
.y19e{bottom:847.813333pt;}
.y12b{bottom:848.613333pt;}
.y161{bottom:849.733333pt;}
.y57{bottom:850.533333pt;}
.y165{bottom:856.773333pt;}
.y170{bottom:857.893333pt;}
.y86{bottom:859.333333pt;}
.y19d{bottom:863.173333pt;}
.y56{bottom:865.893333pt;}
.y13{bottom:868.933333pt;}
.yf5{bottom:871.333333pt;}
.y16f{bottom:873.093333pt;}
.y85{bottom:875.653333pt;}
.y19c{bottom:878.533333pt;}
.y12a{bottom:880.773333pt;}
.y55{bottom:881.093333pt;}
.y12{bottom:884.933333pt;}
.y16e{bottom:888.453333pt;}
.y84{bottom:891.973333pt;}
.y19b{bottom:893.893333pt;}
.y54{bottom:896.453333pt;}
.y11{bottom:903.333333pt;}
.y16d{bottom:903.813333pt;}
.y83{bottom:908.133333pt;}
.y19a{bottom:909.093333pt;}
.y53{bottom:911.813333pt;}
.y16c{bottom:919.173333pt;}
.y10{bottom:921.733333pt;}
.y82{bottom:924.453333pt;}
.y52{bottom:927.173333pt;}
.y15a{bottom:931.173333pt;}
.yc9{bottom:933.413333pt;}
.y129{bottom:934.373333pt;}
.y16b{bottom:934.533333pt;}
.y81{bottom:939.813333pt;}
.yf{bottom:940.133333pt;}
.y51{bottom:942.533333pt;}
.y16a{bottom:949.893333pt;}
.y80{bottom:955.173333pt;}
.y128{bottom:955.973333pt;}
.y50{bottom:957.893333pt;}
.ye{bottom:958.533333pt;}
.y169{bottom:965.093333pt;}
.y7f{bottom:970.533333pt;}
.y4f{bottom:973.093333pt;}
.yd{bottom:975.653333pt;}
.y127{bottom:977.413333pt;}
.y168{bottom:984.453333pt;}
.y7e{bottom:985.893333pt;}
.yc{bottom:988.453333pt;}
.y15b{bottom:991.840000pt;}
.y126{bottom:998.853333pt;}
.y7d{bottom:1001.093333pt;}
.y164{bottom:1003.013333pt;}
.yb{bottom:1003.813333pt;}
.y15d{bottom:1009.893333pt;}
.y7c{bottom:1016.453333pt;}
.y163{bottom:1016.773333pt;}
.ya{bottom:1019.173333pt;}
.y9{bottom:1034.560000pt;}
.y4{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h29{height:5.025000pt;}
.h26{height:13.760000pt;}
.h1a{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h4{height:24.187500pt;}
.h1f{height:26.880000pt;}
.h5{height:29.187500pt;}
.h3{height:29.343750pt;}
.h34{height:31.360000pt;}
.h19{height:31.406250pt;}
.h16{height:33.857500pt;}
.h27{height:36.431250pt;}
.h12{height:37.792187pt;}
.h32{height:39.562500pt;}
.h25{height:40.160000pt;}
.h1d{height:41.440000pt;}
.h11{height:42.063437pt;}
.h6{height:42.084375pt;}
.h1c{height:42.304688pt;}
.h2b{height:42.417500pt;}
.h2f{height:43.215000pt;}
.h9{height:44.505000pt;}
.h2a{height:44.800000pt;}
.h2d{height:44.960000pt;}
.h13{height:46.817187pt;}
.h2e{height:46.880000pt;}
.h2c{height:47.040000pt;}
.h30{height:47.085938pt;}
.h10{height:47.109375pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.h21{height:53.440000pt;}
.he{height:53.535000pt;}
.h23{height:53.600000pt;}
.h17{height:53.992500pt;}
.h18{height:54.598989pt;}
.h1b{height:55.200000pt;}
.h1e{height:55.232000pt;}
.hc{height:55.343750pt;}
.h14{height:56.160000pt;}
.ha{height:58.563750pt;}
.hd{height:64.500000pt;}
.h20{height:66.880000pt;}
.h22{height:66.912000pt;}
.h24{height:67.072000pt;}
.h31{height:68.960000pt;}
.h33{height:68.992000pt;}
.h28{height:73.490625pt;}
.h15{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.880000pt;}
.w7{width:55.200000pt;}
.w1b{width:75.520000pt;}
.wc{width:121.600000pt;}
.w18{width:129.600000pt;}
.w16{width:130.720000pt;}
.w9{width:140.026667pt;}
.wf{width:143.360000pt;}
.w12{width:143.706667pt;}
.w13{width:144.320000pt;}
.w10{width:154.586667pt;}
.w11{width:159.866667pt;}
.w19{width:170.880000pt;}
.w17{width:171.040000pt;}
.w2{width:203.546667pt;}
.w15{width:208.506667pt;}
.we{width:217.786667pt;}
.wa{width:224.986667pt;}
.w8{width:239.706667pt;}
.w14{width:249.186667pt;}
.wd{width:262.626667pt;}
.w4{width:386.146667pt;}
.w1c{width:529.373333pt;}
.w6{width:604.733333pt;}
.wb{width:606.333333pt;}
.w1a{width:606.653333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:1.760000pt;}
.x4d{left:4.640000pt;}
.x2{left:7.200000pt;}
.x4{left:8.320000pt;}
.x24{left:9.280000pt;}
.x39{left:12.226667pt;}
.x45{left:17.373333pt;}
.x2b{left:21.280000pt;}
.x27{left:22.760000pt;}
.x35{left:24.832000pt;}
.x3e{left:26.146667pt;}
.x47{left:29.853333pt;}
.x1f{left:32.640000pt;}
.x17{left:33.600000pt;}
.x40{left:36.226667pt;}
.x19{left:44.480000pt;}
.x29{left:45.466667pt;}
.x37{left:49.306667pt;}
.x25{left:56.634667pt;}
.x4b{left:66.074667pt;}
.x2f{left:67.040000pt;}
.x23{left:68.640000pt;}
.x6{left:70.240000pt;}
.x2d{left:83.400000pt;}
.x15{left:85.152000pt;}
.x21{left:91.240000pt;}
.x1{left:92.672000pt;}
.x8{left:94.591988pt;}
.x34{left:101.280000pt;}
.x14{left:113.471988pt;}
.x36{left:115.231988pt;}
.x41{left:116.671988pt;}
.x49{left:118.591988pt;}
.x32{left:135.066655pt;}
.x13{left:140.346655pt;}
.x30{left:141.786655pt;}
.x12{left:144.826655pt;}
.xe{left:153.146655pt;}
.xa{left:155.386655pt;}
.x4c{left:177.306667pt;}
.xd{left:178.906655pt;}
.x1c{left:212.026655pt;}
.x20{left:217.626667pt;}
.x1e{left:232.506655pt;}
.x26{left:239.226667pt;}
.x2c{left:240.346667pt;}
.x3d{left:241.440000pt;}
.xb{left:260.546655pt;}
.x3f{left:262.146655pt;}
.x33{left:266.786655pt;}
.x9{left:290.914667pt;}
.x1a{left:292.194667pt;}
.x3{left:296.226667pt;}
.x1d{left:298.306655pt;}
.x38{left:305.600000pt;}
.x5{left:315.106667pt;}
.x3a{left:316.546655pt;}
.x16{left:334.306667pt;}
.x48{left:372.066655pt;}
.x28{left:394.466667pt;}
.xc{left:396.866655pt;}
.xf{left:398.946655pt;}
.x43{left:404.866655pt;}
.x42{left:416.706655pt;}
.x31{left:420.546655pt;}
.x18{left:474.333333pt;}
.x22{left:480.893333pt;}
.x2e{left:490.173333pt;}
.x44{left:520.320000pt;}
.x10{left:530.653322pt;}
.x46{left:552.093322pt;}
.x2a{left:554.973333pt;}
.x3b{left:556.093322pt;}
.x3c{left:559.453322pt;}
.x11{left:587.773322pt;}
.x1b{left:691.013322pt;}
.x7{left:699.333322pt;}
}




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