
    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_146abd50d95425a1f588ec50.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_37545775d146628f5e5d19fd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_aaccdaf263009317f730b90a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7141d8f2d3016eb79f4da1d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065918;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_9ba8a086b67ac1ab55ef0864.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff336373d132e059813a8280.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986328;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_5810cfd71f2544404f379463.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4616b2bb7f5ed68182f0ca5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0a71faeb84886a62201cfa9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-62.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.lsd{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.450600px;}
.ls1c{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.226200px;}
.ls12{letter-spacing:-0.223800px;}
.lse{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls20{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.496080px;}
.ls15{letter-spacing:0.666000px;}
.ls1e{letter-spacing:0.774000px;}
.ls1d{letter-spacing:0.900000px;}
.ls17{letter-spacing:0.924000px;}
.ls10{letter-spacing:2.340000px;}
.ls1b{letter-spacing:3.780000px;}
.ls19{letter-spacing:8.100000px;}
.ls1f{letter-spacing:9.540000px;}
.ls1a{letter-spacing:12.420000px;}
.ls6{letter-spacing:13.140000px;}
.ls22{letter-spacing:45.540000px;}
.ls4{letter-spacing:66.960000px;}
.ls5{letter-spacing:67.680000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.865400px;}
.ws16{word-spacing:-15.864000px;}
.ws19{word-spacing:-15.714000px;}
.ws12{word-spacing:-15.606000px;}
.wse{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.ws1a{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.526600px;}
.ws0{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.241200px;}
.ws13{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.836200px;}
.ws15{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.wsc{word-spacing:0.000000px;}
.ws6{word-spacing:57.264960px;}
._19{margin-left:-4.212000px;}
._6{margin-left:-2.443680px;}
._1{margin-left:-1.127520px;}
._0{width:1.419840px;}
._2{width:3.172800px;}
._d{width:4.752000px;}
._f{width:5.817360px;}
._11{width:6.872400px;}
._18{width:8.029200px;}
._13{width:9.222480px;}
._12{width:10.717200px;}
._c{width:11.880000px;}
._14{width:13.326480px;}
._b{width:15.282000px;}
._a{width:16.841520px;}
._8{width:17.874000px;}
._9{width:19.548000px;}
._10{width:20.771040px;}
._4{width:21.841920px;}
._5{width:23.061120px;}
._16{width:26.992560px;}
._15{width:28.109280px;}
._17{width:29.115120px;}
._1c{width:30.331680px;}
._1b{width:44.911440px;}
._1a{width:46.020960px;}
._27{width:47.874000px;}
._1f{width:54.752400px;}
._21{width:56.103120px;}
._20{width:57.162960px;}
._24{width:61.216560px;}
._7{width:66.784320px;}
._22{width:71.202240px;}
._23{width:72.263520px;}
._1e{width:86.598720px;}
._1d{width:88.081200px;}
._25{width:146.794320px;}
._26{width:147.825360px;}
._e{width:1834.296000px;}
._3{width:2067.749280px;}
.fca{color:rgb(0,0,255);}
.fc9{color:transparent;}
.fc8{color:rgb(0,32,96);}
.fcb{color:rgb(238,0,0);}
.fc7{color:rgb(3,50,255);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(255,0,0);}
.fc6{color:rgb(166,166,166);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs8{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:2.865000px;}
.yaf{bottom:2.880000px;}
.yc4{bottom:4.125000px;}
.y48{bottom:4.320000px;}
.yc2{bottom:4.665000px;}
.yae{bottom:4.860000px;}
.yb5{bottom:5.040000px;}
.yac{bottom:5.220000px;}
.ydb{bottom:5.400000px;}
.y28{bottom:5.580000px;}
.yb2{bottom:5.760000px;}
.yc7{bottom:6.285000px;}
.ycd{bottom:6.645000px;}
.yd9{bottom:6.660000px;}
.yc9{bottom:6.825000px;}
.ycf{bottom:6.840000px;}
.yc0{bottom:12.405000px;}
.yaa{bottom:12.960000px;}
.yd7{bottom:15.480000px;}
.y3{bottom:18.000000px;}
.y47{bottom:18.180000px;}
.y87{bottom:18.900000px;}
.y4b{bottom:19.260000px;}
.y27{bottom:19.440000px;}
.yc1{bottom:20.145000px;}
.yab{bottom:20.700000px;}
.yd8{bottom:24.480000px;}
.y26{bottom:27.000000px;}
.y2{bottom:30.060000px;}
.y25{bottom:42.480000px;}
.y1{bottom:43.020000px;}
.y24{bottom:58.170000px;}
.y45{bottom:71.640000px;}
.yd3{bottom:71.820000px;}
.y23{bottom:73.650000px;}
.y179{bottom:78.660000px;}
.y84{bottom:79.740000px;}
.y146{bottom:80.100000px;}
.yd2{bottom:85.680000px;}
.y10f{bottom:86.040000px;}
.y1b3{bottom:87.300000px;}
.y22{bottom:89.130000px;}
.y44{bottom:91.440000px;}
.y178{bottom:95.580000px;}
.y83{bottom:97.020000px;}
.yd1{bottom:99.540000px;}
.y145{bottom:99.900000px;}
.y1b2{bottom:100.980000px;}
.y21{bottom:104.610000px;}
.y10e{bottom:105.840000px;}
.yd0{bottom:111.060000px;}
.y43{bottom:111.240000px;}
.y1f2{bottom:111.960000px;}
.y177{bottom:113.220000px;}
.y82{bottom:114.300000px;}
.y1b1{bottom:119.340000px;}
.y144{bottom:119.700000px;}
.y20{bottom:120.270000px;}
.y2a{bottom:124.050000px;}
.y10d{bottom:125.640000px;}
.y1f1{bottom:127.620000px;}
.y176{bottom:130.500000px;}
.y42{bottom:131.040000px;}
.y81{bottom:131.400000px;}
.y1b0{bottom:133.200000px;}
.yce{bottom:133.560000px;}
.y1f{bottom:135.750000px;}
.y143{bottom:139.500000px;}
.y1f0{bottom:143.100000px;}
.y10c{bottom:145.440000px;}
.y175{bottom:147.600000px;}
.y80{bottom:148.320000px;}
.y41{bottom:150.870000px;}
.y1e{bottom:151.230000px;}
.y1af{bottom:151.410000px;}
.ycc{bottom:156.285000px;}
.y1ef{bottom:158.610000px;}
.y142{bottom:159.330000px;}
.y174{bottom:164.910000px;}
.y10b{bottom:165.270000px;}
.y1d{bottom:166.710000px;}
.y7f{bottom:168.330000px;}
.y40{bottom:170.850000px;}
.y1ee{bottom:174.090000px;}
.ycb{bottom:178.785000px;}
.y141{bottom:179.310000px;}
.y173{bottom:181.830000px;}
.y1c{bottom:182.370000px;}
.y1ae{bottom:183.630000px;}
.y10a{bottom:185.250000px;}
.y7e{bottom:188.310000px;}
.y1ed{bottom:189.750000px;}
.y3f{bottom:190.650000px;}
.y1ad{bottom:197.310000px;}
.y1b{bottom:197.850000px;}
.y140{bottom:199.110000px;}
.y172{bottom:199.470000px;}
.yca{bottom:201.285000px;}
.y109{bottom:205.050000px;}
.y1ec{bottom:205.230000px;}
.y7d{bottom:208.110000px;}
.y3e{bottom:210.450000px;}
.y1ac{bottom:211.170000px;}
.y1a{bottom:213.330000px;}
.y171{bottom:216.750000px;}
.y13f{bottom:218.910000px;}
.y1eb{bottom:220.710000px;}
.yc8{bottom:223.965000px;}
.y108{bottom:224.850000px;}
.y7c{bottom:227.910000px;}
.y1ab{bottom:229.530000px;}
.y3d{bottom:230.250000px;}
.y170{bottom:234.030000px;}
.y19{bottom:235.290000px;}
.y1ea{bottom:236.190000px;}
.y13e{bottom:238.710000px;}
.y1aa{bottom:243.210000px;}
.y107{bottom:244.650000px;}
.yc6{bottom:246.465000px;}
.y7b{bottom:247.710000px;}
.y29{bottom:247.890000px;}
.y3c{bottom:250.050000px;}
.y16f{bottom:250.770000px;}
.y13d{bottom:258.510000px;}
.y1a9{bottom:261.570000px;}
.y106{bottom:264.450000px;}
.y1e9{bottom:267.330000px;}
.y7a{bottom:267.510000px;}
.y16e{bottom:268.050000px;}
.ybf{bottom:268.605000px;}
.y3b{bottom:270.030000px;}
.y1a8{bottom:275.430000px;}
.y13c{bottom:278.490000px;}
.y1e8{bottom:282.810000px;}
.y105{bottom:284.430000px;}
.yc3{bottom:284.985000px;}
.y16d{bottom:285.330000px;}
.y79{bottom:287.490000px;}
.y1a7{bottom:289.110000px;}
.y3a{bottom:289.830000px;}
.y13b{bottom:298.290000px;}
.y1e7{bottom:302.250000px;}
.y104{bottom:304.230000px;}
.y16c{bottom:306.570000px;}
.y78{bottom:307.290000px;}
.ybe{bottom:307.470000px;}
.y39{bottom:309.630000px;}
.y13a{bottom:318.090000px;}
.y1e6{bottom:319.350000px;}
.y1a6{bottom:321.330000px;}
.y103{bottom:324.030000px;}
.ybd{bottom:324.750000px;}
.y16b{bottom:326.730000px;}
.y77{bottom:327.090000px;}
.y38{bottom:329.430000px;}
.y1a5{bottom:335.010000px;}
.y139{bottom:337.890000px;}
.y1e5{bottom:339.150000px;}
.ybc{bottom:342.930000px;}
.y102{bottom:343.830000px;}
.y16a{bottom:344.010000px;}
.y76{bottom:346.890000px;}
.y37{bottom:349.230000px;}
.y1a4{bottom:353.370000px;}
.y138{bottom:357.690000px;}
.y1e4{bottom:360.390000px;}
.y169{bottom:361.290000px;}
.y101{bottom:363.630000px;}
.ybb{bottom:365.430000px;}
.y75{bottom:366.690000px;}
.y1a3{bottom:367.050000px;}
.y36{bottom:369.210000px;}
.y1e3{bottom:374.070000px;}
.y137{bottom:377.670000px;}
.y168{bottom:378.570000px;}
.yba{bottom:379.290000px;}
.y1a2{bottom:380.910000px;}
.y100{bottom:383.610000px;}
.y74{bottom:386.670000px;}
.y35{bottom:389.010000px;}
.y1e2{bottom:392.430000px;}
.yb9{bottom:392.970000px;}
.y167{bottom:395.670000px;}
.y136{bottom:397.470000px;}
.y1a1{bottom:399.315000px;}
.yff{bottom:403.455000px;}
.yb8{bottom:404.535000px;}
.y73{bottom:406.155000px;}
.y1e1{bottom:406.335000px;}
.y34{bottom:408.855000px;}
.y166{bottom:412.995000px;}
.y135{bottom:417.315000px;}
.y72{bottom:422.715000px;}
.yfe{bottom:423.255000px;}
.y1e0{bottom:424.515000px;}
.yb7{bottom:425.055000px;}
.y33{bottom:428.655000px;}
.y165{bottom:430.275000px;}
.y1a0{bottom:431.355000px;}
.y71{bottom:434.235000px;}
.y134{bottom:437.115000px;}
.y1df{bottom:438.375000px;}
.yfd{bottom:443.055000px;}
.yb6{bottom:444.135000px;}
.y19f{bottom:445.215000px;}
.y164{bottom:447.555000px;}
.y32{bottom:448.455000px;}
.y1de{bottom:452.235000px;}
.y70{bottom:454.035000px;}
.y133{bottom:456.915000px;}
.yfc{bottom:462.855000px;}
.y19e{bottom:463.395000px;}
.y163{bottom:464.475000px;}
.yb4{bottom:464.655000px;}
.y31{bottom:468.435000px;}
.y1dd{bottom:470.415000px;}
.y6f{bottom:473.835000px;}
.y132{bottom:476.895000px;}
.y19d{bottom:477.255000px;}
.y162{bottom:481.755000px;}
.yfb{bottom:482.835000px;}
.yb3{bottom:483.735000px;}
.y1dc{bottom:484.275000px;}
.y30{bottom:488.235000px;}
.y6e{bottom:493.815000px;}
.y19c{bottom:495.615000px;}
.y131{bottom:496.695000px;}
.y1db{bottom:498.135000px;}
.yfa{bottom:502.635000px;}
.y161{bottom:502.995000px;}
.yb1{bottom:504.255000px;}
.y2f{bottom:508.035000px;}
.y19b{bottom:509.295000px;}
.y6d{bottom:513.255000px;}
.y1da{bottom:516.315000px;}
.y130{bottom:516.495000px;}
.yf9{bottom:522.435000px;}
.yb0{bottom:524.595000px;}
.y160{bottom:525.495000px;}
.y19a{bottom:527.655000px;}
.y2e{bottom:527.835000px;}
.y6c{bottom:529.635000px;}
.y1d9{bottom:530.175000px;}
.y12f{bottom:536.295000px;}
.y6b{bottom:540.975000px;}
.y199{bottom:541.515000px;}
.yf8{bottom:542.235000px;}
.y1d8{bottom:544.035000px;}
.ya9{bottom:544.575000px;}
.y15f{bottom:545.295000px;}
.y2d{bottom:547.635000px;}
.y12e{bottom:556.095000px;}
.y198{bottom:559.695000px;}
.yad{bottom:560.775000px;}
.y6a{bottom:561.135000px;}
.yf7{bottom:562.035000px;}
.y1d7{bottom:562.215000px;}
.y15e{bottom:565.095000px;}
.y2c{bottom:567.255000px;}
.y197{bottom:573.555000px;}
.y12d{bottom:576.075000px;}
.y69{bottom:581.115000px;}
.yf6{bottom:582.015000px;}
.y15d{bottom:585.075000px;}
.ya8{bottom:586.875000px;}
.y2b{bottom:587.415000px;}
.y196{bottom:591.915000px;}
.y1d6{bottom:594.435000px;}
.y12c{bottom:595.875000px;}
.y68{bottom:600.915000px;}
.y18{bottom:601.095000px;}
.yf5{bottom:601.815000px;}
.y15c{bottom:604.875000px;}
.y195{bottom:605.595000px;}
.ya7{bottom:607.575000px;}
.y1d5{bottom:608.115000px;}
.y12b{bottom:615.675000px;}
.y67{bottom:620.715000px;}
.yf4{bottom:621.255000px;}
.y194{bottom:623.955000px;}
.y15b{bottom:624.675000px;}
.ya6{bottom:626.115000px;}
.y1d4{bottom:626.475000px;}
.y12a{bottom:635.475000px;}
.y193{bottom:637.815000px;}
.y1d3{bottom:640.335000px;}
.y66{bottom:640.515000px;}
.ya5{bottom:643.395000px;}
.yf3{bottom:643.935000px;}
.y15a{bottom:644.475000px;}
.y192{bottom:651.525000px;}
.y1d2{bottom:654.045000px;}
.y129{bottom:655.305000px;}
.y65{bottom:660.345000px;}
.ya4{bottom:660.705000px;}
.y159{bottom:664.305000px;}
.yf2{bottom:666.105000px;}
.y191{bottom:669.885000px;}
.y1d1{bottom:672.405000px;}
.y128{bottom:675.285000px;}
.ya3{bottom:677.985000px;}
.y64{bottom:679.965000px;}
.y190{bottom:683.745000px;}
.y158{bottom:684.285000px;}
.y1d0{bottom:686.265000px;}
.yf1{bottom:693.645000px;}
.y127{bottom:695.085000px;}
.ya2{bottom:695.265000px;}
.y18f{bottom:697.425000px;}
.y63{bottom:700.125000px;}
.y157{bottom:704.085000px;}
.y1cf{bottom:704.445000px;}
.yf0{bottom:705.165000px;}
.ya1{bottom:712.545000px;}
.y126{bottom:714.885000px;}
.y18e{bottom:715.785000px;}
.y1ce{bottom:718.305000px;}
.y62{bottom:719.925000px;}
.yef{bottom:723.165000px;}
.y156{bottom:723.885000px;}
.ya0{bottom:729.645000px;}
.y1cd{bottom:732.165000px;}
.y125{bottom:734.685000px;}
.y61{bottom:739.725000px;}
.yee{bottom:740.985000px;}
.y155{bottom:743.685000px;}
.y9f{bottom:746.925000px;}
.y18d{bottom:747.825000px;}
.y1cc{bottom:750.345000px;}
.y124{bottom:754.485000px;}
.yed{bottom:758.805000px;}
.y60{bottom:759.525000px;}
.y18c{bottom:761.685000px;}
.y154{bottom:763.485000px;}
.y9e{bottom:764.205000px;}
.y123{bottom:774.465000px;}
.yec{bottom:776.625000px;}
.y5f{bottom:779.505000px;}
.y18b{bottom:780.045000px;}
.y9d{bottom:781.485000px;}
.y1cb{bottom:782.565000px;}
.y153{bottom:783.465000px;}
.y18a{bottom:793.725000px;}
.y122{bottom:794.265000px;}
.yeb{bottom:794.445000px;}
.y1ca{bottom:796.245000px;}
.y9c{bottom:798.765000px;}
.y5e{bottom:799.305000px;}
.y152{bottom:803.265000px;}
.y189{bottom:807.585000px;}
.yea{bottom:812.265000px;}
.y121{bottom:814.065000px;}
.y1c9{bottom:814.605000px;}
.y9b{bottom:816.045000px;}
.y5d{bottom:819.105000px;}
.y151{bottom:823.065000px;}
.y188{bottom:825.945000px;}
.y1c8{bottom:828.285000px;}
.ye8{bottom:830.985000px;}
.y9a{bottom:833.145000px;}
.y120{bottom:833.865000px;}
.y5c{bottom:838.905000px;}
.y187{bottom:839.625000px;}
.y150{bottom:842.865000px;}
.y1c7{bottom:846.645000px;}
.y99{bottom:850.425000px;}
.ye9{bottom:851.505000px;}
.y186{bottom:853.485000px;}
.y11f{bottom:853.665000px;}
.y17{bottom:854.925000px;}
.y5b{bottom:858.345000px;}
.y1c6{bottom:860.505000px;}
.y14f{bottom:862.665000px;}
.y98{bottom:867.705000px;}
.y185{bottom:871.845000px;}
.y11e{bottom:873.645000px;}
.y16{bottom:873.825000px;}
.y5a{bottom:878.685000px;}
.y14e{bottom:882.645000px;}
.y97{bottom:884.985000px;}
.y184{bottom:885.525000px;}
.y15{bottom:887.325000px;}
.ye7{bottom:891.105000px;}
.y1c5{bottom:892.545000px;}
.y11d{bottom:893.445000px;}
.y14{bottom:895.605000px;}
.y59{bottom:898.530000px;}
.y96{bottom:902.310000px;}
.y14d{bottom:902.490000px;}
.y183{bottom:903.930000px;}
.y13{bottom:909.510000px;}
.y1c4{bottom:910.950000px;}
.ye6{bottom:912.930000px;}
.y11c{bottom:913.290000px;}
.y182{bottom:917.790000px;}
.y58{bottom:918.330000px;}
.y95{bottom:919.590000px;}
.y14c{bottom:922.290000px;}
.y12{bottom:923.370000px;}
.y1c3{bottom:924.630000px;}
.y181{bottom:931.470000px;}
.y11b{bottom:933.090000px;}
.ye5{bottom:935.430000px;}
.y94{bottom:936.690000px;}
.y11{bottom:937.050000px;}
.y57{bottom:938.130000px;}
.y14b{bottom:942.090000px;}
.y1c2{bottom:942.990000px;}
.y180{bottom:948.030000px;}
.ye4{bottom:949.290000px;}
.y10{bottom:950.910000px;}
.y11a{bottom:952.890000px;}
.y93{bottom:956.490000px;}
.y1c1{bottom:956.850000px;}
.y56{bottom:957.570000px;}
.y14a{bottom:961.890000px;}
.ye3{bottom:962.970000px;}
.yf{bottom:964.770000px;}
.y17f{bottom:968.010000px;}
.y119{bottom:972.870000px;}
.ye2{bottom:974.670000px;}
.y1c0{bottom:975.030000px;}
.y92{bottom:975.930000px;}
.y55{bottom:977.550000px;}
.ye{bottom:980.250000px;}
.y149{bottom:981.870000px;}
.y1bf{bottom:988.890000px;}
.y17e{bottom:990.330000px;}
.ye1{bottom:992.490000px;}
.y118{bottom:992.670000px;}
.yd{bottom:994.830000px;}
.y91{bottom:995.730000px;}
.y54{bottom:997.350000px;}
.y148{bottom:1001.670000px;}
.y1be{bottom:1007.250000px;}
.ye0{bottom:1010.310000px;}
.y117{bottom:1012.470000px;}
.y90{bottom:1013.550000px;}
.yc{bottom:1015.710000px;}
.y53{bottom:1018.770000px;}
.y1bd{bottom:1020.930000px;}
.y147{bottom:1021.470000px;}
.ydf{bottom:1028.130000px;}
.y8f{bottom:1030.830000px;}
.y116{bottom:1032.270000px;}
.yb{bottom:1038.390000px;}
.y1bc{bottom:1039.290000px;}
.y52{bottom:1041.270000px;}
.yde{bottom:1045.950000px;}
.y17d{bottom:1047.570000px;}
.y8e{bottom:1047.930000px;}
.y115{bottom:1052.070000px;}
.y1bb{bottom:1053.150000px;}
.y51{bottom:1061.070000px;}
.ydd{bottom:1063.770000px;}
.y8d{bottom:1064.850000px;}
.y17c{bottom:1065.210000px;}
.y1ba{bottom:1066.830000px;}
.ya{bottom:1071.150000px;}
.y114{bottom:1072.050000px;}
.y50{bottom:1081.050000px;}
.ydc{bottom:1081.770000px;}
.y8c{bottom:1082.490000px;}
.y1b9{bottom:1085.190000px;}
.y113{bottom:1091.850000px;}
.y1b8{bottom:1099.050000px;}
.y17b{bottom:1099.410000px;}
.y8b{bottom:1099.770000px;}
.yd6{bottom:1100.310000px;}
.y4f{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y112{bottom:1111.650000px;}
.y46{bottom:1112.730000px;}
.y8a{bottom:1117.050000px;}
.y1b7{bottom:1117.230000px;}
.y8{bottom:1117.950000px;}
.y4e{bottom:1120.650000px;}
.yda{bottom:1120.830000px;}
.y1b6{bottom:1131.090000px;}
.y111{bottom:1131.450000px;}
.y89{bottom:1134.330000px;}
.y4d{bottom:1140.450000px;}
.yd5{bottom:1143.330000px;}
.y1b5{bottom:1149.480000px;}
.y17a{bottom:1151.100000px;}
.y110{bottom:1151.280000px;}
.y88{bottom:1151.460000px;}
.y7{bottom:1155.960000px;}
.y4c{bottom:1160.280000px;}
.yd4{bottom:1160.460000px;}
.y1b4{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y86{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y4a{bottom:1178.460000px;}
.y85{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y49{bottom:1197.720000px;}
.h6{height:5.650313px;}
.h1d{height:15.465000px;}
.h2b{height:17.805000px;}
.h2d{height:17.820000px;}
.h23{height:17.985000px;}
.h2f{height:18.000000px;}
.h10{height:18.140625px;}
.h20{height:19.065000px;}
.h1c{height:19.245000px;}
.h2a{height:19.785000px;}
.h2e{height:19.800000px;}
.h1e{height:20.325000px;}
.h1f{height:20.505000px;}
.h24{height:21.405000px;}
.h25{height:22.485000px;}
.h28{height:22.498500px;}
.h26{height:22.665000px;}
.h27{height:22.716000px;}
.h17{height:23.307539px;}
.he{height:23.319141px;}
.h14{height:27.705000px;}
.h22{height:34.365000px;}
.h1a{height:35.445000px;}
.h2c{height:38.340000px;}
.h29{height:38.505000px;}
.h3{height:40.985156px;}
.h15{height:42.922699px;}
.h1b{height:45.905273px;}
.hd{height:47.321367px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h2{height:52.998047px;}
.h31{height:53.573906px;}
.h8{height:54.421875px;}
.h12{height:55.503472px;}
.h18{height:58.621992px;}
.h13{height:58.651172px;}
.h9{height:60.226875px;}
.h19{height:65.010937px;}
.hc{height:66.543750px;}
.h11{height:66.757500px;}
.h16{height:70.664062px;}
.h5{height:72.562500px;}
.h30{height:82.676953px;}
.h21{height:84.898125px;}
.ha{height:96.707109px;}
.hb{height:114.648750px;}
.hf{height:247.890000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:74.160000px;}
.w6{width:94.860000px;}
.w3{width:101.730000px;}
.w7{width:107.676000px;}
.wb{width:108.396000px;}
.wc{width:110.901000px;}
.w10{width:118.116000px;}
.w11{width:127.281000px;}
.w8{width:127.641000px;}
.we{width:187.759500px;}
.w5{width:194.959500px;}
.wa{width:195.319500px;}
.w9{width:204.150000px;}
.w12{width:221.790000px;}
.wd{width:222.690000px;}
.w4{width:232.050000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xc{left:-36.900000px;}
.xb{left:-19.800000px;}
.xa{left:-5.040000px;}
.x0{left:0.000000px;}
.x12{left:8.089500px;}
.x24{left:9.360000px;}
.x9{left:10.650000px;}
.x2d{left:15.300000px;}
.x19{left:17.805000px;}
.x15{left:18.900000px;}
.x2b{left:23.940000px;}
.x17{left:25.020000px;}
.x8{left:26.850000px;}
.x30{left:30.780000px;}
.x14{left:34.380000px;}
.x1c{left:36.360000px;}
.x20{left:40.680000px;}
.x7{left:42.510000px;}
.x1d{left:43.920000px;}
.x26{left:45.720000px;}
.x21{left:47.340000px;}
.x31{left:48.405000px;}
.x33{left:51.825000px;}
.x1e{left:53.625000px;}
.x28{left:55.425000px;}
.x32{left:56.520000px;}
.x6{left:58.710000px;}
.x1f{left:61.200000px;}
.x22{left:63.705000px;}
.x27{left:67.140000px;}
.x1b{left:69.840000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x23{left:86.760000px;}
.x29{left:96.120000px;}
.xd{left:108.036000px;}
.x34{left:113.076000px;}
.x35{left:158.250000px;}
.x2a{left:268.815000px;}
.x13{left:276.015000px;}
.x2c{left:342.975000px;}
.xf{left:359.715000px;}
.x16{left:370.875000px;}
.x11{left:398.055000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x2e{left:461.100000px;}
.x18{left:478.560000px;}
.x25{left:479.640000px;}
.x2f{left:588.390000px;}
.xe{left:590.370000px;}
.x1a{left:606.210000px;}
.x4{left:721.950000px;}
@media print{
.v3{vertical-align:-55.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.400533pt;}
.ls1c{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls12{letter-spacing:-0.198933pt;}
.lse{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls20{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.440960pt;}
.ls15{letter-spacing:0.592000pt;}
.ls1e{letter-spacing:0.688000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.821333pt;}
.ls10{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:3.360000pt;}
.ls19{letter-spacing:7.200000pt;}
.ls1f{letter-spacing:8.480000pt;}
.ls1a{letter-spacing:11.040000pt;}
.ls6{letter-spacing:11.680000pt;}
.ls22{letter-spacing:40.480000pt;}
.ls4{letter-spacing:59.520000pt;}
.ls5{letter-spacing:60.160000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws16{word-spacing:-14.101333pt;}
.ws19{word-spacing:-13.968000pt;}
.ws12{word-spacing:-13.872000pt;}
.wse{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.ws1a{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.232640pt;}
.ws18{word-spacing:-12.912533pt;}
.ws0{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.881067pt;}
.ws13{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.521067pt;}
.ws15{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.wsc{word-spacing:0.000000pt;}
.ws6{word-spacing:50.902187pt;}
._19{margin-left:-3.744000pt;}
._6{margin-left:-2.172160pt;}
._1{margin-left:-1.002240pt;}
._0{width:1.262080pt;}
._2{width:2.820267pt;}
._d{width:4.224000pt;}
._f{width:5.170987pt;}
._11{width:6.108800pt;}
._18{width:7.137067pt;}
._13{width:8.197760pt;}
._12{width:9.526400pt;}
._c{width:10.560000pt;}
._14{width:11.845760pt;}
._b{width:13.584000pt;}
._a{width:14.970240pt;}
._8{width:15.888000pt;}
._9{width:17.376000pt;}
._10{width:18.463147pt;}
._4{width:19.415040pt;}
._5{width:20.498773pt;}
._16{width:23.993387pt;}
._15{width:24.986027pt;}
._17{width:25.880107pt;}
._1c{width:26.961493pt;}
._1b{width:39.921280pt;}
._1a{width:40.907520pt;}
._27{width:42.554667pt;}
._1f{width:48.668800pt;}
._21{width:49.869440pt;}
._20{width:50.811520pt;}
._24{width:54.414720pt;}
._7{width:59.363840pt;}
._22{width:63.290880pt;}
._23{width:64.234240pt;}
._1e{width:76.976640pt;}
._1d{width:78.294400pt;}
._25{width:130.483840pt;}
._26{width:131.400320pt;}
._e{width:1630.485333pt;}
._3{width:1837.999360pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs8{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:2.546667pt;}
.yaf{bottom:2.560000pt;}
.yc4{bottom:3.666667pt;}
.y48{bottom:3.840000pt;}
.yc2{bottom:4.146667pt;}
.yae{bottom:4.320000pt;}
.yb5{bottom:4.480000pt;}
.yac{bottom:4.640000pt;}
.ydb{bottom:4.800000pt;}
.y28{bottom:4.960000pt;}
.yb2{bottom:5.120000pt;}
.yc7{bottom:5.586667pt;}
.ycd{bottom:5.906667pt;}
.yd9{bottom:5.920000pt;}
.yc9{bottom:6.066667pt;}
.ycf{bottom:6.080000pt;}
.yc0{bottom:11.026667pt;}
.yaa{bottom:11.520000pt;}
.yd7{bottom:13.760000pt;}
.y3{bottom:16.000000pt;}
.y47{bottom:16.160000pt;}
.y87{bottom:16.800000pt;}
.y4b{bottom:17.120000pt;}
.y27{bottom:17.280000pt;}
.yc1{bottom:17.906667pt;}
.yab{bottom:18.400000pt;}
.yd8{bottom:21.760000pt;}
.y26{bottom:24.000000pt;}
.y2{bottom:26.720000pt;}
.y25{bottom:37.760000pt;}
.y1{bottom:38.240000pt;}
.y24{bottom:51.706667pt;}
.y45{bottom:63.680000pt;}
.yd3{bottom:63.840000pt;}
.y23{bottom:65.466667pt;}
.y179{bottom:69.920000pt;}
.y84{bottom:70.880000pt;}
.y146{bottom:71.200000pt;}
.yd2{bottom:76.160000pt;}
.y10f{bottom:76.480000pt;}
.y1b3{bottom:77.600000pt;}
.y22{bottom:79.226667pt;}
.y44{bottom:81.280000pt;}
.y178{bottom:84.960000pt;}
.y83{bottom:86.240000pt;}
.yd1{bottom:88.480000pt;}
.y145{bottom:88.800000pt;}
.y1b2{bottom:89.760000pt;}
.y21{bottom:92.986667pt;}
.y10e{bottom:94.080000pt;}
.yd0{bottom:98.720000pt;}
.y43{bottom:98.880000pt;}
.y1f2{bottom:99.520000pt;}
.y177{bottom:100.640000pt;}
.y82{bottom:101.600000pt;}
.y1b1{bottom:106.080000pt;}
.y144{bottom:106.400000pt;}
.y20{bottom:106.906667pt;}
.y2a{bottom:110.266667pt;}
.y10d{bottom:111.680000pt;}
.y1f1{bottom:113.440000pt;}
.y176{bottom:116.000000pt;}
.y42{bottom:116.480000pt;}
.y81{bottom:116.800000pt;}
.y1b0{bottom:118.400000pt;}
.yce{bottom:118.720000pt;}
.y1f{bottom:120.666667pt;}
.y143{bottom:124.000000pt;}
.y1f0{bottom:127.200000pt;}
.y10c{bottom:129.280000pt;}
.y175{bottom:131.200000pt;}
.y80{bottom:131.840000pt;}
.y41{bottom:134.106667pt;}
.y1e{bottom:134.426667pt;}
.y1af{bottom:134.586667pt;}
.ycc{bottom:138.920000pt;}
.y1ef{bottom:140.986667pt;}
.y142{bottom:141.626667pt;}
.y174{bottom:146.586667pt;}
.y10b{bottom:146.906667pt;}
.y1d{bottom:148.186667pt;}
.y7f{bottom:149.626667pt;}
.y40{bottom:151.866667pt;}
.y1ee{bottom:154.746667pt;}
.ycb{bottom:158.920000pt;}
.y141{bottom:159.386667pt;}
.y173{bottom:161.626667pt;}
.y1c{bottom:162.106667pt;}
.y1ae{bottom:163.226667pt;}
.y10a{bottom:164.666667pt;}
.y7e{bottom:167.386667pt;}
.y1ed{bottom:168.666667pt;}
.y3f{bottom:169.466667pt;}
.y1ad{bottom:175.386667pt;}
.y1b{bottom:175.866667pt;}
.y140{bottom:176.986667pt;}
.y172{bottom:177.306667pt;}
.yca{bottom:178.920000pt;}
.y109{bottom:182.266667pt;}
.y1ec{bottom:182.426667pt;}
.y7d{bottom:184.986667pt;}
.y3e{bottom:187.066667pt;}
.y1ac{bottom:187.706667pt;}
.y1a{bottom:189.626667pt;}
.y171{bottom:192.666667pt;}
.y13f{bottom:194.586667pt;}
.y1eb{bottom:196.186667pt;}
.yc8{bottom:199.080000pt;}
.y108{bottom:199.866667pt;}
.y7c{bottom:202.586667pt;}
.y1ab{bottom:204.026667pt;}
.y3d{bottom:204.666667pt;}
.y170{bottom:208.026667pt;}
.y19{bottom:209.146667pt;}
.y1ea{bottom:209.946667pt;}
.y13e{bottom:212.186667pt;}
.y1aa{bottom:216.186667pt;}
.y107{bottom:217.466667pt;}
.yc6{bottom:219.080000pt;}
.y7b{bottom:220.186667pt;}
.y29{bottom:220.346667pt;}
.y3c{bottom:222.266667pt;}
.y16f{bottom:222.906667pt;}
.y13d{bottom:229.786667pt;}
.y1a9{bottom:232.506667pt;}
.y106{bottom:235.066667pt;}
.y1e9{bottom:237.626667pt;}
.y7a{bottom:237.786667pt;}
.y16e{bottom:238.266667pt;}
.ybf{bottom:238.760000pt;}
.y3b{bottom:240.026667pt;}
.y1a8{bottom:244.826667pt;}
.y13c{bottom:247.546667pt;}
.y1e8{bottom:251.386667pt;}
.y105{bottom:252.826667pt;}
.yc3{bottom:253.320000pt;}
.y16d{bottom:253.626667pt;}
.y79{bottom:255.546667pt;}
.y1a7{bottom:256.986667pt;}
.y3a{bottom:257.626667pt;}
.y13b{bottom:265.146667pt;}
.y1e7{bottom:268.666667pt;}
.y104{bottom:270.426667pt;}
.y16c{bottom:272.506667pt;}
.y78{bottom:273.146667pt;}
.ybe{bottom:273.306667pt;}
.y39{bottom:275.226667pt;}
.y13a{bottom:282.746667pt;}
.y1e6{bottom:283.866667pt;}
.y1a6{bottom:285.626667pt;}
.y103{bottom:288.026667pt;}
.ybd{bottom:288.666667pt;}
.y16b{bottom:290.426667pt;}
.y77{bottom:290.746667pt;}
.y38{bottom:292.826667pt;}
.y1a5{bottom:297.786667pt;}
.y139{bottom:300.346667pt;}
.y1e5{bottom:301.466667pt;}
.ybc{bottom:304.826667pt;}
.y102{bottom:305.626667pt;}
.y16a{bottom:305.786667pt;}
.y76{bottom:308.346667pt;}
.y37{bottom:310.426667pt;}
.y1a4{bottom:314.106667pt;}
.y138{bottom:317.946667pt;}
.y1e4{bottom:320.346667pt;}
.y169{bottom:321.146667pt;}
.y101{bottom:323.226667pt;}
.ybb{bottom:324.826667pt;}
.y75{bottom:325.946667pt;}
.y1a3{bottom:326.266667pt;}
.y36{bottom:328.186667pt;}
.y1e3{bottom:332.506667pt;}
.y137{bottom:335.706667pt;}
.y168{bottom:336.506667pt;}
.yba{bottom:337.146667pt;}
.y1a2{bottom:338.586667pt;}
.y100{bottom:340.986667pt;}
.y74{bottom:343.706667pt;}
.y35{bottom:345.786667pt;}
.y1e2{bottom:348.826667pt;}
.yb9{bottom:349.306667pt;}
.y167{bottom:351.706667pt;}
.y136{bottom:353.306667pt;}
.y1a1{bottom:354.946667pt;}
.yff{bottom:358.626667pt;}
.yb8{bottom:359.586667pt;}
.y73{bottom:361.026667pt;}
.y1e1{bottom:361.186667pt;}
.y34{bottom:363.426667pt;}
.y166{bottom:367.106667pt;}
.y135{bottom:370.946667pt;}
.y72{bottom:375.746667pt;}
.yfe{bottom:376.226667pt;}
.y1e0{bottom:377.346667pt;}
.yb7{bottom:377.826667pt;}
.y33{bottom:381.026667pt;}
.y165{bottom:382.466667pt;}
.y1a0{bottom:383.426667pt;}
.y71{bottom:385.986667pt;}
.y134{bottom:388.546667pt;}
.y1df{bottom:389.666667pt;}
.yfd{bottom:393.826667pt;}
.yb6{bottom:394.786667pt;}
.y19f{bottom:395.746667pt;}
.y164{bottom:397.826667pt;}
.y32{bottom:398.626667pt;}
.y1de{bottom:401.986667pt;}
.y70{bottom:403.586667pt;}
.y133{bottom:406.146667pt;}
.yfc{bottom:411.426667pt;}
.y19e{bottom:411.906667pt;}
.y163{bottom:412.866667pt;}
.yb4{bottom:413.026667pt;}
.y31{bottom:416.386667pt;}
.y1dd{bottom:418.146667pt;}
.y6f{bottom:421.186667pt;}
.y132{bottom:423.906667pt;}
.y19d{bottom:424.226667pt;}
.y162{bottom:428.226667pt;}
.yfb{bottom:429.186667pt;}
.yb3{bottom:429.986667pt;}
.y1dc{bottom:430.466667pt;}
.y30{bottom:433.986667pt;}
.y6e{bottom:438.946667pt;}
.y19c{bottom:440.546667pt;}
.y131{bottom:441.506667pt;}
.y1db{bottom:442.786667pt;}
.yfa{bottom:446.786667pt;}
.y161{bottom:447.106667pt;}
.yb1{bottom:448.226667pt;}
.y2f{bottom:451.586667pt;}
.y19b{bottom:452.706667pt;}
.y6d{bottom:456.226667pt;}
.y1da{bottom:458.946667pt;}
.y130{bottom:459.106667pt;}
.yf9{bottom:464.386667pt;}
.yb0{bottom:466.306667pt;}
.y160{bottom:467.106667pt;}
.y19a{bottom:469.026667pt;}
.y2e{bottom:469.186667pt;}
.y6c{bottom:470.786667pt;}
.y1d9{bottom:471.266667pt;}
.y12f{bottom:476.706667pt;}
.y6b{bottom:480.866667pt;}
.y199{bottom:481.346667pt;}
.yf8{bottom:481.986667pt;}
.y1d8{bottom:483.586667pt;}
.ya9{bottom:484.066667pt;}
.y15f{bottom:484.706667pt;}
.y2d{bottom:486.786667pt;}
.y12e{bottom:494.306667pt;}
.y198{bottom:497.506667pt;}
.yad{bottom:498.466667pt;}
.y6a{bottom:498.786667pt;}
.yf7{bottom:499.586667pt;}
.y1d7{bottom:499.746667pt;}
.y15e{bottom:502.306667pt;}
.y2c{bottom:504.226667pt;}
.y197{bottom:509.826667pt;}
.y12d{bottom:512.066667pt;}
.y69{bottom:516.546667pt;}
.yf6{bottom:517.346667pt;}
.y15d{bottom:520.066667pt;}
.ya8{bottom:521.666667pt;}
.y2b{bottom:522.146667pt;}
.y196{bottom:526.146667pt;}
.y1d6{bottom:528.386667pt;}
.y12c{bottom:529.666667pt;}
.y68{bottom:534.146667pt;}
.y18{bottom:534.306667pt;}
.yf5{bottom:534.946667pt;}
.y15c{bottom:537.666667pt;}
.y195{bottom:538.306667pt;}
.ya7{bottom:540.066667pt;}
.y1d5{bottom:540.546667pt;}
.y12b{bottom:547.266667pt;}
.y67{bottom:551.746667pt;}
.yf4{bottom:552.226667pt;}
.y194{bottom:554.626667pt;}
.y15b{bottom:555.266667pt;}
.ya6{bottom:556.546667pt;}
.y1d4{bottom:556.866667pt;}
.y12a{bottom:564.866667pt;}
.y193{bottom:566.946667pt;}
.y1d3{bottom:569.186667pt;}
.y66{bottom:569.346667pt;}
.ya5{bottom:571.906667pt;}
.yf3{bottom:572.386667pt;}
.y15a{bottom:572.866667pt;}
.y192{bottom:579.133333pt;}
.y1d2{bottom:581.373333pt;}
.y129{bottom:582.493333pt;}
.y65{bottom:586.973333pt;}
.ya4{bottom:587.293333pt;}
.y159{bottom:590.493333pt;}
.yf2{bottom:592.093333pt;}
.y191{bottom:595.453333pt;}
.y1d1{bottom:597.693333pt;}
.y128{bottom:600.253333pt;}
.ya3{bottom:602.653333pt;}
.y64{bottom:604.413333pt;}
.y190{bottom:607.773333pt;}
.y158{bottom:608.253333pt;}
.y1d0{bottom:610.013333pt;}
.yf1{bottom:616.573333pt;}
.y127{bottom:617.853333pt;}
.ya2{bottom:618.013333pt;}
.y18f{bottom:619.933333pt;}
.y63{bottom:622.333333pt;}
.y157{bottom:625.853333pt;}
.y1cf{bottom:626.173333pt;}
.yf0{bottom:626.813333pt;}
.ya1{bottom:633.373333pt;}
.y126{bottom:635.453333pt;}
.y18e{bottom:636.253333pt;}
.y1ce{bottom:638.493333pt;}
.y62{bottom:639.933333pt;}
.yef{bottom:642.813333pt;}
.y156{bottom:643.453333pt;}
.ya0{bottom:648.573333pt;}
.y1cd{bottom:650.813333pt;}
.y125{bottom:653.053333pt;}
.y61{bottom:657.533333pt;}
.yee{bottom:658.653333pt;}
.y155{bottom:661.053333pt;}
.y9f{bottom:663.933333pt;}
.y18d{bottom:664.733333pt;}
.y1cc{bottom:666.973333pt;}
.y124{bottom:670.653333pt;}
.yed{bottom:674.493333pt;}
.y60{bottom:675.133333pt;}
.y18c{bottom:677.053333pt;}
.y154{bottom:678.653333pt;}
.y9e{bottom:679.293333pt;}
.y123{bottom:688.413333pt;}
.yec{bottom:690.333333pt;}
.y5f{bottom:692.893333pt;}
.y18b{bottom:693.373333pt;}
.y9d{bottom:694.653333pt;}
.y1cb{bottom:695.613333pt;}
.y153{bottom:696.413333pt;}
.y18a{bottom:705.533333pt;}
.y122{bottom:706.013333pt;}
.yeb{bottom:706.173333pt;}
.y1ca{bottom:707.773333pt;}
.y9c{bottom:710.013333pt;}
.y5e{bottom:710.493333pt;}
.y152{bottom:714.013333pt;}
.y189{bottom:717.853333pt;}
.yea{bottom:722.013333pt;}
.y121{bottom:723.613333pt;}
.y1c9{bottom:724.093333pt;}
.y9b{bottom:725.373333pt;}
.y5d{bottom:728.093333pt;}
.y151{bottom:731.613333pt;}
.y188{bottom:734.173333pt;}
.y1c8{bottom:736.253333pt;}
.ye8{bottom:738.653333pt;}
.y9a{bottom:740.573333pt;}
.y120{bottom:741.213333pt;}
.y5c{bottom:745.693333pt;}
.y187{bottom:746.333333pt;}
.y150{bottom:749.213333pt;}
.y1c7{bottom:752.573333pt;}
.y99{bottom:755.933333pt;}
.ye9{bottom:756.893333pt;}
.y186{bottom:758.653333pt;}
.y11f{bottom:758.813333pt;}
.y17{bottom:759.933333pt;}
.y5b{bottom:762.973333pt;}
.y1c6{bottom:764.893333pt;}
.y14f{bottom:766.813333pt;}
.y98{bottom:771.293333pt;}
.y185{bottom:774.973333pt;}
.y11e{bottom:776.573333pt;}
.y16{bottom:776.733333pt;}
.y5a{bottom:781.053333pt;}
.y14e{bottom:784.573333pt;}
.y97{bottom:786.653333pt;}
.y184{bottom:787.133333pt;}
.y15{bottom:788.733333pt;}
.ye7{bottom:792.093333pt;}
.y1c5{bottom:793.373333pt;}
.y11d{bottom:794.173333pt;}
.y14{bottom:796.093333pt;}
.y59{bottom:798.693333pt;}
.y96{bottom:802.053333pt;}
.y14d{bottom:802.213333pt;}
.y183{bottom:803.493333pt;}
.y13{bottom:808.453333pt;}
.y1c4{bottom:809.733333pt;}
.ye6{bottom:811.493333pt;}
.y11c{bottom:811.813333pt;}
.y182{bottom:815.813333pt;}
.y58{bottom:816.293333pt;}
.y95{bottom:817.413333pt;}
.y14c{bottom:819.813333pt;}
.y12{bottom:820.773333pt;}
.y1c3{bottom:821.893333pt;}
.y181{bottom:827.973333pt;}
.y11b{bottom:829.413333pt;}
.ye5{bottom:831.493333pt;}
.y94{bottom:832.613333pt;}
.y11{bottom:832.933333pt;}
.y57{bottom:833.893333pt;}
.y14b{bottom:837.413333pt;}
.y1c2{bottom:838.213333pt;}
.y180{bottom:842.693333pt;}
.ye4{bottom:843.813333pt;}
.y10{bottom:845.253333pt;}
.y11a{bottom:847.013333pt;}
.y93{bottom:850.213333pt;}
.y1c1{bottom:850.533333pt;}
.y56{bottom:851.173333pt;}
.y14a{bottom:855.013333pt;}
.ye3{bottom:855.973333pt;}
.yf{bottom:857.573333pt;}
.y17f{bottom:860.453333pt;}
.y119{bottom:864.773333pt;}
.ye2{bottom:866.373333pt;}
.y1c0{bottom:866.693333pt;}
.y92{bottom:867.493333pt;}
.y55{bottom:868.933333pt;}
.ye{bottom:871.333333pt;}
.y149{bottom:872.773333pt;}
.y1bf{bottom:879.013333pt;}
.y17e{bottom:880.293333pt;}
.ye1{bottom:882.213333pt;}
.y118{bottom:882.373333pt;}
.yd{bottom:884.293333pt;}
.y91{bottom:885.093333pt;}
.y54{bottom:886.533333pt;}
.y148{bottom:890.373333pt;}
.y1be{bottom:895.333333pt;}
.ye0{bottom:898.053333pt;}
.y117{bottom:899.973333pt;}
.y90{bottom:900.933333pt;}
.yc{bottom:902.853333pt;}
.y53{bottom:905.573333pt;}
.y1bd{bottom:907.493333pt;}
.y147{bottom:907.973333pt;}
.ydf{bottom:913.893333pt;}
.y8f{bottom:916.293333pt;}
.y116{bottom:917.573333pt;}
.yb{bottom:923.013333pt;}
.y1bc{bottom:923.813333pt;}
.y52{bottom:925.573333pt;}
.yde{bottom:929.733333pt;}
.y17d{bottom:931.173333pt;}
.y8e{bottom:931.493333pt;}
.y115{bottom:935.173333pt;}
.y1bb{bottom:936.133333pt;}
.y51{bottom:943.173333pt;}
.ydd{bottom:945.573333pt;}
.y8d{bottom:946.533333pt;}
.y17c{bottom:946.853333pt;}
.y1ba{bottom:948.293333pt;}
.ya{bottom:952.133333pt;}
.y114{bottom:952.933333pt;}
.y50{bottom:960.933333pt;}
.ydc{bottom:961.573333pt;}
.y8c{bottom:962.213333pt;}
.y1b9{bottom:964.613333pt;}
.y113{bottom:970.533333pt;}
.y1b8{bottom:976.933333pt;}
.y17b{bottom:977.253333pt;}
.y8b{bottom:977.573333pt;}
.yd6{bottom:978.053333pt;}
.y4f{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y112{bottom:988.133333pt;}
.y46{bottom:989.093333pt;}
.y8a{bottom:992.933333pt;}
.y1b7{bottom:993.093333pt;}
.y8{bottom:993.733333pt;}
.y4e{bottom:996.133333pt;}
.yda{bottom:996.293333pt;}
.y1b6{bottom:1005.413333pt;}
.y111{bottom:1005.733333pt;}
.y89{bottom:1008.293333pt;}
.y4d{bottom:1013.733333pt;}
.yd5{bottom:1016.293333pt;}
.y1b5{bottom:1021.760000pt;}
.y17a{bottom:1023.200000pt;}
.y110{bottom:1023.360000pt;}
.y88{bottom:1023.520000pt;}
.y7{bottom:1027.520000pt;}
.y4c{bottom:1031.360000pt;}
.yd4{bottom:1031.520000pt;}
.y1b4{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y86{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y4a{bottom:1047.520000pt;}
.y85{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y49{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.h1d{height:13.746667pt;}
.h2b{height:15.826667pt;}
.h2d{height:15.840000pt;}
.h23{height:15.986667pt;}
.h2f{height:16.000000pt;}
.h10{height:16.125000pt;}
.h20{height:16.946667pt;}
.h1c{height:17.106667pt;}
.h2a{height:17.586667pt;}
.h2e{height:17.600000pt;}
.h1e{height:18.066667pt;}
.h1f{height:18.226667pt;}
.h24{height:19.026667pt;}
.h25{height:19.986667pt;}
.h28{height:19.998667pt;}
.h26{height:20.146667pt;}
.h27{height:20.192000pt;}
.h17{height:20.717812pt;}
.he{height:20.728125pt;}
.h14{height:24.626667pt;}
.h22{height:30.546667pt;}
.h1a{height:31.506667pt;}
.h2c{height:34.080000pt;}
.h29{height:34.226667pt;}
.h3{height:36.431250pt;}
.h15{height:38.153511pt;}
.h1b{height:40.804688pt;}
.hd{height:42.063437pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h2{height:47.109375pt;}
.h31{height:47.621250pt;}
.h8{height:48.375000pt;}
.h12{height:49.336419pt;}
.h18{height:52.108438pt;}
.h13{height:52.134375pt;}
.h9{height:53.535000pt;}
.h19{height:57.787500pt;}
.hc{height:59.150000pt;}
.h11{height:59.340000pt;}
.h16{height:62.812500pt;}
.h5{height:64.500000pt;}
.h30{height:73.490625pt;}
.h21{height:75.465000pt;}
.ha{height:85.961875pt;}
.hb{height:101.910000pt;}
.hf{height:220.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:65.920000pt;}
.w6{width:84.320000pt;}
.w3{width:90.426667pt;}
.w7{width:95.712000pt;}
.wb{width:96.352000pt;}
.wc{width:98.578667pt;}
.w10{width:104.992000pt;}
.w11{width:113.138667pt;}
.w8{width:113.458667pt;}
.we{width:166.897333pt;}
.w5{width:173.297333pt;}
.wa{width:173.617333pt;}
.w9{width:181.466667pt;}
.w12{width:197.146667pt;}
.wd{width:197.946667pt;}
.w4{width:206.266667pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xc{left:-32.800000pt;}
.xb{left:-17.600000pt;}
.xa{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x12{left:7.190667pt;}
.x24{left:8.320000pt;}
.x9{left:9.466667pt;}
.x2d{left:13.600000pt;}
.x19{left:15.826667pt;}
.x15{left:16.800000pt;}
.x2b{left:21.280000pt;}
.x17{left:22.240000pt;}
.x8{left:23.866667pt;}
.x30{left:27.360000pt;}
.x14{left:30.560000pt;}
.x1c{left:32.320000pt;}
.x20{left:36.160000pt;}
.x7{left:37.786667pt;}
.x1d{left:39.040000pt;}
.x26{left:40.640000pt;}
.x21{left:42.080000pt;}
.x31{left:43.026667pt;}
.x33{left:46.066667pt;}
.x1e{left:47.666667pt;}
.x28{left:49.266667pt;}
.x32{left:50.240000pt;}
.x6{left:52.186667pt;}
.x1f{left:54.400000pt;}
.x22{left:56.626667pt;}
.x27{left:59.680000pt;}
.x1b{left:62.080000pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x23{left:77.120000pt;}
.x29{left:85.440000pt;}
.xd{left:96.032000pt;}
.x34{left:100.512000pt;}
.x35{left:140.666667pt;}
.x2a{left:238.946667pt;}
.x13{left:245.346667pt;}
.x2c{left:304.866667pt;}
.xf{left:319.746667pt;}
.x16{left:329.666667pt;}
.x11{left:353.826667pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x2e{left:409.866667pt;}
.x18{left:425.386667pt;}
.x25{left:426.346667pt;}
.x2f{left:523.013333pt;}
.xe{left:524.773333pt;}
.x1a{left:538.853333pt;}
.x4{left:641.733333pt;}
}




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